From 04cf8eb90b69d0a5f6a7ca910cde018afe8e5f5d Mon Sep 17 00:00:00 2001 From: John Drouhard Date: Sun, 2 Oct 2022 21:22:08 -0500 Subject: [PATCH] Add support for alternative operator representations This adds support for the alternative operator representations in unary, binary, and assignment expressions, as well as when using in explicit operator calls and overload declarations/definitions. This does _not_ support full token substitution the preprocessor performs (these alternate tokens can be substituted _anywhere_ the tokens they represent appear, but in this grammar they are only supported in the above expressions). This also does _not_ add support for alternate token representations of the brace tokens ('{', '}', '[', ']') or preprocessor directives ('#', '##') --- grammar.js | 53 +- src/grammar.json | 1713 +- src/node-types.json | 88 + src/parser.c | 580444 +++++++++++++++++---------------- test/corpus/expressions.txt | 43 + 5 files changed, 308613 insertions(+), 273728 deletions(-) diff --git a/grammar.js b/grammar.js index 1ccb21d..5ebf7c2 100644 --- a/grammar.js +++ b/grammar.js @@ -1028,15 +1028,36 @@ module.exports = grammar(C, { ), )), - binary_expression: ($, original) => choice( + unary_expression: ($, original) => choice( original, - prec.left(PREC.THREE_WAY, seq( - field('left', $._expression), - field('operator', '<=>'), - field('right', $._expression) + prec.left(PREC.UNARY, seq( + field('operator', choice('not', 'compl')), + field('argument', $._expression) )) ), + binary_expression: ($, original) => { + const table = [ + ['<=>', PREC.THREE_WAY], + ['or', PREC.LOGICAL_OR], + ['and', PREC.LOGICAL_AND], + ['bitor', PREC.INCLUSIVE_OR], + ['xor', PREC.EXCLUSIVE_OR], + ['bitand', PREC.BITWISE_AND], + ['not_eq', PREC.EQUAL], + ]; + + return choice( + ...original.members, + ...table.map(([operator, precedence]) => { + return prec.left(precedence, seq( + field('left', $._expression), + field('operator', operator), + field('right', $._expression) + )) + })); + }, + argument_list: $ => seq( '(', commaSep(choice($._expression, $.initializer_list)), @@ -1111,6 +1132,19 @@ module.exports = grammar(C, { $.qualified_identifier, ), + assignment_expression: ($, original) => choice( + original, + prec.right(PREC.ASSIGNMENT, seq( + field('left', $._assignment_left_expression), + field('operator', choice( + 'and_eq', + 'or_eq', + 'xor_eq' + )), + field('right', $._expression) + )) + ), + operator_name: $ => prec(1, seq( 'operator', choice( @@ -1128,10 +1162,13 @@ module.exports = grammar(C, { '->*', '->', '()', '[]', + 'xor', 'bitand', 'bitor', 'compl', + 'not', 'xor_eq', 'and_eq', 'or_eq', 'not_eq', + 'and', 'or', seq(choice('new', 'delete'), optional('[]')), seq('""', $.identifier) - ) - )), + ) + )), this: $ => 'this', nullptr: $ => 'nullptr', @@ -1141,7 +1178,7 @@ module.exports = grammar(C, { repeat1(choice($.raw_string_literal, $.string_literal)) ), - literal_suffix: $ => token.immediate(/[a-zA-Z_]\w*/), + literal_suffix: $ => token.immediate(/[a-zA-Z_]\w*/), user_defined_literal: $ => seq( choice( diff --git a/src/grammar.json b/src/grammar.json index cfb31f6..8a07ef3 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -5312,82 +5312,133 @@ ] }, "assignment_expression": { - "type": "PREC_RIGHT", - "value": -1, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_assignment_left_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "=" - }, - { - "type": "STRING", - "value": "*=" - }, - { - "type": "STRING", - "value": "/=" - }, - { - "type": "STRING", - "value": "%=" - }, - { - "type": "STRING", - "value": "+=" - }, - { - "type": "STRING", - "value": "-=" - }, - { - "type": "STRING", - "value": "<<=" - }, - { - "type": "STRING", - "value": ">>=" - }, - { - "type": "STRING", - "value": "&=" - }, - { - "type": "STRING", - "value": "^=" - }, - { - "type": "STRING", - "value": "|=" + "type": "CHOICE", + "members": [ + { + "type": "PREC_RIGHT", + "value": -1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_assignment_left_expression" } - ] - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_expression" - } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "=" + }, + { + "type": "STRING", + "value": "*=" + }, + { + "type": "STRING", + "value": "/=" + }, + { + "type": "STRING", + "value": "%=" + }, + { + "type": "STRING", + "value": "+=" + }, + { + "type": "STRING", + "value": "-=" + }, + { + "type": "STRING", + "value": "<<=" + }, + { + "type": "STRING", + "value": ">>=" + }, + { + "type": "STRING", + "value": "&=" + }, + { + "type": "STRING", + "value": "^=" + }, + { + "type": "STRING", + "value": "|=" + } + ] + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] } - ] - } + }, + { + "type": "PREC_RIGHT", + "value": -1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_assignment_left_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "and_eq" + }, + { + "type": "STRING", + "value": "or_eq" + }, + { + "type": "STRING", + "value": "xor_eq" + } + ] + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + } + ] }, "pointer_expression": { "type": "PREC_LEFT", @@ -5424,652 +5475,851 @@ } }, "unary_expression": { - "type": "PREC_LEFT", - "value": 13, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "!" - }, - { - "type": "STRING", - "value": "~" - }, - { - "type": "STRING", - "value": "-" - }, - { - "type": "STRING", - "value": "+" - } - ] - } - }, - { - "type": "FIELD", - "name": "argument", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] - } - }, - "binary_expression": { "type": "CHOICE", "members": [ { - "type": "CHOICE", - "members": [ - { - "type": "PREC_LEFT", - "value": 10, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { + "type": "PREC_LEFT", + "value": 13, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "!" + }, + { + "type": "STRING", + "value": "~" + }, + { + "type": "STRING", + "value": "-" + }, + { "type": "STRING", "value": "+" } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] - } - }, - { - "type": "PREC_LEFT", - "value": 10, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": "-" - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] + ] + } + }, + { + "type": "FIELD", + "name": "argument", + "content": { + "type": "SYMBOL", + "name": "_expression" + } } - }, - { - "type": "PREC_LEFT", - "value": 11, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { + ] + } + }, + { + "type": "PREC_LEFT", + "value": 13, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "CHOICE", + "members": [ + { "type": "STRING", - "value": "*" - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] - } - }, - { - "type": "PREC_LEFT", - "value": 11, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { + "value": "not" + }, + { "type": "STRING", - "value": "/" + "value": "compl" } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] + ] + } + }, + { + "type": "FIELD", + "name": "argument", + "content": { + "type": "SYMBOL", + "name": "_expression" + } } - }, - { - "type": "PREC_LEFT", - "value": 11, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": "%" - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] + ] + } + } + ] + }, + "binary_expression": { + "type": "CHOICE", + "members": [ + { + "type": "PREC_LEFT", + "value": 10, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "+" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } } - }, - { - "type": "PREC_LEFT", - "value": 1, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": "||" - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] + ] + } + }, + { + "type": "PREC_LEFT", + "value": 10, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "-" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } } - }, - { - "type": "PREC_LEFT", - "value": 2, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": "&&" - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] + ] + } + }, + { + "type": "PREC_LEFT", + "value": 11, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "*" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 11, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "/" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 11, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "%" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "||" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 2, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "&&" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 3, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "|" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 4, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "^" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 5, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "&" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 6, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "==" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } } - }, - { - "type": "PREC_LEFT", - "value": 3, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": "|" - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] + ] + } + }, + { + "type": "PREC_LEFT", + "value": 6, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "!=" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } } - }, - { - "type": "PREC_LEFT", - "value": 4, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": "^" - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] + ] + } + }, + { + "type": "PREC_LEFT", + "value": 7, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": ">" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } } - }, - { - "type": "PREC_LEFT", - "value": 5, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": "&" - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] + ] + } + }, + { + "type": "PREC_LEFT", + "value": 7, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": ">=" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } } - }, - { - "type": "PREC_LEFT", - "value": 6, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": "==" - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] + ] + } + }, + { + "type": "PREC_LEFT", + "value": 7, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "<=" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 7, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "<" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } } - }, - { - "type": "PREC_LEFT", - "value": 6, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": "!=" - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] + ] + } + }, + { + "type": "PREC_LEFT", + "value": 9, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "<<" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } } - }, - { - "type": "PREC_LEFT", - "value": 7, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": ">" - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] + ] + } + }, + { + "type": "PREC_LEFT", + "value": 9, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": ">>" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } } - }, - { - "type": "PREC_LEFT", - "value": 7, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": ">=" - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] + ] + } + }, + { + "type": "PREC_LEFT", + "value": 8, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "<=>" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } } - }, - { - "type": "PREC_LEFT", - "value": 7, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": "<=" - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] + ] + } + }, + { + "type": "PREC_LEFT", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "or" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } } - }, - { - "type": "PREC_LEFT", - "value": 7, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": "<" - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] + ] + } + }, + { + "type": "PREC_LEFT", + "value": 2, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "and" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } } - }, - { - "type": "PREC_LEFT", - "value": 9, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": "<<" - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] + ] + } + }, + { + "type": "PREC_LEFT", + "value": 3, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "bitor" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } } - }, - { - "type": "PREC_LEFT", - "value": 9, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": ">>" - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] + ] + } + }, + { + "type": "PREC_LEFT", + "value": 4, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "xor" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } } - } - ] + ] + } }, { "type": "PREC_LEFT", - "value": 8, + "value": 5, "content": { "type": "SEQ", "members": [ @@ -6086,7 +6336,40 @@ "name": "operator", "content": { "type": "STRING", - "value": "<=>" + "value": "bitand" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 6, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "not_eq" } }, { @@ -12248,6 +12531,50 @@ "type": "STRING", "value": "[]" }, + { + "type": "STRING", + "value": "xor" + }, + { + "type": "STRING", + "value": "bitand" + }, + { + "type": "STRING", + "value": "bitor" + }, + { + "type": "STRING", + "value": "compl" + }, + { + "type": "STRING", + "value": "not" + }, + { + "type": "STRING", + "value": "xor_eq" + }, + { + "type": "STRING", + "value": "and_eq" + }, + { + "type": "STRING", + "value": "or_eq" + }, + { + "type": "STRING", + "value": "not_eq" + }, + { + "type": "STRING", + "value": "and" + }, + { + "type": "STRING", + "value": "or" + }, { "type": "SEQ", "members": [ diff --git a/src/node-types.json b/src/node-types.json index f52667b..f3b13a5 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -769,6 +769,18 @@ "type": "^=", "named": false }, + { + "type": "and_eq", + "named": false + }, + { + "type": "or_eq", + "named": false + }, + { + "type": "xor_eq", + "named": false + }, { "type": "|=", "named": false @@ -1012,6 +1024,30 @@ "type": "^", "named": false }, + { + "type": "and", + "named": false + }, + { + "type": "bitand", + "named": false + }, + { + "type": "bitor", + "named": false + }, + { + "type": "not_eq", + "named": false + }, + { + "type": "or", + "named": false + }, + { + "type": "xor", + "named": false + }, { "type": "|", "named": false @@ -5767,6 +5803,14 @@ "type": "-", "named": false }, + { + "type": "compl", + "named": false + }, + { + "type": "not", + "named": false + }, { "type": "~", "named": false @@ -6345,10 +6389,26 @@ "type": "_unaligned", "named": false }, + { + "type": "and", + "named": false + }, + { + "type": "and_eq", + "named": false + }, { "type": "auto", "named": true }, + { + "type": "bitand", + "named": false + }, + { + "type": "bitor", + "named": false + }, { "type": "break", "named": false @@ -6381,6 +6441,10 @@ "type": "comment", "named": true }, + { + "type": "compl", + "named": false + }, { "type": "concept", "named": false @@ -6521,6 +6585,14 @@ "type": "noexcept", "named": false }, + { + "type": "not", + "named": false + }, + { + "type": "not_eq", + "named": false + }, { "type": "null", "named": true @@ -6537,6 +6609,14 @@ "type": "operator", "named": false }, + { + "type": "or", + "named": false + }, + { + "type": "or_eq", + "named": false + }, { "type": "override", "named": false @@ -6697,6 +6777,14 @@ "type": "while", "named": false }, + { + "type": "xor", + "named": false + }, + { + "type": "xor_eq", + "named": false + }, { "type": "{", "named": false diff --git a/src/parser.c b/src/parser.c index b0d5ce2..a6a382a 100644 --- a/src/parser.c +++ b/src/parser.c @@ -14,11 +14,11 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 6940 -#define LARGE_STATE_COUNT 1731 -#define SYMBOL_COUNT 420 +#define STATE_COUNT 7308 +#define LARGE_STATE_COUNT 1811 +#define SYMBOL_COUNT 431 #define ALIAS_COUNT 5 -#define TOKEN_COUNT 171 +#define TOKEN_COUNT 182 #define EXTERNAL_TOKEN_COUNT 1 #define FIELD_COUNT 37 #define MAX_ALIAS_SEQUENCE_LENGTH 9 @@ -133,322 +133,333 @@ enum { anon_sym_AMP_EQ = 106, anon_sym_CARET_EQ = 107, anon_sym_PIPE_EQ = 108, - anon_sym_LT_EQ_GT = 109, - anon_sym_DASH_DASH = 110, - anon_sym_PLUS_PLUS = 111, - anon_sym_sizeof = 112, - anon_sym_DOT = 113, - anon_sym_DASH_GT = 114, - sym_number_literal = 115, - anon_sym_L_SQUOTE = 116, - anon_sym_u_SQUOTE = 117, - anon_sym_U_SQUOTE = 118, - anon_sym_u8_SQUOTE = 119, - anon_sym_SQUOTE = 120, - aux_sym_char_literal_token1 = 121, - anon_sym_L_DQUOTE = 122, - anon_sym_u_DQUOTE = 123, - anon_sym_U_DQUOTE = 124, - anon_sym_u8_DQUOTE = 125, - anon_sym_DQUOTE = 126, - aux_sym_string_literal_token1 = 127, - sym_escape_sequence = 128, - sym_system_lib_string = 129, - sym_true = 130, - sym_false = 131, - sym_null = 132, - sym_comment = 133, - sym_auto = 134, - anon_sym_decltype = 135, - anon_sym_final = 136, - anon_sym_override = 137, - anon_sym_virtual = 138, - anon_sym_explicit = 139, - anon_sym_public = 140, - anon_sym_private = 141, - anon_sym_protected = 142, - anon_sym_typename = 143, - anon_sym_template = 144, - anon_sym_GT2 = 145, - anon_sym_operator = 146, - anon_sym_try = 147, - anon_sym_delete = 148, - anon_sym_friend = 149, - anon_sym_noexcept = 150, - anon_sym_throw = 151, - anon_sym_namespace = 152, - anon_sym_using = 153, - anon_sym_static_assert = 154, - anon_sym_concept = 155, - anon_sym_co_return = 156, - anon_sym_co_yield = 157, - anon_sym_catch = 158, - anon_sym_co_await = 159, - anon_sym_new = 160, - anon_sym_requires = 161, - anon_sym_DOT_STAR = 162, - anon_sym_DASH_GT_STAR = 163, - anon_sym_LPAREN_RPAREN = 164, - anon_sym_LBRACK_RBRACK = 165, - anon_sym_DQUOTE_DQUOTE = 166, - sym_this = 167, - sym_nullptr = 168, - sym_literal_suffix = 169, - sym_raw_string_literal = 170, - sym_translation_unit = 171, - sym_preproc_include = 172, - sym_preproc_def = 173, - sym_preproc_function_def = 174, - sym_preproc_params = 175, - sym_preproc_call = 176, - sym_preproc_if = 177, - sym_preproc_ifdef = 178, - sym_preproc_else = 179, - sym_preproc_elif = 180, - sym_preproc_if_in_field_declaration_list = 181, - sym_preproc_ifdef_in_field_declaration_list = 182, - sym_preproc_else_in_field_declaration_list = 183, - sym_preproc_elif_in_field_declaration_list = 184, - sym__preproc_expression = 185, - sym_preproc_parenthesized_expression = 186, - sym_preproc_defined = 187, - sym_preproc_unary_expression = 188, - sym_preproc_call_expression = 189, - sym_preproc_argument_list = 190, - sym_preproc_binary_expression = 191, - sym_function_definition = 192, - sym_declaration = 193, - sym_type_definition = 194, - sym__declaration_modifiers = 195, - sym__declaration_specifiers = 196, - sym_linkage_specification = 197, - sym_attribute_specifier = 198, - sym_attribute = 199, - sym_attribute_declaration = 200, - sym_ms_declspec_modifier = 201, - sym_ms_based_modifier = 202, - sym_ms_call_modifier = 203, - sym_ms_unaligned_ptr_modifier = 204, - sym_ms_pointer_modifier = 205, - sym_declaration_list = 206, - sym__declarator = 207, - sym__field_declarator = 208, - sym__type_declarator = 209, - sym__abstract_declarator = 210, - sym_parenthesized_declarator = 211, - sym_parenthesized_field_declarator = 212, - sym_parenthesized_type_declarator = 213, - sym_abstract_parenthesized_declarator = 214, - sym_attributed_declarator = 215, - sym_attributed_field_declarator = 216, - sym_attributed_type_declarator = 217, - sym_pointer_declarator = 218, - sym_pointer_field_declarator = 219, - sym_pointer_type_declarator = 220, - sym_abstract_pointer_declarator = 221, - sym_function_declarator = 222, - sym_function_field_declarator = 223, - sym_function_type_declarator = 224, - sym_abstract_function_declarator = 225, - sym_array_declarator = 226, - sym_array_field_declarator = 227, - sym_array_type_declarator = 228, - sym_abstract_array_declarator = 229, - sym_init_declarator = 230, - sym_compound_statement = 231, - sym_storage_class_specifier = 232, - sym_type_qualifier = 233, - sym__type_specifier = 234, - sym_sized_type_specifier = 235, - sym_enum_specifier = 236, - sym_enumerator_list = 237, - sym_struct_specifier = 238, - sym_union_specifier = 239, - sym_field_declaration_list = 240, - sym__field_declaration_list_item = 241, - sym_field_declaration = 242, - sym_bitfield_clause = 243, - sym_enumerator = 244, - sym_parameter_list = 245, - sym_parameter_declaration = 246, - sym_attributed_statement = 247, - sym_labeled_statement = 248, - sym_expression_statement = 249, - sym_if_statement = 250, - sym_switch_statement = 251, - sym_case_statement = 252, - sym_while_statement = 253, - sym_do_statement = 254, - sym_for_statement = 255, - sym_return_statement = 256, - sym_break_statement = 257, - sym_continue_statement = 258, - sym_goto_statement = 259, - sym__expression = 260, - sym_comma_expression = 261, - sym_conditional_expression = 262, - sym_assignment_expression = 263, - sym_pointer_expression = 264, - sym_unary_expression = 265, - sym_binary_expression = 266, - sym_update_expression = 267, - sym_cast_expression = 268, - sym_type_descriptor = 269, - sym_sizeof_expression = 270, - sym_subscript_expression = 271, - sym_call_expression = 272, - sym_argument_list = 273, - sym_field_expression = 274, - sym_compound_literal_expression = 275, - sym_parenthesized_expression = 276, - sym_initializer_list = 277, - sym_initializer_pair = 278, - sym_subscript_designator = 279, - sym_field_designator = 280, - sym_char_literal = 281, - sym_concatenated_string = 282, - sym_string_literal = 283, - sym__empty_declaration = 284, - sym_placeholder_type_specifier = 285, - sym_decltype_auto = 286, - sym_decltype = 287, - sym_class_specifier = 288, - sym__class_name = 289, - sym_virtual_specifier = 290, - sym_virtual_function_specifier = 291, - sym_explicit_function_specifier = 292, - sym_base_class_clause = 293, - sym__enum_base_clause = 294, - sym_dependent_type = 295, - sym_template_declaration = 296, - sym_template_instantiation = 297, - sym_template_parameter_list = 298, - sym_type_parameter_declaration = 299, - sym_variadic_type_parameter_declaration = 300, - sym_optional_type_parameter_declaration = 301, - sym_template_template_parameter_declaration = 302, - sym_optional_parameter_declaration = 303, - sym_variadic_parameter_declaration = 304, - sym_variadic_declarator = 305, - sym_variadic_reference_declarator = 306, - sym_operator_cast = 307, - sym_field_initializer_list = 308, - sym_field_initializer = 309, - sym_inline_method_definition = 310, - sym__constructor_specifiers = 311, - sym_operator_cast_definition = 312, - sym_operator_cast_declaration = 313, - sym_constructor_try_statement = 314, - sym_constructor_or_destructor_definition = 315, - sym_constructor_or_destructor_declaration = 316, - sym_default_method_clause = 317, - sym_delete_method_clause = 318, - sym_friend_declaration = 319, - sym_access_specifier = 320, - sym_reference_declarator = 321, - sym_reference_field_declarator = 322, - sym_abstract_reference_declarator = 323, - sym_structured_binding_declarator = 324, - sym_ref_qualifier = 325, - sym_trailing_return_type = 326, - sym_noexcept = 327, - sym_throw_specifier = 328, - sym_template_type = 329, - sym_template_method = 330, - sym_template_function = 331, - sym_template_argument_list = 332, - sym_namespace_definition = 333, - sym_namespace_alias_definition = 334, - sym_namespace_definition_name = 335, - sym_using_declaration = 336, - sym_alias_declaration = 337, - sym_static_assert_declaration = 338, - sym_concept_definition = 339, - sym_for_range_loop = 340, - sym_init_statement = 341, - sym_condition_clause = 342, - sym_condition_declaration = 343, - sym_co_return_statement = 344, - sym_co_yield_statement = 345, - sym_throw_statement = 346, - sym_try_statement = 347, - sym_catch_clause = 348, - sym_co_await_expression = 349, - sym_new_expression = 350, - sym_new_declarator = 351, - sym_delete_expression = 352, - sym_type_requirement = 353, - sym_compound_requirement = 354, - sym__requirement = 355, - sym_requirement_seq = 356, - sym_constraint_conjunction = 357, - sym_constraint_disjunction = 358, - sym__requirement_clause_constraint = 359, - sym_requires_clause = 360, - sym_requires_parameter_list = 361, - sym_requires_expression = 362, - sym_lambda_expression = 363, - sym_lambda_capture_specifier = 364, - sym_lambda_default_capture = 365, - sym__fold_operator = 366, - sym__binary_fold_operator = 367, - sym__unary_left_fold = 368, - sym__unary_right_fold = 369, - sym__binary_fold = 370, - sym_fold_expression = 371, - sym_parameter_pack_expansion = 372, - sym_type_parameter_pack_expansion = 373, - sym_destructor_name = 374, - sym_dependent_identifier = 375, - sym_dependent_field_identifier = 376, - sym_dependent_type_identifier = 377, - sym__scope_resolution = 378, - sym_qualified_field_identifier = 379, - sym_qualified_identifier = 380, - sym_qualified_type_identifier = 381, - sym_qualified_operator_cast_identifier = 382, - sym_operator_name = 383, - sym_user_defined_literal = 384, - aux_sym_translation_unit_repeat1 = 385, - aux_sym_preproc_params_repeat1 = 386, - aux_sym_preproc_if_in_field_declaration_list_repeat1 = 387, - aux_sym_preproc_argument_list_repeat1 = 388, - aux_sym_declaration_repeat1 = 389, - aux_sym_type_definition_repeat1 = 390, - aux_sym_type_definition_repeat2 = 391, - aux_sym__declaration_specifiers_repeat1 = 392, - aux_sym_attribute_declaration_repeat1 = 393, - aux_sym_attributed_declarator_repeat1 = 394, - aux_sym_pointer_declarator_repeat1 = 395, - aux_sym_function_declarator_repeat1 = 396, - aux_sym_function_declarator_repeat2 = 397, - aux_sym_abstract_function_declarator_repeat1 = 398, - aux_sym_sized_type_specifier_repeat1 = 399, - aux_sym_enumerator_list_repeat1 = 400, - aux_sym_field_declaration_repeat1 = 401, - aux_sym_parameter_list_repeat1 = 402, - aux_sym_case_statement_repeat1 = 403, - aux_sym_argument_list_repeat1 = 404, - aux_sym_initializer_list_repeat1 = 405, - aux_sym_initializer_pair_repeat1 = 406, - aux_sym_concatenated_string_repeat1 = 407, - aux_sym_string_literal_repeat1 = 408, - aux_sym_base_class_clause_repeat1 = 409, - aux_sym_template_parameter_list_repeat1 = 410, - aux_sym_field_initializer_list_repeat1 = 411, - aux_sym_operator_cast_definition_repeat1 = 412, - aux_sym_constructor_try_statement_repeat1 = 413, - aux_sym_structured_binding_declarator_repeat1 = 414, - aux_sym_throw_specifier_repeat1 = 415, - aux_sym_template_argument_list_repeat1 = 416, - aux_sym_requirement_seq_repeat1 = 417, - aux_sym_requires_parameter_list_repeat1 = 418, - aux_sym_lambda_capture_specifier_repeat1 = 419, - alias_sym_field_identifier = 420, - alias_sym_namespace_identifier = 421, - alias_sym_simple_requirement = 422, - alias_sym_statement_identifier = 423, - alias_sym_type_identifier = 424, + anon_sym_and_eq = 109, + anon_sym_or_eq = 110, + anon_sym_xor_eq = 111, + anon_sym_not = 112, + anon_sym_compl = 113, + anon_sym_LT_EQ_GT = 114, + anon_sym_or = 115, + anon_sym_and = 116, + anon_sym_bitor = 117, + anon_sym_xor = 118, + anon_sym_bitand = 119, + anon_sym_not_eq = 120, + anon_sym_DASH_DASH = 121, + anon_sym_PLUS_PLUS = 122, + anon_sym_sizeof = 123, + anon_sym_DOT = 124, + anon_sym_DASH_GT = 125, + sym_number_literal = 126, + anon_sym_L_SQUOTE = 127, + anon_sym_u_SQUOTE = 128, + anon_sym_U_SQUOTE = 129, + anon_sym_u8_SQUOTE = 130, + anon_sym_SQUOTE = 131, + aux_sym_char_literal_token1 = 132, + anon_sym_L_DQUOTE = 133, + anon_sym_u_DQUOTE = 134, + anon_sym_U_DQUOTE = 135, + anon_sym_u8_DQUOTE = 136, + anon_sym_DQUOTE = 137, + aux_sym_string_literal_token1 = 138, + sym_escape_sequence = 139, + sym_system_lib_string = 140, + sym_true = 141, + sym_false = 142, + sym_null = 143, + sym_comment = 144, + sym_auto = 145, + anon_sym_decltype = 146, + anon_sym_final = 147, + anon_sym_override = 148, + anon_sym_virtual = 149, + anon_sym_explicit = 150, + anon_sym_public = 151, + anon_sym_private = 152, + anon_sym_protected = 153, + anon_sym_typename = 154, + anon_sym_template = 155, + anon_sym_GT2 = 156, + anon_sym_operator = 157, + anon_sym_try = 158, + anon_sym_delete = 159, + anon_sym_friend = 160, + anon_sym_noexcept = 161, + anon_sym_throw = 162, + anon_sym_namespace = 163, + anon_sym_using = 164, + anon_sym_static_assert = 165, + anon_sym_concept = 166, + anon_sym_co_return = 167, + anon_sym_co_yield = 168, + anon_sym_catch = 169, + anon_sym_co_await = 170, + anon_sym_new = 171, + anon_sym_requires = 172, + anon_sym_DOT_STAR = 173, + anon_sym_DASH_GT_STAR = 174, + anon_sym_LPAREN_RPAREN = 175, + anon_sym_LBRACK_RBRACK = 176, + anon_sym_DQUOTE_DQUOTE = 177, + sym_this = 178, + sym_nullptr = 179, + sym_literal_suffix = 180, + sym_raw_string_literal = 181, + sym_translation_unit = 182, + sym_preproc_include = 183, + sym_preproc_def = 184, + sym_preproc_function_def = 185, + sym_preproc_params = 186, + sym_preproc_call = 187, + sym_preproc_if = 188, + sym_preproc_ifdef = 189, + sym_preproc_else = 190, + sym_preproc_elif = 191, + sym_preproc_if_in_field_declaration_list = 192, + sym_preproc_ifdef_in_field_declaration_list = 193, + sym_preproc_else_in_field_declaration_list = 194, + sym_preproc_elif_in_field_declaration_list = 195, + sym__preproc_expression = 196, + sym_preproc_parenthesized_expression = 197, + sym_preproc_defined = 198, + sym_preproc_unary_expression = 199, + sym_preproc_call_expression = 200, + sym_preproc_argument_list = 201, + sym_preproc_binary_expression = 202, + sym_function_definition = 203, + sym_declaration = 204, + sym_type_definition = 205, + sym__declaration_modifiers = 206, + sym__declaration_specifiers = 207, + sym_linkage_specification = 208, + sym_attribute_specifier = 209, + sym_attribute = 210, + sym_attribute_declaration = 211, + sym_ms_declspec_modifier = 212, + sym_ms_based_modifier = 213, + sym_ms_call_modifier = 214, + sym_ms_unaligned_ptr_modifier = 215, + sym_ms_pointer_modifier = 216, + sym_declaration_list = 217, + sym__declarator = 218, + sym__field_declarator = 219, + sym__type_declarator = 220, + sym__abstract_declarator = 221, + sym_parenthesized_declarator = 222, + sym_parenthesized_field_declarator = 223, + sym_parenthesized_type_declarator = 224, + sym_abstract_parenthesized_declarator = 225, + sym_attributed_declarator = 226, + sym_attributed_field_declarator = 227, + sym_attributed_type_declarator = 228, + sym_pointer_declarator = 229, + sym_pointer_field_declarator = 230, + sym_pointer_type_declarator = 231, + sym_abstract_pointer_declarator = 232, + sym_function_declarator = 233, + sym_function_field_declarator = 234, + sym_function_type_declarator = 235, + sym_abstract_function_declarator = 236, + sym_array_declarator = 237, + sym_array_field_declarator = 238, + sym_array_type_declarator = 239, + sym_abstract_array_declarator = 240, + sym_init_declarator = 241, + sym_compound_statement = 242, + sym_storage_class_specifier = 243, + sym_type_qualifier = 244, + sym__type_specifier = 245, + sym_sized_type_specifier = 246, + sym_enum_specifier = 247, + sym_enumerator_list = 248, + sym_struct_specifier = 249, + sym_union_specifier = 250, + sym_field_declaration_list = 251, + sym__field_declaration_list_item = 252, + sym_field_declaration = 253, + sym_bitfield_clause = 254, + sym_enumerator = 255, + sym_parameter_list = 256, + sym_parameter_declaration = 257, + sym_attributed_statement = 258, + sym_labeled_statement = 259, + sym_expression_statement = 260, + sym_if_statement = 261, + sym_switch_statement = 262, + sym_case_statement = 263, + sym_while_statement = 264, + sym_do_statement = 265, + sym_for_statement = 266, + sym_return_statement = 267, + sym_break_statement = 268, + sym_continue_statement = 269, + sym_goto_statement = 270, + sym__expression = 271, + sym_comma_expression = 272, + sym_conditional_expression = 273, + sym_assignment_expression = 274, + sym_pointer_expression = 275, + sym_unary_expression = 276, + sym_binary_expression = 277, + sym_update_expression = 278, + sym_cast_expression = 279, + sym_type_descriptor = 280, + sym_sizeof_expression = 281, + sym_subscript_expression = 282, + sym_call_expression = 283, + sym_argument_list = 284, + sym_field_expression = 285, + sym_compound_literal_expression = 286, + sym_parenthesized_expression = 287, + sym_initializer_list = 288, + sym_initializer_pair = 289, + sym_subscript_designator = 290, + sym_field_designator = 291, + sym_char_literal = 292, + sym_concatenated_string = 293, + sym_string_literal = 294, + sym__empty_declaration = 295, + sym_placeholder_type_specifier = 296, + sym_decltype_auto = 297, + sym_decltype = 298, + sym_class_specifier = 299, + sym__class_name = 300, + sym_virtual_specifier = 301, + sym_virtual_function_specifier = 302, + sym_explicit_function_specifier = 303, + sym_base_class_clause = 304, + sym__enum_base_clause = 305, + sym_dependent_type = 306, + sym_template_declaration = 307, + sym_template_instantiation = 308, + sym_template_parameter_list = 309, + sym_type_parameter_declaration = 310, + sym_variadic_type_parameter_declaration = 311, + sym_optional_type_parameter_declaration = 312, + sym_template_template_parameter_declaration = 313, + sym_optional_parameter_declaration = 314, + sym_variadic_parameter_declaration = 315, + sym_variadic_declarator = 316, + sym_variadic_reference_declarator = 317, + sym_operator_cast = 318, + sym_field_initializer_list = 319, + sym_field_initializer = 320, + sym_inline_method_definition = 321, + sym__constructor_specifiers = 322, + sym_operator_cast_definition = 323, + sym_operator_cast_declaration = 324, + sym_constructor_try_statement = 325, + sym_constructor_or_destructor_definition = 326, + sym_constructor_or_destructor_declaration = 327, + sym_default_method_clause = 328, + sym_delete_method_clause = 329, + sym_friend_declaration = 330, + sym_access_specifier = 331, + sym_reference_declarator = 332, + sym_reference_field_declarator = 333, + sym_abstract_reference_declarator = 334, + sym_structured_binding_declarator = 335, + sym_ref_qualifier = 336, + sym_trailing_return_type = 337, + sym_noexcept = 338, + sym_throw_specifier = 339, + sym_template_type = 340, + sym_template_method = 341, + sym_template_function = 342, + sym_template_argument_list = 343, + sym_namespace_definition = 344, + sym_namespace_alias_definition = 345, + sym_namespace_definition_name = 346, + sym_using_declaration = 347, + sym_alias_declaration = 348, + sym_static_assert_declaration = 349, + sym_concept_definition = 350, + sym_for_range_loop = 351, + sym_init_statement = 352, + sym_condition_clause = 353, + sym_condition_declaration = 354, + sym_co_return_statement = 355, + sym_co_yield_statement = 356, + sym_throw_statement = 357, + sym_try_statement = 358, + sym_catch_clause = 359, + sym_co_await_expression = 360, + sym_new_expression = 361, + sym_new_declarator = 362, + sym_delete_expression = 363, + sym_type_requirement = 364, + sym_compound_requirement = 365, + sym__requirement = 366, + sym_requirement_seq = 367, + sym_constraint_conjunction = 368, + sym_constraint_disjunction = 369, + sym__requirement_clause_constraint = 370, + sym_requires_clause = 371, + sym_requires_parameter_list = 372, + sym_requires_expression = 373, + sym_lambda_expression = 374, + sym_lambda_capture_specifier = 375, + sym_lambda_default_capture = 376, + sym__fold_operator = 377, + sym__binary_fold_operator = 378, + sym__unary_left_fold = 379, + sym__unary_right_fold = 380, + sym__binary_fold = 381, + sym_fold_expression = 382, + sym_parameter_pack_expansion = 383, + sym_type_parameter_pack_expansion = 384, + sym_destructor_name = 385, + sym_dependent_identifier = 386, + sym_dependent_field_identifier = 387, + sym_dependent_type_identifier = 388, + sym__scope_resolution = 389, + sym_qualified_field_identifier = 390, + sym_qualified_identifier = 391, + sym_qualified_type_identifier = 392, + sym_qualified_operator_cast_identifier = 393, + sym_operator_name = 394, + sym_user_defined_literal = 395, + aux_sym_translation_unit_repeat1 = 396, + aux_sym_preproc_params_repeat1 = 397, + aux_sym_preproc_if_in_field_declaration_list_repeat1 = 398, + aux_sym_preproc_argument_list_repeat1 = 399, + aux_sym_declaration_repeat1 = 400, + aux_sym_type_definition_repeat1 = 401, + aux_sym_type_definition_repeat2 = 402, + aux_sym__declaration_specifiers_repeat1 = 403, + aux_sym_attribute_declaration_repeat1 = 404, + aux_sym_attributed_declarator_repeat1 = 405, + aux_sym_pointer_declarator_repeat1 = 406, + aux_sym_function_declarator_repeat1 = 407, + aux_sym_function_declarator_repeat2 = 408, + aux_sym_abstract_function_declarator_repeat1 = 409, + aux_sym_sized_type_specifier_repeat1 = 410, + aux_sym_enumerator_list_repeat1 = 411, + aux_sym_field_declaration_repeat1 = 412, + aux_sym_parameter_list_repeat1 = 413, + aux_sym_case_statement_repeat1 = 414, + aux_sym_argument_list_repeat1 = 415, + aux_sym_initializer_list_repeat1 = 416, + aux_sym_initializer_pair_repeat1 = 417, + aux_sym_concatenated_string_repeat1 = 418, + aux_sym_string_literal_repeat1 = 419, + aux_sym_base_class_clause_repeat1 = 420, + aux_sym_template_parameter_list_repeat1 = 421, + aux_sym_field_initializer_list_repeat1 = 422, + aux_sym_operator_cast_definition_repeat1 = 423, + aux_sym_constructor_try_statement_repeat1 = 424, + aux_sym_structured_binding_declarator_repeat1 = 425, + aux_sym_throw_specifier_repeat1 = 426, + aux_sym_template_argument_list_repeat1 = 427, + aux_sym_requirement_seq_repeat1 = 428, + aux_sym_requires_parameter_list_repeat1 = 429, + aux_sym_lambda_capture_specifier_repeat1 = 430, + alias_sym_field_identifier = 431, + alias_sym_namespace_identifier = 432, + alias_sym_simple_requirement = 433, + alias_sym_statement_identifier = 434, + alias_sym_type_identifier = 435, }; static const char * const ts_symbol_names[] = { @@ -561,7 +572,18 @@ static const char * const ts_symbol_names[] = { [anon_sym_AMP_EQ] = "&=", [anon_sym_CARET_EQ] = "^=", [anon_sym_PIPE_EQ] = "|=", + [anon_sym_and_eq] = "and_eq", + [anon_sym_or_eq] = "or_eq", + [anon_sym_xor_eq] = "xor_eq", + [anon_sym_not] = "not", + [anon_sym_compl] = "compl", [anon_sym_LT_EQ_GT] = "<=>", + [anon_sym_or] = "or", + [anon_sym_and] = "and", + [anon_sym_bitor] = "bitor", + [anon_sym_xor] = "xor", + [anon_sym_bitand] = "bitand", + [anon_sym_not_eq] = "not_eq", [anon_sym_DASH_DASH] = "--", [anon_sym_PLUS_PLUS] = "++", [anon_sym_sizeof] = "sizeof", @@ -989,7 +1011,18 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_AMP_EQ] = anon_sym_AMP_EQ, [anon_sym_CARET_EQ] = anon_sym_CARET_EQ, [anon_sym_PIPE_EQ] = anon_sym_PIPE_EQ, + [anon_sym_and_eq] = anon_sym_and_eq, + [anon_sym_or_eq] = anon_sym_or_eq, + [anon_sym_xor_eq] = anon_sym_xor_eq, + [anon_sym_not] = anon_sym_not, + [anon_sym_compl] = anon_sym_compl, [anon_sym_LT_EQ_GT] = anon_sym_LT_EQ_GT, + [anon_sym_or] = anon_sym_or, + [anon_sym_and] = anon_sym_and, + [anon_sym_bitor] = anon_sym_bitor, + [anon_sym_xor] = anon_sym_xor, + [anon_sym_bitand] = anon_sym_bitand, + [anon_sym_not_eq] = anon_sym_not_eq, [anon_sym_DASH_DASH] = anon_sym_DASH_DASH, [anon_sym_PLUS_PLUS] = anon_sym_PLUS_PLUS, [anon_sym_sizeof] = anon_sym_sizeof, @@ -1744,10 +1777,54 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_and_eq] = { + .visible = true, + .named = false, + }, + [anon_sym_or_eq] = { + .visible = true, + .named = false, + }, + [anon_sym_xor_eq] = { + .visible = true, + .named = false, + }, + [anon_sym_not] = { + .visible = true, + .named = false, + }, + [anon_sym_compl] = { + .visible = true, + .named = false, + }, [anon_sym_LT_EQ_GT] = { .visible = true, .named = false, }, + [anon_sym_or] = { + .visible = true, + .named = false, + }, + [anon_sym_and] = { + .visible = true, + .named = false, + }, + [anon_sym_bitor] = { + .visible = true, + .named = false, + }, + [anon_sym_xor] = { + .visible = true, + .named = false, + }, + [anon_sym_bitand] = { + .visible = true, + .named = false, + }, + [anon_sym_not_eq] = { + .visible = true, + .named = false, + }, [anon_sym_DASH_DASH] = { .visible = true, .named = false, @@ -3824,338 +3901,338 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [12] = 12, [13] = 13, [14] = 14, - [15] = 10, - [16] = 13, - [17] = 14, - [18] = 14, - [19] = 10, - [20] = 12, - [21] = 13, - [22] = 12, - [23] = 12, - [24] = 24, - [25] = 14, - [26] = 10, - [27] = 13, + [15] = 12, + [16] = 10, + [17] = 10, + [18] = 18, + [19] = 11, + [20] = 13, + [21] = 11, + [22] = 11, + [23] = 13, + [24] = 13, + [25] = 12, + [26] = 12, + [27] = 10, [28] = 28, [29] = 29, - [30] = 29, - [31] = 29, + [30] = 30, + [31] = 31, [32] = 29, [33] = 33, - [34] = 29, - [35] = 33, + [34] = 34, + [35] = 29, [36] = 29, - [37] = 37, - [38] = 38, - [39] = 33, + [37] = 31, + [38] = 31, + [39] = 31, [40] = 29, - [41] = 37, - [42] = 33, - [43] = 33, - [44] = 29, - [45] = 33, - [46] = 37, - [47] = 29, - [48] = 48, - [49] = 33, - [50] = 50, - [51] = 51, - [52] = 48, - [53] = 29, - [54] = 48, - [55] = 33, - [56] = 33, - [57] = 29, - [58] = 29, - [59] = 33, - [60] = 33, - [61] = 29, + [41] = 29, + [42] = 31, + [43] = 29, + [44] = 31, + [45] = 29, + [46] = 30, + [47] = 31, + [48] = 29, + [49] = 30, + [50] = 31, + [51] = 29, + [52] = 28, + [53] = 53, + [54] = 31, + [55] = 31, + [56] = 29, + [57] = 31, + [58] = 31, + [59] = 29, + [60] = 29, + [61] = 31, [62] = 28, - [63] = 33, - [64] = 37, - [65] = 29, - [66] = 33, - [67] = 29, - [68] = 33, - [69] = 28, - [70] = 28, - [71] = 48, - [72] = 29, - [73] = 33, - [74] = 33, - [75] = 75, - [76] = 76, + [63] = 29, + [64] = 30, + [65] = 31, + [66] = 29, + [67] = 31, + [68] = 31, + [69] = 53, + [70] = 53, + [71] = 71, + [72] = 53, + [73] = 29, + [74] = 29, + [75] = 31, + [76] = 28, [77] = 77, [78] = 78, [79] = 79, - [80] = 75, - [81] = 75, + [80] = 80, + [81] = 81, [82] = 79, [83] = 78, - [84] = 78, - [85] = 76, - [86] = 76, - [87] = 79, - [88] = 75, + [84] = 81, + [85] = 81, + [86] = 77, + [87] = 80, + [88] = 77, [89] = 77, - [90] = 77, - [91] = 77, - [92] = 76, - [93] = 79, + [90] = 78, + [91] = 81, + [92] = 80, + [93] = 80, [94] = 78, - [95] = 75, - [96] = 77, - [97] = 79, - [98] = 76, + [95] = 79, + [96] = 79, + [97] = 80, + [98] = 81, [99] = 78, - [100] = 100, - [101] = 100, + [100] = 77, + [101] = 79, [102] = 102, [103] = 102, - [104] = 102, - [105] = 102, - [106] = 102, - [107] = 102, - [108] = 108, - [109] = 108, - [110] = 108, - [111] = 108, - [112] = 108, - [113] = 113, - [114] = 114, - [115] = 114, - [116] = 114, + [104] = 104, + [105] = 104, + [106] = 104, + [107] = 104, + [108] = 104, + [109] = 104, + [110] = 110, + [111] = 110, + [112] = 110, + [113] = 110, + [114] = 110, + [115] = 110, + [116] = 116, [117] = 117, [118] = 117, - [119] = 119, - [120] = 120, - [121] = 120, - [122] = 122, + [119] = 117, + [120] = 117, + [121] = 121, + [122] = 121, [123] = 123, - [124] = 119, - [125] = 120, - [126] = 122, - [127] = 123, + [124] = 124, + [125] = 125, + [126] = 126, + [127] = 125, [128] = 128, - [129] = 129, - [130] = 123, - [131] = 117, - [132] = 119, - [133] = 133, - [134] = 134, - [135] = 134, + [129] = 124, + [130] = 125, + [131] = 126, + [132] = 123, + [133] = 123, + [134] = 124, + [135] = 126, [136] = 136, - [137] = 134, - [138] = 134, - [139] = 136, - [140] = 136, - [141] = 134, - [142] = 136, - [143] = 134, - [144] = 133, - [145] = 136, - [146] = 146, - [147] = 134, - [148] = 136, - [149] = 134, - [150] = 150, - [151] = 136, - [152] = 136, - [153] = 133, - [154] = 154, - [155] = 155, - [156] = 156, + [137] = 137, + [138] = 138, + [139] = 138, + [140] = 140, + [141] = 141, + [142] = 140, + [143] = 140, + [144] = 144, + [145] = 140, + [146] = 140, + [147] = 137, + [148] = 144, + [149] = 144, + [150] = 144, + [151] = 144, + [152] = 144, + [153] = 144, + [154] = 140, + [155] = 140, + [156] = 140, [157] = 157, - [158] = 158, - [159] = 159, - [160] = 160, - [161] = 156, - [162] = 162, - [163] = 163, - [164] = 155, + [158] = 140, + [159] = 137, + [160] = 144, + [161] = 144, + [162] = 138, + [163] = 138, + [164] = 138, [165] = 165, [166] = 166, - [167] = 157, + [167] = 167, [168] = 168, - [169] = 160, + [169] = 169, [170] = 170, - [171] = 170, + [171] = 171, [172] = 172, - [173] = 170, - [174] = 163, + [173] = 173, + [174] = 174, [175] = 175, [176] = 176, - [177] = 177, - [178] = 170, + [177] = 166, + [178] = 178, [179] = 179, [180] = 180, - [181] = 163, - [182] = 170, - [183] = 162, - [184] = 154, - [185] = 170, - [186] = 186, - [187] = 187, + [181] = 181, + [182] = 182, + [183] = 181, + [184] = 182, + [185] = 175, + [186] = 180, + [187] = 172, [188] = 188, - [189] = 189, - [190] = 180, + [189] = 179, + [190] = 190, [191] = 179, - [192] = 177, - [193] = 186, - [194] = 187, - [195] = 188, - [196] = 176, - [197] = 175, - [198] = 160, - [199] = 180, - [200] = 179, - [201] = 172, - [202] = 157, - [203] = 177, - [204] = 176, - [205] = 166, - [206] = 175, - [207] = 172, - [208] = 165, - [209] = 209, - [210] = 155, - [211] = 209, - [212] = 186, - [213] = 187, - [214] = 159, + [192] = 192, + [193] = 193, + [194] = 194, + [195] = 195, + [196] = 188, + [197] = 197, + [198] = 180, + [199] = 192, + [200] = 166, + [201] = 178, + [202] = 182, + [203] = 176, + [204] = 174, + [205] = 165, + [206] = 188, + [207] = 193, + [208] = 194, + [209] = 195, + [210] = 165, + [211] = 167, + [212] = 190, + [213] = 192, + [214] = 173, [215] = 188, - [216] = 166, - [217] = 165, - [218] = 155, - [219] = 159, - [220] = 158, - [221] = 158, - [222] = 180, - [223] = 156, - [224] = 179, - [225] = 177, - [226] = 176, - [227] = 172, - [228] = 166, - [229] = 165, - [230] = 159, - [231] = 158, - [232] = 189, - [233] = 168, - [234] = 234, - [235] = 234, - [236] = 154, - [237] = 189, - [238] = 209, - [239] = 163, - [240] = 168, - [241] = 156, - [242] = 157, - [243] = 160, - [244] = 162, - [245] = 189, - [246] = 154, - [247] = 234, - [248] = 158, - [249] = 159, - [250] = 155, - [251] = 154, - [252] = 234, - [253] = 188, - [254] = 187, - [255] = 186, - [256] = 165, - [257] = 234, - [258] = 166, - [259] = 186, - [260] = 187, - [261] = 188, - [262] = 172, - [263] = 175, - [264] = 176, - [265] = 177, - [266] = 179, - [267] = 180, - [268] = 180, - [269] = 179, - [270] = 188, - [271] = 187, - [272] = 186, - [273] = 177, - [274] = 176, - [275] = 175, - [276] = 172, - [277] = 166, - [278] = 165, - [279] = 155, - [280] = 159, - [281] = 189, - [282] = 162, - [283] = 158, - [284] = 209, - [285] = 175, - [286] = 189, - [287] = 154, - [288] = 234, - [289] = 160, - [290] = 168, - [291] = 157, - [292] = 156, - [293] = 209, - [294] = 209, - [295] = 168, - [296] = 162, - [297] = 163, - [298] = 163, - [299] = 168, - [300] = 156, - [301] = 157, - [302] = 160, - [303] = 162, - [304] = 304, - [305] = 305, - [306] = 306, - [307] = 307, - [308] = 307, - [309] = 307, - [310] = 310, - [311] = 307, - [312] = 307, - [313] = 313, - [314] = 306, - [315] = 307, - [316] = 306, - [317] = 307, - [318] = 306, - [319] = 306, - [320] = 306, - [321] = 306, - [322] = 306, - [323] = 307, - [324] = 305, - [325] = 304, - [326] = 326, - [327] = 327, - [328] = 305, - [329] = 304, - [330] = 304, - [331] = 331, - [332] = 332, - [333] = 305, - [334] = 334, + [216] = 168, + [217] = 217, + [218] = 169, + [219] = 173, + [220] = 192, + [221] = 190, + [222] = 175, + [223] = 181, + [224] = 190, + [225] = 172, + [226] = 170, + [227] = 195, + [228] = 197, + [229] = 178, + [230] = 193, + [231] = 194, + [232] = 195, + [233] = 167, + [234] = 197, + [235] = 197, + [236] = 178, + [237] = 167, + [238] = 168, + [239] = 169, + [240] = 193, + [241] = 170, + [242] = 171, + [243] = 194, + [244] = 195, + [245] = 165, + [246] = 168, + [247] = 167, + [248] = 168, + [249] = 169, + [250] = 170, + [251] = 217, + [252] = 171, + [253] = 194, + [254] = 174, + [255] = 176, + [256] = 181, + [257] = 174, + [258] = 176, + [259] = 171, + [260] = 166, + [261] = 169, + [262] = 171, + [263] = 170, + [264] = 172, + [265] = 169, + [266] = 168, + [267] = 167, + [268] = 193, + [269] = 188, + [270] = 165, + [271] = 217, + [272] = 178, + [273] = 195, + [274] = 194, + [275] = 193, + [276] = 173, + [277] = 197, + [278] = 217, + [279] = 170, + [280] = 178, + [281] = 197, + [282] = 174, + [283] = 174, + [284] = 171, + [285] = 176, + [286] = 179, + [287] = 176, + [288] = 190, + [289] = 192, + [290] = 179, + [291] = 175, + [292] = 173, + [293] = 217, + [294] = 180, + [295] = 166, + [296] = 182, + [297] = 166, + [298] = 180, + [299] = 173, + [300] = 182, + [301] = 181, + [302] = 179, + [303] = 175, + [304] = 181, + [305] = 192, + [306] = 182, + [307] = 190, + [308] = 172, + [309] = 165, + [310] = 188, + [311] = 180, + [312] = 175, + [313] = 217, + [314] = 172, + [315] = 315, + [316] = 316, + [317] = 317, + [318] = 318, + [319] = 319, + [320] = 319, + [321] = 319, + [322] = 319, + [323] = 319, + [324] = 324, + [325] = 319, + [326] = 317, + [327] = 317, + [328] = 317, + [329] = 317, + [330] = 319, + [331] = 317, + [332] = 317, + [333] = 317, + [334] = 317, [335] = 335, - [336] = 336, - [337] = 337, - [338] = 338, - [339] = 332, - [340] = 340, - [341] = 341, - [342] = 342, - [343] = 343, - [344] = 313, - [345] = 345, - [346] = 346, + [336] = 335, + [337] = 319, + [338] = 319, + [339] = 339, + [340] = 316, + [341] = 316, + [342] = 315, + [343] = 315, + [344] = 344, + [345] = 315, + [346] = 316, [347] = 347, [348] = 348, [349] = 349, @@ -4170,11 +4247,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [358] = 358, [359] = 359, [360] = 360, - [361] = 361, + [361] = 324, [362] = 362, - [363] = 363, + [363] = 318, [364] = 364, - [365] = 313, + [365] = 365, [366] = 366, [367] = 367, [368] = 368, @@ -4186,7 +4263,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [374] = 374, [375] = 375, [376] = 376, - [377] = 310, + [377] = 377, [378] = 378, [379] = 379, [380] = 380, @@ -4220,8 +4297,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [408] = 408, [409] = 409, [410] = 410, - [411] = 411, - [412] = 412, + [411] = 318, + [412] = 324, [413] = 413, [414] = 414, [415] = 415, @@ -4231,7 +4308,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [419] = 419, [420] = 420, [421] = 421, - [422] = 310, + [422] = 422, [423] = 423, [424] = 424, [425] = 425, @@ -4239,7 +4316,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [427] = 427, [428] = 428, [429] = 429, - [430] = 313, + [430] = 430, [431] = 431, [432] = 432, [433] = 433, @@ -4258,14 +4335,14 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [446] = 446, [447] = 447, [448] = 448, - [449] = 310, + [449] = 449, [450] = 450, [451] = 451, [452] = 452, [453] = 453, [454] = 454, [455] = 455, - [456] = 456, + [456] = 318, [457] = 457, [458] = 458, [459] = 459, @@ -4274,39 +4351,39 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [462] = 462, [463] = 463, [464] = 464, - [465] = 460, + [465] = 465, [466] = 466, - [467] = 331, - [468] = 468, + [467] = 467, + [468] = 324, [469] = 469, [470] = 470, [471] = 471, [472] = 472, [473] = 473, - [474] = 331, - [475] = 475, - [476] = 476, - [477] = 460, - [478] = 478, - [479] = 479, - [480] = 480, - [481] = 481, - [482] = 482, - [483] = 483, - [484] = 460, - [485] = 485, - [486] = 327, - [487] = 327, + [474] = 473, + [475] = 347, + [476] = 473, + [477] = 473, + [478] = 339, + [479] = 347, + [480] = 473, + [481] = 473, + [482] = 473, + [483] = 344, + [484] = 339, + [485] = 344, + [486] = 486, + [487] = 487, [488] = 488, [489] = 489, [490] = 490, [491] = 491, [492] = 492, - [493] = 460, + [493] = 493, [494] = 494, [495] = 495, [496] = 496, - [497] = 460, + [497] = 497, [498] = 498, [499] = 499, [500] = 500, @@ -4316,5022 +4393,5022 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [504] = 504, [505] = 505, [506] = 506, - [507] = 460, - [508] = 508, - [509] = 331, - [510] = 460, - [511] = 460, + [507] = 507, + [508] = 344, + [509] = 509, + [510] = 510, + [511] = 511, [512] = 512, - [513] = 460, - [514] = 514, + [513] = 513, + [514] = 347, [515] = 515, - [516] = 460, + [516] = 516, [517] = 517, [518] = 518, - [519] = 460, + [519] = 519, [520] = 520, - [521] = 326, + [521] = 521, [522] = 522, [523] = 523, - [524] = 460, + [524] = 524, [525] = 525, - [526] = 460, + [526] = 473, [527] = 527, [528] = 528, [529] = 529, - [530] = 326, - [531] = 326, - [532] = 327, - [533] = 533, - [534] = 425, - [535] = 418, - [536] = 398, - [537] = 408, - [538] = 358, - [539] = 359, - [540] = 361, - [541] = 367, - [542] = 362, - [543] = 362, - [544] = 351, - [545] = 342, - [546] = 418, - [547] = 409, - [548] = 419, - [549] = 350, - [550] = 363, - [551] = 364, - [552] = 334, - [553] = 372, - [554] = 429, - [555] = 457, - [556] = 432, - [557] = 337, - [558] = 340, - [559] = 341, - [560] = 346, - [561] = 347, - [562] = 348, - [563] = 360, - [564] = 366, - [565] = 417, - [566] = 369, - [567] = 370, - [568] = 374, - [569] = 375, - [570] = 376, - [571] = 378, - [572] = 379, - [573] = 380, - [574] = 421, - [575] = 426, - [576] = 381, - [577] = 394, - [578] = 382, - [579] = 383, - [580] = 385, - [581] = 386, - [582] = 387, - [583] = 388, - [584] = 389, - [585] = 390, - [586] = 392, - [587] = 393, - [588] = 395, - [589] = 396, - [590] = 401, - [591] = 402, - [592] = 403, - [593] = 404, - [594] = 335, - [595] = 405, - [596] = 411, - [597] = 415, - [598] = 420, - [599] = 416, - [600] = 424, - [601] = 454, - [602] = 425, - [603] = 427, - [604] = 428, - [605] = 431, - [606] = 434, - [607] = 435, - [608] = 608, - [609] = 436, - [610] = 437, - [611] = 391, - [612] = 438, - [613] = 439, - [614] = 373, - [615] = 608, - [616] = 441, - [617] = 442, - [618] = 443, - [619] = 444, - [620] = 446, - [621] = 447, - [622] = 448, - [623] = 450, - [624] = 451, - [625] = 452, - [626] = 453, - [627] = 456, - [628] = 458, - [629] = 397, - [630] = 433, - [631] = 423, - [632] = 414, - [633] = 413, - [634] = 412, - [635] = 407, - [636] = 352, - [637] = 406, - [638] = 384, - [639] = 368, - [640] = 384, - [641] = 406, - [642] = 407, - [643] = 412, - [644] = 413, - [645] = 414, - [646] = 423, - [647] = 433, + [530] = 530, + [531] = 531, + [532] = 532, + [533] = 473, + [534] = 473, + [535] = 535, + [536] = 536, + [537] = 537, + [538] = 538, + [539] = 539, + [540] = 540, + [541] = 473, + [542] = 473, + [543] = 543, + [544] = 473, + [545] = 339, + [546] = 473, + [547] = 473, + [548] = 473, + [549] = 452, + [550] = 373, + [551] = 447, + [552] = 406, + [553] = 448, + [554] = 404, + [555] = 449, + [556] = 450, + [557] = 466, + [558] = 463, + [559] = 451, + [560] = 452, + [561] = 403, + [562] = 453, + [563] = 402, + [564] = 401, + [565] = 365, + [566] = 454, + [567] = 356, + [568] = 357, + [569] = 354, + [570] = 400, + [571] = 364, + [572] = 369, + [573] = 457, + [574] = 399, + [575] = 398, + [576] = 469, + [577] = 465, + [578] = 416, + [579] = 462, + [580] = 353, + [581] = 351, + [582] = 461, + [583] = 457, + [584] = 454, + [585] = 453, + [586] = 427, + [587] = 451, + [588] = 450, + [589] = 449, + [590] = 366, + [591] = 448, + [592] = 447, + [593] = 446, + [594] = 445, + [595] = 444, + [596] = 471, + [597] = 443, + [598] = 442, + [599] = 396, + [600] = 395, + [601] = 470, + [602] = 441, + [603] = 368, + [604] = 440, + [605] = 439, + [606] = 438, + [607] = 437, + [608] = 436, + [609] = 435, + [610] = 434, + [611] = 433, + [612] = 432, + [613] = 431, + [614] = 440, + [615] = 430, + [616] = 429, + [617] = 428, + [618] = 427, + [619] = 446, + [620] = 426, + [621] = 349, + [622] = 425, + [623] = 424, + [624] = 445, + [625] = 407, + [626] = 408, + [627] = 409, + [628] = 394, + [629] = 423, + [630] = 422, + [631] = 444, + [632] = 443, + [633] = 393, + [634] = 421, + [635] = 420, + [636] = 442, + [637] = 441, + [638] = 358, + [639] = 359, + [640] = 470, + [641] = 419, + [642] = 418, + [643] = 471, + [644] = 351, + [645] = 417, + [646] = 353, + [647] = 354, [648] = 397, - [649] = 368, - [650] = 367, - [651] = 361, - [652] = 359, + [649] = 355, + [650] = 385, + [651] = 397, + [652] = 352, [653] = 358, - [654] = 458, - [655] = 456, - [656] = 453, - [657] = 452, - [658] = 451, - [659] = 450, - [660] = 448, - [661] = 447, - [662] = 446, - [663] = 371, - [664] = 354, - [665] = 444, - [666] = 443, - [667] = 442, - [668] = 441, + [654] = 464, + [655] = 359, + [656] = 360, + [657] = 405, + [658] = 415, + [659] = 414, + [660] = 413, + [661] = 410, + [662] = 409, + [663] = 392, + [664] = 408, + [665] = 348, + [666] = 413, + [667] = 362, + [668] = 360, [669] = 439, - [670] = 438, - [671] = 349, - [672] = 437, - [673] = 436, - [674] = 435, - [675] = 434, - [676] = 431, - [677] = 428, - [678] = 427, - [679] = 345, - [680] = 424, - [681] = 416, - [682] = 420, + [670] = 391, + [671] = 414, + [672] = 390, + [673] = 389, + [674] = 438, + [675] = 388, + [676] = 348, + [677] = 362, + [678] = 407, + [679] = 437, + [680] = 387, + [681] = 386, + [682] = 406, [683] = 415, - [684] = 411, - [685] = 405, + [684] = 436, + [685] = 385, [686] = 404, [687] = 403, [688] = 402, - [689] = 401, - [690] = 396, - [691] = 395, - [692] = 393, - [693] = 392, - [694] = 390, - [695] = 389, - [696] = 343, - [697] = 353, - [698] = 388, - [699] = 387, - [700] = 351, - [701] = 342, - [702] = 386, - [703] = 385, - [704] = 608, - [705] = 383, - [706] = 382, - [707] = 381, - [708] = 380, - [709] = 379, - [710] = 378, - [711] = 376, - [712] = 375, - [713] = 374, - [714] = 370, - [715] = 369, - [716] = 366, - [717] = 360, - [718] = 348, - [719] = 347, - [720] = 346, - [721] = 341, - [722] = 340, - [723] = 337, - [724] = 432, - [725] = 457, + [689] = 416, + [690] = 417, + [691] = 418, + [692] = 350, + [693] = 435, + [694] = 401, + [695] = 400, + [696] = 399, + [697] = 434, + [698] = 398, + [699] = 433, + [700] = 384, + [701] = 383, + [702] = 432, + [703] = 419, + [704] = 366, + [705] = 396, + [706] = 395, + [707] = 420, + [708] = 368, + [709] = 421, + [710] = 460, + [711] = 422, + [712] = 459, + [713] = 394, + [714] = 393, + [715] = 392, + [716] = 382, + [717] = 391, + [718] = 423, + [719] = 390, + [720] = 367, + [721] = 370, + [722] = 371, + [723] = 372, + [724] = 381, + [725] = 380, [726] = 355, - [727] = 429, - [728] = 372, - [729] = 334, - [730] = 364, - [731] = 363, - [732] = 350, - [733] = 338, - [734] = 419, - [735] = 353, - [736] = 608, - [737] = 336, - [738] = 357, - [739] = 356, - [740] = 410, - [741] = 445, - [742] = 332, - [743] = 455, - [744] = 355, - [745] = 454, - [746] = 335, - [747] = 426, - [748] = 421, - [749] = 417, - [750] = 440, - [751] = 409, - [752] = 408, - [753] = 398, - [754] = 394, - [755] = 418, - [756] = 419, - [757] = 391, - [758] = 350, - [759] = 363, - [760] = 364, - [761] = 334, - [762] = 372, - [763] = 373, - [764] = 429, - [765] = 457, - [766] = 373, - [767] = 432, - [768] = 337, - [769] = 340, - [770] = 341, - [771] = 346, - [772] = 347, - [773] = 348, - [774] = 360, - [775] = 366, - [776] = 369, - [777] = 370, - [778] = 374, - [779] = 375, - [780] = 376, - [781] = 378, - [782] = 379, - [783] = 380, - [784] = 381, - [785] = 382, - [786] = 391, - [787] = 383, - [788] = 385, - [789] = 386, - [790] = 387, - [791] = 388, - [792] = 389, - [793] = 390, - [794] = 392, - [795] = 393, - [796] = 395, - [797] = 396, - [798] = 394, - [799] = 398, - [800] = 408, - [801] = 401, - [802] = 402, - [803] = 403, - [804] = 404, - [805] = 405, - [806] = 411, - [807] = 415, - [808] = 608, - [809] = 420, - [810] = 416, - [811] = 424, - [812] = 425, - [813] = 427, - [814] = 428, - [815] = 431, - [816] = 434, - [817] = 435, - [818] = 436, - [819] = 437, - [820] = 438, - [821] = 439, - [822] = 441, - [823] = 442, - [824] = 443, - [825] = 445, - [826] = 444, - [827] = 446, - [828] = 447, - [829] = 448, - [830] = 409, - [831] = 450, - [832] = 451, - [833] = 452, - [834] = 453, - [835] = 456, - [836] = 400, - [837] = 399, - [838] = 458, - [839] = 397, - [840] = 433, - [841] = 423, - [842] = 414, - [843] = 413, - [844] = 412, - [845] = 407, - [846] = 406, - [847] = 455, - [848] = 417, - [849] = 421, - [850] = 384, - [851] = 426, - [852] = 335, - [853] = 454, - [854] = 608, - [855] = 368, - [856] = 349, - [857] = 371, - [858] = 355, - [859] = 367, - [860] = 361, - [861] = 354, - [862] = 359, - [863] = 358, - [864] = 352, - [865] = 345, - [866] = 336, - [867] = 343, - [868] = 338, - [869] = 343, - [870] = 345, - [871] = 349, - [872] = 440, - [873] = 873, - [874] = 353, - [875] = 440, - [876] = 455, - [877] = 351, - [878] = 342, - [879] = 410, - [880] = 445, - [881] = 400, - [882] = 399, - [883] = 608, - [884] = 352, - [885] = 356, - [886] = 357, - [887] = 357, - [888] = 356, - [889] = 352, - [890] = 362, - [891] = 338, - [892] = 410, - [893] = 399, - [894] = 371, - [895] = 354, - [896] = 400, - [897] = 336, - [898] = 461, - [899] = 494, - [900] = 495, - [901] = 473, - [902] = 528, - [903] = 494, - [904] = 527, - [905] = 499, - [906] = 469, - [907] = 501, - [908] = 525, - [909] = 503, - [910] = 505, - [911] = 462, - [912] = 506, - [913] = 459, - [914] = 522, - [915] = 463, - [916] = 504, - [917] = 478, - [918] = 482, - [919] = 495, - [920] = 500, - [921] = 471, - [922] = 512, - [923] = 463, - [924] = 508, - [925] = 473, - [926] = 512, - [927] = 514, - [928] = 533, - [929] = 529, - [930] = 481, + [727] = 374, + [728] = 375, + [729] = 376, + [730] = 377, + [731] = 378, + [732] = 379, + [733] = 380, + [734] = 381, + [735] = 382, + [736] = 383, + [737] = 384, + [738] = 385, + [739] = 386, + [740] = 387, + [741] = 388, + [742] = 389, + [743] = 379, + [744] = 390, + [745] = 391, + [746] = 392, + [747] = 393, + [748] = 394, + [749] = 395, + [750] = 467, + [751] = 396, + [752] = 398, + [753] = 399, + [754] = 400, + [755] = 401, + [756] = 402, + [757] = 403, + [758] = 404, + [759] = 406, + [760] = 407, + [761] = 378, + [762] = 377, + [763] = 389, + [764] = 408, + [765] = 409, + [766] = 388, + [767] = 387, + [768] = 386, + [769] = 413, + [770] = 414, + [771] = 415, + [772] = 416, + [773] = 417, + [774] = 418, + [775] = 419, + [776] = 420, + [777] = 421, + [778] = 422, + [779] = 423, + [780] = 424, + [781] = 425, + [782] = 426, + [783] = 427, + [784] = 428, + [785] = 429, + [786] = 464, + [787] = 430, + [788] = 431, + [789] = 432, + [790] = 433, + [791] = 434, + [792] = 435, + [793] = 436, + [794] = 437, + [795] = 438, + [796] = 439, + [797] = 440, + [798] = 441, + [799] = 442, + [800] = 443, + [801] = 444, + [802] = 445, + [803] = 446, + [804] = 447, + [805] = 448, + [806] = 449, + [807] = 450, + [808] = 384, + [809] = 451, + [810] = 452, + [811] = 453, + [812] = 454, + [813] = 376, + [814] = 383, + [815] = 382, + [816] = 457, + [817] = 381, + [818] = 380, + [819] = 379, + [820] = 461, + [821] = 462, + [822] = 375, + [823] = 378, + [824] = 464, + [825] = 465, + [826] = 377, + [827] = 376, + [828] = 375, + [829] = 469, + [830] = 374, + [831] = 428, + [832] = 369, + [833] = 364, + [834] = 458, + [835] = 374, + [836] = 373, + [837] = 372, + [838] = 371, + [839] = 373, + [840] = 372, + [841] = 370, + [842] = 367, + [843] = 455, + [844] = 371, + [845] = 405, + [846] = 370, + [847] = 349, + [848] = 367, + [849] = 461, + [850] = 462, + [851] = 455, + [852] = 357, + [853] = 356, + [854] = 465, + [855] = 459, + [856] = 460, + [857] = 352, + [858] = 455, + [859] = 463, + [860] = 860, + [861] = 466, + [862] = 352, + [863] = 365, + [864] = 467, + [865] = 460, + [866] = 459, + [867] = 458, + [868] = 349, + [869] = 469, + [870] = 467, + [871] = 410, + [872] = 470, + [873] = 369, + [874] = 471, + [875] = 351, + [876] = 353, + [877] = 354, + [878] = 364, + [879] = 355, + [880] = 358, + [881] = 359, + [882] = 360, + [883] = 431, + [884] = 430, + [885] = 348, + [886] = 362, + [887] = 458, + [888] = 424, + [889] = 425, + [890] = 350, + [891] = 352, + [892] = 426, + [893] = 466, + [894] = 463, + [895] = 365, + [896] = 366, + [897] = 368, + [898] = 356, + [899] = 397, + [900] = 405, + [901] = 410, + [902] = 429, + [903] = 350, + [904] = 357, + [905] = 489, + [906] = 494, + [907] = 535, + [908] = 520, + [909] = 529, + [910] = 521, + [911] = 504, + [912] = 503, + [913] = 501, + [914] = 521, + [915] = 520, + [916] = 528, + [917] = 500, + [918] = 499, + [919] = 519, + [920] = 518, + [921] = 487, + [922] = 527, + [923] = 532, + [924] = 525, + [925] = 524, + [926] = 523, + [927] = 502, + [928] = 522, + [929] = 498, + [930] = 497, [931] = 496, - [932] = 475, - [933] = 515, - [934] = 470, - [935] = 472, - [936] = 481, - [937] = 518, - [938] = 504, - [939] = 462, - [940] = 514, - [941] = 504, - [942] = 533, - [943] = 491, - [944] = 496, - [945] = 517, - [946] = 515, - [947] = 517, - [948] = 494, - [949] = 525, - [950] = 492, - [951] = 520, - [952] = 485, - [953] = 523, - [954] = 522, - [955] = 468, - [956] = 527, - [957] = 479, - [958] = 502, - [959] = 488, - [960] = 461, - [961] = 466, - [962] = 514, - [963] = 512, - [964] = 459, - [965] = 471, - [966] = 478, - [967] = 508, - [968] = 470, - [969] = 475, - [970] = 506, - [971] = 529, - [972] = 500, - [973] = 528, - [974] = 464, - [975] = 502, - [976] = 490, - [977] = 489, - [978] = 488, - [979] = 523, - [980] = 495, - [981] = 508, - [982] = 485, - [983] = 476, - [984] = 491, - [985] = 520, - [986] = 463, - [987] = 469, - [988] = 468, - [989] = 492, - [990] = 533, - [991] = 476, - [992] = 332, - [993] = 505, - [994] = 464, - [995] = 498, - [996] = 480, - [997] = 466, - [998] = 462, - [999] = 479, - [1000] = 472, - [1001] = 506, - [1002] = 488, - [1003] = 489, - [1004] = 499, - [1005] = 490, - [1006] = 491, - [1007] = 473, - [1008] = 518, - [1009] = 505, + [932] = 495, + [933] = 494, + [934] = 517, + [935] = 536, + [936] = 516, + [937] = 515, + [938] = 493, + [939] = 492, + [940] = 537, + [941] = 513, + [942] = 538, + [943] = 512, + [944] = 511, + [945] = 522, + [946] = 523, + [947] = 491, + [948] = 490, + [949] = 489, + [950] = 531, + [951] = 488, + [952] = 510, + [953] = 509, + [954] = 472, + [955] = 507, + [956] = 539, + [957] = 518, + [958] = 506, + [959] = 519, + [960] = 505, + [961] = 486, + [962] = 524, + [963] = 525, + [964] = 543, + [965] = 535, + [966] = 536, + [967] = 537, + [968] = 538, + [969] = 540, + [970] = 539, + [971] = 486, + [972] = 540, + [973] = 536, + [974] = 502, + [975] = 488, + [976] = 543, + [977] = 487, + [978] = 491, + [979] = 539, + [980] = 537, + [981] = 527, + [982] = 502, + [983] = 517, + [984] = 516, + [985] = 515, + [986] = 513, + [987] = 512, + [988] = 511, + [989] = 510, + [990] = 509, + [991] = 472, + [992] = 499, + [993] = 487, + [994] = 507, + [995] = 543, + [996] = 529, + [997] = 506, + [998] = 505, + [999] = 504, + [1000] = 503, + [1001] = 528, + [1002] = 501, + [1003] = 528, + [1004] = 500, + [1005] = 499, + [1006] = 488, + [1007] = 491, + [1008] = 530, + [1009] = 529, [1010] = 496, - [1011] = 503, - [1012] = 501, - [1013] = 501, - [1014] = 522, - [1015] = 499, - [1016] = 483, - [1017] = 470, - [1018] = 475, - [1019] = 503, - [1020] = 482, - [1021] = 529, - [1022] = 500, - [1023] = 502, + [1011] = 530, + [1012] = 531, + [1013] = 498, + [1014] = 498, + [1015] = 532, + [1016] = 501, + [1017] = 503, + [1018] = 527, + [1019] = 525, + [1020] = 505, + [1021] = 506, + [1022] = 515, + [1023] = 516, [1024] = 517, - [1025] = 492, - [1026] = 490, - [1027] = 459, - [1028] = 481, - [1029] = 479, - [1030] = 518, - [1031] = 485, - [1032] = 520, - [1033] = 468, - [1034] = 464, - [1035] = 523, - [1036] = 483, - [1037] = 498, - [1038] = 525, - [1039] = 476, - [1040] = 480, - [1041] = 483, - [1042] = 489, - [1043] = 482, - [1044] = 469, - [1045] = 478, - [1046] = 480, - [1047] = 498, - [1048] = 527, - [1049] = 528, - [1050] = 472, - [1051] = 471, - [1052] = 515, - [1053] = 466, - [1054] = 461, - [1055] = 1055, - [1056] = 1055, - [1057] = 1055, - [1058] = 1055, - [1059] = 1055, - [1060] = 1060, - [1061] = 1060, - [1062] = 1055, - [1063] = 1055, - [1064] = 1064, - [1065] = 1065, - [1066] = 1066, - [1067] = 1065, - [1068] = 1066, - [1069] = 1064, - [1070] = 1066, - [1071] = 1065, - [1072] = 1065, - [1073] = 1066, - [1074] = 1064, - [1075] = 1065, - [1076] = 1064, - [1077] = 1066, - [1078] = 1066, - [1079] = 1064, - [1080] = 1064, - [1081] = 1065, - [1082] = 1082, - [1083] = 1082, - [1084] = 332, - [1085] = 332, - [1086] = 332, - [1087] = 332, - [1088] = 1088, - [1089] = 1089, - [1090] = 1090, - [1091] = 1091, - [1092] = 1092, - [1093] = 305, - [1094] = 304, - [1095] = 1092, - [1096] = 326, - [1097] = 331, - [1098] = 327, - [1099] = 386, - [1100] = 351, - [1101] = 342, - [1102] = 445, - [1103] = 371, - [1104] = 354, - [1105] = 1105, - [1106] = 356, - [1107] = 443, - [1108] = 357, - [1109] = 362, - [1110] = 353, - [1111] = 410, - [1112] = 1112, - [1113] = 1113, - [1114] = 358, - [1115] = 359, - [1116] = 361, - [1117] = 367, - [1118] = 368, - [1119] = 384, - [1120] = 406, - [1121] = 407, - [1122] = 412, - [1123] = 1123, - [1124] = 1124, - [1125] = 413, - [1126] = 414, - [1127] = 1127, - [1128] = 423, - [1129] = 433, - [1130] = 397, - [1131] = 458, - [1132] = 455, - [1133] = 456, - [1134] = 1090, - [1135] = 1127, - [1136] = 453, - [1137] = 1124, - [1138] = 400, - [1139] = 452, - [1140] = 451, - [1141] = 450, - [1142] = 448, - [1143] = 447, - [1144] = 399, - [1145] = 446, - [1146] = 444, - [1147] = 1089, - [1148] = 1148, - [1149] = 442, - [1150] = 441, - [1151] = 454, - [1152] = 439, - [1153] = 438, - [1154] = 437, - [1155] = 436, - [1156] = 426, - [1157] = 435, - [1158] = 421, - [1159] = 434, - [1160] = 431, - [1161] = 417, - [1162] = 1162, - [1163] = 428, - [1164] = 427, - [1165] = 425, - [1166] = 424, - [1167] = 416, - [1168] = 409, - [1169] = 420, - [1170] = 415, - [1171] = 411, - [1172] = 408, - [1173] = 398, - [1174] = 394, - [1175] = 391, - [1176] = 373, - [1177] = 405, - [1178] = 1105, - [1179] = 404, - [1180] = 403, - [1181] = 402, - [1182] = 401, - [1183] = 335, - [1184] = 396, - [1185] = 395, - [1186] = 1123, - [1187] = 393, - [1188] = 392, - [1189] = 390, - [1190] = 389, - [1191] = 388, - [1192] = 387, - [1193] = 385, - [1194] = 1091, - [1195] = 383, - [1196] = 355, - [1197] = 382, - [1198] = 381, - [1199] = 380, - [1200] = 379, - [1201] = 378, - [1202] = 440, - [1203] = 376, - [1204] = 375, - [1205] = 374, - [1206] = 370, - [1207] = 369, - [1208] = 336, - [1209] = 338, - [1210] = 366, - [1211] = 360, - [1212] = 348, - [1213] = 347, - [1214] = 343, - [1215] = 346, - [1216] = 345, - [1217] = 349, - [1218] = 341, - [1219] = 340, - [1220] = 337, - [1221] = 432, - [1222] = 457, - [1223] = 429, - [1224] = 372, - [1225] = 334, - [1226] = 364, - [1227] = 363, - [1228] = 350, - [1229] = 419, - [1230] = 418, - [1231] = 1231, - [1232] = 1232, + [1025] = 518, + [1026] = 520, + [1027] = 522, + [1028] = 523, + [1029] = 530, + [1030] = 531, + [1031] = 532, + [1032] = 535, + [1033] = 538, + [1034] = 540, + [1035] = 524, + [1036] = 490, + [1037] = 497, + [1038] = 496, + [1039] = 486, + [1040] = 489, + [1041] = 490, + [1042] = 492, + [1043] = 493, + [1044] = 495, + [1045] = 495, + [1046] = 497, + [1047] = 494, + [1048] = 500, + [1049] = 504, + [1050] = 507, + [1051] = 472, + [1052] = 509, + [1053] = 510, + [1054] = 511, + [1055] = 512, + [1056] = 513, + [1057] = 521, + [1058] = 519, + [1059] = 493, + [1060] = 492, + [1061] = 1061, + [1062] = 1062, + [1063] = 1062, + [1064] = 1062, + [1065] = 1062, + [1066] = 1062, + [1067] = 1061, + [1068] = 1062, + [1069] = 1062, + [1070] = 138, + [1071] = 1071, + [1072] = 1072, + [1073] = 1073, + [1074] = 1072, + [1075] = 1073, + [1076] = 1073, + [1077] = 1071, + [1078] = 1078, + [1079] = 1078, + [1080] = 1078, + [1081] = 1072, + [1082] = 1072, + [1083] = 1078, + [1084] = 1078, + [1085] = 1072, + [1086] = 1078, + [1087] = 1071, + [1088] = 1072, + [1089] = 1071, + [1090] = 1071, + [1091] = 1073, + [1092] = 1073, + [1093] = 1078, + [1094] = 1071, + [1095] = 1073, + [1096] = 138, + [1097] = 138, + [1098] = 138, + [1099] = 1099, + [1100] = 1100, + [1101] = 1101, + [1102] = 1102, + [1103] = 1103, + [1104] = 316, + [1105] = 315, + [1106] = 1103, + [1107] = 339, + [1108] = 347, + [1109] = 344, + [1110] = 431, + [1111] = 420, + [1112] = 447, + [1113] = 446, + [1114] = 445, + [1115] = 444, + [1116] = 471, + [1117] = 443, + [1118] = 470, + [1119] = 442, + [1120] = 441, + [1121] = 440, + [1122] = 439, + [1123] = 438, + [1124] = 437, + [1125] = 350, + [1126] = 467, + [1127] = 436, + [1128] = 448, + [1129] = 435, + [1130] = 434, + [1131] = 367, + [1132] = 433, + [1133] = 449, + [1134] = 432, + [1135] = 430, + [1136] = 429, + [1137] = 1137, + [1138] = 450, + [1139] = 362, + [1140] = 428, + [1141] = 466, + [1142] = 463, + [1143] = 451, + [1144] = 1144, + [1145] = 370, + [1146] = 452, + [1147] = 453, + [1148] = 371, + [1149] = 372, + [1150] = 373, + [1151] = 374, + [1152] = 427, + [1153] = 375, + [1154] = 426, + [1155] = 1155, + [1156] = 376, + [1157] = 1157, + [1158] = 377, + [1159] = 1159, + [1160] = 348, + [1161] = 425, + [1162] = 360, + [1163] = 424, + [1164] = 423, + [1165] = 454, + [1166] = 422, + [1167] = 455, + [1168] = 457, + [1169] = 1169, + [1170] = 366, + [1171] = 458, + [1172] = 461, + [1173] = 378, + [1174] = 462, + [1175] = 379, + [1176] = 380, + [1177] = 368, + [1178] = 421, + [1179] = 1101, + [1180] = 381, + [1181] = 419, + [1182] = 418, + [1183] = 359, + [1184] = 417, + [1185] = 416, + [1186] = 415, + [1187] = 464, + [1188] = 358, + [1189] = 355, + [1190] = 414, + [1191] = 413, + [1192] = 397, + [1193] = 405, + [1194] = 410, + [1195] = 354, + [1196] = 409, + [1197] = 353, + [1198] = 351, + [1199] = 408, + [1200] = 407, + [1201] = 406, + [1202] = 404, + [1203] = 1203, + [1204] = 465, + [1205] = 403, + [1206] = 402, + [1207] = 469, + [1208] = 401, + [1209] = 369, + [1210] = 365, + [1211] = 1169, + [1212] = 382, + [1213] = 400, + [1214] = 383, + [1215] = 364, + [1216] = 399, + [1217] = 1203, + [1218] = 384, + [1219] = 459, + [1220] = 385, + [1221] = 386, + [1222] = 1102, + [1223] = 349, + [1224] = 460, + [1225] = 398, + [1226] = 396, + [1227] = 395, + [1228] = 1100, + [1229] = 394, + [1230] = 387, + [1231] = 388, + [1232] = 357, [1233] = 1233, - [1234] = 1234, - [1235] = 1234, - [1236] = 1236, - [1237] = 1234, - [1238] = 1234, - [1239] = 1236, - [1240] = 1236, - [1241] = 1236, - [1242] = 1236, - [1243] = 1236, - [1244] = 1236, - [1245] = 1234, - [1246] = 1234, - [1247] = 1234, - [1248] = 1234, - [1249] = 1249, - [1250] = 1236, - [1251] = 1251, - [1252] = 1252, + [1234] = 393, + [1235] = 389, + [1236] = 392, + [1237] = 356, + [1238] = 1238, + [1239] = 390, + [1240] = 391, + [1241] = 1241, + [1242] = 1241, + [1243] = 1243, + [1244] = 1243, + [1245] = 1245, + [1246] = 1245, + [1247] = 1247, + [1248] = 1245, + [1249] = 1247, + [1250] = 1247, + [1251] = 1245, + [1252] = 1245, [1253] = 1253, - [1254] = 1253, - [1255] = 1251, - [1256] = 1251, - [1257] = 1253, - [1258] = 1251, - [1259] = 1251, - [1260] = 1253, - [1261] = 1261, - [1262] = 1261, - [1263] = 1261, + [1254] = 1247, + [1255] = 1247, + [1256] = 1245, + [1257] = 1247, + [1258] = 1247, + [1259] = 1245, + [1260] = 1247, + [1261] = 1245, + [1262] = 1245, + [1263] = 1247, [1264] = 1264, [1265] = 1264, [1266] = 1264, [1267] = 1264, - [1268] = 1261, - [1269] = 1261, + [1268] = 1264, + [1269] = 1269, [1270] = 1264, [1271] = 1271, [1272] = 1272, [1273] = 1272, - [1274] = 1274, - [1275] = 1272, - [1276] = 1274, + [1274] = 1272, + [1275] = 1271, + [1276] = 1272, [1277] = 1272, - [1278] = 1274, - [1279] = 1272, - [1280] = 1274, - [1281] = 1274, - [1282] = 1274, - [1283] = 1274, - [1284] = 1272, - [1285] = 1274, - [1286] = 1286, - [1287] = 1287, + [1278] = 1271, + [1279] = 1271, + [1280] = 1272, + [1281] = 1271, + [1282] = 1271, + [1283] = 1283, + [1284] = 1283, + [1285] = 1285, + [1286] = 1283, + [1287] = 1283, [1288] = 1288, [1289] = 1289, [1290] = 1290, [1291] = 1291, - [1292] = 1292, - [1293] = 1292, - [1294] = 1286, - [1295] = 1287, + [1292] = 1290, + [1293] = 1293, + [1294] = 1291, + [1295] = 1295, [1296] = 1296, - [1297] = 1287, - [1298] = 1287, - [1299] = 1296, - [1300] = 1286, - [1301] = 1287, - [1302] = 1286, - [1303] = 1296, - [1304] = 1292, - [1305] = 1289, - [1306] = 1292, - [1307] = 1289, - [1308] = 1290, - [1309] = 1292, - [1310] = 1310, - [1311] = 1286, - [1312] = 1289, - [1313] = 1287, - [1314] = 1296, - [1315] = 1286, - [1316] = 1287, - [1317] = 1287, - [1318] = 1292, - [1319] = 1288, - [1320] = 1289, - [1321] = 1296, - [1322] = 1322, - [1323] = 1296, - [1324] = 1296, - [1325] = 1289, - [1326] = 1289, - [1327] = 1289, - [1328] = 1296, - [1329] = 1329, - [1330] = 1286, - [1331] = 1290, - [1332] = 1286, - [1333] = 1333, - [1334] = 1334, - [1335] = 1335, + [1297] = 1296, + [1298] = 1298, + [1299] = 1290, + [1300] = 1300, + [1301] = 1301, + [1302] = 1302, + [1303] = 1302, + [1304] = 1304, + [1305] = 1290, + [1306] = 1301, + [1307] = 1295, + [1308] = 1296, + [1309] = 1296, + [1310] = 1300, + [1311] = 1296, + [1312] = 1304, + [1313] = 1289, + [1314] = 1298, + [1315] = 1289, + [1316] = 1288, + [1317] = 1317, + [1318] = 1318, + [1319] = 1318, + [1320] = 1318, + [1321] = 1293, + [1322] = 1318, + [1323] = 1289, + [1324] = 1318, + [1325] = 1317, + [1326] = 1317, + [1327] = 1318, + [1328] = 1318, + [1329] = 1318, + [1330] = 1293, + [1331] = 1317, + [1332] = 1318, + [1333] = 1317, + [1334] = 1317, + [1335] = 1288, [1336] = 1336, [1337] = 1337, [1338] = 1338, - [1339] = 1334, - [1340] = 1337, - [1341] = 1341, + [1339] = 1337, + [1340] = 1340, + [1341] = 1336, [1342] = 1342, - [1343] = 1343, - [1344] = 1344, + [1343] = 1337, + [1344] = 1293, [1345] = 1338, - [1346] = 1344, - [1347] = 1338, - [1348] = 1342, - [1349] = 1342, - [1350] = 1334, - [1351] = 1351, - [1352] = 1343, + [1346] = 1340, + [1347] = 1337, + [1348] = 1337, + [1349] = 1340, + [1350] = 1338, + [1351] = 1342, + [1352] = 1342, [1353] = 1338, - [1354] = 1337, + [1354] = 1354, [1355] = 1355, - [1356] = 1343, - [1357] = 1336, - [1358] = 1358, - [1359] = 1336, - [1360] = 1336, - [1361] = 1335, - [1362] = 1335, - [1363] = 1363, - [1364] = 1336, - [1365] = 1365, + [1356] = 1340, + [1357] = 1357, + [1358] = 1336, + [1359] = 1340, + [1360] = 1338, + [1361] = 1336, + [1362] = 1362, + [1363] = 1342, + [1364] = 1364, + [1365] = 1336, [1366] = 1337, - [1367] = 1333, - [1368] = 1337, - [1369] = 1351, - [1370] = 1334, - [1371] = 1344, - [1372] = 1372, - [1373] = 1365, - [1374] = 1344, - [1375] = 1333, - [1376] = 1333, - [1377] = 1343, - [1378] = 1336, - [1379] = 1336, - [1380] = 1336, - [1381] = 1343, - [1382] = 1351, - [1383] = 1383, - [1384] = 1333, + [1367] = 1340, + [1368] = 1357, + [1369] = 1342, + [1370] = 1342, + [1371] = 1336, + [1372] = 1338, + [1373] = 1342, + [1374] = 1336, + [1375] = 1336, + [1376] = 1336, + [1377] = 1337, + [1378] = 1357, + [1379] = 1338, + [1380] = 1338, + [1381] = 1340, + [1382] = 1337, + [1383] = 1340, + [1384] = 1337, [1385] = 1338, - [1386] = 1333, - [1387] = 1335, - [1388] = 1344, - [1389] = 1342, - [1390] = 1365, - [1391] = 1342, - [1392] = 1335, - [1393] = 1343, - [1394] = 1383, - [1395] = 1344, + [1386] = 1340, + [1387] = 1387, + [1388] = 1388, + [1389] = 1389, + [1390] = 1390, + [1391] = 1391, + [1392] = 1392, + [1393] = 1393, + [1394] = 1391, + [1395] = 1395, [1396] = 1396, - [1397] = 1383, - [1398] = 1334, - [1399] = 1335, - [1400] = 1342, - [1401] = 1334, - [1402] = 1337, - [1403] = 1338, - [1404] = 1404, - [1405] = 1405, - [1406] = 1406, - [1407] = 1407, - [1408] = 1408, - [1409] = 1409, - [1410] = 1410, - [1411] = 1411, - [1412] = 1412, - [1413] = 1413, + [1397] = 1293, + [1398] = 1398, + [1399] = 1388, + [1400] = 1291, + [1401] = 1301, + [1402] = 1302, + [1403] = 1403, + [1404] = 1387, + [1405] = 1387, + [1406] = 1398, + [1407] = 1390, + [1408] = 1403, + [1409] = 1393, + [1410] = 1389, + [1411] = 1392, + [1412] = 1389, + [1413] = 1392, [1414] = 1414, [1415] = 1415, [1416] = 1416, - [1417] = 1417, - [1418] = 1418, - [1419] = 1406, - [1420] = 1410, - [1421] = 1409, - [1422] = 1410, - [1423] = 1406, - [1424] = 1424, - [1425] = 1408, - [1426] = 1409, - [1427] = 1409, - [1428] = 1428, - [1429] = 1410, - [1430] = 1406, - [1431] = 1431, - [1432] = 1409, - [1433] = 1410, - [1434] = 1408, - [1435] = 1408, - [1436] = 1436, - [1437] = 1410, - [1438] = 1438, - [1439] = 1406, - [1440] = 1408, - [1441] = 1441, - [1442] = 1442, - [1443] = 1443, - [1444] = 1444, - [1445] = 1445, - [1446] = 1406, - [1447] = 1447, - [1448] = 1448, - [1449] = 1409, + [1417] = 1403, + [1418] = 1393, + [1419] = 1415, + [1420] = 1389, + [1421] = 1392, + [1422] = 1422, + [1423] = 1423, + [1424] = 1304, + [1425] = 1422, + [1426] = 1388, + [1427] = 1422, + [1428] = 1300, + [1429] = 1389, + [1430] = 1295, + [1431] = 1398, + [1432] = 1422, + [1433] = 1391, + [1434] = 1415, + [1435] = 1422, + [1436] = 1393, + [1437] = 1415, + [1438] = 1387, + [1439] = 1403, + [1440] = 1393, + [1441] = 1387, + [1442] = 1398, + [1443] = 1403, + [1444] = 1398, + [1445] = 1387, + [1446] = 1403, + [1447] = 1393, + [1448] = 1415, + [1449] = 1389, [1450] = 1450, - [1451] = 1408, - [1452] = 1448, - [1453] = 1409, - [1454] = 1454, - [1455] = 1444, - [1456] = 1456, - [1457] = 1448, - [1458] = 1408, - [1459] = 1409, - [1460] = 1460, - [1461] = 1461, - [1462] = 1462, - [1463] = 1463, - [1464] = 1464, - [1465] = 1408, - [1466] = 1441, + [1451] = 1422, + [1452] = 1398, + [1453] = 1390, + [1454] = 1392, + [1455] = 1455, + [1456] = 1389, + [1457] = 1388, + [1458] = 1298, + [1459] = 1389, + [1460] = 1389, + [1461] = 1388, + [1462] = 1415, + [1463] = 1450, + [1464] = 1388, + [1465] = 1450, + [1466] = 1392, [1467] = 1467, - [1468] = 1431, - [1469] = 1436, - [1470] = 1438, - [1471] = 1471, + [1468] = 1467, + [1469] = 1469, + [1470] = 1470, + [1471] = 1469, [1472] = 1472, [1473] = 1473, [1474] = 1474, - [1475] = 1475, + [1475] = 1467, [1476] = 1476, [1477] = 1477, - [1478] = 1473, - [1479] = 1479, + [1478] = 1478, + [1479] = 1470, [1480] = 1480, [1481] = 1481, [1482] = 1482, [1483] = 1483, - [1484] = 1482, + [1484] = 1484, [1485] = 1485, - [1486] = 1485, - [1487] = 1483, - [1488] = 1488, + [1486] = 1478, + [1487] = 1487, + [1488] = 1473, [1489] = 1489, [1490] = 1490, [1491] = 1491, [1492] = 1492, - [1493] = 1477, - [1494] = 1481, - [1495] = 1489, - [1496] = 1480, - [1497] = 1497, - [1498] = 1491, - [1499] = 1479, - [1500] = 1500, - [1501] = 1501, - [1502] = 1485, - [1503] = 1503, - [1504] = 1504, - [1505] = 1505, + [1493] = 1493, + [1494] = 1494, + [1495] = 1495, + [1496] = 1467, + [1497] = 1467, + [1498] = 1489, + [1499] = 1490, + [1500] = 1473, + [1501] = 1492, + [1502] = 1467, + [1503] = 1474, + [1504] = 1473, + [1505] = 1495, [1506] = 1506, - [1507] = 1490, - [1508] = 1472, - [1509] = 1497, - [1510] = 1500, - [1511] = 1480, - [1512] = 1512, - [1513] = 1503, - [1514] = 1512, - [1515] = 1501, - [1516] = 1505, - [1517] = 1512, - [1518] = 1518, - [1519] = 1506, - [1520] = 1472, - [1521] = 1512, - [1522] = 1518, - [1523] = 1479, - [1524] = 1524, - [1525] = 1525, - [1526] = 1526, - [1527] = 1482, - [1528] = 1471, + [1507] = 1470, + [1508] = 1470, + [1509] = 1478, + [1510] = 1478, + [1511] = 1478, + [1512] = 1470, + [1513] = 1513, + [1514] = 1514, + [1515] = 1515, + [1516] = 1516, + [1517] = 1517, + [1518] = 1474, + [1519] = 1519, + [1520] = 1520, + [1521] = 1521, + [1522] = 1485, + [1523] = 1473, + [1524] = 1478, + [1525] = 1470, + [1526] = 1467, + [1527] = 1527, + [1528] = 1473, [1529] = 1529, - [1530] = 1491, - [1531] = 1512, - [1532] = 1491, + [1530] = 1530, + [1531] = 1473, + [1532] = 1473, [1533] = 1533, - [1534] = 1534, - [1535] = 1526, - [1536] = 1512, - [1537] = 1471, + [1534] = 1473, + [1535] = 1467, + [1536] = 1467, + [1537] = 1537, [1538] = 1538, - [1539] = 1501, - [1540] = 1504, - [1541] = 1529, - [1542] = 1492, - [1543] = 1477, + [1539] = 1539, + [1540] = 1540, + [1541] = 1541, + [1542] = 1542, + [1543] = 1543, [1544] = 1544, - [1545] = 1477, + [1545] = 1539, [1546] = 1546, - [1547] = 1538, - [1548] = 1518, - [1549] = 1472, - [1550] = 1506, - [1551] = 1505, - [1552] = 1503, - [1553] = 1500, - [1554] = 1497, - [1555] = 1490, - [1556] = 1489, - [1557] = 1481, - [1558] = 1479, - [1559] = 1473, - [1560] = 1471, - [1561] = 1485, - [1562] = 1529, - [1563] = 1480, - [1564] = 1526, - [1565] = 1504, - [1566] = 1492, + [1547] = 1547, + [1548] = 1548, + [1549] = 1549, + [1550] = 1550, + [1551] = 1551, + [1552] = 1538, + [1553] = 1553, + [1554] = 1554, + [1555] = 1555, + [1556] = 1541, + [1557] = 1548, + [1558] = 1547, + [1559] = 1559, + [1560] = 1543, + [1561] = 1561, + [1562] = 1562, + [1563] = 1550, + [1564] = 1555, + [1565] = 1565, + [1566] = 1549, [1567] = 1567, [1568] = 1568, - [1569] = 1529, - [1570] = 1492, - [1571] = 1529, - [1572] = 1485, - [1573] = 1483, - [1574] = 1574, - [1575] = 1575, - [1576] = 1481, - [1577] = 1518, - [1578] = 1529, - [1579] = 1482, - [1580] = 1489, - [1581] = 1506, - [1582] = 1473, - [1583] = 1505, - [1584] = 1479, - [1585] = 1491, - [1586] = 1490, - [1587] = 1503, - [1588] = 1534, - [1589] = 1492, - [1590] = 1500, - [1591] = 1477, - [1592] = 1497, - [1593] = 1497, - [1594] = 1479, - [1595] = 1490, - [1596] = 1489, - [1597] = 1481, - [1598] = 1485, - [1599] = 1481, - [1600] = 1500, - [1601] = 1477, - [1602] = 1492, - [1603] = 1490, - [1604] = 1501, - [1605] = 1497, - [1606] = 1505, - [1607] = 1504, - [1608] = 1529, - [1609] = 1491, - [1610] = 1500, - [1611] = 1503, - [1612] = 1480, - [1613] = 1505, - [1614] = 1475, - [1615] = 1526, - [1616] = 1506, - [1617] = 1472, - [1618] = 1480, - [1619] = 1538, + [1569] = 1569, + [1570] = 1549, + [1571] = 1571, + [1572] = 1554, + [1573] = 1550, + [1574] = 1548, + [1575] = 1547, + [1576] = 1576, + [1577] = 1577, + [1578] = 1565, + [1579] = 1540, + [1580] = 1580, + [1581] = 1539, + [1582] = 1582, + [1583] = 1553, + [1584] = 1571, + [1585] = 1577, + [1586] = 1582, + [1587] = 1547, + [1588] = 1543, + [1589] = 1538, + [1590] = 1541, + [1591] = 1555, + [1592] = 1554, + [1593] = 1553, + [1594] = 1538, + [1595] = 1548, + [1596] = 1551, + [1597] = 1550, + [1598] = 1549, + [1599] = 1544, + [1600] = 1546, + [1601] = 1601, + [1602] = 1601, + [1603] = 1551, + [1604] = 1571, + [1605] = 1542, + [1606] = 1561, + [1607] = 1546, + [1608] = 1549, + [1609] = 1550, + [1610] = 1610, + [1611] = 1548, + [1612] = 1547, + [1613] = 1613, + [1614] = 1613, + [1615] = 1542, + [1616] = 1561, + [1617] = 1551, + [1618] = 1571, + [1619] = 1601, [1620] = 1538, - [1621] = 1506, - [1622] = 1518, - [1623] = 1472, - [1624] = 1512, - [1625] = 1518, - [1626] = 1567, - [1627] = 1501, - [1628] = 1525, - [1629] = 1504, - [1630] = 1473, - [1631] = 1492, - [1632] = 1475, - [1633] = 1480, - [1634] = 1529, - [1635] = 1503, - [1636] = 1538, - [1637] = 1477, - [1638] = 1518, - [1639] = 1479, - [1640] = 1485, - [1641] = 1538, - [1642] = 1475, - [1643] = 1526, - [1644] = 1473, - [1645] = 1472, - [1646] = 1475, - [1647] = 1491, - [1648] = 1480, - [1649] = 1518, - [1650] = 1506, - [1651] = 1472, - [1652] = 1505, - [1653] = 1506, - [1654] = 1475, - [1655] = 1505, - [1656] = 1503, - [1657] = 1485, - [1658] = 1567, - [1659] = 1500, - [1660] = 1497, - [1661] = 1479, - [1662] = 1477, - [1663] = 1492, - [1664] = 1489, - [1665] = 1503, - [1666] = 1490, - [1667] = 1489, - [1668] = 1481, - [1669] = 1473, - [1670] = 1491, - [1671] = 1526, - [1672] = 1471, - [1673] = 1500, - [1674] = 1538, - [1675] = 1526, - [1676] = 1481, - [1677] = 1489, - [1678] = 1490, - [1679] = 1567, - [1680] = 1504, - [1681] = 1475, - [1682] = 1473, - [1683] = 1497, - [1684] = 1684, - [1685] = 1685, - [1686] = 1686, - [1687] = 1686, - [1688] = 1688, - [1689] = 1689, - [1690] = 1690, - [1691] = 1691, - [1692] = 1688, - [1693] = 1685, - [1694] = 1688, - [1695] = 1695, - [1696] = 1684, - [1697] = 1689, - [1698] = 1684, - [1699] = 1695, - [1700] = 1685, - [1701] = 1701, - [1702] = 1688, - [1703] = 1701, + [1621] = 1553, + [1622] = 1568, + [1623] = 1565, + [1624] = 1559, + [1625] = 1559, + [1626] = 1542, + [1627] = 1554, + [1628] = 1543, + [1629] = 1542, + [1630] = 1555, + [1631] = 1541, + [1632] = 1601, + [1633] = 1543, + [1634] = 1634, + [1635] = 1540, + [1636] = 1580, + [1637] = 1610, + [1638] = 1638, + [1639] = 1639, + [1640] = 1544, + [1641] = 1571, + [1642] = 1544, + [1643] = 1613, + [1644] = 1540, + [1645] = 1565, + [1646] = 1568, + [1647] = 1610, + [1648] = 1547, + [1649] = 1610, + [1650] = 1601, + [1651] = 1559, + [1652] = 1561, + [1653] = 1569, + [1654] = 1613, + [1655] = 1542, + [1656] = 1656, + [1657] = 1561, + [1658] = 1613, + [1659] = 1543, + [1660] = 1569, + [1661] = 1613, + [1662] = 1542, + [1663] = 1580, + [1664] = 1541, + [1665] = 1576, + [1666] = 1613, + [1667] = 1561, + [1668] = 1668, + [1669] = 1542, + [1670] = 1610, + [1671] = 1601, + [1672] = 1613, + [1673] = 1601, + [1674] = 1555, + [1675] = 1610, + [1676] = 1610, + [1677] = 1565, + [1678] = 1554, + [1679] = 1613, + [1680] = 1539, + [1681] = 1568, + [1682] = 1565, + [1683] = 1561, + [1684] = 1544, + [1685] = 1553, + [1686] = 1610, + [1687] = 1539, + [1688] = 1580, + [1689] = 1549, + [1690] = 1550, + [1691] = 1551, + [1692] = 1540, + [1693] = 1538, + [1694] = 1565, + [1695] = 1553, + [1696] = 1554, + [1697] = 1539, + [1698] = 1538, + [1699] = 1551, + [1700] = 1539, + [1701] = 1610, + [1702] = 1576, + [1703] = 1548, [1704] = 1704, - [1705] = 1690, - [1706] = 1706, - [1707] = 1704, - [1708] = 1691, - [1709] = 1688, - [1710] = 1706, - [1711] = 1711, - [1712] = 1684, - [1713] = 1713, - [1714] = 1686, - [1715] = 1711, - [1716] = 1713, - [1717] = 1711, - [1718] = 1713, - [1719] = 1713, - [1720] = 1685, - [1721] = 1711, - [1722] = 1722, - [1723] = 1722, - [1724] = 1722, - [1725] = 331, - [1726] = 1726, - [1727] = 490, - [1728] = 1728, - [1729] = 1726, - [1730] = 326, - [1731] = 1695, - [1732] = 1689, - [1733] = 1701, - [1734] = 1734, - [1735] = 1706, - [1736] = 1704, - [1737] = 1690, - [1738] = 1691, - [1739] = 1739, - [1740] = 1739, - [1741] = 1741, - [1742] = 1742, - [1743] = 305, - [1744] = 313, - [1745] = 304, - [1746] = 310, - [1747] = 1747, - [1748] = 1748, - [1749] = 1749, + [1705] = 1541, + [1706] = 1546, + [1707] = 1555, + [1708] = 1571, + [1709] = 1555, + [1710] = 1559, + [1711] = 1543, + [1712] = 1544, + [1713] = 1544, + [1714] = 1571, + [1715] = 1543, + [1716] = 1716, + [1717] = 1544, + [1718] = 1554, + [1719] = 1565, + [1720] = 1576, + [1721] = 1547, + [1722] = 1548, + [1723] = 1723, + [1724] = 1601, + [1725] = 1553, + [1726] = 1541, + [1727] = 1544, + [1728] = 1555, + [1729] = 1551, + [1730] = 1550, + [1731] = 1601, + [1732] = 1554, + [1733] = 1549, + [1734] = 1553, + [1735] = 1577, + [1736] = 1580, + [1737] = 1538, + [1738] = 1540, + [1739] = 1569, + [1740] = 1551, + [1741] = 1547, + [1742] = 1540, + [1743] = 1550, + [1744] = 1559, + [1745] = 1549, + [1746] = 1541, + [1747] = 1723, + [1748] = 1569, + [1749] = 1561, [1750] = 1750, - [1751] = 1751, - [1752] = 1752, - [1753] = 1753, - [1754] = 1754, - [1755] = 1755, - [1756] = 1756, - [1757] = 1757, - [1758] = 352, - [1759] = 1759, - [1760] = 1760, - [1761] = 1761, - [1762] = 1762, - [1763] = 1763, - [1764] = 1764, - [1765] = 305, - [1766] = 1704, - [1767] = 1764, - [1768] = 1768, - [1769] = 1689, - [1770] = 1764, - [1771] = 327, - [1772] = 1768, - [1773] = 331, - [1774] = 1691, - [1775] = 1706, - [1776] = 327, - [1777] = 1764, - [1778] = 310, - [1779] = 326, - [1780] = 1764, - [1781] = 305, - [1782] = 1764, - [1783] = 1768, - [1784] = 1701, - [1785] = 1695, - [1786] = 304, - [1787] = 304, - [1788] = 313, - [1789] = 310, - [1790] = 1768, - [1791] = 313, - [1792] = 1764, - [1793] = 1690, - [1794] = 483, + [1751] = 1577, + [1752] = 1565, + [1753] = 1548, + [1754] = 1549, + [1755] = 1569, + [1756] = 1577, + [1757] = 1542, + [1758] = 1580, + [1759] = 1550, + [1760] = 1551, + [1761] = 1546, + [1762] = 1561, + [1763] = 1538, + [1764] = 1543, + [1765] = 1569, + [1766] = 1547, + [1767] = 1548, + [1768] = 1541, + [1769] = 1555, + [1770] = 1554, + [1771] = 1553, + [1772] = 1295, + [1773] = 1302, + [1774] = 1291, + [1775] = 1298, + [1776] = 1304, + [1777] = 1301, + [1778] = 1300, + [1779] = 1779, + [1780] = 1779, + [1781] = 1779, + [1782] = 1779, + [1783] = 1302, + [1784] = 1295, + [1785] = 1785, + [1786] = 1301, + [1787] = 1300, + [1788] = 1304, + [1789] = 1291, + [1790] = 1790, + [1791] = 1790, + [1792] = 536, + [1793] = 1298, + [1794] = 1790, [1795] = 1795, - [1796] = 527, - [1797] = 1797, - [1798] = 533, - [1799] = 496, - [1800] = 492, - [1801] = 1801, - [1802] = 1802, - [1803] = 1803, - [1804] = 1804, - [1805] = 522, - [1806] = 1711, - [1807] = 485, - [1808] = 1804, - [1809] = 1685, - [1810] = 478, - [1811] = 517, - [1812] = 469, - [1813] = 445, - [1814] = 490, - [1815] = 1711, - [1816] = 1804, - [1817] = 518, - [1818] = 352, - [1819] = 515, - [1820] = 1820, - [1821] = 400, - [1822] = 1822, - [1823] = 399, - [1824] = 352, - [1825] = 1825, - [1826] = 1826, - [1827] = 440, - [1828] = 1797, - [1829] = 1797, - [1830] = 1830, - [1831] = 464, - [1832] = 1804, + [1796] = 1289, + [1797] = 1300, + [1798] = 1304, + [1799] = 344, + [1800] = 1800, + [1801] = 1293, + [1802] = 347, + [1803] = 1289, + [1804] = 1302, + [1805] = 1800, + [1806] = 1295, + [1807] = 1288, + [1808] = 1298, + [1809] = 1291, + [1810] = 1301, + [1811] = 1301, + [1812] = 1812, + [1813] = 1813, + [1814] = 1293, + [1815] = 1291, + [1816] = 1302, + [1817] = 1304, + [1818] = 1300, + [1819] = 1295, + [1820] = 1298, + [1821] = 1821, + [1822] = 1293, + [1823] = 1289, + [1824] = 1824, + [1825] = 1293, + [1826] = 1293, + [1827] = 1827, + [1828] = 1293, + [1829] = 1829, + [1830] = 1288, + [1831] = 1821, + [1832] = 1832, [1833] = 1833, - [1834] = 498, - [1835] = 357, + [1834] = 1812, + [1835] = 1835, [1836] = 1836, [1837] = 1837, [1838] = 1838, - [1839] = 356, - [1840] = 480, - [1841] = 459, - [1842] = 1804, - [1843] = 504, - [1844] = 476, - [1845] = 488, - [1846] = 523, - [1847] = 502, - [1848] = 1848, - [1849] = 1849, - [1850] = 1850, - [1851] = 1851, + [1839] = 1293, + [1840] = 1840, + [1841] = 1841, + [1842] = 1842, + [1843] = 1843, + [1844] = 1843, + [1845] = 1845, + [1846] = 1838, + [1847] = 1827, + [1848] = 1832, + [1849] = 1835, + [1850] = 1842, + [1851] = 1293, [1852] = 1852, [1853] = 1853, - [1854] = 1854, - [1855] = 1855, + [1854] = 1833, + [1855] = 1841, [1856] = 1856, - [1857] = 1857, + [1857] = 1840, [1858] = 1858, - [1859] = 1859, - [1860] = 489, - [1861] = 1711, - [1862] = 482, - [1863] = 1711, - [1864] = 500, - [1865] = 505, - [1866] = 506, - [1867] = 529, - [1868] = 1797, - [1869] = 335, - [1870] = 454, - [1871] = 494, - [1872] = 1797, - [1873] = 475, - [1874] = 1797, - [1875] = 1797, - [1876] = 495, - [1877] = 1877, - [1878] = 508, - [1879] = 512, - [1880] = 514, - [1881] = 1804, - [1882] = 470, - [1883] = 1883, + [1859] = 1836, + [1860] = 1837, + [1861] = 1824, + [1862] = 1862, + [1863] = 1863, + [1864] = 1864, + [1865] = 1829, + [1866] = 1866, + [1867] = 1867, + [1868] = 324, + [1869] = 1295, + [1870] = 1864, + [1871] = 1821, + [1872] = 1291, + [1873] = 1873, + [1874] = 1812, + [1875] = 1875, + [1876] = 316, + [1877] = 1300, + [1878] = 1301, + [1879] = 1879, + [1880] = 1298, + [1881] = 315, + [1882] = 1867, + [1883] = 1304, [1884] = 1884, - [1885] = 1885, + [1885] = 318, [1886] = 1886, - [1887] = 1887, + [1887] = 1302, [1888] = 1888, - [1889] = 331, - [1890] = 326, - [1891] = 1685, - [1892] = 1892, - [1893] = 327, - [1894] = 1892, - [1895] = 1686, - [1896] = 1892, - [1897] = 1691, - [1898] = 1706, - [1899] = 1892, - [1900] = 1689, - [1901] = 1701, - [1902] = 1695, - [1903] = 1690, - [1904] = 1704, - [1905] = 1711, - [1906] = 515, - [1907] = 485, - [1908] = 502, - [1909] = 500, - [1910] = 529, - [1911] = 492, + [1889] = 352, + [1890] = 1884, + [1891] = 1891, + [1892] = 1829, + [1893] = 1875, + [1894] = 1894, + [1895] = 1895, + [1896] = 1896, + [1897] = 1873, + [1898] = 1898, + [1899] = 1899, + [1900] = 1900, + [1901] = 1901, + [1902] = 1863, + [1903] = 1903, + [1904] = 1812, + [1905] = 1812, + [1906] = 1845, + [1907] = 1840, + [1908] = 1833, + [1909] = 1909, + [1910] = 1821, + [1911] = 1841, [1912] = 1912, - [1913] = 514, - [1914] = 1820, - [1915] = 1912, - [1916] = 464, - [1917] = 496, - [1918] = 498, - [1919] = 480, - [1920] = 533, - [1921] = 1822, - [1922] = 1825, - [1923] = 527, - [1924] = 512, - [1925] = 480, - [1926] = 1836, - [1927] = 1837, - [1928] = 1838, - [1929] = 498, - [1930] = 508, - [1931] = 506, - [1932] = 475, - [1933] = 1885, - [1934] = 335, - [1935] = 470, - [1936] = 454, - [1937] = 505, - [1938] = 518, - [1939] = 476, - [1940] = 1850, - [1941] = 1851, - [1942] = 483, - [1943] = 1852, - [1944] = 399, - [1945] = 400, - [1946] = 488, - [1947] = 1853, - [1948] = 1855, - [1949] = 1856, - [1950] = 1857, - [1951] = 512, - [1952] = 504, - [1953] = 1858, - [1954] = 1859, - [1955] = 1883, - [1956] = 1884, - [1957] = 1885, - [1958] = 1886, - [1959] = 1887, - [1960] = 1888, - [1961] = 527, - [1962] = 1877, - [1963] = 1830, - [1964] = 522, - [1965] = 1826, - [1966] = 523, - [1967] = 1967, - [1968] = 1803, - [1969] = 1802, - [1970] = 490, - [1971] = 469, - [1972] = 489, - [1973] = 494, - [1974] = 517, - [1975] = 515, - [1976] = 514, - [1977] = 1977, - [1978] = 357, - [1979] = 478, - [1980] = 508, - [1981] = 506, - [1982] = 505, - [1983] = 495, - [1984] = 1801, - [1985] = 356, - [1986] = 1849, - [1987] = 357, - [1988] = 489, - [1989] = 488, - [1990] = 1854, - [1991] = 459, - [1992] = 482, - [1993] = 1795, - [1994] = 1848, - [1995] = 1848, - [1996] = 459, - [1997] = 1883, - [1998] = 445, - [1999] = 1884, - [2000] = 2000, - [2001] = 1795, - [2002] = 1838, - [2003] = 478, - [2004] = 1854, - [2005] = 469, - [2006] = 1837, - [2007] = 335, - [2008] = 454, - [2009] = 483, - [2010] = 485, - [2011] = 1836, - [2012] = 495, - [2013] = 1859, - [2014] = 1858, + [1913] = 1913, + [1914] = 1827, + [1915] = 1836, + [1916] = 1837, + [1917] = 1838, + [1918] = 1862, + [1919] = 1919, + [1920] = 1835, + [1921] = 1921, + [1922] = 1853, + [1923] = 1842, + [1924] = 1852, + [1925] = 1925, + [1926] = 1866, + [1927] = 1824, + [1928] = 1928, + [1929] = 1888, + [1930] = 1930, + [1931] = 1931, + [1932] = 1886, + [1933] = 1933, + [1934] = 1934, + [1935] = 1821, + [1936] = 1832, + [1937] = 1873, + [1938] = 1938, + [1939] = 318, + [1940] = 339, + [1941] = 324, + [1942] = 339, + [1943] = 1886, + [1944] = 1836, + [1945] = 1837, + [1946] = 1838, + [1947] = 1888, + [1948] = 1884, + [1949] = 1949, + [1950] = 1950, + [1951] = 1951, + [1952] = 315, + [1953] = 1827, + [1954] = 1954, + [1955] = 1832, + [1956] = 1835, + [1957] = 1833, + [1958] = 316, + [1959] = 1912, + [1960] = 1960, + [1961] = 1840, + [1962] = 1841, + [1963] = 1938, + [1964] = 1842, + [1965] = 1954, + [1966] = 1895, + [1967] = 1873, + [1968] = 1864, + [1969] = 1954, + [1970] = 1824, + [1971] = 324, + [1972] = 316, + [1973] = 318, + [1974] = 1954, + [1975] = 1938, + [1976] = 1930, + [1977] = 1867, + [1978] = 1829, + [1979] = 315, + [1980] = 347, + [1981] = 344, + [1982] = 1938, + [1983] = 1938, + [1984] = 1938, + [1985] = 1938, + [1986] = 1986, + [1987] = 1987, + [1988] = 543, + [1989] = 1989, + [1990] = 1990, + [1991] = 1991, + [1992] = 1992, + [1993] = 1993, + [1994] = 539, + [1995] = 1989, + [1996] = 1996, + [1997] = 1909, + [1998] = 1989, + [1999] = 1867, + [2000] = 538, + [2001] = 537, + [2002] = 2002, + [2003] = 2003, + [2004] = 2004, + [2005] = 486, + [2006] = 2006, + [2007] = 2007, + [2008] = 2008, + [2009] = 2009, + [2010] = 1987, + [2011] = 1989, + [2012] = 529, + [2013] = 2013, + [2014] = 2014, [2015] = 2015, - [2016] = 492, - [2017] = 494, - [2018] = 1820, - [2019] = 496, - [2020] = 356, - [2021] = 1857, - [2022] = 1856, - [2023] = 1822, - [2024] = 1855, - [2025] = 517, - [2026] = 440, - [2027] = 522, - [2028] = 1825, - [2029] = 533, - [2030] = 1853, - [2031] = 1886, + [2016] = 2016, + [2017] = 2017, + [2018] = 2018, + [2019] = 2019, + [2020] = 2020, + [2021] = 2021, + [2022] = 2022, + [2023] = 2023, + [2024] = 2024, + [2025] = 2025, + [2026] = 2026, + [2027] = 2027, + [2028] = 1836, + [2029] = 471, + [2030] = 1912, + [2031] = 1845, [2032] = 2032, - [2033] = 470, - [2034] = 475, - [2035] = 529, - [2036] = 500, - [2037] = 502, - [2038] = 523, - [2039] = 476, - [2040] = 1887, - [2041] = 440, - [2042] = 399, - [2043] = 400, - [2044] = 490, - [2045] = 445, - [2046] = 1888, - [2047] = 1877, - [2048] = 504, - [2049] = 464, - [2050] = 1830, - [2051] = 482, - [2052] = 518, - [2053] = 1826, - [2054] = 1852, + [2033] = 2033, + [2034] = 470, + [2035] = 2035, + [2036] = 2036, + [2037] = 2037, + [2038] = 2038, + [2039] = 2039, + [2040] = 2040, + [2041] = 2041, + [2042] = 2042, + [2043] = 2043, + [2044] = 2044, + [2045] = 2045, + [2046] = 2046, + [2047] = 2047, + [2048] = 489, + [2049] = 490, + [2050] = 1837, + [2051] = 491, + [2052] = 1838, + [2053] = 2053, + [2054] = 2054, [2055] = 2055, - [2056] = 1803, - [2057] = 1802, - [2058] = 1851, - [2059] = 1801, - [2060] = 1849, - [2061] = 1850, - [2062] = 1685, + [2056] = 2056, + [2057] = 2057, + [2058] = 2058, + [2059] = 2059, + [2060] = 2060, + [2061] = 2061, + [2062] = 1875, [2063] = 2063, [2064] = 2064, - [2065] = 1912, - [2066] = 2066, - [2067] = 1686, + [2065] = 458, + [2066] = 536, + [2067] = 528, [2068] = 2068, - [2069] = 2000, + [2069] = 1987, [2070] = 2070, [2071] = 2071, [2072] = 2072, - [2073] = 2000, + [2073] = 1989, [2074] = 2074, - [2075] = 2032, + [2075] = 2075, [2076] = 2076, [2077] = 2077, - [2078] = 1711, + [2078] = 2078, [2079] = 2079, [2080] = 2080, - [2081] = 2081, - [2082] = 2032, + [2081] = 527, + [2082] = 2082, [2083] = 2083, - [2084] = 2077, + [2084] = 2084, [2085] = 2085, - [2086] = 2066, - [2087] = 2087, - [2088] = 2071, - [2089] = 2089, + [2086] = 2086, + [2087] = 463, + [2088] = 492, + [2089] = 493, [2090] = 2090, - [2091] = 2072, - [2092] = 2092, - [2093] = 2063, + [2091] = 2091, + [2092] = 459, + [2093] = 460, [2094] = 2094, - [2095] = 2080, - [2096] = 2076, - [2097] = 2070, - [2098] = 2068, + [2095] = 487, + [2096] = 352, + [2097] = 2097, + [2098] = 495, [2099] = 2099, - [2100] = 2083, - [2101] = 2081, - [2102] = 2064, - [2103] = 2079, - [2104] = 2074, - [2105] = 2074, + [2100] = 2100, + [2101] = 2101, + [2102] = 2102, + [2103] = 1989, + [2104] = 2104, + [2105] = 2105, [2106] = 2106, - [2107] = 1706, - [2108] = 2071, - [2109] = 1689, - [2110] = 2079, - [2111] = 2111, - [2112] = 2032, - [2113] = 326, - [2114] = 1704, - [2115] = 2115, - [2116] = 2000, + [2107] = 2107, + [2108] = 2108, + [2109] = 2109, + [2110] = 2110, + [2111] = 497, + [2112] = 2112, + [2113] = 2113, + [2114] = 2114, + [2115] = 525, + [2116] = 466, [2117] = 2117, - [2118] = 2118, - [2119] = 1691, - [2120] = 1695, - [2121] = 1701, - [2122] = 1691, - [2123] = 2072, - [2124] = 1706, - [2125] = 331, - [2126] = 2076, - [2127] = 2080, - [2128] = 2117, - [2129] = 2129, - [2130] = 2077, - [2131] = 2085, - [2132] = 1689, - [2133] = 2106, + [2118] = 524, + [2119] = 2119, + [2120] = 1863, + [2121] = 1989, + [2122] = 352, + [2123] = 467, + [2124] = 1987, + [2125] = 1862, + [2126] = 2126, + [2127] = 502, + [2128] = 1987, + [2129] = 523, + [2130] = 2130, + [2131] = 1987, + [2132] = 2132, + [2133] = 522, [2134] = 2134, - [2135] = 2068, - [2136] = 1701, - [2137] = 1695, - [2138] = 1690, - [2139] = 1704, - [2140] = 2081, - [2141] = 2141, - [2142] = 1690, - [2143] = 2070, - [2144] = 2085, - [2145] = 2083, - [2146] = 2146, - [2147] = 2129, - [2148] = 2148, - [2149] = 2118, - [2150] = 2080, - [2151] = 2066, - [2152] = 2064, - [2153] = 2071, - [2154] = 2063, - [2155] = 2106, - [2156] = 2094, - [2157] = 2072, - [2158] = 2083, - [2159] = 2159, + [2135] = 521, + [2136] = 2136, + [2137] = 519, + [2138] = 2138, + [2139] = 1864, + [2140] = 1896, + [2141] = 1833, + [2142] = 1842, + [2143] = 1866, + [2144] = 2144, + [2145] = 2145, + [2146] = 1841, + [2147] = 513, + [2148] = 1853, + [2149] = 500, + [2150] = 1840, + [2151] = 504, + [2152] = 1832, + [2153] = 1852, + [2154] = 505, + [2155] = 506, + [2156] = 507, + [2157] = 2157, + [2158] = 2158, + [2159] = 472, [2160] = 2160, - [2161] = 2117, - [2162] = 2081, - [2163] = 2077, - [2164] = 2134, - [2165] = 2118, - [2166] = 2076, - [2167] = 2089, - [2168] = 2099, - [2169] = 2090, - [2170] = 2134, - [2171] = 2087, - [2172] = 2092, - [2173] = 2074, - [2174] = 2070, - [2175] = 2129, + [2161] = 1289, + [2162] = 512, + [2163] = 509, + [2164] = 1835, + [2165] = 510, + [2166] = 511, + [2167] = 1950, + [2168] = 1293, + [2169] = 1863, + [2170] = 1875, + [2171] = 2171, + [2172] = 1960, + [2173] = 2173, + [2174] = 2174, + [2175] = 2175, [2176] = 2176, [2177] = 2177, - [2178] = 1691, - [2179] = 1706, - [2180] = 2159, - [2181] = 2181, - [2182] = 2032, - [2183] = 2106, - [2184] = 1704, - [2185] = 2117, - [2186] = 1690, - [2187] = 2129, - [2188] = 2118, - [2189] = 1689, - [2190] = 2190, - [2191] = 2191, - [2192] = 2085, - [2193] = 2193, - [2194] = 2134, - [2195] = 2000, - [2196] = 2196, + [2178] = 1949, + [2179] = 1866, + [2180] = 2180, + [2181] = 1853, + [2182] = 1884, + [2183] = 1912, + [2184] = 1845, + [2185] = 1862, + [2186] = 1886, + [2187] = 1293, + [2188] = 1951, + [2189] = 2189, + [2190] = 2171, + [2191] = 2175, + [2192] = 2192, + [2193] = 1930, + [2194] = 339, + [2195] = 1895, + [2196] = 1289, [2197] = 2197, - [2198] = 2079, - [2199] = 1695, - [2200] = 2106, - [2201] = 2085, - [2202] = 1701, - [2203] = 2203, - [2204] = 2068, - [2205] = 2177, - [2206] = 2118, - [2207] = 2117, - [2208] = 2208, - [2209] = 2087, - [2210] = 2210, + [2198] = 344, + [2199] = 347, + [2200] = 1852, + [2201] = 2175, + [2202] = 1888, + [2203] = 2175, + [2204] = 1986, + [2205] = 2097, + [2206] = 505, + [2207] = 527, + [2208] = 528, + [2209] = 2209, + [2210] = 1895, [2211] = 2211, - [2212] = 2212, - [2213] = 2213, + [2212] = 2209, + [2213] = 529, [2214] = 2214, - [2215] = 2215, - [2216] = 2216, - [2217] = 2217, - [2218] = 2218, - [2219] = 2218, - [2220] = 2220, - [2221] = 2221, - [2222] = 2222, - [2223] = 2080, - [2224] = 2224, - [2225] = 2225, - [2226] = 2226, - [2227] = 2227, - [2228] = 2228, - [2229] = 2229, - [2230] = 2081, - [2231] = 2231, - [2232] = 2232, - [2233] = 2233, - [2234] = 2234, - [2235] = 2235, - [2236] = 2236, - [2237] = 2099, - [2238] = 2238, - [2239] = 2239, - [2240] = 2240, - [2241] = 2241, - [2242] = 2242, - [2243] = 2243, - [2244] = 2244, - [2245] = 2245, - [2246] = 2246, - [2247] = 2247, - [2248] = 2248, - [2249] = 2249, - [2250] = 2250, - [2251] = 2251, - [2252] = 2252, - [2253] = 2160, - [2254] = 2092, - [2255] = 2255, - [2256] = 1685, - [2257] = 2257, - [2258] = 2258, - [2259] = 2259, - [2260] = 2074, - [2261] = 2070, - [2262] = 2262, - [2263] = 2218, - [2264] = 2264, - [2265] = 2265, - [2266] = 2266, - [2267] = 2129, - [2268] = 2268, - [2269] = 2071, - [2270] = 2134, - [2271] = 2271, - [2272] = 2077, - [2273] = 2076, - [2274] = 2274, - [2275] = 2275, - [2276] = 2072, - [2277] = 2277, - [2278] = 2278, - [2279] = 2279, - [2280] = 2280, - [2281] = 2281, - [2282] = 2090, - [2283] = 2283, - [2284] = 2218, - [2285] = 2089, - [2286] = 2286, - [2287] = 2083, - [2288] = 2288, - [2289] = 2289, - [2290] = 2290, + [2215] = 2209, + [2216] = 2018, + [2217] = 2017, + [2218] = 487, + [2219] = 522, + [2220] = 523, + [2221] = 2015, + [2222] = 2009, + [2223] = 2008, + [2224] = 2004, + [2225] = 2084, + [2226] = 2003, + [2227] = 2002, + [2228] = 2209, + [2229] = 2209, + [2230] = 491, + [2231] = 497, + [2232] = 495, + [2233] = 1298, + [2234] = 2113, + [2235] = 2107, + [2236] = 487, + [2237] = 2013, + [2238] = 538, + [2239] = 2104, + [2240] = 523, + [2241] = 2100, + [2242] = 2014, + [2243] = 2097, + [2244] = 2094, + [2245] = 2171, + [2246] = 2090, + [2247] = 2189, + [2248] = 2053, + [2249] = 2054, + [2250] = 2055, + [2251] = 2056, + [2252] = 2057, + [2253] = 2058, + [2254] = 2059, + [2255] = 2016, + [2256] = 1990, + [2257] = 1930, + [2258] = 2019, + [2259] = 2020, + [2260] = 2021, + [2261] = 493, + [2262] = 502, + [2263] = 2006, + [2264] = 1991, + [2265] = 492, + [2266] = 1992, + [2267] = 2060, + [2268] = 2061, + [2269] = 2269, + [2270] = 2145, + [2271] = 490, + [2272] = 2157, + [2273] = 2273, + [2274] = 2022, + [2275] = 2023, + [2276] = 489, + [2277] = 458, + [2278] = 2024, + [2279] = 536, + [2280] = 2158, + [2281] = 2025, + [2282] = 2026, + [2283] = 2027, + [2284] = 2144, + [2285] = 459, + [2286] = 525, + [2287] = 460, + [2288] = 524, + [2289] = 2138, + [2290] = 2160, [2291] = 2291, - [2292] = 2292, - [2293] = 2293, - [2294] = 2294, - [2295] = 2176, - [2296] = 2296, - [2297] = 2297, - [2298] = 2298, - [2299] = 2094, - [2300] = 2300, + [2292] = 2136, + [2293] = 2134, + [2294] = 467, + [2295] = 2084, + [2296] = 2132, + [2297] = 543, + [2298] = 1909, + [2299] = 486, + [2300] = 1821, [2301] = 2301, - [2302] = 1711, - [2303] = 2159, - [2304] = 2196, - [2305] = 1711, - [2306] = 2306, - [2307] = 2203, - [2308] = 2190, - [2309] = 2191, - [2310] = 2190, - [2311] = 2311, - [2312] = 2312, - [2313] = 2313, - [2314] = 2177, - [2315] = 2196, - [2316] = 2316, - [2317] = 2317, - [2318] = 2312, - [2319] = 2319, - [2320] = 2320, - [2321] = 2321, - [2322] = 2203, - [2323] = 2191, - [2324] = 1685, - [2325] = 2212, - [2326] = 2176, - [2327] = 2300, - [2328] = 2244, - [2329] = 2288, - [2330] = 2264, - [2331] = 2259, - [2332] = 2250, - [2333] = 2242, - [2334] = 2334, - [2335] = 2235, - [2336] = 2234, - [2337] = 2228, - [2338] = 2227, - [2339] = 2225, - [2340] = 2224, - [2341] = 2216, - [2342] = 2289, - [2343] = 2292, - [2344] = 2240, - [2345] = 2215, - [2346] = 2222, - [2347] = 2286, - [2348] = 2281, - [2349] = 2349, - [2350] = 2238, - [2351] = 2266, - [2352] = 2291, - [2353] = 2239, - [2354] = 2265, - [2355] = 2221, - [2356] = 2236, - [2357] = 2233, - [2358] = 2232, - [2359] = 2296, - [2360] = 2210, - [2361] = 2212, - [2362] = 2213, - [2363] = 2363, - [2364] = 2334, - [2365] = 1685, - [2366] = 2217, - [2367] = 2367, - [2368] = 2220, - [2369] = 2226, - [2370] = 2262, - [2371] = 2371, - [2372] = 2371, - [2373] = 1685, - [2374] = 2211, - [2375] = 2375, - [2376] = 2371, - [2377] = 2249, - [2378] = 2252, - [2379] = 2231, - [2380] = 2334, - [2381] = 2257, - [2382] = 2271, - [2383] = 2258, - [2384] = 2229, - [2385] = 2367, - [2386] = 2160, - [2387] = 2068, - [2388] = 2363, - [2389] = 2208, - [2390] = 2247, - [2391] = 2246, - [2392] = 2243, - [2393] = 2258, - [2394] = 2208, - [2395] = 2247, - [2396] = 2246, - [2397] = 2243, - [2398] = 2241, - [2399] = 2240, - [2400] = 2238, - [2401] = 2236, - [2402] = 2233, - [2403] = 2232, - [2404] = 2231, - [2405] = 2229, - [2406] = 2274, - [2407] = 2251, - [2408] = 2255, - [2409] = 2277, - [2410] = 2279, - [2411] = 2271, - [2412] = 2349, - [2413] = 2283, - [2414] = 2334, - [2415] = 2349, - [2416] = 2349, - [2417] = 2235, - [2418] = 2298, - [2419] = 2262, - [2420] = 2015, - [2421] = 2117, - [2422] = 2275, - [2423] = 2118, - [2424] = 2106, - [2425] = 2085, - [2426] = 1706, - [2427] = 2375, - [2428] = 2079, - [2429] = 2248, - [2430] = 1689, - [2431] = 2300, - [2432] = 2306, - [2433] = 2278, - [2434] = 1690, - [2435] = 2319, - [2436] = 1704, - [2437] = 2375, - [2438] = 2367, - [2439] = 2257, - [2440] = 2211, - [2441] = 2296, - [2442] = 2210, - [2443] = 2214, - [2444] = 2213, - [2445] = 2217, - [2446] = 2220, - [2447] = 2226, - [2448] = 2249, - [2449] = 2252, - [2450] = 2363, - [2451] = 2363, - [2452] = 2244, - [2453] = 2290, - [2454] = 2288, - [2455] = 2286, - [2456] = 2281, - [2457] = 2266, - [2458] = 2349, - [2459] = 2459, - [2460] = 1695, - [2461] = 2265, - [2462] = 2221, - [2463] = 1701, - [2464] = 1691, - [2465] = 2241, - [2466] = 1711, - [2467] = 2274, - [2468] = 2277, - [2469] = 2279, - [2470] = 2470, - [2471] = 2334, - [2472] = 2251, - [2473] = 2255, - [2474] = 2293, - [2475] = 2214, - [2476] = 2245, - [2477] = 2371, - [2478] = 2371, - [2479] = 2349, - [2480] = 2129, + [2302] = 500, + [2303] = 504, + [2304] = 491, + [2305] = 458, + [2306] = 522, + [2307] = 539, + [2308] = 2308, + [2309] = 2160, + [2310] = 2158, + [2311] = 2157, + [2312] = 537, + [2313] = 536, + [2314] = 505, + [2315] = 506, + [2316] = 507, + [2317] = 472, + [2318] = 509, + [2319] = 2077, + [2320] = 459, + [2321] = 460, + [2322] = 529, + [2323] = 528, + [2324] = 527, + [2325] = 510, + [2326] = 525, + [2327] = 524, + [2328] = 2126, + [2329] = 511, + [2330] = 2209, + [2331] = 2032, + [2332] = 1293, + [2333] = 537, + [2334] = 1291, + [2335] = 1301, + [2336] = 1302, + [2337] = 2007, + [2338] = 521, + [2339] = 538, + [2340] = 2033, + [2341] = 2036, + [2342] = 519, + [2343] = 2037, + [2344] = 2344, + [2345] = 2345, + [2346] = 512, + [2347] = 2214, + [2348] = 513, + [2349] = 1875, + [2350] = 2171, + [2351] = 1996, + [2352] = 2038, + [2353] = 2039, + [2354] = 467, + [2355] = 2040, + [2356] = 2041, + [2357] = 513, + [2358] = 2042, + [2359] = 512, + [2360] = 511, + [2361] = 510, + [2362] = 2043, + [2363] = 509, + [2364] = 2044, + [2365] = 2045, + [2366] = 2046, + [2367] = 472, + [2368] = 2047, + [2369] = 1289, + [2370] = 507, + [2371] = 463, + [2372] = 1993, + [2373] = 466, + [2374] = 504, + [2375] = 500, + [2376] = 2376, + [2377] = 2119, + [2378] = 2117, + [2379] = 1812, + [2380] = 1886, + [2381] = 1888, + [2382] = 497, + [2383] = 495, + [2384] = 2114, + [2385] = 2061, + [2386] = 2060, + [2387] = 2059, + [2388] = 2058, + [2389] = 2057, + [2390] = 2056, + [2391] = 2055, + [2392] = 2054, + [2393] = 2053, + [2394] = 2112, + [2395] = 2110, + [2396] = 2109, + [2397] = 1289, + [2398] = 493, + [2399] = 492, + [2400] = 1896, + [2401] = 2108, + [2402] = 470, + [2403] = 471, + [2404] = 502, + [2405] = 490, + [2406] = 489, + [2407] = 2106, + [2408] = 2105, + [2409] = 2102, + [2410] = 2101, + [2411] = 1884, + [2412] = 1873, + [2413] = 2099, + [2414] = 1295, + [2415] = 1300, + [2416] = 1304, + [2417] = 519, + [2418] = 2091, + [2419] = 539, + [2420] = 2084, + [2421] = 486, + [2422] = 506, + [2423] = 471, + [2424] = 470, + [2425] = 1912, + [2426] = 2086, + [2427] = 2085, + [2428] = 521, + [2429] = 2083, + [2430] = 2082, + [2431] = 2080, + [2432] = 2079, + [2433] = 2018, + [2434] = 2017, + [2435] = 2015, + [2436] = 2009, + [2437] = 2008, + [2438] = 2006, + [2439] = 2004, + [2440] = 2003, + [2441] = 2002, + [2442] = 2078, + [2443] = 2076, + [2444] = 2075, + [2445] = 2074, + [2446] = 543, + [2447] = 2072, + [2448] = 2071, + [2449] = 2070, + [2450] = 2068, + [2451] = 463, + [2452] = 466, + [2453] = 1992, + [2454] = 1991, + [2455] = 1990, + [2456] = 2064, + [2457] = 2063, + [2458] = 2090, + [2459] = 2094, + [2460] = 2460, + [2461] = 2113, + [2462] = 2107, + [2463] = 2104, + [2464] = 2100, + [2465] = 2465, + [2466] = 2466, + [2467] = 2467, + [2468] = 1930, + [2469] = 1899, + [2470] = 2197, + [2471] = 2471, + [2472] = 2472, + [2473] = 1925, + [2474] = 2474, + [2475] = 2475, + [2476] = 2476, + [2477] = 1933, + [2478] = 1951, + [2479] = 2479, + [2480] = 1894, [2481] = 2481, - [2482] = 2280, - [2483] = 2239, - [2484] = 2294, - [2485] = 2298, - [2486] = 2291, - [2487] = 2000, - [2488] = 2297, - [2489] = 2367, - [2490] = 2245, - [2491] = 2363, + [2482] = 1842, + [2483] = 1841, + [2484] = 1895, + [2485] = 2485, + [2486] = 2481, + [2487] = 2487, + [2488] = 2488, + [2489] = 1840, + [2490] = 2481, + [2491] = 2491, [2492] = 2492, - [2493] = 2222, - [2494] = 2280, - [2495] = 2215, - [2496] = 2334, - [2497] = 2264, - [2498] = 2367, - [2499] = 2259, - [2500] = 2250, - [2501] = 2367, - [2502] = 2312, - [2503] = 2306, - [2504] = 2242, - [2505] = 2292, - [2506] = 2363, - [2507] = 2294, - [2508] = 2290, - [2509] = 2234, - [2510] = 2228, - [2511] = 2278, - [2512] = 2227, - [2513] = 2225, - [2514] = 2334, - [2515] = 2275, - [2516] = 2334, - [2517] = 2224, - [2518] = 2518, - [2519] = 2216, - [2520] = 2371, - [2521] = 2289, - [2522] = 2522, - [2523] = 2523, - [2524] = 2524, - [2525] = 2525, - [2526] = 2526, - [2527] = 2527, - [2528] = 2528, - [2529] = 2529, - [2530] = 2159, - [2531] = 2531, - [2532] = 2111, - [2533] = 2193, - [2534] = 2534, + [2493] = 2291, + [2494] = 1913, + [2495] = 2495, + [2496] = 2496, + [2497] = 2497, + [2498] = 2498, + [2499] = 2499, + [2500] = 2500, + [2501] = 1950, + [2502] = 1909, + [2503] = 2503, + [2504] = 2504, + [2505] = 2505, + [2506] = 2506, + [2507] = 1833, + [2508] = 2508, + [2509] = 1903, + [2510] = 2510, + [2511] = 1900, + [2512] = 1949, + [2513] = 1835, + [2514] = 1921, + [2515] = 2515, + [2516] = 2516, + [2517] = 2517, + [2518] = 2517, + [2519] = 2519, + [2520] = 2481, + [2521] = 2192, + [2522] = 2301, + [2523] = 344, + [2524] = 2180, + [2525] = 2173, + [2526] = 1931, + [2527] = 2176, + [2528] = 2174, + [2529] = 1896, + [2530] = 2530, + [2531] = 347, + [2532] = 2532, + [2533] = 2533, + [2534] = 2345, [2535] = 2535, [2536] = 2536, - [2537] = 2537, - [2538] = 1756, - [2539] = 2311, - [2540] = 1752, - [2541] = 2541, - [2542] = 2301, - [2543] = 2317, - [2544] = 2321, - [2545] = 1761, + [2537] = 1919, + [2538] = 2538, + [2539] = 2539, + [2540] = 1934, + [2541] = 1891, + [2542] = 2542, + [2543] = 2543, + [2544] = 1928, + [2545] = 2545, [2546] = 2546, - [2547] = 2547, + [2547] = 2481, [2548] = 2548, - [2549] = 2177, - [2550] = 2134, - [2551] = 1762, - [2552] = 1749, - [2553] = 2546, + [2549] = 2549, + [2550] = 2177, + [2551] = 2551, + [2552] = 2214, + [2553] = 2481, [2554] = 2554, - [2555] = 2546, + [2555] = 1960, [2556] = 2556, [2557] = 2557, - [2558] = 2558, + [2558] = 1901, [2559] = 2559, - [2560] = 2560, + [2560] = 1836, [2561] = 2561, [2562] = 2562, - [2563] = 2196, - [2564] = 1757, - [2565] = 2203, - [2566] = 331, - [2567] = 2567, + [2563] = 1837, + [2564] = 2564, + [2565] = 2565, + [2566] = 1838, + [2567] = 2269, [2568] = 2568, - [2569] = 2190, + [2569] = 2569, [2570] = 2570, - [2571] = 2571, - [2572] = 1751, - [2573] = 2523, - [2574] = 1711, - [2575] = 1763, - [2576] = 326, - [2577] = 2546, - [2578] = 2578, - [2579] = 2579, - [2580] = 2546, - [2581] = 2581, - [2582] = 2197, - [2583] = 2583, - [2584] = 2584, - [2585] = 2518, + [2571] = 1832, + [2572] = 1898, + [2573] = 2573, + [2574] = 1293, + [2575] = 2110, + [2576] = 2376, + [2577] = 2344, + [2578] = 2032, + [2579] = 2119, + [2580] = 2033, + [2581] = 2474, + [2582] = 2570, + [2583] = 2074, + [2584] = 2491, + [2585] = 2585, [2586] = 2586, - [2587] = 2587, - [2588] = 2588, - [2589] = 2589, - [2590] = 2191, - [2591] = 2591, - [2592] = 2592, - [2593] = 2593, - [2594] = 2594, - [2595] = 1755, - [2596] = 2596, - [2597] = 1754, - [2598] = 2313, - [2599] = 2599, - [2600] = 2600, - [2601] = 2601, - [2602] = 2602, - [2603] = 2320, - [2604] = 1753, - [2605] = 1750, - [2606] = 2606, - [2607] = 2546, - [2608] = 2608, - [2609] = 1759, - [2610] = 2141, - [2611] = 1748, - [2612] = 1760, - [2613] = 2613, - [2614] = 2614, - [2615] = 2316, - [2616] = 2616, - [2617] = 2181, - [2618] = 2618, - [2619] = 2619, - [2620] = 2620, - [2621] = 2621, - [2622] = 2622, - [2623] = 2244, - [2624] = 1706, - [2625] = 2529, - [2626] = 2085, - [2627] = 1685, - [2628] = 2601, - [2629] = 2629, - [2630] = 2068, - [2631] = 2568, - [2632] = 2629, - [2633] = 2079, - [2634] = 2629, - [2635] = 2129, - [2636] = 2459, - [2637] = 2229, - [2638] = 2262, - [2639] = 2231, - [2640] = 2298, - [2641] = 2618, - [2642] = 2232, - [2643] = 2233, - [2644] = 2236, - [2645] = 2238, - [2646] = 2240, - [2647] = 2241, - [2648] = 2293, - [2649] = 2083, - [2650] = 2243, - [2651] = 2246, - [2652] = 2247, - [2653] = 2208, - [2654] = 2527, - [2655] = 2258, - [2656] = 2271, - [2657] = 2077, - [2658] = 2262, - [2659] = 1704, - [2660] = 1690, - [2661] = 1689, - [2662] = 2602, - [2663] = 2311, - [2664] = 2320, - [2665] = 2301, - [2666] = 2239, - [2667] = 2317, - [2668] = 2629, - [2669] = 2321, - [2670] = 2291, - [2671] = 2072, - [2672] = 2215, - [2673] = 2071, - [2674] = 2481, - [2675] = 2070, - [2676] = 2106, - [2677] = 2292, - [2678] = 2289, - [2679] = 2518, - [2680] = 2216, - [2681] = 2526, - [2682] = 2224, - [2683] = 2225, - [2684] = 2074, - [2685] = 2227, - [2686] = 2228, - [2687] = 2524, - [2688] = 2262, - [2689] = 2080, - [2690] = 2234, - [2691] = 2313, - [2692] = 2235, - [2693] = 2693, - [2694] = 2242, - [2695] = 2250, - [2696] = 2259, - [2697] = 2264, - [2698] = 2698, - [2699] = 2518, - [2700] = 2620, - [2701] = 2300, - [2702] = 2297, - [2703] = 2296, - [2704] = 2594, - [2705] = 2210, - [2706] = 2492, - [2707] = 2280, - [2708] = 2222, - [2709] = 2593, - [2710] = 2275, - [2711] = 2592, - [2712] = 2278, - [2713] = 2591, - [2714] = 2589, - [2715] = 2525, - [2716] = 2134, - [2717] = 2118, - [2718] = 2290, - [2719] = 2212, - [2720] = 2629, - [2721] = 2117, - [2722] = 2294, - [2723] = 2213, - [2724] = 2217, - [2725] = 2220, - [2726] = 2588, - [2727] = 2587, - [2728] = 2586, - [2729] = 2581, - [2730] = 2579, - [2731] = 2522, - [2732] = 2226, - [2733] = 2249, - [2734] = 2252, - [2735] = 2578, - [2736] = 2245, - [2737] = 2032, - [2738] = 2558, - [2739] = 2629, - [2740] = 1691, - [2741] = 2567, - [2742] = 1701, - [2743] = 2274, - [2744] = 2277, - [2745] = 2279, - [2746] = 1695, - [2747] = 2081, - [2748] = 2561, - [2749] = 2076, - [2750] = 2255, - [2751] = 2251, - [2752] = 2608, - [2753] = 2257, - [2754] = 2248, - [2755] = 2211, - [2756] = 2214, - [2757] = 2283, - [2758] = 2288, - [2759] = 2286, - [2760] = 2554, - [2761] = 2281, - [2762] = 2266, - [2763] = 2265, - [2764] = 2221, - [2765] = 2541, - [2766] = 2528, - [2767] = 2567, - [2768] = 2063, - [2769] = 2547, - [2770] = 2470, - [2771] = 2111, - [2772] = 1711, - [2773] = 1750, - [2774] = 2066, - [2775] = 1753, - [2776] = 1749, - [2777] = 2616, - [2778] = 2600, - [2779] = 2079, - [2780] = 2599, - [2781] = 1759, - [2782] = 2141, - [2783] = 2560, - [2784] = 1761, - [2785] = 2584, - [2786] = 2583, - [2787] = 1748, - [2788] = 2570, - [2789] = 2535, - [2790] = 1760, - [2791] = 2536, - [2792] = 2614, - [2793] = 1752, - [2794] = 2197, - [2795] = 2613, - [2796] = 1757, - [2797] = 2534, - [2798] = 1751, - [2799] = 2562, - [2800] = 2559, - [2801] = 2537, - [2802] = 2571, - [2803] = 2619, - [2804] = 2804, - [2805] = 2622, - [2806] = 2608, - [2807] = 2556, - [2808] = 1763, - [2809] = 2316, - [2810] = 2262, - [2811] = 1756, - [2812] = 2321, - [2813] = 2317, - [2814] = 2693, - [2815] = 2567, - [2816] = 2698, - [2817] = 2193, - [2818] = 2301, - [2819] = 2320, - [2820] = 2311, - [2821] = 2698, - [2822] = 2606, - [2823] = 2522, - [2824] = 331, - [2825] = 2548, + [2587] = 2036, + [2588] = 2112, + [2589] = 2497, + [2590] = 1949, + [2591] = 1951, + [2592] = 2027, + [2593] = 2530, + [2594] = 2091, + [2595] = 1993, + [2596] = 2047, + [2597] = 2026, + [2598] = 2037, + [2599] = 1864, + [2600] = 2545, + [2601] = 2114, + [2602] = 1950, + [2603] = 2063, + [2604] = 2099, + [2605] = 2064, + [2606] = 2101, + [2607] = 2086, + [2608] = 2102, + [2609] = 1960, + [2610] = 2085, + [2611] = 2084, + [2612] = 2145, + [2613] = 2557, + [2614] = 2144, + [2615] = 2083, + [2616] = 2476, + [2617] = 2465, + [2618] = 2109, + [2619] = 2082, + [2620] = 2460, + [2621] = 2068, + [2622] = 2108, + [2623] = 1950, + [2624] = 2498, + [2625] = 2106, + [2626] = 2105, + [2627] = 2013, + [2628] = 2536, + [2629] = 1996, + [2630] = 2548, + [2631] = 2345, + [2632] = 2046, + [2633] = 2038, + [2634] = 2025, + [2635] = 2138, + [2636] = 2495, + [2637] = 2126, + [2638] = 1289, + [2639] = 2345, + [2640] = 2136, + [2641] = 2040, + [2642] = 2117, + [2643] = 2134, + [2644] = 1986, + [2645] = 2488, + [2646] = 2546, + [2647] = 2496, + [2648] = 2499, + [2649] = 2504, + [2650] = 2508, + [2651] = 2014, + [2652] = 2515, + [2653] = 2538, + [2654] = 2543, + [2655] = 2559, + [2656] = 2565, + [2657] = 2586, + [2658] = 2016, + [2659] = 2077, + [2660] = 1951, + [2661] = 2041, + [2662] = 2080, + [2663] = 2019, + [2664] = 1960, + [2665] = 2020, + [2666] = 2568, + [2667] = 2024, + [2668] = 2045, + [2669] = 2007, + [2670] = 1867, + [2671] = 2192, + [2672] = 2084, + [2673] = 2039, + [2674] = 2021, + [2675] = 2197, + [2676] = 2022, + [2677] = 2044, + [2678] = 2180, + [2679] = 2492, + [2680] = 2173, + [2681] = 2510, + [2682] = 2176, + [2683] = 2043, + [2684] = 2084, + [2685] = 2174, + [2686] = 2132, + [2687] = 2076, + [2688] = 2023, + [2689] = 2070, + [2690] = 2071, + [2691] = 1949, + [2692] = 2072, + [2693] = 2079, + [2694] = 2078, + [2695] = 2075, + [2696] = 2042, + [2697] = 2697, + [2698] = 2071, + [2699] = 2192, + [2700] = 1304, + [2701] = 2086, + [2702] = 2132, + [2703] = 2471, + [2704] = 2472, + [2705] = 2134, + [2706] = 2273, + [2707] = 2136, + [2708] = 2180, + [2709] = 2479, + [2710] = 2173, + [2711] = 2176, + [2712] = 2174, + [2713] = 2487, + [2714] = 2068, + [2715] = 2269, + [2716] = 2697, + [2717] = 2099, + [2718] = 1931, + [2719] = 2013, + [2720] = 1933, + [2721] = 2138, + [2722] = 2126, + [2723] = 1925, + [2724] = 2085, + [2725] = 2114, + [2726] = 1300, + [2727] = 2551, + [2728] = 2047, + [2729] = 2549, + [2730] = 1901, + [2731] = 2145, + [2732] = 2046, + [2733] = 1898, + [2734] = 2586, + [2735] = 2735, + [2736] = 2101, + [2737] = 1295, + [2738] = 2102, + [2739] = 1986, + [2740] = 2007, + [2741] = 2045, + [2742] = 2119, + [2743] = 2117, + [2744] = 2044, + [2745] = 2043, + [2746] = 2042, + [2747] = 1928, + [2748] = 2041, + [2749] = 2040, + [2750] = 2554, + [2751] = 2013, + [2752] = 1894, + [2753] = 2064, + [2754] = 1899, + [2755] = 2561, + [2756] = 2039, + [2757] = 2697, + [2758] = 2038, + [2759] = 2557, + [2760] = 2024, + [2761] = 2037, + [2762] = 2145, + [2763] = 2036, + [2764] = 2491, + [2765] = 2022, + [2766] = 2500, + [2767] = 2542, + [2768] = 1884, + [2769] = 2503, + [2770] = 2033, + [2771] = 2110, + [2772] = 2032, + [2773] = 2557, + [2774] = 2539, + [2775] = 1919, + [2776] = 2014, + [2777] = 2119, + [2778] = 2105, + [2779] = 2106, + [2780] = 2144, + [2781] = 2021, + [2782] = 2697, + [2783] = 2568, + [2784] = 2063, + [2785] = 2064, + [2786] = 2586, + [2787] = 2585, + [2788] = 2549, + [2789] = 2126, + [2790] = 2144, + [2791] = 2485, + [2792] = 1996, + [2793] = 2291, + [2794] = 2505, + [2795] = 2076, + [2796] = 2070, + [2797] = 2071, + [2798] = 2077, + [2799] = 2573, + [2800] = 2019, + [2801] = 2735, + [2802] = 2697, + [2803] = 2535, + [2804] = 2108, + [2805] = 2549, + [2806] = 2047, + [2807] = 1293, + [2808] = 344, + [2809] = 2072, + [2810] = 2046, + [2811] = 2697, + [2812] = 2564, + [2813] = 2556, + [2814] = 2063, + [2815] = 1891, + [2816] = 1934, + [2817] = 2516, + [2818] = 1903, + [2819] = 2074, + [2820] = 2082, + [2821] = 2562, + [2822] = 2568, + [2823] = 2132, + [2824] = 2109, + [2825] = 2075, [2826] = 2068, - [2827] = 2531, - [2828] = 2531, - [2829] = 1754, - [2830] = 2804, - [2831] = 326, - [2832] = 2064, - [2833] = 2608, - [2834] = 1762, - [2835] = 1755, - [2836] = 2181, - [2837] = 2160, - [2838] = 2522, - [2839] = 2313, - [2840] = 2621, - [2841] = 2191, - [2842] = 2190, - [2843] = 2176, - [2844] = 1091, - [2845] = 2298, - [2846] = 2296, - [2847] = 2212, - [2848] = 2300, - [2849] = 2290, - [2850] = 2850, - [2851] = 2294, - [2852] = 2602, - [2853] = 2275, - [2854] = 2213, - [2855] = 2245, - [2856] = 2527, - [2857] = 2857, - [2858] = 2255, - [2859] = 2594, - [2860] = 2860, - [2861] = 2251, - [2862] = 2526, - [2863] = 2524, - [2864] = 2620, - [2865] = 2241, - [2866] = 2592, - [2867] = 2591, - [2868] = 2589, - [2869] = 2588, - [2870] = 2601, - [2871] = 2257, - [2872] = 2222, - [2873] = 2860, - [2874] = 2459, - [2875] = 2525, - [2876] = 2876, - [2877] = 2877, - [2878] = 2280, - [2879] = 2239, - [2880] = 2587, - [2881] = 2860, - [2882] = 2221, - [2883] = 2857, - [2884] = 2265, - [2885] = 2229, - [2886] = 2586, - [2887] = 2231, - [2888] = 2266, - [2889] = 2281, - [2890] = 2286, - [2891] = 2288, - [2892] = 2243, - [2893] = 2278, - [2894] = 2894, - [2895] = 2244, - [2896] = 2481, - [2897] = 2860, - [2898] = 2214, - [2899] = 2211, - [2900] = 2900, - [2901] = 2901, - [2902] = 2215, - [2903] = 2292, - [2904] = 2291, - [2905] = 2210, - [2906] = 2529, - [2907] = 2492, - [2908] = 2558, - [2909] = 2581, - [2910] = 2232, - [2911] = 2911, - [2912] = 2579, - [2913] = 2578, - [2914] = 2568, - [2915] = 2233, - [2916] = 2289, - [2917] = 2860, - [2918] = 2618, - [2919] = 2857, - [2920] = 2860, - [2921] = 2216, - [2922] = 2922, - [2923] = 2236, - [2924] = 2857, - [2925] = 2238, - [2926] = 2217, - [2927] = 2554, - [2928] = 2264, - [2929] = 2857, - [2930] = 2860, - [2931] = 2220, - [2932] = 2259, - [2933] = 2226, - [2934] = 2860, - [2935] = 2250, - [2936] = 2242, - [2937] = 2518, - [2938] = 2271, - [2939] = 2249, - [2940] = 2235, - [2941] = 2258, - [2942] = 2208, - [2943] = 2857, - [2944] = 2860, - [2945] = 2252, - [2946] = 2857, - [2947] = 2247, - [2948] = 2857, - [2949] = 2246, - [2950] = 2593, - [2951] = 2240, - [2952] = 2279, - [2953] = 2561, - [2954] = 2860, - [2955] = 2234, - [2956] = 2857, - [2957] = 2274, - [2958] = 2228, - [2959] = 2227, - [2960] = 2225, - [2961] = 2224, - [2962] = 1090, - [2963] = 1711, - [2964] = 2860, - [2965] = 2277, - [2966] = 2966, - [2967] = 410, - [2968] = 2522, - [2969] = 2969, - [2970] = 2969, - [2971] = 2971, - [2972] = 1748, - [2973] = 1701, - [2974] = 1695, - [2975] = 2969, - [2976] = 2191, - [2977] = 2531, - [2978] = 2966, - [2979] = 2979, - [2980] = 2979, - [2981] = 2531, - [2982] = 1704, - [2983] = 2613, - [2984] = 1690, - [2985] = 2616, - [2986] = 1689, - [2987] = 1706, - [2988] = 2988, - [2989] = 1090, - [2990] = 2988, - [2991] = 2619, - [2992] = 2992, - [2993] = 2966, - [2994] = 2608, - [2995] = 2969, - [2996] = 2559, - [2997] = 2181, - [2998] = 2998, - [2999] = 2999, - [3000] = 2541, - [3001] = 2979, - [3002] = 1750, - [3003] = 331, - [3004] = 1753, - [3005] = 2534, - [3006] = 2531, - [3007] = 2850, - [3008] = 326, - [3009] = 2528, - [3010] = 3010, - [3011] = 2600, - [3012] = 2979, - [3013] = 2622, - [3014] = 2599, - [3015] = 2606, - [3016] = 2567, - [3017] = 2525, - [3018] = 2313, - [3019] = 2524, - [3020] = 2556, - [3021] = 2526, - [3022] = 1754, - [3023] = 1760, - [3024] = 1755, - [3025] = 2614, - [3026] = 2558, - [3027] = 1759, - [3028] = 2087, - [3029] = 2979, - [3030] = 2568, - [3031] = 2979, - [3032] = 2527, - [3033] = 2969, - [3034] = 2966, - [3035] = 2988, - [3036] = 2966, - [3037] = 2090, - [3038] = 2601, - [3039] = 2562, - [3040] = 2979, - [3041] = 2618, - [3042] = 2529, - [3043] = 2134, - [3044] = 2190, - [3045] = 2111, - [3046] = 2998, - [3047] = 3047, - [3048] = 1752, - [3049] = 362, - [3050] = 2602, - [3051] = 2594, - [3052] = 2621, - [3053] = 2197, - [3054] = 2535, - [3055] = 2988, - [3056] = 2593, - [3057] = 2536, - [3058] = 2537, - [3059] = 2106, - [3060] = 2966, - [3061] = 1756, - [3062] = 1757, - [3063] = 2988, - [3064] = 1763, - [3065] = 2592, - [3066] = 2620, - [3067] = 2547, - [3068] = 2591, - [3069] = 2554, - [3070] = 2589, - [3071] = 1751, - [3072] = 2561, - [3073] = 2129, - [3074] = 2570, - [3075] = 2000, - [3076] = 2571, - [3077] = 2988, - [3078] = 2588, - [3079] = 2141, - [3080] = 2548, - [3081] = 1761, - [3082] = 1762, - [3083] = 1749, - [3084] = 2966, - [3085] = 2969, - [3086] = 2085, - [3087] = 2193, - [3088] = 1691, - [3089] = 2979, - [3090] = 2969, - [3091] = 2079, - [3092] = 2470, - [3093] = 2979, - [3094] = 2117, - [3095] = 2068, - [3096] = 2311, - [3097] = 2966, - [3098] = 2583, - [3099] = 2584, - [3100] = 2320, - [3101] = 2988, - [3102] = 2301, - [3103] = 2979, - [3104] = 2118, - [3105] = 2988, - [3106] = 2988, - [3107] = 2317, - [3108] = 2966, - [3109] = 2321, - [3110] = 2587, - [3111] = 1091, - [3112] = 2586, - [3113] = 2581, - [3114] = 2560, - [3115] = 2579, - [3116] = 3116, - [3117] = 2578, - [3118] = 2090, - [3119] = 2271, - [3120] = 2258, - [3121] = 2225, - [3122] = 2227, - [3123] = 2280, - [3124] = 2228, - [3125] = 2234, - [3126] = 2235, - [3127] = 2081, - [3128] = 2077, - [3129] = 2080, - [3130] = 2242, - [3131] = 2074, - [3132] = 2247, - [3133] = 2250, - [3134] = 2134, - [3135] = 2070, - [3136] = 2071, - [3137] = 2072, - [3138] = 2177, - [3139] = 2222, - [3140] = 2083, - [3141] = 2300, - [3142] = 2245, - [3143] = 2275, - [3144] = 2208, - [3145] = 2087, - [3146] = 2296, - [3147] = 2210, - [3148] = 2196, - [3149] = 2259, - [3150] = 2215, - [3151] = 2264, - [3152] = 2212, - [3153] = 2213, - [3154] = 2217, - [3155] = 2220, - [3156] = 1706, - [3157] = 1689, - [3158] = 1690, - [3159] = 2255, - [3160] = 1704, - [3161] = 2224, - [3162] = 2251, - [3163] = 2226, - [3164] = 1695, - [3165] = 2216, - [3166] = 2557, - [3167] = 2244, - [3168] = 2249, - [3169] = 1701, - [3170] = 2289, - [3171] = 3171, - [3172] = 1691, - [3173] = 2292, - [3174] = 2257, - [3175] = 2211, - [3176] = 2214, - [3177] = 2252, - [3178] = 2288, - [3179] = 2076, - [3180] = 2294, - [3181] = 2159, - [3182] = 2286, - [3183] = 2290, - [3184] = 2032, - [3185] = 2229, - [3186] = 2281, - [3187] = 2239, - [3188] = 2203, - [3189] = 2266, - [3190] = 2231, - [3191] = 2278, - [3192] = 2232, - [3193] = 2233, - [3194] = 2236, - [3195] = 2265, - [3196] = 2531, - [3197] = 2291, - [3198] = 2298, - [3199] = 2221, - [3200] = 2596, - [3201] = 2279, - [3202] = 2277, - [3203] = 2238, - [3204] = 2240, - [3205] = 2274, - [3206] = 2241, - [3207] = 2243, - [3208] = 2246, - [3209] = 3209, - [3210] = 2083, - [3211] = 2877, - [3212] = 2081, - [3213] = 2077, - [3214] = 2160, - [3215] = 2064, - [3216] = 2159, - [3217] = 2177, - [3218] = 2076, - [3219] = 2063, - [3220] = 2176, - [3221] = 2089, - [3222] = 2080, - [3223] = 2099, - [3224] = 2074, - [3225] = 2070, - [3226] = 3226, - [3227] = 3227, - [3228] = 331, - [3229] = 3227, - [3230] = 2176, - [3231] = 3226, - [3232] = 3209, - [3233] = 2094, - [3234] = 3234, - [3235] = 2092, - [3236] = 2066, - [3237] = 3234, - [3238] = 2071, - [3239] = 2072, - [3240] = 3209, - [3241] = 3226, - [3242] = 326, - [3243] = 3227, - [3244] = 3244, - [3245] = 2015, - [3246] = 2094, - [3247] = 3247, - [3248] = 2089, - [3249] = 3244, - [3250] = 2099, + [2827] = 1886, + [2828] = 2084, + [2829] = 2026, + [2830] = 2045, + [2831] = 1913, + [2832] = 1921, + [2833] = 2070, + [2834] = 1986, + [2835] = 2044, + [2836] = 2043, + [2837] = 2042, + [2838] = 2072, + [2839] = 2014, + [2840] = 2114, + [2841] = 2475, + [2842] = 2569, + [2843] = 2074, + [2844] = 2025, + [2845] = 2041, + [2846] = 2040, + [2847] = 2091, + [2848] = 2039, + [2849] = 2038, + [2850] = 2037, + [2851] = 2036, + [2852] = 2033, + [2853] = 2032, + [2854] = 2075, + [2855] = 2076, + [2856] = 2112, + [2857] = 2020, + [2858] = 2078, + [2859] = 2491, + [2860] = 2110, + [2861] = 2016, + [2862] = 1302, + [2863] = 2134, + [2864] = 1993, + [2865] = 2532, + [2866] = 2533, + [2867] = 1888, + [2868] = 2078, + [2869] = 2079, + [2870] = 2112, + [2871] = 2136, + [2872] = 2109, + [2873] = 2080, + [2874] = 2108, + [2875] = 2735, + [2876] = 2466, + [2877] = 2697, + [2878] = 2106, + [2879] = 1900, + [2880] = 2079, + [2881] = 2080, + [2882] = 2083, + [2883] = 2506, + [2884] = 2020, + [2885] = 2085, + [2886] = 2086, + [2887] = 2021, + [2888] = 1301, + [2889] = 2301, + [2890] = 2022, + [2891] = 2023, + [2892] = 2024, + [2893] = 2027, + [2894] = 2099, + [2895] = 2023, + [2896] = 2105, + [2897] = 1873, + [2898] = 1291, + [2899] = 2025, + [2900] = 2026, + [2901] = 2177, + [2902] = 2467, + [2903] = 2027, + [2904] = 2197, + [2905] = 2697, + [2906] = 1875, + [2907] = 2138, + [2908] = 347, + [2909] = 2697, + [2910] = 2519, + [2911] = 2102, + [2912] = 1298, + [2913] = 2019, + [2914] = 2082, + [2915] = 2091, + [2916] = 2117, + [2917] = 2101, + [2918] = 2083, + [2919] = 2016, + [2920] = 344, + [2921] = 1293, + [2922] = 2465, + [2923] = 2488, + [2924] = 1875, + [2925] = 1298, + [2926] = 2495, + [2927] = 2496, + [2928] = 2499, + [2929] = 2504, + [2930] = 2498, + [2931] = 2508, + [2932] = 2515, + [2933] = 2344, + [2934] = 2543, + [2935] = 2559, + [2936] = 1301, + [2937] = 2565, + [2938] = 2536, + [2939] = 2545, + [2940] = 1302, + [2941] = 347, + [2942] = 1295, + [2943] = 1300, + [2944] = 2546, + [2945] = 2476, + [2946] = 2538, + [2947] = 2177, + [2948] = 2497, + [2949] = 2492, + [2950] = 2539, + [2951] = 1304, + [2952] = 1912, + [2953] = 1291, + [2954] = 2516, + [2955] = 2955, + [2956] = 1912, + [2957] = 1873, + [2958] = 2530, + [2959] = 2959, + [2960] = 2570, + [2961] = 2460, + [2962] = 2345, + [2963] = 2548, + [2964] = 2376, + [2965] = 1886, + [2966] = 2510, + [2967] = 1884, + [2968] = 1888, + [2969] = 2474, + [2970] = 2970, + [2971] = 2545, + [2972] = 2972, + [2973] = 2549, + [2974] = 2495, + [2975] = 2504, + [2976] = 2506, + [2977] = 2570, + [2978] = 2564, + [2979] = 2474, + [2980] = 2545, + [2981] = 2344, + [2982] = 2499, + [2983] = 2559, + [2984] = 2508, + [2985] = 2535, + [2986] = 2488, + [2987] = 2516, + [2988] = 2505, + [2989] = 344, + [2990] = 2546, + [2991] = 2496, + [2992] = 347, + [2993] = 2492, + [2994] = 1934, + [2995] = 2499, + [2996] = 2504, + [2997] = 2585, + [2998] = 2573, + [2999] = 2562, + [3000] = 2508, + [3001] = 2549, + [3002] = 2503, + [3003] = 2500, + [3004] = 2197, + [3005] = 2515, + [3006] = 2538, + [3007] = 2543, + [3008] = 1899, + [3009] = 1894, + [3010] = 2565, + [3011] = 2492, + [3012] = 2510, + [3013] = 2515, + [3014] = 2466, + [3015] = 2538, + [3016] = 2549, + [3017] = 2530, + [3018] = 1898, + [3019] = 1901, + [3020] = 2487, + [3021] = 2543, + [3022] = 2559, + [3023] = 2536, + [3024] = 2551, + [3025] = 2510, + [3026] = 2498, + [3027] = 2465, + [3028] = 2565, + [3029] = 2476, + [3030] = 2301, + [3031] = 1919, + [3032] = 2530, + [3033] = 2496, + [3034] = 2546, + [3035] = 2475, + [3036] = 2460, + [3037] = 2533, + [3038] = 2472, + [3039] = 2532, + [3040] = 2542, + [3041] = 2488, + [3042] = 2539, + [3043] = 2476, + [3044] = 2465, + [3045] = 2498, + [3046] = 2548, + [3047] = 2291, + [3048] = 2556, + [3049] = 2467, + [3050] = 2474, + [3051] = 2485, + [3052] = 2536, + [3053] = 2570, + [3054] = 2561, + [3055] = 1900, + [3056] = 2554, + [3057] = 2471, + [3058] = 2557, + [3059] = 1913, + [3060] = 2273, + [3061] = 2495, + [3062] = 2376, + [3063] = 1928, + [3064] = 1931, + [3065] = 2174, + [3066] = 1933, + [3067] = 2176, + [3068] = 2497, + [3069] = 2519, + [3070] = 2173, + [3071] = 2569, + [3072] = 2479, + [3073] = 2180, + [3074] = 2269, + [3075] = 2568, + [3076] = 1925, + [3077] = 1891, + [3078] = 1903, + [3079] = 2491, + [3080] = 2192, + [3081] = 1921, + [3082] = 2554, + [3083] = 2561, + [3084] = 2542, + [3085] = 1913, + [3086] = 1928, + [3087] = 1903, + [3088] = 2516, + [3089] = 2291, + [3090] = 1921, + [3091] = 347, + [3092] = 2539, + [3093] = 1899, + [3094] = 1934, + [3095] = 1891, + [3096] = 1901, + [3097] = 2556, + [3098] = 2500, + [3099] = 1919, + [3100] = 1894, + [3101] = 2301, + [3102] = 1829, + [3103] = 2503, + [3104] = 2573, + [3105] = 2551, + [3106] = 2475, + [3107] = 1925, + [3108] = 2569, + [3109] = 1824, + [3110] = 1933, + [3111] = 1931, + [3112] = 1898, + [3113] = 1951, + [3114] = 2269, + [3115] = 2466, + [3116] = 1900, + [3117] = 2506, + [3118] = 1960, + [3119] = 1304, + [3120] = 344, + [3121] = 2549, + [3122] = 2535, + [3123] = 2467, + [3124] = 2533, + [3125] = 1827, + [3126] = 1300, + [3127] = 1295, + [3128] = 1302, + [3129] = 1301, + [3130] = 2564, + [3131] = 1291, + [3132] = 2479, + [3133] = 1298, + [3134] = 2532, + [3135] = 2562, + [3136] = 2114, + [3137] = 2074, + [3138] = 2145, + [3139] = 2144, + [3140] = 2091, + [3141] = 2138, + [3142] = 3142, + [3143] = 2136, + [3144] = 2134, + [3145] = 2132, + [3146] = 2126, + [3147] = 2119, + [3148] = 2117, + [3149] = 2112, + [3150] = 2110, + [3151] = 2109, + [3152] = 2108, + [3153] = 2106, + [3154] = 2105, + [3155] = 2102, + [3156] = 2013, + [3157] = 2101, + [3158] = 2099, + [3159] = 3142, + [3160] = 2086, + [3161] = 2085, + [3162] = 1986, + [3163] = 1293, + [3164] = 2014, + [3165] = 2083, + [3166] = 2082, + [3167] = 2080, + [3168] = 2016, + [3169] = 2079, + [3170] = 2078, + [3171] = 2076, + [3172] = 2075, + [3173] = 3142, + [3174] = 2072, + [3175] = 2071, + [3176] = 2070, + [3177] = 2211, + [3178] = 2068, + [3179] = 2064, + [3180] = 2063, + [3181] = 2047, + [3182] = 2046, + [3183] = 2045, + [3184] = 2044, + [3185] = 2043, + [3186] = 2042, + [3187] = 2041, + [3188] = 2040, + [3189] = 2039, + [3190] = 2038, + [3191] = 2037, + [3192] = 2036, + [3193] = 2033, + [3194] = 2032, + [3195] = 2027, + [3196] = 2026, + [3197] = 2025, + [3198] = 2024, + [3199] = 2023, + [3200] = 2022, + [3201] = 2021, + [3202] = 2020, + [3203] = 3142, + [3204] = 2019, + [3205] = 3205, + [3206] = 1862, + [3207] = 3205, + [3208] = 1867, + [3209] = 1853, + [3210] = 1864, + [3211] = 3211, + [3212] = 3212, + [3213] = 3213, + [3214] = 3213, + [3215] = 3215, + [3216] = 1812, + [3217] = 3215, + [3218] = 3205, + [3219] = 3212, + [3220] = 3213, + [3221] = 3211, + [3222] = 3211, + [3223] = 1867, + [3224] = 3213, + [3225] = 3212, + [3226] = 3213, + [3227] = 3212, + [3228] = 3213, + [3229] = 3211, + [3230] = 1864, + [3231] = 3211, + [3232] = 3212, + [3233] = 3215, + [3234] = 3215, + [3235] = 3215, + [3236] = 3215, + [3237] = 3211, + [3238] = 3212, + [3239] = 1827, + [3240] = 1895, + [3241] = 1930, + [3242] = 1829, + [3243] = 347, + [3244] = 1852, + [3245] = 1896, + [3246] = 1845, + [3247] = 1864, + [3248] = 1863, + [3249] = 1909, + [3250] = 1824, [3251] = 3251, - [3252] = 2092, - [3253] = 3247, - [3254] = 3244, - [3255] = 3247, - [3256] = 3247, - [3257] = 3251, - [3258] = 3244, - [3259] = 3251, - [3260] = 3251, - [3261] = 3251, - [3262] = 3247, - [3263] = 2068, - [3264] = 3244, - [3265] = 3247, - [3266] = 2079, - [3267] = 2055, - [3268] = 3251, - [3269] = 3244, - [3270] = 3270, - [3271] = 3271, - [3272] = 3272, - [3273] = 3273, - [3274] = 3271, - [3275] = 1685, - [3276] = 3276, - [3277] = 2090, - [3278] = 2094, - [3279] = 3279, - [3280] = 2894, - [3281] = 2092, - [3282] = 2087, - [3283] = 3283, - [3284] = 3284, - [3285] = 2159, - [3286] = 2032, - [3287] = 2177, - [3288] = 2089, - [3289] = 3289, - [3290] = 2099, - [3291] = 2922, - [3292] = 2850, - [3293] = 3283, - [3294] = 1757, - [3295] = 1760, - [3296] = 2177, - [3297] = 3297, - [3298] = 3298, - [3299] = 2316, - [3300] = 1751, - [3301] = 1755, - [3302] = 1749, - [3303] = 1762, - [3304] = 2203, - [3305] = 1761, - [3306] = 3298, - [3307] = 2159, - [3308] = 1763, - [3309] = 2177, - [3310] = 1754, - [3311] = 1748, + [3252] = 1866, + [3253] = 344, + [3254] = 1867, + [3255] = 3255, + [3256] = 1884, + [3257] = 1298, + [3258] = 1845, + [3259] = 1863, + [3260] = 1836, + [3261] = 1841, + [3262] = 1875, + [3263] = 1852, + [3264] = 1842, + [3265] = 1291, + [3266] = 1301, + [3267] = 1866, + [3268] = 1840, + [3269] = 1838, + [3270] = 1864, + [3271] = 1821, + [3272] = 1867, + [3273] = 1295, + [3274] = 1300, + [3275] = 1304, + [3276] = 1886, + [3277] = 1867, + [3278] = 1302, + [3279] = 1873, + [3280] = 1837, + [3281] = 1832, + [3282] = 1912, + [3283] = 1888, + [3284] = 1864, + [3285] = 1835, + [3286] = 1833, + [3287] = 1873, + [3288] = 365, + [3289] = 1886, + [3290] = 1888, + [3291] = 1909, + [3292] = 1852, + [3293] = 455, + [3294] = 1896, + [3295] = 3295, + [3296] = 1304, + [3297] = 1863, + [3298] = 1912, + [3299] = 1884, + [3300] = 3300, + [3301] = 1875, + [3302] = 1853, + [3303] = 1300, + [3304] = 1298, + [3305] = 1291, + [3306] = 3306, + [3307] = 3307, + [3308] = 1301, + [3309] = 1302, + [3310] = 3295, + [3311] = 1845, [3312] = 3312, - [3313] = 1711, - [3314] = 2196, - [3315] = 1711, - [3316] = 1752, - [3317] = 3312, - [3318] = 3270, - [3319] = 3297, - [3320] = 3320, - [3321] = 1753, - [3322] = 3284, - [3323] = 1756, - [3324] = 2190, - [3325] = 1759, - [3326] = 3271, - [3327] = 1750, - [3328] = 3320, - [3329] = 2159, - [3330] = 2236, - [3331] = 2264, - [3332] = 2492, - [3333] = 3333, - [3334] = 2244, - [3335] = 2214, - [3336] = 2211, - [3337] = 2015, - [3338] = 2257, - [3339] = 2229, - [3340] = 2231, - [3341] = 2232, - [3342] = 2233, - [3343] = 2221, - [3344] = 2238, - [3345] = 2459, - [3346] = 2240, - [3347] = 2251, - [3348] = 2241, - [3349] = 2243, - [3350] = 2246, - [3351] = 2556, - [3352] = 2560, - [3353] = 2286, - [3354] = 2247, - [3355] = 2281, - [3356] = 2266, - [3357] = 2265, - [3358] = 2160, - [3359] = 2239, - [3360] = 2584, - [3361] = 2208, - [3362] = 2297, - [3363] = 2258, - [3364] = 2248, - [3365] = 2271, - [3366] = 2280, - [3367] = 2619, - [3368] = 2876, - [3369] = 2176, - [3370] = 2291, - [3371] = 2222, - [3372] = 2901, - [3373] = 2288, - [3374] = 2259, - [3375] = 2250, - [3376] = 2242, - [3377] = 2235, - [3378] = 2234, - [3379] = 2055, - [3380] = 2283, - [3381] = 2279, - [3382] = 2293, - [3383] = 2277, - [3384] = 2228, - [3385] = 2274, - [3386] = 3284, - [3387] = 3283, - [3388] = 2275, - [3389] = 2278, - [3390] = 2290, - [3391] = 3273, - [3392] = 2294, - [3393] = 1685, - [3394] = 2481, - [3395] = 2252, - [3396] = 2249, - [3397] = 2225, - [3398] = 2215, - [3399] = 2226, - [3400] = 2298, - [3401] = 2220, - [3402] = 2227, - [3403] = 2217, - [3404] = 2213, - [3405] = 2212, - [3406] = 2292, - [3407] = 2210, - [3408] = 2289, - [3409] = 2216, - [3410] = 2296, - [3411] = 2224, - [3412] = 2300, - [3413] = 2245, - [3414] = 2255, - [3415] = 2525, - [3416] = 2536, - [3417] = 2596, - [3418] = 3418, - [3419] = 3419, - [3420] = 2159, - [3421] = 2177, - [3422] = 1685, - [3423] = 2562, - [3424] = 3424, - [3425] = 2579, - [3426] = 2622, - [3427] = 1685, - [3428] = 2541, - [3429] = 2606, - [3430] = 2602, - [3431] = 3431, - [3432] = 2583, - [3433] = 3433, - [3434] = 2616, - [3435] = 2196, - [3436] = 3436, - [3437] = 2537, - [3438] = 2141, - [3439] = 2535, - [3440] = 2529, - [3441] = 3441, - [3442] = 2557, - [3443] = 2600, - [3444] = 2570, - [3445] = 2248, - [3446] = 2528, - [3447] = 2297, - [3448] = 2203, - [3449] = 2571, - [3450] = 2111, - [3451] = 3273, - [3452] = 2599, - [3453] = 3273, - [3454] = 2524, - [3455] = 2293, - [3456] = 2283, - [3457] = 3457, - [3458] = 2613, - [3459] = 2581, - [3460] = 3460, - [3461] = 3283, - [3462] = 2591, - [3463] = 2554, - [3464] = 3284, - [3465] = 3436, - [3466] = 2526, - [3467] = 2589, - [3468] = 3460, - [3469] = 2588, - [3470] = 2297, - [3471] = 2527, - [3472] = 2594, - [3473] = 2283, - [3474] = 3460, - [3475] = 1728, - [3476] = 2593, - [3477] = 2618, - [3478] = 3419, - [3479] = 3479, - [3480] = 2568, - [3481] = 2587, - [3482] = 3284, - [3483] = 3479, - [3484] = 2586, - [3485] = 399, - [3486] = 490, - [3487] = 445, - [3488] = 2601, - [3489] = 3479, - [3490] = 3460, - [3491] = 2592, - [3492] = 2578, - [3493] = 3431, - [3494] = 2561, - [3495] = 3460, - [3496] = 3479, - [3497] = 3479, - [3498] = 2293, - [3499] = 3479, - [3500] = 3460, - [3501] = 2248, - [3502] = 1711, - [3503] = 3460, - [3504] = 400, - [3505] = 3460, - [3506] = 3506, - [3507] = 3424, - [3508] = 3479, - [3509] = 3283, - [3510] = 440, - [3511] = 3511, - [3512] = 3479, - [3513] = 3513, - [3514] = 3289, - [3515] = 3515, - [3516] = 3516, - [3517] = 3517, - [3518] = 2177, - [3519] = 3519, - [3520] = 3519, - [3521] = 1711, - [3522] = 3519, - [3523] = 3519, - [3524] = 3519, - [3525] = 1711, - [3526] = 3519, - [3527] = 2159, - [3528] = 2316, - [3529] = 3519, - [3530] = 3530, - [3531] = 2693, - [3532] = 3511, - [3533] = 3517, - [3534] = 3519, - [3535] = 3535, - [3536] = 3519, - [3537] = 3537, + [3313] = 3313, + [3314] = 1862, + [3315] = 1295, + [3316] = 1866, + [3317] = 1919, + [3318] = 3318, + [3319] = 3319, + [3320] = 1931, + [3321] = 3321, + [3322] = 1933, + [3323] = 3323, + [3324] = 3324, + [3325] = 2177, + [3326] = 1903, + [3327] = 1891, + [3328] = 3319, + [3329] = 1102, + [3330] = 3319, + [3331] = 3319, + [3332] = 1101, + [3333] = 3319, + [3334] = 1900, + [3335] = 3335, + [3336] = 3319, + [3337] = 3319, + [3338] = 3319, + [3339] = 3339, + [3340] = 1928, + [3341] = 3324, + [3342] = 1901, + [3343] = 3343, + [3344] = 3324, + [3345] = 3345, + [3346] = 1930, + [3347] = 1898, + [3348] = 1913, + [3349] = 3319, + [3350] = 3324, + [3351] = 3324, + [3352] = 3324, + [3353] = 1921, + [3354] = 3354, + [3355] = 1895, + [3356] = 1293, + [3357] = 1894, + [3358] = 1899, + [3359] = 1934, + [3360] = 1925, + [3361] = 3324, + [3362] = 3319, + [3363] = 3324, + [3364] = 3324, + [3365] = 3319, + [3366] = 3366, + [3367] = 3367, + [3368] = 3368, + [3369] = 3368, + [3370] = 3366, + [3371] = 2077, + [3372] = 3372, + [3373] = 3368, + [3374] = 3366, + [3375] = 3366, + [3376] = 1951, + [3377] = 3367, + [3378] = 2460, + [3379] = 2467, + [3380] = 3366, + [3381] = 1996, + [3382] = 3372, + [3383] = 3366, + [3384] = 3367, + [3385] = 3372, + [3386] = 3368, + [3387] = 3387, + [3388] = 3372, + [3389] = 3368, + [3390] = 1993, + [3391] = 1812, + [3392] = 3367, + [3393] = 3367, + [3394] = 3372, + [3395] = 1960, + [3396] = 3387, + [3397] = 3367, + [3398] = 3367, + [3399] = 3368, + [3400] = 1101, + [3401] = 3366, + [3402] = 3368, + [3403] = 2344, + [3404] = 2007, + [3405] = 2376, + [3406] = 2479, + [3407] = 3366, + [3408] = 1896, + [3409] = 3368, + [3410] = 2573, + [3411] = 3366, + [3412] = 3368, + [3413] = 3372, + [3414] = 3372, + [3415] = 3368, + [3416] = 3416, + [3417] = 3367, + [3418] = 1102, + [3419] = 3367, + [3420] = 3335, + [3421] = 2532, + [3422] = 1909, + [3423] = 2021, + [3424] = 2020, + [3425] = 2561, + [3426] = 2554, + [3427] = 1912, + [3428] = 2039, + [3429] = 2033, + [3430] = 2556, + [3431] = 1930, + [3432] = 1950, + [3433] = 2134, + [3434] = 1949, + [3435] = 2562, + [3436] = 2032, + [3437] = 2559, + [3438] = 1895, + [3439] = 2516, + [3440] = 2542, + [3441] = 2126, + [3442] = 2475, + [3443] = 2569, + [3444] = 2114, + [3445] = 2112, + [3446] = 1853, + [3447] = 2047, + [3448] = 2110, + [3449] = 1949, + [3450] = 2551, + [3451] = 2046, + [3452] = 2109, + [3453] = 1836, + [3454] = 1930, + [3455] = 1837, + [3456] = 2108, + [3457] = 1838, + [3458] = 1832, + [3459] = 2106, + [3460] = 2105, + [3461] = 1835, + [3462] = 2564, + [3463] = 1833, + [3464] = 2102, + [3465] = 2013, + [3466] = 2101, + [3467] = 1986, + [3468] = 2064, + [3469] = 2117, + [3470] = 2099, + [3471] = 2539, + [3472] = 2014, + [3473] = 2466, + [3474] = 1840, + [3475] = 2119, + [3476] = 1841, + [3477] = 2535, + [3478] = 2063, + [3479] = 2536, + [3480] = 2068, + [3481] = 2144, + [3482] = 2070, + [3483] = 2071, + [3484] = 2072, + [3485] = 1862, + [3486] = 2074, + [3487] = 2075, + [3488] = 2076, + [3489] = 2078, + [3490] = 2091, + [3491] = 2079, + [3492] = 1842, + [3493] = 2045, + [3494] = 2145, + [3495] = 2016, + [3496] = 2082, + [3497] = 2083, + [3498] = 1950, + [3499] = 2085, + [3500] = 2019, + [3501] = 2080, + [3502] = 2136, + [3503] = 2503, + [3504] = 2022, + [3505] = 2023, + [3506] = 2500, + [3507] = 2495, + [3508] = 2077, + [3509] = 2024, + [3510] = 2043, + [3511] = 1821, + [3512] = 2533, + [3513] = 2138, + [3514] = 2132, + [3515] = 2025, + [3516] = 2026, + [3517] = 1993, + [3518] = 2040, + [3519] = 2038, + [3520] = 2037, + [3521] = 3251, + [3522] = 2476, + [3523] = 2086, + [3524] = 3255, + [3525] = 1895, + [3526] = 2007, + [3527] = 3527, + [3528] = 2041, + [3529] = 2530, + [3530] = 1996, + [3531] = 2027, + [3532] = 2506, + [3533] = 2042, + [3534] = 2036, + [3535] = 2044, + [3536] = 1833, + [3537] = 1835, [3538] = 3538, - [3539] = 2015, - [3540] = 3516, - [3541] = 3530, - [3542] = 3542, - [3543] = 3284, - [3544] = 3519, - [3545] = 3276, - [3546] = 3516, - [3547] = 3517, - [3548] = 3519, - [3549] = 3519, - [3550] = 1091, - [3551] = 3517, - [3552] = 3519, - [3553] = 3516, - [3554] = 3517, - [3555] = 3516, - [3556] = 1090, - [3557] = 3557, - [3558] = 3436, - [3559] = 3283, - [3560] = 3419, - [3561] = 3431, - [3562] = 3516, - [3563] = 3424, - [3564] = 3519, - [3565] = 3565, - [3566] = 3566, - [3567] = 3567, - [3568] = 2525, - [3569] = 3569, - [3570] = 3570, - [3571] = 2524, - [3572] = 3572, - [3573] = 1751, - [3574] = 2601, - [3575] = 3575, - [3576] = 3572, + [3539] = 1993, + [3540] = 1832, + [3541] = 2465, + [3542] = 1996, + [3543] = 1838, + [3544] = 1837, + [3545] = 1840, + [3546] = 1836, + [3547] = 1841, + [3548] = 1842, + [3549] = 2492, + [3550] = 2474, + [3551] = 3551, + [3552] = 2488, + [3553] = 3553, + [3554] = 3554, + [3555] = 2546, + [3556] = 2496, + [3557] = 2499, + [3558] = 2498, + [3559] = 2570, + [3560] = 3345, + [3561] = 3538, + [3562] = 3554, + [3563] = 3553, + [3564] = 3551, + [3565] = 2504, + [3566] = 3554, + [3567] = 3553, + [3568] = 3551, + [3569] = 1909, + [3570] = 2508, + [3571] = 2515, + [3572] = 2538, + [3573] = 3573, + [3574] = 2565, + [3575] = 2510, + [3576] = 2007, [3577] = 3577, - [3578] = 326, - [3579] = 3579, - [3580] = 3570, + [3578] = 2543, + [3579] = 2545, + [3580] = 2077, [3581] = 3581, - [3582] = 331, + [3582] = 3582, [3583] = 3583, - [3584] = 2894, - [3585] = 1763, + [3584] = 3582, + [3585] = 3585, [3586] = 3586, - [3587] = 3566, - [3588] = 2527, - [3589] = 3581, - [3590] = 2578, + [3587] = 3581, + [3588] = 3586, + [3589] = 3582, + [3590] = 3583, [3591] = 3591, - [3592] = 2579, - [3593] = 3593, - [3594] = 2581, + [3592] = 3592, + [3593] = 3582, + [3594] = 3583, [3595] = 3595, - [3596] = 3596, - [3597] = 3566, - [3598] = 3598, - [3599] = 3583, - [3600] = 2586, - [3601] = 3601, - [3602] = 2587, - [3603] = 3577, - [3604] = 3604, - [3605] = 3579, - [3606] = 2588, - [3607] = 2561, - [3608] = 3608, - [3609] = 3609, - [3610] = 3610, - [3611] = 3611, - [3612] = 3579, + [3596] = 3582, + [3597] = 3597, + [3598] = 3597, + [3599] = 3582, + [3600] = 3582, + [3601] = 3597, + [3602] = 3597, + [3603] = 3582, + [3604] = 3591, + [3605] = 3581, + [3606] = 3606, + [3607] = 3591, + [3608] = 2585, + [3609] = 3583, + [3610] = 3581, + [3611] = 3582, + [3612] = 3612, [3613] = 3613, - [3614] = 2492, - [3615] = 2526, - [3616] = 3601, - [3617] = 1756, - [3618] = 2589, - [3619] = 3619, - [3620] = 2554, - [3621] = 2591, - [3622] = 3622, - [3623] = 3623, - [3624] = 3619, - [3625] = 3610, - [3626] = 3610, - [3627] = 3623, - [3628] = 3623, - [3629] = 2592, - [3630] = 3622, - [3631] = 3622, - [3632] = 2593, - [3633] = 2594, - [3634] = 3634, - [3635] = 2561, - [3636] = 2181, - [3637] = 3601, - [3638] = 3572, - [3639] = 3639, - [3640] = 3566, - [3641] = 3613, - [3642] = 3570, - [3643] = 3613, - [3644] = 1755, - [3645] = 3579, - [3646] = 3577, - [3647] = 3581, - [3648] = 3601, - [3649] = 3577, - [3650] = 3609, - [3651] = 3572, - [3652] = 3610, - [3653] = 3581, - [3654] = 3611, - [3655] = 3623, - [3656] = 3622, - [3657] = 3657, - [3658] = 3613, - [3659] = 3608, + [3614] = 3591, + [3615] = 3597, + [3616] = 3586, + [3617] = 3582, + [3618] = 3597, + [3619] = 3582, + [3620] = 3583, + [3621] = 3595, + [3622] = 2211, + [3623] = 3591, + [3624] = 3586, + [3625] = 2177, + [3626] = 3581, + [3627] = 3582, + [3628] = 3583, + [3629] = 3586, + [3630] = 3582, + [3631] = 3631, + [3632] = 1293, + [3633] = 3582, + [3634] = 3582, + [3635] = 2308, + [3636] = 3586, + [3637] = 3591, + [3638] = 3581, + [3639] = 3582, + [3640] = 3591, + [3641] = 3641, + [3642] = 3642, + [3643] = 2536, + [3644] = 3644, + [3645] = 344, + [3646] = 2545, + [3647] = 2499, + [3648] = 1900, + [3649] = 2504, + [3650] = 2498, + [3651] = 1934, + [3652] = 1891, + [3653] = 347, + [3654] = 3654, + [3655] = 3655, + [3656] = 3656, + [3657] = 2269, + [3658] = 2508, + [3659] = 3659, [3660] = 3660, - [3661] = 1753, - [3662] = 1750, - [3663] = 2578, - [3664] = 2581, - [3665] = 2586, - [3666] = 3577, - [3667] = 2587, - [3668] = 2588, - [3669] = 3581, - [3670] = 3579, - [3671] = 3619, - [3672] = 2589, - [3673] = 1752, - [3674] = 2591, - [3675] = 2592, - [3676] = 2593, - [3677] = 2594, - [3678] = 3593, - [3679] = 3566, - [3680] = 1759, - [3681] = 1754, - [3682] = 3611, - [3683] = 3609, - [3684] = 1748, - [3685] = 3566, - [3686] = 2618, - [3687] = 3613, - [3688] = 2601, - [3689] = 3570, - [3690] = 2032, - [3691] = 3566, - [3692] = 3593, - [3693] = 3583, - [3694] = 3566, - [3695] = 2568, - [3696] = 3566, - [3697] = 3593, - [3698] = 1760, - [3699] = 3570, - [3700] = 3609, - [3701] = 2481, - [3702] = 2568, - [3703] = 1757, - [3704] = 3611, - [3705] = 3572, - [3706] = 3566, - [3707] = 3613, - [3708] = 3708, - [3709] = 2193, - [3710] = 3565, - [3711] = 3711, - [3712] = 3566, - [3713] = 2529, - [3714] = 3714, - [3715] = 2922, - [3716] = 3619, - [3717] = 3619, - [3718] = 2197, - [3719] = 3719, - [3720] = 3566, - [3721] = 3619, - [3722] = 2602, - [3723] = 3566, - [3724] = 3593, - [3725] = 3613, - [3726] = 3566, - [3727] = 3583, - [3728] = 3579, - [3729] = 3619, - [3730] = 3730, - [3731] = 3566, - [3732] = 3611, - [3733] = 1761, - [3734] = 3419, - [3735] = 2850, - [3736] = 3566, - [3737] = 3566, - [3738] = 3730, - [3739] = 1762, - [3740] = 3572, - [3741] = 3609, - [3742] = 3572, - [3743] = 3577, - [3744] = 3581, - [3745] = 3610, - [3746] = 1749, - [3747] = 3747, - [3748] = 2459, - [3749] = 3566, - [3750] = 3593, - [3751] = 3583, - [3752] = 2527, - [3753] = 3570, - [3754] = 3566, - [3755] = 3623, - [3756] = 2526, - [3757] = 3566, - [3758] = 3601, + [3661] = 2515, + [3662] = 1289, + [3663] = 3663, + [3664] = 3664, + [3665] = 3641, + [3666] = 3666, + [3667] = 2510, + [3668] = 1931, + [3669] = 3641, + [3670] = 3670, + [3671] = 3671, + [3672] = 2538, + [3673] = 2543, + [3674] = 2559, + [3675] = 3675, + [3676] = 2460, + [3677] = 2570, + [3678] = 3660, + [3679] = 3679, + [3680] = 3680, + [3681] = 3666, + [3682] = 2465, + [3683] = 2476, + [3684] = 2510, + [3685] = 3675, + [3686] = 3666, + [3687] = 3318, + [3688] = 3659, + [3689] = 2565, + [3690] = 3656, + [3691] = 2492, + [3692] = 3654, + [3693] = 3656, + [3694] = 3655, + [3695] = 3654, + [3696] = 3666, + [3697] = 3666, + [3698] = 3641, + [3699] = 3680, + [3700] = 3700, + [3701] = 3680, + [3702] = 3702, + [3703] = 3664, + [3704] = 3680, + [3705] = 3680, + [3706] = 2495, + [3707] = 2344, + [3708] = 2530, + [3709] = 1899, + [3710] = 3710, + [3711] = 3660, + [3712] = 2565, + [3713] = 2543, + [3714] = 2538, + [3715] = 2546, + [3716] = 3716, + [3717] = 2545, + [3718] = 1901, + [3719] = 2515, + [3720] = 3716, + [3721] = 1894, + [3722] = 3664, + [3723] = 2508, + [3724] = 2504, + [3725] = 2499, + [3726] = 1919, + [3727] = 2465, + [3728] = 2496, + [3729] = 3729, + [3730] = 3664, + [3731] = 3716, + [3732] = 3675, + [3733] = 2546, + [3734] = 3335, + [3735] = 3735, + [3736] = 3641, + [3737] = 3737, + [3738] = 2498, + [3739] = 2474, + [3740] = 2488, + [3741] = 3660, + [3742] = 3735, + [3743] = 3321, + [3744] = 3666, + [3745] = 3745, + [3746] = 3700, + [3747] = 3675, + [3748] = 3748, + [3749] = 2488, + [3750] = 3716, + [3751] = 3654, + [3752] = 2570, + [3753] = 3753, + [3754] = 3716, + [3755] = 3735, + [3756] = 3737, + [3757] = 3655, + [3758] = 3680, [3759] = 3759, - [3760] = 3572, - [3761] = 3424, - [3762] = 3601, - [3763] = 3623, - [3764] = 3622, - [3765] = 3583, - [3766] = 3619, - [3767] = 3610, - [3768] = 3579, - [3769] = 2618, - [3770] = 3622, - [3771] = 3611, - [3772] = 2554, - [3773] = 3566, - [3774] = 3609, - [3775] = 3775, - [3776] = 3776, + [3760] = 2376, + [3761] = 3761, + [3762] = 3762, + [3763] = 3680, + [3764] = 3737, + [3765] = 3664, + [3766] = 3745, + [3767] = 2492, + [3768] = 2474, + [3769] = 3753, + [3770] = 1895, + [3771] = 2496, + [3772] = 3737, + [3773] = 3735, + [3774] = 1903, + [3775] = 3716, + [3776] = 3660, [3777] = 3777, - [3778] = 3778, - [3779] = 3779, - [3780] = 2587, - [3781] = 2588, - [3782] = 2529, - [3783] = 2589, - [3784] = 3784, - [3785] = 3785, - [3786] = 2591, - [3787] = 2592, - [3788] = 2593, - [3789] = 2594, - [3790] = 3784, - [3791] = 3791, - [3792] = 3792, - [3793] = 3793, - [3794] = 3785, - [3795] = 3795, - [3796] = 3795, - [3797] = 2556, - [3798] = 2618, - [3799] = 2601, - [3800] = 3800, - [3801] = 3784, - [3802] = 3802, + [3778] = 3675, + [3779] = 3664, + [3780] = 1898, + [3781] = 3737, + [3782] = 1930, + [3783] = 3702, + [3784] = 3659, + [3785] = 3675, + [3786] = 1928, + [3787] = 3660, + [3788] = 2291, + [3789] = 3656, + [3790] = 3735, + [3791] = 3737, + [3792] = 3655, + [3793] = 3659, + [3794] = 3735, + [3795] = 3664, + [3796] = 3655, + [3797] = 3656, + [3798] = 3654, + [3799] = 1921, + [3800] = 1913, + [3801] = 1925, + [3802] = 3641, [3803] = 3803, [3804] = 3804, - [3805] = 3776, - [3806] = 2568, - [3807] = 3795, - [3808] = 2619, - [3809] = 3792, - [3810] = 3810, - [3811] = 3793, - [3812] = 3812, + [3805] = 1821, + [3806] = 1933, + [3807] = 2301, + [3808] = 3656, + [3809] = 3654, + [3810] = 3659, + [3811] = 3655, + [3812] = 3659, [3813] = 3813, [3814] = 3814, - [3815] = 3779, - [3816] = 3802, + [3815] = 3815, + [3816] = 3816, [3817] = 3817, - [3818] = 2524, - [3819] = 3778, + [3818] = 2495, + [3819] = 3819, [3820] = 3820, - [3821] = 2525, - [3822] = 2526, - [3823] = 3785, - [3824] = 3775, - [3825] = 3424, - [3826] = 3784, + [3821] = 3821, + [3822] = 2535, + [3823] = 3814, + [3824] = 3824, + [3825] = 3825, + [3826] = 1950, [3827] = 3827, - [3828] = 3591, - [3829] = 3827, - [3830] = 2586, - [3831] = 2571, + [3828] = 3813, + [3829] = 3829, + [3830] = 3820, + [3831] = 3820, [3832] = 3832, - [3833] = 3424, - [3834] = 3777, + [3833] = 3833, + [3834] = 3829, [3835] = 3835, - [3836] = 2581, - [3837] = 3776, - [3838] = 2578, - [3839] = 2600, - [3840] = 3820, - [3841] = 3841, - [3842] = 3778, - [3843] = 3747, - [3844] = 3779, - [3845] = 3660, - [3846] = 2616, - [3847] = 3657, - [3848] = 2561, - [3849] = 3785, - [3850] = 3850, - [3851] = 2197, - [3852] = 3777, - [3853] = 2527, - [3854] = 3827, - [3855] = 2562, - [3856] = 3436, - [3857] = 3419, - [3858] = 2535, - [3859] = 2554, - [3860] = 3419, - [3861] = 3793, - [3862] = 3795, - [3863] = 3776, - [3864] = 3864, - [3865] = 3803, - [3866] = 3866, - [3867] = 3431, - [3868] = 3777, - [3869] = 3775, - [3870] = 3775, - [3871] = 3820, - [3872] = 3778, - [3873] = 2599, - [3874] = 3419, - [3875] = 3875, - [3876] = 3876, - [3877] = 3779, - [3878] = 3878, - [3879] = 2193, - [3880] = 3880, - [3881] = 2541, - [3882] = 3785, - [3883] = 3775, - [3884] = 3567, - [3885] = 3885, - [3886] = 2111, - [3887] = 3777, - [3888] = 2536, - [3889] = 3795, - [3890] = 3820, - [3891] = 3784, - [3892] = 2622, - [3893] = 3776, - [3894] = 3776, - [3895] = 2579, - [3896] = 3802, - [3897] = 3785, - [3898] = 3795, - [3899] = 2570, - [3900] = 2606, - [3901] = 2141, - [3902] = 3795, - [3903] = 3777, + [3836] = 3836, + [3837] = 2551, + [3838] = 2475, + [3839] = 2569, + [3840] = 3840, + [3841] = 3824, + [3842] = 3835, + [3843] = 3679, + [3844] = 3844, + [3845] = 3845, + [3846] = 2554, + [3847] = 2530, + [3848] = 3825, + [3849] = 2488, + [3850] = 2291, + [3851] = 3832, + [3852] = 3824, + [3853] = 2561, + [3854] = 3854, + [3855] = 3827, + [3856] = 3833, + [3857] = 3820, + [3858] = 2516, + [3859] = 3844, + [3860] = 3824, + [3861] = 3861, + [3862] = 3844, + [3863] = 2546, + [3864] = 2496, + [3865] = 2562, + [3866] = 1949, + [3867] = 2499, + [3868] = 2504, + [3869] = 3844, + [3870] = 3814, + [3871] = 3844, + [3872] = 3844, + [3873] = 3873, + [3874] = 2508, + [3875] = 3815, + [3876] = 2515, + [3877] = 3854, + [3878] = 2538, + [3879] = 2543, + [3880] = 2565, + [3881] = 3881, + [3882] = 2536, + [3883] = 3883, + [3884] = 2539, + [3885] = 3836, + [3886] = 3827, + [3887] = 2503, + [3888] = 3824, + [3889] = 2532, + [3890] = 2533, + [3891] = 3827, + [3892] = 2301, + [3893] = 3816, + [3894] = 3813, + [3895] = 3895, + [3896] = 2492, + [3897] = 2466, + [3898] = 3881, + [3899] = 3827, + [3900] = 3900, + [3901] = 3816, + [3902] = 3819, + [3903] = 3813, [3904] = 3827, - [3905] = 3812, - [3906] = 2602, - [3907] = 2528, - [3908] = 3775, - [3909] = 3785, - [3910] = 3910, - [3911] = 2537, - [3912] = 3785, - [3913] = 3777, - [3914] = 3827, - [3915] = 3864, - [3916] = 3436, - [3917] = 3866, - [3918] = 3910, - [3919] = 2560, - [3920] = 2583, - [3921] = 3800, - [3922] = 2584, - [3923] = 3923, - [3924] = 3424, - [3925] = 3775, - [3926] = 3779, - [3927] = 3927, - [3928] = 3431, - [3929] = 3820, - [3930] = 3930, - [3931] = 3419, - [3932] = 3792, - [3933] = 3933, + [3905] = 3824, + [3906] = 3829, + [3907] = 3819, + [3908] = 3908, + [3909] = 3816, + [3910] = 3813, + [3911] = 3911, + [3912] = 3844, + [3913] = 2559, + [3914] = 3821, + [3915] = 3813, + [3916] = 3916, + [3917] = 3854, + [3918] = 3918, + [3919] = 2570, + [3920] = 3816, + [3921] = 3819, + [3922] = 3644, + [3923] = 3745, + [3924] = 3854, + [3925] = 1951, + [3926] = 3819, + [3927] = 3816, + [3928] = 2500, + [3929] = 2556, + [3930] = 3836, + [3931] = 3819, + [3932] = 3854, + [3933] = 3825, [3934] = 3934, - [3935] = 3776, - [3936] = 3936, - [3937] = 3714, - [3938] = 3711, - [3939] = 3802, - [3940] = 3424, - [3941] = 2613, - [3942] = 3942, - [3943] = 3832, - [3944] = 3802, - [3945] = 3802, - [3946] = 3820, - [3947] = 3778, - [3948] = 3779, - [3949] = 3795, - [3950] = 3923, - [3951] = 3719, - [3952] = 3832, - [3953] = 3953, - [3954] = 3910, - [3955] = 2181, - [3956] = 3792, - [3957] = 3942, - [3958] = 3792, - [3959] = 3792, - [3960] = 3778, - [3961] = 3812, - [3962] = 3591, - [3963] = 2877, - [3964] = 3964, - [3965] = 3964, - [3966] = 3966, - [3967] = 3964, - [3968] = 3936, - [3969] = 3969, - [3970] = 3441, - [3971] = 3971, - [3972] = 3419, - [3973] = 3964, - [3974] = 3974, - [3975] = 3974, - [3976] = 3971, - [3977] = 3431, - [3978] = 3747, - [3979] = 3660, - [3980] = 3971, - [3981] = 3657, - [3982] = 3436, - [3983] = 3424, - [3984] = 3800, - [3985] = 3567, - [3986] = 3974, - [3987] = 3457, - [3988] = 3719, - [3989] = 3711, - [3990] = 3714, - [3991] = 3974, - [3992] = 2876, - [3993] = 3964, - [3994] = 3964, - [3995] = 2901, - [3996] = 3974, - [3997] = 3997, - [3998] = 3998, - [3999] = 3971, - [4000] = 4000, - [4001] = 3971, - [4002] = 3971, - [4003] = 3964, - [4004] = 4004, - [4005] = 4005, - [4006] = 2079, - [4007] = 2068, - [4008] = 4008, - [4009] = 4009, - [4010] = 3591, - [4011] = 4011, - [4012] = 4012, - [4013] = 4013, - [4014] = 4014, - [4015] = 3567, - [4016] = 4016, - [4017] = 4017, - [4018] = 4004, - [4019] = 2000, - [4020] = 4011, - [4021] = 4005, - [4022] = 4005, - [4023] = 4023, - [4024] = 4004, - [4025] = 3714, - [4026] = 4012, - [4027] = 4027, - [4028] = 4004, - [4029] = 4029, - [4030] = 2068, - [4031] = 3657, - [4032] = 2160, - [4033] = 2079, - [4034] = 3711, - [4035] = 4005, - [4036] = 4012, - [4037] = 4004, - [4038] = 4005, - [4039] = 4039, - [4040] = 4040, - [4041] = 3747, - [4042] = 4042, - [4043] = 4027, - [4044] = 4005, - [4045] = 4027, - [4046] = 4023, - [4047] = 4004, - [4048] = 4013, - [4049] = 3424, - [4050] = 2032, - [4051] = 4012, - [4052] = 4012, - [4053] = 4012, - [4054] = 3719, - [4055] = 4055, - [4056] = 3660, - [4057] = 4004, - [4058] = 4027, - [4059] = 4059, - [4060] = 3419, - [4061] = 3719, - [4062] = 4062, - [4063] = 2068, - [4064] = 3657, - [4065] = 2080, - [4066] = 2083, - [4067] = 3711, - [4068] = 3714, - [4069] = 3714, - [4070] = 3660, - [4071] = 3567, - [4072] = 3714, - [4073] = 3657, - [4074] = 2076, - [4075] = 3660, - [4076] = 3567, - [4077] = 3711, - [4078] = 3747, - [4079] = 2077, - [4080] = 3711, - [4081] = 3747, - [4082] = 3591, - [4083] = 2079, - [4084] = 2081, - [4085] = 3714, - [4086] = 2074, - [4087] = 3719, - [4088] = 3747, - [4089] = 2070, - [4090] = 3660, - [4091] = 3657, - [4092] = 3657, - [4093] = 2071, - [4094] = 3660, - [4095] = 2072, - [4096] = 3747, - [4097] = 3711, - [4098] = 3719, - [4099] = 3719, - [4100] = 3567, - [4101] = 3591, - [4102] = 3567, - [4103] = 3591, - [4104] = 3591, - [4105] = 2177, - [4106] = 2085, - [4107] = 1701, - [4108] = 1691, - [4109] = 3567, - [4110] = 2268, - [4111] = 1706, - [4112] = 1689, - [4113] = 3747, - [4114] = 3660, - [4115] = 3657, - [4116] = 1690, - [4117] = 2129, - [4118] = 1704, - [4119] = 3714, - [4120] = 3591, - [4121] = 3711, - [4122] = 2159, - [4123] = 2117, - [4124] = 2159, - [4125] = 2118, - [4126] = 3719, - [4127] = 2177, - [4128] = 2106, - [4129] = 1695, - [4130] = 4000, - [4131] = 3719, - [4132] = 3969, + [3935] = 3820, + [3936] = 3815, + [3937] = 3937, + [3938] = 1930, + [3939] = 3816, + [3940] = 2269, + [3941] = 3821, + [3942] = 3814, + [3943] = 3825, + [3944] = 3777, + [3945] = 2476, + [3946] = 3946, + [3947] = 2506, + [3948] = 3816, + [3949] = 2510, + [3950] = 3950, + [3951] = 2564, + [3952] = 3819, + [3953] = 3836, + [3954] = 3820, + [3955] = 3955, + [3956] = 3956, + [3957] = 3836, + [3958] = 2542, + [3959] = 3845, + [3960] = 3844, + [3961] = 3908, + [3962] = 3821, + [3963] = 3963, + [3964] = 3918, + [3965] = 3814, + [3966] = 3821, + [3967] = 3937, + [3968] = 2545, + [3969] = 1293, + [3970] = 3821, + [3971] = 2498, + [3972] = 2573, + [3973] = 3918, + [3974] = 3911, + [3975] = 3814, + [3976] = 3821, + [3977] = 1895, + [3978] = 2474, + [3979] = 3825, + [3980] = 3980, + [3981] = 3825, + [3982] = 3816, + [3983] = 3895, + [3984] = 3836, + [3985] = 2465, + [3986] = 3883, + [3987] = 3844, + [3988] = 2467, + [3989] = 2479, + [3990] = 3881, + [3991] = 3825, + [3992] = 2044, + [3993] = 3993, + [3994] = 1986, + [3995] = 3339, + [3996] = 2086, + [3997] = 2013, + [3998] = 1289, + [3999] = 2117, + [4000] = 2099, + [4001] = 2144, + [4002] = 2119, + [4003] = 2091, + [4004] = 2085, + [4005] = 2101, + [4006] = 2063, + [4007] = 2064, + [4008] = 2108, + [4009] = 2109, + [4010] = 2102, + [4011] = 2110, + [4012] = 2016, + [4013] = 3644, + [4014] = 2082, + [4015] = 2083, + [4016] = 2105, + [4017] = 2075, + [4018] = 2047, + [4019] = 3323, + [4020] = 2020, + [4021] = 2145, + [4022] = 2211, + [4023] = 2021, + [4024] = 3759, + [4025] = 2022, + [4026] = 2023, + [4027] = 2046, + [4028] = 2024, + [4029] = 2025, + [4030] = 2045, + [4031] = 2026, + [4032] = 2027, + [4033] = 2014, + [4034] = 2043, + [4035] = 2042, + [4036] = 2041, + [4037] = 2070, + [4038] = 2040, + [4039] = 2039, + [4040] = 2038, + [4041] = 2071, + [4042] = 2037, + [4043] = 2036, + [4044] = 2033, + [4045] = 2308, + [4046] = 2132, + [4047] = 2080, + [4048] = 2134, + [4049] = 2079, + [4050] = 2112, + [4051] = 2136, + [4052] = 3679, + [4053] = 2072, + [4054] = 2078, + [4055] = 2114, + [4056] = 2032, + [4057] = 2074, + [4058] = 2019, + [4059] = 2126, + [4060] = 2076, + [4061] = 2068, + [4062] = 2138, + [4063] = 2106, + [4064] = 1289, + [4065] = 3759, + [4066] = 4066, + [4067] = 3255, + [4068] = 4068, + [4069] = 3759, + [4070] = 4070, + [4071] = 4071, + [4072] = 4072, + [4073] = 4073, + [4074] = 1289, + [4075] = 4075, + [4076] = 4076, + [4077] = 3251, + [4078] = 4078, + [4079] = 4078, + [4080] = 4080, + [4081] = 460, + [4082] = 536, + [4083] = 4078, + [4084] = 4070, + [4085] = 4080, + [4086] = 459, + [4087] = 4071, + [4088] = 4078, + [4089] = 4080, + [4090] = 4078, + [4091] = 3644, + [4092] = 4080, + [4093] = 4066, + [4094] = 4080, + [4095] = 4078, + [4096] = 4080, + [4097] = 4080, + [4098] = 1785, + [4099] = 3679, + [4100] = 467, + [4101] = 4101, + [4102] = 4073, + [4103] = 4078, + [4104] = 1293, + [4105] = 3644, + [4106] = 4078, + [4107] = 4080, + [4108] = 3679, + [4109] = 4080, + [4110] = 4078, + [4111] = 4111, + [4112] = 458, + [4113] = 1895, + [4114] = 2211, + [4115] = 3729, + [4116] = 4071, + [4117] = 1293, + [4118] = 1101, + [4119] = 4066, + [4120] = 4070, + [4121] = 1930, + [4122] = 3748, + [4123] = 4111, + [4124] = 3644, + [4125] = 4073, + [4126] = 3679, + [4127] = 1102, + [4128] = 4128, + [4129] = 3318, + [4130] = 1821, + [4131] = 4128, + [4132] = 4128, [4133] = 4133, - [4134] = 4014, - [4135] = 4135, - [4136] = 3711, - [4137] = 3998, - [4138] = 3660, - [4139] = 3591, - [4140] = 3714, - [4141] = 2268, - [4142] = 2268, - [4143] = 4017, - [4144] = 3747, - [4145] = 3567, - [4146] = 2134, - [4147] = 4008, - [4148] = 4016, - [4149] = 2268, - [4150] = 4055, - [4151] = 4029, - [4152] = 3657, - [4153] = 4039, - [4154] = 2177, + [4134] = 4134, + [4135] = 4128, + [4136] = 3335, + [4137] = 4133, + [4138] = 4138, + [4139] = 4139, + [4140] = 4133, + [4141] = 4128, + [4142] = 4128, + [4143] = 4128, + [4144] = 4139, + [4145] = 4128, + [4146] = 4128, + [4147] = 4128, + [4148] = 4133, + [4149] = 4139, + [4150] = 4150, + [4151] = 4151, + [4152] = 4073, + [4153] = 4153, + [4154] = 4154, [4155] = 4155, - [4156] = 2159, - [4157] = 4155, - [4158] = 4158, - [4159] = 4159, - [4160] = 2159, - [4161] = 2176, - [4162] = 2196, - [4163] = 2203, - [4164] = 4155, - [4165] = 2268, - [4166] = 2176, - [4167] = 2177, - [4168] = 4159, - [4169] = 4159, - [4170] = 2159, - [4171] = 4159, - [4172] = 4159, - [4173] = 2177, - [4174] = 4174, - [4175] = 2177, - [4176] = 2176, - [4177] = 2159, - [4178] = 4178, - [4179] = 2190, - [4180] = 2159, + [4156] = 4139, + [4157] = 4128, + [4158] = 4128, + [4159] = 4128, + [4160] = 4128, + [4161] = 4128, + [4162] = 4128, + [4163] = 4133, + [4164] = 4133, + [4165] = 4165, + [4166] = 4133, + [4167] = 4128, + [4168] = 4070, + [4169] = 4139, + [4170] = 4170, + [4171] = 4128, + [4172] = 4128, + [4173] = 4128, + [4174] = 4139, + [4175] = 4128, + [4176] = 4139, + [4177] = 4177, + [4178] = 3321, + [4179] = 4139, + [4180] = 4133, [4181] = 4181, - [4182] = 4182, - [4183] = 2203, - [4184] = 2196, - [4185] = 4185, - [4186] = 2196, - [4187] = 2203, - [4188] = 2191, - [4189] = 2196, - [4190] = 4181, - [4191] = 4191, - [4192] = 4174, - [4193] = 4178, - [4194] = 3289, - [4195] = 2177, - [4196] = 2203, - [4197] = 2224, + [4182] = 4139, + [4183] = 4133, + [4184] = 4128, + [4185] = 4177, + [4186] = 4154, + [4187] = 4070, + [4188] = 4165, + [4189] = 4070, + [4190] = 4155, + [4191] = 4070, + [4192] = 4134, + [4193] = 4066, + [4194] = 4194, + [4195] = 4153, + [4196] = 4071, + [4197] = 4197, [4198] = 4198, - [4199] = 2288, - [4200] = 4200, - [4201] = 4201, - [4202] = 2286, - [4203] = 2281, - [4204] = 2266, - [4205] = 2210, - [4206] = 2265, - [4207] = 2221, - [4208] = 4208, - [4209] = 2232, - [4210] = 2233, - [4211] = 2251, - [4212] = 2255, - [4213] = 4213, - [4214] = 4208, - [4215] = 2236, - [4216] = 2159, - [4217] = 2177, - [4218] = 4218, - [4219] = 2238, - [4220] = 2245, + [4199] = 4073, + [4200] = 4194, + [4201] = 4071, + [4202] = 4202, + [4203] = 4203, + [4204] = 4170, + [4205] = 4073, + [4206] = 4138, + [4207] = 4207, + [4208] = 4073, + [4209] = 4209, + [4210] = 4070, + [4211] = 4066, + [4212] = 4212, + [4213] = 4073, + [4214] = 4066, + [4215] = 4215, + [4216] = 4215, + [4217] = 4217, + [4218] = 4075, + [4219] = 4198, + [4220] = 4071, [4221] = 4221, - [4222] = 4218, - [4223] = 4223, - [4224] = 2294, - [4225] = 2212, - [4226] = 2213, - [4227] = 2290, - [4228] = 2217, - [4229] = 2278, - [4230] = 2275, - [4231] = 2492, - [4232] = 2298, - [4233] = 4233, - [4234] = 2222, - [4235] = 2280, - [4236] = 2240, + [4222] = 4215, + [4223] = 4154, + [4224] = 4073, + [4225] = 4225, + [4226] = 4225, + [4227] = 4155, + [4228] = 4225, + [4229] = 4229, + [4230] = 4215, + [4231] = 4231, + [4232] = 4215, + [4233] = 4225, + [4234] = 4138, + [4235] = 4170, + [4236] = 4068, [4237] = 4237, - [4238] = 4223, - [4239] = 4218, - [4240] = 4201, - [4241] = 2220, - [4242] = 4208, - [4243] = 4243, - [4244] = 4244, + [4238] = 4217, + [4239] = 4215, + [4240] = 3345, + [4241] = 4225, + [4242] = 4217, + [4243] = 4177, + [4244] = 4165, [4245] = 4245, - [4246] = 4246, - [4247] = 4247, - [4248] = 4248, - [4249] = 4249, - [4250] = 4250, - [4251] = 4251, - [4252] = 2241, - [4253] = 2203, - [4254] = 4251, - [4255] = 4233, - [4256] = 2243, - [4257] = 4223, - [4258] = 4218, - [4259] = 2196, - [4260] = 4218, - [4261] = 4221, - [4262] = 4262, - [4263] = 2214, - [4264] = 2244, - [4265] = 4249, - [4266] = 4223, - [4267] = 4267, - [4268] = 4268, - [4269] = 4213, + [4246] = 4134, + [4247] = 4070, + [4248] = 3323, + [4249] = 4153, + [4250] = 4194, + [4251] = 4215, + [4252] = 3339, + [4253] = 4217, + [4254] = 4225, + [4255] = 4217, + [4256] = 4256, + [4257] = 4138, + [4258] = 1867, + [4259] = 4256, + [4260] = 4256, + [4261] = 4261, + [4262] = 1864, + [4263] = 4263, + [4264] = 4264, + [4265] = 4265, + [4266] = 4266, + [4267] = 1896, + [4268] = 1821, + [4269] = 4269, [4270] = 4270, - [4271] = 2226, - [4272] = 2249, - [4273] = 2300, - [4274] = 2211, - [4275] = 4275, - [4276] = 4276, - [4277] = 2257, - [4278] = 4278, - [4279] = 4248, - [4280] = 4213, - [4281] = 2246, - [4282] = 4282, - [4283] = 4208, - [4284] = 4284, - [4285] = 4218, - [4286] = 4223, - [4287] = 4287, - [4288] = 4223, - [4289] = 2252, - [4290] = 4218, - [4291] = 4291, - [4292] = 4208, - [4293] = 4293, - [4294] = 4294, - [4295] = 2264, - [4296] = 4296, + [4271] = 4256, + [4272] = 4263, + [4273] = 4154, + [4274] = 4274, + [4275] = 4264, + [4276] = 4153, + [4277] = 4177, + [4278] = 4270, + [4279] = 4263, + [4280] = 4280, + [4281] = 4281, + [4282] = 4263, + [4283] = 4263, + [4284] = 4165, + [4285] = 4073, + [4286] = 4286, + [4287] = 1812, + [4288] = 4288, + [4289] = 4155, + [4290] = 4264, + [4291] = 4256, + [4292] = 4070, + [4293] = 4256, + [4294] = 1864, + [4295] = 4134, + [4296] = 1867, [4297] = 4297, - [4298] = 2259, - [4299] = 2274, - [4300] = 4300, - [4301] = 4223, - [4302] = 4302, - [4303] = 4247, - [4304] = 4223, - [4305] = 3276, - [4306] = 4218, - [4307] = 4223, - [4308] = 2247, - [4309] = 4218, - [4310] = 4218, - [4311] = 2250, - [4312] = 2242, - [4313] = 4246, - [4314] = 4245, - [4315] = 2277, - [4316] = 4316, - [4317] = 2296, - [4318] = 4318, - [4319] = 4201, - [4320] = 2234, - [4321] = 4291, - [4322] = 4244, - [4323] = 4223, - [4324] = 4223, - [4325] = 2258, - [4326] = 2271, - [4327] = 4208, - [4328] = 2279, - [4329] = 4208, - [4330] = 2228, - [4331] = 2227, - [4332] = 2235, - [4333] = 2225, - [4334] = 4243, - [4335] = 4335, - [4336] = 4223, - [4337] = 4218, - [4338] = 2208, - [4339] = 2216, - [4340] = 2289, - [4341] = 2292, - [4342] = 4208, - [4343] = 2215, - [4344] = 2291, - [4345] = 4213, - [4346] = 4223, - [4347] = 4218, - [4348] = 4208, - [4349] = 2239, - [4350] = 4218, - [4351] = 4223, - [4352] = 4218, - [4353] = 2229, - [4354] = 2231, - [4355] = 4355, - [4356] = 4200, - [4357] = 4357, - [4358] = 4268, - [4359] = 4359, - [4360] = 4267, - [4361] = 4361, - [4362] = 4359, - [4363] = 4363, - [4364] = 4361, - [4365] = 4365, - [4366] = 4357, - [4367] = 4275, - [4368] = 4357, - [4369] = 4359, - [4370] = 4361, - [4371] = 4365, - [4372] = 4359, - [4373] = 4373, - [4374] = 4374, - [4375] = 4316, - [4376] = 4359, - [4377] = 4377, - [4378] = 4359, - [4379] = 4361, - [4380] = 4361, - [4381] = 4357, - [4382] = 4365, - [4383] = 4383, - [4384] = 4278, - [4385] = 4359, - [4386] = 4374, - [4387] = 4357, - [4388] = 4383, - [4389] = 4373, - [4390] = 4363, - [4391] = 4361, - [4392] = 4361, - [4393] = 4377, - [4394] = 4198, - [4395] = 4359, - [4396] = 4359, - [4397] = 4361, - [4398] = 4357, - [4399] = 4359, - [4400] = 4361, - [4401] = 4357, - [4402] = 4357, - [4403] = 4357, - [4404] = 4361, - [4405] = 4359, - [4406] = 4357, - [4407] = 4361, - [4408] = 4357, - [4409] = 4365, - [4410] = 4359, - [4411] = 4270, - [4412] = 4357, - [4413] = 4413, - [4414] = 4361, - [4415] = 4361, - [4416] = 4359, - [4417] = 4282, - [4418] = 4357, - [4419] = 4357, - [4420] = 4287, - [4421] = 4284, - [4422] = 4361, - [4423] = 4293, - [4424] = 4355, - [4425] = 4294, - [4426] = 4426, - [4427] = 4296, - [4428] = 4359, - [4429] = 4297, - [4430] = 4300, - [4431] = 3270, + [4298] = 4263, + [4299] = 4264, + [4300] = 4170, + [4301] = 4264, + [4302] = 4265, + [4303] = 4303, + [4304] = 4270, + [4305] = 4305, + [4306] = 4288, + [4307] = 4307, + [4308] = 4263, + [4309] = 4303, + [4310] = 4270, + [4311] = 4264, + [4312] = 4312, + [4313] = 1864, + [4314] = 4134, + [4315] = 1836, + [4316] = 1837, + [4317] = 4177, + [4318] = 4170, + [4319] = 4134, + [4320] = 1838, + [4321] = 4155, + [4322] = 4138, + [4323] = 4138, + [4324] = 4153, + [4325] = 4177, + [4326] = 4165, + [4327] = 4138, + [4328] = 4170, + [4329] = 4165, + [4330] = 1832, + [4331] = 4154, + [4332] = 4153, + [4333] = 1835, + [4334] = 1833, + [4335] = 4165, + [4336] = 4154, + [4337] = 4153, + [4338] = 1840, + [4339] = 4155, + [4340] = 1841, + [4341] = 1842, + [4342] = 4177, + [4343] = 4134, + [4344] = 1867, + [4345] = 4170, + [4346] = 4155, + [4347] = 4138, + [4348] = 4153, + [4349] = 4170, + [4350] = 4350, + [4351] = 4177, + [4352] = 4155, + [4353] = 4134, + [4354] = 4165, + [4355] = 4154, + [4356] = 4154, + [4357] = 4155, + [4358] = 4134, + [4359] = 1298, + [4360] = 1291, + [4361] = 1301, + [4362] = 4153, + [4363] = 4154, + [4364] = 4177, + [4365] = 1302, + [4366] = 4165, + [4367] = 1295, + [4368] = 1300, + [4369] = 1304, + [4370] = 2972, + [4371] = 1895, + [4372] = 4170, + [4373] = 4138, + [4374] = 1895, + [4375] = 1873, + [4376] = 1884, + [4377] = 1888, + [4378] = 1886, + [4379] = 1930, + [4380] = 1875, + [4381] = 1930, + [4382] = 4261, + [4383] = 4221, + [4384] = 4286, + [4385] = 4269, + [4386] = 2972, + [4387] = 4170, + [4388] = 2972, + [4389] = 2972, + [4390] = 4266, + [4391] = 4297, + [4392] = 4138, + [4393] = 4165, + [4394] = 4281, + [4395] = 4154, + [4396] = 4153, + [4397] = 4280, + [4398] = 4398, + [4399] = 1912, + [4400] = 4134, + [4401] = 4245, + [4402] = 4237, + [4403] = 4177, + [4404] = 4404, + [4405] = 4155, + [4406] = 1949, + [4407] = 1909, + [4408] = 1930, + [4409] = 1895, + [4410] = 1930, + [4411] = 4411, + [4412] = 4412, + [4413] = 2972, + [4414] = 4414, + [4415] = 4412, + [4416] = 4412, + [4417] = 1950, + [4418] = 4412, + [4419] = 4412, + [4420] = 1895, + [4421] = 1895, + [4422] = 4412, + [4423] = 1909, + [4424] = 1930, + [4425] = 4414, + [4426] = 4414, + [4427] = 1930, + [4428] = 4428, + [4429] = 1909, + [4430] = 1895, + [4431] = 1951, [4432] = 4432, - [4433] = 4250, - [4434] = 4359, - [4435] = 4361, - [4436] = 4383, - [4437] = 4357, - [4438] = 4262, - [4439] = 4318, - [4440] = 4374, - [4441] = 4373, - [4442] = 4426, - [4443] = 4363, - [4444] = 4377, - [4445] = 2492, - [4446] = 4284, - [4447] = 4447, - [4448] = 4448, - [4449] = 4447, - [4450] = 4447, + [4433] = 4433, + [4434] = 1960, + [4435] = 1950, + [4436] = 4432, + [4437] = 4437, + [4438] = 1895, + [4439] = 4439, + [4440] = 1949, + [4441] = 4437, + [4442] = 1930, + [4443] = 3748, + [4444] = 1950, + [4445] = 1949, + [4446] = 4446, + [4447] = 4428, + [4448] = 1949, + [4449] = 1950, + [4450] = 4450, [4451] = 4451, - [4452] = 4452, - [4453] = 4448, - [4454] = 4448, - [4455] = 4447, - [4456] = 4451, - [4457] = 4451, - [4458] = 4451, - [4459] = 4447, - [4460] = 4448, + [4452] = 2138, + [4453] = 4451, + [4454] = 2136, + [4455] = 2134, + [4456] = 4456, + [4457] = 4450, + [4458] = 2132, + [4459] = 2126, + [4460] = 4450, [4461] = 4461, - [4462] = 4448, - [4463] = 4451, - [4464] = 4448, - [4465] = 4447, - [4466] = 4447, - [4467] = 4451, - [4468] = 3270, - [4469] = 4448, - [4470] = 4284, - [4471] = 4447, - [4472] = 4472, - [4473] = 4452, - [4474] = 4451, - [4475] = 4447, - [4476] = 4448, - [4477] = 4448, - [4478] = 4451, - [4479] = 4451, - [4480] = 4447, - [4481] = 4451, - [4482] = 4451, - [4483] = 4451, - [4484] = 4447, - [4485] = 4451, - [4486] = 4448, - [4487] = 4447, - [4488] = 4448, - [4489] = 4448, - [4490] = 4448, - [4491] = 4447, - [4492] = 4451, - [4493] = 4448, - [4494] = 4448, - [4495] = 4451, - [4496] = 4447, - [4497] = 4447, - [4498] = 4284, - [4499] = 4499, - [4500] = 4500, - [4501] = 4284, - [4502] = 4502, - [4503] = 4499, - [4504] = 4499, - [4505] = 4284, - [4506] = 4500, - [4507] = 4500, - [4508] = 4500, - [4509] = 4502, - [4510] = 4502, - [4511] = 4500, - [4512] = 4500, - [4513] = 4513, - [4514] = 4499, - [4515] = 4513, - [4516] = 4499, - [4517] = 4499, - [4518] = 4502, - [4519] = 4500, - [4520] = 4513, - [4521] = 4502, - [4522] = 4284, - [4523] = 4500, - [4524] = 4502, - [4525] = 4499, - [4526] = 4499, - [4527] = 4500, - [4528] = 4499, - [4529] = 4502, - [4530] = 4530, - [4531] = 4530, + [4462] = 4456, + [4463] = 2119, + [4464] = 2117, + [4465] = 2114, + [4466] = 2112, + [4467] = 2110, + [4468] = 2109, + [4469] = 4469, + [4470] = 2108, + [4471] = 4471, + [4472] = 2376, + [4473] = 2106, + [4474] = 2105, + [4475] = 2102, + [4476] = 2101, + [4477] = 4450, + [4478] = 4456, + [4479] = 4461, + [4480] = 4480, + [4481] = 2099, + [4482] = 4456, + [4483] = 4450, + [4484] = 4484, + [4485] = 4485, + [4486] = 4461, + [4487] = 2086, + [4488] = 2085, + [4489] = 2083, + [4490] = 2082, + [4491] = 2080, + [4492] = 4492, + [4493] = 4451, + [4494] = 2079, + [4495] = 2078, + [4496] = 2076, + [4497] = 2075, + [4498] = 2074, + [4499] = 4456, + [4500] = 2072, + [4501] = 4501, + [4502] = 2071, + [4503] = 4503, + [4504] = 2070, + [4505] = 4450, + [4506] = 2091, + [4507] = 4507, + [4508] = 2145, + [4509] = 2064, + [4510] = 2063, + [4511] = 4511, + [4512] = 4456, + [4513] = 4450, + [4514] = 3729, + [4515] = 2047, + [4516] = 1895, + [4517] = 1930, + [4518] = 4451, + [4519] = 2046, + [4520] = 2045, + [4521] = 2044, + [4522] = 2043, + [4523] = 2042, + [4524] = 4524, + [4525] = 4451, + [4526] = 2041, + [4527] = 2040, + [4528] = 2039, + [4529] = 2038, + [4530] = 2037, + [4531] = 2036, [4532] = 4532, - [4533] = 4532, - [4534] = 4532, + [4533] = 2033, + [4534] = 4534, [4535] = 4535, [4536] = 4536, - [4537] = 4537, - [4538] = 4535, - [4539] = 4536, - [4540] = 4537, + [4537] = 2032, + [4538] = 4451, + [4539] = 2027, + [4540] = 2068, [4541] = 4541, - [4542] = 4537, - [4543] = 4537, - [4544] = 4536, - [4545] = 4541, - [4546] = 4541, - [4547] = 4532, - [4548] = 4532, - [4549] = 4537, - [4550] = 4530, - [4551] = 4535, - [4552] = 4536, - [4553] = 4532, - [4554] = 4537, - [4555] = 4530, - [4556] = 4530, - [4557] = 4530, - [4558] = 4530, - [4559] = 4541, - [4560] = 4532, - [4561] = 4536, - [4562] = 4541, - [4563] = 4535, - [4564] = 4536, - [4565] = 4535, - [4566] = 4530, - [4567] = 4536, - [4568] = 4541, - [4569] = 4532, - [4570] = 4537, - [4571] = 4532, - [4572] = 4537, - [4573] = 4532, - [4574] = 4541, - [4575] = 4536, - [4576] = 4541, - [4577] = 4535, - [4578] = 4537, - [4579] = 4536, - [4580] = 4535, - [4581] = 4535, - [4582] = 4532, - [4583] = 4535, - [4584] = 4536, - [4585] = 4537, - [4586] = 4541, - [4587] = 4530, - [4588] = 4530, - [4589] = 4535, - [4590] = 4541, - [4591] = 4541, - [4592] = 4536, - [4593] = 4541, - [4594] = 4536, - [4595] = 4535, - [4596] = 4596, - [4597] = 4535, - [4598] = 4535, - [4599] = 4530, - [4600] = 4536, - [4601] = 4541, - [4602] = 4284, - [4603] = 4532, - [4604] = 4532, - [4605] = 4537, - [4606] = 4530, - [4607] = 4541, - [4608] = 4530, - [4609] = 4537, - [4610] = 4536, + [4542] = 4456, + [4543] = 4450, + [4544] = 4544, + [4545] = 4545, + [4546] = 2025, + [4547] = 4547, + [4548] = 2024, + [4549] = 4549, + [4550] = 4550, + [4551] = 4551, + [4552] = 4552, + [4553] = 2023, + [4554] = 2022, + [4555] = 2021, + [4556] = 4450, + [4557] = 4451, + [4558] = 2020, + [4559] = 4456, + [4560] = 4450, + [4561] = 4456, + [4562] = 2019, + [4563] = 2016, + [4564] = 2014, + [4565] = 4503, + [4566] = 4456, + [4567] = 4450, + [4568] = 1986, + [4569] = 2013, + [4570] = 4570, + [4571] = 4524, + [4572] = 4572, + [4573] = 4456, + [4574] = 2026, + [4575] = 4575, + [4576] = 4576, + [4577] = 4577, + [4578] = 4578, + [4579] = 4579, + [4580] = 4461, + [4581] = 4581, + [4582] = 1949, + [4583] = 4456, + [4584] = 4450, + [4585] = 1950, + [4586] = 4586, + [4587] = 4575, + [4588] = 4588, + [4589] = 4450, + [4590] = 4456, + [4591] = 4578, + [4592] = 4451, + [4593] = 2144, + [4594] = 4456, + [4595] = 4451, + [4596] = 4450, + [4597] = 4597, + [4598] = 4456, + [4599] = 4471, + [4600] = 4600, + [4601] = 4485, + [4602] = 4501, + [4603] = 4484, + [4604] = 4450, + [4605] = 4605, + [4606] = 4503, + [4607] = 4597, + [4608] = 4586, + [4609] = 4547, + [4610] = 4534, [4611] = 4532, - [4612] = 4532, - [4613] = 4537, - [4614] = 4535, - [4615] = 4535, - [4616] = 4536, - [4617] = 4541, - [4618] = 4537, - [4619] = 4530, - [4620] = 4530, - [4621] = 4537, - [4622] = 4622, - [4623] = 4623, - [4624] = 4624, - [4625] = 4624, - [4626] = 4626, - [4627] = 4622, - [4628] = 4626, - [4629] = 4626, - [4630] = 4622, - [4631] = 4626, - [4632] = 4622, - [4633] = 4624, - [4634] = 4626, - [4635] = 4626, - [4636] = 4623, - [4637] = 4624, - [4638] = 4622, - [4639] = 4623, - [4640] = 4624, + [4612] = 4612, + [4613] = 4613, + [4614] = 4614, + [4615] = 4615, + [4616] = 4480, + [4617] = 4617, + [4618] = 4618, + [4619] = 4544, + [4620] = 4620, + [4621] = 4617, + [4622] = 4545, + [4623] = 4612, + [4624] = 4613, + [4625] = 4625, + [4626] = 4625, + [4627] = 4614, + [4628] = 4570, + [4629] = 3777, + [4630] = 4615, + [4631] = 4613, + [4632] = 4572, + [4633] = 4549, + [4634] = 4577, + [4635] = 4507, + [4636] = 4541, + [4637] = 4612, + [4638] = 4581, + [4639] = 4576, + [4640] = 4612, [4641] = 4641, - [4642] = 4624, - [4643] = 4643, - [4644] = 4624, - [4645] = 4624, - [4646] = 4622, - [4647] = 4643, - [4648] = 4624, - [4649] = 4643, - [4650] = 4624, - [4651] = 4624, - [4652] = 4643, - [4653] = 4643, - [4654] = 4622, - [4655] = 4626, - [4656] = 4643, - [4657] = 4624, - [4658] = 4626, - [4659] = 4622, - [4660] = 4660, - [4661] = 4623, - [4662] = 4643, - [4663] = 4622, - [4664] = 4643, - [4665] = 4624, - [4666] = 4626, - [4667] = 4623, - [4668] = 4284, - [4669] = 4623, - [4670] = 4643, + [4642] = 4625, + [4643] = 4613, + [4644] = 4612, + [4645] = 4511, + [4646] = 2376, + [4647] = 4612, + [4648] = 4613, + [4649] = 4550, + [4650] = 4650, + [4651] = 4535, + [4652] = 4652, + [4653] = 4625, + [4654] = 4615, + [4655] = 4551, + [4656] = 4552, + [4657] = 4612, + [4658] = 4613, + [4659] = 4625, + [4660] = 4618, + [4661] = 4613, + [4662] = 4625, + [4663] = 4625, + [4664] = 4469, + [4665] = 4612, + [4666] = 4613, + [4667] = 4620, + [4668] = 4612, + [4669] = 4618, + [4670] = 4612, [4671] = 4671, - [4672] = 4671, - [4673] = 4673, - [4674] = 2083, - [4675] = 2077, - [4676] = 2081, - [4677] = 4677, - [4678] = 4678, - [4679] = 4677, - [4680] = 4673, - [4681] = 4677, - [4682] = 2080, - [4683] = 4683, - [4684] = 4683, - [4685] = 4673, - [4686] = 2111, - [4687] = 2074, - [4688] = 2070, - [4689] = 4683, - [4690] = 4671, - [4691] = 4677, - [4692] = 4677, - [4693] = 4671, - [4694] = 4683, - [4695] = 4671, - [4696] = 4671, - [4697] = 4678, - [4698] = 4698, - [4699] = 4683, - [4700] = 4673, - [4701] = 2071, - [4702] = 4673, - [4703] = 4683, - [4704] = 4671, - [4705] = 4677, - [4706] = 4671, - [4707] = 2072, - [4708] = 4678, - [4709] = 4683, - [4710] = 2076, - [4711] = 4677, - [4712] = 4671, - [4713] = 4671, - [4714] = 4671, - [4715] = 4671, - [4716] = 4678, - [4717] = 2141, - [4718] = 4718, - [4719] = 4719, - [4720] = 4720, - [4721] = 4721, - [4722] = 4722, - [4723] = 4723, - [4724] = 1759, - [4725] = 4725, - [4726] = 4726, - [4727] = 1761, - [4728] = 4728, - [4729] = 4725, - [4730] = 1748, - [4731] = 4725, - [4732] = 1750, - [4733] = 1753, - [4734] = 4725, - [4735] = 4735, - [4736] = 1754, - [4737] = 1755, - [4738] = 4725, - [4739] = 1757, - [4740] = 4725, - [4741] = 4741, - [4742] = 2518, - [4743] = 4743, - [4744] = 4725, - [4745] = 1763, - [4746] = 4725, - [4747] = 1751, - [4748] = 4725, - [4749] = 4725, - [4750] = 4725, - [4751] = 4725, - [4752] = 1760, - [4753] = 4725, - [4754] = 4743, - [4755] = 1749, - [4756] = 4743, - [4757] = 1762, - [4758] = 4758, - [4759] = 4725, - [4760] = 2141, + [4672] = 4612, + [4673] = 4625, + [4674] = 4617, + [4675] = 4614, + [4676] = 4613, + [4677] = 4613, + [4678] = 4652, + [4679] = 4613, + [4680] = 4625, + [4681] = 4613, + [4682] = 4625, + [4683] = 4625, + [4684] = 4625, + [4685] = 4536, + [4686] = 4641, + [4687] = 4613, + [4688] = 4612, + [4689] = 4612, + [4690] = 4579, + [4691] = 4625, + [4692] = 4620, + [4693] = 4612, + [4694] = 4613, + [4695] = 4612, + [4696] = 4625, + [4697] = 4613, + [4698] = 4618, + [4699] = 4625, + [4700] = 4652, + [4701] = 4625, + [4702] = 4613, + [4703] = 4612, + [4704] = 4572, + [4705] = 4705, + [4706] = 4706, + [4707] = 4707, + [4708] = 4708, + [4709] = 4572, + [4710] = 4708, + [4711] = 4706, + [4712] = 4707, + [4713] = 4713, + [4714] = 4707, + [4715] = 4706, + [4716] = 4716, + [4717] = 4708, + [4718] = 4707, + [4719] = 4708, + [4720] = 4707, + [4721] = 4708, + [4722] = 4706, + [4723] = 4706, + [4724] = 4708, + [4725] = 4706, + [4726] = 4708, + [4727] = 4707, + [4728] = 4706, + [4729] = 4707, + [4730] = 4706, + [4731] = 4708, + [4732] = 4707, + [4733] = 4708, + [4734] = 4707, + [4735] = 4706, + [4736] = 4706, + [4737] = 4705, + [4738] = 4706, + [4739] = 4708, + [4740] = 4706, + [4741] = 4706, + [4742] = 4708, + [4743] = 4706, + [4744] = 4708, + [4745] = 4706, + [4746] = 4707, + [4747] = 4708, + [4748] = 3777, + [4749] = 4707, + [4750] = 4708, + [4751] = 4707, + [4752] = 4706, + [4753] = 4708, + [4754] = 4707, + [4755] = 4707, + [4756] = 4707, + [4757] = 4707, + [4758] = 4708, + [4759] = 4759, + [4760] = 4759, [4761] = 4761, - [4762] = 1756, - [4763] = 4763, - [4764] = 4725, - [4765] = 4765, - [4766] = 1752, - [4767] = 4725, - [4768] = 326, - [4769] = 2068, - [4770] = 331, - [4771] = 2079, - [4772] = 4765, - [4773] = 4773, - [4774] = 4774, + [4762] = 4759, + [4763] = 4572, + [4764] = 4759, + [4765] = 4761, + [4766] = 4761, + [4767] = 4759, + [4768] = 4768, + [4769] = 4572, + [4770] = 4572, + [4771] = 4759, + [4772] = 4768, + [4773] = 4761, + [4774] = 4768, [4775] = 4775, - [4776] = 4776, - [4777] = 4777, - [4778] = 4778, - [4779] = 4779, - [4780] = 4780, - [4781] = 4781, - [4782] = 4782, - [4783] = 4783, - [4784] = 4725, - [4785] = 4725, - [4786] = 4786, - [4787] = 4787, - [4788] = 4725, - [4789] = 4765, - [4790] = 4725, - [4791] = 1711, - [4792] = 4792, - [4793] = 2111, + [4776] = 4761, + [4777] = 4768, + [4778] = 4759, + [4779] = 4768, + [4780] = 4775, + [4781] = 4768, + [4782] = 4572, + [4783] = 4768, + [4784] = 4761, + [4785] = 4761, + [4786] = 4761, + [4787] = 4759, + [4788] = 4761, + [4789] = 4759, + [4790] = 4759, + [4791] = 4761, + [4792] = 4775, + [4793] = 4793, [4794] = 4794, - [4795] = 4743, - [4796] = 4765, - [4797] = 4797, - [4798] = 4798, + [4795] = 4795, + [4796] = 4795, + [4797] = 4793, + [4798] = 4794, [4799] = 4799, - [4800] = 4800, + [4800] = 4793, [4801] = 4801, - [4802] = 4798, - [4803] = 4803, + [4802] = 4794, + [4803] = 4793, [4804] = 4804, - [4805] = 4805, - [4806] = 4806, - [4807] = 4758, - [4808] = 2321, - [4809] = 4809, - [4810] = 4810, - [4811] = 4811, - [4812] = 4812, - [4813] = 4813, - [4814] = 4814, - [4815] = 4719, - [4816] = 4792, - [4817] = 2320, - [4818] = 4720, + [4805] = 4795, + [4806] = 4799, + [4807] = 4807, + [4808] = 4799, + [4809] = 4801, + [4810] = 4793, + [4811] = 4793, + [4812] = 4794, + [4813] = 4795, + [4814] = 4801, + [4815] = 4795, + [4816] = 4793, + [4817] = 4795, + [4818] = 4801, [4819] = 4801, - [4820] = 4820, - [4821] = 4821, - [4822] = 2079, - [4823] = 4823, - [4824] = 4824, - [4825] = 4825, - [4826] = 4803, - [4827] = 4827, - [4828] = 4828, + [4820] = 4794, + [4821] = 4794, + [4822] = 4799, + [4823] = 4807, + [4824] = 4794, + [4825] = 4793, + [4826] = 4794, + [4827] = 4799, + [4828] = 4807, [4829] = 4799, - [4830] = 4830, - [4831] = 4831, - [4832] = 4735, - [4833] = 4833, - [4834] = 4834, - [4835] = 4835, - [4836] = 4782, - [4837] = 2068, - [4838] = 2311, - [4839] = 4773, - [4840] = 4778, - [4841] = 4841, - [4842] = 4842, - [4843] = 4779, - [4844] = 4777, - [4845] = 4761, - [4846] = 4846, - [4847] = 4824, - [4848] = 4800, - [4849] = 4849, - [4850] = 4763, - [4851] = 2301, - [4852] = 4852, - [4853] = 4776, - [4854] = 4854, - [4855] = 4855, - [4856] = 4797, - [4857] = 4722, - [4858] = 4812, - [4859] = 4781, - [4860] = 4860, - [4861] = 4728, - [4862] = 2313, - [4863] = 4820, - [4864] = 4864, - [4865] = 4823, - [4866] = 4718, - [4867] = 4867, - [4868] = 4723, - [4869] = 2608, - [4870] = 2317, - [4871] = 2522, - [4872] = 4872, - [4873] = 4774, - [4874] = 2567, - [4875] = 4780, - [4876] = 4876, - [4877] = 2159, - [4878] = 2141, - [4879] = 4820, - [4880] = 4880, - [4881] = 4876, - [4882] = 4882, - [4883] = 4882, - [4884] = 4823, - [4885] = 4882, - [4886] = 4867, - [4887] = 2111, - [4888] = 4876, - [4889] = 4882, - [4890] = 4890, + [4830] = 4807, + [4831] = 4807, + [4832] = 4794, + [4833] = 4807, + [4834] = 4794, + [4835] = 4799, + [4836] = 4801, + [4837] = 4801, + [4838] = 4799, + [4839] = 4799, + [4840] = 4795, + [4841] = 4801, + [4842] = 4807, + [4843] = 4793, + [4844] = 4799, + [4845] = 4795, + [4846] = 4794, + [4847] = 4572, + [4848] = 4807, + [4849] = 4795, + [4850] = 4801, + [4851] = 4807, + [4852] = 4795, + [4853] = 4793, + [4854] = 4795, + [4855] = 4795, + [4856] = 4793, + [4857] = 4795, + [4858] = 4793, + [4859] = 4801, + [4860] = 4799, + [4861] = 4799, + [4862] = 4801, + [4863] = 4793, + [4864] = 4794, + [4865] = 4795, + [4866] = 4807, + [4867] = 4799, + [4868] = 4801, + [4869] = 4807, + [4870] = 4793, + [4871] = 4795, + [4872] = 4794, + [4873] = 4807, + [4874] = 4807, + [4875] = 4801, + [4876] = 4801, + [4877] = 4794, + [4878] = 4799, + [4879] = 4807, + [4880] = 4801, + [4881] = 4795, + [4882] = 4807, + [4883] = 4793, + [4884] = 4794, + [4885] = 4799, + [4886] = 4799, + [4887] = 4794, + [4888] = 4793, + [4889] = 4807, + [4890] = 4801, [4891] = 4891, - [4892] = 4846, - [4893] = 4893, - [4894] = 4834, - [4895] = 4876, - [4896] = 4833, - [4897] = 4882, - [4898] = 4882, - [4899] = 4882, - [4900] = 2547, - [4901] = 4882, - [4902] = 4813, - [4903] = 2177, - [4904] = 4882, - [4905] = 4794, - [4906] = 4906, - [4907] = 4876, - [4908] = 4876, - [4909] = 4882, - [4910] = 4882, - [4911] = 4828, - [4912] = 4876, - [4913] = 4913, - [4914] = 4882, - [4915] = 4864, - [4916] = 4803, - [4917] = 4882, - [4918] = 4812, - [4919] = 4882, - [4920] = 4882, - [4921] = 4921, - [4922] = 4922, - [4923] = 4882, - [4924] = 4882, - [4925] = 4882, - [4926] = 4824, - [4927] = 4882, - [4928] = 4882, - [4929] = 4929, - [4930] = 1691, - [4931] = 4846, - [4932] = 4932, - [4933] = 4933, - [4934] = 4867, - [4935] = 4932, - [4936] = 4936, - [4937] = 4937, - [4938] = 2111, - [4939] = 4937, - [4940] = 4940, - [4941] = 326, - [4942] = 4728, - [4943] = 4834, - [4944] = 4944, + [4892] = 4892, + [4893] = 4892, + [4894] = 4894, + [4895] = 4895, + [4896] = 4896, + [4897] = 4894, + [4898] = 4892, + [4899] = 4891, + [4900] = 4892, + [4901] = 4901, + [4902] = 4901, + [4903] = 4894, + [4904] = 4891, + [4905] = 4896, + [4906] = 4892, + [4907] = 4891, + [4908] = 4908, + [4909] = 4901, + [4910] = 4891, + [4911] = 4896, + [4912] = 4894, + [4913] = 4896, + [4914] = 4896, + [4915] = 4901, + [4916] = 4896, + [4917] = 4894, + [4918] = 4892, + [4919] = 4891, + [4920] = 4894, + [4921] = 4894, + [4922] = 4896, + [4923] = 4892, + [4924] = 4891, + [4925] = 4572, + [4926] = 4894, + [4927] = 4894, + [4928] = 4891, + [4929] = 4896, + [4930] = 4896, + [4931] = 4894, + [4932] = 4891, + [4933] = 4901, + [4934] = 4892, + [4935] = 4891, + [4936] = 4901, + [4937] = 4891, + [4938] = 4891, + [4939] = 4891, + [4940] = 4892, + [4941] = 4941, + [4942] = 4942, + [4943] = 2516, + [4944] = 4942, [4945] = 4945, - [4946] = 4720, - [4947] = 331, - [4948] = 4719, - [4949] = 4833, - [4950] = 4813, - [4951] = 4932, - [4952] = 4828, - [4953] = 4937, - [4954] = 4864, - [4955] = 1762, - [4956] = 4932, - [4957] = 4932, - [4958] = 1756, - [4959] = 4959, - [4960] = 1749, - [4961] = 4937, - [4962] = 4641, - [4963] = 4723, - [4964] = 4932, - [4965] = 4959, - [4966] = 4660, - [4967] = 4945, - [4968] = 4932, - [4969] = 4722, - [4970] = 2111, - [4971] = 1761, - [4972] = 1690, - [4973] = 1759, - [4974] = 1701, - [4975] = 1695, - [4976] = 1752, - [4977] = 2141, - [4978] = 4945, - [4979] = 4979, - [4980] = 1704, - [4981] = 4800, - [4982] = 4936, - [4983] = 1748, - [4984] = 4945, - [4985] = 4985, - [4986] = 1689, - [4987] = 4959, - [4988] = 1763, - [4989] = 4932, - [4990] = 4945, - [4991] = 1706, - [4992] = 4959, - [4993] = 1760, - [4994] = 4945, - [4995] = 2141, - [4996] = 1751, - [4997] = 4959, - [4998] = 4998, - [4999] = 4959, - [5000] = 4777, - [5001] = 5001, + [4946] = 4941, + [4947] = 4942, + [4948] = 4948, + [4949] = 4942, + [4950] = 4948, + [4951] = 4945, + [4952] = 4942, + [4953] = 4953, + [4954] = 4953, + [4955] = 1835, + [4956] = 4945, + [4957] = 4953, + [4958] = 1837, + [4959] = 1838, + [4960] = 4948, + [4961] = 4948, + [4962] = 4942, + [4963] = 2539, + [4964] = 4945, + [4965] = 4945, + [4966] = 4945, + [4967] = 4942, + [4968] = 4941, + [4969] = 4942, + [4970] = 4942, + [4971] = 1842, + [4972] = 4953, + [4973] = 4941, + [4974] = 1841, + [4975] = 4942, + [4976] = 1840, + [4977] = 4945, + [4978] = 4942, + [4979] = 4942, + [4980] = 4948, + [4981] = 1836, + [4982] = 4948, + [4983] = 1832, + [4984] = 4942, + [4985] = 4948, + [4986] = 4953, + [4987] = 4987, + [4988] = 1833, + [4989] = 4989, + [4990] = 1894, + [4991] = 4991, + [4992] = 4992, + [4993] = 4992, + [4994] = 4992, + [4995] = 4992, + [4996] = 4992, + [4997] = 1921, + [4998] = 4992, + [4999] = 4999, + [5000] = 5000, + [5001] = 4992, [5002] = 5002, - [5003] = 4945, - [5004] = 4945, - [5005] = 5005, - [5006] = 1757, - [5007] = 4959, - [5008] = 1753, - [5009] = 1750, - [5010] = 1754, - [5011] = 1755, - [5012] = 4932, - [5013] = 4945, + [5003] = 2516, + [5004] = 5004, + [5005] = 2345, + [5006] = 4992, + [5007] = 5007, + [5008] = 4992, + [5009] = 1919, + [5010] = 1913, + [5011] = 2539, + [5012] = 5012, + [5013] = 5013, [5014] = 5014, - [5015] = 5015, - [5016] = 4720, - [5017] = 4720, - [5018] = 5018, + [5015] = 5012, + [5016] = 5016, + [5017] = 5017, + [5018] = 5012, [5019] = 5019, - [5020] = 5014, - [5021] = 4728, - [5022] = 4828, - [5023] = 4864, - [5024] = 5014, - [5025] = 5019, - [5026] = 5014, - [5027] = 4824, - [5028] = 5019, - [5029] = 4846, + [5020] = 5020, + [5021] = 5021, + [5022] = 1934, + [5023] = 5023, + [5024] = 5024, + [5025] = 5025, + [5026] = 4992, + [5027] = 1293, + [5028] = 4992, + [5029] = 1899, [5030] = 5030, - [5031] = 4660, - [5032] = 5014, - [5033] = 4820, - [5034] = 4824, - [5035] = 4803, - [5036] = 5036, - [5037] = 5037, - [5038] = 4722, - [5039] = 4812, - [5040] = 4723, - [5041] = 5014, - [5042] = 4833, - [5043] = 2111, - [5044] = 4823, - [5045] = 4728, - [5046] = 4723, - [5047] = 5014, - [5048] = 4820, - [5049] = 5019, - [5050] = 4641, - [5051] = 5019, - [5052] = 4812, - [5053] = 4813, - [5054] = 2141, - [5055] = 5030, - [5056] = 5056, - [5057] = 4867, - [5058] = 5030, - [5059] = 5019, - [5060] = 4823, - [5061] = 5019, - [5062] = 4834, - [5063] = 4722, - [5064] = 4803, + [5031] = 5031, + [5032] = 1867, + [5033] = 1864, + [5034] = 5034, + [5035] = 5035, + [5036] = 4992, + [5037] = 1898, + [5038] = 1900, + [5039] = 4992, + [5040] = 5040, + [5041] = 5040, + [5042] = 4992, + [5043] = 4992, + [5044] = 5044, + [5045] = 5045, + [5046] = 1901, + [5047] = 5047, + [5048] = 4992, + [5049] = 4992, + [5050] = 5050, + [5051] = 347, + [5052] = 4992, + [5053] = 4992, + [5054] = 5054, + [5055] = 5055, + [5056] = 1931, + [5057] = 1933, + [5058] = 1925, + [5059] = 5059, + [5060] = 5012, + [5061] = 5061, + [5062] = 5062, + [5063] = 5063, + [5064] = 1903, [5065] = 5065, - [5066] = 5066, - [5067] = 4787, - [5068] = 4864, - [5069] = 2148, - [5070] = 2141, - [5071] = 4786, - [5072] = 5072, - [5073] = 5073, - [5074] = 2146, - [5075] = 4812, - [5076] = 4803, + [5066] = 1891, + [5067] = 1928, + [5068] = 5040, + [5069] = 4992, + [5070] = 5070, + [5071] = 5040, + [5072] = 4992, + [5073] = 344, + [5074] = 5074, + [5075] = 5075, + [5076] = 5076, [5077] = 5077, - [5078] = 4824, - [5079] = 5072, - [5080] = 5077, - [5081] = 5081, - [5082] = 5065, + [5078] = 5078, + [5079] = 5079, + [5080] = 5080, + [5081] = 5062, + [5082] = 5019, [5083] = 5083, - [5084] = 5072, - [5085] = 4834, - [5086] = 5066, - [5087] = 5073, - [5088] = 5072, - [5089] = 4846, - [5090] = 5065, - [5091] = 5077, - [5092] = 5072, - [5093] = 5066, + [5084] = 2192, + [5085] = 5085, + [5086] = 5086, + [5087] = 5087, + [5088] = 5088, + [5089] = 5089, + [5090] = 2557, + [5091] = 2180, + [5092] = 5070, + [5093] = 5093, [5094] = 5094, - [5095] = 5095, - [5096] = 5077, - [5097] = 4820, - [5098] = 4823, - [5099] = 4813, - [5100] = 2111, - [5101] = 5066, - [5102] = 4720, - [5103] = 4722, - [5104] = 5104, - [5105] = 4867, - [5106] = 4846, - [5107] = 5072, - [5108] = 4813, - [5109] = 4834, - [5110] = 4833, - [5111] = 4813, - [5112] = 4728, - [5113] = 5113, - [5114] = 4867, - [5115] = 4828, - [5116] = 2111, - [5117] = 4828, + [5095] = 2568, + [5096] = 5063, + [5097] = 5054, + [5098] = 2173, + [5099] = 5099, + [5100] = 2176, + [5101] = 5030, + [5102] = 5065, + [5103] = 2491, + [5104] = 4991, + [5105] = 5105, + [5106] = 4989, + [5107] = 5107, + [5108] = 5024, + [5109] = 5000, + [5110] = 5110, + [5111] = 5045, + [5112] = 5112, + [5113] = 5004, + [5114] = 5079, + [5115] = 5115, + [5116] = 5078, + [5117] = 5061, [5118] = 5118, - [5119] = 5065, - [5120] = 5072, - [5121] = 4864, - [5122] = 5081, - [5123] = 5081, + [5119] = 5013, + [5120] = 5120, + [5121] = 5121, + [5122] = 5122, + [5123] = 5014, [5124] = 5124, - [5125] = 5072, - [5126] = 5126, - [5127] = 4864, - [5128] = 4723, - [5129] = 4846, - [5130] = 4726, - [5131] = 5072, - [5132] = 2115, - [5133] = 5118, - [5134] = 4867, - [5135] = 5066, - [5136] = 5077, - [5137] = 5072, - [5138] = 5073, - [5139] = 5072, - [5140] = 5066, - [5141] = 5141, - [5142] = 4834, - [5143] = 5077, - [5144] = 5072, - [5145] = 5081, - [5146] = 5118, - [5147] = 4833, - [5148] = 4813, - [5149] = 4828, - [5150] = 4828, - [5151] = 4846, - [5152] = 5072, - [5153] = 5066, - [5154] = 5072, - [5155] = 4721, - [5156] = 5077, - [5157] = 5157, - [5158] = 4864, - [5159] = 2141, - [5160] = 4867, - [5161] = 4834, - [5162] = 5162, - [5163] = 5081, - [5164] = 5072, - [5165] = 4833, - [5166] = 5077, - [5167] = 5118, - [5168] = 5072, - [5169] = 5072, - [5170] = 5073, - [5171] = 4775, - [5172] = 5081, - [5173] = 4833, - [5174] = 5174, - [5175] = 5175, + [5125] = 2174, + [5126] = 5055, + [5127] = 5059, + [5128] = 5128, + [5129] = 5020, + [5130] = 5130, + [5131] = 5131, + [5132] = 5034, + [5133] = 5031, + [5134] = 2197, + [5135] = 5135, + [5136] = 1867, + [5137] = 1864, + [5138] = 5050, + [5139] = 5139, + [5140] = 5118, + [5141] = 5023, + [5142] = 5085, + [5143] = 5143, + [5144] = 5144, + [5145] = 5017, + [5146] = 5105, + [5147] = 5044, + [5148] = 5094, + [5149] = 5149, + [5150] = 2539, + [5151] = 5105, + [5152] = 5085, + [5153] = 5149, + [5154] = 5035, + [5155] = 5089, + [5156] = 5079, + [5157] = 5149, + [5158] = 5086, + [5159] = 5159, + [5160] = 5149, + [5161] = 5159, + [5162] = 5087, + [5163] = 2516, + [5164] = 5164, + [5165] = 5149, + [5166] = 5159, + [5167] = 5078, + [5168] = 5149, + [5169] = 5149, + [5170] = 5170, + [5171] = 5159, + [5172] = 5172, + [5173] = 5099, + [5174] = 5149, + [5175] = 5159, [5176] = 5176, - [5177] = 5177, - [5178] = 5177, + [5177] = 5149, + [5178] = 1930, [5179] = 5179, - [5180] = 5180, - [5181] = 4846, - [5182] = 5182, - [5183] = 4834, - [5184] = 5177, + [5180] = 5149, + [5181] = 5118, + [5182] = 5149, + [5183] = 5183, + [5184] = 5159, [5185] = 5185, - [5186] = 4833, - [5187] = 4813, - [5188] = 4828, - [5189] = 4867, - [5190] = 5185, - [5191] = 4864, - [5192] = 5185, - [5193] = 5193, - [5194] = 5194, - [5195] = 5195, - [5196] = 5196, - [5197] = 5185, - [5198] = 5177, - [5199] = 5177, - [5200] = 4800, - [5201] = 4809, - [5202] = 4830, - [5203] = 5185, - [5204] = 5175, - [5205] = 4777, - [5206] = 4827, - [5207] = 5175, - [5208] = 5185, - [5209] = 5209, - [5210] = 5210, - [5211] = 4719, - [5212] = 5177, - [5213] = 4720, - [5214] = 4722, - [5215] = 5177, - [5216] = 4728, - [5217] = 4723, - [5218] = 5175, - [5219] = 5219, - [5220] = 4814, - [5221] = 5185, - [5222] = 5222, - [5223] = 5223, - [5224] = 4833, - [5225] = 5223, - [5226] = 4834, - [5227] = 5223, - [5228] = 4846, + [5186] = 5149, + [5187] = 5187, + [5188] = 5149, + [5189] = 5149, + [5190] = 5149, + [5191] = 5149, + [5192] = 5159, + [5193] = 5149, + [5194] = 5149, + [5195] = 2472, + [5196] = 5149, + [5197] = 1895, + [5198] = 5198, + [5199] = 5149, + [5200] = 5124, + [5201] = 5075, + [5202] = 5149, + [5203] = 5087, + [5204] = 5204, + [5205] = 5205, + [5206] = 5204, + [5207] = 4991, + [5208] = 5019, + [5209] = 5004, + [5210] = 2539, + [5211] = 1919, + [5212] = 5000, + [5213] = 5213, + [5214] = 5213, + [5215] = 5205, + [5216] = 5034, + [5217] = 5213, + [5218] = 1925, + [5219] = 5124, + [5220] = 5204, + [5221] = 5204, + [5222] = 1933, + [5223] = 5020, + [5224] = 1931, + [5225] = 1901, + [5226] = 1898, + [5227] = 1894, + [5228] = 1899, [5229] = 5229, - [5230] = 304, - [5231] = 4867, + [5230] = 5230, + [5231] = 5231, [5232] = 5232, - [5233] = 4864, - [5234] = 5234, - [5235] = 5235, - [5236] = 4813, - [5237] = 5237, - [5238] = 4828, - [5239] = 305, + [5233] = 5061, + [5234] = 1891, + [5235] = 1934, + [5236] = 5213, + [5237] = 1903, + [5238] = 5204, + [5239] = 5213, [5240] = 5240, - [5241] = 5223, - [5242] = 5223, - [5243] = 5223, - [5244] = 5244, - [5245] = 5223, - [5246] = 5235, - [5247] = 5247, - [5248] = 5248, - [5249] = 5249, - [5250] = 5250, - [5251] = 5251, - [5252] = 5252, - [5253] = 5253, - [5254] = 5254, - [5255] = 5255, - [5256] = 5256, - [5257] = 5248, - [5258] = 5258, - [5259] = 5259, - [5260] = 5260, + [5241] = 5204, + [5242] = 5213, + [5243] = 1913, + [5244] = 5213, + [5245] = 5204, + [5246] = 5089, + [5247] = 5232, + [5248] = 5204, + [5249] = 5232, + [5250] = 1921, + [5251] = 347, + [5252] = 5232, + [5253] = 2539, + [5254] = 1900, + [5255] = 5086, + [5256] = 344, + [5257] = 1298, + [5258] = 5204, + [5259] = 5232, + [5260] = 5232, [5261] = 5261, [5262] = 5262, - [5263] = 5254, + [5263] = 1291, [5264] = 5264, - [5265] = 5265, + [5265] = 5205, [5266] = 5266, - [5267] = 5267, - [5268] = 5268, - [5269] = 5269, - [5270] = 5270, - [5271] = 5265, - [5272] = 5272, - [5273] = 5250, - [5274] = 5274, - [5275] = 5251, - [5276] = 5268, - [5277] = 5261, - [5278] = 5278, - [5279] = 5256, - [5280] = 5259, - [5281] = 5281, - [5282] = 5248, + [5267] = 5232, + [5268] = 1301, + [5269] = 1928, + [5270] = 5232, + [5271] = 4908, + [5272] = 5205, + [5273] = 1302, + [5274] = 2516, + [5275] = 5229, + [5276] = 1295, + [5277] = 5277, + [5278] = 5075, + [5279] = 5099, + [5280] = 5094, + [5281] = 5232, + [5282] = 1300, [5283] = 5283, - [5284] = 5262, - [5285] = 5265, - [5286] = 5248, - [5287] = 5254, - [5288] = 5288, - [5289] = 5261, + [5284] = 2516, + [5285] = 4895, + [5286] = 1304, + [5287] = 5075, + [5288] = 2516, + [5289] = 5004, [5290] = 5290, - [5291] = 5256, - [5292] = 5292, - [5293] = 5259, + [5291] = 5291, + [5292] = 5086, + [5293] = 5000, [5294] = 5294, - [5295] = 5256, - [5296] = 5296, - [5297] = 5264, - [5298] = 5269, - [5299] = 5262, - [5300] = 5269, - [5301] = 5294, - [5302] = 5251, - [5303] = 5292, - [5304] = 5250, - [5305] = 5262, - [5306] = 5272, - [5307] = 5270, - [5308] = 5283, - [5309] = 5267, + [5295] = 5290, + [5296] = 5087, + [5297] = 5291, + [5298] = 5000, + [5299] = 5124, + [5300] = 5118, + [5301] = 2539, + [5302] = 5078, + [5303] = 5105, + [5304] = 5078, + [5305] = 5085, + [5306] = 5290, + [5307] = 5307, + [5308] = 4895, + [5309] = 5089, [5310] = 5310, - [5311] = 5266, - [5312] = 5251, - [5313] = 5283, - [5314] = 5269, - [5315] = 5315, - [5316] = 5262, - [5317] = 5310, - [5318] = 5318, - [5319] = 5264, - [5320] = 5315, - [5321] = 5318, - [5322] = 5249, - [5323] = 5259, + [5311] = 5105, + [5312] = 5312, + [5313] = 5079, + [5314] = 4991, + [5315] = 5004, + [5316] = 4908, + [5317] = 5019, + [5318] = 5290, + [5319] = 5290, + [5320] = 5291, + [5321] = 5294, + [5322] = 5291, + [5323] = 5323, [5324] = 5324, - [5325] = 5249, - [5326] = 5278, - [5327] = 5324, - [5328] = 5328, - [5329] = 5329, - [5330] = 5330, - [5331] = 5254, - [5332] = 5265, - [5333] = 5333, - [5334] = 5334, - [5335] = 5252, - [5336] = 5328, - [5337] = 5329, - [5338] = 5334, - [5339] = 5253, - [5340] = 5330, - [5341] = 5333, - [5342] = 5283, - [5343] = 5253, - [5344] = 5334, - [5345] = 5272, - [5346] = 5252, - [5347] = 5324, - [5348] = 5333, - [5349] = 5268, - [5350] = 5252, - [5351] = 5264, - [5352] = 5259, - [5353] = 5334, - [5354] = 5266, - [5355] = 5333, - [5356] = 5267, - [5357] = 5270, - [5358] = 5330, - [5359] = 5272, - [5360] = 5329, - [5361] = 5250, - [5362] = 5251, - [5363] = 5328, - [5364] = 5260, - [5365] = 5330, - [5366] = 5270, - [5367] = 5248, - [5368] = 5267, - [5369] = 5256, - [5370] = 5270, - [5371] = 5248, - [5372] = 5266, - [5373] = 5294, - [5374] = 5268, - [5375] = 5265, - [5376] = 5254, - [5377] = 5256, - [5378] = 5253, - [5379] = 5329, - [5380] = 5261, - [5381] = 5252, - [5382] = 4641, - [5383] = 5328, - [5384] = 5269, - [5385] = 5259, - [5386] = 5318, - [5387] = 5262, - [5388] = 5259, - [5389] = 5324, - [5390] = 5315, - [5391] = 5283, - [5392] = 5269, - [5393] = 5272, - [5394] = 5310, - [5395] = 5249, - [5396] = 5318, - [5397] = 5264, - [5398] = 5294, - [5399] = 5251, - [5400] = 5261, - [5401] = 5249, - [5402] = 5250, - [5403] = 5315, - [5404] = 5272, - [5405] = 5266, - [5406] = 5267, - [5407] = 5270, - [5408] = 5270, - [5409] = 5272, - [5410] = 5264, - [5411] = 5267, - [5412] = 5250, - [5413] = 5261, - [5414] = 5264, - [5415] = 5251, - [5416] = 5266, - [5417] = 5254, - [5418] = 5264, - [5419] = 5267, - [5420] = 5324, - [5421] = 5324, - [5422] = 5256, - [5423] = 5310, - [5424] = 5248, - [5425] = 5334, - [5426] = 5260, - [5427] = 5268, - [5428] = 5428, - [5429] = 5253, - [5430] = 5294, - [5431] = 5265, - [5432] = 5254, - [5433] = 5261, - [5434] = 5270, - [5435] = 5264, - [5436] = 5436, - [5437] = 5265, - [5438] = 5253, - [5439] = 5333, - [5440] = 5264, - [5441] = 5252, - [5442] = 5334, - [5443] = 5333, - [5444] = 5294, - [5445] = 5330, - [5446] = 5329, - [5447] = 5283, - [5448] = 5448, - [5449] = 5328, - [5450] = 5252, - [5451] = 5253, - [5452] = 5283, - [5453] = 5330, + [5325] = 4991, + [5326] = 5118, + [5327] = 5094, + [5328] = 5291, + [5329] = 5099, + [5330] = 5291, + [5331] = 5291, + [5332] = 5290, + [5333] = 5290, + [5334] = 5079, + [5335] = 5294, + [5336] = 5085, + [5337] = 5019, + [5338] = 5089, + [5339] = 5339, + [5340] = 5340, + [5341] = 5075, + [5342] = 5342, + [5343] = 5343, + [5344] = 5340, + [5345] = 5343, + [5346] = 5346, + [5347] = 5124, + [5348] = 5348, + [5349] = 5089, + [5350] = 5346, + [5351] = 5086, + [5352] = 5340, + [5353] = 5340, + [5354] = 5340, + [5355] = 5087, + [5356] = 5094, + [5357] = 5099, + [5358] = 5343, + [5359] = 4999, + [5360] = 5002, + [5361] = 5079, + [5362] = 5075, + [5363] = 5087, + [5364] = 2955, + [5365] = 5085, + [5366] = 5105, + [5367] = 5078, + [5368] = 5118, + [5369] = 5346, + [5370] = 2516, + [5371] = 5124, + [5372] = 2539, + [5373] = 2970, + [5374] = 5340, + [5375] = 5021, + [5376] = 5094, + [5377] = 5099, + [5378] = 5343, + [5379] = 5089, + [5380] = 5343, + [5381] = 5381, + [5382] = 2959, + [5383] = 5340, + [5384] = 5384, + [5385] = 5385, + [5386] = 5340, + [5387] = 5340, + [5388] = 5346, + [5389] = 5384, + [5390] = 5390, + [5391] = 5339, + [5392] = 5342, + [5393] = 5339, + [5394] = 5340, + [5395] = 5343, + [5396] = 5124, + [5397] = 5340, + [5398] = 5339, + [5399] = 5399, + [5400] = 5381, + [5401] = 5343, + [5402] = 5402, + [5403] = 5381, + [5404] = 5404, + [5405] = 2539, + [5406] = 5346, + [5407] = 5407, + [5408] = 5339, + [5409] = 5384, + [5410] = 5342, + [5411] = 5381, + [5412] = 5340, + [5413] = 5343, + [5414] = 5086, + [5415] = 5340, + [5416] = 5340, + [5417] = 5417, + [5418] = 5124, + [5419] = 5089, + [5420] = 5086, + [5421] = 5094, + [5422] = 5099, + [5423] = 5087, + [5424] = 5094, + [5425] = 5340, + [5426] = 5343, + [5427] = 5427, + [5428] = 5342, + [5429] = 5099, + [5430] = 5075, + [5431] = 5047, + [5432] = 5339, + [5433] = 5075, + [5434] = 2516, + [5435] = 5384, + [5436] = 5346, + [5437] = 5016, + [5438] = 5346, + [5439] = 5340, + [5440] = 5440, + [5441] = 5340, + [5442] = 5000, + [5443] = 5087, + [5444] = 5086, + [5445] = 5004, + [5446] = 5019, + [5447] = 4991, + [5448] = 5340, + [5449] = 5449, + [5450] = 5450, + [5451] = 5034, + [5452] = 4991, + [5453] = 5019, [5454] = 5454, - [5455] = 5292, - [5456] = 5334, - [5457] = 5333, - [5458] = 5310, - [5459] = 5329, - [5460] = 5315, - [5461] = 5294, - [5462] = 5278, - [5463] = 5318, - [5464] = 5259, - [5465] = 5269, - [5466] = 5256, - [5467] = 5261, - [5468] = 5249, - [5469] = 5254, - [5470] = 5249, - [5471] = 5265, - [5472] = 5315, - [5473] = 5268, - [5474] = 5328, - [5475] = 5330, - [5476] = 5318, - [5477] = 5329, - [5478] = 5330, - [5479] = 5333, - [5480] = 5268, - [5481] = 5329, - [5482] = 5328, - [5483] = 5334, - [5484] = 5252, - [5485] = 5266, - [5486] = 5250, - [5487] = 5318, - [5488] = 5264, - [5489] = 5315, - [5490] = 5315, - [5491] = 5248, - [5492] = 5262, - [5493] = 5264, - [5494] = 5253, - [5495] = 5310, - [5496] = 5256, - [5497] = 5278, - [5498] = 5428, - [5499] = 5249, - [5500] = 5253, - [5501] = 5267, - [5502] = 5292, - [5503] = 5260, - [5504] = 5310, - [5505] = 5266, - [5506] = 5324, - [5507] = 5318, - [5508] = 5249, - [5509] = 5310, - [5510] = 5251, - [5511] = 5264, - [5512] = 5250, - [5513] = 5328, - [5514] = 5272, - [5515] = 5264, - [5516] = 5516, + [5455] = 5020, + [5456] = 5456, + [5457] = 5004, + [5458] = 5458, + [5459] = 5458, + [5460] = 5076, + [5461] = 5461, + [5462] = 5462, + [5463] = 5458, + [5464] = 5464, + [5465] = 5083, + [5466] = 5458, + [5467] = 5075, + [5468] = 5468, + [5469] = 5000, + [5470] = 5456, + [5471] = 5458, + [5472] = 5468, + [5473] = 5456, + [5474] = 5456, + [5475] = 5456, + [5476] = 5458, + [5477] = 5456, + [5478] = 5468, + [5479] = 5479, + [5480] = 5480, + [5481] = 5458, + [5482] = 5124, + [5483] = 5089, + [5484] = 5484, + [5485] = 5086, + [5486] = 5130, + [5487] = 5087, + [5488] = 5488, + [5489] = 5456, + [5490] = 5468, + [5491] = 5099, + [5492] = 5094, + [5493] = 5493, + [5494] = 5121, + [5495] = 5061, + [5496] = 5496, + [5497] = 5497, + [5498] = 5497, + [5499] = 5499, + [5500] = 5500, + [5501] = 5497, + [5502] = 5497, + [5503] = 5075, + [5504] = 5504, + [5505] = 5099, + [5506] = 5499, + [5507] = 5094, + [5508] = 5508, + [5509] = 5089, + [5510] = 5497, + [5511] = 5511, + [5512] = 5497, + [5513] = 5513, + [5514] = 5514, + [5515] = 5497, + [5516] = 5124, [5517] = 5517, - [5518] = 5518, - [5519] = 5519, - [5520] = 5520, + [5518] = 315, + [5519] = 5087, + [5520] = 5086, [5521] = 5521, - [5522] = 5522, + [5522] = 316, [5523] = 5523, [5524] = 5524, [5525] = 5525, @@ -9340,1415 +9417,1783 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5528] = 5528, [5529] = 5529, [5530] = 5530, - [5531] = 5531, + [5531] = 5529, [5532] = 5532, - [5533] = 5516, - [5534] = 5534, + [5533] = 5526, + [5534] = 5532, [5535] = 5535, - [5536] = 5536, + [5536] = 5535, [5537] = 5537, [5538] = 5538, - [5539] = 5539, - [5540] = 5517, + [5539] = 5523, + [5540] = 5540, [5541] = 5541, [5542] = 5542, [5543] = 5543, [5544] = 5544, [5545] = 5545, - [5546] = 5546, + [5546] = 5542, [5547] = 5547, [5548] = 5548, - [5549] = 5549, - [5550] = 5550, - [5551] = 5551, - [5552] = 5552, + [5549] = 5538, + [5550] = 5543, + [5551] = 5542, + [5552] = 5542, [5553] = 5553, - [5554] = 5554, - [5555] = 5524, - [5556] = 5556, - [5557] = 5557, - [5558] = 5558, - [5559] = 5559, + [5554] = 5542, + [5555] = 5555, + [5556] = 5555, + [5557] = 5545, + [5558] = 5547, + [5559] = 5530, [5560] = 5560, - [5561] = 5561, + [5561] = 5525, [5562] = 5562, [5563] = 5563, [5564] = 5564, - [5565] = 5565, + [5565] = 5528, [5566] = 5566, - [5567] = 5567, - [5568] = 5568, - [5569] = 5569, - [5570] = 5570, - [5571] = 5571, + [5567] = 5555, + [5568] = 5528, + [5569] = 5525, + [5570] = 5553, + [5571] = 5541, [5572] = 5572, [5573] = 5573, [5574] = 5574, - [5575] = 5575, - [5576] = 5576, - [5577] = 5566, - [5578] = 5578, - [5579] = 5579, + [5575] = 5523, + [5576] = 5537, + [5577] = 5541, + [5578] = 5532, + [5579] = 5545, [5580] = 5563, - [5581] = 5560, - [5582] = 5582, - [5583] = 5583, - [5584] = 5584, - [5585] = 5585, - [5586] = 5571, - [5587] = 5570, - [5588] = 5588, - [5589] = 5589, - [5590] = 5517, - [5591] = 5517, - [5592] = 5572, - [5593] = 5593, - [5594] = 5517, - [5595] = 5595, - [5596] = 5572, - [5597] = 5550, - [5598] = 5549, - [5599] = 5599, - [5600] = 5600, - [5601] = 5548, - [5602] = 5602, - [5603] = 5546, - [5604] = 5517, - [5605] = 5518, - [5606] = 5558, - [5607] = 5517, - [5608] = 5608, - [5609] = 5608, - [5610] = 5524, + [5581] = 5530, + [5582] = 5544, + [5583] = 5537, + [5584] = 5563, + [5585] = 5530, + [5586] = 5535, + [5587] = 5587, + [5588] = 5523, + [5589] = 5526, + [5590] = 5590, + [5591] = 5591, + [5592] = 5592, + [5593] = 5529, + [5594] = 5542, + [5595] = 5590, + [5596] = 5545, + [5597] = 5562, + [5598] = 5538, + [5599] = 5592, + [5600] = 5535, + [5601] = 5538, + [5602] = 5528, + [5603] = 5587, + [5604] = 5547, + [5605] = 5605, + [5606] = 5547, + [5607] = 5566, + [5608] = 5574, + [5609] = 5540, + [5610] = 5590, [5611] = 5611, - [5612] = 5542, - [5613] = 5517, - [5614] = 5518, - [5615] = 5615, - [5616] = 5517, - [5617] = 5520, - [5618] = 5522, - [5619] = 5619, - [5620] = 5529, - [5621] = 5621, - [5622] = 5517, - [5623] = 5623, - [5624] = 5516, - [5625] = 5534, - [5626] = 5626, - [5627] = 5538, - [5628] = 5546, - [5629] = 5548, - [5630] = 5549, - [5631] = 5550, - [5632] = 5588, - [5633] = 5520, - [5634] = 5570, - [5635] = 5571, - [5636] = 5572, - [5637] = 5583, - [5638] = 5566, - [5639] = 5565, - [5640] = 5517, - [5641] = 5563, - [5642] = 5560, - [5643] = 5576, - [5644] = 5524, - [5645] = 5535, - [5646] = 5611, - [5647] = 5647, - [5648] = 5521, - [5649] = 5518, - [5650] = 5560, - [5651] = 5563, - [5652] = 5517, - [5653] = 5566, - [5654] = 5538, - [5655] = 5558, - [5656] = 5517, - [5657] = 5608, - [5658] = 5524, - [5659] = 5611, - [5660] = 5626, - [5661] = 5524, - [5662] = 5516, - [5663] = 5542, - [5664] = 5534, - [5665] = 5571, - [5666] = 5517, - [5667] = 5570, - [5668] = 5542, - [5669] = 5516, - [5670] = 5615, - [5671] = 5588, - [5672] = 5517, - [5673] = 5520, - [5674] = 5522, - [5675] = 5619, - [5676] = 5529, - [5677] = 5677, - [5678] = 5621, - [5679] = 5522, - [5680] = 5680, - [5681] = 5534, - [5682] = 5546, - [5683] = 5548, - [5684] = 5549, - [5685] = 5550, - [5686] = 5538, - [5687] = 5588, - [5688] = 5570, - [5689] = 5571, - [5690] = 5542, - [5691] = 5572, - [5692] = 5566, - [5693] = 5563, - [5694] = 5560, - [5695] = 5517, - [5696] = 5529, - [5697] = 5529, - [5698] = 5698, - [5699] = 5517, - [5700] = 5550, - [5701] = 5558, - [5702] = 5619, - [5703] = 5608, - [5704] = 5518, - [5705] = 5516, - [5706] = 5534, - [5707] = 5549, - [5708] = 5524, - [5709] = 5611, - [5710] = 5538, - [5711] = 5542, - [5712] = 5548, - [5713] = 5546, - [5714] = 5517, - [5715] = 5615, - [5716] = 5520, - [5717] = 5522, - [5718] = 5546, - [5719] = 5719, - [5720] = 5549, - [5721] = 5550, - [5722] = 5619, - [5723] = 5572, - [5724] = 5571, - [5725] = 5570, - [5726] = 5538, - [5727] = 5529, - [5728] = 5529, - [5729] = 5516, - [5730] = 5534, - [5731] = 5572, - [5732] = 5571, - [5733] = 5534, - [5734] = 5570, - [5735] = 5529, - [5736] = 5538, - [5737] = 5546, - [5738] = 5570, - [5739] = 5571, - [5740] = 5572, - [5741] = 5548, - [5742] = 5549, - [5743] = 5550, - [5744] = 5744, - [5745] = 5566, - [5746] = 5572, - [5747] = 5571, - [5748] = 5563, - [5749] = 5560, - [5750] = 5570, - [5751] = 5751, - [5752] = 5529, - [5753] = 5588, - [5754] = 5572, - [5755] = 5571, - [5756] = 5570, - [5757] = 5529, - [5758] = 5570, - [5759] = 5529, - [5760] = 5571, - [5761] = 5572, - [5762] = 5566, - [5763] = 5563, - [5764] = 5560, - [5765] = 5572, - [5766] = 5571, - [5767] = 5619, - [5768] = 5570, - [5769] = 5529, - [5770] = 5563, - [5771] = 5572, - [5772] = 5571, - [5773] = 5570, - [5774] = 5546, - [5775] = 5529, - [5776] = 5522, - [5777] = 5522, - [5778] = 5517, - [5779] = 5520, - [5780] = 5615, - [5781] = 5518, - [5782] = 5560, - [5783] = 5563, - [5784] = 5572, - [5785] = 5571, - [5786] = 5570, - [5787] = 5550, - [5788] = 5549, - [5789] = 5517, - [5790] = 5546, - [5791] = 5534, - [5792] = 5516, - [5793] = 5542, - [5794] = 5608, - [5795] = 5529, - [5796] = 5542, - [5797] = 5522, - [5798] = 5524, - [5799] = 5524, - [5800] = 5615, - [5801] = 5801, - [5802] = 5802, - [5803] = 418, - [5804] = 419, - [5805] = 5805, - [5806] = 5806, - [5807] = 5807, - [5808] = 350, - [5809] = 363, - [5810] = 364, - [5811] = 334, - [5812] = 5812, - [5813] = 416, - [5814] = 5814, - [5815] = 429, - [5816] = 5816, - [5817] = 457, + [5612] = 5525, + [5613] = 5537, + [5614] = 5614, + [5615] = 5544, + [5616] = 5553, + [5617] = 5574, + [5618] = 5532, + [5619] = 5614, + [5620] = 5544, + [5621] = 5526, + [5622] = 5529, + [5623] = 5564, + [5624] = 5591, + [5625] = 5590, + [5626] = 5555, + [5627] = 5574, + [5628] = 5572, + [5629] = 5591, + [5630] = 5592, + [5631] = 5592, + [5632] = 5543, + [5633] = 5587, + [5634] = 5634, + [5635] = 5541, + [5636] = 5527, + [5637] = 5563, + [5638] = 5562, + [5639] = 5639, + [5640] = 5572, + [5641] = 4895, + [5642] = 5540, + [5643] = 5542, + [5644] = 5592, + [5645] = 5572, + [5646] = 5562, + [5647] = 5525, + [5648] = 5555, + [5649] = 5529, + [5650] = 5553, + [5651] = 5547, + [5652] = 5592, + [5653] = 5541, + [5654] = 5654, + [5655] = 5544, + [5656] = 5526, + [5657] = 5543, + [5658] = 5564, + [5659] = 5542, + [5660] = 5544, + [5661] = 5532, + [5662] = 5529, + [5663] = 5564, + [5664] = 5543, + [5665] = 5591, + [5666] = 5590, + [5667] = 5591, + [5668] = 5587, + [5669] = 5523, + [5670] = 5564, + [5671] = 5527, + [5672] = 5535, + [5673] = 5538, + [5674] = 5611, + [5675] = 5526, + [5676] = 5528, + [5677] = 5587, + [5678] = 5611, + [5679] = 5564, + [5680] = 5542, + [5681] = 5681, + [5682] = 5527, + [5683] = 5540, + [5684] = 5684, + [5685] = 5529, + [5686] = 5542, + [5687] = 5611, + [5688] = 5587, + [5689] = 5547, + [5690] = 5634, + [5691] = 5525, + [5692] = 5542, + [5693] = 5542, + [5694] = 5555, + [5695] = 5523, + [5696] = 5553, + [5697] = 5528, + [5698] = 5547, + [5699] = 5553, + [5700] = 5544, + [5701] = 5611, + [5702] = 5544, + [5703] = 5541, + [5704] = 5547, + [5705] = 5566, + [5706] = 5566, + [5707] = 5541, + [5708] = 5562, + [5709] = 5529, + [5710] = 5553, + [5711] = 5555, + [5712] = 5611, + [5713] = 5553, + [5714] = 5555, + [5715] = 5592, + [5716] = 5525, + [5717] = 5523, + [5718] = 5525, + [5719] = 5564, + [5720] = 5591, + [5721] = 5590, + [5722] = 5566, + [5723] = 5591, + [5724] = 5538, + [5725] = 5542, + [5726] = 5566, + [5727] = 5566, + [5728] = 5592, + [5729] = 5528, + [5730] = 5540, + [5731] = 5592, + [5732] = 5535, + [5733] = 5532, + [5734] = 5734, + [5735] = 5605, + [5736] = 5526, + [5737] = 5562, + [5738] = 5562, + [5739] = 5572, + [5740] = 5614, + [5741] = 5592, + [5742] = 5591, + [5743] = 5563, + [5744] = 5526, + [5745] = 5574, + [5746] = 5532, + [5747] = 5530, + [5748] = 5535, + [5749] = 5545, + [5750] = 5538, + [5751] = 5540, + [5752] = 5523, + [5753] = 5537, + [5754] = 5541, + [5755] = 5574, + [5756] = 5547, + [5757] = 5528, + [5758] = 5537, + [5759] = 5572, + [5760] = 5542, + [5761] = 5562, + [5762] = 5553, + [5763] = 5587, + [5764] = 5543, + [5765] = 5526, + [5766] = 5555, + [5767] = 5538, + [5768] = 5545, + [5769] = 5530, + [5770] = 5605, + [5771] = 5590, + [5772] = 5532, + [5773] = 5562, + [5774] = 5525, + [5775] = 5605, + [5776] = 5562, + [5777] = 5540, + [5778] = 5535, + [5779] = 5614, + [5780] = 5572, + [5781] = 5572, + [5782] = 5542, + [5783] = 5574, + [5784] = 5538, + [5785] = 5537, + [5786] = 5574, + [5787] = 5563, + [5788] = 5545, + [5789] = 5789, + [5790] = 5530, + [5791] = 5530, + [5792] = 5535, + [5793] = 5563, + [5794] = 5563, + [5795] = 5545, + [5796] = 5590, + [5797] = 5537, + [5798] = 5611, + [5799] = 5537, + [5800] = 5528, + [5801] = 5574, + [5802] = 5541, + [5803] = 5545, + [5804] = 5566, + [5805] = 5528, + [5806] = 5611, + [5807] = 5566, + [5808] = 5572, + [5809] = 5591, + [5810] = 5543, + [5811] = 5611, + [5812] = 5532, + [5813] = 5544, + [5814] = 5523, + [5815] = 5542, + [5816] = 5530, + [5817] = 5563, [5818] = 5818, - [5819] = 432, + [5819] = 5819, [5820] = 5820, [5821] = 5821, [5822] = 5822, [5823] = 5823, [5824] = 5824, - [5825] = 5812, - [5826] = 337, + [5825] = 5825, + [5826] = 5826, [5827] = 5827, [5828] = 5828, - [5829] = 5805, + [5829] = 5829, [5830] = 5830, - [5831] = 5827, - [5832] = 5828, - [5833] = 340, - [5834] = 341, - [5835] = 346, + [5831] = 5831, + [5832] = 5832, + [5833] = 5833, + [5834] = 5833, + [5835] = 5831, [5836] = 5836, - [5837] = 5837, - [5838] = 347, - [5839] = 348, - [5840] = 5806, - [5841] = 360, + [5837] = 5832, + [5838] = 5838, + [5839] = 5819, + [5840] = 5840, + [5841] = 5836, [5842] = 5842, [5843] = 5843, [5844] = 5844, [5845] = 5845, - [5846] = 366, - [5847] = 5847, - [5848] = 5848, + [5846] = 5818, + [5847] = 5819, + [5848] = 5819, [5849] = 5849, [5850] = 5850, - [5851] = 369, + [5851] = 5819, [5852] = 5852, - [5853] = 5853, - [5854] = 370, + [5853] = 5819, + [5854] = 5821, [5855] = 5855, [5856] = 5856, - [5857] = 5857, - [5858] = 5807, - [5859] = 5859, - [5860] = 374, - [5861] = 375, - [5862] = 376, - [5863] = 378, + [5857] = 5852, + [5858] = 5858, + [5859] = 5822, + [5860] = 5849, + [5861] = 5861, + [5862] = 5819, + [5863] = 5863, [5864] = 5864, - [5865] = 5865, - [5866] = 5866, + [5865] = 5827, + [5866] = 5825, [5867] = 5867, - [5868] = 5868, - [5869] = 379, + [5868] = 5819, + [5869] = 5818, [5870] = 5870, - [5871] = 5871, - [5872] = 5872, - [5873] = 380, - [5874] = 5874, + [5871] = 5832, + [5872] = 5845, + [5873] = 5824, + [5874] = 5823, [5875] = 5875, - [5876] = 5876, - [5877] = 5802, + [5876] = 5820, + [5877] = 5877, [5878] = 5878, - [5879] = 5812, - [5880] = 5866, - [5881] = 381, - [5882] = 382, - [5883] = 383, - [5884] = 5844, - [5885] = 385, - [5886] = 386, - [5887] = 387, - [5888] = 388, - [5889] = 5807, - [5890] = 5844, - [5891] = 5807, - [5892] = 5878, - [5893] = 5802, - [5894] = 5876, - [5895] = 389, + [5879] = 5832, + [5880] = 5833, + [5881] = 5833, + [5882] = 5831, + [5883] = 5829, + [5884] = 5831, + [5885] = 5836, + [5886] = 5886, + [5887] = 5887, + [5888] = 5888, + [5889] = 5838, + [5890] = 5830, + [5891] = 5828, + [5892] = 5826, + [5893] = 5893, + [5894] = 5819, + [5895] = 5821, [5896] = 5836, - [5897] = 390, - [5898] = 5814, - [5899] = 5867, - [5900] = 5814, - [5901] = 5816, - [5902] = 5859, - [5903] = 392, - [5904] = 5818, - [5905] = 393, - [5906] = 395, - [5907] = 396, - [5908] = 5875, - [5909] = 5874, - [5910] = 5872, - [5911] = 5871, - [5912] = 5870, - [5913] = 5868, - [5914] = 5867, - [5915] = 5807, - [5916] = 5822, - [5917] = 5864, - [5918] = 5820, - [5919] = 5836, - [5920] = 5822, - [5921] = 401, - [5922] = 402, - [5923] = 403, - [5924] = 5878, - [5925] = 404, - [5926] = 5802, - [5927] = 405, - [5928] = 411, - [5929] = 415, - [5930] = 5859, - [5931] = 5876, - [5932] = 5875, - [5933] = 5807, - [5934] = 5874, - [5935] = 420, - [5936] = 5872, - [5937] = 5836, - [5938] = 5871, - [5939] = 5870, - [5940] = 342, - [5941] = 5868, - [5942] = 5816, - [5943] = 424, - [5944] = 5855, - [5945] = 5853, - [5946] = 5852, - [5947] = 5850, - [5948] = 5848, - [5949] = 5847, - [5950] = 5845, - [5951] = 5807, - [5952] = 5843, - [5953] = 5842, - [5954] = 5843, - [5955] = 5836, - [5956] = 5866, - [5957] = 5864, - [5958] = 425, - [5959] = 427, - [5960] = 428, - [5961] = 431, - [5962] = 5859, - [5963] = 434, - [5964] = 435, - [5965] = 436, - [5966] = 5966, - [5967] = 5836, - [5968] = 5807, - [5969] = 5855, - [5970] = 437, - [5971] = 5971, - [5972] = 5836, - [5973] = 5853, - [5974] = 5852, - [5975] = 5850, - [5976] = 438, - [5977] = 439, - [5978] = 5848, - [5979] = 5818, - [5980] = 441, - [5981] = 442, - [5982] = 443, - [5983] = 5847, - [5984] = 5865, - [5985] = 5836, - [5986] = 5845, - [5987] = 5843, - [5988] = 5842, - [5989] = 444, - [5990] = 446, - [5991] = 447, - [5992] = 5857, - [5993] = 5824, - [5994] = 5836, - [5995] = 448, - [5996] = 5820, - [5997] = 5818, - [5998] = 5836, - [5999] = 5816, - [6000] = 5836, - [6001] = 5814, - [6002] = 5812, - [6003] = 5836, - [6004] = 5820, - [6005] = 5966, - [6006] = 5836, - [6007] = 5836, - [6008] = 5836, - [6009] = 450, - [6010] = 451, - [6011] = 452, - [6012] = 372, - [6013] = 5966, - [6014] = 5807, - [6015] = 5830, - [6016] = 5971, - [6017] = 456, - [6018] = 458, - [6019] = 6019, - [6020] = 5857, + [5897] = 5827, + [5898] = 5825, + [5899] = 5843, + [5900] = 5836, + [5901] = 5836, + [5902] = 5893, + [5903] = 5843, + [5904] = 5825, + [5905] = 5845, + [5906] = 5852, + [5907] = 5818, + [5908] = 5867, + [5909] = 5842, + [5910] = 5843, + [5911] = 5911, + [5912] = 5821, + [5913] = 5849, + [5914] = 5849, + [5915] = 5852, + [5916] = 5916, + [5917] = 5819, + [5918] = 5918, + [5919] = 5919, + [5920] = 5832, + [5921] = 5833, + [5922] = 5826, + [5923] = 5850, + [5924] = 5818, + [5925] = 5828, + [5926] = 5845, + [5927] = 5830, + [5928] = 5827, + [5929] = 5929, + [5930] = 5831, + [5931] = 5845, + [5932] = 5836, + [5933] = 5933, + [5934] = 5822, + [5935] = 5935, + [5936] = 5936, + [5937] = 5937, + [5938] = 5829, + [5939] = 5939, + [5940] = 5831, + [5941] = 5833, + [5942] = 5832, + [5943] = 5836, + [5944] = 5832, + [5945] = 5945, + [5946] = 5818, + [5947] = 5867, + [5948] = 5826, + [5949] = 5949, + [5950] = 5950, + [5951] = 5820, + [5952] = 5825, + [5953] = 5827, + [5954] = 5838, + [5955] = 5955, + [5956] = 5956, + [5957] = 5821, + [5958] = 5958, + [5959] = 5824, + [5960] = 5823, + [5961] = 5820, + [5962] = 5833, + [5963] = 5831, + [5964] = 5836, + [5965] = 5826, + [5966] = 5823, + [5967] = 5828, + [5968] = 5830, + [5969] = 5838, + [5970] = 5824, + [5971] = 5832, + [5972] = 5833, + [5973] = 5831, + [5974] = 5829, + [5975] = 5852, + [5976] = 5976, + [5977] = 5829, + [5978] = 5832, + [5979] = 5979, + [5980] = 5833, + [5981] = 5981, + [5982] = 5831, + [5983] = 5836, + [5984] = 5838, + [5985] = 5830, + [5986] = 5831, + [5987] = 5833, + [5988] = 5832, + [5989] = 5828, + [5990] = 5826, + [5991] = 5991, + [5992] = 5992, + [5993] = 5820, + [5994] = 5819, + [5995] = 5821, + [5996] = 5823, + [5997] = 5824, + [5998] = 5832, + [5999] = 5999, + [6000] = 5833, + [6001] = 5831, + [6002] = 5836, + [6003] = 6003, + [6004] = 6004, + [6005] = 5827, + [6006] = 5825, + [6007] = 6007, + [6008] = 5831, + [6009] = 5832, + [6010] = 5833, + [6011] = 5831, + [6012] = 5836, + [6013] = 5836, + [6014] = 5843, + [6015] = 5833, + [6016] = 6016, + [6017] = 5819, + [6018] = 5819, + [6019] = 5950, + [6020] = 5845, [6021] = 6021, - [6022] = 453, - [6023] = 5836, - [6024] = 5837, - [6025] = 5822, - [6026] = 433, - [6027] = 423, - [6028] = 5805, - [6029] = 414, - [6030] = 5844, - [6031] = 413, - [6032] = 412, - [6033] = 407, - [6034] = 406, - [6035] = 384, - [6036] = 368, - [6037] = 6037, - [6038] = 367, - [6039] = 6039, - [6040] = 361, - [6041] = 5821, - [6042] = 359, - [6043] = 5823, - [6044] = 358, - [6045] = 5827, - [6046] = 5828, - [6047] = 353, - [6048] = 351, - [6049] = 6019, - [6050] = 371, - [6051] = 354, - [6052] = 455, - [6053] = 426, - [6054] = 421, - [6055] = 417, - [6056] = 5844, - [6057] = 409, - [6058] = 408, - [6059] = 6059, - [6060] = 398, - [6061] = 394, - [6062] = 391, - [6063] = 5849, - [6064] = 373, - [6065] = 362, - [6066] = 355, - [6067] = 410, - [6068] = 336, - [6069] = 338, - [6070] = 343, - [6071] = 5865, - [6072] = 345, - [6073] = 5842, - [6074] = 5806, - [6075] = 5842, - [6076] = 349, - [6077] = 397, + [6022] = 5867, + [6023] = 5832, + [6024] = 6024, + [6025] = 5819, + [6026] = 5824, + [6027] = 5823, + [6028] = 5849, + [6029] = 5911, + [6030] = 5832, + [6031] = 5828, + [6032] = 6032, + [6033] = 5833, + [6034] = 5831, + [6035] = 5849, + [6036] = 5875, + [6037] = 5858, + [6038] = 5852, + [6039] = 5858, + [6040] = 5852, + [6041] = 6041, + [6042] = 6042, + [6043] = 5850, + [6044] = 5822, + [6045] = 5840, + [6046] = 5819, + [6047] = 6047, + [6048] = 5824, + [6049] = 5852, + [6050] = 5838, + [6051] = 5840, + [6052] = 5830, + [6053] = 5849, + [6054] = 6054, + [6055] = 5822, + [6056] = 5819, + [6057] = 5826, + [6058] = 6058, + [6059] = 5823, + [6060] = 5845, + [6061] = 5850, + [6062] = 5850, + [6063] = 5819, + [6064] = 5945, + [6065] = 6065, + [6066] = 5836, + [6067] = 5836, + [6068] = 5840, + [6069] = 5852, + [6070] = 5858, + [6071] = 5849, + [6072] = 5820, + [6073] = 6073, + [6074] = 5819, + [6075] = 5824, + [6076] = 5836, + [6077] = 5823, [6078] = 6078, - [6079] = 6021, + [6079] = 5820, [6080] = 6080, - [6081] = 5812, - [6082] = 6021, - [6083] = 5814, - [6084] = 5816, - [6085] = 5818, - [6086] = 5824, - [6087] = 5857, - [6088] = 5878, - [6089] = 5878, - [6090] = 5822, - [6091] = 5876, - [6092] = 6092, - [6093] = 5802, - [6094] = 5876, + [6081] = 5845, + [6082] = 5825, + [6083] = 5827, + [6084] = 5838, + [6085] = 5867, + [6086] = 5832, + [6087] = 5819, + [6088] = 5826, + [6089] = 5833, + [6090] = 5830, + [6091] = 5838, + [6092] = 5831, + [6093] = 5829, + [6094] = 5818, [6095] = 6095, - [6096] = 5822, - [6097] = 6097, - [6098] = 5837, - [6099] = 6099, - [6100] = 6092, - [6101] = 6101, - [6102] = 6102, - [6103] = 6097, + [6096] = 6096, + [6097] = 5949, + [6098] = 6098, + [6099] = 5845, + [6100] = 5838, + [6101] = 5830, + [6102] = 5828, + [6103] = 5826, [6104] = 6104, - [6105] = 6105, - [6106] = 6106, - [6107] = 6107, - [6108] = 5875, - [6109] = 6109, - [6110] = 5874, - [6111] = 5872, - [6112] = 5871, - [6113] = 5870, - [6114] = 5868, - [6115] = 5867, - [6116] = 5866, - [6117] = 5864, - [6118] = 6118, + [6105] = 5822, + [6106] = 5830, + [6107] = 5831, + [6108] = 5833, + [6109] = 5832, + [6110] = 6110, + [6111] = 5821, + [6112] = 5827, + [6113] = 5823, + [6114] = 5824, + [6115] = 5825, + [6116] = 6116, + [6117] = 5819, + [6118] = 5843, [6119] = 6119, [6120] = 6120, - [6121] = 6059, + [6121] = 6121, [6122] = 6122, [6123] = 6123, - [6124] = 5845, - [6125] = 5837, + [6124] = 6124, + [6125] = 6125, [6126] = 6126, - [6127] = 5822, + [6127] = 6127, [6128] = 6128, - [6129] = 5836, - [6130] = 5966, - [6131] = 6131, - [6132] = 6132, - [6133] = 6133, - [6134] = 5859, - [6135] = 5805, - [6136] = 5847, - [6137] = 5820, - [6138] = 5848, - [6139] = 5818, - [6140] = 6140, - [6141] = 5850, - [6142] = 5805, - [6143] = 6126, - [6144] = 5849, - [6145] = 5875, - [6146] = 5855, - [6147] = 5853, - [6148] = 5874, - [6149] = 5852, - [6150] = 5872, - [6151] = 5850, - [6152] = 5848, - [6153] = 5847, - [6154] = 5845, - [6155] = 5843, - [6156] = 5816, - [6157] = 5871, - [6158] = 5870, - [6159] = 5868, - [6160] = 5852, - [6161] = 5814, - [6162] = 5853, - [6163] = 5812, - [6164] = 5867, - [6165] = 5866, - [6166] = 5864, - [6167] = 5966, - [6168] = 5836, + [6129] = 6129, + [6130] = 6130, + [6131] = 391, + [6132] = 392, + [6133] = 393, + [6134] = 394, + [6135] = 395, + [6136] = 396, + [6137] = 398, + [6138] = 399, + [6139] = 400, + [6140] = 401, + [6141] = 402, + [6142] = 403, + [6143] = 404, + [6144] = 406, + [6145] = 6145, + [6146] = 6145, + [6147] = 6147, + [6148] = 6148, + [6149] = 407, + [6150] = 6150, + [6151] = 408, + [6152] = 6152, + [6153] = 6153, + [6154] = 409, + [6155] = 6119, + [6156] = 6156, + [6157] = 6157, + [6158] = 6158, + [6159] = 6159, + [6160] = 6160, + [6161] = 444, + [6162] = 414, + [6163] = 6163, + [6164] = 6164, + [6165] = 6165, + [6166] = 415, + [6167] = 6167, + [6168] = 6168, [6169] = 6169, - [6170] = 5842, - [6171] = 5843, - [6172] = 5845, - [6173] = 5847, - [6174] = 5848, - [6175] = 5850, - [6176] = 5855, - [6177] = 6177, - [6178] = 5852, - [6179] = 6179, + [6170] = 390, + [6171] = 6171, + [6172] = 416, + [6173] = 389, + [6174] = 6174, + [6175] = 388, + [6176] = 6176, + [6177] = 387, + [6178] = 6178, + [6179] = 386, [6180] = 6180, - [6181] = 5853, + [6181] = 385, [6182] = 6182, - [6183] = 5807, - [6184] = 6184, - [6185] = 5822, - [6186] = 5820, - [6187] = 5818, - [6188] = 5816, - [6189] = 5814, - [6190] = 5812, - [6191] = 5844, - [6192] = 5855, - [6193] = 5857, - [6194] = 6194, - [6195] = 6195, - [6196] = 6196, - [6197] = 5821, - [6198] = 6169, - [6199] = 5807, - [6200] = 6200, - [6201] = 5859, - [6202] = 5823, - [6203] = 5857, - [6204] = 5824, - [6205] = 5837, - [6206] = 5837, - [6207] = 5805, - [6208] = 5868, - [6209] = 5805, - [6210] = 5827, - [6211] = 6211, - [6212] = 6212, - [6213] = 5859, - [6214] = 5864, - [6215] = 5806, - [6216] = 5828, + [6183] = 6183, + [6184] = 6183, + [6185] = 417, + [6186] = 6182, + [6187] = 6180, + [6188] = 6178, + [6189] = 418, + [6190] = 419, + [6191] = 420, + [6192] = 6176, + [6193] = 6174, + [6194] = 421, + [6195] = 6169, + [6196] = 384, + [6197] = 6168, + [6198] = 383, + [6199] = 6164, + [6200] = 382, + [6201] = 6167, + [6202] = 6165, + [6203] = 381, + [6204] = 6163, + [6205] = 6160, + [6206] = 6159, + [6207] = 6157, + [6208] = 6158, + [6209] = 6119, + [6210] = 6156, + [6211] = 6153, + [6212] = 6152, + [6213] = 380, + [6214] = 6150, + [6215] = 379, + [6216] = 378, [6217] = 6217, - [6218] = 6218, - [6219] = 5821, - [6220] = 5823, - [6221] = 5824, - [6222] = 5827, - [6223] = 5828, - [6224] = 5859, - [6225] = 5866, - [6226] = 5867, - [6227] = 5868, - [6228] = 6126, - [6229] = 6229, - [6230] = 5870, - [6231] = 5844, - [6232] = 5871, - [6233] = 5820, - [6234] = 5855, - [6235] = 5844, - [6236] = 5853, - [6237] = 5824, - [6238] = 5852, - [6239] = 5849, - [6240] = 5850, - [6241] = 5848, - [6242] = 6097, - [6243] = 5847, - [6244] = 6109, - [6245] = 5865, - [6246] = 5845, - [6247] = 5827, - [6248] = 5828, - [6249] = 5843, - [6250] = 5867, - [6251] = 6251, - [6252] = 6097, - [6253] = 5842, - [6254] = 5844, - [6255] = 5874, - [6256] = 5875, - [6257] = 6021, - [6258] = 6109, - [6259] = 5864, - [6260] = 6097, - [6261] = 5830, - [6262] = 5971, - [6263] = 5866, - [6264] = 6059, - [6265] = 6019, - [6266] = 5844, - [6267] = 6021, - [6268] = 5876, - [6269] = 6269, - [6270] = 6021, - [6271] = 6019, - [6272] = 5801, - [6273] = 5802, - [6274] = 5878, - [6275] = 5802, - [6276] = 5876, - [6277] = 5878, - [6278] = 6278, - [6279] = 6109, - [6280] = 6039, - [6281] = 5867, - [6282] = 6097, - [6283] = 5806, - [6284] = 6092, - [6285] = 6059, - [6286] = 5865, - [6287] = 6169, - [6288] = 6021, - [6289] = 6019, - [6290] = 5875, - [6291] = 6059, - [6292] = 5874, - [6293] = 5971, - [6294] = 5872, - [6295] = 5870, - [6296] = 5871, - [6297] = 5849, - [6298] = 5870, - [6299] = 5868, - [6300] = 6218, - [6301] = 5866, - [6302] = 5864, - [6303] = 6109, - [6304] = 5844, - [6305] = 6097, - [6306] = 6039, - [6307] = 6092, - [6308] = 5872, - [6309] = 6059, - [6310] = 5844, - [6311] = 5801, + [6218] = 6148, + [6219] = 6219, + [6220] = 367, + [6221] = 413, + [6222] = 376, + [6223] = 6147, + [6224] = 377, + [6225] = 6120, + [6226] = 6121, + [6227] = 6122, + [6228] = 374, + [6229] = 6123, + [6230] = 6124, + [6231] = 6125, + [6232] = 373, + [6233] = 6126, + [6234] = 6127, + [6235] = 6128, + [6236] = 6129, + [6237] = 6130, + [6238] = 422, + [6239] = 372, + [6240] = 423, + [6241] = 424, + [6242] = 425, + [6243] = 6145, + [6244] = 426, + [6245] = 371, + [6246] = 427, + [6247] = 370, + [6248] = 428, + [6249] = 6168, + [6250] = 429, + [6251] = 6156, + [6252] = 6252, + [6253] = 6169, + [6254] = 6130, + [6255] = 6129, + [6256] = 6128, + [6257] = 430, + [6258] = 6127, + [6259] = 431, + [6260] = 432, + [6261] = 433, + [6262] = 434, + [6263] = 6126, + [6264] = 435, + [6265] = 6125, + [6266] = 436, + [6267] = 6168, + [6268] = 437, + [6269] = 6124, + [6270] = 6123, + [6271] = 6169, + [6272] = 6122, + [6273] = 6121, + [6274] = 6120, + [6275] = 438, + [6276] = 6147, + [6277] = 439, + [6278] = 440, + [6279] = 441, + [6280] = 442, + [6281] = 375, + [6282] = 443, + [6283] = 6283, + [6284] = 364, + [6285] = 6168, + [6286] = 445, + [6287] = 6148, + [6288] = 6150, + [6289] = 6169, + [6290] = 6152, + [6291] = 6153, + [6292] = 6119, + [6293] = 446, + [6294] = 6157, + [6295] = 447, + [6296] = 448, + [6297] = 449, + [6298] = 450, + [6299] = 6159, + [6300] = 451, + [6301] = 6163, + [6302] = 452, + [6303] = 6168, + [6304] = 453, + [6305] = 6165, + [6306] = 6167, + [6307] = 6169, + [6308] = 6308, + [6309] = 6309, + [6310] = 6169, + [6311] = 454, [6312] = 6312, - [6313] = 6126, - [6314] = 5871, - [6315] = 6021, - [6316] = 5816, - [6317] = 6019, - [6318] = 6092, - [6319] = 5971, - [6320] = 5830, - [6321] = 5828, - [6322] = 5827, - [6323] = 6097, - [6324] = 5824, - [6325] = 5859, - [6326] = 5872, - [6327] = 5874, - [6328] = 5823, - [6329] = 5821, - [6330] = 5875, - [6331] = 6109, - [6332] = 6332, - [6333] = 5865, - [6334] = 6109, - [6335] = 6335, - [6336] = 5855, - [6337] = 5853, - [6338] = 5852, - [6339] = 5850, - [6340] = 5848, - [6341] = 5847, - [6342] = 5820, - [6343] = 5845, - [6344] = 5843, - [6345] = 5842, - [6346] = 5818, - [6347] = 5828, - [6348] = 5821, - [6349] = 5805, - [6350] = 6350, - [6351] = 5814, - [6352] = 5812, - [6353] = 5823, - [6354] = 5824, - [6355] = 5837, - [6356] = 5876, - [6357] = 5802, - [6358] = 6358, - [6359] = 5836, - [6360] = 5830, - [6361] = 5971, - [6362] = 6059, - [6363] = 6097, - [6364] = 5966, - [6365] = 6019, - [6366] = 5836, - [6367] = 5966, - [6368] = 6169, - [6369] = 5827, - [6370] = 6092, - [6371] = 6021, - [6372] = 5878, - [6373] = 5807, - [6374] = 5806, - [6375] = 5806, - [6376] = 6037, - [6377] = 5857, - [6378] = 6378, - [6379] = 6379, - [6380] = 6380, - [6381] = 6381, - [6382] = 6382, - [6383] = 6383, - [6384] = 6384, - [6385] = 6378, - [6386] = 6386, - [6387] = 6387, - [6388] = 6388, - [6389] = 6389, - [6390] = 6390, - [6391] = 6391, - [6392] = 6392, - [6393] = 6393, - [6394] = 6394, - [6395] = 6395, + [6313] = 457, + [6314] = 461, + [6315] = 462, + [6316] = 6183, + [6317] = 464, + [6318] = 6182, + [6319] = 465, + [6320] = 469, + [6321] = 6180, + [6322] = 6178, + [6323] = 6169, + [6324] = 6176, + [6325] = 6174, + [6326] = 6168, + [6327] = 369, + [6328] = 6328, + [6329] = 6329, + [6330] = 349, + [6331] = 6164, + [6332] = 6160, + [6333] = 357, + [6334] = 6158, + [6335] = 6252, + [6336] = 6169, + [6337] = 6145, + [6338] = 6338, + [6339] = 6339, + [6340] = 356, + [6341] = 6341, + [6342] = 6219, + [6343] = 6171, + [6344] = 6130, + [6345] = 6129, + [6346] = 6128, + [6347] = 6219, + [6348] = 6308, + [6349] = 6169, + [6350] = 6127, + [6351] = 6126, + [6352] = 6125, + [6353] = 6124, + [6354] = 6123, + [6355] = 6122, + [6356] = 6121, + [6357] = 6120, + [6358] = 6169, + [6359] = 6147, + [6360] = 6312, + [6361] = 6169, + [6362] = 6362, + [6363] = 6339, + [6364] = 6169, + [6365] = 6169, + [6366] = 6148, + [6367] = 6339, + [6368] = 6219, + [6369] = 6171, + [6370] = 351, + [6371] = 353, + [6372] = 6372, + [6373] = 6338, + [6374] = 354, + [6375] = 6338, + [6376] = 6339, + [6377] = 6150, + [6378] = 6219, + [6379] = 6152, + [6380] = 355, + [6381] = 358, + [6382] = 359, + [6383] = 6372, + [6384] = 360, + [6385] = 348, + [6386] = 362, + [6387] = 6145, + [6388] = 455, + [6389] = 350, + [6390] = 365, + [6391] = 366, + [6392] = 368, + [6393] = 397, + [6394] = 405, + [6395] = 6153, [6396] = 6396, - [6397] = 6397, - [6398] = 6398, - [6399] = 6399, - [6400] = 6378, - [6401] = 6391, - [6402] = 6402, - [6403] = 6390, - [6404] = 6404, - [6405] = 6405, - [6406] = 6406, - [6407] = 6407, - [6408] = 6408, - [6409] = 6409, + [6397] = 410, + [6398] = 6119, + [6399] = 6157, + [6400] = 6159, + [6401] = 6163, + [6402] = 6165, + [6403] = 6167, + [6404] = 6309, + [6405] = 6169, + [6406] = 6341, + [6407] = 6308, + [6408] = 6312, + [6409] = 6339, [6410] = 6410, [6411] = 6411, [6412] = 6412, - [6413] = 6413, - [6414] = 6414, - [6415] = 6389, - [6416] = 6416, - [6417] = 6417, - [6418] = 6418, - [6419] = 6419, - [6420] = 6417, - [6421] = 6387, - [6422] = 6422, - [6423] = 6423, - [6424] = 6424, - [6425] = 6425, - [6426] = 6411, - [6427] = 6408, - [6428] = 6428, - [6429] = 6429, - [6430] = 6388, - [6431] = 6384, - [6432] = 6432, - [6433] = 6386, + [6413] = 6145, + [6414] = 6308, + [6415] = 6183, + [6416] = 6171, + [6417] = 6182, + [6418] = 6180, + [6419] = 6178, + [6420] = 6176, + [6421] = 6174, + [6422] = 6309, + [6423] = 6169, + [6424] = 6168, + [6425] = 6328, + [6426] = 6308, + [6427] = 6427, + [6428] = 6329, + [6429] = 6164, + [6430] = 6156, + [6431] = 6158, + [6432] = 6160, + [6433] = 6433, [6434] = 6434, - [6435] = 6404, - [6436] = 6436, - [6437] = 6437, - [6438] = 6392, - [6439] = 6439, - [6440] = 6393, - [6441] = 6441, + [6435] = 6433, + [6436] = 6160, + [6437] = 6158, + [6438] = 6156, + [6439] = 6434, + [6440] = 6440, + [6441] = 6252, [6442] = 6442, - [6443] = 6443, - [6444] = 6444, + [6443] = 6312, + [6444] = 6145, [6445] = 6445, - [6446] = 6446, - [6447] = 6447, - [6448] = 6448, - [6449] = 6449, - [6450] = 6450, - [6451] = 6446, - [6452] = 6445, + [6446] = 6164, + [6447] = 6362, + [6448] = 6329, + [6449] = 6252, + [6450] = 6445, + [6451] = 6341, + [6452] = 6328, [6453] = 6453, - [6454] = 6454, - [6455] = 6405, - [6456] = 6456, - [6457] = 6424, + [6454] = 6308, + [6455] = 6167, + [6456] = 6168, + [6457] = 6120, [6458] = 6458, [6459] = 6459, - [6460] = 6410, - [6461] = 6461, - [6462] = 6462, - [6463] = 6463, - [6464] = 6410, - [6465] = 6465, - [6466] = 6414, - [6467] = 6467, - [6468] = 6468, - [6469] = 6469, - [6470] = 6470, - [6471] = 6471, - [6472] = 6472, - [6473] = 6443, - [6474] = 6474, - [6475] = 6418, - [6476] = 6476, - [6477] = 6477, - [6478] = 6478, - [6479] = 6479, - [6480] = 6480, - [6481] = 6481, - [6482] = 6480, - [6483] = 6483, - [6484] = 6479, - [6485] = 6424, - [6486] = 6486, - [6487] = 6487, - [6488] = 6488, - [6489] = 6469, - [6490] = 6490, - [6491] = 6491, - [6492] = 6492, - [6493] = 6399, - [6494] = 6384, + [6460] = 6130, + [6461] = 6129, + [6462] = 6163, + [6463] = 6128, + [6464] = 6174, + [6465] = 6308, + [6466] = 6312, + [6467] = 6127, + [6468] = 6126, + [6469] = 6125, + [6470] = 6124, + [6471] = 6123, + [6472] = 6159, + [6473] = 6122, + [6474] = 6121, + [6475] = 6328, + [6476] = 6147, + [6477] = 6157, + [6478] = 6176, + [6479] = 6178, + [6480] = 6440, + [6481] = 6148, + [6482] = 6180, + [6483] = 6312, + [6484] = 6119, + [6485] = 6182, + [6486] = 6150, + [6487] = 6153, + [6488] = 6152, + [6489] = 6152, + [6490] = 6308, + [6491] = 6130, + [6492] = 6153, + [6493] = 6129, + [6494] = 6128, [6495] = 6495, - [6496] = 6386, - [6497] = 6497, - [6498] = 6474, - [6499] = 6450, + [6496] = 6119, + [6497] = 6157, + [6498] = 6159, + [6499] = 6163, [6500] = 6500, - [6501] = 6392, - [6502] = 6502, - [6503] = 6393, - [6504] = 6504, - [6505] = 6405, - [6506] = 6436, - [6507] = 6410, - [6508] = 6418, - [6509] = 6441, - [6510] = 6510, - [6511] = 6511, - [6512] = 6478, - [6513] = 6513, - [6514] = 6514, - [6515] = 6515, - [6516] = 6511, - [6517] = 6514, + [6501] = 6150, + [6502] = 6252, + [6503] = 6165, + [6504] = 6167, + [6505] = 6309, + [6506] = 6169, + [6507] = 6183, + [6508] = 6508, + [6509] = 6183, + [6510] = 6182, + [6511] = 6180, + [6512] = 6178, + [6513] = 6176, + [6514] = 6174, + [6515] = 6168, + [6516] = 6171, + [6517] = 6123, [6518] = 6518, - [6519] = 6418, - [6520] = 6520, - [6521] = 6398, - [6522] = 6522, - [6523] = 6523, - [6524] = 6468, - [6525] = 6525, - [6526] = 6394, + [6519] = 6329, + [6520] = 6508, + [6521] = 6164, + [6522] = 6440, + [6523] = 6169, + [6524] = 6309, + [6525] = 6183, + [6526] = 6182, [6527] = 6527, - [6528] = 6476, - [6529] = 6529, + [6528] = 6434, + [6529] = 6433, [6530] = 6530, - [6531] = 6531, - [6532] = 6532, - [6533] = 6533, - [6534] = 6534, - [6535] = 6384, - [6536] = 6536, - [6537] = 6386, - [6538] = 6538, - [6539] = 6450, - [6540] = 6540, - [6541] = 6541, - [6542] = 6392, + [6531] = 6160, + [6532] = 6158, + [6533] = 6156, + [6534] = 6180, + [6535] = 6178, + [6536] = 6176, + [6537] = 6145, + [6538] = 6174, + [6539] = 6445, + [6540] = 6167, + [6541] = 6165, + [6542] = 6542, [6543] = 6543, - [6544] = 6393, - [6545] = 6432, - [6546] = 6405, - [6547] = 6414, - [6548] = 6398, - [6549] = 6399, - [6550] = 6383, - [6551] = 6551, - [6552] = 6469, - [6553] = 6378, - [6554] = 6514, - [6555] = 6404, - [6556] = 6480, - [6557] = 6418, - [6558] = 6450, - [6559] = 6441, - [6560] = 6560, - [6561] = 6416, - [6562] = 6382, - [6563] = 6381, - [6564] = 6474, - [6565] = 6408, - [6566] = 6479, - [6567] = 6480, - [6568] = 6474, - [6569] = 6393, - [6570] = 6570, - [6571] = 6406, - [6572] = 6481, - [6573] = 6418, - [6574] = 6405, - [6575] = 6575, - [6576] = 6411, - [6577] = 6417, - [6578] = 6395, - [6579] = 6468, - [6580] = 6515, - [6581] = 6478, - [6582] = 6511, - [6583] = 6462, - [6584] = 6483, - [6585] = 6450, + [6544] = 6163, + [6545] = 6362, + [6546] = 6546, + [6547] = 6547, + [6548] = 6145, + [6549] = 6159, + [6550] = 6157, + [6551] = 6341, + [6552] = 6153, + [6553] = 6152, + [6554] = 6150, + [6555] = 6148, + [6556] = 6556, + [6557] = 6557, + [6558] = 6130, + [6559] = 6129, + [6560] = 6128, + [6561] = 6500, + [6562] = 6127, + [6563] = 6126, + [6564] = 6125, + [6565] = 6124, + [6566] = 6126, + [6567] = 6122, + [6568] = 6121, + [6569] = 6120, + [6570] = 6147, + [6571] = 6148, + [6572] = 6572, + [6573] = 6150, + [6574] = 6152, + [6575] = 6153, + [6576] = 6119, + [6577] = 6577, + [6578] = 6157, + [6579] = 6159, + [6580] = 6580, + [6581] = 6163, + [6582] = 6582, + [6583] = 6165, + [6584] = 6167, + [6585] = 6219, [6586] = 6586, - [6587] = 6495, - [6588] = 6588, - [6589] = 6469, - [6590] = 6590, - [6591] = 6379, - [6592] = 6434, - [6593] = 6384, - [6594] = 6386, - [6595] = 6595, - [6596] = 6483, - [6597] = 6481, - [6598] = 6480, - [6599] = 6449, - [6600] = 6479, - [6601] = 6469, - [6602] = 6481, - [6603] = 6474, - [6604] = 6422, - [6605] = 6396, - [6606] = 6443, - [6607] = 6397, - [6608] = 6380, - [6609] = 6425, - [6610] = 6461, - [6611] = 6468, - [6612] = 6458, - [6613] = 6613, - [6614] = 6614, - [6615] = 6551, - [6616] = 6453, - [6617] = 6458, - [6618] = 6462, - [6619] = 6446, - [6620] = 6620, - [6621] = 6445, - [6622] = 6622, - [6623] = 6436, - [6624] = 6624, - [6625] = 6432, - [6626] = 6626, - [6627] = 6432, - [6628] = 6628, - [6629] = 6409, - [6630] = 6425, - [6631] = 6462, - [6632] = 6458, - [6633] = 6449, - [6634] = 6423, - [6635] = 6422, - [6636] = 6636, - [6637] = 6387, - [6638] = 6425, - [6639] = 6434, - [6640] = 6441, - [6641] = 6419, - [6642] = 6590, - [6643] = 6384, - [6644] = 6412, - [6645] = 6446, - [6646] = 6477, - [6647] = 6409, - [6648] = 6419, - [6649] = 6407, - [6650] = 6434, - [6651] = 6445, - [6652] = 6402, - [6653] = 6653, - [6654] = 6443, + [6587] = 6168, + [6588] = 6309, + [6589] = 6589, + [6590] = 6169, + [6591] = 6147, + [6592] = 6592, + [6593] = 6328, + [6594] = 6594, + [6595] = 6120, + [6596] = 6121, + [6597] = 6597, + [6598] = 6122, + [6599] = 6123, + [6600] = 6124, + [6601] = 6601, + [6602] = 6125, + [6603] = 6164, + [6604] = 6127, + [6605] = 6183, + [6606] = 6127, + [6607] = 6182, + [6608] = 6126, + [6609] = 6180, + [6610] = 6178, + [6611] = 6176, + [6612] = 6145, + [6613] = 6174, + [6614] = 6329, + [6615] = 6168, + [6616] = 6125, + [6617] = 6124, + [6618] = 6123, + [6619] = 6372, + [6620] = 6338, + [6621] = 6328, + [6622] = 6171, + [6623] = 6339, + [6624] = 6122, + [6625] = 6219, + [6626] = 6129, + [6627] = 6121, + [6628] = 6120, + [6629] = 6329, + [6630] = 6219, + [6631] = 6147, + [6632] = 6130, + [6633] = 6130, + [6634] = 6128, + [6635] = 6164, + [6636] = 6434, + [6637] = 6433, + [6638] = 6396, + [6639] = 6160, + [6640] = 6158, + [6641] = 6339, + [6642] = 6156, + [6643] = 6338, + [6644] = 6341, + [6645] = 6362, + [6646] = 6145, + [6647] = 6434, + [6648] = 6433, + [6649] = 6171, + [6650] = 6160, + [6651] = 6372, + [6652] = 6445, + [6653] = 6158, + [6654] = 6445, [6655] = 6655, - [6656] = 6495, - [6657] = 6486, - [6658] = 6488, - [6659] = 6397, - [6660] = 6491, - [6661] = 6492, - [6662] = 6436, + [6656] = 6156, + [6657] = 6362, + [6658] = 6145, + [6659] = 6659, + [6660] = 6660, + [6661] = 6661, + [6662] = 6341, [6663] = 6663, - [6664] = 6396, - [6665] = 6443, - [6666] = 6395, - [6667] = 6394, - [6668] = 6391, - [6669] = 6389, - [6670] = 6388, - [6671] = 6383, - [6672] = 6382, - [6673] = 6381, - [6674] = 6393, - [6675] = 6392, - [6676] = 6432, - [6677] = 6677, - [6678] = 6514, - [6679] = 6392, - [6680] = 6434, - [6681] = 6402, - [6682] = 6449, - [6683] = 6386, - [6684] = 6410, - [6685] = 6685, - [6686] = 6686, - [6687] = 6391, - [6688] = 6453, - [6689] = 6590, - [6690] = 6560, - [6691] = 6458, - [6692] = 6462, - [6693] = 6477, + [6664] = 6427, + [6665] = 6156, + [6666] = 6158, + [6667] = 6160, + [6668] = 6396, + [6669] = 6433, + [6670] = 6427, + [6671] = 6671, + [6672] = 6672, + [6673] = 6145, + [6674] = 6410, + [6675] = 6252, + [6676] = 6341, + [6677] = 6129, + [6678] = 6128, + [6679] = 6308, + [6680] = 6445, + [6681] = 6164, + [6682] = 6329, + [6683] = 6127, + [6684] = 6126, + [6685] = 6125, + [6686] = 6124, + [6687] = 6312, + [6688] = 6123, + [6689] = 6122, + [6690] = 6500, + [6691] = 6121, + [6692] = 6692, + [6693] = 6693, [6694] = 6694, - [6695] = 6486, - [6696] = 6696, - [6697] = 6395, - [6698] = 6488, - [6699] = 6396, - [6700] = 6397, - [6701] = 6491, - [6702] = 6492, - [6703] = 6479, - [6704] = 6441, - [6705] = 6614, - [6706] = 6706, - [6707] = 6514, - [6708] = 6525, - [6709] = 6402, + [6695] = 6120, + [6696] = 6147, + [6697] = 6328, + [6698] = 6500, + [6699] = 6168, + [6700] = 6148, + [6701] = 6150, + [6702] = 6152, + [6703] = 6153, + [6704] = 6119, + [6705] = 6157, + [6706] = 6159, + [6707] = 6163, + [6708] = 6165, + [6709] = 6709, [6710] = 6710, - [6711] = 6532, - [6712] = 6525, - [6713] = 6532, - [6714] = 6540, - [6715] = 6541, - [6716] = 6414, - [6717] = 6543, - [6718] = 6407, - [6719] = 6540, - [6720] = 6541, - [6721] = 6424, - [6722] = 6543, - [6723] = 6418, - [6724] = 6724, - [6725] = 6393, - [6726] = 6398, - [6727] = 6378, - [6728] = 6404, - [6729] = 6398, - [6730] = 6481, - [6731] = 6399, - [6732] = 6428, + [6711] = 6167, + [6712] = 6219, + [6713] = 6174, + [6714] = 6339, + [6715] = 6362, + [6716] = 6309, + [6717] = 6169, + [6718] = 6718, + [6719] = 6148, + [6720] = 6165, + [6721] = 6176, + [6722] = 6178, + [6723] = 6440, + [6724] = 6338, + [6725] = 6180, + [6726] = 6726, + [6727] = 6434, + [6728] = 6182, + [6729] = 6183, + [6730] = 6372, + [6731] = 6731, + [6732] = 6732, [6733] = 6733, - [6734] = 6408, - [6735] = 6409, - [6736] = 6404, - [6737] = 6408, + [6734] = 6734, + [6735] = 6735, + [6736] = 6736, + [6737] = 6737, [6738] = 6738, - [6739] = 6570, + [6739] = 6739, [6740] = 6740, [6741] = 6741, - [6742] = 6586, - [6743] = 6570, - [6744] = 6588, + [6742] = 6742, + [6743] = 6743, + [6744] = 6744, [6745] = 6745, - [6746] = 6575, - [6747] = 6595, - [6748] = 6575, - [6749] = 6411, - [6750] = 6411, - [6751] = 6417, - [6752] = 6481, + [6746] = 6746, + [6747] = 6747, + [6748] = 6748, + [6749] = 6749, + [6750] = 6750, + [6751] = 6751, + [6752] = 6752, [6753] = 6753, [6754] = 6754, - [6755] = 6419, - [6756] = 6380, - [6757] = 6757, - [6758] = 6461, - [6759] = 6399, - [6760] = 6595, - [6761] = 2087, - [6762] = 2090, - [6763] = 6551, - [6764] = 1967, - [6765] = 1977, - [6766] = 6407, - [6767] = 6628, - [6768] = 6409, - [6769] = 6417, - [6770] = 6590, - [6771] = 6407, - [6772] = 6515, + [6755] = 6755, + [6756] = 6751, + [6757] = 6744, + [6758] = 6755, + [6759] = 6743, + [6760] = 6760, + [6761] = 6761, + [6762] = 6762, + [6763] = 6733, + [6764] = 6735, + [6765] = 6765, + [6766] = 6766, + [6767] = 6734, + [6768] = 6768, + [6769] = 6769, + [6770] = 6749, + [6771] = 6737, + [6772] = 6772, [6773] = 6773, - [6774] = 6478, - [6775] = 6511, - [6776] = 6409, - [6777] = 6424, - [6778] = 6450, - [6779] = 6402, - [6780] = 6495, - [6781] = 6418, - [6782] = 6414, + [6774] = 6774, + [6775] = 6735, + [6776] = 6776, + [6777] = 6733, + [6778] = 6778, + [6779] = 6779, + [6780] = 6736, + [6781] = 6734, + [6782] = 6737, [6783] = 6783, - [6784] = 6469, - [6785] = 6481, - [6786] = 6480, - [6787] = 6479, - [6788] = 6595, - [6789] = 6474, - [6790] = 6468, - [6791] = 6380, - [6792] = 6792, - [6793] = 6461, - [6794] = 6794, - [6795] = 6551, - [6796] = 6412, - [6797] = 6628, - [6798] = 6590, - [6799] = 6628, - [6800] = 6397, - [6801] = 6476, - [6802] = 6446, - [6803] = 6445, - [6804] = 6443, - [6805] = 6413, - [6806] = 6436, - [6807] = 6396, - [6808] = 6395, - [6809] = 6432, - [6810] = 6626, - [6811] = 6391, - [6812] = 6449, - [6813] = 6425, - [6814] = 6410, - [6815] = 6595, - [6816] = 6423, - [6817] = 6391, - [6818] = 6380, - [6819] = 6511, - [6820] = 6461, - [6821] = 6478, - [6822] = 6551, - [6823] = 6406, - [6824] = 6628, - [6825] = 6590, - [6826] = 6405, - [6827] = 6419, - [6828] = 6425, - [6829] = 6412, - [6830] = 6595, - [6831] = 6831, - [6832] = 6395, - [6833] = 6380, - [6834] = 6409, - [6835] = 6515, - [6836] = 6551, - [6837] = 6396, - [6838] = 6628, - [6839] = 6590, - [6840] = 6407, - [6841] = 6754, - [6842] = 6402, - [6843] = 6397, - [6844] = 6595, - [6845] = 6397, - [6846] = 6425, - [6847] = 6396, - [6848] = 6551, - [6849] = 6590, - [6850] = 6395, - [6851] = 6391, - [6852] = 6595, - [6853] = 6389, - [6854] = 6590, - [6855] = 6388, - [6856] = 6458, - [6857] = 6462, - [6858] = 6831, - [6859] = 6745, - [6860] = 6740, - [6861] = 6419, - [6862] = 6402, - [6863] = 6434, - [6864] = 6407, - [6865] = 6865, - [6866] = 6453, - [6867] = 6458, - [6868] = 6462, - [6869] = 6477, - [6870] = 6408, - [6871] = 6409, - [6872] = 6412, - [6873] = 6441, - [6874] = 6626, - [6875] = 6514, - [6876] = 6423, - [6877] = 6458, - [6878] = 6878, - [6879] = 6419, - [6880] = 6398, - [6881] = 6399, - [6882] = 6378, - [6883] = 6831, - [6884] = 6745, - [6885] = 6740, - [6886] = 6404, - [6887] = 6408, - [6888] = 6411, - [6889] = 6417, - [6890] = 6480, - [6891] = 6626, - [6892] = 6515, - [6893] = 6479, - [6894] = 6474, - [6895] = 6478, - [6896] = 6458, - [6897] = 6831, - [6898] = 6745, - [6899] = 6740, + [6784] = 6776, + [6785] = 6785, + [6786] = 6786, + [6787] = 6787, + [6788] = 6788, + [6789] = 6789, + [6790] = 6737, + [6791] = 6791, + [6792] = 6734, + [6793] = 6793, + [6794] = 2130, + [6795] = 6795, + [6796] = 6796, + [6797] = 6733, + [6798] = 6798, + [6799] = 6735, + [6800] = 6800, + [6801] = 6801, + [6802] = 6736, + [6803] = 6803, + [6804] = 6804, + [6805] = 1853, + [6806] = 6741, + [6807] = 6807, + [6808] = 1862, + [6809] = 6809, + [6810] = 2035, + [6811] = 6749, + [6812] = 6743, + [6813] = 6813, + [6814] = 6743, + [6815] = 6815, + [6816] = 6753, + [6817] = 6755, + [6818] = 6751, + [6819] = 6751, + [6820] = 6744, + [6821] = 6821, + [6822] = 6738, + [6823] = 6785, + [6824] = 6824, + [6825] = 6755, + [6826] = 6826, + [6827] = 6827, + [6828] = 6828, + [6829] = 6829, + [6830] = 6830, + [6831] = 6821, + [6832] = 6738, + [6833] = 6824, + [6834] = 6749, + [6835] = 6835, + [6836] = 6827, + [6837] = 6828, + [6838] = 6838, + [6839] = 6829, + [6840] = 6731, + [6841] = 6838, + [6842] = 6789, + [6843] = 6732, + [6844] = 6736, + [6845] = 6738, + [6846] = 6846, + [6847] = 6824, + [6848] = 6848, + [6849] = 6849, + [6850] = 6850, + [6851] = 6827, + [6852] = 6828, + [6853] = 6737, + [6854] = 6854, + [6855] = 6734, + [6856] = 6856, + [6857] = 6857, + [6858] = 6829, + [6859] = 6859, + [6860] = 6733, + [6861] = 6731, + [6862] = 6735, + [6863] = 6863, + [6864] = 6743, + [6865] = 6821, + [6866] = 6751, + [6867] = 6867, + [6868] = 6857, + [6869] = 6800, + [6870] = 6870, + [6871] = 6871, + [6872] = 6872, + [6873] = 6873, + [6874] = 6798, + [6875] = 6875, + [6876] = 6789, + [6877] = 6788, + [6878] = 6749, + [6879] = 6879, + [6880] = 6880, + [6881] = 6787, + [6882] = 6882, + [6883] = 6786, + [6884] = 6884, + [6885] = 6804, + [6886] = 6886, + [6887] = 6887, + [6888] = 6736, + [6889] = 6761, + [6890] = 6890, + [6891] = 6891, + [6892] = 6892, + [6893] = 6893, + [6894] = 6760, + [6895] = 6895, + [6896] = 6896, + [6897] = 6737, + [6898] = 6898, + [6899] = 6734, [6900] = 6900, - [6901] = 6511, - [6902] = 6450, - [6903] = 6626, - [6904] = 6469, - [6905] = 6481, - [6906] = 6906, - [6907] = 6480, - [6908] = 6588, - [6909] = 6831, - [6910] = 6745, - [6911] = 6740, - [6912] = 6626, - [6913] = 6479, - [6914] = 6474, - [6915] = 6395, - [6916] = 6831, - [6917] = 6745, - [6918] = 6740, - [6919] = 6626, - [6920] = 6468, - [6921] = 6407, - [6922] = 6745, - [6923] = 6740, - [6924] = 6626, - [6925] = 6626, - [6926] = 6416, - [6927] = 6586, - [6928] = 6446, - [6929] = 6445, - [6930] = 6443, - [6931] = 6428, - [6932] = 6414, - [6933] = 6933, - [6934] = 6419, - [6935] = 6436, - [6936] = 6406, - [6937] = 6432, - [6938] = 6405, - [6939] = 6939, + [6901] = 6901, + [6902] = 6902, + [6903] = 6903, + [6904] = 6733, + [6905] = 6905, + [6906] = 6735, + [6907] = 6907, + [6908] = 6743, + [6909] = 6732, + [6910] = 6738, + [6911] = 6762, + [6912] = 6912, + [6913] = 6913, + [6914] = 6914, + [6915] = 6915, + [6916] = 6916, + [6917] = 6917, + [6918] = 6772, + [6919] = 6749, + [6920] = 6920, + [6921] = 6846, + [6922] = 6922, + [6923] = 6827, + [6924] = 6924, + [6925] = 6925, + [6926] = 6824, + [6927] = 6848, + [6928] = 6928, + [6929] = 6929, + [6930] = 6849, + [6931] = 6735, + [6932] = 6932, + [6933] = 6850, + [6934] = 6934, + [6935] = 6846, + [6936] = 6749, + [6937] = 6937, + [6938] = 6867, + [6939] = 6830, + [6940] = 6940, + [6941] = 6941, + [6942] = 6942, + [6943] = 6828, + [6944] = 6749, + [6945] = 6821, + [6946] = 6731, + [6947] = 6829, + [6948] = 6854, + [6949] = 6949, + [6950] = 6856, + [6951] = 6951, + [6952] = 6952, + [6953] = 6838, + [6954] = 6954, + [6955] = 6955, + [6956] = 6956, + [6957] = 6956, + [6958] = 6955, + [6959] = 6838, + [6960] = 6824, + [6961] = 6961, + [6962] = 6949, + [6963] = 6829, + [6964] = 6731, + [6965] = 6821, + [6966] = 6942, + [6967] = 6867, + [6968] = 6942, + [6969] = 6848, + [6970] = 6849, + [6971] = 6951, + [6972] = 6857, + [6973] = 6856, + [6974] = 6974, + [6975] = 6795, + [6976] = 6976, + [6977] = 6917, + [6978] = 6915, + [6979] = 6854, + [6980] = 6980, + [6981] = 6981, + [6982] = 6800, + [6983] = 6798, + [6984] = 6789, + [6985] = 6985, + [6986] = 6788, + [6987] = 6787, + [6988] = 6988, + [6989] = 6850, + [6990] = 6848, + [6991] = 6786, + [6992] = 6992, + [6993] = 6804, + [6994] = 6994, + [6995] = 6830, + [6996] = 6828, + [6997] = 6997, + [6998] = 6761, + [6999] = 6760, + [7000] = 6732, + [7001] = 6738, + [7002] = 6762, + [7003] = 6772, + [7004] = 6846, + [7005] = 7005, + [7006] = 6824, + [7007] = 6827, + [7008] = 6776, + [7009] = 6848, + [7010] = 6849, + [7011] = 6940, + [7012] = 6830, + [7013] = 6850, + [7014] = 6827, + [7015] = 6827, + [7016] = 6830, + [7017] = 6940, + [7018] = 6850, + [7019] = 6830, + [7020] = 6736, + [7021] = 6828, + [7022] = 6849, + [7023] = 7023, + [7024] = 6940, + [7025] = 6994, + [7026] = 6997, + [7027] = 6854, + [7028] = 7005, + [7029] = 6815, + [7030] = 6824, + [7031] = 6924, + [7032] = 6856, + [7033] = 6951, + [7034] = 6992, + [7035] = 6846, + [7036] = 6838, + [7037] = 6934, + [7038] = 6955, + [7039] = 6956, + [7040] = 6929, + [7041] = 6928, + [7042] = 6949, + [7043] = 6829, + [7044] = 6731, + [7045] = 6821, + [7046] = 6942, + [7047] = 6826, + [7048] = 6867, + [7049] = 6857, + [7050] = 6746, + [7051] = 6813, + [7052] = 7052, + [7053] = 6741, + [7054] = 6917, + [7055] = 6915, + [7056] = 6828, + [7057] = 6905, + [7058] = 6774, + [7059] = 6772, + [7060] = 6762, + [7061] = 7061, + [7062] = 6800, + [7063] = 6937, + [7064] = 6798, + [7065] = 6789, + [7066] = 6739, + [7067] = 7067, + [7068] = 6985, + [7069] = 6788, + [7070] = 6738, + [7071] = 7071, + [7072] = 6787, + [7073] = 6732, + [7074] = 6786, + [7075] = 6804, + [7076] = 6761, + [7077] = 6760, + [7078] = 7078, + [7079] = 7079, + [7080] = 7080, + [7081] = 7081, + [7082] = 7082, + [7083] = 7083, + [7084] = 7084, + [7085] = 7085, + [7086] = 7086, + [7087] = 6804, + [7088] = 7088, + [7089] = 7089, + [7090] = 6746, + [7091] = 6748, + [7092] = 6732, + [7093] = 6738, + [7094] = 6739, + [7095] = 6762, + [7096] = 6942, + [7097] = 7097, + [7098] = 6750, + [7099] = 7099, + [7100] = 6772, + [7101] = 6830, + [7102] = 6752, + [7103] = 6928, + [7104] = 6754, + [7105] = 6929, + [7106] = 6980, + [7107] = 6809, + [7108] = 6952, + [7109] = 6846, + [7110] = 6954, + [7111] = 6824, + [7112] = 6854, + [7113] = 6961, + [7114] = 6848, + [7115] = 6849, + [7116] = 6850, + [7117] = 6827, + [7118] = 6942, + [7119] = 6830, + [7120] = 6940, + [7121] = 6760, + [7122] = 6974, + [7123] = 6761, + [7124] = 6976, + [7125] = 6768, + [7126] = 6828, + [7127] = 6769, + [7128] = 6749, + [7129] = 6981, + [7130] = 6773, + [7131] = 6778, + [7132] = 6779, + [7133] = 6994, + [7134] = 6830, + [7135] = 6980, + [7136] = 6776, + [7137] = 6854, + [7138] = 6917, + [7139] = 6787, + [7140] = 6788, + [7141] = 6789, + [7142] = 6856, + [7143] = 6981, + [7144] = 6856, + [7145] = 6765, + [7146] = 6796, + [7147] = 6951, + [7148] = 6798, + [7149] = 6800, + [7150] = 6838, + [7151] = 6951, + [7152] = 6955, + [7153] = 6956, + [7154] = 6961, + [7155] = 6949, + [7156] = 6905, + [7157] = 6974, + [7158] = 6829, + [7159] = 6976, + [7160] = 6838, + [7161] = 6981, + [7162] = 6976, + [7163] = 6994, + [7164] = 6776, + [7165] = 6955, + [7166] = 6731, + [7167] = 6821, + [7168] = 6956, + [7169] = 6974, + [7170] = 6942, + [7171] = 6867, + [7172] = 6915, + [7173] = 6932, + [7174] = 6917, + [7175] = 6857, + [7176] = 6857, + [7177] = 6932, + [7178] = 6804, + [7179] = 6915, + [7180] = 6905, + [7181] = 6961, + [7182] = 6867, + [7183] = 6786, + [7184] = 6974, + [7185] = 6942, + [7186] = 6976, + [7187] = 7187, + [7188] = 6981, + [7189] = 6753, + [7190] = 6994, + [7191] = 6776, + [7192] = 6821, + [7193] = 6731, + [7194] = 6829, + [7195] = 6949, + [7196] = 6961, + [7197] = 6800, + [7198] = 6798, + [7199] = 6974, + [7200] = 6796, + [7201] = 6976, + [7202] = 6941, + [7203] = 6981, + [7204] = 7204, + [7205] = 6994, + [7206] = 6776, + [7207] = 6949, + [7208] = 6765, + [7209] = 6789, + [7210] = 6956, + [7211] = 6961, + [7212] = 6788, + [7213] = 6829, + [7214] = 6731, + [7215] = 6981, + [7216] = 6776, + [7217] = 6955, + [7218] = 6821, + [7219] = 6961, + [7220] = 6942, + [7221] = 6776, + [7222] = 6941, + [7223] = 6961, + [7224] = 6787, + [7225] = 6838, + [7226] = 7226, + [7227] = 7227, + [7228] = 7228, + [7229] = 6867, + [7230] = 6786, + [7231] = 6827, + [7232] = 6779, + [7233] = 6778, + [7234] = 6773, + [7235] = 6932, + [7236] = 7236, + [7237] = 6951, + [7238] = 6769, + [7239] = 6857, + [7240] = 6768, + [7241] = 6856, + [7242] = 6992, + [7243] = 6761, + [7244] = 6760, + [7245] = 6754, + [7246] = 6752, + [7247] = 6750, + [7248] = 6854, + [7249] = 6748, + [7250] = 6755, + [7251] = 7226, + [7252] = 7227, + [7253] = 7228, + [7254] = 6746, + [7255] = 6980, + [7256] = 7256, + [7257] = 7228, + [7258] = 6985, + [7259] = 6992, + [7260] = 7227, + [7261] = 6732, + [7262] = 6738, + [7263] = 6739, + [7264] = 6762, + [7265] = 7226, + [7266] = 7227, + [7267] = 7228, + [7268] = 6937, + [7269] = 6828, + [7270] = 6772, + [7271] = 6992, + [7272] = 6813, + [7273] = 6815, + [7274] = 6961, + [7275] = 6997, + [7276] = 6826, + [7277] = 7226, + [7278] = 7227, + [7279] = 7228, + [7280] = 6992, + [7281] = 6928, + [7282] = 6751, + [7283] = 6917, + [7284] = 7226, + [7285] = 7227, + [7286] = 7228, + [7287] = 6992, + [7288] = 6915, + [7289] = 7226, + [7290] = 7227, + [7291] = 7228, + [7292] = 6992, + [7293] = 6992, + [7294] = 6929, + [7295] = 6905, + [7296] = 6846, + [7297] = 6924, + [7298] = 6824, + [7299] = 6848, + [7300] = 6755, + [7301] = 6954, + [7302] = 6849, + [7303] = 6940, + [7304] = 6952, + [7305] = 6850, + [7306] = 6744, + [7307] = 6743, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -10756,424 +11201,424 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(246); - if (lookahead == '!') ADVANCE(302); - if (lookahead == '"') ADVANCE(420); - if (lookahead == '#') ADVANCE(213); - if (lookahead == '%') ADVANCE(326); - if (lookahead == '&') ADVANCE(336); - if (lookahead == '\'') ADVANCE(411); - if (lookahead == '(') ADVANCE(251); - if (lookahead == ')') ADVANCE(254); - if (lookahead == '*') ADVANCE(322); - if (lookahead == '+') ADVANCE(316); - if (lookahead == ',') ADVANCE(253); - if (lookahead == '-') ADVANCE(305); - if (lookahead == '.') ADVANCE(386); - if (lookahead == '/') ADVANCE(324); - if (lookahead == '0') ADVANCE(396); - if (lookahead == ':') ADVANCE(370); - if (lookahead == ';') ADVANCE(354); - if (lookahead == '<') ADVANCE(346); - if (lookahead == '=') ADVANCE(366); - if (lookahead == '>') ADVANCE(503); - if (lookahead == '?') ADVANCE(371); - if (lookahead == 'F') ADVANCE(451); - if (lookahead == 'L') ADVANCE(434); - if (lookahead == 'T') ADVANCE(455); - if (lookahead == 'U') ADVANCE(436); - if (lookahead == '[') ADVANCE(362); - if (lookahead == '\\') SKIP(241) - if (lookahead == ']') ADVANCE(364); - if (lookahead == '^') ADVANCE(333); - if (lookahead == 'b') ADVANCE(484); - if (lookahead == 'c') ADVANCE(469); - if (lookahead == 'd') ADVANCE(480); - if (lookahead == 'f') ADVANCE(459); - if (lookahead == 'i') ADVANCE(478); - if (lookahead == 's') ADVANCE(470); - if (lookahead == 't') ADVANCE(487); - if (lookahead == 'u') ADVANCE(438); - if (lookahead == 'v') ADVANCE(483); - if (lookahead == '{') ADVANCE(358); - if (lookahead == '|') ADVANCE(330); - if (lookahead == '}') ADVANCE(359); - if (lookahead == '~') ADVANCE(303); + if (eof) ADVANCE(262); + if (lookahead == '!') ADVANCE(318); + if (lookahead == '"') ADVANCE(436); + if (lookahead == '#') ADVANCE(229); + if (lookahead == '%') ADVANCE(342); + if (lookahead == '&') ADVANCE(352); + if (lookahead == '\'') ADVANCE(427); + if (lookahead == '(') ADVANCE(267); + if (lookahead == ')') ADVANCE(270); + if (lookahead == '*') ADVANCE(338); + if (lookahead == '+') ADVANCE(332); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(321); + if (lookahead == '.') ADVANCE(402); + if (lookahead == '/') ADVANCE(340); + if (lookahead == '0') ADVANCE(412); + if (lookahead == ':') ADVANCE(386); + if (lookahead == ';') ADVANCE(370); + if (lookahead == '<') ADVANCE(362); + if (lookahead == '=') ADVANCE(382); + if (lookahead == '>') ADVANCE(519); + if (lookahead == '?') ADVANCE(387); + if (lookahead == 'F') ADVANCE(467); + if (lookahead == 'L') ADVANCE(450); + if (lookahead == 'T') ADVANCE(471); + if (lookahead == 'U') ADVANCE(452); + if (lookahead == '[') ADVANCE(378); + if (lookahead == '\\') SKIP(257) + if (lookahead == ']') ADVANCE(380); + if (lookahead == '^') ADVANCE(349); + if (lookahead == 'b') ADVANCE(500); + if (lookahead == 'c') ADVANCE(485); + if (lookahead == 'd') ADVANCE(496); + if (lookahead == 'f') ADVANCE(475); + if (lookahead == 'i') ADVANCE(494); + if (lookahead == 's') ADVANCE(486); + if (lookahead == 't') ADVANCE(503); + if (lookahead == 'u') ADVANCE(454); + if (lookahead == 'v') ADVANCE(499); + if (lookahead == '{') ADVANCE(374); + if (lookahead == '|') ADVANCE(346); + if (lookahead == '}') ADVANCE(375); + if (lookahead == '~') ADVANCE(319); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(244) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(398); + lookahead == ' ') SKIP(260) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(414); if (('A' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); case 1: - if (lookahead == '\n') SKIP(128) + if (lookahead == '\n') SKIP(138) END_STATE(); case 2: - if (lookahead == '\n') SKIP(128) + if (lookahead == '\n') SKIP(138) if (lookahead == '\r') SKIP(1) END_STATE(); case 3: - if (lookahead == '\n') SKIP(130) + if (lookahead == '\n') SKIP(140) END_STATE(); case 4: - if (lookahead == '\n') SKIP(130) + if (lookahead == '\n') SKIP(140) if (lookahead == '\r') SKIP(3) END_STATE(); case 5: - if (lookahead == '\n') SKIP(129) + if (lookahead == '\n') SKIP(139) END_STATE(); case 6: - if (lookahead == '\n') SKIP(129) + if (lookahead == '\n') SKIP(139) if (lookahead == '\r') SKIP(5) END_STATE(); case 7: - if (lookahead == '\n') SKIP(131) + if (lookahead == '\n') SKIP(141) END_STATE(); case 8: - if (lookahead == '\n') SKIP(131) + if (lookahead == '\n') SKIP(141) if (lookahead == '\r') SKIP(7) END_STATE(); case 9: - if (lookahead == '\n') SKIP(180) + if (lookahead == '\n') SKIP(196) END_STATE(); case 10: - if (lookahead == '\n') SKIP(180) + if (lookahead == '\n') SKIP(196) if (lookahead == '\r') SKIP(9) END_STATE(); case 11: - if (lookahead == '\n') SKIP(179) + if (lookahead == '\n') SKIP(132) END_STATE(); case 12: - if (lookahead == '\n') SKIP(179) + if (lookahead == '\n') SKIP(132) if (lookahead == '\r') SKIP(11) END_STATE(); case 13: - if (lookahead == '\n') SKIP(145) + if (lookahead == '\n') SKIP(131) END_STATE(); case 14: - if (lookahead == '\n') SKIP(145) + if (lookahead == '\n') SKIP(131) if (lookahead == '\r') SKIP(13) END_STATE(); case 15: - if (lookahead == '\n') SKIP(132) + if (lookahead == '\n') SKIP(195) END_STATE(); case 16: - if (lookahead == '\n') SKIP(132) + if (lookahead == '\n') SKIP(195) if (lookahead == '\r') SKIP(15) END_STATE(); case 17: - if (lookahead == '\n') SKIP(122) + if (lookahead == '\n') SKIP(154) END_STATE(); case 18: - if (lookahead == '\n') SKIP(122) + if (lookahead == '\n') SKIP(154) if (lookahead == '\r') SKIP(17) END_STATE(); case 19: - if (lookahead == '\n') SKIP(121) + if (lookahead == '\n') SKIP(133) END_STATE(); case 20: - if (lookahead == '\n') SKIP(121) + if (lookahead == '\n') SKIP(133) if (lookahead == '\r') SKIP(19) END_STATE(); case 21: - if (lookahead == '\n') SKIP(123) + if (lookahead == '\n') SKIP(142) END_STATE(); case 22: - if (lookahead == '\n') SKIP(123) + if (lookahead == '\n') SKIP(142) if (lookahead == '\r') SKIP(21) END_STATE(); case 23: - if (lookahead == '\n') SKIP(126) + if (lookahead == '\n') SKIP(136) END_STATE(); case 24: - if (lookahead == '\n') SKIP(126) + if (lookahead == '\n') SKIP(136) if (lookahead == '\r') SKIP(23) END_STATE(); case 25: - if (lookahead == '\n') SKIP(152) + if (lookahead == '\n') SKIP(155) END_STATE(); case 26: - if (lookahead == '\n') SKIP(152) + if (lookahead == '\n') SKIP(155) if (lookahead == '\r') SKIP(25) END_STATE(); case 27: - if (lookahead == '\n') SKIP(147) + if (lookahead == '\n') SKIP(156) END_STATE(); case 28: - if (lookahead == '\n') SKIP(147) + if (lookahead == '\n') SKIP(156) if (lookahead == '\r') SKIP(27) END_STATE(); case 29: - if (lookahead == '\n') SKIP(146) + if (lookahead == '\n') SKIP(165) END_STATE(); case 30: - if (lookahead == '\n') SKIP(146) + if (lookahead == '\n') SKIP(165) if (lookahead == '\r') SKIP(29) END_STATE(); case 31: - if (lookahead == '\n') SKIP(154) + if (lookahead == '\n') SKIP(167) END_STATE(); case 32: - if (lookahead == '\n') SKIP(154) + if (lookahead == '\n') SKIP(167) if (lookahead == '\r') SKIP(31) END_STATE(); case 33: - if (lookahead == '\n') SKIP(156) + if (lookahead == '\n') SKIP(159) END_STATE(); case 34: - if (lookahead == '\n') SKIP(156) + if (lookahead == '\n') SKIP(159) if (lookahead == '\r') SKIP(33) END_STATE(); case 35: - if (lookahead == '\n') SKIP(137) + if (lookahead == '\n') SKIP(168) END_STATE(); case 36: - if (lookahead == '\n') SKIP(137) + if (lookahead == '\n') SKIP(168) if (lookahead == '\r') SKIP(35) END_STATE(); case 37: - if (lookahead == '\n') SKIP(150) + if (lookahead == '\n') SKIP(174) END_STATE(); case 38: - if (lookahead == '\n') SKIP(150) + if (lookahead == '\n') SKIP(174) if (lookahead == '\r') SKIP(37) END_STATE(); case 39: - if (lookahead == '\n') SKIP(157) + if (lookahead == '\n') SKIP(172) END_STATE(); case 40: - if (lookahead == '\n') SKIP(157) + if (lookahead == '\n') SKIP(172) if (lookahead == '\r') SKIP(39) END_STATE(); case 41: - if (lookahead == '\n') SKIP(135) + if (lookahead == '\n') SKIP(166) END_STATE(); case 42: - if (lookahead == '\n') SKIP(135) + if (lookahead == '\n') SKIP(166) if (lookahead == '\r') SKIP(41) END_STATE(); case 43: - if (lookahead == '\n') SKIP(161) + if (lookahead == '\n') SKIP(137) END_STATE(); case 44: - if (lookahead == '\n') SKIP(161) + if (lookahead == '\n') SKIP(137) if (lookahead == '\r') SKIP(43) END_STATE(); case 45: - if (lookahead == '\n') SKIP(159) + if (lookahead == '\n') SKIP(180) END_STATE(); case 46: - if (lookahead == '\n') SKIP(159) + if (lookahead == '\n') SKIP(180) if (lookahead == '\r') SKIP(45) END_STATE(); case 47: - if (lookahead == '\n') SKIP(139) + if (lookahead == '\n') SKIP(181) END_STATE(); case 48: - if (lookahead == '\n') SKIP(139) + if (lookahead == '\n') SKIP(181) if (lookahead == '\r') SKIP(47) END_STATE(); case 49: - if (lookahead == '\n') SKIP(140) + if (lookahead == '\n') SKIP(158) END_STATE(); case 50: - if (lookahead == '\n') SKIP(140) + if (lookahead == '\n') SKIP(158) if (lookahead == '\r') SKIP(49) END_STATE(); case 51: - if (lookahead == '\n') SKIP(155) + if (lookahead == '\n') SKIP(173) END_STATE(); case 52: - if (lookahead == '\n') SKIP(155) + if (lookahead == '\n') SKIP(173) if (lookahead == '\r') SKIP(51) END_STATE(); case 53: - if (lookahead == '\n') SKIP(181) + if (lookahead == '\n') SKIP(191) END_STATE(); case 54: - if (lookahead == '\n') SKIP(181) + if (lookahead == '\n') SKIP(191) if (lookahead == '\r') SKIP(53) END_STATE(); case 55: - if (lookahead == '\n') SKIP(158) + if (lookahead == '\n') SKIP(197) END_STATE(); case 56: - if (lookahead == '\n') SKIP(158) + if (lookahead == '\n') SKIP(197) if (lookahead == '\r') SKIP(55) END_STATE(); case 57: - if (lookahead == '\n') SKIP(149) + if (lookahead == '\n') SKIP(200) END_STATE(); case 58: - if (lookahead == '\n') SKIP(149) + if (lookahead == '\n') SKIP(200) if (lookahead == '\r') SKIP(57) END_STATE(); case 59: - if (lookahead == '\n') SKIP(127) + if (lookahead == '\n') SKIP(199) END_STATE(); case 60: - if (lookahead == '\n') SKIP(127) + if (lookahead == '\n') SKIP(199) if (lookahead == '\r') SKIP(59) END_STATE(); case 61: - if (lookahead == '\n') SKIP(160) + if (lookahead == '\n') SKIP(178) END_STATE(); case 62: - if (lookahead == '\n') SKIP(160) + if (lookahead == '\n') SKIP(178) if (lookahead == '\r') SKIP(61) END_STATE(); case 63: - if (lookahead == '\n') SKIP(162) + if (lookahead == '\n') SKIP(202) END_STATE(); case 64: - if (lookahead == '\n') SKIP(162) + if (lookahead == '\n') SKIP(202) if (lookahead == '\r') SKIP(63) END_STATE(); case 65: - if (lookahead == '\n') SKIP(184) + if (lookahead == '\n') SKIP(201) END_STATE(); case 66: - if (lookahead == '\n') SKIP(184) + if (lookahead == '\n') SKIP(201) if (lookahead == '\r') SKIP(65) END_STATE(); case 67: - if (lookahead == '\n') SKIP(183) + if (lookahead == '\n') SKIP(143) END_STATE(); case 68: - if (lookahead == '\n') SKIP(183) + if (lookahead == '\n') SKIP(143) if (lookahead == '\r') SKIP(67) END_STATE(); case 69: - if (lookahead == '\n') SKIP(163) + if (lookahead == '\n') SKIP(71) END_STATE(); case 70: - if (lookahead == '\n') SKIP(163) + if (lookahead == '\n') SKIP(71) if (lookahead == '\r') SKIP(69) END_STATE(); case 71: - if (lookahead == '\n') SKIP(186) + if (lookahead == '\n') ADVANCE(264); + if (lookahead == '!') ADVANCE(218); + if (lookahead == '%') ADVANCE(341); + if (lookahead == '&') ADVANCE(351); + if (lookahead == '(') ADVANCE(316); + if (lookahead == '*') ADVANCE(337); + if (lookahead == '+') ADVANCE(330); + if (lookahead == '-') ADVANCE(320); + if (lookahead == '/') ADVANCE(339); + if (lookahead == '<') ADVANCE(365); + if (lookahead == '=') ADVANCE(219); + if (lookahead == '>') ADVANCE(356); + if (lookahead == '\\') SKIP(70) + if (lookahead == '^') ADVANCE(348); + if (lookahead == '|') ADVANCE(347); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(71) END_STATE(); case 72: - if (lookahead == '\n') SKIP(186) - if (lookahead == '\r') SKIP(71) + if (lookahead == '\n') SKIP(203) END_STATE(); case 73: - if (lookahead == '\n') SKIP(185) + if (lookahead == '\n') SKIP(203) + if (lookahead == '\r') SKIP(72) END_STATE(); case 74: - if (lookahead == '\n') SKIP(185) - if (lookahead == '\r') SKIP(73) + if (lookahead == '\n') SKIP(192) END_STATE(); case 75: - if (lookahead == '\n') SKIP(133) + if (lookahead == '\n') SKIP(192) + if (lookahead == '\r') SKIP(74) END_STATE(); case 76: - if (lookahead == '\n') SKIP(133) - if (lookahead == '\r') SKIP(75) + if (lookahead == '\n') SKIP(193) + if (lookahead == '"') ADVANCE(436); + if (lookahead == '/') ADVANCE(437); + if (lookahead == '\\') ADVANCE(77); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(440); + if (lookahead != 0) ADVANCE(441); END_STATE(); case 77: - if (lookahead == '\n') SKIP(79) + if (lookahead == '\n') ADVANCE(443); + if (lookahead == '\r') ADVANCE(442); + if (lookahead == 'U') ADVANCE(254); + if (lookahead == 'u') ADVANCE(250); + if (lookahead == 'x') ADVANCE(248); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(445); + if (lookahead != 0) ADVANCE(442); END_STATE(); case 78: - if (lookahead == '\n') SKIP(79) - if (lookahead == '\r') SKIP(77) + if (lookahead == '\n') ADVANCE(265); + if (lookahead == '(') ADVANCE(267); + if (lookahead == '/') ADVANCE(309); + if (lookahead == '\\') ADVANCE(307); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(306); + if (lookahead != 0) ADVANCE(310); END_STATE(); case 79: - if (lookahead == '\n') ADVANCE(248); - if (lookahead == '!') ADVANCE(202); - if (lookahead == '%') ADVANCE(325); - if (lookahead == '&') ADVANCE(335); - if (lookahead == '(') ADVANCE(300); - if (lookahead == '*') ADVANCE(321); - if (lookahead == '+') ADVANCE(314); - if (lookahead == '-') ADVANCE(304); - if (lookahead == '/') ADVANCE(323); - if (lookahead == '<') ADVANCE(349); - if (lookahead == '=') ADVANCE(203); - if (lookahead == '>') ADVANCE(340); - if (lookahead == '\\') SKIP(78) - if (lookahead == '^') ADVANCE(332); - if (lookahead == '|') ADVANCE(331); + if (lookahead == '\n') ADVANCE(265); + if (lookahead == '/') ADVANCE(309); + if (lookahead == '\\') ADVANCE(307); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(79) + lookahead == ' ') ADVANCE(306); + if (lookahead != 0) ADVANCE(310); END_STATE(); case 80: - if (lookahead == '\n') SKIP(187) + if (lookahead == '\n') SKIP(215) + if (lookahead == '/') ADVANCE(430); + if (lookahead == '\\') ADVANCE(429); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(431); + if (lookahead != 0 && + lookahead != '\'') ADVANCE(428); END_STATE(); case 81: - if (lookahead == '\n') SKIP(187) - if (lookahead == '\r') SKIP(80) + if (lookahead == '\n') SKIP(134) END_STATE(); case 82: - if (lookahead == '\n') SKIP(172) + if (lookahead == '\n') SKIP(134) + if (lookahead == '\r') SKIP(81) END_STATE(); case 83: - if (lookahead == '\n') SKIP(172) - if (lookahead == '\r') SKIP(82) + if (lookahead == '\n') SKIP(135) END_STATE(); case 84: - if (lookahead == '\n') SKIP(173) - if (lookahead == '"') ADVANCE(420); - if (lookahead == '/') ADVANCE(421); - if (lookahead == '\\') ADVANCE(85); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(424); - if (lookahead != 0) ADVANCE(425); + if (lookahead == '\n') SKIP(135) + if (lookahead == '\r') SKIP(83) END_STATE(); case 85: - if (lookahead == '\n') ADVANCE(427); - if (lookahead == '\r') ADVANCE(426); - if (lookahead == 'U') ADVANCE(238); - if (lookahead == 'u') ADVANCE(234); - if (lookahead == 'x') ADVANCE(232); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(429); - if (lookahead != 0) ADVANCE(426); + if (lookahead == '\n') SKIP(163) END_STATE(); case 86: - if (lookahead == '\n') ADVANCE(249); - if (lookahead == '(') ADVANCE(251); - if (lookahead == '/') ADVANCE(293); - if (lookahead == '\\') ADVANCE(291); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(290); - if (lookahead != 0) ADVANCE(294); + if (lookahead == '\n') SKIP(163) + if (lookahead == '\r') SKIP(85) END_STATE(); case 87: - if (lookahead == '\n') ADVANCE(249); - if (lookahead == '/') ADVANCE(293); - if (lookahead == '\\') ADVANCE(291); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(290); - if (lookahead != 0) ADVANCE(294); + if (lookahead == '\n') SKIP(157) END_STATE(); case 88: - if (lookahead == '\n') SKIP(199) - if (lookahead == '/') ADVANCE(414); - if (lookahead == '\\') ADVANCE(413); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(415); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(412); + if (lookahead == '\n') SKIP(157) + if (lookahead == '\r') SKIP(87) END_STATE(); case 89: - if (lookahead == '\n') SKIP(124) + if (lookahead == '\n') SKIP(183) END_STATE(); case 90: - if (lookahead == '\n') SKIP(124) + if (lookahead == '\n') SKIP(183) if (lookahead == '\r') SKIP(89) END_STATE(); case 91: - if (lookahead == '\n') SKIP(125) + if (lookahead == '\n') SKIP(147) END_STATE(); case 92: - if (lookahead == '\n') SKIP(125) + if (lookahead == '\n') SKIP(147) if (lookahead == '\r') SKIP(91) END_STATE(); case 93: @@ -11184,59 +11629,59 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\r') SKIP(93) END_STATE(); case 95: - if (lookahead == '\n') SKIP(165) + if (lookahead == '\n') SKIP(145) END_STATE(); case 96: - if (lookahead == '\n') SKIP(165) + if (lookahead == '\n') SKIP(145) if (lookahead == '\r') SKIP(95) END_STATE(); case 97: - if (lookahead == '\n') SKIP(148) + if (lookahead == '\n') SKIP(188) END_STATE(); case 98: - if (lookahead == '\n') SKIP(148) + if (lookahead == '\n') SKIP(188) if (lookahead == '\r') SKIP(97) END_STATE(); case 99: - if (lookahead == '\n') SKIP(168) + if (lookahead == '\n') SKIP(149) END_STATE(); case 100: - if (lookahead == '\n') SKIP(168) + if (lookahead == '\n') SKIP(149) if (lookahead == '\r') SKIP(99) END_STATE(); case 101: - if (lookahead == '\n') SKIP(142) + if (lookahead == '\n') SKIP(187) END_STATE(); case 102: - if (lookahead == '\n') SKIP(142) + if (lookahead == '\n') SKIP(187) if (lookahead == '\r') SKIP(101) END_STATE(); case 103: - if (lookahead == '\n') SKIP(153) + if (lookahead == '\n') SKIP(169) END_STATE(); case 104: - if (lookahead == '\n') SKIP(153) + if (lookahead == '\n') SKIP(169) if (lookahead == '\r') SKIP(103) END_STATE(); case 105: - if (lookahead == '\n') SKIP(171) + if (lookahead == '\n') SKIP(175) END_STATE(); case 106: - if (lookahead == '\n') SKIP(171) + if (lookahead == '\n') SKIP(175) if (lookahead == '\r') SKIP(105) END_STATE(); case 107: - if (lookahead == '\n') SKIP(170) + if (lookahead == '\n') SKIP(198) END_STATE(); case 108: - if (lookahead == '\n') SKIP(170) + if (lookahead == '\n') SKIP(198) if (lookahead == '\r') SKIP(107) END_STATE(); case 109: - if (lookahead == '\n') SKIP(144) + if (lookahead == '\n') SKIP(179) END_STATE(); case 110: - if (lookahead == '\n') SKIP(144) + if (lookahead == '\n') SKIP(179) if (lookahead == '\r') SKIP(109) END_STATE(); case 111: @@ -11247,4225 +11692,4550 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\r') SKIP(111) END_STATE(); case 113: - if (lookahead == '\n') SKIP(151) + if (lookahead == '\n') SKIP(184) END_STATE(); case 114: - if (lookahead == '\n') SKIP(151) + if (lookahead == '\n') SKIP(184) if (lookahead == '\r') SKIP(113) END_STATE(); case 115: - if (lookahead == '\n') SKIP(167) + if (lookahead == '\n') SKIP(171) END_STATE(); case 116: - if (lookahead == '\n') SKIP(167) + if (lookahead == '\n') SKIP(171) if (lookahead == '\r') SKIP(115) END_STATE(); case 117: - if (lookahead == '\n') SKIP(169) + if (lookahead == '\n') SKIP(160) END_STATE(); case 118: - if (lookahead == '\n') SKIP(169) + if (lookahead == '\n') SKIP(160) if (lookahead == '\r') SKIP(117) END_STATE(); case 119: - if (lookahead == '\n') SKIP(166) + if (lookahead == '\n') SKIP(177) END_STATE(); case 120: - if (lookahead == '\n') SKIP(166) + if (lookahead == '\n') SKIP(177) if (lookahead == '\r') SKIP(119) END_STATE(); case 121: - if (lookahead == '!') ADVANCE(302); - if (lookahead == '"') ADVANCE(420); - if (lookahead == '%') ADVANCE(326); - if (lookahead == '&') ADVANCE(336); - if (lookahead == '\'') ADVANCE(411); - if (lookahead == '(') ADVANCE(300); - if (lookahead == ')') ADVANCE(254); - if (lookahead == '*') ADVANCE(322); - if (lookahead == '+') ADVANCE(316); - if (lookahead == ',') ADVANCE(253); - if (lookahead == '-') ADVANCE(305); - if (lookahead == '.') ADVANCE(386); - if (lookahead == '/') ADVANCE(324); - if (lookahead == '0') ADVANCE(396); - if (lookahead == ':') ADVANCE(200); - if (lookahead == '<') ADVANCE(346); - if (lookahead == '=') ADVANCE(366); - if (lookahead == '>') ADVANCE(341); - if (lookahead == '?') ADVANCE(371); - if (lookahead == 'F') ADVANCE(451); - if (lookahead == 'L') ADVANCE(434); - if (lookahead == 'T') ADVANCE(455); - if (lookahead == 'U') ADVANCE(436); - if (lookahead == '[') ADVANCE(360); - if (lookahead == '\\') SKIP(20) - if (lookahead == '^') ADVANCE(333); - if (lookahead == 'b') ADVANCE(484); - if (lookahead == 'c') ADVANCE(469); - if (lookahead == 'd') ADVANCE(480); - if (lookahead == 'f') ADVANCE(459); - if (lookahead == 'i') ADVANCE(478); - if (lookahead == 's') ADVANCE(470); - if (lookahead == 't') ADVANCE(487); - if (lookahead == 'u') ADVANCE(438); - if (lookahead == 'v') ADVANCE(483); - if (lookahead == '{') ADVANCE(358); - if (lookahead == '|') ADVANCE(330); - if (lookahead == '~') ADVANCE(303); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(121) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(398); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + if (lookahead == '\n') SKIP(151) END_STATE(); case 122: - if (lookahead == '!') ADVANCE(302); - if (lookahead == '"') ADVANCE(420); - if (lookahead == '%') ADVANCE(326); - if (lookahead == '&') ADVANCE(336); - if (lookahead == '\'') ADVANCE(411); - if (lookahead == '(') ADVANCE(300); - if (lookahead == ')') ADVANCE(254); - if (lookahead == '*') ADVANCE(322); - if (lookahead == '+') ADVANCE(316); - if (lookahead == ',') ADVANCE(253); - if (lookahead == '-') ADVANCE(306); - if (lookahead == '.') ADVANCE(388); - if (lookahead == '/') ADVANCE(324); - if (lookahead == '0') ADVANCE(396); - if (lookahead == ':') ADVANCE(370); - if (lookahead == ';') ADVANCE(354); - if (lookahead == '<') ADVANCE(346); - if (lookahead == '=') ADVANCE(366); - if (lookahead == '>') ADVANCE(341); - if (lookahead == '?') ADVANCE(371); - if (lookahead == 'F') ADVANCE(451); - if (lookahead == 'L') ADVANCE(434); - if (lookahead == 'T') ADVANCE(455); - if (lookahead == 'U') ADVANCE(436); - if (lookahead == '[') ADVANCE(360); - if (lookahead == '\\') SKIP(18) - if (lookahead == ']') ADVANCE(364); - if (lookahead == '^') ADVANCE(333); - if (lookahead == 'b') ADVANCE(484); - if (lookahead == 'c') ADVANCE(469); - if (lookahead == 'd') ADVANCE(480); - if (lookahead == 'f') ADVANCE(459); - if (lookahead == 'i') ADVANCE(478); - if (lookahead == 's') ADVANCE(470); - if (lookahead == 't') ADVANCE(487); - if (lookahead == 'u') ADVANCE(438); - if (lookahead == 'v') ADVANCE(483); - if (lookahead == '{') ADVANCE(358); - if (lookahead == '|') ADVANCE(330); - if (lookahead == '}') ADVANCE(359); - if (lookahead == '~') ADVANCE(303); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(122) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(398); - if (('A' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + if (lookahead == '\n') SKIP(151) + if (lookahead == '\r') SKIP(121) END_STATE(); case 123: - if (lookahead == '!') ADVANCE(302); - if (lookahead == '"') ADVANCE(420); - if (lookahead == '%') ADVANCE(326); - if (lookahead == '&') ADVANCE(336); - if (lookahead == '\'') ADVANCE(411); - if (lookahead == '(') ADVANCE(300); - if (lookahead == '*') ADVANCE(322); - if (lookahead == '+') ADVANCE(316); - if (lookahead == ',') ADVANCE(253); - if (lookahead == '-') ADVANCE(306); - if (lookahead == '.') ADVANCE(388); - if (lookahead == '/') ADVANCE(324); - if (lookahead == '0') ADVANCE(396); - if (lookahead == ':') ADVANCE(200); - if (lookahead == '<') ADVANCE(346); - if (lookahead == '=') ADVANCE(366); - if (lookahead == '>') ADVANCE(503); - if (lookahead == '?') ADVANCE(371); - if (lookahead == 'F') ADVANCE(451); - if (lookahead == 'L') ADVANCE(434); - if (lookahead == 'T') ADVANCE(455); - if (lookahead == 'U') ADVANCE(436); - if (lookahead == '[') ADVANCE(360); - if (lookahead == '\\') SKIP(22) - if (lookahead == '^') ADVANCE(333); - if (lookahead == 'b') ADVANCE(484); - if (lookahead == 'c') ADVANCE(469); - if (lookahead == 'd') ADVANCE(480); - if (lookahead == 'f') ADVANCE(459); - if (lookahead == 'i') ADVANCE(478); - if (lookahead == 's') ADVANCE(470); - if (lookahead == 't') ADVANCE(487); - if (lookahead == 'u') ADVANCE(438); - if (lookahead == 'v') ADVANCE(483); - if (lookahead == '{') ADVANCE(358); - if (lookahead == '|') ADVANCE(330); - if (lookahead == '~') ADVANCE(303); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(123) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(398); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + if (lookahead == '\n') SKIP(153) END_STATE(); case 124: - if (lookahead == '!') ADVANCE(302); - if (lookahead == '"') ADVANCE(420); - if (lookahead == '%') ADVANCE(325); - if (lookahead == '&') ADVANCE(335); - if (lookahead == '\'') ADVANCE(411); - if (lookahead == '(') ADVANCE(300); - if (lookahead == ')') ADVANCE(254); - if (lookahead == '*') ADVANCE(321); - if (lookahead == '+') ADVANCE(317); - if (lookahead == ',') ADVANCE(253); - if (lookahead == '-') ADVANCE(307); - if (lookahead == '.') ADVANCE(388); - if (lookahead == '/') ADVANCE(323); - if (lookahead == '0') ADVANCE(396); - if (lookahead == ':') ADVANCE(370); - if (lookahead == ';') ADVANCE(354); - if (lookahead == '<') ADVANCE(348); - if (lookahead == '=') ADVANCE(203); - if (lookahead == '>') ADVANCE(340); - if (lookahead == '?') ADVANCE(371); - if (lookahead == 'F') ADVANCE(451); - if (lookahead == 'L') ADVANCE(434); - if (lookahead == 'T') ADVANCE(455); - if (lookahead == 'U') ADVANCE(436); - if (lookahead == '[') ADVANCE(360); - if (lookahead == '\\') SKIP(90) - if (lookahead == ']') ADVANCE(364); - if (lookahead == '^') ADVANCE(332); - if (lookahead == 'b') ADVANCE(484); - if (lookahead == 'c') ADVANCE(469); - if (lookahead == 'd') ADVANCE(480); - if (lookahead == 'f') ADVANCE(459); - if (lookahead == 'i') ADVANCE(478); - if (lookahead == 's') ADVANCE(470); - if (lookahead == 't') ADVANCE(487); - if (lookahead == 'u') ADVANCE(438); - if (lookahead == 'v') ADVANCE(483); - if (lookahead == '{') ADVANCE(358); - if (lookahead == '|') ADVANCE(331); - if (lookahead == '}') ADVANCE(359); - if (lookahead == '~') ADVANCE(303); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(124) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(398); - if (('A' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + if (lookahead == '\n') SKIP(153) + if (lookahead == '\r') SKIP(123) END_STATE(); case 125: - if (lookahead == '!') ADVANCE(302); - if (lookahead == '"') ADVANCE(420); - if (lookahead == '%') ADVANCE(325); - if (lookahead == '&') ADVANCE(335); - if (lookahead == '\'') ADVANCE(411); - if (lookahead == '(') ADVANCE(300); - if (lookahead == '*') ADVANCE(321); - if (lookahead == '+') ADVANCE(317); - if (lookahead == ',') ADVANCE(253); - if (lookahead == '-') ADVANCE(307); - if (lookahead == '.') ADVANCE(388); - if (lookahead == '/') ADVANCE(323); - if (lookahead == '0') ADVANCE(396); - if (lookahead == ':') ADVANCE(200); - if (lookahead == '<') ADVANCE(348); - if (lookahead == '=') ADVANCE(203); - if (lookahead == '>') ADVANCE(503); - if (lookahead == '?') ADVANCE(371); - if (lookahead == 'F') ADVANCE(451); - if (lookahead == 'L') ADVANCE(434); - if (lookahead == 'T') ADVANCE(455); - if (lookahead == 'U') ADVANCE(436); - if (lookahead == '[') ADVANCE(360); - if (lookahead == '\\') SKIP(92) - if (lookahead == '^') ADVANCE(332); - if (lookahead == 'b') ADVANCE(484); - if (lookahead == 'c') ADVANCE(469); - if (lookahead == 'd') ADVANCE(480); - if (lookahead == 'f') ADVANCE(459); - if (lookahead == 'i') ADVANCE(478); - if (lookahead == 's') ADVANCE(470); - if (lookahead == 't') ADVANCE(487); - if (lookahead == 'u') ADVANCE(438); - if (lookahead == 'v') ADVANCE(483); - if (lookahead == '{') ADVANCE(358); - if (lookahead == '|') ADVANCE(331); - if (lookahead == '~') ADVANCE(303); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(125) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(398); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + if (lookahead == '\n') SKIP(162) END_STATE(); case 126: - if (lookahead == '!') ADVANCE(302); - if (lookahead == '"') ADVANCE(178); - if (lookahead == '%') ADVANCE(326); - if (lookahead == '&') ADVANCE(336); - if (lookahead == '(') ADVANCE(188); - if (lookahead == '*') ADVANCE(322); - if (lookahead == '+') ADVANCE(318); - if (lookahead == ',') ADVANCE(253); - if (lookahead == '-') ADVANCE(309); - if (lookahead == '/') ADVANCE(324); - if (lookahead == ':') ADVANCE(200); - if (lookahead == '<') ADVANCE(346); - if (lookahead == '=') ADVANCE(366); - if (lookahead == '>') ADVANCE(341); - if (lookahead == '[') ADVANCE(210); - if (lookahead == '\\') SKIP(24) - if (lookahead == '^') ADVANCE(333); - if (lookahead == 'b') ADVANCE(484); - if (lookahead == 'c') ADVANCE(469); - if (lookahead == 'd') ADVANCE(480); - if (lookahead == 'f') ADVANCE(477); - if (lookahead == 'i') ADVANCE(478); - if (lookahead == 's') ADVANCE(470); - if (lookahead == 'u') ADVANCE(473); - if (lookahead == 'v') ADVANCE(483); - if (lookahead == '|') ADVANCE(330); - if (lookahead == '~') ADVANCE(303); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(126) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + if (lookahead == '\n') SKIP(162) + if (lookahead == '\r') SKIP(125) END_STATE(); case 127: - if (lookahead == '!') ADVANCE(302); - if (lookahead == '"') ADVANCE(178); - if (lookahead == '%') ADVANCE(326); - if (lookahead == '&') ADVANCE(336); - if (lookahead == '(') ADVANCE(188); - if (lookahead == '*') ADVANCE(322); - if (lookahead == '+') ADVANCE(318); - if (lookahead == ',') ADVANCE(253); - if (lookahead == '-') ADVANCE(309); - if (lookahead == '/') ADVANCE(324); - if (lookahead == '<') ADVANCE(346); - if (lookahead == '=') ADVANCE(366); - if (lookahead == '>') ADVANCE(341); - if (lookahead == '[') ADVANCE(211); - if (lookahead == '\\') SKIP(60) - if (lookahead == '^') ADVANCE(333); - if (lookahead == '|') ADVANCE(330); - if (lookahead == '~') ADVANCE(303); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(127) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + if (lookahead == '\n') SKIP(185) END_STATE(); case 128: - if (lookahead == '!') ADVANCE(301); - if (lookahead == '"') ADVANCE(420); - if (lookahead == '#') ADVANCE(213); - if (lookahead == '&') ADVANCE(335); - if (lookahead == '\'') ADVANCE(411); - if (lookahead == '(') ADVANCE(300); - if (lookahead == '*') ADVANCE(321); - if (lookahead == '+') ADVANCE(317); - if (lookahead == ',') ADVANCE(253); - if (lookahead == '-') ADVANCE(308); - if (lookahead == '.') ADVANCE(226); - if (lookahead == '/') ADVANCE(190); - if (lookahead == '0') ADVANCE(396); - if (lookahead == ':') ADVANCE(200); - if (lookahead == ';') ADVANCE(354); - if (lookahead == '<') ADVANCE(201); - if (lookahead == '>') ADVANCE(339); - if (lookahead == 'F') ADVANCE(451); - if (lookahead == 'L') ADVANCE(434); - if (lookahead == 'T') ADVANCE(455); - if (lookahead == 'U') ADVANCE(436); - if (lookahead == '[') ADVANCE(361); - if (lookahead == '\\') SKIP(2) - if (lookahead == 'b') ADVANCE(484); - if (lookahead == 'c') ADVANCE(469); - if (lookahead == 'd') ADVANCE(480); - if (lookahead == 'f') ADVANCE(459); - if (lookahead == 'i') ADVANCE(478); - if (lookahead == 's') ADVANCE(470); - if (lookahead == 't') ADVANCE(487); - if (lookahead == 'u') ADVANCE(438); - if (lookahead == 'v') ADVANCE(483); - if (lookahead == '{') ADVANCE(358); - if (lookahead == '~') ADVANCE(303); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(128) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(398); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + if (lookahead == '\n') SKIP(185) + if (lookahead == '\r') SKIP(127) END_STATE(); case 129: - if (lookahead == '!') ADVANCE(301); - if (lookahead == '"') ADVANCE(420); - if (lookahead == '#') ADVANCE(220); - if (lookahead == '&') ADVANCE(334); - if (lookahead == '\'') ADVANCE(411); - if (lookahead == '(') ADVANCE(300); - if (lookahead == ')') ADVANCE(254); - if (lookahead == '*') ADVANCE(321); - if (lookahead == '+') ADVANCE(317); - if (lookahead == '-') ADVANCE(308); - if (lookahead == '.') ADVANCE(197); - if (lookahead == '/') ADVANCE(190); - if (lookahead == '0') ADVANCE(396); - if (lookahead == ':') ADVANCE(200); - if (lookahead == ';') ADVANCE(354); - if (lookahead == '>') ADVANCE(206); - if (lookahead == 'F') ADVANCE(451); - if (lookahead == 'L') ADVANCE(434); - if (lookahead == 'T') ADVANCE(455); - if (lookahead == 'U') ADVANCE(436); - if (lookahead == '[') ADVANCE(361); - if (lookahead == '\\') SKIP(6) - if (lookahead == 'b') ADVANCE(484); - if (lookahead == 'c') ADVANCE(469); - if (lookahead == 'd') ADVANCE(480); - if (lookahead == 'f') ADVANCE(459); - if (lookahead == 'i') ADVANCE(478); - if (lookahead == 's') ADVANCE(470); - if (lookahead == 't') ADVANCE(487); - if (lookahead == 'u') ADVANCE(438); - if (lookahead == 'v') ADVANCE(483); - if (lookahead == '{') ADVANCE(358); - if (lookahead == '~') ADVANCE(303); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(129) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(398); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + if (lookahead == '\n') SKIP(189) END_STATE(); case 130: - if (lookahead == '!') ADVANCE(301); - if (lookahead == '"') ADVANCE(420); - if (lookahead == '#') ADVANCE(215); - if (lookahead == '&') ADVANCE(335); - if (lookahead == '\'') ADVANCE(411); - if (lookahead == '(') ADVANCE(300); - if (lookahead == '*') ADVANCE(321); - if (lookahead == '+') ADVANCE(317); - if (lookahead == ',') ADVANCE(253); - if (lookahead == '-') ADVANCE(308); - if (lookahead == '.') ADVANCE(226); - if (lookahead == '/') ADVANCE(190); - if (lookahead == '0') ADVANCE(396); - if (lookahead == ':') ADVANCE(200); - if (lookahead == ';') ADVANCE(354); - if (lookahead == '>') ADVANCE(204); - if (lookahead == 'F') ADVANCE(451); - if (lookahead == 'L') ADVANCE(434); - if (lookahead == 'T') ADVANCE(455); - if (lookahead == 'U') ADVANCE(436); - if (lookahead == '[') ADVANCE(361); - if (lookahead == '\\') SKIP(4) - if (lookahead == 'b') ADVANCE(484); - if (lookahead == 'c') ADVANCE(469); - if (lookahead == 'd') ADVANCE(480); - if (lookahead == 'f') ADVANCE(459); - if (lookahead == 'i') ADVANCE(478); - if (lookahead == 's') ADVANCE(470); - if (lookahead == 't') ADVANCE(487); - if (lookahead == 'u') ADVANCE(438); - if (lookahead == 'v') ADVANCE(483); - if (lookahead == '{') ADVANCE(358); - if (lookahead == '~') ADVANCE(303); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(130) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(398); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + if (lookahead == '\n') SKIP(189) + if (lookahead == '\r') SKIP(129) END_STATE(); case 131: - if (lookahead == '!') ADVANCE(301); - if (lookahead == '"') ADVANCE(420); - if (lookahead == '&') ADVANCE(335); - if (lookahead == '\'') ADVANCE(411); - if (lookahead == '(') ADVANCE(300); - if (lookahead == ')') ADVANCE(254); - if (lookahead == '*') ADVANCE(321); - if (lookahead == '+') ADVANCE(317); - if (lookahead == ',') ADVANCE(253); - if (lookahead == '-') ADVANCE(308); - if (lookahead == '.') ADVANCE(388); - if (lookahead == '/') ADVANCE(190); - if (lookahead == '0') ADVANCE(396); - if (lookahead == ':') ADVANCE(200); - if (lookahead == '<') ADVANCE(345); - if (lookahead == '=') ADVANCE(365); - if (lookahead == '>') ADVANCE(503); - if (lookahead == 'F') ADVANCE(451); - if (lookahead == 'L') ADVANCE(434); - if (lookahead == 'T') ADVANCE(455); - if (lookahead == 'U') ADVANCE(436); - if (lookahead == '[') ADVANCE(360); - if (lookahead == '\\') SKIP(8) - if (lookahead == 'b') ADVANCE(484); - if (lookahead == 'c') ADVANCE(469); - if (lookahead == 'd') ADVANCE(480); - if (lookahead == 'f') ADVANCE(459); - if (lookahead == 'i') ADVANCE(478); - if (lookahead == 's') ADVANCE(470); - if (lookahead == 't') ADVANCE(487); - if (lookahead == 'u') ADVANCE(438); - if (lookahead == 'v') ADVANCE(483); - if (lookahead == '{') ADVANCE(358); - if (lookahead == '|') ADVANCE(224); - if (lookahead == '~') ADVANCE(303); + if (lookahead == '!') ADVANCE(318); + if (lookahead == '"') ADVANCE(436); + if (lookahead == '%') ADVANCE(342); + if (lookahead == '&') ADVANCE(352); + if (lookahead == '\'') ADVANCE(427); + if (lookahead == '(') ADVANCE(316); + if (lookahead == ')') ADVANCE(270); + if (lookahead == '*') ADVANCE(338); + if (lookahead == '+') ADVANCE(332); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(321); + if (lookahead == '.') ADVANCE(402); + if (lookahead == '/') ADVANCE(340); + if (lookahead == '0') ADVANCE(412); + if (lookahead == ':') ADVANCE(216); + if (lookahead == '<') ADVANCE(362); + if (lookahead == '=') ADVANCE(382); + if (lookahead == '>') ADVANCE(357); + if (lookahead == '?') ADVANCE(387); + if (lookahead == 'F') ADVANCE(467); + if (lookahead == 'L') ADVANCE(450); + if (lookahead == 'T') ADVANCE(471); + if (lookahead == 'U') ADVANCE(452); + if (lookahead == '[') ADVANCE(376); + if (lookahead == '\\') SKIP(14) + if (lookahead == '^') ADVANCE(349); + if (lookahead == 'b') ADVANCE(500); + if (lookahead == 'c') ADVANCE(485); + if (lookahead == 'd') ADVANCE(496); + if (lookahead == 'f') ADVANCE(475); + if (lookahead == 'i') ADVANCE(494); + if (lookahead == 's') ADVANCE(486); + if (lookahead == 't') ADVANCE(503); + if (lookahead == 'u') ADVANCE(454); + if (lookahead == 'v') ADVANCE(499); + if (lookahead == '{') ADVANCE(374); + if (lookahead == '|') ADVANCE(346); + if (lookahead == '~') ADVANCE(319); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(131) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(398); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(414); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); case 132: - if (lookahead == '!') ADVANCE(301); - if (lookahead == '"') ADVANCE(420); - if (lookahead == '&') ADVANCE(334); - if (lookahead == '\'') ADVANCE(411); - if (lookahead == '(') ADVANCE(300); - if (lookahead == ')') ADVANCE(254); - if (lookahead == '*') ADVANCE(321); - if (lookahead == '+') ADVANCE(317); - if (lookahead == ',') ADVANCE(253); - if (lookahead == '-') ADVANCE(308); - if (lookahead == '.') ADVANCE(388); - if (lookahead == '/') ADVANCE(190); - if (lookahead == '0') ADVANCE(396); - if (lookahead == ':') ADVANCE(200); - if (lookahead == ';') ADVANCE(354); - if (lookahead == '<') ADVANCE(345); - if (lookahead == '=') ADVANCE(365); - if (lookahead == '>') ADVANCE(503); - if (lookahead == 'F') ADVANCE(451); - if (lookahead == 'L') ADVANCE(434); - if (lookahead == 'T') ADVANCE(455); - if (lookahead == 'U') ADVANCE(436); - if (lookahead == '[') ADVANCE(360); - if (lookahead == '\\') SKIP(16) - if (lookahead == ']') ADVANCE(364); - if (lookahead == 'b') ADVANCE(484); - if (lookahead == 'c') ADVANCE(469); - if (lookahead == 'd') ADVANCE(480); - if (lookahead == 'f') ADVANCE(459); - if (lookahead == 'i') ADVANCE(478); - if (lookahead == 's') ADVANCE(470); - if (lookahead == 't') ADVANCE(487); - if (lookahead == 'u') ADVANCE(438); - if (lookahead == 'v') ADVANCE(483); - if (lookahead == '{') ADVANCE(358); - if (lookahead == '}') ADVANCE(359); - if (lookahead == '~') ADVANCE(303); + if (lookahead == '!') ADVANCE(318); + if (lookahead == '"') ADVANCE(436); + if (lookahead == '%') ADVANCE(342); + if (lookahead == '&') ADVANCE(352); + if (lookahead == '\'') ADVANCE(427); + if (lookahead == '(') ADVANCE(316); + if (lookahead == ')') ADVANCE(270); + if (lookahead == '*') ADVANCE(338); + if (lookahead == '+') ADVANCE(332); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(322); + if (lookahead == '.') ADVANCE(404); + if (lookahead == '/') ADVANCE(340); + if (lookahead == '0') ADVANCE(412); + if (lookahead == ':') ADVANCE(386); + if (lookahead == ';') ADVANCE(370); + if (lookahead == '<') ADVANCE(362); + if (lookahead == '=') ADVANCE(382); + if (lookahead == '>') ADVANCE(357); + if (lookahead == '?') ADVANCE(387); + if (lookahead == 'F') ADVANCE(467); + if (lookahead == 'L') ADVANCE(450); + if (lookahead == 'T') ADVANCE(471); + if (lookahead == 'U') ADVANCE(452); + if (lookahead == '[') ADVANCE(376); + if (lookahead == '\\') SKIP(12) + if (lookahead == ']') ADVANCE(380); + if (lookahead == '^') ADVANCE(349); + if (lookahead == 'b') ADVANCE(500); + if (lookahead == 'c') ADVANCE(485); + if (lookahead == 'd') ADVANCE(496); + if (lookahead == 'f') ADVANCE(475); + if (lookahead == 'i') ADVANCE(494); + if (lookahead == 's') ADVANCE(486); + if (lookahead == 't') ADVANCE(503); + if (lookahead == 'u') ADVANCE(454); + if (lookahead == 'v') ADVANCE(499); + if (lookahead == '{') ADVANCE(374); + if (lookahead == '|') ADVANCE(346); + if (lookahead == '}') ADVANCE(375); + if (lookahead == '~') ADVANCE(319); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(132) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(398); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(414); + if (('A' <= lookahead && lookahead <= '_') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); case 133: - if (lookahead == '!') ADVANCE(301); - if (lookahead == '\'') ADVANCE(411); - if (lookahead == '(') ADVANCE(300); - if (lookahead == ')') ADVANCE(254); - if (lookahead == '+') ADVANCE(319); - if (lookahead == '-') ADVANCE(312); - if (lookahead == '.') ADVANCE(226); - if (lookahead == '/') ADVANCE(190); - if (lookahead == '0') ADVANCE(396); - if (lookahead == 'L') ADVANCE(443); - if (lookahead == 'U') ADVANCE(444); - if (lookahead == '\\') SKIP(76) - if (lookahead == 'u') ADVANCE(445); - if (lookahead == '~') ADVANCE(303); + if (lookahead == '!') ADVANCE(318); + if (lookahead == '"') ADVANCE(436); + if (lookahead == '%') ADVANCE(342); + if (lookahead == '&') ADVANCE(352); + if (lookahead == '\'') ADVANCE(427); + if (lookahead == '(') ADVANCE(316); + if (lookahead == '*') ADVANCE(338); + if (lookahead == '+') ADVANCE(332); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(322); + if (lookahead == '.') ADVANCE(404); + if (lookahead == '/') ADVANCE(340); + if (lookahead == '0') ADVANCE(412); + if (lookahead == ':') ADVANCE(216); + if (lookahead == '<') ADVANCE(362); + if (lookahead == '=') ADVANCE(382); + if (lookahead == '>') ADVANCE(519); + if (lookahead == '?') ADVANCE(387); + if (lookahead == 'F') ADVANCE(467); + if (lookahead == 'L') ADVANCE(450); + if (lookahead == 'T') ADVANCE(471); + if (lookahead == 'U') ADVANCE(452); + if (lookahead == '[') ADVANCE(376); + if (lookahead == '\\') SKIP(20) + if (lookahead == '^') ADVANCE(349); + if (lookahead == 'b') ADVANCE(500); + if (lookahead == 'c') ADVANCE(485); + if (lookahead == 'd') ADVANCE(496); + if (lookahead == 'f') ADVANCE(475); + if (lookahead == 'i') ADVANCE(494); + if (lookahead == 's') ADVANCE(486); + if (lookahead == 't') ADVANCE(503); + if (lookahead == 'u') ADVANCE(454); + if (lookahead == 'v') ADVANCE(499); + if (lookahead == '{') ADVANCE(374); + if (lookahead == '|') ADVANCE(346); + if (lookahead == '~') ADVANCE(319); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(133) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(398); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(414); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); case 134: - if (lookahead == '!') ADVANCE(202); - if (lookahead == '"') ADVANCE(420); - if (lookahead == '%') ADVANCE(326); - if (lookahead == '&') ADVANCE(336); - if (lookahead == '(') ADVANCE(300); - if (lookahead == ')') ADVANCE(254); - if (lookahead == '*') ADVANCE(322); - if (lookahead == '+') ADVANCE(318); - if (lookahead == ',') ADVANCE(253); - if (lookahead == '-') ADVANCE(309); - if (lookahead == '.') ADVANCE(385); - if (lookahead == '/') ADVANCE(324); - if (lookahead == '<') ADVANCE(346); - if (lookahead == '=') ADVANCE(366); - if (lookahead == '>') ADVANCE(341); - if (lookahead == '?') ADVANCE(371); - if (lookahead == 'L') ADVANCE(509); - if (lookahead == 'U') ADVANCE(510); - if (lookahead == '[') ADVANCE(360); - if (lookahead == '\\') SKIP(42) - if (lookahead == '^') ADVANCE(333); - if (lookahead == 'u') ADVANCE(511); - if (lookahead == '|') ADVANCE(330); + if (lookahead == '!') ADVANCE(318); + if (lookahead == '"') ADVANCE(436); + if (lookahead == '%') ADVANCE(341); + if (lookahead == '&') ADVANCE(351); + if (lookahead == '\'') ADVANCE(427); + if (lookahead == '(') ADVANCE(316); + if (lookahead == ')') ADVANCE(270); + if (lookahead == '*') ADVANCE(337); + if (lookahead == '+') ADVANCE(333); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(323); + if (lookahead == '.') ADVANCE(404); + if (lookahead == '/') ADVANCE(339); + if (lookahead == '0') ADVANCE(412); + if (lookahead == ':') ADVANCE(386); + if (lookahead == ';') ADVANCE(370); + if (lookahead == '<') ADVANCE(364); + if (lookahead == '=') ADVANCE(219); + if (lookahead == '>') ADVANCE(356); + if (lookahead == '?') ADVANCE(387); + if (lookahead == 'F') ADVANCE(467); + if (lookahead == 'L') ADVANCE(450); + if (lookahead == 'T') ADVANCE(471); + if (lookahead == 'U') ADVANCE(452); + if (lookahead == '[') ADVANCE(376); + if (lookahead == '\\') SKIP(82) + if (lookahead == ']') ADVANCE(380); + if (lookahead == '^') ADVANCE(348); + if (lookahead == 'b') ADVANCE(500); + if (lookahead == 'c') ADVANCE(485); + if (lookahead == 'd') ADVANCE(496); + if (lookahead == 'f') ADVANCE(475); + if (lookahead == 'i') ADVANCE(494); + if (lookahead == 's') ADVANCE(486); + if (lookahead == 't') ADVANCE(503); + if (lookahead == 'u') ADVANCE(454); + if (lookahead == 'v') ADVANCE(499); + if (lookahead == '{') ADVANCE(374); + if (lookahead == '|') ADVANCE(347); + if (lookahead == '}') ADVANCE(375); + if (lookahead == '~') ADVANCE(319); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(135) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(513); + lookahead == ' ') SKIP(134) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(414); + if (('A' <= lookahead && lookahead <= '_') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); case 135: - if (lookahead == '!') ADVANCE(202); - if (lookahead == '"') ADVANCE(420); - if (lookahead == '%') ADVANCE(326); - if (lookahead == '&') ADVANCE(336); - if (lookahead == '(') ADVANCE(300); - if (lookahead == ')') ADVANCE(254); - if (lookahead == '*') ADVANCE(322); - if (lookahead == '+') ADVANCE(318); - if (lookahead == ',') ADVANCE(253); - if (lookahead == '-') ADVANCE(309); - if (lookahead == '.') ADVANCE(385); - if (lookahead == '/') ADVANCE(324); - if (lookahead == '<') ADVANCE(346); - if (lookahead == '=') ADVANCE(366); - if (lookahead == '>') ADVANCE(341); - if (lookahead == '?') ADVANCE(371); - if (lookahead == 'L') ADVANCE(174); - if (lookahead == 'U') ADVANCE(175); - if (lookahead == '[') ADVANCE(360); - if (lookahead == '\\') SKIP(42) - if (lookahead == '^') ADVANCE(333); - if (lookahead == 'u') ADVANCE(176); - if (lookahead == '|') ADVANCE(330); + if (lookahead == '!') ADVANCE(318); + if (lookahead == '"') ADVANCE(436); + if (lookahead == '%') ADVANCE(341); + if (lookahead == '&') ADVANCE(351); + if (lookahead == '\'') ADVANCE(427); + if (lookahead == '(') ADVANCE(316); + if (lookahead == '*') ADVANCE(337); + if (lookahead == '+') ADVANCE(333); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(323); + if (lookahead == '.') ADVANCE(404); + if (lookahead == '/') ADVANCE(339); + if (lookahead == '0') ADVANCE(412); + if (lookahead == ':') ADVANCE(216); + if (lookahead == '<') ADVANCE(364); + if (lookahead == '=') ADVANCE(219); + if (lookahead == '>') ADVANCE(519); + if (lookahead == '?') ADVANCE(387); + if (lookahead == 'F') ADVANCE(467); + if (lookahead == 'L') ADVANCE(450); + if (lookahead == 'T') ADVANCE(471); + if (lookahead == 'U') ADVANCE(452); + if (lookahead == '[') ADVANCE(376); + if (lookahead == '\\') SKIP(84) + if (lookahead == '^') ADVANCE(348); + if (lookahead == 'b') ADVANCE(500); + if (lookahead == 'c') ADVANCE(485); + if (lookahead == 'd') ADVANCE(496); + if (lookahead == 'f') ADVANCE(475); + if (lookahead == 'i') ADVANCE(494); + if (lookahead == 's') ADVANCE(486); + if (lookahead == 't') ADVANCE(503); + if (lookahead == 'u') ADVANCE(454); + if (lookahead == 'v') ADVANCE(499); + if (lookahead == '{') ADVANCE(374); + if (lookahead == '|') ADVANCE(347); + if (lookahead == '~') ADVANCE(319); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(135) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(414); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); case 136: - if (lookahead == '!') ADVANCE(202); - if (lookahead == '"') ADVANCE(420); - if (lookahead == '%') ADVANCE(326); - if (lookahead == '&') ADVANCE(336); - if (lookahead == '(') ADVANCE(300); - if (lookahead == ')') ADVANCE(254); - if (lookahead == '*') ADVANCE(322); - if (lookahead == '+') ADVANCE(318); - if (lookahead == ',') ADVANCE(253); - if (lookahead == '-') ADVANCE(310); - if (lookahead == '.') ADVANCE(387); - if (lookahead == '/') ADVANCE(324); - if (lookahead == ':') ADVANCE(369); - if (lookahead == ';') ADVANCE(354); - if (lookahead == '<') ADVANCE(346); - if (lookahead == '=') ADVANCE(366); - if (lookahead == '>') ADVANCE(341); - if (lookahead == '?') ADVANCE(371); - if (lookahead == 'L') ADVANCE(509); - if (lookahead == 'U') ADVANCE(510); - if (lookahead == '[') ADVANCE(360); - if (lookahead == '\\') SKIP(36) - if (lookahead == ']') ADVANCE(364); - if (lookahead == '^') ADVANCE(333); - if (lookahead == 'u') ADVANCE(511); - if (lookahead == '|') ADVANCE(330); - if (lookahead == '}') ADVANCE(359); + if (lookahead == '!') ADVANCE(318); + if (lookahead == '"') ADVANCE(194); + if (lookahead == '%') ADVANCE(342); + if (lookahead == '&') ADVANCE(352); + if (lookahead == '(') ADVANCE(204); + if (lookahead == '*') ADVANCE(338); + if (lookahead == '+') ADVANCE(334); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(325); + if (lookahead == '/') ADVANCE(340); + if (lookahead == ':') ADVANCE(216); + if (lookahead == '<') ADVANCE(362); + if (lookahead == '=') ADVANCE(382); + if (lookahead == '>') ADVANCE(357); + if (lookahead == '[') ADVANCE(226); + if (lookahead == '\\') SKIP(24) + if (lookahead == '^') ADVANCE(349); + if (lookahead == 'b') ADVANCE(500); + if (lookahead == 'c') ADVANCE(485); + if (lookahead == 'd') ADVANCE(496); + if (lookahead == 'f') ADVANCE(493); + if (lookahead == 'i') ADVANCE(494); + if (lookahead == 's') ADVANCE(486); + if (lookahead == 'u') ADVANCE(489); + if (lookahead == 'v') ADVANCE(499); + if (lookahead == '|') ADVANCE(346); + if (lookahead == '~') ADVANCE(319); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(137) - if (('A' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(513); + lookahead == ' ') SKIP(136) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); case 137: - if (lookahead == '!') ADVANCE(202); - if (lookahead == '"') ADVANCE(420); - if (lookahead == '%') ADVANCE(326); - if (lookahead == '&') ADVANCE(336); - if (lookahead == '(') ADVANCE(300); - if (lookahead == ')') ADVANCE(254); - if (lookahead == '*') ADVANCE(322); - if (lookahead == '+') ADVANCE(318); - if (lookahead == ',') ADVANCE(253); - if (lookahead == '-') ADVANCE(310); - if (lookahead == '.') ADVANCE(387); - if (lookahead == '/') ADVANCE(324); - if (lookahead == ':') ADVANCE(369); - if (lookahead == ';') ADVANCE(354); - if (lookahead == '<') ADVANCE(346); - if (lookahead == '=') ADVANCE(366); - if (lookahead == '>') ADVANCE(341); - if (lookahead == '?') ADVANCE(371); - if (lookahead == 'L') ADVANCE(174); - if (lookahead == 'U') ADVANCE(175); - if (lookahead == '[') ADVANCE(360); - if (lookahead == '\\') SKIP(36) - if (lookahead == ']') ADVANCE(364); - if (lookahead == '^') ADVANCE(333); - if (lookahead == 'u') ADVANCE(176); - if (lookahead == '|') ADVANCE(330); - if (lookahead == '}') ADVANCE(359); + if (lookahead == '!') ADVANCE(318); + if (lookahead == '"') ADVANCE(194); + if (lookahead == '%') ADVANCE(342); + if (lookahead == '&') ADVANCE(352); + if (lookahead == '(') ADVANCE(204); + if (lookahead == '*') ADVANCE(338); + if (lookahead == '+') ADVANCE(334); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(325); + if (lookahead == '/') ADVANCE(340); + if (lookahead == '<') ADVANCE(362); + if (lookahead == '=') ADVANCE(382); + if (lookahead == '>') ADVANCE(357); + if (lookahead == '[') ADVANCE(227); + if (lookahead == '\\') SKIP(44) + if (lookahead == '^') ADVANCE(349); + if (lookahead == '|') ADVANCE(346); + if (lookahead == '~') ADVANCE(319); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(137) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); case 138: - if (lookahead == '!') ADVANCE(202); - if (lookahead == '"') ADVANCE(420); - if (lookahead == '%') ADVANCE(326); - if (lookahead == '&') ADVANCE(336); - if (lookahead == '(') ADVANCE(300); - if (lookahead == '*') ADVANCE(322); - if (lookahead == '+') ADVANCE(318); - if (lookahead == ',') ADVANCE(253); - if (lookahead == '-') ADVANCE(310); - if (lookahead == '.') ADVANCE(387); - if (lookahead == '/') ADVANCE(324); - if (lookahead == '<') ADVANCE(346); - if (lookahead == '=') ADVANCE(366); - if (lookahead == '>') ADVANCE(503); - if (lookahead == '?') ADVANCE(371); - if (lookahead == 'L') ADVANCE(509); - if (lookahead == 'U') ADVANCE(510); - if (lookahead == '[') ADVANCE(360); - if (lookahead == '\\') SKIP(48) - if (lookahead == '^') ADVANCE(333); - if (lookahead == 'u') ADVANCE(511); - if (lookahead == '|') ADVANCE(330); + if (lookahead == '!') ADVANCE(317); + if (lookahead == '"') ADVANCE(436); + if (lookahead == '#') ADVANCE(229); + if (lookahead == '&') ADVANCE(351); + if (lookahead == '\'') ADVANCE(427); + if (lookahead == '(') ADVANCE(316); + if (lookahead == '*') ADVANCE(337); + if (lookahead == '+') ADVANCE(333); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(324); + if (lookahead == '.') ADVANCE(242); + if (lookahead == '/') ADVANCE(206); + if (lookahead == '0') ADVANCE(412); + if (lookahead == ':') ADVANCE(216); + if (lookahead == ';') ADVANCE(370); + if (lookahead == '<') ADVANCE(217); + if (lookahead == '>') ADVANCE(220); + if (lookahead == 'F') ADVANCE(467); + if (lookahead == 'L') ADVANCE(450); + if (lookahead == 'T') ADVANCE(471); + if (lookahead == 'U') ADVANCE(452); + if (lookahead == '[') ADVANCE(377); + if (lookahead == '\\') SKIP(2) + if (lookahead == 'b') ADVANCE(500); + if (lookahead == 'c') ADVANCE(485); + if (lookahead == 'd') ADVANCE(496); + if (lookahead == 'f') ADVANCE(475); + if (lookahead == 'i') ADVANCE(494); + if (lookahead == 's') ADVANCE(486); + if (lookahead == 't') ADVANCE(503); + if (lookahead == 'u') ADVANCE(454); + if (lookahead == 'v') ADVANCE(499); + if (lookahead == '{') ADVANCE(374); + if (lookahead == '~') ADVANCE(319); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(139) + lookahead == ' ') SKIP(138) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(414); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(513); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); case 139: - if (lookahead == '!') ADVANCE(202); - if (lookahead == '"') ADVANCE(420); - if (lookahead == '%') ADVANCE(326); - if (lookahead == '&') ADVANCE(336); - if (lookahead == '(') ADVANCE(300); - if (lookahead == '*') ADVANCE(322); - if (lookahead == '+') ADVANCE(318); - if (lookahead == ',') ADVANCE(253); - if (lookahead == '-') ADVANCE(310); - if (lookahead == '.') ADVANCE(387); - if (lookahead == '/') ADVANCE(324); - if (lookahead == '<') ADVANCE(346); - if (lookahead == '=') ADVANCE(366); - if (lookahead == '>') ADVANCE(503); - if (lookahead == '?') ADVANCE(371); - if (lookahead == 'L') ADVANCE(174); - if (lookahead == 'U') ADVANCE(175); - if (lookahead == '[') ADVANCE(360); - if (lookahead == '\\') SKIP(48) - if (lookahead == '^') ADVANCE(333); - if (lookahead == 'u') ADVANCE(176); - if (lookahead == '|') ADVANCE(330); + if (lookahead == '!') ADVANCE(317); + if (lookahead == '"') ADVANCE(436); + if (lookahead == '#') ADVANCE(236); + if (lookahead == '&') ADVANCE(350); + if (lookahead == '\'') ADVANCE(427); + if (lookahead == '(') ADVANCE(316); + if (lookahead == ')') ADVANCE(270); + if (lookahead == '*') ADVANCE(337); + if (lookahead == '+') ADVANCE(333); + if (lookahead == '-') ADVANCE(324); + if (lookahead == '.') ADVANCE(213); + if (lookahead == '/') ADVANCE(206); + if (lookahead == '0') ADVANCE(412); + if (lookahead == ':') ADVANCE(216); + if (lookahead == ';') ADVANCE(370); + if (lookahead == '>') ADVANCE(355); + if (lookahead == 'F') ADVANCE(467); + if (lookahead == 'L') ADVANCE(450); + if (lookahead == 'T') ADVANCE(471); + if (lookahead == 'U') ADVANCE(452); + if (lookahead == '[') ADVANCE(377); + if (lookahead == '\\') SKIP(6) + if (lookahead == 'b') ADVANCE(500); + if (lookahead == 'c') ADVANCE(485); + if (lookahead == 'd') ADVANCE(496); + if (lookahead == 'f') ADVANCE(475); + if (lookahead == 'i') ADVANCE(494); + if (lookahead == 's') ADVANCE(486); + if (lookahead == 't') ADVANCE(503); + if (lookahead == 'u') ADVANCE(454); + if (lookahead == 'v') ADVANCE(499); + if (lookahead == '{') ADVANCE(374); + if (lookahead == '~') ADVANCE(319); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(139) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(414); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); case 140: - if (lookahead == '!') ADVANCE(202); - if (lookahead == '"') ADVANCE(420); - if (lookahead == '%') ADVANCE(325); - if (lookahead == '&') ADVANCE(335); - if (lookahead == '(') ADVANCE(300); - if (lookahead == ')') ADVANCE(254); - if (lookahead == '*') ADVANCE(321); - if (lookahead == '+') ADVANCE(314); - if (lookahead == ',') ADVANCE(253); - if (lookahead == '-') ADVANCE(304); - if (lookahead == '/') ADVANCE(323); - if (lookahead == ':') ADVANCE(200); - if (lookahead == '<') ADVANCE(349); - if (lookahead == '=') ADVANCE(203); - if (lookahead == '>') ADVANCE(340); - if (lookahead == 'L') ADVANCE(435); - if (lookahead == 'U') ADVANCE(437); - if (lookahead == '[') ADVANCE(361); - if (lookahead == '\\') SKIP(50) - if (lookahead == '^') ADVANCE(332); - if (lookahead == 'b') ADVANCE(484); - if (lookahead == 'c') ADVANCE(469); - if (lookahead == 'd') ADVANCE(480); - if (lookahead == 'f') ADVANCE(477); - if (lookahead == 'i') ADVANCE(478); - if (lookahead == 's') ADVANCE(470); - if (lookahead == 'u') ADVANCE(439); - if (lookahead == 'v') ADVANCE(483); - if (lookahead == '|') ADVANCE(331); - if (lookahead == '~') ADVANCE(303); + if (lookahead == '!') ADVANCE(317); + if (lookahead == '"') ADVANCE(436); + if (lookahead == '#') ADVANCE(231); + if (lookahead == '&') ADVANCE(351); + if (lookahead == '\'') ADVANCE(427); + if (lookahead == '(') ADVANCE(316); + if (lookahead == '*') ADVANCE(337); + if (lookahead == '+') ADVANCE(333); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(324); + if (lookahead == '.') ADVANCE(242); + if (lookahead == '/') ADVANCE(206); + if (lookahead == '0') ADVANCE(412); + if (lookahead == ':') ADVANCE(216); + if (lookahead == ';') ADVANCE(370); + if (lookahead == '>') ADVANCE(222); + if (lookahead == 'F') ADVANCE(467); + if (lookahead == 'L') ADVANCE(450); + if (lookahead == 'T') ADVANCE(471); + if (lookahead == 'U') ADVANCE(452); + if (lookahead == '[') ADVANCE(377); + if (lookahead == '\\') SKIP(4) + if (lookahead == 'b') ADVANCE(500); + if (lookahead == 'c') ADVANCE(485); + if (lookahead == 'd') ADVANCE(496); + if (lookahead == 'f') ADVANCE(475); + if (lookahead == 'i') ADVANCE(494); + if (lookahead == 's') ADVANCE(486); + if (lookahead == 't') ADVANCE(503); + if (lookahead == 'u') ADVANCE(454); + if (lookahead == 'v') ADVANCE(499); + if (lookahead == '{') ADVANCE(374); + if (lookahead == '~') ADVANCE(319); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(140) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(414); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); case 141: - if (lookahead == '!') ADVANCE(202); - if (lookahead == '"') ADVANCE(420); - if (lookahead == '%') ADVANCE(325); - if (lookahead == '&') ADVANCE(335); - if (lookahead == '(') ADVANCE(300); - if (lookahead == ')') ADVANCE(254); - if (lookahead == '*') ADVANCE(321); - if (lookahead == '+') ADVANCE(315); - if (lookahead == ',') ADVANCE(253); - if (lookahead == '-') ADVANCE(311); - if (lookahead == '.') ADVANCE(387); - if (lookahead == '/') ADVANCE(323); - if (lookahead == ':') ADVANCE(369); - if (lookahead == ';') ADVANCE(354); - if (lookahead == '<') ADVANCE(348); - if (lookahead == '=') ADVANCE(203); - if (lookahead == '>') ADVANCE(340); - if (lookahead == '?') ADVANCE(371); - if (lookahead == 'L') ADVANCE(509); - if (lookahead == 'U') ADVANCE(510); - if (lookahead == '[') ADVANCE(360); - if (lookahead == '\\') SKIP(102) - if (lookahead == ']') ADVANCE(364); - if (lookahead == '^') ADVANCE(332); - if (lookahead == 'u') ADVANCE(511); - if (lookahead == '|') ADVANCE(331); - if (lookahead == '}') ADVANCE(359); + if (lookahead == '!') ADVANCE(317); + if (lookahead == '"') ADVANCE(436); + if (lookahead == '&') ADVANCE(351); + if (lookahead == '\'') ADVANCE(427); + if (lookahead == '(') ADVANCE(316); + if (lookahead == ')') ADVANCE(270); + if (lookahead == '*') ADVANCE(337); + if (lookahead == '+') ADVANCE(333); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(324); + if (lookahead == '.') ADVANCE(404); + if (lookahead == '/') ADVANCE(206); + if (lookahead == '0') ADVANCE(412); + if (lookahead == ':') ADVANCE(216); + if (lookahead == '<') ADVANCE(361); + if (lookahead == '=') ADVANCE(381); + if (lookahead == '>') ADVANCE(519); + if (lookahead == 'F') ADVANCE(467); + if (lookahead == 'L') ADVANCE(450); + if (lookahead == 'T') ADVANCE(471); + if (lookahead == 'U') ADVANCE(452); + if (lookahead == '[') ADVANCE(376); + if (lookahead == '\\') SKIP(8) + if (lookahead == 'b') ADVANCE(500); + if (lookahead == 'c') ADVANCE(485); + if (lookahead == 'd') ADVANCE(496); + if (lookahead == 'f') ADVANCE(475); + if (lookahead == 'i') ADVANCE(494); + if (lookahead == 's') ADVANCE(486); + if (lookahead == 't') ADVANCE(503); + if (lookahead == 'u') ADVANCE(454); + if (lookahead == 'v') ADVANCE(499); + if (lookahead == '{') ADVANCE(374); + if (lookahead == '|') ADVANCE(240); + if (lookahead == '~') ADVANCE(319); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(142) - if (('A' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(513); + lookahead == ' ') SKIP(141) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(414); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); case 142: - if (lookahead == '!') ADVANCE(202); - if (lookahead == '"') ADVANCE(420); - if (lookahead == '%') ADVANCE(325); - if (lookahead == '&') ADVANCE(335); - if (lookahead == '(') ADVANCE(300); - if (lookahead == ')') ADVANCE(254); - if (lookahead == '*') ADVANCE(321); - if (lookahead == '+') ADVANCE(315); - if (lookahead == ',') ADVANCE(253); - if (lookahead == '-') ADVANCE(311); - if (lookahead == '.') ADVANCE(387); - if (lookahead == '/') ADVANCE(323); - if (lookahead == ':') ADVANCE(369); - if (lookahead == ';') ADVANCE(354); - if (lookahead == '<') ADVANCE(348); - if (lookahead == '=') ADVANCE(203); - if (lookahead == '>') ADVANCE(340); - if (lookahead == '?') ADVANCE(371); - if (lookahead == 'L') ADVANCE(174); - if (lookahead == 'U') ADVANCE(175); - if (lookahead == '[') ADVANCE(360); - if (lookahead == '\\') SKIP(102) - if (lookahead == ']') ADVANCE(364); - if (lookahead == '^') ADVANCE(332); - if (lookahead == 'u') ADVANCE(176); - if (lookahead == '|') ADVANCE(331); - if (lookahead == '}') ADVANCE(359); + if (lookahead == '!') ADVANCE(317); + if (lookahead == '"') ADVANCE(436); + if (lookahead == '&') ADVANCE(350); + if (lookahead == '\'') ADVANCE(427); + if (lookahead == '(') ADVANCE(316); + if (lookahead == ')') ADVANCE(270); + if (lookahead == '*') ADVANCE(337); + if (lookahead == '+') ADVANCE(333); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(324); + if (lookahead == '.') ADVANCE(404); + if (lookahead == '/') ADVANCE(206); + if (lookahead == '0') ADVANCE(412); + if (lookahead == ':') ADVANCE(216); + if (lookahead == ';') ADVANCE(370); + if (lookahead == '<') ADVANCE(361); + if (lookahead == '=') ADVANCE(381); + if (lookahead == '>') ADVANCE(519); + if (lookahead == 'F') ADVANCE(467); + if (lookahead == 'L') ADVANCE(450); + if (lookahead == 'T') ADVANCE(471); + if (lookahead == 'U') ADVANCE(452); + if (lookahead == '[') ADVANCE(376); + if (lookahead == '\\') SKIP(22) + if (lookahead == ']') ADVANCE(380); + if (lookahead == 'b') ADVANCE(500); + if (lookahead == 'c') ADVANCE(485); + if (lookahead == 'd') ADVANCE(496); + if (lookahead == 'f') ADVANCE(475); + if (lookahead == 'i') ADVANCE(494); + if (lookahead == 's') ADVANCE(486); + if (lookahead == 't') ADVANCE(503); + if (lookahead == 'u') ADVANCE(454); + if (lookahead == 'v') ADVANCE(499); + if (lookahead == '{') ADVANCE(374); + if (lookahead == '}') ADVANCE(375); + if (lookahead == '~') ADVANCE(319); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(142) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(414); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); case 143: - if (lookahead == '!') ADVANCE(202); - if (lookahead == '"') ADVANCE(420); - if (lookahead == '%') ADVANCE(325); - if (lookahead == '&') ADVANCE(335); - if (lookahead == '(') ADVANCE(300); - if (lookahead == '*') ADVANCE(321); - if (lookahead == '+') ADVANCE(315); - if (lookahead == ',') ADVANCE(253); - if (lookahead == '-') ADVANCE(311); - if (lookahead == '.') ADVANCE(387); - if (lookahead == '/') ADVANCE(323); - if (lookahead == '<') ADVANCE(348); - if (lookahead == '=') ADVANCE(203); - if (lookahead == '>') ADVANCE(503); - if (lookahead == '?') ADVANCE(371); - if (lookahead == 'L') ADVANCE(509); - if (lookahead == 'U') ADVANCE(510); - if (lookahead == '[') ADVANCE(360); - if (lookahead == '\\') SKIP(110) - if (lookahead == '^') ADVANCE(332); - if (lookahead == 'u') ADVANCE(511); - if (lookahead == '|') ADVANCE(331); + if (lookahead == '!') ADVANCE(317); + if (lookahead == '\'') ADVANCE(427); + if (lookahead == '(') ADVANCE(316); + if (lookahead == ')') ADVANCE(270); + if (lookahead == '+') ADVANCE(335); + if (lookahead == '-') ADVANCE(328); + if (lookahead == '.') ADVANCE(242); + if (lookahead == '/') ADVANCE(206); + if (lookahead == '0') ADVANCE(412); + if (lookahead == 'L') ADVANCE(459); + if (lookahead == 'U') ADVANCE(460); + if (lookahead == '\\') SKIP(68) + if (lookahead == 'u') ADVANCE(461); + if (lookahead == '~') ADVANCE(319); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(144) + lookahead == ' ') SKIP(143) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(414); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(513); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); case 144: - if (lookahead == '!') ADVANCE(202); - if (lookahead == '"') ADVANCE(420); - if (lookahead == '%') ADVANCE(325); - if (lookahead == '&') ADVANCE(335); - if (lookahead == '(') ADVANCE(300); - if (lookahead == '*') ADVANCE(321); - if (lookahead == '+') ADVANCE(315); - if (lookahead == ',') ADVANCE(253); - if (lookahead == '-') ADVANCE(311); - if (lookahead == '.') ADVANCE(387); - if (lookahead == '/') ADVANCE(323); - if (lookahead == '<') ADVANCE(348); - if (lookahead == '=') ADVANCE(203); - if (lookahead == '>') ADVANCE(503); - if (lookahead == '?') ADVANCE(371); - if (lookahead == 'L') ADVANCE(174); - if (lookahead == 'U') ADVANCE(175); - if (lookahead == '[') ADVANCE(360); - if (lookahead == '\\') SKIP(110) - if (lookahead == '^') ADVANCE(332); - if (lookahead == 'u') ADVANCE(176); - if (lookahead == '|') ADVANCE(331); + if (lookahead == '!') ADVANCE(218); + if (lookahead == '"') ADVANCE(436); + if (lookahead == '%') ADVANCE(342); + if (lookahead == '&') ADVANCE(352); + if (lookahead == '(') ADVANCE(316); + if (lookahead == ')') ADVANCE(270); + if (lookahead == '*') ADVANCE(338); + if (lookahead == '+') ADVANCE(334); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(325); + if (lookahead == '.') ADVANCE(401); + if (lookahead == '/') ADVANCE(340); + if (lookahead == '<') ADVANCE(362); + if (lookahead == '=') ADVANCE(382); + if (lookahead == '>') ADVANCE(357); + if (lookahead == '?') ADVANCE(387); + if (lookahead == 'L') ADVANCE(525); + if (lookahead == 'U') ADVANCE(526); + if (lookahead == '[') ADVANCE(376); + if (lookahead == '\\') SKIP(96) + if (lookahead == '^') ADVANCE(349); + if (lookahead == 'u') ADVANCE(527); + if (lookahead == '|') ADVANCE(346); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(144) + lookahead == ' ') SKIP(145) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(529); END_STATE(); case 145: - if (lookahead == '!') ADVANCE(202); - if (lookahead == '#') ADVANCE(216); - if (lookahead == '%') ADVANCE(325); - if (lookahead == '&') ADVANCE(335); - if (lookahead == '(') ADVANCE(300); - if (lookahead == '*') ADVANCE(321); - if (lookahead == '+') ADVANCE(315); - if (lookahead == ',') ADVANCE(253); - if (lookahead == '-') ADVANCE(311); - if (lookahead == '.') ADVANCE(387); - if (lookahead == '/') ADVANCE(323); - if (lookahead == ':') ADVANCE(200); - if (lookahead == ';') ADVANCE(354); - if (lookahead == '<') ADVANCE(348); - if (lookahead == '=') ADVANCE(203); - if (lookahead == '>') ADVANCE(340); - if (lookahead == '?') ADVANCE(371); - if (lookahead == '[') ADVANCE(361); - if (lookahead == '\\') SKIP(14) - if (lookahead == '^') ADVANCE(332); - if (lookahead == 'b') ADVANCE(484); - if (lookahead == 'c') ADVANCE(469); - if (lookahead == 'd') ADVANCE(480); - if (lookahead == 'f') ADVANCE(477); - if (lookahead == 'i') ADVANCE(478); - if (lookahead == 's') ADVANCE(470); - if (lookahead == 'u') ADVANCE(473); - if (lookahead == 'v') ADVANCE(483); - if (lookahead == '|') ADVANCE(331); - if (lookahead == '}') ADVANCE(359); - if (lookahead == '~') ADVANCE(303); + if (lookahead == '!') ADVANCE(218); + if (lookahead == '"') ADVANCE(436); + if (lookahead == '%') ADVANCE(342); + if (lookahead == '&') ADVANCE(352); + if (lookahead == '(') ADVANCE(316); + if (lookahead == ')') ADVANCE(270); + if (lookahead == '*') ADVANCE(338); + if (lookahead == '+') ADVANCE(334); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(325); + if (lookahead == '.') ADVANCE(401); + if (lookahead == '/') ADVANCE(340); + if (lookahead == '<') ADVANCE(362); + if (lookahead == '=') ADVANCE(382); + if (lookahead == '>') ADVANCE(357); + if (lookahead == '?') ADVANCE(387); + if (lookahead == 'L') ADVANCE(451); + if (lookahead == 'U') ADVANCE(453); + if (lookahead == '[') ADVANCE(376); + if (lookahead == '\\') SKIP(96) + if (lookahead == '^') ADVANCE(349); + if (lookahead == 'u') ADVANCE(456); + if (lookahead == '|') ADVANCE(346); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(145) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); case 146: - if (lookahead == '!') ADVANCE(202); - if (lookahead == '%') ADVANCE(326); - if (lookahead == '&') ADVANCE(336); - if (lookahead == '(') ADVANCE(300); - if (lookahead == ')') ADVANCE(254); - if (lookahead == '*') ADVANCE(322); - if (lookahead == '+') ADVANCE(318); - if (lookahead == ',') ADVANCE(253); - if (lookahead == '-') ADVANCE(309); - if (lookahead == '.') ADVANCE(385); - if (lookahead == '/') ADVANCE(324); - if (lookahead == ':') ADVANCE(370); - if (lookahead == ';') ADVANCE(354); - if (lookahead == '<') ADVANCE(346); - if (lookahead == '=') ADVANCE(366); - if (lookahead == '>') ADVANCE(341); - if (lookahead == '?') ADVANCE(371); - if (lookahead == '[') ADVANCE(360); - if (lookahead == '\\') SKIP(30) - if (lookahead == '^') ADVANCE(333); - if (lookahead == '{') ADVANCE(358); - if (lookahead == '|') ADVANCE(330); + if (lookahead == '!') ADVANCE(218); + if (lookahead == '"') ADVANCE(436); + if (lookahead == '%') ADVANCE(342); + if (lookahead == '&') ADVANCE(352); + if (lookahead == '(') ADVANCE(316); + if (lookahead == ')') ADVANCE(270); + if (lookahead == '*') ADVANCE(338); + if (lookahead == '+') ADVANCE(334); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(326); + if (lookahead == '.') ADVANCE(403); + if (lookahead == '/') ADVANCE(340); + if (lookahead == ':') ADVANCE(385); + if (lookahead == ';') ADVANCE(370); + if (lookahead == '<') ADVANCE(362); + if (lookahead == '=') ADVANCE(382); + if (lookahead == '>') ADVANCE(357); + if (lookahead == '?') ADVANCE(387); + if (lookahead == 'L') ADVANCE(525); + if (lookahead == 'U') ADVANCE(526); + if (lookahead == '[') ADVANCE(376); + if (lookahead == '\\') SKIP(92) + if (lookahead == ']') ADVANCE(380); + if (lookahead == '^') ADVANCE(349); + if (lookahead == 'u') ADVANCE(527); + if (lookahead == '|') ADVANCE(346); + if (lookahead == '}') ADVANCE(375); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(146) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + lookahead == ' ') SKIP(147) + if (('A' <= lookahead && lookahead <= '_') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(529); END_STATE(); case 147: - if (lookahead == '!') ADVANCE(202); - if (lookahead == '%') ADVANCE(326); - if (lookahead == '&') ADVANCE(336); - if (lookahead == '(') ADVANCE(300); - if (lookahead == ')') ADVANCE(254); - if (lookahead == '*') ADVANCE(322); - if (lookahead == '+') ADVANCE(318); - if (lookahead == ',') ADVANCE(253); - if (lookahead == '-') ADVANCE(309); - if (lookahead == '.') ADVANCE(385); - if (lookahead == '/') ADVANCE(324); - if (lookahead == ':') ADVANCE(200); - if (lookahead == ';') ADVANCE(354); - if (lookahead == '<') ADVANCE(346); - if (lookahead == '=') ADVANCE(366); - if (lookahead == '>') ADVANCE(341); - if (lookahead == '?') ADVANCE(371); - if (lookahead == '[') ADVANCE(361); - if (lookahead == '\\') SKIP(28) - if (lookahead == '^') ADVANCE(333); - if (lookahead == '{') ADVANCE(358); - if (lookahead == '|') ADVANCE(330); - if (lookahead == '~') ADVANCE(303); + if (lookahead == '!') ADVANCE(218); + if (lookahead == '"') ADVANCE(436); + if (lookahead == '%') ADVANCE(342); + if (lookahead == '&') ADVANCE(352); + if (lookahead == '(') ADVANCE(316); + if (lookahead == ')') ADVANCE(270); + if (lookahead == '*') ADVANCE(338); + if (lookahead == '+') ADVANCE(334); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(326); + if (lookahead == '.') ADVANCE(403); + if (lookahead == '/') ADVANCE(340); + if (lookahead == ':') ADVANCE(385); + if (lookahead == ';') ADVANCE(370); + if (lookahead == '<') ADVANCE(362); + if (lookahead == '=') ADVANCE(382); + if (lookahead == '>') ADVANCE(357); + if (lookahead == '?') ADVANCE(387); + if (lookahead == 'L') ADVANCE(451); + if (lookahead == 'U') ADVANCE(453); + if (lookahead == '[') ADVANCE(376); + if (lookahead == '\\') SKIP(92) + if (lookahead == ']') ADVANCE(380); + if (lookahead == '^') ADVANCE(349); + if (lookahead == 'u') ADVANCE(456); + if (lookahead == '|') ADVANCE(346); + if (lookahead == '}') ADVANCE(375); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(147) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + if (('A' <= lookahead && lookahead <= '_') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); case 148: - if (lookahead == '!') ADVANCE(202); - if (lookahead == '%') ADVANCE(326); - if (lookahead == '&') ADVANCE(336); - if (lookahead == '(') ADVANCE(300); - if (lookahead == ')') ADVANCE(254); - if (lookahead == '*') ADVANCE(322); - if (lookahead == '+') ADVANCE(318); - if (lookahead == ',') ADVANCE(253); - if (lookahead == '-') ADVANCE(309); - if (lookahead == '.') ADVANCE(385); - if (lookahead == '/') ADVANCE(324); - if (lookahead == ':') ADVANCE(369); - if (lookahead == '<') ADVANCE(346); - if (lookahead == '=') ADVANCE(366); - if (lookahead == '>') ADVANCE(341); - if (lookahead == '?') ADVANCE(371); - if (lookahead == '[') ADVANCE(360); - if (lookahead == '\\') SKIP(98) - if (lookahead == '^') ADVANCE(333); - if (lookahead == '{') ADVANCE(358); - if (lookahead == '|') ADVANCE(330); + if (lookahead == '!') ADVANCE(218); + if (lookahead == '"') ADVANCE(436); + if (lookahead == '%') ADVANCE(342); + if (lookahead == '&') ADVANCE(352); + if (lookahead == '(') ADVANCE(316); + if (lookahead == '*') ADVANCE(338); + if (lookahead == '+') ADVANCE(334); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(326); + if (lookahead == '.') ADVANCE(403); + if (lookahead == '/') ADVANCE(340); + if (lookahead == '<') ADVANCE(362); + if (lookahead == '=') ADVANCE(382); + if (lookahead == '>') ADVANCE(519); + if (lookahead == '?') ADVANCE(387); + if (lookahead == 'L') ADVANCE(525); + if (lookahead == 'U') ADVANCE(526); + if (lookahead == '[') ADVANCE(376); + if (lookahead == '\\') SKIP(100) + if (lookahead == '^') ADVANCE(349); + if (lookahead == 'u') ADVANCE(527); + if (lookahead == '|') ADVANCE(346); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(148) + lookahead == ' ') SKIP(149) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(529); END_STATE(); case 149: - if (lookahead == '!') ADVANCE(202); - if (lookahead == '%') ADVANCE(326); - if (lookahead == '&') ADVANCE(336); - if (lookahead == '(') ADVANCE(300); - if (lookahead == ')') ADVANCE(254); - if (lookahead == '*') ADVANCE(322); - if (lookahead == '+') ADVANCE(318); - if (lookahead == ',') ADVANCE(253); - if (lookahead == '-') ADVANCE(309); - if (lookahead == '.') ADVANCE(385); - if (lookahead == '/') ADVANCE(324); - if (lookahead == '<') ADVANCE(346); - if (lookahead == '=') ADVANCE(366); - if (lookahead == '>') ADVANCE(341); - if (lookahead == '?') ADVANCE(371); - if (lookahead == '[') ADVANCE(362); - if (lookahead == '\\') SKIP(58) - if (lookahead == '^') ADVANCE(333); - if (lookahead == '|') ADVANCE(330); + if (lookahead == '!') ADVANCE(218); + if (lookahead == '"') ADVANCE(436); + if (lookahead == '%') ADVANCE(342); + if (lookahead == '&') ADVANCE(352); + if (lookahead == '(') ADVANCE(316); + if (lookahead == '*') ADVANCE(338); + if (lookahead == '+') ADVANCE(334); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(326); + if (lookahead == '.') ADVANCE(403); + if (lookahead == '/') ADVANCE(340); + if (lookahead == '<') ADVANCE(362); + if (lookahead == '=') ADVANCE(382); + if (lookahead == '>') ADVANCE(519); + if (lookahead == '?') ADVANCE(387); + if (lookahead == 'L') ADVANCE(451); + if (lookahead == 'U') ADVANCE(453); + if (lookahead == '[') ADVANCE(376); + if (lookahead == '\\') SKIP(100) + if (lookahead == '^') ADVANCE(349); + if (lookahead == 'u') ADVANCE(456); + if (lookahead == '|') ADVANCE(346); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(149) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); case 150: - if (lookahead == '!') ADVANCE(202); - if (lookahead == '%') ADVANCE(326); - if (lookahead == '&') ADVANCE(336); - if (lookahead == '(') ADVANCE(300); - if (lookahead == ')') ADVANCE(254); - if (lookahead == '*') ADVANCE(322); - if (lookahead == '+') ADVANCE(318); - if (lookahead == ',') ADVANCE(253); - if (lookahead == '-') ADVANCE(309); - if (lookahead == '.') ADVANCE(385); - if (lookahead == '/') ADVANCE(324); - if (lookahead == '<') ADVANCE(346); - if (lookahead == '=') ADVANCE(366); - if (lookahead == '>') ADVANCE(341); - if (lookahead == '?') ADVANCE(371); - if (lookahead == '[') ADVANCE(360); - if (lookahead == '\\') SKIP(38) - if (lookahead == '^') ADVANCE(333); - if (lookahead == 'b') ADVANCE(484); - if (lookahead == 'c') ADVANCE(469); - if (lookahead == 'd') ADVANCE(480); - if (lookahead == 'f') ADVANCE(477); - if (lookahead == 'i') ADVANCE(478); - if (lookahead == 's') ADVANCE(470); - if (lookahead == 'u') ADVANCE(473); - if (lookahead == 'v') ADVANCE(483); - if (lookahead == '{') ADVANCE(358); - if (lookahead == '|') ADVANCE(330); + if (lookahead == '!') ADVANCE(218); + if (lookahead == '"') ADVANCE(436); + if (lookahead == '%') ADVANCE(341); + if (lookahead == '&') ADVANCE(351); + if (lookahead == '(') ADVANCE(316); + if (lookahead == ')') ADVANCE(270); + if (lookahead == '*') ADVANCE(337); + if (lookahead == '+') ADVANCE(331); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(327); + if (lookahead == '.') ADVANCE(403); + if (lookahead == '/') ADVANCE(339); + if (lookahead == ':') ADVANCE(385); + if (lookahead == ';') ADVANCE(370); + if (lookahead == '<') ADVANCE(364); + if (lookahead == '=') ADVANCE(219); + if (lookahead == '>') ADVANCE(356); + if (lookahead == '?') ADVANCE(387); + if (lookahead == 'L') ADVANCE(525); + if (lookahead == 'U') ADVANCE(526); + if (lookahead == '[') ADVANCE(376); + if (lookahead == '\\') SKIP(122) + if (lookahead == ']') ADVANCE(380); + if (lookahead == '^') ADVANCE(348); + if (lookahead == 'u') ADVANCE(527); + if (lookahead == '|') ADVANCE(347); + if (lookahead == '}') ADVANCE(375); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(150) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + lookahead == ' ') SKIP(151) + if (('A' <= lookahead && lookahead <= '_') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(529); END_STATE(); case 151: - if (lookahead == '!') ADVANCE(202); - if (lookahead == '%') ADVANCE(326); - if (lookahead == '&') ADVANCE(336); - if (lookahead == '(') ADVANCE(300); - if (lookahead == ')') ADVANCE(254); - if (lookahead == '*') ADVANCE(322); - if (lookahead == '+') ADVANCE(318); - if (lookahead == ',') ADVANCE(253); - if (lookahead == '-') ADVANCE(309); - if (lookahead == '.') ADVANCE(385); - if (lookahead == '/') ADVANCE(324); - if (lookahead == '<') ADVANCE(346); - if (lookahead == '=') ADVANCE(366); - if (lookahead == '>') ADVANCE(341); - if (lookahead == '?') ADVANCE(371); - if (lookahead == '[') ADVANCE(363); - if (lookahead == '\\') SKIP(114) - if (lookahead == '^') ADVANCE(333); - if (lookahead == '|') ADVANCE(330); + if (lookahead == '!') ADVANCE(218); + if (lookahead == '"') ADVANCE(436); + if (lookahead == '%') ADVANCE(341); + if (lookahead == '&') ADVANCE(351); + if (lookahead == '(') ADVANCE(316); + if (lookahead == ')') ADVANCE(270); + if (lookahead == '*') ADVANCE(337); + if (lookahead == '+') ADVANCE(331); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(327); + if (lookahead == '.') ADVANCE(403); + if (lookahead == '/') ADVANCE(339); + if (lookahead == ':') ADVANCE(385); + if (lookahead == ';') ADVANCE(370); + if (lookahead == '<') ADVANCE(364); + if (lookahead == '=') ADVANCE(219); + if (lookahead == '>') ADVANCE(356); + if (lookahead == '?') ADVANCE(387); + if (lookahead == 'L') ADVANCE(451); + if (lookahead == 'U') ADVANCE(453); + if (lookahead == '[') ADVANCE(376); + if (lookahead == '\\') SKIP(122) + if (lookahead == ']') ADVANCE(380); + if (lookahead == '^') ADVANCE(348); + if (lookahead == 'u') ADVANCE(456); + if (lookahead == '|') ADVANCE(347); + if (lookahead == '}') ADVANCE(375); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(151) + if (('A' <= lookahead && lookahead <= '_') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); case 152: - if (lookahead == '!') ADVANCE(202); - if (lookahead == '%') ADVANCE(326); - if (lookahead == '&') ADVANCE(336); - if (lookahead == '(') ADVANCE(300); - if (lookahead == ')') ADVANCE(254); - if (lookahead == '*') ADVANCE(322); - if (lookahead == '+') ADVANCE(318); - if (lookahead == ',') ADVANCE(253); - if (lookahead == '-') ADVANCE(310); - if (lookahead == '.') ADVANCE(387); - if (lookahead == '/') ADVANCE(324); - if (lookahead == ':') ADVANCE(370); - if (lookahead == ';') ADVANCE(354); - if (lookahead == '<') ADVANCE(346); - if (lookahead == '=') ADVANCE(366); - if (lookahead == '>') ADVANCE(341); - if (lookahead == '?') ADVANCE(371); - if (lookahead == '[') ADVANCE(361); - if (lookahead == '\\') SKIP(26) - if (lookahead == '^') ADVANCE(333); - if (lookahead == '{') ADVANCE(358); - if (lookahead == '|') ADVANCE(330); - if (lookahead == '}') ADVANCE(359); - if (lookahead == '~') ADVANCE(303); + if (lookahead == '!') ADVANCE(218); + if (lookahead == '"') ADVANCE(436); + if (lookahead == '%') ADVANCE(341); + if (lookahead == '&') ADVANCE(351); + if (lookahead == '(') ADVANCE(316); + if (lookahead == '*') ADVANCE(337); + if (lookahead == '+') ADVANCE(331); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(327); + if (lookahead == '.') ADVANCE(403); + if (lookahead == '/') ADVANCE(339); + if (lookahead == '<') ADVANCE(364); + if (lookahead == '=') ADVANCE(219); + if (lookahead == '>') ADVANCE(519); + if (lookahead == '?') ADVANCE(387); + if (lookahead == 'L') ADVANCE(525); + if (lookahead == 'U') ADVANCE(526); + if (lookahead == '[') ADVANCE(376); + if (lookahead == '\\') SKIP(124) + if (lookahead == '^') ADVANCE(348); + if (lookahead == 'u') ADVANCE(527); + if (lookahead == '|') ADVANCE(347); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(152) + lookahead == ' ') SKIP(153) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(529); END_STATE(); case 153: - if (lookahead == '!') ADVANCE(202); - if (lookahead == '%') ADVANCE(326); - if (lookahead == '&') ADVANCE(336); - if (lookahead == '(') ADVANCE(300); - if (lookahead == ')') ADVANCE(254); - if (lookahead == '*') ADVANCE(322); - if (lookahead == '+') ADVANCE(318); - if (lookahead == ',') ADVANCE(253); - if (lookahead == '-') ADVANCE(310); - if (lookahead == '.') ADVANCE(387); - if (lookahead == '/') ADVANCE(324); - if (lookahead == ':') ADVANCE(370); - if (lookahead == ';') ADVANCE(354); - if (lookahead == '<') ADVANCE(346); - if (lookahead == '=') ADVANCE(366); - if (lookahead == '>') ADVANCE(341); - if (lookahead == '?') ADVANCE(371); - if (lookahead == '[') ADVANCE(360); - if (lookahead == '\\') SKIP(104) - if (lookahead == ']') ADVANCE(364); - if (lookahead == '^') ADVANCE(333); - if (lookahead == '{') ADVANCE(358); - if (lookahead == '|') ADVANCE(330); - if (lookahead == '}') ADVANCE(359); + if (lookahead == '!') ADVANCE(218); + if (lookahead == '"') ADVANCE(436); + if (lookahead == '%') ADVANCE(341); + if (lookahead == '&') ADVANCE(351); + if (lookahead == '(') ADVANCE(316); + if (lookahead == '*') ADVANCE(337); + if (lookahead == '+') ADVANCE(331); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(327); + if (lookahead == '.') ADVANCE(403); + if (lookahead == '/') ADVANCE(339); + if (lookahead == '<') ADVANCE(364); + if (lookahead == '=') ADVANCE(219); + if (lookahead == '>') ADVANCE(519); + if (lookahead == '?') ADVANCE(387); + if (lookahead == 'L') ADVANCE(451); + if (lookahead == 'U') ADVANCE(453); + if (lookahead == '[') ADVANCE(376); + if (lookahead == '\\') SKIP(124) + if (lookahead == '^') ADVANCE(348); + if (lookahead == 'u') ADVANCE(456); + if (lookahead == '|') ADVANCE(347); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(153) - if (('A' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); case 154: - if (lookahead == '!') ADVANCE(202); - if (lookahead == '%') ADVANCE(326); - if (lookahead == '&') ADVANCE(336); - if (lookahead == '(') ADVANCE(300); - if (lookahead == ')') ADVANCE(254); - if (lookahead == '*') ADVANCE(322); - if (lookahead == '+') ADVANCE(318); - if (lookahead == ',') ADVANCE(253); - if (lookahead == '-') ADVANCE(310); - if (lookahead == '.') ADVANCE(387); - if (lookahead == '/') ADVANCE(324); - if (lookahead == ':') ADVANCE(370); - if (lookahead == '<') ADVANCE(346); - if (lookahead == '=') ADVANCE(366); - if (lookahead == '>') ADVANCE(503); - if (lookahead == '?') ADVANCE(371); - if (lookahead == '[') ADVANCE(360); - if (lookahead == '\\') SKIP(32) - if (lookahead == '^') ADVANCE(333); - if (lookahead == '{') ADVANCE(358); - if (lookahead == '|') ADVANCE(330); + if (lookahead == '!') ADVANCE(218); + if (lookahead == '#') ADVANCE(232); + if (lookahead == '%') ADVANCE(341); + if (lookahead == '&') ADVANCE(351); + if (lookahead == '(') ADVANCE(316); + if (lookahead == ')') ADVANCE(270); + if (lookahead == '*') ADVANCE(337); + if (lookahead == '+') ADVANCE(330); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(320); + if (lookahead == '/') ADVANCE(339); + if (lookahead == ':') ADVANCE(216); + if (lookahead == ';') ADVANCE(370); + if (lookahead == '<') ADVANCE(365); + if (lookahead == '=') ADVANCE(219); + if (lookahead == '>') ADVANCE(356); + if (lookahead == '[') ADVANCE(377); + if (lookahead == '\\') SKIP(18) + if (lookahead == '^') ADVANCE(348); + if (lookahead == 'b') ADVANCE(500); + if (lookahead == 'c') ADVANCE(485); + if (lookahead == 'd') ADVANCE(496); + if (lookahead == 'f') ADVANCE(493); + if (lookahead == 'i') ADVANCE(494); + if (lookahead == 's') ADVANCE(486); + if (lookahead == 'u') ADVANCE(489); + if (lookahead == 'v') ADVANCE(499); + if (lookahead == '|') ADVANCE(347); + if (lookahead == '~') ADVANCE(319); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(154) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); case 155: - if (lookahead == '!') ADVANCE(202); - if (lookahead == '%') ADVANCE(326); - if (lookahead == '&') ADVANCE(336); - if (lookahead == '(') ADVANCE(300); - if (lookahead == ')') ADVANCE(254); - if (lookahead == '*') ADVANCE(322); - if (lookahead == '+') ADVANCE(318); - if (lookahead == ',') ADVANCE(253); - if (lookahead == '-') ADVANCE(310); - if (lookahead == '.') ADVANCE(387); - if (lookahead == '/') ADVANCE(324); - if (lookahead == ':') ADVANCE(369); - if (lookahead == ';') ADVANCE(354); - if (lookahead == '<') ADVANCE(346); - if (lookahead == '=') ADVANCE(366); - if (lookahead == '>') ADVANCE(341); - if (lookahead == '?') ADVANCE(371); - if (lookahead == '[') ADVANCE(361); - if (lookahead == '\\') SKIP(52) - if (lookahead == '^') ADVANCE(333); - if (lookahead == '{') ADVANCE(358); - if (lookahead == '|') ADVANCE(330); - if (lookahead == '}') ADVANCE(359); + if (lookahead == '!') ADVANCE(218); + if (lookahead == '%') ADVANCE(342); + if (lookahead == '&') ADVANCE(352); + if (lookahead == '(') ADVANCE(316); + if (lookahead == ')') ADVANCE(270); + if (lookahead == '*') ADVANCE(338); + if (lookahead == '+') ADVANCE(334); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(325); + if (lookahead == '.') ADVANCE(401); + if (lookahead == '/') ADVANCE(340); + if (lookahead == ':') ADVANCE(386); + if (lookahead == ';') ADVANCE(370); + if (lookahead == '<') ADVANCE(362); + if (lookahead == '=') ADVANCE(382); + if (lookahead == '>') ADVANCE(357); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '[') ADVANCE(377); + if (lookahead == '\\') SKIP(26) + if (lookahead == '^') ADVANCE(349); + if (lookahead == '{') ADVANCE(374); + if (lookahead == '|') ADVANCE(346); + if (lookahead == '}') ADVANCE(375); + if (lookahead == '~') ADVANCE(319); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(155) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); case 156: - if (lookahead == '!') ADVANCE(202); - if (lookahead == '%') ADVANCE(326); - if (lookahead == '&') ADVANCE(336); - if (lookahead == '(') ADVANCE(300); - if (lookahead == ')') ADVANCE(254); - if (lookahead == '*') ADVANCE(322); - if (lookahead == '+') ADVANCE(318); - if (lookahead == ',') ADVANCE(253); - if (lookahead == '-') ADVANCE(310); - if (lookahead == '.') ADVANCE(387); - if (lookahead == '/') ADVANCE(324); - if (lookahead == ':') ADVANCE(369); - if (lookahead == ';') ADVANCE(354); - if (lookahead == '<') ADVANCE(346); - if (lookahead == '=') ADVANCE(366); - if (lookahead == '>') ADVANCE(341); - if (lookahead == '?') ADVANCE(371); - if (lookahead == '[') ADVANCE(360); - if (lookahead == '\\') SKIP(34) - if (lookahead == ']') ADVANCE(364); - if (lookahead == '^') ADVANCE(333); - if (lookahead == 'b') ADVANCE(484); - if (lookahead == 'c') ADVANCE(469); - if (lookahead == 'd') ADVANCE(480); - if (lookahead == 'f') ADVANCE(477); - if (lookahead == 'i') ADVANCE(478); - if (lookahead == 's') ADVANCE(470); - if (lookahead == 'u') ADVANCE(473); - if (lookahead == 'v') ADVANCE(483); - if (lookahead == '{') ADVANCE(358); - if (lookahead == '|') ADVANCE(330); - if (lookahead == '}') ADVANCE(359); + if (lookahead == '!') ADVANCE(218); + if (lookahead == '%') ADVANCE(342); + if (lookahead == '&') ADVANCE(352); + if (lookahead == '(') ADVANCE(316); + if (lookahead == ')') ADVANCE(270); + if (lookahead == '*') ADVANCE(338); + if (lookahead == '+') ADVANCE(334); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(325); + if (lookahead == '.') ADVANCE(401); + if (lookahead == '/') ADVANCE(340); + if (lookahead == ':') ADVANCE(386); + if (lookahead == ';') ADVANCE(370); + if (lookahead == '<') ADVANCE(362); + if (lookahead == '=') ADVANCE(382); + if (lookahead == '>') ADVANCE(357); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '[') ADVANCE(376); + if (lookahead == '\\') SKIP(28) + if (lookahead == '^') ADVANCE(349); + if (lookahead == '{') ADVANCE(374); + if (lookahead == '|') ADVANCE(346); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(156) - if (('A' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); case 157: - if (lookahead == '!') ADVANCE(202); - if (lookahead == '%') ADVANCE(326); - if (lookahead == '&') ADVANCE(336); - if (lookahead == '(') ADVANCE(300); - if (lookahead == ')') ADVANCE(254); - if (lookahead == '*') ADVANCE(322); - if (lookahead == '+') ADVANCE(318); - if (lookahead == ',') ADVANCE(253); - if (lookahead == '-') ADVANCE(310); - if (lookahead == '.') ADVANCE(387); - if (lookahead == '/') ADVANCE(324); - if (lookahead == ':') ADVANCE(369); - if (lookahead == ';') ADVANCE(354); - if (lookahead == '<') ADVANCE(346); - if (lookahead == '=') ADVANCE(366); - if (lookahead == '>') ADVANCE(341); - if (lookahead == '?') ADVANCE(371); - if (lookahead == '[') ADVANCE(360); - if (lookahead == '\\') SKIP(40) - if (lookahead == ']') ADVANCE(364); - if (lookahead == '^') ADVANCE(333); - if (lookahead == '{') ADVANCE(358); - if (lookahead == '|') ADVANCE(330); - if (lookahead == '}') ADVANCE(359); + if (lookahead == '!') ADVANCE(218); + if (lookahead == '%') ADVANCE(342); + if (lookahead == '&') ADVANCE(352); + if (lookahead == '(') ADVANCE(316); + if (lookahead == ')') ADVANCE(270); + if (lookahead == '*') ADVANCE(338); + if (lookahead == '+') ADVANCE(334); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(325); + if (lookahead == '.') ADVANCE(401); + if (lookahead == '/') ADVANCE(340); + if (lookahead == ':') ADVANCE(385); + if (lookahead == '<') ADVANCE(362); + if (lookahead == '=') ADVANCE(382); + if (lookahead == '>') ADVANCE(357); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '[') ADVANCE(376); + if (lookahead == '\\') SKIP(88) + if (lookahead == '^') ADVANCE(349); + if (lookahead == '{') ADVANCE(374); + if (lookahead == '|') ADVANCE(346); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(157) - if (('A' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); case 158: - if (lookahead == '!') ADVANCE(202); - if (lookahead == '%') ADVANCE(326); - if (lookahead == '&') ADVANCE(336); - if (lookahead == '(') ADVANCE(300); - if (lookahead == ')') ADVANCE(254); - if (lookahead == '*') ADVANCE(322); - if (lookahead == '+') ADVANCE(318); - if (lookahead == ',') ADVANCE(253); - if (lookahead == '-') ADVANCE(310); - if (lookahead == '.') ADVANCE(387); - if (lookahead == '/') ADVANCE(324); - if (lookahead == ':') ADVANCE(369); - if (lookahead == ';') ADVANCE(354); - if (lookahead == '<') ADVANCE(346); - if (lookahead == '=') ADVANCE(366); - if (lookahead == '>') ADVANCE(341); - if (lookahead == '?') ADVANCE(371); - if (lookahead == '[') ADVANCE(363); - if (lookahead == '\\') SKIP(56) - if (lookahead == ']') ADVANCE(364); - if (lookahead == '^') ADVANCE(333); - if (lookahead == '|') ADVANCE(330); - if (lookahead == '}') ADVANCE(359); + if (lookahead == '!') ADVANCE(218); + if (lookahead == '%') ADVANCE(342); + if (lookahead == '&') ADVANCE(352); + if (lookahead == '(') ADVANCE(316); + if (lookahead == ')') ADVANCE(270); + if (lookahead == '*') ADVANCE(338); + if (lookahead == '+') ADVANCE(334); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(325); + if (lookahead == '.') ADVANCE(401); + if (lookahead == '/') ADVANCE(340); + if (lookahead == '<') ADVANCE(362); + if (lookahead == '=') ADVANCE(382); + if (lookahead == '>') ADVANCE(357); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '[') ADVANCE(378); + if (lookahead == '\\') SKIP(50) + if (lookahead == '^') ADVANCE(349); + if (lookahead == '|') ADVANCE(346); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(158) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); case 159: - if (lookahead == '!') ADVANCE(202); - if (lookahead == '%') ADVANCE(326); - if (lookahead == '&') ADVANCE(336); - if (lookahead == '(') ADVANCE(300); - if (lookahead == '*') ADVANCE(322); - if (lookahead == '+') ADVANCE(318); - if (lookahead == ',') ADVANCE(253); - if (lookahead == '-') ADVANCE(310); - if (lookahead == '.') ADVANCE(387); - if (lookahead == '/') ADVANCE(324); - if (lookahead == ':') ADVANCE(369); - if (lookahead == '<') ADVANCE(346); - if (lookahead == '=') ADVANCE(366); - if (lookahead == '>') ADVANCE(503); - if (lookahead == '?') ADVANCE(371); - if (lookahead == '[') ADVANCE(360); - if (lookahead == '\\') SKIP(46) - if (lookahead == '^') ADVANCE(333); - if (lookahead == '{') ADVANCE(358); - if (lookahead == '|') ADVANCE(330); + if (lookahead == '!') ADVANCE(218); + if (lookahead == '%') ADVANCE(342); + if (lookahead == '&') ADVANCE(352); + if (lookahead == '(') ADVANCE(316); + if (lookahead == ')') ADVANCE(270); + if (lookahead == '*') ADVANCE(338); + if (lookahead == '+') ADVANCE(334); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(325); + if (lookahead == '.') ADVANCE(401); + if (lookahead == '/') ADVANCE(340); + if (lookahead == '<') ADVANCE(362); + if (lookahead == '=') ADVANCE(382); + if (lookahead == '>') ADVANCE(357); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '[') ADVANCE(376); + if (lookahead == '\\') SKIP(34) + if (lookahead == '^') ADVANCE(349); + if (lookahead == 'b') ADVANCE(500); + if (lookahead == 'c') ADVANCE(485); + if (lookahead == 'd') ADVANCE(496); + if (lookahead == 'f') ADVANCE(493); + if (lookahead == 'i') ADVANCE(494); + if (lookahead == 's') ADVANCE(486); + if (lookahead == 'u') ADVANCE(489); + if (lookahead == 'v') ADVANCE(499); + if (lookahead == '{') ADVANCE(374); + if (lookahead == '|') ADVANCE(346); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(159) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); case 160: - if (lookahead == '!') ADVANCE(202); - if (lookahead == '%') ADVANCE(326); - if (lookahead == '&') ADVANCE(336); - if (lookahead == '(') ADVANCE(300); - if (lookahead == '*') ADVANCE(322); - if (lookahead == '+') ADVANCE(318); - if (lookahead == ',') ADVANCE(253); - if (lookahead == '-') ADVANCE(310); - if (lookahead == '.') ADVANCE(387); - if (lookahead == '/') ADVANCE(324); - if (lookahead == ';') ADVANCE(354); - if (lookahead == '<') ADVANCE(346); - if (lookahead == '=') ADVANCE(366); - if (lookahead == '>') ADVANCE(341); - if (lookahead == '?') ADVANCE(371); - if (lookahead == '[') ADVANCE(362); - if (lookahead == '\\') SKIP(62) - if (lookahead == '^') ADVANCE(333); - if (lookahead == '|') ADVANCE(330); - if (lookahead == '}') ADVANCE(359); + if (lookahead == '!') ADVANCE(218); + if (lookahead == '%') ADVANCE(342); + if (lookahead == '&') ADVANCE(352); + if (lookahead == '(') ADVANCE(316); + if (lookahead == ')') ADVANCE(270); + if (lookahead == '*') ADVANCE(338); + if (lookahead == '+') ADVANCE(334); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(325); + if (lookahead == '.') ADVANCE(401); + if (lookahead == '/') ADVANCE(340); + if (lookahead == '<') ADVANCE(362); + if (lookahead == '=') ADVANCE(382); + if (lookahead == '>') ADVANCE(357); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '[') ADVANCE(376); + if (lookahead == '\\') SKIP(118) + if (lookahead == '^') ADVANCE(349); + if (lookahead == '|') ADVANCE(346); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(160) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); case 161: - if (lookahead == '!') ADVANCE(202); - if (lookahead == '%') ADVANCE(326); - if (lookahead == '&') ADVANCE(336); - if (lookahead == '(') ADVANCE(300); - if (lookahead == '*') ADVANCE(322); - if (lookahead == '+') ADVANCE(318); - if (lookahead == ',') ADVANCE(253); - if (lookahead == '-') ADVANCE(310); - if (lookahead == '.') ADVANCE(387); - if (lookahead == '/') ADVANCE(324); - if (lookahead == '<') ADVANCE(346); - if (lookahead == '=') ADVANCE(366); - if (lookahead == '>') ADVANCE(503); - if (lookahead == '?') ADVANCE(371); - if (lookahead == '[') ADVANCE(360); - if (lookahead == '\\') SKIP(44) - if (lookahead == '^') ADVANCE(333); - if (lookahead == 'b') ADVANCE(484); - if (lookahead == 'c') ADVANCE(469); - if (lookahead == 'd') ADVANCE(480); - if (lookahead == 'f') ADVANCE(477); - if (lookahead == 'i') ADVANCE(478); - if (lookahead == 's') ADVANCE(470); - if (lookahead == 'u') ADVANCE(473); - if (lookahead == 'v') ADVANCE(483); - if (lookahead == '{') ADVANCE(358); - if (lookahead == '|') ADVANCE(330); + if (lookahead == '!') ADVANCE(218); + if (lookahead == '%') ADVANCE(342); + if (lookahead == '&') ADVANCE(352); + if (lookahead == '(') ADVANCE(316); + if (lookahead == ')') ADVANCE(270); + if (lookahead == '*') ADVANCE(338); + if (lookahead == '+') ADVANCE(334); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(325); + if (lookahead == '.') ADVANCE(401); + if (lookahead == '/') ADVANCE(340); + if (lookahead == '<') ADVANCE(362); + if (lookahead == '=') ADVANCE(382); + if (lookahead == '>') ADVANCE(357); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '[') ADVANCE(376); + if (lookahead == '\\') SKIP(118) + if (lookahead == '^') ADVANCE(349); + if (lookahead == '|') ADVANCE(346); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(161) + lookahead == ' ') SKIP(160) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(529); END_STATE(); case 162: - if (lookahead == '!') ADVANCE(202); - if (lookahead == '%') ADVANCE(326); - if (lookahead == '&') ADVANCE(336); - if (lookahead == '(') ADVANCE(300); - if (lookahead == '*') ADVANCE(322); - if (lookahead == '+') ADVANCE(318); - if (lookahead == ',') ADVANCE(253); - if (lookahead == '-') ADVANCE(310); - if (lookahead == '.') ADVANCE(387); - if (lookahead == '/') ADVANCE(324); - if (lookahead == '<') ADVANCE(346); - if (lookahead == '=') ADVANCE(366); - if (lookahead == '>') ADVANCE(503); - if (lookahead == '?') ADVANCE(371); - if (lookahead == '[') ADVANCE(363); - if (lookahead == '\\') SKIP(64) - if (lookahead == '^') ADVANCE(333); - if (lookahead == '|') ADVANCE(330); + if (lookahead == '!') ADVANCE(218); + if (lookahead == '%') ADVANCE(342); + if (lookahead == '&') ADVANCE(352); + if (lookahead == '(') ADVANCE(316); + if (lookahead == ')') ADVANCE(270); + if (lookahead == '*') ADVANCE(338); + if (lookahead == '+') ADVANCE(334); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(325); + if (lookahead == '.') ADVANCE(401); + if (lookahead == '/') ADVANCE(340); + if (lookahead == '<') ADVANCE(362); + if (lookahead == '=') ADVANCE(382); + if (lookahead == '>') ADVANCE(357); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '[') ADVANCE(379); + if (lookahead == '\\') SKIP(126) + if (lookahead == '^') ADVANCE(349); + if (lookahead == '|') ADVANCE(346); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(162) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); case 163: - if (lookahead == '!') ADVANCE(202); - if (lookahead == '%') ADVANCE(326); - if (lookahead == '&') ADVANCE(336); - if (lookahead == '(') ADVANCE(300); - if (lookahead == '*') ADVANCE(322); - if (lookahead == '+') ADVANCE(320); - if (lookahead == ',') ADVANCE(253); - if (lookahead == '-') ADVANCE(313); - if (lookahead == '.') ADVANCE(189); - if (lookahead == '/') ADVANCE(324); - if (lookahead == ':') ADVANCE(200); - if (lookahead == '<') ADVANCE(347); - if (lookahead == '=') ADVANCE(366); - if (lookahead == '>') ADVANCE(341); - if (lookahead == 'F') ADVANCE(451); - if (lookahead == 'T') ADVANCE(455); - if (lookahead == '[') ADVANCE(360); - if (lookahead == '\\') SKIP(70) - if (lookahead == '^') ADVANCE(333); - if (lookahead == 'f') ADVANCE(460); - if (lookahead == 't') ADVANCE(487); - if (lookahead == '{') ADVANCE(358); - if (lookahead == '|') ADVANCE(330); + if (lookahead == '!') ADVANCE(218); + if (lookahead == '%') ADVANCE(342); + if (lookahead == '&') ADVANCE(352); + if (lookahead == '(') ADVANCE(316); + if (lookahead == ')') ADVANCE(270); + if (lookahead == '*') ADVANCE(338); + if (lookahead == '+') ADVANCE(334); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(326); + if (lookahead == '.') ADVANCE(403); + if (lookahead == '/') ADVANCE(340); + if (lookahead == ':') ADVANCE(386); + if (lookahead == ';') ADVANCE(370); + if (lookahead == '<') ADVANCE(362); + if (lookahead == '=') ADVANCE(382); + if (lookahead == '>') ADVANCE(357); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '[') ADVANCE(377); + if (lookahead == '\\') SKIP(86) + if (lookahead == '^') ADVANCE(349); + if (lookahead == '{') ADVANCE(374); + if (lookahead == '|') ADVANCE(346); + if (lookahead == '}') ADVANCE(375); + if (lookahead == '~') ADVANCE(319); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(163) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); case 164: - if (lookahead == '!') ADVANCE(202); - if (lookahead == '%') ADVANCE(325); - if (lookahead == '&') ADVANCE(335); - if (lookahead == '(') ADVANCE(300); - if (lookahead == ')') ADVANCE(254); - if (lookahead == '*') ADVANCE(321); - if (lookahead == '+') ADVANCE(315); - if (lookahead == ',') ADVANCE(253); - if (lookahead == '-') ADVANCE(311); - if (lookahead == '.') ADVANCE(387); - if (lookahead == '/') ADVANCE(323); - if (lookahead == ':') ADVANCE(370); - if (lookahead == ';') ADVANCE(354); - if (lookahead == '<') ADVANCE(348); - if (lookahead == '=') ADVANCE(366); - if (lookahead == '>') ADVANCE(340); - if (lookahead == '?') ADVANCE(371); - if (lookahead == '[') ADVANCE(361); + if (lookahead == '!') ADVANCE(218); + if (lookahead == '%') ADVANCE(342); + if (lookahead == '&') ADVANCE(352); + if (lookahead == '(') ADVANCE(316); + if (lookahead == ')') ADVANCE(270); + if (lookahead == '*') ADVANCE(338); + if (lookahead == '+') ADVANCE(334); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(326); + if (lookahead == '.') ADVANCE(403); + if (lookahead == '/') ADVANCE(340); + if (lookahead == ':') ADVANCE(386); + if (lookahead == ';') ADVANCE(370); + if (lookahead == '<') ADVANCE(362); + if (lookahead == '=') ADVANCE(382); + if (lookahead == '>') ADVANCE(357); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '[') ADVANCE(376); if (lookahead == '\\') SKIP(94) - if (lookahead == '^') ADVANCE(332); - if (lookahead == '{') ADVANCE(358); - if (lookahead == '|') ADVANCE(331); - if (lookahead == '}') ADVANCE(359); - if (lookahead == '~') ADVANCE(303); + if (lookahead == ']') ADVANCE(380); + if (lookahead == '^') ADVANCE(349); + if (lookahead == '{') ADVANCE(374); + if (lookahead == '|') ADVANCE(346); + if (lookahead == '}') ADVANCE(375); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(164) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + if (('A' <= lookahead && lookahead <= '_') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); case 165: - if (lookahead == '!') ADVANCE(202); - if (lookahead == '%') ADVANCE(325); - if (lookahead == '&') ADVANCE(335); - if (lookahead == '(') ADVANCE(300); - if (lookahead == ')') ADVANCE(254); - if (lookahead == '*') ADVANCE(321); - if (lookahead == '+') ADVANCE(315); - if (lookahead == ',') ADVANCE(253); - if (lookahead == '-') ADVANCE(311); - if (lookahead == '.') ADVANCE(387); - if (lookahead == '/') ADVANCE(323); - if (lookahead == ':') ADVANCE(370); - if (lookahead == ';') ADVANCE(354); - if (lookahead == '<') ADVANCE(348); - if (lookahead == '=') ADVANCE(203); - if (lookahead == '>') ADVANCE(503); - if (lookahead == '?') ADVANCE(371); - if (lookahead == '[') ADVANCE(360); - if (lookahead == '\\') SKIP(96) - if (lookahead == '^') ADVANCE(332); - if (lookahead == '{') ADVANCE(358); - if (lookahead == '|') ADVANCE(331); - if (lookahead == '~') ADVANCE(303); + if (lookahead == '!') ADVANCE(218); + if (lookahead == '%') ADVANCE(342); + if (lookahead == '&') ADVANCE(352); + if (lookahead == '(') ADVANCE(316); + if (lookahead == ')') ADVANCE(270); + if (lookahead == '*') ADVANCE(338); + if (lookahead == '+') ADVANCE(334); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(326); + if (lookahead == '.') ADVANCE(403); + if (lookahead == '/') ADVANCE(340); + if (lookahead == ':') ADVANCE(386); + if (lookahead == '<') ADVANCE(362); + if (lookahead == '=') ADVANCE(382); + if (lookahead == '>') ADVANCE(519); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '[') ADVANCE(376); + if (lookahead == '\\') SKIP(30) + if (lookahead == '^') ADVANCE(349); + if (lookahead == '{') ADVANCE(374); + if (lookahead == '|') ADVANCE(346); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(165) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); case 166: - if (lookahead == '!') ADVANCE(202); - if (lookahead == '%') ADVANCE(325); - if (lookahead == '&') ADVANCE(335); - if (lookahead == '(') ADVANCE(300); - if (lookahead == ')') ADVANCE(254); - if (lookahead == '*') ADVANCE(321); - if (lookahead == '+') ADVANCE(315); - if (lookahead == ',') ADVANCE(253); - if (lookahead == '-') ADVANCE(311); - if (lookahead == '.') ADVANCE(387); - if (lookahead == '/') ADVANCE(323); - if (lookahead == ':') ADVANCE(370); - if (lookahead == ';') ADVANCE(354); - if (lookahead == '<') ADVANCE(348); - if (lookahead == '=') ADVANCE(203); - if (lookahead == '>') ADVANCE(340); - if (lookahead == '?') ADVANCE(371); - if (lookahead == '[') ADVANCE(360); - if (lookahead == '\\') SKIP(120) - if (lookahead == ']') ADVANCE(364); - if (lookahead == '^') ADVANCE(332); - if (lookahead == '{') ADVANCE(358); - if (lookahead == '|') ADVANCE(331); - if (lookahead == '}') ADVANCE(359); + if (lookahead == '!') ADVANCE(218); + if (lookahead == '%') ADVANCE(342); + if (lookahead == '&') ADVANCE(352); + if (lookahead == '(') ADVANCE(316); + if (lookahead == ')') ADVANCE(270); + if (lookahead == '*') ADVANCE(338); + if (lookahead == '+') ADVANCE(334); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(326); + if (lookahead == '.') ADVANCE(403); + if (lookahead == '/') ADVANCE(340); + if (lookahead == ':') ADVANCE(385); + if (lookahead == ';') ADVANCE(370); + if (lookahead == '<') ADVANCE(362); + if (lookahead == '=') ADVANCE(382); + if (lookahead == '>') ADVANCE(357); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '[') ADVANCE(377); + if (lookahead == '\\') SKIP(42) + if (lookahead == '^') ADVANCE(349); + if (lookahead == '{') ADVANCE(374); + if (lookahead == '|') ADVANCE(346); + if (lookahead == '}') ADVANCE(375); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(166) - if (('A' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); case 167: - if (lookahead == '!') ADVANCE(202); - if (lookahead == '%') ADVANCE(325); - if (lookahead == '&') ADVANCE(335); - if (lookahead == '(') ADVANCE(300); - if (lookahead == ')') ADVANCE(254); - if (lookahead == '*') ADVANCE(321); - if (lookahead == '+') ADVANCE(315); - if (lookahead == ',') ADVANCE(253); - if (lookahead == '-') ADVANCE(311); - if (lookahead == '.') ADVANCE(387); - if (lookahead == '/') ADVANCE(323); - if (lookahead == ':') ADVANCE(200); - if (lookahead == ';') ADVANCE(354); - if (lookahead == '<') ADVANCE(348); - if (lookahead == '=') ADVANCE(203); - if (lookahead == '>') ADVANCE(340); - if (lookahead == '?') ADVANCE(371); - if (lookahead == '[') ADVANCE(360); - if (lookahead == '\\') SKIP(116) - if (lookahead == ']') ADVANCE(212); - if (lookahead == '^') ADVANCE(332); - if (lookahead == 'b') ADVANCE(484); - if (lookahead == 'c') ADVANCE(469); - if (lookahead == 'd') ADVANCE(480); - if (lookahead == 'f') ADVANCE(477); - if (lookahead == 'i') ADVANCE(478); - if (lookahead == 's') ADVANCE(470); - if (lookahead == 'u') ADVANCE(473); - if (lookahead == 'v') ADVANCE(483); - if (lookahead == '{') ADVANCE(358); - if (lookahead == '|') ADVANCE(331); - if (lookahead == '}') ADVANCE(359); + if (lookahead == '!') ADVANCE(218); + if (lookahead == '%') ADVANCE(342); + if (lookahead == '&') ADVANCE(352); + if (lookahead == '(') ADVANCE(316); + if (lookahead == ')') ADVANCE(270); + if (lookahead == '*') ADVANCE(338); + if (lookahead == '+') ADVANCE(334); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(326); + if (lookahead == '.') ADVANCE(403); + if (lookahead == '/') ADVANCE(340); + if (lookahead == ':') ADVANCE(385); + if (lookahead == ';') ADVANCE(370); + if (lookahead == '<') ADVANCE(362); + if (lookahead == '=') ADVANCE(382); + if (lookahead == '>') ADVANCE(357); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '[') ADVANCE(376); + if (lookahead == '\\') SKIP(32) + if (lookahead == ']') ADVANCE(380); + if (lookahead == '^') ADVANCE(349); + if (lookahead == 'b') ADVANCE(500); + if (lookahead == 'c') ADVANCE(485); + if (lookahead == 'd') ADVANCE(496); + if (lookahead == 'f') ADVANCE(493); + if (lookahead == 'i') ADVANCE(494); + if (lookahead == 's') ADVANCE(486); + if (lookahead == 'u') ADVANCE(489); + if (lookahead == 'v') ADVANCE(499); + if (lookahead == '{') ADVANCE(374); + if (lookahead == '|') ADVANCE(346); + if (lookahead == '}') ADVANCE(375); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(167) if (('A' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); case 168: - if (lookahead == '!') ADVANCE(202); - if (lookahead == '%') ADVANCE(325); - if (lookahead == '&') ADVANCE(335); - if (lookahead == '(') ADVANCE(300); - if (lookahead == ')') ADVANCE(254); - if (lookahead == '*') ADVANCE(321); - if (lookahead == '+') ADVANCE(315); - if (lookahead == ',') ADVANCE(253); - if (lookahead == '-') ADVANCE(311); - if (lookahead == '.') ADVANCE(387); - if (lookahead == '/') ADVANCE(323); - if (lookahead == ':') ADVANCE(369); - if (lookahead == ';') ADVANCE(354); - if (lookahead == '<') ADVANCE(348); - if (lookahead == '=') ADVANCE(203); - if (lookahead == '>') ADVANCE(340); - if (lookahead == '?') ADVANCE(371); - if (lookahead == '[') ADVANCE(360); - if (lookahead == '\\') SKIP(100) - if (lookahead == ']') ADVANCE(364); - if (lookahead == '^') ADVANCE(332); - if (lookahead == 'b') ADVANCE(484); - if (lookahead == 'c') ADVANCE(469); - if (lookahead == 'd') ADVANCE(480); - if (lookahead == 'f') ADVANCE(477); - if (lookahead == 'i') ADVANCE(478); - if (lookahead == 's') ADVANCE(470); - if (lookahead == 'u') ADVANCE(473); - if (lookahead == 'v') ADVANCE(483); - if (lookahead == '{') ADVANCE(358); - if (lookahead == '|') ADVANCE(331); - if (lookahead == '}') ADVANCE(359); + if (lookahead == '!') ADVANCE(218); + if (lookahead == '%') ADVANCE(342); + if (lookahead == '&') ADVANCE(352); + if (lookahead == '(') ADVANCE(316); + if (lookahead == ')') ADVANCE(270); + if (lookahead == '*') ADVANCE(338); + if (lookahead == '+') ADVANCE(334); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(326); + if (lookahead == '.') ADVANCE(403); + if (lookahead == '/') ADVANCE(340); + if (lookahead == ':') ADVANCE(385); + if (lookahead == ';') ADVANCE(370); + if (lookahead == '<') ADVANCE(362); + if (lookahead == '=') ADVANCE(382); + if (lookahead == '>') ADVANCE(357); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '[') ADVANCE(376); + if (lookahead == '\\') SKIP(36) + if (lookahead == ']') ADVANCE(380); + if (lookahead == '^') ADVANCE(349); + if (lookahead == '{') ADVANCE(374); + if (lookahead == '|') ADVANCE(346); + if (lookahead == '}') ADVANCE(375); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(168) if (('A' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); case 169: - if (lookahead == '!') ADVANCE(202); - if (lookahead == '%') ADVANCE(325); - if (lookahead == '&') ADVANCE(335); - if (lookahead == '(') ADVANCE(300); - if (lookahead == ')') ADVANCE(254); - if (lookahead == '*') ADVANCE(321); - if (lookahead == '+') ADVANCE(315); - if (lookahead == ',') ADVANCE(253); - if (lookahead == '-') ADVANCE(311); - if (lookahead == '.') ADVANCE(387); - if (lookahead == '/') ADVANCE(323); - if (lookahead == ':') ADVANCE(369); - if (lookahead == ';') ADVANCE(354); - if (lookahead == '<') ADVANCE(348); - if (lookahead == '=') ADVANCE(203); - if (lookahead == '>') ADVANCE(340); - if (lookahead == '?') ADVANCE(371); - if (lookahead == '[') ADVANCE(360); - if (lookahead == '\\') SKIP(118) - if (lookahead == ']') ADVANCE(364); - if (lookahead == '^') ADVANCE(332); - if (lookahead == '{') ADVANCE(358); - if (lookahead == '|') ADVANCE(331); - if (lookahead == '}') ADVANCE(359); + if (lookahead == '!') ADVANCE(218); + if (lookahead == '%') ADVANCE(342); + if (lookahead == '&') ADVANCE(352); + if (lookahead == '(') ADVANCE(316); + if (lookahead == ')') ADVANCE(270); + if (lookahead == '*') ADVANCE(338); + if (lookahead == '+') ADVANCE(334); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(326); + if (lookahead == '.') ADVANCE(403); + if (lookahead == '/') ADVANCE(340); + if (lookahead == ':') ADVANCE(385); + if (lookahead == ';') ADVANCE(370); + if (lookahead == '<') ADVANCE(362); + if (lookahead == '=') ADVANCE(382); + if (lookahead == '>') ADVANCE(357); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '[') ADVANCE(376); + if (lookahead == '\\') SKIP(104) + if (lookahead == ']') ADVANCE(380); + if (lookahead == '^') ADVANCE(349); + if (lookahead == '|') ADVANCE(346); + if (lookahead == '}') ADVANCE(375); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(169) if (('A' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); case 170: - if (lookahead == '!') ADVANCE(202); - if (lookahead == '%') ADVANCE(325); - if (lookahead == '&') ADVANCE(335); - if (lookahead == '(') ADVANCE(300); - if (lookahead == '*') ADVANCE(321); - if (lookahead == '+') ADVANCE(315); - if (lookahead == ',') ADVANCE(253); - if (lookahead == '-') ADVANCE(311); - if (lookahead == '.') ADVANCE(387); - if (lookahead == '/') ADVANCE(323); - if (lookahead == ':') ADVANCE(369); - if (lookahead == '<') ADVANCE(348); - if (lookahead == '=') ADVANCE(203); - if (lookahead == '>') ADVANCE(503); - if (lookahead == '?') ADVANCE(371); - if (lookahead == '[') ADVANCE(360); - if (lookahead == '\\') SKIP(108) - if (lookahead == '^') ADVANCE(332); - if (lookahead == '{') ADVANCE(358); - if (lookahead == '|') ADVANCE(331); + if (lookahead == '!') ADVANCE(218); + if (lookahead == '%') ADVANCE(342); + if (lookahead == '&') ADVANCE(352); + if (lookahead == '(') ADVANCE(316); + if (lookahead == ')') ADVANCE(270); + if (lookahead == '*') ADVANCE(338); + if (lookahead == '+') ADVANCE(334); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(326); + if (lookahead == '.') ADVANCE(403); + if (lookahead == '/') ADVANCE(340); + if (lookahead == ':') ADVANCE(385); + if (lookahead == ';') ADVANCE(370); + if (lookahead == '<') ADVANCE(362); + if (lookahead == '=') ADVANCE(382); + if (lookahead == '>') ADVANCE(357); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '[') ADVANCE(376); + if (lookahead == '\\') SKIP(104) + if (lookahead == ']') ADVANCE(380); + if (lookahead == '^') ADVANCE(349); + if (lookahead == '|') ADVANCE(346); + if (lookahead == '}') ADVANCE(375); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(170) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + lookahead == ' ') SKIP(169) + if (('A' <= lookahead && lookahead <= '_') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(529); END_STATE(); case 171: - if (lookahead == '!') ADVANCE(202); - if (lookahead == '%') ADVANCE(325); - if (lookahead == '&') ADVANCE(335); - if (lookahead == '(') ADVANCE(300); - if (lookahead == '*') ADVANCE(321); - if (lookahead == '+') ADVANCE(315); - if (lookahead == ',') ADVANCE(253); - if (lookahead == '-') ADVANCE(311); - if (lookahead == '.') ADVANCE(387); - if (lookahead == '/') ADVANCE(323); - if (lookahead == '<') ADVANCE(348); - if (lookahead == '=') ADVANCE(203); - if (lookahead == '>') ADVANCE(503); - if (lookahead == '?') ADVANCE(371); - if (lookahead == '[') ADVANCE(360); - if (lookahead == '\\') SKIP(106) - if (lookahead == '^') ADVANCE(332); - if (lookahead == 'b') ADVANCE(484); - if (lookahead == 'c') ADVANCE(469); - if (lookahead == 'd') ADVANCE(480); - if (lookahead == 'f') ADVANCE(477); - if (lookahead == 'i') ADVANCE(478); - if (lookahead == 's') ADVANCE(470); - if (lookahead == 'u') ADVANCE(473); - if (lookahead == 'v') ADVANCE(483); - if (lookahead == '{') ADVANCE(358); - if (lookahead == '|') ADVANCE(331); + if (lookahead == '!') ADVANCE(218); + if (lookahead == '%') ADVANCE(342); + if (lookahead == '&') ADVANCE(352); + if (lookahead == '(') ADVANCE(316); + if (lookahead == ')') ADVANCE(270); + if (lookahead == '*') ADVANCE(338); + if (lookahead == '+') ADVANCE(334); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(326); + if (lookahead == '.') ADVANCE(403); + if (lookahead == '/') ADVANCE(340); + if (lookahead == ':') ADVANCE(385); + if (lookahead == ';') ADVANCE(370); + if (lookahead == '<') ADVANCE(362); + if (lookahead == '=') ADVANCE(382); + if (lookahead == '>') ADVANCE(357); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '[') ADVANCE(379); + if (lookahead == '\\') SKIP(116) + if (lookahead == ']') ADVANCE(380); + if (lookahead == '^') ADVANCE(349); + if (lookahead == '|') ADVANCE(346); + if (lookahead == '}') ADVANCE(375); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(171) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + if (('A' <= lookahead && lookahead <= '_') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); case 172: - if (lookahead == '"') ADVANCE(420); - if (lookahead == '/') ADVANCE(190); - if (lookahead == '<') ADVANCE(208); - if (lookahead == 'L') ADVANCE(435); - if (lookahead == 'U') ADVANCE(437); - if (lookahead == '\\') SKIP(83) - if (lookahead == 'u') ADVANCE(440); + if (lookahead == '!') ADVANCE(218); + if (lookahead == '%') ADVANCE(342); + if (lookahead == '&') ADVANCE(352); + if (lookahead == '(') ADVANCE(316); + if (lookahead == '*') ADVANCE(338); + if (lookahead == '+') ADVANCE(334); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(326); + if (lookahead == '.') ADVANCE(403); + if (lookahead == '/') ADVANCE(340); + if (lookahead == ':') ADVANCE(385); + if (lookahead == '<') ADVANCE(362); + if (lookahead == '=') ADVANCE(382); + if (lookahead == '>') ADVANCE(519); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '[') ADVANCE(376); + if (lookahead == '\\') SKIP(40) + if (lookahead == '^') ADVANCE(349); + if (lookahead == '{') ADVANCE(374); + if (lookahead == '|') ADVANCE(346); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(172) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); case 173: - if (lookahead == '"') ADVANCE(420); - if (lookahead == '/') ADVANCE(190); - if (lookahead == '\\') ADVANCE(85); + if (lookahead == '!') ADVANCE(218); + if (lookahead == '%') ADVANCE(342); + if (lookahead == '&') ADVANCE(352); + if (lookahead == '(') ADVANCE(316); + if (lookahead == '*') ADVANCE(338); + if (lookahead == '+') ADVANCE(334); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(326); + if (lookahead == '.') ADVANCE(403); + if (lookahead == '/') ADVANCE(340); + if (lookahead == ';') ADVANCE(370); + if (lookahead == '<') ADVANCE(362); + if (lookahead == '=') ADVANCE(382); + if (lookahead == '>') ADVANCE(357); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '[') ADVANCE(378); + if (lookahead == '\\') SKIP(52) + if (lookahead == '^') ADVANCE(349); + if (lookahead == '|') ADVANCE(346); + if (lookahead == '}') ADVANCE(375); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(173) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); case 174: - if (lookahead == '"') ADVANCE(416); + if (lookahead == '!') ADVANCE(218); + if (lookahead == '%') ADVANCE(342); + if (lookahead == '&') ADVANCE(352); + if (lookahead == '(') ADVANCE(316); + if (lookahead == '*') ADVANCE(338); + if (lookahead == '+') ADVANCE(334); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(326); + if (lookahead == '.') ADVANCE(403); + if (lookahead == '/') ADVANCE(340); + if (lookahead == '<') ADVANCE(362); + if (lookahead == '=') ADVANCE(382); + if (lookahead == '>') ADVANCE(519); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '[') ADVANCE(376); + if (lookahead == '\\') SKIP(38) + if (lookahead == '^') ADVANCE(349); + if (lookahead == 'b') ADVANCE(500); + if (lookahead == 'c') ADVANCE(485); + if (lookahead == 'd') ADVANCE(496); + if (lookahead == 'f') ADVANCE(493); + if (lookahead == 'i') ADVANCE(494); + if (lookahead == 's') ADVANCE(486); + if (lookahead == 'u') ADVANCE(489); + if (lookahead == 'v') ADVANCE(499); + if (lookahead == '{') ADVANCE(374); + if (lookahead == '|') ADVANCE(346); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(174) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); case 175: - if (lookahead == '"') ADVANCE(418); + if (lookahead == '!') ADVANCE(218); + if (lookahead == '%') ADVANCE(342); + if (lookahead == '&') ADVANCE(352); + if (lookahead == '(') ADVANCE(316); + if (lookahead == '*') ADVANCE(338); + if (lookahead == '+') ADVANCE(334); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(326); + if (lookahead == '.') ADVANCE(403); + if (lookahead == '/') ADVANCE(340); + if (lookahead == '<') ADVANCE(362); + if (lookahead == '=') ADVANCE(382); + if (lookahead == '>') ADVANCE(519); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '[') ADVANCE(376); + if (lookahead == '\\') SKIP(106) + if (lookahead == '^') ADVANCE(349); + if (lookahead == '|') ADVANCE(346); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(175) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); case 176: - if (lookahead == '"') ADVANCE(417); - if (lookahead == '8') ADVANCE(177); + if (lookahead == '!') ADVANCE(218); + if (lookahead == '%') ADVANCE(342); + if (lookahead == '&') ADVANCE(352); + if (lookahead == '(') ADVANCE(316); + if (lookahead == '*') ADVANCE(338); + if (lookahead == '+') ADVANCE(334); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(326); + if (lookahead == '.') ADVANCE(403); + if (lookahead == '/') ADVANCE(340); + if (lookahead == '<') ADVANCE(362); + if (lookahead == '=') ADVANCE(382); + if (lookahead == '>') ADVANCE(519); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '[') ADVANCE(376); + if (lookahead == '\\') SKIP(106) + if (lookahead == '^') ADVANCE(349); + if (lookahead == '|') ADVANCE(346); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(175) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(529); END_STATE(); case 177: - if (lookahead == '"') ADVANCE(419); + if (lookahead == '!') ADVANCE(218); + if (lookahead == '%') ADVANCE(342); + if (lookahead == '&') ADVANCE(352); + if (lookahead == '(') ADVANCE(316); + if (lookahead == '*') ADVANCE(338); + if (lookahead == '+') ADVANCE(334); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(326); + if (lookahead == '.') ADVANCE(403); + if (lookahead == '/') ADVANCE(340); + if (lookahead == '<') ADVANCE(362); + if (lookahead == '=') ADVANCE(382); + if (lookahead == '>') ADVANCE(519); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '[') ADVANCE(379); + if (lookahead == '\\') SKIP(120) + if (lookahead == '^') ADVANCE(349); + if (lookahead == '|') ADVANCE(346); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(177) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); case 178: - if (lookahead == '"') ADVANCE(508); + if (lookahead == '!') ADVANCE(218); + if (lookahead == '%') ADVANCE(342); + if (lookahead == '&') ADVANCE(352); + if (lookahead == '(') ADVANCE(316); + if (lookahead == '*') ADVANCE(338); + if (lookahead == '+') ADVANCE(336); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(329); + if (lookahead == '.') ADVANCE(205); + if (lookahead == '/') ADVANCE(340); + if (lookahead == ':') ADVANCE(216); + if (lookahead == '<') ADVANCE(363); + if (lookahead == '=') ADVANCE(382); + if (lookahead == '>') ADVANCE(357); + if (lookahead == 'F') ADVANCE(467); + if (lookahead == 'T') ADVANCE(471); + if (lookahead == '[') ADVANCE(376); + if (lookahead == '\\') SKIP(62) + if (lookahead == '^') ADVANCE(349); + if (lookahead == 'f') ADVANCE(476); + if (lookahead == 't') ADVANCE(503); + if (lookahead == '{') ADVANCE(374); + if (lookahead == '|') ADVANCE(346); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(178) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); case 179: - if (lookahead == '#') ADVANCE(218); - if (lookahead == '&') ADVANCE(335); - if (lookahead == '(') ADVANCE(300); - if (lookahead == ')') ADVANCE(254); - if (lookahead == '*') ADVANCE(321); - if (lookahead == ',') ADVANCE(253); - if (lookahead == '-') ADVANCE(304); - if (lookahead == '/') ADVANCE(190); - if (lookahead == ':') ADVANCE(200); - if (lookahead == ';') ADVANCE(354); - if (lookahead == '=') ADVANCE(365); - if (lookahead == '>') ADVANCE(503); - if (lookahead == '[') ADVANCE(361); - if (lookahead == '\\') SKIP(12) - if (lookahead == 'b') ADVANCE(484); - if (lookahead == 'c') ADVANCE(469); - if (lookahead == 'd') ADVANCE(480); - if (lookahead == 'f') ADVANCE(477); - if (lookahead == 'i') ADVANCE(478); - if (lookahead == 's') ADVANCE(470); - if (lookahead == 'u') ADVANCE(473); - if (lookahead == 'v') ADVANCE(483); - if (lookahead == '{') ADVANCE(358); - if (lookahead == '|') ADVANCE(224); - if (lookahead == '}') ADVANCE(359); - if (lookahead == '~') ADVANCE(303); + if (lookahead == '!') ADVANCE(218); + if (lookahead == '%') ADVANCE(341); + if (lookahead == '&') ADVANCE(351); + if (lookahead == '(') ADVANCE(316); + if (lookahead == ')') ADVANCE(270); + if (lookahead == '*') ADVANCE(337); + if (lookahead == '+') ADVANCE(331); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(327); + if (lookahead == '.') ADVANCE(403); + if (lookahead == '/') ADVANCE(339); + if (lookahead == ':') ADVANCE(386); + if (lookahead == ';') ADVANCE(370); + if (lookahead == '<') ADVANCE(364); + if (lookahead == '=') ADVANCE(382); + if (lookahead == '>') ADVANCE(356); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '[') ADVANCE(377); + if (lookahead == '\\') SKIP(110) + if (lookahead == '^') ADVANCE(348); + if (lookahead == '{') ADVANCE(374); + if (lookahead == '|') ADVANCE(347); + if (lookahead == '}') ADVANCE(375); + if (lookahead == '~') ADVANCE(319); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(179) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); case 180: - if (lookahead == '#') ADVANCE(214); - if (lookahead == '&') ADVANCE(335); - if (lookahead == '(') ADVANCE(300); - if (lookahead == ')') ADVANCE(254); - if (lookahead == '*') ADVANCE(321); - if (lookahead == '+') ADVANCE(314); - if (lookahead == ',') ADVANCE(253); - if (lookahead == '-') ADVANCE(207); - if (lookahead == '.') ADVANCE(196); - if (lookahead == '/') ADVANCE(190); - if (lookahead == ':') ADVANCE(200); - if (lookahead == ';') ADVANCE(354); - if (lookahead == '<') ADVANCE(345); - if (lookahead == '=') ADVANCE(365); - if (lookahead == '>') ADVANCE(503); - if (lookahead == '[') ADVANCE(361); - if (lookahead == '\\') SKIP(10) - if (lookahead == 'b') ADVANCE(484); - if (lookahead == 'c') ADVANCE(469); - if (lookahead == 'd') ADVANCE(480); - if (lookahead == 'f') ADVANCE(477); - if (lookahead == 'i') ADVANCE(478); - if (lookahead == 's') ADVANCE(470); - if (lookahead == 'u') ADVANCE(473); - if (lookahead == 'v') ADVANCE(483); - if (lookahead == '{') ADVANCE(358); - if (lookahead == '|') ADVANCE(224); - if (lookahead == '~') ADVANCE(303); + if (lookahead == '!') ADVANCE(218); + if (lookahead == '%') ADVANCE(341); + if (lookahead == '&') ADVANCE(351); + if (lookahead == '(') ADVANCE(316); + if (lookahead == ')') ADVANCE(270); + if (lookahead == '*') ADVANCE(337); + if (lookahead == '+') ADVANCE(331); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(327); + if (lookahead == '.') ADVANCE(403); + if (lookahead == '/') ADVANCE(339); + if (lookahead == ':') ADVANCE(386); + if (lookahead == ';') ADVANCE(370); + if (lookahead == '<') ADVANCE(364); + if (lookahead == '=') ADVANCE(219); + if (lookahead == '>') ADVANCE(356); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '[') ADVANCE(376); + if (lookahead == '\\') SKIP(46) + if (lookahead == ']') ADVANCE(380); + if (lookahead == '^') ADVANCE(348); + if (lookahead == '{') ADVANCE(374); + if (lookahead == '|') ADVANCE(347); + if (lookahead == '}') ADVANCE(375); + if (lookahead == '~') ADVANCE(319); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(180) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + if (('A' <= lookahead && lookahead <= '_') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); case 181: - if (lookahead == '&') ADVANCE(335); - if (lookahead == '(') ADVANCE(300); - if (lookahead == ')') ADVANCE(254); - if (lookahead == '*') ADVANCE(321); - if (lookahead == ',') ADVANCE(253); - if (lookahead == '-') ADVANCE(207); - if (lookahead == '.') ADVANCE(196); - if (lookahead == '/') ADVANCE(190); - if (lookahead == ':') ADVANCE(370); - if (lookahead == ';') ADVANCE(354); - if (lookahead == '<') ADVANCE(345); - if (lookahead == '=') ADVANCE(365); - if (lookahead == '>') ADVANCE(503); - if (lookahead == '[') ADVANCE(361); - if (lookahead == '\\') SKIP(54) - if (lookahead == '{') ADVANCE(358); - if (lookahead == '|') ADVANCE(224); - if (lookahead == '~') ADVANCE(303); + if (lookahead == '!') ADVANCE(218); + if (lookahead == '%') ADVANCE(341); + if (lookahead == '&') ADVANCE(351); + if (lookahead == '(') ADVANCE(316); + if (lookahead == ')') ADVANCE(270); + if (lookahead == '*') ADVANCE(337); + if (lookahead == '+') ADVANCE(331); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(327); + if (lookahead == '.') ADVANCE(403); + if (lookahead == '/') ADVANCE(339); + if (lookahead == ':') ADVANCE(386); + if (lookahead == '<') ADVANCE(364); + if (lookahead == '=') ADVANCE(219); + if (lookahead == '>') ADVANCE(519); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '[') ADVANCE(376); + if (lookahead == '\\') SKIP(48) + if (lookahead == '^') ADVANCE(348); + if (lookahead == '{') ADVANCE(374); + if (lookahead == '|') ADVANCE(347); + if (lookahead == '~') ADVANCE(319); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(181) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); case 182: - if (lookahead == '&') ADVANCE(335); - if (lookahead == '(') ADVANCE(300); - if (lookahead == ')') ADVANCE(254); - if (lookahead == '*') ADVANCE(321); - if (lookahead == ',') ADVANCE(253); - if (lookahead == '-') ADVANCE(207); - if (lookahead == '.') ADVANCE(196); - if (lookahead == '/') ADVANCE(190); - if (lookahead == ':') ADVANCE(370); - if (lookahead == ';') ADVANCE(354); - if (lookahead == '<') ADVANCE(345); - if (lookahead == '=') ADVANCE(365); - if (lookahead == '>') ADVANCE(503); - if (lookahead == '[') ADVANCE(360); + if (lookahead == '!') ADVANCE(218); + if (lookahead == '%') ADVANCE(341); + if (lookahead == '&') ADVANCE(351); + if (lookahead == '(') ADVANCE(316); + if (lookahead == ')') ADVANCE(270); + if (lookahead == '*') ADVANCE(337); + if (lookahead == '+') ADVANCE(331); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(327); + if (lookahead == '.') ADVANCE(403); + if (lookahead == '/') ADVANCE(339); + if (lookahead == ':') ADVANCE(216); + if (lookahead == ';') ADVANCE(370); + if (lookahead == '<') ADVANCE(364); + if (lookahead == '=') ADVANCE(219); + if (lookahead == '>') ADVANCE(356); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '[') ADVANCE(376); if (lookahead == '\\') SKIP(112) - if (lookahead == '{') ADVANCE(358); - if (lookahead == '|') ADVANCE(224); - if (lookahead == '~') ADVANCE(303); + if (lookahead == ']') ADVANCE(228); + if (lookahead == '^') ADVANCE(348); + if (lookahead == 'b') ADVANCE(500); + if (lookahead == 'c') ADVANCE(485); + if (lookahead == 'd') ADVANCE(496); + if (lookahead == 'f') ADVANCE(493); + if (lookahead == 'i') ADVANCE(494); + if (lookahead == 's') ADVANCE(486); + if (lookahead == 'u') ADVANCE(489); + if (lookahead == 'v') ADVANCE(499); + if (lookahead == '{') ADVANCE(374); + if (lookahead == '|') ADVANCE(347); + if (lookahead == '}') ADVANCE(375); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(182) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + if (('A' <= lookahead && lookahead <= '_') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); case 183: - if (lookahead == '&') ADVANCE(335); - if (lookahead == '(') ADVANCE(300); - if (lookahead == ')') ADVANCE(254); - if (lookahead == '*') ADVANCE(321); - if (lookahead == ',') ADVANCE(253); - if (lookahead == '-') ADVANCE(207); - if (lookahead == '/') ADVANCE(190); - if (lookahead == ':') ADVANCE(369); - if (lookahead == ';') ADVANCE(354); - if (lookahead == '<') ADVANCE(345); - if (lookahead == '=') ADVANCE(365); - if (lookahead == '>') ADVANCE(503); - if (lookahead == '[') ADVANCE(361); - if (lookahead == '\\') SKIP(68) - if (lookahead == '{') ADVANCE(358); - if (lookahead == '|') ADVANCE(224); + if (lookahead == '!') ADVANCE(218); + if (lookahead == '%') ADVANCE(341); + if (lookahead == '&') ADVANCE(351); + if (lookahead == '(') ADVANCE(316); + if (lookahead == ')') ADVANCE(270); + if (lookahead == '*') ADVANCE(337); + if (lookahead == '+') ADVANCE(331); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(327); + if (lookahead == '.') ADVANCE(403); + if (lookahead == '/') ADVANCE(339); + if (lookahead == ':') ADVANCE(385); + if (lookahead == ';') ADVANCE(370); + if (lookahead == '<') ADVANCE(364); + if (lookahead == '=') ADVANCE(219); + if (lookahead == '>') ADVANCE(356); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '[') ADVANCE(376); + if (lookahead == '\\') SKIP(90) + if (lookahead == ']') ADVANCE(380); + if (lookahead == '^') ADVANCE(348); + if (lookahead == 'b') ADVANCE(500); + if (lookahead == 'c') ADVANCE(485); + if (lookahead == 'd') ADVANCE(496); + if (lookahead == 'f') ADVANCE(493); + if (lookahead == 'i') ADVANCE(494); + if (lookahead == 's') ADVANCE(486); + if (lookahead == 'u') ADVANCE(489); + if (lookahead == 'v') ADVANCE(499); + if (lookahead == '{') ADVANCE(374); + if (lookahead == '|') ADVANCE(347); + if (lookahead == '}') ADVANCE(375); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(183) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + if (('A' <= lookahead && lookahead <= '_') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); case 184: - if (lookahead == '&') ADVANCE(335); - if (lookahead == '(') ADVANCE(300); - if (lookahead == '*') ADVANCE(321); - if (lookahead == ',') ADVANCE(253); - if (lookahead == '/') ADVANCE(190); - if (lookahead == ':') ADVANCE(369); - if (lookahead == ';') ADVANCE(354); - if (lookahead == '=') ADVANCE(365); - if (lookahead == '[') ADVANCE(361); - if (lookahead == '\\') SKIP(66) - if (lookahead == 'b') ADVANCE(484); - if (lookahead == 'c') ADVANCE(469); - if (lookahead == 'd') ADVANCE(480); - if (lookahead == 'f') ADVANCE(477); - if (lookahead == 'i') ADVANCE(478); - if (lookahead == 's') ADVANCE(470); - if (lookahead == 'u') ADVANCE(473); - if (lookahead == 'v') ADVANCE(483); - if (lookahead == '{') ADVANCE(358); + if (lookahead == '!') ADVANCE(218); + if (lookahead == '%') ADVANCE(341); + if (lookahead == '&') ADVANCE(351); + if (lookahead == '(') ADVANCE(316); + if (lookahead == ')') ADVANCE(270); + if (lookahead == '*') ADVANCE(337); + if (lookahead == '+') ADVANCE(331); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(327); + if (lookahead == '.') ADVANCE(403); + if (lookahead == '/') ADVANCE(339); + if (lookahead == ':') ADVANCE(385); + if (lookahead == ';') ADVANCE(370); + if (lookahead == '<') ADVANCE(364); + if (lookahead == '=') ADVANCE(219); + if (lookahead == '>') ADVANCE(356); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '[') ADVANCE(376); + if (lookahead == '\\') SKIP(114) + if (lookahead == ']') ADVANCE(380); + if (lookahead == '^') ADVANCE(348); + if (lookahead == '{') ADVANCE(374); + if (lookahead == '|') ADVANCE(347); + if (lookahead == '}') ADVANCE(375); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(184) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + if (('A' <= lookahead && lookahead <= '_') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); case 185: - if (lookahead == '&') ADVANCE(335); - if (lookahead == '(') ADVANCE(300); - if (lookahead == '*') ADVANCE(321); - if (lookahead == '/') ADVANCE(190); - if (lookahead == ':') ADVANCE(369); - if (lookahead == ';') ADVANCE(354); - if (lookahead == '=') ADVANCE(365); - if (lookahead == '[') ADVANCE(360); - if (lookahead == '\\') SKIP(74) - if (lookahead == '{') ADVANCE(358); - if (lookahead == '|') ADVANCE(224); + if (lookahead == '!') ADVANCE(218); + if (lookahead == '%') ADVANCE(341); + if (lookahead == '&') ADVANCE(351); + if (lookahead == '(') ADVANCE(316); + if (lookahead == ')') ADVANCE(270); + if (lookahead == '*') ADVANCE(337); + if (lookahead == '+') ADVANCE(331); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(327); + if (lookahead == '.') ADVANCE(403); + if (lookahead == '/') ADVANCE(339); + if (lookahead == ':') ADVANCE(385); + if (lookahead == ';') ADVANCE(370); + if (lookahead == '<') ADVANCE(364); + if (lookahead == '=') ADVANCE(219); + if (lookahead == '>') ADVANCE(356); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '[') ADVANCE(376); + if (lookahead == '\\') SKIP(128) + if (lookahead == ']') ADVANCE(380); + if (lookahead == '^') ADVANCE(348); + if (lookahead == '|') ADVANCE(347); + if (lookahead == '}') ADVANCE(375); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(185) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + if (('A' <= lookahead && lookahead <= '_') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); case 186: - if (lookahead == '&') ADVANCE(335); - if (lookahead == '(') ADVANCE(300); - if (lookahead == '*') ADVANCE(321); - if (lookahead == '/') ADVANCE(190); - if (lookahead == ';') ADVANCE(354); - if (lookahead == '=') ADVANCE(365); - if (lookahead == '[') ADVANCE(360); - if (lookahead == '\\') SKIP(72) - if (lookahead == 'b') ADVANCE(484); - if (lookahead == 'c') ADVANCE(469); - if (lookahead == 'd') ADVANCE(480); - if (lookahead == 'f') ADVANCE(477); - if (lookahead == 'i') ADVANCE(478); - if (lookahead == 's') ADVANCE(470); - if (lookahead == 'u') ADVANCE(473); - if (lookahead == 'v') ADVANCE(483); - if (lookahead == '{') ADVANCE(358); + if (lookahead == '!') ADVANCE(218); + if (lookahead == '%') ADVANCE(341); + if (lookahead == '&') ADVANCE(351); + if (lookahead == '(') ADVANCE(316); + if (lookahead == ')') ADVANCE(270); + if (lookahead == '*') ADVANCE(337); + if (lookahead == '+') ADVANCE(331); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(327); + if (lookahead == '.') ADVANCE(403); + if (lookahead == '/') ADVANCE(339); + if (lookahead == ':') ADVANCE(385); + if (lookahead == ';') ADVANCE(370); + if (lookahead == '<') ADVANCE(364); + if (lookahead == '=') ADVANCE(219); + if (lookahead == '>') ADVANCE(356); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '[') ADVANCE(376); + if (lookahead == '\\') SKIP(128) + if (lookahead == ']') ADVANCE(380); + if (lookahead == '^') ADVANCE(348); + if (lookahead == '|') ADVANCE(347); + if (lookahead == '}') ADVANCE(375); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(186) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + lookahead == ' ') SKIP(185) + if (('A' <= lookahead && lookahead <= '_') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(529); END_STATE(); case 187: - if (lookahead == '(') ADVANCE(300); - if (lookahead == ')') ADVANCE(254); - if (lookahead == ',') ADVANCE(253); - if (lookahead == '/') ADVANCE(190); - if (lookahead == ':') ADVANCE(369); - if (lookahead == ';') ADVANCE(354); - if (lookahead == '=') ADVANCE(365); - if (lookahead == '>') ADVANCE(503); - if (lookahead == '[') ADVANCE(362); - if (lookahead == '\\') SKIP(81) - if (lookahead == '{') ADVANCE(358); + if (lookahead == '!') ADVANCE(218); + if (lookahead == '%') ADVANCE(341); + if (lookahead == '&') ADVANCE(351); + if (lookahead == '(') ADVANCE(316); + if (lookahead == '*') ADVANCE(337); + if (lookahead == '+') ADVANCE(331); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(327); + if (lookahead == '.') ADVANCE(403); + if (lookahead == '/') ADVANCE(339); + if (lookahead == ':') ADVANCE(385); + if (lookahead == '<') ADVANCE(364); + if (lookahead == '=') ADVANCE(219); + if (lookahead == '>') ADVANCE(519); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '[') ADVANCE(376); + if (lookahead == '\\') SKIP(102) + if (lookahead == '^') ADVANCE(348); + if (lookahead == '{') ADVANCE(374); + if (lookahead == '|') ADVANCE(347); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(187) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); case 188: - if (lookahead == ')') ADVANCE(506); + if (lookahead == '!') ADVANCE(218); + if (lookahead == '%') ADVANCE(341); + if (lookahead == '&') ADVANCE(351); + if (lookahead == '(') ADVANCE(316); + if (lookahead == '*') ADVANCE(337); + if (lookahead == '+') ADVANCE(331); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(327); + if (lookahead == '.') ADVANCE(403); + if (lookahead == '/') ADVANCE(339); + if (lookahead == '<') ADVANCE(364); + if (lookahead == '=') ADVANCE(219); + if (lookahead == '>') ADVANCE(519); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '[') ADVANCE(376); + if (lookahead == '\\') SKIP(98) + if (lookahead == '^') ADVANCE(348); + if (lookahead == 'b') ADVANCE(500); + if (lookahead == 'c') ADVANCE(485); + if (lookahead == 'd') ADVANCE(496); + if (lookahead == 'f') ADVANCE(493); + if (lookahead == 'i') ADVANCE(494); + if (lookahead == 's') ADVANCE(486); + if (lookahead == 'u') ADVANCE(489); + if (lookahead == 'v') ADVANCE(499); + if (lookahead == '{') ADVANCE(374); + if (lookahead == '|') ADVANCE(347); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(188) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); case 189: - if (lookahead == '*') ADVANCE(504); + if (lookahead == '!') ADVANCE(218); + if (lookahead == '%') ADVANCE(341); + if (lookahead == '&') ADVANCE(351); + if (lookahead == '(') ADVANCE(316); + if (lookahead == '*') ADVANCE(337); + if (lookahead == '+') ADVANCE(331); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(327); + if (lookahead == '.') ADVANCE(403); + if (lookahead == '/') ADVANCE(339); + if (lookahead == '<') ADVANCE(364); + if (lookahead == '=') ADVANCE(219); + if (lookahead == '>') ADVANCE(519); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '[') ADVANCE(376); + if (lookahead == '\\') SKIP(130) + if (lookahead == '^') ADVANCE(348); + if (lookahead == '|') ADVANCE(347); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(189) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); case 190: - if (lookahead == '*') ADVANCE(193); - if (lookahead == '/') ADVANCE(499); + if (lookahead == '!') ADVANCE(218); + if (lookahead == '%') ADVANCE(341); + if (lookahead == '&') ADVANCE(351); + if (lookahead == '(') ADVANCE(316); + if (lookahead == '*') ADVANCE(337); + if (lookahead == '+') ADVANCE(331); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(327); + if (lookahead == '.') ADVANCE(403); + if (lookahead == '/') ADVANCE(339); + if (lookahead == '<') ADVANCE(364); + if (lookahead == '=') ADVANCE(219); + if (lookahead == '>') ADVANCE(519); + if (lookahead == '?') ADVANCE(387); + if (lookahead == '[') ADVANCE(376); + if (lookahead == '\\') SKIP(130) + if (lookahead == '^') ADVANCE(348); + if (lookahead == '|') ADVANCE(347); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(189) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(529); END_STATE(); case 191: - if (lookahead == '*') ADVANCE(505); + if (lookahead == '"') ADVANCE(436); + if (lookahead == '&') ADVANCE(351); + if (lookahead == '(') ADVANCE(316); + if (lookahead == '*') ADVANCE(337); + if (lookahead == '/') ADVANCE(206); + if (lookahead == ':') ADVANCE(216); + if (lookahead == 'L') ADVANCE(451); + if (lookahead == 'U') ADVANCE(453); + if (lookahead == '[') ADVANCE(377); + if (lookahead == '\\') SKIP(54) + if (lookahead == 'b') ADVANCE(500); + if (lookahead == 'c') ADVANCE(485); + if (lookahead == 'd') ADVANCE(496); + if (lookahead == 'f') ADVANCE(493); + if (lookahead == 'i') ADVANCE(494); + if (lookahead == 's') ADVANCE(486); + if (lookahead == 'u') ADVANCE(455); + if (lookahead == 'v') ADVANCE(499); + if (lookahead == '~') ADVANCE(319); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(191) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); case 192: - if (lookahead == '*') ADVANCE(192); - if (lookahead == '/') ADVANCE(497); - if (lookahead != 0) ADVANCE(193); + if (lookahead == '"') ADVANCE(436); + if (lookahead == '/') ADVANCE(206); + if (lookahead == '<') ADVANCE(224); + if (lookahead == 'L') ADVANCE(451); + if (lookahead == 'U') ADVANCE(453); + if (lookahead == '\\') SKIP(75) + if (lookahead == 'u') ADVANCE(456); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(192) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); case 193: - if (lookahead == '*') ADVANCE(192); - if (lookahead != 0) ADVANCE(193); + if (lookahead == '"') ADVANCE(436); + if (lookahead == '/') ADVANCE(206); + if (lookahead == '\\') ADVANCE(77); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(193) END_STATE(); case 194: - if (lookahead == '.') ADVANCE(226); - if (lookahead == '0') ADVANCE(394); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(395); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(403); + if (lookahead == '"') ADVANCE(524); END_STATE(); case 195: - if (lookahead == '.') ADVANCE(226); - if (lookahead == '0') ADVANCE(397); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(398); + if (lookahead == '#') ADVANCE(234); + if (lookahead == '&') ADVANCE(351); + if (lookahead == '(') ADVANCE(316); + if (lookahead == ')') ADVANCE(270); + if (lookahead == '*') ADVANCE(337); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(320); + if (lookahead == '/') ADVANCE(206); + if (lookahead == ':') ADVANCE(216); + if (lookahead == ';') ADVANCE(370); + if (lookahead == '=') ADVANCE(381); + if (lookahead == '>') ADVANCE(519); + if (lookahead == '[') ADVANCE(377); + if (lookahead == '\\') SKIP(16) + if (lookahead == 'b') ADVANCE(500); + if (lookahead == 'c') ADVANCE(485); + if (lookahead == 'd') ADVANCE(496); + if (lookahead == 'f') ADVANCE(493); + if (lookahead == 'i') ADVANCE(494); + if (lookahead == 's') ADVANCE(486); + if (lookahead == 'u') ADVANCE(489); + if (lookahead == 'v') ADVANCE(499); + if (lookahead == '{') ADVANCE(374); + if (lookahead == '|') ADVANCE(240); + if (lookahead == '}') ADVANCE(375); + if (lookahead == '~') ADVANCE(319); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(195) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); case 196: - if (lookahead == '.') ADVANCE(198); + if (lookahead == '#') ADVANCE(230); + if (lookahead == '&') ADVANCE(351); + if (lookahead == '(') ADVANCE(316); + if (lookahead == ')') ADVANCE(270); + if (lookahead == '*') ADVANCE(337); + if (lookahead == '+') ADVANCE(330); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(223); + if (lookahead == '.') ADVANCE(212); + if (lookahead == '/') ADVANCE(206); + if (lookahead == ':') ADVANCE(216); + if (lookahead == ';') ADVANCE(370); + if (lookahead == '<') ADVANCE(361); + if (lookahead == '=') ADVANCE(381); + if (lookahead == '>') ADVANCE(519); + if (lookahead == '[') ADVANCE(377); + if (lookahead == '\\') SKIP(10) + if (lookahead == 'b') ADVANCE(500); + if (lookahead == 'c') ADVANCE(485); + if (lookahead == 'd') ADVANCE(496); + if (lookahead == 'f') ADVANCE(493); + if (lookahead == 'i') ADVANCE(494); + if (lookahead == 's') ADVANCE(486); + if (lookahead == 'u') ADVANCE(489); + if (lookahead == 'v') ADVANCE(499); + if (lookahead == '{') ADVANCE(374); + if (lookahead == '|') ADVANCE(240); + if (lookahead == '~') ADVANCE(319); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(196) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); case 197: - if (lookahead == '.') ADVANCE(198); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(392); + if (lookahead == '&') ADVANCE(351); + if (lookahead == '(') ADVANCE(316); + if (lookahead == ')') ADVANCE(270); + if (lookahead == '*') ADVANCE(337); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(223); + if (lookahead == '.') ADVANCE(212); + if (lookahead == '/') ADVANCE(206); + if (lookahead == ':') ADVANCE(386); + if (lookahead == ';') ADVANCE(370); + if (lookahead == '<') ADVANCE(361); + if (lookahead == '=') ADVANCE(381); + if (lookahead == '>') ADVANCE(519); + if (lookahead == '[') ADVANCE(377); + if (lookahead == '\\') SKIP(56) + if (lookahead == '{') ADVANCE(374); + if (lookahead == '|') ADVANCE(240); + if (lookahead == '~') ADVANCE(319); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(197) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); case 198: - if (lookahead == '.') ADVANCE(252); + if (lookahead == '&') ADVANCE(351); + if (lookahead == '(') ADVANCE(316); + if (lookahead == ')') ADVANCE(270); + if (lookahead == '*') ADVANCE(337); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(223); + if (lookahead == '.') ADVANCE(212); + if (lookahead == '/') ADVANCE(206); + if (lookahead == ':') ADVANCE(386); + if (lookahead == ';') ADVANCE(370); + if (lookahead == '<') ADVANCE(361); + if (lookahead == '=') ADVANCE(381); + if (lookahead == '>') ADVANCE(519); + if (lookahead == '[') ADVANCE(376); + if (lookahead == '\\') SKIP(108) + if (lookahead == '{') ADVANCE(374); + if (lookahead == '|') ADVANCE(240); + if (lookahead == '~') ADVANCE(319); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(198) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); case 199: - if (lookahead == '/') ADVANCE(190); - if (lookahead == '\\') ADVANCE(85); + if (lookahead == '&') ADVANCE(351); + if (lookahead == '(') ADVANCE(316); + if (lookahead == ')') ADVANCE(270); + if (lookahead == '*') ADVANCE(337); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(223); + if (lookahead == '/') ADVANCE(206); + if (lookahead == ':') ADVANCE(385); + if (lookahead == ';') ADVANCE(370); + if (lookahead == '<') ADVANCE(361); + if (lookahead == '=') ADVANCE(381); + if (lookahead == '>') ADVANCE(519); + if (lookahead == '[') ADVANCE(377); + if (lookahead == '\\') SKIP(60) + if (lookahead == '{') ADVANCE(374); + if (lookahead == '|') ADVANCE(240); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(199) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); case 200: - if (lookahead == ':') ADVANCE(355); + if (lookahead == '&') ADVANCE(351); + if (lookahead == '(') ADVANCE(316); + if (lookahead == '*') ADVANCE(337); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '/') ADVANCE(206); + if (lookahead == ':') ADVANCE(385); + if (lookahead == ';') ADVANCE(370); + if (lookahead == '=') ADVANCE(381); + if (lookahead == '[') ADVANCE(377); + if (lookahead == '\\') SKIP(58) + if (lookahead == 'b') ADVANCE(500); + if (lookahead == 'c') ADVANCE(485); + if (lookahead == 'd') ADVANCE(496); + if (lookahead == 'f') ADVANCE(493); + if (lookahead == 'i') ADVANCE(494); + if (lookahead == 's') ADVANCE(486); + if (lookahead == 'u') ADVANCE(489); + if (lookahead == 'v') ADVANCE(499); + if (lookahead == '{') ADVANCE(374); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(200) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); case 201: - if (lookahead == '<') ADVANCE(350); - if (lookahead == '=') ADVANCE(343); + if (lookahead == '&') ADVANCE(351); + if (lookahead == '(') ADVANCE(316); + if (lookahead == '*') ADVANCE(337); + if (lookahead == '/') ADVANCE(206); + if (lookahead == ':') ADVANCE(385); + if (lookahead == ';') ADVANCE(370); + if (lookahead == '=') ADVANCE(381); + if (lookahead == '[') ADVANCE(376); + if (lookahead == '\\') SKIP(66) + if (lookahead == '{') ADVANCE(374); + if (lookahead == '|') ADVANCE(240); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(201) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); case 202: - if (lookahead == '=') ADVANCE(338); + if (lookahead == '&') ADVANCE(351); + if (lookahead == '(') ADVANCE(316); + if (lookahead == '*') ADVANCE(337); + if (lookahead == '/') ADVANCE(206); + if (lookahead == ';') ADVANCE(370); + if (lookahead == '=') ADVANCE(381); + if (lookahead == '[') ADVANCE(376); + if (lookahead == '\\') SKIP(64) + if (lookahead == 'b') ADVANCE(500); + if (lookahead == 'c') ADVANCE(485); + if (lookahead == 'd') ADVANCE(496); + if (lookahead == 'f') ADVANCE(493); + if (lookahead == 'i') ADVANCE(494); + if (lookahead == 's') ADVANCE(486); + if (lookahead == 'u') ADVANCE(489); + if (lookahead == 'v') ADVANCE(499); + if (lookahead == '{') ADVANCE(374); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(202) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); case 203: - if (lookahead == '=') ADVANCE(337); + if (lookahead == '(') ADVANCE(316); + if (lookahead == ')') ADVANCE(270); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '/') ADVANCE(206); + if (lookahead == ':') ADVANCE(385); + if (lookahead == ';') ADVANCE(370); + if (lookahead == '=') ADVANCE(381); + if (lookahead == '>') ADVANCE(519); + if (lookahead == '[') ADVANCE(378); + if (lookahead == '\\') SKIP(73) + if (lookahead == '{') ADVANCE(374); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(203) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); case 204: - if (lookahead == '=') ADVANCE(342); - if (lookahead == '>') ADVANCE(352); + if (lookahead == ')') ADVANCE(522); END_STATE(); case 205: - if (lookahead == '=') ADVANCE(378); + if (lookahead == '*') ADVANCE(520); END_STATE(); case 206: - if (lookahead == '>') ADVANCE(205); + if (lookahead == '*') ADVANCE(209); + if (lookahead == '/') ADVANCE(515); END_STATE(); case 207: - if (lookahead == '>') ADVANCE(390); + if (lookahead == '*') ADVANCE(521); END_STATE(); case 208: - if (lookahead == '>') ADVANCE(430); - if (lookahead == '\\') ADVANCE(209); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(208); + if (lookahead == '*') ADVANCE(208); + if (lookahead == '/') ADVANCE(513); + if (lookahead != 0) ADVANCE(209); END_STATE(); case 209: - if (lookahead == '>') ADVANCE(431); - if (lookahead == '\\') ADVANCE(209); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(208); + if (lookahead == '*') ADVANCE(208); + if (lookahead != 0) ADVANCE(209); END_STATE(); case 210: - if (lookahead == '[') ADVANCE(356); - if (lookahead == ']') ADVANCE(507); + if (lookahead == '.') ADVANCE(242); + if (lookahead == '0') ADVANCE(410); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(411); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(419); END_STATE(); case 211: - if (lookahead == ']') ADVANCE(507); + if (lookahead == '.') ADVANCE(242); + if (lookahead == '0') ADVANCE(413); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(414); END_STATE(); case 212: - if (lookahead == ']') ADVANCE(357); + if (lookahead == '.') ADVANCE(214); END_STATE(); case 213: - if (lookahead == 'd') ADVANCE(266); - if (lookahead == 'e') ADVANCE(282); - if (lookahead == 'i') ADVANCE(272); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(213); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(287); + if (lookahead == '.') ADVANCE(214); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(408); END_STATE(); case 214: - if (lookahead == 'd') ADVANCE(266); - if (lookahead == 'e') ADVANCE(282); - if (lookahead == 'i') ADVANCE(273); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(214); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(287); + if (lookahead == '.') ADVANCE(268); END_STATE(); case 215: - if (lookahead == 'd') ADVANCE(266); - if (lookahead == 'e') ADVANCE(284); - if (lookahead == 'i') ADVANCE(272); + if (lookahead == '/') ADVANCE(206); + if (lookahead == '\\') ADVANCE(77); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(215); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(287); + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(215) END_STATE(); case 216: - if (lookahead == 'd') ADVANCE(266); - if (lookahead == 'e') ADVANCE(284); - if (lookahead == 'i') ADVANCE(273); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(216); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(287); + if (lookahead == ':') ADVANCE(371); END_STATE(); case 217: - if (lookahead == 'd') ADVANCE(266); - if (lookahead == 'i') ADVANCE(272); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(217); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(287); + if (lookahead == '<') ADVANCE(366); + if (lookahead == '=') ADVANCE(359); END_STATE(); case 218: - if (lookahead == 'd') ADVANCE(266); - if (lookahead == 'i') ADVANCE(273); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(218); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(287); + if (lookahead == '=') ADVANCE(354); END_STATE(); case 219: - if (lookahead == 'd') ADVANCE(222); + if (lookahead == '=') ADVANCE(353); END_STATE(); case 220: - if (lookahead == 'e') ADVANCE(223); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(220); + if (lookahead == '=') ADVANCE(358); + if (lookahead == '>') ADVANCE(221); END_STATE(); case 221: - if (lookahead == 'f') ADVANCE(256); + if (lookahead == '=') ADVANCE(394); END_STATE(); case 222: - if (lookahead == 'i') ADVANCE(221); + if (lookahead == '>') ADVANCE(368); END_STATE(); case 223: - if (lookahead == 'n') ADVANCE(219); + if (lookahead == '>') ADVANCE(406); END_STATE(); case 224: - if (lookahead == '|') ADVANCE(327); + if (lookahead == '>') ADVANCE(446); + if (lookahead == '\\') ADVANCE(225); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(224); END_STATE(); case 225: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(398); + if (lookahead == '>') ADVANCE(447); + if (lookahead == '\\') ADVANCE(225); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(224); END_STATE(); case 226: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(392); + if (lookahead == '[') ADVANCE(372); + if (lookahead == ']') ADVANCE(523); END_STATE(); case 227: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(395); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(403); + if (lookahead == ']') ADVANCE(523); END_STATE(); case 228: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(400); + if (lookahead == ']') ADVANCE(373); END_STATE(); case 229: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(403); + if (lookahead == 'd') ADVANCE(282); + if (lookahead == 'e') ADVANCE(298); + if (lookahead == 'i') ADVANCE(288); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(229); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(303); END_STATE(); case 230: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(393); + if (lookahead == 'd') ADVANCE(282); + if (lookahead == 'e') ADVANCE(298); + if (lookahead == 'i') ADVANCE(289); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(230); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(303); END_STATE(); case 231: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(426); + if (lookahead == 'd') ADVANCE(282); + if (lookahead == 'e') ADVANCE(300); + if (lookahead == 'i') ADVANCE(288); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(231); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(303); END_STATE(); case 232: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(231); + if (lookahead == 'd') ADVANCE(282); + if (lookahead == 'e') ADVANCE(300); + if (lookahead == 'i') ADVANCE(289); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(232); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(303); END_STATE(); case 233: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(232); + if (lookahead == 'd') ADVANCE(282); + if (lookahead == 'i') ADVANCE(288); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(233); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(303); END_STATE(); case 234: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(233); + if (lookahead == 'd') ADVANCE(282); + if (lookahead == 'i') ADVANCE(289); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(234); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(303); END_STATE(); case 235: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(234); + if (lookahead == 'd') ADVANCE(238); END_STATE(); case 236: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(235); + if (lookahead == 'e') ADVANCE(239); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(236); END_STATE(); case 237: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(236); + if (lookahead == 'f') ADVANCE(272); END_STATE(); case 238: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(237); + if (lookahead == 'i') ADVANCE(237); END_STATE(); case 239: - if (lookahead != 0 && - lookahead != '\r') ADVANCE(499); - if (lookahead == '\r') ADVANCE(501); + if (lookahead == 'n') ADVANCE(235); END_STATE(); case 240: - if (eof) ADVANCE(246); - if (lookahead == '\n') SKIP(244) + if (lookahead == '|') ADVANCE(343); END_STATE(); case 241: - if (eof) ADVANCE(246); - if (lookahead == '\n') SKIP(244) - if (lookahead == '\r') SKIP(240) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(414); END_STATE(); case 242: - if (eof) ADVANCE(246); - if (lookahead == '\n') SKIP(245) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(408); END_STATE(); case 243: - if (eof) ADVANCE(246); - if (lookahead == '\n') SKIP(245) - if (lookahead == '\r') SKIP(242) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(411); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(419); END_STATE(); case 244: - if (eof) ADVANCE(246); - if (lookahead == '!') ADVANCE(302); - if (lookahead == '"') ADVANCE(420); - if (lookahead == '#') ADVANCE(213); - if (lookahead == '%') ADVANCE(326); - if (lookahead == '&') ADVANCE(336); - if (lookahead == '\'') ADVANCE(411); - if (lookahead == '(') ADVANCE(300); - if (lookahead == ')') ADVANCE(254); - if (lookahead == '*') ADVANCE(322); - if (lookahead == '+') ADVANCE(316); - if (lookahead == ',') ADVANCE(253); - if (lookahead == '-') ADVANCE(305); - if (lookahead == '.') ADVANCE(386); - if (lookahead == '/') ADVANCE(324); - if (lookahead == '0') ADVANCE(396); - if (lookahead == ':') ADVANCE(370); - if (lookahead == ';') ADVANCE(354); - if (lookahead == '<') ADVANCE(346); - if (lookahead == '=') ADVANCE(366); - if (lookahead == '>') ADVANCE(503); - if (lookahead == '?') ADVANCE(371); - if (lookahead == 'F') ADVANCE(451); - if (lookahead == 'L') ADVANCE(434); - if (lookahead == 'T') ADVANCE(455); - if (lookahead == 'U') ADVANCE(436); - if (lookahead == '[') ADVANCE(362); - if (lookahead == '\\') SKIP(241) - if (lookahead == ']') ADVANCE(364); - if (lookahead == '^') ADVANCE(333); - if (lookahead == 'b') ADVANCE(484); - if (lookahead == 'c') ADVANCE(469); - if (lookahead == 'd') ADVANCE(480); - if (lookahead == 'f') ADVANCE(459); - if (lookahead == 'i') ADVANCE(478); - if (lookahead == 's') ADVANCE(470); - if (lookahead == 't') ADVANCE(487); - if (lookahead == 'u') ADVANCE(438); - if (lookahead == 'v') ADVANCE(483); - if (lookahead == '{') ADVANCE(358); - if (lookahead == '|') ADVANCE(330); - if (lookahead == '}') ADVANCE(359); - if (lookahead == '~') ADVANCE(303); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(244) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(398); - if (('A' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(416); END_STATE(); case 245: - if (eof) ADVANCE(246); - if (lookahead == '!') ADVANCE(301); - if (lookahead == '"') ADVANCE(420); - if (lookahead == '#') ADVANCE(217); - if (lookahead == '%') ADVANCE(325); - if (lookahead == '&') ADVANCE(335); - if (lookahead == '\'') ADVANCE(411); - if (lookahead == '(') ADVANCE(300); - if (lookahead == ')') ADVANCE(254); - if (lookahead == '*') ADVANCE(321); - if (lookahead == '+') ADVANCE(317); - if (lookahead == ',') ADVANCE(253); - if (lookahead == '-') ADVANCE(308); - if (lookahead == '.') ADVANCE(389); - if (lookahead == '/') ADVANCE(323); - if (lookahead == '0') ADVANCE(396); - if (lookahead == ':') ADVANCE(370); - if (lookahead == ';') ADVANCE(354); - if (lookahead == '<') ADVANCE(345); - if (lookahead == '=') ADVANCE(365); - if (lookahead == '>') ADVANCE(503); - if (lookahead == 'F') ADVANCE(451); - if (lookahead == 'L') ADVANCE(434); - if (lookahead == 'T') ADVANCE(455); - if (lookahead == 'U') ADVANCE(436); - if (lookahead == '[') ADVANCE(361); - if (lookahead == '\\') SKIP(243) - if (lookahead == ']') ADVANCE(212); - if (lookahead == '^') ADVANCE(332); - if (lookahead == 'b') ADVANCE(484); - if (lookahead == 'c') ADVANCE(469); - if (lookahead == 'd') ADVANCE(480); - if (lookahead == 'f') ADVANCE(459); - if (lookahead == 'i') ADVANCE(478); - if (lookahead == 's') ADVANCE(470); - if (lookahead == 't') ADVANCE(487); - if (lookahead == 'u') ADVANCE(438); - if (lookahead == 'v') ADVANCE(483); - if (lookahead == '{') ADVANCE(358); - if (lookahead == '|') ADVANCE(329); - if (lookahead == '}') ADVANCE(359); - if (lookahead == '~') ADVANCE(303); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(245) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(398); - if (('A' <= lookahead && lookahead <= '_') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(419); END_STATE(); case 246: - ACCEPT_TOKEN(ts_builtin_sym_end); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(409); END_STATE(); case 247: - ACCEPT_TOKEN(aux_sym_preproc_include_token1); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(287); + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(442); END_STATE(); case 248: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(248); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(247); END_STATE(); case 249: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(249); - if (lookahead == '\\') ADVANCE(291); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(290); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(248); END_STATE(); case 250: - ACCEPT_TOKEN(aux_sym_preproc_def_token1); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(287); + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(249); END_STATE(); case 251: - ACCEPT_TOKEN(anon_sym_LPAREN); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(250); END_STATE(); case 252: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(251); END_STATE(); case 253: - ACCEPT_TOKEN(anon_sym_COMMA); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(252); END_STATE(); case 254: - ACCEPT_TOKEN(anon_sym_RPAREN); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(253); END_STATE(); case 255: - ACCEPT_TOKEN(aux_sym_preproc_if_token1); - if (lookahead == 'd') ADVANCE(270); - if (lookahead == 'n') ADVANCE(265); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(287); + if (lookahead != 0 && + lookahead != '\r') ADVANCE(515); + if (lookahead == '\r') ADVANCE(517); END_STATE(); case 256: - ACCEPT_TOKEN(aux_sym_preproc_if_token2); + if (eof) ADVANCE(262); + if (lookahead == '\n') SKIP(260) END_STATE(); case 257: - ACCEPT_TOKEN(aux_sym_preproc_if_token2); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(287); + if (eof) ADVANCE(262); + if (lookahead == '\n') SKIP(260) + if (lookahead == '\r') SKIP(256) END_STATE(); case 258: - ACCEPT_TOKEN(aux_sym_preproc_ifdef_token1); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(287); + if (eof) ADVANCE(262); + if (lookahead == '\n') SKIP(261) END_STATE(); case 259: - ACCEPT_TOKEN(aux_sym_preproc_ifdef_token2); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(287); + if (eof) ADVANCE(262); + if (lookahead == '\n') SKIP(261) + if (lookahead == '\r') SKIP(258) END_STATE(); case 260: - ACCEPT_TOKEN(aux_sym_preproc_else_token1); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(287); + if (eof) ADVANCE(262); + if (lookahead == '!') ADVANCE(318); + if (lookahead == '"') ADVANCE(436); + if (lookahead == '#') ADVANCE(229); + if (lookahead == '%') ADVANCE(342); + if (lookahead == '&') ADVANCE(352); + if (lookahead == '\'') ADVANCE(427); + if (lookahead == '(') ADVANCE(316); + if (lookahead == ')') ADVANCE(270); + if (lookahead == '*') ADVANCE(338); + if (lookahead == '+') ADVANCE(332); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(321); + if (lookahead == '.') ADVANCE(402); + if (lookahead == '/') ADVANCE(340); + if (lookahead == '0') ADVANCE(412); + if (lookahead == ':') ADVANCE(386); + if (lookahead == ';') ADVANCE(370); + if (lookahead == '<') ADVANCE(362); + if (lookahead == '=') ADVANCE(382); + if (lookahead == '>') ADVANCE(519); + if (lookahead == '?') ADVANCE(387); + if (lookahead == 'F') ADVANCE(467); + if (lookahead == 'L') ADVANCE(450); + if (lookahead == 'T') ADVANCE(471); + if (lookahead == 'U') ADVANCE(452); + if (lookahead == '[') ADVANCE(378); + if (lookahead == '\\') SKIP(257) + if (lookahead == ']') ADVANCE(380); + if (lookahead == '^') ADVANCE(349); + if (lookahead == 'b') ADVANCE(500); + if (lookahead == 'c') ADVANCE(485); + if (lookahead == 'd') ADVANCE(496); + if (lookahead == 'f') ADVANCE(475); + if (lookahead == 'i') ADVANCE(494); + if (lookahead == 's') ADVANCE(486); + if (lookahead == 't') ADVANCE(503); + if (lookahead == 'u') ADVANCE(454); + if (lookahead == 'v') ADVANCE(499); + if (lookahead == '{') ADVANCE(374); + if (lookahead == '|') ADVANCE(346); + if (lookahead == '}') ADVANCE(375); + if (lookahead == '~') ADVANCE(319); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(260) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(414); + if (('A' <= lookahead && lookahead <= '_') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); case 261: - ACCEPT_TOKEN(aux_sym_preproc_elif_token1); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(287); + if (eof) ADVANCE(262); + if (lookahead == '!') ADVANCE(317); + if (lookahead == '"') ADVANCE(436); + if (lookahead == '#') ADVANCE(233); + if (lookahead == '%') ADVANCE(341); + if (lookahead == '&') ADVANCE(351); + if (lookahead == '\'') ADVANCE(427); + if (lookahead == '(') ADVANCE(316); + if (lookahead == ')') ADVANCE(270); + if (lookahead == '*') ADVANCE(337); + if (lookahead == '+') ADVANCE(333); + if (lookahead == ',') ADVANCE(269); + if (lookahead == '-') ADVANCE(324); + if (lookahead == '.') ADVANCE(405); + if (lookahead == '/') ADVANCE(339); + if (lookahead == '0') ADVANCE(412); + if (lookahead == ':') ADVANCE(386); + if (lookahead == ';') ADVANCE(370); + if (lookahead == '<') ADVANCE(361); + if (lookahead == '=') ADVANCE(381); + if (lookahead == '>') ADVANCE(519); + if (lookahead == 'F') ADVANCE(467); + if (lookahead == 'L') ADVANCE(450); + if (lookahead == 'T') ADVANCE(471); + if (lookahead == 'U') ADVANCE(452); + if (lookahead == '[') ADVANCE(377); + if (lookahead == '\\') SKIP(259) + if (lookahead == ']') ADVANCE(228); + if (lookahead == '^') ADVANCE(348); + if (lookahead == 'b') ADVANCE(500); + if (lookahead == 'c') ADVANCE(485); + if (lookahead == 'd') ADVANCE(496); + if (lookahead == 'f') ADVANCE(475); + if (lookahead == 'i') ADVANCE(494); + if (lookahead == 's') ADVANCE(486); + if (lookahead == 't') ADVANCE(503); + if (lookahead == 'u') ADVANCE(454); + if (lookahead == 'v') ADVANCE(499); + if (lookahead == '{') ADVANCE(374); + if (lookahead == '|') ADVANCE(345); + if (lookahead == '}') ADVANCE(375); + if (lookahead == '~') ADVANCE(319); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(261) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(414); + if (('A' <= lookahead && lookahead <= '_') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); case 262: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'c') ADVANCE(283); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(287); + ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); case 263: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'd') ADVANCE(281); + ACCEPT_TOKEN(aux_sym_preproc_include_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(287); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(303); END_STATE(); case 264: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'd') ADVANCE(269); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(287); + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(264); END_STATE(); case 265: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'd') ADVANCE(271); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(287); + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(265); + if (lookahead == '\\') ADVANCE(307); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(306); END_STATE(); case 266: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(274); + ACCEPT_TOKEN(aux_sym_preproc_def_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(287); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(303); END_STATE(); case 267: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(260); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(287); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 268: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(250); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(287); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); case 269: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(247); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(287); + ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); case 270: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(277); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(287); + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 271: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(278); + ACCEPT_TOKEN(aux_sym_preproc_if_token1); + if (lookahead == 'd') ADVANCE(286); + if (lookahead == 'n') ADVANCE(281); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(287); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(303); END_STATE(); case 272: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(255); - if (lookahead == 'n') ADVANCE(262); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(287); + ACCEPT_TOKEN(aux_sym_preproc_if_token2); END_STATE(); case 273: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(255); + ACCEPT_TOKEN(aux_sym_preproc_if_token2); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(287); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(303); END_STATE(); case 274: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(279); + ACCEPT_TOKEN(aux_sym_preproc_ifdef_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(287); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(303); END_STATE(); case 275: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(261); + ACCEPT_TOKEN(aux_sym_preproc_ifdef_token2); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(287); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(303); END_STATE(); case 276: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(257); + ACCEPT_TOKEN(aux_sym_preproc_else_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(287); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(303); END_STATE(); case 277: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(258); + ACCEPT_TOKEN(aux_sym_preproc_elif_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(287); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(303); END_STATE(); case 278: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(259); + if (lookahead == 'c') ADVANCE(299); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(287); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(303); END_STATE(); case 279: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'i') ADVANCE(285); + if (lookahead == 'd') ADVANCE(297); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(287); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(303); END_STATE(); case 280: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'i') ADVANCE(275); - if (lookahead == 's') ADVANCE(267); + if (lookahead == 'd') ADVANCE(285); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(287); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(303); END_STATE(); case 281: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'i') ADVANCE(276); + if (lookahead == 'd') ADVANCE(287); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(287); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(303); END_STATE(); case 282: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'l') ADVANCE(280); - if (lookahead == 'n') ADVANCE(263); + if (lookahead == 'e') ADVANCE(290); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(287); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(303); END_STATE(); case 283: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'l') ADVANCE(286); + if (lookahead == 'e') ADVANCE(276); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(287); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(303); END_STATE(); case 284: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'n') ADVANCE(263); + if (lookahead == 'e') ADVANCE(266); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(287); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(303); END_STATE(); case 285: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'n') ADVANCE(268); + if (lookahead == 'e') ADVANCE(263); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(287); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(303); END_STATE(); case 286: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'u') ADVANCE(264); + if (lookahead == 'e') ADVANCE(293); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(287); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(303); END_STATE(); case 287: ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'e') ADVANCE(294); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(287); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(303); END_STATE(); case 288: - ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\n') ADVANCE(193); - if (lookahead == '*') ADVANCE(288); - if (lookahead == '/') ADVANCE(497); - if (lookahead == '\\') ADVANCE(295); - if (lookahead != 0) ADVANCE(289); + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'f') ADVANCE(271); + if (lookahead == 'n') ADVANCE(278); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(303); END_STATE(); case 289: - ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\n') ADVANCE(193); - if (lookahead == '*') ADVANCE(288); - if (lookahead == '\\') ADVANCE(295); - if (lookahead != 0) ADVANCE(289); + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'f') ADVANCE(271); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(303); END_STATE(); case 290: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'f') ADVANCE(295); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(303); + END_STATE(); + case 291: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'f') ADVANCE(277); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(303); + END_STATE(); + case 292: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'f') ADVANCE(273); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(303); + END_STATE(); + case 293: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'f') ADVANCE(274); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(303); + END_STATE(); + case 294: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'f') ADVANCE(275); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(303); + END_STATE(); + case 295: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'i') ADVANCE(301); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(303); + END_STATE(); + case 296: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'i') ADVANCE(291); + if (lookahead == 's') ADVANCE(283); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(303); + END_STATE(); + case 297: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'i') ADVANCE(292); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(303); + END_STATE(); + case 298: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'l') ADVANCE(296); + if (lookahead == 'n') ADVANCE(279); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(303); + END_STATE(); + case 299: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'l') ADVANCE(302); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(303); + END_STATE(); + case 300: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'n') ADVANCE(279); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(303); + END_STATE(); + case 301: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'n') ADVANCE(284); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(303); + END_STATE(); + case 302: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'u') ADVANCE(280); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(303); + END_STATE(); + case 303: + ACCEPT_TOKEN(sym_preproc_directive); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(303); + END_STATE(); + case 304: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\n') ADVANCE(249); - if (lookahead == '/') ADVANCE(293); - if (lookahead == '\\') ADVANCE(291); + if (lookahead == '\n') ADVANCE(209); + if (lookahead == '*') ADVANCE(304); + if (lookahead == '/') ADVANCE(513); + if (lookahead == '\\') ADVANCE(311); + if (lookahead != 0) ADVANCE(305); + END_STATE(); + case 305: + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead == '\n') ADVANCE(209); + if (lookahead == '*') ADVANCE(304); + if (lookahead == '\\') ADVANCE(311); + if (lookahead != 0) ADVANCE(305); + END_STATE(); + case 306: + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead == '\n') ADVANCE(265); + if (lookahead == '/') ADVANCE(309); + if (lookahead == '\\') ADVANCE(307); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') ADVANCE(290); - if (lookahead != 0) ADVANCE(294); + lookahead == ' ') ADVANCE(306); + if (lookahead != 0) ADVANCE(310); END_STATE(); - case 291: + case 307: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\n') ADVANCE(290); - if (lookahead == '\r') ADVANCE(292); - if (lookahead == '\\') ADVANCE(296); - if (lookahead != 0) ADVANCE(294); + if (lookahead == '\n') ADVANCE(306); + if (lookahead == '\r') ADVANCE(308); + if (lookahead == '\\') ADVANCE(312); + if (lookahead != 0) ADVANCE(310); END_STATE(); - case 292: + case 308: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\n') ADVANCE(290); - if (lookahead == '\\') ADVANCE(296); - if (lookahead != 0) ADVANCE(294); + if (lookahead == '\n') ADVANCE(306); + if (lookahead == '\\') ADVANCE(312); + if (lookahead != 0) ADVANCE(310); END_STATE(); - case 293: + case 309: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '*') ADVANCE(289); - if (lookahead == '/') ADVANCE(500); - if (lookahead == '\\') ADVANCE(296); + if (lookahead == '*') ADVANCE(305); + if (lookahead == '/') ADVANCE(516); + if (lookahead == '\\') ADVANCE(312); if (lookahead != 0 && - lookahead != '\n') ADVANCE(294); + lookahead != '\n') ADVANCE(310); END_STATE(); - case 294: + case 310: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\\') ADVANCE(296); + if (lookahead == '\\') ADVANCE(312); if (lookahead != 0 && - lookahead != '\n') ADVANCE(294); + lookahead != '\n') ADVANCE(310); END_STATE(); - case 295: + case 311: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead != 0 && lookahead != '\r' && lookahead != '*' && - lookahead != '\\') ADVANCE(289); - if (lookahead == '\r') ADVANCE(298); - if (lookahead == '*') ADVANCE(288); - if (lookahead == '\\') ADVANCE(295); + lookahead != '\\') ADVANCE(305); + if (lookahead == '\r') ADVANCE(314); + if (lookahead == '*') ADVANCE(304); + if (lookahead == '\\') ADVANCE(311); END_STATE(); - case 296: + case 312: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead != 0 && lookahead != '\r' && - lookahead != '\\') ADVANCE(294); - if (lookahead == '\r') ADVANCE(299); - if (lookahead == '\\') ADVANCE(296); + lookahead != '\\') ADVANCE(310); + if (lookahead == '\r') ADVANCE(315); + if (lookahead == '\\') ADVANCE(312); END_STATE(); - case 297: + case 313: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead != 0 && lookahead != '\r' && - lookahead != '\\') ADVANCE(500); - if (lookahead == '\r') ADVANCE(502); - if (lookahead == '\\') ADVANCE(498); + lookahead != '\\') ADVANCE(516); + if (lookahead == '\r') ADVANCE(518); + if (lookahead == '\\') ADVANCE(514); END_STATE(); - case 298: + case 314: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead != 0 && lookahead != '*' && - lookahead != '\\') ADVANCE(289); - if (lookahead == '*') ADVANCE(288); - if (lookahead == '\\') ADVANCE(295); + lookahead != '\\') ADVANCE(305); + if (lookahead == '*') ADVANCE(304); + if (lookahead == '\\') ADVANCE(311); END_STATE(); - case 299: + case 315: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead != 0 && - lookahead != '\\') ADVANCE(294); - if (lookahead == '\\') ADVANCE(296); + lookahead != '\\') ADVANCE(310); + if (lookahead == '\\') ADVANCE(312); END_STATE(); - case 300: + case 316: ACCEPT_TOKEN(anon_sym_LPAREN2); END_STATE(); - case 301: + case 317: ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); - case 302: + case 318: ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(338); + if (lookahead == '=') ADVANCE(354); END_STATE(); - case 303: + case 319: ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); - case 304: + case 320: ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); - case 305: + case 321: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(383); - if (lookahead == '.') ADVANCE(226); - if (lookahead == '0') ADVANCE(396); - if (lookahead == '=') ADVANCE(376); - if (lookahead == '>') ADVANCE(391); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(398); + if (lookahead == '-') ADVANCE(399); + if (lookahead == '.') ADVANCE(242); + if (lookahead == '0') ADVANCE(412); + if (lookahead == '=') ADVANCE(392); + if (lookahead == '>') ADVANCE(407); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(414); END_STATE(); - case 306: + case 322: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(383); - if (lookahead == '.') ADVANCE(226); - if (lookahead == '0') ADVANCE(396); - if (lookahead == '=') ADVANCE(376); - if (lookahead == '>') ADVANCE(390); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(398); + if (lookahead == '-') ADVANCE(399); + if (lookahead == '.') ADVANCE(242); + if (lookahead == '0') ADVANCE(412); + if (lookahead == '=') ADVANCE(392); + if (lookahead == '>') ADVANCE(406); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(414); END_STATE(); - case 307: + case 323: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(383); - if (lookahead == '.') ADVANCE(226); - if (lookahead == '0') ADVANCE(396); - if (lookahead == '>') ADVANCE(390); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(398); + if (lookahead == '-') ADVANCE(399); + if (lookahead == '.') ADVANCE(242); + if (lookahead == '0') ADVANCE(412); + if (lookahead == '>') ADVANCE(406); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(414); END_STATE(); - case 308: + case 324: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(383); - if (lookahead == '.') ADVANCE(226); - if (lookahead == '0') ADVANCE(396); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(398); + if (lookahead == '-') ADVANCE(399); + if (lookahead == '.') ADVANCE(242); + if (lookahead == '0') ADVANCE(412); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(414); END_STATE(); - case 309: + case 325: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(383); - if (lookahead == '=') ADVANCE(376); - if (lookahead == '>') ADVANCE(391); + if (lookahead == '-') ADVANCE(399); + if (lookahead == '=') ADVANCE(392); + if (lookahead == '>') ADVANCE(407); END_STATE(); - case 310: + case 326: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(383); - if (lookahead == '=') ADVANCE(376); - if (lookahead == '>') ADVANCE(390); + if (lookahead == '-') ADVANCE(399); + if (lookahead == '=') ADVANCE(392); + if (lookahead == '>') ADVANCE(406); END_STATE(); - case 311: + case 327: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(383); - if (lookahead == '>') ADVANCE(390); + if (lookahead == '-') ADVANCE(399); + if (lookahead == '>') ADVANCE(406); END_STATE(); - case 312: + case 328: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(226); - if (lookahead == '0') ADVANCE(396); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(398); + if (lookahead == '.') ADVANCE(242); + if (lookahead == '0') ADVANCE(412); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(414); END_STATE(); - case 313: + case 329: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '=') ADVANCE(376); - if (lookahead == '>') ADVANCE(191); + if (lookahead == '=') ADVANCE(392); + if (lookahead == '>') ADVANCE(207); END_STATE(); - case 314: + case 330: ACCEPT_TOKEN(anon_sym_PLUS); END_STATE(); - case 315: + case 331: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(384); + if (lookahead == '+') ADVANCE(400); END_STATE(); - case 316: + case 332: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(384); - if (lookahead == '.') ADVANCE(226); - if (lookahead == '0') ADVANCE(396); - if (lookahead == '=') ADVANCE(375); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(398); + if (lookahead == '+') ADVANCE(400); + if (lookahead == '.') ADVANCE(242); + if (lookahead == '0') ADVANCE(412); + if (lookahead == '=') ADVANCE(391); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(414); END_STATE(); - case 317: + case 333: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(384); - if (lookahead == '.') ADVANCE(226); - if (lookahead == '0') ADVANCE(396); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(398); + if (lookahead == '+') ADVANCE(400); + if (lookahead == '.') ADVANCE(242); + if (lookahead == '0') ADVANCE(412); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(414); END_STATE(); - case 318: + case 334: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(384); - if (lookahead == '=') ADVANCE(375); + if (lookahead == '+') ADVANCE(400); + if (lookahead == '=') ADVANCE(391); END_STATE(); - case 319: + case 335: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '.') ADVANCE(226); - if (lookahead == '0') ADVANCE(396); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(398); + if (lookahead == '.') ADVANCE(242); + if (lookahead == '0') ADVANCE(412); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(414); END_STATE(); - case 320: + case 336: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '=') ADVANCE(375); + if (lookahead == '=') ADVANCE(391); END_STATE(); - case 321: + case 337: ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); - case 322: + case 338: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '=') ADVANCE(372); + if (lookahead == '=') ADVANCE(388); END_STATE(); - case 323: + case 339: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(193); - if (lookahead == '/') ADVANCE(499); + if (lookahead == '*') ADVANCE(209); + if (lookahead == '/') ADVANCE(515); END_STATE(); - case 324: + case 340: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(193); - if (lookahead == '/') ADVANCE(499); - if (lookahead == '=') ADVANCE(373); + if (lookahead == '*') ADVANCE(209); + if (lookahead == '/') ADVANCE(515); + if (lookahead == '=') ADVANCE(389); END_STATE(); - case 325: + case 341: ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); - case 326: + case 342: ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(374); + if (lookahead == '=') ADVANCE(390); END_STATE(); - case 327: + case 343: ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); - case 328: + case 344: ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); - case 329: + case 345: ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); - case 330: + case 346: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(381); - if (lookahead == '|') ADVANCE(327); + if (lookahead == '=') ADVANCE(397); + if (lookahead == '|') ADVANCE(343); END_STATE(); - case 331: + case 347: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(327); + if (lookahead == '|') ADVANCE(343); END_STATE(); - case 332: + case 348: ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); - case 333: + case 349: ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(380); + if (lookahead == '=') ADVANCE(396); END_STATE(); - case 334: + case 350: ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); - case 335: + case 351: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(328); + if (lookahead == '&') ADVANCE(344); END_STATE(); - case 336: + case 352: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(328); - if (lookahead == '=') ADVANCE(379); + if (lookahead == '&') ADVANCE(344); + if (lookahead == '=') ADVANCE(395); END_STATE(); - case 337: + case 353: ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); - case 338: + case 354: ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); - case 339: + case 355: ACCEPT_TOKEN(anon_sym_GT); END_STATE(); - case 340: + case 356: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(342); - if (lookahead == '>') ADVANCE(352); + if (lookahead == '=') ADVANCE(358); + if (lookahead == '>') ADVANCE(368); END_STATE(); - case 341: + case 357: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(342); - if (lookahead == '>') ADVANCE(353); + if (lookahead == '=') ADVANCE(358); + if (lookahead == '>') ADVANCE(369); END_STATE(); - case 342: + case 358: ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); - case 343: + case 359: ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); - case 344: + case 360: ACCEPT_TOKEN(anon_sym_LT_EQ); - if (lookahead == '>') ADVANCE(382); + if (lookahead == '>') ADVANCE(398); END_STATE(); - case 345: + case 361: ACCEPT_TOKEN(anon_sym_LT); END_STATE(); - case 346: + case 362: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(351); - if (lookahead == '=') ADVANCE(344); + if (lookahead == '<') ADVANCE(367); + if (lookahead == '=') ADVANCE(360); END_STATE(); - case 347: + case 363: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(351); - if (lookahead == '=') ADVANCE(343); + if (lookahead == '<') ADVANCE(367); + if (lookahead == '=') ADVANCE(359); END_STATE(); - case 348: + case 364: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(350); - if (lookahead == '=') ADVANCE(344); + if (lookahead == '<') ADVANCE(366); + if (lookahead == '=') ADVANCE(360); END_STATE(); - case 349: + case 365: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(350); - if (lookahead == '=') ADVANCE(343); + if (lookahead == '<') ADVANCE(366); + if (lookahead == '=') ADVANCE(359); END_STATE(); - case 350: + case 366: ACCEPT_TOKEN(anon_sym_LT_LT); END_STATE(); - case 351: + case 367: ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(377); + if (lookahead == '=') ADVANCE(393); END_STATE(); - case 352: + case 368: ACCEPT_TOKEN(anon_sym_GT_GT); END_STATE(); - case 353: + case 369: ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(378); + if (lookahead == '=') ADVANCE(394); END_STATE(); - case 354: + case 370: ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); - case 355: + case 371: ACCEPT_TOKEN(anon_sym_COLON_COLON); END_STATE(); - case 356: + case 372: ACCEPT_TOKEN(anon_sym_LBRACK_LBRACK); END_STATE(); - case 357: + case 373: ACCEPT_TOKEN(anon_sym_RBRACK_RBRACK); END_STATE(); - case 358: + case 374: ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); - case 359: + case 375: ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); - case 360: + case 376: ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); - case 361: + case 377: ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '[') ADVANCE(356); + if (lookahead == '[') ADVANCE(372); END_STATE(); - case 362: + case 378: ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '[') ADVANCE(356); - if (lookahead == ']') ADVANCE(507); + if (lookahead == '[') ADVANCE(372); + if (lookahead == ']') ADVANCE(523); END_STATE(); - case 363: + case 379: ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == ']') ADVANCE(507); + if (lookahead == ']') ADVANCE(523); END_STATE(); - case 364: + case 380: ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); - case 365: + case 381: ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); - case 366: + case 382: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(337); + if (lookahead == '=') ADVANCE(353); END_STATE(); - case 367: + case 383: ACCEPT_TOKEN(sym_primitive_type); - if (lookahead == '1') ADVANCE(450); - if (lookahead == '3') ADVANCE(448); - if (lookahead == '6') ADVANCE(449); - if (lookahead == '8') ADVANCE(458); - if (lookahead == 'p') ADVANCE(492); + if (lookahead == '1') ADVANCE(466); + if (lookahead == '3') ADVANCE(464); + if (lookahead == '6') ADVANCE(465); + if (lookahead == '8') ADVANCE(474); + if (lookahead == 'p') ADVANCE(508); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); - case 368: + case 384: ACCEPT_TOKEN(sym_primitive_type); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); - case 369: + case 385: ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); - case 370: + case 386: ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == ':') ADVANCE(355); + if (lookahead == ':') ADVANCE(371); END_STATE(); - case 371: + case 387: ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); - case 372: + case 388: ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); - case 373: + case 389: ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); - case 374: + case 390: ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); - case 375: + case 391: ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); - case 376: + case 392: ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); - case 377: + case 393: ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); - case 378: + case 394: ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); - case 379: + case 395: ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); - case 380: + case 396: ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); - case 381: + case 397: ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); - case 382: + case 398: ACCEPT_TOKEN(anon_sym_LT_EQ_GT); END_STATE(); - case 383: + case 399: ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); - case 384: + case 400: ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); - case 385: + case 401: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '*') ADVANCE(504); - if (lookahead == '.') ADVANCE(198); + if (lookahead == '*') ADVANCE(520); + if (lookahead == '.') ADVANCE(214); END_STATE(); - case 386: + case 402: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '*') ADVANCE(504); - if (lookahead == '.') ADVANCE(198); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(392); + if (lookahead == '*') ADVANCE(520); + if (lookahead == '.') ADVANCE(214); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(408); END_STATE(); - case 387: + case 403: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(198); + if (lookahead == '.') ADVANCE(214); END_STATE(); - case 388: + case 404: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(198); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(392); + if (lookahead == '.') ADVANCE(214); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(408); END_STATE(); - case 389: + case 405: ACCEPT_TOKEN(anon_sym_DOT); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(392); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(408); END_STATE(); - case 390: + case 406: ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); - case 391: + case 407: ACCEPT_TOKEN(anon_sym_DASH_GT); - if (lookahead == '*') ADVANCE(505); + if (lookahead == '*') ADVANCE(521); END_STATE(); - case 392: + case 408: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(226); + if (lookahead == '\'') ADVANCE(242); if (lookahead == 'F' || lookahead == 'L' || lookahead == 'U' || lookahead == 'f' || lookahead == 'l' || - lookahead == 'u') ADVANCE(406); + lookahead == 'u') ADVANCE(422); if (lookahead == 'E' || lookahead == 'P' || lookahead == 'e' || - lookahead == 'p') ADVANCE(405); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(392); + lookahead == 'p') ADVANCE(421); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(408); END_STATE(); - case 393: + case 409: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(230); + if (lookahead == '\'') ADVANCE(246); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(393); + lookahead == 'f') ADVANCE(409); if (lookahead == 'L' || lookahead == 'U' || lookahead == 'l' || - lookahead == 'u') ADVANCE(406); + lookahead == 'u') ADVANCE(422); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'E') || - ('a' <= lookahead && lookahead <= 'e')) ADVANCE(393); + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(409); END_STATE(); - case 394: + case 410: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(227); - if (lookahead == '.') ADVANCE(404); + if (lookahead == '\'') ADVANCE(243); + if (lookahead == '.') ADVANCE(420); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(403); + lookahead == 'f') ADVANCE(419); if (lookahead == 'L' || lookahead == 'U' || lookahead == 'l' || - lookahead == 'u') ADVANCE(406); - if (lookahead == 'b') ADVANCE(402); - if (lookahead == 'x') ADVANCE(229); + lookahead == 'u') ADVANCE(422); + if (lookahead == 'b') ADVANCE(418); + if (lookahead == 'x') ADVANCE(245); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(401); + lookahead == 'e') ADVANCE(417); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(405); + lookahead == 'p') ADVANCE(421); if (('A' <= lookahead && lookahead <= 'D') || - ('a' <= lookahead && lookahead <= 'd')) ADVANCE(403); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(395); + ('a' <= lookahead && lookahead <= 'd')) ADVANCE(419); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(411); END_STATE(); - case 395: + case 411: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(227); - if (lookahead == '.') ADVANCE(404); + if (lookahead == '\'') ADVANCE(243); + if (lookahead == '.') ADVANCE(420); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(403); + lookahead == 'f') ADVANCE(419); if (lookahead == 'L' || lookahead == 'U' || lookahead == 'l' || - lookahead == 'u') ADVANCE(406); + lookahead == 'u') ADVANCE(422); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(401); + lookahead == 'e') ADVANCE(417); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(405); + lookahead == 'p') ADVANCE(421); if (('A' <= lookahead && lookahead <= 'D') || - ('a' <= lookahead && lookahead <= 'd')) ADVANCE(403); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(395); + ('a' <= lookahead && lookahead <= 'd')) ADVANCE(419); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(411); END_STATE(); - case 396: + case 412: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(225); - if (lookahead == '.') ADVANCE(404); + if (lookahead == '\'') ADVANCE(241); + if (lookahead == '.') ADVANCE(420); if (lookahead == 'F' || lookahead == 'L' || lookahead == 'U' || lookahead == 'f' || lookahead == 'l' || - lookahead == 'u') ADVANCE(406); - if (lookahead == 'b') ADVANCE(195); - if (lookahead == 'x') ADVANCE(194); + lookahead == 'u') ADVANCE(422); + if (lookahead == 'b') ADVANCE(211); + if (lookahead == 'x') ADVANCE(210); if (lookahead == 'E' || lookahead == 'P' || lookahead == 'e' || - lookahead == 'p') ADVANCE(405); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(398); + lookahead == 'p') ADVANCE(421); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(414); END_STATE(); - case 397: + case 413: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(225); - if (lookahead == '.') ADVANCE(404); + if (lookahead == '\'') ADVANCE(241); + if (lookahead == '.') ADVANCE(420); if (lookahead == 'F' || lookahead == 'L' || lookahead == 'U' || lookahead == 'f' || lookahead == 'l' || - lookahead == 'u') ADVANCE(406); - if (lookahead == 'b') ADVANCE(225); - if (lookahead == 'x') ADVANCE(229); + lookahead == 'u') ADVANCE(422); + if (lookahead == 'b') ADVANCE(241); + if (lookahead == 'x') ADVANCE(245); if (lookahead == 'E' || lookahead == 'P' || lookahead == 'e' || - lookahead == 'p') ADVANCE(405); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(398); + lookahead == 'p') ADVANCE(421); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(414); END_STATE(); - case 398: + case 414: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(225); - if (lookahead == '.') ADVANCE(404); + if (lookahead == '\'') ADVANCE(241); + if (lookahead == '.') ADVANCE(420); if (lookahead == 'F' || lookahead == 'L' || lookahead == 'U' || lookahead == 'f' || lookahead == 'l' || - lookahead == 'u') ADVANCE(406); + lookahead == 'u') ADVANCE(422); if (lookahead == 'E' || lookahead == 'P' || lookahead == 'e' || - lookahead == 'p') ADVANCE(405); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(398); + lookahead == 'p') ADVANCE(421); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(414); END_STATE(); - case 399: + case 415: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(228); + if (lookahead == '\'') ADVANCE(244); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(400); + lookahead == 'f') ADVANCE(416); if (lookahead == 'L' || lookahead == 'U' || lookahead == 'l' || - lookahead == 'u') ADVANCE(406); + lookahead == 'u') ADVANCE(422); if (lookahead == '+' || - lookahead == '-') ADVANCE(230); + lookahead == '-') ADVANCE(246); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(399); + lookahead == 'e') ADVANCE(415); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(405); + lookahead == 'p') ADVANCE(421); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'D') || - ('a' <= lookahead && lookahead <= 'd')) ADVANCE(400); + ('a' <= lookahead && lookahead <= 'd')) ADVANCE(416); END_STATE(); - case 400: + case 416: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(228); + if (lookahead == '\'') ADVANCE(244); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(400); + lookahead == 'f') ADVANCE(416); if (lookahead == 'L' || lookahead == 'U' || lookahead == 'l' || - lookahead == 'u') ADVANCE(406); + lookahead == 'u') ADVANCE(422); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(399); + lookahead == 'e') ADVANCE(415); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(405); + lookahead == 'p') ADVANCE(421); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'D') || - ('a' <= lookahead && lookahead <= 'd')) ADVANCE(400); + ('a' <= lookahead && lookahead <= 'd')) ADVANCE(416); END_STATE(); - case 401: + case 417: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(229); - if (lookahead == '.') ADVANCE(404); + if (lookahead == '\'') ADVANCE(245); + if (lookahead == '.') ADVANCE(420); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(403); + lookahead == 'f') ADVANCE(419); if (lookahead == 'L' || lookahead == 'U' || lookahead == 'l' || - lookahead == 'u') ADVANCE(406); + lookahead == 'u') ADVANCE(422); if (lookahead == '+' || - lookahead == '-') ADVANCE(230); + lookahead == '-') ADVANCE(246); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(401); + lookahead == 'e') ADVANCE(417); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(405); + lookahead == 'p') ADVANCE(421); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'D') || - ('a' <= lookahead && lookahead <= 'd')) ADVANCE(403); + ('a' <= lookahead && lookahead <= 'd')) ADVANCE(419); END_STATE(); - case 402: + case 418: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(229); - if (lookahead == '.') ADVANCE(404); + if (lookahead == '\'') ADVANCE(245); + if (lookahead == '.') ADVANCE(420); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(403); + lookahead == 'f') ADVANCE(419); if (lookahead == 'L' || lookahead == 'U' || lookahead == 'l' || - lookahead == 'u') ADVANCE(406); + lookahead == 'u') ADVANCE(422); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(401); + lookahead == 'e') ADVANCE(417); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(405); + lookahead == 'p') ADVANCE(421); if (('A' <= lookahead && lookahead <= 'D') || - ('a' <= lookahead && lookahead <= 'd')) ADVANCE(403); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(395); + ('a' <= lookahead && lookahead <= 'd')) ADVANCE(419); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(411); END_STATE(); - case 403: + case 419: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(229); - if (lookahead == '.') ADVANCE(404); + if (lookahead == '\'') ADVANCE(245); + if (lookahead == '.') ADVANCE(420); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(403); + lookahead == 'f') ADVANCE(419); if (lookahead == 'L' || lookahead == 'U' || lookahead == 'l' || - lookahead == 'u') ADVANCE(406); + lookahead == 'u') ADVANCE(422); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(401); + lookahead == 'e') ADVANCE(417); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(405); + lookahead == 'p') ADVANCE(421); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'D') || - ('a' <= lookahead && lookahead <= 'd')) ADVANCE(403); + ('a' <= lookahead && lookahead <= 'd')) ADVANCE(419); END_STATE(); - case 404: + case 420: ACCEPT_TOKEN(sym_number_literal); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(400); + lookahead == 'f') ADVANCE(416); if (lookahead == 'L' || lookahead == 'U' || lookahead == 'l' || - lookahead == 'u') ADVANCE(406); + lookahead == 'u') ADVANCE(422); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(399); + lookahead == 'e') ADVANCE(415); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(405); + lookahead == 'p') ADVANCE(421); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'D') || - ('a' <= lookahead && lookahead <= 'd')) ADVANCE(400); + ('a' <= lookahead && lookahead <= 'd')) ADVANCE(416); END_STATE(); - case 405: + case 421: ACCEPT_TOKEN(sym_number_literal); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(393); + lookahead == 'f') ADVANCE(409); if (lookahead == 'L' || lookahead == 'U' || lookahead == 'l' || - lookahead == 'u') ADVANCE(406); + lookahead == 'u') ADVANCE(422); if (lookahead == '+' || - lookahead == '-') ADVANCE(230); + lookahead == '-') ADVANCE(246); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'E') || - ('a' <= lookahead && lookahead <= 'e')) ADVANCE(393); + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(409); END_STATE(); - case 406: + case 422: ACCEPT_TOKEN(sym_number_literal); if (lookahead == 'F' || lookahead == 'L' || lookahead == 'U' || lookahead == 'f' || lookahead == 'l' || - lookahead == 'u') ADVANCE(406); + lookahead == 'u') ADVANCE(422); END_STATE(); - case 407: + case 423: ACCEPT_TOKEN(anon_sym_L_SQUOTE); END_STATE(); - case 408: + case 424: ACCEPT_TOKEN(anon_sym_u_SQUOTE); END_STATE(); - case 409: + case 425: ACCEPT_TOKEN(anon_sym_U_SQUOTE); END_STATE(); - case 410: + case 426: ACCEPT_TOKEN(anon_sym_u8_SQUOTE); END_STATE(); - case 411: + case 427: ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); - case 412: + case 428: ACCEPT_TOKEN(aux_sym_char_literal_token1); END_STATE(); - case 413: + case 429: ACCEPT_TOKEN(aux_sym_char_literal_token1); - if (lookahead == '\n') ADVANCE(427); - if (lookahead == '\r') ADVANCE(426); - if (lookahead == 'U') ADVANCE(238); - if (lookahead == 'u') ADVANCE(234); - if (lookahead == 'x') ADVANCE(232); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(429); - if (lookahead != 0) ADVANCE(426); + if (lookahead == '\n') ADVANCE(443); + if (lookahead == '\r') ADVANCE(442); + if (lookahead == 'U') ADVANCE(254); + if (lookahead == 'u') ADVANCE(250); + if (lookahead == 'x') ADVANCE(248); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(445); + if (lookahead != 0) ADVANCE(442); END_STATE(); - case 414: + case 430: ACCEPT_TOKEN(aux_sym_char_literal_token1); - if (lookahead == '*') ADVANCE(193); - if (lookahead == '/') ADVANCE(499); + if (lookahead == '*') ADVANCE(209); + if (lookahead == '/') ADVANCE(515); END_STATE(); - case 415: + case 431: ACCEPT_TOKEN(aux_sym_char_literal_token1); - if (lookahead == '\\') ADVANCE(85); + if (lookahead == '\\') ADVANCE(77); END_STATE(); - case 416: + case 432: ACCEPT_TOKEN(anon_sym_L_DQUOTE); END_STATE(); - case 417: + case 433: ACCEPT_TOKEN(anon_sym_u_DQUOTE); END_STATE(); - case 418: + case 434: ACCEPT_TOKEN(anon_sym_U_DQUOTE); END_STATE(); - case 419: + case 435: ACCEPT_TOKEN(anon_sym_u8_DQUOTE); END_STATE(); - case 420: + case 436: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 421: + case 437: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '*') ADVANCE(423); - if (lookahead == '/') ADVANCE(425); + if (lookahead == '*') ADVANCE(439); + if (lookahead == '/') ADVANCE(441); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(425); + lookahead != '\\') ADVANCE(441); END_STATE(); - case 422: + case 438: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '*') ADVANCE(422); - if (lookahead == '/') ADVANCE(425); + if (lookahead == '*') ADVANCE(438); + if (lookahead == '/') ADVANCE(441); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(423); + lookahead != '\\') ADVANCE(439); END_STATE(); - case 423: + case 439: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '*') ADVANCE(422); + if (lookahead == '*') ADVANCE(438); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(423); + lookahead != '\\') ADVANCE(439); END_STATE(); - case 424: + case 440: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '/') ADVANCE(421); + if (lookahead == '/') ADVANCE(437); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') ADVANCE(424); + lookahead == ' ') ADVANCE(440); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(425); + lookahead != '\\') ADVANCE(441); END_STATE(); - case 425: + case 441: ACCEPT_TOKEN(aux_sym_string_literal_token1); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(425); + lookahead != '\\') ADVANCE(441); END_STATE(); - case 426: + case 442: ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); - case 427: + case 443: ACCEPT_TOKEN(sym_escape_sequence); - if (lookahead == '\\') ADVANCE(85); + if (lookahead == '\\') ADVANCE(77); END_STATE(); - case 428: + case 444: ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(426); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(442); END_STATE(); - case 429: + case 445: ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(428); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(444); END_STATE(); - case 430: + case 446: ACCEPT_TOKEN(sym_system_lib_string); END_STATE(); - case 431: + case 447: ACCEPT_TOKEN(sym_system_lib_string); - if (lookahead == '>') ADVANCE(430); - if (lookahead == '\\') ADVANCE(209); + if (lookahead == '>') ADVANCE(446); + if (lookahead == '\\') ADVANCE(225); if (lookahead != 0 && - lookahead != '\n') ADVANCE(208); + lookahead != '\n') ADVANCE(224); END_STATE(); - case 432: + case 448: ACCEPT_TOKEN(sym_true); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); - case 433: + case 449: ACCEPT_TOKEN(sym_false); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); - case 434: + case 450: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(416); - if (lookahead == '\'') ADVANCE(407); + if (lookahead == '"') ADVANCE(432); + if (lookahead == '\'') ADVANCE(423); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); - case 435: + case 451: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(416); + if (lookahead == '"') ADVANCE(432); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); - case 436: + case 452: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(418); - if (lookahead == '\'') ADVANCE(409); + if (lookahead == '"') ADVANCE(434); + if (lookahead == '\'') ADVANCE(425); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); - case 437: + case 453: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(418); + if (lookahead == '"') ADVANCE(434); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); - case 438: + case 454: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(417); - if (lookahead == '\'') ADVANCE(408); - if (lookahead == '8') ADVANCE(441); - if (lookahead == 'i') ADVANCE(479); + if (lookahead == '"') ADVANCE(433); + if (lookahead == '\'') ADVANCE(424); + if (lookahead == '8') ADVANCE(457); + if (lookahead == 'i') ADVANCE(495); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); - case 439: + case 455: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(417); - if (lookahead == '8') ADVANCE(442); - if (lookahead == 'i') ADVANCE(479); + if (lookahead == '"') ADVANCE(433); + if (lookahead == '8') ADVANCE(458); + if (lookahead == 'i') ADVANCE(495); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); - case 440: + case 456: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(417); - if (lookahead == '8') ADVANCE(442); + if (lookahead == '"') ADVANCE(433); + if (lookahead == '8') ADVANCE(458); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); - case 441: + case 457: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(419); - if (lookahead == '\'') ADVANCE(410); + if (lookahead == '"') ADVANCE(435); + if (lookahead == '\'') ADVANCE(426); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); - case 442: + case 458: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(419); + if (lookahead == '"') ADVANCE(435); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); - case 443: + case 459: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\'') ADVANCE(407); + if (lookahead == '\'') ADVANCE(423); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); - case 444: + case 460: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\'') ADVANCE(409); + if (lookahead == '\'') ADVANCE(425); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); - case 445: + case 461: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\'') ADVANCE(408); - if (lookahead == '8') ADVANCE(446); + if (lookahead == '\'') ADVANCE(424); + if (lookahead == '8') ADVANCE(462); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); - case 446: + case 462: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\'') ADVANCE(410); + if (lookahead == '\'') ADVANCE(426); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); - case 447: + case 463: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '1') ADVANCE(450); - if (lookahead == '3') ADVANCE(448); - if (lookahead == '6') ADVANCE(449); - if (lookahead == '8') ADVANCE(458); - if (lookahead == 'p') ADVANCE(492); + if (lookahead == '1') ADVANCE(466); + if (lookahead == '3') ADVANCE(464); + if (lookahead == '6') ADVANCE(465); + if (lookahead == '8') ADVANCE(474); + if (lookahead == 'p') ADVANCE(508); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); - case 448: + case 464: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '2') ADVANCE(458); + if (lookahead == '2') ADVANCE(474); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); - case 449: + case 465: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '4') ADVANCE(458); + if (lookahead == '4') ADVANCE(474); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); - case 450: + case 466: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '6') ADVANCE(458); + if (lookahead == '6') ADVANCE(474); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); - case 451: + case 467: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A') ADVANCE(454); + if (lookahead == 'A') ADVANCE(470); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); - case 452: + case 468: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E') ADVANCE(432); + if (lookahead == 'E') ADVANCE(448); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); - case 453: + case 469: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'E') ADVANCE(433); + if (lookahead == 'E') ADVANCE(449); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); - case 454: + case 470: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'L') ADVANCE(456); + if (lookahead == 'L') ADVANCE(472); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); - case 455: + case 471: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'R') ADVANCE(457); + if (lookahead == 'R') ADVANCE(473); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); - case 456: + case 472: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'S') ADVANCE(453); + if (lookahead == 'S') ADVANCE(469); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); - case 457: + case 473: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'U') ADVANCE(452); + if (lookahead == 'U') ADVANCE(468); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); - case 458: + case 474: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(490); + if (lookahead == '_') ADVANCE(506); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); - case 459: + case 475: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(474); - if (lookahead == 'l') ADVANCE(481); + if (lookahead == 'a') ADVANCE(490); + if (lookahead == 'l') ADVANCE(497); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(496); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); - case 460: + case 476: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(474); + if (lookahead == 'a') ADVANCE(490); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(496); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); - case 461: + case 477: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(485); + if (lookahead == 'a') ADVANCE(501); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(496); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); - case 462: + case 478: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(490); + if (lookahead == 'a') ADVANCE(506); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(496); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); - case 463: + case 479: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'b') ADVANCE(476); + if (lookahead == 'b') ADVANCE(492); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); - case 464: + case 480: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'd') ADVANCE(368); + if (lookahead == 'd') ADVANCE(384); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); - case 465: + case 481: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(432); + if (lookahead == 'e') ADVANCE(448); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); - case 466: + case 482: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(368); + if (lookahead == 'e') ADVANCE(384); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); - case 467: + case 483: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(458); + if (lookahead == 'e') ADVANCE(474); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); - case 468: + case 484: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(433); + if (lookahead == 'e') ADVANCE(449); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); - case 469: + case 485: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'h') ADVANCE(461); + if (lookahead == 'h') ADVANCE(477); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); - case 470: + case 486: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(495); - if (lookahead == 's') ADVANCE(471); + if (lookahead == 'i') ADVANCE(511); + if (lookahead == 's') ADVANCE(487); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); - case 471: + case 487: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(495); + if (lookahead == 'i') ADVANCE(511); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); - case 472: + case 488: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(464); + if (lookahead == 'i') ADVANCE(480); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); - case 473: + case 489: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(479); + if (lookahead == 'i') ADVANCE(495); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); - case 474: + case 490: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(488); + if (lookahead == 'l') ADVANCE(504); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); - case 475: + case 491: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(368); + if (lookahead == 'l') ADVANCE(384); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); - case 476: + case 492: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(466); + if (lookahead == 'l') ADVANCE(482); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); - case 477: + case 493: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(481); + if (lookahead == 'l') ADVANCE(497); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); - case 478: + case 494: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(489); + if (lookahead == 'n') ADVANCE(505); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); - case 479: + case 495: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(491); + if (lookahead == 'n') ADVANCE(507); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); - case 480: + case 496: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(493); + if (lookahead == 'o') ADVANCE(509); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); - case 481: + case 497: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(462); + if (lookahead == 'o') ADVANCE(478); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); - case 482: + case 498: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(475); + if (lookahead == 'o') ADVANCE(491); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); - case 483: + case 499: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(472); + if (lookahead == 'o') ADVANCE(488); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); - case 484: + case 500: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(482); + if (lookahead == 'o') ADVANCE(498); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); - case 485: + case 501: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(367); + if (lookahead == 'r') ADVANCE(383); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); - case 486: + case 502: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(458); + if (lookahead == 'r') ADVANCE(474); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); - case 487: + case 503: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(494); + if (lookahead == 'r') ADVANCE(510); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); - case 488: + case 504: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(468); + if (lookahead == 's') ADVANCE(484); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); - case 489: + case 505: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(367); + if (lookahead == 't') ADVANCE(383); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); - case 490: + case 506: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(368); + if (lookahead == 't') ADVANCE(384); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); - case 491: + case 507: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(447); + if (lookahead == 't') ADVANCE(463); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); - case 492: + case 508: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(486); + if (lookahead == 't') ADVANCE(502); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); - case 493: + case 509: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(463); + if (lookahead == 'u') ADVANCE(479); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); - case 494: + case 510: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(465); + if (lookahead == 'u') ADVANCE(481); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); - case 495: + case 511: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'z') ADVANCE(467); + if (lookahead == 'z') ADVANCE(483); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'y')) ADVANCE(496); + ('a' <= lookahead && lookahead <= 'y')) ADVANCE(512); END_STATE(); - case 496: + case 512: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(496); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(512); END_STATE(); - case 497: + case 513: ACCEPT_TOKEN(sym_comment); END_STATE(); - case 498: + case 514: ACCEPT_TOKEN(sym_comment); - if (lookahead == '\r') ADVANCE(500); - if (lookahead == '\\') ADVANCE(297); + if (lookahead == '\r') ADVANCE(516); + if (lookahead == '\\') ADVANCE(313); if (lookahead != 0 && - lookahead != '\n') ADVANCE(500); + lookahead != '\n') ADVANCE(516); END_STATE(); - case 499: + case 515: ACCEPT_TOKEN(sym_comment); - if (lookahead == '\\') ADVANCE(239); + if (lookahead == '\\') ADVANCE(255); if (lookahead != 0 && - lookahead != '\n') ADVANCE(499); + lookahead != '\n') ADVANCE(515); END_STATE(); - case 500: + case 516: ACCEPT_TOKEN(sym_comment); - if (lookahead == '\\') ADVANCE(297); + if (lookahead == '\\') ADVANCE(313); if (lookahead != 0 && - lookahead != '\n') ADVANCE(500); + lookahead != '\n') ADVANCE(516); END_STATE(); - case 501: + case 517: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && - lookahead != '\\') ADVANCE(499); - if (lookahead == '\\') ADVANCE(239); + lookahead != '\\') ADVANCE(515); + if (lookahead == '\\') ADVANCE(255); END_STATE(); - case 502: + case 518: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && - lookahead != '\\') ADVANCE(500); - if (lookahead == '\\') ADVANCE(297); + lookahead != '\\') ADVANCE(516); + if (lookahead == '\\') ADVANCE(313); END_STATE(); - case 503: + case 519: ACCEPT_TOKEN(anon_sym_GT2); END_STATE(); - case 504: + case 520: ACCEPT_TOKEN(anon_sym_DOT_STAR); END_STATE(); - case 505: + case 521: ACCEPT_TOKEN(anon_sym_DASH_GT_STAR); END_STATE(); - case 506: + case 522: ACCEPT_TOKEN(anon_sym_LPAREN_RPAREN); END_STATE(); - case 507: + case 523: ACCEPT_TOKEN(anon_sym_LBRACK_RBRACK); END_STATE(); - case 508: + case 524: ACCEPT_TOKEN(anon_sym_DQUOTE_DQUOTE); END_STATE(); - case 509: + case 525: ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '"') ADVANCE(416); + if (lookahead == '"') ADVANCE(432); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(513); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(529); END_STATE(); - case 510: + case 526: ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '"') ADVANCE(418); + if (lookahead == '"') ADVANCE(434); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(513); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(529); END_STATE(); - case 511: + case 527: ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '"') ADVANCE(417); - if (lookahead == '8') ADVANCE(512); + if (lookahead == '"') ADVANCE(433); + if (lookahead == '8') ADVANCE(528); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(513); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(529); END_STATE(); - case 512: + case 528: ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '"') ADVANCE(419); + if (lookahead == '"') ADVANCE(435); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(513); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(529); END_STATE(); - case 513: + case 529: ACCEPT_TOKEN(sym_literal_suffix); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(513); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(529); END_STATE(); default: return false; @@ -15499,1374 +16269,1472 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(20); if (lookahead == 'v') ADVANCE(21); if (lookahead == 'w') ADVANCE(22); + if (lookahead == 'x') ADVANCE(23); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(0) END_STATE(); case 1: - if (lookahead == 'U') ADVANCE(23); + if (lookahead == 'U') ADVANCE(24); END_STATE(); case 2: if (lookahead == '\n') SKIP(0) - if (lookahead == '\r') SKIP(24) + if (lookahead == '\r') SKIP(25) END_STATE(); case 3: - if (lookahead == 'A') ADVANCE(25); - if (lookahead == '_') ADVANCE(26); - if (lookahead == 'u') ADVANCE(27); + if (lookahead == 'A') ADVANCE(26); + if (lookahead == '_') ADVANCE(27); + if (lookahead == 'u') ADVANCE(28); END_STATE(); case 4: - if (lookahead == 'u') ADVANCE(28); + if (lookahead == 'n') ADVANCE(29); + if (lookahead == 'u') ADVANCE(30); END_STATE(); case 5: - if (lookahead == 'r') ADVANCE(29); + if (lookahead == 'i') ADVANCE(31); + if (lookahead == 'r') ADVANCE(32); END_STATE(); case 6: - if (lookahead == 'a') ADVANCE(30); - if (lookahead == 'l') ADVANCE(31); - if (lookahead == 'o') ADVANCE(32); + if (lookahead == 'a') ADVANCE(33); + if (lookahead == 'l') ADVANCE(34); + if (lookahead == 'o') ADVANCE(35); END_STATE(); case 7: - if (lookahead == 'e') ADVANCE(33); - if (lookahead == 'o') ADVANCE(34); + if (lookahead == 'e') ADVANCE(36); + if (lookahead == 'o') ADVANCE(37); END_STATE(); case 8: - if (lookahead == 'l') ADVANCE(35); - if (lookahead == 'n') ADVANCE(36); - if (lookahead == 'x') ADVANCE(37); + if (lookahead == 'l') ADVANCE(38); + if (lookahead == 'n') ADVANCE(39); + if (lookahead == 'x') ADVANCE(40); END_STATE(); case 9: - if (lookahead == 'i') ADVANCE(38); - if (lookahead == 'o') ADVANCE(39); - if (lookahead == 'r') ADVANCE(40); + if (lookahead == 'i') ADVANCE(41); + if (lookahead == 'o') ADVANCE(42); + if (lookahead == 'r') ADVANCE(43); END_STATE(); case 10: - if (lookahead == 'o') ADVANCE(41); + if (lookahead == 'o') ADVANCE(44); END_STATE(); case 11: - if (lookahead == 'f') ADVANCE(42); - if (lookahead == 'n') ADVANCE(43); + if (lookahead == 'f') ADVANCE(45); + if (lookahead == 'n') ADVANCE(46); END_STATE(); case 12: - if (lookahead == 'o') ADVANCE(44); + if (lookahead == 'o') ADVANCE(47); END_STATE(); case 13: - if (lookahead == 'u') ADVANCE(45); + if (lookahead == 'u') ADVANCE(48); END_STATE(); case 14: - if (lookahead == 'a') ADVANCE(46); - if (lookahead == 'e') ADVANCE(47); - if (lookahead == 'o') ADVANCE(48); - if (lookahead == 'u') ADVANCE(49); + if (lookahead == 'a') ADVANCE(49); + if (lookahead == 'e') ADVANCE(50); + if (lookahead == 'o') ADVANCE(51); + if (lookahead == 'u') ADVANCE(52); END_STATE(); case 15: - if (lookahead == 'p') ADVANCE(50); - if (lookahead == 'v') ADVANCE(51); + if (lookahead == 'p') ADVANCE(53); + if (lookahead == 'r') ADVANCE(54); + if (lookahead == 'v') ADVANCE(55); END_STATE(); case 16: - if (lookahead == 'r') ADVANCE(52); - if (lookahead == 'u') ADVANCE(53); + if (lookahead == 'r') ADVANCE(56); + if (lookahead == 'u') ADVANCE(57); END_STATE(); case 17: - if (lookahead == 'e') ADVANCE(54); + if (lookahead == 'e') ADVANCE(58); END_STATE(); case 18: - if (lookahead == 'h') ADVANCE(55); - if (lookahead == 'i') ADVANCE(56); - if (lookahead == 't') ADVANCE(57); - if (lookahead == 'w') ADVANCE(58); + if (lookahead == 'h') ADVANCE(59); + if (lookahead == 'i') ADVANCE(60); + if (lookahead == 't') ADVANCE(61); + if (lookahead == 'w') ADVANCE(62); END_STATE(); case 19: - if (lookahead == 'e') ADVANCE(59); - if (lookahead == 'h') ADVANCE(60); - if (lookahead == 'r') ADVANCE(61); - if (lookahead == 'y') ADVANCE(62); + if (lookahead == 'e') ADVANCE(63); + if (lookahead == 'h') ADVANCE(64); + if (lookahead == 'r') ADVANCE(65); + if (lookahead == 'y') ADVANCE(66); END_STATE(); case 20: - if (lookahead == 'n') ADVANCE(63); - if (lookahead == 's') ADVANCE(64); + if (lookahead == 'n') ADVANCE(67); + if (lookahead == 's') ADVANCE(68); END_STATE(); case 21: - if (lookahead == 'i') ADVANCE(65); - if (lookahead == 'o') ADVANCE(66); + if (lookahead == 'i') ADVANCE(69); + if (lookahead == 'o') ADVANCE(70); END_STATE(); case 22: - if (lookahead == 'h') ADVANCE(67); + if (lookahead == 'h') ADVANCE(71); END_STATE(); case 23: - if (lookahead == 'L') ADVANCE(68); + if (lookahead == 'o') ADVANCE(72); END_STATE(); case 24: - if (lookahead == '\n') SKIP(0) + if (lookahead == 'L') ADVANCE(73); END_STATE(); case 25: - if (lookahead == 't') ADVANCE(69); + if (lookahead == '\n') SKIP(0) END_STATE(); case 26: - if (lookahead == 'a') ADVANCE(70); - if (lookahead == 'b') ADVANCE(71); - if (lookahead == 'c') ADVANCE(72); - if (lookahead == 'd') ADVANCE(73); - if (lookahead == 'f') ADVANCE(74); - if (lookahead == 'r') ADVANCE(75); - if (lookahead == 's') ADVANCE(76); - if (lookahead == 't') ADVANCE(77); - if (lookahead == 'u') ADVANCE(78); - if (lookahead == 'v') ADVANCE(79); + if (lookahead == 't') ADVANCE(74); END_STATE(); case 27: - if (lookahead == 'n') ADVANCE(80); + if (lookahead == 'a') ADVANCE(75); + if (lookahead == 'b') ADVANCE(76); + if (lookahead == 'c') ADVANCE(77); + if (lookahead == 'd') ADVANCE(78); + if (lookahead == 'f') ADVANCE(79); + if (lookahead == 'r') ADVANCE(80); + if (lookahead == 's') ADVANCE(81); + if (lookahead == 't') ADVANCE(82); + if (lookahead == 'u') ADVANCE(83); + if (lookahead == 'v') ADVANCE(84); END_STATE(); case 28: - if (lookahead == 't') ADVANCE(81); + if (lookahead == 'n') ADVANCE(85); END_STATE(); case 29: - if (lookahead == 'e') ADVANCE(82); + if (lookahead == 'd') ADVANCE(86); END_STATE(); case 30: - if (lookahead == 's') ADVANCE(83); - if (lookahead == 't') ADVANCE(84); + if (lookahead == 't') ADVANCE(87); END_STATE(); case 31: - if (lookahead == 'a') ADVANCE(85); + if (lookahead == 't') ADVANCE(88); END_STATE(); case 32: - if (lookahead == '_') ADVANCE(86); - if (lookahead == 'n') ADVANCE(87); + if (lookahead == 'e') ADVANCE(89); END_STATE(); case 33: - if (lookahead == 'c') ADVANCE(88); - if (lookahead == 'f') ADVANCE(89); - if (lookahead == 'l') ADVANCE(90); + if (lookahead == 's') ADVANCE(90); + if (lookahead == 't') ADVANCE(91); END_STATE(); case 34: - ACCEPT_TOKEN(anon_sym_do); + if (lookahead == 'a') ADVANCE(92); END_STATE(); case 35: - if (lookahead == 's') ADVANCE(91); + if (lookahead == '_') ADVANCE(93); + if (lookahead == 'm') ADVANCE(94); + if (lookahead == 'n') ADVANCE(95); END_STATE(); case 36: - if (lookahead == 'u') ADVANCE(92); + if (lookahead == 'c') ADVANCE(96); + if (lookahead == 'f') ADVANCE(97); + if (lookahead == 'l') ADVANCE(98); END_STATE(); case 37: - if (lookahead == 'p') ADVANCE(93); - if (lookahead == 't') ADVANCE(94); + ACCEPT_TOKEN(anon_sym_do); END_STATE(); case 38: - if (lookahead == 'n') ADVANCE(95); + if (lookahead == 's') ADVANCE(99); END_STATE(); case 39: - if (lookahead == 'r') ADVANCE(96); + if (lookahead == 'u') ADVANCE(100); END_STATE(); case 40: - if (lookahead == 'i') ADVANCE(97); + if (lookahead == 'p') ADVANCE(101); + if (lookahead == 't') ADVANCE(102); END_STATE(); case 41: - if (lookahead == 't') ADVANCE(98); + if (lookahead == 'n') ADVANCE(103); END_STATE(); case 42: - ACCEPT_TOKEN(anon_sym_if); + if (lookahead == 'r') ADVANCE(104); END_STATE(); case 43: - if (lookahead == 'l') ADVANCE(99); + if (lookahead == 'i') ADVANCE(105); END_STATE(); case 44: - if (lookahead == 'n') ADVANCE(100); + if (lookahead == 't') ADVANCE(106); END_STATE(); case 45: - if (lookahead == 't') ADVANCE(101); + ACCEPT_TOKEN(anon_sym_if); END_STATE(); case 46: - if (lookahead == 'm') ADVANCE(102); + if (lookahead == 'l') ADVANCE(107); END_STATE(); case 47: - if (lookahead == 'w') ADVANCE(103); + if (lookahead == 'n') ADVANCE(108); END_STATE(); case 48: - if (lookahead == 'e') ADVANCE(104); + if (lookahead == 't') ADVANCE(109); END_STATE(); case 49: - if (lookahead == 'l') ADVANCE(105); + if (lookahead == 'm') ADVANCE(110); END_STATE(); case 50: - if (lookahead == 'e') ADVANCE(106); + if (lookahead == 'w') ADVANCE(111); END_STATE(); case 51: - if (lookahead == 'e') ADVANCE(107); + if (lookahead == 'e') ADVANCE(112); + if (lookahead == 't') ADVANCE(113); END_STATE(); case 52: - if (lookahead == 'i') ADVANCE(108); - if (lookahead == 'o') ADVANCE(109); + if (lookahead == 'l') ADVANCE(114); END_STATE(); case 53: - if (lookahead == 'b') ADVANCE(110); + if (lookahead == 'e') ADVANCE(115); END_STATE(); case 54: - if (lookahead == 'g') ADVANCE(111); - if (lookahead == 'q') ADVANCE(112); - if (lookahead == 's') ADVANCE(113); - if (lookahead == 't') ADVANCE(114); + ACCEPT_TOKEN(anon_sym_or); + if (lookahead == '_') ADVANCE(116); END_STATE(); case 55: - if (lookahead == 'o') ADVANCE(115); + if (lookahead == 'e') ADVANCE(117); END_STATE(); case 56: - if (lookahead == 'g') ADVANCE(116); - if (lookahead == 'z') ADVANCE(117); + if (lookahead == 'i') ADVANCE(118); + if (lookahead == 'o') ADVANCE(119); END_STATE(); case 57: - if (lookahead == 'a') ADVANCE(118); - if (lookahead == 'r') ADVANCE(119); + if (lookahead == 'b') ADVANCE(120); END_STATE(); case 58: - if (lookahead == 'i') ADVANCE(120); + if (lookahead == 'g') ADVANCE(121); + if (lookahead == 'q') ADVANCE(122); + if (lookahead == 's') ADVANCE(123); + if (lookahead == 't') ADVANCE(124); END_STATE(); case 59: - if (lookahead == 'm') ADVANCE(121); + if (lookahead == 'o') ADVANCE(125); END_STATE(); case 60: - if (lookahead == 'i') ADVANCE(122); - if (lookahead == 'r') ADVANCE(123); + if (lookahead == 'g') ADVANCE(126); + if (lookahead == 'z') ADVANCE(127); END_STATE(); case 61: - if (lookahead == 'y') ADVANCE(124); + if (lookahead == 'a') ADVANCE(128); + if (lookahead == 'r') ADVANCE(129); END_STATE(); case 62: - if (lookahead == 'p') ADVANCE(125); + if (lookahead == 'i') ADVANCE(130); END_STATE(); case 63: - if (lookahead == 'i') ADVANCE(126); - if (lookahead == 's') ADVANCE(127); + if (lookahead == 'm') ADVANCE(131); END_STATE(); case 64: - if (lookahead == 'i') ADVANCE(128); + if (lookahead == 'i') ADVANCE(132); + if (lookahead == 'r') ADVANCE(133); END_STATE(); case 65: - if (lookahead == 'r') ADVANCE(129); + if (lookahead == 'y') ADVANCE(134); END_STATE(); case 66: - if (lookahead == 'l') ADVANCE(130); + if (lookahead == 'p') ADVANCE(135); END_STATE(); case 67: - if (lookahead == 'i') ADVANCE(131); + if (lookahead == 'i') ADVANCE(136); + if (lookahead == 's') ADVANCE(137); END_STATE(); case 68: - if (lookahead == 'L') ADVANCE(132); + if (lookahead == 'i') ADVANCE(138); END_STATE(); case 69: - if (lookahead == 'o') ADVANCE(133); + if (lookahead == 'r') ADVANCE(139); END_STATE(); case 70: - if (lookahead == 't') ADVANCE(134); + if (lookahead == 'l') ADVANCE(140); END_STATE(); case 71: - if (lookahead == 'a') ADVANCE(135); + if (lookahead == 'i') ADVANCE(141); END_STATE(); case 72: - if (lookahead == 'd') ADVANCE(136); - if (lookahead == 'l') ADVANCE(137); + if (lookahead == 'r') ADVANCE(142); END_STATE(); case 73: - if (lookahead == 'e') ADVANCE(138); + if (lookahead == 'L') ADVANCE(143); END_STATE(); case 74: - if (lookahead == 'a') ADVANCE(139); + if (lookahead == 'o') ADVANCE(144); END_STATE(); case 75: - if (lookahead == 'e') ADVANCE(140); + if (lookahead == 't') ADVANCE(145); END_STATE(); case 76: - if (lookahead == 'p') ADVANCE(141); - if (lookahead == 't') ADVANCE(142); + if (lookahead == 'a') ADVANCE(146); END_STATE(); case 77: - if (lookahead == 'h') ADVANCE(143); + if (lookahead == 'd') ADVANCE(147); + if (lookahead == 'l') ADVANCE(148); END_STATE(); case 78: - if (lookahead == 'n') ADVANCE(144); - if (lookahead == 'p') ADVANCE(145); + if (lookahead == 'e') ADVANCE(149); END_STATE(); case 79: - if (lookahead == 'e') ADVANCE(146); + if (lookahead == 'a') ADVANCE(150); END_STATE(); case 80: - if (lookahead == 'a') ADVANCE(147); + if (lookahead == 'e') ADVANCE(151); END_STATE(); case 81: - if (lookahead == 'o') ADVANCE(148); + if (lookahead == 'p') ADVANCE(152); + if (lookahead == 't') ADVANCE(153); END_STATE(); case 82: - if (lookahead == 'a') ADVANCE(149); + if (lookahead == 'h') ADVANCE(154); END_STATE(); case 83: - if (lookahead == 'e') ADVANCE(150); + if (lookahead == 'n') ADVANCE(155); + if (lookahead == 'p') ADVANCE(156); END_STATE(); case 84: - if (lookahead == 'c') ADVANCE(151); + if (lookahead == 'e') ADVANCE(157); END_STATE(); case 85: - if (lookahead == 's') ADVANCE(152); + if (lookahead == 'a') ADVANCE(158); END_STATE(); case 86: - if (lookahead == 'a') ADVANCE(153); - if (lookahead == 'r') ADVANCE(154); - if (lookahead == 'y') ADVANCE(155); + ACCEPT_TOKEN(anon_sym_and); + if (lookahead == '_') ADVANCE(159); END_STATE(); case 87: - if (lookahead == 'c') ADVANCE(156); - if (lookahead == 's') ADVANCE(157); - if (lookahead == 't') ADVANCE(158); + if (lookahead == 'o') ADVANCE(160); END_STATE(); case 88: - if (lookahead == 'l') ADVANCE(159); + if (lookahead == 'a') ADVANCE(161); + if (lookahead == 'o') ADVANCE(162); END_STATE(); case 89: - if (lookahead == 'a') ADVANCE(160); - if (lookahead == 'i') ADVANCE(161); + if (lookahead == 'a') ADVANCE(163); END_STATE(); case 90: - if (lookahead == 'e') ADVANCE(162); + if (lookahead == 'e') ADVANCE(164); END_STATE(); case 91: - if (lookahead == 'e') ADVANCE(163); + if (lookahead == 'c') ADVANCE(165); END_STATE(); case 92: - if (lookahead == 'm') ADVANCE(164); + if (lookahead == 's') ADVANCE(166); END_STATE(); case 93: - if (lookahead == 'l') ADVANCE(165); + if (lookahead == 'a') ADVANCE(167); + if (lookahead == 'r') ADVANCE(168); + if (lookahead == 'y') ADVANCE(169); END_STATE(); case 94: - if (lookahead == 'e') ADVANCE(166); + if (lookahead == 'p') ADVANCE(170); END_STATE(); case 95: - if (lookahead == 'a') ADVANCE(167); + if (lookahead == 'c') ADVANCE(171); + if (lookahead == 's') ADVANCE(172); + if (lookahead == 't') ADVANCE(173); END_STATE(); case 96: - ACCEPT_TOKEN(anon_sym_for); + if (lookahead == 'l') ADVANCE(174); END_STATE(); case 97: - if (lookahead == 'e') ADVANCE(168); + if (lookahead == 'a') ADVANCE(175); + if (lookahead == 'i') ADVANCE(176); END_STATE(); case 98: - if (lookahead == 'o') ADVANCE(169); + if (lookahead == 'e') ADVANCE(177); END_STATE(); case 99: - if (lookahead == 'i') ADVANCE(170); + if (lookahead == 'e') ADVANCE(178); END_STATE(); case 100: - if (lookahead == 'g') ADVANCE(171); + if (lookahead == 'm') ADVANCE(179); END_STATE(); case 101: - if (lookahead == 'a') ADVANCE(172); + if (lookahead == 'l') ADVANCE(180); END_STATE(); case 102: - if (lookahead == 'e') ADVANCE(173); + if (lookahead == 'e') ADVANCE(181); END_STATE(); case 103: - ACCEPT_TOKEN(anon_sym_new); + if (lookahead == 'a') ADVANCE(182); END_STATE(); case 104: - if (lookahead == 'x') ADVANCE(174); + ACCEPT_TOKEN(anon_sym_for); END_STATE(); case 105: - if (lookahead == 'l') ADVANCE(175); + if (lookahead == 'e') ADVANCE(183); END_STATE(); case 106: - if (lookahead == 'r') ADVANCE(176); + if (lookahead == 'o') ADVANCE(184); END_STATE(); case 107: - if (lookahead == 'r') ADVANCE(177); + if (lookahead == 'i') ADVANCE(185); END_STATE(); case 108: - if (lookahead == 'v') ADVANCE(178); + if (lookahead == 'g') ADVANCE(186); END_STATE(); case 109: - if (lookahead == 't') ADVANCE(179); + if (lookahead == 'a') ADVANCE(187); END_STATE(); case 110: - if (lookahead == 'l') ADVANCE(180); + if (lookahead == 'e') ADVANCE(188); END_STATE(); case 111: - if (lookahead == 'i') ADVANCE(181); + ACCEPT_TOKEN(anon_sym_new); END_STATE(); case 112: - if (lookahead == 'u') ADVANCE(182); + if (lookahead == 'x') ADVANCE(189); END_STATE(); case 113: - if (lookahead == 't') ADVANCE(183); + ACCEPT_TOKEN(anon_sym_not); + if (lookahead == '_') ADVANCE(190); END_STATE(); case 114: - if (lookahead == 'u') ADVANCE(184); + if (lookahead == 'l') ADVANCE(191); END_STATE(); case 115: - if (lookahead == 'r') ADVANCE(185); + if (lookahead == 'r') ADVANCE(192); END_STATE(); case 116: - if (lookahead == 'n') ADVANCE(186); + if (lookahead == 'e') ADVANCE(193); END_STATE(); case 117: - if (lookahead == 'e') ADVANCE(187); + if (lookahead == 'r') ADVANCE(194); END_STATE(); case 118: - if (lookahead == 't') ADVANCE(188); + if (lookahead == 'v') ADVANCE(195); END_STATE(); case 119: - if (lookahead == 'u') ADVANCE(189); + if (lookahead == 't') ADVANCE(196); END_STATE(); case 120: - if (lookahead == 't') ADVANCE(190); + if (lookahead == 'l') ADVANCE(197); END_STATE(); case 121: - if (lookahead == 'p') ADVANCE(191); + if (lookahead == 'i') ADVANCE(198); END_STATE(); case 122: - if (lookahead == 's') ADVANCE(192); + if (lookahead == 'u') ADVANCE(199); END_STATE(); case 123: - if (lookahead == 'e') ADVANCE(193); - if (lookahead == 'o') ADVANCE(194); + if (lookahead == 't') ADVANCE(200); END_STATE(); case 124: - ACCEPT_TOKEN(anon_sym_try); + if (lookahead == 'u') ADVANCE(201); END_STATE(); case 125: - if (lookahead == 'e') ADVANCE(195); + if (lookahead == 'r') ADVANCE(202); END_STATE(); case 126: - if (lookahead == 'o') ADVANCE(196); + if (lookahead == 'n') ADVANCE(203); END_STATE(); case 127: - if (lookahead == 'i') ADVANCE(197); + if (lookahead == 'e') ADVANCE(204); END_STATE(); case 128: - if (lookahead == 'n') ADVANCE(198); + if (lookahead == 't') ADVANCE(205); END_STATE(); case 129: - if (lookahead == 't') ADVANCE(199); + if (lookahead == 'u') ADVANCE(206); END_STATE(); case 130: - if (lookahead == 'a') ADVANCE(200); + if (lookahead == 't') ADVANCE(207); END_STATE(); case 131: - if (lookahead == 'l') ADVANCE(201); + if (lookahead == 'p') ADVANCE(208); END_STATE(); case 132: - ACCEPT_TOKEN(sym_null); + if (lookahead == 's') ADVANCE(209); END_STATE(); case 133: - if (lookahead == 'm') ADVANCE(202); + if (lookahead == 'e') ADVANCE(210); + if (lookahead == 'o') ADVANCE(211); END_STATE(); case 134: - if (lookahead == 't') ADVANCE(203); + ACCEPT_TOKEN(anon_sym_try); END_STATE(); case 135: - if (lookahead == 's') ADVANCE(204); + if (lookahead == 'e') ADVANCE(212); END_STATE(); case 136: - if (lookahead == 'e') ADVANCE(205); + if (lookahead == 'o') ADVANCE(213); END_STATE(); case 137: - if (lookahead == 'r') ADVANCE(206); + if (lookahead == 'i') ADVANCE(214); END_STATE(); case 138: - if (lookahead == 'c') ADVANCE(207); + if (lookahead == 'n') ADVANCE(215); END_STATE(); case 139: - if (lookahead == 's') ADVANCE(208); + if (lookahead == 't') ADVANCE(216); END_STATE(); case 140: - if (lookahead == 's') ADVANCE(209); + if (lookahead == 'a') ADVANCE(217); END_STATE(); case 141: - if (lookahead == 't') ADVANCE(210); + if (lookahead == 'l') ADVANCE(218); END_STATE(); case 142: - if (lookahead == 'd') ADVANCE(211); + ACCEPT_TOKEN(anon_sym_xor); + if (lookahead == '_') ADVANCE(219); END_STATE(); case 143: - if (lookahead == 'i') ADVANCE(212); + ACCEPT_TOKEN(sym_null); END_STATE(); case 144: - if (lookahead == 'a') ADVANCE(213); + if (lookahead == 'm') ADVANCE(220); END_STATE(); case 145: - if (lookahead == 't') ADVANCE(214); + if (lookahead == 't') ADVANCE(221); END_STATE(); case 146: - if (lookahead == 'c') ADVANCE(215); + if (lookahead == 's') ADVANCE(222); END_STATE(); case 147: - if (lookahead == 'l') ADVANCE(216); + if (lookahead == 'e') ADVANCE(223); END_STATE(); case 148: - ACCEPT_TOKEN(sym_auto); + if (lookahead == 'r') ADVANCE(224); END_STATE(); case 149: - if (lookahead == 'k') ADVANCE(217); + if (lookahead == 'c') ADVANCE(225); END_STATE(); case 150: - ACCEPT_TOKEN(anon_sym_case); + if (lookahead == 's') ADVANCE(226); END_STATE(); case 151: - if (lookahead == 'h') ADVANCE(218); + if (lookahead == 's') ADVANCE(227); END_STATE(); case 152: - if (lookahead == 's') ADVANCE(219); + if (lookahead == 't') ADVANCE(228); END_STATE(); case 153: - if (lookahead == 'w') ADVANCE(220); + if (lookahead == 'd') ADVANCE(229); END_STATE(); case 154: - if (lookahead == 'e') ADVANCE(221); + if (lookahead == 'i') ADVANCE(230); END_STATE(); case 155: - if (lookahead == 'i') ADVANCE(222); + if (lookahead == 'a') ADVANCE(231); END_STATE(); case 156: - if (lookahead == 'e') ADVANCE(223); + if (lookahead == 't') ADVANCE(232); END_STATE(); case 157: - if (lookahead == 't') ADVANCE(224); + if (lookahead == 'c') ADVANCE(233); END_STATE(); case 158: - if (lookahead == 'i') ADVANCE(225); + if (lookahead == 'l') ADVANCE(234); END_STATE(); case 159: - if (lookahead == 't') ADVANCE(226); + if (lookahead == 'e') ADVANCE(235); END_STATE(); case 160: - if (lookahead == 'u') ADVANCE(227); + ACCEPT_TOKEN(sym_auto); END_STATE(); case 161: - if (lookahead == 'n') ADVANCE(228); + if (lookahead == 'n') ADVANCE(236); END_STATE(); case 162: - if (lookahead == 't') ADVANCE(229); + if (lookahead == 'r') ADVANCE(237); END_STATE(); case 163: - ACCEPT_TOKEN(anon_sym_else); + if (lookahead == 'k') ADVANCE(238); END_STATE(); case 164: - ACCEPT_TOKEN(anon_sym_enum); + ACCEPT_TOKEN(anon_sym_case); END_STATE(); case 165: - if (lookahead == 'i') ADVANCE(230); + if (lookahead == 'h') ADVANCE(239); END_STATE(); case 166: - if (lookahead == 'r') ADVANCE(231); + if (lookahead == 's') ADVANCE(240); END_STATE(); case 167: - if (lookahead == 'l') ADVANCE(232); + if (lookahead == 'w') ADVANCE(241); END_STATE(); case 168: - if (lookahead == 'n') ADVANCE(233); + if (lookahead == 'e') ADVANCE(242); END_STATE(); case 169: - ACCEPT_TOKEN(anon_sym_goto); + if (lookahead == 'i') ADVANCE(243); END_STATE(); case 170: - if (lookahead == 'n') ADVANCE(234); + if (lookahead == 'l') ADVANCE(244); END_STATE(); case 171: - ACCEPT_TOKEN(anon_sym_long); + if (lookahead == 'e') ADVANCE(245); END_STATE(); case 172: - if (lookahead == 'b') ADVANCE(235); + if (lookahead == 't') ADVANCE(246); END_STATE(); case 173: - if (lookahead == 's') ADVANCE(236); + if (lookahead == 'i') ADVANCE(247); END_STATE(); case 174: - if (lookahead == 'c') ADVANCE(237); + if (lookahead == 't') ADVANCE(248); END_STATE(); case 175: - if (lookahead == 'p') ADVANCE(238); + if (lookahead == 'u') ADVANCE(249); END_STATE(); case 176: - if (lookahead == 'a') ADVANCE(239); + if (lookahead == 'n') ADVANCE(250); END_STATE(); case 177: - if (lookahead == 'r') ADVANCE(240); + if (lookahead == 't') ADVANCE(251); END_STATE(); case 178: - if (lookahead == 'a') ADVANCE(241); + ACCEPT_TOKEN(anon_sym_else); END_STATE(); case 179: - if (lookahead == 'e') ADVANCE(242); + ACCEPT_TOKEN(anon_sym_enum); END_STATE(); case 180: - if (lookahead == 'i') ADVANCE(243); + if (lookahead == 'i') ADVANCE(252); END_STATE(); case 181: - if (lookahead == 's') ADVANCE(244); + if (lookahead == 'r') ADVANCE(253); END_STATE(); case 182: - if (lookahead == 'i') ADVANCE(245); + if (lookahead == 'l') ADVANCE(254); END_STATE(); case 183: - if (lookahead == 'r') ADVANCE(246); + if (lookahead == 'n') ADVANCE(255); END_STATE(); case 184: - if (lookahead == 'r') ADVANCE(247); + ACCEPT_TOKEN(anon_sym_goto); END_STATE(); case 185: - if (lookahead == 't') ADVANCE(248); + if (lookahead == 'n') ADVANCE(256); END_STATE(); case 186: - if (lookahead == 'e') ADVANCE(249); + ACCEPT_TOKEN(anon_sym_long); END_STATE(); case 187: - if (lookahead == 'o') ADVANCE(250); + if (lookahead == 'b') ADVANCE(257); END_STATE(); case 188: - if (lookahead == 'i') ADVANCE(251); + if (lookahead == 's') ADVANCE(258); END_STATE(); case 189: - if (lookahead == 'c') ADVANCE(252); + if (lookahead == 'c') ADVANCE(259); END_STATE(); case 190: - if (lookahead == 'c') ADVANCE(253); + if (lookahead == 'e') ADVANCE(260); END_STATE(); case 191: - if (lookahead == 'l') ADVANCE(254); + if (lookahead == 'p') ADVANCE(261); END_STATE(); case 192: - ACCEPT_TOKEN(sym_this); + if (lookahead == 'a') ADVANCE(262); END_STATE(); case 193: - if (lookahead == 'a') ADVANCE(255); + if (lookahead == 'q') ADVANCE(263); END_STATE(); case 194: - if (lookahead == 'w') ADVANCE(256); + if (lookahead == 'r') ADVANCE(264); END_STATE(); case 195: - if (lookahead == 'd') ADVANCE(257); - if (lookahead == 'n') ADVANCE(258); + if (lookahead == 'a') ADVANCE(265); END_STATE(); case 196: - if (lookahead == 'n') ADVANCE(259); + if (lookahead == 'e') ADVANCE(266); END_STATE(); case 197: - if (lookahead == 'g') ADVANCE(260); + if (lookahead == 'i') ADVANCE(267); END_STATE(); case 198: - if (lookahead == 'g') ADVANCE(261); + if (lookahead == 's') ADVANCE(268); END_STATE(); case 199: - if (lookahead == 'u') ADVANCE(262); + if (lookahead == 'i') ADVANCE(269); END_STATE(); case 200: - if (lookahead == 't') ADVANCE(263); + if (lookahead == 'r') ADVANCE(270); END_STATE(); case 201: - if (lookahead == 'e') ADVANCE(264); + if (lookahead == 'r') ADVANCE(271); END_STATE(); case 202: - if (lookahead == 'i') ADVANCE(265); + if (lookahead == 't') ADVANCE(272); END_STATE(); case 203: - if (lookahead == 'r') ADVANCE(266); + if (lookahead == 'e') ADVANCE(273); END_STATE(); case 204: - if (lookahead == 'e') ADVANCE(267); + if (lookahead == 'o') ADVANCE(274); END_STATE(); case 205: - if (lookahead == 'c') ADVANCE(268); + if (lookahead == 'i') ADVANCE(275); END_STATE(); case 206: - if (lookahead == 'c') ADVANCE(269); + if (lookahead == 'c') ADVANCE(276); END_STATE(); case 207: - if (lookahead == 'l') ADVANCE(270); + if (lookahead == 'c') ADVANCE(277); END_STATE(); case 208: - if (lookahead == 't') ADVANCE(271); + if (lookahead == 'l') ADVANCE(278); END_STATE(); case 209: - if (lookahead == 't') ADVANCE(272); + ACCEPT_TOKEN(sym_this); END_STATE(); case 210: - if (lookahead == 'r') ADVANCE(273); + if (lookahead == 'a') ADVANCE(279); END_STATE(); case 211: - if (lookahead == 'c') ADVANCE(274); + if (lookahead == 'w') ADVANCE(280); END_STATE(); case 212: - if (lookahead == 's') ADVANCE(275); + if (lookahead == 'd') ADVANCE(281); + if (lookahead == 'n') ADVANCE(282); END_STATE(); case 213: - if (lookahead == 'l') ADVANCE(276); + if (lookahead == 'n') ADVANCE(283); END_STATE(); case 214: - if (lookahead == 'r') ADVANCE(277); + if (lookahead == 'g') ADVANCE(284); END_STATE(); case 215: - if (lookahead == 't') ADVANCE(278); + if (lookahead == 'g') ADVANCE(285); END_STATE(); case 216: - if (lookahead == 'i') ADVANCE(279); + if (lookahead == 'u') ADVANCE(286); END_STATE(); case 217: - ACCEPT_TOKEN(anon_sym_break); + if (lookahead == 't') ADVANCE(287); END_STATE(); case 218: - ACCEPT_TOKEN(anon_sym_catch); + if (lookahead == 'e') ADVANCE(288); END_STATE(); case 219: - ACCEPT_TOKEN(anon_sym_class); + if (lookahead == 'e') ADVANCE(289); END_STATE(); case 220: - if (lookahead == 'a') ADVANCE(280); + if (lookahead == 'i') ADVANCE(290); END_STATE(); case 221: - if (lookahead == 't') ADVANCE(281); + if (lookahead == 'r') ADVANCE(291); END_STATE(); case 222: - if (lookahead == 'e') ADVANCE(282); + if (lookahead == 'e') ADVANCE(292); END_STATE(); case 223: - if (lookahead == 'p') ADVANCE(283); + if (lookahead == 'c') ADVANCE(293); END_STATE(); case 224: - ACCEPT_TOKEN(anon_sym_const); - if (lookahead == 'e') ADVANCE(284); - if (lookahead == 'i') ADVANCE(285); + if (lookahead == 'c') ADVANCE(294); END_STATE(); case 225: - if (lookahead == 'n') ADVANCE(286); + if (lookahead == 'l') ADVANCE(295); END_STATE(); case 226: - if (lookahead == 'y') ADVANCE(287); + if (lookahead == 't') ADVANCE(296); END_STATE(); case 227: - if (lookahead == 'l') ADVANCE(288); + if (lookahead == 't') ADVANCE(297); END_STATE(); case 228: - if (lookahead == 'e') ADVANCE(289); + if (lookahead == 'r') ADVANCE(298); END_STATE(); case 229: - if (lookahead == 'e') ADVANCE(290); + if (lookahead == 'c') ADVANCE(299); END_STATE(); case 230: - if (lookahead == 'c') ADVANCE(291); + if (lookahead == 's') ADVANCE(300); END_STATE(); case 231: - if (lookahead == 'n') ADVANCE(292); + if (lookahead == 'l') ADVANCE(301); END_STATE(); case 232: - ACCEPT_TOKEN(anon_sym_final); + if (lookahead == 'r') ADVANCE(302); END_STATE(); case 233: - if (lookahead == 'd') ADVANCE(293); + if (lookahead == 't') ADVANCE(303); END_STATE(); case 234: - if (lookahead == 'e') ADVANCE(294); + if (lookahead == 'i') ADVANCE(304); END_STATE(); case 235: - if (lookahead == 'l') ADVANCE(295); + if (lookahead == 'q') ADVANCE(305); END_STATE(); case 236: - if (lookahead == 'p') ADVANCE(296); + if (lookahead == 'd') ADVANCE(306); END_STATE(); case 237: - if (lookahead == 'e') ADVANCE(297); + ACCEPT_TOKEN(anon_sym_bitor); END_STATE(); case 238: - if (lookahead == 't') ADVANCE(298); + ACCEPT_TOKEN(anon_sym_break); END_STATE(); case 239: - if (lookahead == 't') ADVANCE(299); + ACCEPT_TOKEN(anon_sym_catch); END_STATE(); case 240: - if (lookahead == 'i') ADVANCE(300); + ACCEPT_TOKEN(anon_sym_class); END_STATE(); case 241: - if (lookahead == 't') ADVANCE(301); + if (lookahead == 'a') ADVANCE(307); END_STATE(); case 242: - if (lookahead == 'c') ADVANCE(302); + if (lookahead == 't') ADVANCE(308); END_STATE(); case 243: - if (lookahead == 'c') ADVANCE(303); + if (lookahead == 'e') ADVANCE(309); END_STATE(); case 244: - if (lookahead == 't') ADVANCE(304); + ACCEPT_TOKEN(anon_sym_compl); END_STATE(); case 245: - if (lookahead == 'r') ADVANCE(305); + if (lookahead == 'p') ADVANCE(310); END_STATE(); case 246: - if (lookahead == 'i') ADVANCE(306); + ACCEPT_TOKEN(anon_sym_const); + if (lookahead == 'e') ADVANCE(311); + if (lookahead == 'i') ADVANCE(312); END_STATE(); case 247: - if (lookahead == 'n') ADVANCE(307); + if (lookahead == 'n') ADVANCE(313); END_STATE(); case 248: - ACCEPT_TOKEN(anon_sym_short); + if (lookahead == 'y') ADVANCE(314); END_STATE(); case 249: - if (lookahead == 'd') ADVANCE(308); + if (lookahead == 'l') ADVANCE(315); END_STATE(); case 250: - if (lookahead == 'f') ADVANCE(309); + if (lookahead == 'e') ADVANCE(316); END_STATE(); case 251: - if (lookahead == 'c') ADVANCE(310); + if (lookahead == 'e') ADVANCE(317); END_STATE(); case 252: - if (lookahead == 't') ADVANCE(311); + if (lookahead == 'c') ADVANCE(318); END_STATE(); case 253: - if (lookahead == 'h') ADVANCE(312); + if (lookahead == 'n') ADVANCE(319); END_STATE(); case 254: - if (lookahead == 'a') ADVANCE(313); + ACCEPT_TOKEN(anon_sym_final); END_STATE(); case 255: - if (lookahead == 'd') ADVANCE(314); + if (lookahead == 'd') ADVANCE(320); END_STATE(); case 256: - ACCEPT_TOKEN(anon_sym_throw); + if (lookahead == 'e') ADVANCE(321); END_STATE(); case 257: - if (lookahead == 'e') ADVANCE(315); + if (lookahead == 'l') ADVANCE(322); END_STATE(); case 258: - if (lookahead == 'a') ADVANCE(316); + if (lookahead == 'p') ADVANCE(323); END_STATE(); case 259: - ACCEPT_TOKEN(anon_sym_union); + if (lookahead == 'e') ADVANCE(324); END_STATE(); case 260: - if (lookahead == 'n') ADVANCE(317); + if (lookahead == 'q') ADVANCE(325); END_STATE(); case 261: - ACCEPT_TOKEN(anon_sym_using); + if (lookahead == 't') ADVANCE(326); END_STATE(); case 262: - if (lookahead == 'a') ADVANCE(318); + if (lookahead == 't') ADVANCE(327); END_STATE(); case 263: - if (lookahead == 'i') ADVANCE(319); + ACCEPT_TOKEN(anon_sym_or_eq); END_STATE(); case 264: - ACCEPT_TOKEN(anon_sym_while); + if (lookahead == 'i') ADVANCE(328); END_STATE(); case 265: - if (lookahead == 'c') ADVANCE(320); + if (lookahead == 't') ADVANCE(329); END_STATE(); case 266: - if (lookahead == 'i') ADVANCE(321); + if (lookahead == 'c') ADVANCE(330); END_STATE(); case 267: - if (lookahead == 'd') ADVANCE(322); + if (lookahead == 'c') ADVANCE(331); END_STATE(); case 268: - if (lookahead == 'l') ADVANCE(323); + if (lookahead == 't') ADVANCE(332); END_STATE(); case 269: - if (lookahead == 'a') ADVANCE(324); + if (lookahead == 'r') ADVANCE(333); END_STATE(); case 270: - if (lookahead == 's') ADVANCE(325); + if (lookahead == 'i') ADVANCE(334); END_STATE(); case 271: - if (lookahead == 'c') ADVANCE(326); + if (lookahead == 'n') ADVANCE(335); END_STATE(); case 272: - if (lookahead == 'r') ADVANCE(327); + ACCEPT_TOKEN(anon_sym_short); END_STATE(); case 273: - ACCEPT_TOKEN(sym_ms_signed_ptr_modifier); + if (lookahead == 'd') ADVANCE(336); END_STATE(); case 274: - if (lookahead == 'a') ADVANCE(328); + if (lookahead == 'f') ADVANCE(337); END_STATE(); case 275: - if (lookahead == 'c') ADVANCE(329); + if (lookahead == 'c') ADVANCE(338); END_STATE(); case 276: - if (lookahead == 'i') ADVANCE(330); + if (lookahead == 't') ADVANCE(339); END_STATE(); case 277: - ACCEPT_TOKEN(sym_ms_unsigned_ptr_modifier); + if (lookahead == 'h') ADVANCE(340); END_STATE(); case 278: - if (lookahead == 'o') ADVANCE(331); + if (lookahead == 'a') ADVANCE(341); END_STATE(); case 279: - if (lookahead == 'g') ADVANCE(332); + if (lookahead == 'd') ADVANCE(342); END_STATE(); case 280: - if (lookahead == 'i') ADVANCE(333); + ACCEPT_TOKEN(anon_sym_throw); END_STATE(); case 281: - if (lookahead == 'u') ADVANCE(334); + if (lookahead == 'e') ADVANCE(343); END_STATE(); case 282: - if (lookahead == 'l') ADVANCE(335); + if (lookahead == 'a') ADVANCE(344); END_STATE(); case 283: - if (lookahead == 't') ADVANCE(336); + ACCEPT_TOKEN(anon_sym_union); END_STATE(); case 284: - if (lookahead == 'v') ADVANCE(337); - if (lookahead == 'x') ADVANCE(338); + if (lookahead == 'n') ADVANCE(345); END_STATE(); case 285: - if (lookahead == 'n') ADVANCE(339); + ACCEPT_TOKEN(anon_sym_using); END_STATE(); case 286: - if (lookahead == 'u') ADVANCE(340); + if (lookahead == 'a') ADVANCE(346); END_STATE(); case 287: - if (lookahead == 'p') ADVANCE(341); + if (lookahead == 'i') ADVANCE(347); END_STATE(); case 288: - if (lookahead == 't') ADVANCE(342); + ACCEPT_TOKEN(anon_sym_while); END_STATE(); case 289: - if (lookahead == 'd') ADVANCE(343); + if (lookahead == 'q') ADVANCE(348); END_STATE(); case 290: - ACCEPT_TOKEN(anon_sym_delete); + if (lookahead == 'c') ADVANCE(349); END_STATE(); case 291: - if (lookahead == 'i') ADVANCE(344); + if (lookahead == 'i') ADVANCE(350); END_STATE(); case 292: - ACCEPT_TOKEN(anon_sym_extern); + if (lookahead == 'd') ADVANCE(351); END_STATE(); case 293: - ACCEPT_TOKEN(anon_sym_friend); + if (lookahead == 'l') ADVANCE(352); END_STATE(); case 294: - ACCEPT_TOKEN(anon_sym_inline); + if (lookahead == 'a') ADVANCE(353); END_STATE(); case 295: - if (lookahead == 'e') ADVANCE(345); + if (lookahead == 's') ADVANCE(354); END_STATE(); case 296: - if (lookahead == 'a') ADVANCE(346); + if (lookahead == 'c') ADVANCE(355); END_STATE(); case 297: - if (lookahead == 'p') ADVANCE(347); + if (lookahead == 'r') ADVANCE(356); END_STATE(); case 298: - if (lookahead == 'r') ADVANCE(348); + ACCEPT_TOKEN(sym_ms_signed_ptr_modifier); END_STATE(); case 299: - if (lookahead == 'o') ADVANCE(349); + if (lookahead == 'a') ADVANCE(357); END_STATE(); case 300: - if (lookahead == 'd') ADVANCE(350); + if (lookahead == 'c') ADVANCE(358); END_STATE(); case 301: - if (lookahead == 'e') ADVANCE(351); + if (lookahead == 'i') ADVANCE(359); END_STATE(); case 302: - if (lookahead == 't') ADVANCE(352); + ACCEPT_TOKEN(sym_ms_unsigned_ptr_modifier); END_STATE(); case 303: - ACCEPT_TOKEN(anon_sym_public); + if (lookahead == 'o') ADVANCE(360); END_STATE(); case 304: - if (lookahead == 'e') ADVANCE(353); + if (lookahead == 'g') ADVANCE(361); END_STATE(); case 305: - if (lookahead == 'e') ADVANCE(354); + ACCEPT_TOKEN(anon_sym_and_eq); END_STATE(); case 306: - if (lookahead == 'c') ADVANCE(355); + ACCEPT_TOKEN(anon_sym_bitand); END_STATE(); case 307: - ACCEPT_TOKEN(anon_sym_return); + if (lookahead == 'i') ADVANCE(362); END_STATE(); case 308: - ACCEPT_TOKEN(anon_sym_signed); + if (lookahead == 'u') ADVANCE(363); END_STATE(); case 309: - ACCEPT_TOKEN(anon_sym_sizeof); + if (lookahead == 'l') ADVANCE(364); END_STATE(); case 310: - ACCEPT_TOKEN(anon_sym_static); - if (lookahead == '_') ADVANCE(356); + if (lookahead == 't') ADVANCE(365); END_STATE(); case 311: - ACCEPT_TOKEN(anon_sym_struct); + if (lookahead == 'v') ADVANCE(366); + if (lookahead == 'x') ADVANCE(367); END_STATE(); case 312: - ACCEPT_TOKEN(anon_sym_switch); + if (lookahead == 'n') ADVANCE(368); END_STATE(); case 313: - if (lookahead == 't') ADVANCE(357); + if (lookahead == 'u') ADVANCE(369); END_STATE(); case 314: - if (lookahead == '_') ADVANCE(358); + if (lookahead == 'p') ADVANCE(370); END_STATE(); case 315: - if (lookahead == 'f') ADVANCE(359); + if (lookahead == 't') ADVANCE(371); END_STATE(); case 316: - if (lookahead == 'm') ADVANCE(360); + if (lookahead == 'd') ADVANCE(372); END_STATE(); case 317: - if (lookahead == 'e') ADVANCE(361); + ACCEPT_TOKEN(anon_sym_delete); END_STATE(); case 318: - if (lookahead == 'l') ADVANCE(362); + if (lookahead == 'i') ADVANCE(373); END_STATE(); case 319: - if (lookahead == 'l') ADVANCE(363); + ACCEPT_TOKEN(anon_sym_extern); END_STATE(); case 320: - ACCEPT_TOKEN(anon_sym__Atomic); + ACCEPT_TOKEN(anon_sym_friend); END_STATE(); case 321: - if (lookahead == 'b') ADVANCE(364); + ACCEPT_TOKEN(anon_sym_inline); END_STATE(); case 322: - ACCEPT_TOKEN(anon_sym___based); + if (lookahead == 'e') ADVANCE(374); END_STATE(); case 323: - ACCEPT_TOKEN(anon_sym___cdecl); + if (lookahead == 'a') ADVANCE(375); END_STATE(); case 324: - if (lookahead == 'l') ADVANCE(365); + if (lookahead == 'p') ADVANCE(376); END_STATE(); case 325: - if (lookahead == 'p') ADVANCE(366); + ACCEPT_TOKEN(anon_sym_not_eq); END_STATE(); case 326: - if (lookahead == 'a') ADVANCE(367); + if (lookahead == 'r') ADVANCE(377); END_STATE(); case 327: - if (lookahead == 'i') ADVANCE(368); + if (lookahead == 'o') ADVANCE(378); END_STATE(); case 328: - if (lookahead == 'l') ADVANCE(369); + if (lookahead == 'd') ADVANCE(379); END_STATE(); case 329: - if (lookahead == 'a') ADVANCE(370); + if (lookahead == 'e') ADVANCE(380); END_STATE(); case 330: - if (lookahead == 'g') ADVANCE(371); + if (lookahead == 't') ADVANCE(381); END_STATE(); case 331: - if (lookahead == 'r') ADVANCE(372); + ACCEPT_TOKEN(anon_sym_public); END_STATE(); case 332: - if (lookahead == 'n') ADVANCE(373); + if (lookahead == 'e') ADVANCE(382); END_STATE(); case 333: - if (lookahead == 't') ADVANCE(374); + if (lookahead == 'e') ADVANCE(383); END_STATE(); case 334: - if (lookahead == 'r') ADVANCE(375); + if (lookahead == 'c') ADVANCE(384); END_STATE(); case 335: - if (lookahead == 'd') ADVANCE(376); + ACCEPT_TOKEN(anon_sym_return); END_STATE(); case 336: - ACCEPT_TOKEN(anon_sym_concept); + ACCEPT_TOKEN(anon_sym_signed); END_STATE(); case 337: - if (lookahead == 'a') ADVANCE(377); + ACCEPT_TOKEN(anon_sym_sizeof); END_STATE(); case 338: - if (lookahead == 'p') ADVANCE(378); + ACCEPT_TOKEN(anon_sym_static); + if (lookahead == '_') ADVANCE(385); END_STATE(); case 339: - if (lookahead == 'i') ADVANCE(379); + ACCEPT_TOKEN(anon_sym_struct); END_STATE(); case 340: - if (lookahead == 'e') ADVANCE(380); + ACCEPT_TOKEN(anon_sym_switch); END_STATE(); case 341: - if (lookahead == 'e') ADVANCE(381); + if (lookahead == 't') ADVANCE(386); END_STATE(); case 342: - ACCEPT_TOKEN(anon_sym_default); + if (lookahead == '_') ADVANCE(387); END_STATE(); case 343: - ACCEPT_TOKEN(anon_sym_defined); + if (lookahead == 'f') ADVANCE(388); END_STATE(); case 344: - if (lookahead == 't') ADVANCE(382); + if (lookahead == 'm') ADVANCE(389); END_STATE(); case 345: - ACCEPT_TOKEN(anon_sym_mutable); + if (lookahead == 'e') ADVANCE(390); END_STATE(); case 346: - if (lookahead == 'c') ADVANCE(383); + if (lookahead == 'l') ADVANCE(391); END_STATE(); case 347: - if (lookahead == 't') ADVANCE(384); + if (lookahead == 'l') ADVANCE(392); END_STATE(); case 348: - ACCEPT_TOKEN(sym_nullptr); + ACCEPT_TOKEN(anon_sym_xor_eq); END_STATE(); case 349: - if (lookahead == 'r') ADVANCE(385); + ACCEPT_TOKEN(anon_sym__Atomic); END_STATE(); case 350: - if (lookahead == 'e') ADVANCE(386); + if (lookahead == 'b') ADVANCE(393); END_STATE(); case 351: - ACCEPT_TOKEN(anon_sym_private); + ACCEPT_TOKEN(anon_sym___based); END_STATE(); case 352: - if (lookahead == 'e') ADVANCE(387); + ACCEPT_TOKEN(anon_sym___cdecl); END_STATE(); case 353: - if (lookahead == 'r') ADVANCE(388); + if (lookahead == 'l') ADVANCE(394); END_STATE(); case 354: - if (lookahead == 's') ADVANCE(389); + if (lookahead == 'p') ADVANCE(395); END_STATE(); case 355: - if (lookahead == 't') ADVANCE(390); + if (lookahead == 'a') ADVANCE(396); END_STATE(); case 356: - if (lookahead == 'a') ADVANCE(391); + if (lookahead == 'i') ADVANCE(397); END_STATE(); case 357: - if (lookahead == 'e') ADVANCE(392); + if (lookahead == 'l') ADVANCE(398); END_STATE(); case 358: - if (lookahead == 'l') ADVANCE(393); + if (lookahead == 'a') ADVANCE(399); END_STATE(); case 359: - ACCEPT_TOKEN(anon_sym_typedef); + if (lookahead == 'g') ADVANCE(400); END_STATE(); case 360: - if (lookahead == 'e') ADVANCE(394); + if (lookahead == 'r') ADVANCE(401); END_STATE(); case 361: - if (lookahead == 'd') ADVANCE(395); + if (lookahead == 'n') ADVANCE(402); END_STATE(); case 362: - ACCEPT_TOKEN(anon_sym_virtual); + if (lookahead == 't') ADVANCE(403); END_STATE(); case 363: - if (lookahead == 'e') ADVANCE(396); + if (lookahead == 'r') ADVANCE(404); END_STATE(); case 364: - if (lookahead == 'u') ADVANCE(397); + if (lookahead == 'd') ADVANCE(405); END_STATE(); case 365: - if (lookahead == 'l') ADVANCE(398); + ACCEPT_TOKEN(anon_sym_concept); END_STATE(); case 366: - if (lookahead == 'e') ADVANCE(399); + if (lookahead == 'a') ADVANCE(406); END_STATE(); case 367: - if (lookahead == 'l') ADVANCE(400); + if (lookahead == 'p') ADVANCE(407); END_STATE(); case 368: - if (lookahead == 'c') ADVANCE(401); + if (lookahead == 'i') ADVANCE(408); END_STATE(); case 369: - if (lookahead == 'l') ADVANCE(402); + if (lookahead == 'e') ADVANCE(409); END_STATE(); case 370: - if (lookahead == 'l') ADVANCE(403); + if (lookahead == 'e') ADVANCE(410); END_STATE(); case 371: - if (lookahead == 'n') ADVANCE(404); + ACCEPT_TOKEN(anon_sym_default); END_STATE(); case 372: - if (lookahead == 'c') ADVANCE(405); + ACCEPT_TOKEN(anon_sym_defined); END_STATE(); case 373: - if (lookahead == 'e') ADVANCE(406); + if (lookahead == 't') ADVANCE(411); END_STATE(); case 374: - ACCEPT_TOKEN(anon_sym_co_await); + ACCEPT_TOKEN(anon_sym_mutable); END_STATE(); case 375: - if (lookahead == 'n') ADVANCE(407); + if (lookahead == 'c') ADVANCE(412); END_STATE(); case 376: - ACCEPT_TOKEN(anon_sym_co_yield); + if (lookahead == 't') ADVANCE(413); END_STATE(); case 377: - if (lookahead == 'l') ADVANCE(408); + ACCEPT_TOKEN(sym_nullptr); END_STATE(); case 378: - if (lookahead == 'r') ADVANCE(409); + if (lookahead == 'r') ADVANCE(414); END_STATE(); case 379: - if (lookahead == 't') ADVANCE(410); + if (lookahead == 'e') ADVANCE(415); END_STATE(); case 380: - ACCEPT_TOKEN(anon_sym_continue); + ACCEPT_TOKEN(anon_sym_private); END_STATE(); case 381: - ACCEPT_TOKEN(anon_sym_decltype); + if (lookahead == 'e') ADVANCE(416); END_STATE(); case 382: - ACCEPT_TOKEN(anon_sym_explicit); + if (lookahead == 'r') ADVANCE(417); END_STATE(); case 383: - if (lookahead == 'e') ADVANCE(411); + if (lookahead == 's') ADVANCE(418); END_STATE(); case 384: - ACCEPT_TOKEN(anon_sym_noexcept); + if (lookahead == 't') ADVANCE(419); END_STATE(); case 385: - ACCEPT_TOKEN(anon_sym_operator); + if (lookahead == 'a') ADVANCE(420); END_STATE(); case 386: - ACCEPT_TOKEN(anon_sym_override); + if (lookahead == 'e') ADVANCE(421); END_STATE(); case 387: - if (lookahead == 'd') ADVANCE(412); + if (lookahead == 'l') ADVANCE(422); END_STATE(); case 388: - ACCEPT_TOKEN(anon_sym_register); + ACCEPT_TOKEN(anon_sym_typedef); END_STATE(); case 389: - ACCEPT_TOKEN(anon_sym_requires); + if (lookahead == 'e') ADVANCE(423); END_STATE(); case 390: - ACCEPT_TOKEN(anon_sym_restrict); + if (lookahead == 'd') ADVANCE(424); END_STATE(); case 391: - if (lookahead == 's') ADVANCE(413); + ACCEPT_TOKEN(anon_sym_virtual); END_STATE(); case 392: - ACCEPT_TOKEN(anon_sym_template); + if (lookahead == 'e') ADVANCE(425); END_STATE(); case 393: - if (lookahead == 'o') ADVANCE(414); + if (lookahead == 'u') ADVANCE(426); END_STATE(); case 394: - ACCEPT_TOKEN(anon_sym_typename); + if (lookahead == 'l') ADVANCE(427); END_STATE(); case 395: - ACCEPT_TOKEN(anon_sym_unsigned); + if (lookahead == 'e') ADVANCE(428); END_STATE(); case 396: - ACCEPT_TOKEN(anon_sym_volatile); + if (lookahead == 'l') ADVANCE(429); END_STATE(); case 397: - if (lookahead == 't') ADVANCE(415); + if (lookahead == 'c') ADVANCE(430); END_STATE(); case 398: - ACCEPT_TOKEN(anon_sym___clrcall); + if (lookahead == 'l') ADVANCE(431); END_STATE(); case 399: - if (lookahead == 'c') ADVANCE(416); + if (lookahead == 'l') ADVANCE(432); END_STATE(); case 400: - if (lookahead == 'l') ADVANCE(417); + if (lookahead == 'n') ADVANCE(433); END_STATE(); case 401: - if (lookahead == 't') ADVANCE(418); + if (lookahead == 'c') ADVANCE(434); END_STATE(); case 402: - ACCEPT_TOKEN(anon_sym___stdcall); + if (lookahead == 'e') ADVANCE(435); END_STATE(); case 403: - if (lookahead == 'l') ADVANCE(419); + ACCEPT_TOKEN(anon_sym_co_await); END_STATE(); case 404: - if (lookahead == 'e') ADVANCE(420); + if (lookahead == 'n') ADVANCE(436); END_STATE(); case 405: - if (lookahead == 'a') ADVANCE(421); + ACCEPT_TOKEN(anon_sym_co_yield); END_STATE(); case 406: - if (lookahead == 'd') ADVANCE(422); + if (lookahead == 'l') ADVANCE(437); END_STATE(); case 407: - ACCEPT_TOKEN(anon_sym_co_return); + if (lookahead == 'r') ADVANCE(438); END_STATE(); case 408: - ACCEPT_TOKEN(anon_sym_consteval); + if (lookahead == 't') ADVANCE(439); END_STATE(); case 409: - ACCEPT_TOKEN(anon_sym_constexpr); + ACCEPT_TOKEN(anon_sym_continue); END_STATE(); case 410: - ACCEPT_TOKEN(anon_sym_constinit); + ACCEPT_TOKEN(anon_sym_decltype); END_STATE(); case 411: - ACCEPT_TOKEN(anon_sym_namespace); + ACCEPT_TOKEN(anon_sym_explicit); END_STATE(); case 412: - ACCEPT_TOKEN(anon_sym_protected); + if (lookahead == 'e') ADVANCE(440); END_STATE(); case 413: - if (lookahead == 's') ADVANCE(423); + ACCEPT_TOKEN(anon_sym_noexcept); END_STATE(); case 414: - if (lookahead == 'c') ADVANCE(424); + ACCEPT_TOKEN(anon_sym_operator); END_STATE(); case 415: - if (lookahead == 'e') ADVANCE(425); + ACCEPT_TOKEN(anon_sym_override); END_STATE(); case 416: - ACCEPT_TOKEN(anon_sym___declspec); + if (lookahead == 'd') ADVANCE(441); END_STATE(); case 417: - ACCEPT_TOKEN(anon_sym___fastcall); + ACCEPT_TOKEN(anon_sym_register); END_STATE(); case 418: - ACCEPT_TOKEN(sym_ms_restrict_modifier); + ACCEPT_TOKEN(anon_sym_requires); END_STATE(); case 419: - ACCEPT_TOKEN(anon_sym___thiscall); + ACCEPT_TOKEN(anon_sym_restrict); END_STATE(); case 420: - if (lookahead == 'd') ADVANCE(426); + if (lookahead == 's') ADVANCE(442); END_STATE(); case 421: - if (lookahead == 'l') ADVANCE(427); + ACCEPT_TOKEN(anon_sym_template); END_STATE(); case 422: - ACCEPT_TOKEN(anon_sym__unaligned); + if (lookahead == 'o') ADVANCE(443); END_STATE(); case 423: - if (lookahead == 'e') ADVANCE(428); + ACCEPT_TOKEN(anon_sym_typename); END_STATE(); case 424: - if (lookahead == 'a') ADVANCE(429); + ACCEPT_TOKEN(anon_sym_unsigned); END_STATE(); case 425: - if (lookahead == '_') ADVANCE(430); + ACCEPT_TOKEN(anon_sym_volatile); END_STATE(); case 426: - ACCEPT_TOKEN(anon_sym___unaligned); + if (lookahead == 't') ADVANCE(444); END_STATE(); case 427: - if (lookahead == 'l') ADVANCE(431); + ACCEPT_TOKEN(anon_sym___clrcall); END_STATE(); case 428: - if (lookahead == 'r') ADVANCE(432); + if (lookahead == 'c') ADVANCE(445); END_STATE(); case 429: - if (lookahead == 'l') ADVANCE(433); + if (lookahead == 'l') ADVANCE(446); END_STATE(); case 430: - if (lookahead == '_') ADVANCE(434); + if (lookahead == 't') ADVANCE(447); END_STATE(); case 431: - ACCEPT_TOKEN(anon_sym___vectorcall); + ACCEPT_TOKEN(anon_sym___stdcall); END_STATE(); case 432: - if (lookahead == 't') ADVANCE(435); + if (lookahead == 'l') ADVANCE(448); END_STATE(); case 433: - ACCEPT_TOKEN(anon_sym_thread_local); + if (lookahead == 'e') ADVANCE(449); END_STATE(); case 434: - ACCEPT_TOKEN(anon_sym___attribute__); + if (lookahead == 'a') ADVANCE(450); END_STATE(); case 435: + if (lookahead == 'd') ADVANCE(451); + END_STATE(); + case 436: + ACCEPT_TOKEN(anon_sym_co_return); + END_STATE(); + case 437: + ACCEPT_TOKEN(anon_sym_consteval); + END_STATE(); + case 438: + ACCEPT_TOKEN(anon_sym_constexpr); + END_STATE(); + case 439: + ACCEPT_TOKEN(anon_sym_constinit); + END_STATE(); + case 440: + ACCEPT_TOKEN(anon_sym_namespace); + END_STATE(); + case 441: + ACCEPT_TOKEN(anon_sym_protected); + END_STATE(); + case 442: + if (lookahead == 's') ADVANCE(452); + END_STATE(); + case 443: + if (lookahead == 'c') ADVANCE(453); + END_STATE(); + case 444: + if (lookahead == 'e') ADVANCE(454); + END_STATE(); + case 445: + ACCEPT_TOKEN(anon_sym___declspec); + END_STATE(); + case 446: + ACCEPT_TOKEN(anon_sym___fastcall); + END_STATE(); + case 447: + ACCEPT_TOKEN(sym_ms_restrict_modifier); + END_STATE(); + case 448: + ACCEPT_TOKEN(anon_sym___thiscall); + END_STATE(); + case 449: + if (lookahead == 'd') ADVANCE(455); + END_STATE(); + case 450: + if (lookahead == 'l') ADVANCE(456); + END_STATE(); + case 451: + ACCEPT_TOKEN(anon_sym__unaligned); + END_STATE(); + case 452: + if (lookahead == 'e') ADVANCE(457); + END_STATE(); + case 453: + if (lookahead == 'a') ADVANCE(458); + END_STATE(); + case 454: + if (lookahead == '_') ADVANCE(459); + END_STATE(); + case 455: + ACCEPT_TOKEN(anon_sym___unaligned); + END_STATE(); + case 456: + if (lookahead == 'l') ADVANCE(460); + END_STATE(); + case 457: + if (lookahead == 'r') ADVANCE(461); + END_STATE(); + case 458: + if (lookahead == 'l') ADVANCE(462); + END_STATE(); + case 459: + if (lookahead == '_') ADVANCE(463); + END_STATE(); + case 460: + ACCEPT_TOKEN(anon_sym___vectorcall); + END_STATE(); + case 461: + if (lookahead == 't') ADVANCE(464); + END_STATE(); + case 462: + ACCEPT_TOKEN(anon_sym_thread_local); + END_STATE(); + case 463: + ACCEPT_TOKEN(anon_sym___attribute__); + END_STATE(); + case 464: ACCEPT_TOKEN(anon_sym_static_assert); END_STATE(); default: @@ -16876,3151 +17744,3151 @@ 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 = 245, .external_lex_state = 1}, - [2] = {.lex_state = 245, .external_lex_state = 1}, - [3] = {.lex_state = 245, .external_lex_state = 1}, - [4] = {.lex_state = 245, .external_lex_state = 1}, - [5] = {.lex_state = 245, .external_lex_state = 1}, - [6] = {.lex_state = 245, .external_lex_state = 1}, - [7] = {.lex_state = 245, .external_lex_state = 1}, - [8] = {.lex_state = 245, .external_lex_state = 1}, - [9] = {.lex_state = 245, .external_lex_state = 1}, - [10] = {.lex_state = 128, .external_lex_state = 1}, - [11] = {.lex_state = 128, .external_lex_state = 1}, - [12] = {.lex_state = 128, .external_lex_state = 1}, - [13] = {.lex_state = 128, .external_lex_state = 1}, - [14] = {.lex_state = 128, .external_lex_state = 1}, - [15] = {.lex_state = 128, .external_lex_state = 1}, - [16] = {.lex_state = 128, .external_lex_state = 1}, - [17] = {.lex_state = 128, .external_lex_state = 1}, - [18] = {.lex_state = 128, .external_lex_state = 1}, - [19] = {.lex_state = 128, .external_lex_state = 1}, - [20] = {.lex_state = 128, .external_lex_state = 1}, - [21] = {.lex_state = 128, .external_lex_state = 1}, - [22] = {.lex_state = 128, .external_lex_state = 1}, - [23] = {.lex_state = 128, .external_lex_state = 1}, - [24] = {.lex_state = 128, .external_lex_state = 1}, - [25] = {.lex_state = 128, .external_lex_state = 1}, - [26] = {.lex_state = 128, .external_lex_state = 1}, - [27] = {.lex_state = 128, .external_lex_state = 1}, - [28] = {.lex_state = 128, .external_lex_state = 1}, - [29] = {.lex_state = 245, .external_lex_state = 1}, - [30] = {.lex_state = 245, .external_lex_state = 1}, - [31] = {.lex_state = 245, .external_lex_state = 1}, - [32] = {.lex_state = 245, .external_lex_state = 1}, - [33] = {.lex_state = 245, .external_lex_state = 1}, - [34] = {.lex_state = 245, .external_lex_state = 1}, - [35] = {.lex_state = 245, .external_lex_state = 1}, - [36] = {.lex_state = 245, .external_lex_state = 1}, - [37] = {.lex_state = 245, .external_lex_state = 1}, - [38] = {.lex_state = 245, .external_lex_state = 1}, - [39] = {.lex_state = 245, .external_lex_state = 1}, - [40] = {.lex_state = 245, .external_lex_state = 1}, - [41] = {.lex_state = 245, .external_lex_state = 1}, - [42] = {.lex_state = 245, .external_lex_state = 1}, - [43] = {.lex_state = 245, .external_lex_state = 1}, - [44] = {.lex_state = 245, .external_lex_state = 1}, - [45] = {.lex_state = 245, .external_lex_state = 1}, - [46] = {.lex_state = 245, .external_lex_state = 1}, - [47] = {.lex_state = 245, .external_lex_state = 1}, - [48] = {.lex_state = 245, .external_lex_state = 1}, - [49] = {.lex_state = 245, .external_lex_state = 1}, - [50] = {.lex_state = 130, .external_lex_state = 1}, - [51] = {.lex_state = 130, .external_lex_state = 1}, - [52] = {.lex_state = 245, .external_lex_state = 1}, - [53] = {.lex_state = 245, .external_lex_state = 1}, - [54] = {.lex_state = 245, .external_lex_state = 1}, - [55] = {.lex_state = 245, .external_lex_state = 1}, - [56] = {.lex_state = 245, .external_lex_state = 1}, - [57] = {.lex_state = 245, .external_lex_state = 1}, - [58] = {.lex_state = 245, .external_lex_state = 1}, - [59] = {.lex_state = 245, .external_lex_state = 1}, - [60] = {.lex_state = 245, .external_lex_state = 1}, - [61] = {.lex_state = 245, .external_lex_state = 1}, - [62] = {.lex_state = 130, .external_lex_state = 1}, - [63] = {.lex_state = 245, .external_lex_state = 1}, - [64] = {.lex_state = 245, .external_lex_state = 1}, - [65] = {.lex_state = 245, .external_lex_state = 1}, - [66] = {.lex_state = 245, .external_lex_state = 1}, - [67] = {.lex_state = 245, .external_lex_state = 1}, - [68] = {.lex_state = 245, .external_lex_state = 1}, - [69] = {.lex_state = 245, .external_lex_state = 1}, - [70] = {.lex_state = 245, .external_lex_state = 1}, - [71] = {.lex_state = 245, .external_lex_state = 1}, - [72] = {.lex_state = 245, .external_lex_state = 1}, - [73] = {.lex_state = 245, .external_lex_state = 1}, - [74] = {.lex_state = 245, .external_lex_state = 1}, - [75] = {.lex_state = 128, .external_lex_state = 1}, - [76] = {.lex_state = 128, .external_lex_state = 1}, - [77] = {.lex_state = 128, .external_lex_state = 1}, - [78] = {.lex_state = 128, .external_lex_state = 1}, - [79] = {.lex_state = 128, .external_lex_state = 1}, - [80] = {.lex_state = 245, .external_lex_state = 1}, - [81] = {.lex_state = 130, .external_lex_state = 1}, - [82] = {.lex_state = 245, .external_lex_state = 1}, - [83] = {.lex_state = 245, .external_lex_state = 1}, - [84] = {.lex_state = 245, .external_lex_state = 1}, - [85] = {.lex_state = 245, .external_lex_state = 1}, - [86] = {.lex_state = 245, .external_lex_state = 1}, - [87] = {.lex_state = 130, .external_lex_state = 1}, - [88] = {.lex_state = 245, .external_lex_state = 1}, - [89] = {.lex_state = 245, .external_lex_state = 1}, - [90] = {.lex_state = 130, .external_lex_state = 1}, - [91] = {.lex_state = 245, .external_lex_state = 1}, - [92] = {.lex_state = 130, .external_lex_state = 1}, - [93] = {.lex_state = 245, .external_lex_state = 1}, - [94] = {.lex_state = 130, .external_lex_state = 1}, - [95] = {.lex_state = 129, .external_lex_state = 1}, - [96] = {.lex_state = 129, .external_lex_state = 1}, - [97] = {.lex_state = 129, .external_lex_state = 1}, - [98] = {.lex_state = 129, .external_lex_state = 1}, - [99] = {.lex_state = 129, .external_lex_state = 1}, - [100] = {.lex_state = 129, .external_lex_state = 1}, - [101] = {.lex_state = 129, .external_lex_state = 1}, - [102] = {.lex_state = 129, .external_lex_state = 1}, - [103] = {.lex_state = 129, .external_lex_state = 1}, - [104] = {.lex_state = 129, .external_lex_state = 1}, - [105] = {.lex_state = 129, .external_lex_state = 1}, - [106] = {.lex_state = 129, .external_lex_state = 1}, - [107] = {.lex_state = 129, .external_lex_state = 1}, - [108] = {.lex_state = 129, .external_lex_state = 1}, - [109] = {.lex_state = 129, .external_lex_state = 1}, - [110] = {.lex_state = 129, .external_lex_state = 1}, - [111] = {.lex_state = 129, .external_lex_state = 1}, - [112] = {.lex_state = 129, .external_lex_state = 1}, - [113] = {.lex_state = 129, .external_lex_state = 1}, - [114] = {.lex_state = 131, .external_lex_state = 1}, - [115] = {.lex_state = 131, .external_lex_state = 1}, - [116] = {.lex_state = 131, .external_lex_state = 1}, - [117] = {.lex_state = 180}, - [118] = {.lex_state = 180}, - [119] = {.lex_state = 180}, - [120] = {.lex_state = 180}, - [121] = {.lex_state = 180}, - [122] = {.lex_state = 129, .external_lex_state = 1}, - [123] = {.lex_state = 180}, - [124] = {.lex_state = 180}, - [125] = {.lex_state = 180}, - [126] = {.lex_state = 129, .external_lex_state = 1}, - [127] = {.lex_state = 180}, - [128] = {.lex_state = 180}, - [129] = {.lex_state = 180}, - [130] = {.lex_state = 180}, - [131] = {.lex_state = 180}, - [132] = {.lex_state = 180}, - [133] = {.lex_state = 180}, - [134] = {.lex_state = 179}, - [135] = {.lex_state = 179}, - [136] = {.lex_state = 179}, - [137] = {.lex_state = 179}, - [138] = {.lex_state = 179}, - [139] = {.lex_state = 179}, - [140] = {.lex_state = 179}, - [141] = {.lex_state = 179}, - [142] = {.lex_state = 179}, - [143] = {.lex_state = 179}, - [144] = {.lex_state = 179}, - [145] = {.lex_state = 179}, - [146] = {.lex_state = 145}, - [147] = {.lex_state = 179}, - [148] = {.lex_state = 179}, - [149] = {.lex_state = 179}, - [150] = {.lex_state = 145}, - [151] = {.lex_state = 179}, - [152] = {.lex_state = 179}, - [153] = {.lex_state = 145}, - [154] = {.lex_state = 129, .external_lex_state = 1}, - [155] = {.lex_state = 129, .external_lex_state = 1}, - [156] = {.lex_state = 129, .external_lex_state = 1}, - [157] = {.lex_state = 129, .external_lex_state = 1}, - [158] = {.lex_state = 129, .external_lex_state = 1}, - [159] = {.lex_state = 129, .external_lex_state = 1}, - [160] = {.lex_state = 129, .external_lex_state = 1}, - [161] = {.lex_state = 129, .external_lex_state = 1}, - [162] = {.lex_state = 129, .external_lex_state = 1}, - [163] = {.lex_state = 129, .external_lex_state = 1}, - [164] = {.lex_state = 129, .external_lex_state = 1}, - [165] = {.lex_state = 129, .external_lex_state = 1}, - [166] = {.lex_state = 129, .external_lex_state = 1}, - [167] = {.lex_state = 129, .external_lex_state = 1}, - [168] = {.lex_state = 129, .external_lex_state = 1}, - [169] = {.lex_state = 129, .external_lex_state = 1}, - [170] = {.lex_state = 129, .external_lex_state = 1}, - [171] = {.lex_state = 129, .external_lex_state = 1}, - [172] = {.lex_state = 129, .external_lex_state = 1}, - [173] = {.lex_state = 129, .external_lex_state = 1}, - [174] = {.lex_state = 129, .external_lex_state = 1}, - [175] = {.lex_state = 129, .external_lex_state = 1}, - [176] = {.lex_state = 129, .external_lex_state = 1}, - [177] = {.lex_state = 129, .external_lex_state = 1}, - [178] = {.lex_state = 129, .external_lex_state = 1}, - [179] = {.lex_state = 129, .external_lex_state = 1}, - [180] = {.lex_state = 129, .external_lex_state = 1}, - [181] = {.lex_state = 129, .external_lex_state = 1}, - [182] = {.lex_state = 129, .external_lex_state = 1}, - [183] = {.lex_state = 129, .external_lex_state = 1}, - [184] = {.lex_state = 129, .external_lex_state = 1}, - [185] = {.lex_state = 129, .external_lex_state = 1}, - [186] = {.lex_state = 129, .external_lex_state = 1}, - [187] = {.lex_state = 129, .external_lex_state = 1}, - [188] = {.lex_state = 129, .external_lex_state = 1}, - [189] = {.lex_state = 129, .external_lex_state = 1}, - [190] = {.lex_state = 129, .external_lex_state = 1}, - [191] = {.lex_state = 129, .external_lex_state = 1}, - [192] = {.lex_state = 129, .external_lex_state = 1}, - [193] = {.lex_state = 129, .external_lex_state = 1}, - [194] = {.lex_state = 129, .external_lex_state = 1}, - [195] = {.lex_state = 129, .external_lex_state = 1}, - [196] = {.lex_state = 129, .external_lex_state = 1}, - [197] = {.lex_state = 129, .external_lex_state = 1}, - [198] = {.lex_state = 129, .external_lex_state = 1}, - [199] = {.lex_state = 129, .external_lex_state = 1}, - [200] = {.lex_state = 129, .external_lex_state = 1}, - [201] = {.lex_state = 129, .external_lex_state = 1}, - [202] = {.lex_state = 129, .external_lex_state = 1}, - [203] = {.lex_state = 129, .external_lex_state = 1}, - [204] = {.lex_state = 129, .external_lex_state = 1}, - [205] = {.lex_state = 129, .external_lex_state = 1}, - [206] = {.lex_state = 129, .external_lex_state = 1}, - [207] = {.lex_state = 129, .external_lex_state = 1}, - [208] = {.lex_state = 129, .external_lex_state = 1}, - [209] = {.lex_state = 129, .external_lex_state = 1}, - [210] = {.lex_state = 129, .external_lex_state = 1}, - [211] = {.lex_state = 129, .external_lex_state = 1}, - [212] = {.lex_state = 129, .external_lex_state = 1}, - [213] = {.lex_state = 129, .external_lex_state = 1}, - [214] = {.lex_state = 129, .external_lex_state = 1}, - [215] = {.lex_state = 129, .external_lex_state = 1}, - [216] = {.lex_state = 129, .external_lex_state = 1}, - [217] = {.lex_state = 129, .external_lex_state = 1}, - [218] = {.lex_state = 129, .external_lex_state = 1}, - [219] = {.lex_state = 129, .external_lex_state = 1}, - [220] = {.lex_state = 129, .external_lex_state = 1}, - [221] = {.lex_state = 129, .external_lex_state = 1}, - [222] = {.lex_state = 129, .external_lex_state = 1}, - [223] = {.lex_state = 129, .external_lex_state = 1}, - [224] = {.lex_state = 129, .external_lex_state = 1}, - [225] = {.lex_state = 129, .external_lex_state = 1}, - [226] = {.lex_state = 129, .external_lex_state = 1}, - [227] = {.lex_state = 129, .external_lex_state = 1}, - [228] = {.lex_state = 129, .external_lex_state = 1}, - [229] = {.lex_state = 129, .external_lex_state = 1}, - [230] = {.lex_state = 129, .external_lex_state = 1}, - [231] = {.lex_state = 129, .external_lex_state = 1}, - [232] = {.lex_state = 129, .external_lex_state = 1}, - [233] = {.lex_state = 129, .external_lex_state = 1}, - [234] = {.lex_state = 129, .external_lex_state = 1}, - [235] = {.lex_state = 129, .external_lex_state = 1}, - [236] = {.lex_state = 129, .external_lex_state = 1}, - [237] = {.lex_state = 129, .external_lex_state = 1}, - [238] = {.lex_state = 129, .external_lex_state = 1}, - [239] = {.lex_state = 129, .external_lex_state = 1}, - [240] = {.lex_state = 129, .external_lex_state = 1}, - [241] = {.lex_state = 129, .external_lex_state = 1}, - [242] = {.lex_state = 129, .external_lex_state = 1}, - [243] = {.lex_state = 129, .external_lex_state = 1}, - [244] = {.lex_state = 129, .external_lex_state = 1}, - [245] = {.lex_state = 129, .external_lex_state = 1}, - [246] = {.lex_state = 129, .external_lex_state = 1}, - [247] = {.lex_state = 129, .external_lex_state = 1}, - [248] = {.lex_state = 129, .external_lex_state = 1}, - [249] = {.lex_state = 129, .external_lex_state = 1}, - [250] = {.lex_state = 129, .external_lex_state = 1}, - [251] = {.lex_state = 129, .external_lex_state = 1}, - [252] = {.lex_state = 129, .external_lex_state = 1}, - [253] = {.lex_state = 129, .external_lex_state = 1}, - [254] = {.lex_state = 129, .external_lex_state = 1}, - [255] = {.lex_state = 129, .external_lex_state = 1}, - [256] = {.lex_state = 129, .external_lex_state = 1}, - [257] = {.lex_state = 129, .external_lex_state = 1}, - [258] = {.lex_state = 129, .external_lex_state = 1}, - [259] = {.lex_state = 129, .external_lex_state = 1}, - [260] = {.lex_state = 129, .external_lex_state = 1}, - [261] = {.lex_state = 129, .external_lex_state = 1}, - [262] = {.lex_state = 129, .external_lex_state = 1}, - [263] = {.lex_state = 129, .external_lex_state = 1}, - [264] = {.lex_state = 129, .external_lex_state = 1}, - [265] = {.lex_state = 129, .external_lex_state = 1}, - [266] = {.lex_state = 129, .external_lex_state = 1}, - [267] = {.lex_state = 129, .external_lex_state = 1}, - [268] = {.lex_state = 129, .external_lex_state = 1}, - [269] = {.lex_state = 129, .external_lex_state = 1}, - [270] = {.lex_state = 129, .external_lex_state = 1}, - [271] = {.lex_state = 129, .external_lex_state = 1}, - [272] = {.lex_state = 129, .external_lex_state = 1}, - [273] = {.lex_state = 129, .external_lex_state = 1}, - [274] = {.lex_state = 129, .external_lex_state = 1}, - [275] = {.lex_state = 129, .external_lex_state = 1}, - [276] = {.lex_state = 129, .external_lex_state = 1}, - [277] = {.lex_state = 129, .external_lex_state = 1}, - [278] = {.lex_state = 129, .external_lex_state = 1}, - [279] = {.lex_state = 129, .external_lex_state = 1}, - [280] = {.lex_state = 129, .external_lex_state = 1}, - [281] = {.lex_state = 129, .external_lex_state = 1}, - [282] = {.lex_state = 129, .external_lex_state = 1}, - [283] = {.lex_state = 129, .external_lex_state = 1}, - [284] = {.lex_state = 129, .external_lex_state = 1}, - [285] = {.lex_state = 129, .external_lex_state = 1}, - [286] = {.lex_state = 129, .external_lex_state = 1}, - [287] = {.lex_state = 129, .external_lex_state = 1}, - [288] = {.lex_state = 129, .external_lex_state = 1}, - [289] = {.lex_state = 129, .external_lex_state = 1}, - [290] = {.lex_state = 129, .external_lex_state = 1}, - [291] = {.lex_state = 129, .external_lex_state = 1}, - [292] = {.lex_state = 129, .external_lex_state = 1}, - [293] = {.lex_state = 129, .external_lex_state = 1}, - [294] = {.lex_state = 129, .external_lex_state = 1}, - [295] = {.lex_state = 129, .external_lex_state = 1}, - [296] = {.lex_state = 129, .external_lex_state = 1}, - [297] = {.lex_state = 129, .external_lex_state = 1}, - [298] = {.lex_state = 129, .external_lex_state = 1}, - [299] = {.lex_state = 129, .external_lex_state = 1}, - [300] = {.lex_state = 129, .external_lex_state = 1}, - [301] = {.lex_state = 129, .external_lex_state = 1}, - [302] = {.lex_state = 129, .external_lex_state = 1}, - [303] = {.lex_state = 129, .external_lex_state = 1}, - [304] = {.lex_state = 128, .external_lex_state = 1}, - [305] = {.lex_state = 128, .external_lex_state = 1}, - [306] = {.lex_state = 132, .external_lex_state = 1}, - [307] = {.lex_state = 132, .external_lex_state = 1}, - [308] = {.lex_state = 132, .external_lex_state = 1}, - [309] = {.lex_state = 132, .external_lex_state = 1}, - [310] = {.lex_state = 128, .external_lex_state = 1}, - [311] = {.lex_state = 132, .external_lex_state = 1}, - [312] = {.lex_state = 132, .external_lex_state = 1}, - [313] = {.lex_state = 128, .external_lex_state = 1}, - [314] = {.lex_state = 132, .external_lex_state = 1}, - [315] = {.lex_state = 132, .external_lex_state = 1}, - [316] = {.lex_state = 132, .external_lex_state = 1}, - [317] = {.lex_state = 132, .external_lex_state = 1}, - [318] = {.lex_state = 132, .external_lex_state = 1}, - [319] = {.lex_state = 132, .external_lex_state = 1}, - [320] = {.lex_state = 132, .external_lex_state = 1}, - [321] = {.lex_state = 132, .external_lex_state = 1}, - [322] = {.lex_state = 132, .external_lex_state = 1}, - [323] = {.lex_state = 132, .external_lex_state = 1}, - [324] = {.lex_state = 245, .external_lex_state = 1}, - [325] = {.lex_state = 130, .external_lex_state = 1}, - [326] = {.lex_state = 128, .external_lex_state = 1}, - [327] = {.lex_state = 128, .external_lex_state = 1}, - [328] = {.lex_state = 130, .external_lex_state = 1}, - [329] = {.lex_state = 245, .external_lex_state = 1}, - [330] = {.lex_state = 245, .external_lex_state = 1}, - [331] = {.lex_state = 128, .external_lex_state = 1}, - [332] = {.lex_state = 122, .external_lex_state = 1}, - [333] = {.lex_state = 245, .external_lex_state = 1}, - [334] = {.lex_state = 128, .external_lex_state = 1}, - [335] = {.lex_state = 128, .external_lex_state = 1}, - [336] = {.lex_state = 128, .external_lex_state = 1}, - [337] = {.lex_state = 128, .external_lex_state = 1}, - [338] = {.lex_state = 128, .external_lex_state = 1}, - [339] = {.lex_state = 121, .external_lex_state = 1}, - [340] = {.lex_state = 128, .external_lex_state = 1}, - [341] = {.lex_state = 128, .external_lex_state = 1}, - [342] = {.lex_state = 128, .external_lex_state = 1}, - [343] = {.lex_state = 128, .external_lex_state = 1}, - [344] = {.lex_state = 130, .external_lex_state = 1}, - [345] = {.lex_state = 128, .external_lex_state = 1}, - [346] = {.lex_state = 128, .external_lex_state = 1}, - [347] = {.lex_state = 128, .external_lex_state = 1}, - [348] = {.lex_state = 128, .external_lex_state = 1}, - [349] = {.lex_state = 128, .external_lex_state = 1}, - [350] = {.lex_state = 128, .external_lex_state = 1}, - [351] = {.lex_state = 128, .external_lex_state = 1}, - [352] = {.lex_state = 128, .external_lex_state = 1}, - [353] = {.lex_state = 128, .external_lex_state = 1}, - [354] = {.lex_state = 128, .external_lex_state = 1}, - [355] = {.lex_state = 128, .external_lex_state = 1}, - [356] = {.lex_state = 128, .external_lex_state = 1}, - [357] = {.lex_state = 128, .external_lex_state = 1}, - [358] = {.lex_state = 128, .external_lex_state = 1}, - [359] = {.lex_state = 128, .external_lex_state = 1}, - [360] = {.lex_state = 128, .external_lex_state = 1}, - [361] = {.lex_state = 128, .external_lex_state = 1}, - [362] = {.lex_state = 128, .external_lex_state = 1}, - [363] = {.lex_state = 128, .external_lex_state = 1}, - [364] = {.lex_state = 128, .external_lex_state = 1}, - [365] = {.lex_state = 245, .external_lex_state = 1}, - [366] = {.lex_state = 128, .external_lex_state = 1}, - [367] = {.lex_state = 128, .external_lex_state = 1}, - [368] = {.lex_state = 128, .external_lex_state = 1}, - [369] = {.lex_state = 128, .external_lex_state = 1}, - [370] = {.lex_state = 128, .external_lex_state = 1}, - [371] = {.lex_state = 128, .external_lex_state = 1}, - [372] = {.lex_state = 128, .external_lex_state = 1}, - [373] = {.lex_state = 128, .external_lex_state = 1}, - [374] = {.lex_state = 128, .external_lex_state = 1}, - [375] = {.lex_state = 128, .external_lex_state = 1}, - [376] = {.lex_state = 128, .external_lex_state = 1}, - [377] = {.lex_state = 245, .external_lex_state = 1}, - [378] = {.lex_state = 128, .external_lex_state = 1}, - [379] = {.lex_state = 128, .external_lex_state = 1}, - [380] = {.lex_state = 128, .external_lex_state = 1}, - [381] = {.lex_state = 128, .external_lex_state = 1}, - [382] = {.lex_state = 128, .external_lex_state = 1}, - [383] = {.lex_state = 128, .external_lex_state = 1}, - [384] = {.lex_state = 128, .external_lex_state = 1}, - [385] = {.lex_state = 128, .external_lex_state = 1}, - [386] = {.lex_state = 128, .external_lex_state = 1}, - [387] = {.lex_state = 128, .external_lex_state = 1}, - [388] = {.lex_state = 128, .external_lex_state = 1}, - [389] = {.lex_state = 128, .external_lex_state = 1}, - [390] = {.lex_state = 128, .external_lex_state = 1}, - [391] = {.lex_state = 128, .external_lex_state = 1}, - [392] = {.lex_state = 128, .external_lex_state = 1}, - [393] = {.lex_state = 128, .external_lex_state = 1}, - [394] = {.lex_state = 128, .external_lex_state = 1}, - [395] = {.lex_state = 128, .external_lex_state = 1}, - [396] = {.lex_state = 128, .external_lex_state = 1}, - [397] = {.lex_state = 128, .external_lex_state = 1}, - [398] = {.lex_state = 128, .external_lex_state = 1}, - [399] = {.lex_state = 128, .external_lex_state = 1}, - [400] = {.lex_state = 128, .external_lex_state = 1}, - [401] = {.lex_state = 128, .external_lex_state = 1}, - [402] = {.lex_state = 128, .external_lex_state = 1}, - [403] = {.lex_state = 128, .external_lex_state = 1}, - [404] = {.lex_state = 128, .external_lex_state = 1}, - [405] = {.lex_state = 128, .external_lex_state = 1}, - [406] = {.lex_state = 128, .external_lex_state = 1}, - [407] = {.lex_state = 128, .external_lex_state = 1}, - [408] = {.lex_state = 128, .external_lex_state = 1}, - [409] = {.lex_state = 128, .external_lex_state = 1}, - [410] = {.lex_state = 128, .external_lex_state = 1}, - [411] = {.lex_state = 128, .external_lex_state = 1}, - [412] = {.lex_state = 128, .external_lex_state = 1}, - [413] = {.lex_state = 128, .external_lex_state = 1}, - [414] = {.lex_state = 128, .external_lex_state = 1}, - [415] = {.lex_state = 128, .external_lex_state = 1}, - [416] = {.lex_state = 128, .external_lex_state = 1}, - [417] = {.lex_state = 128, .external_lex_state = 1}, - [418] = {.lex_state = 128, .external_lex_state = 1}, - [419] = {.lex_state = 128, .external_lex_state = 1}, - [420] = {.lex_state = 128, .external_lex_state = 1}, - [421] = {.lex_state = 128, .external_lex_state = 1}, - [422] = {.lex_state = 130, .external_lex_state = 1}, - [423] = {.lex_state = 128, .external_lex_state = 1}, - [424] = {.lex_state = 128, .external_lex_state = 1}, - [425] = {.lex_state = 128, .external_lex_state = 1}, - [426] = {.lex_state = 128, .external_lex_state = 1}, - [427] = {.lex_state = 128, .external_lex_state = 1}, - [428] = {.lex_state = 128, .external_lex_state = 1}, - [429] = {.lex_state = 128, .external_lex_state = 1}, - [430] = {.lex_state = 245, .external_lex_state = 1}, - [431] = {.lex_state = 128, .external_lex_state = 1}, - [432] = {.lex_state = 128, .external_lex_state = 1}, - [433] = {.lex_state = 128, .external_lex_state = 1}, - [434] = {.lex_state = 128, .external_lex_state = 1}, - [435] = {.lex_state = 128, .external_lex_state = 1}, - [436] = {.lex_state = 128, .external_lex_state = 1}, - [437] = {.lex_state = 128, .external_lex_state = 1}, - [438] = {.lex_state = 128, .external_lex_state = 1}, - [439] = {.lex_state = 128, .external_lex_state = 1}, - [440] = {.lex_state = 128, .external_lex_state = 1}, - [441] = {.lex_state = 128, .external_lex_state = 1}, - [442] = {.lex_state = 128, .external_lex_state = 1}, - [443] = {.lex_state = 128, .external_lex_state = 1}, - [444] = {.lex_state = 128, .external_lex_state = 1}, - [445] = {.lex_state = 128, .external_lex_state = 1}, - [446] = {.lex_state = 128, .external_lex_state = 1}, - [447] = {.lex_state = 128, .external_lex_state = 1}, - [448] = {.lex_state = 128, .external_lex_state = 1}, - [449] = {.lex_state = 245, .external_lex_state = 1}, - [450] = {.lex_state = 128, .external_lex_state = 1}, - [451] = {.lex_state = 128, .external_lex_state = 1}, - [452] = {.lex_state = 128, .external_lex_state = 1}, - [453] = {.lex_state = 128, .external_lex_state = 1}, - [454] = {.lex_state = 128, .external_lex_state = 1}, - [455] = {.lex_state = 128, .external_lex_state = 1}, - [456] = {.lex_state = 128, .external_lex_state = 1}, - [457] = {.lex_state = 128, .external_lex_state = 1}, - [458] = {.lex_state = 128, .external_lex_state = 1}, - [459] = {.lex_state = 128, .external_lex_state = 1}, - [460] = {.lex_state = 132, .external_lex_state = 1}, - [461] = {.lex_state = 128, .external_lex_state = 1}, - [462] = {.lex_state = 128, .external_lex_state = 1}, - [463] = {.lex_state = 128, .external_lex_state = 1}, - [464] = {.lex_state = 128, .external_lex_state = 1}, - [465] = {.lex_state = 132, .external_lex_state = 1}, - [466] = {.lex_state = 128, .external_lex_state = 1}, - [467] = {.lex_state = 245, .external_lex_state = 1}, - [468] = {.lex_state = 128, .external_lex_state = 1}, - [469] = {.lex_state = 128, .external_lex_state = 1}, - [470] = {.lex_state = 128, .external_lex_state = 1}, - [471] = {.lex_state = 128, .external_lex_state = 1}, - [472] = {.lex_state = 128, .external_lex_state = 1}, - [473] = {.lex_state = 128, .external_lex_state = 1}, - [474] = {.lex_state = 245, .external_lex_state = 1}, - [475] = {.lex_state = 128, .external_lex_state = 1}, - [476] = {.lex_state = 128, .external_lex_state = 1}, - [477] = {.lex_state = 132, .external_lex_state = 1}, - [478] = {.lex_state = 128, .external_lex_state = 1}, - [479] = {.lex_state = 128, .external_lex_state = 1}, - [480] = {.lex_state = 128, .external_lex_state = 1}, - [481] = {.lex_state = 128, .external_lex_state = 1}, - [482] = {.lex_state = 128, .external_lex_state = 1}, - [483] = {.lex_state = 128, .external_lex_state = 1}, - [484] = {.lex_state = 132, .external_lex_state = 1}, - [485] = {.lex_state = 128, .external_lex_state = 1}, - [486] = {.lex_state = 245, .external_lex_state = 1}, - [487] = {.lex_state = 245, .external_lex_state = 1}, - [488] = {.lex_state = 128, .external_lex_state = 1}, - [489] = {.lex_state = 128, .external_lex_state = 1}, - [490] = {.lex_state = 128, .external_lex_state = 1}, - [491] = {.lex_state = 128, .external_lex_state = 1}, - [492] = {.lex_state = 128, .external_lex_state = 1}, - [493] = {.lex_state = 132, .external_lex_state = 1}, - [494] = {.lex_state = 128, .external_lex_state = 1}, - [495] = {.lex_state = 128, .external_lex_state = 1}, - [496] = {.lex_state = 128, .external_lex_state = 1}, - [497] = {.lex_state = 132, .external_lex_state = 1}, - [498] = {.lex_state = 128, .external_lex_state = 1}, - [499] = {.lex_state = 128, .external_lex_state = 1}, - [500] = {.lex_state = 128, .external_lex_state = 1}, - [501] = {.lex_state = 128, .external_lex_state = 1}, - [502] = {.lex_state = 128, .external_lex_state = 1}, - [503] = {.lex_state = 128, .external_lex_state = 1}, - [504] = {.lex_state = 128, .external_lex_state = 1}, - [505] = {.lex_state = 128, .external_lex_state = 1}, - [506] = {.lex_state = 128, .external_lex_state = 1}, - [507] = {.lex_state = 132, .external_lex_state = 1}, - [508] = {.lex_state = 128, .external_lex_state = 1}, - [509] = {.lex_state = 130, .external_lex_state = 1}, - [510] = {.lex_state = 132, .external_lex_state = 1}, - [511] = {.lex_state = 132, .external_lex_state = 1}, - [512] = {.lex_state = 128, .external_lex_state = 1}, - [513] = {.lex_state = 132, .external_lex_state = 1}, - [514] = {.lex_state = 128, .external_lex_state = 1}, - [515] = {.lex_state = 128, .external_lex_state = 1}, - [516] = {.lex_state = 132, .external_lex_state = 1}, - [517] = {.lex_state = 128, .external_lex_state = 1}, - [518] = {.lex_state = 128, .external_lex_state = 1}, - [519] = {.lex_state = 132, .external_lex_state = 1}, - [520] = {.lex_state = 128, .external_lex_state = 1}, - [521] = {.lex_state = 245, .external_lex_state = 1}, - [522] = {.lex_state = 128, .external_lex_state = 1}, - [523] = {.lex_state = 128, .external_lex_state = 1}, - [524] = {.lex_state = 132, .external_lex_state = 1}, - [525] = {.lex_state = 128, .external_lex_state = 1}, - [526] = {.lex_state = 132, .external_lex_state = 1}, - [527] = {.lex_state = 128, .external_lex_state = 1}, - [528] = {.lex_state = 128, .external_lex_state = 1}, - [529] = {.lex_state = 128, .external_lex_state = 1}, - [530] = {.lex_state = 245, .external_lex_state = 1}, - [531] = {.lex_state = 130, .external_lex_state = 1}, - [532] = {.lex_state = 130, .external_lex_state = 1}, - [533] = {.lex_state = 128, .external_lex_state = 1}, - [534] = {.lex_state = 130, .external_lex_state = 1}, - [535] = {.lex_state = 130, .external_lex_state = 1}, - [536] = {.lex_state = 245, .external_lex_state = 1}, - [537] = {.lex_state = 245, .external_lex_state = 1}, - [538] = {.lex_state = 130, .external_lex_state = 1}, - [539] = {.lex_state = 130, .external_lex_state = 1}, - [540] = {.lex_state = 130, .external_lex_state = 1}, - [541] = {.lex_state = 130, .external_lex_state = 1}, - [542] = {.lex_state = 245, .external_lex_state = 1}, - [543] = {.lex_state = 245, .external_lex_state = 1}, - [544] = {.lex_state = 130, .external_lex_state = 1}, - [545] = {.lex_state = 130, .external_lex_state = 1}, - [546] = {.lex_state = 245, .external_lex_state = 1}, - [547] = {.lex_state = 245, .external_lex_state = 1}, - [548] = {.lex_state = 245, .external_lex_state = 1}, - [549] = {.lex_state = 245, .external_lex_state = 1}, - [550] = {.lex_state = 245, .external_lex_state = 1}, - [551] = {.lex_state = 245, .external_lex_state = 1}, - [552] = {.lex_state = 245, .external_lex_state = 1}, - [553] = {.lex_state = 245, .external_lex_state = 1}, - [554] = {.lex_state = 245, .external_lex_state = 1}, - [555] = {.lex_state = 245, .external_lex_state = 1}, - [556] = {.lex_state = 245, .external_lex_state = 1}, - [557] = {.lex_state = 245, .external_lex_state = 1}, - [558] = {.lex_state = 245, .external_lex_state = 1}, - [559] = {.lex_state = 245, .external_lex_state = 1}, - [560] = {.lex_state = 245, .external_lex_state = 1}, - [561] = {.lex_state = 245, .external_lex_state = 1}, - [562] = {.lex_state = 245, .external_lex_state = 1}, - [563] = {.lex_state = 245, .external_lex_state = 1}, - [564] = {.lex_state = 245, .external_lex_state = 1}, - [565] = {.lex_state = 245, .external_lex_state = 1}, - [566] = {.lex_state = 245, .external_lex_state = 1}, - [567] = {.lex_state = 245, .external_lex_state = 1}, - [568] = {.lex_state = 245, .external_lex_state = 1}, - [569] = {.lex_state = 245, .external_lex_state = 1}, - [570] = {.lex_state = 245, .external_lex_state = 1}, - [571] = {.lex_state = 245, .external_lex_state = 1}, - [572] = {.lex_state = 245, .external_lex_state = 1}, - [573] = {.lex_state = 245, .external_lex_state = 1}, - [574] = {.lex_state = 245, .external_lex_state = 1}, - [575] = {.lex_state = 245, .external_lex_state = 1}, - [576] = {.lex_state = 245, .external_lex_state = 1}, - [577] = {.lex_state = 245, .external_lex_state = 1}, - [578] = {.lex_state = 245, .external_lex_state = 1}, - [579] = {.lex_state = 245, .external_lex_state = 1}, - [580] = {.lex_state = 245, .external_lex_state = 1}, - [581] = {.lex_state = 245, .external_lex_state = 1}, - [582] = {.lex_state = 245, .external_lex_state = 1}, - [583] = {.lex_state = 245, .external_lex_state = 1}, - [584] = {.lex_state = 245, .external_lex_state = 1}, - [585] = {.lex_state = 245, .external_lex_state = 1}, - [586] = {.lex_state = 245, .external_lex_state = 1}, - [587] = {.lex_state = 245, .external_lex_state = 1}, - [588] = {.lex_state = 245, .external_lex_state = 1}, - [589] = {.lex_state = 245, .external_lex_state = 1}, - [590] = {.lex_state = 245, .external_lex_state = 1}, - [591] = {.lex_state = 245, .external_lex_state = 1}, - [592] = {.lex_state = 245, .external_lex_state = 1}, - [593] = {.lex_state = 245, .external_lex_state = 1}, - [594] = {.lex_state = 245, .external_lex_state = 1}, - [595] = {.lex_state = 245, .external_lex_state = 1}, - [596] = {.lex_state = 245, .external_lex_state = 1}, - [597] = {.lex_state = 245, .external_lex_state = 1}, - [598] = {.lex_state = 245, .external_lex_state = 1}, - [599] = {.lex_state = 245, .external_lex_state = 1}, - [600] = {.lex_state = 245, .external_lex_state = 1}, - [601] = {.lex_state = 245, .external_lex_state = 1}, - [602] = {.lex_state = 245, .external_lex_state = 1}, - [603] = {.lex_state = 245, .external_lex_state = 1}, - [604] = {.lex_state = 245, .external_lex_state = 1}, - [605] = {.lex_state = 245, .external_lex_state = 1}, - [606] = {.lex_state = 245, .external_lex_state = 1}, - [607] = {.lex_state = 245, .external_lex_state = 1}, - [608] = {.lex_state = 180}, - [609] = {.lex_state = 245, .external_lex_state = 1}, - [610] = {.lex_state = 245, .external_lex_state = 1}, - [611] = {.lex_state = 245, .external_lex_state = 1}, - [612] = {.lex_state = 245, .external_lex_state = 1}, - [613] = {.lex_state = 245, .external_lex_state = 1}, - [614] = {.lex_state = 245, .external_lex_state = 1}, - [615] = {.lex_state = 180}, - [616] = {.lex_state = 245, .external_lex_state = 1}, - [617] = {.lex_state = 245, .external_lex_state = 1}, - [618] = {.lex_state = 245, .external_lex_state = 1}, - [619] = {.lex_state = 245, .external_lex_state = 1}, - [620] = {.lex_state = 245, .external_lex_state = 1}, - [621] = {.lex_state = 245, .external_lex_state = 1}, - [622] = {.lex_state = 245, .external_lex_state = 1}, - [623] = {.lex_state = 245, .external_lex_state = 1}, - [624] = {.lex_state = 245, .external_lex_state = 1}, - [625] = {.lex_state = 245, .external_lex_state = 1}, - [626] = {.lex_state = 245, .external_lex_state = 1}, - [627] = {.lex_state = 245, .external_lex_state = 1}, - [628] = {.lex_state = 245, .external_lex_state = 1}, - [629] = {.lex_state = 245, .external_lex_state = 1}, - [630] = {.lex_state = 245, .external_lex_state = 1}, - [631] = {.lex_state = 245, .external_lex_state = 1}, - [632] = {.lex_state = 245, .external_lex_state = 1}, - [633] = {.lex_state = 245, .external_lex_state = 1}, - [634] = {.lex_state = 245, .external_lex_state = 1}, - [635] = {.lex_state = 245, .external_lex_state = 1}, - [636] = {.lex_state = 245, .external_lex_state = 1}, - [637] = {.lex_state = 245, .external_lex_state = 1}, - [638] = {.lex_state = 245, .external_lex_state = 1}, - [639] = {.lex_state = 130, .external_lex_state = 1}, - [640] = {.lex_state = 130, .external_lex_state = 1}, - [641] = {.lex_state = 130, .external_lex_state = 1}, - [642] = {.lex_state = 130, .external_lex_state = 1}, - [643] = {.lex_state = 130, .external_lex_state = 1}, - [644] = {.lex_state = 130, .external_lex_state = 1}, - [645] = {.lex_state = 130, .external_lex_state = 1}, - [646] = {.lex_state = 130, .external_lex_state = 1}, - [647] = {.lex_state = 130, .external_lex_state = 1}, - [648] = {.lex_state = 130, .external_lex_state = 1}, - [649] = {.lex_state = 245, .external_lex_state = 1}, - [650] = {.lex_state = 245, .external_lex_state = 1}, - [651] = {.lex_state = 245, .external_lex_state = 1}, - [652] = {.lex_state = 245, .external_lex_state = 1}, - [653] = {.lex_state = 245, .external_lex_state = 1}, - [654] = {.lex_state = 130, .external_lex_state = 1}, - [655] = {.lex_state = 130, .external_lex_state = 1}, - [656] = {.lex_state = 130, .external_lex_state = 1}, - [657] = {.lex_state = 130, .external_lex_state = 1}, - [658] = {.lex_state = 130, .external_lex_state = 1}, - [659] = {.lex_state = 130, .external_lex_state = 1}, - [660] = {.lex_state = 130, .external_lex_state = 1}, - [661] = {.lex_state = 130, .external_lex_state = 1}, - [662] = {.lex_state = 130, .external_lex_state = 1}, - [663] = {.lex_state = 130, .external_lex_state = 1}, - [664] = {.lex_state = 130, .external_lex_state = 1}, - [665] = {.lex_state = 130, .external_lex_state = 1}, - [666] = {.lex_state = 130, .external_lex_state = 1}, - [667] = {.lex_state = 130, .external_lex_state = 1}, - [668] = {.lex_state = 130, .external_lex_state = 1}, - [669] = {.lex_state = 130, .external_lex_state = 1}, - [670] = {.lex_state = 130, .external_lex_state = 1}, - [671] = {.lex_state = 245, .external_lex_state = 1}, - [672] = {.lex_state = 130, .external_lex_state = 1}, - [673] = {.lex_state = 130, .external_lex_state = 1}, - [674] = {.lex_state = 130, .external_lex_state = 1}, - [675] = {.lex_state = 130, .external_lex_state = 1}, - [676] = {.lex_state = 130, .external_lex_state = 1}, - [677] = {.lex_state = 130, .external_lex_state = 1}, - [678] = {.lex_state = 130, .external_lex_state = 1}, - [679] = {.lex_state = 245, .external_lex_state = 1}, - [680] = {.lex_state = 130, .external_lex_state = 1}, - [681] = {.lex_state = 130, .external_lex_state = 1}, - [682] = {.lex_state = 130, .external_lex_state = 1}, - [683] = {.lex_state = 130, .external_lex_state = 1}, - [684] = {.lex_state = 130, .external_lex_state = 1}, - [685] = {.lex_state = 130, .external_lex_state = 1}, - [686] = {.lex_state = 130, .external_lex_state = 1}, - [687] = {.lex_state = 130, .external_lex_state = 1}, - [688] = {.lex_state = 130, .external_lex_state = 1}, - [689] = {.lex_state = 130, .external_lex_state = 1}, - [690] = {.lex_state = 130, .external_lex_state = 1}, - [691] = {.lex_state = 130, .external_lex_state = 1}, - [692] = {.lex_state = 130, .external_lex_state = 1}, - [693] = {.lex_state = 130, .external_lex_state = 1}, - [694] = {.lex_state = 130, .external_lex_state = 1}, - [695] = {.lex_state = 130, .external_lex_state = 1}, - [696] = {.lex_state = 245, .external_lex_state = 1}, - [697] = {.lex_state = 245, .external_lex_state = 1}, - [698] = {.lex_state = 130, .external_lex_state = 1}, - [699] = {.lex_state = 130, .external_lex_state = 1}, - [700] = {.lex_state = 245, .external_lex_state = 1}, - [701] = {.lex_state = 245, .external_lex_state = 1}, - [702] = {.lex_state = 130, .external_lex_state = 1}, - [703] = {.lex_state = 130, .external_lex_state = 1}, - [704] = {.lex_state = 180}, - [705] = {.lex_state = 130, .external_lex_state = 1}, - [706] = {.lex_state = 130, .external_lex_state = 1}, - [707] = {.lex_state = 130, .external_lex_state = 1}, - [708] = {.lex_state = 130, .external_lex_state = 1}, - [709] = {.lex_state = 130, .external_lex_state = 1}, - [710] = {.lex_state = 130, .external_lex_state = 1}, - [711] = {.lex_state = 130, .external_lex_state = 1}, - [712] = {.lex_state = 130, .external_lex_state = 1}, - [713] = {.lex_state = 130, .external_lex_state = 1}, - [714] = {.lex_state = 130, .external_lex_state = 1}, - [715] = {.lex_state = 130, .external_lex_state = 1}, - [716] = {.lex_state = 130, .external_lex_state = 1}, - [717] = {.lex_state = 130, .external_lex_state = 1}, - [718] = {.lex_state = 130, .external_lex_state = 1}, - [719] = {.lex_state = 130, .external_lex_state = 1}, - [720] = {.lex_state = 130, .external_lex_state = 1}, - [721] = {.lex_state = 130, .external_lex_state = 1}, - [722] = {.lex_state = 130, .external_lex_state = 1}, - [723] = {.lex_state = 130, .external_lex_state = 1}, - [724] = {.lex_state = 130, .external_lex_state = 1}, - [725] = {.lex_state = 130, .external_lex_state = 1}, - [726] = {.lex_state = 245, .external_lex_state = 1}, - [727] = {.lex_state = 130, .external_lex_state = 1}, - [728] = {.lex_state = 130, .external_lex_state = 1}, - [729] = {.lex_state = 130, .external_lex_state = 1}, - [730] = {.lex_state = 130, .external_lex_state = 1}, - [731] = {.lex_state = 130, .external_lex_state = 1}, - [732] = {.lex_state = 130, .external_lex_state = 1}, - [733] = {.lex_state = 245, .external_lex_state = 1}, - [734] = {.lex_state = 130, .external_lex_state = 1}, - [735] = {.lex_state = 130, .external_lex_state = 1}, - [736] = {.lex_state = 180}, - [737] = {.lex_state = 245, .external_lex_state = 1}, - [738] = {.lex_state = 130, .external_lex_state = 1}, - [739] = {.lex_state = 130, .external_lex_state = 1}, - [740] = {.lex_state = 245, .external_lex_state = 1}, - [741] = {.lex_state = 245, .external_lex_state = 1}, - [742] = {.lex_state = 123, .external_lex_state = 1}, - [743] = {.lex_state = 130, .external_lex_state = 1}, - [744] = {.lex_state = 245, .external_lex_state = 1}, - [745] = {.lex_state = 130, .external_lex_state = 1}, - [746] = {.lex_state = 130, .external_lex_state = 1}, - [747] = {.lex_state = 130, .external_lex_state = 1}, - [748] = {.lex_state = 130, .external_lex_state = 1}, - [749] = {.lex_state = 130, .external_lex_state = 1}, - [750] = {.lex_state = 245, .external_lex_state = 1}, - [751] = {.lex_state = 130, .external_lex_state = 1}, - [752] = {.lex_state = 130, .external_lex_state = 1}, - [753] = {.lex_state = 130, .external_lex_state = 1}, - [754] = {.lex_state = 130, .external_lex_state = 1}, - [755] = {.lex_state = 245, .external_lex_state = 1}, - [756] = {.lex_state = 245, .external_lex_state = 1}, - [757] = {.lex_state = 130, .external_lex_state = 1}, - [758] = {.lex_state = 245, .external_lex_state = 1}, - [759] = {.lex_state = 245, .external_lex_state = 1}, - [760] = {.lex_state = 245, .external_lex_state = 1}, - [761] = {.lex_state = 245, .external_lex_state = 1}, - [762] = {.lex_state = 245, .external_lex_state = 1}, - [763] = {.lex_state = 130, .external_lex_state = 1}, - [764] = {.lex_state = 245, .external_lex_state = 1}, - [765] = {.lex_state = 245, .external_lex_state = 1}, - [766] = {.lex_state = 245, .external_lex_state = 1}, - [767] = {.lex_state = 245, .external_lex_state = 1}, - [768] = {.lex_state = 245, .external_lex_state = 1}, - [769] = {.lex_state = 245, .external_lex_state = 1}, - [770] = {.lex_state = 245, .external_lex_state = 1}, - [771] = {.lex_state = 245, .external_lex_state = 1}, - [772] = {.lex_state = 245, .external_lex_state = 1}, - [773] = {.lex_state = 245, .external_lex_state = 1}, - [774] = {.lex_state = 245, .external_lex_state = 1}, - [775] = {.lex_state = 245, .external_lex_state = 1}, - [776] = {.lex_state = 245, .external_lex_state = 1}, - [777] = {.lex_state = 245, .external_lex_state = 1}, - [778] = {.lex_state = 245, .external_lex_state = 1}, - [779] = {.lex_state = 245, .external_lex_state = 1}, - [780] = {.lex_state = 245, .external_lex_state = 1}, - [781] = {.lex_state = 245, .external_lex_state = 1}, - [782] = {.lex_state = 245, .external_lex_state = 1}, - [783] = {.lex_state = 245, .external_lex_state = 1}, - [784] = {.lex_state = 245, .external_lex_state = 1}, - [785] = {.lex_state = 245, .external_lex_state = 1}, - [786] = {.lex_state = 245, .external_lex_state = 1}, - [787] = {.lex_state = 245, .external_lex_state = 1}, - [788] = {.lex_state = 245, .external_lex_state = 1}, - [789] = {.lex_state = 245, .external_lex_state = 1}, - [790] = {.lex_state = 245, .external_lex_state = 1}, - [791] = {.lex_state = 245, .external_lex_state = 1}, - [792] = {.lex_state = 245, .external_lex_state = 1}, - [793] = {.lex_state = 245, .external_lex_state = 1}, - [794] = {.lex_state = 245, .external_lex_state = 1}, - [795] = {.lex_state = 245, .external_lex_state = 1}, - [796] = {.lex_state = 245, .external_lex_state = 1}, - [797] = {.lex_state = 245, .external_lex_state = 1}, - [798] = {.lex_state = 245, .external_lex_state = 1}, - [799] = {.lex_state = 245, .external_lex_state = 1}, - [800] = {.lex_state = 245, .external_lex_state = 1}, - [801] = {.lex_state = 245, .external_lex_state = 1}, - [802] = {.lex_state = 245, .external_lex_state = 1}, - [803] = {.lex_state = 245, .external_lex_state = 1}, - [804] = {.lex_state = 245, .external_lex_state = 1}, - [805] = {.lex_state = 245, .external_lex_state = 1}, - [806] = {.lex_state = 245, .external_lex_state = 1}, - [807] = {.lex_state = 245, .external_lex_state = 1}, - [808] = {.lex_state = 180}, - [809] = {.lex_state = 245, .external_lex_state = 1}, - [810] = {.lex_state = 245, .external_lex_state = 1}, - [811] = {.lex_state = 245, .external_lex_state = 1}, - [812] = {.lex_state = 245, .external_lex_state = 1}, - [813] = {.lex_state = 245, .external_lex_state = 1}, - [814] = {.lex_state = 245, .external_lex_state = 1}, - [815] = {.lex_state = 245, .external_lex_state = 1}, - [816] = {.lex_state = 245, .external_lex_state = 1}, - [817] = {.lex_state = 245, .external_lex_state = 1}, - [818] = {.lex_state = 245, .external_lex_state = 1}, - [819] = {.lex_state = 245, .external_lex_state = 1}, - [820] = {.lex_state = 245, .external_lex_state = 1}, - [821] = {.lex_state = 245, .external_lex_state = 1}, - [822] = {.lex_state = 245, .external_lex_state = 1}, - [823] = {.lex_state = 245, .external_lex_state = 1}, - [824] = {.lex_state = 245, .external_lex_state = 1}, - [825] = {.lex_state = 130, .external_lex_state = 1}, - [826] = {.lex_state = 245, .external_lex_state = 1}, - [827] = {.lex_state = 245, .external_lex_state = 1}, - [828] = {.lex_state = 245, .external_lex_state = 1}, - [829] = {.lex_state = 245, .external_lex_state = 1}, - [830] = {.lex_state = 245, .external_lex_state = 1}, - [831] = {.lex_state = 245, .external_lex_state = 1}, - [832] = {.lex_state = 245, .external_lex_state = 1}, - [833] = {.lex_state = 245, .external_lex_state = 1}, - [834] = {.lex_state = 245, .external_lex_state = 1}, - [835] = {.lex_state = 245, .external_lex_state = 1}, - [836] = {.lex_state = 130, .external_lex_state = 1}, - [837] = {.lex_state = 130, .external_lex_state = 1}, - [838] = {.lex_state = 245, .external_lex_state = 1}, - [839] = {.lex_state = 245, .external_lex_state = 1}, - [840] = {.lex_state = 245, .external_lex_state = 1}, - [841] = {.lex_state = 245, .external_lex_state = 1}, - [842] = {.lex_state = 245, .external_lex_state = 1}, - [843] = {.lex_state = 245, .external_lex_state = 1}, - [844] = {.lex_state = 245, .external_lex_state = 1}, - [845] = {.lex_state = 245, .external_lex_state = 1}, - [846] = {.lex_state = 245, .external_lex_state = 1}, - [847] = {.lex_state = 245, .external_lex_state = 1}, - [848] = {.lex_state = 245, .external_lex_state = 1}, - [849] = {.lex_state = 245, .external_lex_state = 1}, - [850] = {.lex_state = 245, .external_lex_state = 1}, - [851] = {.lex_state = 245, .external_lex_state = 1}, - [852] = {.lex_state = 245, .external_lex_state = 1}, - [853] = {.lex_state = 245, .external_lex_state = 1}, - [854] = {.lex_state = 180}, - [855] = {.lex_state = 245, .external_lex_state = 1}, - [856] = {.lex_state = 245, .external_lex_state = 1}, - [857] = {.lex_state = 245, .external_lex_state = 1}, - [858] = {.lex_state = 130, .external_lex_state = 1}, - [859] = {.lex_state = 245, .external_lex_state = 1}, - [860] = {.lex_state = 245, .external_lex_state = 1}, - [861] = {.lex_state = 245, .external_lex_state = 1}, - [862] = {.lex_state = 245, .external_lex_state = 1}, - [863] = {.lex_state = 245, .external_lex_state = 1}, - [864] = {.lex_state = 130, .external_lex_state = 1}, - [865] = {.lex_state = 245, .external_lex_state = 1}, - [866] = {.lex_state = 130, .external_lex_state = 1}, - [867] = {.lex_state = 245, .external_lex_state = 1}, - [868] = {.lex_state = 130, .external_lex_state = 1}, - [869] = {.lex_state = 130, .external_lex_state = 1}, - [870] = {.lex_state = 130, .external_lex_state = 1}, - [871] = {.lex_state = 130, .external_lex_state = 1}, - [872] = {.lex_state = 245, .external_lex_state = 1}, - [873] = {.lex_state = 132, .external_lex_state = 1}, - [874] = {.lex_state = 245, .external_lex_state = 1}, - [875] = {.lex_state = 130, .external_lex_state = 1}, - [876] = {.lex_state = 245, .external_lex_state = 1}, - [877] = {.lex_state = 245, .external_lex_state = 1}, - [878] = {.lex_state = 245, .external_lex_state = 1}, - [879] = {.lex_state = 245, .external_lex_state = 1}, - [880] = {.lex_state = 245, .external_lex_state = 1}, - [881] = {.lex_state = 245, .external_lex_state = 1}, - [882] = {.lex_state = 245, .external_lex_state = 1}, - [883] = {.lex_state = 180}, - [884] = {.lex_state = 245, .external_lex_state = 1}, - [885] = {.lex_state = 245, .external_lex_state = 1}, - [886] = {.lex_state = 245, .external_lex_state = 1}, - [887] = {.lex_state = 245, .external_lex_state = 1}, - [888] = {.lex_state = 245, .external_lex_state = 1}, - [889] = {.lex_state = 245, .external_lex_state = 1}, - [890] = {.lex_state = 130, .external_lex_state = 1}, - [891] = {.lex_state = 245, .external_lex_state = 1}, - [892] = {.lex_state = 130, .external_lex_state = 1}, - [893] = {.lex_state = 245, .external_lex_state = 1}, - [894] = {.lex_state = 245, .external_lex_state = 1}, - [895] = {.lex_state = 245, .external_lex_state = 1}, - [896] = {.lex_state = 245, .external_lex_state = 1}, - [897] = {.lex_state = 245, .external_lex_state = 1}, - [898] = {.lex_state = 245, .external_lex_state = 1}, - [899] = {.lex_state = 245, .external_lex_state = 1}, - [900] = {.lex_state = 245, .external_lex_state = 1}, - [901] = {.lex_state = 245, .external_lex_state = 1}, - [902] = {.lex_state = 245, .external_lex_state = 1}, - [903] = {.lex_state = 130, .external_lex_state = 1}, - [904] = {.lex_state = 245, .external_lex_state = 1}, - [905] = {.lex_state = 245, .external_lex_state = 1}, - [906] = {.lex_state = 245, .external_lex_state = 1}, - [907] = {.lex_state = 245, .external_lex_state = 1}, - [908] = {.lex_state = 245, .external_lex_state = 1}, - [909] = {.lex_state = 245, .external_lex_state = 1}, - [910] = {.lex_state = 245, .external_lex_state = 1}, - [911] = {.lex_state = 130, .external_lex_state = 1}, - [912] = {.lex_state = 245, .external_lex_state = 1}, - [913] = {.lex_state = 130, .external_lex_state = 1}, - [914] = {.lex_state = 245, .external_lex_state = 1}, - [915] = {.lex_state = 245, .external_lex_state = 1}, - [916] = {.lex_state = 245, .external_lex_state = 1}, - [917] = {.lex_state = 245, .external_lex_state = 1}, - [918] = {.lex_state = 130, .external_lex_state = 1}, - [919] = {.lex_state = 130, .external_lex_state = 1}, - [920] = {.lex_state = 245, .external_lex_state = 1}, - [921] = {.lex_state = 130, .external_lex_state = 1}, - [922] = {.lex_state = 130, .external_lex_state = 1}, - [923] = {.lex_state = 130, .external_lex_state = 1}, - [924] = {.lex_state = 245, .external_lex_state = 1}, - [925] = {.lex_state = 130, .external_lex_state = 1}, - [926] = {.lex_state = 245, .external_lex_state = 1}, - [927] = {.lex_state = 245, .external_lex_state = 1}, - [928] = {.lex_state = 245, .external_lex_state = 1}, - [929] = {.lex_state = 245, .external_lex_state = 1}, - [930] = {.lex_state = 130, .external_lex_state = 1}, - [931] = {.lex_state = 245, .external_lex_state = 1}, - [932] = {.lex_state = 245, .external_lex_state = 1}, - [933] = {.lex_state = 245, .external_lex_state = 1}, - [934] = {.lex_state = 245, .external_lex_state = 1}, - [935] = {.lex_state = 245, .external_lex_state = 1}, - [936] = {.lex_state = 245, .external_lex_state = 1}, - [937] = {.lex_state = 245, .external_lex_state = 1}, - [938] = {.lex_state = 130, .external_lex_state = 1}, - [939] = {.lex_state = 245, .external_lex_state = 1}, - [940] = {.lex_state = 130, .external_lex_state = 1}, - [941] = {.lex_state = 245, .external_lex_state = 1}, - [942] = {.lex_state = 245, .external_lex_state = 1}, - [943] = {.lex_state = 245, .external_lex_state = 1}, - [944] = {.lex_state = 245, .external_lex_state = 1}, - [945] = {.lex_state = 245, .external_lex_state = 1}, - [946] = {.lex_state = 245, .external_lex_state = 1}, - [947] = {.lex_state = 245, .external_lex_state = 1}, - [948] = {.lex_state = 245, .external_lex_state = 1}, - [949] = {.lex_state = 130, .external_lex_state = 1}, - [950] = {.lex_state = 245, .external_lex_state = 1}, - [951] = {.lex_state = 245, .external_lex_state = 1}, - [952] = {.lex_state = 245, .external_lex_state = 1}, - [953] = {.lex_state = 245, .external_lex_state = 1}, - [954] = {.lex_state = 130, .external_lex_state = 1}, - [955] = {.lex_state = 245, .external_lex_state = 1}, - [956] = {.lex_state = 130, .external_lex_state = 1}, - [957] = {.lex_state = 245, .external_lex_state = 1}, - [958] = {.lex_state = 245, .external_lex_state = 1}, - [959] = {.lex_state = 130, .external_lex_state = 1}, - [960] = {.lex_state = 245, .external_lex_state = 1}, - [961] = {.lex_state = 245, .external_lex_state = 1}, - [962] = {.lex_state = 245, .external_lex_state = 1}, - [963] = {.lex_state = 245, .external_lex_state = 1}, - [964] = {.lex_state = 245, .external_lex_state = 1}, - [965] = {.lex_state = 245, .external_lex_state = 1}, - [966] = {.lex_state = 245, .external_lex_state = 1}, - [967] = {.lex_state = 130, .external_lex_state = 1}, - [968] = {.lex_state = 130, .external_lex_state = 1}, - [969] = {.lex_state = 130, .external_lex_state = 1}, - [970] = {.lex_state = 130, .external_lex_state = 1}, - [971] = {.lex_state = 130, .external_lex_state = 1}, - [972] = {.lex_state = 130, .external_lex_state = 1}, - [973] = {.lex_state = 130, .external_lex_state = 1}, - [974] = {.lex_state = 245, .external_lex_state = 1}, - [975] = {.lex_state = 130, .external_lex_state = 1}, - [976] = {.lex_state = 245, .external_lex_state = 1}, - [977] = {.lex_state = 245, .external_lex_state = 1}, - [978] = {.lex_state = 245, .external_lex_state = 1}, - [979] = {.lex_state = 130, .external_lex_state = 1}, - [980] = {.lex_state = 245, .external_lex_state = 1}, - [981] = {.lex_state = 245, .external_lex_state = 1}, - [982] = {.lex_state = 245, .external_lex_state = 1}, - [983] = {.lex_state = 130, .external_lex_state = 1}, - [984] = {.lex_state = 130, .external_lex_state = 1}, - [985] = {.lex_state = 130, .external_lex_state = 1}, - [986] = {.lex_state = 245, .external_lex_state = 1}, - [987] = {.lex_state = 245, .external_lex_state = 1}, - [988] = {.lex_state = 130, .external_lex_state = 1}, - [989] = {.lex_state = 245, .external_lex_state = 1}, - [990] = {.lex_state = 130, .external_lex_state = 1}, - [991] = {.lex_state = 245, .external_lex_state = 1}, - [992] = {.lex_state = 122, .external_lex_state = 1}, - [993] = {.lex_state = 130, .external_lex_state = 1}, - [994] = {.lex_state = 130, .external_lex_state = 1}, - [995] = {.lex_state = 130, .external_lex_state = 1}, - [996] = {.lex_state = 130, .external_lex_state = 1}, - [997] = {.lex_state = 245, .external_lex_state = 1}, - [998] = {.lex_state = 245, .external_lex_state = 1}, - [999] = {.lex_state = 130, .external_lex_state = 1}, - [1000] = {.lex_state = 245, .external_lex_state = 1}, - [1001] = {.lex_state = 245, .external_lex_state = 1}, - [1002] = {.lex_state = 245, .external_lex_state = 1}, - [1003] = {.lex_state = 245, .external_lex_state = 1}, - [1004] = {.lex_state = 130, .external_lex_state = 1}, - [1005] = {.lex_state = 245, .external_lex_state = 1}, - [1006] = {.lex_state = 245, .external_lex_state = 1}, - [1007] = {.lex_state = 245, .external_lex_state = 1}, - [1008] = {.lex_state = 130, .external_lex_state = 1}, - [1009] = {.lex_state = 245, .external_lex_state = 1}, - [1010] = {.lex_state = 130, .external_lex_state = 1}, - [1011] = {.lex_state = 245, .external_lex_state = 1}, - [1012] = {.lex_state = 245, .external_lex_state = 1}, - [1013] = {.lex_state = 130, .external_lex_state = 1}, - [1014] = {.lex_state = 245, .external_lex_state = 1}, - [1015] = {.lex_state = 245, .external_lex_state = 1}, - [1016] = {.lex_state = 245, .external_lex_state = 1}, - [1017] = {.lex_state = 245, .external_lex_state = 1}, - [1018] = {.lex_state = 245, .external_lex_state = 1}, - [1019] = {.lex_state = 130, .external_lex_state = 1}, - [1020] = {.lex_state = 245, .external_lex_state = 1}, - [1021] = {.lex_state = 245, .external_lex_state = 1}, - [1022] = {.lex_state = 245, .external_lex_state = 1}, - [1023] = {.lex_state = 245, .external_lex_state = 1}, - [1024] = {.lex_state = 130, .external_lex_state = 1}, - [1025] = {.lex_state = 130, .external_lex_state = 1}, - [1026] = {.lex_state = 130, .external_lex_state = 1}, - [1027] = {.lex_state = 245, .external_lex_state = 1}, - [1028] = {.lex_state = 245, .external_lex_state = 1}, - [1029] = {.lex_state = 245, .external_lex_state = 1}, - [1030] = {.lex_state = 245, .external_lex_state = 1}, - [1031] = {.lex_state = 130, .external_lex_state = 1}, - [1032] = {.lex_state = 245, .external_lex_state = 1}, - [1033] = {.lex_state = 245, .external_lex_state = 1}, - [1034] = {.lex_state = 245, .external_lex_state = 1}, - [1035] = {.lex_state = 245, .external_lex_state = 1}, - [1036] = {.lex_state = 130, .external_lex_state = 1}, - [1037] = {.lex_state = 245, .external_lex_state = 1}, - [1038] = {.lex_state = 245, .external_lex_state = 1}, - [1039] = {.lex_state = 245, .external_lex_state = 1}, - [1040] = {.lex_state = 245, .external_lex_state = 1}, - [1041] = {.lex_state = 245, .external_lex_state = 1}, - [1042] = {.lex_state = 130, .external_lex_state = 1}, - [1043] = {.lex_state = 245, .external_lex_state = 1}, - [1044] = {.lex_state = 130, .external_lex_state = 1}, - [1045] = {.lex_state = 130, .external_lex_state = 1}, - [1046] = {.lex_state = 245, .external_lex_state = 1}, - [1047] = {.lex_state = 245, .external_lex_state = 1}, - [1048] = {.lex_state = 245, .external_lex_state = 1}, - [1049] = {.lex_state = 245, .external_lex_state = 1}, - [1050] = {.lex_state = 130, .external_lex_state = 1}, - [1051] = {.lex_state = 245, .external_lex_state = 1}, - [1052] = {.lex_state = 130, .external_lex_state = 1}, - [1053] = {.lex_state = 130, .external_lex_state = 1}, - [1054] = {.lex_state = 130, .external_lex_state = 1}, - [1055] = {.lex_state = 180}, - [1056] = {.lex_state = 180}, - [1057] = {.lex_state = 180}, - [1058] = {.lex_state = 180}, - [1059] = {.lex_state = 180}, - [1060] = {.lex_state = 131, .external_lex_state = 1}, - [1061] = {.lex_state = 131, .external_lex_state = 1}, - [1062] = {.lex_state = 180}, - [1063] = {.lex_state = 180}, - [1064] = {.lex_state = 129, .external_lex_state = 1}, - [1065] = {.lex_state = 129, .external_lex_state = 1}, - [1066] = {.lex_state = 129, .external_lex_state = 1}, - [1067] = {.lex_state = 129, .external_lex_state = 1}, - [1068] = {.lex_state = 129, .external_lex_state = 1}, - [1069] = {.lex_state = 129, .external_lex_state = 1}, - [1070] = {.lex_state = 129, .external_lex_state = 1}, - [1071] = {.lex_state = 129, .external_lex_state = 1}, - [1072] = {.lex_state = 129, .external_lex_state = 1}, - [1073] = {.lex_state = 129, .external_lex_state = 1}, - [1074] = {.lex_state = 129, .external_lex_state = 1}, - [1075] = {.lex_state = 129, .external_lex_state = 1}, - [1076] = {.lex_state = 129, .external_lex_state = 1}, - [1077] = {.lex_state = 129, .external_lex_state = 1}, - [1078] = {.lex_state = 129, .external_lex_state = 1}, - [1079] = {.lex_state = 129, .external_lex_state = 1}, - [1080] = {.lex_state = 129, .external_lex_state = 1}, - [1081] = {.lex_state = 129, .external_lex_state = 1}, - [1082] = {.lex_state = 126}, - [1083] = {.lex_state = 126}, - [1084] = {.lex_state = 124, .external_lex_state = 1}, - [1085] = {.lex_state = 125, .external_lex_state = 1}, - [1086] = {.lex_state = 124, .external_lex_state = 1}, - [1087] = {.lex_state = 124, .external_lex_state = 1}, - [1088] = {.lex_state = 180}, - [1089] = {.lex_state = 245, .external_lex_state = 1}, - [1090] = {.lex_state = 245, .external_lex_state = 1}, - [1091] = {.lex_state = 245, .external_lex_state = 1}, - [1092] = {.lex_state = 131, .external_lex_state = 1}, - [1093] = {.lex_state = 129, .external_lex_state = 1}, - [1094] = {.lex_state = 129, .external_lex_state = 1}, - [1095] = {.lex_state = 131, .external_lex_state = 1}, - [1096] = {.lex_state = 129, .external_lex_state = 1}, - [1097] = {.lex_state = 129, .external_lex_state = 1}, - [1098] = {.lex_state = 129, .external_lex_state = 1}, - [1099] = {.lex_state = 129, .external_lex_state = 1}, - [1100] = {.lex_state = 129, .external_lex_state = 1}, - [1101] = {.lex_state = 129, .external_lex_state = 1}, - [1102] = {.lex_state = 129, .external_lex_state = 1}, - [1103] = {.lex_state = 129, .external_lex_state = 1}, - [1104] = {.lex_state = 129, .external_lex_state = 1}, - [1105] = {.lex_state = 132, .external_lex_state = 1}, - [1106] = {.lex_state = 129, .external_lex_state = 1}, - [1107] = {.lex_state = 129, .external_lex_state = 1}, - [1108] = {.lex_state = 129, .external_lex_state = 1}, - [1109] = {.lex_state = 129, .external_lex_state = 1}, - [1110] = {.lex_state = 129, .external_lex_state = 1}, - [1111] = {.lex_state = 129, .external_lex_state = 1}, - [1112] = {.lex_state = 132, .external_lex_state = 1}, - [1113] = {.lex_state = 132, .external_lex_state = 1}, - [1114] = {.lex_state = 129, .external_lex_state = 1}, - [1115] = {.lex_state = 129, .external_lex_state = 1}, - [1116] = {.lex_state = 129, .external_lex_state = 1}, - [1117] = {.lex_state = 129, .external_lex_state = 1}, - [1118] = {.lex_state = 129, .external_lex_state = 1}, - [1119] = {.lex_state = 129, .external_lex_state = 1}, - [1120] = {.lex_state = 129, .external_lex_state = 1}, - [1121] = {.lex_state = 129, .external_lex_state = 1}, - [1122] = {.lex_state = 129, .external_lex_state = 1}, - [1123] = {.lex_state = 132, .external_lex_state = 1}, - [1124] = {.lex_state = 132, .external_lex_state = 1}, - [1125] = {.lex_state = 129, .external_lex_state = 1}, - [1126] = {.lex_state = 129, .external_lex_state = 1}, - [1127] = {.lex_state = 132, .external_lex_state = 1}, - [1128] = {.lex_state = 129, .external_lex_state = 1}, - [1129] = {.lex_state = 129, .external_lex_state = 1}, - [1130] = {.lex_state = 129, .external_lex_state = 1}, - [1131] = {.lex_state = 129, .external_lex_state = 1}, - [1132] = {.lex_state = 129, .external_lex_state = 1}, - [1133] = {.lex_state = 129, .external_lex_state = 1}, - [1134] = {.lex_state = 129, .external_lex_state = 1}, - [1135] = {.lex_state = 132, .external_lex_state = 1}, - [1136] = {.lex_state = 129, .external_lex_state = 1}, - [1137] = {.lex_state = 132, .external_lex_state = 1}, - [1138] = {.lex_state = 129, .external_lex_state = 1}, - [1139] = {.lex_state = 129, .external_lex_state = 1}, - [1140] = {.lex_state = 129, .external_lex_state = 1}, - [1141] = {.lex_state = 129, .external_lex_state = 1}, - [1142] = {.lex_state = 129, .external_lex_state = 1}, - [1143] = {.lex_state = 129, .external_lex_state = 1}, - [1144] = {.lex_state = 129, .external_lex_state = 1}, - [1145] = {.lex_state = 129, .external_lex_state = 1}, - [1146] = {.lex_state = 129, .external_lex_state = 1}, - [1147] = {.lex_state = 129, .external_lex_state = 1}, - [1148] = {.lex_state = 132, .external_lex_state = 1}, - [1149] = {.lex_state = 129, .external_lex_state = 1}, - [1150] = {.lex_state = 129, .external_lex_state = 1}, - [1151] = {.lex_state = 129, .external_lex_state = 1}, - [1152] = {.lex_state = 129, .external_lex_state = 1}, - [1153] = {.lex_state = 129, .external_lex_state = 1}, - [1154] = {.lex_state = 129, .external_lex_state = 1}, - [1155] = {.lex_state = 129, .external_lex_state = 1}, - [1156] = {.lex_state = 129, .external_lex_state = 1}, - [1157] = {.lex_state = 129, .external_lex_state = 1}, - [1158] = {.lex_state = 129, .external_lex_state = 1}, - [1159] = {.lex_state = 129, .external_lex_state = 1}, - [1160] = {.lex_state = 129, .external_lex_state = 1}, - [1161] = {.lex_state = 129, .external_lex_state = 1}, - [1162] = {.lex_state = 132, .external_lex_state = 1}, - [1163] = {.lex_state = 129, .external_lex_state = 1}, - [1164] = {.lex_state = 129, .external_lex_state = 1}, - [1165] = {.lex_state = 129, .external_lex_state = 1}, - [1166] = {.lex_state = 129, .external_lex_state = 1}, - [1167] = {.lex_state = 129, .external_lex_state = 1}, - [1168] = {.lex_state = 129, .external_lex_state = 1}, - [1169] = {.lex_state = 129, .external_lex_state = 1}, - [1170] = {.lex_state = 129, .external_lex_state = 1}, - [1171] = {.lex_state = 129, .external_lex_state = 1}, - [1172] = {.lex_state = 129, .external_lex_state = 1}, - [1173] = {.lex_state = 129, .external_lex_state = 1}, - [1174] = {.lex_state = 129, .external_lex_state = 1}, - [1175] = {.lex_state = 129, .external_lex_state = 1}, - [1176] = {.lex_state = 129, .external_lex_state = 1}, - [1177] = {.lex_state = 129, .external_lex_state = 1}, - [1178] = {.lex_state = 132, .external_lex_state = 1}, - [1179] = {.lex_state = 129, .external_lex_state = 1}, - [1180] = {.lex_state = 129, .external_lex_state = 1}, - [1181] = {.lex_state = 129, .external_lex_state = 1}, - [1182] = {.lex_state = 129, .external_lex_state = 1}, - [1183] = {.lex_state = 129, .external_lex_state = 1}, - [1184] = {.lex_state = 129, .external_lex_state = 1}, - [1185] = {.lex_state = 129, .external_lex_state = 1}, - [1186] = {.lex_state = 132, .external_lex_state = 1}, - [1187] = {.lex_state = 129, .external_lex_state = 1}, - [1188] = {.lex_state = 129, .external_lex_state = 1}, - [1189] = {.lex_state = 129, .external_lex_state = 1}, - [1190] = {.lex_state = 129, .external_lex_state = 1}, - [1191] = {.lex_state = 129, .external_lex_state = 1}, - [1192] = {.lex_state = 129, .external_lex_state = 1}, - [1193] = {.lex_state = 129, .external_lex_state = 1}, - [1194] = {.lex_state = 129, .external_lex_state = 1}, - [1195] = {.lex_state = 129, .external_lex_state = 1}, - [1196] = {.lex_state = 129, .external_lex_state = 1}, - [1197] = {.lex_state = 129, .external_lex_state = 1}, - [1198] = {.lex_state = 129, .external_lex_state = 1}, - [1199] = {.lex_state = 129, .external_lex_state = 1}, - [1200] = {.lex_state = 129, .external_lex_state = 1}, - [1201] = {.lex_state = 129, .external_lex_state = 1}, - [1202] = {.lex_state = 129, .external_lex_state = 1}, - [1203] = {.lex_state = 129, .external_lex_state = 1}, - [1204] = {.lex_state = 129, .external_lex_state = 1}, - [1205] = {.lex_state = 129, .external_lex_state = 1}, - [1206] = {.lex_state = 129, .external_lex_state = 1}, - [1207] = {.lex_state = 129, .external_lex_state = 1}, - [1208] = {.lex_state = 129, .external_lex_state = 1}, - [1209] = {.lex_state = 129, .external_lex_state = 1}, - [1210] = {.lex_state = 129, .external_lex_state = 1}, - [1211] = {.lex_state = 129, .external_lex_state = 1}, - [1212] = {.lex_state = 129, .external_lex_state = 1}, - [1213] = {.lex_state = 129, .external_lex_state = 1}, - [1214] = {.lex_state = 129, .external_lex_state = 1}, - [1215] = {.lex_state = 129, .external_lex_state = 1}, - [1216] = {.lex_state = 129, .external_lex_state = 1}, - [1217] = {.lex_state = 129, .external_lex_state = 1}, - [1218] = {.lex_state = 129, .external_lex_state = 1}, - [1219] = {.lex_state = 129, .external_lex_state = 1}, - [1220] = {.lex_state = 129, .external_lex_state = 1}, - [1221] = {.lex_state = 129, .external_lex_state = 1}, - [1222] = {.lex_state = 129, .external_lex_state = 1}, - [1223] = {.lex_state = 129, .external_lex_state = 1}, - [1224] = {.lex_state = 129, .external_lex_state = 1}, - [1225] = {.lex_state = 129, .external_lex_state = 1}, - [1226] = {.lex_state = 129, .external_lex_state = 1}, - [1227] = {.lex_state = 129, .external_lex_state = 1}, - [1228] = {.lex_state = 129, .external_lex_state = 1}, - [1229] = {.lex_state = 129, .external_lex_state = 1}, - [1230] = {.lex_state = 129, .external_lex_state = 1}, - [1231] = {.lex_state = 132, .external_lex_state = 1}, - [1232] = {.lex_state = 132, .external_lex_state = 1}, - [1233] = {.lex_state = 132, .external_lex_state = 1}, - [1234] = {.lex_state = 132, .external_lex_state = 1}, - [1235] = {.lex_state = 132, .external_lex_state = 1}, - [1236] = {.lex_state = 132, .external_lex_state = 1}, - [1237] = {.lex_state = 132, .external_lex_state = 1}, - [1238] = {.lex_state = 132, .external_lex_state = 1}, - [1239] = {.lex_state = 132, .external_lex_state = 1}, - [1240] = {.lex_state = 132, .external_lex_state = 1}, - [1241] = {.lex_state = 132, .external_lex_state = 1}, - [1242] = {.lex_state = 132, .external_lex_state = 1}, - [1243] = {.lex_state = 132, .external_lex_state = 1}, - [1244] = {.lex_state = 132, .external_lex_state = 1}, - [1245] = {.lex_state = 132, .external_lex_state = 1}, - [1246] = {.lex_state = 132, .external_lex_state = 1}, - [1247] = {.lex_state = 132, .external_lex_state = 1}, - [1248] = {.lex_state = 132, .external_lex_state = 1}, - [1249] = {.lex_state = 132, .external_lex_state = 1}, - [1250] = {.lex_state = 132, .external_lex_state = 1}, - [1251] = {.lex_state = 132, .external_lex_state = 1}, - [1252] = {.lex_state = 132, .external_lex_state = 1}, - [1253] = {.lex_state = 180}, - [1254] = {.lex_state = 180}, - [1255] = {.lex_state = 132, .external_lex_state = 1}, - [1256] = {.lex_state = 132, .external_lex_state = 1}, - [1257] = {.lex_state = 180}, - [1258] = {.lex_state = 132, .external_lex_state = 1}, - [1259] = {.lex_state = 132, .external_lex_state = 1}, - [1260] = {.lex_state = 180}, - [1261] = {.lex_state = 132, .external_lex_state = 1}, - [1262] = {.lex_state = 132, .external_lex_state = 1}, - [1263] = {.lex_state = 132, .external_lex_state = 1}, - [1264] = {.lex_state = 132, .external_lex_state = 1}, - [1265] = {.lex_state = 132, .external_lex_state = 1}, - [1266] = {.lex_state = 132, .external_lex_state = 1}, - [1267] = {.lex_state = 132, .external_lex_state = 1}, - [1268] = {.lex_state = 132, .external_lex_state = 1}, - [1269] = {.lex_state = 132, .external_lex_state = 1}, - [1270] = {.lex_state = 132, .external_lex_state = 1}, - [1271] = {.lex_state = 132, .external_lex_state = 1}, - [1272] = {.lex_state = 132, .external_lex_state = 1}, - [1273] = {.lex_state = 132, .external_lex_state = 1}, - [1274] = {.lex_state = 132, .external_lex_state = 1}, - [1275] = {.lex_state = 132, .external_lex_state = 1}, - [1276] = {.lex_state = 132, .external_lex_state = 1}, - [1277] = {.lex_state = 132, .external_lex_state = 1}, - [1278] = {.lex_state = 132, .external_lex_state = 1}, - [1279] = {.lex_state = 132, .external_lex_state = 1}, - [1280] = {.lex_state = 132, .external_lex_state = 1}, - [1281] = {.lex_state = 132, .external_lex_state = 1}, - [1282] = {.lex_state = 132, .external_lex_state = 1}, - [1283] = {.lex_state = 132, .external_lex_state = 1}, - [1284] = {.lex_state = 132, .external_lex_state = 1}, - [1285] = {.lex_state = 132, .external_lex_state = 1}, - [1286] = {.lex_state = 132, .external_lex_state = 1}, - [1287] = {.lex_state = 132, .external_lex_state = 1}, - [1288] = {.lex_state = 180}, - [1289] = {.lex_state = 131, .external_lex_state = 1}, - [1290] = {.lex_state = 132, .external_lex_state = 1}, - [1291] = {.lex_state = 132, .external_lex_state = 1}, - [1292] = {.lex_state = 132, .external_lex_state = 1}, - [1293] = {.lex_state = 132, .external_lex_state = 1}, - [1294] = {.lex_state = 132, .external_lex_state = 1}, - [1295] = {.lex_state = 132, .external_lex_state = 1}, - [1296] = {.lex_state = 131, .external_lex_state = 1}, - [1297] = {.lex_state = 132, .external_lex_state = 1}, - [1298] = {.lex_state = 132, .external_lex_state = 1}, - [1299] = {.lex_state = 131, .external_lex_state = 1}, - [1300] = {.lex_state = 132, .external_lex_state = 1}, - [1301] = {.lex_state = 132, .external_lex_state = 1}, - [1302] = {.lex_state = 132, .external_lex_state = 1}, - [1303] = {.lex_state = 131, .external_lex_state = 1}, - [1304] = {.lex_state = 132, .external_lex_state = 1}, - [1305] = {.lex_state = 131, .external_lex_state = 1}, - [1306] = {.lex_state = 132, .external_lex_state = 1}, - [1307] = {.lex_state = 131, .external_lex_state = 1}, - [1308] = {.lex_state = 132, .external_lex_state = 1}, - [1309] = {.lex_state = 132, .external_lex_state = 1}, - [1310] = {.lex_state = 132, .external_lex_state = 1}, - [1311] = {.lex_state = 132, .external_lex_state = 1}, - [1312] = {.lex_state = 131, .external_lex_state = 1}, - [1313] = {.lex_state = 132, .external_lex_state = 1}, - [1314] = {.lex_state = 131, .external_lex_state = 1}, - [1315] = {.lex_state = 132, .external_lex_state = 1}, - [1316] = {.lex_state = 132, .external_lex_state = 1}, - [1317] = {.lex_state = 132, .external_lex_state = 1}, - [1318] = {.lex_state = 132, .external_lex_state = 1}, - [1319] = {.lex_state = 180}, - [1320] = {.lex_state = 131, .external_lex_state = 1}, - [1321] = {.lex_state = 131, .external_lex_state = 1}, - [1322] = {.lex_state = 132, .external_lex_state = 1}, - [1323] = {.lex_state = 131, .external_lex_state = 1}, - [1324] = {.lex_state = 131, .external_lex_state = 1}, - [1325] = {.lex_state = 131, .external_lex_state = 1}, - [1326] = {.lex_state = 131, .external_lex_state = 1}, - [1327] = {.lex_state = 131, .external_lex_state = 1}, - [1328] = {.lex_state = 131, .external_lex_state = 1}, - [1329] = {.lex_state = 132, .external_lex_state = 1}, - [1330] = {.lex_state = 132, .external_lex_state = 1}, - [1331] = {.lex_state = 132, .external_lex_state = 1}, - [1332] = {.lex_state = 132, .external_lex_state = 1}, - [1333] = {.lex_state = 132, .external_lex_state = 1}, - [1334] = {.lex_state = 132, .external_lex_state = 1}, - [1335] = {.lex_state = 132, .external_lex_state = 1}, - [1336] = {.lex_state = 132, .external_lex_state = 1}, - [1337] = {.lex_state = 132, .external_lex_state = 1}, - [1338] = {.lex_state = 132, .external_lex_state = 1}, - [1339] = {.lex_state = 132, .external_lex_state = 1}, - [1340] = {.lex_state = 132, .external_lex_state = 1}, - [1341] = {.lex_state = 132, .external_lex_state = 1}, - [1342] = {.lex_state = 132, .external_lex_state = 1}, - [1343] = {.lex_state = 132, .external_lex_state = 1}, - [1344] = {.lex_state = 132, .external_lex_state = 1}, - [1345] = {.lex_state = 132, .external_lex_state = 1}, - [1346] = {.lex_state = 132, .external_lex_state = 1}, - [1347] = {.lex_state = 132, .external_lex_state = 1}, - [1348] = {.lex_state = 132, .external_lex_state = 1}, - [1349] = {.lex_state = 132, .external_lex_state = 1}, - [1350] = {.lex_state = 132, .external_lex_state = 1}, - [1351] = {.lex_state = 132, .external_lex_state = 1}, - [1352] = {.lex_state = 132, .external_lex_state = 1}, - [1353] = {.lex_state = 132, .external_lex_state = 1}, - [1354] = {.lex_state = 132, .external_lex_state = 1}, - [1355] = {.lex_state = 132, .external_lex_state = 1}, - [1356] = {.lex_state = 132, .external_lex_state = 1}, - [1357] = {.lex_state = 132, .external_lex_state = 1}, - [1358] = {.lex_state = 132, .external_lex_state = 1}, - [1359] = {.lex_state = 132, .external_lex_state = 1}, - [1360] = {.lex_state = 132, .external_lex_state = 1}, - [1361] = {.lex_state = 132, .external_lex_state = 1}, - [1362] = {.lex_state = 132, .external_lex_state = 1}, - [1363] = {.lex_state = 132, .external_lex_state = 1}, - [1364] = {.lex_state = 132, .external_lex_state = 1}, - [1365] = {.lex_state = 132, .external_lex_state = 1}, - [1366] = {.lex_state = 132, .external_lex_state = 1}, - [1367] = {.lex_state = 132, .external_lex_state = 1}, - [1368] = {.lex_state = 132, .external_lex_state = 1}, - [1369] = {.lex_state = 132, .external_lex_state = 1}, - [1370] = {.lex_state = 132, .external_lex_state = 1}, - [1371] = {.lex_state = 132, .external_lex_state = 1}, - [1372] = {.lex_state = 132, .external_lex_state = 1}, - [1373] = {.lex_state = 132, .external_lex_state = 1}, - [1374] = {.lex_state = 132, .external_lex_state = 1}, - [1375] = {.lex_state = 132, .external_lex_state = 1}, - [1376] = {.lex_state = 132, .external_lex_state = 1}, - [1377] = {.lex_state = 132, .external_lex_state = 1}, - [1378] = {.lex_state = 132, .external_lex_state = 1}, - [1379] = {.lex_state = 132, .external_lex_state = 1}, - [1380] = {.lex_state = 132, .external_lex_state = 1}, - [1381] = {.lex_state = 132, .external_lex_state = 1}, - [1382] = {.lex_state = 132, .external_lex_state = 1}, - [1383] = {.lex_state = 132, .external_lex_state = 1}, - [1384] = {.lex_state = 132, .external_lex_state = 1}, - [1385] = {.lex_state = 132, .external_lex_state = 1}, - [1386] = {.lex_state = 132, .external_lex_state = 1}, - [1387] = {.lex_state = 132, .external_lex_state = 1}, - [1388] = {.lex_state = 132, .external_lex_state = 1}, - [1389] = {.lex_state = 132, .external_lex_state = 1}, - [1390] = {.lex_state = 132, .external_lex_state = 1}, - [1391] = {.lex_state = 132, .external_lex_state = 1}, - [1392] = {.lex_state = 132, .external_lex_state = 1}, - [1393] = {.lex_state = 132, .external_lex_state = 1}, - [1394] = {.lex_state = 132, .external_lex_state = 1}, - [1395] = {.lex_state = 132, .external_lex_state = 1}, - [1396] = {.lex_state = 132, .external_lex_state = 1}, - [1397] = {.lex_state = 132, .external_lex_state = 1}, - [1398] = {.lex_state = 132, .external_lex_state = 1}, - [1399] = {.lex_state = 132, .external_lex_state = 1}, - [1400] = {.lex_state = 132, .external_lex_state = 1}, - [1401] = {.lex_state = 132, .external_lex_state = 1}, - [1402] = {.lex_state = 132, .external_lex_state = 1}, - [1403] = {.lex_state = 132, .external_lex_state = 1}, - [1404] = {.lex_state = 132, .external_lex_state = 1}, - [1405] = {.lex_state = 132, .external_lex_state = 1}, - [1406] = {.lex_state = 132, .external_lex_state = 1}, - [1407] = {.lex_state = 132, .external_lex_state = 1}, - [1408] = {.lex_state = 132, .external_lex_state = 1}, - [1409] = {.lex_state = 132, .external_lex_state = 1}, - [1410] = {.lex_state = 132, .external_lex_state = 1}, - [1411] = {.lex_state = 132, .external_lex_state = 1}, - [1412] = {.lex_state = 132, .external_lex_state = 1}, - [1413] = {.lex_state = 132, .external_lex_state = 1}, - [1414] = {.lex_state = 132, .external_lex_state = 1}, - [1415] = {.lex_state = 132, .external_lex_state = 1}, - [1416] = {.lex_state = 132, .external_lex_state = 1}, - [1417] = {.lex_state = 132, .external_lex_state = 1}, - [1418] = {.lex_state = 132, .external_lex_state = 1}, - [1419] = {.lex_state = 132, .external_lex_state = 1}, - [1420] = {.lex_state = 132, .external_lex_state = 1}, - [1421] = {.lex_state = 132, .external_lex_state = 1}, - [1422] = {.lex_state = 132, .external_lex_state = 1}, - [1423] = {.lex_state = 132, .external_lex_state = 1}, - [1424] = {.lex_state = 132, .external_lex_state = 1}, - [1425] = {.lex_state = 132, .external_lex_state = 1}, - [1426] = {.lex_state = 132, .external_lex_state = 1}, - [1427] = {.lex_state = 132, .external_lex_state = 1}, - [1428] = {.lex_state = 132, .external_lex_state = 1}, - [1429] = {.lex_state = 132, .external_lex_state = 1}, - [1430] = {.lex_state = 132, .external_lex_state = 1}, - [1431] = {.lex_state = 132, .external_lex_state = 1}, - [1432] = {.lex_state = 132, .external_lex_state = 1}, - [1433] = {.lex_state = 132, .external_lex_state = 1}, - [1434] = {.lex_state = 132, .external_lex_state = 1}, - [1435] = {.lex_state = 132, .external_lex_state = 1}, - [1436] = {.lex_state = 132, .external_lex_state = 1}, - [1437] = {.lex_state = 132, .external_lex_state = 1}, - [1438] = {.lex_state = 132, .external_lex_state = 1}, - [1439] = {.lex_state = 132, .external_lex_state = 1}, - [1440] = {.lex_state = 132, .external_lex_state = 1}, - [1441] = {.lex_state = 132, .external_lex_state = 1}, - [1442] = {.lex_state = 132, .external_lex_state = 1}, - [1443] = {.lex_state = 132, .external_lex_state = 1}, - [1444] = {.lex_state = 132, .external_lex_state = 1}, - [1445] = {.lex_state = 132, .external_lex_state = 1}, - [1446] = {.lex_state = 132, .external_lex_state = 1}, - [1447] = {.lex_state = 132, .external_lex_state = 1}, - [1448] = {.lex_state = 132, .external_lex_state = 1}, - [1449] = {.lex_state = 132, .external_lex_state = 1}, - [1450] = {.lex_state = 132, .external_lex_state = 1}, - [1451] = {.lex_state = 132, .external_lex_state = 1}, - [1452] = {.lex_state = 132, .external_lex_state = 1}, - [1453] = {.lex_state = 132, .external_lex_state = 1}, - [1454] = {.lex_state = 132, .external_lex_state = 1}, - [1455] = {.lex_state = 132, .external_lex_state = 1}, - [1456] = {.lex_state = 132, .external_lex_state = 1}, - [1457] = {.lex_state = 132, .external_lex_state = 1}, - [1458] = {.lex_state = 132, .external_lex_state = 1}, - [1459] = {.lex_state = 132, .external_lex_state = 1}, - [1460] = {.lex_state = 132, .external_lex_state = 1}, - [1461] = {.lex_state = 132, .external_lex_state = 1}, - [1462] = {.lex_state = 132, .external_lex_state = 1}, - [1463] = {.lex_state = 132, .external_lex_state = 1}, - [1464] = {.lex_state = 132, .external_lex_state = 1}, - [1465] = {.lex_state = 132, .external_lex_state = 1}, - [1466] = {.lex_state = 132, .external_lex_state = 1}, - [1467] = {.lex_state = 132, .external_lex_state = 1}, - [1468] = {.lex_state = 132, .external_lex_state = 1}, - [1469] = {.lex_state = 132, .external_lex_state = 1}, - [1470] = {.lex_state = 132, .external_lex_state = 1}, - [1471] = {.lex_state = 132, .external_lex_state = 1}, - [1472] = {.lex_state = 132, .external_lex_state = 1}, - [1473] = {.lex_state = 132, .external_lex_state = 1}, - [1474] = {.lex_state = 132, .external_lex_state = 1}, - [1475] = {.lex_state = 132, .external_lex_state = 1}, - [1476] = {.lex_state = 132, .external_lex_state = 1}, - [1477] = {.lex_state = 132, .external_lex_state = 1}, - [1478] = {.lex_state = 132, .external_lex_state = 1}, - [1479] = {.lex_state = 132, .external_lex_state = 1}, - [1480] = {.lex_state = 132, .external_lex_state = 1}, - [1481] = {.lex_state = 132, .external_lex_state = 1}, - [1482] = {.lex_state = 132, .external_lex_state = 1}, - [1483] = {.lex_state = 132, .external_lex_state = 1}, - [1484] = {.lex_state = 132, .external_lex_state = 1}, - [1485] = {.lex_state = 132, .external_lex_state = 1}, - [1486] = {.lex_state = 132, .external_lex_state = 1}, - [1487] = {.lex_state = 132, .external_lex_state = 1}, - [1488] = {.lex_state = 132, .external_lex_state = 1}, - [1489] = {.lex_state = 132, .external_lex_state = 1}, - [1490] = {.lex_state = 132, .external_lex_state = 1}, - [1491] = {.lex_state = 132, .external_lex_state = 1}, - [1492] = {.lex_state = 132, .external_lex_state = 1}, - [1493] = {.lex_state = 132, .external_lex_state = 1}, - [1494] = {.lex_state = 132, .external_lex_state = 1}, - [1495] = {.lex_state = 132, .external_lex_state = 1}, - [1496] = {.lex_state = 132, .external_lex_state = 1}, - [1497] = {.lex_state = 132, .external_lex_state = 1}, - [1498] = {.lex_state = 132, .external_lex_state = 1}, - [1499] = {.lex_state = 132, .external_lex_state = 1}, - [1500] = {.lex_state = 132, .external_lex_state = 1}, - [1501] = {.lex_state = 132, .external_lex_state = 1}, - [1502] = {.lex_state = 132, .external_lex_state = 1}, - [1503] = {.lex_state = 132, .external_lex_state = 1}, - [1504] = {.lex_state = 132, .external_lex_state = 1}, - [1505] = {.lex_state = 132, .external_lex_state = 1}, - [1506] = {.lex_state = 132, .external_lex_state = 1}, - [1507] = {.lex_state = 132, .external_lex_state = 1}, - [1508] = {.lex_state = 132, .external_lex_state = 1}, - [1509] = {.lex_state = 132, .external_lex_state = 1}, - [1510] = {.lex_state = 132, .external_lex_state = 1}, - [1511] = {.lex_state = 132, .external_lex_state = 1}, - [1512] = {.lex_state = 132, .external_lex_state = 1}, - [1513] = {.lex_state = 132, .external_lex_state = 1}, - [1514] = {.lex_state = 132, .external_lex_state = 1}, - [1515] = {.lex_state = 132, .external_lex_state = 1}, - [1516] = {.lex_state = 132, .external_lex_state = 1}, - [1517] = {.lex_state = 132, .external_lex_state = 1}, - [1518] = {.lex_state = 132, .external_lex_state = 1}, - [1519] = {.lex_state = 132, .external_lex_state = 1}, - [1520] = {.lex_state = 132, .external_lex_state = 1}, - [1521] = {.lex_state = 132, .external_lex_state = 1}, - [1522] = {.lex_state = 132, .external_lex_state = 1}, - [1523] = {.lex_state = 132, .external_lex_state = 1}, - [1524] = {.lex_state = 132, .external_lex_state = 1}, - [1525] = {.lex_state = 132, .external_lex_state = 1}, - [1526] = {.lex_state = 132, .external_lex_state = 1}, - [1527] = {.lex_state = 132, .external_lex_state = 1}, - [1528] = {.lex_state = 132, .external_lex_state = 1}, - [1529] = {.lex_state = 132, .external_lex_state = 1}, - [1530] = {.lex_state = 132, .external_lex_state = 1}, - [1531] = {.lex_state = 132, .external_lex_state = 1}, - [1532] = {.lex_state = 132, .external_lex_state = 1}, - [1533] = {.lex_state = 132, .external_lex_state = 1}, - [1534] = {.lex_state = 132, .external_lex_state = 1}, - [1535] = {.lex_state = 132, .external_lex_state = 1}, - [1536] = {.lex_state = 132, .external_lex_state = 1}, - [1537] = {.lex_state = 132, .external_lex_state = 1}, - [1538] = {.lex_state = 132, .external_lex_state = 1}, - [1539] = {.lex_state = 132, .external_lex_state = 1}, - [1540] = {.lex_state = 132, .external_lex_state = 1}, - [1541] = {.lex_state = 132, .external_lex_state = 1}, - [1542] = {.lex_state = 132, .external_lex_state = 1}, - [1543] = {.lex_state = 132, .external_lex_state = 1}, - [1544] = {.lex_state = 132, .external_lex_state = 1}, - [1545] = {.lex_state = 132, .external_lex_state = 1}, - [1546] = {.lex_state = 132, .external_lex_state = 1}, - [1547] = {.lex_state = 132, .external_lex_state = 1}, - [1548] = {.lex_state = 132, .external_lex_state = 1}, - [1549] = {.lex_state = 132, .external_lex_state = 1}, - [1550] = {.lex_state = 132, .external_lex_state = 1}, - [1551] = {.lex_state = 132, .external_lex_state = 1}, - [1552] = {.lex_state = 132, .external_lex_state = 1}, - [1553] = {.lex_state = 132, .external_lex_state = 1}, - [1554] = {.lex_state = 132, .external_lex_state = 1}, - [1555] = {.lex_state = 132, .external_lex_state = 1}, - [1556] = {.lex_state = 132, .external_lex_state = 1}, - [1557] = {.lex_state = 132, .external_lex_state = 1}, - [1558] = {.lex_state = 132, .external_lex_state = 1}, - [1559] = {.lex_state = 132, .external_lex_state = 1}, - [1560] = {.lex_state = 132, .external_lex_state = 1}, - [1561] = {.lex_state = 132, .external_lex_state = 1}, - [1562] = {.lex_state = 132, .external_lex_state = 1}, - [1563] = {.lex_state = 132, .external_lex_state = 1}, - [1564] = {.lex_state = 132, .external_lex_state = 1}, - [1565] = {.lex_state = 132, .external_lex_state = 1}, - [1566] = {.lex_state = 132, .external_lex_state = 1}, - [1567] = {.lex_state = 132, .external_lex_state = 1}, - [1568] = {.lex_state = 132, .external_lex_state = 1}, - [1569] = {.lex_state = 132, .external_lex_state = 1}, - [1570] = {.lex_state = 132, .external_lex_state = 1}, - [1571] = {.lex_state = 132, .external_lex_state = 1}, - [1572] = {.lex_state = 132, .external_lex_state = 1}, - [1573] = {.lex_state = 132, .external_lex_state = 1}, - [1574] = {.lex_state = 132, .external_lex_state = 1}, - [1575] = {.lex_state = 132, .external_lex_state = 1}, - [1576] = {.lex_state = 132, .external_lex_state = 1}, - [1577] = {.lex_state = 132, .external_lex_state = 1}, - [1578] = {.lex_state = 132, .external_lex_state = 1}, - [1579] = {.lex_state = 132, .external_lex_state = 1}, - [1580] = {.lex_state = 132, .external_lex_state = 1}, - [1581] = {.lex_state = 132, .external_lex_state = 1}, - [1582] = {.lex_state = 132, .external_lex_state = 1}, - [1583] = {.lex_state = 132, .external_lex_state = 1}, - [1584] = {.lex_state = 132, .external_lex_state = 1}, - [1585] = {.lex_state = 132, .external_lex_state = 1}, - [1586] = {.lex_state = 132, .external_lex_state = 1}, - [1587] = {.lex_state = 132, .external_lex_state = 1}, - [1588] = {.lex_state = 132, .external_lex_state = 1}, - [1589] = {.lex_state = 132, .external_lex_state = 1}, - [1590] = {.lex_state = 132, .external_lex_state = 1}, - [1591] = {.lex_state = 132, .external_lex_state = 1}, - [1592] = {.lex_state = 132, .external_lex_state = 1}, - [1593] = {.lex_state = 132, .external_lex_state = 1}, - [1594] = {.lex_state = 132, .external_lex_state = 1}, - [1595] = {.lex_state = 132, .external_lex_state = 1}, - [1596] = {.lex_state = 132, .external_lex_state = 1}, - [1597] = {.lex_state = 132, .external_lex_state = 1}, - [1598] = {.lex_state = 132, .external_lex_state = 1}, - [1599] = {.lex_state = 132, .external_lex_state = 1}, - [1600] = {.lex_state = 132, .external_lex_state = 1}, - [1601] = {.lex_state = 132, .external_lex_state = 1}, - [1602] = {.lex_state = 132, .external_lex_state = 1}, - [1603] = {.lex_state = 132, .external_lex_state = 1}, - [1604] = {.lex_state = 132, .external_lex_state = 1}, - [1605] = {.lex_state = 132, .external_lex_state = 1}, - [1606] = {.lex_state = 132, .external_lex_state = 1}, - [1607] = {.lex_state = 132, .external_lex_state = 1}, - [1608] = {.lex_state = 132, .external_lex_state = 1}, - [1609] = {.lex_state = 132, .external_lex_state = 1}, - [1610] = {.lex_state = 132, .external_lex_state = 1}, - [1611] = {.lex_state = 132, .external_lex_state = 1}, - [1612] = {.lex_state = 132, .external_lex_state = 1}, - [1613] = {.lex_state = 132, .external_lex_state = 1}, - [1614] = {.lex_state = 132, .external_lex_state = 1}, - [1615] = {.lex_state = 132, .external_lex_state = 1}, - [1616] = {.lex_state = 132, .external_lex_state = 1}, - [1617] = {.lex_state = 132, .external_lex_state = 1}, - [1618] = {.lex_state = 132, .external_lex_state = 1}, - [1619] = {.lex_state = 132, .external_lex_state = 1}, - [1620] = {.lex_state = 132, .external_lex_state = 1}, - [1621] = {.lex_state = 132, .external_lex_state = 1}, - [1622] = {.lex_state = 132, .external_lex_state = 1}, - [1623] = {.lex_state = 132, .external_lex_state = 1}, - [1624] = {.lex_state = 132, .external_lex_state = 1}, - [1625] = {.lex_state = 132, .external_lex_state = 1}, - [1626] = {.lex_state = 132, .external_lex_state = 1}, - [1627] = {.lex_state = 132, .external_lex_state = 1}, - [1628] = {.lex_state = 132, .external_lex_state = 1}, - [1629] = {.lex_state = 132, .external_lex_state = 1}, - [1630] = {.lex_state = 132, .external_lex_state = 1}, - [1631] = {.lex_state = 132, .external_lex_state = 1}, - [1632] = {.lex_state = 132, .external_lex_state = 1}, - [1633] = {.lex_state = 132, .external_lex_state = 1}, - [1634] = {.lex_state = 132, .external_lex_state = 1}, - [1635] = {.lex_state = 132, .external_lex_state = 1}, - [1636] = {.lex_state = 132, .external_lex_state = 1}, - [1637] = {.lex_state = 132, .external_lex_state = 1}, - [1638] = {.lex_state = 132, .external_lex_state = 1}, - [1639] = {.lex_state = 132, .external_lex_state = 1}, - [1640] = {.lex_state = 132, .external_lex_state = 1}, - [1641] = {.lex_state = 132, .external_lex_state = 1}, - [1642] = {.lex_state = 132, .external_lex_state = 1}, - [1643] = {.lex_state = 132, .external_lex_state = 1}, - [1644] = {.lex_state = 132, .external_lex_state = 1}, - [1645] = {.lex_state = 132, .external_lex_state = 1}, - [1646] = {.lex_state = 132, .external_lex_state = 1}, - [1647] = {.lex_state = 132, .external_lex_state = 1}, - [1648] = {.lex_state = 132, .external_lex_state = 1}, - [1649] = {.lex_state = 132, .external_lex_state = 1}, - [1650] = {.lex_state = 132, .external_lex_state = 1}, - [1651] = {.lex_state = 132, .external_lex_state = 1}, - [1652] = {.lex_state = 132, .external_lex_state = 1}, - [1653] = {.lex_state = 132, .external_lex_state = 1}, - [1654] = {.lex_state = 132, .external_lex_state = 1}, - [1655] = {.lex_state = 132, .external_lex_state = 1}, - [1656] = {.lex_state = 132, .external_lex_state = 1}, - [1657] = {.lex_state = 132, .external_lex_state = 1}, - [1658] = {.lex_state = 132, .external_lex_state = 1}, - [1659] = {.lex_state = 132, .external_lex_state = 1}, - [1660] = {.lex_state = 132, .external_lex_state = 1}, - [1661] = {.lex_state = 132, .external_lex_state = 1}, - [1662] = {.lex_state = 132, .external_lex_state = 1}, - [1663] = {.lex_state = 132, .external_lex_state = 1}, - [1664] = {.lex_state = 132, .external_lex_state = 1}, - [1665] = {.lex_state = 132, .external_lex_state = 1}, - [1666] = {.lex_state = 132, .external_lex_state = 1}, - [1667] = {.lex_state = 132, .external_lex_state = 1}, - [1668] = {.lex_state = 132, .external_lex_state = 1}, - [1669] = {.lex_state = 132, .external_lex_state = 1}, - [1670] = {.lex_state = 132, .external_lex_state = 1}, - [1671] = {.lex_state = 132, .external_lex_state = 1}, - [1672] = {.lex_state = 132, .external_lex_state = 1}, - [1673] = {.lex_state = 132, .external_lex_state = 1}, - [1674] = {.lex_state = 132, .external_lex_state = 1}, - [1675] = {.lex_state = 132, .external_lex_state = 1}, - [1676] = {.lex_state = 132, .external_lex_state = 1}, - [1677] = {.lex_state = 132, .external_lex_state = 1}, - [1678] = {.lex_state = 132, .external_lex_state = 1}, - [1679] = {.lex_state = 132, .external_lex_state = 1}, - [1680] = {.lex_state = 132, .external_lex_state = 1}, - [1681] = {.lex_state = 132, .external_lex_state = 1}, - [1682] = {.lex_state = 132, .external_lex_state = 1}, - [1683] = {.lex_state = 132, .external_lex_state = 1}, - [1684] = {.lex_state = 152}, - [1685] = {.lex_state = 147}, - [1686] = {.lex_state = 147}, - [1687] = {.lex_state = 152}, - [1688] = {.lex_state = 152}, - [1689] = {.lex_state = 152}, - [1690] = {.lex_state = 152}, - [1691] = {.lex_state = 152}, - [1692] = {.lex_state = 152}, - [1693] = {.lex_state = 152}, - [1694] = {.lex_state = 152}, - [1695] = {.lex_state = 152}, - [1696] = {.lex_state = 152}, - [1697] = {.lex_state = 147}, - [1698] = {.lex_state = 152}, - [1699] = {.lex_state = 147}, - [1700] = {.lex_state = 152}, - [1701] = {.lex_state = 147}, - [1702] = {.lex_state = 152}, - [1703] = {.lex_state = 152}, - [1704] = {.lex_state = 147}, - [1705] = {.lex_state = 147}, - [1706] = {.lex_state = 147}, - [1707] = {.lex_state = 152}, - [1708] = {.lex_state = 147}, - [1709] = {.lex_state = 152}, - [1710] = {.lex_state = 152}, - [1711] = {.lex_state = 147}, - [1712] = {.lex_state = 152}, - [1713] = {.lex_state = 180}, - [1714] = {.lex_state = 152}, - [1715] = {.lex_state = 152}, - [1716] = {.lex_state = 180}, - [1717] = {.lex_state = 152}, - [1718] = {.lex_state = 180}, - [1719] = {.lex_state = 180}, - [1720] = {.lex_state = 152}, - [1721] = {.lex_state = 152}, - [1722] = {.lex_state = 180}, - [1723] = {.lex_state = 180}, - [1724] = {.lex_state = 180}, - [1725] = {.lex_state = 179}, - [1726] = {.lex_state = 180}, - [1727] = {.lex_state = 129, .external_lex_state = 1}, - [1728] = {.lex_state = 129, .external_lex_state = 1}, - [1729] = {.lex_state = 180}, - [1730] = {.lex_state = 179}, - [1731] = {.lex_state = 164}, - [1732] = {.lex_state = 164}, - [1733] = {.lex_state = 164}, - [1734] = {.lex_state = 180}, - [1735] = {.lex_state = 164}, - [1736] = {.lex_state = 164}, - [1737] = {.lex_state = 164}, - [1738] = {.lex_state = 164}, - [1739] = {.lex_state = 180}, - [1740] = {.lex_state = 180}, - [1741] = {.lex_state = 180}, - [1742] = {.lex_state = 180}, - [1743] = {.lex_state = 180}, - [1744] = {.lex_state = 180}, - [1745] = {.lex_state = 180}, - [1746] = {.lex_state = 180}, - [1747] = {.lex_state = 180}, - [1748] = {.lex_state = 180}, - [1749] = {.lex_state = 180}, - [1750] = {.lex_state = 180}, - [1751] = {.lex_state = 180}, - [1752] = {.lex_state = 180}, - [1753] = {.lex_state = 180}, - [1754] = {.lex_state = 180}, - [1755] = {.lex_state = 180}, - [1756] = {.lex_state = 180}, - [1757] = {.lex_state = 180}, - [1758] = {.lex_state = 180}, - [1759] = {.lex_state = 180}, - [1760] = {.lex_state = 180}, - [1761] = {.lex_state = 180}, - [1762] = {.lex_state = 180}, - [1763] = {.lex_state = 180}, - [1764] = {.lex_state = 164}, - [1765] = {.lex_state = 179}, - [1766] = {.lex_state = 146}, - [1767] = {.lex_state = 164}, - [1768] = {.lex_state = 164}, - [1769] = {.lex_state = 146}, - [1770] = {.lex_state = 164}, - [1771] = {.lex_state = 179}, - [1772] = {.lex_state = 164}, - [1773] = {.lex_state = 180}, - [1774] = {.lex_state = 146}, - [1775] = {.lex_state = 146}, - [1776] = {.lex_state = 180}, - [1777] = {.lex_state = 164}, - [1778] = {.lex_state = 145}, - [1779] = {.lex_state = 180}, - [1780] = {.lex_state = 164}, - [1781] = {.lex_state = 145}, - [1782] = {.lex_state = 164}, - [1783] = {.lex_state = 164}, - [1784] = {.lex_state = 146}, - [1785] = {.lex_state = 146}, - [1786] = {.lex_state = 145}, - [1787] = {.lex_state = 179}, - [1788] = {.lex_state = 145}, - [1789] = {.lex_state = 179}, - [1790] = {.lex_state = 164}, - [1791] = {.lex_state = 179}, - [1792] = {.lex_state = 164}, - [1793] = {.lex_state = 146}, - [1794] = {.lex_state = 180}, - [1795] = {.lex_state = 180}, - [1796] = {.lex_state = 180}, - [1797] = {.lex_state = 180}, - [1798] = {.lex_state = 180}, - [1799] = {.lex_state = 180}, - [1800] = {.lex_state = 180}, - [1801] = {.lex_state = 180}, - [1802] = {.lex_state = 180}, - [1803] = {.lex_state = 180}, - [1804] = {.lex_state = 180}, - [1805] = {.lex_state = 180}, - [1806] = {.lex_state = 164}, - [1807] = {.lex_state = 180}, - [1808] = {.lex_state = 180}, - [1809] = {.lex_state = 147}, - [1810] = {.lex_state = 180}, - [1811] = {.lex_state = 180}, - [1812] = {.lex_state = 180}, - [1813] = {.lex_state = 180}, - [1814] = {.lex_state = 180}, - [1815] = {.lex_state = 164}, - [1816] = {.lex_state = 180}, - [1817] = {.lex_state = 180}, - [1818] = {.lex_state = 179}, - [1819] = {.lex_state = 180}, - [1820] = {.lex_state = 180}, - [1821] = {.lex_state = 180}, - [1822] = {.lex_state = 180}, - [1823] = {.lex_state = 180}, - [1824] = {.lex_state = 145}, - [1825] = {.lex_state = 180}, - [1826] = {.lex_state = 180}, - [1827] = {.lex_state = 180}, - [1828] = {.lex_state = 180}, - [1829] = {.lex_state = 180}, - [1830] = {.lex_state = 180}, - [1831] = {.lex_state = 180}, - [1832] = {.lex_state = 180}, - [1833] = {.lex_state = 147}, - [1834] = {.lex_state = 180}, - [1835] = {.lex_state = 180}, - [1836] = {.lex_state = 180}, - [1837] = {.lex_state = 180}, - [1838] = {.lex_state = 180}, - [1839] = {.lex_state = 180}, - [1840] = {.lex_state = 180}, - [1841] = {.lex_state = 180}, - [1842] = {.lex_state = 180}, - [1843] = {.lex_state = 180}, - [1844] = {.lex_state = 180}, - [1845] = {.lex_state = 180}, - [1846] = {.lex_state = 180}, - [1847] = {.lex_state = 180}, - [1848] = {.lex_state = 180}, - [1849] = {.lex_state = 180}, - [1850] = {.lex_state = 180}, - [1851] = {.lex_state = 180}, - [1852] = {.lex_state = 180}, - [1853] = {.lex_state = 180}, - [1854] = {.lex_state = 180}, - [1855] = {.lex_state = 180}, - [1856] = {.lex_state = 180}, - [1857] = {.lex_state = 180}, - [1858] = {.lex_state = 180}, - [1859] = {.lex_state = 180}, - [1860] = {.lex_state = 180}, - [1861] = {.lex_state = 164}, - [1862] = {.lex_state = 180}, - [1863] = {.lex_state = 147}, - [1864] = {.lex_state = 180}, - [1865] = {.lex_state = 180}, - [1866] = {.lex_state = 180}, - [1867] = {.lex_state = 180}, - [1868] = {.lex_state = 180}, - [1869] = {.lex_state = 180}, - [1870] = {.lex_state = 180}, - [1871] = {.lex_state = 180}, - [1872] = {.lex_state = 180}, - [1873] = {.lex_state = 180}, - [1874] = {.lex_state = 180}, - [1875] = {.lex_state = 180}, - [1876] = {.lex_state = 180}, - [1877] = {.lex_state = 180}, - [1878] = {.lex_state = 180}, - [1879] = {.lex_state = 180}, - [1880] = {.lex_state = 180}, - [1881] = {.lex_state = 180}, - [1882] = {.lex_state = 180}, - [1883] = {.lex_state = 180}, - [1884] = {.lex_state = 180}, - [1885] = {.lex_state = 180}, - [1886] = {.lex_state = 180}, - [1887] = {.lex_state = 180}, - [1888] = {.lex_state = 180}, - [1889] = {.lex_state = 145}, - [1890] = {.lex_state = 145}, - [1891] = {.lex_state = 146}, - [1892] = {.lex_state = 180}, - [1893] = {.lex_state = 145}, - [1894] = {.lex_state = 180}, - [1895] = {.lex_state = 146}, - [1896] = {.lex_state = 180}, - [1897] = {.lex_state = 154}, - [1898] = {.lex_state = 154}, - [1899] = {.lex_state = 180}, - [1900] = {.lex_state = 154}, - [1901] = {.lex_state = 154}, - [1902] = {.lex_state = 154}, - [1903] = {.lex_state = 154}, - [1904] = {.lex_state = 154}, - [1905] = {.lex_state = 146}, - [1906] = {.lex_state = 179}, - [1907] = {.lex_state = 179}, - [1908] = {.lex_state = 145}, - [1909] = {.lex_state = 145}, - [1910] = {.lex_state = 145}, - [1911] = {.lex_state = 179}, - [1912] = {.lex_state = 165}, - [1913] = {.lex_state = 179}, - [1914] = {.lex_state = 145}, - [1915] = {.lex_state = 165}, - [1916] = {.lex_state = 145}, - [1917] = {.lex_state = 179}, - [1918] = {.lex_state = 145}, - [1919] = {.lex_state = 145}, - [1920] = {.lex_state = 179}, - [1921] = {.lex_state = 145}, - [1922] = {.lex_state = 145}, - [1923] = {.lex_state = 179}, - [1924] = {.lex_state = 179}, - [1925] = {.lex_state = 179}, - [1926] = {.lex_state = 179}, - [1927] = {.lex_state = 179}, - [1928] = {.lex_state = 179}, - [1929] = {.lex_state = 179}, - [1930] = {.lex_state = 179}, - [1931] = {.lex_state = 179}, - [1932] = {.lex_state = 145}, - [1933] = {.lex_state = 179}, - [1934] = {.lex_state = 179}, - [1935] = {.lex_state = 145}, - [1936] = {.lex_state = 179}, - [1937] = {.lex_state = 179}, - [1938] = {.lex_state = 145}, - [1939] = {.lex_state = 145}, - [1940] = {.lex_state = 145}, - [1941] = {.lex_state = 145}, - [1942] = {.lex_state = 145}, - [1943] = {.lex_state = 145}, - [1944] = {.lex_state = 179}, - [1945] = {.lex_state = 179}, - [1946] = {.lex_state = 179}, - [1947] = {.lex_state = 145}, - [1948] = {.lex_state = 145}, - [1949] = {.lex_state = 145}, - [1950] = {.lex_state = 145}, - [1951] = {.lex_state = 145}, - [1952] = {.lex_state = 179}, - [1953] = {.lex_state = 145}, - [1954] = {.lex_state = 145}, - [1955] = {.lex_state = 145}, - [1956] = {.lex_state = 145}, - [1957] = {.lex_state = 145}, - [1958] = {.lex_state = 145}, - [1959] = {.lex_state = 145}, - [1960] = {.lex_state = 145}, - [1961] = {.lex_state = 145}, - [1962] = {.lex_state = 145}, - [1963] = {.lex_state = 145}, - [1964] = {.lex_state = 145}, - [1965] = {.lex_state = 145}, - [1966] = {.lex_state = 145}, - [1967] = {.lex_state = 129, .external_lex_state = 1}, - [1968] = {.lex_state = 145}, - [1969] = {.lex_state = 145}, - [1970] = {.lex_state = 179}, - [1971] = {.lex_state = 145}, - [1972] = {.lex_state = 179}, - [1973] = {.lex_state = 179}, - [1974] = {.lex_state = 145}, - [1975] = {.lex_state = 145}, - [1976] = {.lex_state = 145}, - [1977] = {.lex_state = 129, .external_lex_state = 1}, - [1978] = {.lex_state = 145}, - [1979] = {.lex_state = 145}, - [1980] = {.lex_state = 145}, - [1981] = {.lex_state = 145}, - [1982] = {.lex_state = 145}, - [1983] = {.lex_state = 145}, - [1984] = {.lex_state = 145}, + [1] = {.lex_state = 261, .external_lex_state = 1}, + [2] = {.lex_state = 261, .external_lex_state = 1}, + [3] = {.lex_state = 261, .external_lex_state = 1}, + [4] = {.lex_state = 261, .external_lex_state = 1}, + [5] = {.lex_state = 261, .external_lex_state = 1}, + [6] = {.lex_state = 261, .external_lex_state = 1}, + [7] = {.lex_state = 261, .external_lex_state = 1}, + [8] = {.lex_state = 261, .external_lex_state = 1}, + [9] = {.lex_state = 261, .external_lex_state = 1}, + [10] = {.lex_state = 138, .external_lex_state = 1}, + [11] = {.lex_state = 138, .external_lex_state = 1}, + [12] = {.lex_state = 138, .external_lex_state = 1}, + [13] = {.lex_state = 138, .external_lex_state = 1}, + [14] = {.lex_state = 138, .external_lex_state = 1}, + [15] = {.lex_state = 138, .external_lex_state = 1}, + [16] = {.lex_state = 138, .external_lex_state = 1}, + [17] = {.lex_state = 138, .external_lex_state = 1}, + [18] = {.lex_state = 138, .external_lex_state = 1}, + [19] = {.lex_state = 138, .external_lex_state = 1}, + [20] = {.lex_state = 138, .external_lex_state = 1}, + [21] = {.lex_state = 138, .external_lex_state = 1}, + [22] = {.lex_state = 138, .external_lex_state = 1}, + [23] = {.lex_state = 138, .external_lex_state = 1}, + [24] = {.lex_state = 138, .external_lex_state = 1}, + [25] = {.lex_state = 138, .external_lex_state = 1}, + [26] = {.lex_state = 138, .external_lex_state = 1}, + [27] = {.lex_state = 138, .external_lex_state = 1}, + [28] = {.lex_state = 138, .external_lex_state = 1}, + [29] = {.lex_state = 261, .external_lex_state = 1}, + [30] = {.lex_state = 261, .external_lex_state = 1}, + [31] = {.lex_state = 261, .external_lex_state = 1}, + [32] = {.lex_state = 261, .external_lex_state = 1}, + [33] = {.lex_state = 140, .external_lex_state = 1}, + [34] = {.lex_state = 140, .external_lex_state = 1}, + [35] = {.lex_state = 261, .external_lex_state = 1}, + [36] = {.lex_state = 261, .external_lex_state = 1}, + [37] = {.lex_state = 261, .external_lex_state = 1}, + [38] = {.lex_state = 261, .external_lex_state = 1}, + [39] = {.lex_state = 261, .external_lex_state = 1}, + [40] = {.lex_state = 261, .external_lex_state = 1}, + [41] = {.lex_state = 261, .external_lex_state = 1}, + [42] = {.lex_state = 261, .external_lex_state = 1}, + [43] = {.lex_state = 261, .external_lex_state = 1}, + [44] = {.lex_state = 261, .external_lex_state = 1}, + [45] = {.lex_state = 261, .external_lex_state = 1}, + [46] = {.lex_state = 261, .external_lex_state = 1}, + [47] = {.lex_state = 261, .external_lex_state = 1}, + [48] = {.lex_state = 261, .external_lex_state = 1}, + [49] = {.lex_state = 261, .external_lex_state = 1}, + [50] = {.lex_state = 261, .external_lex_state = 1}, + [51] = {.lex_state = 261, .external_lex_state = 1}, + [52] = {.lex_state = 261, .external_lex_state = 1}, + [53] = {.lex_state = 261, .external_lex_state = 1}, + [54] = {.lex_state = 261, .external_lex_state = 1}, + [55] = {.lex_state = 261, .external_lex_state = 1}, + [56] = {.lex_state = 261, .external_lex_state = 1}, + [57] = {.lex_state = 261, .external_lex_state = 1}, + [58] = {.lex_state = 261, .external_lex_state = 1}, + [59] = {.lex_state = 261, .external_lex_state = 1}, + [60] = {.lex_state = 261, .external_lex_state = 1}, + [61] = {.lex_state = 261, .external_lex_state = 1}, + [62] = {.lex_state = 261, .external_lex_state = 1}, + [63] = {.lex_state = 261, .external_lex_state = 1}, + [64] = {.lex_state = 261, .external_lex_state = 1}, + [65] = {.lex_state = 261, .external_lex_state = 1}, + [66] = {.lex_state = 261, .external_lex_state = 1}, + [67] = {.lex_state = 261, .external_lex_state = 1}, + [68] = {.lex_state = 261, .external_lex_state = 1}, + [69] = {.lex_state = 261, .external_lex_state = 1}, + [70] = {.lex_state = 261, .external_lex_state = 1}, + [71] = {.lex_state = 261, .external_lex_state = 1}, + [72] = {.lex_state = 261, .external_lex_state = 1}, + [73] = {.lex_state = 261, .external_lex_state = 1}, + [74] = {.lex_state = 261, .external_lex_state = 1}, + [75] = {.lex_state = 261, .external_lex_state = 1}, + [76] = {.lex_state = 140, .external_lex_state = 1}, + [77] = {.lex_state = 138, .external_lex_state = 1}, + [78] = {.lex_state = 138, .external_lex_state = 1}, + [79] = {.lex_state = 138, .external_lex_state = 1}, + [80] = {.lex_state = 138, .external_lex_state = 1}, + [81] = {.lex_state = 138, .external_lex_state = 1}, + [82] = {.lex_state = 261, .external_lex_state = 1}, + [83] = {.lex_state = 261, .external_lex_state = 1}, + [84] = {.lex_state = 140, .external_lex_state = 1}, + [85] = {.lex_state = 261, .external_lex_state = 1}, + [86] = {.lex_state = 261, .external_lex_state = 1}, + [87] = {.lex_state = 140, .external_lex_state = 1}, + [88] = {.lex_state = 140, .external_lex_state = 1}, + [89] = {.lex_state = 261, .external_lex_state = 1}, + [90] = {.lex_state = 261, .external_lex_state = 1}, + [91] = {.lex_state = 261, .external_lex_state = 1}, + [92] = {.lex_state = 261, .external_lex_state = 1}, + [93] = {.lex_state = 261, .external_lex_state = 1}, + [94] = {.lex_state = 140, .external_lex_state = 1}, + [95] = {.lex_state = 261, .external_lex_state = 1}, + [96] = {.lex_state = 140, .external_lex_state = 1}, + [97] = {.lex_state = 139, .external_lex_state = 1}, + [98] = {.lex_state = 139, .external_lex_state = 1}, + [99] = {.lex_state = 139, .external_lex_state = 1}, + [100] = {.lex_state = 139, .external_lex_state = 1}, + [101] = {.lex_state = 139, .external_lex_state = 1}, + [102] = {.lex_state = 139, .external_lex_state = 1}, + [103] = {.lex_state = 139, .external_lex_state = 1}, + [104] = {.lex_state = 139, .external_lex_state = 1}, + [105] = {.lex_state = 139, .external_lex_state = 1}, + [106] = {.lex_state = 139, .external_lex_state = 1}, + [107] = {.lex_state = 139, .external_lex_state = 1}, + [108] = {.lex_state = 139, .external_lex_state = 1}, + [109] = {.lex_state = 139, .external_lex_state = 1}, + [110] = {.lex_state = 139, .external_lex_state = 1}, + [111] = {.lex_state = 139, .external_lex_state = 1}, + [112] = {.lex_state = 139, .external_lex_state = 1}, + [113] = {.lex_state = 139, .external_lex_state = 1}, + [114] = {.lex_state = 139, .external_lex_state = 1}, + [115] = {.lex_state = 139, .external_lex_state = 1}, + [116] = {.lex_state = 139, .external_lex_state = 1}, + [117] = {.lex_state = 141, .external_lex_state = 1}, + [118] = {.lex_state = 141, .external_lex_state = 1}, + [119] = {.lex_state = 141, .external_lex_state = 1}, + [120] = {.lex_state = 141, .external_lex_state = 1}, + [121] = {.lex_state = 139, .external_lex_state = 1}, + [122] = {.lex_state = 139, .external_lex_state = 1}, + [123] = {.lex_state = 196}, + [124] = {.lex_state = 196}, + [125] = {.lex_state = 196}, + [126] = {.lex_state = 196}, + [127] = {.lex_state = 196}, + [128] = {.lex_state = 196}, + [129] = {.lex_state = 196}, + [130] = {.lex_state = 196}, + [131] = {.lex_state = 196}, + [132] = {.lex_state = 196}, + [133] = {.lex_state = 196}, + [134] = {.lex_state = 196}, + [135] = {.lex_state = 196}, + [136] = {.lex_state = 196}, + [137] = {.lex_state = 196}, + [138] = {.lex_state = 132, .external_lex_state = 1}, + [139] = {.lex_state = 131, .external_lex_state = 1}, + [140] = {.lex_state = 195}, + [141] = {.lex_state = 154}, + [142] = {.lex_state = 195}, + [143] = {.lex_state = 195}, + [144] = {.lex_state = 195}, + [145] = {.lex_state = 195}, + [146] = {.lex_state = 195}, + [147] = {.lex_state = 195}, + [148] = {.lex_state = 195}, + [149] = {.lex_state = 195}, + [150] = {.lex_state = 195}, + [151] = {.lex_state = 195}, + [152] = {.lex_state = 195}, + [153] = {.lex_state = 195}, + [154] = {.lex_state = 195}, + [155] = {.lex_state = 195}, + [156] = {.lex_state = 195}, + [157] = {.lex_state = 154}, + [158] = {.lex_state = 195}, + [159] = {.lex_state = 154}, + [160] = {.lex_state = 195}, + [161] = {.lex_state = 195}, + [162] = {.lex_state = 133, .external_lex_state = 1}, + [163] = {.lex_state = 131, .external_lex_state = 1}, + [164] = {.lex_state = 132, .external_lex_state = 1}, + [165] = {.lex_state = 139, .external_lex_state = 1}, + [166] = {.lex_state = 139, .external_lex_state = 1}, + [167] = {.lex_state = 139, .external_lex_state = 1}, + [168] = {.lex_state = 139, .external_lex_state = 1}, + [169] = {.lex_state = 139, .external_lex_state = 1}, + [170] = {.lex_state = 139, .external_lex_state = 1}, + [171] = {.lex_state = 139, .external_lex_state = 1}, + [172] = {.lex_state = 139, .external_lex_state = 1}, + [173] = {.lex_state = 139, .external_lex_state = 1}, + [174] = {.lex_state = 139, .external_lex_state = 1}, + [175] = {.lex_state = 139, .external_lex_state = 1}, + [176] = {.lex_state = 139, .external_lex_state = 1}, + [177] = {.lex_state = 139, .external_lex_state = 1}, + [178] = {.lex_state = 139, .external_lex_state = 1}, + [179] = {.lex_state = 139, .external_lex_state = 1}, + [180] = {.lex_state = 139, .external_lex_state = 1}, + [181] = {.lex_state = 139, .external_lex_state = 1}, + [182] = {.lex_state = 139, .external_lex_state = 1}, + [183] = {.lex_state = 139, .external_lex_state = 1}, + [184] = {.lex_state = 139, .external_lex_state = 1}, + [185] = {.lex_state = 139, .external_lex_state = 1}, + [186] = {.lex_state = 139, .external_lex_state = 1}, + [187] = {.lex_state = 139, .external_lex_state = 1}, + [188] = {.lex_state = 139, .external_lex_state = 1}, + [189] = {.lex_state = 139, .external_lex_state = 1}, + [190] = {.lex_state = 139, .external_lex_state = 1}, + [191] = {.lex_state = 139, .external_lex_state = 1}, + [192] = {.lex_state = 139, .external_lex_state = 1}, + [193] = {.lex_state = 139, .external_lex_state = 1}, + [194] = {.lex_state = 139, .external_lex_state = 1}, + [195] = {.lex_state = 139, .external_lex_state = 1}, + [196] = {.lex_state = 139, .external_lex_state = 1}, + [197] = {.lex_state = 139, .external_lex_state = 1}, + [198] = {.lex_state = 139, .external_lex_state = 1}, + [199] = {.lex_state = 139, .external_lex_state = 1}, + [200] = {.lex_state = 139, .external_lex_state = 1}, + [201] = {.lex_state = 139, .external_lex_state = 1}, + [202] = {.lex_state = 139, .external_lex_state = 1}, + [203] = {.lex_state = 139, .external_lex_state = 1}, + [204] = {.lex_state = 139, .external_lex_state = 1}, + [205] = {.lex_state = 139, .external_lex_state = 1}, + [206] = {.lex_state = 139, .external_lex_state = 1}, + [207] = {.lex_state = 139, .external_lex_state = 1}, + [208] = {.lex_state = 139, .external_lex_state = 1}, + [209] = {.lex_state = 139, .external_lex_state = 1}, + [210] = {.lex_state = 139, .external_lex_state = 1}, + [211] = {.lex_state = 139, .external_lex_state = 1}, + [212] = {.lex_state = 139, .external_lex_state = 1}, + [213] = {.lex_state = 139, .external_lex_state = 1}, + [214] = {.lex_state = 139, .external_lex_state = 1}, + [215] = {.lex_state = 139, .external_lex_state = 1}, + [216] = {.lex_state = 139, .external_lex_state = 1}, + [217] = {.lex_state = 139, .external_lex_state = 1}, + [218] = {.lex_state = 139, .external_lex_state = 1}, + [219] = {.lex_state = 139, .external_lex_state = 1}, + [220] = {.lex_state = 139, .external_lex_state = 1}, + [221] = {.lex_state = 139, .external_lex_state = 1}, + [222] = {.lex_state = 139, .external_lex_state = 1}, + [223] = {.lex_state = 139, .external_lex_state = 1}, + [224] = {.lex_state = 139, .external_lex_state = 1}, + [225] = {.lex_state = 139, .external_lex_state = 1}, + [226] = {.lex_state = 139, .external_lex_state = 1}, + [227] = {.lex_state = 139, .external_lex_state = 1}, + [228] = {.lex_state = 139, .external_lex_state = 1}, + [229] = {.lex_state = 139, .external_lex_state = 1}, + [230] = {.lex_state = 139, .external_lex_state = 1}, + [231] = {.lex_state = 139, .external_lex_state = 1}, + [232] = {.lex_state = 139, .external_lex_state = 1}, + [233] = {.lex_state = 139, .external_lex_state = 1}, + [234] = {.lex_state = 139, .external_lex_state = 1}, + [235] = {.lex_state = 139, .external_lex_state = 1}, + [236] = {.lex_state = 139, .external_lex_state = 1}, + [237] = {.lex_state = 139, .external_lex_state = 1}, + [238] = {.lex_state = 139, .external_lex_state = 1}, + [239] = {.lex_state = 139, .external_lex_state = 1}, + [240] = {.lex_state = 139, .external_lex_state = 1}, + [241] = {.lex_state = 139, .external_lex_state = 1}, + [242] = {.lex_state = 139, .external_lex_state = 1}, + [243] = {.lex_state = 139, .external_lex_state = 1}, + [244] = {.lex_state = 139, .external_lex_state = 1}, + [245] = {.lex_state = 139, .external_lex_state = 1}, + [246] = {.lex_state = 139, .external_lex_state = 1}, + [247] = {.lex_state = 139, .external_lex_state = 1}, + [248] = {.lex_state = 139, .external_lex_state = 1}, + [249] = {.lex_state = 139, .external_lex_state = 1}, + [250] = {.lex_state = 139, .external_lex_state = 1}, + [251] = {.lex_state = 139, .external_lex_state = 1}, + [252] = {.lex_state = 139, .external_lex_state = 1}, + [253] = {.lex_state = 139, .external_lex_state = 1}, + [254] = {.lex_state = 139, .external_lex_state = 1}, + [255] = {.lex_state = 139, .external_lex_state = 1}, + [256] = {.lex_state = 139, .external_lex_state = 1}, + [257] = {.lex_state = 139, .external_lex_state = 1}, + [258] = {.lex_state = 139, .external_lex_state = 1}, + [259] = {.lex_state = 139, .external_lex_state = 1}, + [260] = {.lex_state = 139, .external_lex_state = 1}, + [261] = {.lex_state = 139, .external_lex_state = 1}, + [262] = {.lex_state = 139, .external_lex_state = 1}, + [263] = {.lex_state = 139, .external_lex_state = 1}, + [264] = {.lex_state = 139, .external_lex_state = 1}, + [265] = {.lex_state = 139, .external_lex_state = 1}, + [266] = {.lex_state = 139, .external_lex_state = 1}, + [267] = {.lex_state = 139, .external_lex_state = 1}, + [268] = {.lex_state = 139, .external_lex_state = 1}, + [269] = {.lex_state = 139, .external_lex_state = 1}, + [270] = {.lex_state = 139, .external_lex_state = 1}, + [271] = {.lex_state = 139, .external_lex_state = 1}, + [272] = {.lex_state = 139, .external_lex_state = 1}, + [273] = {.lex_state = 139, .external_lex_state = 1}, + [274] = {.lex_state = 139, .external_lex_state = 1}, + [275] = {.lex_state = 139, .external_lex_state = 1}, + [276] = {.lex_state = 139, .external_lex_state = 1}, + [277] = {.lex_state = 139, .external_lex_state = 1}, + [278] = {.lex_state = 139, .external_lex_state = 1}, + [279] = {.lex_state = 139, .external_lex_state = 1}, + [280] = {.lex_state = 139, .external_lex_state = 1}, + [281] = {.lex_state = 139, .external_lex_state = 1}, + [282] = {.lex_state = 139, .external_lex_state = 1}, + [283] = {.lex_state = 139, .external_lex_state = 1}, + [284] = {.lex_state = 139, .external_lex_state = 1}, + [285] = {.lex_state = 139, .external_lex_state = 1}, + [286] = {.lex_state = 139, .external_lex_state = 1}, + [287] = {.lex_state = 139, .external_lex_state = 1}, + [288] = {.lex_state = 139, .external_lex_state = 1}, + [289] = {.lex_state = 139, .external_lex_state = 1}, + [290] = {.lex_state = 139, .external_lex_state = 1}, + [291] = {.lex_state = 139, .external_lex_state = 1}, + [292] = {.lex_state = 139, .external_lex_state = 1}, + [293] = {.lex_state = 139, .external_lex_state = 1}, + [294] = {.lex_state = 139, .external_lex_state = 1}, + [295] = {.lex_state = 139, .external_lex_state = 1}, + [296] = {.lex_state = 139, .external_lex_state = 1}, + [297] = {.lex_state = 139, .external_lex_state = 1}, + [298] = {.lex_state = 139, .external_lex_state = 1}, + [299] = {.lex_state = 139, .external_lex_state = 1}, + [300] = {.lex_state = 139, .external_lex_state = 1}, + [301] = {.lex_state = 139, .external_lex_state = 1}, + [302] = {.lex_state = 139, .external_lex_state = 1}, + [303] = {.lex_state = 139, .external_lex_state = 1}, + [304] = {.lex_state = 139, .external_lex_state = 1}, + [305] = {.lex_state = 139, .external_lex_state = 1}, + [306] = {.lex_state = 139, .external_lex_state = 1}, + [307] = {.lex_state = 139, .external_lex_state = 1}, + [308] = {.lex_state = 139, .external_lex_state = 1}, + [309] = {.lex_state = 139, .external_lex_state = 1}, + [310] = {.lex_state = 139, .external_lex_state = 1}, + [311] = {.lex_state = 139, .external_lex_state = 1}, + [312] = {.lex_state = 139, .external_lex_state = 1}, + [313] = {.lex_state = 139, .external_lex_state = 1}, + [314] = {.lex_state = 139, .external_lex_state = 1}, + [315] = {.lex_state = 138, .external_lex_state = 1}, + [316] = {.lex_state = 138, .external_lex_state = 1}, + [317] = {.lex_state = 142, .external_lex_state = 1}, + [318] = {.lex_state = 138, .external_lex_state = 1}, + [319] = {.lex_state = 142, .external_lex_state = 1}, + [320] = {.lex_state = 142, .external_lex_state = 1}, + [321] = {.lex_state = 142, .external_lex_state = 1}, + [322] = {.lex_state = 142, .external_lex_state = 1}, + [323] = {.lex_state = 142, .external_lex_state = 1}, + [324] = {.lex_state = 138, .external_lex_state = 1}, + [325] = {.lex_state = 142, .external_lex_state = 1}, + [326] = {.lex_state = 142, .external_lex_state = 1}, + [327] = {.lex_state = 142, .external_lex_state = 1}, + [328] = {.lex_state = 142, .external_lex_state = 1}, + [329] = {.lex_state = 142, .external_lex_state = 1}, + [330] = {.lex_state = 142, .external_lex_state = 1}, + [331] = {.lex_state = 142, .external_lex_state = 1}, + [332] = {.lex_state = 142, .external_lex_state = 1}, + [333] = {.lex_state = 142, .external_lex_state = 1}, + [334] = {.lex_state = 142, .external_lex_state = 1}, + [335] = {.lex_state = 136}, + [336] = {.lex_state = 136}, + [337] = {.lex_state = 142, .external_lex_state = 1}, + [338] = {.lex_state = 142, .external_lex_state = 1}, + [339] = {.lex_state = 138, .external_lex_state = 1}, + [340] = {.lex_state = 261, .external_lex_state = 1}, + [341] = {.lex_state = 261, .external_lex_state = 1}, + [342] = {.lex_state = 261, .external_lex_state = 1}, + [343] = {.lex_state = 261, .external_lex_state = 1}, + [344] = {.lex_state = 138, .external_lex_state = 1}, + [345] = {.lex_state = 140, .external_lex_state = 1}, + [346] = {.lex_state = 140, .external_lex_state = 1}, + [347] = {.lex_state = 138, .external_lex_state = 1}, + [348] = {.lex_state = 138, .external_lex_state = 1}, + [349] = {.lex_state = 138, .external_lex_state = 1}, + [350] = {.lex_state = 138, .external_lex_state = 1}, + [351] = {.lex_state = 138, .external_lex_state = 1}, + [352] = {.lex_state = 138, .external_lex_state = 1}, + [353] = {.lex_state = 138, .external_lex_state = 1}, + [354] = {.lex_state = 138, .external_lex_state = 1}, + [355] = {.lex_state = 138, .external_lex_state = 1}, + [356] = {.lex_state = 138, .external_lex_state = 1}, + [357] = {.lex_state = 138, .external_lex_state = 1}, + [358] = {.lex_state = 138, .external_lex_state = 1}, + [359] = {.lex_state = 138, .external_lex_state = 1}, + [360] = {.lex_state = 138, .external_lex_state = 1}, + [361] = {.lex_state = 261, .external_lex_state = 1}, + [362] = {.lex_state = 138, .external_lex_state = 1}, + [363] = {.lex_state = 261, .external_lex_state = 1}, + [364] = {.lex_state = 138, .external_lex_state = 1}, + [365] = {.lex_state = 138, .external_lex_state = 1}, + [366] = {.lex_state = 138, .external_lex_state = 1}, + [367] = {.lex_state = 138, .external_lex_state = 1}, + [368] = {.lex_state = 138, .external_lex_state = 1}, + [369] = {.lex_state = 138, .external_lex_state = 1}, + [370] = {.lex_state = 138, .external_lex_state = 1}, + [371] = {.lex_state = 138, .external_lex_state = 1}, + [372] = {.lex_state = 138, .external_lex_state = 1}, + [373] = {.lex_state = 138, .external_lex_state = 1}, + [374] = {.lex_state = 138, .external_lex_state = 1}, + [375] = {.lex_state = 138, .external_lex_state = 1}, + [376] = {.lex_state = 138, .external_lex_state = 1}, + [377] = {.lex_state = 138, .external_lex_state = 1}, + [378] = {.lex_state = 138, .external_lex_state = 1}, + [379] = {.lex_state = 138, .external_lex_state = 1}, + [380] = {.lex_state = 138, .external_lex_state = 1}, + [381] = {.lex_state = 138, .external_lex_state = 1}, + [382] = {.lex_state = 138, .external_lex_state = 1}, + [383] = {.lex_state = 138, .external_lex_state = 1}, + [384] = {.lex_state = 138, .external_lex_state = 1}, + [385] = {.lex_state = 138, .external_lex_state = 1}, + [386] = {.lex_state = 138, .external_lex_state = 1}, + [387] = {.lex_state = 138, .external_lex_state = 1}, + [388] = {.lex_state = 138, .external_lex_state = 1}, + [389] = {.lex_state = 138, .external_lex_state = 1}, + [390] = {.lex_state = 138, .external_lex_state = 1}, + [391] = {.lex_state = 138, .external_lex_state = 1}, + [392] = {.lex_state = 138, .external_lex_state = 1}, + [393] = {.lex_state = 138, .external_lex_state = 1}, + [394] = {.lex_state = 138, .external_lex_state = 1}, + [395] = {.lex_state = 138, .external_lex_state = 1}, + [396] = {.lex_state = 138, .external_lex_state = 1}, + [397] = {.lex_state = 138, .external_lex_state = 1}, + [398] = {.lex_state = 138, .external_lex_state = 1}, + [399] = {.lex_state = 138, .external_lex_state = 1}, + [400] = {.lex_state = 138, .external_lex_state = 1}, + [401] = {.lex_state = 138, .external_lex_state = 1}, + [402] = {.lex_state = 138, .external_lex_state = 1}, + [403] = {.lex_state = 138, .external_lex_state = 1}, + [404] = {.lex_state = 138, .external_lex_state = 1}, + [405] = {.lex_state = 138, .external_lex_state = 1}, + [406] = {.lex_state = 138, .external_lex_state = 1}, + [407] = {.lex_state = 138, .external_lex_state = 1}, + [408] = {.lex_state = 138, .external_lex_state = 1}, + [409] = {.lex_state = 138, .external_lex_state = 1}, + [410] = {.lex_state = 138, .external_lex_state = 1}, + [411] = {.lex_state = 140, .external_lex_state = 1}, + [412] = {.lex_state = 140, .external_lex_state = 1}, + [413] = {.lex_state = 138, .external_lex_state = 1}, + [414] = {.lex_state = 138, .external_lex_state = 1}, + [415] = {.lex_state = 138, .external_lex_state = 1}, + [416] = {.lex_state = 138, .external_lex_state = 1}, + [417] = {.lex_state = 138, .external_lex_state = 1}, + [418] = {.lex_state = 138, .external_lex_state = 1}, + [419] = {.lex_state = 138, .external_lex_state = 1}, + [420] = {.lex_state = 138, .external_lex_state = 1}, + [421] = {.lex_state = 138, .external_lex_state = 1}, + [422] = {.lex_state = 138, .external_lex_state = 1}, + [423] = {.lex_state = 138, .external_lex_state = 1}, + [424] = {.lex_state = 138, .external_lex_state = 1}, + [425] = {.lex_state = 138, .external_lex_state = 1}, + [426] = {.lex_state = 138, .external_lex_state = 1}, + [427] = {.lex_state = 138, .external_lex_state = 1}, + [428] = {.lex_state = 138, .external_lex_state = 1}, + [429] = {.lex_state = 138, .external_lex_state = 1}, + [430] = {.lex_state = 138, .external_lex_state = 1}, + [431] = {.lex_state = 138, .external_lex_state = 1}, + [432] = {.lex_state = 138, .external_lex_state = 1}, + [433] = {.lex_state = 138, .external_lex_state = 1}, + [434] = {.lex_state = 138, .external_lex_state = 1}, + [435] = {.lex_state = 138, .external_lex_state = 1}, + [436] = {.lex_state = 138, .external_lex_state = 1}, + [437] = {.lex_state = 138, .external_lex_state = 1}, + [438] = {.lex_state = 138, .external_lex_state = 1}, + [439] = {.lex_state = 138, .external_lex_state = 1}, + [440] = {.lex_state = 138, .external_lex_state = 1}, + [441] = {.lex_state = 138, .external_lex_state = 1}, + [442] = {.lex_state = 138, .external_lex_state = 1}, + [443] = {.lex_state = 138, .external_lex_state = 1}, + [444] = {.lex_state = 138, .external_lex_state = 1}, + [445] = {.lex_state = 138, .external_lex_state = 1}, + [446] = {.lex_state = 138, .external_lex_state = 1}, + [447] = {.lex_state = 138, .external_lex_state = 1}, + [448] = {.lex_state = 138, .external_lex_state = 1}, + [449] = {.lex_state = 138, .external_lex_state = 1}, + [450] = {.lex_state = 138, .external_lex_state = 1}, + [451] = {.lex_state = 138, .external_lex_state = 1}, + [452] = {.lex_state = 138, .external_lex_state = 1}, + [453] = {.lex_state = 138, .external_lex_state = 1}, + [454] = {.lex_state = 138, .external_lex_state = 1}, + [455] = {.lex_state = 138, .external_lex_state = 1}, + [456] = {.lex_state = 261, .external_lex_state = 1}, + [457] = {.lex_state = 138, .external_lex_state = 1}, + [458] = {.lex_state = 138, .external_lex_state = 1}, + [459] = {.lex_state = 138, .external_lex_state = 1}, + [460] = {.lex_state = 138, .external_lex_state = 1}, + [461] = {.lex_state = 138, .external_lex_state = 1}, + [462] = {.lex_state = 138, .external_lex_state = 1}, + [463] = {.lex_state = 138, .external_lex_state = 1}, + [464] = {.lex_state = 138, .external_lex_state = 1}, + [465] = {.lex_state = 138, .external_lex_state = 1}, + [466] = {.lex_state = 138, .external_lex_state = 1}, + [467] = {.lex_state = 138, .external_lex_state = 1}, + [468] = {.lex_state = 261, .external_lex_state = 1}, + [469] = {.lex_state = 138, .external_lex_state = 1}, + [470] = {.lex_state = 138, .external_lex_state = 1}, + [471] = {.lex_state = 138, .external_lex_state = 1}, + [472] = {.lex_state = 138, .external_lex_state = 1}, + [473] = {.lex_state = 142, .external_lex_state = 1}, + [474] = {.lex_state = 142, .external_lex_state = 1}, + [475] = {.lex_state = 261, .external_lex_state = 1}, + [476] = {.lex_state = 142, .external_lex_state = 1}, + [477] = {.lex_state = 142, .external_lex_state = 1}, + [478] = {.lex_state = 261, .external_lex_state = 1}, + [479] = {.lex_state = 261, .external_lex_state = 1}, + [480] = {.lex_state = 142, .external_lex_state = 1}, + [481] = {.lex_state = 142, .external_lex_state = 1}, + [482] = {.lex_state = 142, .external_lex_state = 1}, + [483] = {.lex_state = 140, .external_lex_state = 1}, + [484] = {.lex_state = 261, .external_lex_state = 1}, + [485] = {.lex_state = 261, .external_lex_state = 1}, + [486] = {.lex_state = 138, .external_lex_state = 1}, + [487] = {.lex_state = 138, .external_lex_state = 1}, + [488] = {.lex_state = 138, .external_lex_state = 1}, + [489] = {.lex_state = 138, .external_lex_state = 1}, + [490] = {.lex_state = 138, .external_lex_state = 1}, + [491] = {.lex_state = 138, .external_lex_state = 1}, + [492] = {.lex_state = 138, .external_lex_state = 1}, + [493] = {.lex_state = 138, .external_lex_state = 1}, + [494] = {.lex_state = 138, .external_lex_state = 1}, + [495] = {.lex_state = 138, .external_lex_state = 1}, + [496] = {.lex_state = 138, .external_lex_state = 1}, + [497] = {.lex_state = 138, .external_lex_state = 1}, + [498] = {.lex_state = 138, .external_lex_state = 1}, + [499] = {.lex_state = 138, .external_lex_state = 1}, + [500] = {.lex_state = 138, .external_lex_state = 1}, + [501] = {.lex_state = 138, .external_lex_state = 1}, + [502] = {.lex_state = 138, .external_lex_state = 1}, + [503] = {.lex_state = 138, .external_lex_state = 1}, + [504] = {.lex_state = 138, .external_lex_state = 1}, + [505] = {.lex_state = 138, .external_lex_state = 1}, + [506] = {.lex_state = 138, .external_lex_state = 1}, + [507] = {.lex_state = 138, .external_lex_state = 1}, + [508] = {.lex_state = 261, .external_lex_state = 1}, + [509] = {.lex_state = 138, .external_lex_state = 1}, + [510] = {.lex_state = 138, .external_lex_state = 1}, + [511] = {.lex_state = 138, .external_lex_state = 1}, + [512] = {.lex_state = 138, .external_lex_state = 1}, + [513] = {.lex_state = 138, .external_lex_state = 1}, + [514] = {.lex_state = 140, .external_lex_state = 1}, + [515] = {.lex_state = 138, .external_lex_state = 1}, + [516] = {.lex_state = 138, .external_lex_state = 1}, + [517] = {.lex_state = 138, .external_lex_state = 1}, + [518] = {.lex_state = 138, .external_lex_state = 1}, + [519] = {.lex_state = 138, .external_lex_state = 1}, + [520] = {.lex_state = 138, .external_lex_state = 1}, + [521] = {.lex_state = 138, .external_lex_state = 1}, + [522] = {.lex_state = 138, .external_lex_state = 1}, + [523] = {.lex_state = 138, .external_lex_state = 1}, + [524] = {.lex_state = 138, .external_lex_state = 1}, + [525] = {.lex_state = 138, .external_lex_state = 1}, + [526] = {.lex_state = 142, .external_lex_state = 1}, + [527] = {.lex_state = 138, .external_lex_state = 1}, + [528] = {.lex_state = 138, .external_lex_state = 1}, + [529] = {.lex_state = 138, .external_lex_state = 1}, + [530] = {.lex_state = 138, .external_lex_state = 1}, + [531] = {.lex_state = 138, .external_lex_state = 1}, + [532] = {.lex_state = 138, .external_lex_state = 1}, + [533] = {.lex_state = 142, .external_lex_state = 1}, + [534] = {.lex_state = 142, .external_lex_state = 1}, + [535] = {.lex_state = 138, .external_lex_state = 1}, + [536] = {.lex_state = 138, .external_lex_state = 1}, + [537] = {.lex_state = 138, .external_lex_state = 1}, + [538] = {.lex_state = 138, .external_lex_state = 1}, + [539] = {.lex_state = 138, .external_lex_state = 1}, + [540] = {.lex_state = 138, .external_lex_state = 1}, + [541] = {.lex_state = 142, .external_lex_state = 1}, + [542] = {.lex_state = 142, .external_lex_state = 1}, + [543] = {.lex_state = 138, .external_lex_state = 1}, + [544] = {.lex_state = 142, .external_lex_state = 1}, + [545] = {.lex_state = 140, .external_lex_state = 1}, + [546] = {.lex_state = 142, .external_lex_state = 1}, + [547] = {.lex_state = 142, .external_lex_state = 1}, + [548] = {.lex_state = 142, .external_lex_state = 1}, + [549] = {.lex_state = 140, .external_lex_state = 1}, + [550] = {.lex_state = 261, .external_lex_state = 1}, + [551] = {.lex_state = 261, .external_lex_state = 1}, + [552] = {.lex_state = 261, .external_lex_state = 1}, + [553] = {.lex_state = 261, .external_lex_state = 1}, + [554] = {.lex_state = 261, .external_lex_state = 1}, + [555] = {.lex_state = 261, .external_lex_state = 1}, + [556] = {.lex_state = 261, .external_lex_state = 1}, + [557] = {.lex_state = 140, .external_lex_state = 1}, + [558] = {.lex_state = 140, .external_lex_state = 1}, + [559] = {.lex_state = 261, .external_lex_state = 1}, + [560] = {.lex_state = 261, .external_lex_state = 1}, + [561] = {.lex_state = 261, .external_lex_state = 1}, + [562] = {.lex_state = 261, .external_lex_state = 1}, + [563] = {.lex_state = 261, .external_lex_state = 1}, + [564] = {.lex_state = 261, .external_lex_state = 1}, + [565] = {.lex_state = 261, .external_lex_state = 1}, + [566] = {.lex_state = 261, .external_lex_state = 1}, + [567] = {.lex_state = 140, .external_lex_state = 1}, + [568] = {.lex_state = 140, .external_lex_state = 1}, + [569] = {.lex_state = 261, .external_lex_state = 1}, + [570] = {.lex_state = 261, .external_lex_state = 1}, + [571] = {.lex_state = 140, .external_lex_state = 1}, + [572] = {.lex_state = 140, .external_lex_state = 1}, + [573] = {.lex_state = 261, .external_lex_state = 1}, + [574] = {.lex_state = 261, .external_lex_state = 1}, + [575] = {.lex_state = 261, .external_lex_state = 1}, + [576] = {.lex_state = 140, .external_lex_state = 1}, + [577] = {.lex_state = 140, .external_lex_state = 1}, + [578] = {.lex_state = 140, .external_lex_state = 1}, + [579] = {.lex_state = 140, .external_lex_state = 1}, + [580] = {.lex_state = 261, .external_lex_state = 1}, + [581] = {.lex_state = 261, .external_lex_state = 1}, + [582] = {.lex_state = 140, .external_lex_state = 1}, + [583] = {.lex_state = 140, .external_lex_state = 1}, + [584] = {.lex_state = 140, .external_lex_state = 1}, + [585] = {.lex_state = 140, .external_lex_state = 1}, + [586] = {.lex_state = 261, .external_lex_state = 1}, + [587] = {.lex_state = 140, .external_lex_state = 1}, + [588] = {.lex_state = 140, .external_lex_state = 1}, + [589] = {.lex_state = 140, .external_lex_state = 1}, + [590] = {.lex_state = 261, .external_lex_state = 1}, + [591] = {.lex_state = 140, .external_lex_state = 1}, + [592] = {.lex_state = 140, .external_lex_state = 1}, + [593] = {.lex_state = 140, .external_lex_state = 1}, + [594] = {.lex_state = 140, .external_lex_state = 1}, + [595] = {.lex_state = 140, .external_lex_state = 1}, + [596] = {.lex_state = 261, .external_lex_state = 1}, + [597] = {.lex_state = 140, .external_lex_state = 1}, + [598] = {.lex_state = 140, .external_lex_state = 1}, + [599] = {.lex_state = 261, .external_lex_state = 1}, + [600] = {.lex_state = 261, .external_lex_state = 1}, + [601] = {.lex_state = 261, .external_lex_state = 1}, + [602] = {.lex_state = 140, .external_lex_state = 1}, + [603] = {.lex_state = 261, .external_lex_state = 1}, + [604] = {.lex_state = 140, .external_lex_state = 1}, + [605] = {.lex_state = 140, .external_lex_state = 1}, + [606] = {.lex_state = 140, .external_lex_state = 1}, + [607] = {.lex_state = 140, .external_lex_state = 1}, + [608] = {.lex_state = 140, .external_lex_state = 1}, + [609] = {.lex_state = 140, .external_lex_state = 1}, + [610] = {.lex_state = 140, .external_lex_state = 1}, + [611] = {.lex_state = 140, .external_lex_state = 1}, + [612] = {.lex_state = 140, .external_lex_state = 1}, + [613] = {.lex_state = 140, .external_lex_state = 1}, + [614] = {.lex_state = 261, .external_lex_state = 1}, + [615] = {.lex_state = 140, .external_lex_state = 1}, + [616] = {.lex_state = 140, .external_lex_state = 1}, + [617] = {.lex_state = 140, .external_lex_state = 1}, + [618] = {.lex_state = 140, .external_lex_state = 1}, + [619] = {.lex_state = 261, .external_lex_state = 1}, + [620] = {.lex_state = 140, .external_lex_state = 1}, + [621] = {.lex_state = 140, .external_lex_state = 1}, + [622] = {.lex_state = 140, .external_lex_state = 1}, + [623] = {.lex_state = 140, .external_lex_state = 1}, + [624] = {.lex_state = 261, .external_lex_state = 1}, + [625] = {.lex_state = 261, .external_lex_state = 1}, + [626] = {.lex_state = 261, .external_lex_state = 1}, + [627] = {.lex_state = 261, .external_lex_state = 1}, + [628] = {.lex_state = 261, .external_lex_state = 1}, + [629] = {.lex_state = 140, .external_lex_state = 1}, + [630] = {.lex_state = 140, .external_lex_state = 1}, + [631] = {.lex_state = 261, .external_lex_state = 1}, + [632] = {.lex_state = 261, .external_lex_state = 1}, + [633] = {.lex_state = 261, .external_lex_state = 1}, + [634] = {.lex_state = 140, .external_lex_state = 1}, + [635] = {.lex_state = 140, .external_lex_state = 1}, + [636] = {.lex_state = 261, .external_lex_state = 1}, + [637] = {.lex_state = 261, .external_lex_state = 1}, + [638] = {.lex_state = 261, .external_lex_state = 1}, + [639] = {.lex_state = 261, .external_lex_state = 1}, + [640] = {.lex_state = 140, .external_lex_state = 1}, + [641] = {.lex_state = 140, .external_lex_state = 1}, + [642] = {.lex_state = 140, .external_lex_state = 1}, + [643] = {.lex_state = 140, .external_lex_state = 1}, + [644] = {.lex_state = 140, .external_lex_state = 1}, + [645] = {.lex_state = 140, .external_lex_state = 1}, + [646] = {.lex_state = 140, .external_lex_state = 1}, + [647] = {.lex_state = 140, .external_lex_state = 1}, + [648] = {.lex_state = 140, .external_lex_state = 1}, + [649] = {.lex_state = 140, .external_lex_state = 1}, + [650] = {.lex_state = 140, .external_lex_state = 1}, + [651] = {.lex_state = 261, .external_lex_state = 1}, + [652] = {.lex_state = 261, .external_lex_state = 1}, + [653] = {.lex_state = 140, .external_lex_state = 1}, + [654] = {.lex_state = 140, .external_lex_state = 1}, + [655] = {.lex_state = 140, .external_lex_state = 1}, + [656] = {.lex_state = 140, .external_lex_state = 1}, + [657] = {.lex_state = 261, .external_lex_state = 1}, + [658] = {.lex_state = 140, .external_lex_state = 1}, + [659] = {.lex_state = 140, .external_lex_state = 1}, + [660] = {.lex_state = 140, .external_lex_state = 1}, + [661] = {.lex_state = 261, .external_lex_state = 1}, + [662] = {.lex_state = 140, .external_lex_state = 1}, + [663] = {.lex_state = 261, .external_lex_state = 1}, + [664] = {.lex_state = 140, .external_lex_state = 1}, + [665] = {.lex_state = 140, .external_lex_state = 1}, + [666] = {.lex_state = 261, .external_lex_state = 1}, + [667] = {.lex_state = 140, .external_lex_state = 1}, + [668] = {.lex_state = 261, .external_lex_state = 1}, + [669] = {.lex_state = 261, .external_lex_state = 1}, + [670] = {.lex_state = 261, .external_lex_state = 1}, + [671] = {.lex_state = 261, .external_lex_state = 1}, + [672] = {.lex_state = 261, .external_lex_state = 1}, + [673] = {.lex_state = 261, .external_lex_state = 1}, + [674] = {.lex_state = 261, .external_lex_state = 1}, + [675] = {.lex_state = 261, .external_lex_state = 1}, + [676] = {.lex_state = 261, .external_lex_state = 1}, + [677] = {.lex_state = 261, .external_lex_state = 1}, + [678] = {.lex_state = 140, .external_lex_state = 1}, + [679] = {.lex_state = 261, .external_lex_state = 1}, + [680] = {.lex_state = 261, .external_lex_state = 1}, + [681] = {.lex_state = 261, .external_lex_state = 1}, + [682] = {.lex_state = 140, .external_lex_state = 1}, + [683] = {.lex_state = 261, .external_lex_state = 1}, + [684] = {.lex_state = 261, .external_lex_state = 1}, + [685] = {.lex_state = 261, .external_lex_state = 1}, + [686] = {.lex_state = 140, .external_lex_state = 1}, + [687] = {.lex_state = 140, .external_lex_state = 1}, + [688] = {.lex_state = 140, .external_lex_state = 1}, + [689] = {.lex_state = 261, .external_lex_state = 1}, + [690] = {.lex_state = 261, .external_lex_state = 1}, + [691] = {.lex_state = 261, .external_lex_state = 1}, + [692] = {.lex_state = 140, .external_lex_state = 1}, + [693] = {.lex_state = 261, .external_lex_state = 1}, + [694] = {.lex_state = 140, .external_lex_state = 1}, + [695] = {.lex_state = 140, .external_lex_state = 1}, + [696] = {.lex_state = 140, .external_lex_state = 1}, + [697] = {.lex_state = 261, .external_lex_state = 1}, + [698] = {.lex_state = 140, .external_lex_state = 1}, + [699] = {.lex_state = 261, .external_lex_state = 1}, + [700] = {.lex_state = 261, .external_lex_state = 1}, + [701] = {.lex_state = 261, .external_lex_state = 1}, + [702] = {.lex_state = 261, .external_lex_state = 1}, + [703] = {.lex_state = 261, .external_lex_state = 1}, + [704] = {.lex_state = 140, .external_lex_state = 1}, + [705] = {.lex_state = 140, .external_lex_state = 1}, + [706] = {.lex_state = 140, .external_lex_state = 1}, + [707] = {.lex_state = 261, .external_lex_state = 1}, + [708] = {.lex_state = 140, .external_lex_state = 1}, + [709] = {.lex_state = 261, .external_lex_state = 1}, + [710] = {.lex_state = 261, .external_lex_state = 1}, + [711] = {.lex_state = 261, .external_lex_state = 1}, + [712] = {.lex_state = 261, .external_lex_state = 1}, + [713] = {.lex_state = 140, .external_lex_state = 1}, + [714] = {.lex_state = 140, .external_lex_state = 1}, + [715] = {.lex_state = 140, .external_lex_state = 1}, + [716] = {.lex_state = 261, .external_lex_state = 1}, + [717] = {.lex_state = 140, .external_lex_state = 1}, + [718] = {.lex_state = 261, .external_lex_state = 1}, + [719] = {.lex_state = 140, .external_lex_state = 1}, + [720] = {.lex_state = 261, .external_lex_state = 1}, + [721] = {.lex_state = 261, .external_lex_state = 1}, + [722] = {.lex_state = 261, .external_lex_state = 1}, + [723] = {.lex_state = 261, .external_lex_state = 1}, + [724] = {.lex_state = 261, .external_lex_state = 1}, + [725] = {.lex_state = 261, .external_lex_state = 1}, + [726] = {.lex_state = 261, .external_lex_state = 1}, + [727] = {.lex_state = 261, .external_lex_state = 1}, + [728] = {.lex_state = 261, .external_lex_state = 1}, + [729] = {.lex_state = 261, .external_lex_state = 1}, + [730] = {.lex_state = 261, .external_lex_state = 1}, + [731] = {.lex_state = 261, .external_lex_state = 1}, + [732] = {.lex_state = 261, .external_lex_state = 1}, + [733] = {.lex_state = 261, .external_lex_state = 1}, + [734] = {.lex_state = 261, .external_lex_state = 1}, + [735] = {.lex_state = 261, .external_lex_state = 1}, + [736] = {.lex_state = 261, .external_lex_state = 1}, + [737] = {.lex_state = 261, .external_lex_state = 1}, + [738] = {.lex_state = 261, .external_lex_state = 1}, + [739] = {.lex_state = 261, .external_lex_state = 1}, + [740] = {.lex_state = 261, .external_lex_state = 1}, + [741] = {.lex_state = 261, .external_lex_state = 1}, + [742] = {.lex_state = 261, .external_lex_state = 1}, + [743] = {.lex_state = 261, .external_lex_state = 1}, + [744] = {.lex_state = 261, .external_lex_state = 1}, + [745] = {.lex_state = 261, .external_lex_state = 1}, + [746] = {.lex_state = 261, .external_lex_state = 1}, + [747] = {.lex_state = 261, .external_lex_state = 1}, + [748] = {.lex_state = 261, .external_lex_state = 1}, + [749] = {.lex_state = 261, .external_lex_state = 1}, + [750] = {.lex_state = 261, .external_lex_state = 1}, + [751] = {.lex_state = 261, .external_lex_state = 1}, + [752] = {.lex_state = 261, .external_lex_state = 1}, + [753] = {.lex_state = 261, .external_lex_state = 1}, + [754] = {.lex_state = 261, .external_lex_state = 1}, + [755] = {.lex_state = 261, .external_lex_state = 1}, + [756] = {.lex_state = 261, .external_lex_state = 1}, + [757] = {.lex_state = 261, .external_lex_state = 1}, + [758] = {.lex_state = 261, .external_lex_state = 1}, + [759] = {.lex_state = 261, .external_lex_state = 1}, + [760] = {.lex_state = 261, .external_lex_state = 1}, + [761] = {.lex_state = 261, .external_lex_state = 1}, + [762] = {.lex_state = 261, .external_lex_state = 1}, + [763] = {.lex_state = 140, .external_lex_state = 1}, + [764] = {.lex_state = 261, .external_lex_state = 1}, + [765] = {.lex_state = 261, .external_lex_state = 1}, + [766] = {.lex_state = 140, .external_lex_state = 1}, + [767] = {.lex_state = 140, .external_lex_state = 1}, + [768] = {.lex_state = 140, .external_lex_state = 1}, + [769] = {.lex_state = 261, .external_lex_state = 1}, + [770] = {.lex_state = 261, .external_lex_state = 1}, + [771] = {.lex_state = 261, .external_lex_state = 1}, + [772] = {.lex_state = 261, .external_lex_state = 1}, + [773] = {.lex_state = 261, .external_lex_state = 1}, + [774] = {.lex_state = 261, .external_lex_state = 1}, + [775] = {.lex_state = 261, .external_lex_state = 1}, + [776] = {.lex_state = 261, .external_lex_state = 1}, + [777] = {.lex_state = 261, .external_lex_state = 1}, + [778] = {.lex_state = 261, .external_lex_state = 1}, + [779] = {.lex_state = 261, .external_lex_state = 1}, + [780] = {.lex_state = 261, .external_lex_state = 1}, + [781] = {.lex_state = 261, .external_lex_state = 1}, + [782] = {.lex_state = 261, .external_lex_state = 1}, + [783] = {.lex_state = 261, .external_lex_state = 1}, + [784] = {.lex_state = 261, .external_lex_state = 1}, + [785] = {.lex_state = 261, .external_lex_state = 1}, + [786] = {.lex_state = 261, .external_lex_state = 1}, + [787] = {.lex_state = 261, .external_lex_state = 1}, + [788] = {.lex_state = 261, .external_lex_state = 1}, + [789] = {.lex_state = 261, .external_lex_state = 1}, + [790] = {.lex_state = 261, .external_lex_state = 1}, + [791] = {.lex_state = 261, .external_lex_state = 1}, + [792] = {.lex_state = 261, .external_lex_state = 1}, + [793] = {.lex_state = 261, .external_lex_state = 1}, + [794] = {.lex_state = 261, .external_lex_state = 1}, + [795] = {.lex_state = 261, .external_lex_state = 1}, + [796] = {.lex_state = 261, .external_lex_state = 1}, + [797] = {.lex_state = 261, .external_lex_state = 1}, + [798] = {.lex_state = 261, .external_lex_state = 1}, + [799] = {.lex_state = 261, .external_lex_state = 1}, + [800] = {.lex_state = 261, .external_lex_state = 1}, + [801] = {.lex_state = 261, .external_lex_state = 1}, + [802] = {.lex_state = 261, .external_lex_state = 1}, + [803] = {.lex_state = 261, .external_lex_state = 1}, + [804] = {.lex_state = 261, .external_lex_state = 1}, + [805] = {.lex_state = 261, .external_lex_state = 1}, + [806] = {.lex_state = 261, .external_lex_state = 1}, + [807] = {.lex_state = 261, .external_lex_state = 1}, + [808] = {.lex_state = 140, .external_lex_state = 1}, + [809] = {.lex_state = 261, .external_lex_state = 1}, + [810] = {.lex_state = 261, .external_lex_state = 1}, + [811] = {.lex_state = 261, .external_lex_state = 1}, + [812] = {.lex_state = 261, .external_lex_state = 1}, + [813] = {.lex_state = 261, .external_lex_state = 1}, + [814] = {.lex_state = 140, .external_lex_state = 1}, + [815] = {.lex_state = 140, .external_lex_state = 1}, + [816] = {.lex_state = 261, .external_lex_state = 1}, + [817] = {.lex_state = 140, .external_lex_state = 1}, + [818] = {.lex_state = 140, .external_lex_state = 1}, + [819] = {.lex_state = 140, .external_lex_state = 1}, + [820] = {.lex_state = 261, .external_lex_state = 1}, + [821] = {.lex_state = 261, .external_lex_state = 1}, + [822] = {.lex_state = 261, .external_lex_state = 1}, + [823] = {.lex_state = 140, .external_lex_state = 1}, + [824] = {.lex_state = 261, .external_lex_state = 1}, + [825] = {.lex_state = 261, .external_lex_state = 1}, + [826] = {.lex_state = 140, .external_lex_state = 1}, + [827] = {.lex_state = 140, .external_lex_state = 1}, + [828] = {.lex_state = 140, .external_lex_state = 1}, + [829] = {.lex_state = 261, .external_lex_state = 1}, + [830] = {.lex_state = 140, .external_lex_state = 1}, + [831] = {.lex_state = 261, .external_lex_state = 1}, + [832] = {.lex_state = 261, .external_lex_state = 1}, + [833] = {.lex_state = 261, .external_lex_state = 1}, + [834] = {.lex_state = 261, .external_lex_state = 1}, + [835] = {.lex_state = 261, .external_lex_state = 1}, + [836] = {.lex_state = 261, .external_lex_state = 1}, + [837] = {.lex_state = 261, .external_lex_state = 1}, + [838] = {.lex_state = 261, .external_lex_state = 1}, + [839] = {.lex_state = 140, .external_lex_state = 1}, + [840] = {.lex_state = 140, .external_lex_state = 1}, + [841] = {.lex_state = 261, .external_lex_state = 1}, + [842] = {.lex_state = 261, .external_lex_state = 1}, + [843] = {.lex_state = 261, .external_lex_state = 1}, + [844] = {.lex_state = 140, .external_lex_state = 1}, + [845] = {.lex_state = 140, .external_lex_state = 1}, + [846] = {.lex_state = 140, .external_lex_state = 1}, + [847] = {.lex_state = 261, .external_lex_state = 1}, + [848] = {.lex_state = 140, .external_lex_state = 1}, + [849] = {.lex_state = 261, .external_lex_state = 1}, + [850] = {.lex_state = 261, .external_lex_state = 1}, + [851] = {.lex_state = 261, .external_lex_state = 1}, + [852] = {.lex_state = 261, .external_lex_state = 1}, + [853] = {.lex_state = 261, .external_lex_state = 1}, + [854] = {.lex_state = 261, .external_lex_state = 1}, + [855] = {.lex_state = 261, .external_lex_state = 1}, + [856] = {.lex_state = 261, .external_lex_state = 1}, + [857] = {.lex_state = 140, .external_lex_state = 1}, + [858] = {.lex_state = 140, .external_lex_state = 1}, + [859] = {.lex_state = 261, .external_lex_state = 1}, + [860] = {.lex_state = 142, .external_lex_state = 1}, + [861] = {.lex_state = 261, .external_lex_state = 1}, + [862] = {.lex_state = 261, .external_lex_state = 1}, + [863] = {.lex_state = 140, .external_lex_state = 1}, + [864] = {.lex_state = 140, .external_lex_state = 1}, + [865] = {.lex_state = 140, .external_lex_state = 1}, + [866] = {.lex_state = 140, .external_lex_state = 1}, + [867] = {.lex_state = 140, .external_lex_state = 1}, + [868] = {.lex_state = 261, .external_lex_state = 1}, + [869] = {.lex_state = 261, .external_lex_state = 1}, + [870] = {.lex_state = 261, .external_lex_state = 1}, + [871] = {.lex_state = 140, .external_lex_state = 1}, + [872] = {.lex_state = 261, .external_lex_state = 1}, + [873] = {.lex_state = 261, .external_lex_state = 1}, + [874] = {.lex_state = 261, .external_lex_state = 1}, + [875] = {.lex_state = 261, .external_lex_state = 1}, + [876] = {.lex_state = 261, .external_lex_state = 1}, + [877] = {.lex_state = 261, .external_lex_state = 1}, + [878] = {.lex_state = 261, .external_lex_state = 1}, + [879] = {.lex_state = 261, .external_lex_state = 1}, + [880] = {.lex_state = 261, .external_lex_state = 1}, + [881] = {.lex_state = 261, .external_lex_state = 1}, + [882] = {.lex_state = 261, .external_lex_state = 1}, + [883] = {.lex_state = 261, .external_lex_state = 1}, + [884] = {.lex_state = 261, .external_lex_state = 1}, + [885] = {.lex_state = 261, .external_lex_state = 1}, + [886] = {.lex_state = 261, .external_lex_state = 1}, + [887] = {.lex_state = 261, .external_lex_state = 1}, + [888] = {.lex_state = 261, .external_lex_state = 1}, + [889] = {.lex_state = 261, .external_lex_state = 1}, + [890] = {.lex_state = 261, .external_lex_state = 1}, + [891] = {.lex_state = 261, .external_lex_state = 1}, + [892] = {.lex_state = 261, .external_lex_state = 1}, + [893] = {.lex_state = 261, .external_lex_state = 1}, + [894] = {.lex_state = 261, .external_lex_state = 1}, + [895] = {.lex_state = 261, .external_lex_state = 1}, + [896] = {.lex_state = 261, .external_lex_state = 1}, + [897] = {.lex_state = 261, .external_lex_state = 1}, + [898] = {.lex_state = 261, .external_lex_state = 1}, + [899] = {.lex_state = 261, .external_lex_state = 1}, + [900] = {.lex_state = 261, .external_lex_state = 1}, + [901] = {.lex_state = 261, .external_lex_state = 1}, + [902] = {.lex_state = 261, .external_lex_state = 1}, + [903] = {.lex_state = 261, .external_lex_state = 1}, + [904] = {.lex_state = 261, .external_lex_state = 1}, + [905] = {.lex_state = 261, .external_lex_state = 1}, + [906] = {.lex_state = 140, .external_lex_state = 1}, + [907] = {.lex_state = 261, .external_lex_state = 1}, + [908] = {.lex_state = 261, .external_lex_state = 1}, + [909] = {.lex_state = 261, .external_lex_state = 1}, + [910] = {.lex_state = 261, .external_lex_state = 1}, + [911] = {.lex_state = 261, .external_lex_state = 1}, + [912] = {.lex_state = 261, .external_lex_state = 1}, + [913] = {.lex_state = 261, .external_lex_state = 1}, + [914] = {.lex_state = 261, .external_lex_state = 1}, + [915] = {.lex_state = 261, .external_lex_state = 1}, + [916] = {.lex_state = 261, .external_lex_state = 1}, + [917] = {.lex_state = 261, .external_lex_state = 1}, + [918] = {.lex_state = 261, .external_lex_state = 1}, + [919] = {.lex_state = 261, .external_lex_state = 1}, + [920] = {.lex_state = 261, .external_lex_state = 1}, + [921] = {.lex_state = 261, .external_lex_state = 1}, + [922] = {.lex_state = 261, .external_lex_state = 1}, + [923] = {.lex_state = 261, .external_lex_state = 1}, + [924] = {.lex_state = 261, .external_lex_state = 1}, + [925] = {.lex_state = 261, .external_lex_state = 1}, + [926] = {.lex_state = 261, .external_lex_state = 1}, + [927] = {.lex_state = 261, .external_lex_state = 1}, + [928] = {.lex_state = 261, .external_lex_state = 1}, + [929] = {.lex_state = 261, .external_lex_state = 1}, + [930] = {.lex_state = 261, .external_lex_state = 1}, + [931] = {.lex_state = 261, .external_lex_state = 1}, + [932] = {.lex_state = 261, .external_lex_state = 1}, + [933] = {.lex_state = 261, .external_lex_state = 1}, + [934] = {.lex_state = 261, .external_lex_state = 1}, + [935] = {.lex_state = 261, .external_lex_state = 1}, + [936] = {.lex_state = 261, .external_lex_state = 1}, + [937] = {.lex_state = 261, .external_lex_state = 1}, + [938] = {.lex_state = 261, .external_lex_state = 1}, + [939] = {.lex_state = 261, .external_lex_state = 1}, + [940] = {.lex_state = 261, .external_lex_state = 1}, + [941] = {.lex_state = 261, .external_lex_state = 1}, + [942] = {.lex_state = 261, .external_lex_state = 1}, + [943] = {.lex_state = 261, .external_lex_state = 1}, + [944] = {.lex_state = 261, .external_lex_state = 1}, + [945] = {.lex_state = 261, .external_lex_state = 1}, + [946] = {.lex_state = 261, .external_lex_state = 1}, + [947] = {.lex_state = 261, .external_lex_state = 1}, + [948] = {.lex_state = 261, .external_lex_state = 1}, + [949] = {.lex_state = 261, .external_lex_state = 1}, + [950] = {.lex_state = 261, .external_lex_state = 1}, + [951] = {.lex_state = 261, .external_lex_state = 1}, + [952] = {.lex_state = 261, .external_lex_state = 1}, + [953] = {.lex_state = 261, .external_lex_state = 1}, + [954] = {.lex_state = 261, .external_lex_state = 1}, + [955] = {.lex_state = 261, .external_lex_state = 1}, + [956] = {.lex_state = 261, .external_lex_state = 1}, + [957] = {.lex_state = 261, .external_lex_state = 1}, + [958] = {.lex_state = 261, .external_lex_state = 1}, + [959] = {.lex_state = 261, .external_lex_state = 1}, + [960] = {.lex_state = 261, .external_lex_state = 1}, + [961] = {.lex_state = 261, .external_lex_state = 1}, + [962] = {.lex_state = 261, .external_lex_state = 1}, + [963] = {.lex_state = 261, .external_lex_state = 1}, + [964] = {.lex_state = 261, .external_lex_state = 1}, + [965] = {.lex_state = 261, .external_lex_state = 1}, + [966] = {.lex_state = 261, .external_lex_state = 1}, + [967] = {.lex_state = 261, .external_lex_state = 1}, + [968] = {.lex_state = 261, .external_lex_state = 1}, + [969] = {.lex_state = 261, .external_lex_state = 1}, + [970] = {.lex_state = 261, .external_lex_state = 1}, + [971] = {.lex_state = 261, .external_lex_state = 1}, + [972] = {.lex_state = 261, .external_lex_state = 1}, + [973] = {.lex_state = 140, .external_lex_state = 1}, + [974] = {.lex_state = 140, .external_lex_state = 1}, + [975] = {.lex_state = 261, .external_lex_state = 1}, + [976] = {.lex_state = 140, .external_lex_state = 1}, + [977] = {.lex_state = 140, .external_lex_state = 1}, + [978] = {.lex_state = 261, .external_lex_state = 1}, + [979] = {.lex_state = 140, .external_lex_state = 1}, + [980] = {.lex_state = 140, .external_lex_state = 1}, + [981] = {.lex_state = 261, .external_lex_state = 1}, + [982] = {.lex_state = 261, .external_lex_state = 1}, + [983] = {.lex_state = 261, .external_lex_state = 1}, + [984] = {.lex_state = 261, .external_lex_state = 1}, + [985] = {.lex_state = 261, .external_lex_state = 1}, + [986] = {.lex_state = 261, .external_lex_state = 1}, + [987] = {.lex_state = 261, .external_lex_state = 1}, + [988] = {.lex_state = 261, .external_lex_state = 1}, + [989] = {.lex_state = 261, .external_lex_state = 1}, + [990] = {.lex_state = 261, .external_lex_state = 1}, + [991] = {.lex_state = 261, .external_lex_state = 1}, + [992] = {.lex_state = 140, .external_lex_state = 1}, + [993] = {.lex_state = 261, .external_lex_state = 1}, + [994] = {.lex_state = 261, .external_lex_state = 1}, + [995] = {.lex_state = 261, .external_lex_state = 1}, + [996] = {.lex_state = 140, .external_lex_state = 1}, + [997] = {.lex_state = 261, .external_lex_state = 1}, + [998] = {.lex_state = 261, .external_lex_state = 1}, + [999] = {.lex_state = 261, .external_lex_state = 1}, + [1000] = {.lex_state = 261, .external_lex_state = 1}, + [1001] = {.lex_state = 261, .external_lex_state = 1}, + [1002] = {.lex_state = 261, .external_lex_state = 1}, + [1003] = {.lex_state = 140, .external_lex_state = 1}, + [1004] = {.lex_state = 261, .external_lex_state = 1}, + [1005] = {.lex_state = 261, .external_lex_state = 1}, + [1006] = {.lex_state = 140, .external_lex_state = 1}, + [1007] = {.lex_state = 140, .external_lex_state = 1}, + [1008] = {.lex_state = 261, .external_lex_state = 1}, + [1009] = {.lex_state = 261, .external_lex_state = 1}, + [1010] = {.lex_state = 140, .external_lex_state = 1}, + [1011] = {.lex_state = 261, .external_lex_state = 1}, + [1012] = {.lex_state = 261, .external_lex_state = 1}, + [1013] = {.lex_state = 140, .external_lex_state = 1}, + [1014] = {.lex_state = 261, .external_lex_state = 1}, + [1015] = {.lex_state = 261, .external_lex_state = 1}, + [1016] = {.lex_state = 140, .external_lex_state = 1}, + [1017] = {.lex_state = 140, .external_lex_state = 1}, + [1018] = {.lex_state = 140, .external_lex_state = 1}, + [1019] = {.lex_state = 140, .external_lex_state = 1}, + [1020] = {.lex_state = 140, .external_lex_state = 1}, + [1021] = {.lex_state = 140, .external_lex_state = 1}, + [1022] = {.lex_state = 140, .external_lex_state = 1}, + [1023] = {.lex_state = 140, .external_lex_state = 1}, + [1024] = {.lex_state = 140, .external_lex_state = 1}, + [1025] = {.lex_state = 140, .external_lex_state = 1}, + [1026] = {.lex_state = 140, .external_lex_state = 1}, + [1027] = {.lex_state = 140, .external_lex_state = 1}, + [1028] = {.lex_state = 140, .external_lex_state = 1}, + [1029] = {.lex_state = 140, .external_lex_state = 1}, + [1030] = {.lex_state = 140, .external_lex_state = 1}, + [1031] = {.lex_state = 140, .external_lex_state = 1}, + [1032] = {.lex_state = 140, .external_lex_state = 1}, + [1033] = {.lex_state = 140, .external_lex_state = 1}, + [1034] = {.lex_state = 140, .external_lex_state = 1}, + [1035] = {.lex_state = 140, .external_lex_state = 1}, + [1036] = {.lex_state = 261, .external_lex_state = 1}, + [1037] = {.lex_state = 261, .external_lex_state = 1}, + [1038] = {.lex_state = 261, .external_lex_state = 1}, + [1039] = {.lex_state = 140, .external_lex_state = 1}, + [1040] = {.lex_state = 140, .external_lex_state = 1}, + [1041] = {.lex_state = 140, .external_lex_state = 1}, + [1042] = {.lex_state = 140, .external_lex_state = 1}, + [1043] = {.lex_state = 140, .external_lex_state = 1}, + [1044] = {.lex_state = 261, .external_lex_state = 1}, + [1045] = {.lex_state = 140, .external_lex_state = 1}, + [1046] = {.lex_state = 140, .external_lex_state = 1}, + [1047] = {.lex_state = 261, .external_lex_state = 1}, + [1048] = {.lex_state = 140, .external_lex_state = 1}, + [1049] = {.lex_state = 140, .external_lex_state = 1}, + [1050] = {.lex_state = 140, .external_lex_state = 1}, + [1051] = {.lex_state = 140, .external_lex_state = 1}, + [1052] = {.lex_state = 140, .external_lex_state = 1}, + [1053] = {.lex_state = 140, .external_lex_state = 1}, + [1054] = {.lex_state = 140, .external_lex_state = 1}, + [1055] = {.lex_state = 140, .external_lex_state = 1}, + [1056] = {.lex_state = 140, .external_lex_state = 1}, + [1057] = {.lex_state = 140, .external_lex_state = 1}, + [1058] = {.lex_state = 140, .external_lex_state = 1}, + [1059] = {.lex_state = 261, .external_lex_state = 1}, + [1060] = {.lex_state = 261, .external_lex_state = 1}, + [1061] = {.lex_state = 141, .external_lex_state = 1}, + [1062] = {.lex_state = 196}, + [1063] = {.lex_state = 196}, + [1064] = {.lex_state = 196}, + [1065] = {.lex_state = 196}, + [1066] = {.lex_state = 196}, + [1067] = {.lex_state = 141, .external_lex_state = 1}, + [1068] = {.lex_state = 196}, + [1069] = {.lex_state = 196}, + [1070] = {.lex_state = 134, .external_lex_state = 1}, + [1071] = {.lex_state = 139, .external_lex_state = 1}, + [1072] = {.lex_state = 139, .external_lex_state = 1}, + [1073] = {.lex_state = 139, .external_lex_state = 1}, + [1074] = {.lex_state = 139, .external_lex_state = 1}, + [1075] = {.lex_state = 139, .external_lex_state = 1}, + [1076] = {.lex_state = 139, .external_lex_state = 1}, + [1077] = {.lex_state = 139, .external_lex_state = 1}, + [1078] = {.lex_state = 196}, + [1079] = {.lex_state = 196}, + [1080] = {.lex_state = 196}, + [1081] = {.lex_state = 139, .external_lex_state = 1}, + [1082] = {.lex_state = 139, .external_lex_state = 1}, + [1083] = {.lex_state = 196}, + [1084] = {.lex_state = 196}, + [1085] = {.lex_state = 139, .external_lex_state = 1}, + [1086] = {.lex_state = 196}, + [1087] = {.lex_state = 139, .external_lex_state = 1}, + [1088] = {.lex_state = 139, .external_lex_state = 1}, + [1089] = {.lex_state = 139, .external_lex_state = 1}, + [1090] = {.lex_state = 139, .external_lex_state = 1}, + [1091] = {.lex_state = 139, .external_lex_state = 1}, + [1092] = {.lex_state = 139, .external_lex_state = 1}, + [1093] = {.lex_state = 196}, + [1094] = {.lex_state = 139, .external_lex_state = 1}, + [1095] = {.lex_state = 139, .external_lex_state = 1}, + [1096] = {.lex_state = 134, .external_lex_state = 1}, + [1097] = {.lex_state = 135, .external_lex_state = 1}, + [1098] = {.lex_state = 134, .external_lex_state = 1}, + [1099] = {.lex_state = 196}, + [1100] = {.lex_state = 261, .external_lex_state = 1}, + [1101] = {.lex_state = 261, .external_lex_state = 1}, + [1102] = {.lex_state = 261, .external_lex_state = 1}, + [1103] = {.lex_state = 141, .external_lex_state = 1}, + [1104] = {.lex_state = 139, .external_lex_state = 1}, + [1105] = {.lex_state = 139, .external_lex_state = 1}, + [1106] = {.lex_state = 141, .external_lex_state = 1}, + [1107] = {.lex_state = 139, .external_lex_state = 1}, + [1108] = {.lex_state = 139, .external_lex_state = 1}, + [1109] = {.lex_state = 139, .external_lex_state = 1}, + [1110] = {.lex_state = 139, .external_lex_state = 1}, + [1111] = {.lex_state = 139, .external_lex_state = 1}, + [1112] = {.lex_state = 139, .external_lex_state = 1}, + [1113] = {.lex_state = 139, .external_lex_state = 1}, + [1114] = {.lex_state = 139, .external_lex_state = 1}, + [1115] = {.lex_state = 139, .external_lex_state = 1}, + [1116] = {.lex_state = 139, .external_lex_state = 1}, + [1117] = {.lex_state = 139, .external_lex_state = 1}, + [1118] = {.lex_state = 139, .external_lex_state = 1}, + [1119] = {.lex_state = 139, .external_lex_state = 1}, + [1120] = {.lex_state = 139, .external_lex_state = 1}, + [1121] = {.lex_state = 139, .external_lex_state = 1}, + [1122] = {.lex_state = 139, .external_lex_state = 1}, + [1123] = {.lex_state = 139, .external_lex_state = 1}, + [1124] = {.lex_state = 139, .external_lex_state = 1}, + [1125] = {.lex_state = 139, .external_lex_state = 1}, + [1126] = {.lex_state = 139, .external_lex_state = 1}, + [1127] = {.lex_state = 139, .external_lex_state = 1}, + [1128] = {.lex_state = 139, .external_lex_state = 1}, + [1129] = {.lex_state = 139, .external_lex_state = 1}, + [1130] = {.lex_state = 139, .external_lex_state = 1}, + [1131] = {.lex_state = 139, .external_lex_state = 1}, + [1132] = {.lex_state = 139, .external_lex_state = 1}, + [1133] = {.lex_state = 139, .external_lex_state = 1}, + [1134] = {.lex_state = 139, .external_lex_state = 1}, + [1135] = {.lex_state = 139, .external_lex_state = 1}, + [1136] = {.lex_state = 139, .external_lex_state = 1}, + [1137] = {.lex_state = 142, .external_lex_state = 1}, + [1138] = {.lex_state = 139, .external_lex_state = 1}, + [1139] = {.lex_state = 139, .external_lex_state = 1}, + [1140] = {.lex_state = 139, .external_lex_state = 1}, + [1141] = {.lex_state = 139, .external_lex_state = 1}, + [1142] = {.lex_state = 139, .external_lex_state = 1}, + [1143] = {.lex_state = 139, .external_lex_state = 1}, + [1144] = {.lex_state = 142, .external_lex_state = 1}, + [1145] = {.lex_state = 139, .external_lex_state = 1}, + [1146] = {.lex_state = 139, .external_lex_state = 1}, + [1147] = {.lex_state = 139, .external_lex_state = 1}, + [1148] = {.lex_state = 139, .external_lex_state = 1}, + [1149] = {.lex_state = 139, .external_lex_state = 1}, + [1150] = {.lex_state = 139, .external_lex_state = 1}, + [1151] = {.lex_state = 139, .external_lex_state = 1}, + [1152] = {.lex_state = 139, .external_lex_state = 1}, + [1153] = {.lex_state = 139, .external_lex_state = 1}, + [1154] = {.lex_state = 139, .external_lex_state = 1}, + [1155] = {.lex_state = 142, .external_lex_state = 1}, + [1156] = {.lex_state = 139, .external_lex_state = 1}, + [1157] = {.lex_state = 142, .external_lex_state = 1}, + [1158] = {.lex_state = 139, .external_lex_state = 1}, + [1159] = {.lex_state = 142, .external_lex_state = 1}, + [1160] = {.lex_state = 139, .external_lex_state = 1}, + [1161] = {.lex_state = 139, .external_lex_state = 1}, + [1162] = {.lex_state = 139, .external_lex_state = 1}, + [1163] = {.lex_state = 139, .external_lex_state = 1}, + [1164] = {.lex_state = 139, .external_lex_state = 1}, + [1165] = {.lex_state = 139, .external_lex_state = 1}, + [1166] = {.lex_state = 139, .external_lex_state = 1}, + [1167] = {.lex_state = 139, .external_lex_state = 1}, + [1168] = {.lex_state = 139, .external_lex_state = 1}, + [1169] = {.lex_state = 142, .external_lex_state = 1}, + [1170] = {.lex_state = 139, .external_lex_state = 1}, + [1171] = {.lex_state = 139, .external_lex_state = 1}, + [1172] = {.lex_state = 139, .external_lex_state = 1}, + [1173] = {.lex_state = 139, .external_lex_state = 1}, + [1174] = {.lex_state = 139, .external_lex_state = 1}, + [1175] = {.lex_state = 139, .external_lex_state = 1}, + [1176] = {.lex_state = 139, .external_lex_state = 1}, + [1177] = {.lex_state = 139, .external_lex_state = 1}, + [1178] = {.lex_state = 139, .external_lex_state = 1}, + [1179] = {.lex_state = 139, .external_lex_state = 1}, + [1180] = {.lex_state = 139, .external_lex_state = 1}, + [1181] = {.lex_state = 139, .external_lex_state = 1}, + [1182] = {.lex_state = 139, .external_lex_state = 1}, + [1183] = {.lex_state = 139, .external_lex_state = 1}, + [1184] = {.lex_state = 139, .external_lex_state = 1}, + [1185] = {.lex_state = 139, .external_lex_state = 1}, + [1186] = {.lex_state = 139, .external_lex_state = 1}, + [1187] = {.lex_state = 139, .external_lex_state = 1}, + [1188] = {.lex_state = 139, .external_lex_state = 1}, + [1189] = {.lex_state = 139, .external_lex_state = 1}, + [1190] = {.lex_state = 139, .external_lex_state = 1}, + [1191] = {.lex_state = 139, .external_lex_state = 1}, + [1192] = {.lex_state = 139, .external_lex_state = 1}, + [1193] = {.lex_state = 139, .external_lex_state = 1}, + [1194] = {.lex_state = 139, .external_lex_state = 1}, + [1195] = {.lex_state = 139, .external_lex_state = 1}, + [1196] = {.lex_state = 139, .external_lex_state = 1}, + [1197] = {.lex_state = 139, .external_lex_state = 1}, + [1198] = {.lex_state = 139, .external_lex_state = 1}, + [1199] = {.lex_state = 139, .external_lex_state = 1}, + [1200] = {.lex_state = 139, .external_lex_state = 1}, + [1201] = {.lex_state = 139, .external_lex_state = 1}, + [1202] = {.lex_state = 139, .external_lex_state = 1}, + [1203] = {.lex_state = 142, .external_lex_state = 1}, + [1204] = {.lex_state = 139, .external_lex_state = 1}, + [1205] = {.lex_state = 139, .external_lex_state = 1}, + [1206] = {.lex_state = 139, .external_lex_state = 1}, + [1207] = {.lex_state = 139, .external_lex_state = 1}, + [1208] = {.lex_state = 139, .external_lex_state = 1}, + [1209] = {.lex_state = 139, .external_lex_state = 1}, + [1210] = {.lex_state = 139, .external_lex_state = 1}, + [1211] = {.lex_state = 142, .external_lex_state = 1}, + [1212] = {.lex_state = 139, .external_lex_state = 1}, + [1213] = {.lex_state = 139, .external_lex_state = 1}, + [1214] = {.lex_state = 139, .external_lex_state = 1}, + [1215] = {.lex_state = 139, .external_lex_state = 1}, + [1216] = {.lex_state = 139, .external_lex_state = 1}, + [1217] = {.lex_state = 142, .external_lex_state = 1}, + [1218] = {.lex_state = 139, .external_lex_state = 1}, + [1219] = {.lex_state = 139, .external_lex_state = 1}, + [1220] = {.lex_state = 139, .external_lex_state = 1}, + [1221] = {.lex_state = 139, .external_lex_state = 1}, + [1222] = {.lex_state = 139, .external_lex_state = 1}, + [1223] = {.lex_state = 139, .external_lex_state = 1}, + [1224] = {.lex_state = 139, .external_lex_state = 1}, + [1225] = {.lex_state = 139, .external_lex_state = 1}, + [1226] = {.lex_state = 139, .external_lex_state = 1}, + [1227] = {.lex_state = 139, .external_lex_state = 1}, + [1228] = {.lex_state = 139, .external_lex_state = 1}, + [1229] = {.lex_state = 139, .external_lex_state = 1}, + [1230] = {.lex_state = 139, .external_lex_state = 1}, + [1231] = {.lex_state = 139, .external_lex_state = 1}, + [1232] = {.lex_state = 139, .external_lex_state = 1}, + [1233] = {.lex_state = 142, .external_lex_state = 1}, + [1234] = {.lex_state = 139, .external_lex_state = 1}, + [1235] = {.lex_state = 139, .external_lex_state = 1}, + [1236] = {.lex_state = 139, .external_lex_state = 1}, + [1237] = {.lex_state = 139, .external_lex_state = 1}, + [1238] = {.lex_state = 142, .external_lex_state = 1}, + [1239] = {.lex_state = 139, .external_lex_state = 1}, + [1240] = {.lex_state = 139, .external_lex_state = 1}, + [1241] = {.lex_state = 142, .external_lex_state = 1}, + [1242] = {.lex_state = 142, .external_lex_state = 1}, + [1243] = {.lex_state = 142, .external_lex_state = 1}, + [1244] = {.lex_state = 142, .external_lex_state = 1}, + [1245] = {.lex_state = 142, .external_lex_state = 1}, + [1246] = {.lex_state = 142, .external_lex_state = 1}, + [1247] = {.lex_state = 142, .external_lex_state = 1}, + [1248] = {.lex_state = 142, .external_lex_state = 1}, + [1249] = {.lex_state = 142, .external_lex_state = 1}, + [1250] = {.lex_state = 142, .external_lex_state = 1}, + [1251] = {.lex_state = 142, .external_lex_state = 1}, + [1252] = {.lex_state = 142, .external_lex_state = 1}, + [1253] = {.lex_state = 142, .external_lex_state = 1}, + [1254] = {.lex_state = 142, .external_lex_state = 1}, + [1255] = {.lex_state = 142, .external_lex_state = 1}, + [1256] = {.lex_state = 142, .external_lex_state = 1}, + [1257] = {.lex_state = 142, .external_lex_state = 1}, + [1258] = {.lex_state = 142, .external_lex_state = 1}, + [1259] = {.lex_state = 142, .external_lex_state = 1}, + [1260] = {.lex_state = 142, .external_lex_state = 1}, + [1261] = {.lex_state = 142, .external_lex_state = 1}, + [1262] = {.lex_state = 142, .external_lex_state = 1}, + [1263] = {.lex_state = 142, .external_lex_state = 1}, + [1264] = {.lex_state = 142, .external_lex_state = 1}, + [1265] = {.lex_state = 142, .external_lex_state = 1}, + [1266] = {.lex_state = 142, .external_lex_state = 1}, + [1267] = {.lex_state = 142, .external_lex_state = 1}, + [1268] = {.lex_state = 142, .external_lex_state = 1}, + [1269] = {.lex_state = 142, .external_lex_state = 1}, + [1270] = {.lex_state = 142, .external_lex_state = 1}, + [1271] = {.lex_state = 142, .external_lex_state = 1}, + [1272] = {.lex_state = 142, .external_lex_state = 1}, + [1273] = {.lex_state = 142, .external_lex_state = 1}, + [1274] = {.lex_state = 142, .external_lex_state = 1}, + [1275] = {.lex_state = 142, .external_lex_state = 1}, + [1276] = {.lex_state = 142, .external_lex_state = 1}, + [1277] = {.lex_state = 142, .external_lex_state = 1}, + [1278] = {.lex_state = 142, .external_lex_state = 1}, + [1279] = {.lex_state = 142, .external_lex_state = 1}, + [1280] = {.lex_state = 142, .external_lex_state = 1}, + [1281] = {.lex_state = 142, .external_lex_state = 1}, + [1282] = {.lex_state = 142, .external_lex_state = 1}, + [1283] = {.lex_state = 196}, + [1284] = {.lex_state = 196}, + [1285] = {.lex_state = 142, .external_lex_state = 1}, + [1286] = {.lex_state = 196}, + [1287] = {.lex_state = 196}, + [1288] = {.lex_state = 155}, + [1289] = {.lex_state = 155}, + [1290] = {.lex_state = 163}, + [1291] = {.lex_state = 163}, + [1292] = {.lex_state = 163}, + [1293] = {.lex_state = 155}, + [1294] = {.lex_state = 155}, + [1295] = {.lex_state = 163}, + [1296] = {.lex_state = 163}, + [1297] = {.lex_state = 163}, + [1298] = {.lex_state = 155}, + [1299] = {.lex_state = 163}, + [1300] = {.lex_state = 163}, + [1301] = {.lex_state = 155}, + [1302] = {.lex_state = 155}, + [1303] = {.lex_state = 163}, + [1304] = {.lex_state = 163}, + [1305] = {.lex_state = 163}, + [1306] = {.lex_state = 163}, + [1307] = {.lex_state = 155}, + [1308] = {.lex_state = 163}, + [1309] = {.lex_state = 163}, + [1310] = {.lex_state = 155}, + [1311] = {.lex_state = 163}, + [1312] = {.lex_state = 155}, + [1313] = {.lex_state = 163}, + [1314] = {.lex_state = 163}, + [1315] = {.lex_state = 163}, + [1316] = {.lex_state = 163}, + [1317] = {.lex_state = 142, .external_lex_state = 1}, + [1318] = {.lex_state = 142, .external_lex_state = 1}, + [1319] = {.lex_state = 142, .external_lex_state = 1}, + [1320] = {.lex_state = 142, .external_lex_state = 1}, + [1321] = {.lex_state = 163}, + [1322] = {.lex_state = 142, .external_lex_state = 1}, + [1323] = {.lex_state = 163}, + [1324] = {.lex_state = 142, .external_lex_state = 1}, + [1325] = {.lex_state = 142, .external_lex_state = 1}, + [1326] = {.lex_state = 142, .external_lex_state = 1}, + [1327] = {.lex_state = 142, .external_lex_state = 1}, + [1328] = {.lex_state = 142, .external_lex_state = 1}, + [1329] = {.lex_state = 142, .external_lex_state = 1}, + [1330] = {.lex_state = 163}, + [1331] = {.lex_state = 142, .external_lex_state = 1}, + [1332] = {.lex_state = 142, .external_lex_state = 1}, + [1333] = {.lex_state = 142, .external_lex_state = 1}, + [1334] = {.lex_state = 142, .external_lex_state = 1}, + [1335] = {.lex_state = 163}, + [1336] = {.lex_state = 142, .external_lex_state = 1}, + [1337] = {.lex_state = 141, .external_lex_state = 1}, + [1338] = {.lex_state = 142, .external_lex_state = 1}, + [1339] = {.lex_state = 141, .external_lex_state = 1}, + [1340] = {.lex_state = 141, .external_lex_state = 1}, + [1341] = {.lex_state = 142, .external_lex_state = 1}, + [1342] = {.lex_state = 142, .external_lex_state = 1}, + [1343] = {.lex_state = 141, .external_lex_state = 1}, + [1344] = {.lex_state = 163}, + [1345] = {.lex_state = 142, .external_lex_state = 1}, + [1346] = {.lex_state = 141, .external_lex_state = 1}, + [1347] = {.lex_state = 141, .external_lex_state = 1}, + [1348] = {.lex_state = 141, .external_lex_state = 1}, + [1349] = {.lex_state = 141, .external_lex_state = 1}, + [1350] = {.lex_state = 142, .external_lex_state = 1}, + [1351] = {.lex_state = 142, .external_lex_state = 1}, + [1352] = {.lex_state = 142, .external_lex_state = 1}, + [1353] = {.lex_state = 142, .external_lex_state = 1}, + [1354] = {.lex_state = 142, .external_lex_state = 1}, + [1355] = {.lex_state = 142, .external_lex_state = 1}, + [1356] = {.lex_state = 141, .external_lex_state = 1}, + [1357] = {.lex_state = 142, .external_lex_state = 1}, + [1358] = {.lex_state = 142, .external_lex_state = 1}, + [1359] = {.lex_state = 141, .external_lex_state = 1}, + [1360] = {.lex_state = 142, .external_lex_state = 1}, + [1361] = {.lex_state = 142, .external_lex_state = 1}, + [1362] = {.lex_state = 142, .external_lex_state = 1}, + [1363] = {.lex_state = 142, .external_lex_state = 1}, + [1364] = {.lex_state = 142, .external_lex_state = 1}, + [1365] = {.lex_state = 142, .external_lex_state = 1}, + [1366] = {.lex_state = 141, .external_lex_state = 1}, + [1367] = {.lex_state = 141, .external_lex_state = 1}, + [1368] = {.lex_state = 142, .external_lex_state = 1}, + [1369] = {.lex_state = 142, .external_lex_state = 1}, + [1370] = {.lex_state = 142, .external_lex_state = 1}, + [1371] = {.lex_state = 142, .external_lex_state = 1}, + [1372] = {.lex_state = 142, .external_lex_state = 1}, + [1373] = {.lex_state = 142, .external_lex_state = 1}, + [1374] = {.lex_state = 142, .external_lex_state = 1}, + [1375] = {.lex_state = 142, .external_lex_state = 1}, + [1376] = {.lex_state = 142, .external_lex_state = 1}, + [1377] = {.lex_state = 141, .external_lex_state = 1}, + [1378] = {.lex_state = 142, .external_lex_state = 1}, + [1379] = {.lex_state = 142, .external_lex_state = 1}, + [1380] = {.lex_state = 142, .external_lex_state = 1}, + [1381] = {.lex_state = 141, .external_lex_state = 1}, + [1382] = {.lex_state = 141, .external_lex_state = 1}, + [1383] = {.lex_state = 141, .external_lex_state = 1}, + [1384] = {.lex_state = 141, .external_lex_state = 1}, + [1385] = {.lex_state = 142, .external_lex_state = 1}, + [1386] = {.lex_state = 141, .external_lex_state = 1}, + [1387] = {.lex_state = 142, .external_lex_state = 1}, + [1388] = {.lex_state = 142, .external_lex_state = 1}, + [1389] = {.lex_state = 142, .external_lex_state = 1}, + [1390] = {.lex_state = 142, .external_lex_state = 1}, + [1391] = {.lex_state = 142, .external_lex_state = 1}, + [1392] = {.lex_state = 142, .external_lex_state = 1}, + [1393] = {.lex_state = 142, .external_lex_state = 1}, + [1394] = {.lex_state = 142, .external_lex_state = 1}, + [1395] = {.lex_state = 142, .external_lex_state = 1}, + [1396] = {.lex_state = 142, .external_lex_state = 1}, + [1397] = {.lex_state = 155}, + [1398] = {.lex_state = 142, .external_lex_state = 1}, + [1399] = {.lex_state = 142, .external_lex_state = 1}, + [1400] = {.lex_state = 155}, + [1401] = {.lex_state = 155}, + [1402] = {.lex_state = 155}, + [1403] = {.lex_state = 142, .external_lex_state = 1}, + [1404] = {.lex_state = 142, .external_lex_state = 1}, + [1405] = {.lex_state = 142, .external_lex_state = 1}, + [1406] = {.lex_state = 142, .external_lex_state = 1}, + [1407] = {.lex_state = 142, .external_lex_state = 1}, + [1408] = {.lex_state = 142, .external_lex_state = 1}, + [1409] = {.lex_state = 142, .external_lex_state = 1}, + [1410] = {.lex_state = 142, .external_lex_state = 1}, + [1411] = {.lex_state = 142, .external_lex_state = 1}, + [1412] = {.lex_state = 142, .external_lex_state = 1}, + [1413] = {.lex_state = 142, .external_lex_state = 1}, + [1414] = {.lex_state = 142, .external_lex_state = 1}, + [1415] = {.lex_state = 142, .external_lex_state = 1}, + [1416] = {.lex_state = 142, .external_lex_state = 1}, + [1417] = {.lex_state = 142, .external_lex_state = 1}, + [1418] = {.lex_state = 142, .external_lex_state = 1}, + [1419] = {.lex_state = 142, .external_lex_state = 1}, + [1420] = {.lex_state = 142, .external_lex_state = 1}, + [1421] = {.lex_state = 142, .external_lex_state = 1}, + [1422] = {.lex_state = 142, .external_lex_state = 1}, + [1423] = {.lex_state = 142, .external_lex_state = 1}, + [1424] = {.lex_state = 155}, + [1425] = {.lex_state = 142, .external_lex_state = 1}, + [1426] = {.lex_state = 142, .external_lex_state = 1}, + [1427] = {.lex_state = 142, .external_lex_state = 1}, + [1428] = {.lex_state = 155}, + [1429] = {.lex_state = 142, .external_lex_state = 1}, + [1430] = {.lex_state = 155}, + [1431] = {.lex_state = 142, .external_lex_state = 1}, + [1432] = {.lex_state = 142, .external_lex_state = 1}, + [1433] = {.lex_state = 142, .external_lex_state = 1}, + [1434] = {.lex_state = 142, .external_lex_state = 1}, + [1435] = {.lex_state = 142, .external_lex_state = 1}, + [1436] = {.lex_state = 142, .external_lex_state = 1}, + [1437] = {.lex_state = 142, .external_lex_state = 1}, + [1438] = {.lex_state = 142, .external_lex_state = 1}, + [1439] = {.lex_state = 142, .external_lex_state = 1}, + [1440] = {.lex_state = 142, .external_lex_state = 1}, + [1441] = {.lex_state = 142, .external_lex_state = 1}, + [1442] = {.lex_state = 142, .external_lex_state = 1}, + [1443] = {.lex_state = 142, .external_lex_state = 1}, + [1444] = {.lex_state = 142, .external_lex_state = 1}, + [1445] = {.lex_state = 142, .external_lex_state = 1}, + [1446] = {.lex_state = 142, .external_lex_state = 1}, + [1447] = {.lex_state = 142, .external_lex_state = 1}, + [1448] = {.lex_state = 142, .external_lex_state = 1}, + [1449] = {.lex_state = 142, .external_lex_state = 1}, + [1450] = {.lex_state = 142, .external_lex_state = 1}, + [1451] = {.lex_state = 142, .external_lex_state = 1}, + [1452] = {.lex_state = 142, .external_lex_state = 1}, + [1453] = {.lex_state = 142, .external_lex_state = 1}, + [1454] = {.lex_state = 142, .external_lex_state = 1}, + [1455] = {.lex_state = 142, .external_lex_state = 1}, + [1456] = {.lex_state = 142, .external_lex_state = 1}, + [1457] = {.lex_state = 142, .external_lex_state = 1}, + [1458] = {.lex_state = 155}, + [1459] = {.lex_state = 142, .external_lex_state = 1}, + [1460] = {.lex_state = 142, .external_lex_state = 1}, + [1461] = {.lex_state = 142, .external_lex_state = 1}, + [1462] = {.lex_state = 142, .external_lex_state = 1}, + [1463] = {.lex_state = 142, .external_lex_state = 1}, + [1464] = {.lex_state = 142, .external_lex_state = 1}, + [1465] = {.lex_state = 142, .external_lex_state = 1}, + [1466] = {.lex_state = 142, .external_lex_state = 1}, + [1467] = {.lex_state = 142, .external_lex_state = 1}, + [1468] = {.lex_state = 142, .external_lex_state = 1}, + [1469] = {.lex_state = 142, .external_lex_state = 1}, + [1470] = {.lex_state = 142, .external_lex_state = 1}, + [1471] = {.lex_state = 142, .external_lex_state = 1}, + [1472] = {.lex_state = 142, .external_lex_state = 1}, + [1473] = {.lex_state = 142, .external_lex_state = 1}, + [1474] = {.lex_state = 142, .external_lex_state = 1}, + [1475] = {.lex_state = 142, .external_lex_state = 1}, + [1476] = {.lex_state = 142, .external_lex_state = 1}, + [1477] = {.lex_state = 142, .external_lex_state = 1}, + [1478] = {.lex_state = 142, .external_lex_state = 1}, + [1479] = {.lex_state = 142, .external_lex_state = 1}, + [1480] = {.lex_state = 142, .external_lex_state = 1}, + [1481] = {.lex_state = 142, .external_lex_state = 1}, + [1482] = {.lex_state = 142, .external_lex_state = 1}, + [1483] = {.lex_state = 142, .external_lex_state = 1}, + [1484] = {.lex_state = 142, .external_lex_state = 1}, + [1485] = {.lex_state = 142, .external_lex_state = 1}, + [1486] = {.lex_state = 142, .external_lex_state = 1}, + [1487] = {.lex_state = 142, .external_lex_state = 1}, + [1488] = {.lex_state = 142, .external_lex_state = 1}, + [1489] = {.lex_state = 142, .external_lex_state = 1}, + [1490] = {.lex_state = 142, .external_lex_state = 1}, + [1491] = {.lex_state = 142, .external_lex_state = 1}, + [1492] = {.lex_state = 142, .external_lex_state = 1}, + [1493] = {.lex_state = 142, .external_lex_state = 1}, + [1494] = {.lex_state = 142, .external_lex_state = 1}, + [1495] = {.lex_state = 196}, + [1496] = {.lex_state = 142, .external_lex_state = 1}, + [1497] = {.lex_state = 142, .external_lex_state = 1}, + [1498] = {.lex_state = 142, .external_lex_state = 1}, + [1499] = {.lex_state = 142, .external_lex_state = 1}, + [1500] = {.lex_state = 142, .external_lex_state = 1}, + [1501] = {.lex_state = 142, .external_lex_state = 1}, + [1502] = {.lex_state = 142, .external_lex_state = 1}, + [1503] = {.lex_state = 142, .external_lex_state = 1}, + [1504] = {.lex_state = 142, .external_lex_state = 1}, + [1505] = {.lex_state = 196}, + [1506] = {.lex_state = 142, .external_lex_state = 1}, + [1507] = {.lex_state = 142, .external_lex_state = 1}, + [1508] = {.lex_state = 142, .external_lex_state = 1}, + [1509] = {.lex_state = 142, .external_lex_state = 1}, + [1510] = {.lex_state = 142, .external_lex_state = 1}, + [1511] = {.lex_state = 142, .external_lex_state = 1}, + [1512] = {.lex_state = 142, .external_lex_state = 1}, + [1513] = {.lex_state = 142, .external_lex_state = 1}, + [1514] = {.lex_state = 142, .external_lex_state = 1}, + [1515] = {.lex_state = 142, .external_lex_state = 1}, + [1516] = {.lex_state = 142, .external_lex_state = 1}, + [1517] = {.lex_state = 142, .external_lex_state = 1}, + [1518] = {.lex_state = 142, .external_lex_state = 1}, + [1519] = {.lex_state = 142, .external_lex_state = 1}, + [1520] = {.lex_state = 142, .external_lex_state = 1}, + [1521] = {.lex_state = 142, .external_lex_state = 1}, + [1522] = {.lex_state = 142, .external_lex_state = 1}, + [1523] = {.lex_state = 142, .external_lex_state = 1}, + [1524] = {.lex_state = 142, .external_lex_state = 1}, + [1525] = {.lex_state = 142, .external_lex_state = 1}, + [1526] = {.lex_state = 142, .external_lex_state = 1}, + [1527] = {.lex_state = 142, .external_lex_state = 1}, + [1528] = {.lex_state = 142, .external_lex_state = 1}, + [1529] = {.lex_state = 142, .external_lex_state = 1}, + [1530] = {.lex_state = 142, .external_lex_state = 1}, + [1531] = {.lex_state = 142, .external_lex_state = 1}, + [1532] = {.lex_state = 142, .external_lex_state = 1}, + [1533] = {.lex_state = 142, .external_lex_state = 1}, + [1534] = {.lex_state = 142, .external_lex_state = 1}, + [1535] = {.lex_state = 142, .external_lex_state = 1}, + [1536] = {.lex_state = 142, .external_lex_state = 1}, + [1537] = {.lex_state = 142, .external_lex_state = 1}, + [1538] = {.lex_state = 142, .external_lex_state = 1}, + [1539] = {.lex_state = 142, .external_lex_state = 1}, + [1540] = {.lex_state = 142, .external_lex_state = 1}, + [1541] = {.lex_state = 142, .external_lex_state = 1}, + [1542] = {.lex_state = 142, .external_lex_state = 1}, + [1543] = {.lex_state = 142, .external_lex_state = 1}, + [1544] = {.lex_state = 142, .external_lex_state = 1}, + [1545] = {.lex_state = 142, .external_lex_state = 1}, + [1546] = {.lex_state = 142, .external_lex_state = 1}, + [1547] = {.lex_state = 142, .external_lex_state = 1}, + [1548] = {.lex_state = 142, .external_lex_state = 1}, + [1549] = {.lex_state = 142, .external_lex_state = 1}, + [1550] = {.lex_state = 142, .external_lex_state = 1}, + [1551] = {.lex_state = 142, .external_lex_state = 1}, + [1552] = {.lex_state = 142, .external_lex_state = 1}, + [1553] = {.lex_state = 142, .external_lex_state = 1}, + [1554] = {.lex_state = 142, .external_lex_state = 1}, + [1555] = {.lex_state = 142, .external_lex_state = 1}, + [1556] = {.lex_state = 142, .external_lex_state = 1}, + [1557] = {.lex_state = 142, .external_lex_state = 1}, + [1558] = {.lex_state = 142, .external_lex_state = 1}, + [1559] = {.lex_state = 142, .external_lex_state = 1}, + [1560] = {.lex_state = 142, .external_lex_state = 1}, + [1561] = {.lex_state = 142, .external_lex_state = 1}, + [1562] = {.lex_state = 142, .external_lex_state = 1}, + [1563] = {.lex_state = 142, .external_lex_state = 1}, + [1564] = {.lex_state = 142, .external_lex_state = 1}, + [1565] = {.lex_state = 142, .external_lex_state = 1}, + [1566] = {.lex_state = 142, .external_lex_state = 1}, + [1567] = {.lex_state = 142, .external_lex_state = 1}, + [1568] = {.lex_state = 142, .external_lex_state = 1}, + [1569] = {.lex_state = 142, .external_lex_state = 1}, + [1570] = {.lex_state = 142, .external_lex_state = 1}, + [1571] = {.lex_state = 142, .external_lex_state = 1}, + [1572] = {.lex_state = 142, .external_lex_state = 1}, + [1573] = {.lex_state = 142, .external_lex_state = 1}, + [1574] = {.lex_state = 142, .external_lex_state = 1}, + [1575] = {.lex_state = 142, .external_lex_state = 1}, + [1576] = {.lex_state = 142, .external_lex_state = 1}, + [1577] = {.lex_state = 142, .external_lex_state = 1}, + [1578] = {.lex_state = 142, .external_lex_state = 1}, + [1579] = {.lex_state = 142, .external_lex_state = 1}, + [1580] = {.lex_state = 142, .external_lex_state = 1}, + [1581] = {.lex_state = 142, .external_lex_state = 1}, + [1582] = {.lex_state = 142, .external_lex_state = 1}, + [1583] = {.lex_state = 142, .external_lex_state = 1}, + [1584] = {.lex_state = 142, .external_lex_state = 1}, + [1585] = {.lex_state = 142, .external_lex_state = 1}, + [1586] = {.lex_state = 142, .external_lex_state = 1}, + [1587] = {.lex_state = 142, .external_lex_state = 1}, + [1588] = {.lex_state = 142, .external_lex_state = 1}, + [1589] = {.lex_state = 142, .external_lex_state = 1}, + [1590] = {.lex_state = 142, .external_lex_state = 1}, + [1591] = {.lex_state = 142, .external_lex_state = 1}, + [1592] = {.lex_state = 142, .external_lex_state = 1}, + [1593] = {.lex_state = 142, .external_lex_state = 1}, + [1594] = {.lex_state = 142, .external_lex_state = 1}, + [1595] = {.lex_state = 142, .external_lex_state = 1}, + [1596] = {.lex_state = 142, .external_lex_state = 1}, + [1597] = {.lex_state = 142, .external_lex_state = 1}, + [1598] = {.lex_state = 142, .external_lex_state = 1}, + [1599] = {.lex_state = 142, .external_lex_state = 1}, + [1600] = {.lex_state = 142, .external_lex_state = 1}, + [1601] = {.lex_state = 142, .external_lex_state = 1}, + [1602] = {.lex_state = 142, .external_lex_state = 1}, + [1603] = {.lex_state = 142, .external_lex_state = 1}, + [1604] = {.lex_state = 142, .external_lex_state = 1}, + [1605] = {.lex_state = 142, .external_lex_state = 1}, + [1606] = {.lex_state = 142, .external_lex_state = 1}, + [1607] = {.lex_state = 142, .external_lex_state = 1}, + [1608] = {.lex_state = 142, .external_lex_state = 1}, + [1609] = {.lex_state = 142, .external_lex_state = 1}, + [1610] = {.lex_state = 142, .external_lex_state = 1}, + [1611] = {.lex_state = 142, .external_lex_state = 1}, + [1612] = {.lex_state = 142, .external_lex_state = 1}, + [1613] = {.lex_state = 142, .external_lex_state = 1}, + [1614] = {.lex_state = 142, .external_lex_state = 1}, + [1615] = {.lex_state = 142, .external_lex_state = 1}, + [1616] = {.lex_state = 142, .external_lex_state = 1}, + [1617] = {.lex_state = 142, .external_lex_state = 1}, + [1618] = {.lex_state = 142, .external_lex_state = 1}, + [1619] = {.lex_state = 142, .external_lex_state = 1}, + [1620] = {.lex_state = 142, .external_lex_state = 1}, + [1621] = {.lex_state = 142, .external_lex_state = 1}, + [1622] = {.lex_state = 142, .external_lex_state = 1}, + [1623] = {.lex_state = 142, .external_lex_state = 1}, + [1624] = {.lex_state = 142, .external_lex_state = 1}, + [1625] = {.lex_state = 142, .external_lex_state = 1}, + [1626] = {.lex_state = 142, .external_lex_state = 1}, + [1627] = {.lex_state = 142, .external_lex_state = 1}, + [1628] = {.lex_state = 142, .external_lex_state = 1}, + [1629] = {.lex_state = 142, .external_lex_state = 1}, + [1630] = {.lex_state = 142, .external_lex_state = 1}, + [1631] = {.lex_state = 142, .external_lex_state = 1}, + [1632] = {.lex_state = 142, .external_lex_state = 1}, + [1633] = {.lex_state = 142, .external_lex_state = 1}, + [1634] = {.lex_state = 142, .external_lex_state = 1}, + [1635] = {.lex_state = 142, .external_lex_state = 1}, + [1636] = {.lex_state = 142, .external_lex_state = 1}, + [1637] = {.lex_state = 142, .external_lex_state = 1}, + [1638] = {.lex_state = 142, .external_lex_state = 1}, + [1639] = {.lex_state = 142, .external_lex_state = 1}, + [1640] = {.lex_state = 142, .external_lex_state = 1}, + [1641] = {.lex_state = 142, .external_lex_state = 1}, + [1642] = {.lex_state = 142, .external_lex_state = 1}, + [1643] = {.lex_state = 142, .external_lex_state = 1}, + [1644] = {.lex_state = 142, .external_lex_state = 1}, + [1645] = {.lex_state = 142, .external_lex_state = 1}, + [1646] = {.lex_state = 142, .external_lex_state = 1}, + [1647] = {.lex_state = 142, .external_lex_state = 1}, + [1648] = {.lex_state = 142, .external_lex_state = 1}, + [1649] = {.lex_state = 142, .external_lex_state = 1}, + [1650] = {.lex_state = 142, .external_lex_state = 1}, + [1651] = {.lex_state = 142, .external_lex_state = 1}, + [1652] = {.lex_state = 142, .external_lex_state = 1}, + [1653] = {.lex_state = 142, .external_lex_state = 1}, + [1654] = {.lex_state = 142, .external_lex_state = 1}, + [1655] = {.lex_state = 142, .external_lex_state = 1}, + [1656] = {.lex_state = 142, .external_lex_state = 1}, + [1657] = {.lex_state = 142, .external_lex_state = 1}, + [1658] = {.lex_state = 142, .external_lex_state = 1}, + [1659] = {.lex_state = 142, .external_lex_state = 1}, + [1660] = {.lex_state = 142, .external_lex_state = 1}, + [1661] = {.lex_state = 142, .external_lex_state = 1}, + [1662] = {.lex_state = 142, .external_lex_state = 1}, + [1663] = {.lex_state = 142, .external_lex_state = 1}, + [1664] = {.lex_state = 142, .external_lex_state = 1}, + [1665] = {.lex_state = 142, .external_lex_state = 1}, + [1666] = {.lex_state = 142, .external_lex_state = 1}, + [1667] = {.lex_state = 142, .external_lex_state = 1}, + [1668] = {.lex_state = 142, .external_lex_state = 1}, + [1669] = {.lex_state = 142, .external_lex_state = 1}, + [1670] = {.lex_state = 142, .external_lex_state = 1}, + [1671] = {.lex_state = 142, .external_lex_state = 1}, + [1672] = {.lex_state = 142, .external_lex_state = 1}, + [1673] = {.lex_state = 142, .external_lex_state = 1}, + [1674] = {.lex_state = 142, .external_lex_state = 1}, + [1675] = {.lex_state = 142, .external_lex_state = 1}, + [1676] = {.lex_state = 142, .external_lex_state = 1}, + [1677] = {.lex_state = 142, .external_lex_state = 1}, + [1678] = {.lex_state = 142, .external_lex_state = 1}, + [1679] = {.lex_state = 142, .external_lex_state = 1}, + [1680] = {.lex_state = 142, .external_lex_state = 1}, + [1681] = {.lex_state = 142, .external_lex_state = 1}, + [1682] = {.lex_state = 142, .external_lex_state = 1}, + [1683] = {.lex_state = 142, .external_lex_state = 1}, + [1684] = {.lex_state = 142, .external_lex_state = 1}, + [1685] = {.lex_state = 142, .external_lex_state = 1}, + [1686] = {.lex_state = 142, .external_lex_state = 1}, + [1687] = {.lex_state = 142, .external_lex_state = 1}, + [1688] = {.lex_state = 142, .external_lex_state = 1}, + [1689] = {.lex_state = 142, .external_lex_state = 1}, + [1690] = {.lex_state = 142, .external_lex_state = 1}, + [1691] = {.lex_state = 142, .external_lex_state = 1}, + [1692] = {.lex_state = 142, .external_lex_state = 1}, + [1693] = {.lex_state = 142, .external_lex_state = 1}, + [1694] = {.lex_state = 142, .external_lex_state = 1}, + [1695] = {.lex_state = 142, .external_lex_state = 1}, + [1696] = {.lex_state = 142, .external_lex_state = 1}, + [1697] = {.lex_state = 142, .external_lex_state = 1}, + [1698] = {.lex_state = 142, .external_lex_state = 1}, + [1699] = {.lex_state = 142, .external_lex_state = 1}, + [1700] = {.lex_state = 142, .external_lex_state = 1}, + [1701] = {.lex_state = 142, .external_lex_state = 1}, + [1702] = {.lex_state = 142, .external_lex_state = 1}, + [1703] = {.lex_state = 142, .external_lex_state = 1}, + [1704] = {.lex_state = 142, .external_lex_state = 1}, + [1705] = {.lex_state = 142, .external_lex_state = 1}, + [1706] = {.lex_state = 142, .external_lex_state = 1}, + [1707] = {.lex_state = 142, .external_lex_state = 1}, + [1708] = {.lex_state = 142, .external_lex_state = 1}, + [1709] = {.lex_state = 142, .external_lex_state = 1}, + [1710] = {.lex_state = 142, .external_lex_state = 1}, + [1711] = {.lex_state = 142, .external_lex_state = 1}, + [1712] = {.lex_state = 142, .external_lex_state = 1}, + [1713] = {.lex_state = 142, .external_lex_state = 1}, + [1714] = {.lex_state = 142, .external_lex_state = 1}, + [1715] = {.lex_state = 142, .external_lex_state = 1}, + [1716] = {.lex_state = 142, .external_lex_state = 1}, + [1717] = {.lex_state = 142, .external_lex_state = 1}, + [1718] = {.lex_state = 142, .external_lex_state = 1}, + [1719] = {.lex_state = 142, .external_lex_state = 1}, + [1720] = {.lex_state = 142, .external_lex_state = 1}, + [1721] = {.lex_state = 142, .external_lex_state = 1}, + [1722] = {.lex_state = 142, .external_lex_state = 1}, + [1723] = {.lex_state = 142, .external_lex_state = 1}, + [1724] = {.lex_state = 142, .external_lex_state = 1}, + [1725] = {.lex_state = 142, .external_lex_state = 1}, + [1726] = {.lex_state = 142, .external_lex_state = 1}, + [1727] = {.lex_state = 142, .external_lex_state = 1}, + [1728] = {.lex_state = 142, .external_lex_state = 1}, + [1729] = {.lex_state = 142, .external_lex_state = 1}, + [1730] = {.lex_state = 142, .external_lex_state = 1}, + [1731] = {.lex_state = 142, .external_lex_state = 1}, + [1732] = {.lex_state = 142, .external_lex_state = 1}, + [1733] = {.lex_state = 142, .external_lex_state = 1}, + [1734] = {.lex_state = 142, .external_lex_state = 1}, + [1735] = {.lex_state = 142, .external_lex_state = 1}, + [1736] = {.lex_state = 142, .external_lex_state = 1}, + [1737] = {.lex_state = 142, .external_lex_state = 1}, + [1738] = {.lex_state = 142, .external_lex_state = 1}, + [1739] = {.lex_state = 142, .external_lex_state = 1}, + [1740] = {.lex_state = 142, .external_lex_state = 1}, + [1741] = {.lex_state = 142, .external_lex_state = 1}, + [1742] = {.lex_state = 142, .external_lex_state = 1}, + [1743] = {.lex_state = 142, .external_lex_state = 1}, + [1744] = {.lex_state = 142, .external_lex_state = 1}, + [1745] = {.lex_state = 142, .external_lex_state = 1}, + [1746] = {.lex_state = 142, .external_lex_state = 1}, + [1747] = {.lex_state = 142, .external_lex_state = 1}, + [1748] = {.lex_state = 142, .external_lex_state = 1}, + [1749] = {.lex_state = 142, .external_lex_state = 1}, + [1750] = {.lex_state = 142, .external_lex_state = 1}, + [1751] = {.lex_state = 142, .external_lex_state = 1}, + [1752] = {.lex_state = 142, .external_lex_state = 1}, + [1753] = {.lex_state = 142, .external_lex_state = 1}, + [1754] = {.lex_state = 142, .external_lex_state = 1}, + [1755] = {.lex_state = 142, .external_lex_state = 1}, + [1756] = {.lex_state = 142, .external_lex_state = 1}, + [1757] = {.lex_state = 142, .external_lex_state = 1}, + [1758] = {.lex_state = 142, .external_lex_state = 1}, + [1759] = {.lex_state = 142, .external_lex_state = 1}, + [1760] = {.lex_state = 142, .external_lex_state = 1}, + [1761] = {.lex_state = 142, .external_lex_state = 1}, + [1762] = {.lex_state = 142, .external_lex_state = 1}, + [1763] = {.lex_state = 142, .external_lex_state = 1}, + [1764] = {.lex_state = 142, .external_lex_state = 1}, + [1765] = {.lex_state = 142, .external_lex_state = 1}, + [1766] = {.lex_state = 142, .external_lex_state = 1}, + [1767] = {.lex_state = 142, .external_lex_state = 1}, + [1768] = {.lex_state = 142, .external_lex_state = 1}, + [1769] = {.lex_state = 142, .external_lex_state = 1}, + [1770] = {.lex_state = 142, .external_lex_state = 1}, + [1771] = {.lex_state = 142, .external_lex_state = 1}, + [1772] = {.lex_state = 179}, + [1773] = {.lex_state = 179}, + [1774] = {.lex_state = 179}, + [1775] = {.lex_state = 179}, + [1776] = {.lex_state = 179}, + [1777] = {.lex_state = 179}, + [1778] = {.lex_state = 179}, + [1779] = {.lex_state = 196}, + [1780] = {.lex_state = 196}, + [1781] = {.lex_state = 196}, + [1782] = {.lex_state = 196}, + [1783] = {.lex_state = 156}, + [1784] = {.lex_state = 156}, + [1785] = {.lex_state = 139, .external_lex_state = 1}, + [1786] = {.lex_state = 156}, + [1787] = {.lex_state = 156}, + [1788] = {.lex_state = 156}, + [1789] = {.lex_state = 156}, + [1790] = {.lex_state = 196}, + [1791] = {.lex_state = 196}, + [1792] = {.lex_state = 139, .external_lex_state = 1}, + [1793] = {.lex_state = 156}, + [1794] = {.lex_state = 196}, + [1795] = {.lex_state = 155}, + [1796] = {.lex_state = 155}, + [1797] = {.lex_state = 165}, + [1798] = {.lex_state = 165}, + [1799] = {.lex_state = 195}, + [1800] = {.lex_state = 196}, + [1801] = {.lex_state = 155}, + [1802] = {.lex_state = 195}, + [1803] = {.lex_state = 156}, + [1804] = {.lex_state = 165}, + [1805] = {.lex_state = 196}, + [1806] = {.lex_state = 165}, + [1807] = {.lex_state = 156}, + [1808] = {.lex_state = 165}, + [1809] = {.lex_state = 165}, + [1810] = {.lex_state = 165}, + [1811] = {.lex_state = 156}, + [1812] = {.lex_state = 167}, + [1813] = {.lex_state = 196}, + [1814] = {.lex_state = 156}, + [1815] = {.lex_state = 156}, + [1816] = {.lex_state = 156}, + [1817] = {.lex_state = 156}, + [1818] = {.lex_state = 156}, + [1819] = {.lex_state = 156}, + [1820] = {.lex_state = 156}, + [1821] = {.lex_state = 167}, + [1822] = {.lex_state = 179}, + [1823] = {.lex_state = 165}, + [1824] = {.lex_state = 146, .external_lex_state = 1}, + [1825] = {.lex_state = 179}, + [1826] = {.lex_state = 179}, + [1827] = {.lex_state = 146, .external_lex_state = 1}, + [1828] = {.lex_state = 155}, + [1829] = {.lex_state = 146, .external_lex_state = 1}, + [1830] = {.lex_state = 165}, + [1831] = {.lex_state = 159}, + [1832] = {.lex_state = 168}, + [1833] = {.lex_state = 168}, + [1834] = {.lex_state = 159}, + [1835] = {.lex_state = 168}, + [1836] = {.lex_state = 168}, + [1837] = {.lex_state = 168}, + [1838] = {.lex_state = 168}, + [1839] = {.lex_state = 165}, + [1840] = {.lex_state = 168}, + [1841] = {.lex_state = 168}, + [1842] = {.lex_state = 168}, + [1843] = {.lex_state = 196}, + [1844] = {.lex_state = 196}, + [1845] = {.lex_state = 168}, + [1846] = {.lex_state = 157}, + [1847] = {.lex_state = 144, .external_lex_state = 1}, + [1848] = {.lex_state = 157}, + [1849] = {.lex_state = 157}, + [1850] = {.lex_state = 157}, + [1851] = {.lex_state = 156}, + [1852] = {.lex_state = 168}, + [1853] = {.lex_state = 146, .external_lex_state = 1}, + [1854] = {.lex_state = 157}, + [1855] = {.lex_state = 157}, + [1856] = {.lex_state = 196}, + [1857] = {.lex_state = 157}, + [1858] = {.lex_state = 196}, + [1859] = {.lex_state = 157}, + [1860] = {.lex_state = 157}, + [1861] = {.lex_state = 144, .external_lex_state = 1}, + [1862] = {.lex_state = 146, .external_lex_state = 1}, + [1863] = {.lex_state = 168}, + [1864] = {.lex_state = 164}, + [1865] = {.lex_state = 144, .external_lex_state = 1}, + [1866] = {.lex_state = 168}, + [1867] = {.lex_state = 164}, + [1868] = {.lex_state = 196}, + [1869] = {.lex_state = 164}, + [1870] = {.lex_state = 156}, + [1871] = {.lex_state = 174}, + [1872] = {.lex_state = 164}, + [1873] = {.lex_state = 164}, + [1874] = {.lex_state = 174}, + [1875] = {.lex_state = 164}, + [1876] = {.lex_state = 196}, + [1877] = {.lex_state = 164}, + [1878] = {.lex_state = 164}, + [1879] = {.lex_state = 196}, + [1880] = {.lex_state = 164}, + [1881] = {.lex_state = 196}, + [1882] = {.lex_state = 156}, + [1883] = {.lex_state = 164}, + [1884] = {.lex_state = 164}, + [1885] = {.lex_state = 196}, + [1886] = {.lex_state = 164}, + [1887] = {.lex_state = 164}, + [1888] = {.lex_state = 164}, + [1889] = {.lex_state = 196}, + [1890] = {.lex_state = 156}, + [1891] = {.lex_state = 196}, + [1892] = {.lex_state = 148, .external_lex_state = 1}, + [1893] = {.lex_state = 156}, + [1894] = {.lex_state = 196}, + [1895] = {.lex_state = 168}, + [1896] = {.lex_state = 164}, + [1897] = {.lex_state = 156}, + [1898] = {.lex_state = 196}, + [1899] = {.lex_state = 196}, + [1900] = {.lex_state = 196}, + [1901] = {.lex_state = 196}, + [1902] = {.lex_state = 156}, + [1903] = {.lex_state = 196}, + [1904] = {.lex_state = 183}, + [1905] = {.lex_state = 159}, + [1906] = {.lex_state = 156}, + [1907] = {.lex_state = 172}, + [1908] = {.lex_state = 172}, + [1909] = {.lex_state = 164}, + [1910] = {.lex_state = 159}, + [1911] = {.lex_state = 172}, + [1912] = {.lex_state = 168}, + [1913] = {.lex_state = 196}, + [1914] = {.lex_state = 148, .external_lex_state = 1}, + [1915] = {.lex_state = 172}, + [1916] = {.lex_state = 172}, + [1917] = {.lex_state = 172}, + [1918] = {.lex_state = 144, .external_lex_state = 1}, + [1919] = {.lex_state = 196}, + [1920] = {.lex_state = 172}, + [1921] = {.lex_state = 196}, + [1922] = {.lex_state = 144, .external_lex_state = 1}, + [1923] = {.lex_state = 172}, + [1924] = {.lex_state = 156}, + [1925] = {.lex_state = 196}, + [1926] = {.lex_state = 156}, + [1927] = {.lex_state = 148, .external_lex_state = 1}, + [1928] = {.lex_state = 196}, + [1929] = {.lex_state = 156}, + [1930] = {.lex_state = 168}, + [1931] = {.lex_state = 196}, + [1932] = {.lex_state = 156}, + [1933] = {.lex_state = 196}, + [1934] = {.lex_state = 196}, + [1935] = {.lex_state = 183}, + [1936] = {.lex_state = 172}, + [1937] = {.lex_state = 156}, + [1938] = {.lex_state = 179}, + [1939] = {.lex_state = 154}, + [1940] = {.lex_state = 196}, + [1941] = {.lex_state = 154}, + [1942] = {.lex_state = 195}, + [1943] = {.lex_state = 165}, + [1944] = {.lex_state = 157}, + [1945] = {.lex_state = 157}, + [1946] = {.lex_state = 157}, + [1947] = {.lex_state = 165}, + [1948] = {.lex_state = 165}, + [1949] = {.lex_state = 168}, + [1950] = {.lex_state = 168}, + [1951] = {.lex_state = 168}, + [1952] = {.lex_state = 154}, + [1953] = {.lex_state = 144, .external_lex_state = 1}, + [1954] = {.lex_state = 179}, + [1955] = {.lex_state = 157}, + [1956] = {.lex_state = 157}, + [1957] = {.lex_state = 157}, + [1958] = {.lex_state = 154}, + [1959] = {.lex_state = 157}, + [1960] = {.lex_state = 164}, + [1961] = {.lex_state = 157}, + [1962] = {.lex_state = 157}, + [1963] = {.lex_state = 179}, + [1964] = {.lex_state = 157}, + [1965] = {.lex_state = 179}, + [1966] = {.lex_state = 157}, + [1967] = {.lex_state = 165}, + [1968] = {.lex_state = 165}, + [1969] = {.lex_state = 179}, + [1970] = {.lex_state = 144, .external_lex_state = 1}, + [1971] = {.lex_state = 195}, + [1972] = {.lex_state = 195}, + [1973] = {.lex_state = 195}, + [1974] = {.lex_state = 179}, + [1975] = {.lex_state = 179}, + [1976] = {.lex_state = 157}, + [1977] = {.lex_state = 165}, + [1978] = {.lex_state = 144, .external_lex_state = 1}, + [1979] = {.lex_state = 195}, + [1980] = {.lex_state = 196}, + [1981] = {.lex_state = 196}, + [1982] = {.lex_state = 179}, + [1983] = {.lex_state = 179}, + [1984] = {.lex_state = 179}, [1985] = {.lex_state = 179}, - [1986] = {.lex_state = 145}, - [1987] = {.lex_state = 179}, - [1988] = {.lex_state = 145}, - [1989] = {.lex_state = 145}, - [1990] = {.lex_state = 145}, - [1991] = {.lex_state = 145}, - [1992] = {.lex_state = 145}, - [1993] = {.lex_state = 145}, - [1994] = {.lex_state = 145}, - [1995] = {.lex_state = 179}, - [1996] = {.lex_state = 179}, - [1997] = {.lex_state = 179}, - [1998] = {.lex_state = 179}, - [1999] = {.lex_state = 179}, - [2000] = {.lex_state = 156}, - [2001] = {.lex_state = 179}, - [2002] = {.lex_state = 145}, - [2003] = {.lex_state = 179}, - [2004] = {.lex_state = 179}, - [2005] = {.lex_state = 179}, - [2006] = {.lex_state = 145}, - [2007] = {.lex_state = 145}, - [2008] = {.lex_state = 145}, - [2009] = {.lex_state = 179}, - [2010] = {.lex_state = 145}, - [2011] = {.lex_state = 145}, - [2012] = {.lex_state = 179}, - [2013] = {.lex_state = 179}, - [2014] = {.lex_state = 179}, - [2015] = {.lex_state = 180}, - [2016] = {.lex_state = 145}, - [2017] = {.lex_state = 145}, - [2018] = {.lex_state = 179}, - [2019] = {.lex_state = 145}, - [2020] = {.lex_state = 145}, - [2021] = {.lex_state = 179}, - [2022] = {.lex_state = 179}, - [2023] = {.lex_state = 179}, - [2024] = {.lex_state = 179}, - [2025] = {.lex_state = 179}, - [2026] = {.lex_state = 179}, - [2027] = {.lex_state = 179}, - [2028] = {.lex_state = 179}, - [2029] = {.lex_state = 145}, - [2030] = {.lex_state = 179}, - [2031] = {.lex_state = 179}, - [2032] = {.lex_state = 156}, - [2033] = {.lex_state = 179}, - [2034] = {.lex_state = 179}, - [2035] = {.lex_state = 179}, - [2036] = {.lex_state = 179}, - [2037] = {.lex_state = 179}, - [2038] = {.lex_state = 179}, - [2039] = {.lex_state = 179}, - [2040] = {.lex_state = 179}, - [2041] = {.lex_state = 145}, - [2042] = {.lex_state = 145}, - [2043] = {.lex_state = 145}, - [2044] = {.lex_state = 145}, - [2045] = {.lex_state = 145}, - [2046] = {.lex_state = 179}, - [2047] = {.lex_state = 179}, - [2048] = {.lex_state = 145}, - [2049] = {.lex_state = 179}, - [2050] = {.lex_state = 179}, - [2051] = {.lex_state = 179}, - [2052] = {.lex_state = 179}, - [2053] = {.lex_state = 179}, - [2054] = {.lex_state = 179}, - [2055] = {.lex_state = 180}, - [2056] = {.lex_state = 179}, - [2057] = {.lex_state = 179}, - [2058] = {.lex_state = 179}, - [2059] = {.lex_state = 179}, - [2060] = {.lex_state = 179}, - [2061] = {.lex_state = 179}, - [2062] = {.lex_state = 154}, - [2063] = {.lex_state = 136, .external_lex_state = 1}, - [2064] = {.lex_state = 136, .external_lex_state = 1}, - [2065] = {.lex_state = 165}, - [2066] = {.lex_state = 136, .external_lex_state = 1}, - [2067] = {.lex_state = 154}, - [2068] = {.lex_state = 180}, - [2069] = {.lex_state = 150}, - [2070] = {.lex_state = 157}, - [2071] = {.lex_state = 157}, - [2072] = {.lex_state = 157}, - [2073] = {.lex_state = 168}, - [2074] = {.lex_state = 157}, + [1986] = {.lex_state = 168}, + [1987] = {.lex_state = 196}, + [1988] = {.lex_state = 196}, + [1989] = {.lex_state = 196}, + [1990] = {.lex_state = 196}, + [1991] = {.lex_state = 196}, + [1992] = {.lex_state = 196}, + [1993] = {.lex_state = 168}, + [1994] = {.lex_state = 196}, + [1995] = {.lex_state = 196}, + [1996] = {.lex_state = 168}, + [1997] = {.lex_state = 156}, + [1998] = {.lex_state = 196}, + [1999] = {.lex_state = 156}, + [2000] = {.lex_state = 196}, + [2001] = {.lex_state = 196}, + [2002] = {.lex_state = 196}, + [2003] = {.lex_state = 196}, + [2004] = {.lex_state = 196}, + [2005] = {.lex_state = 196}, + [2006] = {.lex_state = 196}, + [2007] = {.lex_state = 168}, + [2008] = {.lex_state = 196}, + [2009] = {.lex_state = 196}, + [2010] = {.lex_state = 196}, + [2011] = {.lex_state = 196}, + [2012] = {.lex_state = 196}, + [2013] = {.lex_state = 168}, + [2014] = {.lex_state = 168}, + [2015] = {.lex_state = 196}, + [2016] = {.lex_state = 168}, + [2017] = {.lex_state = 196}, + [2018] = {.lex_state = 196}, + [2019] = {.lex_state = 168}, + [2020] = {.lex_state = 168}, + [2021] = {.lex_state = 168}, + [2022] = {.lex_state = 168}, + [2023] = {.lex_state = 168}, + [2024] = {.lex_state = 168}, + [2025] = {.lex_state = 168}, + [2026] = {.lex_state = 168}, + [2027] = {.lex_state = 168}, + [2028] = {.lex_state = 184}, + [2029] = {.lex_state = 196}, + [2030] = {.lex_state = 172}, + [2031] = {.lex_state = 165}, + [2032] = {.lex_state = 168}, + [2033] = {.lex_state = 168}, + [2034] = {.lex_state = 196}, + [2035] = {.lex_state = 139, .external_lex_state = 1}, + [2036] = {.lex_state = 168}, + [2037] = {.lex_state = 168}, + [2038] = {.lex_state = 168}, + [2039] = {.lex_state = 168}, + [2040] = {.lex_state = 168}, + [2041] = {.lex_state = 168}, + [2042] = {.lex_state = 168}, + [2043] = {.lex_state = 168}, + [2044] = {.lex_state = 168}, + [2045] = {.lex_state = 168}, + [2046] = {.lex_state = 168}, + [2047] = {.lex_state = 168}, + [2048] = {.lex_state = 196}, + [2049] = {.lex_state = 196}, + [2050] = {.lex_state = 184}, + [2051] = {.lex_state = 196}, + [2052] = {.lex_state = 184}, + [2053] = {.lex_state = 196}, + [2054] = {.lex_state = 196}, + [2055] = {.lex_state = 196}, + [2056] = {.lex_state = 196}, + [2057] = {.lex_state = 196}, + [2058] = {.lex_state = 196}, + [2059] = {.lex_state = 196}, + [2060] = {.lex_state = 196}, + [2061] = {.lex_state = 196}, + [2062] = {.lex_state = 165}, + [2063] = {.lex_state = 168}, + [2064] = {.lex_state = 168}, + [2065] = {.lex_state = 196}, + [2066] = {.lex_state = 196}, + [2067] = {.lex_state = 196}, + [2068] = {.lex_state = 168}, + [2069] = {.lex_state = 196}, + [2070] = {.lex_state = 168}, + [2071] = {.lex_state = 168}, + [2072] = {.lex_state = 168}, + [2073] = {.lex_state = 196}, + [2074] = {.lex_state = 168}, [2075] = {.lex_state = 168}, - [2076] = {.lex_state = 157}, - [2077] = {.lex_state = 157}, - [2078] = {.lex_state = 154}, - [2079] = {.lex_state = 180}, - [2080] = {.lex_state = 157}, - [2081] = {.lex_state = 157}, - [2082] = {.lex_state = 150}, - [2083] = {.lex_state = 157}, - [2084] = {.lex_state = 148}, - [2085] = {.lex_state = 146}, - [2086] = {.lex_state = 134, .external_lex_state = 1}, - [2087] = {.lex_state = 136, .external_lex_state = 1}, - [2088] = {.lex_state = 148}, - [2089] = {.lex_state = 157}, - [2090] = {.lex_state = 136, .external_lex_state = 1}, - [2091] = {.lex_state = 148}, - [2092] = {.lex_state = 157}, - [2093] = {.lex_state = 134, .external_lex_state = 1}, - [2094] = {.lex_state = 157}, - [2095] = {.lex_state = 148}, - [2096] = {.lex_state = 148}, - [2097] = {.lex_state = 148}, - [2098] = {.lex_state = 153}, - [2099] = {.lex_state = 157}, - [2100] = {.lex_state = 148}, - [2101] = {.lex_state = 148}, - [2102] = {.lex_state = 134, .external_lex_state = 1}, - [2103] = {.lex_state = 153}, - [2104] = {.lex_state = 148}, - [2105] = {.lex_state = 169}, - [2106] = {.lex_state = 180}, - [2107] = {.lex_state = 180}, - [2108] = {.lex_state = 169}, - [2109] = {.lex_state = 180}, - [2110] = {.lex_state = 146}, - [2111] = {.lex_state = 180}, - [2112] = {.lex_state = 161}, - [2113] = {.lex_state = 180}, - [2114] = {.lex_state = 180}, - [2115] = {.lex_state = 180}, - [2116] = {.lex_state = 161}, - [2117] = {.lex_state = 153}, - [2118] = {.lex_state = 153}, - [2119] = {.lex_state = 153}, - [2120] = {.lex_state = 180}, - [2121] = {.lex_state = 180}, - [2122] = {.lex_state = 180}, - [2123] = {.lex_state = 169}, - [2124] = {.lex_state = 153}, - [2125] = {.lex_state = 180}, - [2126] = {.lex_state = 169}, - [2127] = {.lex_state = 169}, - [2128] = {.lex_state = 180}, - [2129] = {.lex_state = 180}, - [2130] = {.lex_state = 169}, - [2131] = {.lex_state = 153}, - [2132] = {.lex_state = 153}, - [2133] = {.lex_state = 153}, - [2134] = {.lex_state = 180}, - [2135] = {.lex_state = 146}, - [2136] = {.lex_state = 153}, - [2137] = {.lex_state = 153}, - [2138] = {.lex_state = 153}, - [2139] = {.lex_state = 153}, - [2140] = {.lex_state = 169}, - [2141] = {.lex_state = 180}, - [2142] = {.lex_state = 180}, - [2143] = {.lex_state = 169}, - [2144] = {.lex_state = 180}, - [2145] = {.lex_state = 169}, - [2146] = {.lex_state = 180}, - [2147] = {.lex_state = 153}, - [2148] = {.lex_state = 180}, - [2149] = {.lex_state = 180}, - [2150] = {.lex_state = 159}, - [2151] = {.lex_state = 138, .external_lex_state = 1}, - [2152] = {.lex_state = 138, .external_lex_state = 1}, - [2153] = {.lex_state = 159}, - [2154] = {.lex_state = 138, .external_lex_state = 1}, - [2155] = {.lex_state = 146}, - [2156] = {.lex_state = 146}, - [2157] = {.lex_state = 159}, - [2158] = {.lex_state = 159}, - [2159] = {.lex_state = 157}, - [2160] = {.lex_state = 153}, - [2161] = {.lex_state = 146}, - [2162] = {.lex_state = 159}, - [2163] = {.lex_state = 159}, - [2164] = {.lex_state = 157}, - [2165] = {.lex_state = 146}, - [2166] = {.lex_state = 159}, - [2167] = {.lex_state = 146}, - [2168] = {.lex_state = 146}, - [2169] = {.lex_state = 134, .external_lex_state = 1}, - [2170] = {.lex_state = 169}, - [2171] = {.lex_state = 134, .external_lex_state = 1}, - [2172] = {.lex_state = 146}, - [2173] = {.lex_state = 159}, - [2174] = {.lex_state = 159}, - [2175] = {.lex_state = 146}, - [2176] = {.lex_state = 153}, - [2177] = {.lex_state = 157}, - [2178] = {.lex_state = 166}, - [2179] = {.lex_state = 166}, - [2180] = {.lex_state = 148}, - [2181] = {.lex_state = 167}, - [2182] = {.lex_state = 171}, - [2183] = {.lex_state = 166}, - [2184] = {.lex_state = 166}, - [2185] = {.lex_state = 154}, - [2186] = {.lex_state = 166}, - [2187] = {.lex_state = 166}, - [2188] = {.lex_state = 154}, - [2189] = {.lex_state = 166}, - [2190] = {.lex_state = 157}, - [2191] = {.lex_state = 153}, - [2192] = {.lex_state = 154}, - [2193] = {.lex_state = 167}, - [2194] = {.lex_state = 148}, - [2195] = {.lex_state = 171}, - [2196] = {.lex_state = 157}, - [2197] = {.lex_state = 167}, + [2076] = {.lex_state = 168}, + [2077] = {.lex_state = 168}, + [2078] = {.lex_state = 168}, + [2079] = {.lex_state = 168}, + [2080] = {.lex_state = 168}, + [2081] = {.lex_state = 196}, + [2082] = {.lex_state = 168}, + [2083] = {.lex_state = 168}, + [2084] = {.lex_state = 164}, + [2085] = {.lex_state = 168}, + [2086] = {.lex_state = 168}, + [2087] = {.lex_state = 196}, + [2088] = {.lex_state = 196}, + [2089] = {.lex_state = 196}, + [2090] = {.lex_state = 196}, + [2091] = {.lex_state = 168}, + [2092] = {.lex_state = 196}, + [2093] = {.lex_state = 196}, + [2094] = {.lex_state = 196}, + [2095] = {.lex_state = 196}, + [2096] = {.lex_state = 154}, + [2097] = {.lex_state = 196}, + [2098] = {.lex_state = 196}, + [2099] = {.lex_state = 168}, + [2100] = {.lex_state = 196}, + [2101] = {.lex_state = 168}, + [2102] = {.lex_state = 168}, + [2103] = {.lex_state = 196}, + [2104] = {.lex_state = 196}, + [2105] = {.lex_state = 168}, + [2106] = {.lex_state = 168}, + [2107] = {.lex_state = 196}, + [2108] = {.lex_state = 168}, + [2109] = {.lex_state = 168}, + [2110] = {.lex_state = 168}, + [2111] = {.lex_state = 196}, + [2112] = {.lex_state = 168}, + [2113] = {.lex_state = 196}, + [2114] = {.lex_state = 168}, + [2115] = {.lex_state = 196}, + [2116] = {.lex_state = 196}, + [2117] = {.lex_state = 168}, + [2118] = {.lex_state = 196}, + [2119] = {.lex_state = 168}, + [2120] = {.lex_state = 165}, + [2121] = {.lex_state = 196}, + [2122] = {.lex_state = 195}, + [2123] = {.lex_state = 196}, + [2124] = {.lex_state = 196}, + [2125] = {.lex_state = 148, .external_lex_state = 1}, + [2126] = {.lex_state = 168}, + [2127] = {.lex_state = 196}, + [2128] = {.lex_state = 196}, + [2129] = {.lex_state = 196}, + [2130] = {.lex_state = 139, .external_lex_state = 1}, + [2131] = {.lex_state = 196}, + [2132] = {.lex_state = 168}, + [2133] = {.lex_state = 196}, + [2134] = {.lex_state = 168}, + [2135] = {.lex_state = 196}, + [2136] = {.lex_state = 168}, + [2137] = {.lex_state = 196}, + [2138] = {.lex_state = 168}, + [2139] = {.lex_state = 156}, + [2140] = {.lex_state = 156}, + [2141] = {.lex_state = 184}, + [2142] = {.lex_state = 184}, + [2143] = {.lex_state = 165}, + [2144] = {.lex_state = 168}, + [2145] = {.lex_state = 168}, + [2146] = {.lex_state = 184}, + [2147] = {.lex_state = 196}, + [2148] = {.lex_state = 148, .external_lex_state = 1}, + [2149] = {.lex_state = 196}, + [2150] = {.lex_state = 184}, + [2151] = {.lex_state = 196}, + [2152] = {.lex_state = 184}, + [2153] = {.lex_state = 165}, + [2154] = {.lex_state = 196}, + [2155] = {.lex_state = 196}, + [2156] = {.lex_state = 196}, + [2157] = {.lex_state = 196}, + [2158] = {.lex_state = 196}, + [2159] = {.lex_state = 196}, + [2160] = {.lex_state = 196}, + [2161] = {.lex_state = 164}, + [2162] = {.lex_state = 196}, + [2163] = {.lex_state = 196}, + [2164] = {.lex_state = 184}, + [2165] = {.lex_state = 196}, + [2166] = {.lex_state = 196}, + [2167] = {.lex_state = 156}, + [2168] = {.lex_state = 163}, + [2169] = {.lex_state = 156}, + [2170] = {.lex_state = 156}, + [2171] = {.lex_state = 155}, + [2172] = {.lex_state = 156}, + [2173] = {.lex_state = 166}, + [2174] = {.lex_state = 166}, + [2175] = {.lex_state = 196}, + [2176] = {.lex_state = 166}, + [2177] = {.lex_state = 168}, + [2178] = {.lex_state = 156}, + [2179] = {.lex_state = 156}, + [2180] = {.lex_state = 166}, + [2181] = {.lex_state = 144, .external_lex_state = 1}, + [2182] = {.lex_state = 156}, + [2183] = {.lex_state = 184}, + [2184] = {.lex_state = 156}, + [2185] = {.lex_state = 144, .external_lex_state = 1}, + [2186] = {.lex_state = 156}, + [2187] = {.lex_state = 164}, + [2188] = {.lex_state = 156}, + [2189] = {.lex_state = 155}, + [2190] = {.lex_state = 155}, + [2191] = {.lex_state = 196}, + [2192] = {.lex_state = 166}, + [2193] = {.lex_state = 172}, + [2194] = {.lex_state = 154}, + [2195] = {.lex_state = 172}, + [2196] = {.lex_state = 155}, + [2197] = {.lex_state = 166}, [2198] = {.lex_state = 154}, - [2199] = {.lex_state = 166}, - [2200] = {.lex_state = 154}, - [2201] = {.lex_state = 166}, - [2202] = {.lex_state = 166}, - [2203] = {.lex_state = 157}, - [2204] = {.lex_state = 154}, - [2205] = {.lex_state = 148}, - [2206] = {.lex_state = 166}, - [2207] = {.lex_state = 166}, - [2208] = {.lex_state = 157}, - [2209] = {.lex_state = 138, .external_lex_state = 1}, + [2199] = {.lex_state = 154}, + [2200] = {.lex_state = 156}, + [2201] = {.lex_state = 196}, + [2202] = {.lex_state = 156}, + [2203] = {.lex_state = 196}, + [2204] = {.lex_state = 156}, + [2205] = {.lex_state = 154}, + [2206] = {.lex_state = 195}, + [2207] = {.lex_state = 154}, + [2208] = {.lex_state = 154}, + [2209] = {.lex_state = 137}, [2210] = {.lex_state = 157}, - [2211] = {.lex_state = 157}, - [2212] = {.lex_state = 157}, - [2213] = {.lex_state = 157}, - [2214] = {.lex_state = 157}, - [2215] = {.lex_state = 157}, - [2216] = {.lex_state = 157}, - [2217] = {.lex_state = 157}, - [2218] = {.lex_state = 140}, - [2219] = {.lex_state = 140}, - [2220] = {.lex_state = 157}, - [2221] = {.lex_state = 157}, - [2222] = {.lex_state = 157}, - [2223] = {.lex_state = 170}, - [2224] = {.lex_state = 157}, - [2225] = {.lex_state = 157}, - [2226] = {.lex_state = 157}, - [2227] = {.lex_state = 157}, - [2228] = {.lex_state = 157}, - [2229] = {.lex_state = 157}, - [2230] = {.lex_state = 170}, - [2231] = {.lex_state = 157}, - [2232] = {.lex_state = 157}, - [2233] = {.lex_state = 157}, - [2234] = {.lex_state = 157}, - [2235] = {.lex_state = 157}, - [2236] = {.lex_state = 157}, - [2237] = {.lex_state = 154}, - [2238] = {.lex_state = 157}, - [2239] = {.lex_state = 157}, - [2240] = {.lex_state = 157}, - [2241] = {.lex_state = 157}, - [2242] = {.lex_state = 157}, - [2243] = {.lex_state = 157}, - [2244] = {.lex_state = 157}, - [2245] = {.lex_state = 157}, - [2246] = {.lex_state = 157}, - [2247] = {.lex_state = 157}, - [2248] = {.lex_state = 156}, - [2249] = {.lex_state = 157}, - [2250] = {.lex_state = 157}, - [2251] = {.lex_state = 157}, - [2252] = {.lex_state = 157}, - [2253] = {.lex_state = 146}, - [2254] = {.lex_state = 154}, - [2255] = {.lex_state = 157}, - [2256] = {.lex_state = 153}, + [2211] = {.lex_state = 196}, + [2212] = {.lex_state = 137}, + [2213] = {.lex_state = 154}, + [2214] = {.lex_state = 180}, + [2215] = {.lex_state = 137}, + [2216] = {.lex_state = 195}, + [2217] = {.lex_state = 195}, + [2218] = {.lex_state = 154}, + [2219] = {.lex_state = 195}, + [2220] = {.lex_state = 195}, + [2221] = {.lex_state = 195}, + [2222] = {.lex_state = 195}, + [2223] = {.lex_state = 195}, + [2224] = {.lex_state = 195}, + [2225] = {.lex_state = 164}, + [2226] = {.lex_state = 195}, + [2227] = {.lex_state = 195}, + [2228] = {.lex_state = 137}, + [2229] = {.lex_state = 137}, + [2230] = {.lex_state = 195}, + [2231] = {.lex_state = 154}, + [2232] = {.lex_state = 154}, + [2233] = {.lex_state = 180}, + [2234] = {.lex_state = 195}, + [2235] = {.lex_state = 195}, + [2236] = {.lex_state = 195}, + [2237] = {.lex_state = 156}, + [2238] = {.lex_state = 195}, + [2239] = {.lex_state = 195}, + [2240] = {.lex_state = 154}, + [2241] = {.lex_state = 195}, + [2242] = {.lex_state = 156}, + [2243] = {.lex_state = 195}, + [2244] = {.lex_state = 195}, + [2245] = {.lex_state = 163}, + [2246] = {.lex_state = 195}, + [2247] = {.lex_state = 163}, + [2248] = {.lex_state = 195}, + [2249] = {.lex_state = 195}, + [2250] = {.lex_state = 195}, + [2251] = {.lex_state = 195}, + [2252] = {.lex_state = 195}, + [2253] = {.lex_state = 195}, + [2254] = {.lex_state = 195}, + [2255] = {.lex_state = 156}, + [2256] = {.lex_state = 195}, [2257] = {.lex_state = 157}, - [2258] = {.lex_state = 157}, - [2259] = {.lex_state = 157}, - [2260] = {.lex_state = 170}, - [2261] = {.lex_state = 170}, - [2262] = {.lex_state = 153}, - [2263] = {.lex_state = 140}, - [2264] = {.lex_state = 157}, - [2265] = {.lex_state = 157}, - [2266] = {.lex_state = 157}, - [2267] = {.lex_state = 154}, - [2268] = {.lex_state = 132, .external_lex_state = 1}, - [2269] = {.lex_state = 170}, - [2270] = {.lex_state = 159}, - [2271] = {.lex_state = 157}, - [2272] = {.lex_state = 170}, - [2273] = {.lex_state = 170}, - [2274] = {.lex_state = 157}, - [2275] = {.lex_state = 157}, - [2276] = {.lex_state = 170}, - [2277] = {.lex_state = 157}, - [2278] = {.lex_state = 157}, - [2279] = {.lex_state = 157}, - [2280] = {.lex_state = 157}, - [2281] = {.lex_state = 157}, - [2282] = {.lex_state = 138, .external_lex_state = 1}, + [2258] = {.lex_state = 156}, + [2259] = {.lex_state = 156}, + [2260] = {.lex_state = 156}, + [2261] = {.lex_state = 154}, + [2262] = {.lex_state = 195}, + [2263] = {.lex_state = 195}, + [2264] = {.lex_state = 195}, + [2265] = {.lex_state = 154}, + [2266] = {.lex_state = 195}, + [2267] = {.lex_state = 195}, + [2268] = {.lex_state = 195}, + [2269] = {.lex_state = 182}, + [2270] = {.lex_state = 156}, + [2271] = {.lex_state = 154}, + [2272] = {.lex_state = 195}, + [2273] = {.lex_state = 168}, + [2274] = {.lex_state = 156}, + [2275] = {.lex_state = 156}, + [2276] = {.lex_state = 154}, + [2277] = {.lex_state = 154}, + [2278] = {.lex_state = 156}, + [2279] = {.lex_state = 154}, + [2280] = {.lex_state = 195}, + [2281] = {.lex_state = 156}, + [2282] = {.lex_state = 156}, [2283] = {.lex_state = 156}, - [2284] = {.lex_state = 140}, + [2284] = {.lex_state = 156}, [2285] = {.lex_state = 154}, - [2286] = {.lex_state = 157}, - [2287] = {.lex_state = 170}, - [2288] = {.lex_state = 157}, - [2289] = {.lex_state = 157}, - [2290] = {.lex_state = 157}, - [2291] = {.lex_state = 157}, - [2292] = {.lex_state = 157}, + [2286] = {.lex_state = 154}, + [2287] = {.lex_state = 154}, + [2288] = {.lex_state = 154}, + [2289] = {.lex_state = 156}, + [2290] = {.lex_state = 195}, + [2291] = {.lex_state = 182}, + [2292] = {.lex_state = 156}, [2293] = {.lex_state = 156}, - [2294] = {.lex_state = 157}, - [2295] = {.lex_state = 146}, - [2296] = {.lex_state = 157}, - [2297] = {.lex_state = 156}, - [2298] = {.lex_state = 157}, + [2294] = {.lex_state = 154}, + [2295] = {.lex_state = 156}, + [2296] = {.lex_state = 156}, + [2297] = {.lex_state = 195}, + [2298] = {.lex_state = 165}, [2299] = {.lex_state = 154}, - [2300] = {.lex_state = 157}, - [2301] = {.lex_state = 155}, - [2302] = {.lex_state = 153}, - [2303] = {.lex_state = 159}, - [2304] = {.lex_state = 169}, - [2305] = {.lex_state = 152}, - [2306] = {.lex_state = 147}, - [2307] = {.lex_state = 169}, - [2308] = {.lex_state = 169}, - [2309] = {.lex_state = 146}, - [2310] = {.lex_state = 146}, - [2311] = {.lex_state = 155}, - [2312] = {.lex_state = 165}, - [2313] = {.lex_state = 155}, - [2314] = {.lex_state = 159}, - [2315] = {.lex_state = 146}, - [2316] = {.lex_state = 156}, - [2317] = {.lex_state = 155}, - [2318] = {.lex_state = 165}, - [2319] = {.lex_state = 147}, - [2320] = {.lex_state = 155}, - [2321] = {.lex_state = 155}, - [2322] = {.lex_state = 146}, - [2323] = {.lex_state = 166}, - [2324] = {.lex_state = 147}, - [2325] = {.lex_state = 146}, - [2326] = {.lex_state = 154}, - [2327] = {.lex_state = 169}, - [2328] = {.lex_state = 169}, - [2329] = {.lex_state = 169}, - [2330] = {.lex_state = 146}, - [2331] = {.lex_state = 146}, - [2332] = {.lex_state = 146}, - [2333] = {.lex_state = 146}, - [2334] = {.lex_state = 146}, - [2335] = {.lex_state = 146}, - [2336] = {.lex_state = 146}, - [2337] = {.lex_state = 146}, - [2338] = {.lex_state = 146}, - [2339] = {.lex_state = 146}, - [2340] = {.lex_state = 146}, - [2341] = {.lex_state = 146}, - [2342] = {.lex_state = 146}, - [2343] = {.lex_state = 146}, - [2344] = {.lex_state = 169}, - [2345] = {.lex_state = 146}, - [2346] = {.lex_state = 169}, - [2347] = {.lex_state = 169}, - [2348] = {.lex_state = 169}, - [2349] = {.lex_state = 165}, - [2350] = {.lex_state = 169}, - [2351] = {.lex_state = 169}, - [2352] = {.lex_state = 146}, - [2353] = {.lex_state = 146}, - [2354] = {.lex_state = 169}, - [2355] = {.lex_state = 169}, - [2356] = {.lex_state = 169}, - [2357] = {.lex_state = 169}, - [2358] = {.lex_state = 169}, - [2359] = {.lex_state = 169}, - [2360] = {.lex_state = 169}, - [2361] = {.lex_state = 169}, - [2362] = {.lex_state = 169}, - [2363] = {.lex_state = 165}, - [2364] = {.lex_state = 146}, - [2365] = {.lex_state = 152}, - [2366] = {.lex_state = 169}, - [2367] = {.lex_state = 165}, - [2368] = {.lex_state = 169}, - [2369] = {.lex_state = 169}, - [2370] = {.lex_state = 146}, - [2371] = {.lex_state = 165}, - [2372] = {.lex_state = 165}, - [2373] = {.lex_state = 146}, - [2374] = {.lex_state = 169}, - [2375] = {.lex_state = 146}, - [2376] = {.lex_state = 165}, - [2377] = {.lex_state = 169}, - [2378] = {.lex_state = 169}, - [2379] = {.lex_state = 169}, - [2380] = {.lex_state = 146}, - [2381] = {.lex_state = 169}, - [2382] = {.lex_state = 146}, - [2383] = {.lex_state = 146}, - [2384] = {.lex_state = 169}, - [2385] = {.lex_state = 165}, + [2300] = {.lex_state = 188}, + [2301] = {.lex_state = 182}, + [2302] = {.lex_state = 154}, + [2303] = {.lex_state = 154}, + [2304] = {.lex_state = 154}, + [2305] = {.lex_state = 195}, + [2306] = {.lex_state = 154}, + [2307] = {.lex_state = 195}, + [2308] = {.lex_state = 196}, + [2309] = {.lex_state = 154}, + [2310] = {.lex_state = 154}, + [2311] = {.lex_state = 154}, + [2312] = {.lex_state = 195}, + [2313] = {.lex_state = 195}, + [2314] = {.lex_state = 154}, + [2315] = {.lex_state = 154}, + [2316] = {.lex_state = 154}, + [2317] = {.lex_state = 154}, + [2318] = {.lex_state = 154}, + [2319] = {.lex_state = 156}, + [2320] = {.lex_state = 195}, + [2321] = {.lex_state = 195}, + [2322] = {.lex_state = 195}, + [2323] = {.lex_state = 195}, + [2324] = {.lex_state = 195}, + [2325] = {.lex_state = 154}, + [2326] = {.lex_state = 195}, + [2327] = {.lex_state = 195}, + [2328] = {.lex_state = 156}, + [2329] = {.lex_state = 154}, + [2330] = {.lex_state = 137}, + [2331] = {.lex_state = 156}, + [2332] = {.lex_state = 155}, + [2333] = {.lex_state = 154}, + [2334] = {.lex_state = 180}, + [2335] = {.lex_state = 180}, + [2336] = {.lex_state = 180}, + [2337] = {.lex_state = 156}, + [2338] = {.lex_state = 195}, + [2339] = {.lex_state = 154}, + [2340] = {.lex_state = 156}, + [2341] = {.lex_state = 156}, + [2342] = {.lex_state = 195}, + [2343] = {.lex_state = 156}, + [2344] = {.lex_state = 170}, + [2345] = {.lex_state = 171}, + [2346] = {.lex_state = 154}, + [2347] = {.lex_state = 181}, + [2348] = {.lex_state = 154}, + [2349] = {.lex_state = 180}, + [2350] = {.lex_state = 163}, + [2351] = {.lex_state = 156}, + [2352] = {.lex_state = 156}, + [2353] = {.lex_state = 156}, + [2354] = {.lex_state = 195}, + [2355] = {.lex_state = 156}, + [2356] = {.lex_state = 156}, + [2357] = {.lex_state = 195}, + [2358] = {.lex_state = 156}, + [2359] = {.lex_state = 195}, + [2360] = {.lex_state = 195}, + [2361] = {.lex_state = 195}, + [2362] = {.lex_state = 156}, + [2363] = {.lex_state = 195}, + [2364] = {.lex_state = 156}, + [2365] = {.lex_state = 156}, + [2366] = {.lex_state = 156}, + [2367] = {.lex_state = 195}, + [2368] = {.lex_state = 156}, + [2369] = {.lex_state = 156}, + [2370] = {.lex_state = 195}, + [2371] = {.lex_state = 154}, + [2372] = {.lex_state = 156}, + [2373] = {.lex_state = 154}, + [2374] = {.lex_state = 195}, + [2375] = {.lex_state = 195}, + [2376] = {.lex_state = 170}, + [2377] = {.lex_state = 156}, + [2378] = {.lex_state = 156}, + [2379] = {.lex_state = 188}, + [2380] = {.lex_state = 180}, + [2381] = {.lex_state = 180}, + [2382] = {.lex_state = 195}, + [2383] = {.lex_state = 195}, + [2384] = {.lex_state = 156}, + [2385] = {.lex_state = 154}, [2386] = {.lex_state = 154}, - [2387] = {.lex_state = 181}, - [2388] = {.lex_state = 165}, - [2389] = {.lex_state = 169}, - [2390] = {.lex_state = 169}, - [2391] = {.lex_state = 169}, - [2392] = {.lex_state = 169}, - [2393] = {.lex_state = 169}, - [2394] = {.lex_state = 146}, - [2395] = {.lex_state = 146}, - [2396] = {.lex_state = 146}, - [2397] = {.lex_state = 146}, - [2398] = {.lex_state = 146}, - [2399] = {.lex_state = 146}, - [2400] = {.lex_state = 146}, - [2401] = {.lex_state = 146}, - [2402] = {.lex_state = 146}, - [2403] = {.lex_state = 146}, - [2404] = {.lex_state = 146}, - [2405] = {.lex_state = 146}, - [2406] = {.lex_state = 169}, - [2407] = {.lex_state = 169}, - [2408] = {.lex_state = 169}, - [2409] = {.lex_state = 169}, - [2410] = {.lex_state = 169}, - [2411] = {.lex_state = 169}, - [2412] = {.lex_state = 165}, - [2413] = {.lex_state = 146}, - [2414] = {.lex_state = 146}, - [2415] = {.lex_state = 165}, - [2416] = {.lex_state = 165}, - [2417] = {.lex_state = 169}, - [2418] = {.lex_state = 146}, - [2419] = {.lex_state = 153}, - [2420] = {.lex_state = 132, .external_lex_state = 1}, - [2421] = {.lex_state = 165}, - [2422] = {.lex_state = 169}, - [2423] = {.lex_state = 165}, - [2424] = {.lex_state = 165}, - [2425] = {.lex_state = 165}, - [2426] = {.lex_state = 165}, - [2427] = {.lex_state = 146}, - [2428] = {.lex_state = 181}, - [2429] = {.lex_state = 146}, - [2430] = {.lex_state = 165}, - [2431] = {.lex_state = 146}, - [2432] = {.lex_state = 152}, - [2433] = {.lex_state = 169}, - [2434] = {.lex_state = 165}, - [2435] = {.lex_state = 152}, - [2436] = {.lex_state = 165}, - [2437] = {.lex_state = 146}, - [2438] = {.lex_state = 165}, - [2439] = {.lex_state = 146}, - [2440] = {.lex_state = 146}, - [2441] = {.lex_state = 146}, - [2442] = {.lex_state = 146}, - [2443] = {.lex_state = 146}, - [2444] = {.lex_state = 146}, - [2445] = {.lex_state = 146}, - [2446] = {.lex_state = 146}, - [2447] = {.lex_state = 146}, - [2448] = {.lex_state = 146}, - [2449] = {.lex_state = 146}, - [2450] = {.lex_state = 165}, - [2451] = {.lex_state = 165}, - [2452] = {.lex_state = 146}, - [2453] = {.lex_state = 169}, - [2454] = {.lex_state = 146}, - [2455] = {.lex_state = 146}, - [2456] = {.lex_state = 146}, - [2457] = {.lex_state = 146}, - [2458] = {.lex_state = 165}, - [2459] = {.lex_state = 156}, - [2460] = {.lex_state = 165}, - [2461] = {.lex_state = 146}, - [2462] = {.lex_state = 146}, - [2463] = {.lex_state = 165}, - [2464] = {.lex_state = 165}, - [2465] = {.lex_state = 169}, - [2466] = {.lex_state = 147}, - [2467] = {.lex_state = 146}, - [2468] = {.lex_state = 146}, - [2469] = {.lex_state = 146}, - [2470] = {.lex_state = 156}, - [2471] = {.lex_state = 146}, - [2472] = {.lex_state = 146}, - [2473] = {.lex_state = 146}, - [2474] = {.lex_state = 146}, - [2475] = {.lex_state = 169}, - [2476] = {.lex_state = 169}, - [2477] = {.lex_state = 165}, + [2387] = {.lex_state = 154}, + [2388] = {.lex_state = 154}, + [2389] = {.lex_state = 154}, + [2390] = {.lex_state = 154}, + [2391] = {.lex_state = 154}, + [2392] = {.lex_state = 154}, + [2393] = {.lex_state = 154}, + [2394] = {.lex_state = 156}, + [2395] = {.lex_state = 156}, + [2396] = {.lex_state = 156}, + [2397] = {.lex_state = 163}, + [2398] = {.lex_state = 195}, + [2399] = {.lex_state = 195}, + [2400] = {.lex_state = 165}, + [2401] = {.lex_state = 156}, + [2402] = {.lex_state = 154}, + [2403] = {.lex_state = 154}, + [2404] = {.lex_state = 154}, + [2405] = {.lex_state = 195}, + [2406] = {.lex_state = 195}, + [2407] = {.lex_state = 156}, + [2408] = {.lex_state = 156}, + [2409] = {.lex_state = 156}, + [2410] = {.lex_state = 156}, + [2411] = {.lex_state = 180}, + [2412] = {.lex_state = 180}, + [2413] = {.lex_state = 156}, + [2414] = {.lex_state = 180}, + [2415] = {.lex_state = 180}, + [2416] = {.lex_state = 180}, + [2417] = {.lex_state = 154}, + [2418] = {.lex_state = 156}, + [2419] = {.lex_state = 154}, + [2420] = {.lex_state = 156}, + [2421] = {.lex_state = 195}, + [2422] = {.lex_state = 195}, + [2423] = {.lex_state = 195}, + [2424] = {.lex_state = 195}, + [2425] = {.lex_state = 157}, + [2426] = {.lex_state = 156}, + [2427] = {.lex_state = 156}, + [2428] = {.lex_state = 154}, + [2429] = {.lex_state = 156}, + [2430] = {.lex_state = 156}, + [2431] = {.lex_state = 156}, + [2432] = {.lex_state = 156}, + [2433] = {.lex_state = 154}, + [2434] = {.lex_state = 154}, + [2435] = {.lex_state = 154}, + [2436] = {.lex_state = 154}, + [2437] = {.lex_state = 154}, + [2438] = {.lex_state = 154}, + [2439] = {.lex_state = 154}, + [2440] = {.lex_state = 154}, + [2441] = {.lex_state = 154}, + [2442] = {.lex_state = 156}, + [2443] = {.lex_state = 156}, + [2444] = {.lex_state = 156}, + [2445] = {.lex_state = 156}, + [2446] = {.lex_state = 154}, + [2447] = {.lex_state = 156}, + [2448] = {.lex_state = 156}, + [2449] = {.lex_state = 156}, + [2450] = {.lex_state = 156}, + [2451] = {.lex_state = 195}, + [2452] = {.lex_state = 195}, + [2453] = {.lex_state = 154}, + [2454] = {.lex_state = 154}, + [2455] = {.lex_state = 154}, + [2456] = {.lex_state = 156}, + [2457] = {.lex_state = 156}, + [2458] = {.lex_state = 154}, + [2459] = {.lex_state = 154}, + [2460] = {.lex_state = 168}, + [2461] = {.lex_state = 154}, + [2462] = {.lex_state = 154}, + [2463] = {.lex_state = 154}, + [2464] = {.lex_state = 154}, + [2465] = {.lex_state = 168}, + [2466] = {.lex_state = 168}, + [2467] = {.lex_state = 168}, + [2468] = {.lex_state = 168}, + [2469] = {.lex_state = 168}, + [2470] = {.lex_state = 168}, + [2471] = {.lex_state = 168}, + [2472] = {.lex_state = 168}, + [2473] = {.lex_state = 168}, + [2474] = {.lex_state = 168}, + [2475] = {.lex_state = 168}, + [2476] = {.lex_state = 168}, + [2477] = {.lex_state = 168}, [2478] = {.lex_state = 165}, - [2479] = {.lex_state = 165}, - [2480] = {.lex_state = 165}, - [2481] = {.lex_state = 136}, - [2482] = {.lex_state = 146}, - [2483] = {.lex_state = 169}, - [2484] = {.lex_state = 169}, - [2485] = {.lex_state = 169}, - [2486] = {.lex_state = 169}, - [2487] = {.lex_state = 180}, - [2488] = {.lex_state = 146}, - [2489] = {.lex_state = 165}, - [2490] = {.lex_state = 146}, - [2491] = {.lex_state = 165}, - [2492] = {.lex_state = 136}, - [2493] = {.lex_state = 146}, - [2494] = {.lex_state = 169}, - [2495] = {.lex_state = 169}, - [2496] = {.lex_state = 146}, - [2497] = {.lex_state = 169}, - [2498] = {.lex_state = 165}, - [2499] = {.lex_state = 169}, - [2500] = {.lex_state = 169}, + [2479] = {.lex_state = 168}, + [2480] = {.lex_state = 168}, + [2481] = {.lex_state = 164}, + [2482] = {.lex_state = 187}, + [2483] = {.lex_state = 187}, + [2484] = {.lex_state = 168}, + [2485] = {.lex_state = 168}, + [2486] = {.lex_state = 164}, + [2487] = {.lex_state = 168}, + [2488] = {.lex_state = 168}, + [2489] = {.lex_state = 187}, + [2490] = {.lex_state = 164}, + [2491] = {.lex_state = 168}, + [2492] = {.lex_state = 168}, + [2493] = {.lex_state = 168}, + [2494] = {.lex_state = 168}, + [2495] = {.lex_state = 168}, + [2496] = {.lex_state = 168}, + [2497] = {.lex_state = 168}, + [2498] = {.lex_state = 168}, + [2499] = {.lex_state = 168}, + [2500] = {.lex_state = 168}, [2501] = {.lex_state = 165}, - [2502] = {.lex_state = 165}, - [2503] = {.lex_state = 152}, - [2504] = {.lex_state = 169}, - [2505] = {.lex_state = 169}, - [2506] = {.lex_state = 165}, - [2507] = {.lex_state = 146}, - [2508] = {.lex_state = 146}, - [2509] = {.lex_state = 169}, - [2510] = {.lex_state = 169}, - [2511] = {.lex_state = 146}, - [2512] = {.lex_state = 169}, - [2513] = {.lex_state = 169}, - [2514] = {.lex_state = 146}, - [2515] = {.lex_state = 146}, - [2516] = {.lex_state = 146}, - [2517] = {.lex_state = 169}, - [2518] = {.lex_state = 158}, - [2519] = {.lex_state = 169}, - [2520] = {.lex_state = 165}, - [2521] = {.lex_state = 169}, - [2522] = {.lex_state = 156}, - [2523] = {.lex_state = 153}, - [2524] = {.lex_state = 156}, - [2525] = {.lex_state = 156}, - [2526] = {.lex_state = 156}, - [2527] = {.lex_state = 156}, - [2528] = {.lex_state = 156}, + [2502] = {.lex_state = 156}, + [2503] = {.lex_state = 168}, + [2504] = {.lex_state = 168}, + [2505] = {.lex_state = 168}, + [2506] = {.lex_state = 168}, + [2507] = {.lex_state = 187}, + [2508] = {.lex_state = 168}, + [2509] = {.lex_state = 168}, + [2510] = {.lex_state = 168}, + [2511] = {.lex_state = 168}, + [2512] = {.lex_state = 165}, + [2513] = {.lex_state = 187}, + [2514] = {.lex_state = 168}, + [2515] = {.lex_state = 168}, + [2516] = {.lex_state = 168}, + [2517] = {.lex_state = 164}, + [2518] = {.lex_state = 164}, + [2519] = {.lex_state = 168}, + [2520] = {.lex_state = 164}, + [2521] = {.lex_state = 168}, + [2522] = {.lex_state = 168}, + [2523] = {.lex_state = 168}, + [2524] = {.lex_state = 168}, + [2525] = {.lex_state = 168}, + [2526] = {.lex_state = 168}, + [2527] = {.lex_state = 168}, + [2528] = {.lex_state = 168}, [2529] = {.lex_state = 156}, - [2530] = {.lex_state = 157}, - [2531] = {.lex_state = 156}, - [2532] = {.lex_state = 156}, - [2533] = {.lex_state = 156}, - [2534] = {.lex_state = 156}, - [2535] = {.lex_state = 156}, - [2536] = {.lex_state = 156}, - [2537] = {.lex_state = 156}, - [2538] = {.lex_state = 156}, - [2539] = {.lex_state = 156}, - [2540] = {.lex_state = 156}, - [2541] = {.lex_state = 156}, - [2542] = {.lex_state = 156}, - [2543] = {.lex_state = 156}, - [2544] = {.lex_state = 156}, - [2545] = {.lex_state = 156}, - [2546] = {.lex_state = 153}, - [2547] = {.lex_state = 156}, - [2548] = {.lex_state = 156}, - [2549] = {.lex_state = 157}, - [2550] = {.lex_state = 170}, - [2551] = {.lex_state = 156}, - [2552] = {.lex_state = 156}, - [2553] = {.lex_state = 153}, - [2554] = {.lex_state = 156}, - [2555] = {.lex_state = 153}, - [2556] = {.lex_state = 156}, - [2557] = {.lex_state = 181}, - [2558] = {.lex_state = 156}, - [2559] = {.lex_state = 156}, - [2560] = {.lex_state = 156}, - [2561] = {.lex_state = 156}, - [2562] = {.lex_state = 156}, - [2563] = {.lex_state = 154}, - [2564] = {.lex_state = 156}, - [2565] = {.lex_state = 154}, - [2566] = {.lex_state = 156}, - [2567] = {.lex_state = 156}, - [2568] = {.lex_state = 156}, - [2569] = {.lex_state = 154}, - [2570] = {.lex_state = 156}, - [2571] = {.lex_state = 156}, - [2572] = {.lex_state = 156}, - [2573] = {.lex_state = 153}, - [2574] = {.lex_state = 146}, - [2575] = {.lex_state = 156}, - [2576] = {.lex_state = 156}, - [2577] = {.lex_state = 153}, - [2578] = {.lex_state = 156}, - [2579] = {.lex_state = 156}, - [2580] = {.lex_state = 153}, + [2530] = {.lex_state = 168}, + [2531] = {.lex_state = 168}, + [2532] = {.lex_state = 168}, + [2533] = {.lex_state = 168}, + [2534] = {.lex_state = 158}, + [2535] = {.lex_state = 168}, + [2536] = {.lex_state = 168}, + [2537] = {.lex_state = 168}, + [2538] = {.lex_state = 168}, + [2539] = {.lex_state = 168}, + [2540] = {.lex_state = 168}, + [2541] = {.lex_state = 168}, + [2542] = {.lex_state = 168}, + [2543] = {.lex_state = 168}, + [2544] = {.lex_state = 168}, + [2545] = {.lex_state = 168}, + [2546] = {.lex_state = 168}, + [2547] = {.lex_state = 164}, + [2548] = {.lex_state = 168}, + [2549] = {.lex_state = 168}, + [2550] = {.lex_state = 156}, + [2551] = {.lex_state = 168}, + [2552] = {.lex_state = 180}, + [2553] = {.lex_state = 164}, + [2554] = {.lex_state = 168}, + [2555] = {.lex_state = 165}, + [2556] = {.lex_state = 168}, + [2557] = {.lex_state = 168}, + [2558] = {.lex_state = 168}, + [2559] = {.lex_state = 168}, + [2560] = {.lex_state = 187}, + [2561] = {.lex_state = 168}, + [2562] = {.lex_state = 168}, + [2563] = {.lex_state = 187}, + [2564] = {.lex_state = 168}, + [2565] = {.lex_state = 168}, + [2566] = {.lex_state = 187}, + [2567] = {.lex_state = 168}, + [2568] = {.lex_state = 168}, + [2569] = {.lex_state = 168}, + [2570] = {.lex_state = 168}, + [2571] = {.lex_state = 187}, + [2572] = {.lex_state = 168}, + [2573] = {.lex_state = 168}, + [2574] = {.lex_state = 156}, + [2575] = {.lex_state = 165}, + [2576] = {.lex_state = 161}, + [2577] = {.lex_state = 161}, + [2578] = {.lex_state = 165}, + [2579] = {.lex_state = 165}, + [2580] = {.lex_state = 165}, [2581] = {.lex_state = 156}, [2582] = {.lex_state = 156}, - [2583] = {.lex_state = 156}, - [2584] = {.lex_state = 156}, - [2585] = {.lex_state = 149}, - [2586] = {.lex_state = 156}, - [2587] = {.lex_state = 156}, - [2588] = {.lex_state = 156}, + [2583] = {.lex_state = 165}, + [2584] = {.lex_state = 155}, + [2585] = {.lex_state = 155}, + [2586] = {.lex_state = 155}, + [2587] = {.lex_state = 165}, + [2588] = {.lex_state = 165}, [2589] = {.lex_state = 156}, - [2590] = {.lex_state = 154}, - [2591] = {.lex_state = 156}, - [2592] = {.lex_state = 156}, + [2590] = {.lex_state = 184}, + [2591] = {.lex_state = 184}, + [2592] = {.lex_state = 165}, [2593] = {.lex_state = 156}, - [2594] = {.lex_state = 156}, - [2595] = {.lex_state = 156}, - [2596] = {.lex_state = 181}, - [2597] = {.lex_state = 156}, - [2598] = {.lex_state = 156}, - [2599] = {.lex_state = 156}, + [2594] = {.lex_state = 165}, + [2595] = {.lex_state = 165}, + [2596] = {.lex_state = 165}, + [2597] = {.lex_state = 165}, + [2598] = {.lex_state = 165}, + [2599] = {.lex_state = 196}, [2600] = {.lex_state = 156}, - [2601] = {.lex_state = 156}, - [2602] = {.lex_state = 156}, - [2603] = {.lex_state = 156}, - [2604] = {.lex_state = 156}, - [2605] = {.lex_state = 156}, - [2606] = {.lex_state = 156}, - [2607] = {.lex_state = 153}, - [2608] = {.lex_state = 156}, + [2601] = {.lex_state = 165}, + [2602] = {.lex_state = 184}, + [2603] = {.lex_state = 165}, + [2604] = {.lex_state = 165}, + [2605] = {.lex_state = 165}, + [2606] = {.lex_state = 165}, + [2607] = {.lex_state = 165}, + [2608] = {.lex_state = 165}, [2609] = {.lex_state = 156}, - [2610] = {.lex_state = 156}, - [2611] = {.lex_state = 156}, - [2612] = {.lex_state = 156}, - [2613] = {.lex_state = 156}, - [2614] = {.lex_state = 156}, - [2615] = {.lex_state = 146}, + [2610] = {.lex_state = 165}, + [2611] = {.lex_state = 165}, + [2612] = {.lex_state = 165}, + [2613] = {.lex_state = 155}, + [2614] = {.lex_state = 165}, + [2615] = {.lex_state = 165}, [2616] = {.lex_state = 156}, [2617] = {.lex_state = 156}, - [2618] = {.lex_state = 156}, - [2619] = {.lex_state = 156}, + [2618] = {.lex_state = 165}, + [2619] = {.lex_state = 165}, [2620] = {.lex_state = 156}, - [2621] = {.lex_state = 156}, - [2622] = {.lex_state = 156}, - [2623] = {.lex_state = 154}, - [2624] = {.lex_state = 181}, - [2625] = {.lex_state = 146}, - [2626] = {.lex_state = 181}, - [2627] = {.lex_state = 154}, - [2628] = {.lex_state = 146}, - [2629] = {.lex_state = 127}, - [2630] = {.lex_state = 181}, - [2631] = {.lex_state = 146}, - [2632] = {.lex_state = 127}, - [2633] = {.lex_state = 181}, - [2634] = {.lex_state = 127}, - [2635] = {.lex_state = 181}, - [2636] = {.lex_state = 146}, - [2637] = {.lex_state = 154}, - [2638] = {.lex_state = 154}, - [2639] = {.lex_state = 154}, - [2640] = {.lex_state = 154}, - [2641] = {.lex_state = 146}, - [2642] = {.lex_state = 154}, - [2643] = {.lex_state = 154}, - [2644] = {.lex_state = 154}, - [2645] = {.lex_state = 154}, - [2646] = {.lex_state = 154}, - [2647] = {.lex_state = 154}, - [2648] = {.lex_state = 154}, - [2649] = {.lex_state = 181}, - [2650] = {.lex_state = 154}, - [2651] = {.lex_state = 154}, - [2652] = {.lex_state = 154}, - [2653] = {.lex_state = 154}, - [2654] = {.lex_state = 146}, - [2655] = {.lex_state = 154}, - [2656] = {.lex_state = 154}, - [2657] = {.lex_state = 181}, - [2658] = {.lex_state = 153}, - [2659] = {.lex_state = 181}, - [2660] = {.lex_state = 181}, - [2661] = {.lex_state = 181}, - [2662] = {.lex_state = 146}, - [2663] = {.lex_state = 147}, - [2664] = {.lex_state = 147}, - [2665] = {.lex_state = 147}, - [2666] = {.lex_state = 154}, - [2667] = {.lex_state = 147}, - [2668] = {.lex_state = 127}, - [2669] = {.lex_state = 147}, - [2670] = {.lex_state = 154}, - [2671] = {.lex_state = 181}, - [2672] = {.lex_state = 154}, - [2673] = {.lex_state = 181}, - [2674] = {.lex_state = 134}, - [2675] = {.lex_state = 181}, - [2676] = {.lex_state = 181}, - [2677] = {.lex_state = 154}, - [2678] = {.lex_state = 154}, - [2679] = {.lex_state = 151}, - [2680] = {.lex_state = 154}, - [2681] = {.lex_state = 146}, - [2682] = {.lex_state = 154}, - [2683] = {.lex_state = 154}, - [2684] = {.lex_state = 181}, - [2685] = {.lex_state = 154}, - [2686] = {.lex_state = 154}, - [2687] = {.lex_state = 146}, - [2688] = {.lex_state = 154}, - [2689] = {.lex_state = 181}, - [2690] = {.lex_state = 154}, - [2691] = {.lex_state = 147}, - [2692] = {.lex_state = 154}, - [2693] = {.lex_state = 147}, - [2694] = {.lex_state = 154}, - [2695] = {.lex_state = 154}, - [2696] = {.lex_state = 154}, - [2697] = {.lex_state = 154}, - [2698] = {.lex_state = 147}, - [2699] = {.lex_state = 160}, - [2700] = {.lex_state = 146}, - [2701] = {.lex_state = 154}, - [2702] = {.lex_state = 154}, - [2703] = {.lex_state = 154}, - [2704] = {.lex_state = 146}, - [2705] = {.lex_state = 154}, - [2706] = {.lex_state = 134}, - [2707] = {.lex_state = 154}, - [2708] = {.lex_state = 154}, - [2709] = {.lex_state = 146}, - [2710] = {.lex_state = 154}, - [2711] = {.lex_state = 146}, - [2712] = {.lex_state = 154}, - [2713] = {.lex_state = 146}, - [2714] = {.lex_state = 146}, - [2715] = {.lex_state = 146}, - [2716] = {.lex_state = 181}, - [2717] = {.lex_state = 181}, - [2718] = {.lex_state = 154}, - [2719] = {.lex_state = 154}, - [2720] = {.lex_state = 127}, - [2721] = {.lex_state = 181}, - [2722] = {.lex_state = 154}, - [2723] = {.lex_state = 154}, - [2724] = {.lex_state = 154}, - [2725] = {.lex_state = 154}, - [2726] = {.lex_state = 146}, - [2727] = {.lex_state = 146}, - [2728] = {.lex_state = 146}, - [2729] = {.lex_state = 146}, - [2730] = {.lex_state = 146}, - [2731] = {.lex_state = 147}, - [2732] = {.lex_state = 154}, - [2733] = {.lex_state = 154}, - [2734] = {.lex_state = 154}, - [2735] = {.lex_state = 146}, - [2736] = {.lex_state = 154}, - [2737] = {.lex_state = 180}, - [2738] = {.lex_state = 146}, - [2739] = {.lex_state = 127}, - [2740] = {.lex_state = 181}, - [2741] = {.lex_state = 147}, - [2742] = {.lex_state = 181}, - [2743] = {.lex_state = 154}, - [2744] = {.lex_state = 154}, - [2745] = {.lex_state = 154}, - [2746] = {.lex_state = 181}, - [2747] = {.lex_state = 181}, - [2748] = {.lex_state = 146}, - [2749] = {.lex_state = 181}, - [2750] = {.lex_state = 154}, - [2751] = {.lex_state = 154}, - [2752] = {.lex_state = 147}, - [2753] = {.lex_state = 154}, - [2754] = {.lex_state = 154}, - [2755] = {.lex_state = 154}, - [2756] = {.lex_state = 154}, - [2757] = {.lex_state = 154}, - [2758] = {.lex_state = 154}, - [2759] = {.lex_state = 154}, - [2760] = {.lex_state = 146}, - [2761] = {.lex_state = 154}, - [2762] = {.lex_state = 154}, - [2763] = {.lex_state = 154}, - [2764] = {.lex_state = 154}, - [2765] = {.lex_state = 146}, - [2766] = {.lex_state = 146}, - [2767] = {.lex_state = 152}, - [2768] = {.lex_state = 141, .external_lex_state = 1}, - [2769] = {.lex_state = 146}, - [2770] = {.lex_state = 146}, - [2771] = {.lex_state = 146}, - [2772] = {.lex_state = 154}, - [2773] = {.lex_state = 146}, - [2774] = {.lex_state = 141, .external_lex_state = 1}, - [2775] = {.lex_state = 146}, - [2776] = {.lex_state = 146}, - [2777] = {.lex_state = 146}, - [2778] = {.lex_state = 146}, - [2779] = {.lex_state = 132, .external_lex_state = 1}, - [2780] = {.lex_state = 146}, - [2781] = {.lex_state = 146}, - [2782] = {.lex_state = 146}, - [2783] = {.lex_state = 146}, - [2784] = {.lex_state = 146}, - [2785] = {.lex_state = 146}, - [2786] = {.lex_state = 146}, - [2787] = {.lex_state = 146}, - [2788] = {.lex_state = 146}, - [2789] = {.lex_state = 146}, - [2790] = {.lex_state = 146}, - [2791] = {.lex_state = 146}, - [2792] = {.lex_state = 146}, - [2793] = {.lex_state = 146}, - [2794] = {.lex_state = 146}, - [2795] = {.lex_state = 146}, - [2796] = {.lex_state = 146}, - [2797] = {.lex_state = 146}, - [2798] = {.lex_state = 146}, - [2799] = {.lex_state = 146}, - [2800] = {.lex_state = 146}, - [2801] = {.lex_state = 146}, - [2802] = {.lex_state = 146}, - [2803] = {.lex_state = 146}, - [2804] = {.lex_state = 180}, - [2805] = {.lex_state = 146}, - [2806] = {.lex_state = 152}, - [2807] = {.lex_state = 146}, - [2808] = {.lex_state = 146}, - [2809] = {.lex_state = 154}, - [2810] = {.lex_state = 153}, - [2811] = {.lex_state = 146}, - [2812] = {.lex_state = 146}, - [2813] = {.lex_state = 146}, - [2814] = {.lex_state = 152}, - [2815] = {.lex_state = 146}, - [2816] = {.lex_state = 152}, - [2817] = {.lex_state = 146}, - [2818] = {.lex_state = 146}, - [2819] = {.lex_state = 146}, - [2820] = {.lex_state = 146}, - [2821] = {.lex_state = 152}, - [2822] = {.lex_state = 146}, - [2823] = {.lex_state = 146}, - [2824] = {.lex_state = 146}, - [2825] = {.lex_state = 146}, - [2826] = {.lex_state = 132, .external_lex_state = 1}, - [2827] = {.lex_state = 146}, - [2828] = {.lex_state = 156}, - [2829] = {.lex_state = 146}, - [2830] = {.lex_state = 180}, - [2831] = {.lex_state = 146}, - [2832] = {.lex_state = 141, .external_lex_state = 1}, - [2833] = {.lex_state = 146}, - [2834] = {.lex_state = 146}, - [2835] = {.lex_state = 146}, - [2836] = {.lex_state = 146}, - [2837] = {.lex_state = 181}, - [2838] = {.lex_state = 152}, - [2839] = {.lex_state = 146}, - [2840] = {.lex_state = 146}, - [2841] = {.lex_state = 165}, - [2842] = {.lex_state = 165}, - [2843] = {.lex_state = 181}, - [2844] = {.lex_state = 180}, - [2845] = {.lex_state = 165}, - [2846] = {.lex_state = 165}, - [2847] = {.lex_state = 165}, - [2848] = {.lex_state = 165}, - [2849] = {.lex_state = 165}, - [2850] = {.lex_state = 181}, - [2851] = {.lex_state = 165}, - [2852] = {.lex_state = 154}, - [2853] = {.lex_state = 165}, - [2854] = {.lex_state = 165}, - [2855] = {.lex_state = 165}, - [2856] = {.lex_state = 154}, - [2857] = {.lex_state = 180}, - [2858] = {.lex_state = 165}, - [2859] = {.lex_state = 154}, - [2860] = {.lex_state = 180}, - [2861] = {.lex_state = 165}, - [2862] = {.lex_state = 154}, - [2863] = {.lex_state = 154}, - [2864] = {.lex_state = 154}, - [2865] = {.lex_state = 165}, - [2866] = {.lex_state = 154}, - [2867] = {.lex_state = 154}, - [2868] = {.lex_state = 154}, - [2869] = {.lex_state = 154}, - [2870] = {.lex_state = 154}, - [2871] = {.lex_state = 165}, - [2872] = {.lex_state = 165}, - [2873] = {.lex_state = 180}, - [2874] = {.lex_state = 154}, - [2875] = {.lex_state = 154}, - [2876] = {.lex_state = 180}, - [2877] = {.lex_state = 180}, - [2878] = {.lex_state = 165}, - [2879] = {.lex_state = 165}, - [2880] = {.lex_state = 154}, - [2881] = {.lex_state = 180}, - [2882] = {.lex_state = 165}, - [2883] = {.lex_state = 180}, - [2884] = {.lex_state = 165}, - [2885] = {.lex_state = 165}, - [2886] = {.lex_state = 154}, - [2887] = {.lex_state = 165}, - [2888] = {.lex_state = 165}, - [2889] = {.lex_state = 165}, - [2890] = {.lex_state = 165}, - [2891] = {.lex_state = 165}, - [2892] = {.lex_state = 165}, - [2893] = {.lex_state = 165}, - [2894] = {.lex_state = 181}, - [2895] = {.lex_state = 165}, - [2896] = {.lex_state = 138}, - [2897] = {.lex_state = 180}, - [2898] = {.lex_state = 165}, - [2899] = {.lex_state = 165}, - [2900] = {.lex_state = 180}, - [2901] = {.lex_state = 180}, - [2902] = {.lex_state = 165}, - [2903] = {.lex_state = 165}, - [2904] = {.lex_state = 165}, - [2905] = {.lex_state = 165}, - [2906] = {.lex_state = 154}, - [2907] = {.lex_state = 138}, - [2908] = {.lex_state = 154}, - [2909] = {.lex_state = 154}, - [2910] = {.lex_state = 165}, - [2911] = {.lex_state = 180}, - [2912] = {.lex_state = 154}, - [2913] = {.lex_state = 154}, - [2914] = {.lex_state = 154}, - [2915] = {.lex_state = 165}, - [2916] = {.lex_state = 165}, - [2917] = {.lex_state = 180}, - [2918] = {.lex_state = 154}, - [2919] = {.lex_state = 180}, - [2920] = {.lex_state = 180}, - [2921] = {.lex_state = 165}, - [2922] = {.lex_state = 181}, + [2621] = {.lex_state = 165}, + [2622] = {.lex_state = 165}, + [2623] = {.lex_state = 156}, + [2624] = {.lex_state = 156}, + [2625] = {.lex_state = 165}, + [2626] = {.lex_state = 165}, + [2627] = {.lex_state = 165}, + [2628] = {.lex_state = 156}, + [2629] = {.lex_state = 165}, + [2630] = {.lex_state = 156}, + [2631] = {.lex_state = 173}, + [2632] = {.lex_state = 165}, + [2633] = {.lex_state = 165}, + [2634] = {.lex_state = 165}, + [2635] = {.lex_state = 165}, + [2636] = {.lex_state = 156}, + [2637] = {.lex_state = 165}, + [2638] = {.lex_state = 165}, + [2639] = {.lex_state = 162}, + [2640] = {.lex_state = 165}, + [2641] = {.lex_state = 165}, + [2642] = {.lex_state = 165}, + [2643] = {.lex_state = 165}, + [2644] = {.lex_state = 165}, + [2645] = {.lex_state = 156}, + [2646] = {.lex_state = 156}, + [2647] = {.lex_state = 156}, + [2648] = {.lex_state = 156}, + [2649] = {.lex_state = 156}, + [2650] = {.lex_state = 156}, + [2651] = {.lex_state = 165}, + [2652] = {.lex_state = 156}, + [2653] = {.lex_state = 156}, + [2654] = {.lex_state = 156}, + [2655] = {.lex_state = 156}, + [2656] = {.lex_state = 156}, + [2657] = {.lex_state = 155}, + [2658] = {.lex_state = 165}, + [2659] = {.lex_state = 165}, + [2660] = {.lex_state = 156}, + [2661] = {.lex_state = 165}, + [2662] = {.lex_state = 165}, + [2663] = {.lex_state = 165}, + [2664] = {.lex_state = 180}, + [2665] = {.lex_state = 165}, + [2666] = {.lex_state = 155}, + [2667] = {.lex_state = 165}, + [2668] = {.lex_state = 165}, + [2669] = {.lex_state = 165}, + [2670] = {.lex_state = 196}, + [2671] = {.lex_state = 155}, + [2672] = {.lex_state = 164}, + [2673] = {.lex_state = 165}, + [2674] = {.lex_state = 165}, + [2675] = {.lex_state = 155}, + [2676] = {.lex_state = 165}, + [2677] = {.lex_state = 165}, + [2678] = {.lex_state = 155}, + [2679] = {.lex_state = 156}, + [2680] = {.lex_state = 155}, + [2681] = {.lex_state = 156}, + [2682] = {.lex_state = 155}, + [2683] = {.lex_state = 165}, + [2684] = {.lex_state = 165}, + [2685] = {.lex_state = 155}, + [2686] = {.lex_state = 165}, + [2687] = {.lex_state = 165}, + [2688] = {.lex_state = 165}, + [2689] = {.lex_state = 165}, + [2690] = {.lex_state = 165}, + [2691] = {.lex_state = 156}, + [2692] = {.lex_state = 165}, + [2693] = {.lex_state = 165}, + [2694] = {.lex_state = 165}, + [2695] = {.lex_state = 165}, + [2696] = {.lex_state = 165}, + [2697] = {.lex_state = 156}, + [2698] = {.lex_state = 156}, + [2699] = {.lex_state = 156}, + [2700] = {.lex_state = 181}, + [2701] = {.lex_state = 184}, + [2702] = {.lex_state = 156}, + [2703] = {.lex_state = 156}, + [2704] = {.lex_state = 156}, + [2705] = {.lex_state = 156}, + [2706] = {.lex_state = 156}, + [2707] = {.lex_state = 156}, + [2708] = {.lex_state = 156}, + [2709] = {.lex_state = 156}, + [2710] = {.lex_state = 156}, + [2711] = {.lex_state = 156}, + [2712] = {.lex_state = 156}, + [2713] = {.lex_state = 156}, + [2714] = {.lex_state = 184}, + [2715] = {.lex_state = 156}, + [2716] = {.lex_state = 156}, + [2717] = {.lex_state = 156}, + [2718] = {.lex_state = 156}, + [2719] = {.lex_state = 184}, + [2720] = {.lex_state = 156}, + [2721] = {.lex_state = 156}, + [2722] = {.lex_state = 184}, + [2723] = {.lex_state = 156}, + [2724] = {.lex_state = 184}, + [2725] = {.lex_state = 156}, + [2726] = {.lex_state = 181}, + [2727] = {.lex_state = 156}, + [2728] = {.lex_state = 156}, + [2729] = {.lex_state = 168}, + [2730] = {.lex_state = 156}, + [2731] = {.lex_state = 184}, + [2732] = {.lex_state = 156}, + [2733] = {.lex_state = 156}, + [2734] = {.lex_state = 163}, + [2735] = {.lex_state = 156}, + [2736] = {.lex_state = 156}, + [2737] = {.lex_state = 181}, + [2738] = {.lex_state = 156}, + [2739] = {.lex_state = 156}, + [2740] = {.lex_state = 156}, + [2741] = {.lex_state = 156}, + [2742] = {.lex_state = 184}, + [2743] = {.lex_state = 184}, + [2744] = {.lex_state = 156}, + [2745] = {.lex_state = 156}, + [2746] = {.lex_state = 156}, + [2747] = {.lex_state = 156}, + [2748] = {.lex_state = 156}, + [2749] = {.lex_state = 156}, + [2750] = {.lex_state = 156}, + [2751] = {.lex_state = 156}, + [2752] = {.lex_state = 156}, + [2753] = {.lex_state = 156}, + [2754] = {.lex_state = 156}, + [2755] = {.lex_state = 156}, + [2756] = {.lex_state = 156}, + [2757] = {.lex_state = 156}, + [2758] = {.lex_state = 156}, + [2759] = {.lex_state = 156}, + [2760] = {.lex_state = 184}, + [2761] = {.lex_state = 156}, + [2762] = {.lex_state = 156}, + [2763] = {.lex_state = 156}, + [2764] = {.lex_state = 156}, + [2765] = {.lex_state = 184}, + [2766] = {.lex_state = 156}, + [2767] = {.lex_state = 156}, + [2768] = {.lex_state = 181}, + [2769] = {.lex_state = 156}, + [2770] = {.lex_state = 156}, + [2771] = {.lex_state = 156}, + [2772] = {.lex_state = 156}, + [2773] = {.lex_state = 163}, + [2774] = {.lex_state = 156}, + [2775] = {.lex_state = 156}, + [2776] = {.lex_state = 184}, + [2777] = {.lex_state = 156}, + [2778] = {.lex_state = 156}, + [2779] = {.lex_state = 156}, + [2780] = {.lex_state = 184}, + [2781] = {.lex_state = 184}, + [2782] = {.lex_state = 156}, + [2783] = {.lex_state = 163}, + [2784] = {.lex_state = 184}, + [2785] = {.lex_state = 184}, + [2786] = {.lex_state = 163}, + [2787] = {.lex_state = 163}, + [2788] = {.lex_state = 156}, + [2789] = {.lex_state = 156}, + [2790] = {.lex_state = 156}, + [2791] = {.lex_state = 156}, + [2792] = {.lex_state = 156}, + [2793] = {.lex_state = 156}, + [2794] = {.lex_state = 156}, + [2795] = {.lex_state = 184}, + [2796] = {.lex_state = 184}, + [2797] = {.lex_state = 184}, + [2798] = {.lex_state = 156}, + [2799] = {.lex_state = 156}, + [2800] = {.lex_state = 156}, + [2801] = {.lex_state = 156}, + [2802] = {.lex_state = 156}, + [2803] = {.lex_state = 156}, + [2804] = {.lex_state = 156}, + [2805] = {.lex_state = 156}, + [2806] = {.lex_state = 184}, + [2807] = {.lex_state = 165}, + [2808] = {.lex_state = 156}, + [2809] = {.lex_state = 184}, + [2810] = {.lex_state = 184}, + [2811] = {.lex_state = 156}, + [2812] = {.lex_state = 156}, + [2813] = {.lex_state = 156}, + [2814] = {.lex_state = 156}, + [2815] = {.lex_state = 156}, + [2816] = {.lex_state = 156}, + [2817] = {.lex_state = 156}, + [2818] = {.lex_state = 156}, + [2819] = {.lex_state = 184}, + [2820] = {.lex_state = 156}, + [2821] = {.lex_state = 156}, + [2822] = {.lex_state = 156}, + [2823] = {.lex_state = 184}, + [2824] = {.lex_state = 156}, + [2825] = {.lex_state = 184}, + [2826] = {.lex_state = 156}, + [2827] = {.lex_state = 181}, + [2828] = {.lex_state = 164}, + [2829] = {.lex_state = 184}, + [2830] = {.lex_state = 184}, + [2831] = {.lex_state = 156}, + [2832] = {.lex_state = 156}, + [2833] = {.lex_state = 156}, + [2834] = {.lex_state = 184}, + [2835] = {.lex_state = 184}, + [2836] = {.lex_state = 184}, + [2837] = {.lex_state = 184}, + [2838] = {.lex_state = 156}, + [2839] = {.lex_state = 156}, + [2840] = {.lex_state = 184}, + [2841] = {.lex_state = 156}, + [2842] = {.lex_state = 156}, + [2843] = {.lex_state = 156}, + [2844] = {.lex_state = 184}, + [2845] = {.lex_state = 184}, + [2846] = {.lex_state = 184}, + [2847] = {.lex_state = 184}, + [2848] = {.lex_state = 184}, + [2849] = {.lex_state = 184}, + [2850] = {.lex_state = 184}, + [2851] = {.lex_state = 184}, + [2852] = {.lex_state = 184}, + [2853] = {.lex_state = 184}, + [2854] = {.lex_state = 156}, + [2855] = {.lex_state = 156}, + [2856] = {.lex_state = 184}, + [2857] = {.lex_state = 184}, + [2858] = {.lex_state = 184}, + [2859] = {.lex_state = 163}, + [2860] = {.lex_state = 184}, + [2861] = {.lex_state = 156}, + [2862] = {.lex_state = 181}, + [2863] = {.lex_state = 184}, + [2864] = {.lex_state = 156}, + [2865] = {.lex_state = 156}, + [2866] = {.lex_state = 156}, + [2867] = {.lex_state = 181}, + [2868] = {.lex_state = 156}, + [2869] = {.lex_state = 156}, + [2870] = {.lex_state = 156}, + [2871] = {.lex_state = 184}, + [2872] = {.lex_state = 184}, + [2873] = {.lex_state = 156}, + [2874] = {.lex_state = 184}, + [2875] = {.lex_state = 156}, + [2876] = {.lex_state = 156}, + [2877] = {.lex_state = 156}, + [2878] = {.lex_state = 184}, + [2879] = {.lex_state = 156}, + [2880] = {.lex_state = 184}, + [2881] = {.lex_state = 184}, + [2882] = {.lex_state = 156}, + [2883] = {.lex_state = 156}, + [2884] = {.lex_state = 156}, + [2885] = {.lex_state = 156}, + [2886] = {.lex_state = 156}, + [2887] = {.lex_state = 156}, + [2888] = {.lex_state = 181}, + [2889] = {.lex_state = 156}, + [2890] = {.lex_state = 156}, + [2891] = {.lex_state = 156}, + [2892] = {.lex_state = 156}, + [2893] = {.lex_state = 184}, + [2894] = {.lex_state = 184}, + [2895] = {.lex_state = 184}, + [2896] = {.lex_state = 184}, + [2897] = {.lex_state = 181}, + [2898] = {.lex_state = 181}, + [2899] = {.lex_state = 156}, + [2900] = {.lex_state = 156}, + [2901] = {.lex_state = 165}, + [2902] = {.lex_state = 156}, + [2903] = {.lex_state = 156}, + [2904] = {.lex_state = 156}, + [2905] = {.lex_state = 156}, + [2906] = {.lex_state = 181}, + [2907] = {.lex_state = 184}, + [2908] = {.lex_state = 156}, + [2909] = {.lex_state = 156}, + [2910] = {.lex_state = 156}, + [2911] = {.lex_state = 184}, + [2912] = {.lex_state = 181}, + [2913] = {.lex_state = 184}, + [2914] = {.lex_state = 184}, + [2915] = {.lex_state = 156}, + [2916] = {.lex_state = 156}, + [2917] = {.lex_state = 184}, + [2918] = {.lex_state = 184}, + [2919] = {.lex_state = 184}, + [2920] = {.lex_state = 196}, + [2921] = {.lex_state = 156}, + [2922] = {.lex_state = 165}, [2923] = {.lex_state = 165}, - [2924] = {.lex_state = 180}, - [2925] = {.lex_state = 165}, + [2924] = {.lex_state = 196}, + [2925] = {.lex_state = 196}, [2926] = {.lex_state = 165}, - [2927] = {.lex_state = 154}, + [2927] = {.lex_state = 165}, [2928] = {.lex_state = 165}, - [2929] = {.lex_state = 180}, - [2930] = {.lex_state = 180}, + [2929] = {.lex_state = 165}, + [2930] = {.lex_state = 165}, [2931] = {.lex_state = 165}, [2932] = {.lex_state = 165}, - [2933] = {.lex_state = 165}, - [2934] = {.lex_state = 180}, + [2933] = {.lex_state = 176}, + [2934] = {.lex_state = 165}, [2935] = {.lex_state = 165}, - [2936] = {.lex_state = 165}, - [2937] = {.lex_state = 162}, + [2936] = {.lex_state = 196}, + [2937] = {.lex_state = 165}, [2938] = {.lex_state = 165}, [2939] = {.lex_state = 165}, - [2940] = {.lex_state = 165}, - [2941] = {.lex_state = 165}, - [2942] = {.lex_state = 165}, - [2943] = {.lex_state = 180}, - [2944] = {.lex_state = 180}, + [2940] = {.lex_state = 196}, + [2941] = {.lex_state = 196}, + [2942] = {.lex_state = 196}, + [2943] = {.lex_state = 196}, + [2944] = {.lex_state = 165}, [2945] = {.lex_state = 165}, - [2946] = {.lex_state = 180}, - [2947] = {.lex_state = 165}, - [2948] = {.lex_state = 180}, + [2946] = {.lex_state = 165}, + [2947] = {.lex_state = 156}, + [2948] = {.lex_state = 165}, [2949] = {.lex_state = 165}, - [2950] = {.lex_state = 154}, - [2951] = {.lex_state = 165}, - [2952] = {.lex_state = 165}, - [2953] = {.lex_state = 154}, - [2954] = {.lex_state = 180}, - [2955] = {.lex_state = 165}, - [2956] = {.lex_state = 180}, - [2957] = {.lex_state = 165}, + [2950] = {.lex_state = 196}, + [2951] = {.lex_state = 196}, + [2952] = {.lex_state = 196}, + [2953] = {.lex_state = 196}, + [2954] = {.lex_state = 196}, + [2955] = {.lex_state = 196}, + [2956] = {.lex_state = 187}, + [2957] = {.lex_state = 196}, [2958] = {.lex_state = 165}, - [2959] = {.lex_state = 165}, + [2959] = {.lex_state = 196}, [2960] = {.lex_state = 165}, [2961] = {.lex_state = 165}, - [2962] = {.lex_state = 180}, + [2962] = {.lex_state = 177}, [2963] = {.lex_state = 165}, - [2964] = {.lex_state = 180}, - [2965] = {.lex_state = 165}, - [2966] = {.lex_state = 180}, - [2967] = {.lex_state = 132, .external_lex_state = 1}, - [2968] = {.lex_state = 154}, - [2969] = {.lex_state = 164}, - [2970] = {.lex_state = 164}, - [2971] = {.lex_state = 132, .external_lex_state = 1}, - [2972] = {.lex_state = 154}, - [2973] = {.lex_state = 132, .external_lex_state = 1}, - [2974] = {.lex_state = 132, .external_lex_state = 1}, - [2975] = {.lex_state = 164}, - [2976] = {.lex_state = 181}, - [2977] = {.lex_state = 154}, - [2978] = {.lex_state = 180}, - [2979] = {.lex_state = 180}, - [2980] = {.lex_state = 180}, - [2981] = {.lex_state = 156}, - [2982] = {.lex_state = 132, .external_lex_state = 1}, - [2983] = {.lex_state = 154}, - [2984] = {.lex_state = 132, .external_lex_state = 1}, - [2985] = {.lex_state = 154}, - [2986] = {.lex_state = 132, .external_lex_state = 1}, - [2987] = {.lex_state = 132, .external_lex_state = 1}, - [2988] = {.lex_state = 180}, - [2989] = {.lex_state = 181}, - [2990] = {.lex_state = 180}, - [2991] = {.lex_state = 154}, - [2992] = {.lex_state = 181}, - [2993] = {.lex_state = 180}, - [2994] = {.lex_state = 154}, - [2995] = {.lex_state = 164}, - [2996] = {.lex_state = 154}, - [2997] = {.lex_state = 154}, - [2998] = {.lex_state = 182}, - [2999] = {.lex_state = 132, .external_lex_state = 1}, - [3000] = {.lex_state = 154}, - [3001] = {.lex_state = 180}, - [3002] = {.lex_state = 154}, - [3003] = {.lex_state = 154}, - [3004] = {.lex_state = 154}, - [3005] = {.lex_state = 154}, - [3006] = {.lex_state = 154}, - [3007] = {.lex_state = 180}, - [3008] = {.lex_state = 154}, - [3009] = {.lex_state = 154}, - [3010] = {.lex_state = 132, .external_lex_state = 1}, - [3011] = {.lex_state = 154}, - [3012] = {.lex_state = 180}, - [3013] = {.lex_state = 154}, - [3014] = {.lex_state = 154}, - [3015] = {.lex_state = 154}, - [3016] = {.lex_state = 154}, + [2964] = {.lex_state = 176}, + [2965] = {.lex_state = 196}, + [2966] = {.lex_state = 165}, + [2967] = {.lex_state = 196}, + [2968] = {.lex_state = 196}, + [2969] = {.lex_state = 165}, + [2970] = {.lex_state = 196}, + [2971] = {.lex_state = 156}, + [2972] = {.lex_state = 142, .external_lex_state = 1}, + [2973] = {.lex_state = 165}, + [2974] = {.lex_state = 168}, + [2975] = {.lex_state = 156}, + [2976] = {.lex_state = 165}, + [2977] = {.lex_state = 168}, + [2978] = {.lex_state = 165}, + [2979] = {.lex_state = 168}, + [2980] = {.lex_state = 168}, + [2981] = {.lex_state = 161}, + [2982] = {.lex_state = 156}, + [2983] = {.lex_state = 168}, + [2984] = {.lex_state = 156}, + [2985] = {.lex_state = 165}, + [2986] = {.lex_state = 168}, + [2987] = {.lex_state = 165}, + [2988] = {.lex_state = 165}, + [2989] = {.lex_state = 165}, + [2990] = {.lex_state = 168}, + [2991] = {.lex_state = 168}, + [2992] = {.lex_state = 165}, + [2993] = {.lex_state = 156}, + [2994] = {.lex_state = 165}, + [2995] = {.lex_state = 168}, + [2996] = {.lex_state = 168}, + [2997] = {.lex_state = 155}, + [2998] = {.lex_state = 165}, + [2999] = {.lex_state = 165}, + [3000] = {.lex_state = 168}, + [3001] = {.lex_state = 168}, + [3002] = {.lex_state = 165}, + [3003] = {.lex_state = 165}, + [3004] = {.lex_state = 165}, + [3005] = {.lex_state = 168}, + [3006] = {.lex_state = 168}, + [3007] = {.lex_state = 168}, + [3008] = {.lex_state = 165}, + [3009] = {.lex_state = 165}, + [3010] = {.lex_state = 168}, + [3011] = {.lex_state = 168}, + [3012] = {.lex_state = 168}, + [3013] = {.lex_state = 156}, + [3014] = {.lex_state = 165}, + [3015] = {.lex_state = 156}, + [3016] = {.lex_state = 165}, [3017] = {.lex_state = 156}, - [3018] = {.lex_state = 154}, - [3019] = {.lex_state = 156}, - [3020] = {.lex_state = 154}, + [3018] = {.lex_state = 165}, + [3019] = {.lex_state = 165}, + [3020] = {.lex_state = 165}, [3021] = {.lex_state = 156}, - [3022] = {.lex_state = 154}, - [3023] = {.lex_state = 154}, - [3024] = {.lex_state = 154}, - [3025] = {.lex_state = 154}, - [3026] = {.lex_state = 156}, - [3027] = {.lex_state = 154}, - [3028] = {.lex_state = 141, .external_lex_state = 1}, - [3029] = {.lex_state = 180}, - [3030] = {.lex_state = 156}, - [3031] = {.lex_state = 180}, - [3032] = {.lex_state = 156}, - [3033] = {.lex_state = 164}, - [3034] = {.lex_state = 180}, - [3035] = {.lex_state = 180}, - [3036] = {.lex_state = 180}, - [3037] = {.lex_state = 141, .external_lex_state = 1}, - [3038] = {.lex_state = 156}, - [3039] = {.lex_state = 154}, - [3040] = {.lex_state = 180}, + [3022] = {.lex_state = 156}, + [3023] = {.lex_state = 168}, + [3024] = {.lex_state = 165}, + [3025] = {.lex_state = 156}, + [3026] = {.lex_state = 168}, + [3027] = {.lex_state = 168}, + [3028] = {.lex_state = 156}, + [3029] = {.lex_state = 168}, + [3030] = {.lex_state = 165}, + [3031] = {.lex_state = 165}, + [3032] = {.lex_state = 168}, + [3033] = {.lex_state = 156}, + [3034] = {.lex_state = 156}, + [3035] = {.lex_state = 165}, + [3036] = {.lex_state = 156}, + [3037] = {.lex_state = 165}, + [3038] = {.lex_state = 165}, + [3039] = {.lex_state = 165}, + [3040] = {.lex_state = 165}, [3041] = {.lex_state = 156}, - [3042] = {.lex_state = 156}, - [3043] = {.lex_state = 132, .external_lex_state = 1}, - [3044] = {.lex_state = 181}, - [3045] = {.lex_state = 154}, - [3046] = {.lex_state = 182}, - [3047] = {.lex_state = 132, .external_lex_state = 1}, - [3048] = {.lex_state = 154}, - [3049] = {.lex_state = 132, .external_lex_state = 1}, + [3042] = {.lex_state = 165}, + [3043] = {.lex_state = 156}, + [3044] = {.lex_state = 156}, + [3045] = {.lex_state = 156}, + [3046] = {.lex_state = 168}, + [3047] = {.lex_state = 165}, + [3048] = {.lex_state = 165}, + [3049] = {.lex_state = 165}, [3050] = {.lex_state = 156}, - [3051] = {.lex_state = 156}, - [3052] = {.lex_state = 154}, - [3053] = {.lex_state = 154}, - [3054] = {.lex_state = 154}, - [3055] = {.lex_state = 180}, - [3056] = {.lex_state = 156}, - [3057] = {.lex_state = 154}, - [3058] = {.lex_state = 154}, - [3059] = {.lex_state = 132, .external_lex_state = 1}, - [3060] = {.lex_state = 180}, - [3061] = {.lex_state = 154}, - [3062] = {.lex_state = 154}, - [3063] = {.lex_state = 180}, - [3064] = {.lex_state = 154}, - [3065] = {.lex_state = 156}, - [3066] = {.lex_state = 156}, - [3067] = {.lex_state = 154}, - [3068] = {.lex_state = 156}, - [3069] = {.lex_state = 156}, - [3070] = {.lex_state = 156}, - [3071] = {.lex_state = 154}, - [3072] = {.lex_state = 156}, - [3073] = {.lex_state = 132, .external_lex_state = 1}, - [3074] = {.lex_state = 154}, - [3075] = {.lex_state = 184}, - [3076] = {.lex_state = 154}, - [3077] = {.lex_state = 180}, - [3078] = {.lex_state = 156}, - [3079] = {.lex_state = 154}, - [3080] = {.lex_state = 154}, - [3081] = {.lex_state = 154}, - [3082] = {.lex_state = 154}, - [3083] = {.lex_state = 154}, - [3084] = {.lex_state = 180}, - [3085] = {.lex_state = 164}, - [3086] = {.lex_state = 132, .external_lex_state = 1}, - [3087] = {.lex_state = 154}, - [3088] = {.lex_state = 132, .external_lex_state = 1}, - [3089] = {.lex_state = 180}, - [3090] = {.lex_state = 164}, - [3091] = {.lex_state = 166}, - [3092] = {.lex_state = 154}, - [3093] = {.lex_state = 180}, - [3094] = {.lex_state = 132, .external_lex_state = 1}, - [3095] = {.lex_state = 166}, - [3096] = {.lex_state = 154}, - [3097] = {.lex_state = 180}, - [3098] = {.lex_state = 154}, - [3099] = {.lex_state = 154}, - [3100] = {.lex_state = 154}, - [3101] = {.lex_state = 180}, - [3102] = {.lex_state = 154}, - [3103] = {.lex_state = 180}, - [3104] = {.lex_state = 132, .external_lex_state = 1}, - [3105] = {.lex_state = 180}, - [3106] = {.lex_state = 180}, - [3107] = {.lex_state = 154}, - [3108] = {.lex_state = 180}, - [3109] = {.lex_state = 154}, + [3051] = {.lex_state = 165}, + [3052] = {.lex_state = 156}, + [3053] = {.lex_state = 156}, + [3054] = {.lex_state = 165}, + [3055] = {.lex_state = 165}, + [3056] = {.lex_state = 165}, + [3057] = {.lex_state = 165}, + [3058] = {.lex_state = 165}, + [3059] = {.lex_state = 165}, + [3060] = {.lex_state = 165}, + [3061] = {.lex_state = 156}, + [3062] = {.lex_state = 161}, + [3063] = {.lex_state = 165}, + [3064] = {.lex_state = 165}, + [3065] = {.lex_state = 165}, + [3066] = {.lex_state = 165}, + [3067] = {.lex_state = 165}, + [3068] = {.lex_state = 168}, + [3069] = {.lex_state = 165}, + [3070] = {.lex_state = 165}, + [3071] = {.lex_state = 165}, + [3072] = {.lex_state = 165}, + [3073] = {.lex_state = 165}, + [3074] = {.lex_state = 165}, + [3075] = {.lex_state = 165}, + [3076] = {.lex_state = 165}, + [3077] = {.lex_state = 165}, + [3078] = {.lex_state = 165}, + [3079] = {.lex_state = 165}, + [3080] = {.lex_state = 165}, + [3081] = {.lex_state = 165}, + [3082] = {.lex_state = 156}, + [3083] = {.lex_state = 156}, + [3084] = {.lex_state = 156}, + [3085] = {.lex_state = 156}, + [3086] = {.lex_state = 156}, + [3087] = {.lex_state = 156}, + [3088] = {.lex_state = 156}, + [3089] = {.lex_state = 156}, + [3090] = {.lex_state = 156}, + [3091] = {.lex_state = 156}, + [3092] = {.lex_state = 156}, + [3093] = {.lex_state = 156}, + [3094] = {.lex_state = 156}, + [3095] = {.lex_state = 156}, + [3096] = {.lex_state = 156}, + [3097] = {.lex_state = 156}, + [3098] = {.lex_state = 156}, + [3099] = {.lex_state = 156}, + [3100] = {.lex_state = 156}, + [3101] = {.lex_state = 156}, + [3102] = {.lex_state = 150, .external_lex_state = 1}, + [3103] = {.lex_state = 156}, + [3104] = {.lex_state = 156}, + [3105] = {.lex_state = 156}, + [3106] = {.lex_state = 156}, + [3107] = {.lex_state = 156}, + [3108] = {.lex_state = 156}, + [3109] = {.lex_state = 150, .external_lex_state = 1}, [3110] = {.lex_state = 156}, - [3111] = {.lex_state = 181}, + [3111] = {.lex_state = 156}, [3112] = {.lex_state = 156}, - [3113] = {.lex_state = 156}, - [3114] = {.lex_state = 154}, + [3113] = {.lex_state = 181}, + [3114] = {.lex_state = 156}, [3115] = {.lex_state = 156}, - [3116] = {.lex_state = 132, .external_lex_state = 1}, + [3116] = {.lex_state = 156}, [3117] = {.lex_state = 156}, - [3118] = {.lex_state = 180}, - [3119] = {.lex_state = 181}, - [3120] = {.lex_state = 181}, - [3121] = {.lex_state = 181}, - [3122] = {.lex_state = 181}, - [3123] = {.lex_state = 181}, - [3124] = {.lex_state = 181}, - [3125] = {.lex_state = 181}, - [3126] = {.lex_state = 181}, - [3127] = {.lex_state = 183}, - [3128] = {.lex_state = 183}, - [3129] = {.lex_state = 183}, - [3130] = {.lex_state = 181}, - [3131] = {.lex_state = 183}, - [3132] = {.lex_state = 181}, - [3133] = {.lex_state = 181}, - [3134] = {.lex_state = 183}, - [3135] = {.lex_state = 183}, - [3136] = {.lex_state = 183}, - [3137] = {.lex_state = 183}, + [3118] = {.lex_state = 181}, + [3119] = {.lex_state = 168}, + [3120] = {.lex_state = 156}, + [3121] = {.lex_state = 168}, + [3122] = {.lex_state = 156}, + [3123] = {.lex_state = 156}, + [3124] = {.lex_state = 156}, + [3125] = {.lex_state = 150, .external_lex_state = 1}, + [3126] = {.lex_state = 168}, + [3127] = {.lex_state = 168}, + [3128] = {.lex_state = 168}, + [3129] = {.lex_state = 168}, + [3130] = {.lex_state = 156}, + [3131] = {.lex_state = 168}, + [3132] = {.lex_state = 156}, + [3133] = {.lex_state = 168}, + [3134] = {.lex_state = 156}, + [3135] = {.lex_state = 156}, + [3136] = {.lex_state = 181}, + [3137] = {.lex_state = 181}, [3138] = {.lex_state = 181}, [3139] = {.lex_state = 181}, - [3140] = {.lex_state = 183}, + [3140] = {.lex_state = 181}, [3141] = {.lex_state = 181}, - [3142] = {.lex_state = 181}, + [3142] = {.lex_state = 191}, [3143] = {.lex_state = 181}, [3144] = {.lex_state = 181}, - [3145] = {.lex_state = 180}, + [3145] = {.lex_state = 181}, [3146] = {.lex_state = 181}, [3147] = {.lex_state = 181}, [3148] = {.lex_state = 181}, @@ -20031,35 +20899,35 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3153] = {.lex_state = 181}, [3154] = {.lex_state = 181}, [3155] = {.lex_state = 181}, - [3156] = {.lex_state = 156}, - [3157] = {.lex_state = 156}, - [3158] = {.lex_state = 156}, - [3159] = {.lex_state = 181}, - [3160] = {.lex_state = 156}, + [3156] = {.lex_state = 181}, + [3157] = {.lex_state = 181}, + [3158] = {.lex_state = 181}, + [3159] = {.lex_state = 191}, + [3160] = {.lex_state = 181}, [3161] = {.lex_state = 181}, [3162] = {.lex_state = 181}, [3163] = {.lex_state = 181}, - [3164] = {.lex_state = 156}, + [3164] = {.lex_state = 181}, [3165] = {.lex_state = 181}, - [3166] = {.lex_state = 183}, + [3166] = {.lex_state = 181}, [3167] = {.lex_state = 181}, [3168] = {.lex_state = 181}, - [3169] = {.lex_state = 156}, + [3169] = {.lex_state = 181}, [3170] = {.lex_state = 181}, - [3171] = {.lex_state = 164}, - [3172] = {.lex_state = 156}, - [3173] = {.lex_state = 181}, + [3171] = {.lex_state = 181}, + [3172] = {.lex_state = 181}, + [3173] = {.lex_state = 191}, [3174] = {.lex_state = 181}, [3175] = {.lex_state = 181}, [3176] = {.lex_state = 181}, - [3177] = {.lex_state = 181}, + [3177] = {.lex_state = 142, .external_lex_state = 1}, [3178] = {.lex_state = 181}, - [3179] = {.lex_state = 183}, + [3179] = {.lex_state = 181}, [3180] = {.lex_state = 181}, [3181] = {.lex_state = 181}, [3182] = {.lex_state = 181}, [3183] = {.lex_state = 181}, - [3184] = {.lex_state = 180}, + [3184] = {.lex_state = 181}, [3185] = {.lex_state = 181}, [3186] = {.lex_state = 181}, [3187] = {.lex_state = 181}, @@ -20071,3014 +20939,3014 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3193] = {.lex_state = 181}, [3194] = {.lex_state = 181}, [3195] = {.lex_state = 181}, - [3196] = {.lex_state = 156}, + [3196] = {.lex_state = 181}, [3197] = {.lex_state = 181}, [3198] = {.lex_state = 181}, [3199] = {.lex_state = 181}, - [3200] = {.lex_state = 183}, + [3200] = {.lex_state = 181}, [3201] = {.lex_state = 181}, [3202] = {.lex_state = 181}, - [3203] = {.lex_state = 181}, + [3203] = {.lex_state = 191}, [3204] = {.lex_state = 181}, - [3205] = {.lex_state = 181}, - [3206] = {.lex_state = 181}, + [3205] = {.lex_state = 180}, + [3206] = {.lex_state = 150, .external_lex_state = 1}, [3207] = {.lex_state = 181}, - [3208] = {.lex_state = 181}, - [3209] = {.lex_state = 164}, - [3210] = {.lex_state = 183}, - [3211] = {.lex_state = 181}, - [3212] = {.lex_state = 183}, - [3213] = {.lex_state = 183}, - [3214] = {.lex_state = 166}, - [3215] = {.lex_state = 143, .external_lex_state = 1}, - [3216] = {.lex_state = 169}, - [3217] = {.lex_state = 169}, - [3218] = {.lex_state = 183}, - [3219] = {.lex_state = 143, .external_lex_state = 1}, - [3220] = {.lex_state = 166}, - [3221] = {.lex_state = 169}, - [3222] = {.lex_state = 183}, - [3223] = {.lex_state = 169}, - [3224] = {.lex_state = 183}, - [3225] = {.lex_state = 183}, - [3226] = {.lex_state = 164}, - [3227] = {.lex_state = 164}, - [3228] = {.lex_state = 169}, - [3229] = {.lex_state = 164}, - [3230] = {.lex_state = 181}, - [3231] = {.lex_state = 164}, - [3232] = {.lex_state = 164}, - [3233] = {.lex_state = 169}, - [3234] = {.lex_state = 165}, - [3235] = {.lex_state = 169}, - [3236] = {.lex_state = 143, .external_lex_state = 1}, - [3237] = {.lex_state = 165}, - [3238] = {.lex_state = 183}, - [3239] = {.lex_state = 183}, - [3240] = {.lex_state = 164}, - [3241] = {.lex_state = 164}, - [3242] = {.lex_state = 169}, - [3243] = {.lex_state = 164}, - [3244] = {.lex_state = 165}, - [3245] = {.lex_state = 183}, - [3246] = {.lex_state = 169}, - [3247] = {.lex_state = 165}, - [3248] = {.lex_state = 169}, - [3249] = {.lex_state = 165}, - [3250] = {.lex_state = 169}, - [3251] = {.lex_state = 165}, - [3252] = {.lex_state = 169}, - [3253] = {.lex_state = 165}, - [3254] = {.lex_state = 165}, - [3255] = {.lex_state = 165}, - [3256] = {.lex_state = 165}, - [3257] = {.lex_state = 165}, - [3258] = {.lex_state = 165}, - [3259] = {.lex_state = 165}, - [3260] = {.lex_state = 165}, - [3261] = {.lex_state = 165}, - [3262] = {.lex_state = 165}, - [3263] = {.lex_state = 165}, - [3264] = {.lex_state = 165}, - [3265] = {.lex_state = 165}, - [3266] = {.lex_state = 165}, - [3267] = {.lex_state = 183}, - [3268] = {.lex_state = 165}, - [3269] = {.lex_state = 165}, - [3270] = {.lex_state = 181}, - [3271] = {.lex_state = 165}, + [3208] = {.lex_state = 180}, + [3209] = {.lex_state = 150, .external_lex_state = 1}, + [3210] = {.lex_state = 180}, + [3211] = {.lex_state = 180}, + [3212] = {.lex_state = 180}, + [3213] = {.lex_state = 180}, + [3214] = {.lex_state = 180}, + [3215] = {.lex_state = 180}, + [3216] = {.lex_state = 196}, + [3217] = {.lex_state = 180}, + [3218] = {.lex_state = 180}, + [3219] = {.lex_state = 180}, + [3220] = {.lex_state = 180}, + [3221] = {.lex_state = 180}, + [3222] = {.lex_state = 180}, + [3223] = {.lex_state = 197}, + [3224] = {.lex_state = 180}, + [3225] = {.lex_state = 180}, + [3226] = {.lex_state = 180}, + [3227] = {.lex_state = 180}, + [3228] = {.lex_state = 180}, + [3229] = {.lex_state = 180}, + [3230] = {.lex_state = 197}, + [3231] = {.lex_state = 180}, + [3232] = {.lex_state = 180}, + [3233] = {.lex_state = 180}, + [3234] = {.lex_state = 180}, + [3235] = {.lex_state = 180}, + [3236] = {.lex_state = 180}, + [3237] = {.lex_state = 180}, + [3238] = {.lex_state = 180}, + [3239] = {.lex_state = 152, .external_lex_state = 1}, + [3240] = {.lex_state = 184}, + [3241] = {.lex_state = 184}, + [3242] = {.lex_state = 152, .external_lex_state = 1}, + [3243] = {.lex_state = 184}, + [3244] = {.lex_state = 184}, + [3245] = {.lex_state = 180}, + [3246] = {.lex_state = 184}, + [3247] = {.lex_state = 142, .external_lex_state = 1}, + [3248] = {.lex_state = 184}, + [3249] = {.lex_state = 180}, + [3250] = {.lex_state = 152, .external_lex_state = 1}, + [3251] = {.lex_state = 197}, + [3252] = {.lex_state = 184}, + [3253] = {.lex_state = 184}, + [3254] = {.lex_state = 142, .external_lex_state = 1}, + [3255] = {.lex_state = 197}, + [3256] = {.lex_state = 197}, + [3257] = {.lex_state = 197}, + [3258] = {.lex_state = 184}, + [3259] = {.lex_state = 184}, + [3260] = {.lex_state = 197}, + [3261] = {.lex_state = 197}, + [3262] = {.lex_state = 197}, + [3263] = {.lex_state = 184}, + [3264] = {.lex_state = 197}, + [3265] = {.lex_state = 197}, + [3266] = {.lex_state = 197}, + [3267] = {.lex_state = 184}, + [3268] = {.lex_state = 197}, + [3269] = {.lex_state = 197}, + [3270] = {.lex_state = 197}, + [3271] = {.lex_state = 196}, [3272] = {.lex_state = 181}, - [3273] = {.lex_state = 181}, - [3274] = {.lex_state = 165}, - [3275] = {.lex_state = 181}, - [3276] = {.lex_state = 181}, - [3277] = {.lex_state = 143, .external_lex_state = 1}, - [3278] = {.lex_state = 165}, - [3279] = {.lex_state = 132, .external_lex_state = 1}, - [3280] = {.lex_state = 183}, - [3281] = {.lex_state = 165}, - [3282] = {.lex_state = 143, .external_lex_state = 1}, - [3283] = {.lex_state = 183}, - [3284] = {.lex_state = 183}, - [3285] = {.lex_state = 183}, - [3286] = {.lex_state = 184}, - [3287] = {.lex_state = 183}, - [3288] = {.lex_state = 165}, - [3289] = {.lex_state = 181}, - [3290] = {.lex_state = 165}, - [3291] = {.lex_state = 183}, - [3292] = {.lex_state = 183}, - [3293] = {.lex_state = 181}, - [3294] = {.lex_state = 169}, - [3295] = {.lex_state = 169}, - [3296] = {.lex_state = 170}, - [3297] = {.lex_state = 164}, - [3298] = {.lex_state = 164}, - [3299] = {.lex_state = 168}, - [3300] = {.lex_state = 169}, - [3301] = {.lex_state = 169}, - [3302] = {.lex_state = 169}, - [3303] = {.lex_state = 169}, - [3304] = {.lex_state = 183}, - [3305] = {.lex_state = 169}, - [3306] = {.lex_state = 164}, - [3307] = {.lex_state = 170}, - [3308] = {.lex_state = 169}, - [3309] = {.lex_state = 164}, - [3310] = {.lex_state = 169}, - [3311] = {.lex_state = 169}, - [3312] = {.lex_state = 164}, - [3313] = {.lex_state = 181}, - [3314] = {.lex_state = 183}, - [3315] = {.lex_state = 166}, - [3316] = {.lex_state = 169}, - [3317] = {.lex_state = 164}, - [3318] = {.lex_state = 181}, - [3319] = {.lex_state = 164}, - [3320] = {.lex_state = 164}, - [3321] = {.lex_state = 169}, - [3322] = {.lex_state = 181}, - [3323] = {.lex_state = 169}, - [3324] = {.lex_state = 183}, - [3325] = {.lex_state = 169}, - [3326] = {.lex_state = 165}, - [3327] = {.lex_state = 169}, - [3328] = {.lex_state = 164}, - [3329] = {.lex_state = 164}, - [3330] = {.lex_state = 183}, - [3331] = {.lex_state = 183}, - [3332] = {.lex_state = 141}, - [3333] = {.lex_state = 180}, - [3334] = {.lex_state = 183}, - [3335] = {.lex_state = 183}, - [3336] = {.lex_state = 183}, - [3337] = {.lex_state = 181}, - [3338] = {.lex_state = 183}, - [3339] = {.lex_state = 183}, - [3340] = {.lex_state = 183}, - [3341] = {.lex_state = 183}, - [3342] = {.lex_state = 183}, - [3343] = {.lex_state = 183}, - [3344] = {.lex_state = 183}, - [3345] = {.lex_state = 168}, - [3346] = {.lex_state = 183}, - [3347] = {.lex_state = 183}, - [3348] = {.lex_state = 183}, - [3349] = {.lex_state = 183}, - [3350] = {.lex_state = 183}, - [3351] = {.lex_state = 168}, - [3352] = {.lex_state = 168}, - [3353] = {.lex_state = 183}, - [3354] = {.lex_state = 183}, - [3355] = {.lex_state = 183}, - [3356] = {.lex_state = 183}, - [3357] = {.lex_state = 183}, - [3358] = {.lex_state = 165}, - [3359] = {.lex_state = 183}, - [3360] = {.lex_state = 168}, - [3361] = {.lex_state = 183}, - [3362] = {.lex_state = 168}, - [3363] = {.lex_state = 183}, - [3364] = {.lex_state = 168}, - [3365] = {.lex_state = 183}, - [3366] = {.lex_state = 183}, - [3367] = {.lex_state = 168}, - [3368] = {.lex_state = 181}, - [3369] = {.lex_state = 165}, - [3370] = {.lex_state = 183}, - [3371] = {.lex_state = 183}, - [3372] = {.lex_state = 181}, - [3373] = {.lex_state = 183}, - [3374] = {.lex_state = 183}, - [3375] = {.lex_state = 183}, - [3376] = {.lex_state = 183}, - [3377] = {.lex_state = 183}, - [3378] = {.lex_state = 183}, - [3379] = {.lex_state = 181}, - [3380] = {.lex_state = 168}, - [3381] = {.lex_state = 183}, - [3382] = {.lex_state = 168}, - [3383] = {.lex_state = 183}, - [3384] = {.lex_state = 183}, - [3385] = {.lex_state = 183}, - [3386] = {.lex_state = 181}, - [3387] = {.lex_state = 181}, - [3388] = {.lex_state = 183}, - [3389] = {.lex_state = 183}, - [3390] = {.lex_state = 183}, - [3391] = {.lex_state = 181}, - [3392] = {.lex_state = 183}, - [3393] = {.lex_state = 181}, - [3394] = {.lex_state = 141}, - [3395] = {.lex_state = 183}, - [3396] = {.lex_state = 183}, - [3397] = {.lex_state = 183}, - [3398] = {.lex_state = 183}, - [3399] = {.lex_state = 183}, - [3400] = {.lex_state = 183}, - [3401] = {.lex_state = 183}, - [3402] = {.lex_state = 183}, - [3403] = {.lex_state = 183}, - [3404] = {.lex_state = 183}, - [3405] = {.lex_state = 183}, - [3406] = {.lex_state = 183}, - [3407] = {.lex_state = 183}, - [3408] = {.lex_state = 183}, - [3409] = {.lex_state = 183}, - [3410] = {.lex_state = 183}, - [3411] = {.lex_state = 183}, - [3412] = {.lex_state = 183}, - [3413] = {.lex_state = 183}, - [3414] = {.lex_state = 183}, - [3415] = {.lex_state = 168}, - [3416] = {.lex_state = 168}, - [3417] = {.lex_state = 164}, - [3418] = {.lex_state = 181}, - [3419] = {.lex_state = 183}, - [3420] = {.lex_state = 169}, - [3421] = {.lex_state = 169}, + [3273] = {.lex_state = 197}, + [3274] = {.lex_state = 197}, + [3275] = {.lex_state = 197}, + [3276] = {.lex_state = 197}, + [3277] = {.lex_state = 197}, + [3278] = {.lex_state = 197}, + [3279] = {.lex_state = 197}, + [3280] = {.lex_state = 197}, + [3281] = {.lex_state = 197}, + [3282] = {.lex_state = 197}, + [3283] = {.lex_state = 197}, + [3284] = {.lex_state = 181}, + [3285] = {.lex_state = 197}, + [3286] = {.lex_state = 197}, + [3287] = {.lex_state = 142, .external_lex_state = 1}, + [3288] = {.lex_state = 142, .external_lex_state = 1}, + [3289] = {.lex_state = 142, .external_lex_state = 1}, + [3290] = {.lex_state = 142, .external_lex_state = 1}, + [3291] = {.lex_state = 197}, + [3292] = {.lex_state = 181}, + [3293] = {.lex_state = 142, .external_lex_state = 1}, + [3294] = {.lex_state = 197}, + [3295] = {.lex_state = 196}, + [3296] = {.lex_state = 142, .external_lex_state = 1}, + [3297] = {.lex_state = 181}, + [3298] = {.lex_state = 142, .external_lex_state = 1}, + [3299] = {.lex_state = 142, .external_lex_state = 1}, + [3300] = {.lex_state = 142, .external_lex_state = 1}, + [3301] = {.lex_state = 142, .external_lex_state = 1}, + [3302] = {.lex_state = 152, .external_lex_state = 1}, + [3303] = {.lex_state = 142, .external_lex_state = 1}, + [3304] = {.lex_state = 142, .external_lex_state = 1}, + [3305] = {.lex_state = 142, .external_lex_state = 1}, + [3306] = {.lex_state = 142, .external_lex_state = 1}, + [3307] = {.lex_state = 142, .external_lex_state = 1}, + [3308] = {.lex_state = 142, .external_lex_state = 1}, + [3309] = {.lex_state = 142, .external_lex_state = 1}, + [3310] = {.lex_state = 196}, + [3311] = {.lex_state = 181}, + [3312] = {.lex_state = 142, .external_lex_state = 1}, + [3313] = {.lex_state = 142, .external_lex_state = 1}, + [3314] = {.lex_state = 152, .external_lex_state = 1}, + [3315] = {.lex_state = 142, .external_lex_state = 1}, + [3316] = {.lex_state = 181}, + [3317] = {.lex_state = 184}, + [3318] = {.lex_state = 197}, + [3319] = {.lex_state = 196}, + [3320] = {.lex_state = 184}, + [3321] = {.lex_state = 197}, + [3322] = {.lex_state = 184}, + [3323] = {.lex_state = 196}, + [3324] = {.lex_state = 196}, + [3325] = {.lex_state = 184}, + [3326] = {.lex_state = 184}, + [3327] = {.lex_state = 184}, + [3328] = {.lex_state = 196}, + [3329] = {.lex_state = 196}, + [3330] = {.lex_state = 196}, + [3331] = {.lex_state = 196}, + [3332] = {.lex_state = 196}, + [3333] = {.lex_state = 196}, + [3334] = {.lex_state = 184}, + [3335] = {.lex_state = 197}, + [3336] = {.lex_state = 196}, + [3337] = {.lex_state = 196}, + [3338] = {.lex_state = 196}, + [3339] = {.lex_state = 196}, + [3340] = {.lex_state = 184}, + [3341] = {.lex_state = 196}, + [3342] = {.lex_state = 184}, + [3343] = {.lex_state = 196}, + [3344] = {.lex_state = 196}, + [3345] = {.lex_state = 196}, + [3346] = {.lex_state = 187}, + [3347] = {.lex_state = 184}, + [3348] = {.lex_state = 184}, + [3349] = {.lex_state = 196}, + [3350] = {.lex_state = 196}, + [3351] = {.lex_state = 196}, + [3352] = {.lex_state = 196}, + [3353] = {.lex_state = 184}, + [3354] = {.lex_state = 196}, + [3355] = {.lex_state = 187}, + [3356] = {.lex_state = 180}, + [3357] = {.lex_state = 184}, + [3358] = {.lex_state = 184}, + [3359] = {.lex_state = 184}, + [3360] = {.lex_state = 184}, + [3361] = {.lex_state = 196}, + [3362] = {.lex_state = 196}, + [3363] = {.lex_state = 196}, + [3364] = {.lex_state = 196}, + [3365] = {.lex_state = 196}, + [3366] = {.lex_state = 196}, + [3367] = {.lex_state = 196}, + [3368] = {.lex_state = 196}, + [3369] = {.lex_state = 196}, + [3370] = {.lex_state = 196}, + [3371] = {.lex_state = 184}, + [3372] = {.lex_state = 179}, + [3373] = {.lex_state = 196}, + [3374] = {.lex_state = 196}, + [3375] = {.lex_state = 196}, + [3376] = {.lex_state = 197}, + [3377] = {.lex_state = 196}, + [3378] = {.lex_state = 184}, + [3379] = {.lex_state = 184}, + [3380] = {.lex_state = 196}, + [3381] = {.lex_state = 184}, + [3382] = {.lex_state = 179}, + [3383] = {.lex_state = 196}, + [3384] = {.lex_state = 196}, + [3385] = {.lex_state = 179}, + [3386] = {.lex_state = 196}, + [3387] = {.lex_state = 198}, + [3388] = {.lex_state = 179}, + [3389] = {.lex_state = 196}, + [3390] = {.lex_state = 184}, + [3391] = {.lex_state = 200}, + [3392] = {.lex_state = 196}, + [3393] = {.lex_state = 196}, + [3394] = {.lex_state = 179}, + [3395] = {.lex_state = 197}, + [3396] = {.lex_state = 198}, + [3397] = {.lex_state = 196}, + [3398] = {.lex_state = 196}, + [3399] = {.lex_state = 196}, + [3400] = {.lex_state = 197}, + [3401] = {.lex_state = 196}, + [3402] = {.lex_state = 196}, + [3403] = {.lex_state = 186}, + [3404] = {.lex_state = 184}, + [3405] = {.lex_state = 186}, + [3406] = {.lex_state = 184}, + [3407] = {.lex_state = 196}, + [3408] = {.lex_state = 181}, + [3409] = {.lex_state = 196}, + [3410] = {.lex_state = 184}, + [3411] = {.lex_state = 196}, + [3412] = {.lex_state = 196}, + [3413] = {.lex_state = 179}, + [3414] = {.lex_state = 179}, + [3415] = {.lex_state = 196}, + [3416] = {.lex_state = 197}, + [3417] = {.lex_state = 196}, + [3418] = {.lex_state = 197}, + [3419] = {.lex_state = 196}, + [3420] = {.lex_state = 196}, + [3421] = {.lex_state = 184}, [3422] = {.lex_state = 181}, - [3423] = {.lex_state = 168}, - [3424] = {.lex_state = 183}, - [3425] = {.lex_state = 168}, - [3426] = {.lex_state = 168}, - [3427] = {.lex_state = 181}, - [3428] = {.lex_state = 168}, - [3429] = {.lex_state = 168}, - [3430] = {.lex_state = 168}, - [3431] = {.lex_state = 183}, - [3432] = {.lex_state = 168}, - [3433] = {.lex_state = 163}, - [3434] = {.lex_state = 168}, - [3435] = {.lex_state = 165}, - [3436] = {.lex_state = 183}, - [3437] = {.lex_state = 168}, - [3438] = {.lex_state = 168}, - [3439] = {.lex_state = 168}, - [3440] = {.lex_state = 168}, - [3441] = {.lex_state = 183}, - [3442] = {.lex_state = 164}, - [3443] = {.lex_state = 168}, - [3444] = {.lex_state = 168}, - [3445] = {.lex_state = 168}, - [3446] = {.lex_state = 168}, - [3447] = {.lex_state = 168}, - [3448] = {.lex_state = 165}, - [3449] = {.lex_state = 168}, - [3450] = {.lex_state = 168}, - [3451] = {.lex_state = 181}, - [3452] = {.lex_state = 168}, - [3453] = {.lex_state = 181}, - [3454] = {.lex_state = 168}, - [3455] = {.lex_state = 168}, - [3456] = {.lex_state = 168}, - [3457] = {.lex_state = 183}, - [3458] = {.lex_state = 168}, - [3459] = {.lex_state = 168}, - [3460] = {.lex_state = 180}, - [3461] = {.lex_state = 164}, - [3462] = {.lex_state = 168}, - [3463] = {.lex_state = 168}, - [3464] = {.lex_state = 164}, - [3465] = {.lex_state = 181}, - [3466] = {.lex_state = 168}, - [3467] = {.lex_state = 168}, - [3468] = {.lex_state = 180}, - [3469] = {.lex_state = 168}, - [3470] = {.lex_state = 165}, - [3471] = {.lex_state = 168}, - [3472] = {.lex_state = 168}, - [3473] = {.lex_state = 165}, - [3474] = {.lex_state = 180}, - [3475] = {.lex_state = 180}, - [3476] = {.lex_state = 168}, - [3477] = {.lex_state = 168}, - [3478] = {.lex_state = 181}, - [3479] = {.lex_state = 180}, - [3480] = {.lex_state = 168}, - [3481] = {.lex_state = 168}, - [3482] = {.lex_state = 164}, - [3483] = {.lex_state = 180}, - [3484] = {.lex_state = 168}, - [3485] = {.lex_state = 180}, - [3486] = {.lex_state = 180}, - [3487] = {.lex_state = 180}, - [3488] = {.lex_state = 168}, - [3489] = {.lex_state = 180}, - [3490] = {.lex_state = 180}, - [3491] = {.lex_state = 168}, - [3492] = {.lex_state = 168}, - [3493] = {.lex_state = 181}, - [3494] = {.lex_state = 168}, - [3495] = {.lex_state = 180}, - [3496] = {.lex_state = 180}, - [3497] = {.lex_state = 180}, - [3498] = {.lex_state = 165}, - [3499] = {.lex_state = 180}, - [3500] = {.lex_state = 180}, - [3501] = {.lex_state = 165}, - [3502] = {.lex_state = 181}, - [3503] = {.lex_state = 180}, - [3504] = {.lex_state = 180}, - [3505] = {.lex_state = 180}, - [3506] = {.lex_state = 168}, - [3507] = {.lex_state = 181}, - [3508] = {.lex_state = 180}, - [3509] = {.lex_state = 164}, - [3510] = {.lex_state = 180}, - [3511] = {.lex_state = 181}, - [3512] = {.lex_state = 180}, - [3513] = {.lex_state = 180}, - [3514] = {.lex_state = 164}, - [3515] = {.lex_state = 168}, - [3516] = {.lex_state = 168}, - [3517] = {.lex_state = 168}, - [3518] = {.lex_state = 183}, - [3519] = {.lex_state = 165}, - [3520] = {.lex_state = 165}, - [3521] = {.lex_state = 165}, - [3522] = {.lex_state = 165}, - [3523] = {.lex_state = 165}, - [3524] = {.lex_state = 165}, - [3525] = {.lex_state = 164}, - [3526] = {.lex_state = 165}, - [3527] = {.lex_state = 183}, - [3528] = {.lex_state = 165}, - [3529] = {.lex_state = 165}, - [3530] = {.lex_state = 168}, - [3531] = {.lex_state = 145}, - [3532] = {.lex_state = 183}, - [3533] = {.lex_state = 168}, - [3534] = {.lex_state = 165}, - [3535] = {.lex_state = 168}, - [3536] = {.lex_state = 165}, - [3537] = {.lex_state = 168}, - [3538] = {.lex_state = 168}, - [3539] = {.lex_state = 182}, - [3540] = {.lex_state = 168}, - [3541] = {.lex_state = 168}, - [3542] = {.lex_state = 168}, - [3543] = {.lex_state = 183}, - [3544] = {.lex_state = 165}, - [3545] = {.lex_state = 164}, - [3546] = {.lex_state = 168}, - [3547] = {.lex_state = 168}, - [3548] = {.lex_state = 165}, - [3549] = {.lex_state = 165}, - [3550] = {.lex_state = 183}, - [3551] = {.lex_state = 168}, - [3552] = {.lex_state = 165}, - [3553] = {.lex_state = 168}, - [3554] = {.lex_state = 168}, - [3555] = {.lex_state = 168}, - [3556] = {.lex_state = 183}, - [3557] = {.lex_state = 168}, - [3558] = {.lex_state = 181}, - [3559] = {.lex_state = 183}, - [3560] = {.lex_state = 181}, + [3423] = {.lex_state = 197}, + [3424] = {.lex_state = 197}, + [3425] = {.lex_state = 184}, + [3426] = {.lex_state = 184}, + [3427] = {.lex_state = 199}, + [3428] = {.lex_state = 197}, + [3429] = {.lex_state = 197}, + [3430] = {.lex_state = 184}, + [3431] = {.lex_state = 197}, + [3432] = {.lex_state = 181}, + [3433] = {.lex_state = 197}, + [3434] = {.lex_state = 181}, + [3435] = {.lex_state = 184}, + [3436] = {.lex_state = 197}, + [3437] = {.lex_state = 184}, + [3438] = {.lex_state = 184}, + [3439] = {.lex_state = 184}, + [3440] = {.lex_state = 184}, + [3441] = {.lex_state = 197}, + [3442] = {.lex_state = 184}, + [3443] = {.lex_state = 184}, + [3444] = {.lex_state = 197}, + [3445] = {.lex_state = 197}, + [3446] = {.lex_state = 196}, + [3447] = {.lex_state = 197}, + [3448] = {.lex_state = 197}, + [3449] = {.lex_state = 197}, + [3450] = {.lex_state = 184}, + [3451] = {.lex_state = 197}, + [3452] = {.lex_state = 197}, + [3453] = {.lex_state = 199}, + [3454] = {.lex_state = 184}, + [3455] = {.lex_state = 199}, + [3456] = {.lex_state = 197}, + [3457] = {.lex_state = 199}, + [3458] = {.lex_state = 199}, + [3459] = {.lex_state = 197}, + [3460] = {.lex_state = 197}, + [3461] = {.lex_state = 199}, + [3462] = {.lex_state = 184}, + [3463] = {.lex_state = 199}, + [3464] = {.lex_state = 197}, + [3465] = {.lex_state = 197}, + [3466] = {.lex_state = 197}, + [3467] = {.lex_state = 197}, + [3468] = {.lex_state = 197}, + [3469] = {.lex_state = 197}, + [3470] = {.lex_state = 197}, + [3471] = {.lex_state = 184}, + [3472] = {.lex_state = 197}, + [3473] = {.lex_state = 184}, + [3474] = {.lex_state = 199}, + [3475] = {.lex_state = 197}, + [3476] = {.lex_state = 199}, + [3477] = {.lex_state = 184}, + [3478] = {.lex_state = 197}, + [3479] = {.lex_state = 184}, + [3480] = {.lex_state = 197}, + [3481] = {.lex_state = 197}, + [3482] = {.lex_state = 197}, + [3483] = {.lex_state = 197}, + [3484] = {.lex_state = 197}, + [3485] = {.lex_state = 196}, + [3486] = {.lex_state = 197}, + [3487] = {.lex_state = 197}, + [3488] = {.lex_state = 197}, + [3489] = {.lex_state = 197}, + [3490] = {.lex_state = 197}, + [3491] = {.lex_state = 197}, + [3492] = {.lex_state = 199}, + [3493] = {.lex_state = 197}, + [3494] = {.lex_state = 197}, + [3495] = {.lex_state = 197}, + [3496] = {.lex_state = 197}, + [3497] = {.lex_state = 197}, + [3498] = {.lex_state = 197}, + [3499] = {.lex_state = 197}, + [3500] = {.lex_state = 197}, + [3501] = {.lex_state = 197}, + [3502] = {.lex_state = 197}, + [3503] = {.lex_state = 184}, + [3504] = {.lex_state = 197}, + [3505] = {.lex_state = 197}, + [3506] = {.lex_state = 184}, + [3507] = {.lex_state = 184}, + [3508] = {.lex_state = 184}, + [3509] = {.lex_state = 197}, + [3510] = {.lex_state = 197}, + [3511] = {.lex_state = 196}, + [3512] = {.lex_state = 184}, + [3513] = {.lex_state = 197}, + [3514] = {.lex_state = 197}, + [3515] = {.lex_state = 197}, + [3516] = {.lex_state = 197}, + [3517] = {.lex_state = 184}, + [3518] = {.lex_state = 197}, + [3519] = {.lex_state = 197}, + [3520] = {.lex_state = 197}, + [3521] = {.lex_state = 199}, + [3522] = {.lex_state = 184}, + [3523] = {.lex_state = 197}, + [3524] = {.lex_state = 199}, + [3525] = {.lex_state = 197}, + [3526] = {.lex_state = 184}, + [3527] = {.lex_state = 179}, + [3528] = {.lex_state = 197}, + [3529] = {.lex_state = 184}, + [3530] = {.lex_state = 184}, + [3531] = {.lex_state = 197}, + [3532] = {.lex_state = 184}, + [3533] = {.lex_state = 197}, + [3534] = {.lex_state = 197}, + [3535] = {.lex_state = 197}, + [3536] = {.lex_state = 199}, + [3537] = {.lex_state = 199}, + [3538] = {.lex_state = 180}, + [3539] = {.lex_state = 181}, + [3540] = {.lex_state = 199}, + [3541] = {.lex_state = 184}, + [3542] = {.lex_state = 181}, + [3543] = {.lex_state = 199}, + [3544] = {.lex_state = 199}, + [3545] = {.lex_state = 199}, + [3546] = {.lex_state = 199}, + [3547] = {.lex_state = 199}, + [3548] = {.lex_state = 199}, + [3549] = {.lex_state = 184}, + [3550] = {.lex_state = 184}, + [3551] = {.lex_state = 179}, + [3552] = {.lex_state = 184}, + [3553] = {.lex_state = 179}, + [3554] = {.lex_state = 179}, + [3555] = {.lex_state = 184}, + [3556] = {.lex_state = 184}, + [3557] = {.lex_state = 184}, + [3558] = {.lex_state = 184}, + [3559] = {.lex_state = 184}, + [3560] = {.lex_state = 197}, [3561] = {.lex_state = 181}, - [3562] = {.lex_state = 168}, - [3563] = {.lex_state = 181}, - [3564] = {.lex_state = 165}, - [3565] = {.lex_state = 165}, - [3566] = {.lex_state = 180}, - [3567] = {.lex_state = 183}, - [3568] = {.lex_state = 165}, - [3569] = {.lex_state = 168}, - [3570] = {.lex_state = 168}, - [3571] = {.lex_state = 165}, - [3572] = {.lex_state = 180}, - [3573] = {.lex_state = 165}, - [3574] = {.lex_state = 165}, - [3575] = {.lex_state = 168}, - [3576] = {.lex_state = 180}, - [3577] = {.lex_state = 168}, - [3578] = {.lex_state = 165}, - [3579] = {.lex_state = 168}, - [3580] = {.lex_state = 168}, - [3581] = {.lex_state = 168}, - [3582] = {.lex_state = 165}, - [3583] = {.lex_state = 168}, - [3584] = {.lex_state = 164}, - [3585] = {.lex_state = 165}, - [3586] = {.lex_state = 168}, + [3562] = {.lex_state = 179}, + [3563] = {.lex_state = 179}, + [3564] = {.lex_state = 179}, + [3565] = {.lex_state = 184}, + [3566] = {.lex_state = 179}, + [3567] = {.lex_state = 179}, + [3568] = {.lex_state = 179}, + [3569] = {.lex_state = 197}, + [3570] = {.lex_state = 184}, + [3571] = {.lex_state = 184}, + [3572] = {.lex_state = 184}, + [3573] = {.lex_state = 142, .external_lex_state = 1}, + [3574] = {.lex_state = 184}, + [3575] = {.lex_state = 184}, + [3576] = {.lex_state = 181}, + [3577] = {.lex_state = 184}, + [3578] = {.lex_state = 184}, + [3579] = {.lex_state = 184}, + [3580] = {.lex_state = 181}, + [3581] = {.lex_state = 180}, + [3582] = {.lex_state = 181}, + [3583] = {.lex_state = 180}, + [3584] = {.lex_state = 181}, + [3585] = {.lex_state = 184}, + [3586] = {.lex_state = 180}, [3587] = {.lex_state = 180}, - [3588] = {.lex_state = 165}, - [3589] = {.lex_state = 168}, - [3590] = {.lex_state = 165}, - [3591] = {.lex_state = 183}, - [3592] = {.lex_state = 165}, - [3593] = {.lex_state = 168}, - [3594] = {.lex_state = 165}, - [3595] = {.lex_state = 168}, - [3596] = {.lex_state = 165}, - [3597] = {.lex_state = 180}, - [3598] = {.lex_state = 180}, - [3599] = {.lex_state = 168}, - [3600] = {.lex_state = 165}, - [3601] = {.lex_state = 168}, - [3602] = {.lex_state = 165}, - [3603] = {.lex_state = 168}, - [3604] = {.lex_state = 164}, - [3605] = {.lex_state = 168}, - [3606] = {.lex_state = 165}, - [3607] = {.lex_state = 165}, - [3608] = {.lex_state = 165}, - [3609] = {.lex_state = 168}, - [3610] = {.lex_state = 168}, - [3611] = {.lex_state = 168}, - [3612] = {.lex_state = 168}, - [3613] = {.lex_state = 168}, - [3614] = {.lex_state = 143}, - [3615] = {.lex_state = 165}, - [3616] = {.lex_state = 168}, - [3617] = {.lex_state = 165}, - [3618] = {.lex_state = 165}, - [3619] = {.lex_state = 180}, - [3620] = {.lex_state = 168}, - [3621] = {.lex_state = 165}, - [3622] = {.lex_state = 168}, - [3623] = {.lex_state = 168}, + [3588] = {.lex_state = 180}, + [3589] = {.lex_state = 181}, + [3590] = {.lex_state = 180}, + [3591] = {.lex_state = 184}, + [3592] = {.lex_state = 184}, + [3593] = {.lex_state = 181}, + [3594] = {.lex_state = 180}, + [3595] = {.lex_state = 184}, + [3596] = {.lex_state = 181}, + [3597] = {.lex_state = 184}, + [3598] = {.lex_state = 184}, + [3599] = {.lex_state = 181}, + [3600] = {.lex_state = 181}, + [3601] = {.lex_state = 184}, + [3602] = {.lex_state = 184}, + [3603] = {.lex_state = 181}, + [3604] = {.lex_state = 184}, + [3605] = {.lex_state = 180}, + [3606] = {.lex_state = 184}, + [3607] = {.lex_state = 184}, + [3608] = {.lex_state = 179}, + [3609] = {.lex_state = 180}, + [3610] = {.lex_state = 180}, + [3611] = {.lex_state = 181}, + [3612] = {.lex_state = 184}, + [3613] = {.lex_state = 184}, + [3614] = {.lex_state = 184}, + [3615] = {.lex_state = 184}, + [3616] = {.lex_state = 180}, + [3617] = {.lex_state = 181}, + [3618] = {.lex_state = 184}, + [3619] = {.lex_state = 181}, + [3620] = {.lex_state = 180}, + [3621] = {.lex_state = 184}, + [3622] = {.lex_state = 199}, + [3623] = {.lex_state = 184}, [3624] = {.lex_state = 180}, - [3625] = {.lex_state = 168}, - [3626] = {.lex_state = 168}, - [3627] = {.lex_state = 168}, - [3628] = {.lex_state = 168}, - [3629] = {.lex_state = 165}, - [3630] = {.lex_state = 168}, - [3631] = {.lex_state = 168}, - [3632] = {.lex_state = 165}, - [3633] = {.lex_state = 165}, - [3634] = {.lex_state = 168}, - [3635] = {.lex_state = 168}, - [3636] = {.lex_state = 168}, - [3637] = {.lex_state = 168}, + [3625] = {.lex_state = 181}, + [3626] = {.lex_state = 180}, + [3627] = {.lex_state = 181}, + [3628] = {.lex_state = 180}, + [3629] = {.lex_state = 180}, + [3630] = {.lex_state = 181}, + [3631] = {.lex_state = 184}, + [3632] = {.lex_state = 181}, + [3633] = {.lex_state = 181}, + [3634] = {.lex_state = 181}, + [3635] = {.lex_state = 199}, + [3636] = {.lex_state = 180}, + [3637] = {.lex_state = 184}, [3638] = {.lex_state = 180}, - [3639] = {.lex_state = 168}, - [3640] = {.lex_state = 180}, - [3641] = {.lex_state = 168}, - [3642] = {.lex_state = 168}, - [3643] = {.lex_state = 168}, - [3644] = {.lex_state = 165}, - [3645] = {.lex_state = 168}, - [3646] = {.lex_state = 168}, - [3647] = {.lex_state = 168}, - [3648] = {.lex_state = 168}, - [3649] = {.lex_state = 168}, - [3650] = {.lex_state = 168}, - [3651] = {.lex_state = 180}, - [3652] = {.lex_state = 168}, - [3653] = {.lex_state = 168}, - [3654] = {.lex_state = 168}, - [3655] = {.lex_state = 168}, - [3656] = {.lex_state = 168}, - [3657] = {.lex_state = 183}, - [3658] = {.lex_state = 168}, - [3659] = {.lex_state = 168}, - [3660] = {.lex_state = 183}, - [3661] = {.lex_state = 165}, - [3662] = {.lex_state = 165}, - [3663] = {.lex_state = 168}, - [3664] = {.lex_state = 168}, - [3665] = {.lex_state = 168}, - [3666] = {.lex_state = 168}, - [3667] = {.lex_state = 168}, - [3668] = {.lex_state = 168}, - [3669] = {.lex_state = 168}, - [3670] = {.lex_state = 168}, - [3671] = {.lex_state = 180}, - [3672] = {.lex_state = 168}, - [3673] = {.lex_state = 165}, - [3674] = {.lex_state = 168}, - [3675] = {.lex_state = 168}, - [3676] = {.lex_state = 168}, - [3677] = {.lex_state = 168}, - [3678] = {.lex_state = 168}, - [3679] = {.lex_state = 180}, - [3680] = {.lex_state = 165}, - [3681] = {.lex_state = 165}, - [3682] = {.lex_state = 168}, - [3683] = {.lex_state = 168}, - [3684] = {.lex_state = 165}, - [3685] = {.lex_state = 180}, - [3686] = {.lex_state = 168}, - [3687] = {.lex_state = 168}, - [3688] = {.lex_state = 168}, - [3689] = {.lex_state = 168}, + [3639] = {.lex_state = 181}, + [3640] = {.lex_state = 184}, + [3641] = {.lex_state = 184}, + [3642] = {.lex_state = 184}, + [3643] = {.lex_state = 181}, + [3644] = {.lex_state = 199}, + [3645] = {.lex_state = 181}, + [3646] = {.lex_state = 181}, + [3647] = {.lex_state = 181}, + [3648] = {.lex_state = 181}, + [3649] = {.lex_state = 181}, + [3650] = {.lex_state = 181}, + [3651] = {.lex_state = 181}, + [3652] = {.lex_state = 181}, + [3653] = {.lex_state = 181}, + [3654] = {.lex_state = 184}, + [3655] = {.lex_state = 184}, + [3656] = {.lex_state = 184}, + [3657] = {.lex_state = 184}, + [3658] = {.lex_state = 181}, + [3659] = {.lex_state = 184}, + [3660] = {.lex_state = 184}, + [3661] = {.lex_state = 181}, + [3662] = {.lex_state = 197}, + [3663] = {.lex_state = 184}, + [3664] = {.lex_state = 184}, + [3665] = {.lex_state = 184}, + [3666] = {.lex_state = 184}, + [3667] = {.lex_state = 184}, + [3668] = {.lex_state = 181}, + [3669] = {.lex_state = 184}, + [3670] = {.lex_state = 184}, + [3671] = {.lex_state = 184}, + [3672] = {.lex_state = 181}, + [3673] = {.lex_state = 181}, + [3674] = {.lex_state = 181}, + [3675] = {.lex_state = 184}, + [3676] = {.lex_state = 181}, + [3677] = {.lex_state = 181}, + [3678] = {.lex_state = 184}, + [3679] = {.lex_state = 199}, + [3680] = {.lex_state = 184}, + [3681] = {.lex_state = 184}, + [3682] = {.lex_state = 181}, + [3683] = {.lex_state = 181}, + [3684] = {.lex_state = 181}, + [3685] = {.lex_state = 184}, + [3686] = {.lex_state = 184}, + [3687] = {.lex_state = 199}, + [3688] = {.lex_state = 184}, + [3689] = {.lex_state = 181}, [3690] = {.lex_state = 184}, - [3691] = {.lex_state = 180}, - [3692] = {.lex_state = 168}, - [3693] = {.lex_state = 168}, - [3694] = {.lex_state = 180}, - [3695] = {.lex_state = 168}, - [3696] = {.lex_state = 180}, - [3697] = {.lex_state = 168}, - [3698] = {.lex_state = 165}, - [3699] = {.lex_state = 168}, - [3700] = {.lex_state = 168}, - [3701] = {.lex_state = 143}, - [3702] = {.lex_state = 165}, - [3703] = {.lex_state = 165}, - [3704] = {.lex_state = 168}, - [3705] = {.lex_state = 180}, - [3706] = {.lex_state = 180}, - [3707] = {.lex_state = 168}, - [3708] = {.lex_state = 168}, - [3709] = {.lex_state = 168}, - [3710] = {.lex_state = 168}, - [3711] = {.lex_state = 183}, - [3712] = {.lex_state = 180}, - [3713] = {.lex_state = 165}, - [3714] = {.lex_state = 183}, - [3715] = {.lex_state = 164}, - [3716] = {.lex_state = 180}, - [3717] = {.lex_state = 180}, - [3718] = {.lex_state = 168}, - [3719] = {.lex_state = 183}, - [3720] = {.lex_state = 180}, - [3721] = {.lex_state = 180}, - [3722] = {.lex_state = 165}, - [3723] = {.lex_state = 180}, - [3724] = {.lex_state = 168}, - [3725] = {.lex_state = 168}, - [3726] = {.lex_state = 180}, - [3727] = {.lex_state = 168}, - [3728] = {.lex_state = 168}, - [3729] = {.lex_state = 180}, - [3730] = {.lex_state = 168}, - [3731] = {.lex_state = 180}, - [3732] = {.lex_state = 168}, - [3733] = {.lex_state = 165}, - [3734] = {.lex_state = 182}, - [3735] = {.lex_state = 164}, - [3736] = {.lex_state = 180}, - [3737] = {.lex_state = 180}, - [3738] = {.lex_state = 168}, - [3739] = {.lex_state = 165}, - [3740] = {.lex_state = 180}, - [3741] = {.lex_state = 168}, - [3742] = {.lex_state = 180}, - [3743] = {.lex_state = 168}, - [3744] = {.lex_state = 168}, - [3745] = {.lex_state = 168}, - [3746] = {.lex_state = 165}, - [3747] = {.lex_state = 183}, - [3748] = {.lex_state = 165}, - [3749] = {.lex_state = 180}, - [3750] = {.lex_state = 168}, - [3751] = {.lex_state = 168}, - [3752] = {.lex_state = 168}, - [3753] = {.lex_state = 168}, - [3754] = {.lex_state = 180}, - [3755] = {.lex_state = 168}, - [3756] = {.lex_state = 168}, - [3757] = {.lex_state = 180}, - [3758] = {.lex_state = 168}, - [3759] = {.lex_state = 180}, - [3760] = {.lex_state = 180}, - [3761] = {.lex_state = 182}, - [3762] = {.lex_state = 168}, - [3763] = {.lex_state = 168}, - [3764] = {.lex_state = 168}, - [3765] = {.lex_state = 168}, + [3691] = {.lex_state = 184}, + [3692] = {.lex_state = 184}, + [3693] = {.lex_state = 184}, + [3694] = {.lex_state = 184}, + [3695] = {.lex_state = 184}, + [3696] = {.lex_state = 184}, + [3697] = {.lex_state = 184}, + [3698] = {.lex_state = 184}, + [3699] = {.lex_state = 184}, + [3700] = {.lex_state = 184}, + [3701] = {.lex_state = 184}, + [3702] = {.lex_state = 181}, + [3703] = {.lex_state = 184}, + [3704] = {.lex_state = 184}, + [3705] = {.lex_state = 184}, + [3706] = {.lex_state = 181}, + [3707] = {.lex_state = 190}, + [3708] = {.lex_state = 181}, + [3709] = {.lex_state = 181}, + [3710] = {.lex_state = 197}, + [3711] = {.lex_state = 184}, + [3712] = {.lex_state = 184}, + [3713] = {.lex_state = 184}, + [3714] = {.lex_state = 184}, + [3715] = {.lex_state = 181}, + [3716] = {.lex_state = 184}, + [3717] = {.lex_state = 184}, + [3718] = {.lex_state = 181}, + [3719] = {.lex_state = 184}, + [3720] = {.lex_state = 184}, + [3721] = {.lex_state = 181}, + [3722] = {.lex_state = 184}, + [3723] = {.lex_state = 184}, + [3724] = {.lex_state = 184}, + [3725] = {.lex_state = 184}, + [3726] = {.lex_state = 181}, + [3727] = {.lex_state = 184}, + [3728] = {.lex_state = 184}, + [3729] = {.lex_state = 197}, + [3730] = {.lex_state = 184}, + [3731] = {.lex_state = 184}, + [3732] = {.lex_state = 184}, + [3733] = {.lex_state = 184}, + [3734] = {.lex_state = 199}, + [3735] = {.lex_state = 184}, + [3736] = {.lex_state = 184}, + [3737] = {.lex_state = 184}, + [3738] = {.lex_state = 184}, + [3739] = {.lex_state = 184}, + [3740] = {.lex_state = 184}, + [3741] = {.lex_state = 184}, + [3742] = {.lex_state = 184}, + [3743] = {.lex_state = 199}, + [3744] = {.lex_state = 184}, + [3745] = {.lex_state = 181}, + [3746] = {.lex_state = 184}, + [3747] = {.lex_state = 184}, + [3748] = {.lex_state = 197}, + [3749] = {.lex_state = 181}, + [3750] = {.lex_state = 184}, + [3751] = {.lex_state = 184}, + [3752] = {.lex_state = 184}, + [3753] = {.lex_state = 181}, + [3754] = {.lex_state = 184}, + [3755] = {.lex_state = 184}, + [3756] = {.lex_state = 184}, + [3757] = {.lex_state = 184}, + [3758] = {.lex_state = 184}, + [3759] = {.lex_state = 197}, + [3760] = {.lex_state = 190}, + [3761] = {.lex_state = 181}, + [3762] = {.lex_state = 184}, + [3763] = {.lex_state = 184}, + [3764] = {.lex_state = 184}, + [3765] = {.lex_state = 184}, [3766] = {.lex_state = 180}, - [3767] = {.lex_state = 168}, - [3768] = {.lex_state = 168}, - [3769] = {.lex_state = 165}, - [3770] = {.lex_state = 168}, - [3771] = {.lex_state = 168}, - [3772] = {.lex_state = 165}, - [3773] = {.lex_state = 180}, - [3774] = {.lex_state = 168}, - [3775] = {.lex_state = 168}, - [3776] = {.lex_state = 168}, - [3777] = {.lex_state = 168}, - [3778] = {.lex_state = 168}, - [3779] = {.lex_state = 168}, - [3780] = {.lex_state = 168}, - [3781] = {.lex_state = 168}, - [3782] = {.lex_state = 168}, - [3783] = {.lex_state = 168}, - [3784] = {.lex_state = 168}, - [3785] = {.lex_state = 168}, - [3786] = {.lex_state = 168}, - [3787] = {.lex_state = 168}, - [3788] = {.lex_state = 168}, - [3789] = {.lex_state = 168}, - [3790] = {.lex_state = 168}, - [3791] = {.lex_state = 164}, - [3792] = {.lex_state = 168}, - [3793] = {.lex_state = 168}, - [3794] = {.lex_state = 168}, - [3795] = {.lex_state = 168}, - [3796] = {.lex_state = 168}, - [3797] = {.lex_state = 165}, - [3798] = {.lex_state = 168}, - [3799] = {.lex_state = 168}, + [3767] = {.lex_state = 181}, + [3768] = {.lex_state = 181}, + [3769] = {.lex_state = 184}, + [3770] = {.lex_state = 199}, + [3771] = {.lex_state = 181}, + [3772] = {.lex_state = 184}, + [3773] = {.lex_state = 184}, + [3774] = {.lex_state = 181}, + [3775] = {.lex_state = 184}, + [3776] = {.lex_state = 184}, + [3777] = {.lex_state = 197}, + [3778] = {.lex_state = 184}, + [3779] = {.lex_state = 184}, + [3780] = {.lex_state = 181}, + [3781] = {.lex_state = 184}, + [3782] = {.lex_state = 199}, + [3783] = {.lex_state = 184}, + [3784] = {.lex_state = 184}, + [3785] = {.lex_state = 184}, + [3786] = {.lex_state = 181}, + [3787] = {.lex_state = 184}, + [3788] = {.lex_state = 184}, + [3789] = {.lex_state = 184}, + [3790] = {.lex_state = 184}, + [3791] = {.lex_state = 184}, + [3792] = {.lex_state = 184}, + [3793] = {.lex_state = 184}, + [3794] = {.lex_state = 184}, + [3795] = {.lex_state = 184}, + [3796] = {.lex_state = 184}, + [3797] = {.lex_state = 184}, + [3798] = {.lex_state = 184}, + [3799] = {.lex_state = 181}, [3800] = {.lex_state = 181}, - [3801] = {.lex_state = 168}, - [3802] = {.lex_state = 168}, - [3803] = {.lex_state = 168}, - [3804] = {.lex_state = 164}, - [3805] = {.lex_state = 168}, - [3806] = {.lex_state = 168}, - [3807] = {.lex_state = 168}, - [3808] = {.lex_state = 165}, - [3809] = {.lex_state = 168}, - [3810] = {.lex_state = 168}, - [3811] = {.lex_state = 168}, - [3812] = {.lex_state = 168}, - [3813] = {.lex_state = 168}, - [3814] = {.lex_state = 168}, - [3815] = {.lex_state = 168}, - [3816] = {.lex_state = 168}, - [3817] = {.lex_state = 164}, - [3818] = {.lex_state = 168}, - [3819] = {.lex_state = 168}, - [3820] = {.lex_state = 168}, - [3821] = {.lex_state = 168}, - [3822] = {.lex_state = 168}, - [3823] = {.lex_state = 168}, - [3824] = {.lex_state = 168}, - [3825] = {.lex_state = 165}, - [3826] = {.lex_state = 168}, - [3827] = {.lex_state = 168}, - [3828] = {.lex_state = 181}, - [3829] = {.lex_state = 168}, - [3830] = {.lex_state = 168}, - [3831] = {.lex_state = 165}, - [3832] = {.lex_state = 168}, - [3833] = {.lex_state = 164}, - [3834] = {.lex_state = 168}, - [3835] = {.lex_state = 168}, - [3836] = {.lex_state = 168}, - [3837] = {.lex_state = 168}, - [3838] = {.lex_state = 168}, - [3839] = {.lex_state = 165}, - [3840] = {.lex_state = 168}, - [3841] = {.lex_state = 168}, - [3842] = {.lex_state = 168}, - [3843] = {.lex_state = 181}, - [3844] = {.lex_state = 168}, - [3845] = {.lex_state = 181}, - [3846] = {.lex_state = 165}, - [3847] = {.lex_state = 181}, - [3848] = {.lex_state = 168}, - [3849] = {.lex_state = 168}, - [3850] = {.lex_state = 168}, - [3851] = {.lex_state = 165}, - [3852] = {.lex_state = 168}, - [3853] = {.lex_state = 168}, - [3854] = {.lex_state = 168}, - [3855] = {.lex_state = 165}, - [3856] = {.lex_state = 164}, - [3857] = {.lex_state = 164}, - [3858] = {.lex_state = 165}, - [3859] = {.lex_state = 168}, - [3860] = {.lex_state = 165}, - [3861] = {.lex_state = 168}, - [3862] = {.lex_state = 168}, - [3863] = {.lex_state = 168}, - [3864] = {.lex_state = 168}, - [3865] = {.lex_state = 168}, - [3866] = {.lex_state = 168}, - [3867] = {.lex_state = 164}, - [3868] = {.lex_state = 168}, - [3869] = {.lex_state = 168}, - [3870] = {.lex_state = 168}, - [3871] = {.lex_state = 168}, - [3872] = {.lex_state = 168}, - [3873] = {.lex_state = 165}, - [3874] = {.lex_state = 164}, - [3875] = {.lex_state = 164}, - [3876] = {.lex_state = 168}, - [3877] = {.lex_state = 168}, - [3878] = {.lex_state = 168}, - [3879] = {.lex_state = 165}, - [3880] = {.lex_state = 168}, - [3881] = {.lex_state = 165}, - [3882] = {.lex_state = 168}, - [3883] = {.lex_state = 168}, + [3801] = {.lex_state = 181}, + [3802] = {.lex_state = 184}, + [3803] = {.lex_state = 184}, + [3804] = {.lex_state = 184}, + [3805] = {.lex_state = 200}, + [3806] = {.lex_state = 181}, + [3807] = {.lex_state = 184}, + [3808] = {.lex_state = 184}, + [3809] = {.lex_state = 184}, + [3810] = {.lex_state = 184}, + [3811] = {.lex_state = 184}, + [3812] = {.lex_state = 184}, + [3813] = {.lex_state = 184}, + [3814] = {.lex_state = 184}, + [3815] = {.lex_state = 184}, + [3816] = {.lex_state = 184}, + [3817] = {.lex_state = 184}, + [3818] = {.lex_state = 184}, + [3819] = {.lex_state = 184}, + [3820] = {.lex_state = 184}, + [3821] = {.lex_state = 184}, + [3822] = {.lex_state = 181}, + [3823] = {.lex_state = 184}, + [3824] = {.lex_state = 184}, + [3825] = {.lex_state = 184}, + [3826] = {.lex_state = 199}, + [3827] = {.lex_state = 184}, + [3828] = {.lex_state = 184}, + [3829] = {.lex_state = 184}, + [3830] = {.lex_state = 184}, + [3831] = {.lex_state = 184}, + [3832] = {.lex_state = 184}, + [3833] = {.lex_state = 179}, + [3834] = {.lex_state = 184}, + [3835] = {.lex_state = 179}, + [3836] = {.lex_state = 184}, + [3837] = {.lex_state = 181}, + [3838] = {.lex_state = 181}, + [3839] = {.lex_state = 181}, + [3840] = {.lex_state = 184}, + [3841] = {.lex_state = 184}, + [3842] = {.lex_state = 179}, + [3843] = {.lex_state = 197}, + [3844] = {.lex_state = 184}, + [3845] = {.lex_state = 184}, + [3846] = {.lex_state = 181}, + [3847] = {.lex_state = 184}, + [3848] = {.lex_state = 184}, + [3849] = {.lex_state = 184}, + [3850] = {.lex_state = 181}, + [3851] = {.lex_state = 184}, + [3852] = {.lex_state = 184}, + [3853] = {.lex_state = 181}, + [3854] = {.lex_state = 184}, + [3855] = {.lex_state = 184}, + [3856] = {.lex_state = 179}, + [3857] = {.lex_state = 184}, + [3858] = {.lex_state = 181}, + [3859] = {.lex_state = 184}, + [3860] = {.lex_state = 184}, + [3861] = {.lex_state = 184}, + [3862] = {.lex_state = 184}, + [3863] = {.lex_state = 184}, + [3864] = {.lex_state = 184}, + [3865] = {.lex_state = 181}, + [3866] = {.lex_state = 199}, + [3867] = {.lex_state = 184}, + [3868] = {.lex_state = 184}, + [3869] = {.lex_state = 184}, + [3870] = {.lex_state = 184}, + [3871] = {.lex_state = 184}, + [3872] = {.lex_state = 184}, + [3873] = {.lex_state = 184}, + [3874] = {.lex_state = 184}, + [3875] = {.lex_state = 184}, + [3876] = {.lex_state = 184}, + [3877] = {.lex_state = 184}, + [3878] = {.lex_state = 184}, + [3879] = {.lex_state = 184}, + [3880] = {.lex_state = 184}, + [3881] = {.lex_state = 184}, + [3882] = {.lex_state = 184}, + [3883] = {.lex_state = 184}, [3884] = {.lex_state = 181}, - [3885] = {.lex_state = 164}, - [3886] = {.lex_state = 165}, - [3887] = {.lex_state = 168}, - [3888] = {.lex_state = 165}, - [3889] = {.lex_state = 168}, - [3890] = {.lex_state = 168}, - [3891] = {.lex_state = 168}, - [3892] = {.lex_state = 165}, - [3893] = {.lex_state = 168}, - [3894] = {.lex_state = 168}, - [3895] = {.lex_state = 168}, - [3896] = {.lex_state = 168}, - [3897] = {.lex_state = 168}, - [3898] = {.lex_state = 168}, - [3899] = {.lex_state = 165}, - [3900] = {.lex_state = 165}, - [3901] = {.lex_state = 165}, - [3902] = {.lex_state = 168}, - [3903] = {.lex_state = 168}, - [3904] = {.lex_state = 168}, - [3905] = {.lex_state = 168}, - [3906] = {.lex_state = 168}, - [3907] = {.lex_state = 165}, - [3908] = {.lex_state = 168}, - [3909] = {.lex_state = 168}, - [3910] = {.lex_state = 168}, - [3911] = {.lex_state = 165}, - [3912] = {.lex_state = 168}, - [3913] = {.lex_state = 168}, - [3914] = {.lex_state = 168}, - [3915] = {.lex_state = 168}, - [3916] = {.lex_state = 164}, - [3917] = {.lex_state = 168}, - [3918] = {.lex_state = 168}, - [3919] = {.lex_state = 165}, - [3920] = {.lex_state = 165}, - [3921] = {.lex_state = 182}, - [3922] = {.lex_state = 165}, - [3923] = {.lex_state = 168}, - [3924] = {.lex_state = 165}, - [3925] = {.lex_state = 168}, - [3926] = {.lex_state = 168}, - [3927] = {.lex_state = 168}, - [3928] = {.lex_state = 164}, - [3929] = {.lex_state = 168}, - [3930] = {.lex_state = 168}, - [3931] = {.lex_state = 165}, - [3932] = {.lex_state = 168}, - [3933] = {.lex_state = 164}, - [3934] = {.lex_state = 168}, - [3935] = {.lex_state = 168}, - [3936] = {.lex_state = 181}, - [3937] = {.lex_state = 181}, - [3938] = {.lex_state = 181}, - [3939] = {.lex_state = 168}, - [3940] = {.lex_state = 164}, - [3941] = {.lex_state = 165}, - [3942] = {.lex_state = 168}, - [3943] = {.lex_state = 168}, - [3944] = {.lex_state = 168}, - [3945] = {.lex_state = 168}, - [3946] = {.lex_state = 168}, - [3947] = {.lex_state = 168}, - [3948] = {.lex_state = 168}, - [3949] = {.lex_state = 168}, - [3950] = {.lex_state = 168}, + [3885] = {.lex_state = 184}, + [3886] = {.lex_state = 184}, + [3887] = {.lex_state = 181}, + [3888] = {.lex_state = 184}, + [3889] = {.lex_state = 181}, + [3890] = {.lex_state = 181}, + [3891] = {.lex_state = 184}, + [3892] = {.lex_state = 181}, + [3893] = {.lex_state = 184}, + [3894] = {.lex_state = 184}, + [3895] = {.lex_state = 184}, + [3896] = {.lex_state = 184}, + [3897] = {.lex_state = 181}, + [3898] = {.lex_state = 184}, + [3899] = {.lex_state = 184}, + [3900] = {.lex_state = 184}, + [3901] = {.lex_state = 184}, + [3902] = {.lex_state = 184}, + [3903] = {.lex_state = 184}, + [3904] = {.lex_state = 184}, + [3905] = {.lex_state = 184}, + [3906] = {.lex_state = 184}, + [3907] = {.lex_state = 184}, + [3908] = {.lex_state = 179}, + [3909] = {.lex_state = 184}, + [3910] = {.lex_state = 184}, + [3911] = {.lex_state = 184}, + [3912] = {.lex_state = 184}, + [3913] = {.lex_state = 184}, + [3914] = {.lex_state = 184}, + [3915] = {.lex_state = 184}, + [3916] = {.lex_state = 184}, + [3917] = {.lex_state = 184}, + [3918] = {.lex_state = 184}, + [3919] = {.lex_state = 184}, + [3920] = {.lex_state = 184}, + [3921] = {.lex_state = 184}, + [3922] = {.lex_state = 197}, + [3923] = {.lex_state = 180}, + [3924] = {.lex_state = 184}, + [3925] = {.lex_state = 199}, + [3926] = {.lex_state = 184}, + [3927] = {.lex_state = 184}, + [3928] = {.lex_state = 181}, + [3929] = {.lex_state = 181}, + [3930] = {.lex_state = 184}, + [3931] = {.lex_state = 184}, + [3932] = {.lex_state = 184}, + [3933] = {.lex_state = 184}, + [3934] = {.lex_state = 184}, + [3935] = {.lex_state = 184}, + [3936] = {.lex_state = 184}, + [3937] = {.lex_state = 179}, + [3938] = {.lex_state = 179}, + [3939] = {.lex_state = 184}, + [3940] = {.lex_state = 181}, + [3941] = {.lex_state = 184}, + [3942] = {.lex_state = 184}, + [3943] = {.lex_state = 184}, + [3944] = {.lex_state = 197}, + [3945] = {.lex_state = 184}, + [3946] = {.lex_state = 184}, + [3947] = {.lex_state = 181}, + [3948] = {.lex_state = 184}, + [3949] = {.lex_state = 184}, + [3950] = {.lex_state = 184}, [3951] = {.lex_state = 181}, - [3952] = {.lex_state = 168}, - [3953] = {.lex_state = 168}, - [3954] = {.lex_state = 168}, - [3955] = {.lex_state = 165}, - [3956] = {.lex_state = 168}, - [3957] = {.lex_state = 168}, - [3958] = {.lex_state = 168}, - [3959] = {.lex_state = 168}, - [3960] = {.lex_state = 168}, - [3961] = {.lex_state = 168}, - [3962] = {.lex_state = 181}, - [3963] = {.lex_state = 183}, - [3964] = {.lex_state = 165}, - [3965] = {.lex_state = 165}, - [3966] = {.lex_state = 165}, - [3967] = {.lex_state = 165}, - [3968] = {.lex_state = 183}, - [3969] = {.lex_state = 183}, - [3970] = {.lex_state = 164}, - [3971] = {.lex_state = 165}, - [3972] = {.lex_state = 183}, - [3973] = {.lex_state = 165}, - [3974] = {.lex_state = 165}, - [3975] = {.lex_state = 165}, - [3976] = {.lex_state = 165}, - [3977] = {.lex_state = 183}, - [3978] = {.lex_state = 181}, - [3979] = {.lex_state = 181}, - [3980] = {.lex_state = 165}, - [3981] = {.lex_state = 181}, - [3982] = {.lex_state = 183}, - [3983] = {.lex_state = 183}, - [3984] = {.lex_state = 183}, - [3985] = {.lex_state = 181}, - [3986] = {.lex_state = 165}, - [3987] = {.lex_state = 164}, + [3952] = {.lex_state = 184}, + [3953] = {.lex_state = 184}, + [3954] = {.lex_state = 184}, + [3955] = {.lex_state = 184}, + [3956] = {.lex_state = 184}, + [3957] = {.lex_state = 184}, + [3958] = {.lex_state = 181}, + [3959] = {.lex_state = 184}, + [3960] = {.lex_state = 184}, + [3961] = {.lex_state = 179}, + [3962] = {.lex_state = 184}, + [3963] = {.lex_state = 184}, + [3964] = {.lex_state = 184}, + [3965] = {.lex_state = 184}, + [3966] = {.lex_state = 184}, + [3967] = {.lex_state = 179}, + [3968] = {.lex_state = 184}, + [3969] = {.lex_state = 197}, + [3970] = {.lex_state = 184}, + [3971] = {.lex_state = 184}, + [3972] = {.lex_state = 181}, + [3973] = {.lex_state = 184}, + [3974] = {.lex_state = 184}, + [3975] = {.lex_state = 184}, + [3976] = {.lex_state = 184}, + [3977] = {.lex_state = 179}, + [3978] = {.lex_state = 184}, + [3979] = {.lex_state = 184}, + [3980] = {.lex_state = 184}, + [3981] = {.lex_state = 184}, + [3982] = {.lex_state = 184}, + [3983] = {.lex_state = 184}, + [3984] = {.lex_state = 184}, + [3985] = {.lex_state = 184}, + [3986] = {.lex_state = 184}, + [3987] = {.lex_state = 184}, [3988] = {.lex_state = 181}, [3989] = {.lex_state = 181}, - [3990] = {.lex_state = 181}, - [3991] = {.lex_state = 165}, - [3992] = {.lex_state = 183}, - [3993] = {.lex_state = 165}, - [3994] = {.lex_state = 165}, - [3995] = {.lex_state = 183}, - [3996] = {.lex_state = 165}, - [3997] = {.lex_state = 165}, - [3998] = {.lex_state = 183}, - [3999] = {.lex_state = 165}, - [4000] = {.lex_state = 183}, - [4001] = {.lex_state = 165}, - [4002] = {.lex_state = 165}, - [4003] = {.lex_state = 165}, - [4004] = {.lex_state = 165}, - [4005] = {.lex_state = 165}, - [4006] = {.lex_state = 182}, - [4007] = {.lex_state = 182}, - [4008] = {.lex_state = 183}, - [4009] = {.lex_state = 165}, - [4010] = {.lex_state = 182}, - [4011] = {.lex_state = 164}, - [4012] = {.lex_state = 165}, - [4013] = {.lex_state = 164}, - [4014] = {.lex_state = 183}, - [4015] = {.lex_state = 182}, - [4016] = {.lex_state = 183}, - [4017] = {.lex_state = 183}, - [4018] = {.lex_state = 165}, - [4019] = {.lex_state = 186}, - [4020] = {.lex_state = 164}, - [4021] = {.lex_state = 165}, - [4022] = {.lex_state = 165}, - [4023] = {.lex_state = 164}, - [4024] = {.lex_state = 165}, - [4025] = {.lex_state = 182}, - [4026] = {.lex_state = 165}, - [4027] = {.lex_state = 165}, - [4028] = {.lex_state = 165}, - [4029] = {.lex_state = 183}, - [4030] = {.lex_state = 182}, - [4031] = {.lex_state = 182}, - [4032] = {.lex_state = 182}, - [4033] = {.lex_state = 182}, - [4034] = {.lex_state = 182}, - [4035] = {.lex_state = 165}, - [4036] = {.lex_state = 165}, - [4037] = {.lex_state = 165}, - [4038] = {.lex_state = 165}, - [4039] = {.lex_state = 183}, - [4040] = {.lex_state = 183}, - [4041] = {.lex_state = 182}, - [4042] = {.lex_state = 165}, - [4043] = {.lex_state = 165}, - [4044] = {.lex_state = 165}, - [4045] = {.lex_state = 165}, - [4046] = {.lex_state = 164}, - [4047] = {.lex_state = 165}, - [4048] = {.lex_state = 164}, - [4049] = {.lex_state = 165}, - [4050] = {.lex_state = 186}, - [4051] = {.lex_state = 165}, - [4052] = {.lex_state = 165}, - [4053] = {.lex_state = 165}, - [4054] = {.lex_state = 182}, - [4055] = {.lex_state = 183}, - [4056] = {.lex_state = 182}, - [4057] = {.lex_state = 165}, - [4058] = {.lex_state = 165}, - [4059] = {.lex_state = 165}, - [4060] = {.lex_state = 165}, - [4061] = {.lex_state = 165}, - [4062] = {.lex_state = 183}, - [4063] = {.lex_state = 182}, - [4064] = {.lex_state = 164}, - [4065] = {.lex_state = 185}, - [4066] = {.lex_state = 185}, - [4067] = {.lex_state = 164}, - [4068] = {.lex_state = 165}, - [4069] = {.lex_state = 164}, - [4070] = {.lex_state = 164}, - [4071] = {.lex_state = 165}, - [4072] = {.lex_state = 164}, - [4073] = {.lex_state = 165}, - [4074] = {.lex_state = 185}, - [4075] = {.lex_state = 165}, - [4076] = {.lex_state = 164}, - [4077] = {.lex_state = 165}, - [4078] = {.lex_state = 165}, - [4079] = {.lex_state = 185}, - [4080] = {.lex_state = 165}, - [4081] = {.lex_state = 164}, - [4082] = {.lex_state = 164}, - [4083] = {.lex_state = 182}, - [4084] = {.lex_state = 185}, - [4085] = {.lex_state = 165}, - [4086] = {.lex_state = 185}, - [4087] = {.lex_state = 165}, - [4088] = {.lex_state = 164}, - [4089] = {.lex_state = 185}, - [4090] = {.lex_state = 164}, - [4091] = {.lex_state = 165}, - [4092] = {.lex_state = 164}, - [4093] = {.lex_state = 185}, - [4094] = {.lex_state = 165}, - [4095] = {.lex_state = 185}, - [4096] = {.lex_state = 165}, - [4097] = {.lex_state = 164}, - [4098] = {.lex_state = 164}, - [4099] = {.lex_state = 164}, - [4100] = {.lex_state = 165}, - [4101] = {.lex_state = 165}, - [4102] = {.lex_state = 164}, - [4103] = {.lex_state = 164}, - [4104] = {.lex_state = 165}, - [4105] = {.lex_state = 183}, - [4106] = {.lex_state = 182}, - [4107] = {.lex_state = 182}, - [4108] = {.lex_state = 182}, - [4109] = {.lex_state = 183}, - [4110] = {.lex_state = 180}, - [4111] = {.lex_state = 182}, - [4112] = {.lex_state = 182}, - [4113] = {.lex_state = 183}, - [4114] = {.lex_state = 183}, - [4115] = {.lex_state = 183}, - [4116] = {.lex_state = 182}, - [4117] = {.lex_state = 182}, - [4118] = {.lex_state = 182}, - [4119] = {.lex_state = 183}, - [4120] = {.lex_state = 183}, - [4121] = {.lex_state = 183}, - [4122] = {.lex_state = 183}, - [4123] = {.lex_state = 182}, - [4124] = {.lex_state = 183}, - [4125] = {.lex_state = 182}, - [4126] = {.lex_state = 183}, - [4127] = {.lex_state = 183}, - [4128] = {.lex_state = 182}, - [4129] = {.lex_state = 182}, - [4130] = {.lex_state = 182}, - [4131] = {.lex_state = 165}, - [4132] = {.lex_state = 182}, - [4133] = {.lex_state = 165}, - [4134] = {.lex_state = 182}, - [4135] = {.lex_state = 165}, - [4136] = {.lex_state = 165}, - [4137] = {.lex_state = 182}, - [4138] = {.lex_state = 165}, - [4139] = {.lex_state = 165}, - [4140] = {.lex_state = 165}, - [4141] = {.lex_state = 182}, - [4142] = {.lex_state = 181}, - [4143] = {.lex_state = 182}, - [4144] = {.lex_state = 165}, - [4145] = {.lex_state = 165}, - [4146] = {.lex_state = 185}, - [4147] = {.lex_state = 182}, - [4148] = {.lex_state = 182}, - [4149] = {.lex_state = 165}, - [4150] = {.lex_state = 182}, - [4151] = {.lex_state = 182}, - [4152] = {.lex_state = 165}, - [4153] = {.lex_state = 182}, - [4154] = {.lex_state = 185}, - [4155] = {.lex_state = 183}, - [4156] = {.lex_state = 170}, - [4157] = {.lex_state = 183}, - [4158] = {.lex_state = 181}, - [4159] = {.lex_state = 163}, - [4160] = {.lex_state = 169}, - [4161] = {.lex_state = 182}, - [4162] = {.lex_state = 181}, - [4163] = {.lex_state = 181}, - [4164] = {.lex_state = 183}, - [4165] = {.lex_state = 183}, - [4166] = {.lex_state = 182}, - [4167] = {.lex_state = 169}, - [4168] = {.lex_state = 163}, - [4169] = {.lex_state = 163}, - [4170] = {.lex_state = 185}, - [4171] = {.lex_state = 163}, - [4172] = {.lex_state = 163}, - [4173] = {.lex_state = 170}, - [4174] = {.lex_state = 140}, - [4175] = {.lex_state = 183}, - [4176] = {.lex_state = 182}, - [4177] = {.lex_state = 183}, - [4178] = {.lex_state = 140}, - [4179] = {.lex_state = 182}, - [4180] = {.lex_state = 183}, - [4181] = {.lex_state = 133}, - [4182] = {.lex_state = 164}, - [4183] = {.lex_state = 182}, - [4184] = {.lex_state = 182}, - [4185] = {.lex_state = 164}, - [4186] = {.lex_state = 165}, - [4187] = {.lex_state = 165}, - [4188] = {.lex_state = 182}, - [4189] = {.lex_state = 165}, - [4190] = {.lex_state = 133}, - [4191] = {.lex_state = 164}, - [4192] = {.lex_state = 79}, - [4193] = {.lex_state = 140}, - [4194] = {.lex_state = 165}, - [4195] = {.lex_state = 183}, - [4196] = {.lex_state = 165}, - [4197] = {.lex_state = 182}, - [4198] = {.lex_state = 140}, - [4199] = {.lex_state = 182}, - [4200] = {.lex_state = 133}, - [4201] = {.lex_state = 133}, - [4202] = {.lex_state = 182}, - [4203] = {.lex_state = 182}, - [4204] = {.lex_state = 182}, - [4205] = {.lex_state = 182}, - [4206] = {.lex_state = 182}, - [4207] = {.lex_state = 182}, - [4208] = {.lex_state = 163}, - [4209] = {.lex_state = 182}, - [4210] = {.lex_state = 182}, - [4211] = {.lex_state = 182}, - [4212] = {.lex_state = 182}, - [4213] = {.lex_state = 133}, - [4214] = {.lex_state = 163}, - [4215] = {.lex_state = 182}, - [4216] = {.lex_state = 169}, - [4217] = {.lex_state = 169}, - [4218] = {.lex_state = 163}, - [4219] = {.lex_state = 182}, - [4220] = {.lex_state = 182}, - [4221] = {.lex_state = 133}, - [4222] = {.lex_state = 163}, - [4223] = {.lex_state = 163}, - [4224] = {.lex_state = 182}, - [4225] = {.lex_state = 182}, - [4226] = {.lex_state = 182}, - [4227] = {.lex_state = 182}, - [4228] = {.lex_state = 182}, - [4229] = {.lex_state = 182}, - [4230] = {.lex_state = 182}, - [4231] = {.lex_state = 140}, - [4232] = {.lex_state = 182}, - [4233] = {.lex_state = 133}, - [4234] = {.lex_state = 182}, - [4235] = {.lex_state = 182}, - [4236] = {.lex_state = 182}, - [4237] = {.lex_state = 140}, - [4238] = {.lex_state = 163}, - [4239] = {.lex_state = 163}, - [4240] = {.lex_state = 133}, - [4241] = {.lex_state = 182}, - [4242] = {.lex_state = 163}, - [4243] = {.lex_state = 133}, - [4244] = {.lex_state = 133}, - [4245] = {.lex_state = 133}, - [4246] = {.lex_state = 133}, - [4247] = {.lex_state = 133}, - [4248] = {.lex_state = 133}, - [4249] = {.lex_state = 133}, - [4250] = {.lex_state = 140}, - [4251] = {.lex_state = 133}, - [4252] = {.lex_state = 182}, - [4253] = {.lex_state = 183}, - [4254] = {.lex_state = 133}, - [4255] = {.lex_state = 133}, - [4256] = {.lex_state = 182}, - [4257] = {.lex_state = 163}, - [4258] = {.lex_state = 163}, - [4259] = {.lex_state = 183}, - [4260] = {.lex_state = 163}, - [4261] = {.lex_state = 133}, - [4262] = {.lex_state = 140}, - [4263] = {.lex_state = 182}, - [4264] = {.lex_state = 182}, - [4265] = {.lex_state = 133}, - [4266] = {.lex_state = 163}, - [4267] = {.lex_state = 140}, - [4268] = {.lex_state = 140}, - [4269] = {.lex_state = 133}, - [4270] = {.lex_state = 140}, - [4271] = {.lex_state = 182}, - [4272] = {.lex_state = 182}, - [4273] = {.lex_state = 182}, - [4274] = {.lex_state = 182}, - [4275] = {.lex_state = 140}, - [4276] = {.lex_state = 133}, - [4277] = {.lex_state = 182}, - [4278] = {.lex_state = 140}, - [4279] = {.lex_state = 133}, - [4280] = {.lex_state = 133}, - [4281] = {.lex_state = 182}, - [4282] = {.lex_state = 140}, - [4283] = {.lex_state = 163}, - [4284] = {.lex_state = 183}, - [4285] = {.lex_state = 163}, - [4286] = {.lex_state = 163}, - [4287] = {.lex_state = 140}, - [4288] = {.lex_state = 163}, - [4289] = {.lex_state = 182}, - [4290] = {.lex_state = 163}, - [4291] = {.lex_state = 133}, - [4292] = {.lex_state = 163}, - [4293] = {.lex_state = 140}, - [4294] = {.lex_state = 140}, - [4295] = {.lex_state = 182}, - [4296] = {.lex_state = 140}, - [4297] = {.lex_state = 140}, - [4298] = {.lex_state = 182}, - [4299] = {.lex_state = 182}, - [4300] = {.lex_state = 140}, - [4301] = {.lex_state = 163}, - [4302] = {.lex_state = 133}, - [4303] = {.lex_state = 133}, - [4304] = {.lex_state = 163}, - [4305] = {.lex_state = 165}, - [4306] = {.lex_state = 163}, - [4307] = {.lex_state = 163}, - [4308] = {.lex_state = 182}, - [4309] = {.lex_state = 163}, - [4310] = {.lex_state = 163}, - [4311] = {.lex_state = 182}, - [4312] = {.lex_state = 182}, - [4313] = {.lex_state = 133}, - [4314] = {.lex_state = 133}, - [4315] = {.lex_state = 182}, - [4316] = {.lex_state = 140}, - [4317] = {.lex_state = 182}, - [4318] = {.lex_state = 140}, - [4319] = {.lex_state = 133}, - [4320] = {.lex_state = 182}, - [4321] = {.lex_state = 133}, - [4322] = {.lex_state = 133}, - [4323] = {.lex_state = 163}, - [4324] = {.lex_state = 163}, - [4325] = {.lex_state = 182}, - [4326] = {.lex_state = 182}, - [4327] = {.lex_state = 163}, - [4328] = {.lex_state = 182}, - [4329] = {.lex_state = 163}, - [4330] = {.lex_state = 182}, - [4331] = {.lex_state = 182}, - [4332] = {.lex_state = 182}, - [4333] = {.lex_state = 182}, - [4334] = {.lex_state = 133}, - [4335] = {.lex_state = 133}, - [4336] = {.lex_state = 163}, - [4337] = {.lex_state = 163}, - [4338] = {.lex_state = 182}, - [4339] = {.lex_state = 182}, - [4340] = {.lex_state = 182}, - [4341] = {.lex_state = 182}, - [4342] = {.lex_state = 163}, - [4343] = {.lex_state = 182}, - [4344] = {.lex_state = 182}, - [4345] = {.lex_state = 133}, - [4346] = {.lex_state = 163}, - [4347] = {.lex_state = 163}, - [4348] = {.lex_state = 163}, - [4349] = {.lex_state = 182}, - [4350] = {.lex_state = 163}, - [4351] = {.lex_state = 163}, - [4352] = {.lex_state = 163}, - [4353] = {.lex_state = 182}, - [4354] = {.lex_state = 182}, - [4355] = {.lex_state = 140}, - [4356] = {.lex_state = 133}, - [4357] = {.lex_state = 152}, - [4358] = {.lex_state = 79}, - [4359] = {.lex_state = 152}, - [4360] = {.lex_state = 79}, - [4361] = {.lex_state = 152}, - [4362] = {.lex_state = 152}, - [4363] = {.lex_state = 152}, - [4364] = {.lex_state = 152}, - [4365] = {.lex_state = 79}, - [4366] = {.lex_state = 152}, - [4367] = {.lex_state = 79}, - [4368] = {.lex_state = 152}, - [4369] = {.lex_state = 152}, - [4370] = {.lex_state = 152}, - [4371] = {.lex_state = 79}, - [4372] = {.lex_state = 152}, - [4373] = {.lex_state = 152}, - [4374] = {.lex_state = 152}, - [4375] = {.lex_state = 79}, - [4376] = {.lex_state = 152}, - [4377] = {.lex_state = 79}, - [4378] = {.lex_state = 152}, - [4379] = {.lex_state = 152}, - [4380] = {.lex_state = 152}, - [4381] = {.lex_state = 152}, - [4382] = {.lex_state = 79}, - [4383] = {.lex_state = 183}, - [4384] = {.lex_state = 79}, - [4385] = {.lex_state = 152}, - [4386] = {.lex_state = 152}, - [4387] = {.lex_state = 152}, - [4388] = {.lex_state = 183}, - [4389] = {.lex_state = 152}, - [4390] = {.lex_state = 152}, - [4391] = {.lex_state = 152}, - [4392] = {.lex_state = 152}, - [4393] = {.lex_state = 79}, - [4394] = {.lex_state = 79}, - [4395] = {.lex_state = 152}, - [4396] = {.lex_state = 152}, - [4397] = {.lex_state = 152}, - [4398] = {.lex_state = 152}, - [4399] = {.lex_state = 152}, - [4400] = {.lex_state = 152}, - [4401] = {.lex_state = 152}, - [4402] = {.lex_state = 152}, - [4403] = {.lex_state = 152}, - [4404] = {.lex_state = 152}, - [4405] = {.lex_state = 152}, - [4406] = {.lex_state = 152}, - [4407] = {.lex_state = 152}, - [4408] = {.lex_state = 152}, - [4409] = {.lex_state = 79}, - [4410] = {.lex_state = 152}, - [4411] = {.lex_state = 79}, - [4412] = {.lex_state = 152}, - [4413] = {.lex_state = 79}, - [4414] = {.lex_state = 152}, - [4415] = {.lex_state = 152}, - [4416] = {.lex_state = 152}, - [4417] = {.lex_state = 79}, - [4418] = {.lex_state = 152}, - [4419] = {.lex_state = 152}, - [4420] = {.lex_state = 79}, - [4421] = {.lex_state = 181}, - [4422] = {.lex_state = 152}, - [4423] = {.lex_state = 79}, - [4424] = {.lex_state = 79}, - [4425] = {.lex_state = 79}, - [4426] = {.lex_state = 140}, - [4427] = {.lex_state = 79}, - [4428] = {.lex_state = 152}, - [4429] = {.lex_state = 79}, - [4430] = {.lex_state = 79}, - [4431] = {.lex_state = 165}, - [4432] = {.lex_state = 79}, - [4433] = {.lex_state = 79}, - [4434] = {.lex_state = 152}, - [4435] = {.lex_state = 152}, - [4436] = {.lex_state = 183}, - [4437] = {.lex_state = 152}, - [4438] = {.lex_state = 79}, - [4439] = {.lex_state = 79}, - [4440] = {.lex_state = 152}, - [4441] = {.lex_state = 152}, - [4442] = {.lex_state = 140}, - [4443] = {.lex_state = 152}, - [4444] = {.lex_state = 79}, - [4445] = {.lex_state = 79}, - [4446] = {.lex_state = 181}, - [4447] = {.lex_state = 152}, - [4448] = {.lex_state = 152}, - [4449] = {.lex_state = 152}, - [4450] = {.lex_state = 152}, - [4451] = {.lex_state = 152}, - [4452] = {.lex_state = 164}, - [4453] = {.lex_state = 152}, - [4454] = {.lex_state = 152}, - [4455] = {.lex_state = 152}, - [4456] = {.lex_state = 152}, - [4457] = {.lex_state = 152}, - [4458] = {.lex_state = 152}, - [4459] = {.lex_state = 152}, - [4460] = {.lex_state = 152}, - [4461] = {.lex_state = 164}, - [4462] = {.lex_state = 152}, - [4463] = {.lex_state = 152}, - [4464] = {.lex_state = 152}, - [4465] = {.lex_state = 152}, - [4466] = {.lex_state = 152}, - [4467] = {.lex_state = 152}, - [4468] = {.lex_state = 165}, - [4469] = {.lex_state = 152}, - [4470] = {.lex_state = 182}, - [4471] = {.lex_state = 152}, - [4472] = {.lex_state = 164}, - [4473] = {.lex_state = 164}, - [4474] = {.lex_state = 152}, - [4475] = {.lex_state = 152}, - [4476] = {.lex_state = 152}, - [4477] = {.lex_state = 152}, - [4478] = {.lex_state = 152}, - [4479] = {.lex_state = 152}, - [4480] = {.lex_state = 152}, - [4481] = {.lex_state = 152}, - [4482] = {.lex_state = 152}, - [4483] = {.lex_state = 152}, - [4484] = {.lex_state = 152}, - [4485] = {.lex_state = 152}, - [4486] = {.lex_state = 152}, - [4487] = {.lex_state = 152}, - [4488] = {.lex_state = 152}, - [4489] = {.lex_state = 152}, - [4490] = {.lex_state = 152}, - [4491] = {.lex_state = 152}, - [4492] = {.lex_state = 152}, - [4493] = {.lex_state = 152}, - [4494] = {.lex_state = 152}, - [4495] = {.lex_state = 152}, - [4496] = {.lex_state = 152}, - [4497] = {.lex_state = 152}, - [4498] = {.lex_state = 164}, - [4499] = {.lex_state = 165}, - [4500] = {.lex_state = 131}, - [4501] = {.lex_state = 165}, - [4502] = {.lex_state = 181}, - [4503] = {.lex_state = 165}, - [4504] = {.lex_state = 165}, - [4505] = {.lex_state = 165}, - [4506] = {.lex_state = 131}, - [4507] = {.lex_state = 131}, - [4508] = {.lex_state = 131}, - [4509] = {.lex_state = 181}, - [4510] = {.lex_state = 181}, - [4511] = {.lex_state = 131}, - [4512] = {.lex_state = 131}, - [4513] = {.lex_state = 152}, - [4514] = {.lex_state = 165}, - [4515] = {.lex_state = 152}, - [4516] = {.lex_state = 165}, - [4517] = {.lex_state = 165}, - [4518] = {.lex_state = 181}, - [4519] = {.lex_state = 131}, - [4520] = {.lex_state = 152}, - [4521] = {.lex_state = 181}, - [4522] = {.lex_state = 164}, - [4523] = {.lex_state = 131}, - [4524] = {.lex_state = 181}, - [4525] = {.lex_state = 165}, - [4526] = {.lex_state = 165}, - [4527] = {.lex_state = 131}, - [4528] = {.lex_state = 165}, - [4529] = {.lex_state = 181}, - [4530] = {.lex_state = 152}, - [4531] = {.lex_state = 152}, - [4532] = {.lex_state = 152}, - [4533] = {.lex_state = 152}, - [4534] = {.lex_state = 152}, - [4535] = {.lex_state = 152}, - [4536] = {.lex_state = 152}, - [4537] = {.lex_state = 152}, - [4538] = {.lex_state = 152}, - [4539] = {.lex_state = 152}, - [4540] = {.lex_state = 152}, - [4541] = {.lex_state = 152}, - [4542] = {.lex_state = 152}, - [4543] = {.lex_state = 152}, - [4544] = {.lex_state = 152}, - [4545] = {.lex_state = 152}, - [4546] = {.lex_state = 152}, - [4547] = {.lex_state = 152}, - [4548] = {.lex_state = 152}, - [4549] = {.lex_state = 152}, - [4550] = {.lex_state = 152}, - [4551] = {.lex_state = 152}, - [4552] = {.lex_state = 152}, - [4553] = {.lex_state = 152}, - [4554] = {.lex_state = 152}, - [4555] = {.lex_state = 152}, - [4556] = {.lex_state = 152}, - [4557] = {.lex_state = 152}, - [4558] = {.lex_state = 152}, - [4559] = {.lex_state = 152}, - [4560] = {.lex_state = 152}, - [4561] = {.lex_state = 152}, - [4562] = {.lex_state = 152}, - [4563] = {.lex_state = 152}, - [4564] = {.lex_state = 152}, - [4565] = {.lex_state = 152}, - [4566] = {.lex_state = 152}, - [4567] = {.lex_state = 152}, - [4568] = {.lex_state = 152}, - [4569] = {.lex_state = 152}, - [4570] = {.lex_state = 152}, - [4571] = {.lex_state = 152}, - [4572] = {.lex_state = 152}, - [4573] = {.lex_state = 152}, - [4574] = {.lex_state = 152}, - [4575] = {.lex_state = 152}, - [4576] = {.lex_state = 152}, - [4577] = {.lex_state = 152}, - [4578] = {.lex_state = 152}, - [4579] = {.lex_state = 152}, - [4580] = {.lex_state = 152}, - [4581] = {.lex_state = 152}, - [4582] = {.lex_state = 152}, - [4583] = {.lex_state = 152}, - [4584] = {.lex_state = 152}, - [4585] = {.lex_state = 152}, - [4586] = {.lex_state = 152}, - [4587] = {.lex_state = 152}, - [4588] = {.lex_state = 152}, - [4589] = {.lex_state = 152}, - [4590] = {.lex_state = 152}, - [4591] = {.lex_state = 152}, - [4592] = {.lex_state = 152}, - [4593] = {.lex_state = 152}, - [4594] = {.lex_state = 152}, - [4595] = {.lex_state = 152}, - [4596] = {.lex_state = 152}, - [4597] = {.lex_state = 152}, - [4598] = {.lex_state = 152}, - [4599] = {.lex_state = 152}, - [4600] = {.lex_state = 152}, - [4601] = {.lex_state = 152}, - [4602] = {.lex_state = 183}, - [4603] = {.lex_state = 152}, - [4604] = {.lex_state = 152}, - [4605] = {.lex_state = 152}, - [4606] = {.lex_state = 152}, - [4607] = {.lex_state = 152}, - [4608] = {.lex_state = 152}, - [4609] = {.lex_state = 152}, - [4610] = {.lex_state = 152}, - [4611] = {.lex_state = 152}, - [4612] = {.lex_state = 152}, - [4613] = {.lex_state = 152}, - [4614] = {.lex_state = 152}, - [4615] = {.lex_state = 152}, - [4616] = {.lex_state = 152}, - [4617] = {.lex_state = 152}, - [4618] = {.lex_state = 152}, - [4619] = {.lex_state = 152}, - [4620] = {.lex_state = 152}, - [4621] = {.lex_state = 152}, - [4622] = {.lex_state = 164}, - [4623] = {.lex_state = 184}, - [4624] = {.lex_state = 152}, - [4625] = {.lex_state = 152}, - [4626] = {.lex_state = 164}, - [4627] = {.lex_state = 164}, - [4628] = {.lex_state = 164}, - [4629] = {.lex_state = 164}, - [4630] = {.lex_state = 164}, - [4631] = {.lex_state = 164}, - [4632] = {.lex_state = 164}, - [4633] = {.lex_state = 152}, - [4634] = {.lex_state = 164}, - [4635] = {.lex_state = 164}, - [4636] = {.lex_state = 184}, - [4637] = {.lex_state = 152}, - [4638] = {.lex_state = 164}, - [4639] = {.lex_state = 184}, - [4640] = {.lex_state = 152}, - [4641] = {.lex_state = 181}, - [4642] = {.lex_state = 152}, - [4643] = {.lex_state = 131}, - [4644] = {.lex_state = 152}, - [4645] = {.lex_state = 152}, - [4646] = {.lex_state = 164}, - [4647] = {.lex_state = 131}, - [4648] = {.lex_state = 152}, - [4649] = {.lex_state = 131}, - [4650] = {.lex_state = 152}, - [4651] = {.lex_state = 152}, - [4652] = {.lex_state = 131}, - [4653] = {.lex_state = 131}, - [4654] = {.lex_state = 164}, - [4655] = {.lex_state = 164}, - [4656] = {.lex_state = 131}, - [4657] = {.lex_state = 152}, - [4658] = {.lex_state = 164}, - [4659] = {.lex_state = 164}, - [4660] = {.lex_state = 181}, - [4661] = {.lex_state = 184}, - [4662] = {.lex_state = 131}, - [4663] = {.lex_state = 164}, - [4664] = {.lex_state = 131}, - [4665] = {.lex_state = 152}, - [4666] = {.lex_state = 164}, - [4667] = {.lex_state = 184}, - [4668] = {.lex_state = 165}, - [4669] = {.lex_state = 184}, - [4670] = {.lex_state = 131}, - [4671] = {.lex_state = 152}, - [4672] = {.lex_state = 152}, - [4673] = {.lex_state = 245}, - [4674] = {.lex_state = 169}, - [4675] = {.lex_state = 169}, - [4676] = {.lex_state = 169}, - [4677] = {.lex_state = 183}, - [4678] = {.lex_state = 152}, - [4679] = {.lex_state = 183}, - [4680] = {.lex_state = 245}, - [4681] = {.lex_state = 183}, - [4682] = {.lex_state = 169}, - [4683] = {.lex_state = 183}, - [4684] = {.lex_state = 183}, - [4685] = {.lex_state = 245}, - [4686] = {.lex_state = 181}, - [4687] = {.lex_state = 169}, - [4688] = {.lex_state = 169}, - [4689] = {.lex_state = 183}, - [4690] = {.lex_state = 152}, - [4691] = {.lex_state = 183}, - [4692] = {.lex_state = 183}, - [4693] = {.lex_state = 152}, - [4694] = {.lex_state = 183}, - [4695] = {.lex_state = 152}, - [4696] = {.lex_state = 152}, - [4697] = {.lex_state = 152}, - [4698] = {.lex_state = 245}, - [4699] = {.lex_state = 183}, - [4700] = {.lex_state = 245}, - [4701] = {.lex_state = 169}, - [4702] = {.lex_state = 245}, - [4703] = {.lex_state = 183}, - [4704] = {.lex_state = 152}, - [4705] = {.lex_state = 183}, - [4706] = {.lex_state = 152}, - [4707] = {.lex_state = 169}, - [4708] = {.lex_state = 152}, - [4709] = {.lex_state = 183}, - [4710] = {.lex_state = 169}, - [4711] = {.lex_state = 183}, - [4712] = {.lex_state = 152}, - [4713] = {.lex_state = 152}, - [4714] = {.lex_state = 152}, - [4715] = {.lex_state = 152}, - [4716] = {.lex_state = 152}, - [4717] = {.lex_state = 181}, - [4718] = {.lex_state = 183}, - [4719] = {.lex_state = 181}, - [4720] = {.lex_state = 181}, - [4721] = {.lex_state = 183}, - [4722] = {.lex_state = 181}, - [4723] = {.lex_state = 181}, - [4724] = {.lex_state = 183}, - [4725] = {.lex_state = 152}, - [4726] = {.lex_state = 183}, - [4727] = {.lex_state = 183}, - [4728] = {.lex_state = 181}, - [4729] = {.lex_state = 152}, - [4730] = {.lex_state = 183}, - [4731] = {.lex_state = 152}, - [4732] = {.lex_state = 183}, - [4733] = {.lex_state = 183}, - [4734] = {.lex_state = 152}, - [4735] = {.lex_state = 183}, - [4736] = {.lex_state = 183}, - [4737] = {.lex_state = 183}, - [4738] = {.lex_state = 152}, - [4739] = {.lex_state = 183}, - [4740] = {.lex_state = 152}, - [4741] = {.lex_state = 131}, - [4742] = {.lex_state = 187}, - [4743] = {.lex_state = 183}, - [4744] = {.lex_state = 152}, - [4745] = {.lex_state = 183}, - [4746] = {.lex_state = 152}, - [4747] = {.lex_state = 183}, - [4748] = {.lex_state = 152}, - [4749] = {.lex_state = 152}, - [4750] = {.lex_state = 152}, - [4751] = {.lex_state = 152}, - [4752] = {.lex_state = 183}, - [4753] = {.lex_state = 152}, - [4754] = {.lex_state = 183}, - [4755] = {.lex_state = 183}, - [4756] = {.lex_state = 183}, - [4757] = {.lex_state = 183}, - [4758] = {.lex_state = 183}, - [4759] = {.lex_state = 152}, - [4760] = {.lex_state = 183}, - [4761] = {.lex_state = 183}, - [4762] = {.lex_state = 183}, - [4763] = {.lex_state = 183}, - [4764] = {.lex_state = 152}, - [4765] = {.lex_state = 183}, - [4766] = {.lex_state = 183}, - [4767] = {.lex_state = 152}, - [4768] = {.lex_state = 183}, - [4769] = {.lex_state = 182}, - [4770] = {.lex_state = 183}, - [4771] = {.lex_state = 182}, - [4772] = {.lex_state = 183}, - [4773] = {.lex_state = 183}, - [4774] = {.lex_state = 183}, - [4775] = {.lex_state = 183}, - [4776] = {.lex_state = 183}, - [4777] = {.lex_state = 181}, - [4778] = {.lex_state = 183}, - [4779] = {.lex_state = 183}, - [4780] = {.lex_state = 183}, - [4781] = {.lex_state = 183}, - [4782] = {.lex_state = 183}, - [4783] = {.lex_state = 245}, - [4784] = {.lex_state = 152}, - [4785] = {.lex_state = 152}, - [4786] = {.lex_state = 183}, - [4787] = {.lex_state = 183}, - [4788] = {.lex_state = 152}, - [4789] = {.lex_state = 183}, - [4790] = {.lex_state = 152}, - [4791] = {.lex_state = 181}, - [4792] = {.lex_state = 181}, - [4793] = {.lex_state = 183}, - [4794] = {.lex_state = 181}, - [4795] = {.lex_state = 183}, - [4796] = {.lex_state = 183}, - [4797] = {.lex_state = 183}, - [4798] = {.lex_state = 183}, - [4799] = {.lex_state = 183}, - [4800] = {.lex_state = 181}, - [4801] = {.lex_state = 183}, - [4802] = {.lex_state = 182}, - [4803] = {.lex_state = 184}, - [4804] = {.lex_state = 183}, - [4805] = {.lex_state = 183}, - [4806] = {.lex_state = 152}, - [4807] = {.lex_state = 182}, - [4808] = {.lex_state = 183}, - [4809] = {.lex_state = 183}, - [4810] = {.lex_state = 183}, - [4811] = {.lex_state = 152}, - [4812] = {.lex_state = 181}, - [4813] = {.lex_state = 183}, - [4814] = {.lex_state = 183}, - [4815] = {.lex_state = 183}, - [4816] = {.lex_state = 183}, - [4817] = {.lex_state = 183}, - [4818] = {.lex_state = 183}, - [4819] = {.lex_state = 182}, - [4820] = {.lex_state = 181}, - [4821] = {.lex_state = 164}, - [4822] = {.lex_state = 182}, - [4823] = {.lex_state = 181}, - [4824] = {.lex_state = 184}, - [4825] = {.lex_state = 183}, - [4826] = {.lex_state = 181}, - [4827] = {.lex_state = 183}, - [4828] = {.lex_state = 183}, - [4829] = {.lex_state = 182}, - [4830] = {.lex_state = 183}, - [4831] = {.lex_state = 164}, - [4832] = {.lex_state = 182}, - [4833] = {.lex_state = 183}, - [4834] = {.lex_state = 183}, - [4835] = {.lex_state = 183}, - [4836] = {.lex_state = 182}, - [4837] = {.lex_state = 182}, - [4838] = {.lex_state = 183}, - [4839] = {.lex_state = 182}, - [4840] = {.lex_state = 182}, - [4841] = {.lex_state = 184}, - [4842] = {.lex_state = 183}, - [4843] = {.lex_state = 182}, - [4844] = {.lex_state = 183}, - [4845] = {.lex_state = 182}, - [4846] = {.lex_state = 183}, - [4847] = {.lex_state = 181}, - [4848] = {.lex_state = 183}, - [4849] = {.lex_state = 183}, - [4850] = {.lex_state = 182}, - [4851] = {.lex_state = 183}, - [4852] = {.lex_state = 183}, - [4853] = {.lex_state = 182}, - [4854] = {.lex_state = 183}, - [4855] = {.lex_state = 183}, - [4856] = {.lex_state = 182}, - [4857] = {.lex_state = 183}, - [4858] = {.lex_state = 184}, - [4859] = {.lex_state = 182}, - [4860] = {.lex_state = 183}, - [4861] = {.lex_state = 183}, - [4862] = {.lex_state = 183}, - [4863] = {.lex_state = 184}, - [4864] = {.lex_state = 183}, - [4865] = {.lex_state = 184}, - [4866] = {.lex_state = 182}, - [4867] = {.lex_state = 183}, - [4868] = {.lex_state = 183}, - [4869] = {.lex_state = 183}, - [4870] = {.lex_state = 183}, - [4871] = {.lex_state = 183}, - [4872] = {.lex_state = 183}, - [4873] = {.lex_state = 182}, - [4874] = {.lex_state = 183}, - [4875] = {.lex_state = 182}, - [4876] = {.lex_state = 152}, - [4877] = {.lex_state = 169}, - [4878] = {.lex_state = 152}, - [4879] = {.lex_state = 245}, - [4880] = {.lex_state = 183}, - [4881] = {.lex_state = 152}, - [4882] = {.lex_state = 152}, - [4883] = {.lex_state = 152}, - [4884] = {.lex_state = 245}, - [4885] = {.lex_state = 152}, - [4886] = {.lex_state = 181}, - [4887] = {.lex_state = 152}, - [4888] = {.lex_state = 152}, - [4889] = {.lex_state = 152}, - [4890] = {.lex_state = 183}, - [4891] = {.lex_state = 183}, - [4892] = {.lex_state = 181}, - [4893] = {.lex_state = 183}, - [4894] = {.lex_state = 181}, - [4895] = {.lex_state = 152}, - [4896] = {.lex_state = 181}, - [4897] = {.lex_state = 152}, - [4898] = {.lex_state = 152}, - [4899] = {.lex_state = 152}, - [4900] = {.lex_state = 183}, - [4901] = {.lex_state = 152}, - [4902] = {.lex_state = 181}, - [4903] = {.lex_state = 169}, - [4904] = {.lex_state = 152}, - [4905] = {.lex_state = 184}, - [4906] = {.lex_state = 183}, - [4907] = {.lex_state = 152}, - [4908] = {.lex_state = 152}, - [4909] = {.lex_state = 152}, - [4910] = {.lex_state = 152}, - [4911] = {.lex_state = 181}, - [4912] = {.lex_state = 152}, - [4913] = {.lex_state = 183}, - [4914] = {.lex_state = 152}, - [4915] = {.lex_state = 181}, - [4916] = {.lex_state = 245}, - [4917] = {.lex_state = 152}, - [4918] = {.lex_state = 245}, - [4919] = {.lex_state = 152}, - [4920] = {.lex_state = 152}, - [4921] = {.lex_state = 183}, - [4922] = {.lex_state = 183}, - [4923] = {.lex_state = 152}, - [4924] = {.lex_state = 152}, - [4925] = {.lex_state = 152}, - [4926] = {.lex_state = 245}, - [4927] = {.lex_state = 152}, - [4928] = {.lex_state = 152}, - [4929] = {.lex_state = 183}, - [4930] = {.lex_state = 183}, - [4931] = {.lex_state = 181}, - [4932] = {.lex_state = 245}, - [4933] = {.lex_state = 245}, - [4934] = {.lex_state = 181}, - [4935] = {.lex_state = 245}, - [4936] = {.lex_state = 245}, - [4937] = {.lex_state = 172}, - [4938] = {.lex_state = 146}, - [4939] = {.lex_state = 172}, - [4940] = {.lex_state = 245}, - [4941] = {.lex_state = 182}, - [4942] = {.lex_state = 152}, - [4943] = {.lex_state = 181}, - [4944] = {.lex_state = 245}, - [4945] = {.lex_state = 245}, - [4946] = {.lex_state = 152}, - [4947] = {.lex_state = 182}, - [4948] = {.lex_state = 152}, - [4949] = {.lex_state = 181}, - [4950] = {.lex_state = 181}, - [4951] = {.lex_state = 245}, - [4952] = {.lex_state = 181}, - [4953] = {.lex_state = 172}, - [4954] = {.lex_state = 181}, - [4955] = {.lex_state = 182}, - [4956] = {.lex_state = 245}, - [4957] = {.lex_state = 245}, - [4958] = {.lex_state = 182}, - [4959] = {.lex_state = 0, .external_lex_state = 1}, - [4960] = {.lex_state = 182}, - [4961] = {.lex_state = 172}, - [4962] = {.lex_state = 245}, - [4963] = {.lex_state = 152}, - [4964] = {.lex_state = 245}, - [4965] = {.lex_state = 0, .external_lex_state = 1}, - [4966] = {.lex_state = 245}, - [4967] = {.lex_state = 245}, - [4968] = {.lex_state = 245}, - [4969] = {.lex_state = 152}, - [4970] = {.lex_state = 182}, - [4971] = {.lex_state = 182}, - [4972] = {.lex_state = 183}, - [4973] = {.lex_state = 182}, - [4974] = {.lex_state = 183}, - [4975] = {.lex_state = 183}, - [4976] = {.lex_state = 182}, - [4977] = {.lex_state = 182}, - [4978] = {.lex_state = 245}, - [4979] = {.lex_state = 152}, - [4980] = {.lex_state = 183}, - [4981] = {.lex_state = 152}, - [4982] = {.lex_state = 245}, - [4983] = {.lex_state = 182}, - [4984] = {.lex_state = 245}, - [4985] = {.lex_state = 152}, - [4986] = {.lex_state = 183}, - [4987] = {.lex_state = 0, .external_lex_state = 1}, - [4988] = {.lex_state = 182}, - [4989] = {.lex_state = 245}, - [4990] = {.lex_state = 245}, - [4991] = {.lex_state = 183}, - [4992] = {.lex_state = 0, .external_lex_state = 1}, - [4993] = {.lex_state = 182}, - [4994] = {.lex_state = 245}, - [4995] = {.lex_state = 146}, - [4996] = {.lex_state = 182}, - [4997] = {.lex_state = 0, .external_lex_state = 1}, - [4998] = {.lex_state = 152}, - [4999] = {.lex_state = 0, .external_lex_state = 1}, - [5000] = {.lex_state = 152}, - [5001] = {.lex_state = 245}, - [5002] = {.lex_state = 245}, - [5003] = {.lex_state = 245}, - [5004] = {.lex_state = 245}, - [5005] = {.lex_state = 131}, - [5006] = {.lex_state = 182}, - [5007] = {.lex_state = 0, .external_lex_state = 1}, - [5008] = {.lex_state = 182}, - [5009] = {.lex_state = 182}, - [5010] = {.lex_state = 182}, - [5011] = {.lex_state = 182}, - [5012] = {.lex_state = 245}, - [5013] = {.lex_state = 245}, - [5014] = {.lex_state = 152}, - [5015] = {.lex_state = 152}, - [5016] = {.lex_state = 182}, - [5017] = {.lex_state = 146}, - [5018] = {.lex_state = 152}, - [5019] = {.lex_state = 0, .external_lex_state = 1}, - [5020] = {.lex_state = 152}, - [5021] = {.lex_state = 182}, - [5022] = {.lex_state = 182}, - [5023] = {.lex_state = 182}, - [5024] = {.lex_state = 152}, - [5025] = {.lex_state = 0, .external_lex_state = 1}, - [5026] = {.lex_state = 152}, - [5027] = {.lex_state = 152}, - [5028] = {.lex_state = 0, .external_lex_state = 1}, - [5029] = {.lex_state = 182}, - [5030] = {.lex_state = 184}, - [5031] = {.lex_state = 181}, - [5032] = {.lex_state = 152}, - [5033] = {.lex_state = 245}, - [5034] = {.lex_state = 245}, - [5035] = {.lex_state = 152}, - [5036] = {.lex_state = 245}, - [5037] = {.lex_state = 152}, - [5038] = {.lex_state = 182}, - [5039] = {.lex_state = 245}, - [5040] = {.lex_state = 182}, - [5041] = {.lex_state = 152}, - [5042] = {.lex_state = 182}, - [5043] = {.lex_state = 154}, - [5044] = {.lex_state = 245}, - [5045] = {.lex_state = 146}, - [5046] = {.lex_state = 146}, - [5047] = {.lex_state = 152}, - [5048] = {.lex_state = 152}, - [5049] = {.lex_state = 0, .external_lex_state = 1}, - [5050] = {.lex_state = 181}, - [5051] = {.lex_state = 0, .external_lex_state = 1}, - [5052] = {.lex_state = 152}, - [5053] = {.lex_state = 182}, - [5054] = {.lex_state = 154}, - [5055] = {.lex_state = 184}, - [5056] = {.lex_state = 245}, - [5057] = {.lex_state = 182}, - [5058] = {.lex_state = 184}, - [5059] = {.lex_state = 0, .external_lex_state = 1}, - [5060] = {.lex_state = 152}, - [5061] = {.lex_state = 0, .external_lex_state = 1}, - [5062] = {.lex_state = 182}, - [5063] = {.lex_state = 146}, - [5064] = {.lex_state = 245}, - [5065] = {.lex_state = 245}, - [5066] = {.lex_state = 152}, - [5067] = {.lex_state = 245}, - [5068] = {.lex_state = 146}, - [5069] = {.lex_state = 165}, - [5070] = {.lex_state = 155}, - [5071] = {.lex_state = 245}, - [5072] = {.lex_state = 152}, - [5073] = {.lex_state = 245}, - [5074] = {.lex_state = 165}, - [5075] = {.lex_state = 155}, - [5076] = {.lex_state = 155}, - [5077] = {.lex_state = 152}, - [5078] = {.lex_state = 155}, - [5079] = {.lex_state = 152}, - [5080] = {.lex_state = 152}, - [5081] = {.lex_state = 155}, - [5082] = {.lex_state = 245}, - [5083] = {.lex_state = 245}, - [5084] = {.lex_state = 152}, - [5085] = {.lex_state = 146}, - [5086] = {.lex_state = 152}, - [5087] = {.lex_state = 245}, - [5088] = {.lex_state = 152}, - [5089] = {.lex_state = 154}, - [5090] = {.lex_state = 245}, - [5091] = {.lex_state = 152}, - [5092] = {.lex_state = 152}, - [5093] = {.lex_state = 152}, - [5094] = {.lex_state = 131}, - [5095] = {.lex_state = 131}, - [5096] = {.lex_state = 152}, - [5097] = {.lex_state = 155}, - [5098] = {.lex_state = 155}, - [5099] = {.lex_state = 146}, - [5100] = {.lex_state = 155}, - [5101] = {.lex_state = 152}, - [5102] = {.lex_state = 154}, - [5103] = {.lex_state = 154}, - [5104] = {.lex_state = 245}, - [5105] = {.lex_state = 152}, - [5106] = {.lex_state = 152}, - [5107] = {.lex_state = 152}, - [5108] = {.lex_state = 154}, - [5109] = {.lex_state = 152}, - [5110] = {.lex_state = 152}, - [5111] = {.lex_state = 152}, - [5112] = {.lex_state = 154}, - [5113] = {.lex_state = 245}, - [5114] = {.lex_state = 152}, - [5115] = {.lex_state = 152}, - [5116] = {.lex_state = 131}, - [5117] = {.lex_state = 146}, - [5118] = {.lex_state = 152}, - [5119] = {.lex_state = 245}, - [5120] = {.lex_state = 152}, - [5121] = {.lex_state = 154}, + [3990] = {.lex_state = 184}, + [3991] = {.lex_state = 184}, + [3992] = {.lex_state = 199}, + [3993] = {.lex_state = 196}, + [3994] = {.lex_state = 199}, + [3995] = {.lex_state = 197}, + [3996] = {.lex_state = 199}, + [3997] = {.lex_state = 199}, + [3998] = {.lex_state = 197}, + [3999] = {.lex_state = 199}, + [4000] = {.lex_state = 199}, + [4001] = {.lex_state = 199}, + [4002] = {.lex_state = 199}, + [4003] = {.lex_state = 199}, + [4004] = {.lex_state = 199}, + [4005] = {.lex_state = 199}, + [4006] = {.lex_state = 199}, + [4007] = {.lex_state = 199}, + [4008] = {.lex_state = 199}, + [4009] = {.lex_state = 199}, + [4010] = {.lex_state = 199}, + [4011] = {.lex_state = 199}, + [4012] = {.lex_state = 199}, + [4013] = {.lex_state = 197}, + [4014] = {.lex_state = 199}, + [4015] = {.lex_state = 199}, + [4016] = {.lex_state = 199}, + [4017] = {.lex_state = 199}, + [4018] = {.lex_state = 199}, + [4019] = {.lex_state = 197}, + [4020] = {.lex_state = 199}, + [4021] = {.lex_state = 199}, + [4022] = {.lex_state = 197}, + [4023] = {.lex_state = 199}, + [4024] = {.lex_state = 197}, + [4025] = {.lex_state = 199}, + [4026] = {.lex_state = 199}, + [4027] = {.lex_state = 199}, + [4028] = {.lex_state = 199}, + [4029] = {.lex_state = 199}, + [4030] = {.lex_state = 199}, + [4031] = {.lex_state = 199}, + [4032] = {.lex_state = 199}, + [4033] = {.lex_state = 199}, + [4034] = {.lex_state = 199}, + [4035] = {.lex_state = 199}, + [4036] = {.lex_state = 199}, + [4037] = {.lex_state = 199}, + [4038] = {.lex_state = 199}, + [4039] = {.lex_state = 199}, + [4040] = {.lex_state = 199}, + [4041] = {.lex_state = 199}, + [4042] = {.lex_state = 199}, + [4043] = {.lex_state = 199}, + [4044] = {.lex_state = 199}, + [4045] = {.lex_state = 197}, + [4046] = {.lex_state = 199}, + [4047] = {.lex_state = 199}, + [4048] = {.lex_state = 199}, + [4049] = {.lex_state = 199}, + [4050] = {.lex_state = 199}, + [4051] = {.lex_state = 199}, + [4052] = {.lex_state = 197}, + [4053] = {.lex_state = 199}, + [4054] = {.lex_state = 199}, + [4055] = {.lex_state = 199}, + [4056] = {.lex_state = 199}, + [4057] = {.lex_state = 199}, + [4058] = {.lex_state = 199}, + [4059] = {.lex_state = 199}, + [4060] = {.lex_state = 199}, + [4061] = {.lex_state = 199}, + [4062] = {.lex_state = 199}, + [4063] = {.lex_state = 199}, + [4064] = {.lex_state = 197}, + [4065] = {.lex_state = 197}, + [4066] = {.lex_state = 199}, + [4067] = {.lex_state = 179}, + [4068] = {.lex_state = 199}, + [4069] = {.lex_state = 197}, + [4070] = {.lex_state = 199}, + [4071] = {.lex_state = 199}, + [4072] = {.lex_state = 197}, + [4073] = {.lex_state = 199}, + [4074] = {.lex_state = 197}, + [4075] = {.lex_state = 199}, + [4076] = {.lex_state = 178}, + [4077] = {.lex_state = 179}, + [4078] = {.lex_state = 196}, + [4079] = {.lex_state = 196}, + [4080] = {.lex_state = 196}, + [4081] = {.lex_state = 196}, + [4082] = {.lex_state = 196}, + [4083] = {.lex_state = 196}, + [4084] = {.lex_state = 197}, + [4085] = {.lex_state = 196}, + [4086] = {.lex_state = 196}, + [4087] = {.lex_state = 197}, + [4088] = {.lex_state = 196}, + [4089] = {.lex_state = 196}, + [4090] = {.lex_state = 196}, + [4091] = {.lex_state = 179}, + [4092] = {.lex_state = 196}, + [4093] = {.lex_state = 197}, + [4094] = {.lex_state = 196}, + [4095] = {.lex_state = 196}, + [4096] = {.lex_state = 196}, + [4097] = {.lex_state = 196}, + [4098] = {.lex_state = 196}, + [4099] = {.lex_state = 179}, + [4100] = {.lex_state = 196}, + [4101] = {.lex_state = 196}, + [4102] = {.lex_state = 197}, + [4103] = {.lex_state = 196}, + [4104] = {.lex_state = 197}, + [4105] = {.lex_state = 179}, + [4106] = {.lex_state = 196}, + [4107] = {.lex_state = 196}, + [4108] = {.lex_state = 179}, + [4109] = {.lex_state = 196}, + [4110] = {.lex_state = 196}, + [4111] = {.lex_state = 197}, + [4112] = {.lex_state = 196}, + [4113] = {.lex_state = 199}, + [4114] = {.lex_state = 198}, + [4115] = {.lex_state = 179}, + [4116] = {.lex_state = 197}, + [4117] = {.lex_state = 179}, + [4118] = {.lex_state = 199}, + [4119] = {.lex_state = 197}, + [4120] = {.lex_state = 197}, + [4121] = {.lex_state = 199}, + [4122] = {.lex_state = 179}, + [4123] = {.lex_state = 199}, + [4124] = {.lex_state = 199}, + [4125] = {.lex_state = 197}, + [4126] = {.lex_state = 199}, + [4127] = {.lex_state = 199}, + [4128] = {.lex_state = 196}, + [4129] = {.lex_state = 179}, + [4130] = {.lex_state = 200}, + [4131] = {.lex_state = 196}, + [4132] = {.lex_state = 196}, + [4133] = {.lex_state = 196}, + [4134] = {.lex_state = 199}, + [4135] = {.lex_state = 196}, + [4136] = {.lex_state = 179}, + [4137] = {.lex_state = 196}, + [4138] = {.lex_state = 199}, + [4139] = {.lex_state = 196}, + [4140] = {.lex_state = 196}, + [4141] = {.lex_state = 196}, + [4142] = {.lex_state = 196}, + [4143] = {.lex_state = 196}, + [4144] = {.lex_state = 196}, + [4145] = {.lex_state = 196}, + [4146] = {.lex_state = 196}, + [4147] = {.lex_state = 196}, + [4148] = {.lex_state = 196}, + [4149] = {.lex_state = 196}, + [4150] = {.lex_state = 196}, + [4151] = {.lex_state = 179}, + [4152] = {.lex_state = 198}, + [4153] = {.lex_state = 199}, + [4154] = {.lex_state = 199}, + [4155] = {.lex_state = 199}, + [4156] = {.lex_state = 196}, + [4157] = {.lex_state = 196}, + [4158] = {.lex_state = 196}, + [4159] = {.lex_state = 196}, + [4160] = {.lex_state = 196}, + [4161] = {.lex_state = 196}, + [4162] = {.lex_state = 196}, + [4163] = {.lex_state = 196}, + [4164] = {.lex_state = 196}, + [4165] = {.lex_state = 199}, + [4166] = {.lex_state = 196}, + [4167] = {.lex_state = 196}, + [4168] = {.lex_state = 198}, + [4169] = {.lex_state = 196}, + [4170] = {.lex_state = 199}, + [4171] = {.lex_state = 196}, + [4172] = {.lex_state = 196}, + [4173] = {.lex_state = 196}, + [4174] = {.lex_state = 196}, + [4175] = {.lex_state = 196}, + [4176] = {.lex_state = 196}, + [4177] = {.lex_state = 199}, + [4178] = {.lex_state = 179}, + [4179] = {.lex_state = 196}, + [4180] = {.lex_state = 196}, + [4181] = {.lex_state = 196}, + [4182] = {.lex_state = 196}, + [4183] = {.lex_state = 196}, + [4184] = {.lex_state = 196}, + [4185] = {.lex_state = 197}, + [4186] = {.lex_state = 197}, + [4187] = {.lex_state = 184}, + [4188] = {.lex_state = 197}, + [4189] = {.lex_state = 181}, + [4190] = {.lex_state = 197}, + [4191] = {.lex_state = 179}, + [4192] = {.lex_state = 197}, + [4193] = {.lex_state = 179}, + [4194] = {.lex_state = 197}, + [4195] = {.lex_state = 197}, + [4196] = {.lex_state = 179}, + [4197] = {.lex_state = 179}, + [4198] = {.lex_state = 197}, + [4199] = {.lex_state = 181}, + [4200] = {.lex_state = 198}, + [4201] = {.lex_state = 179}, + [4202] = {.lex_state = 179}, + [4203] = {.lex_state = 179}, + [4204] = {.lex_state = 197}, + [4205] = {.lex_state = 179}, + [4206] = {.lex_state = 197}, + [4207] = {.lex_state = 179}, + [4208] = {.lex_state = 179}, + [4209] = {.lex_state = 179}, + [4210] = {.lex_state = 179}, + [4211] = {.lex_state = 179}, + [4212] = {.lex_state = 179}, + [4213] = {.lex_state = 184}, + [4214] = {.lex_state = 199}, + [4215] = {.lex_state = 180}, + [4216] = {.lex_state = 180}, + [4217] = {.lex_state = 180}, + [4218] = {.lex_state = 179}, + [4219] = {.lex_state = 199}, + [4220] = {.lex_state = 199}, + [4221] = {.lex_state = 199}, + [4222] = {.lex_state = 180}, + [4223] = {.lex_state = 197}, + [4224] = {.lex_state = 199}, + [4225] = {.lex_state = 180}, + [4226] = {.lex_state = 180}, + [4227] = {.lex_state = 197}, + [4228] = {.lex_state = 180}, + [4229] = {.lex_state = 180}, + [4230] = {.lex_state = 180}, + [4231] = {.lex_state = 180}, + [4232] = {.lex_state = 180}, + [4233] = {.lex_state = 180}, + [4234] = {.lex_state = 197}, + [4235] = {.lex_state = 197}, + [4236] = {.lex_state = 179}, + [4237] = {.lex_state = 199}, + [4238] = {.lex_state = 180}, + [4239] = {.lex_state = 180}, + [4240] = {.lex_state = 199}, + [4241] = {.lex_state = 180}, + [4242] = {.lex_state = 180}, + [4243] = {.lex_state = 197}, + [4244] = {.lex_state = 197}, + [4245] = {.lex_state = 199}, + [4246] = {.lex_state = 197}, + [4247] = {.lex_state = 199}, + [4248] = {.lex_state = 199}, + [4249] = {.lex_state = 197}, + [4250] = {.lex_state = 199}, + [4251] = {.lex_state = 180}, + [4252] = {.lex_state = 199}, + [4253] = {.lex_state = 180}, + [4254] = {.lex_state = 180}, + [4255] = {.lex_state = 180}, + [4256] = {.lex_state = 180}, + [4257] = {.lex_state = 198}, + [4258] = {.lex_state = 198}, + [4259] = {.lex_state = 180}, + [4260] = {.lex_state = 180}, + [4261] = {.lex_state = 199}, + [4262] = {.lex_state = 198}, + [4263] = {.lex_state = 180}, + [4264] = {.lex_state = 180}, + [4265] = {.lex_state = 179}, + [4266] = {.lex_state = 199}, + [4267] = {.lex_state = 198}, + [4268] = {.lex_state = 202}, + [4269] = {.lex_state = 199}, + [4270] = {.lex_state = 180}, + [4271] = {.lex_state = 180}, + [4272] = {.lex_state = 180}, + [4273] = {.lex_state = 198}, + [4274] = {.lex_state = 180}, + [4275] = {.lex_state = 180}, + [4276] = {.lex_state = 198}, + [4277] = {.lex_state = 198}, + [4278] = {.lex_state = 180}, + [4279] = {.lex_state = 180}, + [4280] = {.lex_state = 199}, + [4281] = {.lex_state = 199}, + [4282] = {.lex_state = 180}, + [4283] = {.lex_state = 180}, + [4284] = {.lex_state = 198}, + [4285] = {.lex_state = 184}, + [4286] = {.lex_state = 199}, + [4287] = {.lex_state = 202}, + [4288] = {.lex_state = 179}, + [4289] = {.lex_state = 198}, + [4290] = {.lex_state = 180}, + [4291] = {.lex_state = 180}, + [4292] = {.lex_state = 184}, + [4293] = {.lex_state = 180}, + [4294] = {.lex_state = 198}, + [4295] = {.lex_state = 198}, + [4296] = {.lex_state = 198}, + [4297] = {.lex_state = 199}, + [4298] = {.lex_state = 180}, + [4299] = {.lex_state = 180}, + [4300] = {.lex_state = 198}, + [4301] = {.lex_state = 180}, + [4302] = {.lex_state = 179}, + [4303] = {.lex_state = 179}, + [4304] = {.lex_state = 180}, + [4305] = {.lex_state = 180}, + [4306] = {.lex_state = 179}, + [4307] = {.lex_state = 180}, + [4308] = {.lex_state = 180}, + [4309] = {.lex_state = 179}, + [4310] = {.lex_state = 180}, + [4311] = {.lex_state = 180}, + [4312] = {.lex_state = 199}, + [4313] = {.lex_state = 198}, + [4314] = {.lex_state = 184}, + [4315] = {.lex_state = 201}, + [4316] = {.lex_state = 201}, + [4317] = {.lex_state = 179}, + [4318] = {.lex_state = 179}, + [4319] = {.lex_state = 181}, + [4320] = {.lex_state = 201}, + [4321] = {.lex_state = 181}, + [4322] = {.lex_state = 179}, + [4323] = {.lex_state = 181}, + [4324] = {.lex_state = 179}, + [4325] = {.lex_state = 184}, + [4326] = {.lex_state = 179}, + [4327] = {.lex_state = 184}, + [4328] = {.lex_state = 181}, + [4329] = {.lex_state = 179}, + [4330] = {.lex_state = 201}, + [4331] = {.lex_state = 179}, + [4332] = {.lex_state = 179}, + [4333] = {.lex_state = 201}, + [4334] = {.lex_state = 201}, + [4335] = {.lex_state = 184}, + [4336] = {.lex_state = 184}, + [4337] = {.lex_state = 184}, + [4338] = {.lex_state = 201}, + [4339] = {.lex_state = 179}, + [4340] = {.lex_state = 201}, + [4341] = {.lex_state = 201}, + [4342] = {.lex_state = 181}, + [4343] = {.lex_state = 179}, + [4344] = {.lex_state = 198}, + [4345] = {.lex_state = 184}, + [4346] = {.lex_state = 179}, + [4347] = {.lex_state = 179}, + [4348] = {.lex_state = 181}, + [4349] = {.lex_state = 179}, + [4350] = {.lex_state = 199}, + [4351] = {.lex_state = 179}, + [4352] = {.lex_state = 184}, + [4353] = {.lex_state = 179}, + [4354] = {.lex_state = 181}, + [4355] = {.lex_state = 181}, + [4356] = {.lex_state = 179}, + [4357] = {.lex_state = 199}, + [4358] = {.lex_state = 199}, + [4359] = {.lex_state = 198}, + [4360] = {.lex_state = 198}, + [4361] = {.lex_state = 198}, + [4362] = {.lex_state = 199}, + [4363] = {.lex_state = 199}, + [4364] = {.lex_state = 199}, + [4365] = {.lex_state = 198}, + [4366] = {.lex_state = 199}, + [4367] = {.lex_state = 198}, + [4368] = {.lex_state = 198}, + [4369] = {.lex_state = 198}, + [4370] = {.lex_state = 196}, + [4371] = {.lex_state = 199}, + [4372] = {.lex_state = 199}, + [4373] = {.lex_state = 199}, + [4374] = {.lex_state = 199}, + [4375] = {.lex_state = 198}, + [4376] = {.lex_state = 198}, + [4377] = {.lex_state = 198}, + [4378] = {.lex_state = 198}, + [4379] = {.lex_state = 199}, + [4380] = {.lex_state = 198}, + [4381] = {.lex_state = 199}, + [4382] = {.lex_state = 198}, + [4383] = {.lex_state = 198}, + [4384] = {.lex_state = 198}, + [4385] = {.lex_state = 198}, + [4386] = {.lex_state = 181}, + [4387] = {.lex_state = 184}, + [4388] = {.lex_state = 198}, + [4389] = {.lex_state = 197}, + [4390] = {.lex_state = 198}, + [4391] = {.lex_state = 198}, + [4392] = {.lex_state = 184}, + [4393] = {.lex_state = 184}, + [4394] = {.lex_state = 198}, + [4395] = {.lex_state = 184}, + [4396] = {.lex_state = 184}, + [4397] = {.lex_state = 198}, + [4398] = {.lex_state = 180}, + [4399] = {.lex_state = 201}, + [4400] = {.lex_state = 184}, + [4401] = {.lex_state = 198}, + [4402] = {.lex_state = 198}, + [4403] = {.lex_state = 184}, + [4404] = {.lex_state = 180}, + [4405] = {.lex_state = 184}, + [4406] = {.lex_state = 197}, + [4407] = {.lex_state = 198}, + [4408] = {.lex_state = 201}, + [4409] = {.lex_state = 184}, + [4410] = {.lex_state = 187}, + [4411] = {.lex_state = 197}, + [4412] = {.lex_state = 178}, + [4413] = {.lex_state = 199}, + [4414] = {.lex_state = 199}, + [4415] = {.lex_state = 178}, + [4416] = {.lex_state = 178}, + [4417] = {.lex_state = 197}, + [4418] = {.lex_state = 178}, + [4419] = {.lex_state = 178}, + [4420] = {.lex_state = 187}, + [4421] = {.lex_state = 201}, + [4422] = {.lex_state = 178}, + [4423] = {.lex_state = 198}, + [4424] = {.lex_state = 184}, + [4425] = {.lex_state = 199}, + [4426] = {.lex_state = 199}, + [4427] = {.lex_state = 199}, + [4428] = {.lex_state = 154}, + [4429] = {.lex_state = 198}, + [4430] = {.lex_state = 199}, + [4431] = {.lex_state = 198}, + [4432] = {.lex_state = 143}, + [4433] = {.lex_state = 179}, + [4434] = {.lex_state = 198}, + [4435] = {.lex_state = 184}, + [4436] = {.lex_state = 143}, + [4437] = {.lex_state = 154}, + [4438] = {.lex_state = 199}, + [4439] = {.lex_state = 179}, + [4440] = {.lex_state = 184}, + [4441] = {.lex_state = 154}, + [4442] = {.lex_state = 199}, + [4443] = {.lex_state = 181}, + [4444] = {.lex_state = 181}, + [4445] = {.lex_state = 181}, + [4446] = {.lex_state = 179}, + [4447] = {.lex_state = 71}, + [4448] = {.lex_state = 198}, + [4449] = {.lex_state = 198}, + [4450] = {.lex_state = 178}, + [4451] = {.lex_state = 178}, + [4452] = {.lex_state = 198}, + [4453] = {.lex_state = 178}, + [4454] = {.lex_state = 198}, + [4455] = {.lex_state = 198}, + [4456] = {.lex_state = 178}, + [4457] = {.lex_state = 178}, + [4458] = {.lex_state = 198}, + [4459] = {.lex_state = 198}, + [4460] = {.lex_state = 178}, + [4461] = {.lex_state = 143}, + [4462] = {.lex_state = 178}, + [4463] = {.lex_state = 198}, + [4464] = {.lex_state = 198}, + [4465] = {.lex_state = 198}, + [4466] = {.lex_state = 198}, + [4467] = {.lex_state = 198}, + [4468] = {.lex_state = 198}, + [4469] = {.lex_state = 154}, + [4470] = {.lex_state = 198}, + [4471] = {.lex_state = 143}, + [4472] = {.lex_state = 154}, + [4473] = {.lex_state = 198}, + [4474] = {.lex_state = 198}, + [4475] = {.lex_state = 198}, + [4476] = {.lex_state = 198}, + [4477] = {.lex_state = 178}, + [4478] = {.lex_state = 178}, + [4479] = {.lex_state = 143}, + [4480] = {.lex_state = 154}, + [4481] = {.lex_state = 198}, + [4482] = {.lex_state = 178}, + [4483] = {.lex_state = 178}, + [4484] = {.lex_state = 143}, + [4485] = {.lex_state = 143}, + [4486] = {.lex_state = 143}, + [4487] = {.lex_state = 198}, + [4488] = {.lex_state = 198}, + [4489] = {.lex_state = 198}, + [4490] = {.lex_state = 198}, + [4491] = {.lex_state = 198}, + [4492] = {.lex_state = 143}, + [4493] = {.lex_state = 178}, + [4494] = {.lex_state = 198}, + [4495] = {.lex_state = 198}, + [4496] = {.lex_state = 198}, + [4497] = {.lex_state = 198}, + [4498] = {.lex_state = 198}, + [4499] = {.lex_state = 178}, + [4500] = {.lex_state = 198}, + [4501] = {.lex_state = 143}, + [4502] = {.lex_state = 198}, + [4503] = {.lex_state = 143}, + [4504] = {.lex_state = 198}, + [4505] = {.lex_state = 178}, + [4506] = {.lex_state = 198}, + [4507] = {.lex_state = 154}, + [4508] = {.lex_state = 198}, + [4509] = {.lex_state = 198}, + [4510] = {.lex_state = 198}, + [4511] = {.lex_state = 154}, + [4512] = {.lex_state = 178}, + [4513] = {.lex_state = 178}, + [4514] = {.lex_state = 181}, + [4515] = {.lex_state = 198}, + [4516] = {.lex_state = 184}, + [4517] = {.lex_state = 184}, + [4518] = {.lex_state = 178}, + [4519] = {.lex_state = 198}, + [4520] = {.lex_state = 198}, + [4521] = {.lex_state = 198}, + [4522] = {.lex_state = 198}, + [4523] = {.lex_state = 198}, + [4524] = {.lex_state = 143}, + [4525] = {.lex_state = 178}, + [4526] = {.lex_state = 198}, + [4527] = {.lex_state = 198}, + [4528] = {.lex_state = 198}, + [4529] = {.lex_state = 198}, + [4530] = {.lex_state = 198}, + [4531] = {.lex_state = 198}, + [4532] = {.lex_state = 143}, + [4533] = {.lex_state = 198}, + [4534] = {.lex_state = 143}, + [4535] = {.lex_state = 154}, + [4536] = {.lex_state = 154}, + [4537] = {.lex_state = 198}, + [4538] = {.lex_state = 178}, + [4539] = {.lex_state = 198}, + [4540] = {.lex_state = 198}, + [4541] = {.lex_state = 154}, + [4542] = {.lex_state = 178}, + [4543] = {.lex_state = 178}, + [4544] = {.lex_state = 154}, + [4545] = {.lex_state = 154}, + [4546] = {.lex_state = 198}, + [4547] = {.lex_state = 143}, + [4548] = {.lex_state = 198}, + [4549] = {.lex_state = 154}, + [4550] = {.lex_state = 154}, + [4551] = {.lex_state = 154}, + [4552] = {.lex_state = 154}, + [4553] = {.lex_state = 198}, + [4554] = {.lex_state = 198}, + [4555] = {.lex_state = 198}, + [4556] = {.lex_state = 178}, + [4557] = {.lex_state = 178}, + [4558] = {.lex_state = 198}, + [4559] = {.lex_state = 178}, + [4560] = {.lex_state = 178}, + [4561] = {.lex_state = 178}, + [4562] = {.lex_state = 198}, + [4563] = {.lex_state = 198}, + [4564] = {.lex_state = 198}, + [4565] = {.lex_state = 143}, + [4566] = {.lex_state = 178}, + [4567] = {.lex_state = 178}, + [4568] = {.lex_state = 198}, + [4569] = {.lex_state = 198}, + [4570] = {.lex_state = 154}, + [4571] = {.lex_state = 143}, + [4572] = {.lex_state = 199}, + [4573] = {.lex_state = 178}, + [4574] = {.lex_state = 198}, + [4575] = {.lex_state = 143}, + [4576] = {.lex_state = 154}, + [4577] = {.lex_state = 154}, + [4578] = {.lex_state = 143}, + [4579] = {.lex_state = 154}, + [4580] = {.lex_state = 143}, + [4581] = {.lex_state = 154}, + [4582] = {.lex_state = 199}, + [4583] = {.lex_state = 178}, + [4584] = {.lex_state = 178}, + [4585] = {.lex_state = 199}, + [4586] = {.lex_state = 143}, + [4587] = {.lex_state = 143}, + [4588] = {.lex_state = 154}, + [4589] = {.lex_state = 178}, + [4590] = {.lex_state = 178}, + [4591] = {.lex_state = 143}, + [4592] = {.lex_state = 178}, + [4593] = {.lex_state = 198}, + [4594] = {.lex_state = 178}, + [4595] = {.lex_state = 178}, + [4596] = {.lex_state = 178}, + [4597] = {.lex_state = 143}, + [4598] = {.lex_state = 178}, + [4599] = {.lex_state = 143}, + [4600] = {.lex_state = 143}, + [4601] = {.lex_state = 143}, + [4602] = {.lex_state = 143}, + [4603] = {.lex_state = 143}, + [4604] = {.lex_state = 178}, + [4605] = {.lex_state = 143}, + [4606] = {.lex_state = 143}, + [4607] = {.lex_state = 143}, + [4608] = {.lex_state = 143}, + [4609] = {.lex_state = 143}, + [4610] = {.lex_state = 143}, + [4611] = {.lex_state = 143}, + [4612] = {.lex_state = 155}, + [4613] = {.lex_state = 155}, + [4614] = {.lex_state = 155}, + [4615] = {.lex_state = 199}, + [4616] = {.lex_state = 71}, + [4617] = {.lex_state = 155}, + [4618] = {.lex_state = 71}, + [4619] = {.lex_state = 71}, + [4620] = {.lex_state = 71}, + [4621] = {.lex_state = 155}, + [4622] = {.lex_state = 71}, + [4623] = {.lex_state = 155}, + [4624] = {.lex_state = 155}, + [4625] = {.lex_state = 155}, + [4626] = {.lex_state = 155}, + [4627] = {.lex_state = 155}, + [4628] = {.lex_state = 71}, + [4629] = {.lex_state = 181}, + [4630] = {.lex_state = 199}, + [4631] = {.lex_state = 155}, + [4632] = {.lex_state = 197}, + [4633] = {.lex_state = 71}, + [4634] = {.lex_state = 71}, + [4635] = {.lex_state = 71}, + [4636] = {.lex_state = 71}, + [4637] = {.lex_state = 155}, + [4638] = {.lex_state = 71}, + [4639] = {.lex_state = 71}, + [4640] = {.lex_state = 155}, + [4641] = {.lex_state = 154}, + [4642] = {.lex_state = 155}, + [4643] = {.lex_state = 155}, + [4644] = {.lex_state = 155}, + [4645] = {.lex_state = 71}, + [4646] = {.lex_state = 71}, + [4647] = {.lex_state = 155}, + [4648] = {.lex_state = 155}, + [4649] = {.lex_state = 71}, + [4650] = {.lex_state = 71}, + [4651] = {.lex_state = 71}, + [4652] = {.lex_state = 155}, + [4653] = {.lex_state = 155}, + [4654] = {.lex_state = 199}, + [4655] = {.lex_state = 71}, + [4656] = {.lex_state = 71}, + [4657] = {.lex_state = 155}, + [4658] = {.lex_state = 155}, + [4659] = {.lex_state = 155}, + [4660] = {.lex_state = 71}, + [4661] = {.lex_state = 155}, + [4662] = {.lex_state = 155}, + [4663] = {.lex_state = 155}, + [4664] = {.lex_state = 71}, + [4665] = {.lex_state = 155}, + [4666] = {.lex_state = 155}, + [4667] = {.lex_state = 71}, + [4668] = {.lex_state = 155}, + [4669] = {.lex_state = 71}, + [4670] = {.lex_state = 155}, + [4671] = {.lex_state = 71}, + [4672] = {.lex_state = 155}, + [4673] = {.lex_state = 155}, + [4674] = {.lex_state = 155}, + [4675] = {.lex_state = 155}, + [4676] = {.lex_state = 155}, + [4677] = {.lex_state = 155}, + [4678] = {.lex_state = 155}, + [4679] = {.lex_state = 155}, + [4680] = {.lex_state = 155}, + [4681] = {.lex_state = 155}, + [4682] = {.lex_state = 155}, + [4683] = {.lex_state = 155}, + [4684] = {.lex_state = 155}, + [4685] = {.lex_state = 71}, + [4686] = {.lex_state = 154}, + [4687] = {.lex_state = 155}, + [4688] = {.lex_state = 155}, + [4689] = {.lex_state = 155}, + [4690] = {.lex_state = 71}, + [4691] = {.lex_state = 155}, + [4692] = {.lex_state = 71}, + [4693] = {.lex_state = 155}, + [4694] = {.lex_state = 155}, + [4695] = {.lex_state = 155}, + [4696] = {.lex_state = 155}, + [4697] = {.lex_state = 155}, + [4698] = {.lex_state = 71}, + [4699] = {.lex_state = 155}, + [4700] = {.lex_state = 155}, + [4701] = {.lex_state = 155}, + [4702] = {.lex_state = 155}, + [4703] = {.lex_state = 155}, + [4704] = {.lex_state = 197}, + [4705] = {.lex_state = 179}, + [4706] = {.lex_state = 155}, + [4707] = {.lex_state = 155}, + [4708] = {.lex_state = 155}, + [4709] = {.lex_state = 198}, + [4710] = {.lex_state = 155}, + [4711] = {.lex_state = 155}, + [4712] = {.lex_state = 155}, + [4713] = {.lex_state = 179}, + [4714] = {.lex_state = 155}, + [4715] = {.lex_state = 155}, + [4716] = {.lex_state = 179}, + [4717] = {.lex_state = 155}, + [4718] = {.lex_state = 155}, + [4719] = {.lex_state = 155}, + [4720] = {.lex_state = 155}, + [4721] = {.lex_state = 155}, + [4722] = {.lex_state = 155}, + [4723] = {.lex_state = 155}, + [4724] = {.lex_state = 155}, + [4725] = {.lex_state = 155}, + [4726] = {.lex_state = 155}, + [4727] = {.lex_state = 155}, + [4728] = {.lex_state = 155}, + [4729] = {.lex_state = 155}, + [4730] = {.lex_state = 155}, + [4731] = {.lex_state = 155}, + [4732] = {.lex_state = 155}, + [4733] = {.lex_state = 155}, + [4734] = {.lex_state = 155}, + [4735] = {.lex_state = 155}, + [4736] = {.lex_state = 155}, + [4737] = {.lex_state = 179}, + [4738] = {.lex_state = 155}, + [4739] = {.lex_state = 155}, + [4740] = {.lex_state = 155}, + [4741] = {.lex_state = 155}, + [4742] = {.lex_state = 155}, + [4743] = {.lex_state = 155}, + [4744] = {.lex_state = 155}, + [4745] = {.lex_state = 155}, + [4746] = {.lex_state = 155}, + [4747] = {.lex_state = 155}, + [4748] = {.lex_state = 184}, + [4749] = {.lex_state = 155}, + [4750] = {.lex_state = 155}, + [4751] = {.lex_state = 155}, + [4752] = {.lex_state = 155}, + [4753] = {.lex_state = 155}, + [4754] = {.lex_state = 155}, + [4755] = {.lex_state = 155}, + [4756] = {.lex_state = 155}, + [4757] = {.lex_state = 155}, + [4758] = {.lex_state = 155}, + [4759] = {.lex_state = 141}, + [4760] = {.lex_state = 141}, + [4761] = {.lex_state = 184}, + [4762] = {.lex_state = 141}, + [4763] = {.lex_state = 181}, + [4764] = {.lex_state = 141}, + [4765] = {.lex_state = 184}, + [4766] = {.lex_state = 184}, + [4767] = {.lex_state = 141}, + [4768] = {.lex_state = 197}, + [4769] = {.lex_state = 179}, + [4770] = {.lex_state = 184}, + [4771] = {.lex_state = 141}, + [4772] = {.lex_state = 197}, + [4773] = {.lex_state = 184}, + [4774] = {.lex_state = 197}, + [4775] = {.lex_state = 155}, + [4776] = {.lex_state = 184}, + [4777] = {.lex_state = 197}, + [4778] = {.lex_state = 141}, + [4779] = {.lex_state = 197}, + [4780] = {.lex_state = 155}, + [4781] = {.lex_state = 197}, + [4782] = {.lex_state = 179}, + [4783] = {.lex_state = 197}, + [4784] = {.lex_state = 184}, + [4785] = {.lex_state = 184}, + [4786] = {.lex_state = 184}, + [4787] = {.lex_state = 141}, + [4788] = {.lex_state = 184}, + [4789] = {.lex_state = 141}, + [4790] = {.lex_state = 141}, + [4791] = {.lex_state = 184}, + [4792] = {.lex_state = 155}, + [4793] = {.lex_state = 155}, + [4794] = {.lex_state = 155}, + [4795] = {.lex_state = 155}, + [4796] = {.lex_state = 155}, + [4797] = {.lex_state = 155}, + [4798] = {.lex_state = 155}, + [4799] = {.lex_state = 155}, + [4800] = {.lex_state = 155}, + [4801] = {.lex_state = 155}, + [4802] = {.lex_state = 155}, + [4803] = {.lex_state = 155}, + [4804] = {.lex_state = 155}, + [4805] = {.lex_state = 155}, + [4806] = {.lex_state = 155}, + [4807] = {.lex_state = 155}, + [4808] = {.lex_state = 155}, + [4809] = {.lex_state = 155}, + [4810] = {.lex_state = 155}, + [4811] = {.lex_state = 155}, + [4812] = {.lex_state = 155}, + [4813] = {.lex_state = 155}, + [4814] = {.lex_state = 155}, + [4815] = {.lex_state = 155}, + [4816] = {.lex_state = 155}, + [4817] = {.lex_state = 155}, + [4818] = {.lex_state = 155}, + [4819] = {.lex_state = 155}, + [4820] = {.lex_state = 155}, + [4821] = {.lex_state = 155}, + [4822] = {.lex_state = 155}, + [4823] = {.lex_state = 155}, + [4824] = {.lex_state = 155}, + [4825] = {.lex_state = 155}, + [4826] = {.lex_state = 155}, + [4827] = {.lex_state = 155}, + [4828] = {.lex_state = 155}, + [4829] = {.lex_state = 155}, + [4830] = {.lex_state = 155}, + [4831] = {.lex_state = 155}, + [4832] = {.lex_state = 155}, + [4833] = {.lex_state = 155}, + [4834] = {.lex_state = 155}, + [4835] = {.lex_state = 155}, + [4836] = {.lex_state = 155}, + [4837] = {.lex_state = 155}, + [4838] = {.lex_state = 155}, + [4839] = {.lex_state = 155}, + [4840] = {.lex_state = 155}, + [4841] = {.lex_state = 155}, + [4842] = {.lex_state = 155}, + [4843] = {.lex_state = 155}, + [4844] = {.lex_state = 155}, + [4845] = {.lex_state = 155}, + [4846] = {.lex_state = 155}, + [4847] = {.lex_state = 199}, + [4848] = {.lex_state = 155}, + [4849] = {.lex_state = 155}, + [4850] = {.lex_state = 155}, + [4851] = {.lex_state = 155}, + [4852] = {.lex_state = 155}, + [4853] = {.lex_state = 155}, + [4854] = {.lex_state = 155}, + [4855] = {.lex_state = 155}, + [4856] = {.lex_state = 155}, + [4857] = {.lex_state = 155}, + [4858] = {.lex_state = 155}, + [4859] = {.lex_state = 155}, + [4860] = {.lex_state = 155}, + [4861] = {.lex_state = 155}, + [4862] = {.lex_state = 155}, + [4863] = {.lex_state = 155}, + [4864] = {.lex_state = 155}, + [4865] = {.lex_state = 155}, + [4866] = {.lex_state = 155}, + [4867] = {.lex_state = 155}, + [4868] = {.lex_state = 155}, + [4869] = {.lex_state = 155}, + [4870] = {.lex_state = 155}, + [4871] = {.lex_state = 155}, + [4872] = {.lex_state = 155}, + [4873] = {.lex_state = 155}, + [4874] = {.lex_state = 155}, + [4875] = {.lex_state = 155}, + [4876] = {.lex_state = 155}, + [4877] = {.lex_state = 155}, + [4878] = {.lex_state = 155}, + [4879] = {.lex_state = 155}, + [4880] = {.lex_state = 155}, + [4881] = {.lex_state = 155}, + [4882] = {.lex_state = 155}, + [4883] = {.lex_state = 155}, + [4884] = {.lex_state = 155}, + [4885] = {.lex_state = 155}, + [4886] = {.lex_state = 155}, + [4887] = {.lex_state = 155}, + [4888] = {.lex_state = 155}, + [4889] = {.lex_state = 155}, + [4890] = {.lex_state = 155}, + [4891] = {.lex_state = 155}, + [4892] = {.lex_state = 179}, + [4893] = {.lex_state = 179}, + [4894] = {.lex_state = 141}, + [4895] = {.lex_state = 197}, + [4896] = {.lex_state = 179}, + [4897] = {.lex_state = 141}, + [4898] = {.lex_state = 179}, + [4899] = {.lex_state = 155}, + [4900] = {.lex_state = 179}, + [4901] = {.lex_state = 200}, + [4902] = {.lex_state = 200}, + [4903] = {.lex_state = 141}, + [4904] = {.lex_state = 155}, + [4905] = {.lex_state = 179}, + [4906] = {.lex_state = 179}, + [4907] = {.lex_state = 155}, + [4908] = {.lex_state = 197}, + [4909] = {.lex_state = 200}, + [4910] = {.lex_state = 155}, + [4911] = {.lex_state = 179}, + [4912] = {.lex_state = 141}, + [4913] = {.lex_state = 179}, + [4914] = {.lex_state = 179}, + [4915] = {.lex_state = 200}, + [4916] = {.lex_state = 179}, + [4917] = {.lex_state = 141}, + [4918] = {.lex_state = 179}, + [4919] = {.lex_state = 155}, + [4920] = {.lex_state = 141}, + [4921] = {.lex_state = 141}, + [4922] = {.lex_state = 179}, + [4923] = {.lex_state = 179}, + [4924] = {.lex_state = 155}, + [4925] = {.lex_state = 184}, + [4926] = {.lex_state = 141}, + [4927] = {.lex_state = 141}, + [4928] = {.lex_state = 155}, + [4929] = {.lex_state = 179}, + [4930] = {.lex_state = 179}, + [4931] = {.lex_state = 141}, + [4932] = {.lex_state = 155}, + [4933] = {.lex_state = 200}, + [4934] = {.lex_state = 179}, + [4935] = {.lex_state = 155}, + [4936] = {.lex_state = 200}, + [4937] = {.lex_state = 155}, + [4938] = {.lex_state = 155}, + [4939] = {.lex_state = 155}, + [4940] = {.lex_state = 179}, + [4941] = {.lex_state = 155}, + [4942] = {.lex_state = 155}, + [4943] = {.lex_state = 197}, + [4944] = {.lex_state = 155}, + [4945] = {.lex_state = 199}, + [4946] = {.lex_state = 155}, + [4947] = {.lex_state = 155}, + [4948] = {.lex_state = 199}, + [4949] = {.lex_state = 155}, + [4950] = {.lex_state = 199}, + [4951] = {.lex_state = 199}, + [4952] = {.lex_state = 155}, + [4953] = {.lex_state = 261}, + [4954] = {.lex_state = 261}, + [4955] = {.lex_state = 184}, + [4956] = {.lex_state = 199}, + [4957] = {.lex_state = 261}, + [4958] = {.lex_state = 184}, + [4959] = {.lex_state = 184}, + [4960] = {.lex_state = 199}, + [4961] = {.lex_state = 199}, + [4962] = {.lex_state = 155}, + [4963] = {.lex_state = 197}, + [4964] = {.lex_state = 199}, + [4965] = {.lex_state = 199}, + [4966] = {.lex_state = 199}, + [4967] = {.lex_state = 155}, + [4968] = {.lex_state = 155}, + [4969] = {.lex_state = 155}, + [4970] = {.lex_state = 155}, + [4971] = {.lex_state = 184}, + [4972] = {.lex_state = 261}, + [4973] = {.lex_state = 155}, + [4974] = {.lex_state = 184}, + [4975] = {.lex_state = 155}, + [4976] = {.lex_state = 184}, + [4977] = {.lex_state = 199}, + [4978] = {.lex_state = 155}, + [4979] = {.lex_state = 155}, + [4980] = {.lex_state = 199}, + [4981] = {.lex_state = 184}, + [4982] = {.lex_state = 199}, + [4983] = {.lex_state = 184}, + [4984] = {.lex_state = 155}, + [4985] = {.lex_state = 199}, + [4986] = {.lex_state = 261}, + [4987] = {.lex_state = 261}, + [4988] = {.lex_state = 184}, + [4989] = {.lex_state = 199}, + [4990] = {.lex_state = 199}, + [4991] = {.lex_state = 197}, + [4992] = {.lex_state = 155}, + [4993] = {.lex_state = 155}, + [4994] = {.lex_state = 155}, + [4995] = {.lex_state = 155}, + [4996] = {.lex_state = 155}, + [4997] = {.lex_state = 199}, + [4998] = {.lex_state = 155}, + [4999] = {.lex_state = 199}, + [5000] = {.lex_state = 197}, + [5001] = {.lex_state = 155}, + [5002] = {.lex_state = 199}, + [5003] = {.lex_state = 199}, + [5004] = {.lex_state = 197}, + [5005] = {.lex_state = 203}, + [5006] = {.lex_state = 155}, + [5007] = {.lex_state = 141}, + [5008] = {.lex_state = 155}, + [5009] = {.lex_state = 199}, + [5010] = {.lex_state = 199}, + [5011] = {.lex_state = 199}, + [5012] = {.lex_state = 199}, + [5013] = {.lex_state = 199}, + [5014] = {.lex_state = 199}, + [5015] = {.lex_state = 199}, + [5016] = {.lex_state = 199}, + [5017] = {.lex_state = 199}, + [5018] = {.lex_state = 199}, + [5019] = {.lex_state = 197}, + [5020] = {.lex_state = 197}, + [5021] = {.lex_state = 199}, + [5022] = {.lex_state = 199}, + [5023] = {.lex_state = 199}, + [5024] = {.lex_state = 199}, + [5025] = {.lex_state = 261}, + [5026] = {.lex_state = 155}, + [5027] = {.lex_state = 197}, + [5028] = {.lex_state = 155}, + [5029] = {.lex_state = 199}, + [5030] = {.lex_state = 199}, + [5031] = {.lex_state = 199}, + [5032] = {.lex_state = 198}, + [5033] = {.lex_state = 198}, + [5034] = {.lex_state = 197}, + [5035] = {.lex_state = 197}, + [5036] = {.lex_state = 155}, + [5037] = {.lex_state = 199}, + [5038] = {.lex_state = 199}, + [5039] = {.lex_state = 155}, + [5040] = {.lex_state = 199}, + [5041] = {.lex_state = 199}, + [5042] = {.lex_state = 155}, + [5043] = {.lex_state = 155}, + [5044] = {.lex_state = 199}, + [5045] = {.lex_state = 199}, + [5046] = {.lex_state = 199}, + [5047] = {.lex_state = 199}, + [5048] = {.lex_state = 155}, + [5049] = {.lex_state = 155}, + [5050] = {.lex_state = 199}, + [5051] = {.lex_state = 199}, + [5052] = {.lex_state = 155}, + [5053] = {.lex_state = 155}, + [5054] = {.lex_state = 199}, + [5055] = {.lex_state = 197}, + [5056] = {.lex_state = 199}, + [5057] = {.lex_state = 199}, + [5058] = {.lex_state = 199}, + [5059] = {.lex_state = 199}, + [5060] = {.lex_state = 199}, + [5061] = {.lex_state = 197}, + [5062] = {.lex_state = 199}, + [5063] = {.lex_state = 199}, + [5064] = {.lex_state = 199}, + [5065] = {.lex_state = 199}, + [5066] = {.lex_state = 199}, + [5067] = {.lex_state = 199}, + [5068] = {.lex_state = 199}, + [5069] = {.lex_state = 155}, + [5070] = {.lex_state = 199}, + [5071] = {.lex_state = 199}, + [5072] = {.lex_state = 155}, + [5073] = {.lex_state = 199}, + [5074] = {.lex_state = 199}, + [5075] = {.lex_state = 199}, + [5076] = {.lex_state = 199}, + [5077] = {.lex_state = 199}, + [5078] = {.lex_state = 200}, + [5079] = {.lex_state = 197}, + [5080] = {.lex_state = 199}, + [5081] = {.lex_state = 198}, + [5082] = {.lex_state = 199}, + [5083] = {.lex_state = 199}, + [5084] = {.lex_state = 199}, + [5085] = {.lex_state = 197}, + [5086] = {.lex_state = 199}, + [5087] = {.lex_state = 199}, + [5088] = {.lex_state = 179}, + [5089] = {.lex_state = 199}, + [5090] = {.lex_state = 199}, + [5091] = {.lex_state = 199}, + [5092] = {.lex_state = 198}, + [5093] = {.lex_state = 199}, + [5094] = {.lex_state = 199}, + [5095] = {.lex_state = 199}, + [5096] = {.lex_state = 198}, + [5097] = {.lex_state = 198}, + [5098] = {.lex_state = 199}, + [5099] = {.lex_state = 199}, + [5100] = {.lex_state = 199}, + [5101] = {.lex_state = 198}, + [5102] = {.lex_state = 198}, + [5103] = {.lex_state = 199}, + [5104] = {.lex_state = 199}, + [5105] = {.lex_state = 197}, + [5106] = {.lex_state = 198}, + [5107] = {.lex_state = 200}, + [5108] = {.lex_state = 198}, + [5109] = {.lex_state = 199}, + [5110] = {.lex_state = 199}, + [5111] = {.lex_state = 198}, + [5112] = {.lex_state = 199}, + [5113] = {.lex_state = 199}, + [5114] = {.lex_state = 200}, + [5115] = {.lex_state = 199}, + [5116] = {.lex_state = 197}, + [5117] = {.lex_state = 199}, + [5118] = {.lex_state = 197}, + [5119] = {.lex_state = 198}, + [5120] = {.lex_state = 199}, + [5121] = {.lex_state = 199}, [5122] = {.lex_state = 155}, - [5123] = {.lex_state = 155}, - [5124] = {.lex_state = 182}, - [5125] = {.lex_state = 152}, - [5126] = {.lex_state = 131}, - [5127] = {.lex_state = 152}, - [5128] = {.lex_state = 154}, - [5129] = {.lex_state = 152}, - [5130] = {.lex_state = 245}, - [5131] = {.lex_state = 152}, - [5132] = {.lex_state = 165}, - [5133] = {.lex_state = 152}, - [5134] = {.lex_state = 154}, - [5135] = {.lex_state = 152}, - [5136] = {.lex_state = 152}, - [5137] = {.lex_state = 152}, - [5138] = {.lex_state = 245}, - [5139] = {.lex_state = 152}, - [5140] = {.lex_state = 152}, - [5141] = {.lex_state = 131}, - [5142] = {.lex_state = 152}, - [5143] = {.lex_state = 152}, - [5144] = {.lex_state = 152}, - [5145] = {.lex_state = 155}, - [5146] = {.lex_state = 152}, - [5147] = {.lex_state = 152}, - [5148] = {.lex_state = 152}, - [5149] = {.lex_state = 154}, - [5150] = {.lex_state = 152}, - [5151] = {.lex_state = 146}, - [5152] = {.lex_state = 152}, - [5153] = {.lex_state = 152}, - [5154] = {.lex_state = 152}, - [5155] = {.lex_state = 245}, - [5156] = {.lex_state = 152}, - [5157] = {.lex_state = 245}, - [5158] = {.lex_state = 152}, - [5159] = {.lex_state = 131}, - [5160] = {.lex_state = 146}, - [5161] = {.lex_state = 154}, - [5162] = {.lex_state = 131}, + [5123] = {.lex_state = 198}, + [5124] = {.lex_state = 199}, + [5125] = {.lex_state = 199}, + [5126] = {.lex_state = 199}, + [5127] = {.lex_state = 198}, + [5128] = {.lex_state = 155}, + [5129] = {.lex_state = 199}, + [5130] = {.lex_state = 199}, + [5131] = {.lex_state = 199}, + [5132] = {.lex_state = 199}, + [5133] = {.lex_state = 198}, + [5134] = {.lex_state = 199}, + [5135] = {.lex_state = 199}, + [5136] = {.lex_state = 198}, + [5137] = {.lex_state = 198}, + [5138] = {.lex_state = 198}, + [5139] = {.lex_state = 199}, + [5140] = {.lex_state = 200}, + [5141] = {.lex_state = 198}, + [5142] = {.lex_state = 200}, + [5143] = {.lex_state = 179}, + [5144] = {.lex_state = 199}, + [5145] = {.lex_state = 198}, + [5146] = {.lex_state = 200}, + [5147] = {.lex_state = 198}, + [5148] = {.lex_state = 197}, + [5149] = {.lex_state = 155}, + [5150] = {.lex_state = 155}, + [5151] = {.lex_state = 261}, + [5152] = {.lex_state = 261}, + [5153] = {.lex_state = 155}, + [5154] = {.lex_state = 200}, + [5155] = {.lex_state = 197}, + [5156] = {.lex_state = 261}, + [5157] = {.lex_state = 155}, + [5158] = {.lex_state = 197}, + [5159] = {.lex_state = 155}, + [5160] = {.lex_state = 155}, + [5161] = {.lex_state = 155}, + [5162] = {.lex_state = 197}, [5163] = {.lex_state = 155}, - [5164] = {.lex_state = 152}, - [5165] = {.lex_state = 154}, - [5166] = {.lex_state = 152}, - [5167] = {.lex_state = 152}, - [5168] = {.lex_state = 152}, - [5169] = {.lex_state = 152}, - [5170] = {.lex_state = 245}, - [5171] = {.lex_state = 245}, - [5172] = {.lex_state = 155}, - [5173] = {.lex_state = 146}, - [5174] = {.lex_state = 245}, - [5175] = {.lex_state = 152}, - [5176] = {.lex_state = 245}, - [5177] = {.lex_state = 181}, - [5178] = {.lex_state = 181}, - [5179] = {.lex_state = 245}, - [5180] = {.lex_state = 131}, - [5181] = {.lex_state = 155}, - [5182] = {.lex_state = 245}, - [5183] = {.lex_state = 155}, - [5184] = {.lex_state = 181}, - [5185] = {.lex_state = 181}, + [5164] = {.lex_state = 199}, + [5165] = {.lex_state = 155}, + [5166] = {.lex_state = 155}, + [5167] = {.lex_state = 261}, + [5168] = {.lex_state = 155}, + [5169] = {.lex_state = 155}, + [5170] = {.lex_state = 199}, + [5171] = {.lex_state = 155}, + [5172] = {.lex_state = 199}, + [5173] = {.lex_state = 197}, + [5174] = {.lex_state = 155}, + [5175] = {.lex_state = 155}, + [5176] = {.lex_state = 199}, + [5177] = {.lex_state = 155}, + [5178] = {.lex_state = 184}, + [5179] = {.lex_state = 199}, + [5180] = {.lex_state = 155}, + [5181] = {.lex_state = 261}, + [5182] = {.lex_state = 155}, + [5183] = {.lex_state = 199}, + [5184] = {.lex_state = 155}, + [5185] = {.lex_state = 199}, [5186] = {.lex_state = 155}, - [5187] = {.lex_state = 155}, + [5187] = {.lex_state = 199}, [5188] = {.lex_state = 155}, [5189] = {.lex_state = 155}, - [5190] = {.lex_state = 181}, + [5190] = {.lex_state = 155}, [5191] = {.lex_state = 155}, - [5192] = {.lex_state = 181}, - [5193] = {.lex_state = 245}, - [5194] = {.lex_state = 245}, - [5195] = {.lex_state = 245}, - [5196] = {.lex_state = 184}, - [5197] = {.lex_state = 181}, - [5198] = {.lex_state = 181}, - [5199] = {.lex_state = 181}, - [5200] = {.lex_state = 155}, - [5201] = {.lex_state = 245}, - [5202] = {.lex_state = 245}, - [5203] = {.lex_state = 181}, - [5204] = {.lex_state = 152}, - [5205] = {.lex_state = 155}, - [5206] = {.lex_state = 152}, - [5207] = {.lex_state = 152}, - [5208] = {.lex_state = 181}, - [5209] = {.lex_state = 245}, - [5210] = {.lex_state = 245}, - [5211] = {.lex_state = 155}, - [5212] = {.lex_state = 181}, - [5213] = {.lex_state = 155}, - [5214] = {.lex_state = 155}, - [5215] = {.lex_state = 181}, + [5192] = {.lex_state = 155}, + [5193] = {.lex_state = 155}, + [5194] = {.lex_state = 155}, + [5195] = {.lex_state = 199}, + [5196] = {.lex_state = 155}, + [5197] = {.lex_state = 184}, + [5198] = {.lex_state = 199}, + [5199] = {.lex_state = 155}, + [5200] = {.lex_state = 197}, + [5201] = {.lex_state = 197}, + [5202] = {.lex_state = 155}, + [5203] = {.lex_state = 197}, + [5204] = {.lex_state = 261}, + [5205] = {.lex_state = 192}, + [5206] = {.lex_state = 261}, + [5207] = {.lex_state = 155}, + [5208] = {.lex_state = 155}, + [5209] = {.lex_state = 155}, + [5210] = {.lex_state = 198}, + [5211] = {.lex_state = 198}, + [5212] = {.lex_state = 155}, + [5213] = {.lex_state = 0, .external_lex_state = 1}, + [5214] = {.lex_state = 0, .external_lex_state = 1}, + [5215] = {.lex_state = 192}, [5216] = {.lex_state = 155}, - [5217] = {.lex_state = 155}, - [5218] = {.lex_state = 152}, - [5219] = {.lex_state = 131}, - [5220] = {.lex_state = 152}, - [5221] = {.lex_state = 181}, - [5222] = {.lex_state = 245}, - [5223] = {.lex_state = 245}, - [5224] = {.lex_state = 146}, - [5225] = {.lex_state = 245}, - [5226] = {.lex_state = 146}, - [5227] = {.lex_state = 245}, - [5228] = {.lex_state = 146}, - [5229] = {.lex_state = 245}, - [5230] = {.lex_state = 152}, - [5231] = {.lex_state = 146}, - [5232] = {.lex_state = 181}, - [5233] = {.lex_state = 146}, - [5234] = {.lex_state = 154}, - [5235] = {.lex_state = 131}, - [5236] = {.lex_state = 146}, - [5237] = {.lex_state = 152}, - [5238] = {.lex_state = 146}, - [5239] = {.lex_state = 152}, - [5240] = {.lex_state = 152}, - [5241] = {.lex_state = 245}, - [5242] = {.lex_state = 245}, - [5243] = {.lex_state = 245}, - [5244] = {.lex_state = 154}, - [5245] = {.lex_state = 245}, - [5246] = {.lex_state = 131}, - [5247] = {.lex_state = 152}, - [5248] = {.lex_state = 245}, - [5249] = {.lex_state = 131}, - [5250] = {.lex_state = 156}, - [5251] = {.lex_state = 156}, - [5252] = {.lex_state = 156}, - [5253] = {.lex_state = 131}, - [5254] = {.lex_state = 156}, - [5255] = {.lex_state = 0}, - [5256] = {.lex_state = 131}, - [5257] = {.lex_state = 245}, - [5258] = {.lex_state = 0}, - [5259] = {.lex_state = 152}, - [5260] = {.lex_state = 245}, - [5261] = {.lex_state = 156}, - [5262] = {.lex_state = 156}, - [5263] = {.lex_state = 156}, - [5264] = {.lex_state = 0}, - [5265] = {.lex_state = 156}, - [5266] = {.lex_state = 156}, - [5267] = {.lex_state = 156}, - [5268] = {.lex_state = 84}, - [5269] = {.lex_state = 181}, - [5270] = {.lex_state = 156}, - [5271] = {.lex_state = 156}, - [5272] = {.lex_state = 156}, - [5273] = {.lex_state = 156}, - [5274] = {.lex_state = 181}, - [5275] = {.lex_state = 156}, - [5276] = {.lex_state = 84}, - [5277] = {.lex_state = 156}, - [5278] = {.lex_state = 245}, - [5279] = {.lex_state = 131}, - [5280] = {.lex_state = 152}, - [5281] = {.lex_state = 181}, - [5282] = {.lex_state = 245}, - [5283] = {.lex_state = 86}, + [5217] = {.lex_state = 0, .external_lex_state = 1}, + [5218] = {.lex_state = 198}, + [5219] = {.lex_state = 197}, + [5220] = {.lex_state = 261}, + [5221] = {.lex_state = 261}, + [5222] = {.lex_state = 198}, + [5223] = {.lex_state = 155}, + [5224] = {.lex_state = 198}, + [5225] = {.lex_state = 198}, + [5226] = {.lex_state = 198}, + [5227] = {.lex_state = 198}, + [5228] = {.lex_state = 198}, + [5229] = {.lex_state = 261}, + [5230] = {.lex_state = 261}, + [5231] = {.lex_state = 261}, + [5232] = {.lex_state = 261}, + [5233] = {.lex_state = 155}, + [5234] = {.lex_state = 198}, + [5235] = {.lex_state = 198}, + [5236] = {.lex_state = 0, .external_lex_state = 1}, + [5237] = {.lex_state = 198}, + [5238] = {.lex_state = 261}, + [5239] = {.lex_state = 0, .external_lex_state = 1}, + [5240] = {.lex_state = 261}, + [5241] = {.lex_state = 261}, + [5242] = {.lex_state = 0, .external_lex_state = 1}, + [5243] = {.lex_state = 198}, + [5244] = {.lex_state = 0, .external_lex_state = 1}, + [5245] = {.lex_state = 261}, + [5246] = {.lex_state = 197}, + [5247] = {.lex_state = 261}, + [5248] = {.lex_state = 261}, + [5249] = {.lex_state = 261}, + [5250] = {.lex_state = 198}, + [5251] = {.lex_state = 198}, + [5252] = {.lex_state = 261}, + [5253] = {.lex_state = 156}, + [5254] = {.lex_state = 198}, + [5255] = {.lex_state = 197}, + [5256] = {.lex_state = 198}, + [5257] = {.lex_state = 199}, + [5258] = {.lex_state = 261}, + [5259] = {.lex_state = 261}, + [5260] = {.lex_state = 261}, + [5261] = {.lex_state = 155}, + [5262] = {.lex_state = 155}, + [5263] = {.lex_state = 199}, + [5264] = {.lex_state = 261}, + [5265] = {.lex_state = 192}, + [5266] = {.lex_state = 141}, + [5267] = {.lex_state = 261}, + [5268] = {.lex_state = 199}, + [5269] = {.lex_state = 198}, + [5270] = {.lex_state = 261}, + [5271] = {.lex_state = 261}, + [5272] = {.lex_state = 192}, + [5273] = {.lex_state = 199}, + [5274] = {.lex_state = 198}, + [5275] = {.lex_state = 261}, + [5276] = {.lex_state = 199}, + [5277] = {.lex_state = 155}, + [5278] = {.lex_state = 197}, + [5279] = {.lex_state = 197}, + [5280] = {.lex_state = 197}, + [5281] = {.lex_state = 261}, + [5282] = {.lex_state = 199}, + [5283] = {.lex_state = 261}, [5284] = {.lex_state = 156}, - [5285] = {.lex_state = 156}, - [5286] = {.lex_state = 245}, - [5287] = {.lex_state = 156}, - [5288] = {.lex_state = 181}, + [5285] = {.lex_state = 261}, + [5286] = {.lex_state = 199}, + [5287] = {.lex_state = 198}, + [5288] = {.lex_state = 165}, [5289] = {.lex_state = 156}, - [5290] = {.lex_state = 245}, - [5291] = {.lex_state = 131}, - [5292] = {.lex_state = 152}, - [5293] = {.lex_state = 152}, - [5294] = {.lex_state = 84}, - [5295] = {.lex_state = 131}, - [5296] = {.lex_state = 84}, - [5297] = {.lex_state = 0}, - [5298] = {.lex_state = 181}, - [5299] = {.lex_state = 156}, - [5300] = {.lex_state = 181}, - [5301] = {.lex_state = 84}, - [5302] = {.lex_state = 156}, - [5303] = {.lex_state = 152}, - [5304] = {.lex_state = 156}, - [5305] = {.lex_state = 156}, - [5306] = {.lex_state = 156}, - [5307] = {.lex_state = 156}, - [5308] = {.lex_state = 86}, - [5309] = {.lex_state = 156}, - [5310] = {.lex_state = 156}, - [5311] = {.lex_state = 156}, - [5312] = {.lex_state = 156}, - [5313] = {.lex_state = 86}, - [5314] = {.lex_state = 181}, - [5315] = {.lex_state = 156}, - [5316] = {.lex_state = 156}, - [5317] = {.lex_state = 156}, - [5318] = {.lex_state = 156}, - [5319] = {.lex_state = 0}, - [5320] = {.lex_state = 156}, - [5321] = {.lex_state = 156}, - [5322] = {.lex_state = 131}, - [5323] = {.lex_state = 152}, - [5324] = {.lex_state = 245}, - [5325] = {.lex_state = 131}, - [5326] = {.lex_state = 245}, - [5327] = {.lex_state = 245}, - [5328] = {.lex_state = 156}, - [5329] = {.lex_state = 156}, - [5330] = {.lex_state = 156}, - [5331] = {.lex_state = 156}, - [5332] = {.lex_state = 156}, - [5333] = {.lex_state = 156}, - [5334] = {.lex_state = 156}, - [5335] = {.lex_state = 156}, - [5336] = {.lex_state = 156}, + [5290] = {.lex_state = 155}, + [5291] = {.lex_state = 0, .external_lex_state = 1}, + [5292] = {.lex_state = 198}, + [5293] = {.lex_state = 198}, + [5294] = {.lex_state = 200}, + [5295] = {.lex_state = 155}, + [5296] = {.lex_state = 198}, + [5297] = {.lex_state = 0, .external_lex_state = 1}, + [5298] = {.lex_state = 156}, + [5299] = {.lex_state = 198}, + [5300] = {.lex_state = 155}, + [5301] = {.lex_state = 165}, + [5302] = {.lex_state = 155}, + [5303] = {.lex_state = 155}, + [5304] = {.lex_state = 261}, + [5305] = {.lex_state = 155}, + [5306] = {.lex_state = 155}, + [5307] = {.lex_state = 261}, + [5308] = {.lex_state = 197}, + [5309] = {.lex_state = 198}, + [5310] = {.lex_state = 155}, + [5311] = {.lex_state = 261}, + [5312] = {.lex_state = 261}, + [5313] = {.lex_state = 155}, + [5314] = {.lex_state = 156}, + [5315] = {.lex_state = 198}, + [5316] = {.lex_state = 197}, + [5317] = {.lex_state = 198}, + [5318] = {.lex_state = 155}, + [5319] = {.lex_state = 155}, + [5320] = {.lex_state = 0, .external_lex_state = 1}, + [5321] = {.lex_state = 200}, + [5322] = {.lex_state = 0, .external_lex_state = 1}, + [5323] = {.lex_state = 155}, + [5324] = {.lex_state = 155}, + [5325] = {.lex_state = 198}, + [5326] = {.lex_state = 261}, + [5327] = {.lex_state = 198}, + [5328] = {.lex_state = 0, .external_lex_state = 1}, + [5329] = {.lex_state = 198}, + [5330] = {.lex_state = 0, .external_lex_state = 1}, + [5331] = {.lex_state = 0, .external_lex_state = 1}, + [5332] = {.lex_state = 155}, + [5333] = {.lex_state = 155}, + [5334] = {.lex_state = 261}, + [5335] = {.lex_state = 200}, + [5336] = {.lex_state = 261}, [5337] = {.lex_state = 156}, - [5338] = {.lex_state = 156}, - [5339] = {.lex_state = 131}, - [5340] = {.lex_state = 156}, + [5338] = {.lex_state = 165}, + [5339] = {.lex_state = 166}, + [5340] = {.lex_state = 155}, [5341] = {.lex_state = 156}, - [5342] = {.lex_state = 86}, - [5343] = {.lex_state = 131}, - [5344] = {.lex_state = 156}, - [5345] = {.lex_state = 156}, - [5346] = {.lex_state = 156}, - [5347] = {.lex_state = 245}, - [5348] = {.lex_state = 156}, - [5349] = {.lex_state = 84}, - [5350] = {.lex_state = 156}, - [5351] = {.lex_state = 0}, - [5352] = {.lex_state = 152}, - [5353] = {.lex_state = 156}, - [5354] = {.lex_state = 156}, - [5355] = {.lex_state = 156}, - [5356] = {.lex_state = 156}, - [5357] = {.lex_state = 156}, - [5358] = {.lex_state = 156}, - [5359] = {.lex_state = 156}, - [5360] = {.lex_state = 156}, - [5361] = {.lex_state = 156}, - [5362] = {.lex_state = 156}, + [5342] = {.lex_state = 261}, + [5343] = {.lex_state = 155}, + [5344] = {.lex_state = 155}, + [5345] = {.lex_state = 155}, + [5346] = {.lex_state = 155}, + [5347] = {.lex_state = 155}, + [5348] = {.lex_state = 141}, + [5349] = {.lex_state = 155}, + [5350] = {.lex_state = 155}, + [5351] = {.lex_state = 155}, + [5352] = {.lex_state = 155}, + [5353] = {.lex_state = 155}, + [5354] = {.lex_state = 155}, + [5355] = {.lex_state = 155}, + [5356] = {.lex_state = 155}, + [5357] = {.lex_state = 155}, + [5358] = {.lex_state = 155}, + [5359] = {.lex_state = 261}, + [5360] = {.lex_state = 261}, + [5361] = {.lex_state = 166}, + [5362] = {.lex_state = 155}, [5363] = {.lex_state = 156}, - [5364] = {.lex_state = 245}, - [5365] = {.lex_state = 156}, - [5366] = {.lex_state = 156}, - [5367] = {.lex_state = 245}, - [5368] = {.lex_state = 156}, - [5369] = {.lex_state = 131}, - [5370] = {.lex_state = 156}, - [5371] = {.lex_state = 245}, - [5372] = {.lex_state = 156}, - [5373] = {.lex_state = 84}, - [5374] = {.lex_state = 84}, - [5375] = {.lex_state = 156}, + [5364] = {.lex_state = 184}, + [5365] = {.lex_state = 166}, + [5366] = {.lex_state = 166}, + [5367] = {.lex_state = 166}, + [5368] = {.lex_state = 166}, + [5369] = {.lex_state = 155}, + [5370] = {.lex_state = 141}, + [5371] = {.lex_state = 165}, + [5372] = {.lex_state = 166}, + [5373] = {.lex_state = 184}, + [5374] = {.lex_state = 155}, + [5375] = {.lex_state = 261}, [5376] = {.lex_state = 156}, - [5377] = {.lex_state = 131}, - [5378] = {.lex_state = 131}, + [5377] = {.lex_state = 156}, + [5378] = {.lex_state = 155}, [5379] = {.lex_state = 156}, - [5380] = {.lex_state = 156}, - [5381] = {.lex_state = 156}, - [5382] = {.lex_state = 245}, - [5383] = {.lex_state = 156}, - [5384] = {.lex_state = 181}, - [5385] = {.lex_state = 152}, - [5386] = {.lex_state = 156}, - [5387] = {.lex_state = 156}, - [5388] = {.lex_state = 152}, - [5389] = {.lex_state = 245}, - [5390] = {.lex_state = 156}, - [5391] = {.lex_state = 86}, - [5392] = {.lex_state = 181}, - [5393] = {.lex_state = 156}, - [5394] = {.lex_state = 156}, - [5395] = {.lex_state = 131}, + [5380] = {.lex_state = 155}, + [5381] = {.lex_state = 155}, + [5382] = {.lex_state = 184}, + [5383] = {.lex_state = 155}, + [5384] = {.lex_state = 261}, + [5385] = {.lex_state = 261}, + [5386] = {.lex_state = 155}, + [5387] = {.lex_state = 155}, + [5388] = {.lex_state = 155}, + [5389] = {.lex_state = 261}, + [5390] = {.lex_state = 261}, + [5391] = {.lex_state = 166}, + [5392] = {.lex_state = 261}, + [5393] = {.lex_state = 166}, + [5394] = {.lex_state = 155}, + [5395] = {.lex_state = 155}, [5396] = {.lex_state = 156}, - [5397] = {.lex_state = 0}, - [5398] = {.lex_state = 84}, - [5399] = {.lex_state = 156}, - [5400] = {.lex_state = 156}, - [5401] = {.lex_state = 131}, - [5402] = {.lex_state = 156}, - [5403] = {.lex_state = 156}, - [5404] = {.lex_state = 156}, - [5405] = {.lex_state = 156}, - [5406] = {.lex_state = 156}, - [5407] = {.lex_state = 156}, - [5408] = {.lex_state = 156}, - [5409] = {.lex_state = 156}, - [5410] = {.lex_state = 0}, - [5411] = {.lex_state = 156}, - [5412] = {.lex_state = 156}, - [5413] = {.lex_state = 156}, - [5414] = {.lex_state = 0}, - [5415] = {.lex_state = 156}, - [5416] = {.lex_state = 156}, - [5417] = {.lex_state = 156}, - [5418] = {.lex_state = 0}, - [5419] = {.lex_state = 156}, - [5420] = {.lex_state = 245}, - [5421] = {.lex_state = 245}, - [5422] = {.lex_state = 131}, - [5423] = {.lex_state = 156}, - [5424] = {.lex_state = 245}, - [5425] = {.lex_state = 156}, - [5426] = {.lex_state = 245}, - [5427] = {.lex_state = 84}, - [5428] = {.lex_state = 131}, - [5429] = {.lex_state = 131}, - [5430] = {.lex_state = 84}, - [5431] = {.lex_state = 156}, - [5432] = {.lex_state = 156}, - [5433] = {.lex_state = 156}, - [5434] = {.lex_state = 156}, - [5435] = {.lex_state = 0}, - [5436] = {.lex_state = 154}, - [5437] = {.lex_state = 156}, - [5438] = {.lex_state = 131}, - [5439] = {.lex_state = 156}, - [5440] = {.lex_state = 0}, - [5441] = {.lex_state = 156}, - [5442] = {.lex_state = 156}, - [5443] = {.lex_state = 156}, - [5444] = {.lex_state = 84}, - [5445] = {.lex_state = 156}, - [5446] = {.lex_state = 156}, - [5447] = {.lex_state = 86}, - [5448] = {.lex_state = 152}, - [5449] = {.lex_state = 156}, - [5450] = {.lex_state = 156}, - [5451] = {.lex_state = 131}, - [5452] = {.lex_state = 86}, - [5453] = {.lex_state = 156}, - [5454] = {.lex_state = 245}, - [5455] = {.lex_state = 152}, - [5456] = {.lex_state = 156}, - [5457] = {.lex_state = 156}, - [5458] = {.lex_state = 156}, - [5459] = {.lex_state = 156}, - [5460] = {.lex_state = 156}, - [5461] = {.lex_state = 84}, - [5462] = {.lex_state = 245}, - [5463] = {.lex_state = 156}, - [5464] = {.lex_state = 152}, - [5465] = {.lex_state = 181}, - [5466] = {.lex_state = 131}, - [5467] = {.lex_state = 156}, - [5468] = {.lex_state = 131}, - [5469] = {.lex_state = 156}, - [5470] = {.lex_state = 131}, - [5471] = {.lex_state = 156}, - [5472] = {.lex_state = 156}, - [5473] = {.lex_state = 84}, - [5474] = {.lex_state = 156}, - [5475] = {.lex_state = 156}, - [5476] = {.lex_state = 156}, - [5477] = {.lex_state = 156}, - [5478] = {.lex_state = 156}, - [5479] = {.lex_state = 156}, - [5480] = {.lex_state = 84}, - [5481] = {.lex_state = 156}, - [5482] = {.lex_state = 156}, - [5483] = {.lex_state = 156}, - [5484] = {.lex_state = 156}, - [5485] = {.lex_state = 156}, - [5486] = {.lex_state = 156}, - [5487] = {.lex_state = 156}, - [5488] = {.lex_state = 0}, - [5489] = {.lex_state = 156}, - [5490] = {.lex_state = 156}, - [5491] = {.lex_state = 245}, - [5492] = {.lex_state = 156}, - [5493] = {.lex_state = 0}, - [5494] = {.lex_state = 131}, - [5495] = {.lex_state = 156}, - [5496] = {.lex_state = 131}, - [5497] = {.lex_state = 245}, - [5498] = {.lex_state = 131}, - [5499] = {.lex_state = 131}, - [5500] = {.lex_state = 131}, - [5501] = {.lex_state = 156}, - [5502] = {.lex_state = 152}, - [5503] = {.lex_state = 245}, - [5504] = {.lex_state = 156}, + [5397] = {.lex_state = 155}, + [5398] = {.lex_state = 166}, + [5399] = {.lex_state = 141}, + [5400] = {.lex_state = 155}, + [5401] = {.lex_state = 155}, + [5402] = {.lex_state = 141}, + [5403] = {.lex_state = 155}, + [5404] = {.lex_state = 261}, + [5405] = {.lex_state = 141}, + [5406] = {.lex_state = 155}, + [5407] = {.lex_state = 198}, + [5408] = {.lex_state = 166}, + [5409] = {.lex_state = 261}, + [5410] = {.lex_state = 261}, + [5411] = {.lex_state = 155}, + [5412] = {.lex_state = 155}, + [5413] = {.lex_state = 155}, + [5414] = {.lex_state = 156}, + [5415] = {.lex_state = 155}, + [5416] = {.lex_state = 155}, + [5417] = {.lex_state = 141}, + [5418] = {.lex_state = 155}, + [5419] = {.lex_state = 155}, + [5420] = {.lex_state = 155}, + [5421] = {.lex_state = 165}, + [5422] = {.lex_state = 165}, + [5423] = {.lex_state = 155}, + [5424] = {.lex_state = 155}, + [5425] = {.lex_state = 155}, + [5426] = {.lex_state = 155}, + [5427] = {.lex_state = 261}, + [5428] = {.lex_state = 261}, + [5429] = {.lex_state = 155}, + [5430] = {.lex_state = 155}, + [5431] = {.lex_state = 261}, + [5432] = {.lex_state = 166}, + [5433] = {.lex_state = 165}, + [5434] = {.lex_state = 166}, + [5435] = {.lex_state = 261}, + [5436] = {.lex_state = 155}, + [5437] = {.lex_state = 261}, + [5438] = {.lex_state = 155}, + [5439] = {.lex_state = 155}, + [5440] = {.lex_state = 141}, + [5441] = {.lex_state = 155}, + [5442] = {.lex_state = 165}, + [5443] = {.lex_state = 165}, + [5444] = {.lex_state = 165}, + [5445] = {.lex_state = 165}, + [5446] = {.lex_state = 165}, + [5447] = {.lex_state = 165}, + [5448] = {.lex_state = 155}, + [5449] = {.lex_state = 261}, + [5450] = {.lex_state = 261}, + [5451] = {.lex_state = 166}, + [5452] = {.lex_state = 166}, + [5453] = {.lex_state = 166}, + [5454] = {.lex_state = 141}, + [5455] = {.lex_state = 166}, + [5456] = {.lex_state = 197}, + [5457] = {.lex_state = 166}, + [5458] = {.lex_state = 197}, + [5459] = {.lex_state = 197}, + [5460] = {.lex_state = 155}, + [5461] = {.lex_state = 261}, + [5462] = {.lex_state = 200}, + [5463] = {.lex_state = 197}, + [5464] = {.lex_state = 141}, + [5465] = {.lex_state = 261}, + [5466] = {.lex_state = 197}, + [5467] = {.lex_state = 166}, + [5468] = {.lex_state = 155}, + [5469] = {.lex_state = 166}, + [5470] = {.lex_state = 197}, + [5471] = {.lex_state = 197}, + [5472] = {.lex_state = 155}, + [5473] = {.lex_state = 197}, + [5474] = {.lex_state = 197}, + [5475] = {.lex_state = 197}, + [5476] = {.lex_state = 197}, + [5477] = {.lex_state = 197}, + [5478] = {.lex_state = 155}, + [5479] = {.lex_state = 261}, + [5480] = {.lex_state = 261}, + [5481] = {.lex_state = 197}, + [5482] = {.lex_state = 166}, + [5483] = {.lex_state = 166}, + [5484] = {.lex_state = 261}, + [5485] = {.lex_state = 166}, + [5486] = {.lex_state = 155}, + [5487] = {.lex_state = 166}, + [5488] = {.lex_state = 261}, + [5489] = {.lex_state = 197}, + [5490] = {.lex_state = 155}, + [5491] = {.lex_state = 166}, + [5492] = {.lex_state = 166}, + [5493] = {.lex_state = 261}, + [5494] = {.lex_state = 261}, + [5495] = {.lex_state = 166}, + [5496] = {.lex_state = 261}, + [5497] = {.lex_state = 261}, + [5498] = {.lex_state = 261}, + [5499] = {.lex_state = 141}, + [5500] = {.lex_state = 261}, + [5501] = {.lex_state = 261}, + [5502] = {.lex_state = 261}, + [5503] = {.lex_state = 156}, + [5504] = {.lex_state = 155}, [5505] = {.lex_state = 156}, - [5506] = {.lex_state = 245}, + [5506] = {.lex_state = 141}, [5507] = {.lex_state = 156}, - [5508] = {.lex_state = 131}, + [5508] = {.lex_state = 165}, [5509] = {.lex_state = 156}, - [5510] = {.lex_state = 156}, - [5511] = {.lex_state = 0}, - [5512] = {.lex_state = 156}, - [5513] = {.lex_state = 156}, - [5514] = {.lex_state = 156}, - [5515] = {.lex_state = 0}, - [5516] = {.lex_state = 0}, - [5517] = {.lex_state = 152}, - [5518] = {.lex_state = 152}, - [5519] = {.lex_state = 0}, - [5520] = {.lex_state = 0}, - [5521] = {.lex_state = 0}, - [5522] = {.lex_state = 0}, - [5523] = {.lex_state = 180}, - [5524] = {.lex_state = 152}, - [5525] = {.lex_state = 245}, - [5526] = {.lex_state = 131}, - [5527] = {.lex_state = 0}, - [5528] = {.lex_state = 0}, - [5529] = {.lex_state = 0}, - [5530] = {.lex_state = 0}, - [5531] = {.lex_state = 0}, - [5532] = {.lex_state = 0}, - [5533] = {.lex_state = 0}, - [5534] = {.lex_state = 0}, - [5535] = {.lex_state = 0}, - [5536] = {.lex_state = 0}, - [5537] = {.lex_state = 0}, - [5538] = {.lex_state = 152}, - [5539] = {.lex_state = 0}, - [5540] = {.lex_state = 152}, - [5541] = {.lex_state = 0}, + [5510] = {.lex_state = 261}, + [5511] = {.lex_state = 165}, + [5512] = {.lex_state = 261}, + [5513] = {.lex_state = 155}, + [5514] = {.lex_state = 261}, + [5515] = {.lex_state = 261}, + [5516] = {.lex_state = 156}, + [5517] = {.lex_state = 197}, + [5518] = {.lex_state = 155}, + [5519] = {.lex_state = 156}, + [5520] = {.lex_state = 156}, + [5521] = {.lex_state = 155}, + [5522] = {.lex_state = 155}, + [5523] = {.lex_state = 167}, + [5524] = {.lex_state = 0}, + [5525] = {.lex_state = 155}, + [5526] = {.lex_state = 167}, + [5527] = {.lex_state = 261}, + [5528] = {.lex_state = 141}, + [5529] = {.lex_state = 76}, + [5530] = {.lex_state = 167}, + [5531] = {.lex_state = 76}, + [5532] = {.lex_state = 167}, + [5533] = {.lex_state = 167}, + [5534] = {.lex_state = 167}, + [5535] = {.lex_state = 167}, + [5536] = {.lex_state = 167}, + [5537] = {.lex_state = 167}, + [5538] = {.lex_state = 167}, + [5539] = {.lex_state = 167}, + [5540] = {.lex_state = 167}, + [5541] = {.lex_state = 167}, [5542] = {.lex_state = 0}, - [5543] = {.lex_state = 0}, - [5544] = {.lex_state = 0}, - [5545] = {.lex_state = 0}, + [5543] = {.lex_state = 261}, + [5544] = {.lex_state = 167}, + [5545] = {.lex_state = 167}, [5546] = {.lex_state = 0}, - [5547] = {.lex_state = 0}, - [5548] = {.lex_state = 0}, - [5549] = {.lex_state = 152}, - [5550] = {.lex_state = 0}, + [5547] = {.lex_state = 167}, + [5548] = {.lex_state = 76}, + [5549] = {.lex_state = 167}, + [5550] = {.lex_state = 261}, [5551] = {.lex_state = 0}, [5552] = {.lex_state = 0}, - [5553] = {.lex_state = 0}, + [5553] = {.lex_state = 167}, [5554] = {.lex_state = 0}, - [5555] = {.lex_state = 152}, - [5556] = {.lex_state = 0}, - [5557] = {.lex_state = 0}, - [5558] = {.lex_state = 79}, - [5559] = {.lex_state = 0}, - [5560] = {.lex_state = 152}, - [5561] = {.lex_state = 0}, - [5562] = {.lex_state = 0}, - [5563] = {.lex_state = 0}, - [5564] = {.lex_state = 0}, - [5565] = {.lex_state = 0}, - [5566] = {.lex_state = 152}, - [5567] = {.lex_state = 152}, - [5568] = {.lex_state = 0}, - [5569] = {.lex_state = 0}, - [5570] = {.lex_state = 0}, - [5571] = {.lex_state = 0}, - [5572] = {.lex_state = 0}, - [5573] = {.lex_state = 0}, - [5574] = {.lex_state = 245}, - [5575] = {.lex_state = 0}, - [5576] = {.lex_state = 0}, - [5577] = {.lex_state = 152}, - [5578] = {.lex_state = 0}, - [5579] = {.lex_state = 0}, - [5580] = {.lex_state = 0}, - [5581] = {.lex_state = 152}, - [5582] = {.lex_state = 0}, - [5583] = {.lex_state = 0}, - [5584] = {.lex_state = 0}, - [5585] = {.lex_state = 154}, - [5586] = {.lex_state = 0}, - [5587] = {.lex_state = 0}, - [5588] = {.lex_state = 0}, - [5589] = {.lex_state = 131}, - [5590] = {.lex_state = 152}, - [5591] = {.lex_state = 152}, - [5592] = {.lex_state = 0}, - [5593] = {.lex_state = 0}, - [5594] = {.lex_state = 152}, - [5595] = {.lex_state = 0}, - [5596] = {.lex_state = 0}, - [5597] = {.lex_state = 0}, - [5598] = {.lex_state = 152}, - [5599] = {.lex_state = 0}, - [5600] = {.lex_state = 0}, - [5601] = {.lex_state = 0}, - [5602] = {.lex_state = 245}, - [5603] = {.lex_state = 0}, - [5604] = {.lex_state = 152}, - [5605] = {.lex_state = 152}, - [5606] = {.lex_state = 79}, - [5607] = {.lex_state = 152}, - [5608] = {.lex_state = 245}, - [5609] = {.lex_state = 245}, - [5610] = {.lex_state = 152}, - [5611] = {.lex_state = 0}, - [5612] = {.lex_state = 0}, - [5613] = {.lex_state = 152}, - [5614] = {.lex_state = 152}, - [5615] = {.lex_state = 245}, - [5616] = {.lex_state = 152}, - [5617] = {.lex_state = 0}, - [5618] = {.lex_state = 0}, - [5619] = {.lex_state = 0}, - [5620] = {.lex_state = 0}, - [5621] = {.lex_state = 0}, - [5622] = {.lex_state = 152}, - [5623] = {.lex_state = 0}, - [5624] = {.lex_state = 0}, - [5625] = {.lex_state = 0}, - [5626] = {.lex_state = 0}, - [5627] = {.lex_state = 152}, - [5628] = {.lex_state = 0}, - [5629] = {.lex_state = 0}, - [5630] = {.lex_state = 152}, - [5631] = {.lex_state = 0}, - [5632] = {.lex_state = 0}, - [5633] = {.lex_state = 0}, - [5634] = {.lex_state = 0}, - [5635] = {.lex_state = 0}, - [5636] = {.lex_state = 0}, - [5637] = {.lex_state = 0}, - [5638] = {.lex_state = 152}, - [5639] = {.lex_state = 0}, - [5640] = {.lex_state = 152}, - [5641] = {.lex_state = 0}, - [5642] = {.lex_state = 152}, + [5555] = {.lex_state = 167}, + [5556] = {.lex_state = 167}, + [5557] = {.lex_state = 167}, + [5558] = {.lex_state = 167}, + [5559] = {.lex_state = 167}, + [5560] = {.lex_state = 197}, + [5561] = {.lex_state = 155}, + [5562] = {.lex_state = 141}, + [5563] = {.lex_state = 167}, + [5564] = {.lex_state = 197}, + [5565] = {.lex_state = 141}, + [5566] = {.lex_state = 167}, + [5567] = {.lex_state = 167}, + [5568] = {.lex_state = 141}, + [5569] = {.lex_state = 155}, + [5570] = {.lex_state = 167}, + [5571] = {.lex_state = 167}, + [5572] = {.lex_state = 167}, + [5573] = {.lex_state = 165}, + [5574] = {.lex_state = 167}, + [5575] = {.lex_state = 167}, + [5576] = {.lex_state = 167}, + [5577] = {.lex_state = 167}, + [5578] = {.lex_state = 167}, + [5579] = {.lex_state = 167}, + [5580] = {.lex_state = 167}, + [5581] = {.lex_state = 167}, + [5582] = {.lex_state = 167}, + [5583] = {.lex_state = 167}, + [5584] = {.lex_state = 167}, + [5585] = {.lex_state = 167}, + [5586] = {.lex_state = 167}, + [5587] = {.lex_state = 78}, + [5588] = {.lex_state = 167}, + [5589] = {.lex_state = 167}, + [5590] = {.lex_state = 76}, + [5591] = {.lex_state = 261}, + [5592] = {.lex_state = 141}, + [5593] = {.lex_state = 76}, + [5594] = {.lex_state = 0}, + [5595] = {.lex_state = 76}, + [5596] = {.lex_state = 167}, + [5597] = {.lex_state = 141}, + [5598] = {.lex_state = 167}, + [5599] = {.lex_state = 141}, + [5600] = {.lex_state = 167}, + [5601] = {.lex_state = 167}, + [5602] = {.lex_state = 141}, + [5603] = {.lex_state = 78}, + [5604] = {.lex_state = 167}, + [5605] = {.lex_state = 261}, + [5606] = {.lex_state = 167}, + [5607] = {.lex_state = 167}, + [5608] = {.lex_state = 167}, + [5609] = {.lex_state = 167}, + [5610] = {.lex_state = 76}, + [5611] = {.lex_state = 167}, + [5612] = {.lex_state = 155}, + [5613] = {.lex_state = 167}, + [5614] = {.lex_state = 155}, + [5615] = {.lex_state = 167}, + [5616] = {.lex_state = 167}, + [5617] = {.lex_state = 167}, + [5618] = {.lex_state = 167}, + [5619] = {.lex_state = 155}, + [5620] = {.lex_state = 167}, + [5621] = {.lex_state = 167}, + [5622] = {.lex_state = 76}, + [5623] = {.lex_state = 197}, + [5624] = {.lex_state = 261}, + [5625] = {.lex_state = 76}, + [5626] = {.lex_state = 167}, + [5627] = {.lex_state = 167}, + [5628] = {.lex_state = 167}, + [5629] = {.lex_state = 261}, + [5630] = {.lex_state = 141}, + [5631] = {.lex_state = 141}, + [5632] = {.lex_state = 261}, + [5633] = {.lex_state = 78}, + [5634] = {.lex_state = 141}, + [5635] = {.lex_state = 167}, + [5636] = {.lex_state = 261}, + [5637] = {.lex_state = 167}, + [5638] = {.lex_state = 141}, + [5639] = {.lex_state = 197}, + [5640] = {.lex_state = 167}, + [5641] = {.lex_state = 261}, + [5642] = {.lex_state = 167}, [5643] = {.lex_state = 0}, - [5644] = {.lex_state = 152}, - [5645] = {.lex_state = 0}, - [5646] = {.lex_state = 0}, - [5647] = {.lex_state = 0}, - [5648] = {.lex_state = 0}, - [5649] = {.lex_state = 152}, - [5650] = {.lex_state = 152}, - [5651] = {.lex_state = 0}, - [5652] = {.lex_state = 152}, - [5653] = {.lex_state = 152}, - [5654] = {.lex_state = 152}, - [5655] = {.lex_state = 79}, - [5656] = {.lex_state = 152}, - [5657] = {.lex_state = 245}, - [5658] = {.lex_state = 152}, + [5644] = {.lex_state = 141}, + [5645] = {.lex_state = 167}, + [5646] = {.lex_state = 141}, + [5647] = {.lex_state = 155}, + [5648] = {.lex_state = 167}, + [5649] = {.lex_state = 76}, + [5650] = {.lex_state = 167}, + [5651] = {.lex_state = 167}, + [5652] = {.lex_state = 141}, + [5653] = {.lex_state = 167}, + [5654] = {.lex_state = 197}, + [5655] = {.lex_state = 167}, + [5656] = {.lex_state = 167}, + [5657] = {.lex_state = 261}, + [5658] = {.lex_state = 197}, [5659] = {.lex_state = 0}, - [5660] = {.lex_state = 0}, - [5661] = {.lex_state = 152}, - [5662] = {.lex_state = 0}, - [5663] = {.lex_state = 0}, - [5664] = {.lex_state = 0}, - [5665] = {.lex_state = 0}, - [5666] = {.lex_state = 152}, - [5667] = {.lex_state = 0}, - [5668] = {.lex_state = 0}, - [5669] = {.lex_state = 0}, - [5670] = {.lex_state = 245}, - [5671] = {.lex_state = 0}, - [5672] = {.lex_state = 152}, - [5673] = {.lex_state = 0}, - [5674] = {.lex_state = 0}, - [5675] = {.lex_state = 0}, - [5676] = {.lex_state = 0}, - [5677] = {.lex_state = 0}, - [5678] = {.lex_state = 0}, - [5679] = {.lex_state = 0}, + [5660] = {.lex_state = 167}, + [5661] = {.lex_state = 167}, + [5662] = {.lex_state = 76}, + [5663] = {.lex_state = 197}, + [5664] = {.lex_state = 261}, + [5665] = {.lex_state = 261}, + [5666] = {.lex_state = 76}, + [5667] = {.lex_state = 261}, + [5668] = {.lex_state = 78}, + [5669] = {.lex_state = 167}, + [5670] = {.lex_state = 197}, + [5671] = {.lex_state = 261}, + [5672] = {.lex_state = 167}, + [5673] = {.lex_state = 167}, + [5674] = {.lex_state = 167}, + [5675] = {.lex_state = 167}, + [5676] = {.lex_state = 141}, + [5677] = {.lex_state = 78}, + [5678] = {.lex_state = 167}, + [5679] = {.lex_state = 197}, [5680] = {.lex_state = 0}, - [5681] = {.lex_state = 0}, - [5682] = {.lex_state = 0}, - [5683] = {.lex_state = 0}, - [5684] = {.lex_state = 152}, - [5685] = {.lex_state = 0}, - [5686] = {.lex_state = 152}, - [5687] = {.lex_state = 0}, - [5688] = {.lex_state = 0}, - [5689] = {.lex_state = 0}, - [5690] = {.lex_state = 0}, - [5691] = {.lex_state = 0}, - [5692] = {.lex_state = 152}, + [5681] = {.lex_state = 261}, + [5682] = {.lex_state = 261}, + [5683] = {.lex_state = 167}, + [5684] = {.lex_state = 0}, + [5685] = {.lex_state = 76}, + [5686] = {.lex_state = 0}, + [5687] = {.lex_state = 167}, + [5688] = {.lex_state = 78}, + [5689] = {.lex_state = 167}, + [5690] = {.lex_state = 141}, + [5691] = {.lex_state = 155}, + [5692] = {.lex_state = 0}, [5693] = {.lex_state = 0}, - [5694] = {.lex_state = 152}, - [5695] = {.lex_state = 152}, - [5696] = {.lex_state = 0}, - [5697] = {.lex_state = 0}, - [5698] = {.lex_state = 131}, - [5699] = {.lex_state = 152}, - [5700] = {.lex_state = 0}, - [5701] = {.lex_state = 79}, - [5702] = {.lex_state = 0}, - [5703] = {.lex_state = 245}, - [5704] = {.lex_state = 152}, - [5705] = {.lex_state = 0}, - [5706] = {.lex_state = 0}, - [5707] = {.lex_state = 152}, - [5708] = {.lex_state = 152}, - [5709] = {.lex_state = 0}, - [5710] = {.lex_state = 152}, - [5711] = {.lex_state = 0}, - [5712] = {.lex_state = 0}, - [5713] = {.lex_state = 0}, - [5714] = {.lex_state = 152}, - [5715] = {.lex_state = 245}, - [5716] = {.lex_state = 0}, - [5717] = {.lex_state = 0}, - [5718] = {.lex_state = 0}, - [5719] = {.lex_state = 152}, - [5720] = {.lex_state = 152}, - [5721] = {.lex_state = 0}, - [5722] = {.lex_state = 0}, - [5723] = {.lex_state = 0}, - [5724] = {.lex_state = 0}, + [5694] = {.lex_state = 167}, + [5695] = {.lex_state = 167}, + [5696] = {.lex_state = 167}, + [5697] = {.lex_state = 141}, + [5698] = {.lex_state = 167}, + [5699] = {.lex_state = 167}, + [5700] = {.lex_state = 167}, + [5701] = {.lex_state = 167}, + [5702] = {.lex_state = 167}, + [5703] = {.lex_state = 167}, + [5704] = {.lex_state = 167}, + [5705] = {.lex_state = 167}, + [5706] = {.lex_state = 167}, + [5707] = {.lex_state = 167}, + [5708] = {.lex_state = 141}, + [5709] = {.lex_state = 76}, + [5710] = {.lex_state = 167}, + [5711] = {.lex_state = 167}, + [5712] = {.lex_state = 167}, + [5713] = {.lex_state = 167}, + [5714] = {.lex_state = 167}, + [5715] = {.lex_state = 141}, + [5716] = {.lex_state = 155}, + [5717] = {.lex_state = 167}, + [5718] = {.lex_state = 155}, + [5719] = {.lex_state = 197}, + [5720] = {.lex_state = 261}, + [5721] = {.lex_state = 76}, + [5722] = {.lex_state = 167}, + [5723] = {.lex_state = 261}, + [5724] = {.lex_state = 167}, [5725] = {.lex_state = 0}, - [5726] = {.lex_state = 152}, - [5727] = {.lex_state = 0}, - [5728] = {.lex_state = 0}, - [5729] = {.lex_state = 0}, - [5730] = {.lex_state = 0}, - [5731] = {.lex_state = 0}, - [5732] = {.lex_state = 0}, - [5733] = {.lex_state = 0}, - [5734] = {.lex_state = 0}, - [5735] = {.lex_state = 0}, - [5736] = {.lex_state = 152}, - [5737] = {.lex_state = 0}, - [5738] = {.lex_state = 0}, - [5739] = {.lex_state = 0}, - [5740] = {.lex_state = 0}, - [5741] = {.lex_state = 0}, - [5742] = {.lex_state = 152}, - [5743] = {.lex_state = 0}, - [5744] = {.lex_state = 0}, - [5745] = {.lex_state = 152}, - [5746] = {.lex_state = 0}, - [5747] = {.lex_state = 0}, - [5748] = {.lex_state = 0}, - [5749] = {.lex_state = 152}, - [5750] = {.lex_state = 0}, - [5751] = {.lex_state = 245}, - [5752] = {.lex_state = 0}, - [5753] = {.lex_state = 0}, - [5754] = {.lex_state = 0}, - [5755] = {.lex_state = 0}, - [5756] = {.lex_state = 0}, - [5757] = {.lex_state = 0}, - [5758] = {.lex_state = 0}, - [5759] = {.lex_state = 0}, + [5726] = {.lex_state = 167}, + [5727] = {.lex_state = 167}, + [5728] = {.lex_state = 141}, + [5729] = {.lex_state = 141}, + [5730] = {.lex_state = 167}, + [5731] = {.lex_state = 141}, + [5732] = {.lex_state = 167}, + [5733] = {.lex_state = 167}, + [5734] = {.lex_state = 261}, + [5735] = {.lex_state = 261}, + [5736] = {.lex_state = 167}, + [5737] = {.lex_state = 141}, + [5738] = {.lex_state = 141}, + [5739] = {.lex_state = 167}, + [5740] = {.lex_state = 155}, + [5741] = {.lex_state = 141}, + [5742] = {.lex_state = 261}, + [5743] = {.lex_state = 167}, + [5744] = {.lex_state = 167}, + [5745] = {.lex_state = 167}, + [5746] = {.lex_state = 167}, + [5747] = {.lex_state = 167}, + [5748] = {.lex_state = 167}, + [5749] = {.lex_state = 167}, + [5750] = {.lex_state = 167}, + [5751] = {.lex_state = 167}, + [5752] = {.lex_state = 167}, + [5753] = {.lex_state = 167}, + [5754] = {.lex_state = 167}, + [5755] = {.lex_state = 167}, + [5756] = {.lex_state = 167}, + [5757] = {.lex_state = 141}, + [5758] = {.lex_state = 167}, + [5759] = {.lex_state = 167}, [5760] = {.lex_state = 0}, - [5761] = {.lex_state = 0}, - [5762] = {.lex_state = 152}, - [5763] = {.lex_state = 0}, - [5764] = {.lex_state = 152}, - [5765] = {.lex_state = 0}, - [5766] = {.lex_state = 0}, - [5767] = {.lex_state = 0}, - [5768] = {.lex_state = 0}, - [5769] = {.lex_state = 0}, - [5770] = {.lex_state = 0}, - [5771] = {.lex_state = 0}, - [5772] = {.lex_state = 0}, - [5773] = {.lex_state = 0}, - [5774] = {.lex_state = 0}, - [5775] = {.lex_state = 0}, - [5776] = {.lex_state = 0}, - [5777] = {.lex_state = 0}, - [5778] = {.lex_state = 152}, - [5779] = {.lex_state = 0}, - [5780] = {.lex_state = 245}, - [5781] = {.lex_state = 152}, - [5782] = {.lex_state = 152}, - [5783] = {.lex_state = 0}, - [5784] = {.lex_state = 0}, - [5785] = {.lex_state = 0}, - [5786] = {.lex_state = 0}, - [5787] = {.lex_state = 0}, - [5788] = {.lex_state = 152}, - [5789] = {.lex_state = 152}, - [5790] = {.lex_state = 0}, - [5791] = {.lex_state = 0}, - [5792] = {.lex_state = 0}, - [5793] = {.lex_state = 0}, - [5794] = {.lex_state = 245}, - [5795] = {.lex_state = 0}, - [5796] = {.lex_state = 0}, - [5797] = {.lex_state = 0}, - [5798] = {.lex_state = 152}, - [5799] = {.lex_state = 152}, - [5800] = {.lex_state = 245}, - [5801] = {.lex_state = 245}, - [5802] = {.lex_state = 0}, - [5803] = {.lex_state = 152}, - [5804] = {.lex_state = 152}, - [5805] = {.lex_state = 0}, - [5806] = {.lex_state = 87}, - [5807] = {.lex_state = 245}, - [5808] = {.lex_state = 152}, - [5809] = {.lex_state = 152}, - [5810] = {.lex_state = 152}, - [5811] = {.lex_state = 152}, - [5812] = {.lex_state = 0}, - [5813] = {.lex_state = 152}, - [5814] = {.lex_state = 0}, - [5815] = {.lex_state = 152}, - [5816] = {.lex_state = 0}, - [5817] = {.lex_state = 152}, + [5761] = {.lex_state = 141}, + [5762] = {.lex_state = 167}, + [5763] = {.lex_state = 78}, + [5764] = {.lex_state = 261}, + [5765] = {.lex_state = 167}, + [5766] = {.lex_state = 167}, + [5767] = {.lex_state = 167}, + [5768] = {.lex_state = 167}, + [5769] = {.lex_state = 167}, + [5770] = {.lex_state = 261}, + [5771] = {.lex_state = 76}, + [5772] = {.lex_state = 167}, + [5773] = {.lex_state = 141}, + [5774] = {.lex_state = 155}, + [5775] = {.lex_state = 261}, + [5776] = {.lex_state = 141}, + [5777] = {.lex_state = 167}, + [5778] = {.lex_state = 167}, + [5779] = {.lex_state = 155}, + [5780] = {.lex_state = 167}, + [5781] = {.lex_state = 167}, + [5782] = {.lex_state = 0}, + [5783] = {.lex_state = 167}, + [5784] = {.lex_state = 167}, + [5785] = {.lex_state = 167}, + [5786] = {.lex_state = 167}, + [5787] = {.lex_state = 167}, + [5788] = {.lex_state = 167}, + [5789] = {.lex_state = 163}, + [5790] = {.lex_state = 167}, + [5791] = {.lex_state = 167}, + [5792] = {.lex_state = 167}, + [5793] = {.lex_state = 167}, + [5794] = {.lex_state = 167}, + [5795] = {.lex_state = 167}, + [5796] = {.lex_state = 76}, + [5797] = {.lex_state = 167}, + [5798] = {.lex_state = 167}, + [5799] = {.lex_state = 167}, + [5800] = {.lex_state = 141}, + [5801] = {.lex_state = 167}, + [5802] = {.lex_state = 167}, + [5803] = {.lex_state = 167}, + [5804] = {.lex_state = 167}, + [5805] = {.lex_state = 141}, + [5806] = {.lex_state = 167}, + [5807] = {.lex_state = 167}, + [5808] = {.lex_state = 167}, + [5809] = {.lex_state = 261}, + [5810] = {.lex_state = 261}, + [5811] = {.lex_state = 167}, + [5812] = {.lex_state = 167}, + [5813] = {.lex_state = 167}, + [5814] = {.lex_state = 167}, + [5815] = {.lex_state = 0}, + [5816] = {.lex_state = 167}, + [5817] = {.lex_state = 167}, [5818] = {.lex_state = 0}, - [5819] = {.lex_state = 152}, - [5820] = {.lex_state = 0}, - [5821] = {.lex_state = 0}, - [5822] = {.lex_state = 0}, - [5823] = {.lex_state = 245}, - [5824] = {.lex_state = 0}, + [5819] = {.lex_state = 155}, + [5820] = {.lex_state = 155}, + [5821] = {.lex_state = 155}, + [5822] = {.lex_state = 155}, + [5823] = {.lex_state = 0}, + [5824] = {.lex_state = 155}, [5825] = {.lex_state = 0}, - [5826] = {.lex_state = 152}, + [5826] = {.lex_state = 0}, [5827] = {.lex_state = 0}, [5828] = {.lex_state = 0}, [5829] = {.lex_state = 0}, - [5830] = {.lex_state = 152}, + [5830] = {.lex_state = 155}, [5831] = {.lex_state = 0}, [5832] = {.lex_state = 0}, - [5833] = {.lex_state = 152}, - [5834] = {.lex_state = 152}, - [5835] = {.lex_state = 152}, - [5836] = {.lex_state = 245}, + [5833] = {.lex_state = 0}, + [5834] = {.lex_state = 0}, + [5835] = {.lex_state = 0}, + [5836] = {.lex_state = 0}, [5837] = {.lex_state = 0}, - [5838] = {.lex_state = 152}, - [5839] = {.lex_state = 152}, - [5840] = {.lex_state = 87}, - [5841] = {.lex_state = 152}, + [5838] = {.lex_state = 0}, + [5839] = {.lex_state = 155}, + [5840] = {.lex_state = 71}, + [5841] = {.lex_state = 0}, [5842] = {.lex_state = 0}, [5843] = {.lex_state = 0}, - [5844] = {.lex_state = 152}, + [5844] = {.lex_state = 0}, [5845] = {.lex_state = 0}, - [5846] = {.lex_state = 152}, - [5847] = {.lex_state = 0}, - [5848] = {.lex_state = 0}, + [5846] = {.lex_state = 0}, + [5847] = {.lex_state = 155}, + [5848] = {.lex_state = 155}, [5849] = {.lex_state = 0}, - [5850] = {.lex_state = 0}, - [5851] = {.lex_state = 152}, - [5852] = {.lex_state = 0}, - [5853] = {.lex_state = 0}, - [5854] = {.lex_state = 152}, + [5850] = {.lex_state = 261}, + [5851] = {.lex_state = 155}, + [5852] = {.lex_state = 155}, + [5853] = {.lex_state = 155}, + [5854] = {.lex_state = 155}, [5855] = {.lex_state = 0}, - [5856] = {.lex_state = 245}, - [5857] = {.lex_state = 87}, - [5858] = {.lex_state = 245}, - [5859] = {.lex_state = 0}, - [5860] = {.lex_state = 152}, - [5861] = {.lex_state = 152}, - [5862] = {.lex_state = 152}, - [5863] = {.lex_state = 152}, + [5856] = {.lex_state = 0}, + [5857] = {.lex_state = 155}, + [5858] = {.lex_state = 0}, + [5859] = {.lex_state = 155}, + [5860] = {.lex_state = 0}, + [5861] = {.lex_state = 0}, + [5862] = {.lex_state = 155}, + [5863] = {.lex_state = 0}, [5864] = {.lex_state = 0}, - [5865] = {.lex_state = 245}, + [5865] = {.lex_state = 0}, [5866] = {.lex_state = 0}, - [5867] = {.lex_state = 0}, - [5868] = {.lex_state = 0}, - [5869] = {.lex_state = 152}, + [5867] = {.lex_state = 261}, + [5868] = {.lex_state = 155}, + [5869] = {.lex_state = 0}, [5870] = {.lex_state = 0}, [5871] = {.lex_state = 0}, [5872] = {.lex_state = 0}, - [5873] = {.lex_state = 152}, + [5873] = {.lex_state = 155}, [5874] = {.lex_state = 0}, [5875] = {.lex_state = 0}, - [5876] = {.lex_state = 0}, - [5877] = {.lex_state = 0}, - [5878] = {.lex_state = 0}, + [5876] = {.lex_state = 155}, + [5877] = {.lex_state = 196}, + [5878] = {.lex_state = 261}, [5879] = {.lex_state = 0}, [5880] = {.lex_state = 0}, - [5881] = {.lex_state = 152}, - [5882] = {.lex_state = 152}, - [5883] = {.lex_state = 152}, - [5884] = {.lex_state = 152}, - [5885] = {.lex_state = 152}, - [5886] = {.lex_state = 152}, - [5887] = {.lex_state = 152}, - [5888] = {.lex_state = 152}, - [5889] = {.lex_state = 245}, - [5890] = {.lex_state = 152}, - [5891] = {.lex_state = 245}, + [5881] = {.lex_state = 0}, + [5882] = {.lex_state = 0}, + [5883] = {.lex_state = 0}, + [5884] = {.lex_state = 0}, + [5885] = {.lex_state = 0}, + [5886] = {.lex_state = 141}, + [5887] = {.lex_state = 0}, + [5888] = {.lex_state = 0}, + [5889] = {.lex_state = 0}, + [5890] = {.lex_state = 155}, + [5891] = {.lex_state = 0}, [5892] = {.lex_state = 0}, [5893] = {.lex_state = 0}, - [5894] = {.lex_state = 0}, - [5895] = {.lex_state = 152}, - [5896] = {.lex_state = 245}, - [5897] = {.lex_state = 152}, + [5894] = {.lex_state = 155}, + [5895] = {.lex_state = 155}, + [5896] = {.lex_state = 0}, + [5897] = {.lex_state = 0}, [5898] = {.lex_state = 0}, [5899] = {.lex_state = 0}, [5900] = {.lex_state = 0}, [5901] = {.lex_state = 0}, [5902] = {.lex_state = 0}, - [5903] = {.lex_state = 152}, + [5903] = {.lex_state = 0}, [5904] = {.lex_state = 0}, - [5905] = {.lex_state = 152}, - [5906] = {.lex_state = 152}, - [5907] = {.lex_state = 152}, - [5908] = {.lex_state = 0}, + [5905] = {.lex_state = 0}, + [5906] = {.lex_state = 155}, + [5907] = {.lex_state = 0}, + [5908] = {.lex_state = 261}, [5909] = {.lex_state = 0}, [5910] = {.lex_state = 0}, [5911] = {.lex_state = 0}, - [5912] = {.lex_state = 0}, + [5912] = {.lex_state = 155}, [5913] = {.lex_state = 0}, [5914] = {.lex_state = 0}, - [5915] = {.lex_state = 245}, - [5916] = {.lex_state = 0}, - [5917] = {.lex_state = 0}, + [5915] = {.lex_state = 155}, + [5916] = {.lex_state = 141}, + [5917] = {.lex_state = 155}, [5918] = {.lex_state = 0}, - [5919] = {.lex_state = 245}, + [5919] = {.lex_state = 0}, [5920] = {.lex_state = 0}, - [5921] = {.lex_state = 152}, - [5922] = {.lex_state = 152}, - [5923] = {.lex_state = 152}, + [5921] = {.lex_state = 0}, + [5922] = {.lex_state = 0}, + [5923] = {.lex_state = 261}, [5924] = {.lex_state = 0}, - [5925] = {.lex_state = 152}, + [5925] = {.lex_state = 0}, [5926] = {.lex_state = 0}, - [5927] = {.lex_state = 152}, - [5928] = {.lex_state = 152}, - [5929] = {.lex_state = 152}, + [5927] = {.lex_state = 155}, + [5928] = {.lex_state = 0}, + [5929] = {.lex_state = 0}, [5930] = {.lex_state = 0}, [5931] = {.lex_state = 0}, [5932] = {.lex_state = 0}, - [5933] = {.lex_state = 245}, - [5934] = {.lex_state = 0}, - [5935] = {.lex_state = 152}, + [5933] = {.lex_state = 261}, + [5934] = {.lex_state = 155}, + [5935] = {.lex_state = 0}, [5936] = {.lex_state = 0}, - [5937] = {.lex_state = 245}, + [5937] = {.lex_state = 0}, [5938] = {.lex_state = 0}, [5939] = {.lex_state = 0}, - [5940] = {.lex_state = 152}, + [5940] = {.lex_state = 0}, [5941] = {.lex_state = 0}, [5942] = {.lex_state = 0}, - [5943] = {.lex_state = 152}, + [5943] = {.lex_state = 0}, [5944] = {.lex_state = 0}, [5945] = {.lex_state = 0}, [5946] = {.lex_state = 0}, - [5947] = {.lex_state = 0}, + [5947] = {.lex_state = 261}, [5948] = {.lex_state = 0}, [5949] = {.lex_state = 0}, [5950] = {.lex_state = 0}, - [5951] = {.lex_state = 245}, + [5951] = {.lex_state = 155}, [5952] = {.lex_state = 0}, [5953] = {.lex_state = 0}, [5954] = {.lex_state = 0}, - [5955] = {.lex_state = 245}, + [5955] = {.lex_state = 0}, [5956] = {.lex_state = 0}, - [5957] = {.lex_state = 0}, - [5958] = {.lex_state = 152}, - [5959] = {.lex_state = 152}, - [5960] = {.lex_state = 152}, - [5961] = {.lex_state = 152}, + [5957] = {.lex_state = 155}, + [5958] = {.lex_state = 0}, + [5959] = {.lex_state = 155}, + [5960] = {.lex_state = 0}, + [5961] = {.lex_state = 155}, [5962] = {.lex_state = 0}, - [5963] = {.lex_state = 152}, - [5964] = {.lex_state = 152}, - [5965] = {.lex_state = 152}, + [5963] = {.lex_state = 0}, + [5964] = {.lex_state = 0}, + [5965] = {.lex_state = 0}, [5966] = {.lex_state = 0}, - [5967] = {.lex_state = 245}, - [5968] = {.lex_state = 245}, + [5967] = {.lex_state = 0}, + [5968] = {.lex_state = 155}, [5969] = {.lex_state = 0}, - [5970] = {.lex_state = 152}, - [5971] = {.lex_state = 245}, - [5972] = {.lex_state = 245}, + [5970] = {.lex_state = 155}, + [5971] = {.lex_state = 0}, + [5972] = {.lex_state = 0}, [5973] = {.lex_state = 0}, [5974] = {.lex_state = 0}, - [5975] = {.lex_state = 0}, - [5976] = {.lex_state = 152}, - [5977] = {.lex_state = 152}, + [5975] = {.lex_state = 155}, + [5976] = {.lex_state = 0}, + [5977] = {.lex_state = 0}, [5978] = {.lex_state = 0}, [5979] = {.lex_state = 0}, - [5980] = {.lex_state = 152}, - [5981] = {.lex_state = 152}, - [5982] = {.lex_state = 152}, + [5980] = {.lex_state = 0}, + [5981] = {.lex_state = 0}, + [5982] = {.lex_state = 0}, [5983] = {.lex_state = 0}, - [5984] = {.lex_state = 245}, - [5985] = {.lex_state = 245}, + [5984] = {.lex_state = 0}, + [5985] = {.lex_state = 155}, [5986] = {.lex_state = 0}, [5987] = {.lex_state = 0}, [5988] = {.lex_state = 0}, - [5989] = {.lex_state = 152}, - [5990] = {.lex_state = 152}, - [5991] = {.lex_state = 152}, - [5992] = {.lex_state = 87}, - [5993] = {.lex_state = 0}, - [5994] = {.lex_state = 245}, - [5995] = {.lex_state = 152}, + [5989] = {.lex_state = 0}, + [5990] = {.lex_state = 0}, + [5991] = {.lex_state = 261}, + [5992] = {.lex_state = 0}, + [5993] = {.lex_state = 155}, + [5994] = {.lex_state = 155}, + [5995] = {.lex_state = 155}, [5996] = {.lex_state = 0}, - [5997] = {.lex_state = 0}, - [5998] = {.lex_state = 245}, + [5997] = {.lex_state = 155}, + [5998] = {.lex_state = 0}, [5999] = {.lex_state = 0}, - [6000] = {.lex_state = 245}, + [6000] = {.lex_state = 0}, [6001] = {.lex_state = 0}, [6002] = {.lex_state = 0}, - [6003] = {.lex_state = 245}, + [6003] = {.lex_state = 155}, [6004] = {.lex_state = 0}, [6005] = {.lex_state = 0}, - [6006] = {.lex_state = 245}, - [6007] = {.lex_state = 245}, - [6008] = {.lex_state = 245}, - [6009] = {.lex_state = 152}, - [6010] = {.lex_state = 152}, - [6011] = {.lex_state = 152}, - [6012] = {.lex_state = 152}, + [6006] = {.lex_state = 0}, + [6007] = {.lex_state = 0}, + [6008] = {.lex_state = 0}, + [6009] = {.lex_state = 0}, + [6010] = {.lex_state = 0}, + [6011] = {.lex_state = 0}, + [6012] = {.lex_state = 0}, [6013] = {.lex_state = 0}, - [6014] = {.lex_state = 245}, - [6015] = {.lex_state = 152}, - [6016] = {.lex_state = 245}, - [6017] = {.lex_state = 152}, - [6018] = {.lex_state = 152}, - [6019] = {.lex_state = 88}, - [6020] = {.lex_state = 87}, - [6021] = {.lex_state = 0}, - [6022] = {.lex_state = 152}, - [6023] = {.lex_state = 245}, - [6024] = {.lex_state = 0}, - [6025] = {.lex_state = 0}, - [6026] = {.lex_state = 152}, - [6027] = {.lex_state = 152}, + [6014] = {.lex_state = 0}, + [6015] = {.lex_state = 0}, + [6016] = {.lex_state = 0}, + [6017] = {.lex_state = 155}, + [6018] = {.lex_state = 155}, + [6019] = {.lex_state = 0}, + [6020] = {.lex_state = 0}, + [6021] = {.lex_state = 141}, + [6022] = {.lex_state = 261}, + [6023] = {.lex_state = 0}, + [6024] = {.lex_state = 165}, + [6025] = {.lex_state = 155}, + [6026] = {.lex_state = 155}, + [6027] = {.lex_state = 0}, [6028] = {.lex_state = 0}, - [6029] = {.lex_state = 152}, - [6030] = {.lex_state = 152}, - [6031] = {.lex_state = 152}, - [6032] = {.lex_state = 152}, - [6033] = {.lex_state = 152}, - [6034] = {.lex_state = 152}, - [6035] = {.lex_state = 152}, - [6036] = {.lex_state = 152}, + [6029] = {.lex_state = 0}, + [6030] = {.lex_state = 0}, + [6031] = {.lex_state = 0}, + [6032] = {.lex_state = 0}, + [6033] = {.lex_state = 0}, + [6034] = {.lex_state = 0}, + [6035] = {.lex_state = 0}, + [6036] = {.lex_state = 0}, [6037] = {.lex_state = 0}, - [6038] = {.lex_state = 152}, - [6039] = {.lex_state = 245}, - [6040] = {.lex_state = 152}, + [6038] = {.lex_state = 155}, + [6039] = {.lex_state = 0}, + [6040] = {.lex_state = 155}, [6041] = {.lex_state = 0}, - [6042] = {.lex_state = 152}, - [6043] = {.lex_state = 245}, - [6044] = {.lex_state = 152}, - [6045] = {.lex_state = 0}, - [6046] = {.lex_state = 0}, - [6047] = {.lex_state = 152}, - [6048] = {.lex_state = 152}, - [6049] = {.lex_state = 88}, - [6050] = {.lex_state = 152}, - [6051] = {.lex_state = 152}, - [6052] = {.lex_state = 152}, - [6053] = {.lex_state = 152}, - [6054] = {.lex_state = 152}, - [6055] = {.lex_state = 152}, - [6056] = {.lex_state = 152}, - [6057] = {.lex_state = 152}, - [6058] = {.lex_state = 152}, - [6059] = {.lex_state = 152}, - [6060] = {.lex_state = 152}, - [6061] = {.lex_state = 152}, - [6062] = {.lex_state = 152}, - [6063] = {.lex_state = 0}, - [6064] = {.lex_state = 152}, - [6065] = {.lex_state = 152}, - [6066] = {.lex_state = 152}, - [6067] = {.lex_state = 152}, - [6068] = {.lex_state = 152}, - [6069] = {.lex_state = 152}, - [6070] = {.lex_state = 152}, - [6071] = {.lex_state = 245}, - [6072] = {.lex_state = 152}, - [6073] = {.lex_state = 0}, - [6074] = {.lex_state = 87}, - [6075] = {.lex_state = 0}, - [6076] = {.lex_state = 152}, - [6077] = {.lex_state = 152}, + [6042] = {.lex_state = 0}, + [6043] = {.lex_state = 261}, + [6044] = {.lex_state = 155}, + [6045] = {.lex_state = 71}, + [6046] = {.lex_state = 155}, + [6047] = {.lex_state = 0}, + [6048] = {.lex_state = 155}, + [6049] = {.lex_state = 155}, + [6050] = {.lex_state = 0}, + [6051] = {.lex_state = 71}, + [6052] = {.lex_state = 155}, + [6053] = {.lex_state = 0}, + [6054] = {.lex_state = 0}, + [6055] = {.lex_state = 155}, + [6056] = {.lex_state = 155}, + [6057] = {.lex_state = 0}, + [6058] = {.lex_state = 0}, + [6059] = {.lex_state = 0}, + [6060] = {.lex_state = 0}, + [6061] = {.lex_state = 261}, + [6062] = {.lex_state = 261}, + [6063] = {.lex_state = 155}, + [6064] = {.lex_state = 0}, + [6065] = {.lex_state = 0}, + [6066] = {.lex_state = 0}, + [6067] = {.lex_state = 0}, + [6068] = {.lex_state = 71}, + [6069] = {.lex_state = 155}, + [6070] = {.lex_state = 0}, + [6071] = {.lex_state = 0}, + [6072] = {.lex_state = 155}, + [6073] = {.lex_state = 155}, + [6074] = {.lex_state = 155}, + [6075] = {.lex_state = 155}, + [6076] = {.lex_state = 0}, + [6077] = {.lex_state = 0}, [6078] = {.lex_state = 0}, - [6079] = {.lex_state = 0}, + [6079] = {.lex_state = 155}, [6080] = {.lex_state = 0}, [6081] = {.lex_state = 0}, [6082] = {.lex_state = 0}, [6083] = {.lex_state = 0}, [6084] = {.lex_state = 0}, - [6085] = {.lex_state = 0}, + [6085] = {.lex_state = 261}, [6086] = {.lex_state = 0}, - [6087] = {.lex_state = 87}, + [6087] = {.lex_state = 155}, [6088] = {.lex_state = 0}, [6089] = {.lex_state = 0}, - [6090] = {.lex_state = 0}, + [6090] = {.lex_state = 155}, [6091] = {.lex_state = 0}, - [6092] = {.lex_state = 245}, + [6092] = {.lex_state = 0}, [6093] = {.lex_state = 0}, [6094] = {.lex_state = 0}, - [6095] = {.lex_state = 0}, + [6095] = {.lex_state = 261}, [6096] = {.lex_state = 0}, - [6097] = {.lex_state = 245}, + [6097] = {.lex_state = 0}, [6098] = {.lex_state = 0}, - [6099] = {.lex_state = 152}, - [6100] = {.lex_state = 245}, - [6101] = {.lex_state = 87}, + [6099] = {.lex_state = 0}, + [6100] = {.lex_state = 0}, + [6101] = {.lex_state = 155}, [6102] = {.lex_state = 0}, - [6103] = {.lex_state = 245}, - [6104] = {.lex_state = 245}, - [6105] = {.lex_state = 0}, - [6106] = {.lex_state = 152}, + [6103] = {.lex_state = 0}, + [6104] = {.lex_state = 0}, + [6105] = {.lex_state = 155}, + [6106] = {.lex_state = 155}, [6107] = {.lex_state = 0}, [6108] = {.lex_state = 0}, [6109] = {.lex_state = 0}, [6110] = {.lex_state = 0}, - [6111] = {.lex_state = 0}, + [6111] = {.lex_state = 155}, [6112] = {.lex_state = 0}, [6113] = {.lex_state = 0}, - [6114] = {.lex_state = 0}, + [6114] = {.lex_state = 155}, [6115] = {.lex_state = 0}, [6116] = {.lex_state = 0}, - [6117] = {.lex_state = 0}, + [6117] = {.lex_state = 155}, [6118] = {.lex_state = 0}, [6119] = {.lex_state = 0}, [6120] = {.lex_state = 0}, - [6121] = {.lex_state = 152}, + [6121] = {.lex_state = 0}, [6122] = {.lex_state = 0}, [6123] = {.lex_state = 0}, [6124] = {.lex_state = 0}, [6125] = {.lex_state = 0}, - [6126] = {.lex_state = 245}, + [6126] = {.lex_state = 0}, [6127] = {.lex_state = 0}, [6128] = {.lex_state = 0}, - [6129] = {.lex_state = 245}, + [6129] = {.lex_state = 0}, [6130] = {.lex_state = 0}, - [6131] = {.lex_state = 0}, - [6132] = {.lex_state = 0}, - [6133] = {.lex_state = 0}, - [6134] = {.lex_state = 0}, - [6135] = {.lex_state = 0}, - [6136] = {.lex_state = 0}, - [6137] = {.lex_state = 0}, - [6138] = {.lex_state = 0}, - [6139] = {.lex_state = 0}, - [6140] = {.lex_state = 0}, - [6141] = {.lex_state = 0}, - [6142] = {.lex_state = 0}, - [6143] = {.lex_state = 245}, - [6144] = {.lex_state = 0}, - [6145] = {.lex_state = 0}, - [6146] = {.lex_state = 0}, + [6131] = {.lex_state = 155}, + [6132] = {.lex_state = 155}, + [6133] = {.lex_state = 155}, + [6134] = {.lex_state = 155}, + [6135] = {.lex_state = 155}, + [6136] = {.lex_state = 155}, + [6137] = {.lex_state = 155}, + [6138] = {.lex_state = 155}, + [6139] = {.lex_state = 155}, + [6140] = {.lex_state = 155}, + [6141] = {.lex_state = 155}, + [6142] = {.lex_state = 155}, + [6143] = {.lex_state = 155}, + [6144] = {.lex_state = 155}, + [6145] = {.lex_state = 155}, + [6146] = {.lex_state = 155}, [6147] = {.lex_state = 0}, [6148] = {.lex_state = 0}, - [6149] = {.lex_state = 0}, + [6149] = {.lex_state = 155}, [6150] = {.lex_state = 0}, - [6151] = {.lex_state = 0}, + [6151] = {.lex_state = 155}, [6152] = {.lex_state = 0}, [6153] = {.lex_state = 0}, - [6154] = {.lex_state = 0}, + [6154] = {.lex_state = 155}, [6155] = {.lex_state = 0}, [6156] = {.lex_state = 0}, [6157] = {.lex_state = 0}, [6158] = {.lex_state = 0}, [6159] = {.lex_state = 0}, [6160] = {.lex_state = 0}, - [6161] = {.lex_state = 0}, - [6162] = {.lex_state = 0}, + [6161] = {.lex_state = 155}, + [6162] = {.lex_state = 155}, [6163] = {.lex_state = 0}, [6164] = {.lex_state = 0}, [6165] = {.lex_state = 0}, - [6166] = {.lex_state = 0}, + [6166] = {.lex_state = 155}, [6167] = {.lex_state = 0}, - [6168] = {.lex_state = 245}, - [6169] = {.lex_state = 152}, - [6170] = {.lex_state = 0}, - [6171] = {.lex_state = 0}, - [6172] = {.lex_state = 0}, - [6173] = {.lex_state = 0}, + [6168] = {.lex_state = 261}, + [6169] = {.lex_state = 261}, + [6170] = {.lex_state = 155}, + [6171] = {.lex_state = 155}, + [6172] = {.lex_state = 155}, + [6173] = {.lex_state = 155}, [6174] = {.lex_state = 0}, - [6175] = {.lex_state = 0}, + [6175] = {.lex_state = 155}, [6176] = {.lex_state = 0}, - [6177] = {.lex_state = 0}, + [6177] = {.lex_state = 155}, [6178] = {.lex_state = 0}, - [6179] = {.lex_state = 0}, - [6180] = {.lex_state = 245}, - [6181] = {.lex_state = 0}, - [6182] = {.lex_state = 87}, - [6183] = {.lex_state = 245}, - [6184] = {.lex_state = 152}, - [6185] = {.lex_state = 0}, + [6179] = {.lex_state = 155}, + [6180] = {.lex_state = 0}, + [6181] = {.lex_state = 155}, + [6182] = {.lex_state = 0}, + [6183] = {.lex_state = 0}, + [6184] = {.lex_state = 0}, + [6185] = {.lex_state = 155}, [6186] = {.lex_state = 0}, [6187] = {.lex_state = 0}, [6188] = {.lex_state = 0}, - [6189] = {.lex_state = 0}, - [6190] = {.lex_state = 0}, - [6191] = {.lex_state = 152}, + [6189] = {.lex_state = 155}, + [6190] = {.lex_state = 155}, + [6191] = {.lex_state = 155}, [6192] = {.lex_state = 0}, - [6193] = {.lex_state = 87}, - [6194] = {.lex_state = 245}, - [6195] = {.lex_state = 245}, - [6196] = {.lex_state = 245}, - [6197] = {.lex_state = 0}, - [6198] = {.lex_state = 152}, - [6199] = {.lex_state = 245}, - [6200] = {.lex_state = 0}, + [6193] = {.lex_state = 0}, + [6194] = {.lex_state = 155}, + [6195] = {.lex_state = 261}, + [6196] = {.lex_state = 155}, + [6197] = {.lex_state = 261}, + [6198] = {.lex_state = 155}, + [6199] = {.lex_state = 0}, + [6200] = {.lex_state = 155}, [6201] = {.lex_state = 0}, - [6202] = {.lex_state = 245}, - [6203] = {.lex_state = 87}, + [6202] = {.lex_state = 0}, + [6203] = {.lex_state = 155}, [6204] = {.lex_state = 0}, [6205] = {.lex_state = 0}, [6206] = {.lex_state = 0}, @@ -23088,355 +23956,355 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6210] = {.lex_state = 0}, [6211] = {.lex_state = 0}, [6212] = {.lex_state = 0}, - [6213] = {.lex_state = 0}, + [6213] = {.lex_state = 155}, [6214] = {.lex_state = 0}, - [6215] = {.lex_state = 87}, - [6216] = {.lex_state = 0}, + [6215] = {.lex_state = 155}, + [6216] = {.lex_state = 155}, [6217] = {.lex_state = 0}, - [6218] = {.lex_state = 152}, + [6218] = {.lex_state = 0}, [6219] = {.lex_state = 0}, - [6220] = {.lex_state = 245}, - [6221] = {.lex_state = 0}, - [6222] = {.lex_state = 0}, + [6220] = {.lex_state = 155}, + [6221] = {.lex_state = 155}, + [6222] = {.lex_state = 155}, [6223] = {.lex_state = 0}, - [6224] = {.lex_state = 0}, + [6224] = {.lex_state = 155}, [6225] = {.lex_state = 0}, [6226] = {.lex_state = 0}, [6227] = {.lex_state = 0}, - [6228] = {.lex_state = 245}, + [6228] = {.lex_state = 155}, [6229] = {.lex_state = 0}, [6230] = {.lex_state = 0}, - [6231] = {.lex_state = 152}, - [6232] = {.lex_state = 0}, + [6231] = {.lex_state = 0}, + [6232] = {.lex_state = 155}, [6233] = {.lex_state = 0}, [6234] = {.lex_state = 0}, - [6235] = {.lex_state = 152}, + [6235] = {.lex_state = 0}, [6236] = {.lex_state = 0}, [6237] = {.lex_state = 0}, - [6238] = {.lex_state = 0}, - [6239] = {.lex_state = 0}, - [6240] = {.lex_state = 0}, - [6241] = {.lex_state = 0}, - [6242] = {.lex_state = 245}, - [6243] = {.lex_state = 0}, - [6244] = {.lex_state = 0}, - [6245] = {.lex_state = 245}, - [6246] = {.lex_state = 0}, - [6247] = {.lex_state = 0}, - [6248] = {.lex_state = 0}, - [6249] = {.lex_state = 0}, - [6250] = {.lex_state = 0}, + [6238] = {.lex_state = 155}, + [6239] = {.lex_state = 155}, + [6240] = {.lex_state = 155}, + [6241] = {.lex_state = 155}, + [6242] = {.lex_state = 155}, + [6243] = {.lex_state = 155}, + [6244] = {.lex_state = 155}, + [6245] = {.lex_state = 155}, + [6246] = {.lex_state = 155}, + [6247] = {.lex_state = 155}, + [6248] = {.lex_state = 155}, + [6249] = {.lex_state = 261}, + [6250] = {.lex_state = 155}, [6251] = {.lex_state = 0}, - [6252] = {.lex_state = 245}, - [6253] = {.lex_state = 0}, - [6254] = {.lex_state = 152}, + [6252] = {.lex_state = 261}, + [6253] = {.lex_state = 261}, + [6254] = {.lex_state = 0}, [6255] = {.lex_state = 0}, [6256] = {.lex_state = 0}, - [6257] = {.lex_state = 0}, + [6257] = {.lex_state = 155}, [6258] = {.lex_state = 0}, - [6259] = {.lex_state = 0}, - [6260] = {.lex_state = 245}, - [6261] = {.lex_state = 152}, - [6262] = {.lex_state = 245}, + [6259] = {.lex_state = 155}, + [6260] = {.lex_state = 155}, + [6261] = {.lex_state = 155}, + [6262] = {.lex_state = 155}, [6263] = {.lex_state = 0}, - [6264] = {.lex_state = 152}, - [6265] = {.lex_state = 88}, - [6266] = {.lex_state = 152}, - [6267] = {.lex_state = 0}, - [6268] = {.lex_state = 0}, + [6264] = {.lex_state = 155}, + [6265] = {.lex_state = 0}, + [6266] = {.lex_state = 155}, + [6267] = {.lex_state = 261}, + [6268] = {.lex_state = 155}, [6269] = {.lex_state = 0}, [6270] = {.lex_state = 0}, - [6271] = {.lex_state = 88}, - [6272] = {.lex_state = 245}, + [6271] = {.lex_state = 261}, + [6272] = {.lex_state = 0}, [6273] = {.lex_state = 0}, [6274] = {.lex_state = 0}, - [6275] = {.lex_state = 0}, + [6275] = {.lex_state = 155}, [6276] = {.lex_state = 0}, - [6277] = {.lex_state = 0}, - [6278] = {.lex_state = 245}, - [6279] = {.lex_state = 0}, - [6280] = {.lex_state = 245}, - [6281] = {.lex_state = 0}, - [6282] = {.lex_state = 245}, - [6283] = {.lex_state = 87}, - [6284] = {.lex_state = 245}, - [6285] = {.lex_state = 152}, - [6286] = {.lex_state = 245}, - [6287] = {.lex_state = 152}, + [6277] = {.lex_state = 155}, + [6278] = {.lex_state = 155}, + [6279] = {.lex_state = 155}, + [6280] = {.lex_state = 155}, + [6281] = {.lex_state = 155}, + [6282] = {.lex_state = 155}, + [6283] = {.lex_state = 261}, + [6284] = {.lex_state = 155}, + [6285] = {.lex_state = 261}, + [6286] = {.lex_state = 155}, + [6287] = {.lex_state = 0}, [6288] = {.lex_state = 0}, - [6289] = {.lex_state = 88}, + [6289] = {.lex_state = 261}, [6290] = {.lex_state = 0}, - [6291] = {.lex_state = 152}, + [6291] = {.lex_state = 0}, [6292] = {.lex_state = 0}, - [6293] = {.lex_state = 245}, + [6293] = {.lex_state = 155}, [6294] = {.lex_state = 0}, - [6295] = {.lex_state = 0}, - [6296] = {.lex_state = 0}, - [6297] = {.lex_state = 0}, - [6298] = {.lex_state = 0}, + [6295] = {.lex_state = 155}, + [6296] = {.lex_state = 155}, + [6297] = {.lex_state = 155}, + [6298] = {.lex_state = 155}, [6299] = {.lex_state = 0}, - [6300] = {.lex_state = 152}, + [6300] = {.lex_state = 155}, [6301] = {.lex_state = 0}, - [6302] = {.lex_state = 0}, - [6303] = {.lex_state = 0}, - [6304] = {.lex_state = 152}, - [6305] = {.lex_state = 245}, - [6306] = {.lex_state = 245}, - [6307] = {.lex_state = 245}, - [6308] = {.lex_state = 0}, - [6309] = {.lex_state = 152}, - [6310] = {.lex_state = 152}, - [6311] = {.lex_state = 245}, + [6302] = {.lex_state = 155}, + [6303] = {.lex_state = 261}, + [6304] = {.lex_state = 155}, + [6305] = {.lex_state = 0}, + [6306] = {.lex_state = 0}, + [6307] = {.lex_state = 261}, + [6308] = {.lex_state = 261}, + [6309] = {.lex_state = 0}, + [6310] = {.lex_state = 261}, + [6311] = {.lex_state = 155}, [6312] = {.lex_state = 0}, - [6313] = {.lex_state = 245}, - [6314] = {.lex_state = 0}, - [6315] = {.lex_state = 0}, + [6313] = {.lex_state = 155}, + [6314] = {.lex_state = 155}, + [6315] = {.lex_state = 155}, [6316] = {.lex_state = 0}, - [6317] = {.lex_state = 88}, - [6318] = {.lex_state = 245}, - [6319] = {.lex_state = 245}, - [6320] = {.lex_state = 152}, + [6317] = {.lex_state = 155}, + [6318] = {.lex_state = 0}, + [6319] = {.lex_state = 155}, + [6320] = {.lex_state = 155}, [6321] = {.lex_state = 0}, [6322] = {.lex_state = 0}, - [6323] = {.lex_state = 245}, + [6323] = {.lex_state = 261}, [6324] = {.lex_state = 0}, [6325] = {.lex_state = 0}, - [6326] = {.lex_state = 0}, - [6327] = {.lex_state = 0}, - [6328] = {.lex_state = 245}, + [6326] = {.lex_state = 261}, + [6327] = {.lex_state = 155}, + [6328] = {.lex_state = 79}, [6329] = {.lex_state = 0}, - [6330] = {.lex_state = 0}, + [6330] = {.lex_state = 155}, [6331] = {.lex_state = 0}, [6332] = {.lex_state = 0}, - [6333] = {.lex_state = 245}, + [6333] = {.lex_state = 155}, [6334] = {.lex_state = 0}, - [6335] = {.lex_state = 87}, - [6336] = {.lex_state = 0}, - [6337] = {.lex_state = 0}, - [6338] = {.lex_state = 0}, - [6339] = {.lex_state = 0}, - [6340] = {.lex_state = 0}, - [6341] = {.lex_state = 0}, + [6335] = {.lex_state = 261}, + [6336] = {.lex_state = 261}, + [6337] = {.lex_state = 155}, + [6338] = {.lex_state = 261}, + [6339] = {.lex_state = 80}, + [6340] = {.lex_state = 155}, + [6341] = {.lex_state = 79}, [6342] = {.lex_state = 0}, - [6343] = {.lex_state = 0}, + [6343] = {.lex_state = 155}, [6344] = {.lex_state = 0}, [6345] = {.lex_state = 0}, [6346] = {.lex_state = 0}, [6347] = {.lex_state = 0}, - [6348] = {.lex_state = 0}, - [6349] = {.lex_state = 0}, - [6350] = {.lex_state = 152}, + [6348] = {.lex_state = 261}, + [6349] = {.lex_state = 261}, + [6350] = {.lex_state = 0}, [6351] = {.lex_state = 0}, [6352] = {.lex_state = 0}, - [6353] = {.lex_state = 245}, + [6353] = {.lex_state = 0}, [6354] = {.lex_state = 0}, [6355] = {.lex_state = 0}, [6356] = {.lex_state = 0}, [6357] = {.lex_state = 0}, - [6358] = {.lex_state = 245}, - [6359] = {.lex_state = 245}, - [6360] = {.lex_state = 152}, - [6361] = {.lex_state = 245}, - [6362] = {.lex_state = 152}, - [6363] = {.lex_state = 245}, - [6364] = {.lex_state = 0}, - [6365] = {.lex_state = 88}, - [6366] = {.lex_state = 245}, - [6367] = {.lex_state = 0}, - [6368] = {.lex_state = 152}, - [6369] = {.lex_state = 0}, - [6370] = {.lex_state = 245}, - [6371] = {.lex_state = 0}, - [6372] = {.lex_state = 0}, - [6373] = {.lex_state = 245}, - [6374] = {.lex_state = 87}, - [6375] = {.lex_state = 87}, - [6376] = {.lex_state = 0}, - [6377] = {.lex_state = 87}, + [6358] = {.lex_state = 261}, + [6359] = {.lex_state = 0}, + [6360] = {.lex_state = 0}, + [6361] = {.lex_state = 261}, + [6362] = {.lex_state = 261}, + [6363] = {.lex_state = 80}, + [6364] = {.lex_state = 261}, + [6365] = {.lex_state = 261}, + [6366] = {.lex_state = 0}, + [6367] = {.lex_state = 80}, + [6368] = {.lex_state = 0}, + [6369] = {.lex_state = 155}, + [6370] = {.lex_state = 155}, + [6371] = {.lex_state = 155}, + [6372] = {.lex_state = 155}, + [6373] = {.lex_state = 261}, + [6374] = {.lex_state = 155}, + [6375] = {.lex_state = 261}, + [6376] = {.lex_state = 80}, + [6377] = {.lex_state = 0}, [6378] = {.lex_state = 0}, [6379] = {.lex_state = 0}, - [6380] = {.lex_state = 152}, - [6381] = {.lex_state = 0}, - [6382] = {.lex_state = 0}, - [6383] = {.lex_state = 0}, - [6384] = {.lex_state = 0}, - [6385] = {.lex_state = 0}, - [6386] = {.lex_state = 0}, - [6387] = {.lex_state = 0}, - [6388] = {.lex_state = 129}, - [6389] = {.lex_state = 129}, - [6390] = {.lex_state = 0}, - [6391] = {.lex_state = 79}, - [6392] = {.lex_state = 0}, - [6393] = {.lex_state = 0}, - [6394] = {.lex_state = 0}, - [6395] = {.lex_state = 152}, - [6396] = {.lex_state = 0}, - [6397] = {.lex_state = 0}, + [6380] = {.lex_state = 155}, + [6381] = {.lex_state = 155}, + [6382] = {.lex_state = 155}, + [6383] = {.lex_state = 155}, + [6384] = {.lex_state = 155}, + [6385] = {.lex_state = 155}, + [6386] = {.lex_state = 155}, + [6387] = {.lex_state = 155}, + [6388] = {.lex_state = 155}, + [6389] = {.lex_state = 155}, + [6390] = {.lex_state = 155}, + [6391] = {.lex_state = 155}, + [6392] = {.lex_state = 155}, + [6393] = {.lex_state = 155}, + [6394] = {.lex_state = 155}, + [6395] = {.lex_state = 0}, + [6396] = {.lex_state = 261}, + [6397] = {.lex_state = 155}, [6398] = {.lex_state = 0}, [6399] = {.lex_state = 0}, [6400] = {.lex_state = 0}, - [6401] = {.lex_state = 79}, + [6401] = {.lex_state = 0}, [6402] = {.lex_state = 0}, [6403] = {.lex_state = 0}, [6404] = {.lex_state = 0}, - [6405] = {.lex_state = 152}, - [6406] = {.lex_state = 152}, - [6407] = {.lex_state = 0}, + [6405] = {.lex_state = 261}, + [6406] = {.lex_state = 79}, + [6407] = {.lex_state = 261}, [6408] = {.lex_state = 0}, - [6409] = {.lex_state = 0}, - [6410] = {.lex_state = 152}, + [6409] = {.lex_state = 80}, + [6410] = {.lex_state = 155}, [6411] = {.lex_state = 0}, - [6412] = {.lex_state = 0}, - [6413] = {.lex_state = 0}, - [6414] = {.lex_state = 245}, - [6415] = {.lex_state = 129}, - [6416] = {.lex_state = 156}, + [6412] = {.lex_state = 79}, + [6413] = {.lex_state = 155}, + [6414] = {.lex_state = 261}, + [6415] = {.lex_state = 0}, + [6416] = {.lex_state = 155}, [6417] = {.lex_state = 0}, - [6418] = {.lex_state = 245}, + [6418] = {.lex_state = 0}, [6419] = {.lex_state = 0}, [6420] = {.lex_state = 0}, [6421] = {.lex_state = 0}, [6422] = {.lex_state = 0}, - [6423] = {.lex_state = 129}, - [6424] = {.lex_state = 152}, + [6423] = {.lex_state = 261}, + [6424] = {.lex_state = 261}, [6425] = {.lex_state = 79}, - [6426] = {.lex_state = 0}, - [6427] = {.lex_state = 0}, - [6428] = {.lex_state = 152}, - [6429] = {.lex_state = 128}, - [6430] = {.lex_state = 129}, + [6426] = {.lex_state = 261}, + [6427] = {.lex_state = 261}, + [6428] = {.lex_state = 0}, + [6429] = {.lex_state = 0}, + [6430] = {.lex_state = 0}, [6431] = {.lex_state = 0}, [6432] = {.lex_state = 0}, - [6433] = {.lex_state = 0}, + [6433] = {.lex_state = 261}, [6434] = {.lex_state = 0}, - [6435] = {.lex_state = 0}, - [6436] = {.lex_state = 152}, + [6435] = {.lex_state = 261}, + [6436] = {.lex_state = 0}, [6437] = {.lex_state = 0}, [6438] = {.lex_state = 0}, - [6439] = {.lex_state = 179}, - [6440] = {.lex_state = 0}, - [6441] = {.lex_state = 0}, - [6442] = {.lex_state = 180}, + [6439] = {.lex_state = 0}, + [6440] = {.lex_state = 155}, + [6441] = {.lex_state = 261}, + [6442] = {.lex_state = 0}, [6443] = {.lex_state = 0}, - [6444] = {.lex_state = 245}, + [6444] = {.lex_state = 155}, [6445] = {.lex_state = 0}, [6446] = {.lex_state = 0}, - [6447] = {.lex_state = 245}, - [6448] = {.lex_state = 245}, - [6449] = {.lex_state = 0}, + [6447] = {.lex_state = 261}, + [6448] = {.lex_state = 0}, + [6449] = {.lex_state = 261}, [6450] = {.lex_state = 0}, - [6451] = {.lex_state = 0}, - [6452] = {.lex_state = 0}, + [6451] = {.lex_state = 79}, + [6452] = {.lex_state = 79}, [6453] = {.lex_state = 0}, - [6454] = {.lex_state = 0}, - [6455] = {.lex_state = 152}, - [6456] = {.lex_state = 0}, - [6457] = {.lex_state = 152}, - [6458] = {.lex_state = 0}, - [6459] = {.lex_state = 245}, - [6460] = {.lex_state = 152}, - [6461] = {.lex_state = 245}, + [6454] = {.lex_state = 261}, + [6455] = {.lex_state = 0}, + [6456] = {.lex_state = 261}, + [6457] = {.lex_state = 0}, + [6458] = {.lex_state = 155}, + [6459] = {.lex_state = 0}, + [6460] = {.lex_state = 0}, + [6461] = {.lex_state = 0}, [6462] = {.lex_state = 0}, - [6463] = {.lex_state = 152}, - [6464] = {.lex_state = 152}, - [6465] = {.lex_state = 245}, - [6466] = {.lex_state = 245}, - [6467] = {.lex_state = 129}, - [6468] = {.lex_state = 152}, - [6469] = {.lex_state = 79}, - [6470] = {.lex_state = 245}, + [6463] = {.lex_state = 0}, + [6464] = {.lex_state = 0}, + [6465] = {.lex_state = 261}, + [6466] = {.lex_state = 0}, + [6467] = {.lex_state = 0}, + [6468] = {.lex_state = 0}, + [6469] = {.lex_state = 0}, + [6470] = {.lex_state = 0}, [6471] = {.lex_state = 0}, [6472] = {.lex_state = 0}, [6473] = {.lex_state = 0}, [6474] = {.lex_state = 0}, - [6475] = {.lex_state = 245}, - [6476] = {.lex_state = 152}, - [6477] = {.lex_state = 129}, + [6475] = {.lex_state = 79}, + [6476] = {.lex_state = 0}, + [6477] = {.lex_state = 0}, [6478] = {.lex_state = 0}, [6479] = {.lex_state = 0}, - [6480] = {.lex_state = 0}, + [6480] = {.lex_state = 155}, [6481] = {.lex_state = 0}, [6482] = {.lex_state = 0}, [6483] = {.lex_state = 0}, [6484] = {.lex_state = 0}, - [6485] = {.lex_state = 152}, - [6486] = {.lex_state = 129}, + [6485] = {.lex_state = 0}, + [6486] = {.lex_state = 0}, [6487] = {.lex_state = 0}, [6488] = {.lex_state = 0}, - [6489] = {.lex_state = 79}, - [6490] = {.lex_state = 130}, + [6489] = {.lex_state = 0}, + [6490] = {.lex_state = 261}, [6491] = {.lex_state = 0}, [6492] = {.lex_state = 0}, [6493] = {.lex_state = 0}, [6494] = {.lex_state = 0}, - [6495] = {.lex_state = 79}, + [6495] = {.lex_state = 0}, [6496] = {.lex_state = 0}, - [6497] = {.lex_state = 128}, + [6497] = {.lex_state = 0}, [6498] = {.lex_state = 0}, [6499] = {.lex_state = 0}, - [6500] = {.lex_state = 245}, + [6500] = {.lex_state = 261}, [6501] = {.lex_state = 0}, - [6502] = {.lex_state = 128}, + [6502] = {.lex_state = 261}, [6503] = {.lex_state = 0}, - [6504] = {.lex_state = 130}, - [6505] = {.lex_state = 152}, - [6506] = {.lex_state = 152}, - [6507] = {.lex_state = 152}, - [6508] = {.lex_state = 245}, + [6504] = {.lex_state = 0}, + [6505] = {.lex_state = 0}, + [6506] = {.lex_state = 261}, + [6507] = {.lex_state = 0}, + [6508] = {.lex_state = 0}, [6509] = {.lex_state = 0}, - [6510] = {.lex_state = 245}, + [6510] = {.lex_state = 0}, [6511] = {.lex_state = 0}, [6512] = {.lex_state = 0}, [6513] = {.lex_state = 0}, [6514] = {.lex_state = 0}, - [6515] = {.lex_state = 156}, - [6516] = {.lex_state = 0}, + [6515] = {.lex_state = 261}, + [6516] = {.lex_state = 155}, [6517] = {.lex_state = 0}, - [6518] = {.lex_state = 0}, - [6519] = {.lex_state = 245}, - [6520] = {.lex_state = 152}, + [6518] = {.lex_state = 155}, + [6519] = {.lex_state = 0}, + [6520] = {.lex_state = 0}, [6521] = {.lex_state = 0}, - [6522] = {.lex_state = 0}, - [6523] = {.lex_state = 0}, - [6524] = {.lex_state = 152}, - [6525] = {.lex_state = 129}, + [6522] = {.lex_state = 155}, + [6523] = {.lex_state = 261}, + [6524] = {.lex_state = 0}, + [6525] = {.lex_state = 0}, [6526] = {.lex_state = 0}, - [6527] = {.lex_state = 0}, - [6528] = {.lex_state = 152}, - [6529] = {.lex_state = 0}, - [6530] = {.lex_state = 129}, + [6527] = {.lex_state = 79}, + [6528] = {.lex_state = 0}, + [6529] = {.lex_state = 261}, + [6530] = {.lex_state = 0}, [6531] = {.lex_state = 0}, - [6532] = {.lex_state = 129}, + [6532] = {.lex_state = 0}, [6533] = {.lex_state = 0}, [6534] = {.lex_state = 0}, [6535] = {.lex_state = 0}, [6536] = {.lex_state = 0}, - [6537] = {.lex_state = 0}, + [6537] = {.lex_state = 155}, [6538] = {.lex_state = 0}, [6539] = {.lex_state = 0}, [6540] = {.lex_state = 0}, [6541] = {.lex_state = 0}, - [6542] = {.lex_state = 0}, + [6542] = {.lex_state = 261}, [6543] = {.lex_state = 0}, [6544] = {.lex_state = 0}, - [6545] = {.lex_state = 0}, - [6546] = {.lex_state = 152}, - [6547] = {.lex_state = 245}, - [6548] = {.lex_state = 0}, + [6545] = {.lex_state = 261}, + [6546] = {.lex_state = 0}, + [6547] = {.lex_state = 0}, + [6548] = {.lex_state = 155}, [6549] = {.lex_state = 0}, [6550] = {.lex_state = 0}, - [6551] = {.lex_state = 245}, - [6552] = {.lex_state = 79}, + [6551] = {.lex_state = 79}, + [6552] = {.lex_state = 0}, [6553] = {.lex_state = 0}, [6554] = {.lex_state = 0}, [6555] = {.lex_state = 0}, - [6556] = {.lex_state = 0}, - [6557] = {.lex_state = 245}, + [6556] = {.lex_state = 155}, + [6557] = {.lex_state = 261}, [6558] = {.lex_state = 0}, [6559] = {.lex_state = 0}, - [6560] = {.lex_state = 245}, - [6561] = {.lex_state = 156}, + [6560] = {.lex_state = 0}, + [6561] = {.lex_state = 261}, [6562] = {.lex_state = 0}, [6563] = {.lex_state = 0}, [6564] = {.lex_state = 0}, @@ -23445,376 +24313,744 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6567] = {.lex_state = 0}, [6568] = {.lex_state = 0}, [6569] = {.lex_state = 0}, - [6570] = {.lex_state = 129}, - [6571] = {.lex_state = 152}, + [6570] = {.lex_state = 0}, + [6571] = {.lex_state = 0}, [6572] = {.lex_state = 0}, - [6573] = {.lex_state = 245}, - [6574] = {.lex_state = 152}, + [6573] = {.lex_state = 0}, + [6574] = {.lex_state = 0}, [6575] = {.lex_state = 0}, [6576] = {.lex_state = 0}, [6577] = {.lex_state = 0}, - [6578] = {.lex_state = 152}, - [6579] = {.lex_state = 152}, - [6580] = {.lex_state = 156}, + [6578] = {.lex_state = 0}, + [6579] = {.lex_state = 0}, + [6580] = {.lex_state = 0}, [6581] = {.lex_state = 0}, [6582] = {.lex_state = 0}, [6583] = {.lex_state = 0}, [6584] = {.lex_state = 0}, [6585] = {.lex_state = 0}, - [6586] = {.lex_state = 245}, - [6587] = {.lex_state = 79}, - [6588] = {.lex_state = 245}, - [6589] = {.lex_state = 79}, - [6590] = {.lex_state = 245}, + [6586] = {.lex_state = 0}, + [6587] = {.lex_state = 261}, + [6588] = {.lex_state = 0}, + [6589] = {.lex_state = 0}, + [6590] = {.lex_state = 261}, [6591] = {.lex_state = 0}, [6592] = {.lex_state = 0}, - [6593] = {.lex_state = 0}, + [6593] = {.lex_state = 79}, [6594] = {.lex_state = 0}, - [6595] = {.lex_state = 245}, + [6595] = {.lex_state = 0}, [6596] = {.lex_state = 0}, [6597] = {.lex_state = 0}, [6598] = {.lex_state = 0}, [6599] = {.lex_state = 0}, [6600] = {.lex_state = 0}, - [6601] = {.lex_state = 79}, + [6601] = {.lex_state = 0}, [6602] = {.lex_state = 0}, [6603] = {.lex_state = 0}, [6604] = {.lex_state = 0}, [6605] = {.lex_state = 0}, [6606] = {.lex_state = 0}, [6607] = {.lex_state = 0}, - [6608] = {.lex_state = 152}, - [6609] = {.lex_state = 79}, - [6610] = {.lex_state = 245}, - [6611] = {.lex_state = 152}, - [6612] = {.lex_state = 0}, - [6613] = {.lex_state = 152}, - [6614] = {.lex_state = 245}, - [6615] = {.lex_state = 245}, + [6608] = {.lex_state = 0}, + [6609] = {.lex_state = 0}, + [6610] = {.lex_state = 0}, + [6611] = {.lex_state = 0}, + [6612] = {.lex_state = 155}, + [6613] = {.lex_state = 0}, + [6614] = {.lex_state = 0}, + [6615] = {.lex_state = 261}, [6616] = {.lex_state = 0}, [6617] = {.lex_state = 0}, [6618] = {.lex_state = 0}, - [6619] = {.lex_state = 0}, - [6620] = {.lex_state = 0}, - [6621] = {.lex_state = 0}, - [6622] = {.lex_state = 0}, - [6623] = {.lex_state = 152}, + [6619] = {.lex_state = 155}, + [6620] = {.lex_state = 261}, + [6621] = {.lex_state = 79}, + [6622] = {.lex_state = 155}, + [6623] = {.lex_state = 80}, [6624] = {.lex_state = 0}, [6625] = {.lex_state = 0}, - [6626] = {.lex_state = 152}, + [6626] = {.lex_state = 0}, [6627] = {.lex_state = 0}, [6628] = {.lex_state = 0}, [6629] = {.lex_state = 0}, - [6630] = {.lex_state = 79}, + [6630] = {.lex_state = 0}, [6631] = {.lex_state = 0}, [6632] = {.lex_state = 0}, [6633] = {.lex_state = 0}, - [6634] = {.lex_state = 129}, + [6634] = {.lex_state = 0}, [6635] = {.lex_state = 0}, - [6636] = {.lex_state = 152}, - [6637] = {.lex_state = 0}, - [6638] = {.lex_state = 79}, + [6636] = {.lex_state = 0}, + [6637] = {.lex_state = 261}, + [6638] = {.lex_state = 261}, [6639] = {.lex_state = 0}, [6640] = {.lex_state = 0}, - [6641] = {.lex_state = 0}, - [6642] = {.lex_state = 245}, - [6643] = {.lex_state = 0}, - [6644] = {.lex_state = 0}, - [6645] = {.lex_state = 0}, - [6646] = {.lex_state = 129}, + [6641] = {.lex_state = 80}, + [6642] = {.lex_state = 0}, + [6643] = {.lex_state = 261}, + [6644] = {.lex_state = 79}, + [6645] = {.lex_state = 261}, + [6646] = {.lex_state = 155}, [6647] = {.lex_state = 0}, - [6648] = {.lex_state = 0}, - [6649] = {.lex_state = 0}, + [6648] = {.lex_state = 261}, + [6649] = {.lex_state = 155}, [6650] = {.lex_state = 0}, - [6651] = {.lex_state = 0}, + [6651] = {.lex_state = 155}, [6652] = {.lex_state = 0}, [6653] = {.lex_state = 0}, [6654] = {.lex_state = 0}, [6655] = {.lex_state = 0}, - [6656] = {.lex_state = 79}, - [6657] = {.lex_state = 129}, - [6658] = {.lex_state = 0}, + [6656] = {.lex_state = 0}, + [6657] = {.lex_state = 261}, + [6658] = {.lex_state = 155}, [6659] = {.lex_state = 0}, - [6660] = {.lex_state = 0}, + [6660] = {.lex_state = 261}, [6661] = {.lex_state = 0}, - [6662] = {.lex_state = 152}, + [6662] = {.lex_state = 79}, [6663] = {.lex_state = 0}, - [6664] = {.lex_state = 0}, + [6664] = {.lex_state = 261}, [6665] = {.lex_state = 0}, - [6666] = {.lex_state = 152}, + [6666] = {.lex_state = 0}, [6667] = {.lex_state = 0}, - [6668] = {.lex_state = 79}, - [6669] = {.lex_state = 129}, - [6670] = {.lex_state = 129}, - [6671] = {.lex_state = 0}, - [6672] = {.lex_state = 0}, - [6673] = {.lex_state = 0}, - [6674] = {.lex_state = 0}, - [6675] = {.lex_state = 0}, - [6676] = {.lex_state = 0}, - [6677] = {.lex_state = 245}, + [6668] = {.lex_state = 261}, + [6669] = {.lex_state = 261}, + [6670] = {.lex_state = 261}, + [6671] = {.lex_state = 79}, + [6672] = {.lex_state = 155}, + [6673] = {.lex_state = 155}, + [6674] = {.lex_state = 155}, + [6675] = {.lex_state = 261}, + [6676] = {.lex_state = 79}, + [6677] = {.lex_state = 0}, [6678] = {.lex_state = 0}, - [6679] = {.lex_state = 0}, + [6679] = {.lex_state = 261}, [6680] = {.lex_state = 0}, [6681] = {.lex_state = 0}, [6682] = {.lex_state = 0}, [6683] = {.lex_state = 0}, - [6684] = {.lex_state = 152}, - [6685] = {.lex_state = 129}, + [6684] = {.lex_state = 0}, + [6685] = {.lex_state = 0}, [6686] = {.lex_state = 0}, - [6687] = {.lex_state = 79}, + [6687] = {.lex_state = 0}, [6688] = {.lex_state = 0}, - [6689] = {.lex_state = 245}, - [6690] = {.lex_state = 245}, + [6689] = {.lex_state = 0}, + [6690] = {.lex_state = 261}, [6691] = {.lex_state = 0}, - [6692] = {.lex_state = 0}, - [6693] = {.lex_state = 129}, - [6694] = {.lex_state = 0}, - [6695] = {.lex_state = 129}, + [6692] = {.lex_state = 261}, + [6693] = {.lex_state = 261}, + [6694] = {.lex_state = 261}, + [6695] = {.lex_state = 0}, [6696] = {.lex_state = 0}, - [6697] = {.lex_state = 152}, - [6698] = {.lex_state = 0}, - [6699] = {.lex_state = 0}, + [6697] = {.lex_state = 79}, + [6698] = {.lex_state = 261}, + [6699] = {.lex_state = 261}, [6700] = {.lex_state = 0}, [6701] = {.lex_state = 0}, [6702] = {.lex_state = 0}, [6703] = {.lex_state = 0}, [6704] = {.lex_state = 0}, - [6705] = {.lex_state = 245}, + [6705] = {.lex_state = 0}, [6706] = {.lex_state = 0}, [6707] = {.lex_state = 0}, - [6708] = {.lex_state = 129}, + [6708] = {.lex_state = 0}, [6709] = {.lex_state = 0}, - [6710] = {.lex_state = 129}, - [6711] = {.lex_state = 129}, - [6712] = {.lex_state = 129}, - [6713] = {.lex_state = 129}, - [6714] = {.lex_state = 0}, - [6715] = {.lex_state = 0}, - [6716] = {.lex_state = 245}, - [6717] = {.lex_state = 0}, + [6710] = {.lex_state = 0}, + [6711] = {.lex_state = 0}, + [6712] = {.lex_state = 0}, + [6713] = {.lex_state = 0}, + [6714] = {.lex_state = 80}, + [6715] = {.lex_state = 261}, + [6716] = {.lex_state = 0}, + [6717] = {.lex_state = 261}, [6718] = {.lex_state = 0}, [6719] = {.lex_state = 0}, [6720] = {.lex_state = 0}, - [6721] = {.lex_state = 152}, + [6721] = {.lex_state = 0}, [6722] = {.lex_state = 0}, - [6723] = {.lex_state = 245}, - [6724] = {.lex_state = 0}, + [6723] = {.lex_state = 155}, + [6724] = {.lex_state = 261}, [6725] = {.lex_state = 0}, - [6726] = {.lex_state = 0}, + [6726] = {.lex_state = 261}, [6727] = {.lex_state = 0}, [6728] = {.lex_state = 0}, [6729] = {.lex_state = 0}, - [6730] = {.lex_state = 0}, + [6730] = {.lex_state = 155}, [6731] = {.lex_state = 0}, - [6732] = {.lex_state = 152}, + [6732] = {.lex_state = 0}, [6733] = {.lex_state = 0}, [6734] = {.lex_state = 0}, [6735] = {.lex_state = 0}, - [6736] = {.lex_state = 0}, + [6736] = {.lex_state = 155}, [6737] = {.lex_state = 0}, [6738] = {.lex_state = 0}, - [6739] = {.lex_state = 129}, - [6740] = {.lex_state = 152}, - [6741] = {.lex_state = 129}, - [6742] = {.lex_state = 245}, - [6743] = {.lex_state = 129}, - [6744] = {.lex_state = 245}, - [6745] = {.lex_state = 245}, - [6746] = {.lex_state = 0}, - [6747] = {.lex_state = 245}, - [6748] = {.lex_state = 0}, - [6749] = {.lex_state = 0}, + [6739] = {.lex_state = 0}, + [6740] = {.lex_state = 0}, + [6741] = {.lex_state = 155}, + [6742] = {.lex_state = 155}, + [6743] = {.lex_state = 155}, + [6744] = {.lex_state = 155}, + [6745] = {.lex_state = 0}, + [6746] = {.lex_state = 139}, + [6747] = {.lex_state = 0}, + [6748] = {.lex_state = 139}, + [6749] = {.lex_state = 261}, [6750] = {.lex_state = 0}, - [6751] = {.lex_state = 0}, + [6751] = {.lex_state = 155}, [6752] = {.lex_state = 0}, - [6753] = {.lex_state = 0}, - [6754] = {.lex_state = 152}, - [6755] = {.lex_state = 0}, - [6756] = {.lex_state = 152}, - [6757] = {.lex_state = 129}, - [6758] = {.lex_state = 245}, - [6759] = {.lex_state = 0}, - [6760] = {.lex_state = 245}, - [6761] = {.lex_state = 79}, - [6762] = {.lex_state = 79}, - [6763] = {.lex_state = 245}, + [6753] = {.lex_state = 155}, + [6754] = {.lex_state = 0}, + [6755] = {.lex_state = 261}, + [6756] = {.lex_state = 155}, + [6757] = {.lex_state = 155}, + [6758] = {.lex_state = 261}, + [6759] = {.lex_state = 155}, + [6760] = {.lex_state = 0}, + [6761] = {.lex_state = 0}, + [6762] = {.lex_state = 0}, + [6763] = {.lex_state = 0}, [6764] = {.lex_state = 0}, - [6765] = {.lex_state = 0}, - [6766] = {.lex_state = 0}, + [6765] = {.lex_state = 139}, + [6766] = {.lex_state = 139}, [6767] = {.lex_state = 0}, - [6768] = {.lex_state = 0}, - [6769] = {.lex_state = 0}, - [6770] = {.lex_state = 245}, + [6768] = {.lex_state = 139}, + [6769] = {.lex_state = 139}, + [6770] = {.lex_state = 261}, [6771] = {.lex_state = 0}, - [6772] = {.lex_state = 156}, + [6772] = {.lex_state = 0}, [6773] = {.lex_state = 0}, [6774] = {.lex_state = 0}, [6775] = {.lex_state = 0}, - [6776] = {.lex_state = 0}, - [6777] = {.lex_state = 152}, + [6776] = {.lex_state = 261}, + [6777] = {.lex_state = 0}, [6778] = {.lex_state = 0}, [6779] = {.lex_state = 0}, - [6780] = {.lex_state = 79}, - [6781] = {.lex_state = 245}, - [6782] = {.lex_state = 245}, + [6780] = {.lex_state = 155}, + [6781] = {.lex_state = 0}, + [6782] = {.lex_state = 0}, [6783] = {.lex_state = 0}, - [6784] = {.lex_state = 79}, - [6785] = {.lex_state = 0}, + [6784] = {.lex_state = 261}, + [6785] = {.lex_state = 261}, [6786] = {.lex_state = 0}, [6787] = {.lex_state = 0}, - [6788] = {.lex_state = 245}, + [6788] = {.lex_state = 0}, [6789] = {.lex_state = 0}, - [6790] = {.lex_state = 152}, - [6791] = {.lex_state = 152}, - [6792] = {.lex_state = 152}, - [6793] = {.lex_state = 245}, + [6790] = {.lex_state = 0}, + [6791] = {.lex_state = 0}, + [6792] = {.lex_state = 0}, + [6793] = {.lex_state = 139}, [6794] = {.lex_state = 0}, - [6795] = {.lex_state = 245}, + [6795] = {.lex_state = 261}, [6796] = {.lex_state = 0}, [6797] = {.lex_state = 0}, - [6798] = {.lex_state = 245}, + [6798] = {.lex_state = 0}, [6799] = {.lex_state = 0}, [6800] = {.lex_state = 0}, - [6801] = {.lex_state = 152}, - [6802] = {.lex_state = 0}, - [6803] = {.lex_state = 0}, + [6801] = {.lex_state = 0}, + [6802] = {.lex_state = 155}, + [6803] = {.lex_state = 139}, [6804] = {.lex_state = 0}, - [6805] = {.lex_state = 0}, - [6806] = {.lex_state = 152}, - [6807] = {.lex_state = 0}, - [6808] = {.lex_state = 152}, - [6809] = {.lex_state = 0}, - [6810] = {.lex_state = 152}, - [6811] = {.lex_state = 79}, - [6812] = {.lex_state = 0}, - [6813] = {.lex_state = 79}, - [6814] = {.lex_state = 152}, - [6815] = {.lex_state = 245}, - [6816] = {.lex_state = 129}, - [6817] = {.lex_state = 79}, - [6818] = {.lex_state = 152}, - [6819] = {.lex_state = 0}, - [6820] = {.lex_state = 245}, + [6805] = {.lex_state = 71}, + [6806] = {.lex_state = 155}, + [6807] = {.lex_state = 139}, + [6808] = {.lex_state = 71}, + [6809] = {.lex_state = 155}, + [6810] = {.lex_state = 0}, + [6811] = {.lex_state = 261}, + [6812] = {.lex_state = 155}, + [6813] = {.lex_state = 0}, + [6814] = {.lex_state = 155}, + [6815] = {.lex_state = 0}, + [6816] = {.lex_state = 155}, + [6817] = {.lex_state = 261}, + [6818] = {.lex_state = 155}, + [6819] = {.lex_state = 155}, + [6820] = {.lex_state = 155}, [6821] = {.lex_state = 0}, - [6822] = {.lex_state = 245}, - [6823] = {.lex_state = 152}, - [6824] = {.lex_state = 0}, - [6825] = {.lex_state = 245}, - [6826] = {.lex_state = 152}, + [6822] = {.lex_state = 0}, + [6823] = {.lex_state = 261}, + [6824] = {.lex_state = 155}, + [6825] = {.lex_state = 261}, + [6826] = {.lex_state = 0}, [6827] = {.lex_state = 0}, - [6828] = {.lex_state = 79}, + [6828] = {.lex_state = 0}, [6829] = {.lex_state = 0}, - [6830] = {.lex_state = 245}, - [6831] = {.lex_state = 245}, - [6832] = {.lex_state = 152}, - [6833] = {.lex_state = 152}, - [6834] = {.lex_state = 0}, - [6835] = {.lex_state = 156}, - [6836] = {.lex_state = 245}, + [6830] = {.lex_state = 0}, + [6831] = {.lex_state = 0}, + [6832] = {.lex_state = 0}, + [6833] = {.lex_state = 155}, + [6834] = {.lex_state = 261}, + [6835] = {.lex_state = 195}, + [6836] = {.lex_state = 0}, [6837] = {.lex_state = 0}, [6838] = {.lex_state = 0}, - [6839] = {.lex_state = 245}, + [6839] = {.lex_state = 0}, [6840] = {.lex_state = 0}, - [6841] = {.lex_state = 152}, + [6841] = {.lex_state = 0}, [6842] = {.lex_state = 0}, [6843] = {.lex_state = 0}, - [6844] = {.lex_state = 245}, + [6844] = {.lex_state = 155}, [6845] = {.lex_state = 0}, - [6846] = {.lex_state = 79}, - [6847] = {.lex_state = 0}, - [6848] = {.lex_state = 245}, - [6849] = {.lex_state = 245}, - [6850] = {.lex_state = 152}, - [6851] = {.lex_state = 79}, - [6852] = {.lex_state = 245}, - [6853] = {.lex_state = 129}, - [6854] = {.lex_state = 245}, - [6855] = {.lex_state = 129}, + [6846] = {.lex_state = 71}, + [6847] = {.lex_state = 155}, + [6848] = {.lex_state = 0}, + [6849] = {.lex_state = 0}, + [6850] = {.lex_state = 0}, + [6851] = {.lex_state = 0}, + [6852] = {.lex_state = 0}, + [6853] = {.lex_state = 0}, + [6854] = {.lex_state = 71}, + [6855] = {.lex_state = 0}, [6856] = {.lex_state = 0}, [6857] = {.lex_state = 0}, - [6858] = {.lex_state = 245}, - [6859] = {.lex_state = 245}, - [6860] = {.lex_state = 152}, + [6858] = {.lex_state = 0}, + [6859] = {.lex_state = 0}, + [6860] = {.lex_state = 0}, [6861] = {.lex_state = 0}, [6862] = {.lex_state = 0}, [6863] = {.lex_state = 0}, - [6864] = {.lex_state = 0}, + [6864] = {.lex_state = 155}, [6865] = {.lex_state = 0}, - [6866] = {.lex_state = 0}, - [6867] = {.lex_state = 0}, + [6866] = {.lex_state = 155}, + [6867] = {.lex_state = 71}, [6868] = {.lex_state = 0}, - [6869] = {.lex_state = 129}, + [6869] = {.lex_state = 0}, [6870] = {.lex_state = 0}, [6871] = {.lex_state = 0}, [6872] = {.lex_state = 0}, [6873] = {.lex_state = 0}, - [6874] = {.lex_state = 152}, - [6875] = {.lex_state = 0}, - [6876] = {.lex_state = 129}, + [6874] = {.lex_state = 0}, + [6875] = {.lex_state = 138}, + [6876] = {.lex_state = 0}, [6877] = {.lex_state = 0}, - [6878] = {.lex_state = 0}, + [6878] = {.lex_state = 261}, [6879] = {.lex_state = 0}, [6880] = {.lex_state = 0}, [6881] = {.lex_state = 0}, [6882] = {.lex_state = 0}, - [6883] = {.lex_state = 245}, - [6884] = {.lex_state = 245}, - [6885] = {.lex_state = 152}, + [6883] = {.lex_state = 0}, + [6884] = {.lex_state = 0}, + [6885] = {.lex_state = 0}, [6886] = {.lex_state = 0}, [6887] = {.lex_state = 0}, - [6888] = {.lex_state = 0}, + [6888] = {.lex_state = 155}, [6889] = {.lex_state = 0}, - [6890] = {.lex_state = 0}, - [6891] = {.lex_state = 152}, - [6892] = {.lex_state = 156}, - [6893] = {.lex_state = 0}, + [6890] = {.lex_state = 261}, + [6891] = {.lex_state = 140}, + [6892] = {.lex_state = 138}, + [6893] = {.lex_state = 261}, [6894] = {.lex_state = 0}, - [6895] = {.lex_state = 0}, - [6896] = {.lex_state = 0}, - [6897] = {.lex_state = 245}, - [6898] = {.lex_state = 245}, - [6899] = {.lex_state = 152}, + [6895] = {.lex_state = 138}, + [6896] = {.lex_state = 138}, + [6897] = {.lex_state = 0}, + [6898] = {.lex_state = 139}, + [6899] = {.lex_state = 0}, [6900] = {.lex_state = 0}, [6901] = {.lex_state = 0}, - [6902] = {.lex_state = 0}, - [6903] = {.lex_state = 152}, - [6904] = {.lex_state = 79}, - [6905] = {.lex_state = 0}, + [6902] = {.lex_state = 139}, + [6903] = {.lex_state = 261}, + [6904] = {.lex_state = 0}, + [6905] = {.lex_state = 167}, [6906] = {.lex_state = 0}, - [6907] = {.lex_state = 0}, - [6908] = {.lex_state = 245}, - [6909] = {.lex_state = 245}, - [6910] = {.lex_state = 245}, - [6911] = {.lex_state = 152}, - [6912] = {.lex_state = 152}, + [6907] = {.lex_state = 261}, + [6908] = {.lex_state = 155}, + [6909] = {.lex_state = 0}, + [6910] = {.lex_state = 0}, + [6911] = {.lex_state = 0}, + [6912] = {.lex_state = 0}, [6913] = {.lex_state = 0}, - [6914] = {.lex_state = 0}, - [6915] = {.lex_state = 152}, - [6916] = {.lex_state = 245}, - [6917] = {.lex_state = 245}, - [6918] = {.lex_state = 152}, - [6919] = {.lex_state = 152}, - [6920] = {.lex_state = 152}, - [6921] = {.lex_state = 0}, - [6922] = {.lex_state = 245}, - [6923] = {.lex_state = 152}, - [6924] = {.lex_state = 152}, - [6925] = {.lex_state = 152}, - [6926] = {.lex_state = 156}, - [6927] = {.lex_state = 245}, - [6928] = {.lex_state = 0}, - [6929] = {.lex_state = 0}, + [6914] = {.lex_state = 261}, + [6915] = {.lex_state = 0}, + [6916] = {.lex_state = 261}, + [6917] = {.lex_state = 0}, + [6918] = {.lex_state = 0}, + [6919] = {.lex_state = 261}, + [6920] = {.lex_state = 261}, + [6921] = {.lex_state = 71}, + [6922] = {.lex_state = 196}, + [6923] = {.lex_state = 0}, + [6924] = {.lex_state = 0}, + [6925] = {.lex_state = 0}, + [6926] = {.lex_state = 155}, + [6927] = {.lex_state = 0}, + [6928] = {.lex_state = 139}, + [6929] = {.lex_state = 139}, [6930] = {.lex_state = 0}, - [6931] = {.lex_state = 152}, - [6932] = {.lex_state = 245}, + [6931] = {.lex_state = 0}, + [6932] = {.lex_state = 71}, [6933] = {.lex_state = 0}, [6934] = {.lex_state = 0}, - [6935] = {.lex_state = 152}, - [6936] = {.lex_state = 152}, + [6935] = {.lex_state = 71}, + [6936] = {.lex_state = 261}, [6937] = {.lex_state = 0}, - [6938] = {.lex_state = 152}, + [6938] = {.lex_state = 71}, [6939] = {.lex_state = 0}, + [6940] = {.lex_state = 0}, + [6941] = {.lex_state = 0}, + [6942] = {.lex_state = 0}, + [6943] = {.lex_state = 0}, + [6944] = {.lex_state = 261}, + [6945] = {.lex_state = 0}, + [6946] = {.lex_state = 0}, + [6947] = {.lex_state = 0}, + [6948] = {.lex_state = 71}, + [6949] = {.lex_state = 155}, + [6950] = {.lex_state = 0}, + [6951] = {.lex_state = 155}, + [6952] = {.lex_state = 261}, + [6953] = {.lex_state = 0}, + [6954] = {.lex_state = 261}, + [6955] = {.lex_state = 0}, + [6956] = {.lex_state = 0}, + [6957] = {.lex_state = 0}, + [6958] = {.lex_state = 0}, + [6959] = {.lex_state = 0}, + [6960] = {.lex_state = 155}, + [6961] = {.lex_state = 261}, + [6962] = {.lex_state = 155}, + [6963] = {.lex_state = 0}, + [6964] = {.lex_state = 0}, + [6965] = {.lex_state = 0}, + [6966] = {.lex_state = 0}, + [6967] = {.lex_state = 71}, + [6968] = {.lex_state = 0}, + [6969] = {.lex_state = 0}, + [6970] = {.lex_state = 0}, + [6971] = {.lex_state = 155}, + [6972] = {.lex_state = 0}, + [6973] = {.lex_state = 0}, + [6974] = {.lex_state = 155}, + [6975] = {.lex_state = 261}, + [6976] = {.lex_state = 261}, + [6977] = {.lex_state = 0}, + [6978] = {.lex_state = 0}, + [6979] = {.lex_state = 71}, + [6980] = {.lex_state = 139}, + [6981] = {.lex_state = 261}, + [6982] = {.lex_state = 0}, + [6983] = {.lex_state = 0}, + [6984] = {.lex_state = 0}, + [6985] = {.lex_state = 0}, + [6986] = {.lex_state = 0}, + [6987] = {.lex_state = 0}, + [6988] = {.lex_state = 0}, + [6989] = {.lex_state = 0}, + [6990] = {.lex_state = 0}, + [6991] = {.lex_state = 0}, + [6992] = {.lex_state = 155}, + [6993] = {.lex_state = 0}, + [6994] = {.lex_state = 0}, + [6995] = {.lex_state = 0}, + [6996] = {.lex_state = 0}, + [6997] = {.lex_state = 167}, + [6998] = {.lex_state = 0}, + [6999] = {.lex_state = 0}, + [7000] = {.lex_state = 0}, + [7001] = {.lex_state = 0}, + [7002] = {.lex_state = 0}, + [7003] = {.lex_state = 0}, + [7004] = {.lex_state = 71}, + [7005] = {.lex_state = 0}, + [7006] = {.lex_state = 155}, + [7007] = {.lex_state = 0}, + [7008] = {.lex_state = 261}, + [7009] = {.lex_state = 0}, + [7010] = {.lex_state = 0}, + [7011] = {.lex_state = 0}, + [7012] = {.lex_state = 0}, + [7013] = {.lex_state = 0}, + [7014] = {.lex_state = 0}, + [7015] = {.lex_state = 0}, + [7016] = {.lex_state = 0}, + [7017] = {.lex_state = 0}, + [7018] = {.lex_state = 0}, + [7019] = {.lex_state = 0}, + [7020] = {.lex_state = 155}, + [7021] = {.lex_state = 0}, + [7022] = {.lex_state = 0}, + [7023] = {.lex_state = 155}, + [7024] = {.lex_state = 0}, + [7025] = {.lex_state = 0}, + [7026] = {.lex_state = 167}, + [7027] = {.lex_state = 71}, + [7028] = {.lex_state = 0}, + [7029] = {.lex_state = 0}, + [7030] = {.lex_state = 155}, + [7031] = {.lex_state = 0}, + [7032] = {.lex_state = 0}, + [7033] = {.lex_state = 155}, + [7034] = {.lex_state = 155}, + [7035] = {.lex_state = 71}, + [7036] = {.lex_state = 0}, + [7037] = {.lex_state = 0}, + [7038] = {.lex_state = 0}, + [7039] = {.lex_state = 0}, + [7040] = {.lex_state = 139}, + [7041] = {.lex_state = 139}, + [7042] = {.lex_state = 155}, + [7043] = {.lex_state = 0}, + [7044] = {.lex_state = 0}, + [7045] = {.lex_state = 0}, + [7046] = {.lex_state = 0}, + [7047] = {.lex_state = 0}, + [7048] = {.lex_state = 71}, + [7049] = {.lex_state = 0}, + [7050] = {.lex_state = 139}, + [7051] = {.lex_state = 0}, + [7052] = {.lex_state = 0}, + [7053] = {.lex_state = 155}, + [7054] = {.lex_state = 0}, + [7055] = {.lex_state = 0}, + [7056] = {.lex_state = 0}, + [7057] = {.lex_state = 167}, + [7058] = {.lex_state = 0}, + [7059] = {.lex_state = 0}, + [7060] = {.lex_state = 0}, + [7061] = {.lex_state = 155}, + [7062] = {.lex_state = 0}, + [7063] = {.lex_state = 0}, + [7064] = {.lex_state = 0}, + [7065] = {.lex_state = 0}, + [7066] = {.lex_state = 0}, + [7067] = {.lex_state = 155}, + [7068] = {.lex_state = 0}, + [7069] = {.lex_state = 0}, + [7070] = {.lex_state = 0}, + [7071] = {.lex_state = 261}, + [7072] = {.lex_state = 0}, + [7073] = {.lex_state = 0}, + [7074] = {.lex_state = 0}, + [7075] = {.lex_state = 0}, + [7076] = {.lex_state = 0}, + [7077] = {.lex_state = 0}, + [7078] = {.lex_state = 0}, + [7079] = {.lex_state = 0}, + [7080] = {.lex_state = 0}, + [7081] = {.lex_state = 0}, + [7082] = {.lex_state = 0}, + [7083] = {.lex_state = 0}, + [7084] = {.lex_state = 0}, + [7085] = {.lex_state = 0}, + [7086] = {.lex_state = 0}, + [7087] = {.lex_state = 0}, + [7088] = {.lex_state = 0}, + [7089] = {.lex_state = 0}, + [7090] = {.lex_state = 139}, + [7091] = {.lex_state = 139}, + [7092] = {.lex_state = 0}, + [7093] = {.lex_state = 0}, + [7094] = {.lex_state = 0}, + [7095] = {.lex_state = 0}, + [7096] = {.lex_state = 0}, + [7097] = {.lex_state = 0}, + [7098] = {.lex_state = 0}, + [7099] = {.lex_state = 0}, + [7100] = {.lex_state = 0}, + [7101] = {.lex_state = 0}, + [7102] = {.lex_state = 0}, + [7103] = {.lex_state = 139}, + [7104] = {.lex_state = 0}, + [7105] = {.lex_state = 139}, + [7106] = {.lex_state = 139}, + [7107] = {.lex_state = 155}, + [7108] = {.lex_state = 261}, + [7109] = {.lex_state = 71}, + [7110] = {.lex_state = 261}, + [7111] = {.lex_state = 155}, + [7112] = {.lex_state = 71}, + [7113] = {.lex_state = 261}, + [7114] = {.lex_state = 0}, + [7115] = {.lex_state = 0}, + [7116] = {.lex_state = 0}, + [7117] = {.lex_state = 0}, + [7118] = {.lex_state = 0}, + [7119] = {.lex_state = 0}, + [7120] = {.lex_state = 0}, + [7121] = {.lex_state = 0}, + [7122] = {.lex_state = 155}, + [7123] = {.lex_state = 0}, + [7124] = {.lex_state = 261}, + [7125] = {.lex_state = 139}, + [7126] = {.lex_state = 0}, + [7127] = {.lex_state = 139}, + [7128] = {.lex_state = 261}, + [7129] = {.lex_state = 261}, + [7130] = {.lex_state = 0}, + [7131] = {.lex_state = 0}, + [7132] = {.lex_state = 0}, + [7133] = {.lex_state = 0}, + [7134] = {.lex_state = 0}, + [7135] = {.lex_state = 139}, + [7136] = {.lex_state = 261}, + [7137] = {.lex_state = 71}, + [7138] = {.lex_state = 0}, + [7139] = {.lex_state = 0}, + [7140] = {.lex_state = 0}, + [7141] = {.lex_state = 0}, + [7142] = {.lex_state = 0}, + [7143] = {.lex_state = 261}, + [7144] = {.lex_state = 0}, + [7145] = {.lex_state = 139}, + [7146] = {.lex_state = 0}, + [7147] = {.lex_state = 155}, + [7148] = {.lex_state = 0}, + [7149] = {.lex_state = 0}, + [7150] = {.lex_state = 0}, + [7151] = {.lex_state = 155}, + [7152] = {.lex_state = 0}, + [7153] = {.lex_state = 0}, + [7154] = {.lex_state = 261}, + [7155] = {.lex_state = 155}, + [7156] = {.lex_state = 167}, + [7157] = {.lex_state = 155}, + [7158] = {.lex_state = 0}, + [7159] = {.lex_state = 261}, + [7160] = {.lex_state = 0}, + [7161] = {.lex_state = 261}, + [7162] = {.lex_state = 261}, + [7163] = {.lex_state = 0}, + [7164] = {.lex_state = 261}, + [7165] = {.lex_state = 0}, + [7166] = {.lex_state = 0}, + [7167] = {.lex_state = 0}, + [7168] = {.lex_state = 0}, + [7169] = {.lex_state = 155}, + [7170] = {.lex_state = 0}, + [7171] = {.lex_state = 71}, + [7172] = {.lex_state = 0}, + [7173] = {.lex_state = 71}, + [7174] = {.lex_state = 0}, + [7175] = {.lex_state = 0}, + [7176] = {.lex_state = 0}, + [7177] = {.lex_state = 71}, + [7178] = {.lex_state = 0}, + [7179] = {.lex_state = 0}, + [7180] = {.lex_state = 167}, + [7181] = {.lex_state = 261}, + [7182] = {.lex_state = 71}, + [7183] = {.lex_state = 0}, + [7184] = {.lex_state = 155}, + [7185] = {.lex_state = 0}, + [7186] = {.lex_state = 261}, + [7187] = {.lex_state = 261}, + [7188] = {.lex_state = 261}, + [7189] = {.lex_state = 155}, + [7190] = {.lex_state = 0}, + [7191] = {.lex_state = 261}, + [7192] = {.lex_state = 0}, + [7193] = {.lex_state = 0}, + [7194] = {.lex_state = 0}, + [7195] = {.lex_state = 155}, + [7196] = {.lex_state = 261}, + [7197] = {.lex_state = 0}, + [7198] = {.lex_state = 0}, + [7199] = {.lex_state = 155}, + [7200] = {.lex_state = 0}, + [7201] = {.lex_state = 261}, + [7202] = {.lex_state = 0}, + [7203] = {.lex_state = 261}, + [7204] = {.lex_state = 155}, + [7205] = {.lex_state = 0}, + [7206] = {.lex_state = 261}, + [7207] = {.lex_state = 155}, + [7208] = {.lex_state = 139}, + [7209] = {.lex_state = 0}, + [7210] = {.lex_state = 0}, + [7211] = {.lex_state = 261}, + [7212] = {.lex_state = 0}, + [7213] = {.lex_state = 0}, + [7214] = {.lex_state = 0}, + [7215] = {.lex_state = 261}, + [7216] = {.lex_state = 261}, + [7217] = {.lex_state = 0}, + [7218] = {.lex_state = 0}, + [7219] = {.lex_state = 261}, + [7220] = {.lex_state = 0}, + [7221] = {.lex_state = 261}, + [7222] = {.lex_state = 0}, + [7223] = {.lex_state = 261}, + [7224] = {.lex_state = 0}, + [7225] = {.lex_state = 0}, + [7226] = {.lex_state = 261}, + [7227] = {.lex_state = 261}, + [7228] = {.lex_state = 155}, + [7229] = {.lex_state = 71}, + [7230] = {.lex_state = 0}, + [7231] = {.lex_state = 0}, + [7232] = {.lex_state = 0}, + [7233] = {.lex_state = 0}, + [7234] = {.lex_state = 0}, + [7235] = {.lex_state = 71}, + [7236] = {.lex_state = 0}, + [7237] = {.lex_state = 155}, + [7238] = {.lex_state = 139}, + [7239] = {.lex_state = 0}, + [7240] = {.lex_state = 139}, + [7241] = {.lex_state = 0}, + [7242] = {.lex_state = 155}, + [7243] = {.lex_state = 0}, + [7244] = {.lex_state = 0}, + [7245] = {.lex_state = 0}, + [7246] = {.lex_state = 0}, + [7247] = {.lex_state = 0}, + [7248] = {.lex_state = 71}, + [7249] = {.lex_state = 139}, + [7250] = {.lex_state = 261}, + [7251] = {.lex_state = 261}, + [7252] = {.lex_state = 261}, + [7253] = {.lex_state = 155}, + [7254] = {.lex_state = 139}, + [7255] = {.lex_state = 139}, + [7256] = {.lex_state = 0}, + [7257] = {.lex_state = 155}, + [7258] = {.lex_state = 0}, + [7259] = {.lex_state = 155}, + [7260] = {.lex_state = 261}, + [7261] = {.lex_state = 0}, + [7262] = {.lex_state = 0}, + [7263] = {.lex_state = 0}, + [7264] = {.lex_state = 0}, + [7265] = {.lex_state = 261}, + [7266] = {.lex_state = 261}, + [7267] = {.lex_state = 155}, + [7268] = {.lex_state = 0}, + [7269] = {.lex_state = 0}, + [7270] = {.lex_state = 0}, + [7271] = {.lex_state = 155}, + [7272] = {.lex_state = 0}, + [7273] = {.lex_state = 0}, + [7274] = {.lex_state = 261}, + [7275] = {.lex_state = 167}, + [7276] = {.lex_state = 0}, + [7277] = {.lex_state = 261}, + [7278] = {.lex_state = 261}, + [7279] = {.lex_state = 155}, + [7280] = {.lex_state = 155}, + [7281] = {.lex_state = 139}, + [7282] = {.lex_state = 155}, + [7283] = {.lex_state = 0}, + [7284] = {.lex_state = 261}, + [7285] = {.lex_state = 261}, + [7286] = {.lex_state = 155}, + [7287] = {.lex_state = 155}, + [7288] = {.lex_state = 0}, + [7289] = {.lex_state = 261}, + [7290] = {.lex_state = 261}, + [7291] = {.lex_state = 155}, + [7292] = {.lex_state = 155}, + [7293] = {.lex_state = 155}, + [7294] = {.lex_state = 139}, + [7295] = {.lex_state = 167}, + [7296] = {.lex_state = 71}, + [7297] = {.lex_state = 0}, + [7298] = {.lex_state = 155}, + [7299] = {.lex_state = 0}, + [7300] = {.lex_state = 261}, + [7301] = {.lex_state = 261}, + [7302] = {.lex_state = 0}, + [7303] = {.lex_state = 0}, + [7304] = {.lex_state = 261}, + [7305] = {.lex_state = 0}, + [7306] = {.lex_state = 155}, + [7307] = {.lex_state = 155}, }; enum { @@ -23939,7 +25175,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_EQ] = ACTIONS(1), [anon_sym_CARET_EQ] = ACTIONS(1), [anon_sym_PIPE_EQ] = ACTIONS(1), + [anon_sym_and_eq] = ACTIONS(1), + [anon_sym_or_eq] = ACTIONS(1), + [anon_sym_xor_eq] = ACTIONS(1), + [anon_sym_not] = ACTIONS(1), + [anon_sym_compl] = ACTIONS(1), [anon_sym_LT_EQ_GT] = ACTIONS(1), + [anon_sym_or] = ACTIONS(1), + [anon_sym_and] = ACTIONS(1), + [anon_sym_bitor] = ACTIONS(1), + [anon_sym_xor] = ACTIONS(1), + [anon_sym_bitand] = ACTIONS(1), + [anon_sym_not_eq] = ACTIONS(1), [anon_sym_DASH_DASH] = ACTIONS(1), [anon_sym_PLUS_PLUS] = ACTIONS(1), [anon_sym_sizeof] = ACTIONS(1), @@ -23996,122 +25243,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(1), }, [1] = { - [sym_translation_unit] = STATE(6733), - [sym_preproc_include] = STATE(38), - [sym_preproc_def] = STATE(38), - [sym_preproc_function_def] = STATE(38), - [sym_preproc_call] = STATE(38), - [sym_preproc_if] = STATE(38), - [sym_preproc_ifdef] = STATE(38), - [sym_function_definition] = STATE(38), - [sym_declaration] = STATE(38), - [sym_type_definition] = STATE(38), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(4003), - [sym_linkage_specification] = STATE(38), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(1089), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym_ms_call_modifier] = STATE(1797), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4796), - [sym_array_declarator] = STATE(4825), - [sym_compound_statement] = STATE(38), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(3085), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_attributed_statement] = STATE(38), - [sym_labeled_statement] = STATE(38), - [sym_expression_statement] = STATE(38), - [sym_if_statement] = STATE(38), - [sym_switch_statement] = STATE(38), - [sym_case_statement] = STATE(38), - [sym_while_statement] = STATE(38), - [sym_do_statement] = STATE(38), - [sym_for_statement] = STATE(38), - [sym_return_statement] = STATE(38), - [sym_break_statement] = STATE(38), - [sym_continue_statement] = STATE(38), - [sym_goto_statement] = STATE(38), - [sym__expression] = STATE(3605), - [sym_comma_expression] = STATE(6558), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__empty_declaration] = STATE(38), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1768), - [sym_dependent_type] = STATE(3139), - [sym_template_declaration] = STATE(38), - [sym_template_instantiation] = STATE(38), - [sym_operator_cast] = STATE(5184), - [sym__constructor_specifiers] = STATE(1768), - [sym_operator_cast_definition] = STATE(38), - [sym_operator_cast_declaration] = STATE(38), - [sym_constructor_or_destructor_definition] = STATE(38), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3531), - [sym_namespace_definition] = STATE(38), - [sym_namespace_alias_definition] = STATE(38), - [sym_using_declaration] = STATE(38), - [sym_alias_declaration] = STATE(38), - [sym_static_assert_declaration] = STATE(38), - [sym_concept_definition] = STATE(38), - [sym_for_range_loop] = STATE(38), - [sym_co_return_statement] = STATE(38), - [sym_co_yield_statement] = STATE(38), - [sym_throw_statement] = STATE(38), - [sym_try_statement] = STATE(38), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4513), - [sym_qualified_identifier] = STATE(2816), - [sym_qualified_type_identifier] = STATE(3276), - [sym_qualified_operator_cast_identifier] = STATE(5184), - [sym_operator_name] = STATE(4825), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_translation_unit_repeat1] = STATE(38), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(282), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_operator_cast_definition_repeat1] = STATE(1768), + [sym_translation_unit] = STATE(7256), + [sym_preproc_include] = STATE(71), + [sym_preproc_def] = STATE(71), + [sym_preproc_function_def] = STATE(71), + [sym_preproc_call] = STATE(71), + [sym_preproc_if] = STATE(71), + [sym_preproc_ifdef] = STATE(71), + [sym_function_definition] = STATE(71), + [sym_declaration] = STATE(71), + [sym_type_definition] = STATE(71), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4232), + [sym_linkage_specification] = STATE(71), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym_ms_call_modifier] = STATE(2073), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(5060), + [sym_array_declarator] = STATE(5080), + [sym_compound_statement] = STATE(71), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3385), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_attributed_statement] = STATE(71), + [sym_labeled_statement] = STATE(71), + [sym_expression_statement] = STATE(71), + [sym_if_statement] = STATE(71), + [sym_switch_statement] = STATE(71), + [sym_case_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_do_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_return_statement] = STATE(71), + [sym_break_statement] = STATE(71), + [sym_continue_statement] = STATE(71), + [sym_goto_statement] = STATE(71), + [sym__expression] = STATE(3758), + [sym_comma_expression] = STATE(7239), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__empty_declaration] = STATE(71), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1969), + [sym_dependent_type] = STATE(3481), + [sym_template_declaration] = STATE(71), + [sym_template_instantiation] = STATE(71), + [sym_operator_cast] = STATE(5473), + [sym__constructor_specifiers] = STATE(1969), + [sym_operator_cast_definition] = STATE(71), + [sym_operator_cast_declaration] = STATE(71), + [sym_constructor_or_destructor_definition] = STATE(71), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3608), + [sym_namespace_definition] = STATE(71), + [sym_namespace_alias_definition] = STATE(71), + [sym_using_declaration] = STATE(71), + [sym_alias_declaration] = STATE(71), + [sym_static_assert_declaration] = STATE(71), + [sym_concept_definition] = STATE(71), + [sym_for_range_loop] = STATE(71), + [sym_co_return_statement] = STATE(71), + [sym_co_yield_statement] = STATE(71), + [sym_throw_statement] = STATE(71), + [sym_try_statement] = STATE(71), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4780), + [sym_qualified_identifier] = STATE(2734), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(5473), + [sym_operator_name] = STATE(5080), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_translation_unit_repeat1] = STATE(71), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(286), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_operator_cast_definition_repeat1] = STATE(1969), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [aux_sym_preproc_include_token1] = ACTIONS(9), @@ -24176,6 +25423,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(87), [anon_sym_continue] = ACTIONS(89), [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -24218,126 +25467,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(143), }, [2] = { - [sym_preproc_include] = STATE(55), - [sym_preproc_def] = STATE(55), - [sym_preproc_function_def] = STATE(55), - [sym_preproc_call] = STATE(55), - [sym_preproc_if] = STATE(55), - [sym_preproc_ifdef] = STATE(55), - [sym_function_definition] = STATE(55), - [sym_declaration] = STATE(55), - [sym_type_definition] = STATE(55), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(3967), - [sym_linkage_specification] = STATE(55), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(1089), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym_ms_call_modifier] = STATE(1829), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4789), - [sym_array_declarator] = STATE(4825), - [sym_compound_statement] = STATE(55), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(2975), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_attributed_statement] = STATE(55), - [sym_labeled_statement] = STATE(55), - [sym_expression_statement] = STATE(55), - [sym_if_statement] = STATE(55), - [sym_switch_statement] = STATE(55), - [sym_case_statement] = STATE(55), - [sym_while_statement] = STATE(55), - [sym_do_statement] = STATE(55), - [sym_for_statement] = STATE(55), - [sym_return_statement] = STATE(55), - [sym_break_statement] = STATE(55), - [sym_continue_statement] = STATE(55), - [sym_goto_statement] = STATE(55), - [sym__expression] = STATE(3506), - [sym_comma_expression] = STATE(6499), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_initializer_list] = STATE(5702), - [sym_initializer_pair] = STATE(5702), - [sym_subscript_designator] = STATE(5180), - [sym_field_designator] = STATE(5180), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__empty_declaration] = STATE(55), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1790), - [sym_dependent_type] = STATE(3139), - [sym_template_declaration] = STATE(55), - [sym_template_instantiation] = STATE(55), - [sym_operator_cast] = STATE(5178), - [sym__constructor_specifiers] = STATE(1790), - [sym_operator_cast_definition] = STATE(55), - [sym_operator_cast_declaration] = STATE(55), - [sym_constructor_or_destructor_definition] = STATE(55), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3531), - [sym_namespace_definition] = STATE(55), - [sym_namespace_alias_definition] = STATE(55), - [sym_using_declaration] = STATE(55), - [sym_alias_declaration] = STATE(55), - [sym_static_assert_declaration] = STATE(55), - [sym_concept_definition] = STATE(55), - [sym_for_range_loop] = STATE(55), - [sym_co_return_statement] = STATE(55), - [sym_co_yield_statement] = STATE(55), - [sym_throw_statement] = STATE(55), - [sym_try_statement] = STATE(55), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4513), - [sym_qualified_identifier] = STATE(2816), - [sym_qualified_type_identifier] = STATE(3276), - [sym_qualified_operator_cast_identifier] = STATE(5178), - [sym_operator_name] = STATE(4825), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_translation_unit_repeat1] = STATE(55), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_initializer_pair_repeat1] = STATE(5180), - [aux_sym_operator_cast_definition_repeat1] = STATE(1790), + [sym_preproc_include] = STATE(43), + [sym_preproc_def] = STATE(43), + [sym_preproc_function_def] = STATE(43), + [sym_preproc_call] = STATE(43), + [sym_preproc_if] = STATE(43), + [sym_preproc_ifdef] = STATE(43), + [sym_function_definition] = STATE(43), + [sym_declaration] = STATE(43), + [sym_type_definition] = STATE(43), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4216), + [sym_linkage_specification] = STATE(43), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym_ms_call_modifier] = STATE(2011), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(5018), + [sym_array_declarator] = STATE(5080), + [sym_compound_statement] = STATE(43), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3372), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_attributed_statement] = STATE(43), + [sym_labeled_statement] = STATE(43), + [sym_expression_statement] = STATE(43), + [sym_if_statement] = STATE(43), + [sym_switch_statement] = STATE(43), + [sym_case_statement] = STATE(43), + [sym_while_statement] = STATE(43), + [sym_do_statement] = STATE(43), + [sym_for_statement] = STATE(43), + [sym_return_statement] = STATE(43), + [sym_break_statement] = STATE(43), + [sym_continue_statement] = STATE(43), + [sym_goto_statement] = STATE(43), + [sym__expression] = STATE(3577), + [sym_comma_expression] = STATE(6857), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_initializer_list] = STATE(5910), + [sym_initializer_pair] = STATE(5910), + [sym_subscript_designator] = STATE(5464), + [sym_field_designator] = STATE(5464), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__empty_declaration] = STATE(43), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1974), + [sym_dependent_type] = STATE(3481), + [sym_template_declaration] = STATE(43), + [sym_template_instantiation] = STATE(43), + [sym_operator_cast] = STATE(5456), + [sym__constructor_specifiers] = STATE(1974), + [sym_operator_cast_definition] = STATE(43), + [sym_operator_cast_declaration] = STATE(43), + [sym_constructor_or_destructor_definition] = STATE(43), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3608), + [sym_namespace_definition] = STATE(43), + [sym_namespace_alias_definition] = STATE(43), + [sym_using_declaration] = STATE(43), + [sym_alias_declaration] = STATE(43), + [sym_static_assert_declaration] = STATE(43), + [sym_concept_definition] = STATE(43), + [sym_for_range_loop] = STATE(43), + [sym_co_return_statement] = STATE(43), + [sym_co_yield_statement] = STATE(43), + [sym_throw_statement] = STATE(43), + [sym_try_statement] = STATE(43), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4780), + [sym_qualified_identifier] = STATE(2734), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(5456), + [sym_operator_name] = STATE(5080), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_translation_unit_repeat1] = STATE(43), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_initializer_pair_repeat1] = STATE(5464), + [aux_sym_operator_cast_definition_repeat1] = STATE(1974), [sym_identifier] = ACTIONS(145), [aux_sym_preproc_include_token1] = ACTIONS(147), [aux_sym_preproc_def_token1] = ACTIONS(149), @@ -24403,6 +25652,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(187), [anon_sym_continue] = ACTIONS(189), [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -24446,126 +25697,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(143), }, [3] = { - [sym_preproc_include] = STATE(63), - [sym_preproc_def] = STATE(63), - [sym_preproc_function_def] = STATE(63), - [sym_preproc_call] = STATE(63), - [sym_preproc_if] = STATE(63), - [sym_preproc_ifdef] = STATE(63), - [sym_function_definition] = STATE(63), - [sym_declaration] = STATE(63), - [sym_type_definition] = STATE(63), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(3967), - [sym_linkage_specification] = STATE(63), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(1089), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym_ms_call_modifier] = STATE(1829), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4789), - [sym_array_declarator] = STATE(4825), - [sym_compound_statement] = STATE(63), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(2975), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_attributed_statement] = STATE(63), - [sym_labeled_statement] = STATE(63), - [sym_expression_statement] = STATE(63), - [sym_if_statement] = STATE(63), - [sym_switch_statement] = STATE(63), - [sym_case_statement] = STATE(63), - [sym_while_statement] = STATE(63), - [sym_do_statement] = STATE(63), - [sym_for_statement] = STATE(63), - [sym_return_statement] = STATE(63), - [sym_break_statement] = STATE(63), - [sym_continue_statement] = STATE(63), - [sym_goto_statement] = STATE(63), - [sym__expression] = STATE(3506), - [sym_comma_expression] = STATE(6499), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_initializer_list] = STATE(5702), - [sym_initializer_pair] = STATE(5702), - [sym_subscript_designator] = STATE(5180), - [sym_field_designator] = STATE(5180), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__empty_declaration] = STATE(63), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1790), - [sym_dependent_type] = STATE(3139), - [sym_template_declaration] = STATE(63), - [sym_template_instantiation] = STATE(63), - [sym_operator_cast] = STATE(5178), - [sym__constructor_specifiers] = STATE(1790), - [sym_operator_cast_definition] = STATE(63), - [sym_operator_cast_declaration] = STATE(63), - [sym_constructor_or_destructor_definition] = STATE(63), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3531), - [sym_namespace_definition] = STATE(63), - [sym_namespace_alias_definition] = STATE(63), - [sym_using_declaration] = STATE(63), - [sym_alias_declaration] = STATE(63), - [sym_static_assert_declaration] = STATE(63), - [sym_concept_definition] = STATE(63), - [sym_for_range_loop] = STATE(63), - [sym_co_return_statement] = STATE(63), - [sym_co_yield_statement] = STATE(63), - [sym_throw_statement] = STATE(63), - [sym_try_statement] = STATE(63), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4513), - [sym_qualified_identifier] = STATE(2816), - [sym_qualified_type_identifier] = STATE(3276), - [sym_qualified_operator_cast_identifier] = STATE(5178), - [sym_operator_name] = STATE(4825), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_translation_unit_repeat1] = STATE(63), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_initializer_pair_repeat1] = STATE(5180), - [aux_sym_operator_cast_definition_repeat1] = STATE(1790), + [sym_preproc_include] = STATE(41), + [sym_preproc_def] = STATE(41), + [sym_preproc_function_def] = STATE(41), + [sym_preproc_call] = STATE(41), + [sym_preproc_if] = STATE(41), + [sym_preproc_ifdef] = STATE(41), + [sym_function_definition] = STATE(41), + [sym_declaration] = STATE(41), + [sym_type_definition] = STATE(41), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4216), + [sym_linkage_specification] = STATE(41), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym_ms_call_modifier] = STATE(2011), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(5018), + [sym_array_declarator] = STATE(5080), + [sym_compound_statement] = STATE(41), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3372), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_attributed_statement] = STATE(41), + [sym_labeled_statement] = STATE(41), + [sym_expression_statement] = STATE(41), + [sym_if_statement] = STATE(41), + [sym_switch_statement] = STATE(41), + [sym_case_statement] = STATE(41), + [sym_while_statement] = STATE(41), + [sym_do_statement] = STATE(41), + [sym_for_statement] = STATE(41), + [sym_return_statement] = STATE(41), + [sym_break_statement] = STATE(41), + [sym_continue_statement] = STATE(41), + [sym_goto_statement] = STATE(41), + [sym__expression] = STATE(3577), + [sym_comma_expression] = STATE(6857), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_initializer_list] = STATE(5910), + [sym_initializer_pair] = STATE(5910), + [sym_subscript_designator] = STATE(5464), + [sym_field_designator] = STATE(5464), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__empty_declaration] = STATE(41), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1974), + [sym_dependent_type] = STATE(3481), + [sym_template_declaration] = STATE(41), + [sym_template_instantiation] = STATE(41), + [sym_operator_cast] = STATE(5456), + [sym__constructor_specifiers] = STATE(1974), + [sym_operator_cast_definition] = STATE(41), + [sym_operator_cast_declaration] = STATE(41), + [sym_constructor_or_destructor_definition] = STATE(41), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3608), + [sym_namespace_definition] = STATE(41), + [sym_namespace_alias_definition] = STATE(41), + [sym_using_declaration] = STATE(41), + [sym_alias_declaration] = STATE(41), + [sym_static_assert_declaration] = STATE(41), + [sym_concept_definition] = STATE(41), + [sym_for_range_loop] = STATE(41), + [sym_co_return_statement] = STATE(41), + [sym_co_yield_statement] = STATE(41), + [sym_throw_statement] = STATE(41), + [sym_try_statement] = STATE(41), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4780), + [sym_qualified_identifier] = STATE(2734), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(5456), + [sym_operator_name] = STATE(5080), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_translation_unit_repeat1] = STATE(41), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_initializer_pair_repeat1] = STATE(5464), + [aux_sym_operator_cast_definition_repeat1] = STATE(1974), [sym_identifier] = ACTIONS(145), [aux_sym_preproc_include_token1] = ACTIONS(147), [aux_sym_preproc_def_token1] = ACTIONS(149), @@ -24631,6 +25882,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(187), [anon_sym_continue] = ACTIONS(189), [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -24674,126 +25927,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(143), }, [4] = { - [sym_preproc_include] = STATE(43), - [sym_preproc_def] = STATE(43), - [sym_preproc_function_def] = STATE(43), - [sym_preproc_call] = STATE(43), - [sym_preproc_if] = STATE(43), - [sym_preproc_ifdef] = STATE(43), - [sym_function_definition] = STATE(43), - [sym_declaration] = STATE(43), - [sym_type_definition] = STATE(43), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(3967), - [sym_linkage_specification] = STATE(43), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(1089), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym_ms_call_modifier] = STATE(1829), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4789), - [sym_array_declarator] = STATE(4825), - [sym_compound_statement] = STATE(43), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(2975), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_attributed_statement] = STATE(43), - [sym_labeled_statement] = STATE(43), - [sym_expression_statement] = STATE(43), - [sym_if_statement] = STATE(43), - [sym_switch_statement] = STATE(43), - [sym_case_statement] = STATE(43), - [sym_while_statement] = STATE(43), - [sym_do_statement] = STATE(43), - [sym_for_statement] = STATE(43), - [sym_return_statement] = STATE(43), - [sym_break_statement] = STATE(43), - [sym_continue_statement] = STATE(43), - [sym_goto_statement] = STATE(43), - [sym__expression] = STATE(3506), - [sym_comma_expression] = STATE(6499), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_initializer_list] = STATE(5702), - [sym_initializer_pair] = STATE(5702), - [sym_subscript_designator] = STATE(5180), - [sym_field_designator] = STATE(5180), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__empty_declaration] = STATE(43), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1790), - [sym_dependent_type] = STATE(3139), - [sym_template_declaration] = STATE(43), - [sym_template_instantiation] = STATE(43), - [sym_operator_cast] = STATE(5178), - [sym__constructor_specifiers] = STATE(1790), - [sym_operator_cast_definition] = STATE(43), - [sym_operator_cast_declaration] = STATE(43), - [sym_constructor_or_destructor_definition] = STATE(43), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3531), - [sym_namespace_definition] = STATE(43), - [sym_namespace_alias_definition] = STATE(43), - [sym_using_declaration] = STATE(43), - [sym_alias_declaration] = STATE(43), - [sym_static_assert_declaration] = STATE(43), - [sym_concept_definition] = STATE(43), - [sym_for_range_loop] = STATE(43), - [sym_co_return_statement] = STATE(43), - [sym_co_yield_statement] = STATE(43), - [sym_throw_statement] = STATE(43), - [sym_try_statement] = STATE(43), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4513), - [sym_qualified_identifier] = STATE(2816), - [sym_qualified_type_identifier] = STATE(3276), - [sym_qualified_operator_cast_identifier] = STATE(5178), - [sym_operator_name] = STATE(4825), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_translation_unit_repeat1] = STATE(43), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_initializer_pair_repeat1] = STATE(5180), - [aux_sym_operator_cast_definition_repeat1] = STATE(1790), + [sym_preproc_include] = STATE(74), + [sym_preproc_def] = STATE(74), + [sym_preproc_function_def] = STATE(74), + [sym_preproc_call] = STATE(74), + [sym_preproc_if] = STATE(74), + [sym_preproc_ifdef] = STATE(74), + [sym_function_definition] = STATE(74), + [sym_declaration] = STATE(74), + [sym_type_definition] = STATE(74), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4216), + [sym_linkage_specification] = STATE(74), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym_ms_call_modifier] = STATE(2011), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(5018), + [sym_array_declarator] = STATE(5080), + [sym_compound_statement] = STATE(74), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3372), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_attributed_statement] = STATE(74), + [sym_labeled_statement] = STATE(74), + [sym_expression_statement] = STATE(74), + [sym_if_statement] = STATE(74), + [sym_switch_statement] = STATE(74), + [sym_case_statement] = STATE(74), + [sym_while_statement] = STATE(74), + [sym_do_statement] = STATE(74), + [sym_for_statement] = STATE(74), + [sym_return_statement] = STATE(74), + [sym_break_statement] = STATE(74), + [sym_continue_statement] = STATE(74), + [sym_goto_statement] = STATE(74), + [sym__expression] = STATE(3577), + [sym_comma_expression] = STATE(6857), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_initializer_list] = STATE(5910), + [sym_initializer_pair] = STATE(5910), + [sym_subscript_designator] = STATE(5464), + [sym_field_designator] = STATE(5464), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__empty_declaration] = STATE(74), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1974), + [sym_dependent_type] = STATE(3481), + [sym_template_declaration] = STATE(74), + [sym_template_instantiation] = STATE(74), + [sym_operator_cast] = STATE(5456), + [sym__constructor_specifiers] = STATE(1974), + [sym_operator_cast_definition] = STATE(74), + [sym_operator_cast_declaration] = STATE(74), + [sym_constructor_or_destructor_definition] = STATE(74), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3608), + [sym_namespace_definition] = STATE(74), + [sym_namespace_alias_definition] = STATE(74), + [sym_using_declaration] = STATE(74), + [sym_alias_declaration] = STATE(74), + [sym_static_assert_declaration] = STATE(74), + [sym_concept_definition] = STATE(74), + [sym_for_range_loop] = STATE(74), + [sym_co_return_statement] = STATE(74), + [sym_co_yield_statement] = STATE(74), + [sym_throw_statement] = STATE(74), + [sym_try_statement] = STATE(74), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4780), + [sym_qualified_identifier] = STATE(2734), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(5456), + [sym_operator_name] = STATE(5080), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_translation_unit_repeat1] = STATE(74), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_initializer_pair_repeat1] = STATE(5464), + [aux_sym_operator_cast_definition_repeat1] = STATE(1974), [sym_identifier] = ACTIONS(145), [aux_sym_preproc_include_token1] = ACTIONS(147), [aux_sym_preproc_def_token1] = ACTIONS(149), @@ -24859,6 +26112,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(187), [anon_sym_continue] = ACTIONS(189), [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -24902,126 +26157,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(143), }, [5] = { - [sym_preproc_include] = STATE(55), - [sym_preproc_def] = STATE(55), - [sym_preproc_function_def] = STATE(55), - [sym_preproc_call] = STATE(55), - [sym_preproc_if] = STATE(55), - [sym_preproc_ifdef] = STATE(55), - [sym_function_definition] = STATE(55), - [sym_declaration] = STATE(55), - [sym_type_definition] = STATE(55), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(3967), - [sym_linkage_specification] = STATE(55), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(1089), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym_ms_call_modifier] = STATE(1829), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4789), - [sym_array_declarator] = STATE(4825), - [sym_compound_statement] = STATE(55), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(2975), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_attributed_statement] = STATE(55), - [sym_labeled_statement] = STATE(55), - [sym_expression_statement] = STATE(55), - [sym_if_statement] = STATE(55), - [sym_switch_statement] = STATE(55), - [sym_case_statement] = STATE(55), - [sym_while_statement] = STATE(55), - [sym_do_statement] = STATE(55), - [sym_for_statement] = STATE(55), - [sym_return_statement] = STATE(55), - [sym_break_statement] = STATE(55), - [sym_continue_statement] = STATE(55), - [sym_goto_statement] = STATE(55), - [sym__expression] = STATE(3506), - [sym_comma_expression] = STATE(6499), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_initializer_list] = STATE(5702), - [sym_initializer_pair] = STATE(5702), - [sym_subscript_designator] = STATE(5180), - [sym_field_designator] = STATE(5180), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__empty_declaration] = STATE(55), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1790), - [sym_dependent_type] = STATE(3139), - [sym_template_declaration] = STATE(55), - [sym_template_instantiation] = STATE(55), - [sym_operator_cast] = STATE(5178), - [sym__constructor_specifiers] = STATE(1790), - [sym_operator_cast_definition] = STATE(55), - [sym_operator_cast_declaration] = STATE(55), - [sym_constructor_or_destructor_definition] = STATE(55), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3531), - [sym_namespace_definition] = STATE(55), - [sym_namespace_alias_definition] = STATE(55), - [sym_using_declaration] = STATE(55), - [sym_alias_declaration] = STATE(55), - [sym_static_assert_declaration] = STATE(55), - [sym_concept_definition] = STATE(55), - [sym_for_range_loop] = STATE(55), - [sym_co_return_statement] = STATE(55), - [sym_co_yield_statement] = STATE(55), - [sym_throw_statement] = STATE(55), - [sym_try_statement] = STATE(55), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4513), - [sym_qualified_identifier] = STATE(2816), - [sym_qualified_type_identifier] = STATE(3276), - [sym_qualified_operator_cast_identifier] = STATE(5178), - [sym_operator_name] = STATE(4825), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_translation_unit_repeat1] = STATE(55), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_initializer_pair_repeat1] = STATE(5180), - [aux_sym_operator_cast_definition_repeat1] = STATE(1790), + [sym_preproc_include] = STATE(59), + [sym_preproc_def] = STATE(59), + [sym_preproc_function_def] = STATE(59), + [sym_preproc_call] = STATE(59), + [sym_preproc_if] = STATE(59), + [sym_preproc_ifdef] = STATE(59), + [sym_function_definition] = STATE(59), + [sym_declaration] = STATE(59), + [sym_type_definition] = STATE(59), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4216), + [sym_linkage_specification] = STATE(59), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym_ms_call_modifier] = STATE(2011), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(5018), + [sym_array_declarator] = STATE(5080), + [sym_compound_statement] = STATE(59), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3372), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_attributed_statement] = STATE(59), + [sym_labeled_statement] = STATE(59), + [sym_expression_statement] = STATE(59), + [sym_if_statement] = STATE(59), + [sym_switch_statement] = STATE(59), + [sym_case_statement] = STATE(59), + [sym_while_statement] = STATE(59), + [sym_do_statement] = STATE(59), + [sym_for_statement] = STATE(59), + [sym_return_statement] = STATE(59), + [sym_break_statement] = STATE(59), + [sym_continue_statement] = STATE(59), + [sym_goto_statement] = STATE(59), + [sym__expression] = STATE(3577), + [sym_comma_expression] = STATE(6857), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_initializer_list] = STATE(5910), + [sym_initializer_pair] = STATE(5910), + [sym_subscript_designator] = STATE(5464), + [sym_field_designator] = STATE(5464), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__empty_declaration] = STATE(59), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1974), + [sym_dependent_type] = STATE(3481), + [sym_template_declaration] = STATE(59), + [sym_template_instantiation] = STATE(59), + [sym_operator_cast] = STATE(5456), + [sym__constructor_specifiers] = STATE(1974), + [sym_operator_cast_definition] = STATE(59), + [sym_operator_cast_declaration] = STATE(59), + [sym_constructor_or_destructor_definition] = STATE(59), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3608), + [sym_namespace_definition] = STATE(59), + [sym_namespace_alias_definition] = STATE(59), + [sym_using_declaration] = STATE(59), + [sym_alias_declaration] = STATE(59), + [sym_static_assert_declaration] = STATE(59), + [sym_concept_definition] = STATE(59), + [sym_for_range_loop] = STATE(59), + [sym_co_return_statement] = STATE(59), + [sym_co_yield_statement] = STATE(59), + [sym_throw_statement] = STATE(59), + [sym_try_statement] = STATE(59), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4780), + [sym_qualified_identifier] = STATE(2734), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(5456), + [sym_operator_name] = STATE(5080), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_translation_unit_repeat1] = STATE(59), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_initializer_pair_repeat1] = STATE(5464), + [aux_sym_operator_cast_definition_repeat1] = STATE(1974), [sym_identifier] = ACTIONS(145), [aux_sym_preproc_include_token1] = ACTIONS(147), [aux_sym_preproc_def_token1] = ACTIONS(149), @@ -25087,6 +26342,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(187), [anon_sym_continue] = ACTIONS(189), [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -25130,126 +26387,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(143), }, [6] = { - [sym_preproc_include] = STATE(73), - [sym_preproc_def] = STATE(73), - [sym_preproc_function_def] = STATE(73), - [sym_preproc_call] = STATE(73), - [sym_preproc_if] = STATE(73), - [sym_preproc_ifdef] = STATE(73), - [sym_function_definition] = STATE(73), - [sym_declaration] = STATE(73), - [sym_type_definition] = STATE(73), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(3967), - [sym_linkage_specification] = STATE(73), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(1089), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym_ms_call_modifier] = STATE(1829), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4789), - [sym_array_declarator] = STATE(4825), - [sym_compound_statement] = STATE(73), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(2975), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_attributed_statement] = STATE(73), - [sym_labeled_statement] = STATE(73), - [sym_expression_statement] = STATE(73), - [sym_if_statement] = STATE(73), - [sym_switch_statement] = STATE(73), - [sym_case_statement] = STATE(73), - [sym_while_statement] = STATE(73), - [sym_do_statement] = STATE(73), - [sym_for_statement] = STATE(73), - [sym_return_statement] = STATE(73), - [sym_break_statement] = STATE(73), - [sym_continue_statement] = STATE(73), - [sym_goto_statement] = STATE(73), - [sym__expression] = STATE(3506), - [sym_comma_expression] = STATE(6499), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_initializer_list] = STATE(5702), - [sym_initializer_pair] = STATE(5702), - [sym_subscript_designator] = STATE(5180), - [sym_field_designator] = STATE(5180), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__empty_declaration] = STATE(73), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1790), - [sym_dependent_type] = STATE(3139), - [sym_template_declaration] = STATE(73), - [sym_template_instantiation] = STATE(73), - [sym_operator_cast] = STATE(5178), - [sym__constructor_specifiers] = STATE(1790), - [sym_operator_cast_definition] = STATE(73), - [sym_operator_cast_declaration] = STATE(73), - [sym_constructor_or_destructor_definition] = STATE(73), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3531), - [sym_namespace_definition] = STATE(73), - [sym_namespace_alias_definition] = STATE(73), - [sym_using_declaration] = STATE(73), - [sym_alias_declaration] = STATE(73), - [sym_static_assert_declaration] = STATE(73), - [sym_concept_definition] = STATE(73), - [sym_for_range_loop] = STATE(73), - [sym_co_return_statement] = STATE(73), - [sym_co_yield_statement] = STATE(73), - [sym_throw_statement] = STATE(73), - [sym_try_statement] = STATE(73), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4513), - [sym_qualified_identifier] = STATE(2816), - [sym_qualified_type_identifier] = STATE(3276), - [sym_qualified_operator_cast_identifier] = STATE(5178), - [sym_operator_name] = STATE(4825), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_translation_unit_repeat1] = STATE(73), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_initializer_pair_repeat1] = STATE(5180), - [aux_sym_operator_cast_definition_repeat1] = STATE(1790), + [sym_preproc_include] = STATE(74), + [sym_preproc_def] = STATE(74), + [sym_preproc_function_def] = STATE(74), + [sym_preproc_call] = STATE(74), + [sym_preproc_if] = STATE(74), + [sym_preproc_ifdef] = STATE(74), + [sym_function_definition] = STATE(74), + [sym_declaration] = STATE(74), + [sym_type_definition] = STATE(74), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4216), + [sym_linkage_specification] = STATE(74), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym_ms_call_modifier] = STATE(2011), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(5018), + [sym_array_declarator] = STATE(5080), + [sym_compound_statement] = STATE(74), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3372), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_attributed_statement] = STATE(74), + [sym_labeled_statement] = STATE(74), + [sym_expression_statement] = STATE(74), + [sym_if_statement] = STATE(74), + [sym_switch_statement] = STATE(74), + [sym_case_statement] = STATE(74), + [sym_while_statement] = STATE(74), + [sym_do_statement] = STATE(74), + [sym_for_statement] = STATE(74), + [sym_return_statement] = STATE(74), + [sym_break_statement] = STATE(74), + [sym_continue_statement] = STATE(74), + [sym_goto_statement] = STATE(74), + [sym__expression] = STATE(3577), + [sym_comma_expression] = STATE(6857), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_initializer_list] = STATE(5910), + [sym_initializer_pair] = STATE(5910), + [sym_subscript_designator] = STATE(5464), + [sym_field_designator] = STATE(5464), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__empty_declaration] = STATE(74), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1974), + [sym_dependent_type] = STATE(3481), + [sym_template_declaration] = STATE(74), + [sym_template_instantiation] = STATE(74), + [sym_operator_cast] = STATE(5456), + [sym__constructor_specifiers] = STATE(1974), + [sym_operator_cast_definition] = STATE(74), + [sym_operator_cast_declaration] = STATE(74), + [sym_constructor_or_destructor_definition] = STATE(74), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3608), + [sym_namespace_definition] = STATE(74), + [sym_namespace_alias_definition] = STATE(74), + [sym_using_declaration] = STATE(74), + [sym_alias_declaration] = STATE(74), + [sym_static_assert_declaration] = STATE(74), + [sym_concept_definition] = STATE(74), + [sym_for_range_loop] = STATE(74), + [sym_co_return_statement] = STATE(74), + [sym_co_yield_statement] = STATE(74), + [sym_throw_statement] = STATE(74), + [sym_try_statement] = STATE(74), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4780), + [sym_qualified_identifier] = STATE(2734), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(5456), + [sym_operator_name] = STATE(5080), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_translation_unit_repeat1] = STATE(74), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_initializer_pair_repeat1] = STATE(5464), + [aux_sym_operator_cast_definition_repeat1] = STATE(1974), [sym_identifier] = ACTIONS(145), [aux_sym_preproc_include_token1] = ACTIONS(147), [aux_sym_preproc_def_token1] = ACTIONS(149), @@ -25315,6 +26572,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(187), [anon_sym_continue] = ACTIONS(189), [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -25358,126 +26617,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(143), }, [7] = { - [sym_preproc_include] = STATE(74), - [sym_preproc_def] = STATE(74), - [sym_preproc_function_def] = STATE(74), - [sym_preproc_call] = STATE(74), - [sym_preproc_if] = STATE(74), - [sym_preproc_ifdef] = STATE(74), - [sym_function_definition] = STATE(74), - [sym_declaration] = STATE(74), - [sym_type_definition] = STATE(74), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(3967), - [sym_linkage_specification] = STATE(74), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(1089), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym_ms_call_modifier] = STATE(1829), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4789), - [sym_array_declarator] = STATE(4825), - [sym_compound_statement] = STATE(74), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(2975), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_attributed_statement] = STATE(74), - [sym_labeled_statement] = STATE(74), - [sym_expression_statement] = STATE(74), - [sym_if_statement] = STATE(74), - [sym_switch_statement] = STATE(74), - [sym_case_statement] = STATE(74), - [sym_while_statement] = STATE(74), - [sym_do_statement] = STATE(74), - [sym_for_statement] = STATE(74), - [sym_return_statement] = STATE(74), - [sym_break_statement] = STATE(74), - [sym_continue_statement] = STATE(74), - [sym_goto_statement] = STATE(74), - [sym__expression] = STATE(3506), - [sym_comma_expression] = STATE(6499), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_initializer_list] = STATE(5702), - [sym_initializer_pair] = STATE(5702), - [sym_subscript_designator] = STATE(5180), - [sym_field_designator] = STATE(5180), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__empty_declaration] = STATE(74), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1790), - [sym_dependent_type] = STATE(3139), - [sym_template_declaration] = STATE(74), - [sym_template_instantiation] = STATE(74), - [sym_operator_cast] = STATE(5178), - [sym__constructor_specifiers] = STATE(1790), - [sym_operator_cast_definition] = STATE(74), - [sym_operator_cast_declaration] = STATE(74), - [sym_constructor_or_destructor_definition] = STATE(74), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3531), - [sym_namespace_definition] = STATE(74), - [sym_namespace_alias_definition] = STATE(74), - [sym_using_declaration] = STATE(74), - [sym_alias_declaration] = STATE(74), - [sym_static_assert_declaration] = STATE(74), - [sym_concept_definition] = STATE(74), - [sym_for_range_loop] = STATE(74), - [sym_co_return_statement] = STATE(74), - [sym_co_yield_statement] = STATE(74), - [sym_throw_statement] = STATE(74), - [sym_try_statement] = STATE(74), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4513), - [sym_qualified_identifier] = STATE(2816), - [sym_qualified_type_identifier] = STATE(3276), - [sym_qualified_operator_cast_identifier] = STATE(5178), - [sym_operator_name] = STATE(4825), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_translation_unit_repeat1] = STATE(74), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_initializer_pair_repeat1] = STATE(5180), - [aux_sym_operator_cast_definition_repeat1] = STATE(1790), + [sym_preproc_include] = STATE(35), + [sym_preproc_def] = STATE(35), + [sym_preproc_function_def] = STATE(35), + [sym_preproc_call] = STATE(35), + [sym_preproc_if] = STATE(35), + [sym_preproc_ifdef] = STATE(35), + [sym_function_definition] = STATE(35), + [sym_declaration] = STATE(35), + [sym_type_definition] = STATE(35), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4216), + [sym_linkage_specification] = STATE(35), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym_ms_call_modifier] = STATE(2011), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(5018), + [sym_array_declarator] = STATE(5080), + [sym_compound_statement] = STATE(35), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3372), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_attributed_statement] = STATE(35), + [sym_labeled_statement] = STATE(35), + [sym_expression_statement] = STATE(35), + [sym_if_statement] = STATE(35), + [sym_switch_statement] = STATE(35), + [sym_case_statement] = STATE(35), + [sym_while_statement] = STATE(35), + [sym_do_statement] = STATE(35), + [sym_for_statement] = STATE(35), + [sym_return_statement] = STATE(35), + [sym_break_statement] = STATE(35), + [sym_continue_statement] = STATE(35), + [sym_goto_statement] = STATE(35), + [sym__expression] = STATE(3577), + [sym_comma_expression] = STATE(6857), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_initializer_list] = STATE(5910), + [sym_initializer_pair] = STATE(5910), + [sym_subscript_designator] = STATE(5464), + [sym_field_designator] = STATE(5464), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__empty_declaration] = STATE(35), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1974), + [sym_dependent_type] = STATE(3481), + [sym_template_declaration] = STATE(35), + [sym_template_instantiation] = STATE(35), + [sym_operator_cast] = STATE(5456), + [sym__constructor_specifiers] = STATE(1974), + [sym_operator_cast_definition] = STATE(35), + [sym_operator_cast_declaration] = STATE(35), + [sym_constructor_or_destructor_definition] = STATE(35), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3608), + [sym_namespace_definition] = STATE(35), + [sym_namespace_alias_definition] = STATE(35), + [sym_using_declaration] = STATE(35), + [sym_alias_declaration] = STATE(35), + [sym_static_assert_declaration] = STATE(35), + [sym_concept_definition] = STATE(35), + [sym_for_range_loop] = STATE(35), + [sym_co_return_statement] = STATE(35), + [sym_co_yield_statement] = STATE(35), + [sym_throw_statement] = STATE(35), + [sym_try_statement] = STATE(35), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4780), + [sym_qualified_identifier] = STATE(2734), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(5456), + [sym_operator_name] = STATE(5080), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_translation_unit_repeat1] = STATE(35), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_initializer_pair_repeat1] = STATE(5464), + [aux_sym_operator_cast_definition_repeat1] = STATE(1974), [sym_identifier] = ACTIONS(145), [aux_sym_preproc_include_token1] = ACTIONS(147), [aux_sym_preproc_def_token1] = ACTIONS(149), @@ -25543,6 +26802,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(187), [anon_sym_continue] = ACTIONS(189), [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -25586,126 +26847,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(143), }, [8] = { - [sym_preproc_include] = STATE(59), - [sym_preproc_def] = STATE(59), - [sym_preproc_function_def] = STATE(59), - [sym_preproc_call] = STATE(59), - [sym_preproc_if] = STATE(59), - [sym_preproc_ifdef] = STATE(59), - [sym_function_definition] = STATE(59), - [sym_declaration] = STATE(59), - [sym_type_definition] = STATE(59), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(3967), - [sym_linkage_specification] = STATE(59), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(1089), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym_ms_call_modifier] = STATE(1829), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4789), - [sym_array_declarator] = STATE(4825), - [sym_compound_statement] = STATE(59), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(2975), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_attributed_statement] = STATE(59), - [sym_labeled_statement] = STATE(59), - [sym_expression_statement] = STATE(59), - [sym_if_statement] = STATE(59), - [sym_switch_statement] = STATE(59), - [sym_case_statement] = STATE(59), - [sym_while_statement] = STATE(59), - [sym_do_statement] = STATE(59), - [sym_for_statement] = STATE(59), - [sym_return_statement] = STATE(59), - [sym_break_statement] = STATE(59), - [sym_continue_statement] = STATE(59), - [sym_goto_statement] = STATE(59), - [sym__expression] = STATE(3506), - [sym_comma_expression] = STATE(6499), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_initializer_list] = STATE(5702), - [sym_initializer_pair] = STATE(5702), - [sym_subscript_designator] = STATE(5180), - [sym_field_designator] = STATE(5180), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__empty_declaration] = STATE(59), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1790), - [sym_dependent_type] = STATE(3139), - [sym_template_declaration] = STATE(59), - [sym_template_instantiation] = STATE(59), - [sym_operator_cast] = STATE(5178), - [sym__constructor_specifiers] = STATE(1790), - [sym_operator_cast_definition] = STATE(59), - [sym_operator_cast_declaration] = STATE(59), - [sym_constructor_or_destructor_definition] = STATE(59), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3531), - [sym_namespace_definition] = STATE(59), - [sym_namespace_alias_definition] = STATE(59), - [sym_using_declaration] = STATE(59), - [sym_alias_declaration] = STATE(59), - [sym_static_assert_declaration] = STATE(59), - [sym_concept_definition] = STATE(59), - [sym_for_range_loop] = STATE(59), - [sym_co_return_statement] = STATE(59), - [sym_co_yield_statement] = STATE(59), - [sym_throw_statement] = STATE(59), - [sym_try_statement] = STATE(59), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4513), - [sym_qualified_identifier] = STATE(2816), - [sym_qualified_type_identifier] = STATE(3276), - [sym_qualified_operator_cast_identifier] = STATE(5178), - [sym_operator_name] = STATE(4825), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_translation_unit_repeat1] = STATE(59), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_initializer_pair_repeat1] = STATE(5180), - [aux_sym_operator_cast_definition_repeat1] = STATE(1790), + [sym_preproc_include] = STATE(63), + [sym_preproc_def] = STATE(63), + [sym_preproc_function_def] = STATE(63), + [sym_preproc_call] = STATE(63), + [sym_preproc_if] = STATE(63), + [sym_preproc_ifdef] = STATE(63), + [sym_function_definition] = STATE(63), + [sym_declaration] = STATE(63), + [sym_type_definition] = STATE(63), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4216), + [sym_linkage_specification] = STATE(63), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym_ms_call_modifier] = STATE(2011), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(5018), + [sym_array_declarator] = STATE(5080), + [sym_compound_statement] = STATE(63), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3372), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_attributed_statement] = STATE(63), + [sym_labeled_statement] = STATE(63), + [sym_expression_statement] = STATE(63), + [sym_if_statement] = STATE(63), + [sym_switch_statement] = STATE(63), + [sym_case_statement] = STATE(63), + [sym_while_statement] = STATE(63), + [sym_do_statement] = STATE(63), + [sym_for_statement] = STATE(63), + [sym_return_statement] = STATE(63), + [sym_break_statement] = STATE(63), + [sym_continue_statement] = STATE(63), + [sym_goto_statement] = STATE(63), + [sym__expression] = STATE(3577), + [sym_comma_expression] = STATE(6857), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_initializer_list] = STATE(5910), + [sym_initializer_pair] = STATE(5910), + [sym_subscript_designator] = STATE(5464), + [sym_field_designator] = STATE(5464), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__empty_declaration] = STATE(63), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1974), + [sym_dependent_type] = STATE(3481), + [sym_template_declaration] = STATE(63), + [sym_template_instantiation] = STATE(63), + [sym_operator_cast] = STATE(5456), + [sym__constructor_specifiers] = STATE(1974), + [sym_operator_cast_definition] = STATE(63), + [sym_operator_cast_declaration] = STATE(63), + [sym_constructor_or_destructor_definition] = STATE(63), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3608), + [sym_namespace_definition] = STATE(63), + [sym_namespace_alias_definition] = STATE(63), + [sym_using_declaration] = STATE(63), + [sym_alias_declaration] = STATE(63), + [sym_static_assert_declaration] = STATE(63), + [sym_concept_definition] = STATE(63), + [sym_for_range_loop] = STATE(63), + [sym_co_return_statement] = STATE(63), + [sym_co_yield_statement] = STATE(63), + [sym_throw_statement] = STATE(63), + [sym_try_statement] = STATE(63), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4780), + [sym_qualified_identifier] = STATE(2734), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(5456), + [sym_operator_name] = STATE(5080), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_translation_unit_repeat1] = STATE(63), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_initializer_pair_repeat1] = STATE(5464), + [aux_sym_operator_cast_definition_repeat1] = STATE(1974), [sym_identifier] = ACTIONS(145), [aux_sym_preproc_include_token1] = ACTIONS(147), [aux_sym_preproc_def_token1] = ACTIONS(149), @@ -25771,6 +27032,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(187), [anon_sym_continue] = ACTIONS(189), [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -25814,126 +27077,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(143), }, [9] = { - [sym_preproc_include] = STATE(66), - [sym_preproc_def] = STATE(66), - [sym_preproc_function_def] = STATE(66), - [sym_preproc_call] = STATE(66), - [sym_preproc_if] = STATE(66), - [sym_preproc_ifdef] = STATE(66), - [sym_function_definition] = STATE(66), - [sym_declaration] = STATE(66), - [sym_type_definition] = STATE(66), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(3967), - [sym_linkage_specification] = STATE(66), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(1089), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym_ms_call_modifier] = STATE(1829), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4789), - [sym_array_declarator] = STATE(4825), - [sym_compound_statement] = STATE(66), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(2975), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_attributed_statement] = STATE(66), - [sym_labeled_statement] = STATE(66), - [sym_expression_statement] = STATE(66), - [sym_if_statement] = STATE(66), - [sym_switch_statement] = STATE(66), - [sym_case_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_do_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_return_statement] = STATE(66), - [sym_break_statement] = STATE(66), - [sym_continue_statement] = STATE(66), - [sym_goto_statement] = STATE(66), - [sym__expression] = STATE(3506), - [sym_comma_expression] = STATE(6499), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_initializer_list] = STATE(5702), - [sym_initializer_pair] = STATE(5702), - [sym_subscript_designator] = STATE(5180), - [sym_field_designator] = STATE(5180), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__empty_declaration] = STATE(66), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1790), - [sym_dependent_type] = STATE(3139), - [sym_template_declaration] = STATE(66), - [sym_template_instantiation] = STATE(66), - [sym_operator_cast] = STATE(5178), - [sym__constructor_specifiers] = STATE(1790), - [sym_operator_cast_definition] = STATE(66), - [sym_operator_cast_declaration] = STATE(66), - [sym_constructor_or_destructor_definition] = STATE(66), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3531), - [sym_namespace_definition] = STATE(66), - [sym_namespace_alias_definition] = STATE(66), - [sym_using_declaration] = STATE(66), - [sym_alias_declaration] = STATE(66), - [sym_static_assert_declaration] = STATE(66), - [sym_concept_definition] = STATE(66), - [sym_for_range_loop] = STATE(66), - [sym_co_return_statement] = STATE(66), - [sym_co_yield_statement] = STATE(66), - [sym_throw_statement] = STATE(66), - [sym_try_statement] = STATE(66), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4513), - [sym_qualified_identifier] = STATE(2816), - [sym_qualified_type_identifier] = STATE(3276), - [sym_qualified_operator_cast_identifier] = STATE(5178), - [sym_operator_name] = STATE(4825), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_translation_unit_repeat1] = STATE(66), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_initializer_pair_repeat1] = STATE(5180), - [aux_sym_operator_cast_definition_repeat1] = STATE(1790), + [sym_preproc_include] = STATE(32), + [sym_preproc_def] = STATE(32), + [sym_preproc_function_def] = STATE(32), + [sym_preproc_call] = STATE(32), + [sym_preproc_if] = STATE(32), + [sym_preproc_ifdef] = STATE(32), + [sym_function_definition] = STATE(32), + [sym_declaration] = STATE(32), + [sym_type_definition] = STATE(32), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4216), + [sym_linkage_specification] = STATE(32), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym_ms_call_modifier] = STATE(2011), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(5018), + [sym_array_declarator] = STATE(5080), + [sym_compound_statement] = STATE(32), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3372), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_attributed_statement] = STATE(32), + [sym_labeled_statement] = STATE(32), + [sym_expression_statement] = STATE(32), + [sym_if_statement] = STATE(32), + [sym_switch_statement] = STATE(32), + [sym_case_statement] = STATE(32), + [sym_while_statement] = STATE(32), + [sym_do_statement] = STATE(32), + [sym_for_statement] = STATE(32), + [sym_return_statement] = STATE(32), + [sym_break_statement] = STATE(32), + [sym_continue_statement] = STATE(32), + [sym_goto_statement] = STATE(32), + [sym__expression] = STATE(3577), + [sym_comma_expression] = STATE(6857), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_initializer_list] = STATE(5910), + [sym_initializer_pair] = STATE(5910), + [sym_subscript_designator] = STATE(5464), + [sym_field_designator] = STATE(5464), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__empty_declaration] = STATE(32), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1974), + [sym_dependent_type] = STATE(3481), + [sym_template_declaration] = STATE(32), + [sym_template_instantiation] = STATE(32), + [sym_operator_cast] = STATE(5456), + [sym__constructor_specifiers] = STATE(1974), + [sym_operator_cast_definition] = STATE(32), + [sym_operator_cast_declaration] = STATE(32), + [sym_constructor_or_destructor_definition] = STATE(32), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3608), + [sym_namespace_definition] = STATE(32), + [sym_namespace_alias_definition] = STATE(32), + [sym_using_declaration] = STATE(32), + [sym_alias_declaration] = STATE(32), + [sym_static_assert_declaration] = STATE(32), + [sym_concept_definition] = STATE(32), + [sym_for_range_loop] = STATE(32), + [sym_co_return_statement] = STATE(32), + [sym_co_yield_statement] = STATE(32), + [sym_throw_statement] = STATE(32), + [sym_try_statement] = STATE(32), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4780), + [sym_qualified_identifier] = STATE(2734), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(5456), + [sym_operator_name] = STATE(5080), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_translation_unit_repeat1] = STATE(32), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_initializer_pair_repeat1] = STATE(5464), + [aux_sym_operator_cast_definition_repeat1] = STATE(1974), [sym_identifier] = ACTIONS(145), [aux_sym_preproc_include_token1] = ACTIONS(147), [aux_sym_preproc_def_token1] = ACTIONS(149), @@ -25999,6 +27262,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(187), [anon_sym_continue] = ACTIONS(189), [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -26048,33 +27313,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(28), [sym_preproc_if] = STATE(28), [sym_preproc_ifdef] = STATE(28), - [sym_preproc_else] = STATE(6670), - [sym_preproc_elif] = STATE(6670), + [sym_preproc_else] = STATE(6928), + [sym_preproc_elif] = STATE(6928), [sym_function_definition] = STATE(28), [sym_declaration] = STATE(28), [sym_type_definition] = STATE(28), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(3964), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4215), [sym_linkage_specification] = STATE(28), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(1089), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym_ms_call_modifier] = STATE(1828), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4772), - [sym_array_declarator] = STATE(4825), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym_ms_call_modifier] = STATE(1989), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(5015), + [sym_array_declarator] = STATE(5080), [sym_compound_statement] = STATE(28), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(3090), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3414), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), [sym_attributed_statement] = STATE(28), [sym_labeled_statement] = STATE(28), [sym_expression_statement] = STATE(28), @@ -26088,44 +27353,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(28), [sym_continue_statement] = STATE(28), [sym_goto_statement] = STATE(28), - [sym__expression] = STATE(3579), - [sym_comma_expression] = STATE(6778), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), + [sym__expression] = STATE(3680), + [sym_comma_expression] = STATE(7175), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), [sym__empty_declaration] = STATE(28), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1783), - [sym_dependent_type] = STATE(3139), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1965), + [sym_dependent_type] = STATE(3481), [sym_template_declaration] = STATE(28), [sym_template_instantiation] = STATE(28), - [sym_operator_cast] = STATE(5198), - [sym__constructor_specifiers] = STATE(1783), + [sym_operator_cast] = STATE(5489), + [sym__constructor_specifiers] = STATE(1965), [sym_operator_cast_definition] = STATE(28), [sym_operator_cast_declaration] = STATE(28), [sym_constructor_or_destructor_definition] = STATE(28), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3531), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3608), [sym_namespace_definition] = STATE(28), [sym_namespace_alias_definition] = STATE(28), [sym_using_declaration] = STATE(28), @@ -26137,28 +27402,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(28), [sym_throw_statement] = STATE(28), [sym_try_statement] = STATE(28), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4513), - [sym_qualified_identifier] = STATE(2816), - [sym_qualified_type_identifier] = STATE(3276), - [sym_qualified_operator_cast_identifier] = STATE(5198), - [sym_operator_name] = STATE(4825), - [sym_user_defined_literal] = STATE(3428), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4780), + [sym_qualified_identifier] = STATE(2734), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(5489), + [sym_operator_name] = STATE(5080), + [sym_user_defined_literal] = STATE(3435), [aux_sym_translation_unit_repeat1] = STATE(28), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(162), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_operator_cast_definition_repeat1] = STATE(1783), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(290), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_operator_cast_definition_repeat1] = STATE(1965), [sym_identifier] = ACTIONS(227), [aux_sym_preproc_include_token1] = ACTIONS(229), [aux_sym_preproc_def_token1] = ACTIONS(231), @@ -26225,6 +27490,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(269), [anon_sym_continue] = ACTIONS(271), [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -26267,123 +27534,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(143), }, [11] = { - [sym_preproc_include] = STATE(24), - [sym_preproc_def] = STATE(24), - [sym_preproc_function_def] = STATE(24), - [sym_preproc_call] = STATE(24), - [sym_preproc_if] = STATE(24), - [sym_preproc_ifdef] = STATE(24), - [sym_preproc_else] = STATE(6685), - [sym_preproc_elif] = STATE(6685), - [sym_function_definition] = STATE(24), - [sym_declaration] = STATE(24), - [sym_type_definition] = STATE(24), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(3964), - [sym_linkage_specification] = STATE(24), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(1089), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym_ms_call_modifier] = STATE(1828), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4772), - [sym_array_declarator] = STATE(4825), - [sym_compound_statement] = STATE(24), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(3090), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_attributed_statement] = STATE(24), - [sym_labeled_statement] = STATE(24), - [sym_expression_statement] = STATE(24), - [sym_if_statement] = STATE(24), - [sym_switch_statement] = STATE(24), - [sym_case_statement] = STATE(24), - [sym_while_statement] = STATE(24), - [sym_do_statement] = STATE(24), - [sym_for_statement] = STATE(24), - [sym_return_statement] = STATE(24), - [sym_break_statement] = STATE(24), - [sym_continue_statement] = STATE(24), - [sym_goto_statement] = STATE(24), - [sym__expression] = STATE(3579), - [sym_comma_expression] = STATE(6778), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__empty_declaration] = STATE(24), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1783), - [sym_dependent_type] = STATE(3139), - [sym_template_declaration] = STATE(24), - [sym_template_instantiation] = STATE(24), - [sym_operator_cast] = STATE(5198), - [sym__constructor_specifiers] = STATE(1783), - [sym_operator_cast_definition] = STATE(24), - [sym_operator_cast_declaration] = STATE(24), - [sym_constructor_or_destructor_definition] = STATE(24), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3531), - [sym_namespace_definition] = STATE(24), - [sym_namespace_alias_definition] = STATE(24), - [sym_using_declaration] = STATE(24), - [sym_alias_declaration] = STATE(24), - [sym_static_assert_declaration] = STATE(24), - [sym_concept_definition] = STATE(24), - [sym_for_range_loop] = STATE(24), - [sym_co_return_statement] = STATE(24), - [sym_co_yield_statement] = STATE(24), - [sym_throw_statement] = STATE(24), - [sym_try_statement] = STATE(24), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4513), - [sym_qualified_identifier] = STATE(2816), - [sym_qualified_type_identifier] = STATE(3276), - [sym_qualified_operator_cast_identifier] = STATE(5198), - [sym_operator_name] = STATE(4825), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_translation_unit_repeat1] = STATE(24), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(162), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_operator_cast_definition_repeat1] = STATE(1783), + [sym_preproc_include] = STATE(28), + [sym_preproc_def] = STATE(28), + [sym_preproc_function_def] = STATE(28), + [sym_preproc_call] = STATE(28), + [sym_preproc_if] = STATE(28), + [sym_preproc_ifdef] = STATE(28), + [sym_preproc_else] = STATE(6746), + [sym_preproc_elif] = STATE(6746), + [sym_function_definition] = STATE(28), + [sym_declaration] = STATE(28), + [sym_type_definition] = STATE(28), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4215), + [sym_linkage_specification] = STATE(28), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym_ms_call_modifier] = STATE(1989), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(5015), + [sym_array_declarator] = STATE(5080), + [sym_compound_statement] = STATE(28), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3414), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_attributed_statement] = STATE(28), + [sym_labeled_statement] = STATE(28), + [sym_expression_statement] = STATE(28), + [sym_if_statement] = STATE(28), + [sym_switch_statement] = STATE(28), + [sym_case_statement] = STATE(28), + [sym_while_statement] = STATE(28), + [sym_do_statement] = STATE(28), + [sym_for_statement] = STATE(28), + [sym_return_statement] = STATE(28), + [sym_break_statement] = STATE(28), + [sym_continue_statement] = STATE(28), + [sym_goto_statement] = STATE(28), + [sym__expression] = STATE(3680), + [sym_comma_expression] = STATE(7175), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__empty_declaration] = STATE(28), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1965), + [sym_dependent_type] = STATE(3481), + [sym_template_declaration] = STATE(28), + [sym_template_instantiation] = STATE(28), + [sym_operator_cast] = STATE(5489), + [sym__constructor_specifiers] = STATE(1965), + [sym_operator_cast_definition] = STATE(28), + [sym_operator_cast_declaration] = STATE(28), + [sym_constructor_or_destructor_definition] = STATE(28), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3608), + [sym_namespace_definition] = STATE(28), + [sym_namespace_alias_definition] = STATE(28), + [sym_using_declaration] = STATE(28), + [sym_alias_declaration] = STATE(28), + [sym_static_assert_declaration] = STATE(28), + [sym_concept_definition] = STATE(28), + [sym_for_range_loop] = STATE(28), + [sym_co_return_statement] = STATE(28), + [sym_co_yield_statement] = STATE(28), + [sym_throw_statement] = STATE(28), + [sym_try_statement] = STATE(28), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4780), + [sym_qualified_identifier] = STATE(2734), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(5489), + [sym_operator_name] = STATE(5080), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_translation_unit_repeat1] = STATE(28), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(290), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_operator_cast_definition_repeat1] = STATE(1965), [sym_identifier] = ACTIONS(227), [aux_sym_preproc_include_token1] = ACTIONS(229), [aux_sym_preproc_def_token1] = ACTIONS(231), @@ -26450,6 +27717,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(269), [anon_sym_continue] = ACTIONS(271), [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -26492,123 +27761,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(143), }, [12] = { - [sym_preproc_include] = STATE(28), - [sym_preproc_def] = STATE(28), - [sym_preproc_function_def] = STATE(28), - [sym_preproc_call] = STATE(28), - [sym_preproc_if] = STATE(28), - [sym_preproc_ifdef] = STATE(28), - [sym_preproc_else] = STATE(6693), - [sym_preproc_elif] = STATE(6693), - [sym_function_definition] = STATE(28), - [sym_declaration] = STATE(28), - [sym_type_definition] = STATE(28), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(3964), - [sym_linkage_specification] = STATE(28), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(1089), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym_ms_call_modifier] = STATE(1828), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4772), - [sym_array_declarator] = STATE(4825), - [sym_compound_statement] = STATE(28), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(3090), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_attributed_statement] = STATE(28), - [sym_labeled_statement] = STATE(28), - [sym_expression_statement] = STATE(28), - [sym_if_statement] = STATE(28), - [sym_switch_statement] = STATE(28), - [sym_case_statement] = STATE(28), - [sym_while_statement] = STATE(28), - [sym_do_statement] = STATE(28), - [sym_for_statement] = STATE(28), - [sym_return_statement] = STATE(28), - [sym_break_statement] = STATE(28), - [sym_continue_statement] = STATE(28), - [sym_goto_statement] = STATE(28), - [sym__expression] = STATE(3579), - [sym_comma_expression] = STATE(6778), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__empty_declaration] = STATE(28), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1783), - [sym_dependent_type] = STATE(3139), - [sym_template_declaration] = STATE(28), - [sym_template_instantiation] = STATE(28), - [sym_operator_cast] = STATE(5198), - [sym__constructor_specifiers] = STATE(1783), - [sym_operator_cast_definition] = STATE(28), - [sym_operator_cast_declaration] = STATE(28), - [sym_constructor_or_destructor_definition] = STATE(28), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3531), - [sym_namespace_definition] = STATE(28), - [sym_namespace_alias_definition] = STATE(28), - [sym_using_declaration] = STATE(28), - [sym_alias_declaration] = STATE(28), - [sym_static_assert_declaration] = STATE(28), - [sym_concept_definition] = STATE(28), - [sym_for_range_loop] = STATE(28), - [sym_co_return_statement] = STATE(28), - [sym_co_yield_statement] = STATE(28), - [sym_throw_statement] = STATE(28), - [sym_try_statement] = STATE(28), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4513), - [sym_qualified_identifier] = STATE(2816), - [sym_qualified_type_identifier] = STATE(3276), - [sym_qualified_operator_cast_identifier] = STATE(5198), - [sym_operator_name] = STATE(4825), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_translation_unit_repeat1] = STATE(28), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(162), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_operator_cast_definition_repeat1] = STATE(1783), + [sym_preproc_include] = STATE(10), + [sym_preproc_def] = STATE(10), + [sym_preproc_function_def] = STATE(10), + [sym_preproc_call] = STATE(10), + [sym_preproc_if] = STATE(10), + [sym_preproc_ifdef] = STATE(10), + [sym_preproc_else] = STATE(7106), + [sym_preproc_elif] = STATE(7106), + [sym_function_definition] = STATE(10), + [sym_declaration] = STATE(10), + [sym_type_definition] = STATE(10), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4215), + [sym_linkage_specification] = STATE(10), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym_ms_call_modifier] = STATE(1989), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(5015), + [sym_array_declarator] = STATE(5080), + [sym_compound_statement] = STATE(10), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3414), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_attributed_statement] = STATE(10), + [sym_labeled_statement] = STATE(10), + [sym_expression_statement] = STATE(10), + [sym_if_statement] = STATE(10), + [sym_switch_statement] = STATE(10), + [sym_case_statement] = STATE(10), + [sym_while_statement] = STATE(10), + [sym_do_statement] = STATE(10), + [sym_for_statement] = STATE(10), + [sym_return_statement] = STATE(10), + [sym_break_statement] = STATE(10), + [sym_continue_statement] = STATE(10), + [sym_goto_statement] = STATE(10), + [sym__expression] = STATE(3680), + [sym_comma_expression] = STATE(7175), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__empty_declaration] = STATE(10), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1965), + [sym_dependent_type] = STATE(3481), + [sym_template_declaration] = STATE(10), + [sym_template_instantiation] = STATE(10), + [sym_operator_cast] = STATE(5489), + [sym__constructor_specifiers] = STATE(1965), + [sym_operator_cast_definition] = STATE(10), + [sym_operator_cast_declaration] = STATE(10), + [sym_constructor_or_destructor_definition] = STATE(10), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3608), + [sym_namespace_definition] = STATE(10), + [sym_namespace_alias_definition] = STATE(10), + [sym_using_declaration] = STATE(10), + [sym_alias_declaration] = STATE(10), + [sym_static_assert_declaration] = STATE(10), + [sym_concept_definition] = STATE(10), + [sym_for_range_loop] = STATE(10), + [sym_co_return_statement] = STATE(10), + [sym_co_yield_statement] = STATE(10), + [sym_throw_statement] = STATE(10), + [sym_try_statement] = STATE(10), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4780), + [sym_qualified_identifier] = STATE(2734), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(5489), + [sym_operator_name] = STATE(5080), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_translation_unit_repeat1] = STATE(10), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(290), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_operator_cast_definition_repeat1] = STATE(1965), [sym_identifier] = ACTIONS(227), [aux_sym_preproc_include_token1] = ACTIONS(229), [aux_sym_preproc_def_token1] = ACTIONS(231), @@ -26675,6 +27944,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(269), [anon_sym_continue] = ACTIONS(271), [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -26717,123 +27988,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(143), }, [13] = { - [sym_preproc_include] = STATE(15), - [sym_preproc_def] = STATE(15), - [sym_preproc_function_def] = STATE(15), - [sym_preproc_call] = STATE(15), - [sym_preproc_if] = STATE(15), - [sym_preproc_ifdef] = STATE(15), - [sym_preproc_else] = STATE(6876), - [sym_preproc_elif] = STATE(6876), - [sym_function_definition] = STATE(15), - [sym_declaration] = STATE(15), - [sym_type_definition] = STATE(15), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(3964), - [sym_linkage_specification] = STATE(15), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(1089), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym_ms_call_modifier] = STATE(1828), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4772), - [sym_array_declarator] = STATE(4825), - [sym_compound_statement] = STATE(15), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(3090), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_attributed_statement] = STATE(15), - [sym_labeled_statement] = STATE(15), - [sym_expression_statement] = STATE(15), - [sym_if_statement] = STATE(15), - [sym_switch_statement] = STATE(15), - [sym_case_statement] = STATE(15), - [sym_while_statement] = STATE(15), - [sym_do_statement] = STATE(15), - [sym_for_statement] = STATE(15), - [sym_return_statement] = STATE(15), - [sym_break_statement] = STATE(15), - [sym_continue_statement] = STATE(15), - [sym_goto_statement] = STATE(15), - [sym__expression] = STATE(3579), - [sym_comma_expression] = STATE(6778), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__empty_declaration] = STATE(15), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1783), - [sym_dependent_type] = STATE(3139), - [sym_template_declaration] = STATE(15), - [sym_template_instantiation] = STATE(15), - [sym_operator_cast] = STATE(5198), - [sym__constructor_specifiers] = STATE(1783), - [sym_operator_cast_definition] = STATE(15), - [sym_operator_cast_declaration] = STATE(15), - [sym_constructor_or_destructor_definition] = STATE(15), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3531), - [sym_namespace_definition] = STATE(15), - [sym_namespace_alias_definition] = STATE(15), - [sym_using_declaration] = STATE(15), - [sym_alias_declaration] = STATE(15), - [sym_static_assert_declaration] = STATE(15), - [sym_concept_definition] = STATE(15), - [sym_for_range_loop] = STATE(15), - [sym_co_return_statement] = STATE(15), - [sym_co_yield_statement] = STATE(15), - [sym_throw_statement] = STATE(15), - [sym_try_statement] = STATE(15), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4513), - [sym_qualified_identifier] = STATE(2816), - [sym_qualified_type_identifier] = STATE(3276), - [sym_qualified_operator_cast_identifier] = STATE(5198), - [sym_operator_name] = STATE(4825), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_translation_unit_repeat1] = STATE(15), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(162), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_operator_cast_definition_repeat1] = STATE(1783), + [sym_preproc_include] = STATE(19), + [sym_preproc_def] = STATE(19), + [sym_preproc_function_def] = STATE(19), + [sym_preproc_call] = STATE(19), + [sym_preproc_if] = STATE(19), + [sym_preproc_ifdef] = STATE(19), + [sym_preproc_else] = STATE(7294), + [sym_preproc_elif] = STATE(7294), + [sym_function_definition] = STATE(19), + [sym_declaration] = STATE(19), + [sym_type_definition] = STATE(19), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4215), + [sym_linkage_specification] = STATE(19), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym_ms_call_modifier] = STATE(1989), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(5015), + [sym_array_declarator] = STATE(5080), + [sym_compound_statement] = STATE(19), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3414), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_attributed_statement] = STATE(19), + [sym_labeled_statement] = STATE(19), + [sym_expression_statement] = STATE(19), + [sym_if_statement] = STATE(19), + [sym_switch_statement] = STATE(19), + [sym_case_statement] = STATE(19), + [sym_while_statement] = STATE(19), + [sym_do_statement] = STATE(19), + [sym_for_statement] = STATE(19), + [sym_return_statement] = STATE(19), + [sym_break_statement] = STATE(19), + [sym_continue_statement] = STATE(19), + [sym_goto_statement] = STATE(19), + [sym__expression] = STATE(3680), + [sym_comma_expression] = STATE(7175), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__empty_declaration] = STATE(19), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1965), + [sym_dependent_type] = STATE(3481), + [sym_template_declaration] = STATE(19), + [sym_template_instantiation] = STATE(19), + [sym_operator_cast] = STATE(5489), + [sym__constructor_specifiers] = STATE(1965), + [sym_operator_cast_definition] = STATE(19), + [sym_operator_cast_declaration] = STATE(19), + [sym_constructor_or_destructor_definition] = STATE(19), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3608), + [sym_namespace_definition] = STATE(19), + [sym_namespace_alias_definition] = STATE(19), + [sym_using_declaration] = STATE(19), + [sym_alias_declaration] = STATE(19), + [sym_static_assert_declaration] = STATE(19), + [sym_concept_definition] = STATE(19), + [sym_for_range_loop] = STATE(19), + [sym_co_return_statement] = STATE(19), + [sym_co_yield_statement] = STATE(19), + [sym_throw_statement] = STATE(19), + [sym_try_statement] = STATE(19), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4780), + [sym_qualified_identifier] = STATE(2734), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(5489), + [sym_operator_name] = STATE(5080), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_translation_unit_repeat1] = STATE(19), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(290), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_operator_cast_definition_repeat1] = STATE(1965), [sym_identifier] = ACTIONS(227), [aux_sym_preproc_include_token1] = ACTIONS(229), [aux_sym_preproc_def_token1] = ACTIONS(231), @@ -26900,6 +28171,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(269), [anon_sym_continue] = ACTIONS(271), [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -26942,123 +28215,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(143), }, [14] = { - [sym_preproc_include] = STATE(20), - [sym_preproc_def] = STATE(20), - [sym_preproc_function_def] = STATE(20), - [sym_preproc_call] = STATE(20), - [sym_preproc_if] = STATE(20), - [sym_preproc_ifdef] = STATE(20), - [sym_preproc_else] = STATE(6415), - [sym_preproc_elif] = STATE(6415), - [sym_function_definition] = STATE(20), - [sym_declaration] = STATE(20), - [sym_type_definition] = STATE(20), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(3964), - [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(1089), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym_ms_call_modifier] = STATE(1828), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4772), - [sym_array_declarator] = STATE(4825), - [sym_compound_statement] = STATE(20), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(3090), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_attributed_statement] = STATE(20), - [sym_labeled_statement] = STATE(20), - [sym_expression_statement] = STATE(20), - [sym_if_statement] = STATE(20), - [sym_switch_statement] = STATE(20), - [sym_case_statement] = STATE(20), - [sym_while_statement] = STATE(20), - [sym_do_statement] = STATE(20), - [sym_for_statement] = STATE(20), - [sym_return_statement] = STATE(20), - [sym_break_statement] = STATE(20), - [sym_continue_statement] = STATE(20), - [sym_goto_statement] = STATE(20), - [sym__expression] = STATE(3579), - [sym_comma_expression] = STATE(6778), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__empty_declaration] = STATE(20), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1783), - [sym_dependent_type] = STATE(3139), - [sym_template_declaration] = STATE(20), - [sym_template_instantiation] = STATE(20), - [sym_operator_cast] = STATE(5198), - [sym__constructor_specifiers] = STATE(1783), - [sym_operator_cast_definition] = STATE(20), - [sym_operator_cast_declaration] = STATE(20), - [sym_constructor_or_destructor_definition] = STATE(20), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3531), - [sym_namespace_definition] = STATE(20), - [sym_namespace_alias_definition] = STATE(20), - [sym_using_declaration] = STATE(20), - [sym_alias_declaration] = STATE(20), - [sym_static_assert_declaration] = STATE(20), - [sym_concept_definition] = STATE(20), - [sym_for_range_loop] = STATE(20), - [sym_co_return_statement] = STATE(20), - [sym_co_yield_statement] = STATE(20), - [sym_throw_statement] = STATE(20), - [sym_try_statement] = STATE(20), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4513), - [sym_qualified_identifier] = STATE(2816), - [sym_qualified_type_identifier] = STATE(3276), - [sym_qualified_operator_cast_identifier] = STATE(5198), - [sym_operator_name] = STATE(4825), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_translation_unit_repeat1] = STATE(20), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(162), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_operator_cast_definition_repeat1] = STATE(1783), + [sym_preproc_include] = STATE(18), + [sym_preproc_def] = STATE(18), + [sym_preproc_function_def] = STATE(18), + [sym_preproc_call] = STATE(18), + [sym_preproc_if] = STATE(18), + [sym_preproc_ifdef] = STATE(18), + [sym_preproc_else] = STATE(6766), + [sym_preproc_elif] = STATE(6766), + [sym_function_definition] = STATE(18), + [sym_declaration] = STATE(18), + [sym_type_definition] = STATE(18), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4215), + [sym_linkage_specification] = STATE(18), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym_ms_call_modifier] = STATE(1989), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(5015), + [sym_array_declarator] = STATE(5080), + [sym_compound_statement] = STATE(18), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3414), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_attributed_statement] = STATE(18), + [sym_labeled_statement] = STATE(18), + [sym_expression_statement] = STATE(18), + [sym_if_statement] = STATE(18), + [sym_switch_statement] = STATE(18), + [sym_case_statement] = STATE(18), + [sym_while_statement] = STATE(18), + [sym_do_statement] = STATE(18), + [sym_for_statement] = STATE(18), + [sym_return_statement] = STATE(18), + [sym_break_statement] = STATE(18), + [sym_continue_statement] = STATE(18), + [sym_goto_statement] = STATE(18), + [sym__expression] = STATE(3680), + [sym_comma_expression] = STATE(7175), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__empty_declaration] = STATE(18), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1965), + [sym_dependent_type] = STATE(3481), + [sym_template_declaration] = STATE(18), + [sym_template_instantiation] = STATE(18), + [sym_operator_cast] = STATE(5489), + [sym__constructor_specifiers] = STATE(1965), + [sym_operator_cast_definition] = STATE(18), + [sym_operator_cast_declaration] = STATE(18), + [sym_constructor_or_destructor_definition] = STATE(18), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3608), + [sym_namespace_definition] = STATE(18), + [sym_namespace_alias_definition] = STATE(18), + [sym_using_declaration] = STATE(18), + [sym_alias_declaration] = STATE(18), + [sym_static_assert_declaration] = STATE(18), + [sym_concept_definition] = STATE(18), + [sym_for_range_loop] = STATE(18), + [sym_co_return_statement] = STATE(18), + [sym_co_yield_statement] = STATE(18), + [sym_throw_statement] = STATE(18), + [sym_try_statement] = STATE(18), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4780), + [sym_qualified_identifier] = STATE(2734), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(5489), + [sym_operator_name] = STATE(5080), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_translation_unit_repeat1] = STATE(18), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(290), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_operator_cast_definition_repeat1] = STATE(1965), [sym_identifier] = ACTIONS(227), [aux_sym_preproc_include_token1] = ACTIONS(229), [aux_sym_preproc_def_token1] = ACTIONS(231), @@ -27125,6 +28398,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(269), [anon_sym_continue] = ACTIONS(271), [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -27167,123 +28442,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(143), }, [15] = { - [sym_preproc_include] = STATE(28), - [sym_preproc_def] = STATE(28), - [sym_preproc_function_def] = STATE(28), - [sym_preproc_call] = STATE(28), - [sym_preproc_if] = STATE(28), - [sym_preproc_ifdef] = STATE(28), - [sym_preproc_else] = STATE(6430), - [sym_preproc_elif] = STATE(6430), - [sym_function_definition] = STATE(28), - [sym_declaration] = STATE(28), - [sym_type_definition] = STATE(28), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(3964), - [sym_linkage_specification] = STATE(28), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(1089), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym_ms_call_modifier] = STATE(1828), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4772), - [sym_array_declarator] = STATE(4825), - [sym_compound_statement] = STATE(28), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(3090), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_attributed_statement] = STATE(28), - [sym_labeled_statement] = STATE(28), - [sym_expression_statement] = STATE(28), - [sym_if_statement] = STATE(28), - [sym_switch_statement] = STATE(28), - [sym_case_statement] = STATE(28), - [sym_while_statement] = STATE(28), - [sym_do_statement] = STATE(28), - [sym_for_statement] = STATE(28), - [sym_return_statement] = STATE(28), - [sym_break_statement] = STATE(28), - [sym_continue_statement] = STATE(28), - [sym_goto_statement] = STATE(28), - [sym__expression] = STATE(3579), - [sym_comma_expression] = STATE(6778), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__empty_declaration] = STATE(28), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1783), - [sym_dependent_type] = STATE(3139), - [sym_template_declaration] = STATE(28), - [sym_template_instantiation] = STATE(28), - [sym_operator_cast] = STATE(5198), - [sym__constructor_specifiers] = STATE(1783), - [sym_operator_cast_definition] = STATE(28), - [sym_operator_cast_declaration] = STATE(28), - [sym_constructor_or_destructor_definition] = STATE(28), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3531), - [sym_namespace_definition] = STATE(28), - [sym_namespace_alias_definition] = STATE(28), - [sym_using_declaration] = STATE(28), - [sym_alias_declaration] = STATE(28), - [sym_static_assert_declaration] = STATE(28), - [sym_concept_definition] = STATE(28), - [sym_for_range_loop] = STATE(28), - [sym_co_return_statement] = STATE(28), - [sym_co_yield_statement] = STATE(28), - [sym_throw_statement] = STATE(28), - [sym_try_statement] = STATE(28), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4513), - [sym_qualified_identifier] = STATE(2816), - [sym_qualified_type_identifier] = STATE(3276), - [sym_qualified_operator_cast_identifier] = STATE(5198), - [sym_operator_name] = STATE(4825), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_translation_unit_repeat1] = STATE(28), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(162), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_operator_cast_definition_repeat1] = STATE(1783), + [sym_preproc_include] = STATE(17), + [sym_preproc_def] = STATE(17), + [sym_preproc_function_def] = STATE(17), + [sym_preproc_call] = STATE(17), + [sym_preproc_if] = STATE(17), + [sym_preproc_ifdef] = STATE(17), + [sym_preproc_else] = STATE(6980), + [sym_preproc_elif] = STATE(6980), + [sym_function_definition] = STATE(17), + [sym_declaration] = STATE(17), + [sym_type_definition] = STATE(17), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4215), + [sym_linkage_specification] = STATE(17), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym_ms_call_modifier] = STATE(1989), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(5015), + [sym_array_declarator] = STATE(5080), + [sym_compound_statement] = STATE(17), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3414), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_attributed_statement] = STATE(17), + [sym_labeled_statement] = STATE(17), + [sym_expression_statement] = STATE(17), + [sym_if_statement] = STATE(17), + [sym_switch_statement] = STATE(17), + [sym_case_statement] = STATE(17), + [sym_while_statement] = STATE(17), + [sym_do_statement] = STATE(17), + [sym_for_statement] = STATE(17), + [sym_return_statement] = STATE(17), + [sym_break_statement] = STATE(17), + [sym_continue_statement] = STATE(17), + [sym_goto_statement] = STATE(17), + [sym__expression] = STATE(3680), + [sym_comma_expression] = STATE(7175), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__empty_declaration] = STATE(17), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1965), + [sym_dependent_type] = STATE(3481), + [sym_template_declaration] = STATE(17), + [sym_template_instantiation] = STATE(17), + [sym_operator_cast] = STATE(5489), + [sym__constructor_specifiers] = STATE(1965), + [sym_operator_cast_definition] = STATE(17), + [sym_operator_cast_declaration] = STATE(17), + [sym_constructor_or_destructor_definition] = STATE(17), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3608), + [sym_namespace_definition] = STATE(17), + [sym_namespace_alias_definition] = STATE(17), + [sym_using_declaration] = STATE(17), + [sym_alias_declaration] = STATE(17), + [sym_static_assert_declaration] = STATE(17), + [sym_concept_definition] = STATE(17), + [sym_for_range_loop] = STATE(17), + [sym_co_return_statement] = STATE(17), + [sym_co_yield_statement] = STATE(17), + [sym_throw_statement] = STATE(17), + [sym_try_statement] = STATE(17), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4780), + [sym_qualified_identifier] = STATE(2734), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(5489), + [sym_operator_name] = STATE(5080), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_translation_unit_repeat1] = STATE(17), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(290), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_operator_cast_definition_repeat1] = STATE(1965), [sym_identifier] = ACTIONS(227), [aux_sym_preproc_include_token1] = ACTIONS(229), [aux_sym_preproc_def_token1] = ACTIONS(231), @@ -27350,6 +28625,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(269), [anon_sym_continue] = ACTIONS(271), [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -27392,123 +28669,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(143), }, [16] = { - [sym_preproc_include] = STATE(19), - [sym_preproc_def] = STATE(19), - [sym_preproc_function_def] = STATE(19), - [sym_preproc_call] = STATE(19), - [sym_preproc_if] = STATE(19), - [sym_preproc_ifdef] = STATE(19), - [sym_preproc_else] = STATE(6423), - [sym_preproc_elif] = STATE(6423), - [sym_function_definition] = STATE(19), - [sym_declaration] = STATE(19), - [sym_type_definition] = STATE(19), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(3964), - [sym_linkage_specification] = STATE(19), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(1089), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym_ms_call_modifier] = STATE(1828), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4772), - [sym_array_declarator] = STATE(4825), - [sym_compound_statement] = STATE(19), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(3090), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_attributed_statement] = STATE(19), - [sym_labeled_statement] = STATE(19), - [sym_expression_statement] = STATE(19), - [sym_if_statement] = STATE(19), - [sym_switch_statement] = STATE(19), - [sym_case_statement] = STATE(19), - [sym_while_statement] = STATE(19), - [sym_do_statement] = STATE(19), - [sym_for_statement] = STATE(19), - [sym_return_statement] = STATE(19), - [sym_break_statement] = STATE(19), - [sym_continue_statement] = STATE(19), - [sym_goto_statement] = STATE(19), - [sym__expression] = STATE(3579), - [sym_comma_expression] = STATE(6778), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__empty_declaration] = STATE(19), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1783), - [sym_dependent_type] = STATE(3139), - [sym_template_declaration] = STATE(19), - [sym_template_instantiation] = STATE(19), - [sym_operator_cast] = STATE(5198), - [sym__constructor_specifiers] = STATE(1783), - [sym_operator_cast_definition] = STATE(19), - [sym_operator_cast_declaration] = STATE(19), - [sym_constructor_or_destructor_definition] = STATE(19), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3531), - [sym_namespace_definition] = STATE(19), - [sym_namespace_alias_definition] = STATE(19), - [sym_using_declaration] = STATE(19), - [sym_alias_declaration] = STATE(19), - [sym_static_assert_declaration] = STATE(19), - [sym_concept_definition] = STATE(19), - [sym_for_range_loop] = STATE(19), - [sym_co_return_statement] = STATE(19), - [sym_co_yield_statement] = STATE(19), - [sym_throw_statement] = STATE(19), - [sym_try_statement] = STATE(19), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4513), - [sym_qualified_identifier] = STATE(2816), - [sym_qualified_type_identifier] = STATE(3276), - [sym_qualified_operator_cast_identifier] = STATE(5198), - [sym_operator_name] = STATE(4825), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_translation_unit_repeat1] = STATE(19), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(162), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_operator_cast_definition_repeat1] = STATE(1783), + [sym_preproc_include] = STATE(28), + [sym_preproc_def] = STATE(28), + [sym_preproc_function_def] = STATE(28), + [sym_preproc_call] = STATE(28), + [sym_preproc_if] = STATE(28), + [sym_preproc_ifdef] = STATE(28), + [sym_preproc_else] = STATE(7281), + [sym_preproc_elif] = STATE(7281), + [sym_function_definition] = STATE(28), + [sym_declaration] = STATE(28), + [sym_type_definition] = STATE(28), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4215), + [sym_linkage_specification] = STATE(28), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym_ms_call_modifier] = STATE(1989), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(5015), + [sym_array_declarator] = STATE(5080), + [sym_compound_statement] = STATE(28), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3414), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_attributed_statement] = STATE(28), + [sym_labeled_statement] = STATE(28), + [sym_expression_statement] = STATE(28), + [sym_if_statement] = STATE(28), + [sym_switch_statement] = STATE(28), + [sym_case_statement] = STATE(28), + [sym_while_statement] = STATE(28), + [sym_do_statement] = STATE(28), + [sym_for_statement] = STATE(28), + [sym_return_statement] = STATE(28), + [sym_break_statement] = STATE(28), + [sym_continue_statement] = STATE(28), + [sym_goto_statement] = STATE(28), + [sym__expression] = STATE(3680), + [sym_comma_expression] = STATE(7175), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__empty_declaration] = STATE(28), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1965), + [sym_dependent_type] = STATE(3481), + [sym_template_declaration] = STATE(28), + [sym_template_instantiation] = STATE(28), + [sym_operator_cast] = STATE(5489), + [sym__constructor_specifiers] = STATE(1965), + [sym_operator_cast_definition] = STATE(28), + [sym_operator_cast_declaration] = STATE(28), + [sym_constructor_or_destructor_definition] = STATE(28), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3608), + [sym_namespace_definition] = STATE(28), + [sym_namespace_alias_definition] = STATE(28), + [sym_using_declaration] = STATE(28), + [sym_alias_declaration] = STATE(28), + [sym_static_assert_declaration] = STATE(28), + [sym_concept_definition] = STATE(28), + [sym_for_range_loop] = STATE(28), + [sym_co_return_statement] = STATE(28), + [sym_co_yield_statement] = STATE(28), + [sym_throw_statement] = STATE(28), + [sym_try_statement] = STATE(28), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4780), + [sym_qualified_identifier] = STATE(2734), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(5489), + [sym_operator_name] = STATE(5080), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_translation_unit_repeat1] = STATE(28), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(290), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_operator_cast_definition_repeat1] = STATE(1965), [sym_identifier] = ACTIONS(227), [aux_sym_preproc_include_token1] = ACTIONS(229), [aux_sym_preproc_def_token1] = ACTIONS(231), @@ -27575,6 +28852,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(269), [anon_sym_continue] = ACTIONS(271), [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -27617,123 +28896,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(143), }, [17] = { - [sym_preproc_include] = STATE(12), - [sym_preproc_def] = STATE(12), - [sym_preproc_function_def] = STATE(12), - [sym_preproc_call] = STATE(12), - [sym_preproc_if] = STATE(12), - [sym_preproc_ifdef] = STATE(12), - [sym_preproc_else] = STATE(6669), - [sym_preproc_elif] = STATE(6669), - [sym_function_definition] = STATE(12), - [sym_declaration] = STATE(12), - [sym_type_definition] = STATE(12), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(3964), - [sym_linkage_specification] = STATE(12), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(1089), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym_ms_call_modifier] = STATE(1828), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4772), - [sym_array_declarator] = STATE(4825), - [sym_compound_statement] = STATE(12), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(3090), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_attributed_statement] = STATE(12), - [sym_labeled_statement] = STATE(12), - [sym_expression_statement] = STATE(12), - [sym_if_statement] = STATE(12), - [sym_switch_statement] = STATE(12), - [sym_case_statement] = STATE(12), - [sym_while_statement] = STATE(12), - [sym_do_statement] = STATE(12), - [sym_for_statement] = STATE(12), - [sym_return_statement] = STATE(12), - [sym_break_statement] = STATE(12), - [sym_continue_statement] = STATE(12), - [sym_goto_statement] = STATE(12), - [sym__expression] = STATE(3579), - [sym_comma_expression] = STATE(6778), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__empty_declaration] = STATE(12), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1783), - [sym_dependent_type] = STATE(3139), - [sym_template_declaration] = STATE(12), - [sym_template_instantiation] = STATE(12), - [sym_operator_cast] = STATE(5198), - [sym__constructor_specifiers] = STATE(1783), - [sym_operator_cast_definition] = STATE(12), - [sym_operator_cast_declaration] = STATE(12), - [sym_constructor_or_destructor_definition] = STATE(12), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3531), - [sym_namespace_definition] = STATE(12), - [sym_namespace_alias_definition] = STATE(12), - [sym_using_declaration] = STATE(12), - [sym_alias_declaration] = STATE(12), - [sym_static_assert_declaration] = STATE(12), - [sym_concept_definition] = STATE(12), - [sym_for_range_loop] = STATE(12), - [sym_co_return_statement] = STATE(12), - [sym_co_yield_statement] = STATE(12), - [sym_throw_statement] = STATE(12), - [sym_try_statement] = STATE(12), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4513), - [sym_qualified_identifier] = STATE(2816), - [sym_qualified_type_identifier] = STATE(3276), - [sym_qualified_operator_cast_identifier] = STATE(5198), - [sym_operator_name] = STATE(4825), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_translation_unit_repeat1] = STATE(12), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(162), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_operator_cast_definition_repeat1] = STATE(1783), + [sym_preproc_include] = STATE(28), + [sym_preproc_def] = STATE(28), + [sym_preproc_function_def] = STATE(28), + [sym_preproc_call] = STATE(28), + [sym_preproc_if] = STATE(28), + [sym_preproc_ifdef] = STATE(28), + [sym_preproc_else] = STATE(7041), + [sym_preproc_elif] = STATE(7041), + [sym_function_definition] = STATE(28), + [sym_declaration] = STATE(28), + [sym_type_definition] = STATE(28), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4215), + [sym_linkage_specification] = STATE(28), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym_ms_call_modifier] = STATE(1989), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(5015), + [sym_array_declarator] = STATE(5080), + [sym_compound_statement] = STATE(28), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3414), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_attributed_statement] = STATE(28), + [sym_labeled_statement] = STATE(28), + [sym_expression_statement] = STATE(28), + [sym_if_statement] = STATE(28), + [sym_switch_statement] = STATE(28), + [sym_case_statement] = STATE(28), + [sym_while_statement] = STATE(28), + [sym_do_statement] = STATE(28), + [sym_for_statement] = STATE(28), + [sym_return_statement] = STATE(28), + [sym_break_statement] = STATE(28), + [sym_continue_statement] = STATE(28), + [sym_goto_statement] = STATE(28), + [sym__expression] = STATE(3680), + [sym_comma_expression] = STATE(7175), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__empty_declaration] = STATE(28), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1965), + [sym_dependent_type] = STATE(3481), + [sym_template_declaration] = STATE(28), + [sym_template_instantiation] = STATE(28), + [sym_operator_cast] = STATE(5489), + [sym__constructor_specifiers] = STATE(1965), + [sym_operator_cast_definition] = STATE(28), + [sym_operator_cast_declaration] = STATE(28), + [sym_constructor_or_destructor_definition] = STATE(28), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3608), + [sym_namespace_definition] = STATE(28), + [sym_namespace_alias_definition] = STATE(28), + [sym_using_declaration] = STATE(28), + [sym_alias_declaration] = STATE(28), + [sym_static_assert_declaration] = STATE(28), + [sym_concept_definition] = STATE(28), + [sym_for_range_loop] = STATE(28), + [sym_co_return_statement] = STATE(28), + [sym_co_yield_statement] = STATE(28), + [sym_throw_statement] = STATE(28), + [sym_try_statement] = STATE(28), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4780), + [sym_qualified_identifier] = STATE(2734), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(5489), + [sym_operator_name] = STATE(5080), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_translation_unit_repeat1] = STATE(28), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(290), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_operator_cast_definition_repeat1] = STATE(1965), [sym_identifier] = ACTIONS(227), [aux_sym_preproc_include_token1] = ACTIONS(229), [aux_sym_preproc_def_token1] = ACTIONS(231), @@ -27800,6 +29079,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(269), [anon_sym_continue] = ACTIONS(271), [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -27842,264 +29123,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(143), }, [18] = { - [sym_preproc_include] = STATE(23), - [sym_preproc_def] = STATE(23), - [sym_preproc_function_def] = STATE(23), - [sym_preproc_call] = STATE(23), - [sym_preproc_if] = STATE(23), - [sym_preproc_ifdef] = STATE(23), - [sym_preproc_else] = STATE(6389), - [sym_preproc_elif] = STATE(6389), - [sym_function_definition] = STATE(23), - [sym_declaration] = STATE(23), - [sym_type_definition] = STATE(23), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(3964), - [sym_linkage_specification] = STATE(23), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(1089), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym_ms_call_modifier] = STATE(1828), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4772), - [sym_array_declarator] = STATE(4825), - [sym_compound_statement] = STATE(23), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(3090), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_attributed_statement] = STATE(23), - [sym_labeled_statement] = STATE(23), - [sym_expression_statement] = STATE(23), - [sym_if_statement] = STATE(23), - [sym_switch_statement] = STATE(23), - [sym_case_statement] = STATE(23), - [sym_while_statement] = STATE(23), - [sym_do_statement] = STATE(23), - [sym_for_statement] = STATE(23), - [sym_return_statement] = STATE(23), - [sym_break_statement] = STATE(23), - [sym_continue_statement] = STATE(23), - [sym_goto_statement] = STATE(23), - [sym__expression] = STATE(3579), - [sym_comma_expression] = STATE(6778), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__empty_declaration] = STATE(23), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1783), - [sym_dependent_type] = STATE(3139), - [sym_template_declaration] = STATE(23), - [sym_template_instantiation] = STATE(23), - [sym_operator_cast] = STATE(5198), - [sym__constructor_specifiers] = STATE(1783), - [sym_operator_cast_definition] = STATE(23), - [sym_operator_cast_declaration] = STATE(23), - [sym_constructor_or_destructor_definition] = STATE(23), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3531), - [sym_namespace_definition] = STATE(23), - [sym_namespace_alias_definition] = STATE(23), - [sym_using_declaration] = STATE(23), - [sym_alias_declaration] = STATE(23), - [sym_static_assert_declaration] = STATE(23), - [sym_concept_definition] = STATE(23), - [sym_for_range_loop] = STATE(23), - [sym_co_return_statement] = STATE(23), - [sym_co_yield_statement] = STATE(23), - [sym_throw_statement] = STATE(23), - [sym_try_statement] = STATE(23), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4513), - [sym_qualified_identifier] = STATE(2816), - [sym_qualified_type_identifier] = STATE(3276), - [sym_qualified_operator_cast_identifier] = STATE(5198), - [sym_operator_name] = STATE(4825), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_translation_unit_repeat1] = STATE(23), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(162), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_operator_cast_definition_repeat1] = STATE(1783), - [sym_identifier] = ACTIONS(227), - [aux_sym_preproc_include_token1] = ACTIONS(229), - [aux_sym_preproc_def_token1] = ACTIONS(231), - [aux_sym_preproc_if_token1] = ACTIONS(233), - [aux_sym_preproc_if_token2] = ACTIONS(307), - [aux_sym_preproc_ifdef_token1] = ACTIONS(237), - [aux_sym_preproc_ifdef_token2] = ACTIONS(237), - [aux_sym_preproc_else_token1] = ACTIONS(239), - [aux_sym_preproc_elif_token1] = ACTIONS(241), - [sym_preproc_directive] = ACTIONS(243), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(245), - [anon_sym_typedef] = ACTIONS(247), - [anon_sym_extern] = ACTIONS(249), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(253), - [anon_sym_switch] = ACTIONS(255), - [anon_sym_case] = ACTIONS(257), - [anon_sym_default] = ACTIONS(259), - [anon_sym_while] = ACTIONS(261), - [anon_sym_do] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_return] = ACTIONS(267), - [anon_sym_break] = ACTIONS(269), - [anon_sym_continue] = ACTIONS(271), - [anon_sym_goto] = ACTIONS(273), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(105), - [anon_sym_decltype] = ACTIONS(107), - [anon_sym_virtual] = ACTIONS(109), - [anon_sym_explicit] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(275), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_try] = ACTIONS(277), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(279), - [anon_sym_namespace] = ACTIONS(281), - [anon_sym_using] = ACTIONS(283), - [anon_sym_static_assert] = ACTIONS(285), - [anon_sym_concept] = ACTIONS(287), - [anon_sym_co_return] = ACTIONS(289), - [anon_sym_co_yield] = ACTIONS(291), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), - }, - [19] = { [sym_preproc_include] = STATE(28), [sym_preproc_def] = STATE(28), [sym_preproc_function_def] = STATE(28), [sym_preproc_call] = STATE(28), [sym_preproc_if] = STATE(28), [sym_preproc_ifdef] = STATE(28), - [sym_preproc_else] = STATE(6388), - [sym_preproc_elif] = STATE(6388), + [sym_preproc_else] = STATE(6793), + [sym_preproc_elif] = STATE(6793), [sym_function_definition] = STATE(28), [sym_declaration] = STATE(28), [sym_type_definition] = STATE(28), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(3964), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4215), [sym_linkage_specification] = STATE(28), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(1089), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym_ms_call_modifier] = STATE(1828), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4772), - [sym_array_declarator] = STATE(4825), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym_ms_call_modifier] = STATE(1989), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(5015), + [sym_array_declarator] = STATE(5080), [sym_compound_statement] = STATE(28), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(3090), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3414), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), [sym_attributed_statement] = STATE(28), [sym_labeled_statement] = STATE(28), [sym_expression_statement] = STATE(28), @@ -28113,44 +29169,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(28), [sym_continue_statement] = STATE(28), [sym_goto_statement] = STATE(28), - [sym__expression] = STATE(3579), - [sym_comma_expression] = STATE(6778), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), + [sym__expression] = STATE(3680), + [sym_comma_expression] = STATE(7175), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), [sym__empty_declaration] = STATE(28), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1783), - [sym_dependent_type] = STATE(3139), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1965), + [sym_dependent_type] = STATE(3481), [sym_template_declaration] = STATE(28), [sym_template_instantiation] = STATE(28), - [sym_operator_cast] = STATE(5198), - [sym__constructor_specifiers] = STATE(1783), + [sym_operator_cast] = STATE(5489), + [sym__constructor_specifiers] = STATE(1965), [sym_operator_cast_definition] = STATE(28), [sym_operator_cast_declaration] = STATE(28), [sym_constructor_or_destructor_definition] = STATE(28), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3531), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3608), [sym_namespace_definition] = STATE(28), [sym_namespace_alias_definition] = STATE(28), [sym_using_declaration] = STATE(28), @@ -28162,33 +29218,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(28), [sym_throw_statement] = STATE(28), [sym_try_statement] = STATE(28), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4513), - [sym_qualified_identifier] = STATE(2816), - [sym_qualified_type_identifier] = STATE(3276), - [sym_qualified_operator_cast_identifier] = STATE(5198), - [sym_operator_name] = STATE(4825), - [sym_user_defined_literal] = STATE(3428), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4780), + [sym_qualified_identifier] = STATE(2734), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(5489), + [sym_operator_name] = STATE(5080), + [sym_user_defined_literal] = STATE(3435), [aux_sym_translation_unit_repeat1] = STATE(28), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(162), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_operator_cast_definition_repeat1] = STATE(1783), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(290), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_operator_cast_definition_repeat1] = STATE(1965), [sym_identifier] = ACTIONS(227), [aux_sym_preproc_include_token1] = ACTIONS(229), [aux_sym_preproc_def_token1] = ACTIONS(231), [aux_sym_preproc_if_token1] = ACTIONS(233), - [aux_sym_preproc_if_token2] = ACTIONS(309), + [aux_sym_preproc_if_token2] = ACTIONS(307), [aux_sym_preproc_ifdef_token1] = ACTIONS(237), [aux_sym_preproc_ifdef_token2] = ACTIONS(237), [aux_sym_preproc_else_token1] = ACTIONS(239), @@ -28250,6 +29306,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(269), [anon_sym_continue] = ACTIONS(271), [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -28291,40 +29349,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [20] = { + [19] = { [sym_preproc_include] = STATE(28), [sym_preproc_def] = STATE(28), [sym_preproc_function_def] = STATE(28), [sym_preproc_call] = STATE(28), [sym_preproc_if] = STATE(28), [sym_preproc_ifdef] = STATE(28), - [sym_preproc_else] = STATE(6646), - [sym_preproc_elif] = STATE(6646), + [sym_preproc_else] = STATE(7254), + [sym_preproc_elif] = STATE(7254), [sym_function_definition] = STATE(28), [sym_declaration] = STATE(28), [sym_type_definition] = STATE(28), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(3964), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4215), [sym_linkage_specification] = STATE(28), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(1089), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym_ms_call_modifier] = STATE(1828), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4772), - [sym_array_declarator] = STATE(4825), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym_ms_call_modifier] = STATE(1989), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(5015), + [sym_array_declarator] = STATE(5080), [sym_compound_statement] = STATE(28), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(3090), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3414), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), [sym_attributed_statement] = STATE(28), [sym_labeled_statement] = STATE(28), [sym_expression_statement] = STATE(28), @@ -28338,44 +29396,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(28), [sym_continue_statement] = STATE(28), [sym_goto_statement] = STATE(28), - [sym__expression] = STATE(3579), - [sym_comma_expression] = STATE(6778), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), + [sym__expression] = STATE(3680), + [sym_comma_expression] = STATE(7175), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), [sym__empty_declaration] = STATE(28), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1783), - [sym_dependent_type] = STATE(3139), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1965), + [sym_dependent_type] = STATE(3481), [sym_template_declaration] = STATE(28), [sym_template_instantiation] = STATE(28), - [sym_operator_cast] = STATE(5198), - [sym__constructor_specifiers] = STATE(1783), + [sym_operator_cast] = STATE(5489), + [sym__constructor_specifiers] = STATE(1965), [sym_operator_cast_definition] = STATE(28), [sym_operator_cast_declaration] = STATE(28), [sym_constructor_or_destructor_definition] = STATE(28), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3531), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3608), [sym_namespace_definition] = STATE(28), [sym_namespace_alias_definition] = STATE(28), [sym_using_declaration] = STATE(28), @@ -28387,33 +29445,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(28), [sym_throw_statement] = STATE(28), [sym_try_statement] = STATE(28), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4513), - [sym_qualified_identifier] = STATE(2816), - [sym_qualified_type_identifier] = STATE(3276), - [sym_qualified_operator_cast_identifier] = STATE(5198), - [sym_operator_name] = STATE(4825), - [sym_user_defined_literal] = STATE(3428), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4780), + [sym_qualified_identifier] = STATE(2734), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(5489), + [sym_operator_name] = STATE(5080), + [sym_user_defined_literal] = STATE(3435), [aux_sym_translation_unit_repeat1] = STATE(28), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(162), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_operator_cast_definition_repeat1] = STATE(1783), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(290), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_operator_cast_definition_repeat1] = STATE(1965), [sym_identifier] = ACTIONS(227), [aux_sym_preproc_include_token1] = ACTIONS(229), [aux_sym_preproc_def_token1] = ACTIONS(231), [aux_sym_preproc_if_token1] = ACTIONS(233), - [aux_sym_preproc_if_token2] = ACTIONS(311), + [aux_sym_preproc_if_token2] = ACTIONS(309), [aux_sym_preproc_ifdef_token1] = ACTIONS(237), [aux_sym_preproc_ifdef_token2] = ACTIONS(237), [aux_sym_preproc_else_token1] = ACTIONS(239), @@ -28475,6 +29533,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(269), [anon_sym_continue] = ACTIONS(271), [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -28516,129 +29576,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [21] = { - [sym_preproc_include] = STATE(26), - [sym_preproc_def] = STATE(26), - [sym_preproc_function_def] = STATE(26), - [sym_preproc_call] = STATE(26), - [sym_preproc_if] = STATE(26), - [sym_preproc_ifdef] = STATE(26), - [sym_preproc_else] = STATE(6816), - [sym_preproc_elif] = STATE(6816), - [sym_function_definition] = STATE(26), - [sym_declaration] = STATE(26), - [sym_type_definition] = STATE(26), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(3964), - [sym_linkage_specification] = STATE(26), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(1089), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym_ms_call_modifier] = STATE(1828), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4772), - [sym_array_declarator] = STATE(4825), - [sym_compound_statement] = STATE(26), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(3090), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_attributed_statement] = STATE(26), - [sym_labeled_statement] = STATE(26), - [sym_expression_statement] = STATE(26), - [sym_if_statement] = STATE(26), - [sym_switch_statement] = STATE(26), - [sym_case_statement] = STATE(26), - [sym_while_statement] = STATE(26), - [sym_do_statement] = STATE(26), - [sym_for_statement] = STATE(26), - [sym_return_statement] = STATE(26), - [sym_break_statement] = STATE(26), - [sym_continue_statement] = STATE(26), - [sym_goto_statement] = STATE(26), - [sym__expression] = STATE(3579), - [sym_comma_expression] = STATE(6778), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__empty_declaration] = STATE(26), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1783), - [sym_dependent_type] = STATE(3139), - [sym_template_declaration] = STATE(26), - [sym_template_instantiation] = STATE(26), - [sym_operator_cast] = STATE(5198), - [sym__constructor_specifiers] = STATE(1783), - [sym_operator_cast_definition] = STATE(26), - [sym_operator_cast_declaration] = STATE(26), - [sym_constructor_or_destructor_definition] = STATE(26), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3531), - [sym_namespace_definition] = STATE(26), - [sym_namespace_alias_definition] = STATE(26), - [sym_using_declaration] = STATE(26), - [sym_alias_declaration] = STATE(26), - [sym_static_assert_declaration] = STATE(26), - [sym_concept_definition] = STATE(26), - [sym_for_range_loop] = STATE(26), - [sym_co_return_statement] = STATE(26), - [sym_co_yield_statement] = STATE(26), - [sym_throw_statement] = STATE(26), - [sym_try_statement] = STATE(26), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4513), - [sym_qualified_identifier] = STATE(2816), - [sym_qualified_type_identifier] = STATE(3276), - [sym_qualified_operator_cast_identifier] = STATE(5198), - [sym_operator_name] = STATE(4825), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_translation_unit_repeat1] = STATE(26), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(162), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_operator_cast_definition_repeat1] = STATE(1783), + [20] = { + [sym_preproc_include] = STATE(22), + [sym_preproc_def] = STATE(22), + [sym_preproc_function_def] = STATE(22), + [sym_preproc_call] = STATE(22), + [sym_preproc_if] = STATE(22), + [sym_preproc_ifdef] = STATE(22), + [sym_preproc_else] = STATE(7040), + [sym_preproc_elif] = STATE(7040), + [sym_function_definition] = STATE(22), + [sym_declaration] = STATE(22), + [sym_type_definition] = STATE(22), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4215), + [sym_linkage_specification] = STATE(22), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym_ms_call_modifier] = STATE(1989), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(5015), + [sym_array_declarator] = STATE(5080), + [sym_compound_statement] = STATE(22), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3414), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_attributed_statement] = STATE(22), + [sym_labeled_statement] = STATE(22), + [sym_expression_statement] = STATE(22), + [sym_if_statement] = STATE(22), + [sym_switch_statement] = STATE(22), + [sym_case_statement] = STATE(22), + [sym_while_statement] = STATE(22), + [sym_do_statement] = STATE(22), + [sym_for_statement] = STATE(22), + [sym_return_statement] = STATE(22), + [sym_break_statement] = STATE(22), + [sym_continue_statement] = STATE(22), + [sym_goto_statement] = STATE(22), + [sym__expression] = STATE(3680), + [sym_comma_expression] = STATE(7175), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__empty_declaration] = STATE(22), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1965), + [sym_dependent_type] = STATE(3481), + [sym_template_declaration] = STATE(22), + [sym_template_instantiation] = STATE(22), + [sym_operator_cast] = STATE(5489), + [sym__constructor_specifiers] = STATE(1965), + [sym_operator_cast_definition] = STATE(22), + [sym_operator_cast_declaration] = STATE(22), + [sym_constructor_or_destructor_definition] = STATE(22), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3608), + [sym_namespace_definition] = STATE(22), + [sym_namespace_alias_definition] = STATE(22), + [sym_using_declaration] = STATE(22), + [sym_alias_declaration] = STATE(22), + [sym_static_assert_declaration] = STATE(22), + [sym_concept_definition] = STATE(22), + [sym_for_range_loop] = STATE(22), + [sym_co_return_statement] = STATE(22), + [sym_co_yield_statement] = STATE(22), + [sym_throw_statement] = STATE(22), + [sym_try_statement] = STATE(22), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4780), + [sym_qualified_identifier] = STATE(2734), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(5489), + [sym_operator_name] = STATE(5080), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_translation_unit_repeat1] = STATE(22), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(290), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_operator_cast_definition_repeat1] = STATE(1965), [sym_identifier] = ACTIONS(227), [aux_sym_preproc_include_token1] = ACTIONS(229), [aux_sym_preproc_def_token1] = ACTIONS(231), [aux_sym_preproc_if_token1] = ACTIONS(233), - [aux_sym_preproc_if_token2] = ACTIONS(313), + [aux_sym_preproc_if_token2] = ACTIONS(311), [aux_sym_preproc_ifdef_token1] = ACTIONS(237), [aux_sym_preproc_ifdef_token2] = ACTIONS(237), [aux_sym_preproc_else_token1] = ACTIONS(239), @@ -28700,6 +29760,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(269), [anon_sym_continue] = ACTIONS(271), [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -28741,40 +29803,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [22] = { + [21] = { [sym_preproc_include] = STATE(28), [sym_preproc_def] = STATE(28), [sym_preproc_function_def] = STATE(28), [sym_preproc_call] = STATE(28), [sym_preproc_if] = STATE(28), [sym_preproc_ifdef] = STATE(28), - [sym_preproc_else] = STATE(6869), - [sym_preproc_elif] = STATE(6869), + [sym_preproc_else] = STATE(7090), + [sym_preproc_elif] = STATE(7090), [sym_function_definition] = STATE(28), [sym_declaration] = STATE(28), [sym_type_definition] = STATE(28), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(3964), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4215), [sym_linkage_specification] = STATE(28), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(1089), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym_ms_call_modifier] = STATE(1828), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4772), - [sym_array_declarator] = STATE(4825), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym_ms_call_modifier] = STATE(1989), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(5015), + [sym_array_declarator] = STATE(5080), [sym_compound_statement] = STATE(28), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(3090), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3414), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), [sym_attributed_statement] = STATE(28), [sym_labeled_statement] = STATE(28), [sym_expression_statement] = STATE(28), @@ -28788,44 +29850,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(28), [sym_continue_statement] = STATE(28), [sym_goto_statement] = STATE(28), - [sym__expression] = STATE(3579), - [sym_comma_expression] = STATE(6778), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), + [sym__expression] = STATE(3680), + [sym_comma_expression] = STATE(7175), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), [sym__empty_declaration] = STATE(28), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1783), - [sym_dependent_type] = STATE(3139), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1965), + [sym_dependent_type] = STATE(3481), [sym_template_declaration] = STATE(28), [sym_template_instantiation] = STATE(28), - [sym_operator_cast] = STATE(5198), - [sym__constructor_specifiers] = STATE(1783), + [sym_operator_cast] = STATE(5489), + [sym__constructor_specifiers] = STATE(1965), [sym_operator_cast_definition] = STATE(28), [sym_operator_cast_declaration] = STATE(28), [sym_constructor_or_destructor_definition] = STATE(28), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3531), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3608), [sym_namespace_definition] = STATE(28), [sym_namespace_alias_definition] = STATE(28), [sym_using_declaration] = STATE(28), @@ -28837,33 +29899,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(28), [sym_throw_statement] = STATE(28), [sym_try_statement] = STATE(28), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4513), - [sym_qualified_identifier] = STATE(2816), - [sym_qualified_type_identifier] = STATE(3276), - [sym_qualified_operator_cast_identifier] = STATE(5198), - [sym_operator_name] = STATE(4825), - [sym_user_defined_literal] = STATE(3428), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4780), + [sym_qualified_identifier] = STATE(2734), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(5489), + [sym_operator_name] = STATE(5080), + [sym_user_defined_literal] = STATE(3435), [aux_sym_translation_unit_repeat1] = STATE(28), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(162), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_operator_cast_definition_repeat1] = STATE(1783), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(290), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_operator_cast_definition_repeat1] = STATE(1965), [sym_identifier] = ACTIONS(227), [aux_sym_preproc_include_token1] = ACTIONS(229), [aux_sym_preproc_def_token1] = ACTIONS(231), [aux_sym_preproc_if_token1] = ACTIONS(233), - [aux_sym_preproc_if_token2] = ACTIONS(315), + [aux_sym_preproc_if_token2] = ACTIONS(313), [aux_sym_preproc_ifdef_token1] = ACTIONS(237), [aux_sym_preproc_ifdef_token2] = ACTIONS(237), [aux_sym_preproc_else_token1] = ACTIONS(239), @@ -28925,6 +29987,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(269), [anon_sym_continue] = ACTIONS(271), [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -28966,40 +30030,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [23] = { + [22] = { [sym_preproc_include] = STATE(28), [sym_preproc_def] = STATE(28), [sym_preproc_function_def] = STATE(28), [sym_preproc_call] = STATE(28), [sym_preproc_if] = STATE(28), [sym_preproc_ifdef] = STATE(28), - [sym_preproc_else] = STATE(6477), - [sym_preproc_elif] = STATE(6477), + [sym_preproc_else] = STATE(7050), + [sym_preproc_elif] = STATE(7050), [sym_function_definition] = STATE(28), [sym_declaration] = STATE(28), [sym_type_definition] = STATE(28), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(3964), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4215), [sym_linkage_specification] = STATE(28), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(1089), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym_ms_call_modifier] = STATE(1828), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4772), - [sym_array_declarator] = STATE(4825), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym_ms_call_modifier] = STATE(1989), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(5015), + [sym_array_declarator] = STATE(5080), [sym_compound_statement] = STATE(28), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(3090), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3414), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), [sym_attributed_statement] = STATE(28), [sym_labeled_statement] = STATE(28), [sym_expression_statement] = STATE(28), @@ -29013,44 +30077,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(28), [sym_continue_statement] = STATE(28), [sym_goto_statement] = STATE(28), - [sym__expression] = STATE(3579), - [sym_comma_expression] = STATE(6778), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), + [sym__expression] = STATE(3680), + [sym_comma_expression] = STATE(7175), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), [sym__empty_declaration] = STATE(28), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1783), - [sym_dependent_type] = STATE(3139), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1965), + [sym_dependent_type] = STATE(3481), [sym_template_declaration] = STATE(28), [sym_template_instantiation] = STATE(28), - [sym_operator_cast] = STATE(5198), - [sym__constructor_specifiers] = STATE(1783), + [sym_operator_cast] = STATE(5489), + [sym__constructor_specifiers] = STATE(1965), [sym_operator_cast_definition] = STATE(28), [sym_operator_cast_declaration] = STATE(28), [sym_constructor_or_destructor_definition] = STATE(28), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3531), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3608), [sym_namespace_definition] = STATE(28), [sym_namespace_alias_definition] = STATE(28), [sym_using_declaration] = STATE(28), @@ -29062,28 +30126,255 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(28), [sym_throw_statement] = STATE(28), [sym_try_statement] = STATE(28), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4513), - [sym_qualified_identifier] = STATE(2816), - [sym_qualified_type_identifier] = STATE(3276), - [sym_qualified_operator_cast_identifier] = STATE(5198), - [sym_operator_name] = STATE(4825), - [sym_user_defined_literal] = STATE(3428), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4780), + [sym_qualified_identifier] = STATE(2734), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(5489), + [sym_operator_name] = STATE(5080), + [sym_user_defined_literal] = STATE(3435), [aux_sym_translation_unit_repeat1] = STATE(28), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(162), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_operator_cast_definition_repeat1] = STATE(1783), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(290), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_operator_cast_definition_repeat1] = STATE(1965), + [sym_identifier] = ACTIONS(227), + [aux_sym_preproc_include_token1] = ACTIONS(229), + [aux_sym_preproc_def_token1] = ACTIONS(231), + [aux_sym_preproc_if_token1] = ACTIONS(233), + [aux_sym_preproc_if_token2] = ACTIONS(315), + [aux_sym_preproc_ifdef_token1] = ACTIONS(237), + [aux_sym_preproc_ifdef_token2] = ACTIONS(237), + [aux_sym_preproc_else_token1] = ACTIONS(239), + [aux_sym_preproc_elif_token1] = ACTIONS(241), + [sym_preproc_directive] = ACTIONS(243), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_typedef] = ACTIONS(247), + [anon_sym_extern] = ACTIONS(249), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(43), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(253), + [anon_sym_switch] = ACTIONS(255), + [anon_sym_case] = ACTIONS(257), + [anon_sym_default] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_do] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_return] = ACTIONS(267), + [anon_sym_break] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(271), + [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(275), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_try] = ACTIONS(277), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(279), + [anon_sym_namespace] = ACTIONS(281), + [anon_sym_using] = ACTIONS(283), + [anon_sym_static_assert] = ACTIONS(285), + [anon_sym_concept] = ACTIONS(287), + [anon_sym_co_return] = ACTIONS(289), + [anon_sym_co_yield] = ACTIONS(291), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [23] = { + [sym_preproc_include] = STATE(11), + [sym_preproc_def] = STATE(11), + [sym_preproc_function_def] = STATE(11), + [sym_preproc_call] = STATE(11), + [sym_preproc_if] = STATE(11), + [sym_preproc_ifdef] = STATE(11), + [sym_preproc_else] = STATE(6929), + [sym_preproc_elif] = STATE(6929), + [sym_function_definition] = STATE(11), + [sym_declaration] = STATE(11), + [sym_type_definition] = STATE(11), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4215), + [sym_linkage_specification] = STATE(11), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym_ms_call_modifier] = STATE(1989), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(5015), + [sym_array_declarator] = STATE(5080), + [sym_compound_statement] = STATE(11), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3414), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_attributed_statement] = STATE(11), + [sym_labeled_statement] = STATE(11), + [sym_expression_statement] = STATE(11), + [sym_if_statement] = STATE(11), + [sym_switch_statement] = STATE(11), + [sym_case_statement] = STATE(11), + [sym_while_statement] = STATE(11), + [sym_do_statement] = STATE(11), + [sym_for_statement] = STATE(11), + [sym_return_statement] = STATE(11), + [sym_break_statement] = STATE(11), + [sym_continue_statement] = STATE(11), + [sym_goto_statement] = STATE(11), + [sym__expression] = STATE(3680), + [sym_comma_expression] = STATE(7175), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__empty_declaration] = STATE(11), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1965), + [sym_dependent_type] = STATE(3481), + [sym_template_declaration] = STATE(11), + [sym_template_instantiation] = STATE(11), + [sym_operator_cast] = STATE(5489), + [sym__constructor_specifiers] = STATE(1965), + [sym_operator_cast_definition] = STATE(11), + [sym_operator_cast_declaration] = STATE(11), + [sym_constructor_or_destructor_definition] = STATE(11), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3608), + [sym_namespace_definition] = STATE(11), + [sym_namespace_alias_definition] = STATE(11), + [sym_using_declaration] = STATE(11), + [sym_alias_declaration] = STATE(11), + [sym_static_assert_declaration] = STATE(11), + [sym_concept_definition] = STATE(11), + [sym_for_range_loop] = STATE(11), + [sym_co_return_statement] = STATE(11), + [sym_co_yield_statement] = STATE(11), + [sym_throw_statement] = STATE(11), + [sym_try_statement] = STATE(11), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4780), + [sym_qualified_identifier] = STATE(2734), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(5489), + [sym_operator_name] = STATE(5080), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_translation_unit_repeat1] = STATE(11), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(290), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_operator_cast_definition_repeat1] = STATE(1965), [sym_identifier] = ACTIONS(227), [aux_sym_preproc_include_token1] = ACTIONS(229), [aux_sym_preproc_def_token1] = ACTIONS(231), @@ -29150,6 +30441,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(269), [anon_sym_continue] = ACTIONS(271), [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -29192,123 +30485,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(143), }, [24] = { - [sym_preproc_include] = STATE(28), - [sym_preproc_def] = STATE(28), - [sym_preproc_function_def] = STATE(28), - [sym_preproc_call] = STATE(28), - [sym_preproc_if] = STATE(28), - [sym_preproc_ifdef] = STATE(28), - [sym_preproc_else] = STATE(6741), - [sym_preproc_elif] = STATE(6741), - [sym_function_definition] = STATE(28), - [sym_declaration] = STATE(28), - [sym_type_definition] = STATE(28), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(3964), - [sym_linkage_specification] = STATE(28), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(1089), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym_ms_call_modifier] = STATE(1828), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4772), - [sym_array_declarator] = STATE(4825), - [sym_compound_statement] = STATE(28), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(3090), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_attributed_statement] = STATE(28), - [sym_labeled_statement] = STATE(28), - [sym_expression_statement] = STATE(28), - [sym_if_statement] = STATE(28), - [sym_switch_statement] = STATE(28), - [sym_case_statement] = STATE(28), - [sym_while_statement] = STATE(28), - [sym_do_statement] = STATE(28), - [sym_for_statement] = STATE(28), - [sym_return_statement] = STATE(28), - [sym_break_statement] = STATE(28), - [sym_continue_statement] = STATE(28), - [sym_goto_statement] = STATE(28), - [sym__expression] = STATE(3579), - [sym_comma_expression] = STATE(6778), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__empty_declaration] = STATE(28), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1783), - [sym_dependent_type] = STATE(3139), - [sym_template_declaration] = STATE(28), - [sym_template_instantiation] = STATE(28), - [sym_operator_cast] = STATE(5198), - [sym__constructor_specifiers] = STATE(1783), - [sym_operator_cast_definition] = STATE(28), - [sym_operator_cast_declaration] = STATE(28), - [sym_constructor_or_destructor_definition] = STATE(28), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3531), - [sym_namespace_definition] = STATE(28), - [sym_namespace_alias_definition] = STATE(28), - [sym_using_declaration] = STATE(28), - [sym_alias_declaration] = STATE(28), - [sym_static_assert_declaration] = STATE(28), - [sym_concept_definition] = STATE(28), - [sym_for_range_loop] = STATE(28), - [sym_co_return_statement] = STATE(28), - [sym_co_yield_statement] = STATE(28), - [sym_throw_statement] = STATE(28), - [sym_try_statement] = STATE(28), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4513), - [sym_qualified_identifier] = STATE(2816), - [sym_qualified_type_identifier] = STATE(3276), - [sym_qualified_operator_cast_identifier] = STATE(5198), - [sym_operator_name] = STATE(4825), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_translation_unit_repeat1] = STATE(28), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(162), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_operator_cast_definition_repeat1] = STATE(1783), + [sym_preproc_include] = STATE(21), + [sym_preproc_def] = STATE(21), + [sym_preproc_function_def] = STATE(21), + [sym_preproc_call] = STATE(21), + [sym_preproc_if] = STATE(21), + [sym_preproc_ifdef] = STATE(21), + [sym_preproc_else] = STATE(7105), + [sym_preproc_elif] = STATE(7105), + [sym_function_definition] = STATE(21), + [sym_declaration] = STATE(21), + [sym_type_definition] = STATE(21), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4215), + [sym_linkage_specification] = STATE(21), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym_ms_call_modifier] = STATE(1989), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(5015), + [sym_array_declarator] = STATE(5080), + [sym_compound_statement] = STATE(21), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3414), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_attributed_statement] = STATE(21), + [sym_labeled_statement] = STATE(21), + [sym_expression_statement] = STATE(21), + [sym_if_statement] = STATE(21), + [sym_switch_statement] = STATE(21), + [sym_case_statement] = STATE(21), + [sym_while_statement] = STATE(21), + [sym_do_statement] = STATE(21), + [sym_for_statement] = STATE(21), + [sym_return_statement] = STATE(21), + [sym_break_statement] = STATE(21), + [sym_continue_statement] = STATE(21), + [sym_goto_statement] = STATE(21), + [sym__expression] = STATE(3680), + [sym_comma_expression] = STATE(7175), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__empty_declaration] = STATE(21), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1965), + [sym_dependent_type] = STATE(3481), + [sym_template_declaration] = STATE(21), + [sym_template_instantiation] = STATE(21), + [sym_operator_cast] = STATE(5489), + [sym__constructor_specifiers] = STATE(1965), + [sym_operator_cast_definition] = STATE(21), + [sym_operator_cast_declaration] = STATE(21), + [sym_constructor_or_destructor_definition] = STATE(21), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3608), + [sym_namespace_definition] = STATE(21), + [sym_namespace_alias_definition] = STATE(21), + [sym_using_declaration] = STATE(21), + [sym_alias_declaration] = STATE(21), + [sym_static_assert_declaration] = STATE(21), + [sym_concept_definition] = STATE(21), + [sym_for_range_loop] = STATE(21), + [sym_co_return_statement] = STATE(21), + [sym_co_yield_statement] = STATE(21), + [sym_throw_statement] = STATE(21), + [sym_try_statement] = STATE(21), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4780), + [sym_qualified_identifier] = STATE(2734), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(5489), + [sym_operator_name] = STATE(5080), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_translation_unit_repeat1] = STATE(21), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(290), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_operator_cast_definition_repeat1] = STATE(1965), [sym_identifier] = ACTIONS(227), [aux_sym_preproc_include_token1] = ACTIONS(229), [aux_sym_preproc_def_token1] = ACTIONS(231), @@ -29375,6 +30668,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(269), [anon_sym_continue] = ACTIONS(271), [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -29417,123 +30712,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(143), }, [25] = { - [sym_preproc_include] = STATE(22), - [sym_preproc_def] = STATE(22), - [sym_preproc_function_def] = STATE(22), - [sym_preproc_call] = STATE(22), - [sym_preproc_if] = STATE(22), - [sym_preproc_ifdef] = STATE(22), - [sym_preproc_else] = STATE(6853), - [sym_preproc_elif] = STATE(6853), - [sym_function_definition] = STATE(22), - [sym_declaration] = STATE(22), - [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(3964), - [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(1089), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym_ms_call_modifier] = STATE(1828), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4772), - [sym_array_declarator] = STATE(4825), - [sym_compound_statement] = STATE(22), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(3090), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_attributed_statement] = STATE(22), - [sym_labeled_statement] = STATE(22), - [sym_expression_statement] = STATE(22), - [sym_if_statement] = STATE(22), - [sym_switch_statement] = STATE(22), - [sym_case_statement] = STATE(22), - [sym_while_statement] = STATE(22), - [sym_do_statement] = STATE(22), - [sym_for_statement] = STATE(22), - [sym_return_statement] = STATE(22), - [sym_break_statement] = STATE(22), - [sym_continue_statement] = STATE(22), - [sym_goto_statement] = STATE(22), - [sym__expression] = STATE(3579), - [sym_comma_expression] = STATE(6778), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__empty_declaration] = STATE(22), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1783), - [sym_dependent_type] = STATE(3139), - [sym_template_declaration] = STATE(22), - [sym_template_instantiation] = STATE(22), - [sym_operator_cast] = STATE(5198), - [sym__constructor_specifiers] = STATE(1783), - [sym_operator_cast_definition] = STATE(22), - [sym_operator_cast_declaration] = STATE(22), - [sym_constructor_or_destructor_definition] = STATE(22), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3531), - [sym_namespace_definition] = STATE(22), - [sym_namespace_alias_definition] = STATE(22), - [sym_using_declaration] = STATE(22), - [sym_alias_declaration] = STATE(22), - [sym_static_assert_declaration] = STATE(22), - [sym_concept_definition] = STATE(22), - [sym_for_range_loop] = STATE(22), - [sym_co_return_statement] = STATE(22), - [sym_co_yield_statement] = STATE(22), - [sym_throw_statement] = STATE(22), - [sym_try_statement] = STATE(22), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4513), - [sym_qualified_identifier] = STATE(2816), - [sym_qualified_type_identifier] = STATE(3276), - [sym_qualified_operator_cast_identifier] = STATE(5198), - [sym_operator_name] = STATE(4825), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_translation_unit_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(162), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_operator_cast_definition_repeat1] = STATE(1783), + [sym_preproc_include] = STATE(16), + [sym_preproc_def] = STATE(16), + [sym_preproc_function_def] = STATE(16), + [sym_preproc_call] = STATE(16), + [sym_preproc_if] = STATE(16), + [sym_preproc_ifdef] = STATE(16), + [sym_preproc_else] = STATE(7255), + [sym_preproc_elif] = STATE(7255), + [sym_function_definition] = STATE(16), + [sym_declaration] = STATE(16), + [sym_type_definition] = STATE(16), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4215), + [sym_linkage_specification] = STATE(16), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym_ms_call_modifier] = STATE(1989), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(5015), + [sym_array_declarator] = STATE(5080), + [sym_compound_statement] = STATE(16), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3414), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_attributed_statement] = STATE(16), + [sym_labeled_statement] = STATE(16), + [sym_expression_statement] = STATE(16), + [sym_if_statement] = STATE(16), + [sym_switch_statement] = STATE(16), + [sym_case_statement] = STATE(16), + [sym_while_statement] = STATE(16), + [sym_do_statement] = STATE(16), + [sym_for_statement] = STATE(16), + [sym_return_statement] = STATE(16), + [sym_break_statement] = STATE(16), + [sym_continue_statement] = STATE(16), + [sym_goto_statement] = STATE(16), + [sym__expression] = STATE(3680), + [sym_comma_expression] = STATE(7175), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__empty_declaration] = STATE(16), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1965), + [sym_dependent_type] = STATE(3481), + [sym_template_declaration] = STATE(16), + [sym_template_instantiation] = STATE(16), + [sym_operator_cast] = STATE(5489), + [sym__constructor_specifiers] = STATE(1965), + [sym_operator_cast_definition] = STATE(16), + [sym_operator_cast_declaration] = STATE(16), + [sym_constructor_or_destructor_definition] = STATE(16), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3608), + [sym_namespace_definition] = STATE(16), + [sym_namespace_alias_definition] = STATE(16), + [sym_using_declaration] = STATE(16), + [sym_alias_declaration] = STATE(16), + [sym_static_assert_declaration] = STATE(16), + [sym_concept_definition] = STATE(16), + [sym_for_range_loop] = STATE(16), + [sym_co_return_statement] = STATE(16), + [sym_co_yield_statement] = STATE(16), + [sym_throw_statement] = STATE(16), + [sym_try_statement] = STATE(16), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4780), + [sym_qualified_identifier] = STATE(2734), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(5489), + [sym_operator_name] = STATE(5080), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_translation_unit_repeat1] = STATE(16), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(290), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_operator_cast_definition_repeat1] = STATE(1965), [sym_identifier] = ACTIONS(227), [aux_sym_preproc_include_token1] = ACTIONS(229), [aux_sym_preproc_def_token1] = ACTIONS(231), @@ -29600,6 +30895,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(269), [anon_sym_continue] = ACTIONS(271), [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -29642,123 +30939,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(143), }, [26] = { - [sym_preproc_include] = STATE(28), - [sym_preproc_def] = STATE(28), - [sym_preproc_function_def] = STATE(28), - [sym_preproc_call] = STATE(28), - [sym_preproc_if] = STATE(28), - [sym_preproc_ifdef] = STATE(28), - [sym_preproc_else] = STATE(6855), - [sym_preproc_elif] = STATE(6855), - [sym_function_definition] = STATE(28), - [sym_declaration] = STATE(28), - [sym_type_definition] = STATE(28), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(3964), - [sym_linkage_specification] = STATE(28), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(1089), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym_ms_call_modifier] = STATE(1828), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4772), - [sym_array_declarator] = STATE(4825), - [sym_compound_statement] = STATE(28), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(3090), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_attributed_statement] = STATE(28), - [sym_labeled_statement] = STATE(28), - [sym_expression_statement] = STATE(28), - [sym_if_statement] = STATE(28), - [sym_switch_statement] = STATE(28), - [sym_case_statement] = STATE(28), - [sym_while_statement] = STATE(28), - [sym_do_statement] = STATE(28), - [sym_for_statement] = STATE(28), - [sym_return_statement] = STATE(28), - [sym_break_statement] = STATE(28), - [sym_continue_statement] = STATE(28), - [sym_goto_statement] = STATE(28), - [sym__expression] = STATE(3579), - [sym_comma_expression] = STATE(6778), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__empty_declaration] = STATE(28), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1783), - [sym_dependent_type] = STATE(3139), - [sym_template_declaration] = STATE(28), - [sym_template_instantiation] = STATE(28), - [sym_operator_cast] = STATE(5198), - [sym__constructor_specifiers] = STATE(1783), - [sym_operator_cast_definition] = STATE(28), - [sym_operator_cast_declaration] = STATE(28), - [sym_constructor_or_destructor_definition] = STATE(28), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3531), - [sym_namespace_definition] = STATE(28), - [sym_namespace_alias_definition] = STATE(28), - [sym_using_declaration] = STATE(28), - [sym_alias_declaration] = STATE(28), - [sym_static_assert_declaration] = STATE(28), - [sym_concept_definition] = STATE(28), - [sym_for_range_loop] = STATE(28), - [sym_co_return_statement] = STATE(28), - [sym_co_yield_statement] = STATE(28), - [sym_throw_statement] = STATE(28), - [sym_try_statement] = STATE(28), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4513), - [sym_qualified_identifier] = STATE(2816), - [sym_qualified_type_identifier] = STATE(3276), - [sym_qualified_operator_cast_identifier] = STATE(5198), - [sym_operator_name] = STATE(4825), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_translation_unit_repeat1] = STATE(28), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(162), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_operator_cast_definition_repeat1] = STATE(1783), + [sym_preproc_include] = STATE(27), + [sym_preproc_def] = STATE(27), + [sym_preproc_function_def] = STATE(27), + [sym_preproc_call] = STATE(27), + [sym_preproc_if] = STATE(27), + [sym_preproc_ifdef] = STATE(27), + [sym_preproc_else] = STATE(7135), + [sym_preproc_elif] = STATE(7135), + [sym_function_definition] = STATE(27), + [sym_declaration] = STATE(27), + [sym_type_definition] = STATE(27), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4215), + [sym_linkage_specification] = STATE(27), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym_ms_call_modifier] = STATE(1989), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(5015), + [sym_array_declarator] = STATE(5080), + [sym_compound_statement] = STATE(27), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3414), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_attributed_statement] = STATE(27), + [sym_labeled_statement] = STATE(27), + [sym_expression_statement] = STATE(27), + [sym_if_statement] = STATE(27), + [sym_switch_statement] = STATE(27), + [sym_case_statement] = STATE(27), + [sym_while_statement] = STATE(27), + [sym_do_statement] = STATE(27), + [sym_for_statement] = STATE(27), + [sym_return_statement] = STATE(27), + [sym_break_statement] = STATE(27), + [sym_continue_statement] = STATE(27), + [sym_goto_statement] = STATE(27), + [sym__expression] = STATE(3680), + [sym_comma_expression] = STATE(7175), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__empty_declaration] = STATE(27), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1965), + [sym_dependent_type] = STATE(3481), + [sym_template_declaration] = STATE(27), + [sym_template_instantiation] = STATE(27), + [sym_operator_cast] = STATE(5489), + [sym__constructor_specifiers] = STATE(1965), + [sym_operator_cast_definition] = STATE(27), + [sym_operator_cast_declaration] = STATE(27), + [sym_constructor_or_destructor_definition] = STATE(27), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3608), + [sym_namespace_definition] = STATE(27), + [sym_namespace_alias_definition] = STATE(27), + [sym_using_declaration] = STATE(27), + [sym_alias_declaration] = STATE(27), + [sym_static_assert_declaration] = STATE(27), + [sym_concept_definition] = STATE(27), + [sym_for_range_loop] = STATE(27), + [sym_co_return_statement] = STATE(27), + [sym_co_yield_statement] = STATE(27), + [sym_throw_statement] = STATE(27), + [sym_try_statement] = STATE(27), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4780), + [sym_qualified_identifier] = STATE(2734), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(5489), + [sym_operator_name] = STATE(5080), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_translation_unit_repeat1] = STATE(27), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(290), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_operator_cast_definition_repeat1] = STATE(1965), [sym_identifier] = ACTIONS(227), [aux_sym_preproc_include_token1] = ACTIONS(229), [aux_sym_preproc_def_token1] = ACTIONS(231), @@ -29825,6 +31122,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(269), [anon_sym_continue] = ACTIONS(271), [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -29867,123 +31166,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(143), }, [27] = { - [sym_preproc_include] = STATE(10), - [sym_preproc_def] = STATE(10), - [sym_preproc_function_def] = STATE(10), - [sym_preproc_call] = STATE(10), - [sym_preproc_if] = STATE(10), - [sym_preproc_ifdef] = STATE(10), - [sym_preproc_else] = STATE(6634), - [sym_preproc_elif] = STATE(6634), - [sym_function_definition] = STATE(10), - [sym_declaration] = STATE(10), - [sym_type_definition] = STATE(10), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(3964), - [sym_linkage_specification] = STATE(10), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(1089), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym_ms_call_modifier] = STATE(1828), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4772), - [sym_array_declarator] = STATE(4825), - [sym_compound_statement] = STATE(10), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(3090), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_attributed_statement] = STATE(10), - [sym_labeled_statement] = STATE(10), - [sym_expression_statement] = STATE(10), - [sym_if_statement] = STATE(10), - [sym_switch_statement] = STATE(10), - [sym_case_statement] = STATE(10), - [sym_while_statement] = STATE(10), - [sym_do_statement] = STATE(10), - [sym_for_statement] = STATE(10), - [sym_return_statement] = STATE(10), - [sym_break_statement] = STATE(10), - [sym_continue_statement] = STATE(10), - [sym_goto_statement] = STATE(10), - [sym__expression] = STATE(3579), - [sym_comma_expression] = STATE(6778), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__empty_declaration] = STATE(10), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1783), - [sym_dependent_type] = STATE(3139), - [sym_template_declaration] = STATE(10), - [sym_template_instantiation] = STATE(10), - [sym_operator_cast] = STATE(5198), - [sym__constructor_specifiers] = STATE(1783), - [sym_operator_cast_definition] = STATE(10), - [sym_operator_cast_declaration] = STATE(10), - [sym_constructor_or_destructor_definition] = STATE(10), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3531), - [sym_namespace_definition] = STATE(10), - [sym_namespace_alias_definition] = STATE(10), - [sym_using_declaration] = STATE(10), - [sym_alias_declaration] = STATE(10), - [sym_static_assert_declaration] = STATE(10), - [sym_concept_definition] = STATE(10), - [sym_for_range_loop] = STATE(10), - [sym_co_return_statement] = STATE(10), - [sym_co_yield_statement] = STATE(10), - [sym_throw_statement] = STATE(10), - [sym_try_statement] = STATE(10), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4513), - [sym_qualified_identifier] = STATE(2816), - [sym_qualified_type_identifier] = STATE(3276), - [sym_qualified_operator_cast_identifier] = STATE(5198), - [sym_operator_name] = STATE(4825), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_translation_unit_repeat1] = STATE(10), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(162), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_operator_cast_definition_repeat1] = STATE(1783), + [sym_preproc_include] = STATE(28), + [sym_preproc_def] = STATE(28), + [sym_preproc_function_def] = STATE(28), + [sym_preproc_call] = STATE(28), + [sym_preproc_if] = STATE(28), + [sym_preproc_ifdef] = STATE(28), + [sym_preproc_else] = STATE(7103), + [sym_preproc_elif] = STATE(7103), + [sym_function_definition] = STATE(28), + [sym_declaration] = STATE(28), + [sym_type_definition] = STATE(28), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4215), + [sym_linkage_specification] = STATE(28), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym_ms_call_modifier] = STATE(1989), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(5015), + [sym_array_declarator] = STATE(5080), + [sym_compound_statement] = STATE(28), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3414), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_attributed_statement] = STATE(28), + [sym_labeled_statement] = STATE(28), + [sym_expression_statement] = STATE(28), + [sym_if_statement] = STATE(28), + [sym_switch_statement] = STATE(28), + [sym_case_statement] = STATE(28), + [sym_while_statement] = STATE(28), + [sym_do_statement] = STATE(28), + [sym_for_statement] = STATE(28), + [sym_return_statement] = STATE(28), + [sym_break_statement] = STATE(28), + [sym_continue_statement] = STATE(28), + [sym_goto_statement] = STATE(28), + [sym__expression] = STATE(3680), + [sym_comma_expression] = STATE(7175), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__empty_declaration] = STATE(28), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1965), + [sym_dependent_type] = STATE(3481), + [sym_template_declaration] = STATE(28), + [sym_template_instantiation] = STATE(28), + [sym_operator_cast] = STATE(5489), + [sym__constructor_specifiers] = STATE(1965), + [sym_operator_cast_definition] = STATE(28), + [sym_operator_cast_declaration] = STATE(28), + [sym_constructor_or_destructor_definition] = STATE(28), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3608), + [sym_namespace_definition] = STATE(28), + [sym_namespace_alias_definition] = STATE(28), + [sym_using_declaration] = STATE(28), + [sym_alias_declaration] = STATE(28), + [sym_static_assert_declaration] = STATE(28), + [sym_concept_definition] = STATE(28), + [sym_for_range_loop] = STATE(28), + [sym_co_return_statement] = STATE(28), + [sym_co_yield_statement] = STATE(28), + [sym_throw_statement] = STATE(28), + [sym_try_statement] = STATE(28), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4780), + [sym_qualified_identifier] = STATE(2734), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(5489), + [sym_operator_name] = STATE(5080), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_translation_unit_repeat1] = STATE(28), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(290), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_operator_cast_definition_repeat1] = STATE(1965), [sym_identifier] = ACTIONS(227), [aux_sym_preproc_include_token1] = ACTIONS(229), [aux_sym_preproc_def_token1] = ACTIONS(231), @@ -30050,6 +31349,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(269), [anon_sym_continue] = ACTIONS(271), [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -30101,28 +31402,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(28), [sym_declaration] = STATE(28), [sym_type_definition] = STATE(28), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(3964), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4215), [sym_linkage_specification] = STATE(28), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(1089), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym_ms_call_modifier] = STATE(1828), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4772), - [sym_array_declarator] = STATE(4825), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym_ms_call_modifier] = STATE(1989), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(5015), + [sym_array_declarator] = STATE(5080), [sym_compound_statement] = STATE(28), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(3090), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3414), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), [sym_attributed_statement] = STATE(28), [sym_labeled_statement] = STATE(28), [sym_expression_statement] = STATE(28), @@ -30136,44 +31437,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(28), [sym_continue_statement] = STATE(28), [sym_goto_statement] = STATE(28), - [sym__expression] = STATE(3579), - [sym_comma_expression] = STATE(6778), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), + [sym__expression] = STATE(3680), + [sym_comma_expression] = STATE(7175), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), [sym__empty_declaration] = STATE(28), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1783), - [sym_dependent_type] = STATE(3139), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1965), + [sym_dependent_type] = STATE(3481), [sym_template_declaration] = STATE(28), [sym_template_instantiation] = STATE(28), - [sym_operator_cast] = STATE(5198), - [sym__constructor_specifiers] = STATE(1783), + [sym_operator_cast] = STATE(5489), + [sym__constructor_specifiers] = STATE(1965), [sym_operator_cast_definition] = STATE(28), [sym_operator_cast_declaration] = STATE(28), [sym_constructor_or_destructor_definition] = STATE(28), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3531), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3608), [sym_namespace_definition] = STATE(28), [sym_namespace_alias_definition] = STATE(28), [sym_using_declaration] = STATE(28), @@ -30185,28 +31486,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(28), [sym_throw_statement] = STATE(28), [sym_try_statement] = STATE(28), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4513), - [sym_qualified_identifier] = STATE(2816), - [sym_qualified_type_identifier] = STATE(3276), - [sym_qualified_operator_cast_identifier] = STATE(5198), - [sym_operator_name] = STATE(4825), - [sym_user_defined_literal] = STATE(3428), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4780), + [sym_qualified_identifier] = STATE(2734), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(5489), + [sym_operator_name] = STATE(5080), + [sym_user_defined_literal] = STATE(3435), [aux_sym_translation_unit_repeat1] = STATE(28), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(162), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_operator_cast_definition_repeat1] = STATE(1783), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(290), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_operator_cast_definition_repeat1] = STATE(1965), [sym_identifier] = ACTIONS(327), [aux_sym_preproc_include_token1] = ACTIONS(330), [aux_sym_preproc_def_token1] = ACTIONS(333), @@ -30273,6 +31574,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(449), [anon_sym_continue] = ACTIONS(452), [anon_sym_goto] = ACTIONS(455), + [anon_sym_not] = ACTIONS(356), + [anon_sym_compl] = ACTIONS(356), [anon_sym_DASH_DASH] = ACTIONS(458), [anon_sym_PLUS_PLUS] = ACTIONS(458), [anon_sym_sizeof] = ACTIONS(461), @@ -30315,121 +31618,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(533), }, [29] = { - [sym_preproc_include] = STATE(35), - [sym_preproc_def] = STATE(35), - [sym_preproc_function_def] = STATE(35), - [sym_preproc_call] = STATE(35), - [sym_preproc_if] = STATE(35), - [sym_preproc_ifdef] = STATE(35), - [sym_function_definition] = STATE(35), - [sym_declaration] = STATE(35), - [sym_type_definition] = STATE(35), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(3967), - [sym_linkage_specification] = STATE(35), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(1089), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym_ms_call_modifier] = STATE(1829), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4789), - [sym_array_declarator] = STATE(4825), - [sym_compound_statement] = STATE(35), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(2975), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_attributed_statement] = STATE(35), - [sym_labeled_statement] = STATE(35), - [sym_expression_statement] = STATE(35), - [sym_if_statement] = STATE(35), - [sym_switch_statement] = STATE(35), - [sym_case_statement] = STATE(35), - [sym_while_statement] = STATE(35), - [sym_do_statement] = STATE(35), - [sym_for_statement] = STATE(35), - [sym_return_statement] = STATE(35), - [sym_break_statement] = STATE(35), - [sym_continue_statement] = STATE(35), - [sym_goto_statement] = STATE(35), - [sym__expression] = STATE(3645), - [sym_comma_expression] = STATE(6499), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__empty_declaration] = STATE(35), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1790), - [sym_dependent_type] = STATE(3139), - [sym_template_declaration] = STATE(35), - [sym_template_instantiation] = STATE(35), - [sym_operator_cast] = STATE(5178), - [sym__constructor_specifiers] = STATE(1790), - [sym_operator_cast_definition] = STATE(35), - [sym_operator_cast_declaration] = STATE(35), - [sym_constructor_or_destructor_definition] = STATE(35), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3531), - [sym_namespace_definition] = STATE(35), - [sym_namespace_alias_definition] = STATE(35), - [sym_using_declaration] = STATE(35), - [sym_alias_declaration] = STATE(35), - [sym_static_assert_declaration] = STATE(35), - [sym_concept_definition] = STATE(35), - [sym_for_range_loop] = STATE(35), - [sym_co_return_statement] = STATE(35), - [sym_co_yield_statement] = STATE(35), - [sym_throw_statement] = STATE(35), - [sym_try_statement] = STATE(35), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4513), - [sym_qualified_identifier] = STATE(2816), - [sym_qualified_type_identifier] = STATE(3276), - [sym_qualified_operator_cast_identifier] = STATE(5178), - [sym_operator_name] = STATE(4825), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_translation_unit_repeat1] = STATE(35), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_operator_cast_definition_repeat1] = STATE(1790), + [sym_preproc_include] = STATE(52), + [sym_preproc_def] = STATE(52), + [sym_preproc_function_def] = STATE(52), + [sym_preproc_call] = STATE(52), + [sym_preproc_if] = STATE(52), + [sym_preproc_ifdef] = STATE(52), + [sym_function_definition] = STATE(52), + [sym_declaration] = STATE(52), + [sym_type_definition] = STATE(52), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4216), + [sym_linkage_specification] = STATE(52), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym_ms_call_modifier] = STATE(2011), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(5018), + [sym_array_declarator] = STATE(5080), + [sym_compound_statement] = STATE(52), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3372), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_attributed_statement] = STATE(52), + [sym_labeled_statement] = STATE(52), + [sym_expression_statement] = STATE(52), + [sym_if_statement] = STATE(52), + [sym_switch_statement] = STATE(52), + [sym_case_statement] = STATE(52), + [sym_while_statement] = STATE(52), + [sym_do_statement] = STATE(52), + [sym_for_statement] = STATE(52), + [sym_return_statement] = STATE(52), + [sym_break_statement] = STATE(52), + [sym_continue_statement] = STATE(52), + [sym_goto_statement] = STATE(52), + [sym__expression] = STATE(3704), + [sym_comma_expression] = STATE(6857), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__empty_declaration] = STATE(52), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1974), + [sym_dependent_type] = STATE(3481), + [sym_template_declaration] = STATE(52), + [sym_template_instantiation] = STATE(52), + [sym_operator_cast] = STATE(5456), + [sym__constructor_specifiers] = STATE(1974), + [sym_operator_cast_definition] = STATE(52), + [sym_operator_cast_declaration] = STATE(52), + [sym_constructor_or_destructor_definition] = STATE(52), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3608), + [sym_namespace_definition] = STATE(52), + [sym_namespace_alias_definition] = STATE(52), + [sym_using_declaration] = STATE(52), + [sym_alias_declaration] = STATE(52), + [sym_static_assert_declaration] = STATE(52), + [sym_concept_definition] = STATE(52), + [sym_for_range_loop] = STATE(52), + [sym_co_return_statement] = STATE(52), + [sym_co_yield_statement] = STATE(52), + [sym_throw_statement] = STATE(52), + [sym_try_statement] = STATE(52), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4780), + [sym_qualified_identifier] = STATE(2734), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(5456), + [sym_operator_name] = STATE(5080), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_translation_unit_repeat1] = STATE(52), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_operator_cast_definition_repeat1] = STATE(1974), [sym_identifier] = ACTIONS(145), [aux_sym_preproc_include_token1] = ACTIONS(147), [aux_sym_preproc_def_token1] = ACTIONS(149), @@ -30494,6 +31797,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(187), [anon_sym_continue] = ACTIONS(189), [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -30536,121 +31841,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(143), }, [30] = { - [sym_preproc_include] = STATE(45), - [sym_preproc_def] = STATE(45), - [sym_preproc_function_def] = STATE(45), - [sym_preproc_call] = STATE(45), - [sym_preproc_if] = STATE(45), - [sym_preproc_ifdef] = STATE(45), - [sym_function_definition] = STATE(45), - [sym_declaration] = STATE(45), - [sym_type_definition] = STATE(45), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(3967), - [sym_linkage_specification] = STATE(45), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(1089), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym_ms_call_modifier] = STATE(1829), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4789), - [sym_array_declarator] = STATE(4825), - [sym_compound_statement] = STATE(45), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(2975), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_attributed_statement] = STATE(45), - [sym_labeled_statement] = STATE(45), - [sym_expression_statement] = STATE(45), - [sym_if_statement] = STATE(45), - [sym_switch_statement] = STATE(45), - [sym_case_statement] = STATE(45), - [sym_while_statement] = STATE(45), - [sym_do_statement] = STATE(45), - [sym_for_statement] = STATE(45), - [sym_return_statement] = STATE(45), - [sym_break_statement] = STATE(45), - [sym_continue_statement] = STATE(45), - [sym_goto_statement] = STATE(45), - [sym__expression] = STATE(3645), - [sym_comma_expression] = STATE(6499), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__empty_declaration] = STATE(45), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1790), - [sym_dependent_type] = STATE(3139), - [sym_template_declaration] = STATE(45), - [sym_template_instantiation] = STATE(45), - [sym_operator_cast] = STATE(5178), - [sym__constructor_specifiers] = STATE(1790), - [sym_operator_cast_definition] = STATE(45), - [sym_operator_cast_declaration] = STATE(45), - [sym_constructor_or_destructor_definition] = STATE(45), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3531), - [sym_namespace_definition] = STATE(45), - [sym_namespace_alias_definition] = STATE(45), - [sym_using_declaration] = STATE(45), - [sym_alias_declaration] = STATE(45), - [sym_static_assert_declaration] = STATE(45), - [sym_concept_definition] = STATE(45), - [sym_for_range_loop] = STATE(45), - [sym_co_return_statement] = STATE(45), - [sym_co_yield_statement] = STATE(45), - [sym_throw_statement] = STATE(45), - [sym_try_statement] = STATE(45), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4513), - [sym_qualified_identifier] = STATE(2816), - [sym_qualified_type_identifier] = STATE(3276), - [sym_qualified_operator_cast_identifier] = STATE(5178), - [sym_operator_name] = STATE(4825), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_translation_unit_repeat1] = STATE(45), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_operator_cast_definition_repeat1] = STATE(1790), + [sym_preproc_include] = STATE(69), + [sym_preproc_def] = STATE(69), + [sym_preproc_function_def] = STATE(69), + [sym_preproc_call] = STATE(69), + [sym_preproc_if] = STATE(69), + [sym_preproc_ifdef] = STATE(69), + [sym_function_definition] = STATE(69), + [sym_declaration] = STATE(69), + [sym_type_definition] = STATE(69), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4216), + [sym_linkage_specification] = STATE(69), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym_ms_call_modifier] = STATE(2011), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(5018), + [sym_array_declarator] = STATE(5080), + [sym_compound_statement] = STATE(69), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3372), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_attributed_statement] = STATE(69), + [sym_labeled_statement] = STATE(69), + [sym_expression_statement] = STATE(69), + [sym_if_statement] = STATE(69), + [sym_switch_statement] = STATE(69), + [sym_case_statement] = STATE(69), + [sym_while_statement] = STATE(69), + [sym_do_statement] = STATE(69), + [sym_for_statement] = STATE(69), + [sym_return_statement] = STATE(69), + [sym_break_statement] = STATE(69), + [sym_continue_statement] = STATE(69), + [sym_goto_statement] = STATE(69), + [sym__expression] = STATE(3704), + [sym_comma_expression] = STATE(6857), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__empty_declaration] = STATE(69), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1974), + [sym_dependent_type] = STATE(3481), + [sym_template_declaration] = STATE(69), + [sym_template_instantiation] = STATE(69), + [sym_operator_cast] = STATE(5456), + [sym__constructor_specifiers] = STATE(1974), + [sym_operator_cast_definition] = STATE(69), + [sym_operator_cast_declaration] = STATE(69), + [sym_constructor_or_destructor_definition] = STATE(69), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3608), + [sym_namespace_definition] = STATE(69), + [sym_namespace_alias_definition] = STATE(69), + [sym_using_declaration] = STATE(69), + [sym_alias_declaration] = STATE(69), + [sym_static_assert_declaration] = STATE(69), + [sym_concept_definition] = STATE(69), + [sym_for_range_loop] = STATE(69), + [sym_co_return_statement] = STATE(69), + [sym_co_yield_statement] = STATE(69), + [sym_throw_statement] = STATE(69), + [sym_try_statement] = STATE(69), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4780), + [sym_qualified_identifier] = STATE(2734), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(5456), + [sym_operator_name] = STATE(5080), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_translation_unit_repeat1] = STATE(69), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_operator_cast_definition_repeat1] = STATE(1974), [sym_identifier] = ACTIONS(145), [aux_sym_preproc_include_token1] = ACTIONS(147), [aux_sym_preproc_def_token1] = ACTIONS(149), @@ -30715,6 +32020,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(187), [anon_sym_continue] = ACTIONS(189), [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -30757,121 +32064,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(143), }, [31] = { - [sym_preproc_include] = STATE(43), - [sym_preproc_def] = STATE(43), - [sym_preproc_function_def] = STATE(43), - [sym_preproc_call] = STATE(43), - [sym_preproc_if] = STATE(43), - [sym_preproc_ifdef] = STATE(43), - [sym_function_definition] = STATE(43), - [sym_declaration] = STATE(43), - [sym_type_definition] = STATE(43), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(3967), - [sym_linkage_specification] = STATE(43), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(1089), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym_ms_call_modifier] = STATE(1829), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4789), - [sym_array_declarator] = STATE(4825), - [sym_compound_statement] = STATE(43), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(2975), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_attributed_statement] = STATE(43), - [sym_labeled_statement] = STATE(43), - [sym_expression_statement] = STATE(43), - [sym_if_statement] = STATE(43), - [sym_switch_statement] = STATE(43), - [sym_case_statement] = STATE(43), - [sym_while_statement] = STATE(43), - [sym_do_statement] = STATE(43), - [sym_for_statement] = STATE(43), - [sym_return_statement] = STATE(43), - [sym_break_statement] = STATE(43), - [sym_continue_statement] = STATE(43), - [sym_goto_statement] = STATE(43), - [sym__expression] = STATE(3645), - [sym_comma_expression] = STATE(6499), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__empty_declaration] = STATE(43), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1790), - [sym_dependent_type] = STATE(3139), - [sym_template_declaration] = STATE(43), - [sym_template_instantiation] = STATE(43), - [sym_operator_cast] = STATE(5178), - [sym__constructor_specifiers] = STATE(1790), - [sym_operator_cast_definition] = STATE(43), - [sym_operator_cast_declaration] = STATE(43), - [sym_constructor_or_destructor_definition] = STATE(43), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3531), - [sym_namespace_definition] = STATE(43), - [sym_namespace_alias_definition] = STATE(43), - [sym_using_declaration] = STATE(43), - [sym_alias_declaration] = STATE(43), - [sym_static_assert_declaration] = STATE(43), - [sym_concept_definition] = STATE(43), - [sym_for_range_loop] = STATE(43), - [sym_co_return_statement] = STATE(43), - [sym_co_yield_statement] = STATE(43), - [sym_throw_statement] = STATE(43), - [sym_try_statement] = STATE(43), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4513), - [sym_qualified_identifier] = STATE(2816), - [sym_qualified_type_identifier] = STATE(3276), - [sym_qualified_operator_cast_identifier] = STATE(5178), - [sym_operator_name] = STATE(4825), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_translation_unit_repeat1] = STATE(43), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_operator_cast_definition_repeat1] = STATE(1790), + [sym_preproc_include] = STATE(32), + [sym_preproc_def] = STATE(32), + [sym_preproc_function_def] = STATE(32), + [sym_preproc_call] = STATE(32), + [sym_preproc_if] = STATE(32), + [sym_preproc_ifdef] = STATE(32), + [sym_function_definition] = STATE(32), + [sym_declaration] = STATE(32), + [sym_type_definition] = STATE(32), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4216), + [sym_linkage_specification] = STATE(32), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym_ms_call_modifier] = STATE(2011), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(5018), + [sym_array_declarator] = STATE(5080), + [sym_compound_statement] = STATE(32), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3372), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_attributed_statement] = STATE(32), + [sym_labeled_statement] = STATE(32), + [sym_expression_statement] = STATE(32), + [sym_if_statement] = STATE(32), + [sym_switch_statement] = STATE(32), + [sym_case_statement] = STATE(32), + [sym_while_statement] = STATE(32), + [sym_do_statement] = STATE(32), + [sym_for_statement] = STATE(32), + [sym_return_statement] = STATE(32), + [sym_break_statement] = STATE(32), + [sym_continue_statement] = STATE(32), + [sym_goto_statement] = STATE(32), + [sym__expression] = STATE(3704), + [sym_comma_expression] = STATE(6857), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__empty_declaration] = STATE(32), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1974), + [sym_dependent_type] = STATE(3481), + [sym_template_declaration] = STATE(32), + [sym_template_instantiation] = STATE(32), + [sym_operator_cast] = STATE(5456), + [sym__constructor_specifiers] = STATE(1974), + [sym_operator_cast_definition] = STATE(32), + [sym_operator_cast_declaration] = STATE(32), + [sym_constructor_or_destructor_definition] = STATE(32), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3608), + [sym_namespace_definition] = STATE(32), + [sym_namespace_alias_definition] = STATE(32), + [sym_using_declaration] = STATE(32), + [sym_alias_declaration] = STATE(32), + [sym_static_assert_declaration] = STATE(32), + [sym_concept_definition] = STATE(32), + [sym_for_range_loop] = STATE(32), + [sym_co_return_statement] = STATE(32), + [sym_co_yield_statement] = STATE(32), + [sym_throw_statement] = STATE(32), + [sym_try_statement] = STATE(32), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4780), + [sym_qualified_identifier] = STATE(2734), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(5456), + [sym_operator_name] = STATE(5080), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_translation_unit_repeat1] = STATE(32), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_operator_cast_definition_repeat1] = STATE(1974), [sym_identifier] = ACTIONS(145), [aux_sym_preproc_include_token1] = ACTIONS(147), [aux_sym_preproc_def_token1] = ACTIONS(149), @@ -30936,6 +32243,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(187), [anon_sym_continue] = ACTIONS(189), [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -30978,121 +32287,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(143), }, [32] = { - [sym_preproc_include] = STATE(42), - [sym_preproc_def] = STATE(42), - [sym_preproc_function_def] = STATE(42), - [sym_preproc_call] = STATE(42), - [sym_preproc_if] = STATE(42), - [sym_preproc_ifdef] = STATE(42), - [sym_function_definition] = STATE(42), - [sym_declaration] = STATE(42), - [sym_type_definition] = STATE(42), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(3967), - [sym_linkage_specification] = STATE(42), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(1089), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym_ms_call_modifier] = STATE(1829), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4789), - [sym_array_declarator] = STATE(4825), - [sym_compound_statement] = STATE(42), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(2975), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_attributed_statement] = STATE(42), - [sym_labeled_statement] = STATE(42), - [sym_expression_statement] = STATE(42), - [sym_if_statement] = STATE(42), - [sym_switch_statement] = STATE(42), - [sym_case_statement] = STATE(42), - [sym_while_statement] = STATE(42), - [sym_do_statement] = STATE(42), - [sym_for_statement] = STATE(42), - [sym_return_statement] = STATE(42), - [sym_break_statement] = STATE(42), - [sym_continue_statement] = STATE(42), - [sym_goto_statement] = STATE(42), - [sym__expression] = STATE(3645), - [sym_comma_expression] = STATE(6499), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__empty_declaration] = STATE(42), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1790), - [sym_dependent_type] = STATE(3139), - [sym_template_declaration] = STATE(42), - [sym_template_instantiation] = STATE(42), - [sym_operator_cast] = STATE(5178), - [sym__constructor_specifiers] = STATE(1790), - [sym_operator_cast_definition] = STATE(42), - [sym_operator_cast_declaration] = STATE(42), - [sym_constructor_or_destructor_definition] = STATE(42), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3531), - [sym_namespace_definition] = STATE(42), - [sym_namespace_alias_definition] = STATE(42), - [sym_using_declaration] = STATE(42), - [sym_alias_declaration] = STATE(42), - [sym_static_assert_declaration] = STATE(42), - [sym_concept_definition] = STATE(42), - [sym_for_range_loop] = STATE(42), - [sym_co_return_statement] = STATE(42), - [sym_co_yield_statement] = STATE(42), - [sym_throw_statement] = STATE(42), - [sym_try_statement] = STATE(42), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4513), - [sym_qualified_identifier] = STATE(2816), - [sym_qualified_type_identifier] = STATE(3276), - [sym_qualified_operator_cast_identifier] = STATE(5178), - [sym_operator_name] = STATE(4825), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_translation_unit_repeat1] = STATE(42), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_operator_cast_definition_repeat1] = STATE(1790), + [sym_preproc_include] = STATE(52), + [sym_preproc_def] = STATE(52), + [sym_preproc_function_def] = STATE(52), + [sym_preproc_call] = STATE(52), + [sym_preproc_if] = STATE(52), + [sym_preproc_ifdef] = STATE(52), + [sym_function_definition] = STATE(52), + [sym_declaration] = STATE(52), + [sym_type_definition] = STATE(52), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4216), + [sym_linkage_specification] = STATE(52), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym_ms_call_modifier] = STATE(2011), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(5018), + [sym_array_declarator] = STATE(5080), + [sym_compound_statement] = STATE(52), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3372), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_attributed_statement] = STATE(52), + [sym_labeled_statement] = STATE(52), + [sym_expression_statement] = STATE(52), + [sym_if_statement] = STATE(52), + [sym_switch_statement] = STATE(52), + [sym_case_statement] = STATE(52), + [sym_while_statement] = STATE(52), + [sym_do_statement] = STATE(52), + [sym_for_statement] = STATE(52), + [sym_return_statement] = STATE(52), + [sym_break_statement] = STATE(52), + [sym_continue_statement] = STATE(52), + [sym_goto_statement] = STATE(52), + [sym__expression] = STATE(3704), + [sym_comma_expression] = STATE(6857), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__empty_declaration] = STATE(52), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1974), + [sym_dependent_type] = STATE(3481), + [sym_template_declaration] = STATE(52), + [sym_template_instantiation] = STATE(52), + [sym_operator_cast] = STATE(5456), + [sym__constructor_specifiers] = STATE(1974), + [sym_operator_cast_definition] = STATE(52), + [sym_operator_cast_declaration] = STATE(52), + [sym_constructor_or_destructor_definition] = STATE(52), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3608), + [sym_namespace_definition] = STATE(52), + [sym_namespace_alias_definition] = STATE(52), + [sym_using_declaration] = STATE(52), + [sym_alias_declaration] = STATE(52), + [sym_static_assert_declaration] = STATE(52), + [sym_concept_definition] = STATE(52), + [sym_for_range_loop] = STATE(52), + [sym_co_return_statement] = STATE(52), + [sym_co_yield_statement] = STATE(52), + [sym_throw_statement] = STATE(52), + [sym_try_statement] = STATE(52), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4780), + [sym_qualified_identifier] = STATE(2734), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(5456), + [sym_operator_name] = STATE(5080), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_translation_unit_repeat1] = STATE(52), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_operator_cast_definition_repeat1] = STATE(1974), [sym_identifier] = ACTIONS(145), [aux_sym_preproc_include_token1] = ACTIONS(147), [aux_sym_preproc_def_token1] = ACTIONS(149), @@ -31157,6 +32466,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(187), [anon_sym_continue] = ACTIONS(189), [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -31199,128 +32510,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(143), }, [33] = { - [sym_preproc_include] = STATE(70), - [sym_preproc_def] = STATE(70), - [sym_preproc_function_def] = STATE(70), - [sym_preproc_call] = STATE(70), - [sym_preproc_if] = STATE(70), - [sym_preproc_ifdef] = STATE(70), - [sym_function_definition] = STATE(70), - [sym_declaration] = STATE(70), - [sym_type_definition] = STATE(70), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(3967), - [sym_linkage_specification] = STATE(70), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(1089), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym_ms_call_modifier] = STATE(1829), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4789), - [sym_array_declarator] = STATE(4825), - [sym_compound_statement] = STATE(70), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(2975), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_attributed_statement] = STATE(70), - [sym_labeled_statement] = STATE(70), - [sym_expression_statement] = STATE(70), - [sym_if_statement] = STATE(70), - [sym_switch_statement] = STATE(70), - [sym_case_statement] = STATE(70), - [sym_while_statement] = STATE(70), - [sym_do_statement] = STATE(70), - [sym_for_statement] = STATE(70), - [sym_return_statement] = STATE(70), - [sym_break_statement] = STATE(70), - [sym_continue_statement] = STATE(70), - [sym_goto_statement] = STATE(70), - [sym__expression] = STATE(3645), - [sym_comma_expression] = STATE(6499), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__empty_declaration] = STATE(70), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1790), - [sym_dependent_type] = STATE(3139), - [sym_template_declaration] = STATE(70), - [sym_template_instantiation] = STATE(70), - [sym_operator_cast] = STATE(5178), - [sym__constructor_specifiers] = STATE(1790), - [sym_operator_cast_definition] = STATE(70), - [sym_operator_cast_declaration] = STATE(70), - [sym_constructor_or_destructor_definition] = STATE(70), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3531), - [sym_namespace_definition] = STATE(70), - [sym_namespace_alias_definition] = STATE(70), - [sym_using_declaration] = STATE(70), - [sym_alias_declaration] = STATE(70), - [sym_static_assert_declaration] = STATE(70), - [sym_concept_definition] = STATE(70), - [sym_for_range_loop] = STATE(70), - [sym_co_return_statement] = STATE(70), - [sym_co_yield_statement] = STATE(70), - [sym_throw_statement] = STATE(70), - [sym_try_statement] = STATE(70), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4513), - [sym_qualified_identifier] = STATE(2816), - [sym_qualified_type_identifier] = STATE(3276), - [sym_qualified_operator_cast_identifier] = STATE(5178), - [sym_operator_name] = STATE(4825), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_translation_unit_repeat1] = STATE(70), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_operator_cast_definition_repeat1] = STATE(1790), - [sym_identifier] = ACTIONS(145), - [aux_sym_preproc_include_token1] = ACTIONS(147), - [aux_sym_preproc_def_token1] = ACTIONS(149), - [aux_sym_preproc_if_token1] = ACTIONS(153), - [aux_sym_preproc_ifdef_token1] = ACTIONS(155), - [aux_sym_preproc_ifdef_token2] = ACTIONS(155), - [sym_preproc_directive] = ACTIONS(157), + [sym_preproc_include] = STATE(34), + [sym_preproc_def] = STATE(34), + [sym_preproc_function_def] = STATE(34), + [sym_preproc_call] = STATE(34), + [sym_preproc_if] = STATE(34), + [sym_preproc_ifdef] = STATE(34), + [sym_function_definition] = STATE(34), + [sym_declaration] = STATE(34), + [sym_type_definition] = STATE(34), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4230), + [sym_linkage_specification] = STATE(34), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym_ms_call_modifier] = STATE(1995), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(5012), + [sym_array_declarator] = STATE(5080), + [sym_compound_statement] = STATE(34), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3413), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_attributed_statement] = STATE(34), + [sym_labeled_statement] = STATE(34), + [sym_expression_statement] = STATE(34), + [sym_if_statement] = STATE(34), + [sym_switch_statement] = STATE(34), + [sym_case_statement] = STATE(34), + [sym_while_statement] = STATE(34), + [sym_do_statement] = STATE(34), + [sym_for_statement] = STATE(34), + [sym_return_statement] = STATE(34), + [sym_break_statement] = STATE(34), + [sym_continue_statement] = STATE(34), + [sym_goto_statement] = STATE(34), + [sym__expression] = STATE(3763), + [sym_comma_expression] = STATE(6972), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__empty_declaration] = STATE(34), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1954), + [sym_dependent_type] = STATE(3481), + [sym_template_declaration] = STATE(34), + [sym_template_instantiation] = STATE(34), + [sym_operator_cast] = STATE(5474), + [sym__constructor_specifiers] = STATE(1954), + [sym_operator_cast_definition] = STATE(34), + [sym_operator_cast_declaration] = STATE(34), + [sym_constructor_or_destructor_definition] = STATE(34), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3608), + [sym_namespace_definition] = STATE(34), + [sym_namespace_alias_definition] = STATE(34), + [sym_using_declaration] = STATE(34), + [sym_alias_declaration] = STATE(34), + [sym_static_assert_declaration] = STATE(34), + [sym_concept_definition] = STATE(34), + [sym_for_range_loop] = STATE(34), + [sym_co_return_statement] = STATE(34), + [sym_co_yield_statement] = STATE(34), + [sym_throw_statement] = STATE(34), + [sym_try_statement] = STATE(34), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4780), + [sym_qualified_identifier] = STATE(2734), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(5474), + [sym_operator_name] = STATE(5080), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_translation_unit_repeat1] = STATE(34), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(302), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_operator_cast_definition_repeat1] = STATE(1954), + [sym_identifier] = ACTIONS(546), + [aux_sym_preproc_include_token1] = ACTIONS(548), + [aux_sym_preproc_def_token1] = ACTIONS(550), + [aux_sym_preproc_if_token1] = ACTIONS(552), + [aux_sym_preproc_if_token2] = ACTIONS(554), + [aux_sym_preproc_ifdef_token1] = ACTIONS(556), + [aux_sym_preproc_ifdef_token2] = ACTIONS(556), + [sym_preproc_directive] = ACTIONS(558), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -31329,9 +32641,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(159), - [anon_sym_typedef] = ACTIONS(161), - [anon_sym_extern] = ACTIONS(163), + [anon_sym_SEMI] = ACTIONS(560), + [anon_sym_typedef] = ACTIONS(562), + [anon_sym_extern] = ACTIONS(564), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(43), @@ -31343,8 +32655,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(49), [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(536), - [anon_sym_RBRACE] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(566), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), @@ -31367,17 +32678,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(65), [anon_sym_struct] = ACTIONS(67), [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(171), - [anon_sym_switch] = ACTIONS(173), - [anon_sym_case] = ACTIONS(175), - [anon_sym_default] = ACTIONS(177), - [anon_sym_while] = ACTIONS(179), - [anon_sym_do] = ACTIONS(181), - [anon_sym_for] = ACTIONS(183), - [anon_sym_return] = ACTIONS(185), - [anon_sym_break] = ACTIONS(187), - [anon_sym_continue] = ACTIONS(189), - [anon_sym_goto] = ACTIONS(191), + [anon_sym_if] = ACTIONS(568), + [anon_sym_switch] = ACTIONS(570), + [anon_sym_case] = ACTIONS(572), + [anon_sym_default] = ACTIONS(574), + [anon_sym_while] = ACTIONS(576), + [anon_sym_do] = ACTIONS(578), + [anon_sym_for] = ACTIONS(580), + [anon_sym_return] = ACTIONS(582), + [anon_sym_break] = ACTIONS(584), + [anon_sym_continue] = ACTIONS(586), + [anon_sym_goto] = ACTIONS(588), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -31401,17 +32714,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_virtual] = ACTIONS(109), [anon_sym_explicit] = ACTIONS(111), [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(195), + [anon_sym_template] = ACTIONS(590), [anon_sym_operator] = ACTIONS(117), - [anon_sym_try] = ACTIONS(197), + [anon_sym_try] = ACTIONS(592), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(199), - [anon_sym_namespace] = ACTIONS(201), - [anon_sym_using] = ACTIONS(203), - [anon_sym_static_assert] = ACTIONS(205), - [anon_sym_concept] = ACTIONS(207), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_throw] = ACTIONS(594), + [anon_sym_namespace] = ACTIONS(596), + [anon_sym_using] = ACTIONS(598), + [anon_sym_static_assert] = ACTIONS(600), + [anon_sym_concept] = ACTIONS(602), + [anon_sym_co_return] = ACTIONS(604), + [anon_sym_co_yield] = ACTIONS(606), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -31420,128 +32733,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(143), }, [34] = { - [sym_preproc_include] = STATE(33), - [sym_preproc_def] = STATE(33), - [sym_preproc_function_def] = STATE(33), - [sym_preproc_call] = STATE(33), - [sym_preproc_if] = STATE(33), - [sym_preproc_ifdef] = STATE(33), - [sym_function_definition] = STATE(33), - [sym_declaration] = STATE(33), - [sym_type_definition] = STATE(33), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(3967), - [sym_linkage_specification] = STATE(33), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(1089), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym_ms_call_modifier] = STATE(1829), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4789), - [sym_array_declarator] = STATE(4825), - [sym_compound_statement] = STATE(33), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(2975), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_attributed_statement] = STATE(33), - [sym_labeled_statement] = STATE(33), - [sym_expression_statement] = STATE(33), - [sym_if_statement] = STATE(33), - [sym_switch_statement] = STATE(33), - [sym_case_statement] = STATE(33), - [sym_while_statement] = STATE(33), - [sym_do_statement] = STATE(33), - [sym_for_statement] = STATE(33), - [sym_return_statement] = STATE(33), - [sym_break_statement] = STATE(33), - [sym_continue_statement] = STATE(33), - [sym_goto_statement] = STATE(33), - [sym__expression] = STATE(3645), - [sym_comma_expression] = STATE(6499), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__empty_declaration] = STATE(33), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1790), - [sym_dependent_type] = STATE(3139), - [sym_template_declaration] = STATE(33), - [sym_template_instantiation] = STATE(33), - [sym_operator_cast] = STATE(5178), - [sym__constructor_specifiers] = STATE(1790), - [sym_operator_cast_definition] = STATE(33), - [sym_operator_cast_declaration] = STATE(33), - [sym_constructor_or_destructor_definition] = STATE(33), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3531), - [sym_namespace_definition] = STATE(33), - [sym_namespace_alias_definition] = STATE(33), - [sym_using_declaration] = STATE(33), - [sym_alias_declaration] = STATE(33), - [sym_static_assert_declaration] = STATE(33), - [sym_concept_definition] = STATE(33), - [sym_for_range_loop] = STATE(33), - [sym_co_return_statement] = STATE(33), - [sym_co_yield_statement] = STATE(33), - [sym_throw_statement] = STATE(33), - [sym_try_statement] = STATE(33), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4513), - [sym_qualified_identifier] = STATE(2816), - [sym_qualified_type_identifier] = STATE(3276), - [sym_qualified_operator_cast_identifier] = STATE(5178), - [sym_operator_name] = STATE(4825), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_translation_unit_repeat1] = STATE(33), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_operator_cast_definition_repeat1] = STATE(1790), - [sym_identifier] = ACTIONS(145), - [aux_sym_preproc_include_token1] = ACTIONS(147), - [aux_sym_preproc_def_token1] = ACTIONS(149), - [aux_sym_preproc_if_token1] = ACTIONS(153), - [aux_sym_preproc_ifdef_token1] = ACTIONS(155), - [aux_sym_preproc_ifdef_token2] = ACTIONS(155), - [sym_preproc_directive] = ACTIONS(157), + [sym_preproc_include] = STATE(76), + [sym_preproc_def] = STATE(76), + [sym_preproc_function_def] = STATE(76), + [sym_preproc_call] = STATE(76), + [sym_preproc_if] = STATE(76), + [sym_preproc_ifdef] = STATE(76), + [sym_function_definition] = STATE(76), + [sym_declaration] = STATE(76), + [sym_type_definition] = STATE(76), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4230), + [sym_linkage_specification] = STATE(76), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym_ms_call_modifier] = STATE(1995), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(5012), + [sym_array_declarator] = STATE(5080), + [sym_compound_statement] = STATE(76), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3413), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_attributed_statement] = STATE(76), + [sym_labeled_statement] = STATE(76), + [sym_expression_statement] = STATE(76), + [sym_if_statement] = STATE(76), + [sym_switch_statement] = STATE(76), + [sym_case_statement] = STATE(76), + [sym_while_statement] = STATE(76), + [sym_do_statement] = STATE(76), + [sym_for_statement] = STATE(76), + [sym_return_statement] = STATE(76), + [sym_break_statement] = STATE(76), + [sym_continue_statement] = STATE(76), + [sym_goto_statement] = STATE(76), + [sym__expression] = STATE(3763), + [sym_comma_expression] = STATE(6972), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__empty_declaration] = STATE(76), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1954), + [sym_dependent_type] = STATE(3481), + [sym_template_declaration] = STATE(76), + [sym_template_instantiation] = STATE(76), + [sym_operator_cast] = STATE(5474), + [sym__constructor_specifiers] = STATE(1954), + [sym_operator_cast_definition] = STATE(76), + [sym_operator_cast_declaration] = STATE(76), + [sym_constructor_or_destructor_definition] = STATE(76), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3608), + [sym_namespace_definition] = STATE(76), + [sym_namespace_alias_definition] = STATE(76), + [sym_using_declaration] = STATE(76), + [sym_alias_declaration] = STATE(76), + [sym_static_assert_declaration] = STATE(76), + [sym_concept_definition] = STATE(76), + [sym_for_range_loop] = STATE(76), + [sym_co_return_statement] = STATE(76), + [sym_co_yield_statement] = STATE(76), + [sym_throw_statement] = STATE(76), + [sym_try_statement] = STATE(76), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4780), + [sym_qualified_identifier] = STATE(2734), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(5474), + [sym_operator_name] = STATE(5080), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_translation_unit_repeat1] = STATE(76), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(302), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_operator_cast_definition_repeat1] = STATE(1954), + [sym_identifier] = ACTIONS(546), + [aux_sym_preproc_include_token1] = ACTIONS(548), + [aux_sym_preproc_def_token1] = ACTIONS(550), + [aux_sym_preproc_if_token1] = ACTIONS(552), + [aux_sym_preproc_if_token2] = ACTIONS(608), + [aux_sym_preproc_ifdef_token1] = ACTIONS(556), + [aux_sym_preproc_ifdef_token2] = ACTIONS(556), + [sym_preproc_directive] = ACTIONS(558), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -31550,9 +32864,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(159), - [anon_sym_typedef] = ACTIONS(161), - [anon_sym_extern] = ACTIONS(163), + [anon_sym_SEMI] = ACTIONS(560), + [anon_sym_typedef] = ACTIONS(562), + [anon_sym_extern] = ACTIONS(564), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(43), @@ -31564,8 +32878,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(49), [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(536), - [anon_sym_RBRACE] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(566), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), @@ -31588,17 +32901,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(65), [anon_sym_struct] = ACTIONS(67), [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(171), - [anon_sym_switch] = ACTIONS(173), - [anon_sym_case] = ACTIONS(175), - [anon_sym_default] = ACTIONS(177), - [anon_sym_while] = ACTIONS(179), - [anon_sym_do] = ACTIONS(181), - [anon_sym_for] = ACTIONS(183), - [anon_sym_return] = ACTIONS(185), - [anon_sym_break] = ACTIONS(187), - [anon_sym_continue] = ACTIONS(189), - [anon_sym_goto] = ACTIONS(191), + [anon_sym_if] = ACTIONS(568), + [anon_sym_switch] = ACTIONS(570), + [anon_sym_case] = ACTIONS(572), + [anon_sym_default] = ACTIONS(574), + [anon_sym_while] = ACTIONS(576), + [anon_sym_do] = ACTIONS(578), + [anon_sym_for] = ACTIONS(580), + [anon_sym_return] = ACTIONS(582), + [anon_sym_break] = ACTIONS(584), + [anon_sym_continue] = ACTIONS(586), + [anon_sym_goto] = ACTIONS(588), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -31622,17 +32937,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_virtual] = ACTIONS(109), [anon_sym_explicit] = ACTIONS(111), [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(195), + [anon_sym_template] = ACTIONS(590), [anon_sym_operator] = ACTIONS(117), - [anon_sym_try] = ACTIONS(197), + [anon_sym_try] = ACTIONS(592), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(199), - [anon_sym_namespace] = ACTIONS(201), - [anon_sym_using] = ACTIONS(203), - [anon_sym_static_assert] = ACTIONS(205), - [anon_sym_concept] = ACTIONS(207), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_throw] = ACTIONS(594), + [anon_sym_namespace] = ACTIONS(596), + [anon_sym_using] = ACTIONS(598), + [anon_sym_static_assert] = ACTIONS(600), + [anon_sym_concept] = ACTIONS(602), + [anon_sym_co_return] = ACTIONS(604), + [anon_sym_co_yield] = ACTIONS(606), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -31641,121 +32956,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(143), }, [35] = { - [sym_preproc_include] = STATE(70), - [sym_preproc_def] = STATE(70), - [sym_preproc_function_def] = STATE(70), - [sym_preproc_call] = STATE(70), - [sym_preproc_if] = STATE(70), - [sym_preproc_ifdef] = STATE(70), - [sym_function_definition] = STATE(70), - [sym_declaration] = STATE(70), - [sym_type_definition] = STATE(70), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(3967), - [sym_linkage_specification] = STATE(70), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(1089), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym_ms_call_modifier] = STATE(1829), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4789), - [sym_array_declarator] = STATE(4825), - [sym_compound_statement] = STATE(70), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(2975), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_attributed_statement] = STATE(70), - [sym_labeled_statement] = STATE(70), - [sym_expression_statement] = STATE(70), - [sym_if_statement] = STATE(70), - [sym_switch_statement] = STATE(70), - [sym_case_statement] = STATE(70), - [sym_while_statement] = STATE(70), - [sym_do_statement] = STATE(70), - [sym_for_statement] = STATE(70), - [sym_return_statement] = STATE(70), - [sym_break_statement] = STATE(70), - [sym_continue_statement] = STATE(70), - [sym_goto_statement] = STATE(70), - [sym__expression] = STATE(3645), - [sym_comma_expression] = STATE(6499), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__empty_declaration] = STATE(70), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1790), - [sym_dependent_type] = STATE(3139), - [sym_template_declaration] = STATE(70), - [sym_template_instantiation] = STATE(70), - [sym_operator_cast] = STATE(5178), - [sym__constructor_specifiers] = STATE(1790), - [sym_operator_cast_definition] = STATE(70), - [sym_operator_cast_declaration] = STATE(70), - [sym_constructor_or_destructor_definition] = STATE(70), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3531), - [sym_namespace_definition] = STATE(70), - [sym_namespace_alias_definition] = STATE(70), - [sym_using_declaration] = STATE(70), - [sym_alias_declaration] = STATE(70), - [sym_static_assert_declaration] = STATE(70), - [sym_concept_definition] = STATE(70), - [sym_for_range_loop] = STATE(70), - [sym_co_return_statement] = STATE(70), - [sym_co_yield_statement] = STATE(70), - [sym_throw_statement] = STATE(70), - [sym_try_statement] = STATE(70), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4513), - [sym_qualified_identifier] = STATE(2816), - [sym_qualified_type_identifier] = STATE(3276), - [sym_qualified_operator_cast_identifier] = STATE(5178), - [sym_operator_name] = STATE(4825), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_translation_unit_repeat1] = STATE(70), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_operator_cast_definition_repeat1] = STATE(1790), + [sym_preproc_include] = STATE(52), + [sym_preproc_def] = STATE(52), + [sym_preproc_function_def] = STATE(52), + [sym_preproc_call] = STATE(52), + [sym_preproc_if] = STATE(52), + [sym_preproc_ifdef] = STATE(52), + [sym_function_definition] = STATE(52), + [sym_declaration] = STATE(52), + [sym_type_definition] = STATE(52), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4216), + [sym_linkage_specification] = STATE(52), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym_ms_call_modifier] = STATE(2011), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(5018), + [sym_array_declarator] = STATE(5080), + [sym_compound_statement] = STATE(52), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3372), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_attributed_statement] = STATE(52), + [sym_labeled_statement] = STATE(52), + [sym_expression_statement] = STATE(52), + [sym_if_statement] = STATE(52), + [sym_switch_statement] = STATE(52), + [sym_case_statement] = STATE(52), + [sym_while_statement] = STATE(52), + [sym_do_statement] = STATE(52), + [sym_for_statement] = STATE(52), + [sym_return_statement] = STATE(52), + [sym_break_statement] = STATE(52), + [sym_continue_statement] = STATE(52), + [sym_goto_statement] = STATE(52), + [sym__expression] = STATE(3704), + [sym_comma_expression] = STATE(6857), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__empty_declaration] = STATE(52), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1974), + [sym_dependent_type] = STATE(3481), + [sym_template_declaration] = STATE(52), + [sym_template_instantiation] = STATE(52), + [sym_operator_cast] = STATE(5456), + [sym__constructor_specifiers] = STATE(1974), + [sym_operator_cast_definition] = STATE(52), + [sym_operator_cast_declaration] = STATE(52), + [sym_constructor_or_destructor_definition] = STATE(52), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3608), + [sym_namespace_definition] = STATE(52), + [sym_namespace_alias_definition] = STATE(52), + [sym_using_declaration] = STATE(52), + [sym_alias_declaration] = STATE(52), + [sym_static_assert_declaration] = STATE(52), + [sym_concept_definition] = STATE(52), + [sym_for_range_loop] = STATE(52), + [sym_co_return_statement] = STATE(52), + [sym_co_yield_statement] = STATE(52), + [sym_throw_statement] = STATE(52), + [sym_try_statement] = STATE(52), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4780), + [sym_qualified_identifier] = STATE(2734), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(5456), + [sym_operator_name] = STATE(5080), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_translation_unit_repeat1] = STATE(52), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_operator_cast_definition_repeat1] = STATE(1974), [sym_identifier] = ACTIONS(145), [aux_sym_preproc_include_token1] = ACTIONS(147), [aux_sym_preproc_def_token1] = ACTIONS(149), @@ -31786,7 +33101,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(536), - [anon_sym_RBRACE] = ACTIONS(550), + [anon_sym_RBRACE] = ACTIONS(610), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), @@ -31820,6 +33135,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(187), [anon_sym_continue] = ACTIONS(189), [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -31862,121 +33179,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(143), }, [36] = { - [sym_preproc_include] = STATE(66), - [sym_preproc_def] = STATE(66), - [sym_preproc_function_def] = STATE(66), - [sym_preproc_call] = STATE(66), - [sym_preproc_if] = STATE(66), - [sym_preproc_ifdef] = STATE(66), - [sym_function_definition] = STATE(66), - [sym_declaration] = STATE(66), - [sym_type_definition] = STATE(66), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(3967), - [sym_linkage_specification] = STATE(66), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(1089), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym_ms_call_modifier] = STATE(1829), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4789), - [sym_array_declarator] = STATE(4825), - [sym_compound_statement] = STATE(66), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(2975), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_attributed_statement] = STATE(66), - [sym_labeled_statement] = STATE(66), - [sym_expression_statement] = STATE(66), - [sym_if_statement] = STATE(66), - [sym_switch_statement] = STATE(66), - [sym_case_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_do_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_return_statement] = STATE(66), - [sym_break_statement] = STATE(66), - [sym_continue_statement] = STATE(66), - [sym_goto_statement] = STATE(66), - [sym__expression] = STATE(3645), - [sym_comma_expression] = STATE(6499), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__empty_declaration] = STATE(66), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1790), - [sym_dependent_type] = STATE(3139), - [sym_template_declaration] = STATE(66), - [sym_template_instantiation] = STATE(66), - [sym_operator_cast] = STATE(5178), - [sym__constructor_specifiers] = STATE(1790), - [sym_operator_cast_definition] = STATE(66), - [sym_operator_cast_declaration] = STATE(66), - [sym_constructor_or_destructor_definition] = STATE(66), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3531), - [sym_namespace_definition] = STATE(66), - [sym_namespace_alias_definition] = STATE(66), - [sym_using_declaration] = STATE(66), - [sym_alias_declaration] = STATE(66), - [sym_static_assert_declaration] = STATE(66), - [sym_concept_definition] = STATE(66), - [sym_for_range_loop] = STATE(66), - [sym_co_return_statement] = STATE(66), - [sym_co_yield_statement] = STATE(66), - [sym_throw_statement] = STATE(66), - [sym_try_statement] = STATE(66), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4513), - [sym_qualified_identifier] = STATE(2816), - [sym_qualified_type_identifier] = STATE(3276), - [sym_qualified_operator_cast_identifier] = STATE(5178), - [sym_operator_name] = STATE(4825), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_translation_unit_repeat1] = STATE(66), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_operator_cast_definition_repeat1] = STATE(1790), + [sym_preproc_include] = STATE(52), + [sym_preproc_def] = STATE(52), + [sym_preproc_function_def] = STATE(52), + [sym_preproc_call] = STATE(52), + [sym_preproc_if] = STATE(52), + [sym_preproc_ifdef] = STATE(52), + [sym_function_definition] = STATE(52), + [sym_declaration] = STATE(52), + [sym_type_definition] = STATE(52), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4216), + [sym_linkage_specification] = STATE(52), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym_ms_call_modifier] = STATE(2011), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(5018), + [sym_array_declarator] = STATE(5080), + [sym_compound_statement] = STATE(52), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3372), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_attributed_statement] = STATE(52), + [sym_labeled_statement] = STATE(52), + [sym_expression_statement] = STATE(52), + [sym_if_statement] = STATE(52), + [sym_switch_statement] = STATE(52), + [sym_case_statement] = STATE(52), + [sym_while_statement] = STATE(52), + [sym_do_statement] = STATE(52), + [sym_for_statement] = STATE(52), + [sym_return_statement] = STATE(52), + [sym_break_statement] = STATE(52), + [sym_continue_statement] = STATE(52), + [sym_goto_statement] = STATE(52), + [sym__expression] = STATE(3704), + [sym_comma_expression] = STATE(6857), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__empty_declaration] = STATE(52), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1974), + [sym_dependent_type] = STATE(3481), + [sym_template_declaration] = STATE(52), + [sym_template_instantiation] = STATE(52), + [sym_operator_cast] = STATE(5456), + [sym__constructor_specifiers] = STATE(1974), + [sym_operator_cast_definition] = STATE(52), + [sym_operator_cast_declaration] = STATE(52), + [sym_constructor_or_destructor_definition] = STATE(52), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3608), + [sym_namespace_definition] = STATE(52), + [sym_namespace_alias_definition] = STATE(52), + [sym_using_declaration] = STATE(52), + [sym_alias_declaration] = STATE(52), + [sym_static_assert_declaration] = STATE(52), + [sym_concept_definition] = STATE(52), + [sym_for_range_loop] = STATE(52), + [sym_co_return_statement] = STATE(52), + [sym_co_yield_statement] = STATE(52), + [sym_throw_statement] = STATE(52), + [sym_try_statement] = STATE(52), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4780), + [sym_qualified_identifier] = STATE(2734), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(5456), + [sym_operator_name] = STATE(5080), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_translation_unit_repeat1] = STATE(52), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_operator_cast_definition_repeat1] = STATE(1974), [sym_identifier] = ACTIONS(145), [aux_sym_preproc_include_token1] = ACTIONS(147), [aux_sym_preproc_def_token1] = ACTIONS(149), @@ -32007,7 +33324,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(536), - [anon_sym_RBRACE] = ACTIONS(552), + [anon_sym_RBRACE] = ACTIONS(612), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), @@ -32041,6 +33358,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(187), [anon_sym_continue] = ACTIONS(189), [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -32083,121 +33402,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(143), }, [37] = { - [sym_preproc_include] = STATE(70), - [sym_preproc_def] = STATE(70), - [sym_preproc_function_def] = STATE(70), - [sym_preproc_call] = STATE(70), - [sym_preproc_if] = STATE(70), - [sym_preproc_ifdef] = STATE(70), - [sym_function_definition] = STATE(70), - [sym_declaration] = STATE(70), - [sym_type_definition] = STATE(70), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(3967), - [sym_linkage_specification] = STATE(70), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(1089), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym_ms_call_modifier] = STATE(1829), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4789), - [sym_array_declarator] = STATE(4825), - [sym_compound_statement] = STATE(70), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(2975), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_attributed_statement] = STATE(70), - [sym_labeled_statement] = STATE(70), - [sym_expression_statement] = STATE(70), - [sym_if_statement] = STATE(70), - [sym_switch_statement] = STATE(70), - [sym_case_statement] = STATE(70), - [sym_while_statement] = STATE(70), - [sym_do_statement] = STATE(70), - [sym_for_statement] = STATE(70), - [sym_return_statement] = STATE(70), - [sym_break_statement] = STATE(70), - [sym_continue_statement] = STATE(70), - [sym_goto_statement] = STATE(70), - [sym__expression] = STATE(3645), - [sym_comma_expression] = STATE(6499), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__empty_declaration] = STATE(70), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1790), - [sym_dependent_type] = STATE(3139), - [sym_template_declaration] = STATE(70), - [sym_template_instantiation] = STATE(70), - [sym_operator_cast] = STATE(5178), - [sym__constructor_specifiers] = STATE(1790), - [sym_operator_cast_definition] = STATE(70), - [sym_operator_cast_declaration] = STATE(70), - [sym_constructor_or_destructor_definition] = STATE(70), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3531), - [sym_namespace_definition] = STATE(70), - [sym_namespace_alias_definition] = STATE(70), - [sym_using_declaration] = STATE(70), - [sym_alias_declaration] = STATE(70), - [sym_static_assert_declaration] = STATE(70), - [sym_concept_definition] = STATE(70), - [sym_for_range_loop] = STATE(70), - [sym_co_return_statement] = STATE(70), - [sym_co_yield_statement] = STATE(70), - [sym_throw_statement] = STATE(70), - [sym_try_statement] = STATE(70), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4513), - [sym_qualified_identifier] = STATE(2816), - [sym_qualified_type_identifier] = STATE(3276), - [sym_qualified_operator_cast_identifier] = STATE(5178), - [sym_operator_name] = STATE(4825), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_translation_unit_repeat1] = STATE(70), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_operator_cast_definition_repeat1] = STATE(1790), + [sym_preproc_include] = STATE(35), + [sym_preproc_def] = STATE(35), + [sym_preproc_function_def] = STATE(35), + [sym_preproc_call] = STATE(35), + [sym_preproc_if] = STATE(35), + [sym_preproc_ifdef] = STATE(35), + [sym_function_definition] = STATE(35), + [sym_declaration] = STATE(35), + [sym_type_definition] = STATE(35), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4216), + [sym_linkage_specification] = STATE(35), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym_ms_call_modifier] = STATE(2011), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(5018), + [sym_array_declarator] = STATE(5080), + [sym_compound_statement] = STATE(35), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3372), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_attributed_statement] = STATE(35), + [sym_labeled_statement] = STATE(35), + [sym_expression_statement] = STATE(35), + [sym_if_statement] = STATE(35), + [sym_switch_statement] = STATE(35), + [sym_case_statement] = STATE(35), + [sym_while_statement] = STATE(35), + [sym_do_statement] = STATE(35), + [sym_for_statement] = STATE(35), + [sym_return_statement] = STATE(35), + [sym_break_statement] = STATE(35), + [sym_continue_statement] = STATE(35), + [sym_goto_statement] = STATE(35), + [sym__expression] = STATE(3704), + [sym_comma_expression] = STATE(6857), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__empty_declaration] = STATE(35), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1974), + [sym_dependent_type] = STATE(3481), + [sym_template_declaration] = STATE(35), + [sym_template_instantiation] = STATE(35), + [sym_operator_cast] = STATE(5456), + [sym__constructor_specifiers] = STATE(1974), + [sym_operator_cast_definition] = STATE(35), + [sym_operator_cast_declaration] = STATE(35), + [sym_constructor_or_destructor_definition] = STATE(35), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3608), + [sym_namespace_definition] = STATE(35), + [sym_namespace_alias_definition] = STATE(35), + [sym_using_declaration] = STATE(35), + [sym_alias_declaration] = STATE(35), + [sym_static_assert_declaration] = STATE(35), + [sym_concept_definition] = STATE(35), + [sym_for_range_loop] = STATE(35), + [sym_co_return_statement] = STATE(35), + [sym_co_yield_statement] = STATE(35), + [sym_throw_statement] = STATE(35), + [sym_try_statement] = STATE(35), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4780), + [sym_qualified_identifier] = STATE(2734), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(5456), + [sym_operator_name] = STATE(5080), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_translation_unit_repeat1] = STATE(35), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_operator_cast_definition_repeat1] = STATE(1974), [sym_identifier] = ACTIONS(145), [aux_sym_preproc_include_token1] = ACTIONS(147), [aux_sym_preproc_def_token1] = ACTIONS(149), @@ -32228,7 +33547,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(536), - [anon_sym_RBRACE] = ACTIONS(554), + [anon_sym_RBRACE] = ACTIONS(614), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), @@ -32262,6 +33581,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(187), [anon_sym_continue] = ACTIONS(189), [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -32304,129 +33625,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(143), }, [38] = { - [sym_preproc_include] = STATE(69), - [sym_preproc_def] = STATE(69), - [sym_preproc_function_def] = STATE(69), - [sym_preproc_call] = STATE(69), - [sym_preproc_if] = STATE(69), - [sym_preproc_ifdef] = STATE(69), - [sym_function_definition] = STATE(69), - [sym_declaration] = STATE(69), - [sym_type_definition] = STATE(69), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(4003), - [sym_linkage_specification] = STATE(69), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(1089), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym_ms_call_modifier] = STATE(1797), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4796), - [sym_array_declarator] = STATE(4825), - [sym_compound_statement] = STATE(69), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(3085), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_attributed_statement] = STATE(69), - [sym_labeled_statement] = STATE(69), - [sym_expression_statement] = STATE(69), - [sym_if_statement] = STATE(69), - [sym_switch_statement] = STATE(69), - [sym_case_statement] = STATE(69), - [sym_while_statement] = STATE(69), - [sym_do_statement] = STATE(69), - [sym_for_statement] = STATE(69), - [sym_return_statement] = STATE(69), - [sym_break_statement] = STATE(69), - [sym_continue_statement] = STATE(69), - [sym_goto_statement] = STATE(69), - [sym__expression] = STATE(3605), - [sym_comma_expression] = STATE(6558), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__empty_declaration] = STATE(69), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1768), - [sym_dependent_type] = STATE(3139), - [sym_template_declaration] = STATE(69), - [sym_template_instantiation] = STATE(69), - [sym_operator_cast] = STATE(5184), - [sym__constructor_specifiers] = STATE(1768), - [sym_operator_cast_definition] = STATE(69), - [sym_operator_cast_declaration] = STATE(69), - [sym_constructor_or_destructor_definition] = STATE(69), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3531), - [sym_namespace_definition] = STATE(69), - [sym_namespace_alias_definition] = STATE(69), - [sym_using_declaration] = STATE(69), - [sym_alias_declaration] = STATE(69), - [sym_static_assert_declaration] = STATE(69), - [sym_concept_definition] = STATE(69), - [sym_for_range_loop] = STATE(69), - [sym_co_return_statement] = STATE(69), - [sym_co_yield_statement] = STATE(69), - [sym_throw_statement] = STATE(69), - [sym_try_statement] = STATE(69), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4513), - [sym_qualified_identifier] = STATE(2816), - [sym_qualified_type_identifier] = STATE(3276), - [sym_qualified_operator_cast_identifier] = STATE(5184), - [sym_operator_name] = STATE(4825), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_translation_unit_repeat1] = STATE(69), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(282), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_operator_cast_definition_repeat1] = STATE(1768), - [ts_builtin_sym_end] = ACTIONS(556), - [sym_identifier] = ACTIONS(7), - [aux_sym_preproc_include_token1] = ACTIONS(9), - [aux_sym_preproc_def_token1] = ACTIONS(11), - [aux_sym_preproc_if_token1] = ACTIONS(13), - [aux_sym_preproc_ifdef_token1] = ACTIONS(15), - [aux_sym_preproc_ifdef_token2] = ACTIONS(15), - [sym_preproc_directive] = ACTIONS(17), + [sym_preproc_include] = STATE(41), + [sym_preproc_def] = STATE(41), + [sym_preproc_function_def] = STATE(41), + [sym_preproc_call] = STATE(41), + [sym_preproc_if] = STATE(41), + [sym_preproc_ifdef] = STATE(41), + [sym_function_definition] = STATE(41), + [sym_declaration] = STATE(41), + [sym_type_definition] = STATE(41), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4216), + [sym_linkage_specification] = STATE(41), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym_ms_call_modifier] = STATE(2011), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(5018), + [sym_array_declarator] = STATE(5080), + [sym_compound_statement] = STATE(41), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3372), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_attributed_statement] = STATE(41), + [sym_labeled_statement] = STATE(41), + [sym_expression_statement] = STATE(41), + [sym_if_statement] = STATE(41), + [sym_switch_statement] = STATE(41), + [sym_case_statement] = STATE(41), + [sym_while_statement] = STATE(41), + [sym_do_statement] = STATE(41), + [sym_for_statement] = STATE(41), + [sym_return_statement] = STATE(41), + [sym_break_statement] = STATE(41), + [sym_continue_statement] = STATE(41), + [sym_goto_statement] = STATE(41), + [sym__expression] = STATE(3704), + [sym_comma_expression] = STATE(6857), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__empty_declaration] = STATE(41), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1974), + [sym_dependent_type] = STATE(3481), + [sym_template_declaration] = STATE(41), + [sym_template_instantiation] = STATE(41), + [sym_operator_cast] = STATE(5456), + [sym__constructor_specifiers] = STATE(1974), + [sym_operator_cast_definition] = STATE(41), + [sym_operator_cast_declaration] = STATE(41), + [sym_constructor_or_destructor_definition] = STATE(41), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3608), + [sym_namespace_definition] = STATE(41), + [sym_namespace_alias_definition] = STATE(41), + [sym_using_declaration] = STATE(41), + [sym_alias_declaration] = STATE(41), + [sym_static_assert_declaration] = STATE(41), + [sym_concept_definition] = STATE(41), + [sym_for_range_loop] = STATE(41), + [sym_co_return_statement] = STATE(41), + [sym_co_yield_statement] = STATE(41), + [sym_throw_statement] = STATE(41), + [sym_try_statement] = STATE(41), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4780), + [sym_qualified_identifier] = STATE(2734), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(5456), + [sym_operator_name] = STATE(5080), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_translation_unit_repeat1] = STATE(41), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_operator_cast_definition_repeat1] = STATE(1974), + [sym_identifier] = ACTIONS(145), + [aux_sym_preproc_include_token1] = ACTIONS(147), + [aux_sym_preproc_def_token1] = ACTIONS(149), + [aux_sym_preproc_if_token1] = ACTIONS(153), + [aux_sym_preproc_ifdef_token1] = ACTIONS(155), + [aux_sym_preproc_ifdef_token2] = ACTIONS(155), + [sym_preproc_directive] = ACTIONS(157), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -32435,9 +33755,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_typedef] = ACTIONS(35), - [anon_sym_extern] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_typedef] = ACTIONS(161), + [anon_sym_extern] = ACTIONS(163), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(43), @@ -32449,7 +33769,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(49), [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_RBRACE] = ACTIONS(616), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), @@ -32472,17 +33793,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(65), [anon_sym_struct] = ACTIONS(67), [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_case] = ACTIONS(75), - [anon_sym_default] = ACTIONS(77), - [anon_sym_while] = ACTIONS(79), - [anon_sym_do] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), - [anon_sym_return] = ACTIONS(85), - [anon_sym_break] = ACTIONS(87), - [anon_sym_continue] = ACTIONS(89), - [anon_sym_goto] = ACTIONS(91), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -32506,17 +33829,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_virtual] = ACTIONS(109), [anon_sym_explicit] = ACTIONS(111), [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(115), + [anon_sym_template] = ACTIONS(195), [anon_sym_operator] = ACTIONS(117), - [anon_sym_try] = ACTIONS(119), + [anon_sym_try] = ACTIONS(197), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(123), - [anon_sym_namespace] = ACTIONS(125), - [anon_sym_using] = ACTIONS(127), - [anon_sym_static_assert] = ACTIONS(129), - [anon_sym_concept] = ACTIONS(131), - [anon_sym_co_return] = ACTIONS(133), - [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_namespace] = ACTIONS(201), + [anon_sym_using] = ACTIONS(203), + [anon_sym_static_assert] = ACTIONS(205), + [anon_sym_concept] = ACTIONS(207), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -32525,121 +33848,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(143), }, [39] = { - [sym_preproc_include] = STATE(70), - [sym_preproc_def] = STATE(70), - [sym_preproc_function_def] = STATE(70), - [sym_preproc_call] = STATE(70), - [sym_preproc_if] = STATE(70), - [sym_preproc_ifdef] = STATE(70), - [sym_function_definition] = STATE(70), - [sym_declaration] = STATE(70), - [sym_type_definition] = STATE(70), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(3967), - [sym_linkage_specification] = STATE(70), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(1089), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym_ms_call_modifier] = STATE(1829), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4789), - [sym_array_declarator] = STATE(4825), - [sym_compound_statement] = STATE(70), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(2975), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_attributed_statement] = STATE(70), - [sym_labeled_statement] = STATE(70), - [sym_expression_statement] = STATE(70), - [sym_if_statement] = STATE(70), - [sym_switch_statement] = STATE(70), - [sym_case_statement] = STATE(70), - [sym_while_statement] = STATE(70), - [sym_do_statement] = STATE(70), - [sym_for_statement] = STATE(70), - [sym_return_statement] = STATE(70), - [sym_break_statement] = STATE(70), - [sym_continue_statement] = STATE(70), - [sym_goto_statement] = STATE(70), - [sym__expression] = STATE(3645), - [sym_comma_expression] = STATE(6499), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__empty_declaration] = STATE(70), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1790), - [sym_dependent_type] = STATE(3139), - [sym_template_declaration] = STATE(70), - [sym_template_instantiation] = STATE(70), - [sym_operator_cast] = STATE(5178), - [sym__constructor_specifiers] = STATE(1790), - [sym_operator_cast_definition] = STATE(70), - [sym_operator_cast_declaration] = STATE(70), - [sym_constructor_or_destructor_definition] = STATE(70), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3531), - [sym_namespace_definition] = STATE(70), - [sym_namespace_alias_definition] = STATE(70), - [sym_using_declaration] = STATE(70), - [sym_alias_declaration] = STATE(70), - [sym_static_assert_declaration] = STATE(70), - [sym_concept_definition] = STATE(70), - [sym_for_range_loop] = STATE(70), - [sym_co_return_statement] = STATE(70), - [sym_co_yield_statement] = STATE(70), - [sym_throw_statement] = STATE(70), - [sym_try_statement] = STATE(70), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4513), - [sym_qualified_identifier] = STATE(2816), - [sym_qualified_type_identifier] = STATE(3276), - [sym_qualified_operator_cast_identifier] = STATE(5178), - [sym_operator_name] = STATE(4825), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_translation_unit_repeat1] = STATE(70), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_operator_cast_definition_repeat1] = STATE(1790), + [sym_preproc_include] = STATE(36), + [sym_preproc_def] = STATE(36), + [sym_preproc_function_def] = STATE(36), + [sym_preproc_call] = STATE(36), + [sym_preproc_if] = STATE(36), + [sym_preproc_ifdef] = STATE(36), + [sym_function_definition] = STATE(36), + [sym_declaration] = STATE(36), + [sym_type_definition] = STATE(36), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4216), + [sym_linkage_specification] = STATE(36), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym_ms_call_modifier] = STATE(2011), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(5018), + [sym_array_declarator] = STATE(5080), + [sym_compound_statement] = STATE(36), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3372), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_attributed_statement] = STATE(36), + [sym_labeled_statement] = STATE(36), + [sym_expression_statement] = STATE(36), + [sym_if_statement] = STATE(36), + [sym_switch_statement] = STATE(36), + [sym_case_statement] = STATE(36), + [sym_while_statement] = STATE(36), + [sym_do_statement] = STATE(36), + [sym_for_statement] = STATE(36), + [sym_return_statement] = STATE(36), + [sym_break_statement] = STATE(36), + [sym_continue_statement] = STATE(36), + [sym_goto_statement] = STATE(36), + [sym__expression] = STATE(3704), + [sym_comma_expression] = STATE(6857), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__empty_declaration] = STATE(36), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1974), + [sym_dependent_type] = STATE(3481), + [sym_template_declaration] = STATE(36), + [sym_template_instantiation] = STATE(36), + [sym_operator_cast] = STATE(5456), + [sym__constructor_specifiers] = STATE(1974), + [sym_operator_cast_definition] = STATE(36), + [sym_operator_cast_declaration] = STATE(36), + [sym_constructor_or_destructor_definition] = STATE(36), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3608), + [sym_namespace_definition] = STATE(36), + [sym_namespace_alias_definition] = STATE(36), + [sym_using_declaration] = STATE(36), + [sym_alias_declaration] = STATE(36), + [sym_static_assert_declaration] = STATE(36), + [sym_concept_definition] = STATE(36), + [sym_for_range_loop] = STATE(36), + [sym_co_return_statement] = STATE(36), + [sym_co_yield_statement] = STATE(36), + [sym_throw_statement] = STATE(36), + [sym_try_statement] = STATE(36), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4780), + [sym_qualified_identifier] = STATE(2734), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(5456), + [sym_operator_name] = STATE(5080), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_translation_unit_repeat1] = STATE(36), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_operator_cast_definition_repeat1] = STATE(1974), [sym_identifier] = ACTIONS(145), [aux_sym_preproc_include_token1] = ACTIONS(147), [aux_sym_preproc_def_token1] = ACTIONS(149), @@ -32670,7 +33993,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(536), - [anon_sym_RBRACE] = ACTIONS(558), + [anon_sym_RBRACE] = ACTIONS(618), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), @@ -32704,6 +34027,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(187), [anon_sym_continue] = ACTIONS(189), [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -32746,121 +34071,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(143), }, [40] = { - [sym_preproc_include] = STATE(39), - [sym_preproc_def] = STATE(39), - [sym_preproc_function_def] = STATE(39), - [sym_preproc_call] = STATE(39), - [sym_preproc_if] = STATE(39), - [sym_preproc_ifdef] = STATE(39), - [sym_function_definition] = STATE(39), - [sym_declaration] = STATE(39), - [sym_type_definition] = STATE(39), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(3967), - [sym_linkage_specification] = STATE(39), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(1089), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym_ms_call_modifier] = STATE(1829), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4789), - [sym_array_declarator] = STATE(4825), - [sym_compound_statement] = STATE(39), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(2975), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_attributed_statement] = STATE(39), - [sym_labeled_statement] = STATE(39), - [sym_expression_statement] = STATE(39), - [sym_if_statement] = STATE(39), - [sym_switch_statement] = STATE(39), - [sym_case_statement] = STATE(39), - [sym_while_statement] = STATE(39), - [sym_do_statement] = STATE(39), - [sym_for_statement] = STATE(39), - [sym_return_statement] = STATE(39), - [sym_break_statement] = STATE(39), - [sym_continue_statement] = STATE(39), - [sym_goto_statement] = STATE(39), - [sym__expression] = STATE(3645), - [sym_comma_expression] = STATE(6499), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__empty_declaration] = STATE(39), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1790), - [sym_dependent_type] = STATE(3139), - [sym_template_declaration] = STATE(39), - [sym_template_instantiation] = STATE(39), - [sym_operator_cast] = STATE(5178), - [sym__constructor_specifiers] = STATE(1790), - [sym_operator_cast_definition] = STATE(39), - [sym_operator_cast_declaration] = STATE(39), - [sym_constructor_or_destructor_definition] = STATE(39), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3531), - [sym_namespace_definition] = STATE(39), - [sym_namespace_alias_definition] = STATE(39), - [sym_using_declaration] = STATE(39), - [sym_alias_declaration] = STATE(39), - [sym_static_assert_declaration] = STATE(39), - [sym_concept_definition] = STATE(39), - [sym_for_range_loop] = STATE(39), - [sym_co_return_statement] = STATE(39), - [sym_co_yield_statement] = STATE(39), - [sym_throw_statement] = STATE(39), - [sym_try_statement] = STATE(39), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4513), - [sym_qualified_identifier] = STATE(2816), - [sym_qualified_type_identifier] = STATE(3276), - [sym_qualified_operator_cast_identifier] = STATE(5178), - [sym_operator_name] = STATE(4825), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_translation_unit_repeat1] = STATE(39), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_operator_cast_definition_repeat1] = STATE(1790), + [sym_preproc_include] = STATE(52), + [sym_preproc_def] = STATE(52), + [sym_preproc_function_def] = STATE(52), + [sym_preproc_call] = STATE(52), + [sym_preproc_if] = STATE(52), + [sym_preproc_ifdef] = STATE(52), + [sym_function_definition] = STATE(52), + [sym_declaration] = STATE(52), + [sym_type_definition] = STATE(52), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4216), + [sym_linkage_specification] = STATE(52), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym_ms_call_modifier] = STATE(2011), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(5018), + [sym_array_declarator] = STATE(5080), + [sym_compound_statement] = STATE(52), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3372), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_attributed_statement] = STATE(52), + [sym_labeled_statement] = STATE(52), + [sym_expression_statement] = STATE(52), + [sym_if_statement] = STATE(52), + [sym_switch_statement] = STATE(52), + [sym_case_statement] = STATE(52), + [sym_while_statement] = STATE(52), + [sym_do_statement] = STATE(52), + [sym_for_statement] = STATE(52), + [sym_return_statement] = STATE(52), + [sym_break_statement] = STATE(52), + [sym_continue_statement] = STATE(52), + [sym_goto_statement] = STATE(52), + [sym__expression] = STATE(3704), + [sym_comma_expression] = STATE(6857), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__empty_declaration] = STATE(52), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1974), + [sym_dependent_type] = STATE(3481), + [sym_template_declaration] = STATE(52), + [sym_template_instantiation] = STATE(52), + [sym_operator_cast] = STATE(5456), + [sym__constructor_specifiers] = STATE(1974), + [sym_operator_cast_definition] = STATE(52), + [sym_operator_cast_declaration] = STATE(52), + [sym_constructor_or_destructor_definition] = STATE(52), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3608), + [sym_namespace_definition] = STATE(52), + [sym_namespace_alias_definition] = STATE(52), + [sym_using_declaration] = STATE(52), + [sym_alias_declaration] = STATE(52), + [sym_static_assert_declaration] = STATE(52), + [sym_concept_definition] = STATE(52), + [sym_for_range_loop] = STATE(52), + [sym_co_return_statement] = STATE(52), + [sym_co_yield_statement] = STATE(52), + [sym_throw_statement] = STATE(52), + [sym_try_statement] = STATE(52), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4780), + [sym_qualified_identifier] = STATE(2734), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(5456), + [sym_operator_name] = STATE(5080), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_translation_unit_repeat1] = STATE(52), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_operator_cast_definition_repeat1] = STATE(1974), [sym_identifier] = ACTIONS(145), [aux_sym_preproc_include_token1] = ACTIONS(147), [aux_sym_preproc_def_token1] = ACTIONS(149), @@ -32891,7 +34216,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(536), - [anon_sym_RBRACE] = ACTIONS(560), + [anon_sym_RBRACE] = ACTIONS(620), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), @@ -32925,6 +34250,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(187), [anon_sym_continue] = ACTIONS(189), [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -32967,121 +34294,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(143), }, [41] = { - [sym_preproc_include] = STATE(70), - [sym_preproc_def] = STATE(70), - [sym_preproc_function_def] = STATE(70), - [sym_preproc_call] = STATE(70), - [sym_preproc_if] = STATE(70), - [sym_preproc_ifdef] = STATE(70), - [sym_function_definition] = STATE(70), - [sym_declaration] = STATE(70), - [sym_type_definition] = STATE(70), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(3967), - [sym_linkage_specification] = STATE(70), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(1089), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym_ms_call_modifier] = STATE(1829), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4789), - [sym_array_declarator] = STATE(4825), - [sym_compound_statement] = STATE(70), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(2975), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_attributed_statement] = STATE(70), - [sym_labeled_statement] = STATE(70), - [sym_expression_statement] = STATE(70), - [sym_if_statement] = STATE(70), - [sym_switch_statement] = STATE(70), - [sym_case_statement] = STATE(70), - [sym_while_statement] = STATE(70), - [sym_do_statement] = STATE(70), - [sym_for_statement] = STATE(70), - [sym_return_statement] = STATE(70), - [sym_break_statement] = STATE(70), - [sym_continue_statement] = STATE(70), - [sym_goto_statement] = STATE(70), - [sym__expression] = STATE(3645), - [sym_comma_expression] = STATE(6499), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__empty_declaration] = STATE(70), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1790), - [sym_dependent_type] = STATE(3139), - [sym_template_declaration] = STATE(70), - [sym_template_instantiation] = STATE(70), - [sym_operator_cast] = STATE(5178), - [sym__constructor_specifiers] = STATE(1790), - [sym_operator_cast_definition] = STATE(70), - [sym_operator_cast_declaration] = STATE(70), - [sym_constructor_or_destructor_definition] = STATE(70), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3531), - [sym_namespace_definition] = STATE(70), - [sym_namespace_alias_definition] = STATE(70), - [sym_using_declaration] = STATE(70), - [sym_alias_declaration] = STATE(70), - [sym_static_assert_declaration] = STATE(70), - [sym_concept_definition] = STATE(70), - [sym_for_range_loop] = STATE(70), - [sym_co_return_statement] = STATE(70), - [sym_co_yield_statement] = STATE(70), - [sym_throw_statement] = STATE(70), - [sym_try_statement] = STATE(70), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4513), - [sym_qualified_identifier] = STATE(2816), - [sym_qualified_type_identifier] = STATE(3276), - [sym_qualified_operator_cast_identifier] = STATE(5178), - [sym_operator_name] = STATE(4825), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_translation_unit_repeat1] = STATE(70), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_operator_cast_definition_repeat1] = STATE(1790), + [sym_preproc_include] = STATE(52), + [sym_preproc_def] = STATE(52), + [sym_preproc_function_def] = STATE(52), + [sym_preproc_call] = STATE(52), + [sym_preproc_if] = STATE(52), + [sym_preproc_ifdef] = STATE(52), + [sym_function_definition] = STATE(52), + [sym_declaration] = STATE(52), + [sym_type_definition] = STATE(52), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4216), + [sym_linkage_specification] = STATE(52), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym_ms_call_modifier] = STATE(2011), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(5018), + [sym_array_declarator] = STATE(5080), + [sym_compound_statement] = STATE(52), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3372), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_attributed_statement] = STATE(52), + [sym_labeled_statement] = STATE(52), + [sym_expression_statement] = STATE(52), + [sym_if_statement] = STATE(52), + [sym_switch_statement] = STATE(52), + [sym_case_statement] = STATE(52), + [sym_while_statement] = STATE(52), + [sym_do_statement] = STATE(52), + [sym_for_statement] = STATE(52), + [sym_return_statement] = STATE(52), + [sym_break_statement] = STATE(52), + [sym_continue_statement] = STATE(52), + [sym_goto_statement] = STATE(52), + [sym__expression] = STATE(3704), + [sym_comma_expression] = STATE(6857), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__empty_declaration] = STATE(52), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1974), + [sym_dependent_type] = STATE(3481), + [sym_template_declaration] = STATE(52), + [sym_template_instantiation] = STATE(52), + [sym_operator_cast] = STATE(5456), + [sym__constructor_specifiers] = STATE(1974), + [sym_operator_cast_definition] = STATE(52), + [sym_operator_cast_declaration] = STATE(52), + [sym_constructor_or_destructor_definition] = STATE(52), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3608), + [sym_namespace_definition] = STATE(52), + [sym_namespace_alias_definition] = STATE(52), + [sym_using_declaration] = STATE(52), + [sym_alias_declaration] = STATE(52), + [sym_static_assert_declaration] = STATE(52), + [sym_concept_definition] = STATE(52), + [sym_for_range_loop] = STATE(52), + [sym_co_return_statement] = STATE(52), + [sym_co_yield_statement] = STATE(52), + [sym_throw_statement] = STATE(52), + [sym_try_statement] = STATE(52), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4780), + [sym_qualified_identifier] = STATE(2734), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(5456), + [sym_operator_name] = STATE(5080), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_translation_unit_repeat1] = STATE(52), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_operator_cast_definition_repeat1] = STATE(1974), [sym_identifier] = ACTIONS(145), [aux_sym_preproc_include_token1] = ACTIONS(147), [aux_sym_preproc_def_token1] = ACTIONS(149), @@ -33112,7 +34439,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(536), - [anon_sym_RBRACE] = ACTIONS(562), + [anon_sym_RBRACE] = ACTIONS(622), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), @@ -33146,6 +34473,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(187), [anon_sym_continue] = ACTIONS(189), [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -33188,121 +34517,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(143), }, [42] = { - [sym_preproc_include] = STATE(70), - [sym_preproc_def] = STATE(70), - [sym_preproc_function_def] = STATE(70), - [sym_preproc_call] = STATE(70), - [sym_preproc_if] = STATE(70), - [sym_preproc_ifdef] = STATE(70), - [sym_function_definition] = STATE(70), - [sym_declaration] = STATE(70), - [sym_type_definition] = STATE(70), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(3967), - [sym_linkage_specification] = STATE(70), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(1089), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym_ms_call_modifier] = STATE(1829), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4789), - [sym_array_declarator] = STATE(4825), - [sym_compound_statement] = STATE(70), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(2975), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_attributed_statement] = STATE(70), - [sym_labeled_statement] = STATE(70), - [sym_expression_statement] = STATE(70), - [sym_if_statement] = STATE(70), - [sym_switch_statement] = STATE(70), - [sym_case_statement] = STATE(70), - [sym_while_statement] = STATE(70), - [sym_do_statement] = STATE(70), - [sym_for_statement] = STATE(70), - [sym_return_statement] = STATE(70), - [sym_break_statement] = STATE(70), - [sym_continue_statement] = STATE(70), - [sym_goto_statement] = STATE(70), - [sym__expression] = STATE(3645), - [sym_comma_expression] = STATE(6499), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__empty_declaration] = STATE(70), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1790), - [sym_dependent_type] = STATE(3139), - [sym_template_declaration] = STATE(70), - [sym_template_instantiation] = STATE(70), - [sym_operator_cast] = STATE(5178), - [sym__constructor_specifiers] = STATE(1790), - [sym_operator_cast_definition] = STATE(70), - [sym_operator_cast_declaration] = STATE(70), - [sym_constructor_or_destructor_definition] = STATE(70), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3531), - [sym_namespace_definition] = STATE(70), - [sym_namespace_alias_definition] = STATE(70), - [sym_using_declaration] = STATE(70), - [sym_alias_declaration] = STATE(70), - [sym_static_assert_declaration] = STATE(70), - [sym_concept_definition] = STATE(70), - [sym_for_range_loop] = STATE(70), - [sym_co_return_statement] = STATE(70), - [sym_co_yield_statement] = STATE(70), - [sym_throw_statement] = STATE(70), - [sym_try_statement] = STATE(70), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4513), - [sym_qualified_identifier] = STATE(2816), - [sym_qualified_type_identifier] = STATE(3276), - [sym_qualified_operator_cast_identifier] = STATE(5178), - [sym_operator_name] = STATE(4825), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_translation_unit_repeat1] = STATE(70), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_operator_cast_definition_repeat1] = STATE(1790), + [sym_preproc_include] = STATE(40), + [sym_preproc_def] = STATE(40), + [sym_preproc_function_def] = STATE(40), + [sym_preproc_call] = STATE(40), + [sym_preproc_if] = STATE(40), + [sym_preproc_ifdef] = STATE(40), + [sym_function_definition] = STATE(40), + [sym_declaration] = STATE(40), + [sym_type_definition] = STATE(40), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4216), + [sym_linkage_specification] = STATE(40), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym_ms_call_modifier] = STATE(2011), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(5018), + [sym_array_declarator] = STATE(5080), + [sym_compound_statement] = STATE(40), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3372), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_attributed_statement] = STATE(40), + [sym_labeled_statement] = STATE(40), + [sym_expression_statement] = STATE(40), + [sym_if_statement] = STATE(40), + [sym_switch_statement] = STATE(40), + [sym_case_statement] = STATE(40), + [sym_while_statement] = STATE(40), + [sym_do_statement] = STATE(40), + [sym_for_statement] = STATE(40), + [sym_return_statement] = STATE(40), + [sym_break_statement] = STATE(40), + [sym_continue_statement] = STATE(40), + [sym_goto_statement] = STATE(40), + [sym__expression] = STATE(3704), + [sym_comma_expression] = STATE(6857), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__empty_declaration] = STATE(40), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1974), + [sym_dependent_type] = STATE(3481), + [sym_template_declaration] = STATE(40), + [sym_template_instantiation] = STATE(40), + [sym_operator_cast] = STATE(5456), + [sym__constructor_specifiers] = STATE(1974), + [sym_operator_cast_definition] = STATE(40), + [sym_operator_cast_declaration] = STATE(40), + [sym_constructor_or_destructor_definition] = STATE(40), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3608), + [sym_namespace_definition] = STATE(40), + [sym_namespace_alias_definition] = STATE(40), + [sym_using_declaration] = STATE(40), + [sym_alias_declaration] = STATE(40), + [sym_static_assert_declaration] = STATE(40), + [sym_concept_definition] = STATE(40), + [sym_for_range_loop] = STATE(40), + [sym_co_return_statement] = STATE(40), + [sym_co_yield_statement] = STATE(40), + [sym_throw_statement] = STATE(40), + [sym_try_statement] = STATE(40), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4780), + [sym_qualified_identifier] = STATE(2734), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(5456), + [sym_operator_name] = STATE(5080), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_translation_unit_repeat1] = STATE(40), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_operator_cast_definition_repeat1] = STATE(1974), [sym_identifier] = ACTIONS(145), [aux_sym_preproc_include_token1] = ACTIONS(147), [aux_sym_preproc_def_token1] = ACTIONS(149), @@ -33333,7 +34662,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(536), - [anon_sym_RBRACE] = ACTIONS(564), + [anon_sym_RBRACE] = ACTIONS(624), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), @@ -33367,6 +34696,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(187), [anon_sym_continue] = ACTIONS(189), [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -33409,121 +34740,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(143), }, [43] = { - [sym_preproc_include] = STATE(70), - [sym_preproc_def] = STATE(70), - [sym_preproc_function_def] = STATE(70), - [sym_preproc_call] = STATE(70), - [sym_preproc_if] = STATE(70), - [sym_preproc_ifdef] = STATE(70), - [sym_function_definition] = STATE(70), - [sym_declaration] = STATE(70), - [sym_type_definition] = STATE(70), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(3967), - [sym_linkage_specification] = STATE(70), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(1089), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym_ms_call_modifier] = STATE(1829), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4789), - [sym_array_declarator] = STATE(4825), - [sym_compound_statement] = STATE(70), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(2975), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_attributed_statement] = STATE(70), - [sym_labeled_statement] = STATE(70), - [sym_expression_statement] = STATE(70), - [sym_if_statement] = STATE(70), - [sym_switch_statement] = STATE(70), - [sym_case_statement] = STATE(70), - [sym_while_statement] = STATE(70), - [sym_do_statement] = STATE(70), - [sym_for_statement] = STATE(70), - [sym_return_statement] = STATE(70), - [sym_break_statement] = STATE(70), - [sym_continue_statement] = STATE(70), - [sym_goto_statement] = STATE(70), - [sym__expression] = STATE(3645), - [sym_comma_expression] = STATE(6499), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__empty_declaration] = STATE(70), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1790), - [sym_dependent_type] = STATE(3139), - [sym_template_declaration] = STATE(70), - [sym_template_instantiation] = STATE(70), - [sym_operator_cast] = STATE(5178), - [sym__constructor_specifiers] = STATE(1790), - [sym_operator_cast_definition] = STATE(70), - [sym_operator_cast_declaration] = STATE(70), - [sym_constructor_or_destructor_definition] = STATE(70), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3531), - [sym_namespace_definition] = STATE(70), - [sym_namespace_alias_definition] = STATE(70), - [sym_using_declaration] = STATE(70), - [sym_alias_declaration] = STATE(70), - [sym_static_assert_declaration] = STATE(70), - [sym_concept_definition] = STATE(70), - [sym_for_range_loop] = STATE(70), - [sym_co_return_statement] = STATE(70), - [sym_co_yield_statement] = STATE(70), - [sym_throw_statement] = STATE(70), - [sym_try_statement] = STATE(70), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4513), - [sym_qualified_identifier] = STATE(2816), - [sym_qualified_type_identifier] = STATE(3276), - [sym_qualified_operator_cast_identifier] = STATE(5178), - [sym_operator_name] = STATE(4825), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_translation_unit_repeat1] = STATE(70), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_operator_cast_definition_repeat1] = STATE(1790), + [sym_preproc_include] = STATE(52), + [sym_preproc_def] = STATE(52), + [sym_preproc_function_def] = STATE(52), + [sym_preproc_call] = STATE(52), + [sym_preproc_if] = STATE(52), + [sym_preproc_ifdef] = STATE(52), + [sym_function_definition] = STATE(52), + [sym_declaration] = STATE(52), + [sym_type_definition] = STATE(52), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4216), + [sym_linkage_specification] = STATE(52), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym_ms_call_modifier] = STATE(2011), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(5018), + [sym_array_declarator] = STATE(5080), + [sym_compound_statement] = STATE(52), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3372), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_attributed_statement] = STATE(52), + [sym_labeled_statement] = STATE(52), + [sym_expression_statement] = STATE(52), + [sym_if_statement] = STATE(52), + [sym_switch_statement] = STATE(52), + [sym_case_statement] = STATE(52), + [sym_while_statement] = STATE(52), + [sym_do_statement] = STATE(52), + [sym_for_statement] = STATE(52), + [sym_return_statement] = STATE(52), + [sym_break_statement] = STATE(52), + [sym_continue_statement] = STATE(52), + [sym_goto_statement] = STATE(52), + [sym__expression] = STATE(3704), + [sym_comma_expression] = STATE(6857), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__empty_declaration] = STATE(52), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1974), + [sym_dependent_type] = STATE(3481), + [sym_template_declaration] = STATE(52), + [sym_template_instantiation] = STATE(52), + [sym_operator_cast] = STATE(5456), + [sym__constructor_specifiers] = STATE(1974), + [sym_operator_cast_definition] = STATE(52), + [sym_operator_cast_declaration] = STATE(52), + [sym_constructor_or_destructor_definition] = STATE(52), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3608), + [sym_namespace_definition] = STATE(52), + [sym_namespace_alias_definition] = STATE(52), + [sym_using_declaration] = STATE(52), + [sym_alias_declaration] = STATE(52), + [sym_static_assert_declaration] = STATE(52), + [sym_concept_definition] = STATE(52), + [sym_for_range_loop] = STATE(52), + [sym_co_return_statement] = STATE(52), + [sym_co_yield_statement] = STATE(52), + [sym_throw_statement] = STATE(52), + [sym_try_statement] = STATE(52), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4780), + [sym_qualified_identifier] = STATE(2734), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(5456), + [sym_operator_name] = STATE(5080), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_translation_unit_repeat1] = STATE(52), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_operator_cast_definition_repeat1] = STATE(1974), [sym_identifier] = ACTIONS(145), [aux_sym_preproc_include_token1] = ACTIONS(147), [aux_sym_preproc_def_token1] = ACTIONS(149), @@ -33554,7 +34885,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(536), - [anon_sym_RBRACE] = ACTIONS(566), + [anon_sym_RBRACE] = ACTIONS(626), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), @@ -33588,6 +34919,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(187), [anon_sym_continue] = ACTIONS(189), [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -33630,121 +34963,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(143), }, [44] = { - [sym_preproc_include] = STATE(74), - [sym_preproc_def] = STATE(74), - [sym_preproc_function_def] = STATE(74), - [sym_preproc_call] = STATE(74), - [sym_preproc_if] = STATE(74), - [sym_preproc_ifdef] = STATE(74), - [sym_function_definition] = STATE(74), - [sym_declaration] = STATE(74), - [sym_type_definition] = STATE(74), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(3967), - [sym_linkage_specification] = STATE(74), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(1089), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym_ms_call_modifier] = STATE(1829), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4789), - [sym_array_declarator] = STATE(4825), - [sym_compound_statement] = STATE(74), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(2975), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_attributed_statement] = STATE(74), - [sym_labeled_statement] = STATE(74), - [sym_expression_statement] = STATE(74), - [sym_if_statement] = STATE(74), - [sym_switch_statement] = STATE(74), - [sym_case_statement] = STATE(74), - [sym_while_statement] = STATE(74), - [sym_do_statement] = STATE(74), - [sym_for_statement] = STATE(74), - [sym_return_statement] = STATE(74), - [sym_break_statement] = STATE(74), - [sym_continue_statement] = STATE(74), - [sym_goto_statement] = STATE(74), - [sym__expression] = STATE(3645), - [sym_comma_expression] = STATE(6499), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__empty_declaration] = STATE(74), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1790), - [sym_dependent_type] = STATE(3139), - [sym_template_declaration] = STATE(74), - [sym_template_instantiation] = STATE(74), - [sym_operator_cast] = STATE(5178), - [sym__constructor_specifiers] = STATE(1790), - [sym_operator_cast_definition] = STATE(74), - [sym_operator_cast_declaration] = STATE(74), - [sym_constructor_or_destructor_definition] = STATE(74), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3531), - [sym_namespace_definition] = STATE(74), - [sym_namespace_alias_definition] = STATE(74), - [sym_using_declaration] = STATE(74), - [sym_alias_declaration] = STATE(74), - [sym_static_assert_declaration] = STATE(74), - [sym_concept_definition] = STATE(74), - [sym_for_range_loop] = STATE(74), - [sym_co_return_statement] = STATE(74), - [sym_co_yield_statement] = STATE(74), - [sym_throw_statement] = STATE(74), - [sym_try_statement] = STATE(74), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4513), - [sym_qualified_identifier] = STATE(2816), - [sym_qualified_type_identifier] = STATE(3276), - [sym_qualified_operator_cast_identifier] = STATE(5178), - [sym_operator_name] = STATE(4825), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_translation_unit_repeat1] = STATE(74), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_operator_cast_definition_repeat1] = STATE(1790), + [sym_preproc_include] = STATE(43), + [sym_preproc_def] = STATE(43), + [sym_preproc_function_def] = STATE(43), + [sym_preproc_call] = STATE(43), + [sym_preproc_if] = STATE(43), + [sym_preproc_ifdef] = STATE(43), + [sym_function_definition] = STATE(43), + [sym_declaration] = STATE(43), + [sym_type_definition] = STATE(43), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4216), + [sym_linkage_specification] = STATE(43), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym_ms_call_modifier] = STATE(2011), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(5018), + [sym_array_declarator] = STATE(5080), + [sym_compound_statement] = STATE(43), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3372), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_attributed_statement] = STATE(43), + [sym_labeled_statement] = STATE(43), + [sym_expression_statement] = STATE(43), + [sym_if_statement] = STATE(43), + [sym_switch_statement] = STATE(43), + [sym_case_statement] = STATE(43), + [sym_while_statement] = STATE(43), + [sym_do_statement] = STATE(43), + [sym_for_statement] = STATE(43), + [sym_return_statement] = STATE(43), + [sym_break_statement] = STATE(43), + [sym_continue_statement] = STATE(43), + [sym_goto_statement] = STATE(43), + [sym__expression] = STATE(3704), + [sym_comma_expression] = STATE(6857), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__empty_declaration] = STATE(43), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1974), + [sym_dependent_type] = STATE(3481), + [sym_template_declaration] = STATE(43), + [sym_template_instantiation] = STATE(43), + [sym_operator_cast] = STATE(5456), + [sym__constructor_specifiers] = STATE(1974), + [sym_operator_cast_definition] = STATE(43), + [sym_operator_cast_declaration] = STATE(43), + [sym_constructor_or_destructor_definition] = STATE(43), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3608), + [sym_namespace_definition] = STATE(43), + [sym_namespace_alias_definition] = STATE(43), + [sym_using_declaration] = STATE(43), + [sym_alias_declaration] = STATE(43), + [sym_static_assert_declaration] = STATE(43), + [sym_concept_definition] = STATE(43), + [sym_for_range_loop] = STATE(43), + [sym_co_return_statement] = STATE(43), + [sym_co_yield_statement] = STATE(43), + [sym_throw_statement] = STATE(43), + [sym_try_statement] = STATE(43), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4780), + [sym_qualified_identifier] = STATE(2734), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(5456), + [sym_operator_name] = STATE(5080), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_translation_unit_repeat1] = STATE(43), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_operator_cast_definition_repeat1] = STATE(1974), [sym_identifier] = ACTIONS(145), [aux_sym_preproc_include_token1] = ACTIONS(147), [aux_sym_preproc_def_token1] = ACTIONS(149), @@ -33775,7 +35108,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(536), - [anon_sym_RBRACE] = ACTIONS(568), + [anon_sym_RBRACE] = ACTIONS(628), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), @@ -33809,6 +35142,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(187), [anon_sym_continue] = ACTIONS(189), [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -33851,121 +35186,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(143), }, [45] = { - [sym_preproc_include] = STATE(70), - [sym_preproc_def] = STATE(70), - [sym_preproc_function_def] = STATE(70), - [sym_preproc_call] = STATE(70), - [sym_preproc_if] = STATE(70), - [sym_preproc_ifdef] = STATE(70), - [sym_function_definition] = STATE(70), - [sym_declaration] = STATE(70), - [sym_type_definition] = STATE(70), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(3967), - [sym_linkage_specification] = STATE(70), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(1089), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym_ms_call_modifier] = STATE(1829), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4789), - [sym_array_declarator] = STATE(4825), - [sym_compound_statement] = STATE(70), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(2975), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_attributed_statement] = STATE(70), - [sym_labeled_statement] = STATE(70), - [sym_expression_statement] = STATE(70), - [sym_if_statement] = STATE(70), - [sym_switch_statement] = STATE(70), - [sym_case_statement] = STATE(70), - [sym_while_statement] = STATE(70), - [sym_do_statement] = STATE(70), - [sym_for_statement] = STATE(70), - [sym_return_statement] = STATE(70), - [sym_break_statement] = STATE(70), - [sym_continue_statement] = STATE(70), - [sym_goto_statement] = STATE(70), - [sym__expression] = STATE(3645), - [sym_comma_expression] = STATE(6499), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__empty_declaration] = STATE(70), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1790), - [sym_dependent_type] = STATE(3139), - [sym_template_declaration] = STATE(70), - [sym_template_instantiation] = STATE(70), - [sym_operator_cast] = STATE(5178), - [sym__constructor_specifiers] = STATE(1790), - [sym_operator_cast_definition] = STATE(70), - [sym_operator_cast_declaration] = STATE(70), - [sym_constructor_or_destructor_definition] = STATE(70), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3531), - [sym_namespace_definition] = STATE(70), - [sym_namespace_alias_definition] = STATE(70), - [sym_using_declaration] = STATE(70), - [sym_alias_declaration] = STATE(70), - [sym_static_assert_declaration] = STATE(70), - [sym_concept_definition] = STATE(70), - [sym_for_range_loop] = STATE(70), - [sym_co_return_statement] = STATE(70), - [sym_co_yield_statement] = STATE(70), - [sym_throw_statement] = STATE(70), - [sym_try_statement] = STATE(70), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4513), - [sym_qualified_identifier] = STATE(2816), - [sym_qualified_type_identifier] = STATE(3276), - [sym_qualified_operator_cast_identifier] = STATE(5178), - [sym_operator_name] = STATE(4825), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_translation_unit_repeat1] = STATE(70), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_operator_cast_definition_repeat1] = STATE(1790), + [sym_preproc_include] = STATE(52), + [sym_preproc_def] = STATE(52), + [sym_preproc_function_def] = STATE(52), + [sym_preproc_call] = STATE(52), + [sym_preproc_if] = STATE(52), + [sym_preproc_ifdef] = STATE(52), + [sym_function_definition] = STATE(52), + [sym_declaration] = STATE(52), + [sym_type_definition] = STATE(52), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4216), + [sym_linkage_specification] = STATE(52), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym_ms_call_modifier] = STATE(2011), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(5018), + [sym_array_declarator] = STATE(5080), + [sym_compound_statement] = STATE(52), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3372), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_attributed_statement] = STATE(52), + [sym_labeled_statement] = STATE(52), + [sym_expression_statement] = STATE(52), + [sym_if_statement] = STATE(52), + [sym_switch_statement] = STATE(52), + [sym_case_statement] = STATE(52), + [sym_while_statement] = STATE(52), + [sym_do_statement] = STATE(52), + [sym_for_statement] = STATE(52), + [sym_return_statement] = STATE(52), + [sym_break_statement] = STATE(52), + [sym_continue_statement] = STATE(52), + [sym_goto_statement] = STATE(52), + [sym__expression] = STATE(3704), + [sym_comma_expression] = STATE(6857), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__empty_declaration] = STATE(52), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1974), + [sym_dependent_type] = STATE(3481), + [sym_template_declaration] = STATE(52), + [sym_template_instantiation] = STATE(52), + [sym_operator_cast] = STATE(5456), + [sym__constructor_specifiers] = STATE(1974), + [sym_operator_cast_definition] = STATE(52), + [sym_operator_cast_declaration] = STATE(52), + [sym_constructor_or_destructor_definition] = STATE(52), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3608), + [sym_namespace_definition] = STATE(52), + [sym_namespace_alias_definition] = STATE(52), + [sym_using_declaration] = STATE(52), + [sym_alias_declaration] = STATE(52), + [sym_static_assert_declaration] = STATE(52), + [sym_concept_definition] = STATE(52), + [sym_for_range_loop] = STATE(52), + [sym_co_return_statement] = STATE(52), + [sym_co_yield_statement] = STATE(52), + [sym_throw_statement] = STATE(52), + [sym_try_statement] = STATE(52), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4780), + [sym_qualified_identifier] = STATE(2734), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(5456), + [sym_operator_name] = STATE(5080), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_translation_unit_repeat1] = STATE(52), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_operator_cast_definition_repeat1] = STATE(1974), [sym_identifier] = ACTIONS(145), [aux_sym_preproc_include_token1] = ACTIONS(147), [aux_sym_preproc_def_token1] = ACTIONS(149), @@ -33996,7 +35331,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(536), - [anon_sym_RBRACE] = ACTIONS(570), + [anon_sym_RBRACE] = ACTIONS(630), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), @@ -34030,6 +35365,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(187), [anon_sym_continue] = ACTIONS(189), [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -34072,121 +35409,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(143), }, [46] = { - [sym_preproc_include] = STATE(70), - [sym_preproc_def] = STATE(70), - [sym_preproc_function_def] = STATE(70), - [sym_preproc_call] = STATE(70), - [sym_preproc_if] = STATE(70), - [sym_preproc_ifdef] = STATE(70), - [sym_function_definition] = STATE(70), - [sym_declaration] = STATE(70), - [sym_type_definition] = STATE(70), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(3967), - [sym_linkage_specification] = STATE(70), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(1089), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym_ms_call_modifier] = STATE(1829), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4789), - [sym_array_declarator] = STATE(4825), - [sym_compound_statement] = STATE(70), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(2975), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_attributed_statement] = STATE(70), - [sym_labeled_statement] = STATE(70), - [sym_expression_statement] = STATE(70), - [sym_if_statement] = STATE(70), - [sym_switch_statement] = STATE(70), - [sym_case_statement] = STATE(70), - [sym_while_statement] = STATE(70), - [sym_do_statement] = STATE(70), - [sym_for_statement] = STATE(70), - [sym_return_statement] = STATE(70), - [sym_break_statement] = STATE(70), - [sym_continue_statement] = STATE(70), - [sym_goto_statement] = STATE(70), - [sym__expression] = STATE(3645), - [sym_comma_expression] = STATE(6499), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__empty_declaration] = STATE(70), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1790), - [sym_dependent_type] = STATE(3139), - [sym_template_declaration] = STATE(70), - [sym_template_instantiation] = STATE(70), - [sym_operator_cast] = STATE(5178), - [sym__constructor_specifiers] = STATE(1790), - [sym_operator_cast_definition] = STATE(70), - [sym_operator_cast_declaration] = STATE(70), - [sym_constructor_or_destructor_definition] = STATE(70), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3531), - [sym_namespace_definition] = STATE(70), - [sym_namespace_alias_definition] = STATE(70), - [sym_using_declaration] = STATE(70), - [sym_alias_declaration] = STATE(70), - [sym_static_assert_declaration] = STATE(70), - [sym_concept_definition] = STATE(70), - [sym_for_range_loop] = STATE(70), - [sym_co_return_statement] = STATE(70), - [sym_co_yield_statement] = STATE(70), - [sym_throw_statement] = STATE(70), - [sym_try_statement] = STATE(70), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4513), - [sym_qualified_identifier] = STATE(2816), - [sym_qualified_type_identifier] = STATE(3276), - [sym_qualified_operator_cast_identifier] = STATE(5178), - [sym_operator_name] = STATE(4825), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_translation_unit_repeat1] = STATE(70), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_operator_cast_definition_repeat1] = STATE(1790), + [sym_preproc_include] = STATE(53), + [sym_preproc_def] = STATE(53), + [sym_preproc_function_def] = STATE(53), + [sym_preproc_call] = STATE(53), + [sym_preproc_if] = STATE(53), + [sym_preproc_ifdef] = STATE(53), + [sym_function_definition] = STATE(53), + [sym_declaration] = STATE(53), + [sym_type_definition] = STATE(53), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4216), + [sym_linkage_specification] = STATE(53), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym_ms_call_modifier] = STATE(2011), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(5018), + [sym_array_declarator] = STATE(5080), + [sym_compound_statement] = STATE(53), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3372), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_attributed_statement] = STATE(53), + [sym_labeled_statement] = STATE(53), + [sym_expression_statement] = STATE(53), + [sym_if_statement] = STATE(53), + [sym_switch_statement] = STATE(53), + [sym_case_statement] = STATE(53), + [sym_while_statement] = STATE(53), + [sym_do_statement] = STATE(53), + [sym_for_statement] = STATE(53), + [sym_return_statement] = STATE(53), + [sym_break_statement] = STATE(53), + [sym_continue_statement] = STATE(53), + [sym_goto_statement] = STATE(53), + [sym__expression] = STATE(3704), + [sym_comma_expression] = STATE(6857), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__empty_declaration] = STATE(53), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1974), + [sym_dependent_type] = STATE(3481), + [sym_template_declaration] = STATE(53), + [sym_template_instantiation] = STATE(53), + [sym_operator_cast] = STATE(5456), + [sym__constructor_specifiers] = STATE(1974), + [sym_operator_cast_definition] = STATE(53), + [sym_operator_cast_declaration] = STATE(53), + [sym_constructor_or_destructor_definition] = STATE(53), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3608), + [sym_namespace_definition] = STATE(53), + [sym_namespace_alias_definition] = STATE(53), + [sym_using_declaration] = STATE(53), + [sym_alias_declaration] = STATE(53), + [sym_static_assert_declaration] = STATE(53), + [sym_concept_definition] = STATE(53), + [sym_for_range_loop] = STATE(53), + [sym_co_return_statement] = STATE(53), + [sym_co_yield_statement] = STATE(53), + [sym_throw_statement] = STATE(53), + [sym_try_statement] = STATE(53), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4780), + [sym_qualified_identifier] = STATE(2734), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(5456), + [sym_operator_name] = STATE(5080), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_translation_unit_repeat1] = STATE(53), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_operator_cast_definition_repeat1] = STATE(1974), [sym_identifier] = ACTIONS(145), [aux_sym_preproc_include_token1] = ACTIONS(147), [aux_sym_preproc_def_token1] = ACTIONS(149), @@ -34217,7 +35554,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(536), - [anon_sym_RBRACE] = ACTIONS(572), + [anon_sym_RBRACE] = ACTIONS(632), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), @@ -34251,6 +35588,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(187), [anon_sym_continue] = ACTIONS(189), [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -34293,121 +35632,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(143), }, [47] = { - [sym_preproc_include] = STATE(49), - [sym_preproc_def] = STATE(49), - [sym_preproc_function_def] = STATE(49), - [sym_preproc_call] = STATE(49), - [sym_preproc_if] = STATE(49), - [sym_preproc_ifdef] = STATE(49), - [sym_function_definition] = STATE(49), - [sym_declaration] = STATE(49), - [sym_type_definition] = STATE(49), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(3967), - [sym_linkage_specification] = STATE(49), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(1089), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym_ms_call_modifier] = STATE(1829), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4789), - [sym_array_declarator] = STATE(4825), - [sym_compound_statement] = STATE(49), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(2975), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_attributed_statement] = STATE(49), - [sym_labeled_statement] = STATE(49), - [sym_expression_statement] = STATE(49), - [sym_if_statement] = STATE(49), - [sym_switch_statement] = STATE(49), - [sym_case_statement] = STATE(49), - [sym_while_statement] = STATE(49), - [sym_do_statement] = STATE(49), - [sym_for_statement] = STATE(49), - [sym_return_statement] = STATE(49), - [sym_break_statement] = STATE(49), - [sym_continue_statement] = STATE(49), - [sym_goto_statement] = STATE(49), - [sym__expression] = STATE(3645), - [sym_comma_expression] = STATE(6499), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__empty_declaration] = STATE(49), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1790), - [sym_dependent_type] = STATE(3139), - [sym_template_declaration] = STATE(49), - [sym_template_instantiation] = STATE(49), - [sym_operator_cast] = STATE(5178), - [sym__constructor_specifiers] = STATE(1790), - [sym_operator_cast_definition] = STATE(49), - [sym_operator_cast_declaration] = STATE(49), - [sym_constructor_or_destructor_definition] = STATE(49), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3531), - [sym_namespace_definition] = STATE(49), - [sym_namespace_alias_definition] = STATE(49), - [sym_using_declaration] = STATE(49), - [sym_alias_declaration] = STATE(49), - [sym_static_assert_declaration] = STATE(49), - [sym_concept_definition] = STATE(49), - [sym_for_range_loop] = STATE(49), - [sym_co_return_statement] = STATE(49), - [sym_co_yield_statement] = STATE(49), - [sym_throw_statement] = STATE(49), - [sym_try_statement] = STATE(49), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4513), - [sym_qualified_identifier] = STATE(2816), - [sym_qualified_type_identifier] = STATE(3276), - [sym_qualified_operator_cast_identifier] = STATE(5178), - [sym_operator_name] = STATE(4825), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_translation_unit_repeat1] = STATE(49), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_operator_cast_definition_repeat1] = STATE(1790), + [sym_preproc_include] = STATE(45), + [sym_preproc_def] = STATE(45), + [sym_preproc_function_def] = STATE(45), + [sym_preproc_call] = STATE(45), + [sym_preproc_if] = STATE(45), + [sym_preproc_ifdef] = STATE(45), + [sym_function_definition] = STATE(45), + [sym_declaration] = STATE(45), + [sym_type_definition] = STATE(45), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4216), + [sym_linkage_specification] = STATE(45), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym_ms_call_modifier] = STATE(2011), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(5018), + [sym_array_declarator] = STATE(5080), + [sym_compound_statement] = STATE(45), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3372), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_attributed_statement] = STATE(45), + [sym_labeled_statement] = STATE(45), + [sym_expression_statement] = STATE(45), + [sym_if_statement] = STATE(45), + [sym_switch_statement] = STATE(45), + [sym_case_statement] = STATE(45), + [sym_while_statement] = STATE(45), + [sym_do_statement] = STATE(45), + [sym_for_statement] = STATE(45), + [sym_return_statement] = STATE(45), + [sym_break_statement] = STATE(45), + [sym_continue_statement] = STATE(45), + [sym_goto_statement] = STATE(45), + [sym__expression] = STATE(3704), + [sym_comma_expression] = STATE(6857), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__empty_declaration] = STATE(45), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1974), + [sym_dependent_type] = STATE(3481), + [sym_template_declaration] = STATE(45), + [sym_template_instantiation] = STATE(45), + [sym_operator_cast] = STATE(5456), + [sym__constructor_specifiers] = STATE(1974), + [sym_operator_cast_definition] = STATE(45), + [sym_operator_cast_declaration] = STATE(45), + [sym_constructor_or_destructor_definition] = STATE(45), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3608), + [sym_namespace_definition] = STATE(45), + [sym_namespace_alias_definition] = STATE(45), + [sym_using_declaration] = STATE(45), + [sym_alias_declaration] = STATE(45), + [sym_static_assert_declaration] = STATE(45), + [sym_concept_definition] = STATE(45), + [sym_for_range_loop] = STATE(45), + [sym_co_return_statement] = STATE(45), + [sym_co_yield_statement] = STATE(45), + [sym_throw_statement] = STATE(45), + [sym_try_statement] = STATE(45), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4780), + [sym_qualified_identifier] = STATE(2734), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(5456), + [sym_operator_name] = STATE(5080), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_translation_unit_repeat1] = STATE(45), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_operator_cast_definition_repeat1] = STATE(1974), [sym_identifier] = ACTIONS(145), [aux_sym_preproc_include_token1] = ACTIONS(147), [aux_sym_preproc_def_token1] = ACTIONS(149), @@ -34438,7 +35777,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(536), - [anon_sym_RBRACE] = ACTIONS(574), + [anon_sym_RBRACE] = ACTIONS(634), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), @@ -34472,6 +35811,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(187), [anon_sym_continue] = ACTIONS(189), [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -34514,121 +35855,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(143), }, [48] = { - [sym_preproc_include] = STATE(64), - [sym_preproc_def] = STATE(64), - [sym_preproc_function_def] = STATE(64), - [sym_preproc_call] = STATE(64), - [sym_preproc_if] = STATE(64), - [sym_preproc_ifdef] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_declaration] = STATE(64), - [sym_type_definition] = STATE(64), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(3967), - [sym_linkage_specification] = STATE(64), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(1089), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym_ms_call_modifier] = STATE(1829), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4789), - [sym_array_declarator] = STATE(4825), - [sym_compound_statement] = STATE(64), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(2975), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_attributed_statement] = STATE(64), - [sym_labeled_statement] = STATE(64), - [sym_expression_statement] = STATE(64), - [sym_if_statement] = STATE(64), - [sym_switch_statement] = STATE(64), - [sym_case_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_do_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_return_statement] = STATE(64), - [sym_break_statement] = STATE(64), - [sym_continue_statement] = STATE(64), - [sym_goto_statement] = STATE(64), - [sym__expression] = STATE(3645), - [sym_comma_expression] = STATE(6499), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__empty_declaration] = STATE(64), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1790), - [sym_dependent_type] = STATE(3139), - [sym_template_declaration] = STATE(64), - [sym_template_instantiation] = STATE(64), - [sym_operator_cast] = STATE(5178), - [sym__constructor_specifiers] = STATE(1790), - [sym_operator_cast_definition] = STATE(64), - [sym_operator_cast_declaration] = STATE(64), - [sym_constructor_or_destructor_definition] = STATE(64), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3531), - [sym_namespace_definition] = STATE(64), - [sym_namespace_alias_definition] = STATE(64), - [sym_using_declaration] = STATE(64), - [sym_alias_declaration] = STATE(64), - [sym_static_assert_declaration] = STATE(64), - [sym_concept_definition] = STATE(64), - [sym_for_range_loop] = STATE(64), - [sym_co_return_statement] = STATE(64), - [sym_co_yield_statement] = STATE(64), - [sym_throw_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4513), - [sym_qualified_identifier] = STATE(2816), - [sym_qualified_type_identifier] = STATE(3276), - [sym_qualified_operator_cast_identifier] = STATE(5178), - [sym_operator_name] = STATE(4825), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_translation_unit_repeat1] = STATE(64), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_operator_cast_definition_repeat1] = STATE(1790), + [sym_preproc_include] = STATE(52), + [sym_preproc_def] = STATE(52), + [sym_preproc_function_def] = STATE(52), + [sym_preproc_call] = STATE(52), + [sym_preproc_if] = STATE(52), + [sym_preproc_ifdef] = STATE(52), + [sym_function_definition] = STATE(52), + [sym_declaration] = STATE(52), + [sym_type_definition] = STATE(52), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4216), + [sym_linkage_specification] = STATE(52), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym_ms_call_modifier] = STATE(2011), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(5018), + [sym_array_declarator] = STATE(5080), + [sym_compound_statement] = STATE(52), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3372), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_attributed_statement] = STATE(52), + [sym_labeled_statement] = STATE(52), + [sym_expression_statement] = STATE(52), + [sym_if_statement] = STATE(52), + [sym_switch_statement] = STATE(52), + [sym_case_statement] = STATE(52), + [sym_while_statement] = STATE(52), + [sym_do_statement] = STATE(52), + [sym_for_statement] = STATE(52), + [sym_return_statement] = STATE(52), + [sym_break_statement] = STATE(52), + [sym_continue_statement] = STATE(52), + [sym_goto_statement] = STATE(52), + [sym__expression] = STATE(3704), + [sym_comma_expression] = STATE(6857), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__empty_declaration] = STATE(52), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1974), + [sym_dependent_type] = STATE(3481), + [sym_template_declaration] = STATE(52), + [sym_template_instantiation] = STATE(52), + [sym_operator_cast] = STATE(5456), + [sym__constructor_specifiers] = STATE(1974), + [sym_operator_cast_definition] = STATE(52), + [sym_operator_cast_declaration] = STATE(52), + [sym_constructor_or_destructor_definition] = STATE(52), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3608), + [sym_namespace_definition] = STATE(52), + [sym_namespace_alias_definition] = STATE(52), + [sym_using_declaration] = STATE(52), + [sym_alias_declaration] = STATE(52), + [sym_static_assert_declaration] = STATE(52), + [sym_concept_definition] = STATE(52), + [sym_for_range_loop] = STATE(52), + [sym_co_return_statement] = STATE(52), + [sym_co_yield_statement] = STATE(52), + [sym_throw_statement] = STATE(52), + [sym_try_statement] = STATE(52), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4780), + [sym_qualified_identifier] = STATE(2734), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(5456), + [sym_operator_name] = STATE(5080), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_translation_unit_repeat1] = STATE(52), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_operator_cast_definition_repeat1] = STATE(1974), [sym_identifier] = ACTIONS(145), [aux_sym_preproc_include_token1] = ACTIONS(147), [aux_sym_preproc_def_token1] = ACTIONS(149), @@ -34659,7 +36000,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(536), - [anon_sym_RBRACE] = ACTIONS(576), + [anon_sym_RBRACE] = ACTIONS(636), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), @@ -34693,6 +36034,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(187), [anon_sym_continue] = ACTIONS(189), [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -34744,28 +36087,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(70), [sym_declaration] = STATE(70), [sym_type_definition] = STATE(70), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(3967), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4216), [sym_linkage_specification] = STATE(70), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(1089), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym_ms_call_modifier] = STATE(1829), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4789), - [sym_array_declarator] = STATE(4825), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym_ms_call_modifier] = STATE(2011), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(5018), + [sym_array_declarator] = STATE(5080), [sym_compound_statement] = STATE(70), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(2975), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3372), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), [sym_attributed_statement] = STATE(70), [sym_labeled_statement] = STATE(70), [sym_expression_statement] = STATE(70), @@ -34779,44 +36122,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(70), [sym_continue_statement] = STATE(70), [sym_goto_statement] = STATE(70), - [sym__expression] = STATE(3645), - [sym_comma_expression] = STATE(6499), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), + [sym__expression] = STATE(3704), + [sym_comma_expression] = STATE(6857), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), [sym__empty_declaration] = STATE(70), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1790), - [sym_dependent_type] = STATE(3139), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1974), + [sym_dependent_type] = STATE(3481), [sym_template_declaration] = STATE(70), [sym_template_instantiation] = STATE(70), - [sym_operator_cast] = STATE(5178), - [sym__constructor_specifiers] = STATE(1790), + [sym_operator_cast] = STATE(5456), + [sym__constructor_specifiers] = STATE(1974), [sym_operator_cast_definition] = STATE(70), [sym_operator_cast_declaration] = STATE(70), [sym_constructor_or_destructor_definition] = STATE(70), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3531), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3608), [sym_namespace_definition] = STATE(70), [sym_namespace_alias_definition] = STATE(70), [sym_using_declaration] = STATE(70), @@ -34828,28 +36171,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(70), [sym_throw_statement] = STATE(70), [sym_try_statement] = STATE(70), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4513), - [sym_qualified_identifier] = STATE(2816), - [sym_qualified_type_identifier] = STATE(3276), - [sym_qualified_operator_cast_identifier] = STATE(5178), - [sym_operator_name] = STATE(4825), - [sym_user_defined_literal] = STATE(3428), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4780), + [sym_qualified_identifier] = STATE(2734), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(5456), + [sym_operator_name] = STATE(5080), + [sym_user_defined_literal] = STATE(3435), [aux_sym_translation_unit_repeat1] = STATE(70), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_operator_cast_definition_repeat1] = STATE(1790), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_operator_cast_definition_repeat1] = STATE(1974), [sym_identifier] = ACTIONS(145), [aux_sym_preproc_include_token1] = ACTIONS(147), [aux_sym_preproc_def_token1] = ACTIONS(149), @@ -34880,7 +36223,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(536), - [anon_sym_RBRACE] = ACTIONS(578), + [anon_sym_RBRACE] = ACTIONS(638), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), @@ -34914,6 +36257,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(187), [anon_sym_continue] = ACTIONS(189), [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -34956,129 +36301,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(143), }, [50] = { - [sym_preproc_include] = STATE(62), - [sym_preproc_def] = STATE(62), - [sym_preproc_function_def] = STATE(62), - [sym_preproc_call] = STATE(62), - [sym_preproc_if] = STATE(62), - [sym_preproc_ifdef] = STATE(62), - [sym_function_definition] = STATE(62), - [sym_declaration] = STATE(62), - [sym_type_definition] = STATE(62), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(3994), - [sym_linkage_specification] = STATE(62), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(1089), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym_ms_call_modifier] = STATE(1868), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4765), - [sym_array_declarator] = STATE(4825), - [sym_compound_statement] = STATE(62), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(3033), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_attributed_statement] = STATE(62), - [sym_labeled_statement] = STATE(62), - [sym_expression_statement] = STATE(62), - [sym_if_statement] = STATE(62), - [sym_switch_statement] = STATE(62), - [sym_case_statement] = STATE(62), - [sym_while_statement] = STATE(62), - [sym_do_statement] = STATE(62), - [sym_for_statement] = STATE(62), - [sym_return_statement] = STATE(62), - [sym_break_statement] = STATE(62), - [sym_continue_statement] = STATE(62), - [sym_goto_statement] = STATE(62), - [sym__expression] = STATE(3612), - [sym_comma_expression] = STATE(6539), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__empty_declaration] = STATE(62), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1772), - [sym_dependent_type] = STATE(3139), - [sym_template_declaration] = STATE(62), - [sym_template_instantiation] = STATE(62), - [sym_operator_cast] = STATE(5212), - [sym__constructor_specifiers] = STATE(1772), - [sym_operator_cast_definition] = STATE(62), - [sym_operator_cast_declaration] = STATE(62), - [sym_constructor_or_destructor_definition] = STATE(62), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3531), - [sym_namespace_definition] = STATE(62), - [sym_namespace_alias_definition] = STATE(62), - [sym_using_declaration] = STATE(62), - [sym_alias_declaration] = STATE(62), - [sym_static_assert_declaration] = STATE(62), - [sym_concept_definition] = STATE(62), - [sym_for_range_loop] = STATE(62), - [sym_co_return_statement] = STATE(62), - [sym_co_yield_statement] = STATE(62), - [sym_throw_statement] = STATE(62), - [sym_try_statement] = STATE(62), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4513), - [sym_qualified_identifier] = STATE(2816), - [sym_qualified_type_identifier] = STATE(3276), - [sym_qualified_operator_cast_identifier] = STATE(5212), - [sym_operator_name] = STATE(4825), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_translation_unit_repeat1] = STATE(62), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(303), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_operator_cast_definition_repeat1] = STATE(1772), - [sym_identifier] = ACTIONS(580), - [aux_sym_preproc_include_token1] = ACTIONS(582), - [aux_sym_preproc_def_token1] = ACTIONS(584), - [aux_sym_preproc_if_token1] = ACTIONS(586), - [aux_sym_preproc_if_token2] = ACTIONS(588), - [aux_sym_preproc_ifdef_token1] = ACTIONS(590), - [aux_sym_preproc_ifdef_token2] = ACTIONS(590), - [sym_preproc_directive] = ACTIONS(592), + [sym_preproc_include] = STATE(48), + [sym_preproc_def] = STATE(48), + [sym_preproc_function_def] = STATE(48), + [sym_preproc_call] = STATE(48), + [sym_preproc_if] = STATE(48), + [sym_preproc_ifdef] = STATE(48), + [sym_function_definition] = STATE(48), + [sym_declaration] = STATE(48), + [sym_type_definition] = STATE(48), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4216), + [sym_linkage_specification] = STATE(48), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym_ms_call_modifier] = STATE(2011), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(5018), + [sym_array_declarator] = STATE(5080), + [sym_compound_statement] = STATE(48), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3372), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_attributed_statement] = STATE(48), + [sym_labeled_statement] = STATE(48), + [sym_expression_statement] = STATE(48), + [sym_if_statement] = STATE(48), + [sym_switch_statement] = STATE(48), + [sym_case_statement] = STATE(48), + [sym_while_statement] = STATE(48), + [sym_do_statement] = STATE(48), + [sym_for_statement] = STATE(48), + [sym_return_statement] = STATE(48), + [sym_break_statement] = STATE(48), + [sym_continue_statement] = STATE(48), + [sym_goto_statement] = STATE(48), + [sym__expression] = STATE(3704), + [sym_comma_expression] = STATE(6857), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__empty_declaration] = STATE(48), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1974), + [sym_dependent_type] = STATE(3481), + [sym_template_declaration] = STATE(48), + [sym_template_instantiation] = STATE(48), + [sym_operator_cast] = STATE(5456), + [sym__constructor_specifiers] = STATE(1974), + [sym_operator_cast_definition] = STATE(48), + [sym_operator_cast_declaration] = STATE(48), + [sym_constructor_or_destructor_definition] = STATE(48), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3608), + [sym_namespace_definition] = STATE(48), + [sym_namespace_alias_definition] = STATE(48), + [sym_using_declaration] = STATE(48), + [sym_alias_declaration] = STATE(48), + [sym_static_assert_declaration] = STATE(48), + [sym_concept_definition] = STATE(48), + [sym_for_range_loop] = STATE(48), + [sym_co_return_statement] = STATE(48), + [sym_co_yield_statement] = STATE(48), + [sym_throw_statement] = STATE(48), + [sym_try_statement] = STATE(48), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4780), + [sym_qualified_identifier] = STATE(2734), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(5456), + [sym_operator_name] = STATE(5080), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_translation_unit_repeat1] = STATE(48), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_operator_cast_definition_repeat1] = STATE(1974), + [sym_identifier] = ACTIONS(145), + [aux_sym_preproc_include_token1] = ACTIONS(147), + [aux_sym_preproc_def_token1] = ACTIONS(149), + [aux_sym_preproc_if_token1] = ACTIONS(153), + [aux_sym_preproc_ifdef_token1] = ACTIONS(155), + [aux_sym_preproc_ifdef_token2] = ACTIONS(155), + [sym_preproc_directive] = ACTIONS(157), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -35087,9 +36431,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(594), - [anon_sym_typedef] = ACTIONS(596), - [anon_sym_extern] = ACTIONS(598), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_typedef] = ACTIONS(161), + [anon_sym_extern] = ACTIONS(163), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(43), @@ -35101,7 +36445,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(49), [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(600), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_RBRACE] = ACTIONS(640), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), @@ -35124,17 +36469,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(65), [anon_sym_struct] = ACTIONS(67), [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(602), - [anon_sym_switch] = ACTIONS(604), - [anon_sym_case] = ACTIONS(606), - [anon_sym_default] = ACTIONS(608), - [anon_sym_while] = ACTIONS(610), - [anon_sym_do] = ACTIONS(612), - [anon_sym_for] = ACTIONS(614), - [anon_sym_return] = ACTIONS(616), - [anon_sym_break] = ACTIONS(618), - [anon_sym_continue] = ACTIONS(620), - [anon_sym_goto] = ACTIONS(622), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -35158,17 +36505,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_virtual] = ACTIONS(109), [anon_sym_explicit] = ACTIONS(111), [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(624), + [anon_sym_template] = ACTIONS(195), [anon_sym_operator] = ACTIONS(117), - [anon_sym_try] = ACTIONS(626), + [anon_sym_try] = ACTIONS(197), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(628), - [anon_sym_namespace] = ACTIONS(630), - [anon_sym_using] = ACTIONS(632), - [anon_sym_static_assert] = ACTIONS(634), - [anon_sym_concept] = ACTIONS(636), - [anon_sym_co_return] = ACTIONS(638), - [anon_sym_co_yield] = ACTIONS(640), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_namespace] = ACTIONS(201), + [anon_sym_using] = ACTIONS(203), + [anon_sym_static_assert] = ACTIONS(205), + [anon_sym_concept] = ACTIONS(207), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -35177,129 +36524,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(143), }, [51] = { - [sym_preproc_include] = STATE(50), - [sym_preproc_def] = STATE(50), - [sym_preproc_function_def] = STATE(50), - [sym_preproc_call] = STATE(50), - [sym_preproc_if] = STATE(50), - [sym_preproc_ifdef] = STATE(50), - [sym_function_definition] = STATE(50), - [sym_declaration] = STATE(50), - [sym_type_definition] = STATE(50), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(3994), - [sym_linkage_specification] = STATE(50), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(1089), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym_ms_call_modifier] = STATE(1868), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4765), - [sym_array_declarator] = STATE(4825), - [sym_compound_statement] = STATE(50), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(3033), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_attributed_statement] = STATE(50), - [sym_labeled_statement] = STATE(50), - [sym_expression_statement] = STATE(50), - [sym_if_statement] = STATE(50), - [sym_switch_statement] = STATE(50), - [sym_case_statement] = STATE(50), - [sym_while_statement] = STATE(50), - [sym_do_statement] = STATE(50), - [sym_for_statement] = STATE(50), - [sym_return_statement] = STATE(50), - [sym_break_statement] = STATE(50), - [sym_continue_statement] = STATE(50), - [sym_goto_statement] = STATE(50), - [sym__expression] = STATE(3612), - [sym_comma_expression] = STATE(6539), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__empty_declaration] = STATE(50), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1772), - [sym_dependent_type] = STATE(3139), - [sym_template_declaration] = STATE(50), - [sym_template_instantiation] = STATE(50), - [sym_operator_cast] = STATE(5212), - [sym__constructor_specifiers] = STATE(1772), - [sym_operator_cast_definition] = STATE(50), - [sym_operator_cast_declaration] = STATE(50), - [sym_constructor_or_destructor_definition] = STATE(50), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3531), - [sym_namespace_definition] = STATE(50), - [sym_namespace_alias_definition] = STATE(50), - [sym_using_declaration] = STATE(50), - [sym_alias_declaration] = STATE(50), - [sym_static_assert_declaration] = STATE(50), - [sym_concept_definition] = STATE(50), - [sym_for_range_loop] = STATE(50), - [sym_co_return_statement] = STATE(50), - [sym_co_yield_statement] = STATE(50), - [sym_throw_statement] = STATE(50), - [sym_try_statement] = STATE(50), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4513), - [sym_qualified_identifier] = STATE(2816), - [sym_qualified_type_identifier] = STATE(3276), - [sym_qualified_operator_cast_identifier] = STATE(5212), - [sym_operator_name] = STATE(4825), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_translation_unit_repeat1] = STATE(50), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(303), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_operator_cast_definition_repeat1] = STATE(1772), - [sym_identifier] = ACTIONS(580), - [aux_sym_preproc_include_token1] = ACTIONS(582), - [aux_sym_preproc_def_token1] = ACTIONS(584), - [aux_sym_preproc_if_token1] = ACTIONS(586), - [aux_sym_preproc_if_token2] = ACTIONS(642), - [aux_sym_preproc_ifdef_token1] = ACTIONS(590), - [aux_sym_preproc_ifdef_token2] = ACTIONS(590), - [sym_preproc_directive] = ACTIONS(592), + [sym_preproc_include] = STATE(52), + [sym_preproc_def] = STATE(52), + [sym_preproc_function_def] = STATE(52), + [sym_preproc_call] = STATE(52), + [sym_preproc_if] = STATE(52), + [sym_preproc_ifdef] = STATE(52), + [sym_function_definition] = STATE(52), + [sym_declaration] = STATE(52), + [sym_type_definition] = STATE(52), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4216), + [sym_linkage_specification] = STATE(52), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym_ms_call_modifier] = STATE(2011), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(5018), + [sym_array_declarator] = STATE(5080), + [sym_compound_statement] = STATE(52), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3372), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_attributed_statement] = STATE(52), + [sym_labeled_statement] = STATE(52), + [sym_expression_statement] = STATE(52), + [sym_if_statement] = STATE(52), + [sym_switch_statement] = STATE(52), + [sym_case_statement] = STATE(52), + [sym_while_statement] = STATE(52), + [sym_do_statement] = STATE(52), + [sym_for_statement] = STATE(52), + [sym_return_statement] = STATE(52), + [sym_break_statement] = STATE(52), + [sym_continue_statement] = STATE(52), + [sym_goto_statement] = STATE(52), + [sym__expression] = STATE(3704), + [sym_comma_expression] = STATE(6857), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__empty_declaration] = STATE(52), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1974), + [sym_dependent_type] = STATE(3481), + [sym_template_declaration] = STATE(52), + [sym_template_instantiation] = STATE(52), + [sym_operator_cast] = STATE(5456), + [sym__constructor_specifiers] = STATE(1974), + [sym_operator_cast_definition] = STATE(52), + [sym_operator_cast_declaration] = STATE(52), + [sym_constructor_or_destructor_definition] = STATE(52), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3608), + [sym_namespace_definition] = STATE(52), + [sym_namespace_alias_definition] = STATE(52), + [sym_using_declaration] = STATE(52), + [sym_alias_declaration] = STATE(52), + [sym_static_assert_declaration] = STATE(52), + [sym_concept_definition] = STATE(52), + [sym_for_range_loop] = STATE(52), + [sym_co_return_statement] = STATE(52), + [sym_co_yield_statement] = STATE(52), + [sym_throw_statement] = STATE(52), + [sym_try_statement] = STATE(52), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4780), + [sym_qualified_identifier] = STATE(2734), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(5456), + [sym_operator_name] = STATE(5080), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_translation_unit_repeat1] = STATE(52), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_operator_cast_definition_repeat1] = STATE(1974), + [sym_identifier] = ACTIONS(145), + [aux_sym_preproc_include_token1] = ACTIONS(147), + [aux_sym_preproc_def_token1] = ACTIONS(149), + [aux_sym_preproc_if_token1] = ACTIONS(153), + [aux_sym_preproc_ifdef_token1] = ACTIONS(155), + [aux_sym_preproc_ifdef_token2] = ACTIONS(155), + [sym_preproc_directive] = ACTIONS(157), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -35308,9 +36654,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(594), - [anon_sym_typedef] = ACTIONS(596), - [anon_sym_extern] = ACTIONS(598), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_typedef] = ACTIONS(161), + [anon_sym_extern] = ACTIONS(163), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), [anon_sym_LBRACK_LBRACK] = ACTIONS(43), @@ -35322,7 +36668,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(49), [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(600), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_RBRACE] = ACTIONS(642), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), @@ -35345,17 +36692,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(65), [anon_sym_struct] = ACTIONS(67), [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(602), - [anon_sym_switch] = ACTIONS(604), - [anon_sym_case] = ACTIONS(606), - [anon_sym_default] = ACTIONS(608), - [anon_sym_while] = ACTIONS(610), - [anon_sym_do] = ACTIONS(612), - [anon_sym_for] = ACTIONS(614), - [anon_sym_return] = ACTIONS(616), - [anon_sym_break] = ACTIONS(618), - [anon_sym_continue] = ACTIONS(620), - [anon_sym_goto] = ACTIONS(622), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -35379,17 +36728,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_virtual] = ACTIONS(109), [anon_sym_explicit] = ACTIONS(111), [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(624), + [anon_sym_template] = ACTIONS(195), [anon_sym_operator] = ACTIONS(117), - [anon_sym_try] = ACTIONS(626), + [anon_sym_try] = ACTIONS(197), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(628), - [anon_sym_namespace] = ACTIONS(630), - [anon_sym_using] = ACTIONS(632), - [anon_sym_static_assert] = ACTIONS(634), - [anon_sym_concept] = ACTIONS(636), - [anon_sym_co_return] = ACTIONS(638), - [anon_sym_co_yield] = ACTIONS(640), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_namespace] = ACTIONS(201), + [anon_sym_using] = ACTIONS(203), + [anon_sym_static_assert] = ACTIONS(205), + [anon_sym_concept] = ACTIONS(207), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -35398,121 +36747,344 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(143), }, [52] = { - [sym_preproc_include] = STATE(37), - [sym_preproc_def] = STATE(37), - [sym_preproc_function_def] = STATE(37), - [sym_preproc_call] = STATE(37), - [sym_preproc_if] = STATE(37), - [sym_preproc_ifdef] = STATE(37), - [sym_function_definition] = STATE(37), - [sym_declaration] = STATE(37), - [sym_type_definition] = STATE(37), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(3967), - [sym_linkage_specification] = STATE(37), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(1089), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym_ms_call_modifier] = STATE(1829), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4789), - [sym_array_declarator] = STATE(4825), - [sym_compound_statement] = STATE(37), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(2975), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_attributed_statement] = STATE(37), - [sym_labeled_statement] = STATE(37), - [sym_expression_statement] = STATE(37), - [sym_if_statement] = STATE(37), - [sym_switch_statement] = STATE(37), - [sym_case_statement] = STATE(37), - [sym_while_statement] = STATE(37), - [sym_do_statement] = STATE(37), - [sym_for_statement] = STATE(37), - [sym_return_statement] = STATE(37), - [sym_break_statement] = STATE(37), - [sym_continue_statement] = STATE(37), - [sym_goto_statement] = STATE(37), - [sym__expression] = STATE(3645), - [sym_comma_expression] = STATE(6499), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__empty_declaration] = STATE(37), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1790), - [sym_dependent_type] = STATE(3139), - [sym_template_declaration] = STATE(37), - [sym_template_instantiation] = STATE(37), - [sym_operator_cast] = STATE(5178), - [sym__constructor_specifiers] = STATE(1790), - [sym_operator_cast_definition] = STATE(37), - [sym_operator_cast_declaration] = STATE(37), - [sym_constructor_or_destructor_definition] = STATE(37), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3531), - [sym_namespace_definition] = STATE(37), - [sym_namespace_alias_definition] = STATE(37), - [sym_using_declaration] = STATE(37), - [sym_alias_declaration] = STATE(37), - [sym_static_assert_declaration] = STATE(37), - [sym_concept_definition] = STATE(37), - [sym_for_range_loop] = STATE(37), - [sym_co_return_statement] = STATE(37), - [sym_co_yield_statement] = STATE(37), - [sym_throw_statement] = STATE(37), - [sym_try_statement] = STATE(37), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4513), - [sym_qualified_identifier] = STATE(2816), - [sym_qualified_type_identifier] = STATE(3276), - [sym_qualified_operator_cast_identifier] = STATE(5178), - [sym_operator_name] = STATE(4825), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_translation_unit_repeat1] = STATE(37), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_operator_cast_definition_repeat1] = STATE(1790), + [sym_preproc_include] = STATE(52), + [sym_preproc_def] = STATE(52), + [sym_preproc_function_def] = STATE(52), + [sym_preproc_call] = STATE(52), + [sym_preproc_if] = STATE(52), + [sym_preproc_ifdef] = STATE(52), + [sym_function_definition] = STATE(52), + [sym_declaration] = STATE(52), + [sym_type_definition] = STATE(52), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4216), + [sym_linkage_specification] = STATE(52), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym_ms_call_modifier] = STATE(2011), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(5018), + [sym_array_declarator] = STATE(5080), + [sym_compound_statement] = STATE(52), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3372), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_attributed_statement] = STATE(52), + [sym_labeled_statement] = STATE(52), + [sym_expression_statement] = STATE(52), + [sym_if_statement] = STATE(52), + [sym_switch_statement] = STATE(52), + [sym_case_statement] = STATE(52), + [sym_while_statement] = STATE(52), + [sym_do_statement] = STATE(52), + [sym_for_statement] = STATE(52), + [sym_return_statement] = STATE(52), + [sym_break_statement] = STATE(52), + [sym_continue_statement] = STATE(52), + [sym_goto_statement] = STATE(52), + [sym__expression] = STATE(3704), + [sym_comma_expression] = STATE(6857), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__empty_declaration] = STATE(52), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1974), + [sym_dependent_type] = STATE(3481), + [sym_template_declaration] = STATE(52), + [sym_template_instantiation] = STATE(52), + [sym_operator_cast] = STATE(5456), + [sym__constructor_specifiers] = STATE(1974), + [sym_operator_cast_definition] = STATE(52), + [sym_operator_cast_declaration] = STATE(52), + [sym_constructor_or_destructor_definition] = STATE(52), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3608), + [sym_namespace_definition] = STATE(52), + [sym_namespace_alias_definition] = STATE(52), + [sym_using_declaration] = STATE(52), + [sym_alias_declaration] = STATE(52), + [sym_static_assert_declaration] = STATE(52), + [sym_concept_definition] = STATE(52), + [sym_for_range_loop] = STATE(52), + [sym_co_return_statement] = STATE(52), + [sym_co_yield_statement] = STATE(52), + [sym_throw_statement] = STATE(52), + [sym_try_statement] = STATE(52), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4780), + [sym_qualified_identifier] = STATE(2734), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(5456), + [sym_operator_name] = STATE(5080), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_translation_unit_repeat1] = STATE(52), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_operator_cast_definition_repeat1] = STATE(1974), + [sym_identifier] = ACTIONS(644), + [aux_sym_preproc_include_token1] = ACTIONS(647), + [aux_sym_preproc_def_token1] = ACTIONS(650), + [aux_sym_preproc_if_token1] = ACTIONS(653), + [aux_sym_preproc_ifdef_token1] = ACTIONS(656), + [aux_sym_preproc_ifdef_token2] = ACTIONS(656), + [sym_preproc_directive] = ACTIONS(659), + [anon_sym_LPAREN2] = ACTIONS(347), + [anon_sym_BANG] = ACTIONS(350), + [anon_sym_TILDE] = ACTIONS(353), + [anon_sym_DASH] = ACTIONS(356), + [anon_sym_PLUS] = ACTIONS(356), + [anon_sym_STAR] = ACTIONS(359), + [anon_sym_AMP_AMP] = ACTIONS(362), + [anon_sym_AMP] = ACTIONS(365), + [anon_sym_SEMI] = ACTIONS(662), + [anon_sym_typedef] = ACTIONS(665), + [anon_sym_extern] = ACTIONS(668), + [anon_sym___attribute__] = ACTIONS(377), + [anon_sym_COLON_COLON] = ACTIONS(380), + [anon_sym_LBRACK_LBRACK] = ACTIONS(383), + [anon_sym___declspec] = ACTIONS(386), + [anon_sym___based] = ACTIONS(389), + [anon_sym___cdecl] = ACTIONS(392), + [anon_sym___clrcall] = ACTIONS(392), + [anon_sym___stdcall] = ACTIONS(392), + [anon_sym___fastcall] = ACTIONS(392), + [anon_sym___thiscall] = ACTIONS(392), + [anon_sym___vectorcall] = ACTIONS(392), + [anon_sym_LBRACE] = ACTIONS(671), + [anon_sym_RBRACE] = ACTIONS(674), + [anon_sym_LBRACK] = ACTIONS(398), + [anon_sym_static] = ACTIONS(401), + [anon_sym_register] = ACTIONS(401), + [anon_sym_inline] = ACTIONS(401), + [anon_sym_thread_local] = ACTIONS(401), + [anon_sym_const] = ACTIONS(404), + [anon_sym_volatile] = ACTIONS(404), + [anon_sym_restrict] = ACTIONS(404), + [anon_sym__Atomic] = ACTIONS(404), + [anon_sym_mutable] = ACTIONS(404), + [anon_sym_constexpr] = ACTIONS(404), + [anon_sym_constinit] = ACTIONS(404), + [anon_sym_consteval] = ACTIONS(404), + [anon_sym_signed] = ACTIONS(407), + [anon_sym_unsigned] = ACTIONS(407), + [anon_sym_long] = ACTIONS(407), + [anon_sym_short] = ACTIONS(407), + [sym_primitive_type] = ACTIONS(410), + [anon_sym_enum] = ACTIONS(413), + [anon_sym_class] = ACTIONS(416), + [anon_sym_struct] = ACTIONS(419), + [anon_sym_union] = ACTIONS(422), + [anon_sym_if] = ACTIONS(676), + [anon_sym_switch] = ACTIONS(679), + [anon_sym_case] = ACTIONS(682), + [anon_sym_default] = ACTIONS(685), + [anon_sym_while] = ACTIONS(688), + [anon_sym_do] = ACTIONS(691), + [anon_sym_for] = ACTIONS(694), + [anon_sym_return] = ACTIONS(697), + [anon_sym_break] = ACTIONS(700), + [anon_sym_continue] = ACTIONS(703), + [anon_sym_goto] = ACTIONS(706), + [anon_sym_not] = ACTIONS(356), + [anon_sym_compl] = ACTIONS(356), + [anon_sym_DASH_DASH] = ACTIONS(458), + [anon_sym_PLUS_PLUS] = ACTIONS(458), + [anon_sym_sizeof] = ACTIONS(461), + [sym_number_literal] = ACTIONS(464), + [anon_sym_L_SQUOTE] = ACTIONS(467), + [anon_sym_u_SQUOTE] = ACTIONS(467), + [anon_sym_U_SQUOTE] = ACTIONS(467), + [anon_sym_u8_SQUOTE] = ACTIONS(467), + [anon_sym_SQUOTE] = ACTIONS(467), + [anon_sym_L_DQUOTE] = ACTIONS(470), + [anon_sym_u_DQUOTE] = ACTIONS(470), + [anon_sym_U_DQUOTE] = ACTIONS(470), + [anon_sym_u8_DQUOTE] = ACTIONS(470), + [anon_sym_DQUOTE] = ACTIONS(470), + [sym_true] = ACTIONS(473), + [sym_false] = ACTIONS(473), + [sym_null] = ACTIONS(473), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(476), + [anon_sym_decltype] = ACTIONS(479), + [anon_sym_virtual] = ACTIONS(482), + [anon_sym_explicit] = ACTIONS(485), + [anon_sym_typename] = ACTIONS(488), + [anon_sym_template] = ACTIONS(709), + [anon_sym_operator] = ACTIONS(494), + [anon_sym_try] = ACTIONS(712), + [anon_sym_delete] = ACTIONS(500), + [anon_sym_throw] = ACTIONS(715), + [anon_sym_namespace] = ACTIONS(718), + [anon_sym_using] = ACTIONS(721), + [anon_sym_static_assert] = ACTIONS(724), + [anon_sym_concept] = ACTIONS(727), + [anon_sym_co_return] = ACTIONS(730), + [anon_sym_co_yield] = ACTIONS(733), + [anon_sym_co_await] = ACTIONS(524), + [anon_sym_new] = ACTIONS(527), + [anon_sym_requires] = ACTIONS(530), + [sym_this] = ACTIONS(473), + [sym_nullptr] = ACTIONS(473), + [sym_raw_string_literal] = ACTIONS(533), + }, + [53] = { + [sym_preproc_include] = STATE(52), + [sym_preproc_def] = STATE(52), + [sym_preproc_function_def] = STATE(52), + [sym_preproc_call] = STATE(52), + [sym_preproc_if] = STATE(52), + [sym_preproc_ifdef] = STATE(52), + [sym_function_definition] = STATE(52), + [sym_declaration] = STATE(52), + [sym_type_definition] = STATE(52), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4216), + [sym_linkage_specification] = STATE(52), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym_ms_call_modifier] = STATE(2011), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(5018), + [sym_array_declarator] = STATE(5080), + [sym_compound_statement] = STATE(52), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3372), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_attributed_statement] = STATE(52), + [sym_labeled_statement] = STATE(52), + [sym_expression_statement] = STATE(52), + [sym_if_statement] = STATE(52), + [sym_switch_statement] = STATE(52), + [sym_case_statement] = STATE(52), + [sym_while_statement] = STATE(52), + [sym_do_statement] = STATE(52), + [sym_for_statement] = STATE(52), + [sym_return_statement] = STATE(52), + [sym_break_statement] = STATE(52), + [sym_continue_statement] = STATE(52), + [sym_goto_statement] = STATE(52), + [sym__expression] = STATE(3704), + [sym_comma_expression] = STATE(6857), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__empty_declaration] = STATE(52), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1974), + [sym_dependent_type] = STATE(3481), + [sym_template_declaration] = STATE(52), + [sym_template_instantiation] = STATE(52), + [sym_operator_cast] = STATE(5456), + [sym__constructor_specifiers] = STATE(1974), + [sym_operator_cast_definition] = STATE(52), + [sym_operator_cast_declaration] = STATE(52), + [sym_constructor_or_destructor_definition] = STATE(52), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3608), + [sym_namespace_definition] = STATE(52), + [sym_namespace_alias_definition] = STATE(52), + [sym_using_declaration] = STATE(52), + [sym_alias_declaration] = STATE(52), + [sym_static_assert_declaration] = STATE(52), + [sym_concept_definition] = STATE(52), + [sym_for_range_loop] = STATE(52), + [sym_co_return_statement] = STATE(52), + [sym_co_yield_statement] = STATE(52), + [sym_throw_statement] = STATE(52), + [sym_try_statement] = STATE(52), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4780), + [sym_qualified_identifier] = STATE(2734), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(5456), + [sym_operator_name] = STATE(5080), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_translation_unit_repeat1] = STATE(52), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_operator_cast_definition_repeat1] = STATE(1974), [sym_identifier] = ACTIONS(145), [aux_sym_preproc_include_token1] = ACTIONS(147), [aux_sym_preproc_def_token1] = ACTIONS(149), @@ -35543,7 +37115,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(536), - [anon_sym_RBRACE] = ACTIONS(644), + [anon_sym_RBRACE] = ACTIONS(736), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), @@ -35577,6 +37149,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(187), [anon_sym_continue] = ACTIONS(189), [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -35618,122 +37192,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [53] = { - [sym_preproc_include] = STATE(56), - [sym_preproc_def] = STATE(56), - [sym_preproc_function_def] = STATE(56), - [sym_preproc_call] = STATE(56), - [sym_preproc_if] = STATE(56), - [sym_preproc_ifdef] = STATE(56), - [sym_function_definition] = STATE(56), - [sym_declaration] = STATE(56), - [sym_type_definition] = STATE(56), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(3967), - [sym_linkage_specification] = STATE(56), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(1089), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym_ms_call_modifier] = STATE(1829), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4789), - [sym_array_declarator] = STATE(4825), - [sym_compound_statement] = STATE(56), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(2975), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_attributed_statement] = STATE(56), - [sym_labeled_statement] = STATE(56), - [sym_expression_statement] = STATE(56), - [sym_if_statement] = STATE(56), - [sym_switch_statement] = STATE(56), - [sym_case_statement] = STATE(56), - [sym_while_statement] = STATE(56), - [sym_do_statement] = STATE(56), - [sym_for_statement] = STATE(56), - [sym_return_statement] = STATE(56), - [sym_break_statement] = STATE(56), - [sym_continue_statement] = STATE(56), - [sym_goto_statement] = STATE(56), - [sym__expression] = STATE(3645), - [sym_comma_expression] = STATE(6499), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__empty_declaration] = STATE(56), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1790), - [sym_dependent_type] = STATE(3139), - [sym_template_declaration] = STATE(56), - [sym_template_instantiation] = STATE(56), - [sym_operator_cast] = STATE(5178), - [sym__constructor_specifiers] = STATE(1790), - [sym_operator_cast_definition] = STATE(56), - [sym_operator_cast_declaration] = STATE(56), - [sym_constructor_or_destructor_definition] = STATE(56), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3531), - [sym_namespace_definition] = STATE(56), - [sym_namespace_alias_definition] = STATE(56), - [sym_using_declaration] = STATE(56), - [sym_alias_declaration] = STATE(56), - [sym_static_assert_declaration] = STATE(56), - [sym_concept_definition] = STATE(56), - [sym_for_range_loop] = STATE(56), - [sym_co_return_statement] = STATE(56), - [sym_co_yield_statement] = STATE(56), - [sym_throw_statement] = STATE(56), - [sym_try_statement] = STATE(56), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4513), - [sym_qualified_identifier] = STATE(2816), - [sym_qualified_type_identifier] = STATE(3276), - [sym_qualified_operator_cast_identifier] = STATE(5178), - [sym_operator_name] = STATE(4825), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_translation_unit_repeat1] = STATE(56), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_operator_cast_definition_repeat1] = STATE(1790), + [54] = { + [sym_preproc_include] = STATE(51), + [sym_preproc_def] = STATE(51), + [sym_preproc_function_def] = STATE(51), + [sym_preproc_call] = STATE(51), + [sym_preproc_if] = STATE(51), + [sym_preproc_ifdef] = STATE(51), + [sym_function_definition] = STATE(51), + [sym_declaration] = STATE(51), + [sym_type_definition] = STATE(51), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4216), + [sym_linkage_specification] = STATE(51), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym_ms_call_modifier] = STATE(2011), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(5018), + [sym_array_declarator] = STATE(5080), + [sym_compound_statement] = STATE(51), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3372), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_attributed_statement] = STATE(51), + [sym_labeled_statement] = STATE(51), + [sym_expression_statement] = STATE(51), + [sym_if_statement] = STATE(51), + [sym_switch_statement] = STATE(51), + [sym_case_statement] = STATE(51), + [sym_while_statement] = STATE(51), + [sym_do_statement] = STATE(51), + [sym_for_statement] = STATE(51), + [sym_return_statement] = STATE(51), + [sym_break_statement] = STATE(51), + [sym_continue_statement] = STATE(51), + [sym_goto_statement] = STATE(51), + [sym__expression] = STATE(3704), + [sym_comma_expression] = STATE(6857), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__empty_declaration] = STATE(51), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1974), + [sym_dependent_type] = STATE(3481), + [sym_template_declaration] = STATE(51), + [sym_template_instantiation] = STATE(51), + [sym_operator_cast] = STATE(5456), + [sym__constructor_specifiers] = STATE(1974), + [sym_operator_cast_definition] = STATE(51), + [sym_operator_cast_declaration] = STATE(51), + [sym_constructor_or_destructor_definition] = STATE(51), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3608), + [sym_namespace_definition] = STATE(51), + [sym_namespace_alias_definition] = STATE(51), + [sym_using_declaration] = STATE(51), + [sym_alias_declaration] = STATE(51), + [sym_static_assert_declaration] = STATE(51), + [sym_concept_definition] = STATE(51), + [sym_for_range_loop] = STATE(51), + [sym_co_return_statement] = STATE(51), + [sym_co_yield_statement] = STATE(51), + [sym_throw_statement] = STATE(51), + [sym_try_statement] = STATE(51), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4780), + [sym_qualified_identifier] = STATE(2734), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(5456), + [sym_operator_name] = STATE(5080), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_translation_unit_repeat1] = STATE(51), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_operator_cast_definition_repeat1] = STATE(1974), [sym_identifier] = ACTIONS(145), [aux_sym_preproc_include_token1] = ACTIONS(147), [aux_sym_preproc_def_token1] = ACTIONS(149), @@ -35764,7 +37338,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(536), - [anon_sym_RBRACE] = ACTIONS(646), + [anon_sym_RBRACE] = ACTIONS(738), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), @@ -35798,6 +37372,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(187), [anon_sym_continue] = ACTIONS(189), [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -35839,122 +37415,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [54] = { - [sym_preproc_include] = STATE(46), - [sym_preproc_def] = STATE(46), - [sym_preproc_function_def] = STATE(46), - [sym_preproc_call] = STATE(46), - [sym_preproc_if] = STATE(46), - [sym_preproc_ifdef] = STATE(46), - [sym_function_definition] = STATE(46), - [sym_declaration] = STATE(46), - [sym_type_definition] = STATE(46), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(3967), - [sym_linkage_specification] = STATE(46), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(1089), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym_ms_call_modifier] = STATE(1829), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4789), - [sym_array_declarator] = STATE(4825), - [sym_compound_statement] = STATE(46), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(2975), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_attributed_statement] = STATE(46), - [sym_labeled_statement] = STATE(46), - [sym_expression_statement] = STATE(46), - [sym_if_statement] = STATE(46), - [sym_switch_statement] = STATE(46), - [sym_case_statement] = STATE(46), - [sym_while_statement] = STATE(46), - [sym_do_statement] = STATE(46), - [sym_for_statement] = STATE(46), - [sym_return_statement] = STATE(46), - [sym_break_statement] = STATE(46), - [sym_continue_statement] = STATE(46), - [sym_goto_statement] = STATE(46), - [sym__expression] = STATE(3645), - [sym_comma_expression] = STATE(6499), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__empty_declaration] = STATE(46), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1790), - [sym_dependent_type] = STATE(3139), - [sym_template_declaration] = STATE(46), - [sym_template_instantiation] = STATE(46), - [sym_operator_cast] = STATE(5178), - [sym__constructor_specifiers] = STATE(1790), - [sym_operator_cast_definition] = STATE(46), - [sym_operator_cast_declaration] = STATE(46), - [sym_constructor_or_destructor_definition] = STATE(46), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3531), - [sym_namespace_definition] = STATE(46), - [sym_namespace_alias_definition] = STATE(46), - [sym_using_declaration] = STATE(46), - [sym_alias_declaration] = STATE(46), - [sym_static_assert_declaration] = STATE(46), - [sym_concept_definition] = STATE(46), - [sym_for_range_loop] = STATE(46), - [sym_co_return_statement] = STATE(46), - [sym_co_yield_statement] = STATE(46), - [sym_throw_statement] = STATE(46), - [sym_try_statement] = STATE(46), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4513), - [sym_qualified_identifier] = STATE(2816), - [sym_qualified_type_identifier] = STATE(3276), - [sym_qualified_operator_cast_identifier] = STATE(5178), - [sym_operator_name] = STATE(4825), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_translation_unit_repeat1] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_operator_cast_definition_repeat1] = STATE(1790), + [55] = { + [sym_preproc_include] = STATE(29), + [sym_preproc_def] = STATE(29), + [sym_preproc_function_def] = STATE(29), + [sym_preproc_call] = STATE(29), + [sym_preproc_if] = STATE(29), + [sym_preproc_ifdef] = STATE(29), + [sym_function_definition] = STATE(29), + [sym_declaration] = STATE(29), + [sym_type_definition] = STATE(29), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4216), + [sym_linkage_specification] = STATE(29), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym_ms_call_modifier] = STATE(2011), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(5018), + [sym_array_declarator] = STATE(5080), + [sym_compound_statement] = STATE(29), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3372), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_attributed_statement] = STATE(29), + [sym_labeled_statement] = STATE(29), + [sym_expression_statement] = STATE(29), + [sym_if_statement] = STATE(29), + [sym_switch_statement] = STATE(29), + [sym_case_statement] = STATE(29), + [sym_while_statement] = STATE(29), + [sym_do_statement] = STATE(29), + [sym_for_statement] = STATE(29), + [sym_return_statement] = STATE(29), + [sym_break_statement] = STATE(29), + [sym_continue_statement] = STATE(29), + [sym_goto_statement] = STATE(29), + [sym__expression] = STATE(3704), + [sym_comma_expression] = STATE(6857), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__empty_declaration] = STATE(29), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1974), + [sym_dependent_type] = STATE(3481), + [sym_template_declaration] = STATE(29), + [sym_template_instantiation] = STATE(29), + [sym_operator_cast] = STATE(5456), + [sym__constructor_specifiers] = STATE(1974), + [sym_operator_cast_definition] = STATE(29), + [sym_operator_cast_declaration] = STATE(29), + [sym_constructor_or_destructor_definition] = STATE(29), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3608), + [sym_namespace_definition] = STATE(29), + [sym_namespace_alias_definition] = STATE(29), + [sym_using_declaration] = STATE(29), + [sym_alias_declaration] = STATE(29), + [sym_static_assert_declaration] = STATE(29), + [sym_concept_definition] = STATE(29), + [sym_for_range_loop] = STATE(29), + [sym_co_return_statement] = STATE(29), + [sym_co_yield_statement] = STATE(29), + [sym_throw_statement] = STATE(29), + [sym_try_statement] = STATE(29), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4780), + [sym_qualified_identifier] = STATE(2734), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(5456), + [sym_operator_name] = STATE(5080), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_translation_unit_repeat1] = STATE(29), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_operator_cast_definition_repeat1] = STATE(1974), [sym_identifier] = ACTIONS(145), [aux_sym_preproc_include_token1] = ACTIONS(147), [aux_sym_preproc_def_token1] = ACTIONS(149), @@ -35985,7 +37561,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(536), - [anon_sym_RBRACE] = ACTIONS(648), + [anon_sym_RBRACE] = ACTIONS(740), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), @@ -36019,6 +37595,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(187), [anon_sym_continue] = ACTIONS(189), [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -36060,122 +37638,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [55] = { - [sym_preproc_include] = STATE(70), - [sym_preproc_def] = STATE(70), - [sym_preproc_function_def] = STATE(70), - [sym_preproc_call] = STATE(70), - [sym_preproc_if] = STATE(70), - [sym_preproc_ifdef] = STATE(70), - [sym_function_definition] = STATE(70), - [sym_declaration] = STATE(70), - [sym_type_definition] = STATE(70), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(3967), - [sym_linkage_specification] = STATE(70), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(1089), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym_ms_call_modifier] = STATE(1829), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4789), - [sym_array_declarator] = STATE(4825), - [sym_compound_statement] = STATE(70), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(2975), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_attributed_statement] = STATE(70), - [sym_labeled_statement] = STATE(70), - [sym_expression_statement] = STATE(70), - [sym_if_statement] = STATE(70), - [sym_switch_statement] = STATE(70), - [sym_case_statement] = STATE(70), - [sym_while_statement] = STATE(70), - [sym_do_statement] = STATE(70), - [sym_for_statement] = STATE(70), - [sym_return_statement] = STATE(70), - [sym_break_statement] = STATE(70), - [sym_continue_statement] = STATE(70), - [sym_goto_statement] = STATE(70), - [sym__expression] = STATE(3645), - [sym_comma_expression] = STATE(6499), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__empty_declaration] = STATE(70), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1790), - [sym_dependent_type] = STATE(3139), - [sym_template_declaration] = STATE(70), - [sym_template_instantiation] = STATE(70), - [sym_operator_cast] = STATE(5178), - [sym__constructor_specifiers] = STATE(1790), - [sym_operator_cast_definition] = STATE(70), - [sym_operator_cast_declaration] = STATE(70), - [sym_constructor_or_destructor_definition] = STATE(70), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3531), - [sym_namespace_definition] = STATE(70), - [sym_namespace_alias_definition] = STATE(70), - [sym_using_declaration] = STATE(70), - [sym_alias_declaration] = STATE(70), - [sym_static_assert_declaration] = STATE(70), - [sym_concept_definition] = STATE(70), - [sym_for_range_loop] = STATE(70), - [sym_co_return_statement] = STATE(70), - [sym_co_yield_statement] = STATE(70), - [sym_throw_statement] = STATE(70), - [sym_try_statement] = STATE(70), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4513), - [sym_qualified_identifier] = STATE(2816), - [sym_qualified_type_identifier] = STATE(3276), - [sym_qualified_operator_cast_identifier] = STATE(5178), - [sym_operator_name] = STATE(4825), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_translation_unit_repeat1] = STATE(70), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_operator_cast_definition_repeat1] = STATE(1790), + [56] = { + [sym_preproc_include] = STATE(52), + [sym_preproc_def] = STATE(52), + [sym_preproc_function_def] = STATE(52), + [sym_preproc_call] = STATE(52), + [sym_preproc_if] = STATE(52), + [sym_preproc_ifdef] = STATE(52), + [sym_function_definition] = STATE(52), + [sym_declaration] = STATE(52), + [sym_type_definition] = STATE(52), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4216), + [sym_linkage_specification] = STATE(52), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym_ms_call_modifier] = STATE(2011), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(5018), + [sym_array_declarator] = STATE(5080), + [sym_compound_statement] = STATE(52), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3372), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_attributed_statement] = STATE(52), + [sym_labeled_statement] = STATE(52), + [sym_expression_statement] = STATE(52), + [sym_if_statement] = STATE(52), + [sym_switch_statement] = STATE(52), + [sym_case_statement] = STATE(52), + [sym_while_statement] = STATE(52), + [sym_do_statement] = STATE(52), + [sym_for_statement] = STATE(52), + [sym_return_statement] = STATE(52), + [sym_break_statement] = STATE(52), + [sym_continue_statement] = STATE(52), + [sym_goto_statement] = STATE(52), + [sym__expression] = STATE(3704), + [sym_comma_expression] = STATE(6857), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__empty_declaration] = STATE(52), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1974), + [sym_dependent_type] = STATE(3481), + [sym_template_declaration] = STATE(52), + [sym_template_instantiation] = STATE(52), + [sym_operator_cast] = STATE(5456), + [sym__constructor_specifiers] = STATE(1974), + [sym_operator_cast_definition] = STATE(52), + [sym_operator_cast_declaration] = STATE(52), + [sym_constructor_or_destructor_definition] = STATE(52), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3608), + [sym_namespace_definition] = STATE(52), + [sym_namespace_alias_definition] = STATE(52), + [sym_using_declaration] = STATE(52), + [sym_alias_declaration] = STATE(52), + [sym_static_assert_declaration] = STATE(52), + [sym_concept_definition] = STATE(52), + [sym_for_range_loop] = STATE(52), + [sym_co_return_statement] = STATE(52), + [sym_co_yield_statement] = STATE(52), + [sym_throw_statement] = STATE(52), + [sym_try_statement] = STATE(52), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4780), + [sym_qualified_identifier] = STATE(2734), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(5456), + [sym_operator_name] = STATE(5080), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_translation_unit_repeat1] = STATE(52), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_operator_cast_definition_repeat1] = STATE(1974), [sym_identifier] = ACTIONS(145), [aux_sym_preproc_include_token1] = ACTIONS(147), [aux_sym_preproc_def_token1] = ACTIONS(149), @@ -36206,7 +37784,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(536), - [anon_sym_RBRACE] = ACTIONS(650), + [anon_sym_RBRACE] = ACTIONS(742), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), @@ -36240,6 +37818,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(187), [anon_sym_continue] = ACTIONS(189), [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -36281,122 +37861,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [56] = { - [sym_preproc_include] = STATE(70), - [sym_preproc_def] = STATE(70), - [sym_preproc_function_def] = STATE(70), - [sym_preproc_call] = STATE(70), - [sym_preproc_if] = STATE(70), - [sym_preproc_ifdef] = STATE(70), - [sym_function_definition] = STATE(70), - [sym_declaration] = STATE(70), - [sym_type_definition] = STATE(70), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(3967), - [sym_linkage_specification] = STATE(70), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(1089), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym_ms_call_modifier] = STATE(1829), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4789), - [sym_array_declarator] = STATE(4825), - [sym_compound_statement] = STATE(70), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(2975), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_attributed_statement] = STATE(70), - [sym_labeled_statement] = STATE(70), - [sym_expression_statement] = STATE(70), - [sym_if_statement] = STATE(70), - [sym_switch_statement] = STATE(70), - [sym_case_statement] = STATE(70), - [sym_while_statement] = STATE(70), - [sym_do_statement] = STATE(70), - [sym_for_statement] = STATE(70), - [sym_return_statement] = STATE(70), - [sym_break_statement] = STATE(70), - [sym_continue_statement] = STATE(70), - [sym_goto_statement] = STATE(70), - [sym__expression] = STATE(3645), - [sym_comma_expression] = STATE(6499), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__empty_declaration] = STATE(70), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1790), - [sym_dependent_type] = STATE(3139), - [sym_template_declaration] = STATE(70), - [sym_template_instantiation] = STATE(70), - [sym_operator_cast] = STATE(5178), - [sym__constructor_specifiers] = STATE(1790), - [sym_operator_cast_definition] = STATE(70), - [sym_operator_cast_declaration] = STATE(70), - [sym_constructor_or_destructor_definition] = STATE(70), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3531), - [sym_namespace_definition] = STATE(70), - [sym_namespace_alias_definition] = STATE(70), - [sym_using_declaration] = STATE(70), - [sym_alias_declaration] = STATE(70), - [sym_static_assert_declaration] = STATE(70), - [sym_concept_definition] = STATE(70), - [sym_for_range_loop] = STATE(70), - [sym_co_return_statement] = STATE(70), - [sym_co_yield_statement] = STATE(70), - [sym_throw_statement] = STATE(70), - [sym_try_statement] = STATE(70), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4513), - [sym_qualified_identifier] = STATE(2816), - [sym_qualified_type_identifier] = STATE(3276), - [sym_qualified_operator_cast_identifier] = STATE(5178), - [sym_operator_name] = STATE(4825), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_translation_unit_repeat1] = STATE(70), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_operator_cast_definition_repeat1] = STATE(1790), + [57] = { + [sym_preproc_include] = STATE(60), + [sym_preproc_def] = STATE(60), + [sym_preproc_function_def] = STATE(60), + [sym_preproc_call] = STATE(60), + [sym_preproc_if] = STATE(60), + [sym_preproc_ifdef] = STATE(60), + [sym_function_definition] = STATE(60), + [sym_declaration] = STATE(60), + [sym_type_definition] = STATE(60), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4216), + [sym_linkage_specification] = STATE(60), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym_ms_call_modifier] = STATE(2011), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(5018), + [sym_array_declarator] = STATE(5080), + [sym_compound_statement] = STATE(60), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3372), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_attributed_statement] = STATE(60), + [sym_labeled_statement] = STATE(60), + [sym_expression_statement] = STATE(60), + [sym_if_statement] = STATE(60), + [sym_switch_statement] = STATE(60), + [sym_case_statement] = STATE(60), + [sym_while_statement] = STATE(60), + [sym_do_statement] = STATE(60), + [sym_for_statement] = STATE(60), + [sym_return_statement] = STATE(60), + [sym_break_statement] = STATE(60), + [sym_continue_statement] = STATE(60), + [sym_goto_statement] = STATE(60), + [sym__expression] = STATE(3704), + [sym_comma_expression] = STATE(6857), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__empty_declaration] = STATE(60), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1974), + [sym_dependent_type] = STATE(3481), + [sym_template_declaration] = STATE(60), + [sym_template_instantiation] = STATE(60), + [sym_operator_cast] = STATE(5456), + [sym__constructor_specifiers] = STATE(1974), + [sym_operator_cast_definition] = STATE(60), + [sym_operator_cast_declaration] = STATE(60), + [sym_constructor_or_destructor_definition] = STATE(60), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3608), + [sym_namespace_definition] = STATE(60), + [sym_namespace_alias_definition] = STATE(60), + [sym_using_declaration] = STATE(60), + [sym_alias_declaration] = STATE(60), + [sym_static_assert_declaration] = STATE(60), + [sym_concept_definition] = STATE(60), + [sym_for_range_loop] = STATE(60), + [sym_co_return_statement] = STATE(60), + [sym_co_yield_statement] = STATE(60), + [sym_throw_statement] = STATE(60), + [sym_try_statement] = STATE(60), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4780), + [sym_qualified_identifier] = STATE(2734), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(5456), + [sym_operator_name] = STATE(5080), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_translation_unit_repeat1] = STATE(60), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_operator_cast_definition_repeat1] = STATE(1974), [sym_identifier] = ACTIONS(145), [aux_sym_preproc_include_token1] = ACTIONS(147), [aux_sym_preproc_def_token1] = ACTIONS(149), @@ -36427,7 +38007,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(536), - [anon_sym_RBRACE] = ACTIONS(652), + [anon_sym_RBRACE] = ACTIONS(744), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), @@ -36461,6 +38041,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(187), [anon_sym_continue] = ACTIONS(189), [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -36502,122 +38084,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [57] = { - [sym_preproc_include] = STATE(59), - [sym_preproc_def] = STATE(59), - [sym_preproc_function_def] = STATE(59), - [sym_preproc_call] = STATE(59), - [sym_preproc_if] = STATE(59), - [sym_preproc_ifdef] = STATE(59), - [sym_function_definition] = STATE(59), - [sym_declaration] = STATE(59), - [sym_type_definition] = STATE(59), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(3967), - [sym_linkage_specification] = STATE(59), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(1089), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym_ms_call_modifier] = STATE(1829), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4789), - [sym_array_declarator] = STATE(4825), - [sym_compound_statement] = STATE(59), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(2975), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_attributed_statement] = STATE(59), - [sym_labeled_statement] = STATE(59), - [sym_expression_statement] = STATE(59), - [sym_if_statement] = STATE(59), - [sym_switch_statement] = STATE(59), - [sym_case_statement] = STATE(59), - [sym_while_statement] = STATE(59), - [sym_do_statement] = STATE(59), - [sym_for_statement] = STATE(59), - [sym_return_statement] = STATE(59), - [sym_break_statement] = STATE(59), - [sym_continue_statement] = STATE(59), - [sym_goto_statement] = STATE(59), - [sym__expression] = STATE(3645), - [sym_comma_expression] = STATE(6499), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__empty_declaration] = STATE(59), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1790), - [sym_dependent_type] = STATE(3139), - [sym_template_declaration] = STATE(59), - [sym_template_instantiation] = STATE(59), - [sym_operator_cast] = STATE(5178), - [sym__constructor_specifiers] = STATE(1790), - [sym_operator_cast_definition] = STATE(59), - [sym_operator_cast_declaration] = STATE(59), - [sym_constructor_or_destructor_definition] = STATE(59), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3531), - [sym_namespace_definition] = STATE(59), - [sym_namespace_alias_definition] = STATE(59), - [sym_using_declaration] = STATE(59), - [sym_alias_declaration] = STATE(59), - [sym_static_assert_declaration] = STATE(59), - [sym_concept_definition] = STATE(59), - [sym_for_range_loop] = STATE(59), - [sym_co_return_statement] = STATE(59), - [sym_co_yield_statement] = STATE(59), - [sym_throw_statement] = STATE(59), - [sym_try_statement] = STATE(59), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4513), - [sym_qualified_identifier] = STATE(2816), - [sym_qualified_type_identifier] = STATE(3276), - [sym_qualified_operator_cast_identifier] = STATE(5178), - [sym_operator_name] = STATE(4825), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_translation_unit_repeat1] = STATE(59), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_operator_cast_definition_repeat1] = STATE(1790), + [58] = { + [sym_preproc_include] = STATE(56), + [sym_preproc_def] = STATE(56), + [sym_preproc_function_def] = STATE(56), + [sym_preproc_call] = STATE(56), + [sym_preproc_if] = STATE(56), + [sym_preproc_ifdef] = STATE(56), + [sym_function_definition] = STATE(56), + [sym_declaration] = STATE(56), + [sym_type_definition] = STATE(56), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4216), + [sym_linkage_specification] = STATE(56), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym_ms_call_modifier] = STATE(2011), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(5018), + [sym_array_declarator] = STATE(5080), + [sym_compound_statement] = STATE(56), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3372), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_attributed_statement] = STATE(56), + [sym_labeled_statement] = STATE(56), + [sym_expression_statement] = STATE(56), + [sym_if_statement] = STATE(56), + [sym_switch_statement] = STATE(56), + [sym_case_statement] = STATE(56), + [sym_while_statement] = STATE(56), + [sym_do_statement] = STATE(56), + [sym_for_statement] = STATE(56), + [sym_return_statement] = STATE(56), + [sym_break_statement] = STATE(56), + [sym_continue_statement] = STATE(56), + [sym_goto_statement] = STATE(56), + [sym__expression] = STATE(3704), + [sym_comma_expression] = STATE(6857), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__empty_declaration] = STATE(56), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1974), + [sym_dependent_type] = STATE(3481), + [sym_template_declaration] = STATE(56), + [sym_template_instantiation] = STATE(56), + [sym_operator_cast] = STATE(5456), + [sym__constructor_specifiers] = STATE(1974), + [sym_operator_cast_definition] = STATE(56), + [sym_operator_cast_declaration] = STATE(56), + [sym_constructor_or_destructor_definition] = STATE(56), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3608), + [sym_namespace_definition] = STATE(56), + [sym_namespace_alias_definition] = STATE(56), + [sym_using_declaration] = STATE(56), + [sym_alias_declaration] = STATE(56), + [sym_static_assert_declaration] = STATE(56), + [sym_concept_definition] = STATE(56), + [sym_for_range_loop] = STATE(56), + [sym_co_return_statement] = STATE(56), + [sym_co_yield_statement] = STATE(56), + [sym_throw_statement] = STATE(56), + [sym_try_statement] = STATE(56), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4780), + [sym_qualified_identifier] = STATE(2734), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(5456), + [sym_operator_name] = STATE(5080), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_translation_unit_repeat1] = STATE(56), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_operator_cast_definition_repeat1] = STATE(1974), [sym_identifier] = ACTIONS(145), [aux_sym_preproc_include_token1] = ACTIONS(147), [aux_sym_preproc_def_token1] = ACTIONS(149), @@ -36648,7 +38230,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(536), - [anon_sym_RBRACE] = ACTIONS(654), + [anon_sym_RBRACE] = ACTIONS(746), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), @@ -36682,6 +38264,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(187), [anon_sym_continue] = ACTIONS(189), [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -36723,122 +38307,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [58] = { - [sym_preproc_include] = STATE(55), - [sym_preproc_def] = STATE(55), - [sym_preproc_function_def] = STATE(55), - [sym_preproc_call] = STATE(55), - [sym_preproc_if] = STATE(55), - [sym_preproc_ifdef] = STATE(55), - [sym_function_definition] = STATE(55), - [sym_declaration] = STATE(55), - [sym_type_definition] = STATE(55), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(3967), - [sym_linkage_specification] = STATE(55), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(1089), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym_ms_call_modifier] = STATE(1829), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4789), - [sym_array_declarator] = STATE(4825), - [sym_compound_statement] = STATE(55), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(2975), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_attributed_statement] = STATE(55), - [sym_labeled_statement] = STATE(55), - [sym_expression_statement] = STATE(55), - [sym_if_statement] = STATE(55), - [sym_switch_statement] = STATE(55), - [sym_case_statement] = STATE(55), - [sym_while_statement] = STATE(55), - [sym_do_statement] = STATE(55), - [sym_for_statement] = STATE(55), - [sym_return_statement] = STATE(55), - [sym_break_statement] = STATE(55), - [sym_continue_statement] = STATE(55), - [sym_goto_statement] = STATE(55), - [sym__expression] = STATE(3645), - [sym_comma_expression] = STATE(6499), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__empty_declaration] = STATE(55), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1790), - [sym_dependent_type] = STATE(3139), - [sym_template_declaration] = STATE(55), - [sym_template_instantiation] = STATE(55), - [sym_operator_cast] = STATE(5178), - [sym__constructor_specifiers] = STATE(1790), - [sym_operator_cast_definition] = STATE(55), - [sym_operator_cast_declaration] = STATE(55), - [sym_constructor_or_destructor_definition] = STATE(55), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3531), - [sym_namespace_definition] = STATE(55), - [sym_namespace_alias_definition] = STATE(55), - [sym_using_declaration] = STATE(55), - [sym_alias_declaration] = STATE(55), - [sym_static_assert_declaration] = STATE(55), - [sym_concept_definition] = STATE(55), - [sym_for_range_loop] = STATE(55), - [sym_co_return_statement] = STATE(55), - [sym_co_yield_statement] = STATE(55), - [sym_throw_statement] = STATE(55), - [sym_try_statement] = STATE(55), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4513), - [sym_qualified_identifier] = STATE(2816), - [sym_qualified_type_identifier] = STATE(3276), - [sym_qualified_operator_cast_identifier] = STATE(5178), - [sym_operator_name] = STATE(4825), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_translation_unit_repeat1] = STATE(55), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_operator_cast_definition_repeat1] = STATE(1790), + [59] = { + [sym_preproc_include] = STATE(52), + [sym_preproc_def] = STATE(52), + [sym_preproc_function_def] = STATE(52), + [sym_preproc_call] = STATE(52), + [sym_preproc_if] = STATE(52), + [sym_preproc_ifdef] = STATE(52), + [sym_function_definition] = STATE(52), + [sym_declaration] = STATE(52), + [sym_type_definition] = STATE(52), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4216), + [sym_linkage_specification] = STATE(52), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym_ms_call_modifier] = STATE(2011), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(5018), + [sym_array_declarator] = STATE(5080), + [sym_compound_statement] = STATE(52), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3372), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_attributed_statement] = STATE(52), + [sym_labeled_statement] = STATE(52), + [sym_expression_statement] = STATE(52), + [sym_if_statement] = STATE(52), + [sym_switch_statement] = STATE(52), + [sym_case_statement] = STATE(52), + [sym_while_statement] = STATE(52), + [sym_do_statement] = STATE(52), + [sym_for_statement] = STATE(52), + [sym_return_statement] = STATE(52), + [sym_break_statement] = STATE(52), + [sym_continue_statement] = STATE(52), + [sym_goto_statement] = STATE(52), + [sym__expression] = STATE(3704), + [sym_comma_expression] = STATE(6857), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__empty_declaration] = STATE(52), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1974), + [sym_dependent_type] = STATE(3481), + [sym_template_declaration] = STATE(52), + [sym_template_instantiation] = STATE(52), + [sym_operator_cast] = STATE(5456), + [sym__constructor_specifiers] = STATE(1974), + [sym_operator_cast_definition] = STATE(52), + [sym_operator_cast_declaration] = STATE(52), + [sym_constructor_or_destructor_definition] = STATE(52), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3608), + [sym_namespace_definition] = STATE(52), + [sym_namespace_alias_definition] = STATE(52), + [sym_using_declaration] = STATE(52), + [sym_alias_declaration] = STATE(52), + [sym_static_assert_declaration] = STATE(52), + [sym_concept_definition] = STATE(52), + [sym_for_range_loop] = STATE(52), + [sym_co_return_statement] = STATE(52), + [sym_co_yield_statement] = STATE(52), + [sym_throw_statement] = STATE(52), + [sym_try_statement] = STATE(52), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4780), + [sym_qualified_identifier] = STATE(2734), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(5456), + [sym_operator_name] = STATE(5080), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_translation_unit_repeat1] = STATE(52), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_operator_cast_definition_repeat1] = STATE(1974), [sym_identifier] = ACTIONS(145), [aux_sym_preproc_include_token1] = ACTIONS(147), [aux_sym_preproc_def_token1] = ACTIONS(149), @@ -36869,228 +38453,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(536), - [anon_sym_RBRACE] = ACTIONS(656), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(171), - [anon_sym_switch] = ACTIONS(173), - [anon_sym_case] = ACTIONS(175), - [anon_sym_default] = ACTIONS(177), - [anon_sym_while] = ACTIONS(179), - [anon_sym_do] = ACTIONS(181), - [anon_sym_for] = ACTIONS(183), - [anon_sym_return] = ACTIONS(185), - [anon_sym_break] = ACTIONS(187), - [anon_sym_continue] = ACTIONS(189), - [anon_sym_goto] = ACTIONS(191), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(105), - [anon_sym_decltype] = ACTIONS(107), - [anon_sym_virtual] = ACTIONS(109), - [anon_sym_explicit] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(195), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_try] = ACTIONS(197), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(199), - [anon_sym_namespace] = ACTIONS(201), - [anon_sym_using] = ACTIONS(203), - [anon_sym_static_assert] = ACTIONS(205), - [anon_sym_concept] = ACTIONS(207), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), - }, - [59] = { - [sym_preproc_include] = STATE(70), - [sym_preproc_def] = STATE(70), - [sym_preproc_function_def] = STATE(70), - [sym_preproc_call] = STATE(70), - [sym_preproc_if] = STATE(70), - [sym_preproc_ifdef] = STATE(70), - [sym_function_definition] = STATE(70), - [sym_declaration] = STATE(70), - [sym_type_definition] = STATE(70), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(3967), - [sym_linkage_specification] = STATE(70), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(1089), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym_ms_call_modifier] = STATE(1829), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4789), - [sym_array_declarator] = STATE(4825), - [sym_compound_statement] = STATE(70), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(2975), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_attributed_statement] = STATE(70), - [sym_labeled_statement] = STATE(70), - [sym_expression_statement] = STATE(70), - [sym_if_statement] = STATE(70), - [sym_switch_statement] = STATE(70), - [sym_case_statement] = STATE(70), - [sym_while_statement] = STATE(70), - [sym_do_statement] = STATE(70), - [sym_for_statement] = STATE(70), - [sym_return_statement] = STATE(70), - [sym_break_statement] = STATE(70), - [sym_continue_statement] = STATE(70), - [sym_goto_statement] = STATE(70), - [sym__expression] = STATE(3645), - [sym_comma_expression] = STATE(6499), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__empty_declaration] = STATE(70), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1790), - [sym_dependent_type] = STATE(3139), - [sym_template_declaration] = STATE(70), - [sym_template_instantiation] = STATE(70), - [sym_operator_cast] = STATE(5178), - [sym__constructor_specifiers] = STATE(1790), - [sym_operator_cast_definition] = STATE(70), - [sym_operator_cast_declaration] = STATE(70), - [sym_constructor_or_destructor_definition] = STATE(70), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3531), - [sym_namespace_definition] = STATE(70), - [sym_namespace_alias_definition] = STATE(70), - [sym_using_declaration] = STATE(70), - [sym_alias_declaration] = STATE(70), - [sym_static_assert_declaration] = STATE(70), - [sym_concept_definition] = STATE(70), - [sym_for_range_loop] = STATE(70), - [sym_co_return_statement] = STATE(70), - [sym_co_yield_statement] = STATE(70), - [sym_throw_statement] = STATE(70), - [sym_try_statement] = STATE(70), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4513), - [sym_qualified_identifier] = STATE(2816), - [sym_qualified_type_identifier] = STATE(3276), - [sym_qualified_operator_cast_identifier] = STATE(5178), - [sym_operator_name] = STATE(4825), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_translation_unit_repeat1] = STATE(70), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_operator_cast_definition_repeat1] = STATE(1790), - [sym_identifier] = ACTIONS(145), - [aux_sym_preproc_include_token1] = ACTIONS(147), - [aux_sym_preproc_def_token1] = ACTIONS(149), - [aux_sym_preproc_if_token1] = ACTIONS(153), - [aux_sym_preproc_ifdef_token1] = ACTIONS(155), - [aux_sym_preproc_ifdef_token2] = ACTIONS(155), - [sym_preproc_directive] = ACTIONS(157), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_SEMI] = ACTIONS(159), - [anon_sym_typedef] = ACTIONS(161), - [anon_sym_extern] = ACTIONS(163), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(43), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(536), - [anon_sym_RBRACE] = ACTIONS(658), + [anon_sym_RBRACE] = ACTIONS(748), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), @@ -37124,6 +38487,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(187), [anon_sym_continue] = ACTIONS(189), [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -37166,121 +38531,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(143), }, [60] = { - [sym_preproc_include] = STATE(70), - [sym_preproc_def] = STATE(70), - [sym_preproc_function_def] = STATE(70), - [sym_preproc_call] = STATE(70), - [sym_preproc_if] = STATE(70), - [sym_preproc_ifdef] = STATE(70), - [sym_function_definition] = STATE(70), - [sym_declaration] = STATE(70), - [sym_type_definition] = STATE(70), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(3967), - [sym_linkage_specification] = STATE(70), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(1089), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym_ms_call_modifier] = STATE(1829), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4789), - [sym_array_declarator] = STATE(4825), - [sym_compound_statement] = STATE(70), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(2975), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_attributed_statement] = STATE(70), - [sym_labeled_statement] = STATE(70), - [sym_expression_statement] = STATE(70), - [sym_if_statement] = STATE(70), - [sym_switch_statement] = STATE(70), - [sym_case_statement] = STATE(70), - [sym_while_statement] = STATE(70), - [sym_do_statement] = STATE(70), - [sym_for_statement] = STATE(70), - [sym_return_statement] = STATE(70), - [sym_break_statement] = STATE(70), - [sym_continue_statement] = STATE(70), - [sym_goto_statement] = STATE(70), - [sym__expression] = STATE(3645), - [sym_comma_expression] = STATE(6499), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__empty_declaration] = STATE(70), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1790), - [sym_dependent_type] = STATE(3139), - [sym_template_declaration] = STATE(70), - [sym_template_instantiation] = STATE(70), - [sym_operator_cast] = STATE(5178), - [sym__constructor_specifiers] = STATE(1790), - [sym_operator_cast_definition] = STATE(70), - [sym_operator_cast_declaration] = STATE(70), - [sym_constructor_or_destructor_definition] = STATE(70), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3531), - [sym_namespace_definition] = STATE(70), - [sym_namespace_alias_definition] = STATE(70), - [sym_using_declaration] = STATE(70), - [sym_alias_declaration] = STATE(70), - [sym_static_assert_declaration] = STATE(70), - [sym_concept_definition] = STATE(70), - [sym_for_range_loop] = STATE(70), - [sym_co_return_statement] = STATE(70), - [sym_co_yield_statement] = STATE(70), - [sym_throw_statement] = STATE(70), - [sym_try_statement] = STATE(70), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4513), - [sym_qualified_identifier] = STATE(2816), - [sym_qualified_type_identifier] = STATE(3276), - [sym_qualified_operator_cast_identifier] = STATE(5178), - [sym_operator_name] = STATE(4825), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_translation_unit_repeat1] = STATE(70), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_operator_cast_definition_repeat1] = STATE(1790), + [sym_preproc_include] = STATE(52), + [sym_preproc_def] = STATE(52), + [sym_preproc_function_def] = STATE(52), + [sym_preproc_call] = STATE(52), + [sym_preproc_if] = STATE(52), + [sym_preproc_ifdef] = STATE(52), + [sym_function_definition] = STATE(52), + [sym_declaration] = STATE(52), + [sym_type_definition] = STATE(52), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4216), + [sym_linkage_specification] = STATE(52), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym_ms_call_modifier] = STATE(2011), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(5018), + [sym_array_declarator] = STATE(5080), + [sym_compound_statement] = STATE(52), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3372), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_attributed_statement] = STATE(52), + [sym_labeled_statement] = STATE(52), + [sym_expression_statement] = STATE(52), + [sym_if_statement] = STATE(52), + [sym_switch_statement] = STATE(52), + [sym_case_statement] = STATE(52), + [sym_while_statement] = STATE(52), + [sym_do_statement] = STATE(52), + [sym_for_statement] = STATE(52), + [sym_return_statement] = STATE(52), + [sym_break_statement] = STATE(52), + [sym_continue_statement] = STATE(52), + [sym_goto_statement] = STATE(52), + [sym__expression] = STATE(3704), + [sym_comma_expression] = STATE(6857), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__empty_declaration] = STATE(52), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1974), + [sym_dependent_type] = STATE(3481), + [sym_template_declaration] = STATE(52), + [sym_template_instantiation] = STATE(52), + [sym_operator_cast] = STATE(5456), + [sym__constructor_specifiers] = STATE(1974), + [sym_operator_cast_definition] = STATE(52), + [sym_operator_cast_declaration] = STATE(52), + [sym_constructor_or_destructor_definition] = STATE(52), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3608), + [sym_namespace_definition] = STATE(52), + [sym_namespace_alias_definition] = STATE(52), + [sym_using_declaration] = STATE(52), + [sym_alias_declaration] = STATE(52), + [sym_static_assert_declaration] = STATE(52), + [sym_concept_definition] = STATE(52), + [sym_for_range_loop] = STATE(52), + [sym_co_return_statement] = STATE(52), + [sym_co_yield_statement] = STATE(52), + [sym_throw_statement] = STATE(52), + [sym_try_statement] = STATE(52), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4780), + [sym_qualified_identifier] = STATE(2734), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(5456), + [sym_operator_name] = STATE(5080), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_translation_unit_repeat1] = STATE(52), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_operator_cast_definition_repeat1] = STATE(1974), [sym_identifier] = ACTIONS(145), [aux_sym_preproc_include_token1] = ACTIONS(147), [aux_sym_preproc_def_token1] = ACTIONS(149), @@ -37311,7 +38676,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(536), - [anon_sym_RBRACE] = ACTIONS(660), + [anon_sym_RBRACE] = ACTIONS(750), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), @@ -37345,6 +38710,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(187), [anon_sym_continue] = ACTIONS(189), [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -37387,121 +38754,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(143), }, [61] = { - [sym_preproc_include] = STATE(60), - [sym_preproc_def] = STATE(60), - [sym_preproc_function_def] = STATE(60), - [sym_preproc_call] = STATE(60), - [sym_preproc_if] = STATE(60), - [sym_preproc_ifdef] = STATE(60), - [sym_function_definition] = STATE(60), - [sym_declaration] = STATE(60), - [sym_type_definition] = STATE(60), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(3967), - [sym_linkage_specification] = STATE(60), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(1089), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym_ms_call_modifier] = STATE(1829), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4789), - [sym_array_declarator] = STATE(4825), - [sym_compound_statement] = STATE(60), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(2975), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_attributed_statement] = STATE(60), - [sym_labeled_statement] = STATE(60), - [sym_expression_statement] = STATE(60), - [sym_if_statement] = STATE(60), - [sym_switch_statement] = STATE(60), - [sym_case_statement] = STATE(60), - [sym_while_statement] = STATE(60), - [sym_do_statement] = STATE(60), - [sym_for_statement] = STATE(60), - [sym_return_statement] = STATE(60), - [sym_break_statement] = STATE(60), - [sym_continue_statement] = STATE(60), - [sym_goto_statement] = STATE(60), - [sym__expression] = STATE(3645), - [sym_comma_expression] = STATE(6499), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__empty_declaration] = STATE(60), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1790), - [sym_dependent_type] = STATE(3139), - [sym_template_declaration] = STATE(60), - [sym_template_instantiation] = STATE(60), - [sym_operator_cast] = STATE(5178), - [sym__constructor_specifiers] = STATE(1790), - [sym_operator_cast_definition] = STATE(60), - [sym_operator_cast_declaration] = STATE(60), - [sym_constructor_or_destructor_definition] = STATE(60), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3531), - [sym_namespace_definition] = STATE(60), - [sym_namespace_alias_definition] = STATE(60), - [sym_using_declaration] = STATE(60), - [sym_alias_declaration] = STATE(60), - [sym_static_assert_declaration] = STATE(60), - [sym_concept_definition] = STATE(60), - [sym_for_range_loop] = STATE(60), - [sym_co_return_statement] = STATE(60), - [sym_co_yield_statement] = STATE(60), - [sym_throw_statement] = STATE(60), - [sym_try_statement] = STATE(60), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4513), - [sym_qualified_identifier] = STATE(2816), - [sym_qualified_type_identifier] = STATE(3276), - [sym_qualified_operator_cast_identifier] = STATE(5178), - [sym_operator_name] = STATE(4825), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_translation_unit_repeat1] = STATE(60), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_operator_cast_definition_repeat1] = STATE(1790), + [sym_preproc_include] = STATE(59), + [sym_preproc_def] = STATE(59), + [sym_preproc_function_def] = STATE(59), + [sym_preproc_call] = STATE(59), + [sym_preproc_if] = STATE(59), + [sym_preproc_ifdef] = STATE(59), + [sym_function_definition] = STATE(59), + [sym_declaration] = STATE(59), + [sym_type_definition] = STATE(59), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4216), + [sym_linkage_specification] = STATE(59), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym_ms_call_modifier] = STATE(2011), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(5018), + [sym_array_declarator] = STATE(5080), + [sym_compound_statement] = STATE(59), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3372), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_attributed_statement] = STATE(59), + [sym_labeled_statement] = STATE(59), + [sym_expression_statement] = STATE(59), + [sym_if_statement] = STATE(59), + [sym_switch_statement] = STATE(59), + [sym_case_statement] = STATE(59), + [sym_while_statement] = STATE(59), + [sym_do_statement] = STATE(59), + [sym_for_statement] = STATE(59), + [sym_return_statement] = STATE(59), + [sym_break_statement] = STATE(59), + [sym_continue_statement] = STATE(59), + [sym_goto_statement] = STATE(59), + [sym__expression] = STATE(3704), + [sym_comma_expression] = STATE(6857), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__empty_declaration] = STATE(59), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1974), + [sym_dependent_type] = STATE(3481), + [sym_template_declaration] = STATE(59), + [sym_template_instantiation] = STATE(59), + [sym_operator_cast] = STATE(5456), + [sym__constructor_specifiers] = STATE(1974), + [sym_operator_cast_definition] = STATE(59), + [sym_operator_cast_declaration] = STATE(59), + [sym_constructor_or_destructor_definition] = STATE(59), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3608), + [sym_namespace_definition] = STATE(59), + [sym_namespace_alias_definition] = STATE(59), + [sym_using_declaration] = STATE(59), + [sym_alias_declaration] = STATE(59), + [sym_static_assert_declaration] = STATE(59), + [sym_concept_definition] = STATE(59), + [sym_for_range_loop] = STATE(59), + [sym_co_return_statement] = STATE(59), + [sym_co_yield_statement] = STATE(59), + [sym_throw_statement] = STATE(59), + [sym_try_statement] = STATE(59), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4780), + [sym_qualified_identifier] = STATE(2734), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(5456), + [sym_operator_name] = STATE(5080), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_translation_unit_repeat1] = STATE(59), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_operator_cast_definition_repeat1] = STATE(1974), [sym_identifier] = ACTIONS(145), [aux_sym_preproc_include_token1] = ACTIONS(147), [aux_sym_preproc_def_token1] = ACTIONS(149), @@ -37532,7 +38899,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(536), - [anon_sym_RBRACE] = ACTIONS(662), + [anon_sym_RBRACE] = ACTIONS(752), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), @@ -37566,6 +38933,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(187), [anon_sym_continue] = ACTIONS(189), [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -37617,28 +38986,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(62), [sym_declaration] = STATE(62), [sym_type_definition] = STATE(62), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(3994), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4232), [sym_linkage_specification] = STATE(62), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(1089), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym_ms_call_modifier] = STATE(1868), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4765), - [sym_array_declarator] = STATE(4825), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym_ms_call_modifier] = STATE(2073), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(5060), + [sym_array_declarator] = STATE(5080), [sym_compound_statement] = STATE(62), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(3033), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3385), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), [sym_attributed_statement] = STATE(62), [sym_labeled_statement] = STATE(62), [sym_expression_statement] = STATE(62), @@ -37652,44 +39021,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(62), [sym_continue_statement] = STATE(62), [sym_goto_statement] = STATE(62), - [sym__expression] = STATE(3612), - [sym_comma_expression] = STATE(6539), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), + [sym__expression] = STATE(3758), + [sym_comma_expression] = STATE(7239), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), [sym__empty_declaration] = STATE(62), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1772), - [sym_dependent_type] = STATE(3139), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1969), + [sym_dependent_type] = STATE(3481), [sym_template_declaration] = STATE(62), [sym_template_instantiation] = STATE(62), - [sym_operator_cast] = STATE(5212), - [sym__constructor_specifiers] = STATE(1772), + [sym_operator_cast] = STATE(5473), + [sym__constructor_specifiers] = STATE(1969), [sym_operator_cast_definition] = STATE(62), [sym_operator_cast_declaration] = STATE(62), [sym_constructor_or_destructor_definition] = STATE(62), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3531), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3608), [sym_namespace_definition] = STATE(62), [sym_namespace_alias_definition] = STATE(62), [sym_using_declaration] = STATE(62), @@ -37701,36 +39070,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(62), [sym_throw_statement] = STATE(62), [sym_try_statement] = STATE(62), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4513), - [sym_qualified_identifier] = STATE(2816), - [sym_qualified_type_identifier] = STATE(3276), - [sym_qualified_operator_cast_identifier] = STATE(5212), - [sym_operator_name] = STATE(4825), - [sym_user_defined_literal] = STATE(3428), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4780), + [sym_qualified_identifier] = STATE(2734), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(5473), + [sym_operator_name] = STATE(5080), + [sym_user_defined_literal] = STATE(3435), [aux_sym_translation_unit_repeat1] = STATE(62), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(303), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_operator_cast_definition_repeat1] = STATE(1772), - [sym_identifier] = ACTIONS(664), - [aux_sym_preproc_include_token1] = ACTIONS(667), - [aux_sym_preproc_def_token1] = ACTIONS(670), - [aux_sym_preproc_if_token1] = ACTIONS(673), - [aux_sym_preproc_if_token2] = ACTIONS(339), - [aux_sym_preproc_ifdef_token1] = ACTIONS(676), - [aux_sym_preproc_ifdef_token2] = ACTIONS(676), - [sym_preproc_directive] = ACTIONS(679), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(286), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_operator_cast_definition_repeat1] = STATE(1969), + [ts_builtin_sym_end] = ACTIONS(674), + [sym_identifier] = ACTIONS(754), + [aux_sym_preproc_include_token1] = ACTIONS(757), + [aux_sym_preproc_def_token1] = ACTIONS(760), + [aux_sym_preproc_if_token1] = ACTIONS(763), + [aux_sym_preproc_ifdef_token1] = ACTIONS(766), + [aux_sym_preproc_ifdef_token2] = ACTIONS(766), + [sym_preproc_directive] = ACTIONS(769), [anon_sym_LPAREN2] = ACTIONS(347), [anon_sym_BANG] = ACTIONS(350), [anon_sym_TILDE] = ACTIONS(353), @@ -37739,9 +39108,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(359), [anon_sym_AMP_AMP] = ACTIONS(362), [anon_sym_AMP] = ACTIONS(365), - [anon_sym_SEMI] = ACTIONS(682), - [anon_sym_typedef] = ACTIONS(685), - [anon_sym_extern] = ACTIONS(688), + [anon_sym_SEMI] = ACTIONS(772), + [anon_sym_typedef] = ACTIONS(775), + [anon_sym_extern] = ACTIONS(778), [anon_sym___attribute__] = ACTIONS(377), [anon_sym_COLON_COLON] = ACTIONS(380), [anon_sym_LBRACK_LBRACK] = ACTIONS(383), @@ -37753,7 +39122,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(392), [anon_sym___thiscall] = ACTIONS(392), [anon_sym___vectorcall] = ACTIONS(392), - [anon_sym_LBRACE] = ACTIONS(691), + [anon_sym_LBRACE] = ACTIONS(781), [anon_sym_LBRACK] = ACTIONS(398), [anon_sym_static] = ACTIONS(401), [anon_sym_register] = ACTIONS(401), @@ -37776,17 +39145,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(416), [anon_sym_struct] = ACTIONS(419), [anon_sym_union] = ACTIONS(422), - [anon_sym_if] = ACTIONS(694), - [anon_sym_switch] = ACTIONS(697), - [anon_sym_case] = ACTIONS(700), - [anon_sym_default] = ACTIONS(703), - [anon_sym_while] = ACTIONS(706), - [anon_sym_do] = ACTIONS(709), - [anon_sym_for] = ACTIONS(712), - [anon_sym_return] = ACTIONS(715), - [anon_sym_break] = ACTIONS(718), - [anon_sym_continue] = ACTIONS(721), - [anon_sym_goto] = ACTIONS(724), + [anon_sym_if] = ACTIONS(784), + [anon_sym_switch] = ACTIONS(787), + [anon_sym_case] = ACTIONS(790), + [anon_sym_default] = ACTIONS(793), + [anon_sym_while] = ACTIONS(796), + [anon_sym_do] = ACTIONS(799), + [anon_sym_for] = ACTIONS(802), + [anon_sym_return] = ACTIONS(805), + [anon_sym_break] = ACTIONS(808), + [anon_sym_continue] = ACTIONS(811), + [anon_sym_goto] = ACTIONS(814), + [anon_sym_not] = ACTIONS(356), + [anon_sym_compl] = ACTIONS(356), [anon_sym_DASH_DASH] = ACTIONS(458), [anon_sym_PLUS_PLUS] = ACTIONS(458), [anon_sym_sizeof] = ACTIONS(461), @@ -37810,17 +39181,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_virtual] = ACTIONS(482), [anon_sym_explicit] = ACTIONS(485), [anon_sym_typename] = ACTIONS(488), - [anon_sym_template] = ACTIONS(727), + [anon_sym_template] = ACTIONS(817), [anon_sym_operator] = ACTIONS(494), - [anon_sym_try] = ACTIONS(730), + [anon_sym_try] = ACTIONS(820), [anon_sym_delete] = ACTIONS(500), - [anon_sym_throw] = ACTIONS(733), - [anon_sym_namespace] = ACTIONS(736), - [anon_sym_using] = ACTIONS(739), - [anon_sym_static_assert] = ACTIONS(742), - [anon_sym_concept] = ACTIONS(745), - [anon_sym_co_return] = ACTIONS(748), - [anon_sym_co_yield] = ACTIONS(751), + [anon_sym_throw] = ACTIONS(823), + [anon_sym_namespace] = ACTIONS(826), + [anon_sym_using] = ACTIONS(829), + [anon_sym_static_assert] = ACTIONS(832), + [anon_sym_concept] = ACTIONS(835), + [anon_sym_co_return] = ACTIONS(838), + [anon_sym_co_yield] = ACTIONS(841), [anon_sym_co_await] = ACTIONS(524), [anon_sym_new] = ACTIONS(527), [anon_sym_requires] = ACTIONS(530), @@ -37829,121 +39200,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(533), }, [63] = { - [sym_preproc_include] = STATE(70), - [sym_preproc_def] = STATE(70), - [sym_preproc_function_def] = STATE(70), - [sym_preproc_call] = STATE(70), - [sym_preproc_if] = STATE(70), - [sym_preproc_ifdef] = STATE(70), - [sym_function_definition] = STATE(70), - [sym_declaration] = STATE(70), - [sym_type_definition] = STATE(70), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(3967), - [sym_linkage_specification] = STATE(70), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(1089), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym_ms_call_modifier] = STATE(1829), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4789), - [sym_array_declarator] = STATE(4825), - [sym_compound_statement] = STATE(70), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(2975), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_attributed_statement] = STATE(70), - [sym_labeled_statement] = STATE(70), - [sym_expression_statement] = STATE(70), - [sym_if_statement] = STATE(70), - [sym_switch_statement] = STATE(70), - [sym_case_statement] = STATE(70), - [sym_while_statement] = STATE(70), - [sym_do_statement] = STATE(70), - [sym_for_statement] = STATE(70), - [sym_return_statement] = STATE(70), - [sym_break_statement] = STATE(70), - [sym_continue_statement] = STATE(70), - [sym_goto_statement] = STATE(70), - [sym__expression] = STATE(3645), - [sym_comma_expression] = STATE(6499), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__empty_declaration] = STATE(70), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1790), - [sym_dependent_type] = STATE(3139), - [sym_template_declaration] = STATE(70), - [sym_template_instantiation] = STATE(70), - [sym_operator_cast] = STATE(5178), - [sym__constructor_specifiers] = STATE(1790), - [sym_operator_cast_definition] = STATE(70), - [sym_operator_cast_declaration] = STATE(70), - [sym_constructor_or_destructor_definition] = STATE(70), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3531), - [sym_namespace_definition] = STATE(70), - [sym_namespace_alias_definition] = STATE(70), - [sym_using_declaration] = STATE(70), - [sym_alias_declaration] = STATE(70), - [sym_static_assert_declaration] = STATE(70), - [sym_concept_definition] = STATE(70), - [sym_for_range_loop] = STATE(70), - [sym_co_return_statement] = STATE(70), - [sym_co_yield_statement] = STATE(70), - [sym_throw_statement] = STATE(70), - [sym_try_statement] = STATE(70), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4513), - [sym_qualified_identifier] = STATE(2816), - [sym_qualified_type_identifier] = STATE(3276), - [sym_qualified_operator_cast_identifier] = STATE(5178), - [sym_operator_name] = STATE(4825), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_translation_unit_repeat1] = STATE(70), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_operator_cast_definition_repeat1] = STATE(1790), + [sym_preproc_include] = STATE(52), + [sym_preproc_def] = STATE(52), + [sym_preproc_function_def] = STATE(52), + [sym_preproc_call] = STATE(52), + [sym_preproc_if] = STATE(52), + [sym_preproc_ifdef] = STATE(52), + [sym_function_definition] = STATE(52), + [sym_declaration] = STATE(52), + [sym_type_definition] = STATE(52), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4216), + [sym_linkage_specification] = STATE(52), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym_ms_call_modifier] = STATE(2011), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(5018), + [sym_array_declarator] = STATE(5080), + [sym_compound_statement] = STATE(52), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3372), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_attributed_statement] = STATE(52), + [sym_labeled_statement] = STATE(52), + [sym_expression_statement] = STATE(52), + [sym_if_statement] = STATE(52), + [sym_switch_statement] = STATE(52), + [sym_case_statement] = STATE(52), + [sym_while_statement] = STATE(52), + [sym_do_statement] = STATE(52), + [sym_for_statement] = STATE(52), + [sym_return_statement] = STATE(52), + [sym_break_statement] = STATE(52), + [sym_continue_statement] = STATE(52), + [sym_goto_statement] = STATE(52), + [sym__expression] = STATE(3704), + [sym_comma_expression] = STATE(6857), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__empty_declaration] = STATE(52), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1974), + [sym_dependent_type] = STATE(3481), + [sym_template_declaration] = STATE(52), + [sym_template_instantiation] = STATE(52), + [sym_operator_cast] = STATE(5456), + [sym__constructor_specifiers] = STATE(1974), + [sym_operator_cast_definition] = STATE(52), + [sym_operator_cast_declaration] = STATE(52), + [sym_constructor_or_destructor_definition] = STATE(52), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3608), + [sym_namespace_definition] = STATE(52), + [sym_namespace_alias_definition] = STATE(52), + [sym_using_declaration] = STATE(52), + [sym_alias_declaration] = STATE(52), + [sym_static_assert_declaration] = STATE(52), + [sym_concept_definition] = STATE(52), + [sym_for_range_loop] = STATE(52), + [sym_co_return_statement] = STATE(52), + [sym_co_yield_statement] = STATE(52), + [sym_throw_statement] = STATE(52), + [sym_try_statement] = STATE(52), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4780), + [sym_qualified_identifier] = STATE(2734), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(5456), + [sym_operator_name] = STATE(5080), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_translation_unit_repeat1] = STATE(52), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_operator_cast_definition_repeat1] = STATE(1974), [sym_identifier] = ACTIONS(145), [aux_sym_preproc_include_token1] = ACTIONS(147), [aux_sym_preproc_def_token1] = ACTIONS(149), @@ -37974,7 +39345,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(536), - [anon_sym_RBRACE] = ACTIONS(754), + [anon_sym_RBRACE] = ACTIONS(844), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), @@ -38008,6 +39379,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(187), [anon_sym_continue] = ACTIONS(189), [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -38050,121 +39423,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(143), }, [64] = { - [sym_preproc_include] = STATE(70), - [sym_preproc_def] = STATE(70), - [sym_preproc_function_def] = STATE(70), - [sym_preproc_call] = STATE(70), - [sym_preproc_if] = STATE(70), - [sym_preproc_ifdef] = STATE(70), - [sym_function_definition] = STATE(70), - [sym_declaration] = STATE(70), - [sym_type_definition] = STATE(70), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(3967), - [sym_linkage_specification] = STATE(70), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(1089), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym_ms_call_modifier] = STATE(1829), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4789), - [sym_array_declarator] = STATE(4825), - [sym_compound_statement] = STATE(70), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(2975), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_attributed_statement] = STATE(70), - [sym_labeled_statement] = STATE(70), - [sym_expression_statement] = STATE(70), - [sym_if_statement] = STATE(70), - [sym_switch_statement] = STATE(70), - [sym_case_statement] = STATE(70), - [sym_while_statement] = STATE(70), - [sym_do_statement] = STATE(70), - [sym_for_statement] = STATE(70), - [sym_return_statement] = STATE(70), - [sym_break_statement] = STATE(70), - [sym_continue_statement] = STATE(70), - [sym_goto_statement] = STATE(70), - [sym__expression] = STATE(3645), - [sym_comma_expression] = STATE(6499), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__empty_declaration] = STATE(70), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1790), - [sym_dependent_type] = STATE(3139), - [sym_template_declaration] = STATE(70), - [sym_template_instantiation] = STATE(70), - [sym_operator_cast] = STATE(5178), - [sym__constructor_specifiers] = STATE(1790), - [sym_operator_cast_definition] = STATE(70), - [sym_operator_cast_declaration] = STATE(70), - [sym_constructor_or_destructor_definition] = STATE(70), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3531), - [sym_namespace_definition] = STATE(70), - [sym_namespace_alias_definition] = STATE(70), - [sym_using_declaration] = STATE(70), - [sym_alias_declaration] = STATE(70), - [sym_static_assert_declaration] = STATE(70), - [sym_concept_definition] = STATE(70), - [sym_for_range_loop] = STATE(70), - [sym_co_return_statement] = STATE(70), - [sym_co_yield_statement] = STATE(70), - [sym_throw_statement] = STATE(70), - [sym_try_statement] = STATE(70), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4513), - [sym_qualified_identifier] = STATE(2816), - [sym_qualified_type_identifier] = STATE(3276), - [sym_qualified_operator_cast_identifier] = STATE(5178), - [sym_operator_name] = STATE(4825), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_translation_unit_repeat1] = STATE(70), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_operator_cast_definition_repeat1] = STATE(1790), + [sym_preproc_include] = STATE(72), + [sym_preproc_def] = STATE(72), + [sym_preproc_function_def] = STATE(72), + [sym_preproc_call] = STATE(72), + [sym_preproc_if] = STATE(72), + [sym_preproc_ifdef] = STATE(72), + [sym_function_definition] = STATE(72), + [sym_declaration] = STATE(72), + [sym_type_definition] = STATE(72), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4216), + [sym_linkage_specification] = STATE(72), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym_ms_call_modifier] = STATE(2011), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(5018), + [sym_array_declarator] = STATE(5080), + [sym_compound_statement] = STATE(72), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3372), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_attributed_statement] = STATE(72), + [sym_labeled_statement] = STATE(72), + [sym_expression_statement] = STATE(72), + [sym_if_statement] = STATE(72), + [sym_switch_statement] = STATE(72), + [sym_case_statement] = STATE(72), + [sym_while_statement] = STATE(72), + [sym_do_statement] = STATE(72), + [sym_for_statement] = STATE(72), + [sym_return_statement] = STATE(72), + [sym_break_statement] = STATE(72), + [sym_continue_statement] = STATE(72), + [sym_goto_statement] = STATE(72), + [sym__expression] = STATE(3704), + [sym_comma_expression] = STATE(6857), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__empty_declaration] = STATE(72), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1974), + [sym_dependent_type] = STATE(3481), + [sym_template_declaration] = STATE(72), + [sym_template_instantiation] = STATE(72), + [sym_operator_cast] = STATE(5456), + [sym__constructor_specifiers] = STATE(1974), + [sym_operator_cast_definition] = STATE(72), + [sym_operator_cast_declaration] = STATE(72), + [sym_constructor_or_destructor_definition] = STATE(72), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3608), + [sym_namespace_definition] = STATE(72), + [sym_namespace_alias_definition] = STATE(72), + [sym_using_declaration] = STATE(72), + [sym_alias_declaration] = STATE(72), + [sym_static_assert_declaration] = STATE(72), + [sym_concept_definition] = STATE(72), + [sym_for_range_loop] = STATE(72), + [sym_co_return_statement] = STATE(72), + [sym_co_yield_statement] = STATE(72), + [sym_throw_statement] = STATE(72), + [sym_try_statement] = STATE(72), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4780), + [sym_qualified_identifier] = STATE(2734), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(5456), + [sym_operator_name] = STATE(5080), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_translation_unit_repeat1] = STATE(72), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_operator_cast_definition_repeat1] = STATE(1974), [sym_identifier] = ACTIONS(145), [aux_sym_preproc_include_token1] = ACTIONS(147), [aux_sym_preproc_def_token1] = ACTIONS(149), @@ -38195,7 +39568,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(536), - [anon_sym_RBRACE] = ACTIONS(756), + [anon_sym_RBRACE] = ACTIONS(846), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), @@ -38229,6 +39602,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(187), [anon_sym_continue] = ACTIONS(189), [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -38280,28 +39655,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(63), [sym_declaration] = STATE(63), [sym_type_definition] = STATE(63), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(3967), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4216), [sym_linkage_specification] = STATE(63), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(1089), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym_ms_call_modifier] = STATE(1829), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4789), - [sym_array_declarator] = STATE(4825), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym_ms_call_modifier] = STATE(2011), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(5018), + [sym_array_declarator] = STATE(5080), [sym_compound_statement] = STATE(63), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(2975), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3372), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), [sym_attributed_statement] = STATE(63), [sym_labeled_statement] = STATE(63), [sym_expression_statement] = STATE(63), @@ -38315,44 +39690,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(63), [sym_continue_statement] = STATE(63), [sym_goto_statement] = STATE(63), - [sym__expression] = STATE(3645), - [sym_comma_expression] = STATE(6499), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), + [sym__expression] = STATE(3704), + [sym_comma_expression] = STATE(6857), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), [sym__empty_declaration] = STATE(63), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1790), - [sym_dependent_type] = STATE(3139), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1974), + [sym_dependent_type] = STATE(3481), [sym_template_declaration] = STATE(63), [sym_template_instantiation] = STATE(63), - [sym_operator_cast] = STATE(5178), - [sym__constructor_specifiers] = STATE(1790), + [sym_operator_cast] = STATE(5456), + [sym__constructor_specifiers] = STATE(1974), [sym_operator_cast_definition] = STATE(63), [sym_operator_cast_declaration] = STATE(63), [sym_constructor_or_destructor_definition] = STATE(63), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3531), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3608), [sym_namespace_definition] = STATE(63), [sym_namespace_alias_definition] = STATE(63), [sym_using_declaration] = STATE(63), @@ -38364,28 +39739,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(63), [sym_throw_statement] = STATE(63), [sym_try_statement] = STATE(63), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4513), - [sym_qualified_identifier] = STATE(2816), - [sym_qualified_type_identifier] = STATE(3276), - [sym_qualified_operator_cast_identifier] = STATE(5178), - [sym_operator_name] = STATE(4825), - [sym_user_defined_literal] = STATE(3428), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4780), + [sym_qualified_identifier] = STATE(2734), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(5456), + [sym_operator_name] = STATE(5080), + [sym_user_defined_literal] = STATE(3435), [aux_sym_translation_unit_repeat1] = STATE(63), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_operator_cast_definition_repeat1] = STATE(1790), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_operator_cast_definition_repeat1] = STATE(1974), [sym_identifier] = ACTIONS(145), [aux_sym_preproc_include_token1] = ACTIONS(147), [aux_sym_preproc_def_token1] = ACTIONS(149), @@ -38416,7 +39791,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(536), - [anon_sym_RBRACE] = ACTIONS(758), + [anon_sym_RBRACE] = ACTIONS(848), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), @@ -38450,6 +39825,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(187), [anon_sym_continue] = ACTIONS(189), [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -38492,121 +39869,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(143), }, [66] = { - [sym_preproc_include] = STATE(70), - [sym_preproc_def] = STATE(70), - [sym_preproc_function_def] = STATE(70), - [sym_preproc_call] = STATE(70), - [sym_preproc_if] = STATE(70), - [sym_preproc_ifdef] = STATE(70), - [sym_function_definition] = STATE(70), - [sym_declaration] = STATE(70), - [sym_type_definition] = STATE(70), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(3967), - [sym_linkage_specification] = STATE(70), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(1089), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym_ms_call_modifier] = STATE(1829), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4789), - [sym_array_declarator] = STATE(4825), - [sym_compound_statement] = STATE(70), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(2975), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_attributed_statement] = STATE(70), - [sym_labeled_statement] = STATE(70), - [sym_expression_statement] = STATE(70), - [sym_if_statement] = STATE(70), - [sym_switch_statement] = STATE(70), - [sym_case_statement] = STATE(70), - [sym_while_statement] = STATE(70), - [sym_do_statement] = STATE(70), - [sym_for_statement] = STATE(70), - [sym_return_statement] = STATE(70), - [sym_break_statement] = STATE(70), - [sym_continue_statement] = STATE(70), - [sym_goto_statement] = STATE(70), - [sym__expression] = STATE(3645), - [sym_comma_expression] = STATE(6499), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__empty_declaration] = STATE(70), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1790), - [sym_dependent_type] = STATE(3139), - [sym_template_declaration] = STATE(70), - [sym_template_instantiation] = STATE(70), - [sym_operator_cast] = STATE(5178), - [sym__constructor_specifiers] = STATE(1790), - [sym_operator_cast_definition] = STATE(70), - [sym_operator_cast_declaration] = STATE(70), - [sym_constructor_or_destructor_definition] = STATE(70), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3531), - [sym_namespace_definition] = STATE(70), - [sym_namespace_alias_definition] = STATE(70), - [sym_using_declaration] = STATE(70), - [sym_alias_declaration] = STATE(70), - [sym_static_assert_declaration] = STATE(70), - [sym_concept_definition] = STATE(70), - [sym_for_range_loop] = STATE(70), - [sym_co_return_statement] = STATE(70), - [sym_co_yield_statement] = STATE(70), - [sym_throw_statement] = STATE(70), - [sym_try_statement] = STATE(70), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4513), - [sym_qualified_identifier] = STATE(2816), - [sym_qualified_type_identifier] = STATE(3276), - [sym_qualified_operator_cast_identifier] = STATE(5178), - [sym_operator_name] = STATE(4825), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_translation_unit_repeat1] = STATE(70), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_operator_cast_definition_repeat1] = STATE(1790), + [sym_preproc_include] = STATE(52), + [sym_preproc_def] = STATE(52), + [sym_preproc_function_def] = STATE(52), + [sym_preproc_call] = STATE(52), + [sym_preproc_if] = STATE(52), + [sym_preproc_ifdef] = STATE(52), + [sym_function_definition] = STATE(52), + [sym_declaration] = STATE(52), + [sym_type_definition] = STATE(52), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4216), + [sym_linkage_specification] = STATE(52), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym_ms_call_modifier] = STATE(2011), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(5018), + [sym_array_declarator] = STATE(5080), + [sym_compound_statement] = STATE(52), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3372), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_attributed_statement] = STATE(52), + [sym_labeled_statement] = STATE(52), + [sym_expression_statement] = STATE(52), + [sym_if_statement] = STATE(52), + [sym_switch_statement] = STATE(52), + [sym_case_statement] = STATE(52), + [sym_while_statement] = STATE(52), + [sym_do_statement] = STATE(52), + [sym_for_statement] = STATE(52), + [sym_return_statement] = STATE(52), + [sym_break_statement] = STATE(52), + [sym_continue_statement] = STATE(52), + [sym_goto_statement] = STATE(52), + [sym__expression] = STATE(3704), + [sym_comma_expression] = STATE(6857), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__empty_declaration] = STATE(52), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1974), + [sym_dependent_type] = STATE(3481), + [sym_template_declaration] = STATE(52), + [sym_template_instantiation] = STATE(52), + [sym_operator_cast] = STATE(5456), + [sym__constructor_specifiers] = STATE(1974), + [sym_operator_cast_definition] = STATE(52), + [sym_operator_cast_declaration] = STATE(52), + [sym_constructor_or_destructor_definition] = STATE(52), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3608), + [sym_namespace_definition] = STATE(52), + [sym_namespace_alias_definition] = STATE(52), + [sym_using_declaration] = STATE(52), + [sym_alias_declaration] = STATE(52), + [sym_static_assert_declaration] = STATE(52), + [sym_concept_definition] = STATE(52), + [sym_for_range_loop] = STATE(52), + [sym_co_return_statement] = STATE(52), + [sym_co_yield_statement] = STATE(52), + [sym_throw_statement] = STATE(52), + [sym_try_statement] = STATE(52), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4780), + [sym_qualified_identifier] = STATE(2734), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(5456), + [sym_operator_name] = STATE(5080), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_translation_unit_repeat1] = STATE(52), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_operator_cast_definition_repeat1] = STATE(1974), [sym_identifier] = ACTIONS(145), [aux_sym_preproc_include_token1] = ACTIONS(147), [aux_sym_preproc_def_token1] = ACTIONS(149), @@ -38637,7 +40014,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(536), - [anon_sym_RBRACE] = ACTIONS(760), + [anon_sym_RBRACE] = ACTIONS(850), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), @@ -38671,6 +40048,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(187), [anon_sym_continue] = ACTIONS(189), [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -38713,121 +40092,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(143), }, [67] = { - [sym_preproc_include] = STATE(68), - [sym_preproc_def] = STATE(68), - [sym_preproc_function_def] = STATE(68), - [sym_preproc_call] = STATE(68), - [sym_preproc_if] = STATE(68), - [sym_preproc_ifdef] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_declaration] = STATE(68), - [sym_type_definition] = STATE(68), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(3967), - [sym_linkage_specification] = STATE(68), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(1089), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym_ms_call_modifier] = STATE(1829), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4789), - [sym_array_declarator] = STATE(4825), - [sym_compound_statement] = STATE(68), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(2975), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_attributed_statement] = STATE(68), - [sym_labeled_statement] = STATE(68), - [sym_expression_statement] = STATE(68), - [sym_if_statement] = STATE(68), - [sym_switch_statement] = STATE(68), - [sym_case_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_do_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_return_statement] = STATE(68), - [sym_break_statement] = STATE(68), - [sym_continue_statement] = STATE(68), - [sym_goto_statement] = STATE(68), - [sym__expression] = STATE(3645), - [sym_comma_expression] = STATE(6499), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__empty_declaration] = STATE(68), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1790), - [sym_dependent_type] = STATE(3139), - [sym_template_declaration] = STATE(68), - [sym_template_instantiation] = STATE(68), - [sym_operator_cast] = STATE(5178), - [sym__constructor_specifiers] = STATE(1790), - [sym_operator_cast_definition] = STATE(68), - [sym_operator_cast_declaration] = STATE(68), - [sym_constructor_or_destructor_definition] = STATE(68), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3531), - [sym_namespace_definition] = STATE(68), - [sym_namespace_alias_definition] = STATE(68), - [sym_using_declaration] = STATE(68), - [sym_alias_declaration] = STATE(68), - [sym_static_assert_declaration] = STATE(68), - [sym_concept_definition] = STATE(68), - [sym_for_range_loop] = STATE(68), - [sym_co_return_statement] = STATE(68), - [sym_co_yield_statement] = STATE(68), - [sym_throw_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4513), - [sym_qualified_identifier] = STATE(2816), - [sym_qualified_type_identifier] = STATE(3276), - [sym_qualified_operator_cast_identifier] = STATE(5178), - [sym_operator_name] = STATE(4825), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_translation_unit_repeat1] = STATE(68), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_operator_cast_definition_repeat1] = STATE(1790), + [sym_preproc_include] = STATE(74), + [sym_preproc_def] = STATE(74), + [sym_preproc_function_def] = STATE(74), + [sym_preproc_call] = STATE(74), + [sym_preproc_if] = STATE(74), + [sym_preproc_ifdef] = STATE(74), + [sym_function_definition] = STATE(74), + [sym_declaration] = STATE(74), + [sym_type_definition] = STATE(74), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4216), + [sym_linkage_specification] = STATE(74), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym_ms_call_modifier] = STATE(2011), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(5018), + [sym_array_declarator] = STATE(5080), + [sym_compound_statement] = STATE(74), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3372), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_attributed_statement] = STATE(74), + [sym_labeled_statement] = STATE(74), + [sym_expression_statement] = STATE(74), + [sym_if_statement] = STATE(74), + [sym_switch_statement] = STATE(74), + [sym_case_statement] = STATE(74), + [sym_while_statement] = STATE(74), + [sym_do_statement] = STATE(74), + [sym_for_statement] = STATE(74), + [sym_return_statement] = STATE(74), + [sym_break_statement] = STATE(74), + [sym_continue_statement] = STATE(74), + [sym_goto_statement] = STATE(74), + [sym__expression] = STATE(3704), + [sym_comma_expression] = STATE(6857), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__empty_declaration] = STATE(74), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1974), + [sym_dependent_type] = STATE(3481), + [sym_template_declaration] = STATE(74), + [sym_template_instantiation] = STATE(74), + [sym_operator_cast] = STATE(5456), + [sym__constructor_specifiers] = STATE(1974), + [sym_operator_cast_definition] = STATE(74), + [sym_operator_cast_declaration] = STATE(74), + [sym_constructor_or_destructor_definition] = STATE(74), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3608), + [sym_namespace_definition] = STATE(74), + [sym_namespace_alias_definition] = STATE(74), + [sym_using_declaration] = STATE(74), + [sym_alias_declaration] = STATE(74), + [sym_static_assert_declaration] = STATE(74), + [sym_concept_definition] = STATE(74), + [sym_for_range_loop] = STATE(74), + [sym_co_return_statement] = STATE(74), + [sym_co_yield_statement] = STATE(74), + [sym_throw_statement] = STATE(74), + [sym_try_statement] = STATE(74), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4780), + [sym_qualified_identifier] = STATE(2734), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(5456), + [sym_operator_name] = STATE(5080), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_translation_unit_repeat1] = STATE(74), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_operator_cast_definition_repeat1] = STATE(1974), [sym_identifier] = ACTIONS(145), [aux_sym_preproc_include_token1] = ACTIONS(147), [aux_sym_preproc_def_token1] = ACTIONS(149), @@ -38858,7 +40237,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(536), - [anon_sym_RBRACE] = ACTIONS(762), + [anon_sym_RBRACE] = ACTIONS(852), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), @@ -38892,6 +40271,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(187), [anon_sym_continue] = ACTIONS(189), [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -38934,121 +40315,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(143), }, [68] = { - [sym_preproc_include] = STATE(70), - [sym_preproc_def] = STATE(70), - [sym_preproc_function_def] = STATE(70), - [sym_preproc_call] = STATE(70), - [sym_preproc_if] = STATE(70), - [sym_preproc_ifdef] = STATE(70), - [sym_function_definition] = STATE(70), - [sym_declaration] = STATE(70), - [sym_type_definition] = STATE(70), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(3967), - [sym_linkage_specification] = STATE(70), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(1089), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym_ms_call_modifier] = STATE(1829), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4789), - [sym_array_declarator] = STATE(4825), - [sym_compound_statement] = STATE(70), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(2975), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_attributed_statement] = STATE(70), - [sym_labeled_statement] = STATE(70), - [sym_expression_statement] = STATE(70), - [sym_if_statement] = STATE(70), - [sym_switch_statement] = STATE(70), - [sym_case_statement] = STATE(70), - [sym_while_statement] = STATE(70), - [sym_do_statement] = STATE(70), - [sym_for_statement] = STATE(70), - [sym_return_statement] = STATE(70), - [sym_break_statement] = STATE(70), - [sym_continue_statement] = STATE(70), - [sym_goto_statement] = STATE(70), - [sym__expression] = STATE(3645), - [sym_comma_expression] = STATE(6499), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__empty_declaration] = STATE(70), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1790), - [sym_dependent_type] = STATE(3139), - [sym_template_declaration] = STATE(70), - [sym_template_instantiation] = STATE(70), - [sym_operator_cast] = STATE(5178), - [sym__constructor_specifiers] = STATE(1790), - [sym_operator_cast_definition] = STATE(70), - [sym_operator_cast_declaration] = STATE(70), - [sym_constructor_or_destructor_definition] = STATE(70), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3531), - [sym_namespace_definition] = STATE(70), - [sym_namespace_alias_definition] = STATE(70), - [sym_using_declaration] = STATE(70), - [sym_alias_declaration] = STATE(70), - [sym_static_assert_declaration] = STATE(70), - [sym_concept_definition] = STATE(70), - [sym_for_range_loop] = STATE(70), - [sym_co_return_statement] = STATE(70), - [sym_co_yield_statement] = STATE(70), - [sym_throw_statement] = STATE(70), - [sym_try_statement] = STATE(70), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4513), - [sym_qualified_identifier] = STATE(2816), - [sym_qualified_type_identifier] = STATE(3276), - [sym_qualified_operator_cast_identifier] = STATE(5178), - [sym_operator_name] = STATE(4825), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_translation_unit_repeat1] = STATE(70), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_operator_cast_definition_repeat1] = STATE(1790), + [sym_preproc_include] = STATE(66), + [sym_preproc_def] = STATE(66), + [sym_preproc_function_def] = STATE(66), + [sym_preproc_call] = STATE(66), + [sym_preproc_if] = STATE(66), + [sym_preproc_ifdef] = STATE(66), + [sym_function_definition] = STATE(66), + [sym_declaration] = STATE(66), + [sym_type_definition] = STATE(66), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4216), + [sym_linkage_specification] = STATE(66), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym_ms_call_modifier] = STATE(2011), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(5018), + [sym_array_declarator] = STATE(5080), + [sym_compound_statement] = STATE(66), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3372), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_attributed_statement] = STATE(66), + [sym_labeled_statement] = STATE(66), + [sym_expression_statement] = STATE(66), + [sym_if_statement] = STATE(66), + [sym_switch_statement] = STATE(66), + [sym_case_statement] = STATE(66), + [sym_while_statement] = STATE(66), + [sym_do_statement] = STATE(66), + [sym_for_statement] = STATE(66), + [sym_return_statement] = STATE(66), + [sym_break_statement] = STATE(66), + [sym_continue_statement] = STATE(66), + [sym_goto_statement] = STATE(66), + [sym__expression] = STATE(3704), + [sym_comma_expression] = STATE(6857), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__empty_declaration] = STATE(66), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1974), + [sym_dependent_type] = STATE(3481), + [sym_template_declaration] = STATE(66), + [sym_template_instantiation] = STATE(66), + [sym_operator_cast] = STATE(5456), + [sym__constructor_specifiers] = STATE(1974), + [sym_operator_cast_definition] = STATE(66), + [sym_operator_cast_declaration] = STATE(66), + [sym_constructor_or_destructor_definition] = STATE(66), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3608), + [sym_namespace_definition] = STATE(66), + [sym_namespace_alias_definition] = STATE(66), + [sym_using_declaration] = STATE(66), + [sym_alias_declaration] = STATE(66), + [sym_static_assert_declaration] = STATE(66), + [sym_concept_definition] = STATE(66), + [sym_for_range_loop] = STATE(66), + [sym_co_return_statement] = STATE(66), + [sym_co_yield_statement] = STATE(66), + [sym_throw_statement] = STATE(66), + [sym_try_statement] = STATE(66), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4780), + [sym_qualified_identifier] = STATE(2734), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(5456), + [sym_operator_name] = STATE(5080), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_translation_unit_repeat1] = STATE(66), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_operator_cast_definition_repeat1] = STATE(1974), [sym_identifier] = ACTIONS(145), [aux_sym_preproc_include_token1] = ACTIONS(147), [aux_sym_preproc_def_token1] = ACTIONS(149), @@ -39079,7 +40460,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(536), - [anon_sym_RBRACE] = ACTIONS(764), + [anon_sym_RBRACE] = ACTIONS(854), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), @@ -39113,6 +40494,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(187), [anon_sym_continue] = ACTIONS(189), [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -39155,563 +40538,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(143), }, [69] = { - [sym_preproc_include] = STATE(69), - [sym_preproc_def] = STATE(69), - [sym_preproc_function_def] = STATE(69), - [sym_preproc_call] = STATE(69), - [sym_preproc_if] = STATE(69), - [sym_preproc_ifdef] = STATE(69), - [sym_function_definition] = STATE(69), - [sym_declaration] = STATE(69), - [sym_type_definition] = STATE(69), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(4003), - [sym_linkage_specification] = STATE(69), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(1089), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym_ms_call_modifier] = STATE(1797), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4796), - [sym_array_declarator] = STATE(4825), - [sym_compound_statement] = STATE(69), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(3085), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_attributed_statement] = STATE(69), - [sym_labeled_statement] = STATE(69), - [sym_expression_statement] = STATE(69), - [sym_if_statement] = STATE(69), - [sym_switch_statement] = STATE(69), - [sym_case_statement] = STATE(69), - [sym_while_statement] = STATE(69), - [sym_do_statement] = STATE(69), - [sym_for_statement] = STATE(69), - [sym_return_statement] = STATE(69), - [sym_break_statement] = STATE(69), - [sym_continue_statement] = STATE(69), - [sym_goto_statement] = STATE(69), - [sym__expression] = STATE(3605), - [sym_comma_expression] = STATE(6558), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__empty_declaration] = STATE(69), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1768), - [sym_dependent_type] = STATE(3139), - [sym_template_declaration] = STATE(69), - [sym_template_instantiation] = STATE(69), - [sym_operator_cast] = STATE(5184), - [sym__constructor_specifiers] = STATE(1768), - [sym_operator_cast_definition] = STATE(69), - [sym_operator_cast_declaration] = STATE(69), - [sym_constructor_or_destructor_definition] = STATE(69), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3531), - [sym_namespace_definition] = STATE(69), - [sym_namespace_alias_definition] = STATE(69), - [sym_using_declaration] = STATE(69), - [sym_alias_declaration] = STATE(69), - [sym_static_assert_declaration] = STATE(69), - [sym_concept_definition] = STATE(69), - [sym_for_range_loop] = STATE(69), - [sym_co_return_statement] = STATE(69), - [sym_co_yield_statement] = STATE(69), - [sym_throw_statement] = STATE(69), - [sym_try_statement] = STATE(69), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4513), - [sym_qualified_identifier] = STATE(2816), - [sym_qualified_type_identifier] = STATE(3276), - [sym_qualified_operator_cast_identifier] = STATE(5184), - [sym_operator_name] = STATE(4825), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_translation_unit_repeat1] = STATE(69), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(282), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_operator_cast_definition_repeat1] = STATE(1768), - [ts_builtin_sym_end] = ACTIONS(766), - [sym_identifier] = ACTIONS(768), - [aux_sym_preproc_include_token1] = ACTIONS(771), - [aux_sym_preproc_def_token1] = ACTIONS(774), - [aux_sym_preproc_if_token1] = ACTIONS(777), - [aux_sym_preproc_ifdef_token1] = ACTIONS(780), - [aux_sym_preproc_ifdef_token2] = ACTIONS(780), - [sym_preproc_directive] = ACTIONS(783), - [anon_sym_LPAREN2] = ACTIONS(347), - [anon_sym_BANG] = ACTIONS(350), - [anon_sym_TILDE] = ACTIONS(353), - [anon_sym_DASH] = ACTIONS(356), - [anon_sym_PLUS] = ACTIONS(356), - [anon_sym_STAR] = ACTIONS(359), - [anon_sym_AMP_AMP] = ACTIONS(362), - [anon_sym_AMP] = ACTIONS(365), - [anon_sym_SEMI] = ACTIONS(786), - [anon_sym_typedef] = ACTIONS(789), - [anon_sym_extern] = ACTIONS(792), - [anon_sym___attribute__] = ACTIONS(377), - [anon_sym_COLON_COLON] = ACTIONS(380), - [anon_sym_LBRACK_LBRACK] = ACTIONS(383), - [anon_sym___declspec] = ACTIONS(386), - [anon_sym___based] = ACTIONS(389), - [anon_sym___cdecl] = ACTIONS(392), - [anon_sym___clrcall] = ACTIONS(392), - [anon_sym___stdcall] = ACTIONS(392), - [anon_sym___fastcall] = ACTIONS(392), - [anon_sym___thiscall] = ACTIONS(392), - [anon_sym___vectorcall] = ACTIONS(392), - [anon_sym_LBRACE] = ACTIONS(795), - [anon_sym_LBRACK] = ACTIONS(398), - [anon_sym_static] = ACTIONS(401), - [anon_sym_register] = ACTIONS(401), - [anon_sym_inline] = ACTIONS(401), - [anon_sym_thread_local] = ACTIONS(401), - [anon_sym_const] = ACTIONS(404), - [anon_sym_volatile] = ACTIONS(404), - [anon_sym_restrict] = ACTIONS(404), - [anon_sym__Atomic] = ACTIONS(404), - [anon_sym_mutable] = ACTIONS(404), - [anon_sym_constexpr] = ACTIONS(404), - [anon_sym_constinit] = ACTIONS(404), - [anon_sym_consteval] = ACTIONS(404), - [anon_sym_signed] = ACTIONS(407), - [anon_sym_unsigned] = ACTIONS(407), - [anon_sym_long] = ACTIONS(407), - [anon_sym_short] = ACTIONS(407), - [sym_primitive_type] = ACTIONS(410), - [anon_sym_enum] = ACTIONS(413), - [anon_sym_class] = ACTIONS(416), - [anon_sym_struct] = ACTIONS(419), - [anon_sym_union] = ACTIONS(422), - [anon_sym_if] = ACTIONS(798), - [anon_sym_switch] = ACTIONS(801), - [anon_sym_case] = ACTIONS(804), - [anon_sym_default] = ACTIONS(807), - [anon_sym_while] = ACTIONS(810), - [anon_sym_do] = ACTIONS(813), - [anon_sym_for] = ACTIONS(816), - [anon_sym_return] = ACTIONS(819), - [anon_sym_break] = ACTIONS(822), - [anon_sym_continue] = ACTIONS(825), - [anon_sym_goto] = ACTIONS(828), - [anon_sym_DASH_DASH] = ACTIONS(458), - [anon_sym_PLUS_PLUS] = ACTIONS(458), - [anon_sym_sizeof] = ACTIONS(461), - [sym_number_literal] = ACTIONS(464), - [anon_sym_L_SQUOTE] = ACTIONS(467), - [anon_sym_u_SQUOTE] = ACTIONS(467), - [anon_sym_U_SQUOTE] = ACTIONS(467), - [anon_sym_u8_SQUOTE] = ACTIONS(467), - [anon_sym_SQUOTE] = ACTIONS(467), - [anon_sym_L_DQUOTE] = ACTIONS(470), - [anon_sym_u_DQUOTE] = ACTIONS(470), - [anon_sym_U_DQUOTE] = ACTIONS(470), - [anon_sym_u8_DQUOTE] = ACTIONS(470), - [anon_sym_DQUOTE] = ACTIONS(470), - [sym_true] = ACTIONS(473), - [sym_false] = ACTIONS(473), - [sym_null] = ACTIONS(473), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(476), - [anon_sym_decltype] = ACTIONS(479), - [anon_sym_virtual] = ACTIONS(482), - [anon_sym_explicit] = ACTIONS(485), - [anon_sym_typename] = ACTIONS(488), - [anon_sym_template] = ACTIONS(831), - [anon_sym_operator] = ACTIONS(494), - [anon_sym_try] = ACTIONS(834), - [anon_sym_delete] = ACTIONS(500), - [anon_sym_throw] = ACTIONS(837), - [anon_sym_namespace] = ACTIONS(840), - [anon_sym_using] = ACTIONS(843), - [anon_sym_static_assert] = ACTIONS(846), - [anon_sym_concept] = ACTIONS(849), - [anon_sym_co_return] = ACTIONS(852), - [anon_sym_co_yield] = ACTIONS(855), - [anon_sym_co_await] = ACTIONS(524), - [anon_sym_new] = ACTIONS(527), - [anon_sym_requires] = ACTIONS(530), - [sym_this] = ACTIONS(473), - [sym_nullptr] = ACTIONS(473), - [sym_raw_string_literal] = ACTIONS(533), - }, - [70] = { - [sym_preproc_include] = STATE(70), - [sym_preproc_def] = STATE(70), - [sym_preproc_function_def] = STATE(70), - [sym_preproc_call] = STATE(70), - [sym_preproc_if] = STATE(70), - [sym_preproc_ifdef] = STATE(70), - [sym_function_definition] = STATE(70), - [sym_declaration] = STATE(70), - [sym_type_definition] = STATE(70), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(3967), - [sym_linkage_specification] = STATE(70), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(1089), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym_ms_call_modifier] = STATE(1829), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4789), - [sym_array_declarator] = STATE(4825), - [sym_compound_statement] = STATE(70), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(2975), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_attributed_statement] = STATE(70), - [sym_labeled_statement] = STATE(70), - [sym_expression_statement] = STATE(70), - [sym_if_statement] = STATE(70), - [sym_switch_statement] = STATE(70), - [sym_case_statement] = STATE(70), - [sym_while_statement] = STATE(70), - [sym_do_statement] = STATE(70), - [sym_for_statement] = STATE(70), - [sym_return_statement] = STATE(70), - [sym_break_statement] = STATE(70), - [sym_continue_statement] = STATE(70), - [sym_goto_statement] = STATE(70), - [sym__expression] = STATE(3645), - [sym_comma_expression] = STATE(6499), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__empty_declaration] = STATE(70), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1790), - [sym_dependent_type] = STATE(3139), - [sym_template_declaration] = STATE(70), - [sym_template_instantiation] = STATE(70), - [sym_operator_cast] = STATE(5178), - [sym__constructor_specifiers] = STATE(1790), - [sym_operator_cast_definition] = STATE(70), - [sym_operator_cast_declaration] = STATE(70), - [sym_constructor_or_destructor_definition] = STATE(70), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3531), - [sym_namespace_definition] = STATE(70), - [sym_namespace_alias_definition] = STATE(70), - [sym_using_declaration] = STATE(70), - [sym_alias_declaration] = STATE(70), - [sym_static_assert_declaration] = STATE(70), - [sym_concept_definition] = STATE(70), - [sym_for_range_loop] = STATE(70), - [sym_co_return_statement] = STATE(70), - [sym_co_yield_statement] = STATE(70), - [sym_throw_statement] = STATE(70), - [sym_try_statement] = STATE(70), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4513), - [sym_qualified_identifier] = STATE(2816), - [sym_qualified_type_identifier] = STATE(3276), - [sym_qualified_operator_cast_identifier] = STATE(5178), - [sym_operator_name] = STATE(4825), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_translation_unit_repeat1] = STATE(70), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_operator_cast_definition_repeat1] = STATE(1790), - [sym_identifier] = ACTIONS(858), - [aux_sym_preproc_include_token1] = ACTIONS(861), - [aux_sym_preproc_def_token1] = ACTIONS(864), - [aux_sym_preproc_if_token1] = ACTIONS(867), - [aux_sym_preproc_ifdef_token1] = ACTIONS(870), - [aux_sym_preproc_ifdef_token2] = ACTIONS(870), - [sym_preproc_directive] = ACTIONS(873), - [anon_sym_LPAREN2] = ACTIONS(347), - [anon_sym_BANG] = ACTIONS(350), - [anon_sym_TILDE] = ACTIONS(353), - [anon_sym_DASH] = ACTIONS(356), - [anon_sym_PLUS] = ACTIONS(356), - [anon_sym_STAR] = ACTIONS(359), - [anon_sym_AMP_AMP] = ACTIONS(362), - [anon_sym_AMP] = ACTIONS(365), - [anon_sym_SEMI] = ACTIONS(876), - [anon_sym_typedef] = ACTIONS(879), - [anon_sym_extern] = ACTIONS(882), - [anon_sym___attribute__] = ACTIONS(377), - [anon_sym_COLON_COLON] = ACTIONS(380), - [anon_sym_LBRACK_LBRACK] = ACTIONS(383), - [anon_sym___declspec] = ACTIONS(386), - [anon_sym___based] = ACTIONS(389), - [anon_sym___cdecl] = ACTIONS(392), - [anon_sym___clrcall] = ACTIONS(392), - [anon_sym___stdcall] = ACTIONS(392), - [anon_sym___fastcall] = ACTIONS(392), - [anon_sym___thiscall] = ACTIONS(392), - [anon_sym___vectorcall] = ACTIONS(392), - [anon_sym_LBRACE] = ACTIONS(885), - [anon_sym_RBRACE] = ACTIONS(766), - [anon_sym_LBRACK] = ACTIONS(398), - [anon_sym_static] = ACTIONS(401), - [anon_sym_register] = ACTIONS(401), - [anon_sym_inline] = ACTIONS(401), - [anon_sym_thread_local] = ACTIONS(401), - [anon_sym_const] = ACTIONS(404), - [anon_sym_volatile] = ACTIONS(404), - [anon_sym_restrict] = ACTIONS(404), - [anon_sym__Atomic] = ACTIONS(404), - [anon_sym_mutable] = ACTIONS(404), - [anon_sym_constexpr] = ACTIONS(404), - [anon_sym_constinit] = ACTIONS(404), - [anon_sym_consteval] = ACTIONS(404), - [anon_sym_signed] = ACTIONS(407), - [anon_sym_unsigned] = ACTIONS(407), - [anon_sym_long] = ACTIONS(407), - [anon_sym_short] = ACTIONS(407), - [sym_primitive_type] = ACTIONS(410), - [anon_sym_enum] = ACTIONS(413), - [anon_sym_class] = ACTIONS(416), - [anon_sym_struct] = ACTIONS(419), - [anon_sym_union] = ACTIONS(422), - [anon_sym_if] = ACTIONS(888), - [anon_sym_switch] = ACTIONS(891), - [anon_sym_case] = ACTIONS(894), - [anon_sym_default] = ACTIONS(897), - [anon_sym_while] = ACTIONS(900), - [anon_sym_do] = ACTIONS(903), - [anon_sym_for] = ACTIONS(906), - [anon_sym_return] = ACTIONS(909), - [anon_sym_break] = ACTIONS(912), - [anon_sym_continue] = ACTIONS(915), - [anon_sym_goto] = ACTIONS(918), - [anon_sym_DASH_DASH] = ACTIONS(458), - [anon_sym_PLUS_PLUS] = ACTIONS(458), - [anon_sym_sizeof] = ACTIONS(461), - [sym_number_literal] = ACTIONS(464), - [anon_sym_L_SQUOTE] = ACTIONS(467), - [anon_sym_u_SQUOTE] = ACTIONS(467), - [anon_sym_U_SQUOTE] = ACTIONS(467), - [anon_sym_u8_SQUOTE] = ACTIONS(467), - [anon_sym_SQUOTE] = ACTIONS(467), - [anon_sym_L_DQUOTE] = ACTIONS(470), - [anon_sym_u_DQUOTE] = ACTIONS(470), - [anon_sym_U_DQUOTE] = ACTIONS(470), - [anon_sym_u8_DQUOTE] = ACTIONS(470), - [anon_sym_DQUOTE] = ACTIONS(470), - [sym_true] = ACTIONS(473), - [sym_false] = ACTIONS(473), - [sym_null] = ACTIONS(473), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(476), - [anon_sym_decltype] = ACTIONS(479), - [anon_sym_virtual] = ACTIONS(482), - [anon_sym_explicit] = ACTIONS(485), - [anon_sym_typename] = ACTIONS(488), - [anon_sym_template] = ACTIONS(921), - [anon_sym_operator] = ACTIONS(494), - [anon_sym_try] = ACTIONS(924), - [anon_sym_delete] = ACTIONS(500), - [anon_sym_throw] = ACTIONS(927), - [anon_sym_namespace] = ACTIONS(930), - [anon_sym_using] = ACTIONS(933), - [anon_sym_static_assert] = ACTIONS(936), - [anon_sym_concept] = ACTIONS(939), - [anon_sym_co_return] = ACTIONS(942), - [anon_sym_co_yield] = ACTIONS(945), - [anon_sym_co_await] = ACTIONS(524), - [anon_sym_new] = ACTIONS(527), - [anon_sym_requires] = ACTIONS(530), - [sym_this] = ACTIONS(473), - [sym_nullptr] = ACTIONS(473), - [sym_raw_string_literal] = ACTIONS(533), - }, - [71] = { - [sym_preproc_include] = STATE(41), - [sym_preproc_def] = STATE(41), - [sym_preproc_function_def] = STATE(41), - [sym_preproc_call] = STATE(41), - [sym_preproc_if] = STATE(41), - [sym_preproc_ifdef] = STATE(41), - [sym_function_definition] = STATE(41), - [sym_declaration] = STATE(41), - [sym_type_definition] = STATE(41), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(3967), - [sym_linkage_specification] = STATE(41), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(1089), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym_ms_call_modifier] = STATE(1829), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4789), - [sym_array_declarator] = STATE(4825), - [sym_compound_statement] = STATE(41), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(2975), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_attributed_statement] = STATE(41), - [sym_labeled_statement] = STATE(41), - [sym_expression_statement] = STATE(41), - [sym_if_statement] = STATE(41), - [sym_switch_statement] = STATE(41), - [sym_case_statement] = STATE(41), - [sym_while_statement] = STATE(41), - [sym_do_statement] = STATE(41), - [sym_for_statement] = STATE(41), - [sym_return_statement] = STATE(41), - [sym_break_statement] = STATE(41), - [sym_continue_statement] = STATE(41), - [sym_goto_statement] = STATE(41), - [sym__expression] = STATE(3645), - [sym_comma_expression] = STATE(6499), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__empty_declaration] = STATE(41), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1790), - [sym_dependent_type] = STATE(3139), - [sym_template_declaration] = STATE(41), - [sym_template_instantiation] = STATE(41), - [sym_operator_cast] = STATE(5178), - [sym__constructor_specifiers] = STATE(1790), - [sym_operator_cast_definition] = STATE(41), - [sym_operator_cast_declaration] = STATE(41), - [sym_constructor_or_destructor_definition] = STATE(41), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3531), - [sym_namespace_definition] = STATE(41), - [sym_namespace_alias_definition] = STATE(41), - [sym_using_declaration] = STATE(41), - [sym_alias_declaration] = STATE(41), - [sym_static_assert_declaration] = STATE(41), - [sym_concept_definition] = STATE(41), - [sym_for_range_loop] = STATE(41), - [sym_co_return_statement] = STATE(41), - [sym_co_yield_statement] = STATE(41), - [sym_throw_statement] = STATE(41), - [sym_try_statement] = STATE(41), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4513), - [sym_qualified_identifier] = STATE(2816), - [sym_qualified_type_identifier] = STATE(3276), - [sym_qualified_operator_cast_identifier] = STATE(5178), - [sym_operator_name] = STATE(4825), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_translation_unit_repeat1] = STATE(41), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_operator_cast_definition_repeat1] = STATE(1790), + [sym_preproc_include] = STATE(52), + [sym_preproc_def] = STATE(52), + [sym_preproc_function_def] = STATE(52), + [sym_preproc_call] = STATE(52), + [sym_preproc_if] = STATE(52), + [sym_preproc_ifdef] = STATE(52), + [sym_function_definition] = STATE(52), + [sym_declaration] = STATE(52), + [sym_type_definition] = STATE(52), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4216), + [sym_linkage_specification] = STATE(52), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym_ms_call_modifier] = STATE(2011), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(5018), + [sym_array_declarator] = STATE(5080), + [sym_compound_statement] = STATE(52), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3372), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_attributed_statement] = STATE(52), + [sym_labeled_statement] = STATE(52), + [sym_expression_statement] = STATE(52), + [sym_if_statement] = STATE(52), + [sym_switch_statement] = STATE(52), + [sym_case_statement] = STATE(52), + [sym_while_statement] = STATE(52), + [sym_do_statement] = STATE(52), + [sym_for_statement] = STATE(52), + [sym_return_statement] = STATE(52), + [sym_break_statement] = STATE(52), + [sym_continue_statement] = STATE(52), + [sym_goto_statement] = STATE(52), + [sym__expression] = STATE(3704), + [sym_comma_expression] = STATE(6857), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__empty_declaration] = STATE(52), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1974), + [sym_dependent_type] = STATE(3481), + [sym_template_declaration] = STATE(52), + [sym_template_instantiation] = STATE(52), + [sym_operator_cast] = STATE(5456), + [sym__constructor_specifiers] = STATE(1974), + [sym_operator_cast_definition] = STATE(52), + [sym_operator_cast_declaration] = STATE(52), + [sym_constructor_or_destructor_definition] = STATE(52), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3608), + [sym_namespace_definition] = STATE(52), + [sym_namespace_alias_definition] = STATE(52), + [sym_using_declaration] = STATE(52), + [sym_alias_declaration] = STATE(52), + [sym_static_assert_declaration] = STATE(52), + [sym_concept_definition] = STATE(52), + [sym_for_range_loop] = STATE(52), + [sym_co_return_statement] = STATE(52), + [sym_co_yield_statement] = STATE(52), + [sym_throw_statement] = STATE(52), + [sym_try_statement] = STATE(52), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4780), + [sym_qualified_identifier] = STATE(2734), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(5456), + [sym_operator_name] = STATE(5080), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_translation_unit_repeat1] = STATE(52), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_operator_cast_definition_repeat1] = STATE(1974), [sym_identifier] = ACTIONS(145), [aux_sym_preproc_include_token1] = ACTIONS(147), [aux_sym_preproc_def_token1] = ACTIONS(149), @@ -39742,7 +40683,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(536), - [anon_sym_RBRACE] = ACTIONS(948), + [anon_sym_RBRACE] = ACTIONS(856), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), @@ -39776,6 +40717,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(187), [anon_sym_continue] = ACTIONS(189), [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -39817,122 +40760,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [72] = { - [sym_preproc_include] = STATE(73), - [sym_preproc_def] = STATE(73), - [sym_preproc_function_def] = STATE(73), - [sym_preproc_call] = STATE(73), - [sym_preproc_if] = STATE(73), - [sym_preproc_ifdef] = STATE(73), - [sym_function_definition] = STATE(73), - [sym_declaration] = STATE(73), - [sym_type_definition] = STATE(73), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(3967), - [sym_linkage_specification] = STATE(73), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(1089), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym_ms_call_modifier] = STATE(1829), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4789), - [sym_array_declarator] = STATE(4825), - [sym_compound_statement] = STATE(73), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(2975), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_attributed_statement] = STATE(73), - [sym_labeled_statement] = STATE(73), - [sym_expression_statement] = STATE(73), - [sym_if_statement] = STATE(73), - [sym_switch_statement] = STATE(73), - [sym_case_statement] = STATE(73), - [sym_while_statement] = STATE(73), - [sym_do_statement] = STATE(73), - [sym_for_statement] = STATE(73), - [sym_return_statement] = STATE(73), - [sym_break_statement] = STATE(73), - [sym_continue_statement] = STATE(73), - [sym_goto_statement] = STATE(73), - [sym__expression] = STATE(3645), - [sym_comma_expression] = STATE(6499), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__empty_declaration] = STATE(73), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1790), - [sym_dependent_type] = STATE(3139), - [sym_template_declaration] = STATE(73), - [sym_template_instantiation] = STATE(73), - [sym_operator_cast] = STATE(5178), - [sym__constructor_specifiers] = STATE(1790), - [sym_operator_cast_definition] = STATE(73), - [sym_operator_cast_declaration] = STATE(73), - [sym_constructor_or_destructor_definition] = STATE(73), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3531), - [sym_namespace_definition] = STATE(73), - [sym_namespace_alias_definition] = STATE(73), - [sym_using_declaration] = STATE(73), - [sym_alias_declaration] = STATE(73), - [sym_static_assert_declaration] = STATE(73), - [sym_concept_definition] = STATE(73), - [sym_for_range_loop] = STATE(73), - [sym_co_return_statement] = STATE(73), - [sym_co_yield_statement] = STATE(73), - [sym_throw_statement] = STATE(73), - [sym_try_statement] = STATE(73), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4513), - [sym_qualified_identifier] = STATE(2816), - [sym_qualified_type_identifier] = STATE(3276), - [sym_qualified_operator_cast_identifier] = STATE(5178), - [sym_operator_name] = STATE(4825), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_translation_unit_repeat1] = STATE(73), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_operator_cast_definition_repeat1] = STATE(1790), + [70] = { + [sym_preproc_include] = STATE(52), + [sym_preproc_def] = STATE(52), + [sym_preproc_function_def] = STATE(52), + [sym_preproc_call] = STATE(52), + [sym_preproc_if] = STATE(52), + [sym_preproc_ifdef] = STATE(52), + [sym_function_definition] = STATE(52), + [sym_declaration] = STATE(52), + [sym_type_definition] = STATE(52), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4216), + [sym_linkage_specification] = STATE(52), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym_ms_call_modifier] = STATE(2011), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(5018), + [sym_array_declarator] = STATE(5080), + [sym_compound_statement] = STATE(52), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3372), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_attributed_statement] = STATE(52), + [sym_labeled_statement] = STATE(52), + [sym_expression_statement] = STATE(52), + [sym_if_statement] = STATE(52), + [sym_switch_statement] = STATE(52), + [sym_case_statement] = STATE(52), + [sym_while_statement] = STATE(52), + [sym_do_statement] = STATE(52), + [sym_for_statement] = STATE(52), + [sym_return_statement] = STATE(52), + [sym_break_statement] = STATE(52), + [sym_continue_statement] = STATE(52), + [sym_goto_statement] = STATE(52), + [sym__expression] = STATE(3704), + [sym_comma_expression] = STATE(6857), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__empty_declaration] = STATE(52), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1974), + [sym_dependent_type] = STATE(3481), + [sym_template_declaration] = STATE(52), + [sym_template_instantiation] = STATE(52), + [sym_operator_cast] = STATE(5456), + [sym__constructor_specifiers] = STATE(1974), + [sym_operator_cast_definition] = STATE(52), + [sym_operator_cast_declaration] = STATE(52), + [sym_constructor_or_destructor_definition] = STATE(52), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3608), + [sym_namespace_definition] = STATE(52), + [sym_namespace_alias_definition] = STATE(52), + [sym_using_declaration] = STATE(52), + [sym_alias_declaration] = STATE(52), + [sym_static_assert_declaration] = STATE(52), + [sym_concept_definition] = STATE(52), + [sym_for_range_loop] = STATE(52), + [sym_co_return_statement] = STATE(52), + [sym_co_yield_statement] = STATE(52), + [sym_throw_statement] = STATE(52), + [sym_try_statement] = STATE(52), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4780), + [sym_qualified_identifier] = STATE(2734), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(5456), + [sym_operator_name] = STATE(5080), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_translation_unit_repeat1] = STATE(52), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_operator_cast_definition_repeat1] = STATE(1974), [sym_identifier] = ACTIONS(145), [aux_sym_preproc_include_token1] = ACTIONS(147), [aux_sym_preproc_def_token1] = ACTIONS(149), @@ -39963,7 +40906,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(536), - [anon_sym_RBRACE] = ACTIONS(950), + [anon_sym_RBRACE] = ACTIONS(858), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), @@ -39997,6 +40940,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(187), [anon_sym_continue] = ACTIONS(189), [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -40038,126 +40983,572 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [73] = { - [sym_preproc_include] = STATE(70), - [sym_preproc_def] = STATE(70), - [sym_preproc_function_def] = STATE(70), - [sym_preproc_call] = STATE(70), - [sym_preproc_if] = STATE(70), - [sym_preproc_ifdef] = STATE(70), - [sym_function_definition] = STATE(70), - [sym_declaration] = STATE(70), - [sym_type_definition] = STATE(70), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(3967), - [sym_linkage_specification] = STATE(70), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(1089), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym_ms_call_modifier] = STATE(1829), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4789), - [sym_array_declarator] = STATE(4825), - [sym_compound_statement] = STATE(70), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(2975), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_attributed_statement] = STATE(70), - [sym_labeled_statement] = STATE(70), - [sym_expression_statement] = STATE(70), - [sym_if_statement] = STATE(70), - [sym_switch_statement] = STATE(70), - [sym_case_statement] = STATE(70), - [sym_while_statement] = STATE(70), - [sym_do_statement] = STATE(70), - [sym_for_statement] = STATE(70), - [sym_return_statement] = STATE(70), - [sym_break_statement] = STATE(70), - [sym_continue_statement] = STATE(70), - [sym_goto_statement] = STATE(70), - [sym__expression] = STATE(3645), - [sym_comma_expression] = STATE(6499), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__empty_declaration] = STATE(70), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1790), - [sym_dependent_type] = STATE(3139), - [sym_template_declaration] = STATE(70), - [sym_template_instantiation] = STATE(70), - [sym_operator_cast] = STATE(5178), - [sym__constructor_specifiers] = STATE(1790), - [sym_operator_cast_definition] = STATE(70), - [sym_operator_cast_declaration] = STATE(70), - [sym_constructor_or_destructor_definition] = STATE(70), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3531), - [sym_namespace_definition] = STATE(70), - [sym_namespace_alias_definition] = STATE(70), - [sym_using_declaration] = STATE(70), - [sym_alias_declaration] = STATE(70), - [sym_static_assert_declaration] = STATE(70), - [sym_concept_definition] = STATE(70), - [sym_for_range_loop] = STATE(70), - [sym_co_return_statement] = STATE(70), - [sym_co_yield_statement] = STATE(70), - [sym_throw_statement] = STATE(70), - [sym_try_statement] = STATE(70), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4513), - [sym_qualified_identifier] = STATE(2816), - [sym_qualified_type_identifier] = STATE(3276), - [sym_qualified_operator_cast_identifier] = STATE(5178), - [sym_operator_name] = STATE(4825), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_translation_unit_repeat1] = STATE(70), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_operator_cast_definition_repeat1] = STATE(1790), - [sym_identifier] = ACTIONS(145), - [aux_sym_preproc_include_token1] = ACTIONS(147), - [aux_sym_preproc_def_token1] = ACTIONS(149), - [aux_sym_preproc_if_token1] = ACTIONS(153), + [71] = { + [sym_preproc_include] = STATE(62), + [sym_preproc_def] = STATE(62), + [sym_preproc_function_def] = STATE(62), + [sym_preproc_call] = STATE(62), + [sym_preproc_if] = STATE(62), + [sym_preproc_ifdef] = STATE(62), + [sym_function_definition] = STATE(62), + [sym_declaration] = STATE(62), + [sym_type_definition] = STATE(62), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4232), + [sym_linkage_specification] = STATE(62), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym_ms_call_modifier] = STATE(2073), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(5060), + [sym_array_declarator] = STATE(5080), + [sym_compound_statement] = STATE(62), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3385), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_attributed_statement] = STATE(62), + [sym_labeled_statement] = STATE(62), + [sym_expression_statement] = STATE(62), + [sym_if_statement] = STATE(62), + [sym_switch_statement] = STATE(62), + [sym_case_statement] = STATE(62), + [sym_while_statement] = STATE(62), + [sym_do_statement] = STATE(62), + [sym_for_statement] = STATE(62), + [sym_return_statement] = STATE(62), + [sym_break_statement] = STATE(62), + [sym_continue_statement] = STATE(62), + [sym_goto_statement] = STATE(62), + [sym__expression] = STATE(3758), + [sym_comma_expression] = STATE(7239), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__empty_declaration] = STATE(62), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1969), + [sym_dependent_type] = STATE(3481), + [sym_template_declaration] = STATE(62), + [sym_template_instantiation] = STATE(62), + [sym_operator_cast] = STATE(5473), + [sym__constructor_specifiers] = STATE(1969), + [sym_operator_cast_definition] = STATE(62), + [sym_operator_cast_declaration] = STATE(62), + [sym_constructor_or_destructor_definition] = STATE(62), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3608), + [sym_namespace_definition] = STATE(62), + [sym_namespace_alias_definition] = STATE(62), + [sym_using_declaration] = STATE(62), + [sym_alias_declaration] = STATE(62), + [sym_static_assert_declaration] = STATE(62), + [sym_concept_definition] = STATE(62), + [sym_for_range_loop] = STATE(62), + [sym_co_return_statement] = STATE(62), + [sym_co_yield_statement] = STATE(62), + [sym_throw_statement] = STATE(62), + [sym_try_statement] = STATE(62), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4780), + [sym_qualified_identifier] = STATE(2734), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(5473), + [sym_operator_name] = STATE(5080), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_translation_unit_repeat1] = STATE(62), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(286), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_operator_cast_definition_repeat1] = STATE(1969), + [ts_builtin_sym_end] = ACTIONS(860), + [sym_identifier] = ACTIONS(7), + [aux_sym_preproc_include_token1] = ACTIONS(9), + [aux_sym_preproc_def_token1] = ACTIONS(11), + [aux_sym_preproc_if_token1] = ACTIONS(13), + [aux_sym_preproc_ifdef_token1] = ACTIONS(15), + [aux_sym_preproc_ifdef_token2] = ACTIONS(15), + [sym_preproc_directive] = ACTIONS(17), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_typedef] = ACTIONS(35), + [anon_sym_extern] = ACTIONS(37), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(43), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(75), + [anon_sym_default] = ACTIONS(77), + [anon_sym_while] = ACTIONS(79), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(115), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_try] = ACTIONS(119), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_namespace] = ACTIONS(125), + [anon_sym_using] = ACTIONS(127), + [anon_sym_static_assert] = ACTIONS(129), + [anon_sym_concept] = ACTIONS(131), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [72] = { + [sym_preproc_include] = STATE(52), + [sym_preproc_def] = STATE(52), + [sym_preproc_function_def] = STATE(52), + [sym_preproc_call] = STATE(52), + [sym_preproc_if] = STATE(52), + [sym_preproc_ifdef] = STATE(52), + [sym_function_definition] = STATE(52), + [sym_declaration] = STATE(52), + [sym_type_definition] = STATE(52), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4216), + [sym_linkage_specification] = STATE(52), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym_ms_call_modifier] = STATE(2011), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(5018), + [sym_array_declarator] = STATE(5080), + [sym_compound_statement] = STATE(52), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3372), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_attributed_statement] = STATE(52), + [sym_labeled_statement] = STATE(52), + [sym_expression_statement] = STATE(52), + [sym_if_statement] = STATE(52), + [sym_switch_statement] = STATE(52), + [sym_case_statement] = STATE(52), + [sym_while_statement] = STATE(52), + [sym_do_statement] = STATE(52), + [sym_for_statement] = STATE(52), + [sym_return_statement] = STATE(52), + [sym_break_statement] = STATE(52), + [sym_continue_statement] = STATE(52), + [sym_goto_statement] = STATE(52), + [sym__expression] = STATE(3704), + [sym_comma_expression] = STATE(6857), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__empty_declaration] = STATE(52), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1974), + [sym_dependent_type] = STATE(3481), + [sym_template_declaration] = STATE(52), + [sym_template_instantiation] = STATE(52), + [sym_operator_cast] = STATE(5456), + [sym__constructor_specifiers] = STATE(1974), + [sym_operator_cast_definition] = STATE(52), + [sym_operator_cast_declaration] = STATE(52), + [sym_constructor_or_destructor_definition] = STATE(52), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3608), + [sym_namespace_definition] = STATE(52), + [sym_namespace_alias_definition] = STATE(52), + [sym_using_declaration] = STATE(52), + [sym_alias_declaration] = STATE(52), + [sym_static_assert_declaration] = STATE(52), + [sym_concept_definition] = STATE(52), + [sym_for_range_loop] = STATE(52), + [sym_co_return_statement] = STATE(52), + [sym_co_yield_statement] = STATE(52), + [sym_throw_statement] = STATE(52), + [sym_try_statement] = STATE(52), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4780), + [sym_qualified_identifier] = STATE(2734), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(5456), + [sym_operator_name] = STATE(5080), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_translation_unit_repeat1] = STATE(52), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_operator_cast_definition_repeat1] = STATE(1974), + [sym_identifier] = ACTIONS(145), + [aux_sym_preproc_include_token1] = ACTIONS(147), + [aux_sym_preproc_def_token1] = ACTIONS(149), + [aux_sym_preproc_if_token1] = ACTIONS(153), + [aux_sym_preproc_ifdef_token1] = ACTIONS(155), + [aux_sym_preproc_ifdef_token2] = ACTIONS(155), + [sym_preproc_directive] = ACTIONS(157), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_typedef] = ACTIONS(161), + [anon_sym_extern] = ACTIONS(163), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(43), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_RBRACE] = ACTIONS(862), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(195), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_try] = ACTIONS(197), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_namespace] = ACTIONS(201), + [anon_sym_using] = ACTIONS(203), + [anon_sym_static_assert] = ACTIONS(205), + [anon_sym_concept] = ACTIONS(207), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [73] = { + [sym_preproc_include] = STATE(52), + [sym_preproc_def] = STATE(52), + [sym_preproc_function_def] = STATE(52), + [sym_preproc_call] = STATE(52), + [sym_preproc_if] = STATE(52), + [sym_preproc_ifdef] = STATE(52), + [sym_function_definition] = STATE(52), + [sym_declaration] = STATE(52), + [sym_type_definition] = STATE(52), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4216), + [sym_linkage_specification] = STATE(52), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym_ms_call_modifier] = STATE(2011), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(5018), + [sym_array_declarator] = STATE(5080), + [sym_compound_statement] = STATE(52), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3372), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_attributed_statement] = STATE(52), + [sym_labeled_statement] = STATE(52), + [sym_expression_statement] = STATE(52), + [sym_if_statement] = STATE(52), + [sym_switch_statement] = STATE(52), + [sym_case_statement] = STATE(52), + [sym_while_statement] = STATE(52), + [sym_do_statement] = STATE(52), + [sym_for_statement] = STATE(52), + [sym_return_statement] = STATE(52), + [sym_break_statement] = STATE(52), + [sym_continue_statement] = STATE(52), + [sym_goto_statement] = STATE(52), + [sym__expression] = STATE(3704), + [sym_comma_expression] = STATE(6857), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__empty_declaration] = STATE(52), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1974), + [sym_dependent_type] = STATE(3481), + [sym_template_declaration] = STATE(52), + [sym_template_instantiation] = STATE(52), + [sym_operator_cast] = STATE(5456), + [sym__constructor_specifiers] = STATE(1974), + [sym_operator_cast_definition] = STATE(52), + [sym_operator_cast_declaration] = STATE(52), + [sym_constructor_or_destructor_definition] = STATE(52), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3608), + [sym_namespace_definition] = STATE(52), + [sym_namespace_alias_definition] = STATE(52), + [sym_using_declaration] = STATE(52), + [sym_alias_declaration] = STATE(52), + [sym_static_assert_declaration] = STATE(52), + [sym_concept_definition] = STATE(52), + [sym_for_range_loop] = STATE(52), + [sym_co_return_statement] = STATE(52), + [sym_co_yield_statement] = STATE(52), + [sym_throw_statement] = STATE(52), + [sym_try_statement] = STATE(52), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4780), + [sym_qualified_identifier] = STATE(2734), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(5456), + [sym_operator_name] = STATE(5080), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_translation_unit_repeat1] = STATE(52), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_operator_cast_definition_repeat1] = STATE(1974), + [sym_identifier] = ACTIONS(145), + [aux_sym_preproc_include_token1] = ACTIONS(147), + [aux_sym_preproc_def_token1] = ACTIONS(149), + [aux_sym_preproc_if_token1] = ACTIONS(153), [aux_sym_preproc_ifdef_token1] = ACTIONS(155), [aux_sym_preproc_ifdef_token2] = ACTIONS(155), [sym_preproc_directive] = ACTIONS(157), @@ -40184,7 +41575,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(536), - [anon_sym_RBRACE] = ACTIONS(952), + [anon_sym_RBRACE] = ACTIONS(864), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), @@ -40218,6 +41609,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(187), [anon_sym_continue] = ACTIONS(189), [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -40260,121 +41653,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(143), }, [74] = { - [sym_preproc_include] = STATE(70), - [sym_preproc_def] = STATE(70), - [sym_preproc_function_def] = STATE(70), - [sym_preproc_call] = STATE(70), - [sym_preproc_if] = STATE(70), - [sym_preproc_ifdef] = STATE(70), - [sym_function_definition] = STATE(70), - [sym_declaration] = STATE(70), - [sym_type_definition] = STATE(70), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(3967), - [sym_linkage_specification] = STATE(70), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(1089), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym_ms_call_modifier] = STATE(1829), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4789), - [sym_array_declarator] = STATE(4825), - [sym_compound_statement] = STATE(70), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(2975), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_attributed_statement] = STATE(70), - [sym_labeled_statement] = STATE(70), - [sym_expression_statement] = STATE(70), - [sym_if_statement] = STATE(70), - [sym_switch_statement] = STATE(70), - [sym_case_statement] = STATE(70), - [sym_while_statement] = STATE(70), - [sym_do_statement] = STATE(70), - [sym_for_statement] = STATE(70), - [sym_return_statement] = STATE(70), - [sym_break_statement] = STATE(70), - [sym_continue_statement] = STATE(70), - [sym_goto_statement] = STATE(70), - [sym__expression] = STATE(3645), - [sym_comma_expression] = STATE(6499), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__empty_declaration] = STATE(70), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1790), - [sym_dependent_type] = STATE(3139), - [sym_template_declaration] = STATE(70), - [sym_template_instantiation] = STATE(70), - [sym_operator_cast] = STATE(5178), - [sym__constructor_specifiers] = STATE(1790), - [sym_operator_cast_definition] = STATE(70), - [sym_operator_cast_declaration] = STATE(70), - [sym_constructor_or_destructor_definition] = STATE(70), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3531), - [sym_namespace_definition] = STATE(70), - [sym_namespace_alias_definition] = STATE(70), - [sym_using_declaration] = STATE(70), - [sym_alias_declaration] = STATE(70), - [sym_static_assert_declaration] = STATE(70), - [sym_concept_definition] = STATE(70), - [sym_for_range_loop] = STATE(70), - [sym_co_return_statement] = STATE(70), - [sym_co_yield_statement] = STATE(70), - [sym_throw_statement] = STATE(70), - [sym_try_statement] = STATE(70), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4513), - [sym_qualified_identifier] = STATE(2816), - [sym_qualified_type_identifier] = STATE(3276), - [sym_qualified_operator_cast_identifier] = STATE(5178), - [sym_operator_name] = STATE(4825), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_translation_unit_repeat1] = STATE(70), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_operator_cast_definition_repeat1] = STATE(1790), + [sym_preproc_include] = STATE(52), + [sym_preproc_def] = STATE(52), + [sym_preproc_function_def] = STATE(52), + [sym_preproc_call] = STATE(52), + [sym_preproc_if] = STATE(52), + [sym_preproc_ifdef] = STATE(52), + [sym_function_definition] = STATE(52), + [sym_declaration] = STATE(52), + [sym_type_definition] = STATE(52), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4216), + [sym_linkage_specification] = STATE(52), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym_ms_call_modifier] = STATE(2011), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(5018), + [sym_array_declarator] = STATE(5080), + [sym_compound_statement] = STATE(52), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3372), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_attributed_statement] = STATE(52), + [sym_labeled_statement] = STATE(52), + [sym_expression_statement] = STATE(52), + [sym_if_statement] = STATE(52), + [sym_switch_statement] = STATE(52), + [sym_case_statement] = STATE(52), + [sym_while_statement] = STATE(52), + [sym_do_statement] = STATE(52), + [sym_for_statement] = STATE(52), + [sym_return_statement] = STATE(52), + [sym_break_statement] = STATE(52), + [sym_continue_statement] = STATE(52), + [sym_goto_statement] = STATE(52), + [sym__expression] = STATE(3704), + [sym_comma_expression] = STATE(6857), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__empty_declaration] = STATE(52), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1974), + [sym_dependent_type] = STATE(3481), + [sym_template_declaration] = STATE(52), + [sym_template_instantiation] = STATE(52), + [sym_operator_cast] = STATE(5456), + [sym__constructor_specifiers] = STATE(1974), + [sym_operator_cast_definition] = STATE(52), + [sym_operator_cast_declaration] = STATE(52), + [sym_constructor_or_destructor_definition] = STATE(52), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3608), + [sym_namespace_definition] = STATE(52), + [sym_namespace_alias_definition] = STATE(52), + [sym_using_declaration] = STATE(52), + [sym_alias_declaration] = STATE(52), + [sym_static_assert_declaration] = STATE(52), + [sym_concept_definition] = STATE(52), + [sym_for_range_loop] = STATE(52), + [sym_co_return_statement] = STATE(52), + [sym_co_yield_statement] = STATE(52), + [sym_throw_statement] = STATE(52), + [sym_try_statement] = STATE(52), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4780), + [sym_qualified_identifier] = STATE(2734), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(5456), + [sym_operator_name] = STATE(5080), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_translation_unit_repeat1] = STATE(52), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_operator_cast_definition_repeat1] = STATE(1974), [sym_identifier] = ACTIONS(145), [aux_sym_preproc_include_token1] = ACTIONS(147), [aux_sym_preproc_def_token1] = ACTIONS(149), @@ -40405,7 +41798,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(49), [anon_sym___vectorcall] = ACTIONS(49), [anon_sym_LBRACE] = ACTIONS(536), - [anon_sym_RBRACE] = ACTIONS(954), + [anon_sym_RBRACE] = ACTIONS(866), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), @@ -40439,6 +41832,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(187), [anon_sym_continue] = ACTIONS(189), [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -40481,117 +41876,153 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(143), }, [75] = { - [sym_declaration] = STATE(78), - [sym_type_definition] = STATE(78), - [sym__declaration_modifiers] = STATE(1894), - [sym__declaration_specifiers] = STATE(3975), - [sym_attribute_specifier] = STATE(1894), - [sym_attribute_declaration] = STATE(1147), - [sym_ms_declspec_modifier] = STATE(1894), - [sym_compound_statement] = STATE(78), - [sym_storage_class_specifier] = STATE(1894), - [sym_type_qualifier] = STATE(1894), - [sym__type_specifier] = STATE(2596), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_attributed_statement] = STATE(78), - [sym_labeled_statement] = STATE(78), - [sym_expression_statement] = STATE(78), - [sym_if_statement] = STATE(78), - [sym_switch_statement] = STATE(78), - [sym_while_statement] = STATE(78), - [sym_do_statement] = STATE(78), - [sym_for_statement] = STATE(78), - [sym_return_statement] = STATE(78), - [sym_break_statement] = STATE(78), - [sym_continue_statement] = STATE(78), - [sym_goto_statement] = STATE(78), - [sym__expression] = STATE(3579), - [sym_comma_expression] = STATE(6778), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(1894), - [sym_dependent_type] = STATE(3139), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(78), - [sym_co_return_statement] = STATE(78), - [sym_co_yield_statement] = STATE(78), - [sym_throw_statement] = STATE(78), - [sym_try_statement] = STATE(78), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4625), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(3276), - [sym_user_defined_literal] = STATE(3428), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(162), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_case_statement_repeat1] = STATE(78), - [sym_identifier] = ACTIONS(956), - [aux_sym_preproc_include_token1] = ACTIONS(958), - [aux_sym_preproc_def_token1] = ACTIONS(958), - [aux_sym_preproc_if_token1] = ACTIONS(958), - [aux_sym_preproc_if_token2] = ACTIONS(958), - [aux_sym_preproc_ifdef_token1] = ACTIONS(958), - [aux_sym_preproc_ifdef_token2] = ACTIONS(958), - [aux_sym_preproc_else_token1] = ACTIONS(958), - [aux_sym_preproc_elif_token1] = ACTIONS(958), - [sym_preproc_directive] = ACTIONS(958), - [anon_sym_LPAREN2] = ACTIONS(960), + [sym_preproc_include] = STATE(73), + [sym_preproc_def] = STATE(73), + [sym_preproc_function_def] = STATE(73), + [sym_preproc_call] = STATE(73), + [sym_preproc_if] = STATE(73), + [sym_preproc_ifdef] = STATE(73), + [sym_function_definition] = STATE(73), + [sym_declaration] = STATE(73), + [sym_type_definition] = STATE(73), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4216), + [sym_linkage_specification] = STATE(73), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym_ms_call_modifier] = STATE(2011), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(5018), + [sym_array_declarator] = STATE(5080), + [sym_compound_statement] = STATE(73), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3372), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_attributed_statement] = STATE(73), + [sym_labeled_statement] = STATE(73), + [sym_expression_statement] = STATE(73), + [sym_if_statement] = STATE(73), + [sym_switch_statement] = STATE(73), + [sym_case_statement] = STATE(73), + [sym_while_statement] = STATE(73), + [sym_do_statement] = STATE(73), + [sym_for_statement] = STATE(73), + [sym_return_statement] = STATE(73), + [sym_break_statement] = STATE(73), + [sym_continue_statement] = STATE(73), + [sym_goto_statement] = STATE(73), + [sym__expression] = STATE(3704), + [sym_comma_expression] = STATE(6857), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__empty_declaration] = STATE(73), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1974), + [sym_dependent_type] = STATE(3481), + [sym_template_declaration] = STATE(73), + [sym_template_instantiation] = STATE(73), + [sym_operator_cast] = STATE(5456), + [sym__constructor_specifiers] = STATE(1974), + [sym_operator_cast_definition] = STATE(73), + [sym_operator_cast_declaration] = STATE(73), + [sym_constructor_or_destructor_definition] = STATE(73), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3608), + [sym_namespace_definition] = STATE(73), + [sym_namespace_alias_definition] = STATE(73), + [sym_using_declaration] = STATE(73), + [sym_alias_declaration] = STATE(73), + [sym_static_assert_declaration] = STATE(73), + [sym_concept_definition] = STATE(73), + [sym_for_range_loop] = STATE(73), + [sym_co_return_statement] = STATE(73), + [sym_co_yield_statement] = STATE(73), + [sym_throw_statement] = STATE(73), + [sym_try_statement] = STATE(73), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4780), + [sym_qualified_identifier] = STATE(2734), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(5456), + [sym_operator_name] = STATE(5080), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_translation_unit_repeat1] = STATE(73), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_operator_cast_definition_repeat1] = STATE(1974), + [sym_identifier] = ACTIONS(145), + [aux_sym_preproc_include_token1] = ACTIONS(147), + [aux_sym_preproc_def_token1] = ACTIONS(149), + [aux_sym_preproc_if_token1] = ACTIONS(153), + [aux_sym_preproc_ifdef_token1] = ACTIONS(155), + [aux_sym_preproc_ifdef_token2] = ACTIONS(155), + [sym_preproc_directive] = ACTIONS(157), + [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(23), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP_AMP] = ACTIONS(964), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(245), - [anon_sym_typedef] = ACTIONS(247), - [anon_sym_extern] = ACTIONS(55), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_typedef] = ACTIONS(161), + [anon_sym_extern] = ACTIONS(163), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(43), [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(958), - [anon_sym___cdecl] = ACTIONS(958), - [anon_sym___clrcall] = ACTIONS(958), - [anon_sym___stdcall] = ACTIONS(958), - [anon_sym___fastcall] = ACTIONS(958), - [anon_sym___thiscall] = ACTIONS(958), - [anon_sym___vectorcall] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LBRACK] = ACTIONS(970), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_RBRACE] = ACTIONS(868), + [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), @@ -40613,18 +42044,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(65), [anon_sym_struct] = ACTIONS(67), [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(253), - [anon_sym_else] = ACTIONS(958), - [anon_sym_switch] = ACTIONS(255), - [anon_sym_case] = ACTIONS(958), - [anon_sym_default] = ACTIONS(958), - [anon_sym_while] = ACTIONS(261), - [anon_sym_do] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_return] = ACTIONS(267), - [anon_sym_break] = ACTIONS(269), - [anon_sym_continue] = ACTIONS(271), - [anon_sym_goto] = ACTIONS(273), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -40646,19 +42078,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(105), [anon_sym_decltype] = ACTIONS(107), [anon_sym_virtual] = ACTIONS(109), - [anon_sym_explicit] = ACTIONS(958), + [anon_sym_explicit] = ACTIONS(111), [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(972), - [anon_sym_operator] = ACTIONS(958), - [anon_sym_try] = ACTIONS(277), + [anon_sym_template] = ACTIONS(195), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_try] = ACTIONS(197), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(279), - [anon_sym_namespace] = ACTIONS(958), - [anon_sym_using] = ACTIONS(958), - [anon_sym_static_assert] = ACTIONS(958), - [anon_sym_concept] = ACTIONS(958), - [anon_sym_co_return] = ACTIONS(289), - [anon_sym_co_yield] = ACTIONS(291), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_namespace] = ACTIONS(201), + [anon_sym_using] = ACTIONS(203), + [anon_sym_static_assert] = ACTIONS(205), + [anon_sym_concept] = ACTIONS(207), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -40667,117 +42099,340 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(143), }, [76] = { - [sym_declaration] = STATE(78), - [sym_type_definition] = STATE(78), - [sym__declaration_modifiers] = STATE(1894), - [sym__declaration_specifiers] = STATE(3975), - [sym_attribute_specifier] = STATE(1894), - [sym_attribute_declaration] = STATE(1147), - [sym_ms_declspec_modifier] = STATE(1894), - [sym_compound_statement] = STATE(78), - [sym_storage_class_specifier] = STATE(1894), - [sym_type_qualifier] = STATE(1894), - [sym__type_specifier] = STATE(2596), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_attributed_statement] = STATE(78), - [sym_labeled_statement] = STATE(78), - [sym_expression_statement] = STATE(78), - [sym_if_statement] = STATE(78), - [sym_switch_statement] = STATE(78), - [sym_while_statement] = STATE(78), - [sym_do_statement] = STATE(78), - [sym_for_statement] = STATE(78), - [sym_return_statement] = STATE(78), - [sym_break_statement] = STATE(78), - [sym_continue_statement] = STATE(78), - [sym_goto_statement] = STATE(78), - [sym__expression] = STATE(3579), - [sym_comma_expression] = STATE(6778), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(1894), - [sym_dependent_type] = STATE(3139), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(78), - [sym_co_return_statement] = STATE(78), - [sym_co_yield_statement] = STATE(78), - [sym_throw_statement] = STATE(78), - [sym_try_statement] = STATE(78), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4625), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(3276), - [sym_user_defined_literal] = STATE(3428), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(162), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_case_statement_repeat1] = STATE(78), - [sym_identifier] = ACTIONS(956), - [aux_sym_preproc_include_token1] = ACTIONS(974), - [aux_sym_preproc_def_token1] = ACTIONS(974), - [aux_sym_preproc_if_token1] = ACTIONS(974), - [aux_sym_preproc_if_token2] = ACTIONS(974), - [aux_sym_preproc_ifdef_token1] = ACTIONS(974), - [aux_sym_preproc_ifdef_token2] = ACTIONS(974), - [aux_sym_preproc_else_token1] = ACTIONS(974), - [aux_sym_preproc_elif_token1] = ACTIONS(974), - [sym_preproc_directive] = ACTIONS(974), - [anon_sym_LPAREN2] = ACTIONS(960), + [sym_preproc_include] = STATE(76), + [sym_preproc_def] = STATE(76), + [sym_preproc_function_def] = STATE(76), + [sym_preproc_call] = STATE(76), + [sym_preproc_if] = STATE(76), + [sym_preproc_ifdef] = STATE(76), + [sym_function_definition] = STATE(76), + [sym_declaration] = STATE(76), + [sym_type_definition] = STATE(76), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4230), + [sym_linkage_specification] = STATE(76), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(1100), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym_ms_call_modifier] = STATE(1995), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(5012), + [sym_array_declarator] = STATE(5080), + [sym_compound_statement] = STATE(76), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3413), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_attributed_statement] = STATE(76), + [sym_labeled_statement] = STATE(76), + [sym_expression_statement] = STATE(76), + [sym_if_statement] = STATE(76), + [sym_switch_statement] = STATE(76), + [sym_case_statement] = STATE(76), + [sym_while_statement] = STATE(76), + [sym_do_statement] = STATE(76), + [sym_for_statement] = STATE(76), + [sym_return_statement] = STATE(76), + [sym_break_statement] = STATE(76), + [sym_continue_statement] = STATE(76), + [sym_goto_statement] = STATE(76), + [sym__expression] = STATE(3763), + [sym_comma_expression] = STATE(6972), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__empty_declaration] = STATE(76), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1954), + [sym_dependent_type] = STATE(3481), + [sym_template_declaration] = STATE(76), + [sym_template_instantiation] = STATE(76), + [sym_operator_cast] = STATE(5474), + [sym__constructor_specifiers] = STATE(1954), + [sym_operator_cast_definition] = STATE(76), + [sym_operator_cast_declaration] = STATE(76), + [sym_constructor_or_destructor_definition] = STATE(76), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3608), + [sym_namespace_definition] = STATE(76), + [sym_namespace_alias_definition] = STATE(76), + [sym_using_declaration] = STATE(76), + [sym_alias_declaration] = STATE(76), + [sym_static_assert_declaration] = STATE(76), + [sym_concept_definition] = STATE(76), + [sym_for_range_loop] = STATE(76), + [sym_co_return_statement] = STATE(76), + [sym_co_yield_statement] = STATE(76), + [sym_throw_statement] = STATE(76), + [sym_try_statement] = STATE(76), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4780), + [sym_qualified_identifier] = STATE(2734), + [sym_qualified_type_identifier] = STATE(3729), + [sym_qualified_operator_cast_identifier] = STATE(5474), + [sym_operator_name] = STATE(5080), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_translation_unit_repeat1] = STATE(76), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(302), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_operator_cast_definition_repeat1] = STATE(1954), + [sym_identifier] = ACTIONS(870), + [aux_sym_preproc_include_token1] = ACTIONS(873), + [aux_sym_preproc_def_token1] = ACTIONS(876), + [aux_sym_preproc_if_token1] = ACTIONS(879), + [aux_sym_preproc_if_token2] = ACTIONS(339), + [aux_sym_preproc_ifdef_token1] = ACTIONS(882), + [aux_sym_preproc_ifdef_token2] = ACTIONS(882), + [sym_preproc_directive] = ACTIONS(885), + [anon_sym_LPAREN2] = ACTIONS(347), + [anon_sym_BANG] = ACTIONS(350), + [anon_sym_TILDE] = ACTIONS(353), + [anon_sym_DASH] = ACTIONS(356), + [anon_sym_PLUS] = ACTIONS(356), + [anon_sym_STAR] = ACTIONS(359), + [anon_sym_AMP_AMP] = ACTIONS(362), + [anon_sym_AMP] = ACTIONS(365), + [anon_sym_SEMI] = ACTIONS(888), + [anon_sym_typedef] = ACTIONS(891), + [anon_sym_extern] = ACTIONS(894), + [anon_sym___attribute__] = ACTIONS(377), + [anon_sym_COLON_COLON] = ACTIONS(380), + [anon_sym_LBRACK_LBRACK] = ACTIONS(383), + [anon_sym___declspec] = ACTIONS(386), + [anon_sym___based] = ACTIONS(389), + [anon_sym___cdecl] = ACTIONS(392), + [anon_sym___clrcall] = ACTIONS(392), + [anon_sym___stdcall] = ACTIONS(392), + [anon_sym___fastcall] = ACTIONS(392), + [anon_sym___thiscall] = ACTIONS(392), + [anon_sym___vectorcall] = ACTIONS(392), + [anon_sym_LBRACE] = ACTIONS(897), + [anon_sym_LBRACK] = ACTIONS(398), + [anon_sym_static] = ACTIONS(401), + [anon_sym_register] = ACTIONS(401), + [anon_sym_inline] = ACTIONS(401), + [anon_sym_thread_local] = ACTIONS(401), + [anon_sym_const] = ACTIONS(404), + [anon_sym_volatile] = ACTIONS(404), + [anon_sym_restrict] = ACTIONS(404), + [anon_sym__Atomic] = ACTIONS(404), + [anon_sym_mutable] = ACTIONS(404), + [anon_sym_constexpr] = ACTIONS(404), + [anon_sym_constinit] = ACTIONS(404), + [anon_sym_consteval] = ACTIONS(404), + [anon_sym_signed] = ACTIONS(407), + [anon_sym_unsigned] = ACTIONS(407), + [anon_sym_long] = ACTIONS(407), + [anon_sym_short] = ACTIONS(407), + [sym_primitive_type] = ACTIONS(410), + [anon_sym_enum] = ACTIONS(413), + [anon_sym_class] = ACTIONS(416), + [anon_sym_struct] = ACTIONS(419), + [anon_sym_union] = ACTIONS(422), + [anon_sym_if] = ACTIONS(900), + [anon_sym_switch] = ACTIONS(903), + [anon_sym_case] = ACTIONS(906), + [anon_sym_default] = ACTIONS(909), + [anon_sym_while] = ACTIONS(912), + [anon_sym_do] = ACTIONS(915), + [anon_sym_for] = ACTIONS(918), + [anon_sym_return] = ACTIONS(921), + [anon_sym_break] = ACTIONS(924), + [anon_sym_continue] = ACTIONS(927), + [anon_sym_goto] = ACTIONS(930), + [anon_sym_not] = ACTIONS(356), + [anon_sym_compl] = ACTIONS(356), + [anon_sym_DASH_DASH] = ACTIONS(458), + [anon_sym_PLUS_PLUS] = ACTIONS(458), + [anon_sym_sizeof] = ACTIONS(461), + [sym_number_literal] = ACTIONS(464), + [anon_sym_L_SQUOTE] = ACTIONS(467), + [anon_sym_u_SQUOTE] = ACTIONS(467), + [anon_sym_U_SQUOTE] = ACTIONS(467), + [anon_sym_u8_SQUOTE] = ACTIONS(467), + [anon_sym_SQUOTE] = ACTIONS(467), + [anon_sym_L_DQUOTE] = ACTIONS(470), + [anon_sym_u_DQUOTE] = ACTIONS(470), + [anon_sym_U_DQUOTE] = ACTIONS(470), + [anon_sym_u8_DQUOTE] = ACTIONS(470), + [anon_sym_DQUOTE] = ACTIONS(470), + [sym_true] = ACTIONS(473), + [sym_false] = ACTIONS(473), + [sym_null] = ACTIONS(473), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(476), + [anon_sym_decltype] = ACTIONS(479), + [anon_sym_virtual] = ACTIONS(482), + [anon_sym_explicit] = ACTIONS(485), + [anon_sym_typename] = ACTIONS(488), + [anon_sym_template] = ACTIONS(933), + [anon_sym_operator] = ACTIONS(494), + [anon_sym_try] = ACTIONS(936), + [anon_sym_delete] = ACTIONS(500), + [anon_sym_throw] = ACTIONS(939), + [anon_sym_namespace] = ACTIONS(942), + [anon_sym_using] = ACTIONS(945), + [anon_sym_static_assert] = ACTIONS(948), + [anon_sym_concept] = ACTIONS(951), + [anon_sym_co_return] = ACTIONS(954), + [anon_sym_co_yield] = ACTIONS(957), + [anon_sym_co_await] = ACTIONS(524), + [anon_sym_new] = ACTIONS(527), + [anon_sym_requires] = ACTIONS(530), + [sym_this] = ACTIONS(473), + [sym_nullptr] = ACTIONS(473), + [sym_raw_string_literal] = ACTIONS(533), + }, + [77] = { + [sym_declaration] = STATE(80), + [sym_type_definition] = STATE(80), + [sym__declaration_modifiers] = STATE(2203), + [sym__declaration_specifiers] = STATE(4238), + [sym_attribute_specifier] = STATE(2203), + [sym_attribute_declaration] = STATE(1228), + [sym_ms_declspec_modifier] = STATE(2203), + [sym_compound_statement] = STATE(80), + [sym_storage_class_specifier] = STATE(2203), + [sym_type_qualifier] = STATE(2203), + [sym__type_specifier] = STATE(3251), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_attributed_statement] = STATE(80), + [sym_labeled_statement] = STATE(80), + [sym_expression_statement] = STATE(80), + [sym_if_statement] = STATE(80), + [sym_switch_statement] = STATE(80), + [sym_while_statement] = STATE(80), + [sym_do_statement] = STATE(80), + [sym_for_statement] = STATE(80), + [sym_return_statement] = STATE(80), + [sym_break_statement] = STATE(80), + [sym_continue_statement] = STATE(80), + [sym_goto_statement] = STATE(80), + [sym__expression] = STATE(3680), + [sym_comma_expression] = STATE(7175), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(2203), + [sym_dependent_type] = STATE(3481), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(80), + [sym_co_return_statement] = STATE(80), + [sym_co_yield_statement] = STATE(80), + [sym_throw_statement] = STATE(80), + [sym_try_statement] = STATE(80), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4928), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(3729), + [sym_user_defined_literal] = STATE(3435), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(290), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_case_statement_repeat1] = STATE(80), + [sym_identifier] = ACTIONS(960), + [aux_sym_preproc_include_token1] = ACTIONS(962), + [aux_sym_preproc_def_token1] = ACTIONS(962), + [aux_sym_preproc_if_token1] = ACTIONS(962), + [aux_sym_preproc_if_token2] = ACTIONS(962), + [aux_sym_preproc_ifdef_token1] = ACTIONS(962), + [aux_sym_preproc_ifdef_token2] = ACTIONS(962), + [aux_sym_preproc_else_token1] = ACTIONS(962), + [aux_sym_preproc_elif_token1] = ACTIONS(962), + [sym_preproc_directive] = ACTIONS(962), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP_AMP] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(966), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP_AMP] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), [anon_sym_SEMI] = ACTIONS(245), [anon_sym_typedef] = ACTIONS(247), [anon_sym_extern] = ACTIONS(55), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(974), - [anon_sym___cdecl] = ACTIONS(974), - [anon_sym___clrcall] = ACTIONS(974), - [anon_sym___stdcall] = ACTIONS(974), - [anon_sym___fastcall] = ACTIONS(974), - [anon_sym___thiscall] = ACTIONS(974), - [anon_sym___vectorcall] = ACTIONS(974), + [anon_sym___based] = ACTIONS(962), + [anon_sym___cdecl] = ACTIONS(962), + [anon_sym___clrcall] = ACTIONS(962), + [anon_sym___stdcall] = ACTIONS(962), + [anon_sym___fastcall] = ACTIONS(962), + [anon_sym___thiscall] = ACTIONS(962), + [anon_sym___vectorcall] = ACTIONS(962), [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LBRACK] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(974), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), @@ -40800,10 +42455,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(67), [anon_sym_union] = ACTIONS(69), [anon_sym_if] = ACTIONS(253), - [anon_sym_else] = ACTIONS(974), + [anon_sym_else] = ACTIONS(962), [anon_sym_switch] = ACTIONS(255), - [anon_sym_case] = ACTIONS(974), - [anon_sym_default] = ACTIONS(974), + [anon_sym_case] = ACTIONS(962), + [anon_sym_default] = ACTIONS(962), [anon_sym_while] = ACTIONS(261), [anon_sym_do] = ACTIONS(263), [anon_sym_for] = ACTIONS(265), @@ -40811,6 +42466,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(269), [anon_sym_continue] = ACTIONS(271), [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -40832,17 +42489,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(105), [anon_sym_decltype] = ACTIONS(107), [anon_sym_virtual] = ACTIONS(109), - [anon_sym_explicit] = ACTIONS(974), + [anon_sym_explicit] = ACTIONS(962), [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(972), - [anon_sym_operator] = ACTIONS(974), + [anon_sym_template] = ACTIONS(976), + [anon_sym_operator] = ACTIONS(962), [anon_sym_try] = ACTIONS(277), [anon_sym_delete] = ACTIONS(121), [anon_sym_throw] = ACTIONS(279), - [anon_sym_namespace] = ACTIONS(974), - [anon_sym_using] = ACTIONS(974), - [anon_sym_static_assert] = ACTIONS(974), - [anon_sym_concept] = ACTIONS(974), + [anon_sym_namespace] = ACTIONS(962), + [anon_sym_using] = ACTIONS(962), + [anon_sym_static_assert] = ACTIONS(962), + [anon_sym_concept] = ACTIONS(962), [anon_sym_co_return] = ACTIONS(289), [anon_sym_co_yield] = ACTIONS(291), [anon_sym_co_await] = ACTIONS(137), @@ -40852,85 +42509,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [77] = { - [sym_declaration] = STATE(76), - [sym_type_definition] = STATE(76), - [sym__declaration_modifiers] = STATE(1894), - [sym__declaration_specifiers] = STATE(3975), - [sym_attribute_specifier] = STATE(1894), - [sym_attribute_declaration] = STATE(1147), - [sym_ms_declspec_modifier] = STATE(1894), - [sym_compound_statement] = STATE(76), - [sym_storage_class_specifier] = STATE(1894), - [sym_type_qualifier] = STATE(1894), - [sym__type_specifier] = STATE(2596), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_attributed_statement] = STATE(76), - [sym_labeled_statement] = STATE(76), - [sym_expression_statement] = STATE(76), - [sym_if_statement] = STATE(76), - [sym_switch_statement] = STATE(76), - [sym_while_statement] = STATE(76), - [sym_do_statement] = STATE(76), - [sym_for_statement] = STATE(76), - [sym_return_statement] = STATE(76), - [sym_break_statement] = STATE(76), - [sym_continue_statement] = STATE(76), - [sym_goto_statement] = STATE(76), - [sym__expression] = STATE(3579), - [sym_comma_expression] = STATE(6778), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(1894), - [sym_dependent_type] = STATE(3139), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(76), - [sym_co_return_statement] = STATE(76), - [sym_co_yield_statement] = STATE(76), - [sym_throw_statement] = STATE(76), - [sym_try_statement] = STATE(76), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4625), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(3276), - [sym_user_defined_literal] = STATE(3428), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(162), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_case_statement_repeat1] = STATE(76), - [sym_identifier] = ACTIONS(956), + [78] = { + [sym_declaration] = STATE(77), + [sym_type_definition] = STATE(77), + [sym__declaration_modifiers] = STATE(2203), + [sym__declaration_specifiers] = STATE(4238), + [sym_attribute_specifier] = STATE(2203), + [sym_attribute_declaration] = STATE(1228), + [sym_ms_declspec_modifier] = STATE(2203), + [sym_compound_statement] = STATE(77), + [sym_storage_class_specifier] = STATE(2203), + [sym_type_qualifier] = STATE(2203), + [sym__type_specifier] = STATE(3251), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_attributed_statement] = STATE(77), + [sym_labeled_statement] = STATE(77), + [sym_expression_statement] = STATE(77), + [sym_if_statement] = STATE(77), + [sym_switch_statement] = STATE(77), + [sym_while_statement] = STATE(77), + [sym_do_statement] = STATE(77), + [sym_for_statement] = STATE(77), + [sym_return_statement] = STATE(77), + [sym_break_statement] = STATE(77), + [sym_continue_statement] = STATE(77), + [sym_goto_statement] = STATE(77), + [sym__expression] = STATE(3680), + [sym_comma_expression] = STATE(7175), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(2203), + [sym_dependent_type] = STATE(3481), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(77), + [sym_co_return_statement] = STATE(77), + [sym_co_yield_statement] = STATE(77), + [sym_throw_statement] = STATE(77), + [sym_try_statement] = STATE(77), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4928), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(3729), + [sym_user_defined_literal] = STATE(3435), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(290), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_case_statement_repeat1] = STATE(77), + [sym_identifier] = ACTIONS(960), [aux_sym_preproc_include_token1] = ACTIONS(978), [aux_sym_preproc_def_token1] = ACTIONS(978), [aux_sym_preproc_if_token1] = ACTIONS(978), @@ -40940,20 +42597,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_else_token1] = ACTIONS(978), [aux_sym_preproc_elif_token1] = ACTIONS(978), [sym_preproc_directive] = ACTIONS(978), - [anon_sym_LPAREN2] = ACTIONS(960), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), + [anon_sym_STAR] = ACTIONS(966), [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_AMP] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(970), [anon_sym_SEMI] = ACTIONS(245), [anon_sym_typedef] = ACTIONS(247), [anon_sym_extern] = ACTIONS(55), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), [anon_sym___declspec] = ACTIONS(45), [anon_sym___based] = ACTIONS(978), [anon_sym___cdecl] = ACTIONS(978), @@ -40963,7 +42620,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(978), [anon_sym___vectorcall] = ACTIONS(978), [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LBRACK] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(974), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), @@ -40997,6 +42654,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(269), [anon_sym_continue] = ACTIONS(271), [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -41020,7 +42679,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_virtual] = ACTIONS(109), [anon_sym_explicit] = ACTIONS(978), [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(972), + [anon_sym_template] = ACTIONS(976), [anon_sym_operator] = ACTIONS(978), [anon_sym_try] = ACTIONS(277), [anon_sym_delete] = ACTIONS(121), @@ -41038,304 +42697,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [78] = { - [sym_declaration] = STATE(78), - [sym_type_definition] = STATE(78), - [sym__declaration_modifiers] = STATE(1894), - [sym__declaration_specifiers] = STATE(3975), - [sym_attribute_specifier] = STATE(1894), - [sym_attribute_declaration] = STATE(1147), - [sym_ms_declspec_modifier] = STATE(1894), - [sym_compound_statement] = STATE(78), - [sym_storage_class_specifier] = STATE(1894), - [sym_type_qualifier] = STATE(1894), - [sym__type_specifier] = STATE(2596), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_attributed_statement] = STATE(78), - [sym_labeled_statement] = STATE(78), - [sym_expression_statement] = STATE(78), - [sym_if_statement] = STATE(78), - [sym_switch_statement] = STATE(78), - [sym_while_statement] = STATE(78), - [sym_do_statement] = STATE(78), - [sym_for_statement] = STATE(78), - [sym_return_statement] = STATE(78), - [sym_break_statement] = STATE(78), - [sym_continue_statement] = STATE(78), - [sym_goto_statement] = STATE(78), - [sym__expression] = STATE(3579), - [sym_comma_expression] = STATE(6778), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(1894), - [sym_dependent_type] = STATE(3139), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(78), - [sym_co_return_statement] = STATE(78), - [sym_co_yield_statement] = STATE(78), - [sym_throw_statement] = STATE(78), - [sym_try_statement] = STATE(78), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4625), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(3276), - [sym_user_defined_literal] = STATE(3428), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(162), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_case_statement_repeat1] = STATE(78), - [sym_identifier] = ACTIONS(982), - [aux_sym_preproc_include_token1] = ACTIONS(985), - [aux_sym_preproc_def_token1] = ACTIONS(985), - [aux_sym_preproc_if_token1] = ACTIONS(985), - [aux_sym_preproc_if_token2] = ACTIONS(985), - [aux_sym_preproc_ifdef_token1] = ACTIONS(985), - [aux_sym_preproc_ifdef_token2] = ACTIONS(985), - [aux_sym_preproc_else_token1] = ACTIONS(985), - [aux_sym_preproc_elif_token1] = ACTIONS(985), - [sym_preproc_directive] = ACTIONS(985), - [anon_sym_LPAREN2] = ACTIONS(987), - [anon_sym_BANG] = ACTIONS(990), - [anon_sym_TILDE] = ACTIONS(990), - [anon_sym_DASH] = ACTIONS(993), - [anon_sym_PLUS] = ACTIONS(993), - [anon_sym_STAR] = ACTIONS(996), - [anon_sym_AMP_AMP] = ACTIONS(999), - [anon_sym_AMP] = ACTIONS(1001), - [anon_sym_SEMI] = ACTIONS(1004), - [anon_sym_typedef] = ACTIONS(1007), - [anon_sym_extern] = ACTIONS(1010), - [anon_sym___attribute__] = ACTIONS(1013), - [anon_sym_COLON_COLON] = ACTIONS(1016), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1019), - [anon_sym___declspec] = ACTIONS(1022), - [anon_sym___based] = ACTIONS(985), - [anon_sym___cdecl] = ACTIONS(985), - [anon_sym___clrcall] = ACTIONS(985), - [anon_sym___stdcall] = ACTIONS(985), - [anon_sym___fastcall] = ACTIONS(985), - [anon_sym___thiscall] = ACTIONS(985), - [anon_sym___vectorcall] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(1025), - [anon_sym_LBRACK] = ACTIONS(1028), - [anon_sym_static] = ACTIONS(1010), - [anon_sym_register] = ACTIONS(1010), - [anon_sym_inline] = ACTIONS(1010), - [anon_sym_thread_local] = ACTIONS(1010), - [anon_sym_const] = ACTIONS(1031), - [anon_sym_volatile] = ACTIONS(1031), - [anon_sym_restrict] = ACTIONS(1031), - [anon_sym__Atomic] = ACTIONS(1031), - [anon_sym_mutable] = ACTIONS(1031), - [anon_sym_constexpr] = ACTIONS(1031), - [anon_sym_constinit] = ACTIONS(1031), - [anon_sym_consteval] = ACTIONS(1031), - [anon_sym_signed] = ACTIONS(1034), - [anon_sym_unsigned] = ACTIONS(1034), - [anon_sym_long] = ACTIONS(1034), - [anon_sym_short] = ACTIONS(1034), - [sym_primitive_type] = ACTIONS(1037), - [anon_sym_enum] = ACTIONS(1040), - [anon_sym_class] = ACTIONS(1043), - [anon_sym_struct] = ACTIONS(1046), - [anon_sym_union] = ACTIONS(1049), - [anon_sym_if] = ACTIONS(1052), - [anon_sym_else] = ACTIONS(985), - [anon_sym_switch] = ACTIONS(1055), - [anon_sym_case] = ACTIONS(985), - [anon_sym_default] = ACTIONS(985), - [anon_sym_while] = ACTIONS(1058), - [anon_sym_do] = ACTIONS(1061), - [anon_sym_for] = ACTIONS(1064), - [anon_sym_return] = ACTIONS(1067), - [anon_sym_break] = ACTIONS(1070), - [anon_sym_continue] = ACTIONS(1073), - [anon_sym_goto] = ACTIONS(1076), - [anon_sym_DASH_DASH] = ACTIONS(1079), - [anon_sym_PLUS_PLUS] = ACTIONS(1079), - [anon_sym_sizeof] = ACTIONS(1082), - [sym_number_literal] = ACTIONS(1085), - [anon_sym_L_SQUOTE] = ACTIONS(1088), - [anon_sym_u_SQUOTE] = ACTIONS(1088), - [anon_sym_U_SQUOTE] = ACTIONS(1088), - [anon_sym_u8_SQUOTE] = ACTIONS(1088), - [anon_sym_SQUOTE] = ACTIONS(1088), - [anon_sym_L_DQUOTE] = ACTIONS(1091), - [anon_sym_u_DQUOTE] = ACTIONS(1091), - [anon_sym_U_DQUOTE] = ACTIONS(1091), - [anon_sym_u8_DQUOTE] = ACTIONS(1091), - [anon_sym_DQUOTE] = ACTIONS(1091), - [sym_true] = ACTIONS(1094), - [sym_false] = ACTIONS(1094), - [sym_null] = ACTIONS(1094), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1097), - [anon_sym_decltype] = ACTIONS(1100), - [anon_sym_virtual] = ACTIONS(1103), - [anon_sym_explicit] = ACTIONS(985), - [anon_sym_typename] = ACTIONS(1106), - [anon_sym_template] = ACTIONS(1109), - [anon_sym_operator] = ACTIONS(985), - [anon_sym_try] = ACTIONS(1112), - [anon_sym_delete] = ACTIONS(1115), - [anon_sym_throw] = ACTIONS(1118), - [anon_sym_namespace] = ACTIONS(985), - [anon_sym_using] = ACTIONS(985), - [anon_sym_static_assert] = ACTIONS(985), - [anon_sym_concept] = ACTIONS(985), - [anon_sym_co_return] = ACTIONS(1121), - [anon_sym_co_yield] = ACTIONS(1124), - [anon_sym_co_await] = ACTIONS(1127), - [anon_sym_new] = ACTIONS(1130), - [anon_sym_requires] = ACTIONS(1133), - [sym_this] = ACTIONS(1094), - [sym_nullptr] = ACTIONS(1094), - [sym_raw_string_literal] = ACTIONS(1136), - }, [79] = { - [sym_declaration] = STATE(75), - [sym_type_definition] = STATE(75), - [sym__declaration_modifiers] = STATE(1894), - [sym__declaration_specifiers] = STATE(3975), - [sym_attribute_specifier] = STATE(1894), - [sym_attribute_declaration] = STATE(1147), - [sym_ms_declspec_modifier] = STATE(1894), - [sym_compound_statement] = STATE(75), - [sym_storage_class_specifier] = STATE(1894), - [sym_type_qualifier] = STATE(1894), - [sym__type_specifier] = STATE(2596), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_attributed_statement] = STATE(75), - [sym_labeled_statement] = STATE(75), - [sym_expression_statement] = STATE(75), - [sym_if_statement] = STATE(75), - [sym_switch_statement] = STATE(75), - [sym_while_statement] = STATE(75), - [sym_do_statement] = STATE(75), - [sym_for_statement] = STATE(75), - [sym_return_statement] = STATE(75), - [sym_break_statement] = STATE(75), - [sym_continue_statement] = STATE(75), - [sym_goto_statement] = STATE(75), - [sym__expression] = STATE(3579), - [sym_comma_expression] = STATE(6778), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(1894), - [sym_dependent_type] = STATE(3139), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(75), - [sym_co_return_statement] = STATE(75), - [sym_co_yield_statement] = STATE(75), - [sym_throw_statement] = STATE(75), - [sym_try_statement] = STATE(75), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4625), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(3276), - [sym_user_defined_literal] = STATE(3428), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(162), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_case_statement_repeat1] = STATE(75), - [sym_identifier] = ACTIONS(956), - [aux_sym_preproc_include_token1] = ACTIONS(1139), - [aux_sym_preproc_def_token1] = ACTIONS(1139), - [aux_sym_preproc_if_token1] = ACTIONS(1139), - [aux_sym_preproc_if_token2] = ACTIONS(1139), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1139), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1139), - [aux_sym_preproc_else_token1] = ACTIONS(1139), - [aux_sym_preproc_elif_token1] = ACTIONS(1139), - [sym_preproc_directive] = ACTIONS(1139), - [anon_sym_LPAREN2] = ACTIONS(960), + [sym_declaration] = STATE(80), + [sym_type_definition] = STATE(80), + [sym__declaration_modifiers] = STATE(2203), + [sym__declaration_specifiers] = STATE(4238), + [sym_attribute_specifier] = STATE(2203), + [sym_attribute_declaration] = STATE(1228), + [sym_ms_declspec_modifier] = STATE(2203), + [sym_compound_statement] = STATE(80), + [sym_storage_class_specifier] = STATE(2203), + [sym_type_qualifier] = STATE(2203), + [sym__type_specifier] = STATE(3251), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_attributed_statement] = STATE(80), + [sym_labeled_statement] = STATE(80), + [sym_expression_statement] = STATE(80), + [sym_if_statement] = STATE(80), + [sym_switch_statement] = STATE(80), + [sym_while_statement] = STATE(80), + [sym_do_statement] = STATE(80), + [sym_for_statement] = STATE(80), + [sym_return_statement] = STATE(80), + [sym_break_statement] = STATE(80), + [sym_continue_statement] = STATE(80), + [sym_goto_statement] = STATE(80), + [sym__expression] = STATE(3680), + [sym_comma_expression] = STATE(7175), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(2203), + [sym_dependent_type] = STATE(3481), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(80), + [sym_co_return_statement] = STATE(80), + [sym_co_yield_statement] = STATE(80), + [sym_throw_statement] = STATE(80), + [sym_try_statement] = STATE(80), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4928), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(3729), + [sym_user_defined_literal] = STATE(3435), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(290), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_case_statement_repeat1] = STATE(80), + [sym_identifier] = ACTIONS(960), + [aux_sym_preproc_include_token1] = ACTIONS(982), + [aux_sym_preproc_def_token1] = ACTIONS(982), + [aux_sym_preproc_if_token1] = ACTIONS(982), + [aux_sym_preproc_if_token2] = ACTIONS(982), + [aux_sym_preproc_ifdef_token1] = ACTIONS(982), + [aux_sym_preproc_ifdef_token2] = ACTIONS(982), + [aux_sym_preproc_else_token1] = ACTIONS(982), + [aux_sym_preproc_elif_token1] = ACTIONS(982), + [sym_preproc_directive] = ACTIONS(982), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP_AMP] = ACTIONS(1141), - [anon_sym_AMP] = ACTIONS(966), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP_AMP] = ACTIONS(984), + [anon_sym_AMP] = ACTIONS(970), [anon_sym_SEMI] = ACTIONS(245), [anon_sym_typedef] = ACTIONS(247), [anon_sym_extern] = ACTIONS(55), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(1139), - [anon_sym___cdecl] = ACTIONS(1139), - [anon_sym___clrcall] = ACTIONS(1139), - [anon_sym___stdcall] = ACTIONS(1139), - [anon_sym___fastcall] = ACTIONS(1139), - [anon_sym___thiscall] = ACTIONS(1139), - [anon_sym___vectorcall] = ACTIONS(1139), + [anon_sym___based] = ACTIONS(982), + [anon_sym___cdecl] = ACTIONS(982), + [anon_sym___clrcall] = ACTIONS(982), + [anon_sym___stdcall] = ACTIONS(982), + [anon_sym___fastcall] = ACTIONS(982), + [anon_sym___thiscall] = ACTIONS(982), + [anon_sym___vectorcall] = ACTIONS(982), [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LBRACK] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(974), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), @@ -41358,10 +42831,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(67), [anon_sym_union] = ACTIONS(69), [anon_sym_if] = ACTIONS(253), - [anon_sym_else] = ACTIONS(1139), + [anon_sym_else] = ACTIONS(982), [anon_sym_switch] = ACTIONS(255), - [anon_sym_case] = ACTIONS(1139), - [anon_sym_default] = ACTIONS(1139), + [anon_sym_case] = ACTIONS(982), + [anon_sym_default] = ACTIONS(982), [anon_sym_while] = ACTIONS(261), [anon_sym_do] = ACTIONS(263), [anon_sym_for] = ACTIONS(265), @@ -41369,6 +42842,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(269), [anon_sym_continue] = ACTIONS(271), [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -41390,17 +42865,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(105), [anon_sym_decltype] = ACTIONS(107), [anon_sym_virtual] = ACTIONS(109), - [anon_sym_explicit] = ACTIONS(1139), + [anon_sym_explicit] = ACTIONS(982), [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(972), - [anon_sym_operator] = ACTIONS(1139), + [anon_sym_template] = ACTIONS(976), + [anon_sym_operator] = ACTIONS(982), [anon_sym_try] = ACTIONS(277), [anon_sym_delete] = ACTIONS(121), [anon_sym_throw] = ACTIONS(279), - [anon_sym_namespace] = ACTIONS(1139), - [anon_sym_using] = ACTIONS(1139), - [anon_sym_static_assert] = ACTIONS(1139), - [anon_sym_concept] = ACTIONS(1139), + [anon_sym_namespace] = ACTIONS(982), + [anon_sym_using] = ACTIONS(982), + [anon_sym_static_assert] = ACTIONS(982), + [anon_sym_concept] = ACTIONS(982), [anon_sym_co_return] = ACTIONS(289), [anon_sym_co_yield] = ACTIONS(291), [anon_sym_co_await] = ACTIONS(137), @@ -41411,115 +42886,305 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(143), }, [80] = { - [sym_declaration] = STATE(83), - [sym_type_definition] = STATE(83), - [sym__declaration_modifiers] = STATE(1894), - [sym__declaration_specifiers] = STATE(3996), - [sym_attribute_specifier] = STATE(1894), - [sym_attribute_declaration] = STATE(1147), - [sym_ms_declspec_modifier] = STATE(1894), - [sym_compound_statement] = STATE(83), - [sym_storage_class_specifier] = STATE(1894), - [sym_type_qualifier] = STATE(1894), - [sym__type_specifier] = STATE(2596), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_attributed_statement] = STATE(83), - [sym_labeled_statement] = STATE(83), - [sym_expression_statement] = STATE(83), - [sym_if_statement] = STATE(83), - [sym_switch_statement] = STATE(83), - [sym_while_statement] = STATE(83), - [sym_do_statement] = STATE(83), - [sym_for_statement] = STATE(83), - [sym_return_statement] = STATE(83), - [sym_break_statement] = STATE(83), - [sym_continue_statement] = STATE(83), - [sym_goto_statement] = STATE(83), - [sym__expression] = STATE(3645), - [sym_comma_expression] = STATE(6499), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(1894), - [sym_dependent_type] = STATE(3139), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(83), - [sym_co_return_statement] = STATE(83), - [sym_co_yield_statement] = STATE(83), - [sym_throw_statement] = STATE(83), - [sym_try_statement] = STATE(83), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4625), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(3276), - [sym_user_defined_literal] = STATE(3428), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_case_statement_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(1143), - [aux_sym_preproc_include_token1] = ACTIONS(958), - [aux_sym_preproc_def_token1] = ACTIONS(958), - [aux_sym_preproc_if_token1] = ACTIONS(958), - [aux_sym_preproc_ifdef_token1] = ACTIONS(958), - [aux_sym_preproc_ifdef_token2] = ACTIONS(958), - [sym_preproc_directive] = ACTIONS(958), - [anon_sym_LPAREN2] = ACTIONS(960), + [sym_declaration] = STATE(80), + [sym_type_definition] = STATE(80), + [sym__declaration_modifiers] = STATE(2203), + [sym__declaration_specifiers] = STATE(4238), + [sym_attribute_specifier] = STATE(2203), + [sym_attribute_declaration] = STATE(1228), + [sym_ms_declspec_modifier] = STATE(2203), + [sym_compound_statement] = STATE(80), + [sym_storage_class_specifier] = STATE(2203), + [sym_type_qualifier] = STATE(2203), + [sym__type_specifier] = STATE(3251), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_attributed_statement] = STATE(80), + [sym_labeled_statement] = STATE(80), + [sym_expression_statement] = STATE(80), + [sym_if_statement] = STATE(80), + [sym_switch_statement] = STATE(80), + [sym_while_statement] = STATE(80), + [sym_do_statement] = STATE(80), + [sym_for_statement] = STATE(80), + [sym_return_statement] = STATE(80), + [sym_break_statement] = STATE(80), + [sym_continue_statement] = STATE(80), + [sym_goto_statement] = STATE(80), + [sym__expression] = STATE(3680), + [sym_comma_expression] = STATE(7175), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(2203), + [sym_dependent_type] = STATE(3481), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(80), + [sym_co_return_statement] = STATE(80), + [sym_co_yield_statement] = STATE(80), + [sym_throw_statement] = STATE(80), + [sym_try_statement] = STATE(80), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4928), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(3729), + [sym_user_defined_literal] = STATE(3435), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(290), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_case_statement_repeat1] = STATE(80), + [sym_identifier] = ACTIONS(986), + [aux_sym_preproc_include_token1] = ACTIONS(989), + [aux_sym_preproc_def_token1] = ACTIONS(989), + [aux_sym_preproc_if_token1] = ACTIONS(989), + [aux_sym_preproc_if_token2] = ACTIONS(989), + [aux_sym_preproc_ifdef_token1] = ACTIONS(989), + [aux_sym_preproc_ifdef_token2] = ACTIONS(989), + [aux_sym_preproc_else_token1] = ACTIONS(989), + [aux_sym_preproc_elif_token1] = ACTIONS(989), + [sym_preproc_directive] = ACTIONS(989), + [anon_sym_LPAREN2] = ACTIONS(991), + [anon_sym_BANG] = ACTIONS(994), + [anon_sym_TILDE] = ACTIONS(994), + [anon_sym_DASH] = ACTIONS(997), + [anon_sym_PLUS] = ACTIONS(997), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_AMP_AMP] = ACTIONS(1003), + [anon_sym_AMP] = ACTIONS(1005), + [anon_sym_SEMI] = ACTIONS(1008), + [anon_sym_typedef] = ACTIONS(1011), + [anon_sym_extern] = ACTIONS(1014), + [anon_sym___attribute__] = ACTIONS(1017), + [anon_sym_COLON_COLON] = ACTIONS(1020), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1023), + [anon_sym___declspec] = ACTIONS(1026), + [anon_sym___based] = ACTIONS(989), + [anon_sym___cdecl] = ACTIONS(989), + [anon_sym___clrcall] = ACTIONS(989), + [anon_sym___stdcall] = ACTIONS(989), + [anon_sym___fastcall] = ACTIONS(989), + [anon_sym___thiscall] = ACTIONS(989), + [anon_sym___vectorcall] = ACTIONS(989), + [anon_sym_LBRACE] = ACTIONS(1029), + [anon_sym_LBRACK] = ACTIONS(1032), + [anon_sym_static] = ACTIONS(1014), + [anon_sym_register] = ACTIONS(1014), + [anon_sym_inline] = ACTIONS(1014), + [anon_sym_thread_local] = ACTIONS(1014), + [anon_sym_const] = ACTIONS(1035), + [anon_sym_volatile] = ACTIONS(1035), + [anon_sym_restrict] = ACTIONS(1035), + [anon_sym__Atomic] = ACTIONS(1035), + [anon_sym_mutable] = ACTIONS(1035), + [anon_sym_constexpr] = ACTIONS(1035), + [anon_sym_constinit] = ACTIONS(1035), + [anon_sym_consteval] = ACTIONS(1035), + [anon_sym_signed] = ACTIONS(1038), + [anon_sym_unsigned] = ACTIONS(1038), + [anon_sym_long] = ACTIONS(1038), + [anon_sym_short] = ACTIONS(1038), + [sym_primitive_type] = ACTIONS(1041), + [anon_sym_enum] = ACTIONS(1044), + [anon_sym_class] = ACTIONS(1047), + [anon_sym_struct] = ACTIONS(1050), + [anon_sym_union] = ACTIONS(1053), + [anon_sym_if] = ACTIONS(1056), + [anon_sym_else] = ACTIONS(989), + [anon_sym_switch] = ACTIONS(1059), + [anon_sym_case] = ACTIONS(989), + [anon_sym_default] = ACTIONS(989), + [anon_sym_while] = ACTIONS(1062), + [anon_sym_do] = ACTIONS(1065), + [anon_sym_for] = ACTIONS(1068), + [anon_sym_return] = ACTIONS(1071), + [anon_sym_break] = ACTIONS(1074), + [anon_sym_continue] = ACTIONS(1077), + [anon_sym_goto] = ACTIONS(1080), + [anon_sym_not] = ACTIONS(997), + [anon_sym_compl] = ACTIONS(997), + [anon_sym_DASH_DASH] = ACTIONS(1083), + [anon_sym_PLUS_PLUS] = ACTIONS(1083), + [anon_sym_sizeof] = ACTIONS(1086), + [sym_number_literal] = ACTIONS(1089), + [anon_sym_L_SQUOTE] = ACTIONS(1092), + [anon_sym_u_SQUOTE] = ACTIONS(1092), + [anon_sym_U_SQUOTE] = ACTIONS(1092), + [anon_sym_u8_SQUOTE] = ACTIONS(1092), + [anon_sym_SQUOTE] = ACTIONS(1092), + [anon_sym_L_DQUOTE] = ACTIONS(1095), + [anon_sym_u_DQUOTE] = ACTIONS(1095), + [anon_sym_U_DQUOTE] = ACTIONS(1095), + [anon_sym_u8_DQUOTE] = ACTIONS(1095), + [anon_sym_DQUOTE] = ACTIONS(1095), + [sym_true] = ACTIONS(1098), + [sym_false] = ACTIONS(1098), + [sym_null] = ACTIONS(1098), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1101), + [anon_sym_decltype] = ACTIONS(1104), + [anon_sym_virtual] = ACTIONS(1107), + [anon_sym_explicit] = ACTIONS(989), + [anon_sym_typename] = ACTIONS(1110), + [anon_sym_template] = ACTIONS(1113), + [anon_sym_operator] = ACTIONS(989), + [anon_sym_try] = ACTIONS(1116), + [anon_sym_delete] = ACTIONS(1119), + [anon_sym_throw] = ACTIONS(1122), + [anon_sym_namespace] = ACTIONS(989), + [anon_sym_using] = ACTIONS(989), + [anon_sym_static_assert] = ACTIONS(989), + [anon_sym_concept] = ACTIONS(989), + [anon_sym_co_return] = ACTIONS(1125), + [anon_sym_co_yield] = ACTIONS(1128), + [anon_sym_co_await] = ACTIONS(1131), + [anon_sym_new] = ACTIONS(1134), + [anon_sym_requires] = ACTIONS(1137), + [sym_this] = ACTIONS(1098), + [sym_nullptr] = ACTIONS(1098), + [sym_raw_string_literal] = ACTIONS(1140), + }, + [81] = { + [sym_declaration] = STATE(79), + [sym_type_definition] = STATE(79), + [sym__declaration_modifiers] = STATE(2203), + [sym__declaration_specifiers] = STATE(4238), + [sym_attribute_specifier] = STATE(2203), + [sym_attribute_declaration] = STATE(1228), + [sym_ms_declspec_modifier] = STATE(2203), + [sym_compound_statement] = STATE(79), + [sym_storage_class_specifier] = STATE(2203), + [sym_type_qualifier] = STATE(2203), + [sym__type_specifier] = STATE(3251), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_attributed_statement] = STATE(79), + [sym_labeled_statement] = STATE(79), + [sym_expression_statement] = STATE(79), + [sym_if_statement] = STATE(79), + [sym_switch_statement] = STATE(79), + [sym_while_statement] = STATE(79), + [sym_do_statement] = STATE(79), + [sym_for_statement] = STATE(79), + [sym_return_statement] = STATE(79), + [sym_break_statement] = STATE(79), + [sym_continue_statement] = STATE(79), + [sym_goto_statement] = STATE(79), + [sym__expression] = STATE(3680), + [sym_comma_expression] = STATE(7175), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(2203), + [sym_dependent_type] = STATE(3481), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(79), + [sym_co_return_statement] = STATE(79), + [sym_co_yield_statement] = STATE(79), + [sym_throw_statement] = STATE(79), + [sym_try_statement] = STATE(79), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4928), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(3729), + [sym_user_defined_literal] = STATE(3435), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(290), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_case_statement_repeat1] = STATE(79), + [sym_identifier] = ACTIONS(960), + [aux_sym_preproc_include_token1] = ACTIONS(1143), + [aux_sym_preproc_def_token1] = ACTIONS(1143), + [aux_sym_preproc_if_token1] = ACTIONS(1143), + [aux_sym_preproc_if_token2] = ACTIONS(1143), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1143), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1143), + [aux_sym_preproc_else_token1] = ACTIONS(1143), + [aux_sym_preproc_elif_token1] = ACTIONS(1143), + [sym_preproc_directive] = ACTIONS(1143), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP_AMP] = ACTIONS(964), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(159), - [anon_sym_typedef] = ACTIONS(161), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP_AMP] = ACTIONS(1145), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_typedef] = ACTIONS(247), [anon_sym_extern] = ACTIONS(55), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(958), - [anon_sym___cdecl] = ACTIONS(958), - [anon_sym___clrcall] = ACTIONS(958), - [anon_sym___stdcall] = ACTIONS(958), - [anon_sym___fastcall] = ACTIONS(958), - [anon_sym___thiscall] = ACTIONS(958), - [anon_sym___vectorcall] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(536), - [anon_sym_RBRACE] = ACTIONS(964), - [anon_sym_LBRACK] = ACTIONS(970), + [anon_sym___based] = ACTIONS(1143), + [anon_sym___cdecl] = ACTIONS(1143), + [anon_sym___clrcall] = ACTIONS(1143), + [anon_sym___stdcall] = ACTIONS(1143), + [anon_sym___fastcall] = ACTIONS(1143), + [anon_sym___thiscall] = ACTIONS(1143), + [anon_sym___vectorcall] = ACTIONS(1143), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(974), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), @@ -41541,18 +43206,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(65), [anon_sym_struct] = ACTIONS(67), [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(171), - [anon_sym_else] = ACTIONS(958), - [anon_sym_switch] = ACTIONS(173), - [anon_sym_case] = ACTIONS(958), - [anon_sym_default] = ACTIONS(958), - [anon_sym_while] = ACTIONS(179), - [anon_sym_do] = ACTIONS(181), - [anon_sym_for] = ACTIONS(183), - [anon_sym_return] = ACTIONS(185), - [anon_sym_break] = ACTIONS(187), - [anon_sym_continue] = ACTIONS(189), - [anon_sym_goto] = ACTIONS(191), + [anon_sym_if] = ACTIONS(253), + [anon_sym_else] = ACTIONS(1143), + [anon_sym_switch] = ACTIONS(255), + [anon_sym_case] = ACTIONS(1143), + [anon_sym_default] = ACTIONS(1143), + [anon_sym_while] = ACTIONS(261), + [anon_sym_do] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_return] = ACTIONS(267), + [anon_sym_break] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(271), + [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -41574,19 +43241,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(105), [anon_sym_decltype] = ACTIONS(107), [anon_sym_virtual] = ACTIONS(109), - [anon_sym_explicit] = ACTIONS(958), + [anon_sym_explicit] = ACTIONS(1143), [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(972), - [anon_sym_operator] = ACTIONS(958), - [anon_sym_try] = ACTIONS(197), + [anon_sym_template] = ACTIONS(976), + [anon_sym_operator] = ACTIONS(1143), + [anon_sym_try] = ACTIONS(277), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(199), - [anon_sym_namespace] = ACTIONS(958), - [anon_sym_using] = ACTIONS(958), - [anon_sym_static_assert] = ACTIONS(958), - [anon_sym_concept] = ACTIONS(958), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_throw] = ACTIONS(279), + [anon_sym_namespace] = ACTIONS(1143), + [anon_sym_using] = ACTIONS(1143), + [anon_sym_static_assert] = ACTIONS(1143), + [anon_sym_concept] = ACTIONS(1143), + [anon_sym_co_return] = ACTIONS(289), + [anon_sym_co_yield] = ACTIONS(291), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -41594,116 +43261,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [81] = { - [sym_declaration] = STATE(94), - [sym_type_definition] = STATE(94), - [sym__declaration_modifiers] = STATE(1894), - [sym__declaration_specifiers] = STATE(3986), - [sym_attribute_specifier] = STATE(1894), - [sym_attribute_declaration] = STATE(1147), - [sym_ms_declspec_modifier] = STATE(1894), - [sym_compound_statement] = STATE(94), - [sym_storage_class_specifier] = STATE(1894), - [sym_type_qualifier] = STATE(1894), - [sym__type_specifier] = STATE(2596), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_attributed_statement] = STATE(94), - [sym_labeled_statement] = STATE(94), - [sym_expression_statement] = STATE(94), - [sym_if_statement] = STATE(94), - [sym_switch_statement] = STATE(94), - [sym_while_statement] = STATE(94), - [sym_do_statement] = STATE(94), - [sym_for_statement] = STATE(94), - [sym_return_statement] = STATE(94), - [sym_break_statement] = STATE(94), - [sym_continue_statement] = STATE(94), - [sym_goto_statement] = STATE(94), - [sym__expression] = STATE(3612), - [sym_comma_expression] = STATE(6539), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(1894), - [sym_dependent_type] = STATE(3139), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(94), - [sym_co_return_statement] = STATE(94), - [sym_co_yield_statement] = STATE(94), - [sym_throw_statement] = STATE(94), - [sym_try_statement] = STATE(94), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4625), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(3276), - [sym_user_defined_literal] = STATE(3428), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(303), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_case_statement_repeat1] = STATE(94), - [sym_identifier] = ACTIONS(1145), - [aux_sym_preproc_include_token1] = ACTIONS(958), - [aux_sym_preproc_def_token1] = ACTIONS(958), - [aux_sym_preproc_if_token1] = ACTIONS(958), - [aux_sym_preproc_if_token2] = ACTIONS(958), - [aux_sym_preproc_ifdef_token1] = ACTIONS(958), - [aux_sym_preproc_ifdef_token2] = ACTIONS(958), - [sym_preproc_directive] = ACTIONS(958), - [anon_sym_LPAREN2] = ACTIONS(960), + [82] = { + [sym_declaration] = STATE(92), + [sym_type_definition] = STATE(92), + [sym__declaration_modifiers] = STATE(2203), + [sym__declaration_specifiers] = STATE(4242), + [sym_attribute_specifier] = STATE(2203), + [sym_attribute_declaration] = STATE(1228), + [sym_ms_declspec_modifier] = STATE(2203), + [sym_compound_statement] = STATE(92), + [sym_storage_class_specifier] = STATE(2203), + [sym_type_qualifier] = STATE(2203), + [sym__type_specifier] = STATE(3251), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_attributed_statement] = STATE(92), + [sym_labeled_statement] = STATE(92), + [sym_expression_statement] = STATE(92), + [sym_if_statement] = STATE(92), + [sym_switch_statement] = STATE(92), + [sym_while_statement] = STATE(92), + [sym_do_statement] = STATE(92), + [sym_for_statement] = STATE(92), + [sym_return_statement] = STATE(92), + [sym_break_statement] = STATE(92), + [sym_continue_statement] = STATE(92), + [sym_goto_statement] = STATE(92), + [sym__expression] = STATE(3704), + [sym_comma_expression] = STATE(6857), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(2203), + [sym_dependent_type] = STATE(3481), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(92), + [sym_co_return_statement] = STATE(92), + [sym_co_yield_statement] = STATE(92), + [sym_throw_statement] = STATE(92), + [sym_try_statement] = STATE(92), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4928), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(3729), + [sym_user_defined_literal] = STATE(3435), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_case_statement_repeat1] = STATE(92), + [sym_identifier] = ACTIONS(1147), + [aux_sym_preproc_include_token1] = ACTIONS(982), + [aux_sym_preproc_def_token1] = ACTIONS(982), + [aux_sym_preproc_if_token1] = ACTIONS(982), + [aux_sym_preproc_ifdef_token1] = ACTIONS(982), + [aux_sym_preproc_ifdef_token2] = ACTIONS(982), + [sym_preproc_directive] = ACTIONS(982), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP_AMP] = ACTIONS(964), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(594), - [anon_sym_typedef] = ACTIONS(596), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP_AMP] = ACTIONS(984), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_typedef] = ACTIONS(161), [anon_sym_extern] = ACTIONS(55), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(958), - [anon_sym___cdecl] = ACTIONS(958), - [anon_sym___clrcall] = ACTIONS(958), - [anon_sym___stdcall] = ACTIONS(958), - [anon_sym___fastcall] = ACTIONS(958), - [anon_sym___thiscall] = ACTIONS(958), - [anon_sym___vectorcall] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(600), - [anon_sym_LBRACK] = ACTIONS(970), + [anon_sym___based] = ACTIONS(982), + [anon_sym___cdecl] = ACTIONS(982), + [anon_sym___clrcall] = ACTIONS(982), + [anon_sym___stdcall] = ACTIONS(982), + [anon_sym___fastcall] = ACTIONS(982), + [anon_sym___thiscall] = ACTIONS(982), + [anon_sym___vectorcall] = ACTIONS(982), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_RBRACE] = ACTIONS(984), + [anon_sym_LBRACK] = ACTIONS(974), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), @@ -41725,18 +43392,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(65), [anon_sym_struct] = ACTIONS(67), [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(602), - [anon_sym_else] = ACTIONS(958), - [anon_sym_switch] = ACTIONS(604), - [anon_sym_case] = ACTIONS(958), - [anon_sym_default] = ACTIONS(958), - [anon_sym_while] = ACTIONS(610), - [anon_sym_do] = ACTIONS(612), - [anon_sym_for] = ACTIONS(614), - [anon_sym_return] = ACTIONS(616), - [anon_sym_break] = ACTIONS(618), - [anon_sym_continue] = ACTIONS(620), - [anon_sym_goto] = ACTIONS(622), + [anon_sym_if] = ACTIONS(171), + [anon_sym_else] = ACTIONS(982), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(982), + [anon_sym_default] = ACTIONS(982), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -41758,19 +43427,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(105), [anon_sym_decltype] = ACTIONS(107), [anon_sym_virtual] = ACTIONS(109), - [anon_sym_explicit] = ACTIONS(958), + [anon_sym_explicit] = ACTIONS(982), [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(972), - [anon_sym_operator] = ACTIONS(958), - [anon_sym_try] = ACTIONS(626), + [anon_sym_template] = ACTIONS(976), + [anon_sym_operator] = ACTIONS(982), + [anon_sym_try] = ACTIONS(197), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(628), - [anon_sym_namespace] = ACTIONS(958), - [anon_sym_using] = ACTIONS(958), - [anon_sym_static_assert] = ACTIONS(958), - [anon_sym_concept] = ACTIONS(958), - [anon_sym_co_return] = ACTIONS(638), - [anon_sym_co_yield] = ACTIONS(640), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_namespace] = ACTIONS(982), + [anon_sym_using] = ACTIONS(982), + [anon_sym_static_assert] = ACTIONS(982), + [anon_sym_concept] = ACTIONS(982), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -41778,116 +43447,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [82] = { - [sym_declaration] = STATE(88), - [sym_type_definition] = STATE(88), - [sym__declaration_modifiers] = STATE(1894), - [sym__declaration_specifiers] = STATE(3974), - [sym_attribute_specifier] = STATE(1894), - [sym_attribute_declaration] = STATE(1147), - [sym_ms_declspec_modifier] = STATE(1894), - [sym_compound_statement] = STATE(88), - [sym_storage_class_specifier] = STATE(1894), - [sym_type_qualifier] = STATE(1894), - [sym__type_specifier] = STATE(2596), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_attributed_statement] = STATE(88), - [sym_labeled_statement] = STATE(88), - [sym_expression_statement] = STATE(88), - [sym_if_statement] = STATE(88), - [sym_switch_statement] = STATE(88), - [sym_while_statement] = STATE(88), - [sym_do_statement] = STATE(88), - [sym_for_statement] = STATE(88), - [sym_return_statement] = STATE(88), - [sym_break_statement] = STATE(88), - [sym_continue_statement] = STATE(88), - [sym_goto_statement] = STATE(88), - [sym__expression] = STATE(3605), - [sym_comma_expression] = STATE(6558), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(1894), - [sym_dependent_type] = STATE(3139), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(88), - [sym_co_return_statement] = STATE(88), - [sym_co_yield_statement] = STATE(88), - [sym_throw_statement] = STATE(88), - [sym_try_statement] = STATE(88), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4625), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(3276), - [sym_user_defined_literal] = STATE(3428), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(282), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_case_statement_repeat1] = STATE(88), - [ts_builtin_sym_end] = ACTIONS(1141), - [sym_identifier] = ACTIONS(1147), - [aux_sym_preproc_include_token1] = ACTIONS(1139), - [aux_sym_preproc_def_token1] = ACTIONS(1139), - [aux_sym_preproc_if_token1] = ACTIONS(1139), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1139), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1139), - [sym_preproc_directive] = ACTIONS(1139), - [anon_sym_LPAREN2] = ACTIONS(960), + [83] = { + [sym_declaration] = STATE(89), + [sym_type_definition] = STATE(89), + [sym__declaration_modifiers] = STATE(2203), + [sym__declaration_specifiers] = STATE(4253), + [sym_attribute_specifier] = STATE(2203), + [sym_attribute_declaration] = STATE(1228), + [sym_ms_declspec_modifier] = STATE(2203), + [sym_compound_statement] = STATE(89), + [sym_storage_class_specifier] = STATE(2203), + [sym_type_qualifier] = STATE(2203), + [sym__type_specifier] = STATE(3251), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_attributed_statement] = STATE(89), + [sym_labeled_statement] = STATE(89), + [sym_expression_statement] = STATE(89), + [sym_if_statement] = STATE(89), + [sym_switch_statement] = STATE(89), + [sym_while_statement] = STATE(89), + [sym_do_statement] = STATE(89), + [sym_for_statement] = STATE(89), + [sym_return_statement] = STATE(89), + [sym_break_statement] = STATE(89), + [sym_continue_statement] = STATE(89), + [sym_goto_statement] = STATE(89), + [sym__expression] = STATE(3758), + [sym_comma_expression] = STATE(7239), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(2203), + [sym_dependent_type] = STATE(3481), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(89), + [sym_co_return_statement] = STATE(89), + [sym_co_yield_statement] = STATE(89), + [sym_throw_statement] = STATE(89), + [sym_try_statement] = STATE(89), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4928), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(3729), + [sym_user_defined_literal] = STATE(3435), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(286), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_case_statement_repeat1] = STATE(89), + [ts_builtin_sym_end] = ACTIONS(980), + [sym_identifier] = ACTIONS(1149), + [aux_sym_preproc_include_token1] = ACTIONS(978), + [aux_sym_preproc_def_token1] = ACTIONS(978), + [aux_sym_preproc_if_token1] = ACTIONS(978), + [aux_sym_preproc_ifdef_token1] = ACTIONS(978), + [aux_sym_preproc_ifdef_token2] = ACTIONS(978), + [sym_preproc_directive] = ACTIONS(978), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP_AMP] = ACTIONS(1141), - [anon_sym_AMP] = ACTIONS(966), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_AMP] = ACTIONS(970), [anon_sym_SEMI] = ACTIONS(33), [anon_sym_typedef] = ACTIONS(35), [anon_sym_extern] = ACTIONS(55), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(1139), - [anon_sym___cdecl] = ACTIONS(1139), - [anon_sym___clrcall] = ACTIONS(1139), - [anon_sym___stdcall] = ACTIONS(1139), - [anon_sym___fastcall] = ACTIONS(1139), - [anon_sym___thiscall] = ACTIONS(1139), - [anon_sym___vectorcall] = ACTIONS(1139), + [anon_sym___based] = ACTIONS(978), + [anon_sym___cdecl] = ACTIONS(978), + [anon_sym___clrcall] = ACTIONS(978), + [anon_sym___stdcall] = ACTIONS(978), + [anon_sym___fastcall] = ACTIONS(978), + [anon_sym___thiscall] = ACTIONS(978), + [anon_sym___vectorcall] = ACTIONS(978), [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(974), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), @@ -41910,10 +43579,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(67), [anon_sym_union] = ACTIONS(69), [anon_sym_if] = ACTIONS(71), - [anon_sym_else] = ACTIONS(1139), + [anon_sym_else] = ACTIONS(978), [anon_sym_switch] = ACTIONS(73), - [anon_sym_case] = ACTIONS(1139), - [anon_sym_default] = ACTIONS(1139), + [anon_sym_case] = ACTIONS(978), + [anon_sym_default] = ACTIONS(978), [anon_sym_while] = ACTIONS(79), [anon_sym_do] = ACTIONS(81), [anon_sym_for] = ACTIONS(83), @@ -41921,6 +43590,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(87), [anon_sym_continue] = ACTIONS(89), [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -41942,17 +43613,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(105), [anon_sym_decltype] = ACTIONS(107), [anon_sym_virtual] = ACTIONS(109), - [anon_sym_explicit] = ACTIONS(1139), + [anon_sym_explicit] = ACTIONS(978), [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(972), - [anon_sym_operator] = ACTIONS(1139), + [anon_sym_template] = ACTIONS(976), + [anon_sym_operator] = ACTIONS(978), [anon_sym_try] = ACTIONS(119), [anon_sym_delete] = ACTIONS(121), [anon_sym_throw] = ACTIONS(123), - [anon_sym_namespace] = ACTIONS(1139), - [anon_sym_using] = ACTIONS(1139), - [anon_sym_static_assert] = ACTIONS(1139), - [anon_sym_concept] = ACTIONS(1139), + [anon_sym_namespace] = ACTIONS(978), + [anon_sym_using] = ACTIONS(978), + [anon_sym_static_assert] = ACTIONS(978), + [anon_sym_concept] = ACTIONS(978), [anon_sym_co_return] = ACTIONS(133), [anon_sym_co_yield] = ACTIONS(135), [anon_sym_co_await] = ACTIONS(137), @@ -41962,484 +43633,302 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [83] = { - [sym_declaration] = STATE(83), - [sym_type_definition] = STATE(83), - [sym__declaration_modifiers] = STATE(1894), - [sym__declaration_specifiers] = STATE(3996), - [sym_attribute_specifier] = STATE(1894), - [sym_attribute_declaration] = STATE(1147), - [sym_ms_declspec_modifier] = STATE(1894), - [sym_compound_statement] = STATE(83), - [sym_storage_class_specifier] = STATE(1894), - [sym_type_qualifier] = STATE(1894), - [sym__type_specifier] = STATE(2596), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_attributed_statement] = STATE(83), - [sym_labeled_statement] = STATE(83), - [sym_expression_statement] = STATE(83), - [sym_if_statement] = STATE(83), - [sym_switch_statement] = STATE(83), - [sym_while_statement] = STATE(83), - [sym_do_statement] = STATE(83), - [sym_for_statement] = STATE(83), - [sym_return_statement] = STATE(83), - [sym_break_statement] = STATE(83), - [sym_continue_statement] = STATE(83), - [sym_goto_statement] = STATE(83), - [sym__expression] = STATE(3645), - [sym_comma_expression] = STATE(6499), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(1894), - [sym_dependent_type] = STATE(3139), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(83), - [sym_co_return_statement] = STATE(83), - [sym_co_yield_statement] = STATE(83), - [sym_throw_statement] = STATE(83), - [sym_try_statement] = STATE(83), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4625), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(3276), - [sym_user_defined_literal] = STATE(3428), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_case_statement_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(1149), - [aux_sym_preproc_include_token1] = ACTIONS(985), - [aux_sym_preproc_def_token1] = ACTIONS(985), - [aux_sym_preproc_if_token1] = ACTIONS(985), - [aux_sym_preproc_ifdef_token1] = ACTIONS(985), - [aux_sym_preproc_ifdef_token2] = ACTIONS(985), - [sym_preproc_directive] = ACTIONS(985), - [anon_sym_LPAREN2] = ACTIONS(987), - [anon_sym_BANG] = ACTIONS(990), - [anon_sym_TILDE] = ACTIONS(990), - [anon_sym_DASH] = ACTIONS(993), - [anon_sym_PLUS] = ACTIONS(993), - [anon_sym_STAR] = ACTIONS(996), - [anon_sym_AMP_AMP] = ACTIONS(999), - [anon_sym_AMP] = ACTIONS(1001), - [anon_sym_SEMI] = ACTIONS(1152), - [anon_sym_typedef] = ACTIONS(1155), - [anon_sym_extern] = ACTIONS(1010), - [anon_sym___attribute__] = ACTIONS(1013), - [anon_sym_COLON_COLON] = ACTIONS(1016), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1019), - [anon_sym___declspec] = ACTIONS(1022), - [anon_sym___based] = ACTIONS(985), - [anon_sym___cdecl] = ACTIONS(985), - [anon_sym___clrcall] = ACTIONS(985), - [anon_sym___stdcall] = ACTIONS(985), - [anon_sym___fastcall] = ACTIONS(985), - [anon_sym___thiscall] = ACTIONS(985), - [anon_sym___vectorcall] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(1158), - [anon_sym_RBRACE] = ACTIONS(999), - [anon_sym_LBRACK] = ACTIONS(1028), - [anon_sym_static] = ACTIONS(1010), - [anon_sym_register] = ACTIONS(1010), - [anon_sym_inline] = ACTIONS(1010), - [anon_sym_thread_local] = ACTIONS(1010), - [anon_sym_const] = ACTIONS(1031), - [anon_sym_volatile] = ACTIONS(1031), - [anon_sym_restrict] = ACTIONS(1031), - [anon_sym__Atomic] = ACTIONS(1031), - [anon_sym_mutable] = ACTIONS(1031), - [anon_sym_constexpr] = ACTIONS(1031), - [anon_sym_constinit] = ACTIONS(1031), - [anon_sym_consteval] = ACTIONS(1031), - [anon_sym_signed] = ACTIONS(1034), - [anon_sym_unsigned] = ACTIONS(1034), - [anon_sym_long] = ACTIONS(1034), - [anon_sym_short] = ACTIONS(1034), - [sym_primitive_type] = ACTIONS(1037), - [anon_sym_enum] = ACTIONS(1040), - [anon_sym_class] = ACTIONS(1043), - [anon_sym_struct] = ACTIONS(1046), - [anon_sym_union] = ACTIONS(1049), - [anon_sym_if] = ACTIONS(1161), - [anon_sym_else] = ACTIONS(985), - [anon_sym_switch] = ACTIONS(1164), - [anon_sym_case] = ACTIONS(985), - [anon_sym_default] = ACTIONS(985), - [anon_sym_while] = ACTIONS(1167), - [anon_sym_do] = ACTIONS(1170), - [anon_sym_for] = ACTIONS(1173), - [anon_sym_return] = ACTIONS(1176), - [anon_sym_break] = ACTIONS(1179), - [anon_sym_continue] = ACTIONS(1182), - [anon_sym_goto] = ACTIONS(1185), - [anon_sym_DASH_DASH] = ACTIONS(1079), - [anon_sym_PLUS_PLUS] = ACTIONS(1079), - [anon_sym_sizeof] = ACTIONS(1082), - [sym_number_literal] = ACTIONS(1085), - [anon_sym_L_SQUOTE] = ACTIONS(1088), - [anon_sym_u_SQUOTE] = ACTIONS(1088), - [anon_sym_U_SQUOTE] = ACTIONS(1088), - [anon_sym_u8_SQUOTE] = ACTIONS(1088), - [anon_sym_SQUOTE] = ACTIONS(1088), - [anon_sym_L_DQUOTE] = ACTIONS(1091), - [anon_sym_u_DQUOTE] = ACTIONS(1091), - [anon_sym_U_DQUOTE] = ACTIONS(1091), - [anon_sym_u8_DQUOTE] = ACTIONS(1091), - [anon_sym_DQUOTE] = ACTIONS(1091), - [sym_true] = ACTIONS(1094), - [sym_false] = ACTIONS(1094), - [sym_null] = ACTIONS(1094), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1097), - [anon_sym_decltype] = ACTIONS(1100), - [anon_sym_virtual] = ACTIONS(1103), - [anon_sym_explicit] = ACTIONS(985), - [anon_sym_typename] = ACTIONS(1106), - [anon_sym_template] = ACTIONS(1109), - [anon_sym_operator] = ACTIONS(985), - [anon_sym_try] = ACTIONS(1188), - [anon_sym_delete] = ACTIONS(1115), - [anon_sym_throw] = ACTIONS(1191), - [anon_sym_namespace] = ACTIONS(985), - [anon_sym_using] = ACTIONS(985), - [anon_sym_static_assert] = ACTIONS(985), - [anon_sym_concept] = ACTIONS(985), - [anon_sym_co_return] = ACTIONS(1194), - [anon_sym_co_yield] = ACTIONS(1197), - [anon_sym_co_await] = ACTIONS(1127), - [anon_sym_new] = ACTIONS(1130), - [anon_sym_requires] = ACTIONS(1133), - [sym_this] = ACTIONS(1094), - [sym_nullptr] = ACTIONS(1094), - [sym_raw_string_literal] = ACTIONS(1136), - }, [84] = { - [sym_declaration] = STATE(84), - [sym_type_definition] = STATE(84), - [sym__declaration_modifiers] = STATE(1894), - [sym__declaration_specifiers] = STATE(3974), - [sym_attribute_specifier] = STATE(1894), - [sym_attribute_declaration] = STATE(1147), - [sym_ms_declspec_modifier] = STATE(1894), - [sym_compound_statement] = STATE(84), - [sym_storage_class_specifier] = STATE(1894), - [sym_type_qualifier] = STATE(1894), - [sym__type_specifier] = STATE(2596), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_attributed_statement] = STATE(84), - [sym_labeled_statement] = STATE(84), - [sym_expression_statement] = STATE(84), - [sym_if_statement] = STATE(84), - [sym_switch_statement] = STATE(84), - [sym_while_statement] = STATE(84), - [sym_do_statement] = STATE(84), - [sym_for_statement] = STATE(84), - [sym_return_statement] = STATE(84), - [sym_break_statement] = STATE(84), - [sym_continue_statement] = STATE(84), - [sym_goto_statement] = STATE(84), - [sym__expression] = STATE(3605), - [sym_comma_expression] = STATE(6558), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(1894), - [sym_dependent_type] = STATE(3139), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(84), - [sym_co_return_statement] = STATE(84), - [sym_co_yield_statement] = STATE(84), - [sym_throw_statement] = STATE(84), - [sym_try_statement] = STATE(84), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4625), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(3276), - [sym_user_defined_literal] = STATE(3428), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(282), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_case_statement_repeat1] = STATE(84), - [ts_builtin_sym_end] = ACTIONS(999), - [sym_identifier] = ACTIONS(1200), - [aux_sym_preproc_include_token1] = ACTIONS(985), - [aux_sym_preproc_def_token1] = ACTIONS(985), - [aux_sym_preproc_if_token1] = ACTIONS(985), - [aux_sym_preproc_ifdef_token1] = ACTIONS(985), - [aux_sym_preproc_ifdef_token2] = ACTIONS(985), - [sym_preproc_directive] = ACTIONS(985), - [anon_sym_LPAREN2] = ACTIONS(987), - [anon_sym_BANG] = ACTIONS(990), - [anon_sym_TILDE] = ACTIONS(990), - [anon_sym_DASH] = ACTIONS(993), - [anon_sym_PLUS] = ACTIONS(993), - [anon_sym_STAR] = ACTIONS(996), - [anon_sym_AMP_AMP] = ACTIONS(999), - [anon_sym_AMP] = ACTIONS(1001), - [anon_sym_SEMI] = ACTIONS(1203), - [anon_sym_typedef] = ACTIONS(1206), - [anon_sym_extern] = ACTIONS(1010), - [anon_sym___attribute__] = ACTIONS(1013), - [anon_sym_COLON_COLON] = ACTIONS(1016), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1019), - [anon_sym___declspec] = ACTIONS(1022), - [anon_sym___based] = ACTIONS(985), - [anon_sym___cdecl] = ACTIONS(985), - [anon_sym___clrcall] = ACTIONS(985), - [anon_sym___stdcall] = ACTIONS(985), - [anon_sym___fastcall] = ACTIONS(985), - [anon_sym___thiscall] = ACTIONS(985), - [anon_sym___vectorcall] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_LBRACK] = ACTIONS(1028), - [anon_sym_static] = ACTIONS(1010), - [anon_sym_register] = ACTIONS(1010), - [anon_sym_inline] = ACTIONS(1010), - [anon_sym_thread_local] = ACTIONS(1010), - [anon_sym_const] = ACTIONS(1031), - [anon_sym_volatile] = ACTIONS(1031), - [anon_sym_restrict] = ACTIONS(1031), - [anon_sym__Atomic] = ACTIONS(1031), - [anon_sym_mutable] = ACTIONS(1031), - [anon_sym_constexpr] = ACTIONS(1031), - [anon_sym_constinit] = ACTIONS(1031), - [anon_sym_consteval] = ACTIONS(1031), - [anon_sym_signed] = ACTIONS(1034), - [anon_sym_unsigned] = ACTIONS(1034), - [anon_sym_long] = ACTIONS(1034), - [anon_sym_short] = ACTIONS(1034), - [sym_primitive_type] = ACTIONS(1037), - [anon_sym_enum] = ACTIONS(1040), - [anon_sym_class] = ACTIONS(1043), - [anon_sym_struct] = ACTIONS(1046), - [anon_sym_union] = ACTIONS(1049), - [anon_sym_if] = ACTIONS(1212), - [anon_sym_else] = ACTIONS(985), - [anon_sym_switch] = ACTIONS(1215), - [anon_sym_case] = ACTIONS(985), - [anon_sym_default] = ACTIONS(985), - [anon_sym_while] = ACTIONS(1218), - [anon_sym_do] = ACTIONS(1221), - [anon_sym_for] = ACTIONS(1224), - [anon_sym_return] = ACTIONS(1227), - [anon_sym_break] = ACTIONS(1230), - [anon_sym_continue] = ACTIONS(1233), - [anon_sym_goto] = ACTIONS(1236), - [anon_sym_DASH_DASH] = ACTIONS(1079), - [anon_sym_PLUS_PLUS] = ACTIONS(1079), - [anon_sym_sizeof] = ACTIONS(1082), - [sym_number_literal] = ACTIONS(1085), - [anon_sym_L_SQUOTE] = ACTIONS(1088), - [anon_sym_u_SQUOTE] = ACTIONS(1088), - [anon_sym_U_SQUOTE] = ACTIONS(1088), - [anon_sym_u8_SQUOTE] = ACTIONS(1088), - [anon_sym_SQUOTE] = ACTIONS(1088), - [anon_sym_L_DQUOTE] = ACTIONS(1091), - [anon_sym_u_DQUOTE] = ACTIONS(1091), - [anon_sym_U_DQUOTE] = ACTIONS(1091), - [anon_sym_u8_DQUOTE] = ACTIONS(1091), - [anon_sym_DQUOTE] = ACTIONS(1091), - [sym_true] = ACTIONS(1094), - [sym_false] = ACTIONS(1094), - [sym_null] = ACTIONS(1094), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1097), - [anon_sym_decltype] = ACTIONS(1100), - [anon_sym_virtual] = ACTIONS(1103), - [anon_sym_explicit] = ACTIONS(985), - [anon_sym_typename] = ACTIONS(1106), - [anon_sym_template] = ACTIONS(1109), - [anon_sym_operator] = ACTIONS(985), - [anon_sym_try] = ACTIONS(1239), - [anon_sym_delete] = ACTIONS(1115), - [anon_sym_throw] = ACTIONS(1242), - [anon_sym_namespace] = ACTIONS(985), - [anon_sym_using] = ACTIONS(985), - [anon_sym_static_assert] = ACTIONS(985), - [anon_sym_concept] = ACTIONS(985), - [anon_sym_co_return] = ACTIONS(1245), - [anon_sym_co_yield] = ACTIONS(1248), - [anon_sym_co_await] = ACTIONS(1127), - [anon_sym_new] = ACTIONS(1130), - [anon_sym_requires] = ACTIONS(1133), - [sym_this] = ACTIONS(1094), - [sym_nullptr] = ACTIONS(1094), - [sym_raw_string_literal] = ACTIONS(1136), + [sym_declaration] = STATE(96), + [sym_type_definition] = STATE(96), + [sym__declaration_modifiers] = STATE(2203), + [sym__declaration_specifiers] = STATE(4255), + [sym_attribute_specifier] = STATE(2203), + [sym_attribute_declaration] = STATE(1228), + [sym_ms_declspec_modifier] = STATE(2203), + [sym_compound_statement] = STATE(96), + [sym_storage_class_specifier] = STATE(2203), + [sym_type_qualifier] = STATE(2203), + [sym__type_specifier] = STATE(3251), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_attributed_statement] = STATE(96), + [sym_labeled_statement] = STATE(96), + [sym_expression_statement] = STATE(96), + [sym_if_statement] = STATE(96), + [sym_switch_statement] = STATE(96), + [sym_while_statement] = STATE(96), + [sym_do_statement] = STATE(96), + [sym_for_statement] = STATE(96), + [sym_return_statement] = STATE(96), + [sym_break_statement] = STATE(96), + [sym_continue_statement] = STATE(96), + [sym_goto_statement] = STATE(96), + [sym__expression] = STATE(3763), + [sym_comma_expression] = STATE(6972), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(2203), + [sym_dependent_type] = STATE(3481), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(96), + [sym_co_return_statement] = STATE(96), + [sym_co_yield_statement] = STATE(96), + [sym_throw_statement] = STATE(96), + [sym_try_statement] = STATE(96), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4928), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(3729), + [sym_user_defined_literal] = STATE(3435), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(302), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_case_statement_repeat1] = STATE(96), + [sym_identifier] = ACTIONS(1151), + [aux_sym_preproc_include_token1] = ACTIONS(1143), + [aux_sym_preproc_def_token1] = ACTIONS(1143), + [aux_sym_preproc_if_token1] = ACTIONS(1143), + [aux_sym_preproc_if_token2] = ACTIONS(1143), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1143), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1143), + [sym_preproc_directive] = ACTIONS(1143), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP_AMP] = ACTIONS(1145), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_SEMI] = ACTIONS(560), + [anon_sym_typedef] = ACTIONS(562), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(1143), + [anon_sym___cdecl] = ACTIONS(1143), + [anon_sym___clrcall] = ACTIONS(1143), + [anon_sym___stdcall] = ACTIONS(1143), + [anon_sym___fastcall] = ACTIONS(1143), + [anon_sym___thiscall] = ACTIONS(1143), + [anon_sym___vectorcall] = ACTIONS(1143), + [anon_sym_LBRACE] = ACTIONS(566), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(568), + [anon_sym_else] = ACTIONS(1143), + [anon_sym_switch] = ACTIONS(570), + [anon_sym_case] = ACTIONS(1143), + [anon_sym_default] = ACTIONS(1143), + [anon_sym_while] = ACTIONS(576), + [anon_sym_do] = ACTIONS(578), + [anon_sym_for] = ACTIONS(580), + [anon_sym_return] = ACTIONS(582), + [anon_sym_break] = ACTIONS(584), + [anon_sym_continue] = ACTIONS(586), + [anon_sym_goto] = ACTIONS(588), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(1143), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(976), + [anon_sym_operator] = ACTIONS(1143), + [anon_sym_try] = ACTIONS(592), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(594), + [anon_sym_namespace] = ACTIONS(1143), + [anon_sym_using] = ACTIONS(1143), + [anon_sym_static_assert] = ACTIONS(1143), + [anon_sym_concept] = ACTIONS(1143), + [anon_sym_co_return] = ACTIONS(604), + [anon_sym_co_yield] = ACTIONS(606), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), }, [85] = { - [sym_declaration] = STATE(84), - [sym_type_definition] = STATE(84), - [sym__declaration_modifiers] = STATE(1894), - [sym__declaration_specifiers] = STATE(3974), - [sym_attribute_specifier] = STATE(1894), - [sym_attribute_declaration] = STATE(1147), - [sym_ms_declspec_modifier] = STATE(1894), - [sym_compound_statement] = STATE(84), - [sym_storage_class_specifier] = STATE(1894), - [sym_type_qualifier] = STATE(1894), - [sym__type_specifier] = STATE(2596), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_attributed_statement] = STATE(84), - [sym_labeled_statement] = STATE(84), - [sym_expression_statement] = STATE(84), - [sym_if_statement] = STATE(84), - [sym_switch_statement] = STATE(84), - [sym_while_statement] = STATE(84), - [sym_do_statement] = STATE(84), - [sym_for_statement] = STATE(84), - [sym_return_statement] = STATE(84), - [sym_break_statement] = STATE(84), - [sym_continue_statement] = STATE(84), - [sym_goto_statement] = STATE(84), - [sym__expression] = STATE(3605), - [sym_comma_expression] = STATE(6558), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(1894), - [sym_dependent_type] = STATE(3139), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(84), - [sym_co_return_statement] = STATE(84), - [sym_co_yield_statement] = STATE(84), - [sym_throw_statement] = STATE(84), - [sym_try_statement] = STATE(84), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4625), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(3276), - [sym_user_defined_literal] = STATE(3428), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(282), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_case_statement_repeat1] = STATE(84), - [ts_builtin_sym_end] = ACTIONS(976), + [sym_declaration] = STATE(82), + [sym_type_definition] = STATE(82), + [sym__declaration_modifiers] = STATE(2203), + [sym__declaration_specifiers] = STATE(4242), + [sym_attribute_specifier] = STATE(2203), + [sym_attribute_declaration] = STATE(1228), + [sym_ms_declspec_modifier] = STATE(2203), + [sym_compound_statement] = STATE(82), + [sym_storage_class_specifier] = STATE(2203), + [sym_type_qualifier] = STATE(2203), + [sym__type_specifier] = STATE(3251), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_attributed_statement] = STATE(82), + [sym_labeled_statement] = STATE(82), + [sym_expression_statement] = STATE(82), + [sym_if_statement] = STATE(82), + [sym_switch_statement] = STATE(82), + [sym_while_statement] = STATE(82), + [sym_do_statement] = STATE(82), + [sym_for_statement] = STATE(82), + [sym_return_statement] = STATE(82), + [sym_break_statement] = STATE(82), + [sym_continue_statement] = STATE(82), + [sym_goto_statement] = STATE(82), + [sym__expression] = STATE(3704), + [sym_comma_expression] = STATE(6857), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(2203), + [sym_dependent_type] = STATE(3481), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(82), + [sym_co_return_statement] = STATE(82), + [sym_co_yield_statement] = STATE(82), + [sym_throw_statement] = STATE(82), + [sym_try_statement] = STATE(82), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4928), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(3729), + [sym_user_defined_literal] = STATE(3435), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_case_statement_repeat1] = STATE(82), [sym_identifier] = ACTIONS(1147), - [aux_sym_preproc_include_token1] = ACTIONS(974), - [aux_sym_preproc_def_token1] = ACTIONS(974), - [aux_sym_preproc_if_token1] = ACTIONS(974), - [aux_sym_preproc_ifdef_token1] = ACTIONS(974), - [aux_sym_preproc_ifdef_token2] = ACTIONS(974), - [sym_preproc_directive] = ACTIONS(974), - [anon_sym_LPAREN2] = ACTIONS(960), + [aux_sym_preproc_include_token1] = ACTIONS(1143), + [aux_sym_preproc_def_token1] = ACTIONS(1143), + [aux_sym_preproc_if_token1] = ACTIONS(1143), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1143), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1143), + [sym_preproc_directive] = ACTIONS(1143), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP_AMP] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_typedef] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP_AMP] = ACTIONS(1145), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_typedef] = ACTIONS(161), [anon_sym_extern] = ACTIONS(55), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(974), - [anon_sym___cdecl] = ACTIONS(974), - [anon_sym___clrcall] = ACTIONS(974), - [anon_sym___stdcall] = ACTIONS(974), - [anon_sym___fastcall] = ACTIONS(974), - [anon_sym___thiscall] = ACTIONS(974), - [anon_sym___vectorcall] = ACTIONS(974), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(970), + [anon_sym___based] = ACTIONS(1143), + [anon_sym___cdecl] = ACTIONS(1143), + [anon_sym___clrcall] = ACTIONS(1143), + [anon_sym___stdcall] = ACTIONS(1143), + [anon_sym___fastcall] = ACTIONS(1143), + [anon_sym___thiscall] = ACTIONS(1143), + [anon_sym___vectorcall] = ACTIONS(1143), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_RBRACE] = ACTIONS(1145), + [anon_sym_LBRACK] = ACTIONS(974), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), @@ -42461,18 +43950,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(65), [anon_sym_struct] = ACTIONS(67), [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(71), - [anon_sym_else] = ACTIONS(974), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_case] = ACTIONS(974), - [anon_sym_default] = ACTIONS(974), - [anon_sym_while] = ACTIONS(79), - [anon_sym_do] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), - [anon_sym_return] = ACTIONS(85), - [anon_sym_break] = ACTIONS(87), - [anon_sym_continue] = ACTIONS(89), - [anon_sym_goto] = ACTIONS(91), + [anon_sym_if] = ACTIONS(171), + [anon_sym_else] = ACTIONS(1143), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(1143), + [anon_sym_default] = ACTIONS(1143), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -42494,19 +43985,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(105), [anon_sym_decltype] = ACTIONS(107), [anon_sym_virtual] = ACTIONS(109), - [anon_sym_explicit] = ACTIONS(974), + [anon_sym_explicit] = ACTIONS(1143), [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(972), - [anon_sym_operator] = ACTIONS(974), - [anon_sym_try] = ACTIONS(119), + [anon_sym_template] = ACTIONS(976), + [anon_sym_operator] = ACTIONS(1143), + [anon_sym_try] = ACTIONS(197), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(123), - [anon_sym_namespace] = ACTIONS(974), - [anon_sym_using] = ACTIONS(974), - [anon_sym_static_assert] = ACTIONS(974), - [anon_sym_concept] = ACTIONS(974), - [anon_sym_co_return] = ACTIONS(133), - [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_namespace] = ACTIONS(1143), + [anon_sym_using] = ACTIONS(1143), + [anon_sym_static_assert] = ACTIONS(1143), + [anon_sym_concept] = ACTIONS(1143), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -42515,115 +44006,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(143), }, [86] = { - [sym_declaration] = STATE(83), - [sym_type_definition] = STATE(83), - [sym__declaration_modifiers] = STATE(1894), - [sym__declaration_specifiers] = STATE(3996), - [sym_attribute_specifier] = STATE(1894), - [sym_attribute_declaration] = STATE(1147), - [sym_ms_declspec_modifier] = STATE(1894), - [sym_compound_statement] = STATE(83), - [sym_storage_class_specifier] = STATE(1894), - [sym_type_qualifier] = STATE(1894), - [sym__type_specifier] = STATE(2596), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_attributed_statement] = STATE(83), - [sym_labeled_statement] = STATE(83), - [sym_expression_statement] = STATE(83), - [sym_if_statement] = STATE(83), - [sym_switch_statement] = STATE(83), - [sym_while_statement] = STATE(83), - [sym_do_statement] = STATE(83), - [sym_for_statement] = STATE(83), - [sym_return_statement] = STATE(83), - [sym_break_statement] = STATE(83), - [sym_continue_statement] = STATE(83), - [sym_goto_statement] = STATE(83), - [sym__expression] = STATE(3645), - [sym_comma_expression] = STATE(6499), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(1894), - [sym_dependent_type] = STATE(3139), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(83), - [sym_co_return_statement] = STATE(83), - [sym_co_yield_statement] = STATE(83), - [sym_throw_statement] = STATE(83), - [sym_try_statement] = STATE(83), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4625), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(3276), - [sym_user_defined_literal] = STATE(3428), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_case_statement_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(1143), - [aux_sym_preproc_include_token1] = ACTIONS(974), - [aux_sym_preproc_def_token1] = ACTIONS(974), - [aux_sym_preproc_if_token1] = ACTIONS(974), - [aux_sym_preproc_ifdef_token1] = ACTIONS(974), - [aux_sym_preproc_ifdef_token2] = ACTIONS(974), - [sym_preproc_directive] = ACTIONS(974), - [anon_sym_LPAREN2] = ACTIONS(960), + [sym_declaration] = STATE(92), + [sym_type_definition] = STATE(92), + [sym__declaration_modifiers] = STATE(2203), + [sym__declaration_specifiers] = STATE(4242), + [sym_attribute_specifier] = STATE(2203), + [sym_attribute_declaration] = STATE(1228), + [sym_ms_declspec_modifier] = STATE(2203), + [sym_compound_statement] = STATE(92), + [sym_storage_class_specifier] = STATE(2203), + [sym_type_qualifier] = STATE(2203), + [sym__type_specifier] = STATE(3251), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_attributed_statement] = STATE(92), + [sym_labeled_statement] = STATE(92), + [sym_expression_statement] = STATE(92), + [sym_if_statement] = STATE(92), + [sym_switch_statement] = STATE(92), + [sym_while_statement] = STATE(92), + [sym_do_statement] = STATE(92), + [sym_for_statement] = STATE(92), + [sym_return_statement] = STATE(92), + [sym_break_statement] = STATE(92), + [sym_continue_statement] = STATE(92), + [sym_goto_statement] = STATE(92), + [sym__expression] = STATE(3704), + [sym_comma_expression] = STATE(6857), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(2203), + [sym_dependent_type] = STATE(3481), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(92), + [sym_co_return_statement] = STATE(92), + [sym_co_yield_statement] = STATE(92), + [sym_throw_statement] = STATE(92), + [sym_try_statement] = STATE(92), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4928), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(3729), + [sym_user_defined_literal] = STATE(3435), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_case_statement_repeat1] = STATE(92), + [sym_identifier] = ACTIONS(1147), + [aux_sym_preproc_include_token1] = ACTIONS(962), + [aux_sym_preproc_def_token1] = ACTIONS(962), + [aux_sym_preproc_if_token1] = ACTIONS(962), + [aux_sym_preproc_ifdef_token1] = ACTIONS(962), + [aux_sym_preproc_ifdef_token2] = ACTIONS(962), + [sym_preproc_directive] = ACTIONS(962), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP_AMP] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(966), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP_AMP] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), [anon_sym_SEMI] = ACTIONS(159), [anon_sym_typedef] = ACTIONS(161), [anon_sym_extern] = ACTIONS(55), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(974), - [anon_sym___cdecl] = ACTIONS(974), - [anon_sym___clrcall] = ACTIONS(974), - [anon_sym___stdcall] = ACTIONS(974), - [anon_sym___fastcall] = ACTIONS(974), - [anon_sym___thiscall] = ACTIONS(974), - [anon_sym___vectorcall] = ACTIONS(974), + [anon_sym___based] = ACTIONS(962), + [anon_sym___cdecl] = ACTIONS(962), + [anon_sym___clrcall] = ACTIONS(962), + [anon_sym___stdcall] = ACTIONS(962), + [anon_sym___fastcall] = ACTIONS(962), + [anon_sym___thiscall] = ACTIONS(962), + [anon_sym___vectorcall] = ACTIONS(962), [anon_sym_LBRACE] = ACTIONS(536), - [anon_sym_RBRACE] = ACTIONS(976), - [anon_sym_LBRACK] = ACTIONS(970), + [anon_sym_RBRACE] = ACTIONS(968), + [anon_sym_LBRACK] = ACTIONS(974), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), @@ -42646,10 +44137,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(67), [anon_sym_union] = ACTIONS(69), [anon_sym_if] = ACTIONS(171), - [anon_sym_else] = ACTIONS(974), + [anon_sym_else] = ACTIONS(962), [anon_sym_switch] = ACTIONS(173), - [anon_sym_case] = ACTIONS(974), - [anon_sym_default] = ACTIONS(974), + [anon_sym_case] = ACTIONS(962), + [anon_sym_default] = ACTIONS(962), [anon_sym_while] = ACTIONS(179), [anon_sym_do] = ACTIONS(181), [anon_sym_for] = ACTIONS(183), @@ -42657,6 +44148,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(187), [anon_sym_continue] = ACTIONS(189), [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -42678,17 +44171,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(105), [anon_sym_decltype] = ACTIONS(107), [anon_sym_virtual] = ACTIONS(109), - [anon_sym_explicit] = ACTIONS(974), + [anon_sym_explicit] = ACTIONS(962), [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(972), - [anon_sym_operator] = ACTIONS(974), + [anon_sym_template] = ACTIONS(976), + [anon_sym_operator] = ACTIONS(962), [anon_sym_try] = ACTIONS(197), [anon_sym_delete] = ACTIONS(121), [anon_sym_throw] = ACTIONS(199), - [anon_sym_namespace] = ACTIONS(974), - [anon_sym_using] = ACTIONS(974), - [anon_sym_static_assert] = ACTIONS(974), - [anon_sym_concept] = ACTIONS(974), + [anon_sym_namespace] = ACTIONS(962), + [anon_sym_using] = ACTIONS(962), + [anon_sym_static_assert] = ACTIONS(962), + [anon_sym_concept] = ACTIONS(962), [anon_sym_co_return] = ACTIONS(209), [anon_sym_co_yield] = ACTIONS(211), [anon_sym_co_await] = ACTIONS(137), @@ -42699,115 +44192,301 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(143), }, [87] = { - [sym_declaration] = STATE(81), - [sym_type_definition] = STATE(81), - [sym__declaration_modifiers] = STATE(1894), - [sym__declaration_specifiers] = STATE(3986), - [sym_attribute_specifier] = STATE(1894), - [sym_attribute_declaration] = STATE(1147), - [sym_ms_declspec_modifier] = STATE(1894), - [sym_compound_statement] = STATE(81), - [sym_storage_class_specifier] = STATE(1894), - [sym_type_qualifier] = STATE(1894), - [sym__type_specifier] = STATE(2596), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_attributed_statement] = STATE(81), - [sym_labeled_statement] = STATE(81), - [sym_expression_statement] = STATE(81), - [sym_if_statement] = STATE(81), - [sym_switch_statement] = STATE(81), - [sym_while_statement] = STATE(81), - [sym_do_statement] = STATE(81), - [sym_for_statement] = STATE(81), - [sym_return_statement] = STATE(81), - [sym_break_statement] = STATE(81), - [sym_continue_statement] = STATE(81), - [sym_goto_statement] = STATE(81), - [sym__expression] = STATE(3612), - [sym_comma_expression] = STATE(6539), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(1894), - [sym_dependent_type] = STATE(3139), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(81), - [sym_co_return_statement] = STATE(81), - [sym_co_yield_statement] = STATE(81), - [sym_throw_statement] = STATE(81), - [sym_try_statement] = STATE(81), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4625), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(3276), - [sym_user_defined_literal] = STATE(3428), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(303), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_case_statement_repeat1] = STATE(81), - [sym_identifier] = ACTIONS(1145), - [aux_sym_preproc_include_token1] = ACTIONS(1139), - [aux_sym_preproc_def_token1] = ACTIONS(1139), - [aux_sym_preproc_if_token1] = ACTIONS(1139), - [aux_sym_preproc_if_token2] = ACTIONS(1139), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1139), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1139), - [sym_preproc_directive] = ACTIONS(1139), - [anon_sym_LPAREN2] = ACTIONS(960), + [sym_declaration] = STATE(87), + [sym_type_definition] = STATE(87), + [sym__declaration_modifiers] = STATE(2203), + [sym__declaration_specifiers] = STATE(4255), + [sym_attribute_specifier] = STATE(2203), + [sym_attribute_declaration] = STATE(1228), + [sym_ms_declspec_modifier] = STATE(2203), + [sym_compound_statement] = STATE(87), + [sym_storage_class_specifier] = STATE(2203), + [sym_type_qualifier] = STATE(2203), + [sym__type_specifier] = STATE(3251), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_attributed_statement] = STATE(87), + [sym_labeled_statement] = STATE(87), + [sym_expression_statement] = STATE(87), + [sym_if_statement] = STATE(87), + [sym_switch_statement] = STATE(87), + [sym_while_statement] = STATE(87), + [sym_do_statement] = STATE(87), + [sym_for_statement] = STATE(87), + [sym_return_statement] = STATE(87), + [sym_break_statement] = STATE(87), + [sym_continue_statement] = STATE(87), + [sym_goto_statement] = STATE(87), + [sym__expression] = STATE(3763), + [sym_comma_expression] = STATE(6972), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(2203), + [sym_dependent_type] = STATE(3481), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(87), + [sym_co_return_statement] = STATE(87), + [sym_co_yield_statement] = STATE(87), + [sym_throw_statement] = STATE(87), + [sym_try_statement] = STATE(87), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4928), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(3729), + [sym_user_defined_literal] = STATE(3435), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(302), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_case_statement_repeat1] = STATE(87), + [sym_identifier] = ACTIONS(1153), + [aux_sym_preproc_include_token1] = ACTIONS(989), + [aux_sym_preproc_def_token1] = ACTIONS(989), + [aux_sym_preproc_if_token1] = ACTIONS(989), + [aux_sym_preproc_if_token2] = ACTIONS(989), + [aux_sym_preproc_ifdef_token1] = ACTIONS(989), + [aux_sym_preproc_ifdef_token2] = ACTIONS(989), + [sym_preproc_directive] = ACTIONS(989), + [anon_sym_LPAREN2] = ACTIONS(991), + [anon_sym_BANG] = ACTIONS(994), + [anon_sym_TILDE] = ACTIONS(994), + [anon_sym_DASH] = ACTIONS(997), + [anon_sym_PLUS] = ACTIONS(997), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_AMP_AMP] = ACTIONS(1003), + [anon_sym_AMP] = ACTIONS(1005), + [anon_sym_SEMI] = ACTIONS(1156), + [anon_sym_typedef] = ACTIONS(1159), + [anon_sym_extern] = ACTIONS(1014), + [anon_sym___attribute__] = ACTIONS(1017), + [anon_sym_COLON_COLON] = ACTIONS(1020), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1023), + [anon_sym___declspec] = ACTIONS(1026), + [anon_sym___based] = ACTIONS(989), + [anon_sym___cdecl] = ACTIONS(989), + [anon_sym___clrcall] = ACTIONS(989), + [anon_sym___stdcall] = ACTIONS(989), + [anon_sym___fastcall] = ACTIONS(989), + [anon_sym___thiscall] = ACTIONS(989), + [anon_sym___vectorcall] = ACTIONS(989), + [anon_sym_LBRACE] = ACTIONS(1162), + [anon_sym_LBRACK] = ACTIONS(1032), + [anon_sym_static] = ACTIONS(1014), + [anon_sym_register] = ACTIONS(1014), + [anon_sym_inline] = ACTIONS(1014), + [anon_sym_thread_local] = ACTIONS(1014), + [anon_sym_const] = ACTIONS(1035), + [anon_sym_volatile] = ACTIONS(1035), + [anon_sym_restrict] = ACTIONS(1035), + [anon_sym__Atomic] = ACTIONS(1035), + [anon_sym_mutable] = ACTIONS(1035), + [anon_sym_constexpr] = ACTIONS(1035), + [anon_sym_constinit] = ACTIONS(1035), + [anon_sym_consteval] = ACTIONS(1035), + [anon_sym_signed] = ACTIONS(1038), + [anon_sym_unsigned] = ACTIONS(1038), + [anon_sym_long] = ACTIONS(1038), + [anon_sym_short] = ACTIONS(1038), + [sym_primitive_type] = ACTIONS(1041), + [anon_sym_enum] = ACTIONS(1044), + [anon_sym_class] = ACTIONS(1047), + [anon_sym_struct] = ACTIONS(1050), + [anon_sym_union] = ACTIONS(1053), + [anon_sym_if] = ACTIONS(1165), + [anon_sym_else] = ACTIONS(989), + [anon_sym_switch] = ACTIONS(1168), + [anon_sym_case] = ACTIONS(989), + [anon_sym_default] = ACTIONS(989), + [anon_sym_while] = ACTIONS(1171), + [anon_sym_do] = ACTIONS(1174), + [anon_sym_for] = ACTIONS(1177), + [anon_sym_return] = ACTIONS(1180), + [anon_sym_break] = ACTIONS(1183), + [anon_sym_continue] = ACTIONS(1186), + [anon_sym_goto] = ACTIONS(1189), + [anon_sym_not] = ACTIONS(997), + [anon_sym_compl] = ACTIONS(997), + [anon_sym_DASH_DASH] = ACTIONS(1083), + [anon_sym_PLUS_PLUS] = ACTIONS(1083), + [anon_sym_sizeof] = ACTIONS(1086), + [sym_number_literal] = ACTIONS(1089), + [anon_sym_L_SQUOTE] = ACTIONS(1092), + [anon_sym_u_SQUOTE] = ACTIONS(1092), + [anon_sym_U_SQUOTE] = ACTIONS(1092), + [anon_sym_u8_SQUOTE] = ACTIONS(1092), + [anon_sym_SQUOTE] = ACTIONS(1092), + [anon_sym_L_DQUOTE] = ACTIONS(1095), + [anon_sym_u_DQUOTE] = ACTIONS(1095), + [anon_sym_U_DQUOTE] = ACTIONS(1095), + [anon_sym_u8_DQUOTE] = ACTIONS(1095), + [anon_sym_DQUOTE] = ACTIONS(1095), + [sym_true] = ACTIONS(1098), + [sym_false] = ACTIONS(1098), + [sym_null] = ACTIONS(1098), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1101), + [anon_sym_decltype] = ACTIONS(1104), + [anon_sym_virtual] = ACTIONS(1107), + [anon_sym_explicit] = ACTIONS(989), + [anon_sym_typename] = ACTIONS(1110), + [anon_sym_template] = ACTIONS(1113), + [anon_sym_operator] = ACTIONS(989), + [anon_sym_try] = ACTIONS(1192), + [anon_sym_delete] = ACTIONS(1119), + [anon_sym_throw] = ACTIONS(1195), + [anon_sym_namespace] = ACTIONS(989), + [anon_sym_using] = ACTIONS(989), + [anon_sym_static_assert] = ACTIONS(989), + [anon_sym_concept] = ACTIONS(989), + [anon_sym_co_return] = ACTIONS(1198), + [anon_sym_co_yield] = ACTIONS(1201), + [anon_sym_co_await] = ACTIONS(1131), + [anon_sym_new] = ACTIONS(1134), + [anon_sym_requires] = ACTIONS(1137), + [sym_this] = ACTIONS(1098), + [sym_nullptr] = ACTIONS(1098), + [sym_raw_string_literal] = ACTIONS(1140), + }, + [88] = { + [sym_declaration] = STATE(87), + [sym_type_definition] = STATE(87), + [sym__declaration_modifiers] = STATE(2203), + [sym__declaration_specifiers] = STATE(4255), + [sym_attribute_specifier] = STATE(2203), + [sym_attribute_declaration] = STATE(1228), + [sym_ms_declspec_modifier] = STATE(2203), + [sym_compound_statement] = STATE(87), + [sym_storage_class_specifier] = STATE(2203), + [sym_type_qualifier] = STATE(2203), + [sym__type_specifier] = STATE(3251), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_attributed_statement] = STATE(87), + [sym_labeled_statement] = STATE(87), + [sym_expression_statement] = STATE(87), + [sym_if_statement] = STATE(87), + [sym_switch_statement] = STATE(87), + [sym_while_statement] = STATE(87), + [sym_do_statement] = STATE(87), + [sym_for_statement] = STATE(87), + [sym_return_statement] = STATE(87), + [sym_break_statement] = STATE(87), + [sym_continue_statement] = STATE(87), + [sym_goto_statement] = STATE(87), + [sym__expression] = STATE(3763), + [sym_comma_expression] = STATE(6972), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(2203), + [sym_dependent_type] = STATE(3481), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(87), + [sym_co_return_statement] = STATE(87), + [sym_co_yield_statement] = STATE(87), + [sym_throw_statement] = STATE(87), + [sym_try_statement] = STATE(87), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4928), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(3729), + [sym_user_defined_literal] = STATE(3435), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(302), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_case_statement_repeat1] = STATE(87), + [sym_identifier] = ACTIONS(1151), + [aux_sym_preproc_include_token1] = ACTIONS(962), + [aux_sym_preproc_def_token1] = ACTIONS(962), + [aux_sym_preproc_if_token1] = ACTIONS(962), + [aux_sym_preproc_if_token2] = ACTIONS(962), + [aux_sym_preproc_ifdef_token1] = ACTIONS(962), + [aux_sym_preproc_ifdef_token2] = ACTIONS(962), + [sym_preproc_directive] = ACTIONS(962), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP_AMP] = ACTIONS(1141), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(594), - [anon_sym_typedef] = ACTIONS(596), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP_AMP] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_SEMI] = ACTIONS(560), + [anon_sym_typedef] = ACTIONS(562), [anon_sym_extern] = ACTIONS(55), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(1139), - [anon_sym___cdecl] = ACTIONS(1139), - [anon_sym___clrcall] = ACTIONS(1139), - [anon_sym___stdcall] = ACTIONS(1139), - [anon_sym___fastcall] = ACTIONS(1139), - [anon_sym___thiscall] = ACTIONS(1139), - [anon_sym___vectorcall] = ACTIONS(1139), - [anon_sym_LBRACE] = ACTIONS(600), - [anon_sym_LBRACK] = ACTIONS(970), + [anon_sym___based] = ACTIONS(962), + [anon_sym___cdecl] = ACTIONS(962), + [anon_sym___clrcall] = ACTIONS(962), + [anon_sym___stdcall] = ACTIONS(962), + [anon_sym___fastcall] = ACTIONS(962), + [anon_sym___thiscall] = ACTIONS(962), + [anon_sym___vectorcall] = ACTIONS(962), + [anon_sym_LBRACE] = ACTIONS(566), + [anon_sym_LBRACK] = ACTIONS(974), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), @@ -42829,18 +44508,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(65), [anon_sym_struct] = ACTIONS(67), [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(602), - [anon_sym_else] = ACTIONS(1139), - [anon_sym_switch] = ACTIONS(604), - [anon_sym_case] = ACTIONS(1139), - [anon_sym_default] = ACTIONS(1139), - [anon_sym_while] = ACTIONS(610), - [anon_sym_do] = ACTIONS(612), - [anon_sym_for] = ACTIONS(614), - [anon_sym_return] = ACTIONS(616), - [anon_sym_break] = ACTIONS(618), - [anon_sym_continue] = ACTIONS(620), - [anon_sym_goto] = ACTIONS(622), + [anon_sym_if] = ACTIONS(568), + [anon_sym_else] = ACTIONS(962), + [anon_sym_switch] = ACTIONS(570), + [anon_sym_case] = ACTIONS(962), + [anon_sym_default] = ACTIONS(962), + [anon_sym_while] = ACTIONS(576), + [anon_sym_do] = ACTIONS(578), + [anon_sym_for] = ACTIONS(580), + [anon_sym_return] = ACTIONS(582), + [anon_sym_break] = ACTIONS(584), + [anon_sym_continue] = ACTIONS(586), + [anon_sym_goto] = ACTIONS(588), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -42862,19 +44543,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(105), [anon_sym_decltype] = ACTIONS(107), [anon_sym_virtual] = ACTIONS(109), - [anon_sym_explicit] = ACTIONS(1139), + [anon_sym_explicit] = ACTIONS(962), [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(972), - [anon_sym_operator] = ACTIONS(1139), - [anon_sym_try] = ACTIONS(626), + [anon_sym_template] = ACTIONS(976), + [anon_sym_operator] = ACTIONS(962), + [anon_sym_try] = ACTIONS(592), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(628), - [anon_sym_namespace] = ACTIONS(1139), - [anon_sym_using] = ACTIONS(1139), - [anon_sym_static_assert] = ACTIONS(1139), - [anon_sym_concept] = ACTIONS(1139), - [anon_sym_co_return] = ACTIONS(638), - [anon_sym_co_yield] = ACTIONS(640), + [anon_sym_throw] = ACTIONS(594), + [anon_sym_namespace] = ACTIONS(962), + [anon_sym_using] = ACTIONS(962), + [anon_sym_static_assert] = ACTIONS(962), + [anon_sym_concept] = ACTIONS(962), + [anon_sym_co_return] = ACTIONS(604), + [anon_sym_co_yield] = ACTIONS(606), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -42882,116 +44563,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [88] = { - [sym_declaration] = STATE(84), - [sym_type_definition] = STATE(84), - [sym__declaration_modifiers] = STATE(1894), - [sym__declaration_specifiers] = STATE(3974), - [sym_attribute_specifier] = STATE(1894), - [sym_attribute_declaration] = STATE(1147), - [sym_ms_declspec_modifier] = STATE(1894), - [sym_compound_statement] = STATE(84), - [sym_storage_class_specifier] = STATE(1894), - [sym_type_qualifier] = STATE(1894), - [sym__type_specifier] = STATE(2596), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_attributed_statement] = STATE(84), - [sym_labeled_statement] = STATE(84), - [sym_expression_statement] = STATE(84), - [sym_if_statement] = STATE(84), - [sym_switch_statement] = STATE(84), - [sym_while_statement] = STATE(84), - [sym_do_statement] = STATE(84), - [sym_for_statement] = STATE(84), - [sym_return_statement] = STATE(84), - [sym_break_statement] = STATE(84), - [sym_continue_statement] = STATE(84), - [sym_goto_statement] = STATE(84), - [sym__expression] = STATE(3605), - [sym_comma_expression] = STATE(6558), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(1894), - [sym_dependent_type] = STATE(3139), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(84), - [sym_co_return_statement] = STATE(84), - [sym_co_yield_statement] = STATE(84), - [sym_throw_statement] = STATE(84), - [sym_try_statement] = STATE(84), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4625), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(3276), - [sym_user_defined_literal] = STATE(3428), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(282), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_case_statement_repeat1] = STATE(84), - [ts_builtin_sym_end] = ACTIONS(964), - [sym_identifier] = ACTIONS(1147), - [aux_sym_preproc_include_token1] = ACTIONS(958), - [aux_sym_preproc_def_token1] = ACTIONS(958), - [aux_sym_preproc_if_token1] = ACTIONS(958), - [aux_sym_preproc_ifdef_token1] = ACTIONS(958), - [aux_sym_preproc_ifdef_token2] = ACTIONS(958), - [sym_preproc_directive] = ACTIONS(958), - [anon_sym_LPAREN2] = ACTIONS(960), + [89] = { + [sym_declaration] = STATE(93), + [sym_type_definition] = STATE(93), + [sym__declaration_modifiers] = STATE(2203), + [sym__declaration_specifiers] = STATE(4253), + [sym_attribute_specifier] = STATE(2203), + [sym_attribute_declaration] = STATE(1228), + [sym_ms_declspec_modifier] = STATE(2203), + [sym_compound_statement] = STATE(93), + [sym_storage_class_specifier] = STATE(2203), + [sym_type_qualifier] = STATE(2203), + [sym__type_specifier] = STATE(3251), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_attributed_statement] = STATE(93), + [sym_labeled_statement] = STATE(93), + [sym_expression_statement] = STATE(93), + [sym_if_statement] = STATE(93), + [sym_switch_statement] = STATE(93), + [sym_while_statement] = STATE(93), + [sym_do_statement] = STATE(93), + [sym_for_statement] = STATE(93), + [sym_return_statement] = STATE(93), + [sym_break_statement] = STATE(93), + [sym_continue_statement] = STATE(93), + [sym_goto_statement] = STATE(93), + [sym__expression] = STATE(3758), + [sym_comma_expression] = STATE(7239), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(2203), + [sym_dependent_type] = STATE(3481), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(93), + [sym_co_return_statement] = STATE(93), + [sym_co_yield_statement] = STATE(93), + [sym_throw_statement] = STATE(93), + [sym_try_statement] = STATE(93), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4928), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(3729), + [sym_user_defined_literal] = STATE(3435), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(286), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_case_statement_repeat1] = STATE(93), + [ts_builtin_sym_end] = ACTIONS(968), + [sym_identifier] = ACTIONS(1149), + [aux_sym_preproc_include_token1] = ACTIONS(962), + [aux_sym_preproc_def_token1] = ACTIONS(962), + [aux_sym_preproc_if_token1] = ACTIONS(962), + [aux_sym_preproc_ifdef_token1] = ACTIONS(962), + [aux_sym_preproc_ifdef_token2] = ACTIONS(962), + [sym_preproc_directive] = ACTIONS(962), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP_AMP] = ACTIONS(964), - [anon_sym_AMP] = ACTIONS(966), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP_AMP] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(970), [anon_sym_SEMI] = ACTIONS(33), [anon_sym_typedef] = ACTIONS(35), [anon_sym_extern] = ACTIONS(55), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(958), - [anon_sym___cdecl] = ACTIONS(958), - [anon_sym___clrcall] = ACTIONS(958), - [anon_sym___stdcall] = ACTIONS(958), - [anon_sym___fastcall] = ACTIONS(958), - [anon_sym___thiscall] = ACTIONS(958), - [anon_sym___vectorcall] = ACTIONS(958), + [anon_sym___based] = ACTIONS(962), + [anon_sym___cdecl] = ACTIONS(962), + [anon_sym___clrcall] = ACTIONS(962), + [anon_sym___stdcall] = ACTIONS(962), + [anon_sym___fastcall] = ACTIONS(962), + [anon_sym___thiscall] = ACTIONS(962), + [anon_sym___vectorcall] = ACTIONS(962), [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(974), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), @@ -43014,10 +44695,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(67), [anon_sym_union] = ACTIONS(69), [anon_sym_if] = ACTIONS(71), - [anon_sym_else] = ACTIONS(958), + [anon_sym_else] = ACTIONS(962), [anon_sym_switch] = ACTIONS(73), - [anon_sym_case] = ACTIONS(958), - [anon_sym_default] = ACTIONS(958), + [anon_sym_case] = ACTIONS(962), + [anon_sym_default] = ACTIONS(962), [anon_sym_while] = ACTIONS(79), [anon_sym_do] = ACTIONS(81), [anon_sym_for] = ACTIONS(83), @@ -43025,6 +44706,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(87), [anon_sym_continue] = ACTIONS(89), [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -43046,17 +44729,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(105), [anon_sym_decltype] = ACTIONS(107), [anon_sym_virtual] = ACTIONS(109), - [anon_sym_explicit] = ACTIONS(958), + [anon_sym_explicit] = ACTIONS(962), [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(972), - [anon_sym_operator] = ACTIONS(958), + [anon_sym_template] = ACTIONS(976), + [anon_sym_operator] = ACTIONS(962), [anon_sym_try] = ACTIONS(119), [anon_sym_delete] = ACTIONS(121), [anon_sym_throw] = ACTIONS(123), - [anon_sym_namespace] = ACTIONS(958), - [anon_sym_using] = ACTIONS(958), - [anon_sym_static_assert] = ACTIONS(958), - [anon_sym_concept] = ACTIONS(958), + [anon_sym_namespace] = ACTIONS(962), + [anon_sym_using] = ACTIONS(962), + [anon_sym_static_assert] = ACTIONS(962), + [anon_sym_concept] = ACTIONS(962), [anon_sym_co_return] = ACTIONS(133), [anon_sym_co_yield] = ACTIONS(135), [anon_sym_co_await] = ACTIONS(137), @@ -43066,22 +44749,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [89] = { + [90] = { [sym_declaration] = STATE(86), [sym_type_definition] = STATE(86), - [sym__declaration_modifiers] = STATE(1894), - [sym__declaration_specifiers] = STATE(3996), - [sym_attribute_specifier] = STATE(1894), - [sym_attribute_declaration] = STATE(1147), - [sym_ms_declspec_modifier] = STATE(1894), + [sym__declaration_modifiers] = STATE(2203), + [sym__declaration_specifiers] = STATE(4242), + [sym_attribute_specifier] = STATE(2203), + [sym_attribute_declaration] = STATE(1228), + [sym_ms_declspec_modifier] = STATE(2203), [sym_compound_statement] = STATE(86), - [sym_storage_class_specifier] = STATE(1894), - [sym_type_qualifier] = STATE(1894), - [sym__type_specifier] = STATE(2596), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), + [sym_storage_class_specifier] = STATE(2203), + [sym_type_qualifier] = STATE(2203), + [sym__type_specifier] = STATE(3251), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), [sym_attributed_statement] = STATE(86), [sym_labeled_statement] = STATE(86), [sym_expression_statement] = STATE(86), @@ -43094,77 +44777,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(86), [sym_continue_statement] = STATE(86), [sym_goto_statement] = STATE(86), - [sym__expression] = STATE(3645), - [sym_comma_expression] = STATE(6499), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(1894), - [sym_dependent_type] = STATE(3139), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3428), + [sym__expression] = STATE(3704), + [sym_comma_expression] = STATE(6857), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(2203), + [sym_dependent_type] = STATE(3481), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3435), [sym_for_range_loop] = STATE(86), [sym_co_return_statement] = STATE(86), [sym_co_yield_statement] = STATE(86), [sym_throw_statement] = STATE(86), [sym_try_statement] = STATE(86), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4625), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(3276), - [sym_user_defined_literal] = STATE(3428), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4928), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(3729), + [sym_user_defined_literal] = STATE(3435), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), [aux_sym_case_statement_repeat1] = STATE(86), - [sym_identifier] = ACTIONS(1143), + [sym_identifier] = ACTIONS(1147), [aux_sym_preproc_include_token1] = ACTIONS(978), [aux_sym_preproc_def_token1] = ACTIONS(978), [aux_sym_preproc_if_token1] = ACTIONS(978), [aux_sym_preproc_ifdef_token1] = ACTIONS(978), [aux_sym_preproc_ifdef_token2] = ACTIONS(978), [sym_preproc_directive] = ACTIONS(978), - [anon_sym_LPAREN2] = ACTIONS(960), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), + [anon_sym_STAR] = ACTIONS(966), [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_AMP] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(970), [anon_sym_SEMI] = ACTIONS(159), [anon_sym_typedef] = ACTIONS(161), [anon_sym_extern] = ACTIONS(55), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), [anon_sym___declspec] = ACTIONS(45), [anon_sym___based] = ACTIONS(978), [anon_sym___cdecl] = ACTIONS(978), @@ -43175,7 +44858,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___vectorcall] = ACTIONS(978), [anon_sym_LBRACE] = ACTIONS(536), [anon_sym_RBRACE] = ACTIONS(980), - [anon_sym_LBRACK] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(974), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), @@ -43209,6 +44892,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(187), [anon_sym_continue] = ACTIONS(189), [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -43232,7 +44917,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_virtual] = ACTIONS(109), [anon_sym_explicit] = ACTIONS(978), [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(972), + [anon_sym_template] = ACTIONS(976), [anon_sym_operator] = ACTIONS(978), [anon_sym_try] = ACTIONS(197), [anon_sym_delete] = ACTIONS(121), @@ -43250,22 +44935,208 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [90] = { - [sym_declaration] = STATE(92), - [sym_type_definition] = STATE(92), - [sym__declaration_modifiers] = STATE(1894), - [sym__declaration_specifiers] = STATE(3986), - [sym_attribute_specifier] = STATE(1894), - [sym_attribute_declaration] = STATE(1147), - [sym_ms_declspec_modifier] = STATE(1894), - [sym_compound_statement] = STATE(92), - [sym_storage_class_specifier] = STATE(1894), - [sym_type_qualifier] = STATE(1894), - [sym__type_specifier] = STATE(2596), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), + [91] = { + [sym_declaration] = STATE(95), + [sym_type_definition] = STATE(95), + [sym__declaration_modifiers] = STATE(2203), + [sym__declaration_specifiers] = STATE(4253), + [sym_attribute_specifier] = STATE(2203), + [sym_attribute_declaration] = STATE(1228), + [sym_ms_declspec_modifier] = STATE(2203), + [sym_compound_statement] = STATE(95), + [sym_storage_class_specifier] = STATE(2203), + [sym_type_qualifier] = STATE(2203), + [sym__type_specifier] = STATE(3251), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_attributed_statement] = STATE(95), + [sym_labeled_statement] = STATE(95), + [sym_expression_statement] = STATE(95), + [sym_if_statement] = STATE(95), + [sym_switch_statement] = STATE(95), + [sym_while_statement] = STATE(95), + [sym_do_statement] = STATE(95), + [sym_for_statement] = STATE(95), + [sym_return_statement] = STATE(95), + [sym_break_statement] = STATE(95), + [sym_continue_statement] = STATE(95), + [sym_goto_statement] = STATE(95), + [sym__expression] = STATE(3758), + [sym_comma_expression] = STATE(7239), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(2203), + [sym_dependent_type] = STATE(3481), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(95), + [sym_co_return_statement] = STATE(95), + [sym_co_yield_statement] = STATE(95), + [sym_throw_statement] = STATE(95), + [sym_try_statement] = STATE(95), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4928), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(3729), + [sym_user_defined_literal] = STATE(3435), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(286), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_case_statement_repeat1] = STATE(95), + [ts_builtin_sym_end] = ACTIONS(1145), + [sym_identifier] = ACTIONS(1149), + [aux_sym_preproc_include_token1] = ACTIONS(1143), + [aux_sym_preproc_def_token1] = ACTIONS(1143), + [aux_sym_preproc_if_token1] = ACTIONS(1143), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1143), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1143), + [sym_preproc_directive] = ACTIONS(1143), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP_AMP] = ACTIONS(1145), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_typedef] = ACTIONS(35), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(1143), + [anon_sym___cdecl] = ACTIONS(1143), + [anon_sym___clrcall] = ACTIONS(1143), + [anon_sym___stdcall] = ACTIONS(1143), + [anon_sym___fastcall] = ACTIONS(1143), + [anon_sym___thiscall] = ACTIONS(1143), + [anon_sym___vectorcall] = ACTIONS(1143), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_if] = ACTIONS(71), + [anon_sym_else] = ACTIONS(1143), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(1143), + [anon_sym_default] = ACTIONS(1143), + [anon_sym_while] = ACTIONS(79), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(1143), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(976), + [anon_sym_operator] = ACTIONS(1143), + [anon_sym_try] = ACTIONS(119), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_namespace] = ACTIONS(1143), + [anon_sym_using] = ACTIONS(1143), + [anon_sym_static_assert] = ACTIONS(1143), + [anon_sym_concept] = ACTIONS(1143), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [92] = { + [sym_declaration] = STATE(92), + [sym_type_definition] = STATE(92), + [sym__declaration_modifiers] = STATE(2203), + [sym__declaration_specifiers] = STATE(4242), + [sym_attribute_specifier] = STATE(2203), + [sym_attribute_declaration] = STATE(1228), + [sym_ms_declspec_modifier] = STATE(2203), + [sym_compound_statement] = STATE(92), + [sym_storage_class_specifier] = STATE(2203), + [sym_type_qualifier] = STATE(2203), + [sym__type_specifier] = STATE(3251), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), [sym_attributed_statement] = STATE(92), [sym_labeled_statement] = STATE(92), [sym_expression_statement] = STATE(92), @@ -43278,57 +45149,429 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(92), [sym_continue_statement] = STATE(92), [sym_goto_statement] = STATE(92), - [sym__expression] = STATE(3612), - [sym_comma_expression] = STATE(6539), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(1894), - [sym_dependent_type] = STATE(3139), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3428), + [sym__expression] = STATE(3704), + [sym_comma_expression] = STATE(6857), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(2203), + [sym_dependent_type] = STATE(3481), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3435), [sym_for_range_loop] = STATE(92), [sym_co_return_statement] = STATE(92), [sym_co_yield_statement] = STATE(92), [sym_throw_statement] = STATE(92), [sym_try_statement] = STATE(92), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4625), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(3276), - [sym_user_defined_literal] = STATE(3428), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(303), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4928), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(3729), + [sym_user_defined_literal] = STATE(3435), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), [aux_sym_case_statement_repeat1] = STATE(92), - [sym_identifier] = ACTIONS(1145), + [sym_identifier] = ACTIONS(1204), + [aux_sym_preproc_include_token1] = ACTIONS(989), + [aux_sym_preproc_def_token1] = ACTIONS(989), + [aux_sym_preproc_if_token1] = ACTIONS(989), + [aux_sym_preproc_ifdef_token1] = ACTIONS(989), + [aux_sym_preproc_ifdef_token2] = ACTIONS(989), + [sym_preproc_directive] = ACTIONS(989), + [anon_sym_LPAREN2] = ACTIONS(991), + [anon_sym_BANG] = ACTIONS(994), + [anon_sym_TILDE] = ACTIONS(994), + [anon_sym_DASH] = ACTIONS(997), + [anon_sym_PLUS] = ACTIONS(997), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_AMP_AMP] = ACTIONS(1003), + [anon_sym_AMP] = ACTIONS(1005), + [anon_sym_SEMI] = ACTIONS(1207), + [anon_sym_typedef] = ACTIONS(1210), + [anon_sym_extern] = ACTIONS(1014), + [anon_sym___attribute__] = ACTIONS(1017), + [anon_sym_COLON_COLON] = ACTIONS(1020), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1023), + [anon_sym___declspec] = ACTIONS(1026), + [anon_sym___based] = ACTIONS(989), + [anon_sym___cdecl] = ACTIONS(989), + [anon_sym___clrcall] = ACTIONS(989), + [anon_sym___stdcall] = ACTIONS(989), + [anon_sym___fastcall] = ACTIONS(989), + [anon_sym___thiscall] = ACTIONS(989), + [anon_sym___vectorcall] = ACTIONS(989), + [anon_sym_LBRACE] = ACTIONS(1213), + [anon_sym_RBRACE] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(1032), + [anon_sym_static] = ACTIONS(1014), + [anon_sym_register] = ACTIONS(1014), + [anon_sym_inline] = ACTIONS(1014), + [anon_sym_thread_local] = ACTIONS(1014), + [anon_sym_const] = ACTIONS(1035), + [anon_sym_volatile] = ACTIONS(1035), + [anon_sym_restrict] = ACTIONS(1035), + [anon_sym__Atomic] = ACTIONS(1035), + [anon_sym_mutable] = ACTIONS(1035), + [anon_sym_constexpr] = ACTIONS(1035), + [anon_sym_constinit] = ACTIONS(1035), + [anon_sym_consteval] = ACTIONS(1035), + [anon_sym_signed] = ACTIONS(1038), + [anon_sym_unsigned] = ACTIONS(1038), + [anon_sym_long] = ACTIONS(1038), + [anon_sym_short] = ACTIONS(1038), + [sym_primitive_type] = ACTIONS(1041), + [anon_sym_enum] = ACTIONS(1044), + [anon_sym_class] = ACTIONS(1047), + [anon_sym_struct] = ACTIONS(1050), + [anon_sym_union] = ACTIONS(1053), + [anon_sym_if] = ACTIONS(1216), + [anon_sym_else] = ACTIONS(989), + [anon_sym_switch] = ACTIONS(1219), + [anon_sym_case] = ACTIONS(989), + [anon_sym_default] = ACTIONS(989), + [anon_sym_while] = ACTIONS(1222), + [anon_sym_do] = ACTIONS(1225), + [anon_sym_for] = ACTIONS(1228), + [anon_sym_return] = ACTIONS(1231), + [anon_sym_break] = ACTIONS(1234), + [anon_sym_continue] = ACTIONS(1237), + [anon_sym_goto] = ACTIONS(1240), + [anon_sym_not] = ACTIONS(997), + [anon_sym_compl] = ACTIONS(997), + [anon_sym_DASH_DASH] = ACTIONS(1083), + [anon_sym_PLUS_PLUS] = ACTIONS(1083), + [anon_sym_sizeof] = ACTIONS(1086), + [sym_number_literal] = ACTIONS(1089), + [anon_sym_L_SQUOTE] = ACTIONS(1092), + [anon_sym_u_SQUOTE] = ACTIONS(1092), + [anon_sym_U_SQUOTE] = ACTIONS(1092), + [anon_sym_u8_SQUOTE] = ACTIONS(1092), + [anon_sym_SQUOTE] = ACTIONS(1092), + [anon_sym_L_DQUOTE] = ACTIONS(1095), + [anon_sym_u_DQUOTE] = ACTIONS(1095), + [anon_sym_U_DQUOTE] = ACTIONS(1095), + [anon_sym_u8_DQUOTE] = ACTIONS(1095), + [anon_sym_DQUOTE] = ACTIONS(1095), + [sym_true] = ACTIONS(1098), + [sym_false] = ACTIONS(1098), + [sym_null] = ACTIONS(1098), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1101), + [anon_sym_decltype] = ACTIONS(1104), + [anon_sym_virtual] = ACTIONS(1107), + [anon_sym_explicit] = ACTIONS(989), + [anon_sym_typename] = ACTIONS(1110), + [anon_sym_template] = ACTIONS(1113), + [anon_sym_operator] = ACTIONS(989), + [anon_sym_try] = ACTIONS(1243), + [anon_sym_delete] = ACTIONS(1119), + [anon_sym_throw] = ACTIONS(1246), + [anon_sym_namespace] = ACTIONS(989), + [anon_sym_using] = ACTIONS(989), + [anon_sym_static_assert] = ACTIONS(989), + [anon_sym_concept] = ACTIONS(989), + [anon_sym_co_return] = ACTIONS(1249), + [anon_sym_co_yield] = ACTIONS(1252), + [anon_sym_co_await] = ACTIONS(1131), + [anon_sym_new] = ACTIONS(1134), + [anon_sym_requires] = ACTIONS(1137), + [sym_this] = ACTIONS(1098), + [sym_nullptr] = ACTIONS(1098), + [sym_raw_string_literal] = ACTIONS(1140), + }, + [93] = { + [sym_declaration] = STATE(93), + [sym_type_definition] = STATE(93), + [sym__declaration_modifiers] = STATE(2203), + [sym__declaration_specifiers] = STATE(4253), + [sym_attribute_specifier] = STATE(2203), + [sym_attribute_declaration] = STATE(1228), + [sym_ms_declspec_modifier] = STATE(2203), + [sym_compound_statement] = STATE(93), + [sym_storage_class_specifier] = STATE(2203), + [sym_type_qualifier] = STATE(2203), + [sym__type_specifier] = STATE(3251), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_attributed_statement] = STATE(93), + [sym_labeled_statement] = STATE(93), + [sym_expression_statement] = STATE(93), + [sym_if_statement] = STATE(93), + [sym_switch_statement] = STATE(93), + [sym_while_statement] = STATE(93), + [sym_do_statement] = STATE(93), + [sym_for_statement] = STATE(93), + [sym_return_statement] = STATE(93), + [sym_break_statement] = STATE(93), + [sym_continue_statement] = STATE(93), + [sym_goto_statement] = STATE(93), + [sym__expression] = STATE(3758), + [sym_comma_expression] = STATE(7239), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(2203), + [sym_dependent_type] = STATE(3481), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(93), + [sym_co_return_statement] = STATE(93), + [sym_co_yield_statement] = STATE(93), + [sym_throw_statement] = STATE(93), + [sym_try_statement] = STATE(93), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4928), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(3729), + [sym_user_defined_literal] = STATE(3435), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(286), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_case_statement_repeat1] = STATE(93), + [ts_builtin_sym_end] = ACTIONS(1003), + [sym_identifier] = ACTIONS(1255), + [aux_sym_preproc_include_token1] = ACTIONS(989), + [aux_sym_preproc_def_token1] = ACTIONS(989), + [aux_sym_preproc_if_token1] = ACTIONS(989), + [aux_sym_preproc_ifdef_token1] = ACTIONS(989), + [aux_sym_preproc_ifdef_token2] = ACTIONS(989), + [sym_preproc_directive] = ACTIONS(989), + [anon_sym_LPAREN2] = ACTIONS(991), + [anon_sym_BANG] = ACTIONS(994), + [anon_sym_TILDE] = ACTIONS(994), + [anon_sym_DASH] = ACTIONS(997), + [anon_sym_PLUS] = ACTIONS(997), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_AMP_AMP] = ACTIONS(1003), + [anon_sym_AMP] = ACTIONS(1005), + [anon_sym_SEMI] = ACTIONS(1258), + [anon_sym_typedef] = ACTIONS(1261), + [anon_sym_extern] = ACTIONS(1014), + [anon_sym___attribute__] = ACTIONS(1017), + [anon_sym_COLON_COLON] = ACTIONS(1020), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1023), + [anon_sym___declspec] = ACTIONS(1026), + [anon_sym___based] = ACTIONS(989), + [anon_sym___cdecl] = ACTIONS(989), + [anon_sym___clrcall] = ACTIONS(989), + [anon_sym___stdcall] = ACTIONS(989), + [anon_sym___fastcall] = ACTIONS(989), + [anon_sym___thiscall] = ACTIONS(989), + [anon_sym___vectorcall] = ACTIONS(989), + [anon_sym_LBRACE] = ACTIONS(1264), + [anon_sym_LBRACK] = ACTIONS(1032), + [anon_sym_static] = ACTIONS(1014), + [anon_sym_register] = ACTIONS(1014), + [anon_sym_inline] = ACTIONS(1014), + [anon_sym_thread_local] = ACTIONS(1014), + [anon_sym_const] = ACTIONS(1035), + [anon_sym_volatile] = ACTIONS(1035), + [anon_sym_restrict] = ACTIONS(1035), + [anon_sym__Atomic] = ACTIONS(1035), + [anon_sym_mutable] = ACTIONS(1035), + [anon_sym_constexpr] = ACTIONS(1035), + [anon_sym_constinit] = ACTIONS(1035), + [anon_sym_consteval] = ACTIONS(1035), + [anon_sym_signed] = ACTIONS(1038), + [anon_sym_unsigned] = ACTIONS(1038), + [anon_sym_long] = ACTIONS(1038), + [anon_sym_short] = ACTIONS(1038), + [sym_primitive_type] = ACTIONS(1041), + [anon_sym_enum] = ACTIONS(1044), + [anon_sym_class] = ACTIONS(1047), + [anon_sym_struct] = ACTIONS(1050), + [anon_sym_union] = ACTIONS(1053), + [anon_sym_if] = ACTIONS(1267), + [anon_sym_else] = ACTIONS(989), + [anon_sym_switch] = ACTIONS(1270), + [anon_sym_case] = ACTIONS(989), + [anon_sym_default] = ACTIONS(989), + [anon_sym_while] = ACTIONS(1273), + [anon_sym_do] = ACTIONS(1276), + [anon_sym_for] = ACTIONS(1279), + [anon_sym_return] = ACTIONS(1282), + [anon_sym_break] = ACTIONS(1285), + [anon_sym_continue] = ACTIONS(1288), + [anon_sym_goto] = ACTIONS(1291), + [anon_sym_not] = ACTIONS(997), + [anon_sym_compl] = ACTIONS(997), + [anon_sym_DASH_DASH] = ACTIONS(1083), + [anon_sym_PLUS_PLUS] = ACTIONS(1083), + [anon_sym_sizeof] = ACTIONS(1086), + [sym_number_literal] = ACTIONS(1089), + [anon_sym_L_SQUOTE] = ACTIONS(1092), + [anon_sym_u_SQUOTE] = ACTIONS(1092), + [anon_sym_U_SQUOTE] = ACTIONS(1092), + [anon_sym_u8_SQUOTE] = ACTIONS(1092), + [anon_sym_SQUOTE] = ACTIONS(1092), + [anon_sym_L_DQUOTE] = ACTIONS(1095), + [anon_sym_u_DQUOTE] = ACTIONS(1095), + [anon_sym_U_DQUOTE] = ACTIONS(1095), + [anon_sym_u8_DQUOTE] = ACTIONS(1095), + [anon_sym_DQUOTE] = ACTIONS(1095), + [sym_true] = ACTIONS(1098), + [sym_false] = ACTIONS(1098), + [sym_null] = ACTIONS(1098), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1101), + [anon_sym_decltype] = ACTIONS(1104), + [anon_sym_virtual] = ACTIONS(1107), + [anon_sym_explicit] = ACTIONS(989), + [anon_sym_typename] = ACTIONS(1110), + [anon_sym_template] = ACTIONS(1113), + [anon_sym_operator] = ACTIONS(989), + [anon_sym_try] = ACTIONS(1294), + [anon_sym_delete] = ACTIONS(1119), + [anon_sym_throw] = ACTIONS(1297), + [anon_sym_namespace] = ACTIONS(989), + [anon_sym_using] = ACTIONS(989), + [anon_sym_static_assert] = ACTIONS(989), + [anon_sym_concept] = ACTIONS(989), + [anon_sym_co_return] = ACTIONS(1300), + [anon_sym_co_yield] = ACTIONS(1303), + [anon_sym_co_await] = ACTIONS(1131), + [anon_sym_new] = ACTIONS(1134), + [anon_sym_requires] = ACTIONS(1137), + [sym_this] = ACTIONS(1098), + [sym_nullptr] = ACTIONS(1098), + [sym_raw_string_literal] = ACTIONS(1140), + }, + [94] = { + [sym_declaration] = STATE(88), + [sym_type_definition] = STATE(88), + [sym__declaration_modifiers] = STATE(2203), + [sym__declaration_specifiers] = STATE(4255), + [sym_attribute_specifier] = STATE(2203), + [sym_attribute_declaration] = STATE(1228), + [sym_ms_declspec_modifier] = STATE(2203), + [sym_compound_statement] = STATE(88), + [sym_storage_class_specifier] = STATE(2203), + [sym_type_qualifier] = STATE(2203), + [sym__type_specifier] = STATE(3251), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_attributed_statement] = STATE(88), + [sym_labeled_statement] = STATE(88), + [sym_expression_statement] = STATE(88), + [sym_if_statement] = STATE(88), + [sym_switch_statement] = STATE(88), + [sym_while_statement] = STATE(88), + [sym_do_statement] = STATE(88), + [sym_for_statement] = STATE(88), + [sym_return_statement] = STATE(88), + [sym_break_statement] = STATE(88), + [sym_continue_statement] = STATE(88), + [sym_goto_statement] = STATE(88), + [sym__expression] = STATE(3763), + [sym_comma_expression] = STATE(6972), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(2203), + [sym_dependent_type] = STATE(3481), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(88), + [sym_co_return_statement] = STATE(88), + [sym_co_yield_statement] = STATE(88), + [sym_throw_statement] = STATE(88), + [sym_try_statement] = STATE(88), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4928), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(3729), + [sym_user_defined_literal] = STATE(3435), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(302), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_case_statement_repeat1] = STATE(88), + [sym_identifier] = ACTIONS(1151), [aux_sym_preproc_include_token1] = ACTIONS(978), [aux_sym_preproc_def_token1] = ACTIONS(978), [aux_sym_preproc_if_token1] = ACTIONS(978), @@ -43336,20 +45579,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_ifdef_token1] = ACTIONS(978), [aux_sym_preproc_ifdef_token2] = ACTIONS(978), [sym_preproc_directive] = ACTIONS(978), - [anon_sym_LPAREN2] = ACTIONS(960), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), + [anon_sym_STAR] = ACTIONS(966), [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(594), - [anon_sym_typedef] = ACTIONS(596), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_SEMI] = ACTIONS(560), + [anon_sym_typedef] = ACTIONS(562), [anon_sym_extern] = ACTIONS(55), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), [anon_sym___declspec] = ACTIONS(45), [anon_sym___based] = ACTIONS(978), [anon_sym___cdecl] = ACTIONS(978), @@ -43358,8 +45601,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(978), [anon_sym___thiscall] = ACTIONS(978), [anon_sym___vectorcall] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(600), - [anon_sym_LBRACK] = ACTIONS(970), + [anon_sym_LBRACE] = ACTIONS(566), + [anon_sym_LBRACK] = ACTIONS(974), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), @@ -43381,18 +45624,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(65), [anon_sym_struct] = ACTIONS(67), [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(602), + [anon_sym_if] = ACTIONS(568), [anon_sym_else] = ACTIONS(978), - [anon_sym_switch] = ACTIONS(604), + [anon_sym_switch] = ACTIONS(570), [anon_sym_case] = ACTIONS(978), [anon_sym_default] = ACTIONS(978), - [anon_sym_while] = ACTIONS(610), - [anon_sym_do] = ACTIONS(612), - [anon_sym_for] = ACTIONS(614), - [anon_sym_return] = ACTIONS(616), - [anon_sym_break] = ACTIONS(618), - [anon_sym_continue] = ACTIONS(620), - [anon_sym_goto] = ACTIONS(622), + [anon_sym_while] = ACTIONS(576), + [anon_sym_do] = ACTIONS(578), + [anon_sym_for] = ACTIONS(580), + [anon_sym_return] = ACTIONS(582), + [anon_sym_break] = ACTIONS(584), + [anon_sym_continue] = ACTIONS(586), + [anon_sym_goto] = ACTIONS(588), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -43416,17 +45661,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_virtual] = ACTIONS(109), [anon_sym_explicit] = ACTIONS(978), [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(972), + [anon_sym_template] = ACTIONS(976), [anon_sym_operator] = ACTIONS(978), - [anon_sym_try] = ACTIONS(626), + [anon_sym_try] = ACTIONS(592), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(628), + [anon_sym_throw] = ACTIONS(594), [anon_sym_namespace] = ACTIONS(978), [anon_sym_using] = ACTIONS(978), [anon_sym_static_assert] = ACTIONS(978), [anon_sym_concept] = ACTIONS(978), - [anon_sym_co_return] = ACTIONS(638), - [anon_sym_co_yield] = ACTIONS(640), + [anon_sym_co_return] = ACTIONS(604), + [anon_sym_co_yield] = ACTIONS(606), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -43434,116 +45679,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [91] = { - [sym_declaration] = STATE(85), - [sym_type_definition] = STATE(85), - [sym__declaration_modifiers] = STATE(1894), - [sym__declaration_specifiers] = STATE(3974), - [sym_attribute_specifier] = STATE(1894), - [sym_attribute_declaration] = STATE(1147), - [sym_ms_declspec_modifier] = STATE(1894), - [sym_compound_statement] = STATE(85), - [sym_storage_class_specifier] = STATE(1894), - [sym_type_qualifier] = STATE(1894), - [sym__type_specifier] = STATE(2596), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_attributed_statement] = STATE(85), - [sym_labeled_statement] = STATE(85), - [sym_expression_statement] = STATE(85), - [sym_if_statement] = STATE(85), - [sym_switch_statement] = STATE(85), - [sym_while_statement] = STATE(85), - [sym_do_statement] = STATE(85), - [sym_for_statement] = STATE(85), - [sym_return_statement] = STATE(85), - [sym_break_statement] = STATE(85), - [sym_continue_statement] = STATE(85), - [sym_goto_statement] = STATE(85), - [sym__expression] = STATE(3605), - [sym_comma_expression] = STATE(6558), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(1894), - [sym_dependent_type] = STATE(3139), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(85), - [sym_co_return_statement] = STATE(85), - [sym_co_yield_statement] = STATE(85), - [sym_throw_statement] = STATE(85), - [sym_try_statement] = STATE(85), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4625), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(3276), - [sym_user_defined_literal] = STATE(3428), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(282), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_case_statement_repeat1] = STATE(85), - [ts_builtin_sym_end] = ACTIONS(980), - [sym_identifier] = ACTIONS(1147), - [aux_sym_preproc_include_token1] = ACTIONS(978), - [aux_sym_preproc_def_token1] = ACTIONS(978), - [aux_sym_preproc_if_token1] = ACTIONS(978), - [aux_sym_preproc_ifdef_token1] = ACTIONS(978), - [aux_sym_preproc_ifdef_token2] = ACTIONS(978), - [sym_preproc_directive] = ACTIONS(978), - [anon_sym_LPAREN2] = ACTIONS(960), + [95] = { + [sym_declaration] = STATE(93), + [sym_type_definition] = STATE(93), + [sym__declaration_modifiers] = STATE(2203), + [sym__declaration_specifiers] = STATE(4253), + [sym_attribute_specifier] = STATE(2203), + [sym_attribute_declaration] = STATE(1228), + [sym_ms_declspec_modifier] = STATE(2203), + [sym_compound_statement] = STATE(93), + [sym_storage_class_specifier] = STATE(2203), + [sym_type_qualifier] = STATE(2203), + [sym__type_specifier] = STATE(3251), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_attributed_statement] = STATE(93), + [sym_labeled_statement] = STATE(93), + [sym_expression_statement] = STATE(93), + [sym_if_statement] = STATE(93), + [sym_switch_statement] = STATE(93), + [sym_while_statement] = STATE(93), + [sym_do_statement] = STATE(93), + [sym_for_statement] = STATE(93), + [sym_return_statement] = STATE(93), + [sym_break_statement] = STATE(93), + [sym_continue_statement] = STATE(93), + [sym_goto_statement] = STATE(93), + [sym__expression] = STATE(3758), + [sym_comma_expression] = STATE(7239), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(2203), + [sym_dependent_type] = STATE(3481), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(93), + [sym_co_return_statement] = STATE(93), + [sym_co_yield_statement] = STATE(93), + [sym_throw_statement] = STATE(93), + [sym_try_statement] = STATE(93), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4928), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(3729), + [sym_user_defined_literal] = STATE(3435), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(286), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_case_statement_repeat1] = STATE(93), + [ts_builtin_sym_end] = ACTIONS(984), + [sym_identifier] = ACTIONS(1149), + [aux_sym_preproc_include_token1] = ACTIONS(982), + [aux_sym_preproc_def_token1] = ACTIONS(982), + [aux_sym_preproc_if_token1] = ACTIONS(982), + [aux_sym_preproc_ifdef_token1] = ACTIONS(982), + [aux_sym_preproc_ifdef_token2] = ACTIONS(982), + [sym_preproc_directive] = ACTIONS(982), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_AMP] = ACTIONS(966), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP_AMP] = ACTIONS(984), + [anon_sym_AMP] = ACTIONS(970), [anon_sym_SEMI] = ACTIONS(33), [anon_sym_typedef] = ACTIONS(35), [anon_sym_extern] = ACTIONS(55), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(978), - [anon_sym___cdecl] = ACTIONS(978), - [anon_sym___clrcall] = ACTIONS(978), - [anon_sym___stdcall] = ACTIONS(978), - [anon_sym___fastcall] = ACTIONS(978), - [anon_sym___thiscall] = ACTIONS(978), - [anon_sym___vectorcall] = ACTIONS(978), + [anon_sym___based] = ACTIONS(982), + [anon_sym___cdecl] = ACTIONS(982), + [anon_sym___clrcall] = ACTIONS(982), + [anon_sym___stdcall] = ACTIONS(982), + [anon_sym___fastcall] = ACTIONS(982), + [anon_sym___thiscall] = ACTIONS(982), + [anon_sym___vectorcall] = ACTIONS(982), [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(974), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), @@ -43566,10 +45811,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(67), [anon_sym_union] = ACTIONS(69), [anon_sym_if] = ACTIONS(71), - [anon_sym_else] = ACTIONS(978), + [anon_sym_else] = ACTIONS(982), [anon_sym_switch] = ACTIONS(73), - [anon_sym_case] = ACTIONS(978), - [anon_sym_default] = ACTIONS(978), + [anon_sym_case] = ACTIONS(982), + [anon_sym_default] = ACTIONS(982), [anon_sym_while] = ACTIONS(79), [anon_sym_do] = ACTIONS(81), [anon_sym_for] = ACTIONS(83), @@ -43577,6 +45822,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(87), [anon_sym_continue] = ACTIONS(89), [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -43598,17 +45845,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(105), [anon_sym_decltype] = ACTIONS(107), [anon_sym_virtual] = ACTIONS(109), - [anon_sym_explicit] = ACTIONS(978), + [anon_sym_explicit] = ACTIONS(982), [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(972), - [anon_sym_operator] = ACTIONS(978), + [anon_sym_template] = ACTIONS(976), + [anon_sym_operator] = ACTIONS(982), [anon_sym_try] = ACTIONS(119), [anon_sym_delete] = ACTIONS(121), [anon_sym_throw] = ACTIONS(123), - [anon_sym_namespace] = ACTIONS(978), - [anon_sym_using] = ACTIONS(978), - [anon_sym_static_assert] = ACTIONS(978), - [anon_sym_concept] = ACTIONS(978), + [anon_sym_namespace] = ACTIONS(982), + [anon_sym_using] = ACTIONS(982), + [anon_sym_static_assert] = ACTIONS(982), + [anon_sym_concept] = ACTIONS(982), [anon_sym_co_return] = ACTIONS(133), [anon_sym_co_yield] = ACTIONS(135), [anon_sym_co_await] = ACTIONS(137), @@ -43618,116 +45865,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [92] = { - [sym_declaration] = STATE(94), - [sym_type_definition] = STATE(94), - [sym__declaration_modifiers] = STATE(1894), - [sym__declaration_specifiers] = STATE(3986), - [sym_attribute_specifier] = STATE(1894), - [sym_attribute_declaration] = STATE(1147), - [sym_ms_declspec_modifier] = STATE(1894), - [sym_compound_statement] = STATE(94), - [sym_storage_class_specifier] = STATE(1894), - [sym_type_qualifier] = STATE(1894), - [sym__type_specifier] = STATE(2596), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_attributed_statement] = STATE(94), - [sym_labeled_statement] = STATE(94), - [sym_expression_statement] = STATE(94), - [sym_if_statement] = STATE(94), - [sym_switch_statement] = STATE(94), - [sym_while_statement] = STATE(94), - [sym_do_statement] = STATE(94), - [sym_for_statement] = STATE(94), - [sym_return_statement] = STATE(94), - [sym_break_statement] = STATE(94), - [sym_continue_statement] = STATE(94), - [sym_goto_statement] = STATE(94), - [sym__expression] = STATE(3612), - [sym_comma_expression] = STATE(6539), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(1894), - [sym_dependent_type] = STATE(3139), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(94), - [sym_co_return_statement] = STATE(94), - [sym_co_yield_statement] = STATE(94), - [sym_throw_statement] = STATE(94), - [sym_try_statement] = STATE(94), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4625), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(3276), - [sym_user_defined_literal] = STATE(3428), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(303), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_case_statement_repeat1] = STATE(94), - [sym_identifier] = ACTIONS(1145), - [aux_sym_preproc_include_token1] = ACTIONS(974), - [aux_sym_preproc_def_token1] = ACTIONS(974), - [aux_sym_preproc_if_token1] = ACTIONS(974), - [aux_sym_preproc_if_token2] = ACTIONS(974), - [aux_sym_preproc_ifdef_token1] = ACTIONS(974), - [aux_sym_preproc_ifdef_token2] = ACTIONS(974), - [sym_preproc_directive] = ACTIONS(974), - [anon_sym_LPAREN2] = ACTIONS(960), + [96] = { + [sym_declaration] = STATE(87), + [sym_type_definition] = STATE(87), + [sym__declaration_modifiers] = STATE(2203), + [sym__declaration_specifiers] = STATE(4255), + [sym_attribute_specifier] = STATE(2203), + [sym_attribute_declaration] = STATE(1228), + [sym_ms_declspec_modifier] = STATE(2203), + [sym_compound_statement] = STATE(87), + [sym_storage_class_specifier] = STATE(2203), + [sym_type_qualifier] = STATE(2203), + [sym__type_specifier] = STATE(3251), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_attributed_statement] = STATE(87), + [sym_labeled_statement] = STATE(87), + [sym_expression_statement] = STATE(87), + [sym_if_statement] = STATE(87), + [sym_switch_statement] = STATE(87), + [sym_while_statement] = STATE(87), + [sym_do_statement] = STATE(87), + [sym_for_statement] = STATE(87), + [sym_return_statement] = STATE(87), + [sym_break_statement] = STATE(87), + [sym_continue_statement] = STATE(87), + [sym_goto_statement] = STATE(87), + [sym__expression] = STATE(3763), + [sym_comma_expression] = STATE(6972), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(2203), + [sym_dependent_type] = STATE(3481), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(87), + [sym_co_return_statement] = STATE(87), + [sym_co_yield_statement] = STATE(87), + [sym_throw_statement] = STATE(87), + [sym_try_statement] = STATE(87), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4928), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(3729), + [sym_user_defined_literal] = STATE(3435), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(302), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_case_statement_repeat1] = STATE(87), + [sym_identifier] = ACTIONS(1151), + [aux_sym_preproc_include_token1] = ACTIONS(982), + [aux_sym_preproc_def_token1] = ACTIONS(982), + [aux_sym_preproc_if_token1] = ACTIONS(982), + [aux_sym_preproc_if_token2] = ACTIONS(982), + [aux_sym_preproc_ifdef_token1] = ACTIONS(982), + [aux_sym_preproc_ifdef_token2] = ACTIONS(982), + [sym_preproc_directive] = ACTIONS(982), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP_AMP] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(594), - [anon_sym_typedef] = ACTIONS(596), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP_AMP] = ACTIONS(984), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_SEMI] = ACTIONS(560), + [anon_sym_typedef] = ACTIONS(562), [anon_sym_extern] = ACTIONS(55), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(974), - [anon_sym___cdecl] = ACTIONS(974), - [anon_sym___clrcall] = ACTIONS(974), - [anon_sym___stdcall] = ACTIONS(974), - [anon_sym___fastcall] = ACTIONS(974), - [anon_sym___thiscall] = ACTIONS(974), - [anon_sym___vectorcall] = ACTIONS(974), - [anon_sym_LBRACE] = ACTIONS(600), - [anon_sym_LBRACK] = ACTIONS(970), + [anon_sym___based] = ACTIONS(982), + [anon_sym___cdecl] = ACTIONS(982), + [anon_sym___clrcall] = ACTIONS(982), + [anon_sym___stdcall] = ACTIONS(982), + [anon_sym___fastcall] = ACTIONS(982), + [anon_sym___thiscall] = ACTIONS(982), + [anon_sym___vectorcall] = ACTIONS(982), + [anon_sym_LBRACE] = ACTIONS(566), + [anon_sym_LBRACK] = ACTIONS(974), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), @@ -43749,18 +45996,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(65), [anon_sym_struct] = ACTIONS(67), [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(602), - [anon_sym_else] = ACTIONS(974), - [anon_sym_switch] = ACTIONS(604), - [anon_sym_case] = ACTIONS(974), - [anon_sym_default] = ACTIONS(974), - [anon_sym_while] = ACTIONS(610), - [anon_sym_do] = ACTIONS(612), - [anon_sym_for] = ACTIONS(614), - [anon_sym_return] = ACTIONS(616), - [anon_sym_break] = ACTIONS(618), - [anon_sym_continue] = ACTIONS(620), - [anon_sym_goto] = ACTIONS(622), + [anon_sym_if] = ACTIONS(568), + [anon_sym_else] = ACTIONS(982), + [anon_sym_switch] = ACTIONS(570), + [anon_sym_case] = ACTIONS(982), + [anon_sym_default] = ACTIONS(982), + [anon_sym_while] = ACTIONS(576), + [anon_sym_do] = ACTIONS(578), + [anon_sym_for] = ACTIONS(580), + [anon_sym_return] = ACTIONS(582), + [anon_sym_break] = ACTIONS(584), + [anon_sym_continue] = ACTIONS(586), + [anon_sym_goto] = ACTIONS(588), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -43782,19 +46031,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(105), [anon_sym_decltype] = ACTIONS(107), [anon_sym_virtual] = ACTIONS(109), - [anon_sym_explicit] = ACTIONS(974), + [anon_sym_explicit] = ACTIONS(982), [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(972), - [anon_sym_operator] = ACTIONS(974), - [anon_sym_try] = ACTIONS(626), + [anon_sym_template] = ACTIONS(976), + [anon_sym_operator] = ACTIONS(982), + [anon_sym_try] = ACTIONS(592), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(628), - [anon_sym_namespace] = ACTIONS(974), - [anon_sym_using] = ACTIONS(974), - [anon_sym_static_assert] = ACTIONS(974), - [anon_sym_concept] = ACTIONS(974), - [anon_sym_co_return] = ACTIONS(638), - [anon_sym_co_yield] = ACTIONS(640), + [anon_sym_throw] = ACTIONS(594), + [anon_sym_namespace] = ACTIONS(982), + [anon_sym_using] = ACTIONS(982), + [anon_sym_static_assert] = ACTIONS(982), + [anon_sym_concept] = ACTIONS(982), + [anon_sym_co_return] = ACTIONS(604), + [anon_sym_co_yield] = ACTIONS(606), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -43802,116 +46051,264 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [93] = { - [sym_declaration] = STATE(80), - [sym_type_definition] = STATE(80), - [sym__declaration_modifiers] = STATE(1894), - [sym__declaration_specifiers] = STATE(3996), - [sym_attribute_specifier] = STATE(1894), - [sym_attribute_declaration] = STATE(1147), - [sym_ms_declspec_modifier] = STATE(1894), - [sym_compound_statement] = STATE(80), - [sym_storage_class_specifier] = STATE(1894), - [sym_type_qualifier] = STATE(1894), - [sym__type_specifier] = STATE(2596), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_attributed_statement] = STATE(80), - [sym_labeled_statement] = STATE(80), - [sym_expression_statement] = STATE(80), - [sym_if_statement] = STATE(80), - [sym_switch_statement] = STATE(80), - [sym_while_statement] = STATE(80), - [sym_do_statement] = STATE(80), - [sym_for_statement] = STATE(80), - [sym_return_statement] = STATE(80), - [sym_break_statement] = STATE(80), - [sym_continue_statement] = STATE(80), - [sym_goto_statement] = STATE(80), - [sym__expression] = STATE(3645), - [sym_comma_expression] = STATE(6499), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(1894), - [sym_dependent_type] = STATE(3139), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(80), - [sym_co_return_statement] = STATE(80), - [sym_co_yield_statement] = STATE(80), - [sym_throw_statement] = STATE(80), - [sym_try_statement] = STATE(80), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4625), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(3276), - [sym_user_defined_literal] = STATE(3428), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_case_statement_repeat1] = STATE(80), - [sym_identifier] = ACTIONS(1143), - [aux_sym_preproc_include_token1] = ACTIONS(1139), - [aux_sym_preproc_def_token1] = ACTIONS(1139), - [aux_sym_preproc_if_token1] = ACTIONS(1139), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1139), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1139), - [sym_preproc_directive] = ACTIONS(1139), - [anon_sym_LPAREN2] = ACTIONS(960), + [97] = { + [sym_declaration] = STATE(97), + [sym_type_definition] = STATE(97), + [sym__declaration_modifiers] = STATE(2203), + [sym__declaration_specifiers] = STATE(4217), + [sym_attribute_specifier] = STATE(2203), + [sym_attribute_declaration] = STATE(1228), + [sym_ms_declspec_modifier] = STATE(2203), + [sym_compound_statement] = STATE(97), + [sym_storage_class_specifier] = STATE(2203), + [sym_type_qualifier] = STATE(2203), + [sym__type_specifier] = STATE(3251), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_attributed_statement] = STATE(97), + [sym_labeled_statement] = STATE(97), + [sym_expression_statement] = STATE(97), + [sym_if_statement] = STATE(97), + [sym_switch_statement] = STATE(97), + [sym_while_statement] = STATE(97), + [sym_do_statement] = STATE(97), + [sym_for_statement] = STATE(97), + [sym_return_statement] = STATE(97), + [sym_break_statement] = STATE(97), + [sym_continue_statement] = STATE(97), + [sym_goto_statement] = STATE(97), + [sym__expression] = STATE(3699), + [sym_comma_expression] = STATE(6868), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(2203), + [sym_dependent_type] = STATE(3481), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(97), + [sym_co_return_statement] = STATE(97), + [sym_co_yield_statement] = STATE(97), + [sym_throw_statement] = STATE(97), + [sym_try_statement] = STATE(97), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4928), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(3729), + [sym_user_defined_literal] = STATE(3435), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(189), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_case_statement_repeat1] = STATE(97), + [sym_identifier] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(991), + [anon_sym_BANG] = ACTIONS(994), + [anon_sym_TILDE] = ACTIONS(994), + [anon_sym_DASH] = ACTIONS(997), + [anon_sym_PLUS] = ACTIONS(997), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_SEMI] = ACTIONS(1309), + [anon_sym_typedef] = ACTIONS(1312), + [anon_sym_extern] = ACTIONS(1014), + [anon_sym___attribute__] = ACTIONS(1017), + [anon_sym_COLON_COLON] = ACTIONS(1020), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1023), + [anon_sym___declspec] = ACTIONS(1026), + [anon_sym_LBRACE] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1032), + [anon_sym_static] = ACTIONS(1014), + [anon_sym_register] = ACTIONS(1014), + [anon_sym_inline] = ACTIONS(1014), + [anon_sym_thread_local] = ACTIONS(1014), + [anon_sym_const] = ACTIONS(1035), + [anon_sym_volatile] = ACTIONS(1035), + [anon_sym_restrict] = ACTIONS(1035), + [anon_sym__Atomic] = ACTIONS(1035), + [anon_sym_mutable] = ACTIONS(1035), + [anon_sym_constexpr] = ACTIONS(1035), + [anon_sym_constinit] = ACTIONS(1035), + [anon_sym_consteval] = ACTIONS(1035), + [anon_sym_signed] = ACTIONS(1038), + [anon_sym_unsigned] = ACTIONS(1038), + [anon_sym_long] = ACTIONS(1038), + [anon_sym_short] = ACTIONS(1038), + [sym_primitive_type] = ACTIONS(1041), + [anon_sym_enum] = ACTIONS(1044), + [anon_sym_class] = ACTIONS(1047), + [anon_sym_struct] = ACTIONS(1050), + [anon_sym_union] = ACTIONS(1053), + [anon_sym_if] = ACTIONS(1318), + [anon_sym_else] = ACTIONS(989), + [anon_sym_switch] = ACTIONS(1321), + [anon_sym_while] = ACTIONS(1324), + [anon_sym_do] = ACTIONS(1327), + [anon_sym_for] = ACTIONS(1330), + [anon_sym_return] = ACTIONS(1333), + [anon_sym_break] = ACTIONS(1336), + [anon_sym_continue] = ACTIONS(1339), + [anon_sym_goto] = ACTIONS(1342), + [anon_sym_not] = ACTIONS(997), + [anon_sym_compl] = ACTIONS(997), + [anon_sym_DASH_DASH] = ACTIONS(1083), + [anon_sym_PLUS_PLUS] = ACTIONS(1083), + [anon_sym_sizeof] = ACTIONS(1086), + [sym_number_literal] = ACTIONS(1089), + [anon_sym_L_SQUOTE] = ACTIONS(1092), + [anon_sym_u_SQUOTE] = ACTIONS(1092), + [anon_sym_U_SQUOTE] = ACTIONS(1092), + [anon_sym_u8_SQUOTE] = ACTIONS(1092), + [anon_sym_SQUOTE] = ACTIONS(1092), + [anon_sym_L_DQUOTE] = ACTIONS(1095), + [anon_sym_u_DQUOTE] = ACTIONS(1095), + [anon_sym_U_DQUOTE] = ACTIONS(1095), + [anon_sym_u8_DQUOTE] = ACTIONS(1095), + [anon_sym_DQUOTE] = ACTIONS(1095), + [sym_true] = ACTIONS(1098), + [sym_false] = ACTIONS(1098), + [sym_null] = ACTIONS(1098), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1101), + [anon_sym_decltype] = ACTIONS(1104), + [anon_sym_virtual] = ACTIONS(1107), + [anon_sym_typename] = ACTIONS(1110), + [anon_sym_template] = ACTIONS(1113), + [anon_sym_try] = ACTIONS(1345), + [anon_sym_delete] = ACTIONS(1119), + [anon_sym_throw] = ACTIONS(1348), + [anon_sym_co_return] = ACTIONS(1351), + [anon_sym_co_yield] = ACTIONS(1354), + [anon_sym_co_await] = ACTIONS(1131), + [anon_sym_new] = ACTIONS(1134), + [anon_sym_requires] = ACTIONS(1137), + [sym_this] = ACTIONS(1098), + [sym_nullptr] = ACTIONS(1098), + [sym_raw_string_literal] = ACTIONS(1140), + }, + [98] = { + [sym_declaration] = STATE(101), + [sym_type_definition] = STATE(101), + [sym__declaration_modifiers] = STATE(2203), + [sym__declaration_specifiers] = STATE(4217), + [sym_attribute_specifier] = STATE(2203), + [sym_attribute_declaration] = STATE(1228), + [sym_ms_declspec_modifier] = STATE(2203), + [sym_compound_statement] = STATE(101), + [sym_storage_class_specifier] = STATE(2203), + [sym_type_qualifier] = STATE(2203), + [sym__type_specifier] = STATE(3251), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_attributed_statement] = STATE(101), + [sym_labeled_statement] = STATE(101), + [sym_expression_statement] = STATE(101), + [sym_if_statement] = STATE(101), + [sym_switch_statement] = STATE(101), + [sym_while_statement] = STATE(101), + [sym_do_statement] = STATE(101), + [sym_for_statement] = STATE(101), + [sym_return_statement] = STATE(101), + [sym_break_statement] = STATE(101), + [sym_continue_statement] = STATE(101), + [sym_goto_statement] = STATE(101), + [sym__expression] = STATE(3699), + [sym_comma_expression] = STATE(6868), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(2203), + [sym_dependent_type] = STATE(3481), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(101), + [sym_co_return_statement] = STATE(101), + [sym_co_yield_statement] = STATE(101), + [sym_throw_statement] = STATE(101), + [sym_try_statement] = STATE(101), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4928), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(3729), + [sym_user_defined_literal] = STATE(3435), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(189), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_case_statement_repeat1] = STATE(101), + [sym_identifier] = ACTIONS(1357), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP_AMP] = ACTIONS(1141), + [anon_sym_STAR] = ACTIONS(966), [anon_sym_AMP] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(159), - [anon_sym_typedef] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_typedef] = ACTIONS(1361), [anon_sym_extern] = ACTIONS(55), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(1139), - [anon_sym___cdecl] = ACTIONS(1139), - [anon_sym___clrcall] = ACTIONS(1139), - [anon_sym___stdcall] = ACTIONS(1139), - [anon_sym___fastcall] = ACTIONS(1139), - [anon_sym___thiscall] = ACTIONS(1139), - [anon_sym___vectorcall] = ACTIONS(1139), - [anon_sym_LBRACE] = ACTIONS(536), - [anon_sym_RBRACE] = ACTIONS(1141), - [anon_sym_LBRACK] = ACTIONS(970), + [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(974), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), @@ -43933,18 +46330,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(65), [anon_sym_struct] = ACTIONS(67), [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(171), - [anon_sym_else] = ACTIONS(1139), - [anon_sym_switch] = ACTIONS(173), - [anon_sym_case] = ACTIONS(1139), - [anon_sym_default] = ACTIONS(1139), - [anon_sym_while] = ACTIONS(179), - [anon_sym_do] = ACTIONS(181), - [anon_sym_for] = ACTIONS(183), - [anon_sym_return] = ACTIONS(185), - [anon_sym_break] = ACTIONS(187), - [anon_sym_continue] = ACTIONS(189), - [anon_sym_goto] = ACTIONS(191), + [anon_sym_if] = ACTIONS(1365), + [anon_sym_else] = ACTIONS(1143), + [anon_sym_switch] = ACTIONS(1367), + [anon_sym_while] = ACTIONS(1369), + [anon_sym_do] = ACTIONS(1371), + [anon_sym_for] = ACTIONS(1373), + [anon_sym_return] = ACTIONS(1375), + [anon_sym_break] = ACTIONS(1377), + [anon_sym_continue] = ACTIONS(1379), + [anon_sym_goto] = ACTIONS(1381), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -43966,19 +46363,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(105), [anon_sym_decltype] = ACTIONS(107), [anon_sym_virtual] = ACTIONS(109), - [anon_sym_explicit] = ACTIONS(1139), [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(972), - [anon_sym_operator] = ACTIONS(1139), - [anon_sym_try] = ACTIONS(197), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(1383), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(199), - [anon_sym_namespace] = ACTIONS(1139), - [anon_sym_using] = ACTIONS(1139), - [anon_sym_static_assert] = ACTIONS(1139), - [anon_sym_concept] = ACTIONS(1139), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_throw] = ACTIONS(1385), + [anon_sym_co_return] = ACTIONS(1387), + [anon_sym_co_yield] = ACTIONS(1389), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -43986,285 +46377,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [94] = { - [sym_declaration] = STATE(94), - [sym_type_definition] = STATE(94), - [sym__declaration_modifiers] = STATE(1894), - [sym__declaration_specifiers] = STATE(3986), - [sym_attribute_specifier] = STATE(1894), - [sym_attribute_declaration] = STATE(1147), - [sym_ms_declspec_modifier] = STATE(1894), - [sym_compound_statement] = STATE(94), - [sym_storage_class_specifier] = STATE(1894), - [sym_type_qualifier] = STATE(1894), - [sym__type_specifier] = STATE(2596), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_attributed_statement] = STATE(94), - [sym_labeled_statement] = STATE(94), - [sym_expression_statement] = STATE(94), - [sym_if_statement] = STATE(94), - [sym_switch_statement] = STATE(94), - [sym_while_statement] = STATE(94), - [sym_do_statement] = STATE(94), - [sym_for_statement] = STATE(94), - [sym_return_statement] = STATE(94), - [sym_break_statement] = STATE(94), - [sym_continue_statement] = STATE(94), - [sym_goto_statement] = STATE(94), - [sym__expression] = STATE(3612), - [sym_comma_expression] = STATE(6539), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(1894), - [sym_dependent_type] = STATE(3139), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(94), - [sym_co_return_statement] = STATE(94), - [sym_co_yield_statement] = STATE(94), - [sym_throw_statement] = STATE(94), - [sym_try_statement] = STATE(94), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4625), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(3276), - [sym_user_defined_literal] = STATE(3428), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(303), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_case_statement_repeat1] = STATE(94), - [sym_identifier] = ACTIONS(1251), - [aux_sym_preproc_include_token1] = ACTIONS(985), - [aux_sym_preproc_def_token1] = ACTIONS(985), - [aux_sym_preproc_if_token1] = ACTIONS(985), - [aux_sym_preproc_if_token2] = ACTIONS(985), - [aux_sym_preproc_ifdef_token1] = ACTIONS(985), - [aux_sym_preproc_ifdef_token2] = ACTIONS(985), - [sym_preproc_directive] = ACTIONS(985), - [anon_sym_LPAREN2] = ACTIONS(987), - [anon_sym_BANG] = ACTIONS(990), - [anon_sym_TILDE] = ACTIONS(990), - [anon_sym_DASH] = ACTIONS(993), - [anon_sym_PLUS] = ACTIONS(993), - [anon_sym_STAR] = ACTIONS(996), - [anon_sym_AMP_AMP] = ACTIONS(999), - [anon_sym_AMP] = ACTIONS(1001), - [anon_sym_SEMI] = ACTIONS(1254), - [anon_sym_typedef] = ACTIONS(1257), - [anon_sym_extern] = ACTIONS(1010), - [anon_sym___attribute__] = ACTIONS(1013), - [anon_sym_COLON_COLON] = ACTIONS(1016), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1019), - [anon_sym___declspec] = ACTIONS(1022), - [anon_sym___based] = ACTIONS(985), - [anon_sym___cdecl] = ACTIONS(985), - [anon_sym___clrcall] = ACTIONS(985), - [anon_sym___stdcall] = ACTIONS(985), - [anon_sym___fastcall] = ACTIONS(985), - [anon_sym___thiscall] = ACTIONS(985), - [anon_sym___vectorcall] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(1260), - [anon_sym_LBRACK] = ACTIONS(1028), - [anon_sym_static] = ACTIONS(1010), - [anon_sym_register] = ACTIONS(1010), - [anon_sym_inline] = ACTIONS(1010), - [anon_sym_thread_local] = ACTIONS(1010), - [anon_sym_const] = ACTIONS(1031), - [anon_sym_volatile] = ACTIONS(1031), - [anon_sym_restrict] = ACTIONS(1031), - [anon_sym__Atomic] = ACTIONS(1031), - [anon_sym_mutable] = ACTIONS(1031), - [anon_sym_constexpr] = ACTIONS(1031), - [anon_sym_constinit] = ACTIONS(1031), - [anon_sym_consteval] = ACTIONS(1031), - [anon_sym_signed] = ACTIONS(1034), - [anon_sym_unsigned] = ACTIONS(1034), - [anon_sym_long] = ACTIONS(1034), - [anon_sym_short] = ACTIONS(1034), - [sym_primitive_type] = ACTIONS(1037), - [anon_sym_enum] = ACTIONS(1040), - [anon_sym_class] = ACTIONS(1043), - [anon_sym_struct] = ACTIONS(1046), - [anon_sym_union] = ACTIONS(1049), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_else] = ACTIONS(985), - [anon_sym_switch] = ACTIONS(1266), - [anon_sym_case] = ACTIONS(985), - [anon_sym_default] = ACTIONS(985), - [anon_sym_while] = ACTIONS(1269), - [anon_sym_do] = ACTIONS(1272), - [anon_sym_for] = ACTIONS(1275), - [anon_sym_return] = ACTIONS(1278), - [anon_sym_break] = ACTIONS(1281), - [anon_sym_continue] = ACTIONS(1284), - [anon_sym_goto] = ACTIONS(1287), - [anon_sym_DASH_DASH] = ACTIONS(1079), - [anon_sym_PLUS_PLUS] = ACTIONS(1079), - [anon_sym_sizeof] = ACTIONS(1082), - [sym_number_literal] = ACTIONS(1085), - [anon_sym_L_SQUOTE] = ACTIONS(1088), - [anon_sym_u_SQUOTE] = ACTIONS(1088), - [anon_sym_U_SQUOTE] = ACTIONS(1088), - [anon_sym_u8_SQUOTE] = ACTIONS(1088), - [anon_sym_SQUOTE] = ACTIONS(1088), - [anon_sym_L_DQUOTE] = ACTIONS(1091), - [anon_sym_u_DQUOTE] = ACTIONS(1091), - [anon_sym_U_DQUOTE] = ACTIONS(1091), - [anon_sym_u8_DQUOTE] = ACTIONS(1091), - [anon_sym_DQUOTE] = ACTIONS(1091), - [sym_true] = ACTIONS(1094), - [sym_false] = ACTIONS(1094), - [sym_null] = ACTIONS(1094), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1097), - [anon_sym_decltype] = ACTIONS(1100), - [anon_sym_virtual] = ACTIONS(1103), - [anon_sym_explicit] = ACTIONS(985), - [anon_sym_typename] = ACTIONS(1106), - [anon_sym_template] = ACTIONS(1109), - [anon_sym_operator] = ACTIONS(985), - [anon_sym_try] = ACTIONS(1290), - [anon_sym_delete] = ACTIONS(1115), - [anon_sym_throw] = ACTIONS(1293), - [anon_sym_namespace] = ACTIONS(985), - [anon_sym_using] = ACTIONS(985), - [anon_sym_static_assert] = ACTIONS(985), - [anon_sym_concept] = ACTIONS(985), - [anon_sym_co_return] = ACTIONS(1296), - [anon_sym_co_yield] = ACTIONS(1299), - [anon_sym_co_await] = ACTIONS(1127), - [anon_sym_new] = ACTIONS(1130), - [anon_sym_requires] = ACTIONS(1133), - [sym_this] = ACTIONS(1094), - [sym_nullptr] = ACTIONS(1094), - [sym_raw_string_literal] = ACTIONS(1136), - }, - [95] = { - [sym_declaration] = STATE(99), - [sym_type_definition] = STATE(99), - [sym__declaration_modifiers] = STATE(1894), - [sym__declaration_specifiers] = STATE(3991), - [sym_attribute_specifier] = STATE(1894), - [sym_attribute_declaration] = STATE(1147), - [sym_ms_declspec_modifier] = STATE(1894), - [sym_compound_statement] = STATE(99), - [sym_storage_class_specifier] = STATE(1894), - [sym_type_qualifier] = STATE(1894), - [sym__type_specifier] = STATE(2596), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_attributed_statement] = STATE(99), - [sym_labeled_statement] = STATE(99), - [sym_expression_statement] = STATE(99), - [sym_if_statement] = STATE(99), - [sym_switch_statement] = STATE(99), - [sym_while_statement] = STATE(99), - [sym_do_statement] = STATE(99), - [sym_for_statement] = STATE(99), - [sym_return_statement] = STATE(99), - [sym_break_statement] = STATE(99), - [sym_continue_statement] = STATE(99), - [sym_goto_statement] = STATE(99), - [sym__expression] = STATE(3670), - [sym_comma_expression] = STATE(6450), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(1894), - [sym_dependent_type] = STATE(3139), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(99), - [sym_co_return_statement] = STATE(99), - [sym_co_yield_statement] = STATE(99), - [sym_throw_statement] = STATE(99), - [sym_try_statement] = STATE(99), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4625), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(3276), - [sym_user_defined_literal] = STATE(3428), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(244), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_case_statement_repeat1] = STATE(99), - [sym_identifier] = ACTIONS(1302), - [anon_sym_LPAREN2] = ACTIONS(960), + [99] = { + [sym_declaration] = STATE(100), + [sym_type_definition] = STATE(100), + [sym__declaration_modifiers] = STATE(2203), + [sym__declaration_specifiers] = STATE(4217), + [sym_attribute_specifier] = STATE(2203), + [sym_attribute_declaration] = STATE(1228), + [sym_ms_declspec_modifier] = STATE(2203), + [sym_compound_statement] = STATE(100), + [sym_storage_class_specifier] = STATE(2203), + [sym_type_qualifier] = STATE(2203), + [sym__type_specifier] = STATE(3251), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_attributed_statement] = STATE(100), + [sym_labeled_statement] = STATE(100), + [sym_expression_statement] = STATE(100), + [sym_if_statement] = STATE(100), + [sym_switch_statement] = STATE(100), + [sym_while_statement] = STATE(100), + [sym_do_statement] = STATE(100), + [sym_for_statement] = STATE(100), + [sym_return_statement] = STATE(100), + [sym_break_statement] = STATE(100), + [sym_continue_statement] = STATE(100), + [sym_goto_statement] = STATE(100), + [sym__expression] = STATE(3699), + [sym_comma_expression] = STATE(6868), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(2203), + [sym_dependent_type] = STATE(3481), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(100), + [sym_co_return_statement] = STATE(100), + [sym_co_yield_statement] = STATE(100), + [sym_throw_statement] = STATE(100), + [sym_try_statement] = STATE(100), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4928), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(3729), + [sym_user_defined_literal] = STATE(3435), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(189), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_case_statement_repeat1] = STATE(100), + [sym_identifier] = ACTIONS(1357), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(1304), - [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_typedef] = ACTIONS(1361), [anon_sym_extern] = ACTIONS(55), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), [anon_sym___declspec] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_LBRACK] = ACTIONS(970), + [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(974), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), @@ -44286,16 +46493,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(65), [anon_sym_struct] = ACTIONS(67), [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(958), - [anon_sym_switch] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1314), - [anon_sym_do] = ACTIONS(1316), - [anon_sym_for] = ACTIONS(1318), - [anon_sym_return] = ACTIONS(1320), - [anon_sym_break] = ACTIONS(1322), - [anon_sym_continue] = ACTIONS(1324), - [anon_sym_goto] = ACTIONS(1326), + [anon_sym_if] = ACTIONS(1365), + [anon_sym_else] = ACTIONS(978), + [anon_sym_switch] = ACTIONS(1367), + [anon_sym_while] = ACTIONS(1369), + [anon_sym_do] = ACTIONS(1371), + [anon_sym_for] = ACTIONS(1373), + [anon_sym_return] = ACTIONS(1375), + [anon_sym_break] = ACTIONS(1377), + [anon_sym_continue] = ACTIONS(1379), + [anon_sym_goto] = ACTIONS(1381), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -44318,12 +46527,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_decltype] = ACTIONS(107), [anon_sym_virtual] = ACTIONS(109), [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(1328), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(1383), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(1330), - [anon_sym_co_return] = ACTIONS(1332), - [anon_sym_co_yield] = ACTIONS(1334), + [anon_sym_throw] = ACTIONS(1385), + [anon_sym_co_return] = ACTIONS(1387), + [anon_sym_co_yield] = ACTIONS(1389), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -44331,101 +46540,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [96] = { - [sym_declaration] = STATE(98), - [sym_type_definition] = STATE(98), - [sym__declaration_modifiers] = STATE(1894), - [sym__declaration_specifiers] = STATE(3991), - [sym_attribute_specifier] = STATE(1894), - [sym_attribute_declaration] = STATE(1147), - [sym_ms_declspec_modifier] = STATE(1894), - [sym_compound_statement] = STATE(98), - [sym_storage_class_specifier] = STATE(1894), - [sym_type_qualifier] = STATE(1894), - [sym__type_specifier] = STATE(2596), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_attributed_statement] = STATE(98), - [sym_labeled_statement] = STATE(98), - [sym_expression_statement] = STATE(98), - [sym_if_statement] = STATE(98), - [sym_switch_statement] = STATE(98), - [sym_while_statement] = STATE(98), - [sym_do_statement] = STATE(98), - [sym_for_statement] = STATE(98), - [sym_return_statement] = STATE(98), - [sym_break_statement] = STATE(98), - [sym_continue_statement] = STATE(98), - [sym_goto_statement] = STATE(98), - [sym__expression] = STATE(3670), - [sym_comma_expression] = STATE(6450), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(1894), - [sym_dependent_type] = STATE(3139), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(98), - [sym_co_return_statement] = STATE(98), - [sym_co_yield_statement] = STATE(98), - [sym_throw_statement] = STATE(98), - [sym_try_statement] = STATE(98), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4625), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(3276), - [sym_user_defined_literal] = STATE(3428), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(244), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_case_statement_repeat1] = STATE(98), - [sym_identifier] = ACTIONS(1302), - [anon_sym_LPAREN2] = ACTIONS(960), + [100] = { + [sym_declaration] = STATE(97), + [sym_type_definition] = STATE(97), + [sym__declaration_modifiers] = STATE(2203), + [sym__declaration_specifiers] = STATE(4217), + [sym_attribute_specifier] = STATE(2203), + [sym_attribute_declaration] = STATE(1228), + [sym_ms_declspec_modifier] = STATE(2203), + [sym_compound_statement] = STATE(97), + [sym_storage_class_specifier] = STATE(2203), + [sym_type_qualifier] = STATE(2203), + [sym__type_specifier] = STATE(3251), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_attributed_statement] = STATE(97), + [sym_labeled_statement] = STATE(97), + [sym_expression_statement] = STATE(97), + [sym_if_statement] = STATE(97), + [sym_switch_statement] = STATE(97), + [sym_while_statement] = STATE(97), + [sym_do_statement] = STATE(97), + [sym_for_statement] = STATE(97), + [sym_return_statement] = STATE(97), + [sym_break_statement] = STATE(97), + [sym_continue_statement] = STATE(97), + [sym_goto_statement] = STATE(97), + [sym__expression] = STATE(3699), + [sym_comma_expression] = STATE(6868), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(2203), + [sym_dependent_type] = STATE(3481), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(97), + [sym_co_return_statement] = STATE(97), + [sym_co_yield_statement] = STATE(97), + [sym_throw_statement] = STATE(97), + [sym_try_statement] = STATE(97), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4928), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(3729), + [sym_user_defined_literal] = STATE(3435), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(189), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_case_statement_repeat1] = STATE(97), + [sym_identifier] = ACTIONS(1357), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(1304), - [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_typedef] = ACTIONS(1361), [anon_sym_extern] = ACTIONS(55), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), [anon_sym___declspec] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_LBRACK] = ACTIONS(970), + [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(974), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), @@ -44447,16 +46656,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(65), [anon_sym_struct] = ACTIONS(67), [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(978), - [anon_sym_switch] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1314), - [anon_sym_do] = ACTIONS(1316), - [anon_sym_for] = ACTIONS(1318), - [anon_sym_return] = ACTIONS(1320), - [anon_sym_break] = ACTIONS(1322), - [anon_sym_continue] = ACTIONS(1324), - [anon_sym_goto] = ACTIONS(1326), + [anon_sym_if] = ACTIONS(1365), + [anon_sym_else] = ACTIONS(962), + [anon_sym_switch] = ACTIONS(1367), + [anon_sym_while] = ACTIONS(1369), + [anon_sym_do] = ACTIONS(1371), + [anon_sym_for] = ACTIONS(1373), + [anon_sym_return] = ACTIONS(1375), + [anon_sym_break] = ACTIONS(1377), + [anon_sym_continue] = ACTIONS(1379), + [anon_sym_goto] = ACTIONS(1381), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -44479,12 +46690,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_decltype] = ACTIONS(107), [anon_sym_virtual] = ACTIONS(109), [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(1328), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(1383), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(1330), - [anon_sym_co_return] = ACTIONS(1332), - [anon_sym_co_yield] = ACTIONS(1334), + [anon_sym_throw] = ACTIONS(1385), + [anon_sym_co_return] = ACTIONS(1387), + [anon_sym_co_yield] = ACTIONS(1389), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -44492,101 +46703,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [97] = { - [sym_declaration] = STATE(95), - [sym_type_definition] = STATE(95), - [sym__declaration_modifiers] = STATE(1894), - [sym__declaration_specifiers] = STATE(3991), - [sym_attribute_specifier] = STATE(1894), - [sym_attribute_declaration] = STATE(1147), - [sym_ms_declspec_modifier] = STATE(1894), - [sym_compound_statement] = STATE(95), - [sym_storage_class_specifier] = STATE(1894), - [sym_type_qualifier] = STATE(1894), - [sym__type_specifier] = STATE(2596), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_attributed_statement] = STATE(95), - [sym_labeled_statement] = STATE(95), - [sym_expression_statement] = STATE(95), - [sym_if_statement] = STATE(95), - [sym_switch_statement] = STATE(95), - [sym_while_statement] = STATE(95), - [sym_do_statement] = STATE(95), - [sym_for_statement] = STATE(95), - [sym_return_statement] = STATE(95), - [sym_break_statement] = STATE(95), - [sym_continue_statement] = STATE(95), - [sym_goto_statement] = STATE(95), - [sym__expression] = STATE(3670), - [sym_comma_expression] = STATE(6450), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(1894), - [sym_dependent_type] = STATE(3139), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(95), - [sym_co_return_statement] = STATE(95), - [sym_co_yield_statement] = STATE(95), - [sym_throw_statement] = STATE(95), - [sym_try_statement] = STATE(95), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4625), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(3276), - [sym_user_defined_literal] = STATE(3428), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(244), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_case_statement_repeat1] = STATE(95), - [sym_identifier] = ACTIONS(1302), - [anon_sym_LPAREN2] = ACTIONS(960), + [101] = { + [sym_declaration] = STATE(97), + [sym_type_definition] = STATE(97), + [sym__declaration_modifiers] = STATE(2203), + [sym__declaration_specifiers] = STATE(4217), + [sym_attribute_specifier] = STATE(2203), + [sym_attribute_declaration] = STATE(1228), + [sym_ms_declspec_modifier] = STATE(2203), + [sym_compound_statement] = STATE(97), + [sym_storage_class_specifier] = STATE(2203), + [sym_type_qualifier] = STATE(2203), + [sym__type_specifier] = STATE(3251), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_attributed_statement] = STATE(97), + [sym_labeled_statement] = STATE(97), + [sym_expression_statement] = STATE(97), + [sym_if_statement] = STATE(97), + [sym_switch_statement] = STATE(97), + [sym_while_statement] = STATE(97), + [sym_do_statement] = STATE(97), + [sym_for_statement] = STATE(97), + [sym_return_statement] = STATE(97), + [sym_break_statement] = STATE(97), + [sym_continue_statement] = STATE(97), + [sym_goto_statement] = STATE(97), + [sym__expression] = STATE(3699), + [sym_comma_expression] = STATE(6868), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(2203), + [sym_dependent_type] = STATE(3481), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(97), + [sym_co_return_statement] = STATE(97), + [sym_co_yield_statement] = STATE(97), + [sym_throw_statement] = STATE(97), + [sym_try_statement] = STATE(97), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4928), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(3729), + [sym_user_defined_literal] = STATE(3435), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_attributed_declarator_repeat1] = STATE(189), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_case_statement_repeat1] = STATE(97), + [sym_identifier] = ACTIONS(1357), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(1304), - [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_typedef] = ACTIONS(1361), [anon_sym_extern] = ACTIONS(55), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), [anon_sym___declspec] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_LBRACK] = ACTIONS(970), + [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(974), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), @@ -44608,16 +46819,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(65), [anon_sym_struct] = ACTIONS(67), [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1139), - [anon_sym_switch] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1314), - [anon_sym_do] = ACTIONS(1316), - [anon_sym_for] = ACTIONS(1318), - [anon_sym_return] = ACTIONS(1320), - [anon_sym_break] = ACTIONS(1322), - [anon_sym_continue] = ACTIONS(1324), - [anon_sym_goto] = ACTIONS(1326), + [anon_sym_if] = ACTIONS(1365), + [anon_sym_else] = ACTIONS(982), + [anon_sym_switch] = ACTIONS(1367), + [anon_sym_while] = ACTIONS(1369), + [anon_sym_do] = ACTIONS(1371), + [anon_sym_for] = ACTIONS(1373), + [anon_sym_return] = ACTIONS(1375), + [anon_sym_break] = ACTIONS(1377), + [anon_sym_continue] = ACTIONS(1379), + [anon_sym_goto] = ACTIONS(1381), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -44640,12 +46853,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_decltype] = ACTIONS(107), [anon_sym_virtual] = ACTIONS(109), [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(1328), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(1383), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(1330), - [anon_sym_co_return] = ACTIONS(1332), - [anon_sym_co_yield] = ACTIONS(1334), + [anon_sym_throw] = ACTIONS(1385), + [anon_sym_co_return] = ACTIONS(1387), + [anon_sym_co_yield] = ACTIONS(1389), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -44653,101 +46866,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [98] = { - [sym_declaration] = STATE(99), - [sym_type_definition] = STATE(99), - [sym__declaration_modifiers] = STATE(1894), - [sym__declaration_specifiers] = STATE(3991), - [sym_attribute_specifier] = STATE(1894), - [sym_attribute_declaration] = STATE(1147), - [sym_ms_declspec_modifier] = STATE(1894), - [sym_compound_statement] = STATE(99), - [sym_storage_class_specifier] = STATE(1894), - [sym_type_qualifier] = STATE(1894), - [sym__type_specifier] = STATE(2596), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_attributed_statement] = STATE(99), - [sym_labeled_statement] = STATE(99), - [sym_expression_statement] = STATE(99), - [sym_if_statement] = STATE(99), - [sym_switch_statement] = STATE(99), - [sym_while_statement] = STATE(99), - [sym_do_statement] = STATE(99), - [sym_for_statement] = STATE(99), - [sym_return_statement] = STATE(99), - [sym_break_statement] = STATE(99), - [sym_continue_statement] = STATE(99), - [sym_goto_statement] = STATE(99), - [sym__expression] = STATE(3670), - [sym_comma_expression] = STATE(6450), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(1894), - [sym_dependent_type] = STATE(3139), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(99), - [sym_co_return_statement] = STATE(99), - [sym_co_yield_statement] = STATE(99), - [sym_throw_statement] = STATE(99), - [sym_try_statement] = STATE(99), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4625), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(3276), - [sym_user_defined_literal] = STATE(3428), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(244), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_case_statement_repeat1] = STATE(99), - [sym_identifier] = ACTIONS(1302), - [anon_sym_LPAREN2] = ACTIONS(960), + [102] = { + [sym_declaration] = STATE(1785), + [sym_type_definition] = STATE(1785), + [sym__declaration_modifiers] = STATE(2203), + [sym__declaration_specifiers] = STATE(4231), + [sym_attribute_specifier] = STATE(2203), + [sym_attribute_declaration] = STATE(2203), + [sym_ms_declspec_modifier] = STATE(2203), + [sym_storage_class_specifier] = STATE(2203), + [sym_type_qualifier] = STATE(2203), + [sym__type_specifier] = STATE(3251), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_expression_statement] = STATE(1785), + [sym__expression] = STATE(3595), + [sym_comma_expression] = STATE(6508), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(2203), + [sym_dependent_type] = STATE(3481), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3435), + [sym_alias_declaration] = STATE(1785), + [sym_init_statement] = STATE(122), + [sym_condition_declaration] = STATE(7005), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4928), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(3729), + [sym_user_defined_literal] = STATE(3435), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [sym_identifier] = ACTIONS(1391), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(1304), - [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_typedef] = ACTIONS(1361), [anon_sym_extern] = ACTIONS(55), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), [anon_sym___declspec] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_LBRACK] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(974), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), @@ -44769,16 +46965,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(65), [anon_sym_struct] = ACTIONS(67), [anon_sym_union] = ACTIONS(69), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(974), - [anon_sym_switch] = ACTIONS(1312), - [anon_sym_while] = ACTIONS(1314), - [anon_sym_do] = ACTIONS(1316), - [anon_sym_for] = ACTIONS(1318), - [anon_sym_return] = ACTIONS(1320), - [anon_sym_break] = ACTIONS(1322), - [anon_sym_continue] = ACTIONS(1324), - [anon_sym_goto] = ACTIONS(1326), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -44801,12 +46989,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_decltype] = ACTIONS(107), [anon_sym_virtual] = ACTIONS(109), [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(1328), + [anon_sym_template] = ACTIONS(976), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(1330), - [anon_sym_co_return] = ACTIONS(1332), - [anon_sym_co_yield] = ACTIONS(1334), + [anon_sym_using] = ACTIONS(1395), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -44814,376 +46999,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [99] = { - [sym_declaration] = STATE(99), - [sym_type_definition] = STATE(99), - [sym__declaration_modifiers] = STATE(1894), - [sym__declaration_specifiers] = STATE(3991), - [sym_attribute_specifier] = STATE(1894), - [sym_attribute_declaration] = STATE(1147), - [sym_ms_declspec_modifier] = STATE(1894), - [sym_compound_statement] = STATE(99), - [sym_storage_class_specifier] = STATE(1894), - [sym_type_qualifier] = STATE(1894), - [sym__type_specifier] = STATE(2596), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_attributed_statement] = STATE(99), - [sym_labeled_statement] = STATE(99), - [sym_expression_statement] = STATE(99), - [sym_if_statement] = STATE(99), - [sym_switch_statement] = STATE(99), - [sym_while_statement] = STATE(99), - [sym_do_statement] = STATE(99), - [sym_for_statement] = STATE(99), - [sym_return_statement] = STATE(99), - [sym_break_statement] = STATE(99), - [sym_continue_statement] = STATE(99), - [sym_goto_statement] = STATE(99), - [sym__expression] = STATE(3670), - [sym_comma_expression] = STATE(6450), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(1894), - [sym_dependent_type] = STATE(3139), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(99), - [sym_co_return_statement] = STATE(99), - [sym_co_yield_statement] = STATE(99), - [sym_throw_statement] = STATE(99), - [sym_try_statement] = STATE(99), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4625), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(3276), - [sym_user_defined_literal] = STATE(3428), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_attributed_declarator_repeat1] = STATE(244), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_case_statement_repeat1] = STATE(99), - [sym_identifier] = ACTIONS(1336), - [anon_sym_LPAREN2] = ACTIONS(987), - [anon_sym_BANG] = ACTIONS(990), - [anon_sym_TILDE] = ACTIONS(990), - [anon_sym_DASH] = ACTIONS(993), - [anon_sym_PLUS] = ACTIONS(993), - [anon_sym_STAR] = ACTIONS(996), - [anon_sym_AMP] = ACTIONS(996), - [anon_sym_SEMI] = ACTIONS(1339), - [anon_sym_typedef] = ACTIONS(1342), - [anon_sym_extern] = ACTIONS(1010), - [anon_sym___attribute__] = ACTIONS(1013), - [anon_sym_COLON_COLON] = ACTIONS(1016), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1019), - [anon_sym___declspec] = ACTIONS(1022), - [anon_sym_LBRACE] = ACTIONS(1345), - [anon_sym_LBRACK] = ACTIONS(1028), - [anon_sym_static] = ACTIONS(1010), - [anon_sym_register] = ACTIONS(1010), - [anon_sym_inline] = ACTIONS(1010), - [anon_sym_thread_local] = ACTIONS(1010), - [anon_sym_const] = ACTIONS(1031), - [anon_sym_volatile] = ACTIONS(1031), - [anon_sym_restrict] = ACTIONS(1031), - [anon_sym__Atomic] = ACTIONS(1031), - [anon_sym_mutable] = ACTIONS(1031), - [anon_sym_constexpr] = ACTIONS(1031), - [anon_sym_constinit] = ACTIONS(1031), - [anon_sym_consteval] = ACTIONS(1031), - [anon_sym_signed] = ACTIONS(1034), - [anon_sym_unsigned] = ACTIONS(1034), - [anon_sym_long] = ACTIONS(1034), - [anon_sym_short] = ACTIONS(1034), - [sym_primitive_type] = ACTIONS(1037), - [anon_sym_enum] = ACTIONS(1040), - [anon_sym_class] = ACTIONS(1043), - [anon_sym_struct] = ACTIONS(1046), - [anon_sym_union] = ACTIONS(1049), - [anon_sym_if] = ACTIONS(1348), - [anon_sym_else] = ACTIONS(985), - [anon_sym_switch] = ACTIONS(1351), - [anon_sym_while] = ACTIONS(1354), - [anon_sym_do] = ACTIONS(1357), - [anon_sym_for] = ACTIONS(1360), - [anon_sym_return] = ACTIONS(1363), - [anon_sym_break] = ACTIONS(1366), - [anon_sym_continue] = ACTIONS(1369), - [anon_sym_goto] = ACTIONS(1372), - [anon_sym_DASH_DASH] = ACTIONS(1079), - [anon_sym_PLUS_PLUS] = ACTIONS(1079), - [anon_sym_sizeof] = ACTIONS(1082), - [sym_number_literal] = ACTIONS(1085), - [anon_sym_L_SQUOTE] = ACTIONS(1088), - [anon_sym_u_SQUOTE] = ACTIONS(1088), - [anon_sym_U_SQUOTE] = ACTIONS(1088), - [anon_sym_u8_SQUOTE] = ACTIONS(1088), - [anon_sym_SQUOTE] = ACTIONS(1088), - [anon_sym_L_DQUOTE] = ACTIONS(1091), - [anon_sym_u_DQUOTE] = ACTIONS(1091), - [anon_sym_U_DQUOTE] = ACTIONS(1091), - [anon_sym_u8_DQUOTE] = ACTIONS(1091), - [anon_sym_DQUOTE] = ACTIONS(1091), - [sym_true] = ACTIONS(1094), - [sym_false] = ACTIONS(1094), - [sym_null] = ACTIONS(1094), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1097), - [anon_sym_decltype] = ACTIONS(1100), - [anon_sym_virtual] = ACTIONS(1103), - [anon_sym_typename] = ACTIONS(1106), - [anon_sym_template] = ACTIONS(1109), - [anon_sym_try] = ACTIONS(1375), - [anon_sym_delete] = ACTIONS(1115), - [anon_sym_throw] = ACTIONS(1378), - [anon_sym_co_return] = ACTIONS(1381), - [anon_sym_co_yield] = ACTIONS(1384), - [anon_sym_co_await] = ACTIONS(1127), - [anon_sym_new] = ACTIONS(1130), - [anon_sym_requires] = ACTIONS(1133), - [sym_this] = ACTIONS(1094), - [sym_nullptr] = ACTIONS(1094), - [sym_raw_string_literal] = ACTIONS(1136), - }, - [100] = { - [sym_declaration] = STATE(1728), - [sym_type_definition] = STATE(1728), - [sym__declaration_modifiers] = STATE(1894), - [sym__declaration_specifiers] = STATE(3966), - [sym_attribute_specifier] = STATE(1894), - [sym_attribute_declaration] = STATE(1894), - [sym_ms_declspec_modifier] = STATE(1894), - [sym_storage_class_specifier] = STATE(1894), - [sym_type_qualifier] = STATE(1894), - [sym__type_specifier] = STATE(2596), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_expression_statement] = STATE(1728), - [sym__expression] = STATE(3541), - [sym_comma_expression] = STATE(6376), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(1894), - [sym_dependent_type] = STATE(3139), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3428), - [sym_alias_declaration] = STATE(1728), - [sym_init_statement] = STATE(122), - [sym_condition_declaration] = STATE(6413), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4625), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(3276), - [sym_user_defined_literal] = STATE(3428), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [sym_identifier] = ACTIONS(1387), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(1304), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1389), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(970), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(105), - [anon_sym_decltype] = ACTIONS(107), - [anon_sym_virtual] = ACTIONS(109), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_using] = ACTIONS(1391), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), - }, - [101] = { - [sym_declaration] = STATE(1728), - [sym_type_definition] = STATE(1728), - [sym__declaration_modifiers] = STATE(1894), - [sym__declaration_specifiers] = STATE(3966), - [sym_attribute_specifier] = STATE(1894), - [sym_attribute_declaration] = STATE(1894), - [sym_ms_declspec_modifier] = STATE(1894), - [sym_storage_class_specifier] = STATE(1894), - [sym_type_qualifier] = STATE(1894), - [sym__type_specifier] = STATE(2596), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_expression_statement] = STATE(1728), - [sym__expression] = STATE(3530), - [sym_comma_expression] = STATE(6037), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(1894), - [sym_dependent_type] = STATE(3139), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3428), - [sym_alias_declaration] = STATE(1728), - [sym_init_statement] = STATE(126), - [sym_condition_declaration] = STATE(6805), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4625), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(3276), - [sym_user_defined_literal] = STATE(3428), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [sym_identifier] = ACTIONS(1387), - [anon_sym_LPAREN2] = ACTIONS(960), + [103] = { + [sym_declaration] = STATE(1785), + [sym_type_definition] = STATE(1785), + [sym__declaration_modifiers] = STATE(2203), + [sym__declaration_specifiers] = STATE(4231), + [sym_attribute_specifier] = STATE(2203), + [sym_attribute_declaration] = STATE(2203), + [sym_ms_declspec_modifier] = STATE(2203), + [sym_storage_class_specifier] = STATE(2203), + [sym_type_qualifier] = STATE(2203), + [sym__type_specifier] = STATE(3251), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_expression_statement] = STATE(1785), + [sym__expression] = STATE(3621), + [sym_comma_expression] = STATE(6520), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(2203), + [sym_dependent_type] = STATE(3481), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3435), + [sym_alias_declaration] = STATE(1785), + [sym_init_statement] = STATE(121), + [sym_condition_declaration] = STATE(7028), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4928), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(3729), + [sym_user_defined_literal] = STATE(3435), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [sym_identifier] = ACTIONS(1391), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(1304), - [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_typedef] = ACTIONS(1361), [anon_sym_extern] = ACTIONS(55), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1389), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), [anon_sym___declspec] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(974), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), @@ -45205,6 +47098,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(65), [anon_sym_struct] = ACTIONS(67), [anon_sym_union] = ACTIONS(69), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -45227,9 +47122,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_decltype] = ACTIONS(107), [anon_sym_virtual] = ACTIONS(109), [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(972), + [anon_sym_template] = ACTIONS(976), [anon_sym_delete] = ACTIONS(121), - [anon_sym_using] = ACTIONS(1391), + [anon_sym_using] = ACTIONS(1395), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -45237,83 +47132,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [102] = { - [sym_declaration] = STATE(1079), - [sym_type_definition] = STATE(3475), - [sym__declaration_modifiers] = STATE(1894), - [sym__declaration_specifiers] = STATE(3999), - [sym_attribute_specifier] = STATE(1894), - [sym_attribute_declaration] = STATE(1894), - [sym_ms_declspec_modifier] = STATE(1894), - [sym_storage_class_specifier] = STATE(1894), - [sym_type_qualifier] = STATE(1894), - [sym__type_specifier] = STATE(2596), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_expression_statement] = STATE(3475), - [sym__expression] = STATE(3724), - [sym_comma_expression] = STATE(6797), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(1894), - [sym_dependent_type] = STATE(3139), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3428), - [sym_alias_declaration] = STATE(3475), - [sym_init_statement] = STATE(1808), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4625), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(3276), - [sym_user_defined_literal] = STATE(3428), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [sym_identifier] = ACTIONS(1387), - [anon_sym_LPAREN2] = ACTIONS(960), + [104] = { + [sym_declaration] = STATE(1089), + [sym_type_definition] = STATE(4098), + [sym__declaration_modifiers] = STATE(2203), + [sym__declaration_specifiers] = STATE(4226), + [sym_attribute_specifier] = STATE(2203), + [sym_attribute_declaration] = STATE(2203), + [sym_ms_declspec_modifier] = STATE(2203), + [sym_storage_class_specifier] = STATE(2203), + [sym_type_qualifier] = STATE(2203), + [sym__type_specifier] = STATE(3251), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_expression_statement] = STATE(4098), + [sym__expression] = STATE(3678), + [sym_comma_expression] = STATE(7133), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(2203), + [sym_dependent_type] = STATE(3481), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3435), + [sym_alias_declaration] = STATE(4098), + [sym_init_statement] = STATE(2131), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4928), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(3729), + [sym_user_defined_literal] = STATE(3435), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [sym_identifier] = ACTIONS(1391), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(1393), - [anon_sym_typedef] = ACTIONS(1395), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1397), + [anon_sym_typedef] = ACTIONS(1399), [anon_sym_extern] = ACTIONS(55), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1389), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), [anon_sym___declspec] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(974), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), @@ -45335,6 +47230,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(65), [anon_sym_struct] = ACTIONS(67), [anon_sym_union] = ACTIONS(69), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -45357,9 +47254,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_decltype] = ACTIONS(107), [anon_sym_virtual] = ACTIONS(109), [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(972), + [anon_sym_template] = ACTIONS(976), [anon_sym_delete] = ACTIONS(121), - [anon_sym_using] = ACTIONS(1397), + [anon_sym_using] = ACTIONS(1401), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -45367,83 +47264,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [103] = { - [sym_declaration] = STATE(1080), - [sym_type_definition] = STATE(3475), - [sym__declaration_modifiers] = STATE(1894), - [sym__declaration_specifiers] = STATE(3976), - [sym_attribute_specifier] = STATE(1894), - [sym_attribute_declaration] = STATE(1894), - [sym_ms_declspec_modifier] = STATE(1894), - [sym_storage_class_specifier] = STATE(1894), - [sym_type_qualifier] = STATE(1894), - [sym__type_specifier] = STATE(2596), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_expression_statement] = STATE(3475), - [sym__expression] = STATE(3750), - [sym_comma_expression] = STATE(6767), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(1894), - [sym_dependent_type] = STATE(3139), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3428), - [sym_alias_declaration] = STATE(3475), - [sym_init_statement] = STATE(1816), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4625), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(3276), - [sym_user_defined_literal] = STATE(3428), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [sym_identifier] = ACTIONS(1387), - [anon_sym_LPAREN2] = ACTIONS(960), + [105] = { + [sym_declaration] = STATE(1090), + [sym_type_definition] = STATE(4098), + [sym__declaration_modifiers] = STATE(2203), + [sym__declaration_specifiers] = STATE(4228), + [sym_attribute_specifier] = STATE(2203), + [sym_attribute_declaration] = STATE(2203), + [sym_ms_declspec_modifier] = STATE(2203), + [sym_storage_class_specifier] = STATE(2203), + [sym_type_qualifier] = STATE(2203), + [sym__type_specifier] = STATE(3251), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_expression_statement] = STATE(4098), + [sym__expression] = STATE(3660), + [sym_comma_expression] = STATE(7205), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(2203), + [sym_dependent_type] = STATE(3481), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3435), + [sym_alias_declaration] = STATE(4098), + [sym_init_statement] = STATE(2069), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4928), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(3729), + [sym_user_defined_literal] = STATE(3435), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [sym_identifier] = ACTIONS(1391), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(1399), - [anon_sym_typedef] = ACTIONS(1395), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1403), + [anon_sym_typedef] = ACTIONS(1399), [anon_sym_extern] = ACTIONS(55), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1389), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), [anon_sym___declspec] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(974), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), @@ -45465,6 +47362,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(65), [anon_sym_struct] = ACTIONS(67), [anon_sym_union] = ACTIONS(69), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -45487,9 +47386,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_decltype] = ACTIONS(107), [anon_sym_virtual] = ACTIONS(109), [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(972), + [anon_sym_template] = ACTIONS(976), [anon_sym_delete] = ACTIONS(121), - [anon_sym_using] = ACTIONS(1397), + [anon_sym_using] = ACTIONS(1401), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -45497,83 +47396,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [104] = { - [sym_declaration] = STATE(1076), - [sym_type_definition] = STATE(3475), - [sym__declaration_modifiers] = STATE(1894), - [sym__declaration_specifiers] = STATE(3980), - [sym_attribute_specifier] = STATE(1894), - [sym_attribute_declaration] = STATE(1894), - [sym_ms_declspec_modifier] = STATE(1894), - [sym_storage_class_specifier] = STATE(1894), - [sym_type_qualifier] = STATE(1894), - [sym__type_specifier] = STATE(2596), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_expression_statement] = STATE(3475), - [sym__expression] = STATE(3593), - [sym_comma_expression] = STATE(6799), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(1894), - [sym_dependent_type] = STATE(3139), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3428), - [sym_alias_declaration] = STATE(3475), - [sym_init_statement] = STATE(1842), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4625), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(3276), - [sym_user_defined_literal] = STATE(3428), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [sym_identifier] = ACTIONS(1387), - [anon_sym_LPAREN2] = ACTIONS(960), + [106] = { + [sym_declaration] = STATE(1087), + [sym_type_definition] = STATE(4098), + [sym__declaration_modifiers] = STATE(2203), + [sym__declaration_specifiers] = STATE(4225), + [sym_attribute_specifier] = STATE(2203), + [sym_attribute_declaration] = STATE(2203), + [sym_ms_declspec_modifier] = STATE(2203), + [sym_storage_class_specifier] = STATE(2203), + [sym_type_qualifier] = STATE(2203), + [sym__type_specifier] = STATE(3251), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_expression_statement] = STATE(4098), + [sym__expression] = STATE(3741), + [sym_comma_expression] = STATE(7163), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(2203), + [sym_dependent_type] = STATE(3481), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3435), + [sym_alias_declaration] = STATE(4098), + [sym_init_statement] = STATE(2128), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4928), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(3729), + [sym_user_defined_literal] = STATE(3435), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [sym_identifier] = ACTIONS(1391), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(1401), - [anon_sym_typedef] = ACTIONS(1395), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1405), + [anon_sym_typedef] = ACTIONS(1399), [anon_sym_extern] = ACTIONS(55), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1389), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), [anon_sym___declspec] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(974), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), @@ -45595,6 +47494,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(65), [anon_sym_struct] = ACTIONS(67), [anon_sym_union] = ACTIONS(69), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -45617,9 +47518,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_decltype] = ACTIONS(107), [anon_sym_virtual] = ACTIONS(109), [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(972), + [anon_sym_template] = ACTIONS(976), [anon_sym_delete] = ACTIONS(121), - [anon_sym_using] = ACTIONS(1397), + [anon_sym_using] = ACTIONS(1401), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -45627,83 +47528,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [105] = { - [sym_declaration] = STATE(1069), - [sym_type_definition] = STATE(3475), - [sym__declaration_modifiers] = STATE(1894), - [sym__declaration_specifiers] = STATE(3971), - [sym_attribute_specifier] = STATE(1894), - [sym_attribute_declaration] = STATE(1894), - [sym_ms_declspec_modifier] = STATE(1894), - [sym_storage_class_specifier] = STATE(1894), - [sym_type_qualifier] = STATE(1894), - [sym__type_specifier] = STATE(2596), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_expression_statement] = STATE(3475), - [sym__expression] = STATE(3692), - [sym_comma_expression] = STATE(6628), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(1894), - [sym_dependent_type] = STATE(3139), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3428), - [sym_alias_declaration] = STATE(3475), - [sym_init_statement] = STATE(1881), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4625), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(3276), - [sym_user_defined_literal] = STATE(3428), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [sym_identifier] = ACTIONS(1387), - [anon_sym_LPAREN2] = ACTIONS(960), + [107] = { + [sym_declaration] = STATE(1094), + [sym_type_definition] = STATE(4098), + [sym__declaration_modifiers] = STATE(2203), + [sym__declaration_specifiers] = STATE(4241), + [sym_attribute_specifier] = STATE(2203), + [sym_attribute_declaration] = STATE(2203), + [sym_ms_declspec_modifier] = STATE(2203), + [sym_storage_class_specifier] = STATE(2203), + [sym_type_qualifier] = STATE(2203), + [sym__type_specifier] = STATE(3251), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_expression_statement] = STATE(4098), + [sym__expression] = STATE(3711), + [sym_comma_expression] = STATE(6994), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(2203), + [sym_dependent_type] = STATE(3481), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3435), + [sym_alias_declaration] = STATE(4098), + [sym_init_statement] = STATE(2124), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4928), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(3729), + [sym_user_defined_literal] = STATE(3435), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [sym_identifier] = ACTIONS(1391), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(1403), - [anon_sym_typedef] = ACTIONS(1395), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1407), + [anon_sym_typedef] = ACTIONS(1399), [anon_sym_extern] = ACTIONS(55), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1389), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), [anon_sym___declspec] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(974), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), @@ -45725,6 +47626,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(65), [anon_sym_struct] = ACTIONS(67), [anon_sym_union] = ACTIONS(69), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -45747,9 +47650,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_decltype] = ACTIONS(107), [anon_sym_virtual] = ACTIONS(109), [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(972), + [anon_sym_template] = ACTIONS(976), [anon_sym_delete] = ACTIONS(121), - [anon_sym_using] = ACTIONS(1397), + [anon_sym_using] = ACTIONS(1401), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -45757,83 +47660,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [106] = { - [sym_declaration] = STATE(1074), - [sym_type_definition] = STATE(3475), - [sym__declaration_modifiers] = STATE(1894), - [sym__declaration_specifiers] = STATE(4002), - [sym_attribute_specifier] = STATE(1894), - [sym_attribute_declaration] = STATE(1894), - [sym_ms_declspec_modifier] = STATE(1894), - [sym_storage_class_specifier] = STATE(1894), - [sym_type_qualifier] = STATE(1894), - [sym__type_specifier] = STATE(2596), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_expression_statement] = STATE(3475), - [sym__expression] = STATE(3678), - [sym_comma_expression] = STATE(6838), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(1894), - [sym_dependent_type] = STATE(3139), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3428), - [sym_alias_declaration] = STATE(3475), - [sym_init_statement] = STATE(1832), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4625), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(3276), - [sym_user_defined_literal] = STATE(3428), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [sym_identifier] = ACTIONS(1387), - [anon_sym_LPAREN2] = ACTIONS(960), + [108] = { + [sym_declaration] = STATE(1071), + [sym_type_definition] = STATE(4098), + [sym__declaration_modifiers] = STATE(2203), + [sym__declaration_specifiers] = STATE(4233), + [sym_attribute_specifier] = STATE(2203), + [sym_attribute_declaration] = STATE(2203), + [sym_ms_declspec_modifier] = STATE(2203), + [sym_storage_class_specifier] = STATE(2203), + [sym_type_qualifier] = STATE(2203), + [sym__type_specifier] = STATE(3251), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_expression_statement] = STATE(4098), + [sym__expression] = STATE(3787), + [sym_comma_expression] = STATE(7190), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(2203), + [sym_dependent_type] = STATE(3481), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3435), + [sym_alias_declaration] = STATE(4098), + [sym_init_statement] = STATE(2010), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4928), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(3729), + [sym_user_defined_literal] = STATE(3435), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [sym_identifier] = ACTIONS(1391), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(1405), - [anon_sym_typedef] = ACTIONS(1395), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1409), + [anon_sym_typedef] = ACTIONS(1399), [anon_sym_extern] = ACTIONS(55), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1389), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), [anon_sym___declspec] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(974), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), @@ -45855,6 +47758,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(65), [anon_sym_struct] = ACTIONS(67), [anon_sym_union] = ACTIONS(69), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -45877,9 +47782,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_decltype] = ACTIONS(107), [anon_sym_virtual] = ACTIONS(109), [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(972), + [anon_sym_template] = ACTIONS(976), [anon_sym_delete] = ACTIONS(121), - [anon_sym_using] = ACTIONS(1397), + [anon_sym_using] = ACTIONS(1401), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -45887,83 +47792,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [107] = { - [sym_declaration] = STATE(1064), - [sym_type_definition] = STATE(3475), - [sym__declaration_modifiers] = STATE(1894), - [sym__declaration_specifiers] = STATE(4001), - [sym_attribute_specifier] = STATE(1894), - [sym_attribute_declaration] = STATE(1894), - [sym_ms_declspec_modifier] = STATE(1894), - [sym_storage_class_specifier] = STATE(1894), - [sym_type_qualifier] = STATE(1894), - [sym__type_specifier] = STATE(2596), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_expression_statement] = STATE(3475), - [sym__expression] = STATE(3697), - [sym_comma_expression] = STATE(6824), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(1894), - [sym_dependent_type] = STATE(3139), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3428), - [sym_alias_declaration] = STATE(3475), - [sym_init_statement] = STATE(1804), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4625), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(3276), - [sym_user_defined_literal] = STATE(3428), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [sym_identifier] = ACTIONS(1387), - [anon_sym_LPAREN2] = ACTIONS(960), + [109] = { + [sym_declaration] = STATE(1077), + [sym_type_definition] = STATE(4098), + [sym__declaration_modifiers] = STATE(2203), + [sym__declaration_specifiers] = STATE(4254), + [sym_attribute_specifier] = STATE(2203), + [sym_attribute_declaration] = STATE(2203), + [sym_ms_declspec_modifier] = STATE(2203), + [sym_storage_class_specifier] = STATE(2203), + [sym_type_qualifier] = STATE(2203), + [sym__type_specifier] = STATE(3251), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_expression_statement] = STATE(4098), + [sym__expression] = STATE(3776), + [sym_comma_expression] = STATE(7025), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(2203), + [sym_dependent_type] = STATE(3481), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3435), + [sym_alias_declaration] = STATE(4098), + [sym_init_statement] = STATE(1987), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4928), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(3729), + [sym_user_defined_literal] = STATE(3435), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [sym_identifier] = ACTIONS(1391), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(1407), - [anon_sym_typedef] = ACTIONS(1395), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1411), + [anon_sym_typedef] = ACTIONS(1399), [anon_sym_extern] = ACTIONS(55), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1389), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), [anon_sym___declspec] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(974), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), @@ -45985,6 +47890,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(65), [anon_sym_struct] = ACTIONS(67), [anon_sym_union] = ACTIONS(69), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -46007,9 +47914,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_decltype] = ACTIONS(107), [anon_sym_virtual] = ACTIONS(109), [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(972), + [anon_sym_template] = ACTIONS(976), [anon_sym_delete] = ACTIONS(121), - [anon_sym_using] = ACTIONS(1397), + [anon_sym_using] = ACTIONS(1401), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -46017,212 +47924,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [108] = { - [sym__declaration_modifiers] = STATE(1892), - [sym__declaration_specifiers] = STATE(2998), - [sym_attribute_specifier] = STATE(1892), - [sym_attribute_declaration] = STATE(1892), - [sym_ms_declspec_modifier] = STATE(1892), - [sym_storage_class_specifier] = STATE(1892), - [sym_type_qualifier] = STATE(1892), - [sym__type_specifier] = STATE(2596), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_parameter_declaration] = STATE(5680), - [sym__expression] = STATE(2514), - [sym_conditional_expression] = STATE(2765), - [sym_assignment_expression] = STATE(2765), - [sym_pointer_expression] = STATE(2827), - [sym_unary_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_update_expression] = STATE(2765), - [sym_cast_expression] = STATE(2765), - [sym_sizeof_expression] = STATE(2765), - [sym_subscript_expression] = STATE(2827), - [sym_call_expression] = STATE(2827), - [sym_field_expression] = STATE(2827), - [sym_compound_literal_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2827), - [sym_char_literal] = STATE(2674), - [sym_concatenated_string] = STATE(2674), - [sym_string_literal] = STATE(2093), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6297), - [sym_virtual_function_specifier] = STATE(1892), - [sym_dependent_type] = STATE(3139), - [sym_optional_parameter_declaration] = STATE(5680), - [sym_variadic_parameter_declaration] = STATE(5680), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(2765), - [sym_co_await_expression] = STATE(2765), - [sym_new_expression] = STATE(2765), - [sym_delete_expression] = STATE(2765), - [sym_requires_clause] = STATE(2765), - [sym_requires_expression] = STATE(2765), - [sym_lambda_expression] = STATE(2765), - [sym_lambda_capture_specifier] = STATE(4512), - [sym__unary_left_fold] = STATE(6598), - [sym__unary_right_fold] = STATE(6600), - [sym__binary_fold] = STATE(6603), - [sym_fold_expression] = STATE(2765), - [sym_parameter_pack_expansion] = STATE(2765), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4640), - [sym_qualified_identifier] = STATE(2827), - [sym_qualified_type_identifier] = STATE(3276), - [sym_user_defined_literal] = STATE(2765), - [aux_sym__declaration_specifiers_repeat1] = STATE(1892), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [sym_identifier] = ACTIONS(1409), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1411), - [anon_sym_RPAREN] = ACTIONS(1413), - [anon_sym_LPAREN2] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1417), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1423), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1389), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(970), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(1425), - [anon_sym_enum] = ACTIONS(1427), - [anon_sym_class] = ACTIONS(1429), - [anon_sym_struct] = ACTIONS(1431), - [anon_sym_union] = ACTIONS(1433), - [anon_sym_DASH_DASH] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [anon_sym_sizeof] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(1439), - [anon_sym_L_SQUOTE] = ACTIONS(1441), - [anon_sym_u_SQUOTE] = ACTIONS(1441), - [anon_sym_U_SQUOTE] = ACTIONS(1441), - [anon_sym_u8_SQUOTE] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1441), - [anon_sym_L_DQUOTE] = ACTIONS(1443), - [anon_sym_u_DQUOTE] = ACTIONS(1443), - [anon_sym_U_DQUOTE] = ACTIONS(1443), - [anon_sym_u8_DQUOTE] = ACTIONS(1443), - [anon_sym_DQUOTE] = ACTIONS(1443), - [sym_true] = ACTIONS(1445), - [sym_false] = ACTIONS(1445), - [sym_null] = ACTIONS(1445), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(105), - [anon_sym_decltype] = ACTIONS(107), - [anon_sym_virtual] = ACTIONS(109), - [anon_sym_typename] = ACTIONS(1447), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_co_await] = ACTIONS(1451), - [anon_sym_new] = ACTIONS(1453), - [anon_sym_requires] = ACTIONS(1455), - [sym_this] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(1445), - [sym_raw_string_literal] = ACTIONS(1457), - }, - [109] = { - [sym__declaration_modifiers] = STATE(1892), - [sym__declaration_specifiers] = STATE(2998), - [sym_attribute_specifier] = STATE(1892), - [sym_attribute_declaration] = STATE(1892), - [sym_ms_declspec_modifier] = STATE(1892), - [sym_storage_class_specifier] = STATE(1892), - [sym_type_qualifier] = STATE(1892), - [sym__type_specifier] = STATE(2596), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_parameter_declaration] = STATE(5680), - [sym__expression] = STATE(2334), - [sym_conditional_expression] = STATE(2765), - [sym_assignment_expression] = STATE(2765), - [sym_pointer_expression] = STATE(2827), - [sym_unary_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_update_expression] = STATE(2765), - [sym_cast_expression] = STATE(2765), - [sym_sizeof_expression] = STATE(2765), - [sym_subscript_expression] = STATE(2827), - [sym_call_expression] = STATE(2827), - [sym_field_expression] = STATE(2827), - [sym_compound_literal_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2827), - [sym_char_literal] = STATE(2674), - [sym_concatenated_string] = STATE(2674), - [sym_string_literal] = STATE(2093), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6297), - [sym_virtual_function_specifier] = STATE(1892), - [sym_dependent_type] = STATE(3139), - [sym_optional_parameter_declaration] = STATE(5680), - [sym_variadic_parameter_declaration] = STATE(5680), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(2765), - [sym_co_await_expression] = STATE(2765), - [sym_new_expression] = STATE(2765), - [sym_delete_expression] = STATE(2765), - [sym_requires_clause] = STATE(2765), - [sym_requires_expression] = STATE(2765), - [sym_lambda_expression] = STATE(2765), - [sym_lambda_capture_specifier] = STATE(4512), - [sym__unary_left_fold] = STATE(6786), - [sym__unary_right_fold] = STATE(6787), - [sym__binary_fold] = STATE(6789), - [sym_fold_expression] = STATE(2765), - [sym_parameter_pack_expansion] = STATE(2765), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4640), - [sym_qualified_identifier] = STATE(2827), - [sym_qualified_type_identifier] = STATE(3276), - [sym_user_defined_literal] = STATE(2765), - [aux_sym__declaration_specifiers_repeat1] = STATE(1892), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [sym_identifier] = ACTIONS(1409), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1411), - [anon_sym_RPAREN] = ACTIONS(1413), - [anon_sym_LPAREN2] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1417), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(1421), + [110] = { + [sym__declaration_modifiers] = STATE(2175), + [sym__declaration_specifiers] = STATE(3387), + [sym_attribute_specifier] = STATE(2175), + [sym_attribute_declaration] = STATE(2175), + [sym_ms_declspec_modifier] = STATE(2175), + [sym_storage_class_specifier] = STATE(2175), + [sym_type_qualifier] = STATE(2175), + [sym__type_specifier] = STATE(3251), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_parameter_declaration] = STATE(5863), + [sym__expression] = STATE(2716), + [sym_conditional_expression] = STATE(3135), + [sym_assignment_expression] = STATE(3135), + [sym_pointer_expression] = STATE(2788), + [sym_unary_expression] = STATE(3135), + [sym_binary_expression] = STATE(3135), + [sym_update_expression] = STATE(3135), + [sym_cast_expression] = STATE(3135), + [sym_sizeof_expression] = STATE(3135), + [sym_subscript_expression] = STATE(2788), + [sym_call_expression] = STATE(2788), + [sym_field_expression] = STATE(2788), + [sym_compound_literal_expression] = STATE(3135), + [sym_parenthesized_expression] = STATE(2788), + [sym_char_literal] = STATE(2981), + [sym_concatenated_string] = STATE(2981), + [sym_string_literal] = STATE(1970), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6450), + [sym_virtual_function_specifier] = STATE(2175), + [sym_dependent_type] = STATE(3481), + [sym_optional_parameter_declaration] = STATE(5863), + [sym_variadic_parameter_declaration] = STATE(5863), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3135), + [sym_co_await_expression] = STATE(3135), + [sym_new_expression] = STATE(3135), + [sym_delete_expression] = STATE(3135), + [sym_requires_clause] = STATE(3135), + [sym_requires_expression] = STATE(3135), + [sym_lambda_expression] = STATE(3135), + [sym_lambda_capture_specifier] = STATE(4771), + [sym__unary_left_fold] = STATE(6945), + [sym__unary_right_fold] = STATE(6946), + [sym__binary_fold] = STATE(6947), + [sym_fold_expression] = STATE(3135), + [sym_parameter_pack_expansion] = STATE(3135), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4910), + [sym_qualified_identifier] = STATE(2788), + [sym_qualified_type_identifier] = STATE(3729), + [sym_user_defined_literal] = STATE(3135), + [aux_sym__declaration_specifiers_repeat1] = STATE(2175), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [sym_identifier] = ACTIONS(1413), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), + [anon_sym_RPAREN] = ACTIONS(1417), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), [anon_sym_extern] = ACTIONS(55), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1423), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1389), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), [anon_sym___declspec] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(974), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), @@ -46239,119 +48017,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(1425), - [anon_sym_enum] = ACTIONS(1427), - [anon_sym_class] = ACTIONS(1429), - [anon_sym_struct] = ACTIONS(1431), - [anon_sym_union] = ACTIONS(1433), - [anon_sym_DASH_DASH] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [anon_sym_sizeof] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(1439), - [anon_sym_L_SQUOTE] = ACTIONS(1441), - [anon_sym_u_SQUOTE] = ACTIONS(1441), - [anon_sym_U_SQUOTE] = ACTIONS(1441), - [anon_sym_u8_SQUOTE] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1441), - [anon_sym_L_DQUOTE] = ACTIONS(1443), - [anon_sym_u_DQUOTE] = ACTIONS(1443), - [anon_sym_U_DQUOTE] = ACTIONS(1443), - [anon_sym_u8_DQUOTE] = ACTIONS(1443), - [anon_sym_DQUOTE] = ACTIONS(1443), - [sym_true] = ACTIONS(1445), - [sym_false] = ACTIONS(1445), - [sym_null] = ACTIONS(1445), + [sym_primitive_type] = ACTIONS(1429), + [anon_sym_enum] = ACTIONS(1431), + [anon_sym_class] = ACTIONS(1433), + [anon_sym_struct] = ACTIONS(1435), + [anon_sym_union] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(105), [anon_sym_decltype] = ACTIONS(107), [anon_sym_virtual] = ACTIONS(109), - [anon_sym_typename] = ACTIONS(1447), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_co_await] = ACTIONS(1451), - [anon_sym_new] = ACTIONS(1453), - [anon_sym_requires] = ACTIONS(1455), - [sym_this] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(1445), - [sym_raw_string_literal] = ACTIONS(1457), + [anon_sym_typename] = ACTIONS(1451), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_co_await] = ACTIONS(1455), + [anon_sym_new] = ACTIONS(1457), + [anon_sym_requires] = ACTIONS(1459), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + [sym_raw_string_literal] = ACTIONS(1461), }, - [110] = { - [sym__declaration_modifiers] = STATE(1892), - [sym__declaration_specifiers] = STATE(2998), - [sym_attribute_specifier] = STATE(1892), - [sym_attribute_declaration] = STATE(1892), - [sym_ms_declspec_modifier] = STATE(1892), - [sym_storage_class_specifier] = STATE(1892), - [sym_type_qualifier] = STATE(1892), - [sym__type_specifier] = STATE(2596), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_parameter_declaration] = STATE(5680), - [sym__expression] = STATE(2516), - [sym_conditional_expression] = STATE(2765), - [sym_assignment_expression] = STATE(2765), - [sym_pointer_expression] = STATE(2827), - [sym_unary_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_update_expression] = STATE(2765), - [sym_cast_expression] = STATE(2765), - [sym_sizeof_expression] = STATE(2765), - [sym_subscript_expression] = STATE(2827), - [sym_call_expression] = STATE(2827), - [sym_field_expression] = STATE(2827), - [sym_compound_literal_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2827), - [sym_char_literal] = STATE(2674), - [sym_concatenated_string] = STATE(2674), - [sym_string_literal] = STATE(2093), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6297), - [sym_virtual_function_specifier] = STATE(1892), - [sym_dependent_type] = STATE(3139), - [sym_optional_parameter_declaration] = STATE(5680), - [sym_variadic_parameter_declaration] = STATE(5680), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(2765), - [sym_co_await_expression] = STATE(2765), - [sym_new_expression] = STATE(2765), - [sym_delete_expression] = STATE(2765), - [sym_requires_clause] = STATE(2765), - [sym_requires_expression] = STATE(2765), - [sym_lambda_expression] = STATE(2765), - [sym_lambda_capture_specifier] = STATE(4512), - [sym__unary_left_fold] = STATE(6567), - [sym__unary_right_fold] = STATE(6566), - [sym__binary_fold] = STATE(6564), - [sym_fold_expression] = STATE(2765), - [sym_parameter_pack_expansion] = STATE(2765), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4640), - [sym_qualified_identifier] = STATE(2827), - [sym_qualified_type_identifier] = STATE(3276), - [sym_user_defined_literal] = STATE(2765), - [aux_sym__declaration_specifiers_repeat1] = STATE(1892), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [sym_identifier] = ACTIONS(1409), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1411), - [anon_sym_RPAREN] = ACTIONS(1413), - [anon_sym_LPAREN2] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1417), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(1421), + [111] = { + [sym__declaration_modifiers] = STATE(2175), + [sym__declaration_specifiers] = STATE(3387), + [sym_attribute_specifier] = STATE(2175), + [sym_attribute_declaration] = STATE(2175), + [sym_ms_declspec_modifier] = STATE(2175), + [sym_storage_class_specifier] = STATE(2175), + [sym_type_qualifier] = STATE(2175), + [sym__type_specifier] = STATE(3251), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_parameter_declaration] = STATE(5863), + [sym__expression] = STATE(2802), + [sym_conditional_expression] = STATE(3135), + [sym_assignment_expression] = STATE(3135), + [sym_pointer_expression] = STATE(2788), + [sym_unary_expression] = STATE(3135), + [sym_binary_expression] = STATE(3135), + [sym_update_expression] = STATE(3135), + [sym_cast_expression] = STATE(3135), + [sym_sizeof_expression] = STATE(3135), + [sym_subscript_expression] = STATE(2788), + [sym_call_expression] = STATE(2788), + [sym_field_expression] = STATE(2788), + [sym_compound_literal_expression] = STATE(3135), + [sym_parenthesized_expression] = STATE(2788), + [sym_char_literal] = STATE(2981), + [sym_concatenated_string] = STATE(2981), + [sym_string_literal] = STATE(1970), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6450), + [sym_virtual_function_specifier] = STATE(2175), + [sym_dependent_type] = STATE(3481), + [sym_optional_parameter_declaration] = STATE(5863), + [sym_variadic_parameter_declaration] = STATE(5863), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3135), + [sym_co_await_expression] = STATE(3135), + [sym_new_expression] = STATE(3135), + [sym_delete_expression] = STATE(3135), + [sym_requires_clause] = STATE(3135), + [sym_requires_expression] = STATE(3135), + [sym_lambda_expression] = STATE(3135), + [sym_lambda_capture_specifier] = STATE(4771), + [sym__unary_left_fold] = STATE(7192), + [sym__unary_right_fold] = STATE(7193), + [sym__binary_fold] = STATE(7194), + [sym_fold_expression] = STATE(3135), + [sym_parameter_pack_expansion] = STATE(3135), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4910), + [sym_qualified_identifier] = STATE(2788), + [sym_qualified_type_identifier] = STATE(3729), + [sym_user_defined_literal] = STATE(3135), + [aux_sym__declaration_specifiers_repeat1] = STATE(2175), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [sym_identifier] = ACTIONS(1413), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), + [anon_sym_RPAREN] = ACTIONS(1417), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), [anon_sym_extern] = ACTIONS(55), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1423), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1389), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), [anon_sym___declspec] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(974), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), @@ -46368,119 +48148,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(1425), - [anon_sym_enum] = ACTIONS(1427), - [anon_sym_class] = ACTIONS(1429), - [anon_sym_struct] = ACTIONS(1431), - [anon_sym_union] = ACTIONS(1433), - [anon_sym_DASH_DASH] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [anon_sym_sizeof] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(1439), - [anon_sym_L_SQUOTE] = ACTIONS(1441), - [anon_sym_u_SQUOTE] = ACTIONS(1441), - [anon_sym_U_SQUOTE] = ACTIONS(1441), - [anon_sym_u8_SQUOTE] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1441), - [anon_sym_L_DQUOTE] = ACTIONS(1443), - [anon_sym_u_DQUOTE] = ACTIONS(1443), - [anon_sym_U_DQUOTE] = ACTIONS(1443), - [anon_sym_u8_DQUOTE] = ACTIONS(1443), - [anon_sym_DQUOTE] = ACTIONS(1443), - [sym_true] = ACTIONS(1445), - [sym_false] = ACTIONS(1445), - [sym_null] = ACTIONS(1445), + [sym_primitive_type] = ACTIONS(1429), + [anon_sym_enum] = ACTIONS(1431), + [anon_sym_class] = ACTIONS(1433), + [anon_sym_struct] = ACTIONS(1435), + [anon_sym_union] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(105), [anon_sym_decltype] = ACTIONS(107), [anon_sym_virtual] = ACTIONS(109), - [anon_sym_typename] = ACTIONS(1447), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_co_await] = ACTIONS(1451), - [anon_sym_new] = ACTIONS(1453), - [anon_sym_requires] = ACTIONS(1455), - [sym_this] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(1445), - [sym_raw_string_literal] = ACTIONS(1457), + [anon_sym_typename] = ACTIONS(1451), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_co_await] = ACTIONS(1455), + [anon_sym_new] = ACTIONS(1457), + [anon_sym_requires] = ACTIONS(1459), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + [sym_raw_string_literal] = ACTIONS(1461), }, - [111] = { - [sym__declaration_modifiers] = STATE(1892), - [sym__declaration_specifiers] = STATE(2998), - [sym_attribute_specifier] = STATE(1892), - [sym_attribute_declaration] = STATE(1892), - [sym_ms_declspec_modifier] = STATE(1892), - [sym_storage_class_specifier] = STATE(1892), - [sym_type_qualifier] = STATE(1892), - [sym__type_specifier] = STATE(2596), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_parameter_declaration] = STATE(5680), - [sym__expression] = STATE(2496), - [sym_conditional_expression] = STATE(2765), - [sym_assignment_expression] = STATE(2765), - [sym_pointer_expression] = STATE(2827), - [sym_unary_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_update_expression] = STATE(2765), - [sym_cast_expression] = STATE(2765), - [sym_sizeof_expression] = STATE(2765), - [sym_subscript_expression] = STATE(2827), - [sym_call_expression] = STATE(2827), - [sym_field_expression] = STATE(2827), - [sym_compound_literal_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2827), - [sym_char_literal] = STATE(2674), - [sym_concatenated_string] = STATE(2674), - [sym_string_literal] = STATE(2093), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6297), - [sym_virtual_function_specifier] = STATE(1892), - [sym_dependent_type] = STATE(3139), - [sym_optional_parameter_declaration] = STATE(5680), - [sym_variadic_parameter_declaration] = STATE(5680), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(2765), - [sym_co_await_expression] = STATE(2765), - [sym_new_expression] = STATE(2765), - [sym_delete_expression] = STATE(2765), - [sym_requires_clause] = STATE(2765), - [sym_requires_expression] = STATE(2765), - [sym_lambda_expression] = STATE(2765), - [sym_lambda_capture_specifier] = STATE(4512), - [sym__unary_left_fold] = STATE(6907), - [sym__unary_right_fold] = STATE(6913), - [sym__binary_fold] = STATE(6914), - [sym_fold_expression] = STATE(2765), - [sym_parameter_pack_expansion] = STATE(2765), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4640), - [sym_qualified_identifier] = STATE(2827), - [sym_qualified_type_identifier] = STATE(3276), - [sym_user_defined_literal] = STATE(2765), - [aux_sym__declaration_specifiers_repeat1] = STATE(1892), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [sym_identifier] = ACTIONS(1409), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1411), - [anon_sym_RPAREN] = ACTIONS(1413), - [anon_sym_LPAREN2] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1417), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(1421), + [112] = { + [sym__declaration_modifiers] = STATE(2175), + [sym__declaration_specifiers] = STATE(3387), + [sym_attribute_specifier] = STATE(2175), + [sym_attribute_declaration] = STATE(2175), + [sym_ms_declspec_modifier] = STATE(2175), + [sym_storage_class_specifier] = STATE(2175), + [sym_type_qualifier] = STATE(2175), + [sym__type_specifier] = STATE(3251), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_parameter_declaration] = STATE(5863), + [sym__expression] = STATE(2782), + [sym_conditional_expression] = STATE(3135), + [sym_assignment_expression] = STATE(3135), + [sym_pointer_expression] = STATE(2788), + [sym_unary_expression] = STATE(3135), + [sym_binary_expression] = STATE(3135), + [sym_update_expression] = STATE(3135), + [sym_cast_expression] = STATE(3135), + [sym_sizeof_expression] = STATE(3135), + [sym_subscript_expression] = STATE(2788), + [sym_call_expression] = STATE(2788), + [sym_field_expression] = STATE(2788), + [sym_compound_literal_expression] = STATE(3135), + [sym_parenthesized_expression] = STATE(2788), + [sym_char_literal] = STATE(2981), + [sym_concatenated_string] = STATE(2981), + [sym_string_literal] = STATE(1970), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6450), + [sym_virtual_function_specifier] = STATE(2175), + [sym_dependent_type] = STATE(3481), + [sym_optional_parameter_declaration] = STATE(5863), + [sym_variadic_parameter_declaration] = STATE(5863), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3135), + [sym_co_await_expression] = STATE(3135), + [sym_new_expression] = STATE(3135), + [sym_delete_expression] = STATE(3135), + [sym_requires_clause] = STATE(3135), + [sym_requires_expression] = STATE(3135), + [sym_lambda_expression] = STATE(3135), + [sym_lambda_capture_specifier] = STATE(4771), + [sym__unary_left_fold] = STATE(7167), + [sym__unary_right_fold] = STATE(7166), + [sym__binary_fold] = STATE(7158), + [sym_fold_expression] = STATE(3135), + [sym_parameter_pack_expansion] = STATE(3135), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4910), + [sym_qualified_identifier] = STATE(2788), + [sym_qualified_type_identifier] = STATE(3729), + [sym_user_defined_literal] = STATE(3135), + [aux_sym__declaration_specifiers_repeat1] = STATE(2175), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [sym_identifier] = ACTIONS(1413), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), + [anon_sym_RPAREN] = ACTIONS(1417), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), [anon_sym_extern] = ACTIONS(55), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1423), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1389), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), [anon_sym___declspec] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(974), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), @@ -46497,119 +48279,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(1425), - [anon_sym_enum] = ACTIONS(1427), - [anon_sym_class] = ACTIONS(1429), - [anon_sym_struct] = ACTIONS(1431), - [anon_sym_union] = ACTIONS(1433), - [anon_sym_DASH_DASH] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [anon_sym_sizeof] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(1439), - [anon_sym_L_SQUOTE] = ACTIONS(1441), - [anon_sym_u_SQUOTE] = ACTIONS(1441), - [anon_sym_U_SQUOTE] = ACTIONS(1441), - [anon_sym_u8_SQUOTE] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1441), - [anon_sym_L_DQUOTE] = ACTIONS(1443), - [anon_sym_u_DQUOTE] = ACTIONS(1443), - [anon_sym_U_DQUOTE] = ACTIONS(1443), - [anon_sym_u8_DQUOTE] = ACTIONS(1443), - [anon_sym_DQUOTE] = ACTIONS(1443), - [sym_true] = ACTIONS(1445), - [sym_false] = ACTIONS(1445), - [sym_null] = ACTIONS(1445), + [sym_primitive_type] = ACTIONS(1429), + [anon_sym_enum] = ACTIONS(1431), + [anon_sym_class] = ACTIONS(1433), + [anon_sym_struct] = ACTIONS(1435), + [anon_sym_union] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(105), [anon_sym_decltype] = ACTIONS(107), [anon_sym_virtual] = ACTIONS(109), - [anon_sym_typename] = ACTIONS(1447), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_co_await] = ACTIONS(1451), - [anon_sym_new] = ACTIONS(1453), - [anon_sym_requires] = ACTIONS(1455), - [sym_this] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(1445), - [sym_raw_string_literal] = ACTIONS(1457), + [anon_sym_typename] = ACTIONS(1451), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_co_await] = ACTIONS(1455), + [anon_sym_new] = ACTIONS(1457), + [anon_sym_requires] = ACTIONS(1459), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + [sym_raw_string_literal] = ACTIONS(1461), }, - [112] = { - [sym__declaration_modifiers] = STATE(1892), - [sym__declaration_specifiers] = STATE(2998), - [sym_attribute_specifier] = STATE(1892), - [sym_attribute_declaration] = STATE(1892), - [sym_ms_declspec_modifier] = STATE(1892), - [sym_storage_class_specifier] = STATE(1892), - [sym_type_qualifier] = STATE(1892), - [sym__type_specifier] = STATE(2596), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_parameter_declaration] = STATE(5680), - [sym__expression] = STATE(2380), - [sym_conditional_expression] = STATE(2765), - [sym_assignment_expression] = STATE(2765), - [sym_pointer_expression] = STATE(2827), - [sym_unary_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_update_expression] = STATE(2765), - [sym_cast_expression] = STATE(2765), - [sym_sizeof_expression] = STATE(2765), - [sym_subscript_expression] = STATE(2827), - [sym_call_expression] = STATE(2827), - [sym_field_expression] = STATE(2827), - [sym_compound_literal_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2827), - [sym_char_literal] = STATE(2674), - [sym_concatenated_string] = STATE(2674), - [sym_string_literal] = STATE(2093), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6297), - [sym_virtual_function_specifier] = STATE(1892), - [sym_dependent_type] = STATE(3139), - [sym_optional_parameter_declaration] = STATE(5680), - [sym_variadic_parameter_declaration] = STATE(5680), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(2765), - [sym_co_await_expression] = STATE(2765), - [sym_new_expression] = STATE(2765), - [sym_delete_expression] = STATE(2765), - [sym_requires_clause] = STATE(2765), - [sym_requires_expression] = STATE(2765), - [sym_lambda_expression] = STATE(2765), - [sym_lambda_capture_specifier] = STATE(4512), - [sym__unary_left_fold] = STATE(6480), - [sym__unary_right_fold] = STATE(6479), - [sym__binary_fold] = STATE(6474), - [sym_fold_expression] = STATE(2765), - [sym_parameter_pack_expansion] = STATE(2765), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4640), - [sym_qualified_identifier] = STATE(2827), - [sym_qualified_type_identifier] = STATE(3276), - [sym_user_defined_literal] = STATE(2765), - [aux_sym__declaration_specifiers_repeat1] = STATE(1892), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [sym_identifier] = ACTIONS(1409), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1411), - [anon_sym_RPAREN] = ACTIONS(1413), - [anon_sym_LPAREN2] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1417), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(1421), + [113] = { + [sym__declaration_modifiers] = STATE(2175), + [sym__declaration_specifiers] = STATE(3387), + [sym_attribute_specifier] = STATE(2175), + [sym_attribute_declaration] = STATE(2175), + [sym_ms_declspec_modifier] = STATE(2175), + [sym_storage_class_specifier] = STATE(2175), + [sym_type_qualifier] = STATE(2175), + [sym__type_specifier] = STATE(3251), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_parameter_declaration] = STATE(5863), + [sym__expression] = STATE(2905), + [sym_conditional_expression] = STATE(3135), + [sym_assignment_expression] = STATE(3135), + [sym_pointer_expression] = STATE(2788), + [sym_unary_expression] = STATE(3135), + [sym_binary_expression] = STATE(3135), + [sym_update_expression] = STATE(3135), + [sym_cast_expression] = STATE(3135), + [sym_sizeof_expression] = STATE(3135), + [sym_subscript_expression] = STATE(2788), + [sym_call_expression] = STATE(2788), + [sym_field_expression] = STATE(2788), + [sym_compound_literal_expression] = STATE(3135), + [sym_parenthesized_expression] = STATE(2788), + [sym_char_literal] = STATE(2981), + [sym_concatenated_string] = STATE(2981), + [sym_string_literal] = STATE(1970), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6450), + [sym_virtual_function_specifier] = STATE(2175), + [sym_dependent_type] = STATE(3481), + [sym_optional_parameter_declaration] = STATE(5863), + [sym_variadic_parameter_declaration] = STATE(5863), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3135), + [sym_co_await_expression] = STATE(3135), + [sym_new_expression] = STATE(3135), + [sym_delete_expression] = STATE(3135), + [sym_requires_clause] = STATE(3135), + [sym_requires_expression] = STATE(3135), + [sym_lambda_expression] = STATE(3135), + [sym_lambda_capture_specifier] = STATE(4771), + [sym__unary_left_fold] = STATE(7218), + [sym__unary_right_fold] = STATE(7214), + [sym__binary_fold] = STATE(7213), + [sym_fold_expression] = STATE(3135), + [sym_parameter_pack_expansion] = STATE(3135), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4910), + [sym_qualified_identifier] = STATE(2788), + [sym_qualified_type_identifier] = STATE(3729), + [sym_user_defined_literal] = STATE(3135), + [aux_sym__declaration_specifiers_repeat1] = STATE(2175), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [sym_identifier] = ACTIONS(1413), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), + [anon_sym_RPAREN] = ACTIONS(1417), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), [anon_sym_extern] = ACTIONS(55), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1423), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1389), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), [anon_sym___declspec] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(974), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), @@ -46626,118 +48410,382 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(1425), - [anon_sym_enum] = ACTIONS(1427), - [anon_sym_class] = ACTIONS(1429), - [anon_sym_struct] = ACTIONS(1431), - [anon_sym_union] = ACTIONS(1433), - [anon_sym_DASH_DASH] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [anon_sym_sizeof] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(1439), - [anon_sym_L_SQUOTE] = ACTIONS(1441), - [anon_sym_u_SQUOTE] = ACTIONS(1441), - [anon_sym_U_SQUOTE] = ACTIONS(1441), - [anon_sym_u8_SQUOTE] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1441), - [anon_sym_L_DQUOTE] = ACTIONS(1443), - [anon_sym_u_DQUOTE] = ACTIONS(1443), - [anon_sym_U_DQUOTE] = ACTIONS(1443), - [anon_sym_u8_DQUOTE] = ACTIONS(1443), - [anon_sym_DQUOTE] = ACTIONS(1443), - [sym_true] = ACTIONS(1445), - [sym_false] = ACTIONS(1445), - [sym_null] = ACTIONS(1445), + [sym_primitive_type] = ACTIONS(1429), + [anon_sym_enum] = ACTIONS(1431), + [anon_sym_class] = ACTIONS(1433), + [anon_sym_struct] = ACTIONS(1435), + [anon_sym_union] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(105), [anon_sym_decltype] = ACTIONS(107), [anon_sym_virtual] = ACTIONS(109), - [anon_sym_typename] = ACTIONS(1447), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_co_await] = ACTIONS(1451), - [anon_sym_new] = ACTIONS(1453), - [anon_sym_requires] = ACTIONS(1455), - [sym_this] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(1445), - [sym_raw_string_literal] = ACTIONS(1457), + [anon_sym_typename] = ACTIONS(1451), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_co_await] = ACTIONS(1455), + [anon_sym_new] = ACTIONS(1457), + [anon_sym_requires] = ACTIONS(1459), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + [sym_raw_string_literal] = ACTIONS(1461), }, - [113] = { - [sym__declaration_modifiers] = STATE(1892), - [sym__declaration_specifiers] = STATE(2998), - [sym_attribute_specifier] = STATE(1892), - [sym_attribute_declaration] = STATE(1892), - [sym_ms_declspec_modifier] = STATE(1892), - [sym_storage_class_specifier] = STATE(1892), - [sym_type_qualifier] = STATE(1892), - [sym__type_specifier] = STATE(2596), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_parameter_declaration] = STATE(5660), - [sym__expression] = STATE(3555), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_initializer_list] = STATE(5633), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(1892), - [sym_dependent_type] = STATE(3139), - [sym_optional_parameter_declaration] = STATE(5660), - [sym_variadic_parameter_declaration] = STATE(5660), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4650), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(3276), - [sym_user_defined_literal] = STATE(3428), - [aux_sym__declaration_specifiers_repeat1] = STATE(1892), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [sym_identifier] = ACTIONS(1459), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1461), - [anon_sym_RPAREN] = ACTIONS(1463), - [anon_sym_LPAREN2] = ACTIONS(960), + [114] = { + [sym__declaration_modifiers] = STATE(2175), + [sym__declaration_specifiers] = STATE(3387), + [sym_attribute_specifier] = STATE(2175), + [sym_attribute_declaration] = STATE(2175), + [sym_ms_declspec_modifier] = STATE(2175), + [sym_storage_class_specifier] = STATE(2175), + [sym_type_qualifier] = STATE(2175), + [sym__type_specifier] = STATE(3251), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_parameter_declaration] = STATE(5863), + [sym__expression] = STATE(2877), + [sym_conditional_expression] = STATE(3135), + [sym_assignment_expression] = STATE(3135), + [sym_pointer_expression] = STATE(2788), + [sym_unary_expression] = STATE(3135), + [sym_binary_expression] = STATE(3135), + [sym_update_expression] = STATE(3135), + [sym_cast_expression] = STATE(3135), + [sym_sizeof_expression] = STATE(3135), + [sym_subscript_expression] = STATE(2788), + [sym_call_expression] = STATE(2788), + [sym_field_expression] = STATE(2788), + [sym_compound_literal_expression] = STATE(3135), + [sym_parenthesized_expression] = STATE(2788), + [sym_char_literal] = STATE(2981), + [sym_concatenated_string] = STATE(2981), + [sym_string_literal] = STATE(1970), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6450), + [sym_virtual_function_specifier] = STATE(2175), + [sym_dependent_type] = STATE(3481), + [sym_optional_parameter_declaration] = STATE(5863), + [sym_variadic_parameter_declaration] = STATE(5863), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3135), + [sym_co_await_expression] = STATE(3135), + [sym_new_expression] = STATE(3135), + [sym_delete_expression] = STATE(3135), + [sym_requires_clause] = STATE(3135), + [sym_requires_expression] = STATE(3135), + [sym_lambda_expression] = STATE(3135), + [sym_lambda_capture_specifier] = STATE(4771), + [sym__unary_left_fold] = STATE(6965), + [sym__unary_right_fold] = STATE(6964), + [sym__binary_fold] = STATE(6963), + [sym_fold_expression] = STATE(3135), + [sym_parameter_pack_expansion] = STATE(3135), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4910), + [sym_qualified_identifier] = STATE(2788), + [sym_qualified_type_identifier] = STATE(3729), + [sym_user_defined_literal] = STATE(3135), + [aux_sym__declaration_specifiers_repeat1] = STATE(2175), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [sym_identifier] = ACTIONS(1413), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), + [anon_sym_RPAREN] = ACTIONS(1417), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(1429), + [anon_sym_enum] = ACTIONS(1431), + [anon_sym_class] = ACTIONS(1433), + [anon_sym_struct] = ACTIONS(1435), + [anon_sym_union] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_typename] = ACTIONS(1451), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_co_await] = ACTIONS(1455), + [anon_sym_new] = ACTIONS(1457), + [anon_sym_requires] = ACTIONS(1459), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + [sym_raw_string_literal] = ACTIONS(1461), + }, + [115] = { + [sym__declaration_modifiers] = STATE(2175), + [sym__declaration_specifiers] = STATE(3387), + [sym_attribute_specifier] = STATE(2175), + [sym_attribute_declaration] = STATE(2175), + [sym_ms_declspec_modifier] = STATE(2175), + [sym_storage_class_specifier] = STATE(2175), + [sym_type_qualifier] = STATE(2175), + [sym__type_specifier] = STATE(3251), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_parameter_declaration] = STATE(5863), + [sym__expression] = STATE(2697), + [sym_conditional_expression] = STATE(3135), + [sym_assignment_expression] = STATE(3135), + [sym_pointer_expression] = STATE(2788), + [sym_unary_expression] = STATE(3135), + [sym_binary_expression] = STATE(3135), + [sym_update_expression] = STATE(3135), + [sym_cast_expression] = STATE(3135), + [sym_sizeof_expression] = STATE(3135), + [sym_subscript_expression] = STATE(2788), + [sym_call_expression] = STATE(2788), + [sym_field_expression] = STATE(2788), + [sym_compound_literal_expression] = STATE(3135), + [sym_parenthesized_expression] = STATE(2788), + [sym_char_literal] = STATE(2981), + [sym_concatenated_string] = STATE(2981), + [sym_string_literal] = STATE(1970), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6450), + [sym_virtual_function_specifier] = STATE(2175), + [sym_dependent_type] = STATE(3481), + [sym_optional_parameter_declaration] = STATE(5863), + [sym_variadic_parameter_declaration] = STATE(5863), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3135), + [sym_co_await_expression] = STATE(3135), + [sym_new_expression] = STATE(3135), + [sym_delete_expression] = STATE(3135), + [sym_requires_clause] = STATE(3135), + [sym_requires_expression] = STATE(3135), + [sym_lambda_expression] = STATE(3135), + [sym_lambda_capture_specifier] = STATE(4771), + [sym__unary_left_fold] = STATE(7045), + [sym__unary_right_fold] = STATE(7044), + [sym__binary_fold] = STATE(7043), + [sym_fold_expression] = STATE(3135), + [sym_parameter_pack_expansion] = STATE(3135), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4910), + [sym_qualified_identifier] = STATE(2788), + [sym_qualified_type_identifier] = STATE(3729), + [sym_user_defined_literal] = STATE(3135), + [aux_sym__declaration_specifiers_repeat1] = STATE(2175), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [sym_identifier] = ACTIONS(1413), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), + [anon_sym_RPAREN] = ACTIONS(1417), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(1429), + [anon_sym_enum] = ACTIONS(1431), + [anon_sym_class] = ACTIONS(1433), + [anon_sym_struct] = ACTIONS(1435), + [anon_sym_union] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_typename] = ACTIONS(1451), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_co_await] = ACTIONS(1455), + [anon_sym_new] = ACTIONS(1457), + [anon_sym_requires] = ACTIONS(1459), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + [sym_raw_string_literal] = ACTIONS(1461), + }, + [116] = { + [sym__declaration_modifiers] = STATE(2175), + [sym__declaration_specifiers] = STATE(3387), + [sym_attribute_specifier] = STATE(2175), + [sym_attribute_declaration] = STATE(2175), + [sym_ms_declspec_modifier] = STATE(2175), + [sym_storage_class_specifier] = STATE(2175), + [sym_type_qualifier] = STATE(2175), + [sym__type_specifier] = STATE(3251), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_parameter_declaration] = STATE(5842), + [sym__expression] = STATE(3637), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_initializer_list] = STATE(5946), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(2175), + [sym_dependent_type] = STATE(3481), + [sym_optional_parameter_declaration] = STATE(5842), + [sym_variadic_parameter_declaration] = STATE(5842), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4938), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(3729), + [sym_user_defined_literal] = STATE(3435), + [aux_sym__declaration_specifiers_repeat1] = STATE(2175), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [sym_identifier] = ACTIONS(1463), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1465), + [anon_sym_RPAREN] = ACTIONS(1467), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), [anon_sym_extern] = ACTIONS(55), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1389), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), [anon_sym___declspec] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(1465), - [anon_sym_LBRACK] = ACTIONS(970), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(974), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), @@ -46755,10 +48803,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(1427), - [anon_sym_class] = ACTIONS(1429), - [anon_sym_struct] = ACTIONS(1431), - [anon_sym_union] = ACTIONS(1433), + [anon_sym_enum] = ACTIONS(1431), + [anon_sym_class] = ACTIONS(1433), + [anon_sym_struct] = ACTIONS(1435), + [anon_sym_union] = ACTIONS(1437), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -46780,8 +48830,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(105), [anon_sym_decltype] = ACTIONS(107), [anon_sym_virtual] = ACTIONS(109), - [anon_sym_typename] = ACTIONS(1447), - [anon_sym_template] = ACTIONS(972), + [anon_sym_typename] = ACTIONS(1451), + [anon_sym_template] = ACTIONS(976), [anon_sym_delete] = ACTIONS(121), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), @@ -46790,472 +48840,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [114] = { - [sym_ms_based_modifier] = STATE(6716), - [sym__declarator] = STATE(5157), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4825), - [sym_array_declarator] = STATE(4825), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3825), - [sym_sized_type_specifier] = STATE(2346), - [sym_enum_specifier] = STATE(2346), - [sym_struct_specifier] = STATE(2346), - [sym_union_specifier] = STATE(2346), - [sym__expression] = STATE(2437), - [sym_comma_expression] = STATE(6483), - [sym_conditional_expression] = STATE(2765), - [sym_assignment_expression] = STATE(2765), - [sym_pointer_expression] = STATE(2827), - [sym_unary_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_update_expression] = STATE(2765), - [sym_cast_expression] = STATE(2765), - [sym_type_descriptor] = STATE(6481), - [sym_sizeof_expression] = STATE(2765), - [sym_subscript_expression] = STATE(2827), - [sym_call_expression] = STATE(2827), - [sym_field_expression] = STATE(2827), - [sym_compound_literal_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2827), - [sym_char_literal] = STATE(2674), - [sym_concatenated_string] = STATE(2674), - [sym_string_literal] = STATE(2093), - [sym_placeholder_type_specifier] = STATE(2346), - [sym_decltype_auto] = STATE(2494), - [sym_decltype] = STATE(2346), - [sym_class_specifier] = STATE(2346), - [sym__class_name] = STATE(6297), - [sym_dependent_type] = STATE(2346), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(4194), - [sym_template_function] = STATE(2693), - [sym_co_await_expression] = STATE(2765), - [sym_new_expression] = STATE(2765), - [sym_delete_expression] = STATE(2765), - [sym_requires_clause] = STATE(2765), - [sym_requires_expression] = STATE(2765), - [sym_lambda_expression] = STATE(2765), - [sym_lambda_capture_specifier] = STATE(4512), - [sym__unary_left_fold] = STATE(6480), - [sym__unary_right_fold] = STATE(6479), - [sym__binary_fold] = STATE(6474), - [sym_fold_expression] = STATE(2765), - [sym_parameter_pack_expansion] = STATE(2765), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4624), - [sym_qualified_identifier] = STATE(2698), - [sym_qualified_type_identifier] = STATE(4305), - [sym_operator_name] = STATE(4825), - [sym_user_defined_literal] = STATE(2765), - [aux_sym_type_definition_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(2075), - [sym_identifier] = ACTIONS(1467), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1411), - [anon_sym_LPAREN2] = ACTIONS(1469), - [anon_sym_BANG] = ACTIONS(1417), - [anon_sym_TILDE] = ACTIONS(1471), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1473), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1475), - [anon_sym_COLON_COLON] = ACTIONS(1423), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1479), - [anon_sym_unsigned] = ACTIONS(1479), - [anon_sym_long] = ACTIONS(1479), - [anon_sym_short] = ACTIONS(1479), - [sym_primitive_type] = ACTIONS(1481), - [anon_sym_enum] = ACTIONS(1483), - [anon_sym_class] = ACTIONS(1485), - [anon_sym_struct] = ACTIONS(1487), - [anon_sym_union] = ACTIONS(1489), - [anon_sym_DASH_DASH] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [anon_sym_sizeof] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(1439), - [anon_sym_L_SQUOTE] = ACTIONS(1441), - [anon_sym_u_SQUOTE] = ACTIONS(1441), - [anon_sym_U_SQUOTE] = ACTIONS(1441), - [anon_sym_u8_SQUOTE] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1441), - [anon_sym_L_DQUOTE] = ACTIONS(1443), - [anon_sym_u_DQUOTE] = ACTIONS(1443), - [anon_sym_U_DQUOTE] = ACTIONS(1443), - [anon_sym_u8_DQUOTE] = ACTIONS(1443), - [anon_sym_DQUOTE] = ACTIONS(1443), - [sym_true] = ACTIONS(1445), - [sym_false] = ACTIONS(1445), - [sym_null] = ACTIONS(1445), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1491), - [anon_sym_decltype] = ACTIONS(1493), - [anon_sym_typename] = ACTIONS(1495), - [anon_sym_template] = ACTIONS(972), - [anon_sym_operator] = ACTIONS(1497), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_co_await] = ACTIONS(1451), - [anon_sym_new] = ACTIONS(1453), - [anon_sym_requires] = ACTIONS(1455), - [sym_this] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(1445), - [sym_raw_string_literal] = ACTIONS(1457), - }, - [115] = { - [sym_ms_based_modifier] = STATE(6716), - [sym__declarator] = STATE(5157), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4825), - [sym_array_declarator] = STATE(4825), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3825), - [sym_sized_type_specifier] = STATE(2346), - [sym_enum_specifier] = STATE(2346), - [sym_struct_specifier] = STATE(2346), - [sym_union_specifier] = STATE(2346), - [sym__expression] = STATE(2375), - [sym_comma_expression] = STATE(6584), - [sym_conditional_expression] = STATE(2765), - [sym_assignment_expression] = STATE(2765), - [sym_pointer_expression] = STATE(2827), - [sym_unary_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_update_expression] = STATE(2765), - [sym_cast_expression] = STATE(2765), - [sym_type_descriptor] = STATE(6597), - [sym_sizeof_expression] = STATE(2765), - [sym_subscript_expression] = STATE(2827), - [sym_call_expression] = STATE(2827), - [sym_field_expression] = STATE(2827), - [sym_compound_literal_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2827), - [sym_char_literal] = STATE(2674), - [sym_concatenated_string] = STATE(2674), - [sym_string_literal] = STATE(2093), - [sym_placeholder_type_specifier] = STATE(2346), - [sym_decltype_auto] = STATE(2494), - [sym_decltype] = STATE(2346), - [sym_class_specifier] = STATE(2346), - [sym__class_name] = STATE(6297), - [sym_dependent_type] = STATE(2346), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(4194), - [sym_template_function] = STATE(2693), - [sym_co_await_expression] = STATE(2765), - [sym_new_expression] = STATE(2765), - [sym_delete_expression] = STATE(2765), - [sym_requires_clause] = STATE(2765), - [sym_requires_expression] = STATE(2765), - [sym_lambda_expression] = STATE(2765), - [sym_lambda_capture_specifier] = STATE(4512), - [sym__unary_left_fold] = STATE(6598), - [sym__unary_right_fold] = STATE(6600), - [sym__binary_fold] = STATE(6603), - [sym_fold_expression] = STATE(2765), - [sym_parameter_pack_expansion] = STATE(2765), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4624), - [sym_qualified_identifier] = STATE(2698), - [sym_qualified_type_identifier] = STATE(4305), - [sym_operator_name] = STATE(4825), - [sym_user_defined_literal] = STATE(2765), - [aux_sym_type_definition_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(2075), - [sym_identifier] = ACTIONS(1467), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1411), - [anon_sym_LPAREN2] = ACTIONS(1469), - [anon_sym_BANG] = ACTIONS(1417), - [anon_sym_TILDE] = ACTIONS(1471), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1473), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1475), - [anon_sym_COLON_COLON] = ACTIONS(1423), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1479), - [anon_sym_unsigned] = ACTIONS(1479), - [anon_sym_long] = ACTIONS(1479), - [anon_sym_short] = ACTIONS(1479), - [sym_primitive_type] = ACTIONS(1481), - [anon_sym_enum] = ACTIONS(1483), - [anon_sym_class] = ACTIONS(1485), - [anon_sym_struct] = ACTIONS(1487), - [anon_sym_union] = ACTIONS(1489), - [anon_sym_DASH_DASH] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [anon_sym_sizeof] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(1439), - [anon_sym_L_SQUOTE] = ACTIONS(1441), - [anon_sym_u_SQUOTE] = ACTIONS(1441), - [anon_sym_U_SQUOTE] = ACTIONS(1441), - [anon_sym_u8_SQUOTE] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1441), - [anon_sym_L_DQUOTE] = ACTIONS(1443), - [anon_sym_u_DQUOTE] = ACTIONS(1443), - [anon_sym_U_DQUOTE] = ACTIONS(1443), - [anon_sym_u8_DQUOTE] = ACTIONS(1443), - [anon_sym_DQUOTE] = ACTIONS(1443), - [sym_true] = ACTIONS(1445), - [sym_false] = ACTIONS(1445), - [sym_null] = ACTIONS(1445), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1491), - [anon_sym_decltype] = ACTIONS(1493), - [anon_sym_typename] = ACTIONS(1495), - [anon_sym_template] = ACTIONS(972), - [anon_sym_operator] = ACTIONS(1497), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_co_await] = ACTIONS(1451), - [anon_sym_new] = ACTIONS(1453), - [anon_sym_requires] = ACTIONS(1455), - [sym_this] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(1445), - [sym_raw_string_literal] = ACTIONS(1457), - }, - [116] = { - [sym_ms_based_modifier] = STATE(6716), - [sym__declarator] = STATE(5157), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4825), - [sym_array_declarator] = STATE(4825), - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3825), - [sym_sized_type_specifier] = STATE(2346), - [sym_enum_specifier] = STATE(2346), - [sym_struct_specifier] = STATE(2346), - [sym_union_specifier] = STATE(2346), - [sym__expression] = STATE(2375), - [sym_comma_expression] = STATE(6584), - [sym_conditional_expression] = STATE(2765), - [sym_assignment_expression] = STATE(2765), - [sym_pointer_expression] = STATE(2827), - [sym_unary_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_update_expression] = STATE(2765), - [sym_cast_expression] = STATE(2765), - [sym_type_descriptor] = STATE(6572), - [sym_sizeof_expression] = STATE(2765), - [sym_subscript_expression] = STATE(2827), - [sym_call_expression] = STATE(2827), - [sym_field_expression] = STATE(2827), - [sym_compound_literal_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2827), - [sym_char_literal] = STATE(2674), - [sym_concatenated_string] = STATE(2674), - [sym_string_literal] = STATE(2093), - [sym_placeholder_type_specifier] = STATE(2346), - [sym_decltype_auto] = STATE(2494), - [sym_decltype] = STATE(2346), - [sym_class_specifier] = STATE(2346), - [sym__class_name] = STATE(6297), - [sym_dependent_type] = STATE(2346), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(4194), - [sym_template_function] = STATE(2693), - [sym_co_await_expression] = STATE(2765), - [sym_new_expression] = STATE(2765), - [sym_delete_expression] = STATE(2765), - [sym_requires_clause] = STATE(2765), - [sym_requires_expression] = STATE(2765), - [sym_lambda_expression] = STATE(2765), - [sym_lambda_capture_specifier] = STATE(4512), - [sym__unary_left_fold] = STATE(6567), - [sym__unary_right_fold] = STATE(6566), - [sym__binary_fold] = STATE(6564), - [sym_fold_expression] = STATE(2765), - [sym_parameter_pack_expansion] = STATE(2765), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4624), - [sym_qualified_identifier] = STATE(2698), - [sym_qualified_type_identifier] = STATE(4305), - [sym_operator_name] = STATE(4825), - [sym_user_defined_literal] = STATE(2765), - [aux_sym_type_definition_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(2075), - [sym_identifier] = ACTIONS(1467), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1411), - [anon_sym_LPAREN2] = ACTIONS(1469), - [anon_sym_BANG] = ACTIONS(1417), - [anon_sym_TILDE] = ACTIONS(1471), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1473), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1475), - [anon_sym_COLON_COLON] = ACTIONS(1423), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1479), - [anon_sym_unsigned] = ACTIONS(1479), - [anon_sym_long] = ACTIONS(1479), - [anon_sym_short] = ACTIONS(1479), - [sym_primitive_type] = ACTIONS(1481), - [anon_sym_enum] = ACTIONS(1483), - [anon_sym_class] = ACTIONS(1485), - [anon_sym_struct] = ACTIONS(1487), - [anon_sym_union] = ACTIONS(1489), - [anon_sym_DASH_DASH] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [anon_sym_sizeof] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(1439), - [anon_sym_L_SQUOTE] = ACTIONS(1441), - [anon_sym_u_SQUOTE] = ACTIONS(1441), - [anon_sym_U_SQUOTE] = ACTIONS(1441), - [anon_sym_u8_SQUOTE] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1441), - [anon_sym_L_DQUOTE] = ACTIONS(1443), - [anon_sym_u_DQUOTE] = ACTIONS(1443), - [anon_sym_U_DQUOTE] = ACTIONS(1443), - [anon_sym_u8_DQUOTE] = ACTIONS(1443), - [anon_sym_DQUOTE] = ACTIONS(1443), - [sym_true] = ACTIONS(1445), - [sym_false] = ACTIONS(1445), - [sym_null] = ACTIONS(1445), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1491), - [anon_sym_decltype] = ACTIONS(1493), - [anon_sym_typename] = ACTIONS(1495), - [anon_sym_template] = ACTIONS(972), - [anon_sym_operator] = ACTIONS(1497), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_co_await] = ACTIONS(1451), - [anon_sym_new] = ACTIONS(1453), - [anon_sym_requires] = ACTIONS(1455), - [sym_this] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(1445), - [sym_raw_string_literal] = ACTIONS(1457), - }, [117] = { - [sym_preproc_def] = STATE(133), - [sym_preproc_function_def] = STATE(133), - [sym_preproc_call] = STATE(133), - [sym_preproc_if_in_field_declaration_list] = STATE(133), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(133), - [sym_preproc_else_in_field_declaration_list] = STATE(6570), - [sym_preproc_elif_in_field_declaration_list] = STATE(6570), - [sym_type_definition] = STATE(133), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(4157), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(2900), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4703), - [sym_array_declarator] = STATE(4825), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(3200), - [sym_sized_type_specifier] = STATE(3371), - [sym_enum_specifier] = STATE(3371), - [sym_struct_specifier] = STATE(3371), - [sym_union_specifier] = STATE(3371), - [sym__field_declaration_list_item] = STATE(133), - [sym_field_declaration] = STATE(133), - [sym_placeholder_type_specifier] = STATE(3371), - [sym_decltype_auto] = STATE(3366), - [sym_decltype] = STATE(3371), - [sym_class_specifier] = STATE(3371), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1767), - [sym_dependent_type] = STATE(3371), - [sym_template_declaration] = STATE(133), - [sym_operator_cast] = STATE(5199), - [sym_inline_method_definition] = STATE(133), - [sym__constructor_specifiers] = STATE(1767), - [sym_operator_cast_definition] = STATE(133), - [sym_operator_cast_declaration] = STATE(133), - [sym_constructor_or_destructor_definition] = STATE(133), - [sym_constructor_or_destructor_declaration] = STATE(133), - [sym_friend_declaration] = STATE(133), - [sym_access_specifier] = STATE(133), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(2976), - [sym_template_function] = STATE(4825), - [sym_using_declaration] = STATE(133), - [sym_alias_declaration] = STATE(133), - [sym_static_assert_declaration] = STATE(133), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4515), - [sym_qualified_identifier] = STATE(4825), - [sym_qualified_type_identifier] = STATE(3400), - [sym_qualified_operator_cast_identifier] = STATE(5199), - [sym_operator_name] = STATE(4825), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(133), - [aux_sym__declaration_specifiers_repeat1] = STATE(1896), - [aux_sym_sized_type_specifier_repeat1] = STATE(3286), - [aux_sym_operator_cast_definition_repeat1] = STATE(1767), - [sym_identifier] = ACTIONS(1499), - [aux_sym_preproc_def_token1] = ACTIONS(1501), - [aux_sym_preproc_if_token1] = ACTIONS(1503), - [aux_sym_preproc_if_token2] = ACTIONS(1505), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1507), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1507), - [aux_sym_preproc_else_token1] = ACTIONS(1509), - [aux_sym_preproc_elif_token1] = ACTIONS(1511), - [sym_preproc_directive] = ACTIONS(1513), - [anon_sym_LPAREN2] = ACTIONS(1515), - [anon_sym_TILDE] = ACTIONS(1517), - [anon_sym_STAR] = ACTIONS(1519), + [sym_ms_based_modifier] = STATE(7250), + [sym__declarator] = STATE(5390), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(5080), + [sym_array_declarator] = STATE(5080), + [sym_type_qualifier] = STATE(3369), + [sym__type_specifier] = STATE(4187), + [sym_sized_type_specifier] = STATE(2780), + [sym_enum_specifier] = STATE(2780), + [sym_struct_specifier] = STATE(2780), + [sym_union_specifier] = STATE(2780), + [sym__expression] = STATE(2735), + [sym_comma_expression] = STATE(6941), + [sym_conditional_expression] = STATE(3135), + [sym_assignment_expression] = STATE(3135), + [sym_pointer_expression] = STATE(2788), + [sym_unary_expression] = STATE(3135), + [sym_binary_expression] = STATE(3135), + [sym_update_expression] = STATE(3135), + [sym_cast_expression] = STATE(3135), + [sym_type_descriptor] = STATE(6942), + [sym_sizeof_expression] = STATE(3135), + [sym_subscript_expression] = STATE(2788), + [sym_call_expression] = STATE(2788), + [sym_field_expression] = STATE(2788), + [sym_compound_literal_expression] = STATE(3135), + [sym_parenthesized_expression] = STATE(2788), + [sym_char_literal] = STATE(2981), + [sym_concatenated_string] = STATE(2981), + [sym_string_literal] = STATE(1970), + [sym_placeholder_type_specifier] = STATE(2780), + [sym_decltype_auto] = STATE(2731), + [sym_decltype] = STATE(2780), + [sym_class_specifier] = STATE(2780), + [sym__class_name] = STATE(6450), + [sym_dependent_type] = STATE(2780), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(4443), + [sym_template_function] = STATE(2997), + [sym_co_await_expression] = STATE(3135), + [sym_new_expression] = STATE(3135), + [sym_delete_expression] = STATE(3135), + [sym_requires_clause] = STATE(3135), + [sym_requires_expression] = STATE(3135), + [sym_lambda_expression] = STATE(3135), + [sym_lambda_capture_specifier] = STATE(4771), + [sym__unary_left_fold] = STATE(6945), + [sym__unary_right_fold] = STATE(6946), + [sym__binary_fold] = STATE(6947), + [sym_fold_expression] = STATE(3135), + [sym_parameter_pack_expansion] = STATE(3135), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4935), + [sym_qualified_identifier] = STATE(2657), + [sym_qualified_type_identifier] = STATE(4514), + [sym_operator_name] = STATE(5080), + [sym_user_defined_literal] = STATE(3135), + [aux_sym_type_definition_repeat1] = STATE(3369), + [aux_sym_sized_type_specifier_repeat1] = STATE(1935), + [sym_identifier] = ACTIONS(1471), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), + [anon_sym_LPAREN2] = ACTIONS(1473), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1475), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1477), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1521), - [anon_sym_typedef] = ACTIONS(1523), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1525), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1389), - [anon_sym___declspec] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(1479), + [anon_sym_COLON_COLON] = ACTIONS(1427), [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1527), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(1481), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -47264,121 +48925,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_constexpr] = ACTIONS(57), [anon_sym_constinit] = ACTIONS(57), [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1529), - [anon_sym_unsigned] = ACTIONS(1529), - [anon_sym_long] = ACTIONS(1529), - [anon_sym_short] = ACTIONS(1529), - [sym_primitive_type] = ACTIONS(1531), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1535), - [anon_sym_struct] = ACTIONS(1537), - [anon_sym_union] = ACTIONS(1539), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1541), - [anon_sym_decltype] = ACTIONS(1543), - [anon_sym_virtual] = ACTIONS(109), - [anon_sym_explicit] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1545), - [anon_sym_private] = ACTIONS(1545), - [anon_sym_protected] = ACTIONS(1545), - [anon_sym_typename] = ACTIONS(1547), - [anon_sym_template] = ACTIONS(1549), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_friend] = ACTIONS(1551), - [anon_sym_using] = ACTIONS(1553), - [anon_sym_static_assert] = ACTIONS(1555), + [anon_sym_signed] = ACTIONS(1483), + [anon_sym_unsigned] = ACTIONS(1483), + [anon_sym_long] = ACTIONS(1483), + [anon_sym_short] = ACTIONS(1483), + [sym_primitive_type] = ACTIONS(1485), + [anon_sym_enum] = ACTIONS(1487), + [anon_sym_class] = ACTIONS(1489), + [anon_sym_struct] = ACTIONS(1491), + [anon_sym_union] = ACTIONS(1493), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1495), + [anon_sym_decltype] = ACTIONS(1497), + [anon_sym_typename] = ACTIONS(1499), + [anon_sym_template] = ACTIONS(976), + [anon_sym_operator] = ACTIONS(1501), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_co_await] = ACTIONS(1455), + [anon_sym_new] = ACTIONS(1457), + [anon_sym_requires] = ACTIONS(1459), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + [sym_raw_string_literal] = ACTIONS(1461), }, [118] = { - [sym_preproc_def] = STATE(133), - [sym_preproc_function_def] = STATE(133), - [sym_preproc_call] = STATE(133), - [sym_preproc_if_in_field_declaration_list] = STATE(133), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(133), - [sym_preproc_else_in_field_declaration_list] = STATE(6743), - [sym_preproc_elif_in_field_declaration_list] = STATE(6743), - [sym_type_definition] = STATE(133), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(4157), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(2900), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4703), - [sym_array_declarator] = STATE(4825), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(3200), - [sym_sized_type_specifier] = STATE(3371), - [sym_enum_specifier] = STATE(3371), - [sym_struct_specifier] = STATE(3371), - [sym_union_specifier] = STATE(3371), - [sym__field_declaration_list_item] = STATE(133), - [sym_field_declaration] = STATE(133), - [sym_placeholder_type_specifier] = STATE(3371), - [sym_decltype_auto] = STATE(3366), - [sym_decltype] = STATE(3371), - [sym_class_specifier] = STATE(3371), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1767), - [sym_dependent_type] = STATE(3371), - [sym_template_declaration] = STATE(133), - [sym_operator_cast] = STATE(5199), - [sym_inline_method_definition] = STATE(133), - [sym__constructor_specifiers] = STATE(1767), - [sym_operator_cast_definition] = STATE(133), - [sym_operator_cast_declaration] = STATE(133), - [sym_constructor_or_destructor_definition] = STATE(133), - [sym_constructor_or_destructor_declaration] = STATE(133), - [sym_friend_declaration] = STATE(133), - [sym_access_specifier] = STATE(133), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(2976), - [sym_template_function] = STATE(4825), - [sym_using_declaration] = STATE(133), - [sym_alias_declaration] = STATE(133), - [sym_static_assert_declaration] = STATE(133), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4515), - [sym_qualified_identifier] = STATE(4825), - [sym_qualified_type_identifier] = STATE(3400), - [sym_qualified_operator_cast_identifier] = STATE(5199), - [sym_operator_name] = STATE(4825), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(133), - [aux_sym__declaration_specifiers_repeat1] = STATE(1896), - [aux_sym_sized_type_specifier_repeat1] = STATE(3286), - [aux_sym_operator_cast_definition_repeat1] = STATE(1767), - [sym_identifier] = ACTIONS(1499), - [aux_sym_preproc_def_token1] = ACTIONS(1501), - [aux_sym_preproc_if_token1] = ACTIONS(1503), - [aux_sym_preproc_if_token2] = ACTIONS(1557), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1507), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1507), - [aux_sym_preproc_else_token1] = ACTIONS(1509), - [aux_sym_preproc_elif_token1] = ACTIONS(1511), - [sym_preproc_directive] = ACTIONS(1513), - [anon_sym_LPAREN2] = ACTIONS(1515), - [anon_sym_TILDE] = ACTIONS(1517), - [anon_sym_STAR] = ACTIONS(1519), + [sym_ms_based_modifier] = STATE(7250), + [sym__declarator] = STATE(5390), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(5080), + [sym_array_declarator] = STATE(5080), + [sym_type_qualifier] = STATE(3369), + [sym__type_specifier] = STATE(4187), + [sym_sized_type_specifier] = STATE(2780), + [sym_enum_specifier] = STATE(2780), + [sym_struct_specifier] = STATE(2780), + [sym_union_specifier] = STATE(2780), + [sym__expression] = STATE(2735), + [sym_comma_expression] = STATE(6941), + [sym_conditional_expression] = STATE(3135), + [sym_assignment_expression] = STATE(3135), + [sym_pointer_expression] = STATE(2788), + [sym_unary_expression] = STATE(3135), + [sym_binary_expression] = STATE(3135), + [sym_update_expression] = STATE(3135), + [sym_cast_expression] = STATE(3135), + [sym_type_descriptor] = STATE(7170), + [sym_sizeof_expression] = STATE(3135), + [sym_subscript_expression] = STATE(2788), + [sym_call_expression] = STATE(2788), + [sym_field_expression] = STATE(2788), + [sym_compound_literal_expression] = STATE(3135), + [sym_parenthesized_expression] = STATE(2788), + [sym_char_literal] = STATE(2981), + [sym_concatenated_string] = STATE(2981), + [sym_string_literal] = STATE(1970), + [sym_placeholder_type_specifier] = STATE(2780), + [sym_decltype_auto] = STATE(2731), + [sym_decltype] = STATE(2780), + [sym_class_specifier] = STATE(2780), + [sym__class_name] = STATE(6450), + [sym_dependent_type] = STATE(2780), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(4443), + [sym_template_function] = STATE(2997), + [sym_co_await_expression] = STATE(3135), + [sym_new_expression] = STATE(3135), + [sym_delete_expression] = STATE(3135), + [sym_requires_clause] = STATE(3135), + [sym_requires_expression] = STATE(3135), + [sym_lambda_expression] = STATE(3135), + [sym_lambda_capture_specifier] = STATE(4771), + [sym__unary_left_fold] = STATE(7167), + [sym__unary_right_fold] = STATE(7166), + [sym__binary_fold] = STATE(7158), + [sym_fold_expression] = STATE(3135), + [sym_parameter_pack_expansion] = STATE(3135), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4935), + [sym_qualified_identifier] = STATE(2657), + [sym_qualified_type_identifier] = STATE(4514), + [sym_operator_name] = STATE(5080), + [sym_user_defined_literal] = STATE(3135), + [aux_sym_type_definition_repeat1] = STATE(3369), + [aux_sym_sized_type_specifier_repeat1] = STATE(1935), + [sym_identifier] = ACTIONS(1471), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), + [anon_sym_LPAREN2] = ACTIONS(1473), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1475), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1477), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1521), - [anon_sym_typedef] = ACTIONS(1523), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1525), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1389), - [anon_sym___declspec] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(1479), + [anon_sym_COLON_COLON] = ACTIONS(1427), [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1527), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(1481), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -47387,121 +49052,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_constexpr] = ACTIONS(57), [anon_sym_constinit] = ACTIONS(57), [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1529), - [anon_sym_unsigned] = ACTIONS(1529), - [anon_sym_long] = ACTIONS(1529), - [anon_sym_short] = ACTIONS(1529), - [sym_primitive_type] = ACTIONS(1531), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1535), - [anon_sym_struct] = ACTIONS(1537), - [anon_sym_union] = ACTIONS(1539), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1541), - [anon_sym_decltype] = ACTIONS(1543), - [anon_sym_virtual] = ACTIONS(109), - [anon_sym_explicit] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1545), - [anon_sym_private] = ACTIONS(1545), - [anon_sym_protected] = ACTIONS(1545), - [anon_sym_typename] = ACTIONS(1547), - [anon_sym_template] = ACTIONS(1549), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_friend] = ACTIONS(1551), - [anon_sym_using] = ACTIONS(1553), - [anon_sym_static_assert] = ACTIONS(1555), + [anon_sym_signed] = ACTIONS(1483), + [anon_sym_unsigned] = ACTIONS(1483), + [anon_sym_long] = ACTIONS(1483), + [anon_sym_short] = ACTIONS(1483), + [sym_primitive_type] = ACTIONS(1485), + [anon_sym_enum] = ACTIONS(1487), + [anon_sym_class] = ACTIONS(1489), + [anon_sym_struct] = ACTIONS(1491), + [anon_sym_union] = ACTIONS(1493), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1495), + [anon_sym_decltype] = ACTIONS(1497), + [anon_sym_typename] = ACTIONS(1499), + [anon_sym_template] = ACTIONS(976), + [anon_sym_operator] = ACTIONS(1501), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_co_await] = ACTIONS(1455), + [anon_sym_new] = ACTIONS(1457), + [anon_sym_requires] = ACTIONS(1459), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + [sym_raw_string_literal] = ACTIONS(1461), }, [119] = { - [sym_preproc_def] = STATE(133), - [sym_preproc_function_def] = STATE(133), - [sym_preproc_call] = STATE(133), - [sym_preproc_if_in_field_declaration_list] = STATE(133), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(133), - [sym_preproc_else_in_field_declaration_list] = STATE(6713), - [sym_preproc_elif_in_field_declaration_list] = STATE(6713), - [sym_type_definition] = STATE(133), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(4157), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(2900), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4703), - [sym_array_declarator] = STATE(4825), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(3200), - [sym_sized_type_specifier] = STATE(3371), - [sym_enum_specifier] = STATE(3371), - [sym_struct_specifier] = STATE(3371), - [sym_union_specifier] = STATE(3371), - [sym__field_declaration_list_item] = STATE(133), - [sym_field_declaration] = STATE(133), - [sym_placeholder_type_specifier] = STATE(3371), - [sym_decltype_auto] = STATE(3366), - [sym_decltype] = STATE(3371), - [sym_class_specifier] = STATE(3371), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1767), - [sym_dependent_type] = STATE(3371), - [sym_template_declaration] = STATE(133), - [sym_operator_cast] = STATE(5199), - [sym_inline_method_definition] = STATE(133), - [sym__constructor_specifiers] = STATE(1767), - [sym_operator_cast_definition] = STATE(133), - [sym_operator_cast_declaration] = STATE(133), - [sym_constructor_or_destructor_definition] = STATE(133), - [sym_constructor_or_destructor_declaration] = STATE(133), - [sym_friend_declaration] = STATE(133), - [sym_access_specifier] = STATE(133), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(2976), - [sym_template_function] = STATE(4825), - [sym_using_declaration] = STATE(133), - [sym_alias_declaration] = STATE(133), - [sym_static_assert_declaration] = STATE(133), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4515), - [sym_qualified_identifier] = STATE(4825), - [sym_qualified_type_identifier] = STATE(3400), - [sym_qualified_operator_cast_identifier] = STATE(5199), - [sym_operator_name] = STATE(4825), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(133), - [aux_sym__declaration_specifiers_repeat1] = STATE(1896), - [aux_sym_sized_type_specifier_repeat1] = STATE(3286), - [aux_sym_operator_cast_definition_repeat1] = STATE(1767), - [sym_identifier] = ACTIONS(1499), - [aux_sym_preproc_def_token1] = ACTIONS(1501), - [aux_sym_preproc_if_token1] = ACTIONS(1503), - [aux_sym_preproc_if_token2] = ACTIONS(1559), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1507), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1507), - [aux_sym_preproc_else_token1] = ACTIONS(1509), - [aux_sym_preproc_elif_token1] = ACTIONS(1511), - [sym_preproc_directive] = ACTIONS(1513), - [anon_sym_LPAREN2] = ACTIONS(1515), - [anon_sym_TILDE] = ACTIONS(1517), - [anon_sym_STAR] = ACTIONS(1519), + [sym_ms_based_modifier] = STATE(7250), + [sym__declarator] = STATE(5390), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(5080), + [sym_array_declarator] = STATE(5080), + [sym_type_qualifier] = STATE(3369), + [sym__type_specifier] = STATE(4187), + [sym_sized_type_specifier] = STATE(2780), + [sym_enum_specifier] = STATE(2780), + [sym_struct_specifier] = STATE(2780), + [sym_union_specifier] = STATE(2780), + [sym__expression] = STATE(2801), + [sym_comma_expression] = STATE(7222), + [sym_conditional_expression] = STATE(3135), + [sym_assignment_expression] = STATE(3135), + [sym_pointer_expression] = STATE(2788), + [sym_unary_expression] = STATE(3135), + [sym_binary_expression] = STATE(3135), + [sym_update_expression] = STATE(3135), + [sym_cast_expression] = STATE(3135), + [sym_type_descriptor] = STATE(7220), + [sym_sizeof_expression] = STATE(3135), + [sym_subscript_expression] = STATE(2788), + [sym_call_expression] = STATE(2788), + [sym_field_expression] = STATE(2788), + [sym_compound_literal_expression] = STATE(3135), + [sym_parenthesized_expression] = STATE(2788), + [sym_char_literal] = STATE(2981), + [sym_concatenated_string] = STATE(2981), + [sym_string_literal] = STATE(1970), + [sym_placeholder_type_specifier] = STATE(2780), + [sym_decltype_auto] = STATE(2731), + [sym_decltype] = STATE(2780), + [sym_class_specifier] = STATE(2780), + [sym__class_name] = STATE(6450), + [sym_dependent_type] = STATE(2780), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(4443), + [sym_template_function] = STATE(2997), + [sym_co_await_expression] = STATE(3135), + [sym_new_expression] = STATE(3135), + [sym_delete_expression] = STATE(3135), + [sym_requires_clause] = STATE(3135), + [sym_requires_expression] = STATE(3135), + [sym_lambda_expression] = STATE(3135), + [sym_lambda_capture_specifier] = STATE(4771), + [sym__unary_left_fold] = STATE(7218), + [sym__unary_right_fold] = STATE(7214), + [sym__binary_fold] = STATE(7213), + [sym_fold_expression] = STATE(3135), + [sym_parameter_pack_expansion] = STATE(3135), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4935), + [sym_qualified_identifier] = STATE(2657), + [sym_qualified_type_identifier] = STATE(4514), + [sym_operator_name] = STATE(5080), + [sym_user_defined_literal] = STATE(3135), + [aux_sym_type_definition_repeat1] = STATE(3369), + [aux_sym_sized_type_specifier_repeat1] = STATE(1935), + [sym_identifier] = ACTIONS(1471), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), + [anon_sym_LPAREN2] = ACTIONS(1473), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1475), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1477), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1521), - [anon_sym_typedef] = ACTIONS(1523), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1525), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1389), - [anon_sym___declspec] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(1479), + [anon_sym_COLON_COLON] = ACTIONS(1427), [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1527), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(1481), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -47510,121 +49179,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_constexpr] = ACTIONS(57), [anon_sym_constinit] = ACTIONS(57), [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1529), - [anon_sym_unsigned] = ACTIONS(1529), - [anon_sym_long] = ACTIONS(1529), - [anon_sym_short] = ACTIONS(1529), - [sym_primitive_type] = ACTIONS(1531), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1535), - [anon_sym_struct] = ACTIONS(1537), - [anon_sym_union] = ACTIONS(1539), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1541), - [anon_sym_decltype] = ACTIONS(1543), - [anon_sym_virtual] = ACTIONS(109), - [anon_sym_explicit] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1545), - [anon_sym_private] = ACTIONS(1545), - [anon_sym_protected] = ACTIONS(1545), - [anon_sym_typename] = ACTIONS(1547), - [anon_sym_template] = ACTIONS(1549), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_friend] = ACTIONS(1551), - [anon_sym_using] = ACTIONS(1553), - [anon_sym_static_assert] = ACTIONS(1555), + [anon_sym_signed] = ACTIONS(1483), + [anon_sym_unsigned] = ACTIONS(1483), + [anon_sym_long] = ACTIONS(1483), + [anon_sym_short] = ACTIONS(1483), + [sym_primitive_type] = ACTIONS(1485), + [anon_sym_enum] = ACTIONS(1487), + [anon_sym_class] = ACTIONS(1489), + [anon_sym_struct] = ACTIONS(1491), + [anon_sym_union] = ACTIONS(1493), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1495), + [anon_sym_decltype] = ACTIONS(1497), + [anon_sym_typename] = ACTIONS(1499), + [anon_sym_template] = ACTIONS(976), + [anon_sym_operator] = ACTIONS(1501), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_co_await] = ACTIONS(1455), + [anon_sym_new] = ACTIONS(1457), + [anon_sym_requires] = ACTIONS(1459), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + [sym_raw_string_literal] = ACTIONS(1461), }, [120] = { - [sym_preproc_def] = STATE(119), - [sym_preproc_function_def] = STATE(119), - [sym_preproc_call] = STATE(119), - [sym_preproc_if_in_field_declaration_list] = STATE(119), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(119), - [sym_preproc_else_in_field_declaration_list] = STATE(6657), - [sym_preproc_elif_in_field_declaration_list] = STATE(6657), - [sym_type_definition] = STATE(119), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(4157), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(2900), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4703), - [sym_array_declarator] = STATE(4825), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(3200), - [sym_sized_type_specifier] = STATE(3371), - [sym_enum_specifier] = STATE(3371), - [sym_struct_specifier] = STATE(3371), - [sym_union_specifier] = STATE(3371), - [sym__field_declaration_list_item] = STATE(119), - [sym_field_declaration] = STATE(119), - [sym_placeholder_type_specifier] = STATE(3371), - [sym_decltype_auto] = STATE(3366), - [sym_decltype] = STATE(3371), - [sym_class_specifier] = STATE(3371), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1767), - [sym_dependent_type] = STATE(3371), - [sym_template_declaration] = STATE(119), - [sym_operator_cast] = STATE(5199), - [sym_inline_method_definition] = STATE(119), - [sym__constructor_specifiers] = STATE(1767), - [sym_operator_cast_definition] = STATE(119), - [sym_operator_cast_declaration] = STATE(119), - [sym_constructor_or_destructor_definition] = STATE(119), - [sym_constructor_or_destructor_declaration] = STATE(119), - [sym_friend_declaration] = STATE(119), - [sym_access_specifier] = STATE(119), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(2976), - [sym_template_function] = STATE(4825), - [sym_using_declaration] = STATE(119), - [sym_alias_declaration] = STATE(119), - [sym_static_assert_declaration] = STATE(119), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4515), - [sym_qualified_identifier] = STATE(4825), - [sym_qualified_type_identifier] = STATE(3400), - [sym_qualified_operator_cast_identifier] = STATE(5199), - [sym_operator_name] = STATE(4825), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(119), - [aux_sym__declaration_specifiers_repeat1] = STATE(1896), - [aux_sym_sized_type_specifier_repeat1] = STATE(3286), - [aux_sym_operator_cast_definition_repeat1] = STATE(1767), - [sym_identifier] = ACTIONS(1499), - [aux_sym_preproc_def_token1] = ACTIONS(1501), - [aux_sym_preproc_if_token1] = ACTIONS(1503), - [aux_sym_preproc_if_token2] = ACTIONS(1561), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1507), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1507), - [aux_sym_preproc_else_token1] = ACTIONS(1509), - [aux_sym_preproc_elif_token1] = ACTIONS(1511), - [sym_preproc_directive] = ACTIONS(1513), - [anon_sym_LPAREN2] = ACTIONS(1515), - [anon_sym_TILDE] = ACTIONS(1517), - [anon_sym_STAR] = ACTIONS(1519), + [sym_ms_based_modifier] = STATE(7250), + [sym__declarator] = STATE(5390), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(5080), + [sym_array_declarator] = STATE(5080), + [sym_type_qualifier] = STATE(3369), + [sym__type_specifier] = STATE(4187), + [sym_sized_type_specifier] = STATE(2780), + [sym_enum_specifier] = STATE(2780), + [sym_struct_specifier] = STATE(2780), + [sym_union_specifier] = STATE(2780), + [sym__expression] = STATE(2801), + [sym_comma_expression] = STATE(7222), + [sym_conditional_expression] = STATE(3135), + [sym_assignment_expression] = STATE(3135), + [sym_pointer_expression] = STATE(2788), + [sym_unary_expression] = STATE(3135), + [sym_binary_expression] = STATE(3135), + [sym_update_expression] = STATE(3135), + [sym_cast_expression] = STATE(3135), + [sym_type_descriptor] = STATE(7185), + [sym_sizeof_expression] = STATE(3135), + [sym_subscript_expression] = STATE(2788), + [sym_call_expression] = STATE(2788), + [sym_field_expression] = STATE(2788), + [sym_compound_literal_expression] = STATE(3135), + [sym_parenthesized_expression] = STATE(2788), + [sym_char_literal] = STATE(2981), + [sym_concatenated_string] = STATE(2981), + [sym_string_literal] = STATE(1970), + [sym_placeholder_type_specifier] = STATE(2780), + [sym_decltype_auto] = STATE(2731), + [sym_decltype] = STATE(2780), + [sym_class_specifier] = STATE(2780), + [sym__class_name] = STATE(6450), + [sym_dependent_type] = STATE(2780), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(4443), + [sym_template_function] = STATE(2997), + [sym_co_await_expression] = STATE(3135), + [sym_new_expression] = STATE(3135), + [sym_delete_expression] = STATE(3135), + [sym_requires_clause] = STATE(3135), + [sym_requires_expression] = STATE(3135), + [sym_lambda_expression] = STATE(3135), + [sym_lambda_capture_specifier] = STATE(4771), + [sym__unary_left_fold] = STATE(7192), + [sym__unary_right_fold] = STATE(7193), + [sym__binary_fold] = STATE(7194), + [sym_fold_expression] = STATE(3135), + [sym_parameter_pack_expansion] = STATE(3135), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4935), + [sym_qualified_identifier] = STATE(2657), + [sym_qualified_type_identifier] = STATE(4514), + [sym_operator_name] = STATE(5080), + [sym_user_defined_literal] = STATE(3135), + [aux_sym_type_definition_repeat1] = STATE(3369), + [aux_sym_sized_type_specifier_repeat1] = STATE(1935), + [sym_identifier] = ACTIONS(1471), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), + [anon_sym_LPAREN2] = ACTIONS(1473), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1475), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1477), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1521), - [anon_sym_typedef] = ACTIONS(1523), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1525), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1389), - [anon_sym___declspec] = ACTIONS(45), + [anon_sym_AMP] = ACTIONS(1479), + [anon_sym_COLON_COLON] = ACTIONS(1427), [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1527), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(1481), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -47633,117 +49306,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_constexpr] = ACTIONS(57), [anon_sym_constinit] = ACTIONS(57), [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1529), - [anon_sym_unsigned] = ACTIONS(1529), - [anon_sym_long] = ACTIONS(1529), - [anon_sym_short] = ACTIONS(1529), - [sym_primitive_type] = ACTIONS(1531), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1535), - [anon_sym_struct] = ACTIONS(1537), - [anon_sym_union] = ACTIONS(1539), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1541), - [anon_sym_decltype] = ACTIONS(1543), - [anon_sym_virtual] = ACTIONS(109), - [anon_sym_explicit] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1545), - [anon_sym_private] = ACTIONS(1545), - [anon_sym_protected] = ACTIONS(1545), - [anon_sym_typename] = ACTIONS(1547), - [anon_sym_template] = ACTIONS(1549), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_friend] = ACTIONS(1551), - [anon_sym_using] = ACTIONS(1553), - [anon_sym_static_assert] = ACTIONS(1555), + [anon_sym_signed] = ACTIONS(1483), + [anon_sym_unsigned] = ACTIONS(1483), + [anon_sym_long] = ACTIONS(1483), + [anon_sym_short] = ACTIONS(1483), + [sym_primitive_type] = ACTIONS(1485), + [anon_sym_enum] = ACTIONS(1487), + [anon_sym_class] = ACTIONS(1489), + [anon_sym_struct] = ACTIONS(1491), + [anon_sym_union] = ACTIONS(1493), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1495), + [anon_sym_decltype] = ACTIONS(1497), + [anon_sym_typename] = ACTIONS(1499), + [anon_sym_template] = ACTIONS(976), + [anon_sym_operator] = ACTIONS(1501), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_co_await] = ACTIONS(1455), + [anon_sym_new] = ACTIONS(1457), + [anon_sym_requires] = ACTIONS(1459), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + [sym_raw_string_literal] = ACTIONS(1461), }, [121] = { - [sym_preproc_def] = STATE(124), - [sym_preproc_function_def] = STATE(124), - [sym_preproc_call] = STATE(124), - [sym_preproc_if_in_field_declaration_list] = STATE(124), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(124), - [sym_preproc_else_in_field_declaration_list] = STATE(6486), - [sym_preproc_elif_in_field_declaration_list] = STATE(6486), - [sym_type_definition] = STATE(124), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(4157), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(2900), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4703), - [sym_array_declarator] = STATE(4825), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(3200), - [sym_sized_type_specifier] = STATE(3371), - [sym_enum_specifier] = STATE(3371), - [sym_struct_specifier] = STATE(3371), - [sym_union_specifier] = STATE(3371), - [sym__field_declaration_list_item] = STATE(124), - [sym_field_declaration] = STATE(124), - [sym_placeholder_type_specifier] = STATE(3371), - [sym_decltype_auto] = STATE(3366), - [sym_decltype] = STATE(3371), - [sym_class_specifier] = STATE(3371), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1767), - [sym_dependent_type] = STATE(3371), - [sym_template_declaration] = STATE(124), - [sym_operator_cast] = STATE(5199), - [sym_inline_method_definition] = STATE(124), - [sym__constructor_specifiers] = STATE(1767), - [sym_operator_cast_definition] = STATE(124), - [sym_operator_cast_declaration] = STATE(124), - [sym_constructor_or_destructor_definition] = STATE(124), - [sym_constructor_or_destructor_declaration] = STATE(124), - [sym_friend_declaration] = STATE(124), - [sym_access_specifier] = STATE(124), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(2976), - [sym_template_function] = STATE(4825), - [sym_using_declaration] = STATE(124), - [sym_alias_declaration] = STATE(124), - [sym_static_assert_declaration] = STATE(124), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4515), - [sym_qualified_identifier] = STATE(4825), - [sym_qualified_type_identifier] = STATE(3400), - [sym_qualified_operator_cast_identifier] = STATE(5199), - [sym_operator_name] = STATE(4825), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(124), - [aux_sym__declaration_specifiers_repeat1] = STATE(1896), - [aux_sym_sized_type_specifier_repeat1] = STATE(3286), - [aux_sym_operator_cast_definition_repeat1] = STATE(1767), - [sym_identifier] = ACTIONS(1499), - [aux_sym_preproc_def_token1] = ACTIONS(1501), - [aux_sym_preproc_if_token1] = ACTIONS(1503), - [aux_sym_preproc_if_token2] = ACTIONS(1563), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1507), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1507), - [aux_sym_preproc_else_token1] = ACTIONS(1509), - [aux_sym_preproc_elif_token1] = ACTIONS(1511), - [sym_preproc_directive] = ACTIONS(1513), - [anon_sym_LPAREN2] = ACTIONS(1515), - [anon_sym_TILDE] = ACTIONS(1517), - [anon_sym_STAR] = ACTIONS(1519), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1521), - [anon_sym_typedef] = ACTIONS(1523), + [sym__declaration_modifiers] = STATE(2203), + [sym__declaration_specifiers] = STATE(4307), + [sym_attribute_specifier] = STATE(2203), + [sym_attribute_declaration] = STATE(2203), + [sym_ms_declspec_modifier] = STATE(2203), + [sym_storage_class_specifier] = STATE(2203), + [sym_type_qualifier] = STATE(2203), + [sym__type_specifier] = STATE(3251), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym__expression] = STATE(3746), + [sym_comma_expression] = STATE(6774), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(2203), + [sym_dependent_type] = STATE(3481), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3435), + [sym_condition_declaration] = STATE(6774), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4928), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(3729), + [sym_user_defined_literal] = STATE(3435), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [sym_identifier] = ACTIONS(1391), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), [anon_sym_extern] = ACTIONS(55), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1525), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1389), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1527), + [anon_sym_LBRACK] = ACTIONS(974), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), @@ -47756,101 +49431,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_constexpr] = ACTIONS(57), [anon_sym_constinit] = ACTIONS(57), [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1529), - [anon_sym_unsigned] = ACTIONS(1529), - [anon_sym_long] = ACTIONS(1529), - [anon_sym_short] = ACTIONS(1529), - [sym_primitive_type] = ACTIONS(1531), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1535), - [anon_sym_struct] = ACTIONS(1537), - [anon_sym_union] = ACTIONS(1539), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1541), - [anon_sym_decltype] = ACTIONS(1543), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(61), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), [anon_sym_virtual] = ACTIONS(109), - [anon_sym_explicit] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1545), - [anon_sym_private] = ACTIONS(1545), - [anon_sym_protected] = ACTIONS(1545), - [anon_sym_typename] = ACTIONS(1547), - [anon_sym_template] = ACTIONS(1549), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_friend] = ACTIONS(1551), - [anon_sym_using] = ACTIONS(1553), - [anon_sym_static_assert] = ACTIONS(1555), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), }, [122] = { - [sym__declaration_modifiers] = STATE(1894), - [sym__declaration_specifiers] = STATE(4059), - [sym_attribute_specifier] = STATE(1894), - [sym_attribute_declaration] = STATE(1894), - [sym_ms_declspec_modifier] = STATE(1894), - [sym_storage_class_specifier] = STATE(1894), - [sym_type_qualifier] = STATE(1894), - [sym__type_specifier] = STATE(2596), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym__expression] = STATE(3738), - [sym_comma_expression] = STATE(6379), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(1894), - [sym_dependent_type] = STATE(3139), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3428), - [sym_condition_declaration] = STATE(6379), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4625), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(3276), - [sym_user_defined_literal] = STATE(3428), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [sym_identifier] = ACTIONS(1387), - [anon_sym_LPAREN2] = ACTIONS(960), + [sym__declaration_modifiers] = STATE(2203), + [sym__declaration_specifiers] = STATE(4307), + [sym_attribute_specifier] = STATE(2203), + [sym_attribute_declaration] = STATE(2203), + [sym_ms_declspec_modifier] = STATE(2203), + [sym_storage_class_specifier] = STATE(2203), + [sym_type_qualifier] = STATE(2203), + [sym__type_specifier] = STATE(3251), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym__expression] = STATE(3700), + [sym_comma_expression] = STATE(7058), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6680), + [sym_virtual_function_specifier] = STATE(2203), + [sym_dependent_type] = STATE(3481), + [sym_template_type] = STATE(3748), + [sym_template_function] = STATE(3435), + [sym_condition_declaration] = STATE(7058), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4928), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(3729), + [sym_user_defined_literal] = STATE(3435), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [sym_identifier] = ACTIONS(1391), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), [anon_sym_extern] = ACTIONS(55), [anon_sym___attribute__] = ACTIONS(39), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1389), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), [anon_sym___declspec] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(974), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), @@ -47872,6 +49565,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(65), [anon_sym_struct] = ACTIONS(67), [anon_sym_union] = ACTIONS(69), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -47894,7 +49589,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_decltype] = ACTIONS(107), [anon_sym_virtual] = ACTIONS(109), [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(972), + [anon_sym_template] = ACTIONS(976), [anon_sym_delete] = ACTIONS(121), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), @@ -47904,92 +49599,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(143), }, [123] = { - [sym_preproc_def] = STATE(117), - [sym_preproc_function_def] = STATE(117), - [sym_preproc_call] = STATE(117), - [sym_preproc_if_in_field_declaration_list] = STATE(117), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(117), - [sym_preproc_else_in_field_declaration_list] = STATE(6525), - [sym_preproc_elif_in_field_declaration_list] = STATE(6525), - [sym_type_definition] = STATE(117), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(4157), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(2900), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4703), - [sym_array_declarator] = STATE(4825), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(3200), - [sym_sized_type_specifier] = STATE(3371), - [sym_enum_specifier] = STATE(3371), - [sym_struct_specifier] = STATE(3371), - [sym_union_specifier] = STATE(3371), - [sym__field_declaration_list_item] = STATE(117), - [sym_field_declaration] = STATE(117), - [sym_placeholder_type_specifier] = STATE(3371), - [sym_decltype_auto] = STATE(3366), - [sym_decltype] = STATE(3371), - [sym_class_specifier] = STATE(3371), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1767), - [sym_dependent_type] = STATE(3371), - [sym_template_declaration] = STATE(117), - [sym_operator_cast] = STATE(5199), - [sym_inline_method_definition] = STATE(117), - [sym__constructor_specifiers] = STATE(1767), - [sym_operator_cast_definition] = STATE(117), - [sym_operator_cast_declaration] = STATE(117), - [sym_constructor_or_destructor_definition] = STATE(117), - [sym_constructor_or_destructor_declaration] = STATE(117), - [sym_friend_declaration] = STATE(117), - [sym_access_specifier] = STATE(117), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(2976), - [sym_template_function] = STATE(4825), - [sym_using_declaration] = STATE(117), - [sym_alias_declaration] = STATE(117), - [sym_static_assert_declaration] = STATE(117), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4515), - [sym_qualified_identifier] = STATE(4825), - [sym_qualified_type_identifier] = STATE(3400), - [sym_qualified_operator_cast_identifier] = STATE(5199), - [sym_operator_name] = STATE(4825), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(117), - [aux_sym__declaration_specifiers_repeat1] = STATE(1896), - [aux_sym_sized_type_specifier_repeat1] = STATE(3286), - [aux_sym_operator_cast_definition_repeat1] = STATE(1767), - [sym_identifier] = ACTIONS(1499), - [aux_sym_preproc_def_token1] = ACTIONS(1501), - [aux_sym_preproc_if_token1] = ACTIONS(1503), - [aux_sym_preproc_if_token2] = ACTIONS(1565), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1507), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1507), - [aux_sym_preproc_else_token1] = ACTIONS(1509), - [aux_sym_preproc_elif_token1] = ACTIONS(1511), - [sym_preproc_directive] = ACTIONS(1513), - [anon_sym_LPAREN2] = ACTIONS(1515), - [anon_sym_TILDE] = ACTIONS(1517), - [anon_sym_STAR] = ACTIONS(1519), + [sym_preproc_def] = STATE(131), + [sym_preproc_function_def] = STATE(131), + [sym_preproc_call] = STATE(131), + [sym_preproc_if_in_field_declaration_list] = STATE(131), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(131), + [sym_preproc_else_in_field_declaration_list] = STATE(7091), + [sym_preproc_elif_in_field_declaration_list] = STATE(7091), + [sym_type_definition] = STATE(131), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4414), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(3343), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(4956), + [sym_array_declarator] = STATE(5080), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3521), + [sym_sized_type_specifier] = STATE(4001), + [sym_enum_specifier] = STATE(4001), + [sym_struct_specifier] = STATE(4001), + [sym_union_specifier] = STATE(4001), + [sym__field_declaration_list_item] = STATE(131), + [sym_field_declaration] = STATE(131), + [sym_placeholder_type_specifier] = STATE(4001), + [sym_decltype_auto] = STATE(4021), + [sym_decltype] = STATE(4001), + [sym_class_specifier] = STATE(4001), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1985), + [sym_dependent_type] = STATE(4001), + [sym_template_declaration] = STATE(131), + [sym_operator_cast] = STATE(5475), + [sym_inline_method_definition] = STATE(131), + [sym__constructor_specifiers] = STATE(1985), + [sym_operator_cast_definition] = STATE(131), + [sym_operator_cast_declaration] = STATE(131), + [sym_constructor_or_destructor_definition] = STATE(131), + [sym_constructor_or_destructor_declaration] = STATE(131), + [sym_friend_declaration] = STATE(131), + [sym_access_specifier] = STATE(131), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3395), + [sym_template_function] = STATE(5080), + [sym_using_declaration] = STATE(131), + [sym_alias_declaration] = STATE(131), + [sym_static_assert_declaration] = STATE(131), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4775), + [sym_qualified_identifier] = STATE(5080), + [sym_qualified_type_identifier] = STATE(4003), + [sym_qualified_operator_cast_identifier] = STATE(5475), + [sym_operator_name] = STATE(5080), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(131), + [aux_sym__declaration_specifiers_repeat1] = STATE(2191), + [aux_sym_sized_type_specifier_repeat1] = STATE(3805), + [aux_sym_operator_cast_definition_repeat1] = STATE(1985), + [sym_identifier] = ACTIONS(1503), + [aux_sym_preproc_def_token1] = ACTIONS(1505), + [aux_sym_preproc_if_token1] = ACTIONS(1507), + [aux_sym_preproc_if_token2] = ACTIONS(1509), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1511), + [aux_sym_preproc_else_token1] = ACTIONS(1513), + [aux_sym_preproc_elif_token1] = ACTIONS(1515), + [sym_preproc_directive] = ACTIONS(1517), + [anon_sym_LPAREN2] = ACTIONS(1519), + [anon_sym_TILDE] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1523), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1521), - [anon_sym_typedef] = ACTIONS(1523), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_typedef] = ACTIONS(1527), [anon_sym_extern] = ACTIONS(55), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1525), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1389), + [anon_sym_COLON_COLON] = ACTIONS(1529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), [anon_sym___declspec] = ACTIONS(45), [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1527), + [anon_sym_LBRACK] = ACTIONS(1531), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), @@ -48002,117 +49697,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_constexpr] = ACTIONS(57), [anon_sym_constinit] = ACTIONS(57), [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1529), - [anon_sym_unsigned] = ACTIONS(1529), - [anon_sym_long] = ACTIONS(1529), - [anon_sym_short] = ACTIONS(1529), - [sym_primitive_type] = ACTIONS(1531), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1535), - [anon_sym_struct] = ACTIONS(1537), - [anon_sym_union] = ACTIONS(1539), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1541), - [anon_sym_decltype] = ACTIONS(1543), + [anon_sym_signed] = ACTIONS(1533), + [anon_sym_unsigned] = ACTIONS(1533), + [anon_sym_long] = ACTIONS(1533), + [anon_sym_short] = ACTIONS(1533), + [sym_primitive_type] = ACTIONS(1535), + [anon_sym_enum] = ACTIONS(1537), + [anon_sym_class] = ACTIONS(1539), + [anon_sym_struct] = ACTIONS(1541), + [anon_sym_union] = ACTIONS(1543), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1545), + [anon_sym_decltype] = ACTIONS(1547), [anon_sym_virtual] = ACTIONS(109), [anon_sym_explicit] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1545), - [anon_sym_private] = ACTIONS(1545), - [anon_sym_protected] = ACTIONS(1545), - [anon_sym_typename] = ACTIONS(1547), - [anon_sym_template] = ACTIONS(1549), + [anon_sym_public] = ACTIONS(1549), + [anon_sym_private] = ACTIONS(1549), + [anon_sym_protected] = ACTIONS(1549), + [anon_sym_typename] = ACTIONS(1551), + [anon_sym_template] = ACTIONS(1553), [anon_sym_operator] = ACTIONS(117), - [anon_sym_friend] = ACTIONS(1551), - [anon_sym_using] = ACTIONS(1553), - [anon_sym_static_assert] = ACTIONS(1555), + [anon_sym_friend] = ACTIONS(1555), + [anon_sym_using] = ACTIONS(1557), + [anon_sym_static_assert] = ACTIONS(1559), }, [124] = { - [sym_preproc_def] = STATE(133), - [sym_preproc_function_def] = STATE(133), - [sym_preproc_call] = STATE(133), - [sym_preproc_if_in_field_declaration_list] = STATE(133), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(133), - [sym_preproc_else_in_field_declaration_list] = STATE(6532), - [sym_preproc_elif_in_field_declaration_list] = STATE(6532), - [sym_type_definition] = STATE(133), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(4157), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(2900), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4703), - [sym_array_declarator] = STATE(4825), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(3200), - [sym_sized_type_specifier] = STATE(3371), - [sym_enum_specifier] = STATE(3371), - [sym_struct_specifier] = STATE(3371), - [sym_union_specifier] = STATE(3371), - [sym__field_declaration_list_item] = STATE(133), - [sym_field_declaration] = STATE(133), - [sym_placeholder_type_specifier] = STATE(3371), - [sym_decltype_auto] = STATE(3366), - [sym_decltype] = STATE(3371), - [sym_class_specifier] = STATE(3371), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1767), - [sym_dependent_type] = STATE(3371), - [sym_template_declaration] = STATE(133), - [sym_operator_cast] = STATE(5199), - [sym_inline_method_definition] = STATE(133), - [sym__constructor_specifiers] = STATE(1767), - [sym_operator_cast_definition] = STATE(133), - [sym_operator_cast_declaration] = STATE(133), - [sym_constructor_or_destructor_definition] = STATE(133), - [sym_constructor_or_destructor_declaration] = STATE(133), - [sym_friend_declaration] = STATE(133), - [sym_access_specifier] = STATE(133), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(2976), - [sym_template_function] = STATE(4825), - [sym_using_declaration] = STATE(133), - [sym_alias_declaration] = STATE(133), - [sym_static_assert_declaration] = STATE(133), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4515), - [sym_qualified_identifier] = STATE(4825), - [sym_qualified_type_identifier] = STATE(3400), - [sym_qualified_operator_cast_identifier] = STATE(5199), - [sym_operator_name] = STATE(4825), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(133), - [aux_sym__declaration_specifiers_repeat1] = STATE(1896), - [aux_sym_sized_type_specifier_repeat1] = STATE(3286), - [aux_sym_operator_cast_definition_repeat1] = STATE(1767), - [sym_identifier] = ACTIONS(1499), - [aux_sym_preproc_def_token1] = ACTIONS(1501), - [aux_sym_preproc_if_token1] = ACTIONS(1503), - [aux_sym_preproc_if_token2] = ACTIONS(1567), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1507), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1507), - [aux_sym_preproc_else_token1] = ACTIONS(1509), - [aux_sym_preproc_elif_token1] = ACTIONS(1511), - [sym_preproc_directive] = ACTIONS(1513), - [anon_sym_LPAREN2] = ACTIONS(1515), - [anon_sym_TILDE] = ACTIONS(1517), - [anon_sym_STAR] = ACTIONS(1519), + [sym_preproc_def] = STATE(127), + [sym_preproc_function_def] = STATE(127), + [sym_preproc_call] = STATE(127), + [sym_preproc_if_in_field_declaration_list] = STATE(127), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(127), + [sym_preproc_else_in_field_declaration_list] = STATE(7125), + [sym_preproc_elif_in_field_declaration_list] = STATE(7125), + [sym_type_definition] = STATE(127), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4414), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(3343), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(4956), + [sym_array_declarator] = STATE(5080), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3521), + [sym_sized_type_specifier] = STATE(4001), + [sym_enum_specifier] = STATE(4001), + [sym_struct_specifier] = STATE(4001), + [sym_union_specifier] = STATE(4001), + [sym__field_declaration_list_item] = STATE(127), + [sym_field_declaration] = STATE(127), + [sym_placeholder_type_specifier] = STATE(4001), + [sym_decltype_auto] = STATE(4021), + [sym_decltype] = STATE(4001), + [sym_class_specifier] = STATE(4001), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1985), + [sym_dependent_type] = STATE(4001), + [sym_template_declaration] = STATE(127), + [sym_operator_cast] = STATE(5475), + [sym_inline_method_definition] = STATE(127), + [sym__constructor_specifiers] = STATE(1985), + [sym_operator_cast_definition] = STATE(127), + [sym_operator_cast_declaration] = STATE(127), + [sym_constructor_or_destructor_definition] = STATE(127), + [sym_constructor_or_destructor_declaration] = STATE(127), + [sym_friend_declaration] = STATE(127), + [sym_access_specifier] = STATE(127), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3395), + [sym_template_function] = STATE(5080), + [sym_using_declaration] = STATE(127), + [sym_alias_declaration] = STATE(127), + [sym_static_assert_declaration] = STATE(127), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4775), + [sym_qualified_identifier] = STATE(5080), + [sym_qualified_type_identifier] = STATE(4003), + [sym_qualified_operator_cast_identifier] = STATE(5475), + [sym_operator_name] = STATE(5080), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(127), + [aux_sym__declaration_specifiers_repeat1] = STATE(2191), + [aux_sym_sized_type_specifier_repeat1] = STATE(3805), + [aux_sym_operator_cast_definition_repeat1] = STATE(1985), + [sym_identifier] = ACTIONS(1503), + [aux_sym_preproc_def_token1] = ACTIONS(1505), + [aux_sym_preproc_if_token1] = ACTIONS(1507), + [aux_sym_preproc_if_token2] = ACTIONS(1561), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1511), + [aux_sym_preproc_else_token1] = ACTIONS(1513), + [aux_sym_preproc_elif_token1] = ACTIONS(1515), + [sym_preproc_directive] = ACTIONS(1517), + [anon_sym_LPAREN2] = ACTIONS(1519), + [anon_sym_TILDE] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1523), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1521), - [anon_sym_typedef] = ACTIONS(1523), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_typedef] = ACTIONS(1527), [anon_sym_extern] = ACTIONS(55), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1525), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1389), + [anon_sym_COLON_COLON] = ACTIONS(1529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), [anon_sym___declspec] = ACTIONS(45), [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1527), + [anon_sym_LBRACK] = ACTIONS(1531), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), @@ -48125,117 +49820,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_constexpr] = ACTIONS(57), [anon_sym_constinit] = ACTIONS(57), [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1529), - [anon_sym_unsigned] = ACTIONS(1529), - [anon_sym_long] = ACTIONS(1529), - [anon_sym_short] = ACTIONS(1529), - [sym_primitive_type] = ACTIONS(1531), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1535), - [anon_sym_struct] = ACTIONS(1537), - [anon_sym_union] = ACTIONS(1539), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1541), - [anon_sym_decltype] = ACTIONS(1543), + [anon_sym_signed] = ACTIONS(1533), + [anon_sym_unsigned] = ACTIONS(1533), + [anon_sym_long] = ACTIONS(1533), + [anon_sym_short] = ACTIONS(1533), + [sym_primitive_type] = ACTIONS(1535), + [anon_sym_enum] = ACTIONS(1537), + [anon_sym_class] = ACTIONS(1539), + [anon_sym_struct] = ACTIONS(1541), + [anon_sym_union] = ACTIONS(1543), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1545), + [anon_sym_decltype] = ACTIONS(1547), [anon_sym_virtual] = ACTIONS(109), [anon_sym_explicit] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1545), - [anon_sym_private] = ACTIONS(1545), - [anon_sym_protected] = ACTIONS(1545), - [anon_sym_typename] = ACTIONS(1547), - [anon_sym_template] = ACTIONS(1549), + [anon_sym_public] = ACTIONS(1549), + [anon_sym_private] = ACTIONS(1549), + [anon_sym_protected] = ACTIONS(1549), + [anon_sym_typename] = ACTIONS(1551), + [anon_sym_template] = ACTIONS(1553), [anon_sym_operator] = ACTIONS(117), - [anon_sym_friend] = ACTIONS(1551), - [anon_sym_using] = ACTIONS(1553), - [anon_sym_static_assert] = ACTIONS(1555), + [anon_sym_friend] = ACTIONS(1555), + [anon_sym_using] = ACTIONS(1557), + [anon_sym_static_assert] = ACTIONS(1559), }, [125] = { - [sym_preproc_def] = STATE(132), - [sym_preproc_function_def] = STATE(132), - [sym_preproc_call] = STATE(132), - [sym_preproc_if_in_field_declaration_list] = STATE(132), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(132), - [sym_preproc_else_in_field_declaration_list] = STATE(6695), - [sym_preproc_elif_in_field_declaration_list] = STATE(6695), - [sym_type_definition] = STATE(132), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(4157), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(2900), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4703), - [sym_array_declarator] = STATE(4825), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(3200), - [sym_sized_type_specifier] = STATE(3371), - [sym_enum_specifier] = STATE(3371), - [sym_struct_specifier] = STATE(3371), - [sym_union_specifier] = STATE(3371), - [sym__field_declaration_list_item] = STATE(132), - [sym_field_declaration] = STATE(132), - [sym_placeholder_type_specifier] = STATE(3371), - [sym_decltype_auto] = STATE(3366), - [sym_decltype] = STATE(3371), - [sym_class_specifier] = STATE(3371), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1767), - [sym_dependent_type] = STATE(3371), - [sym_template_declaration] = STATE(132), - [sym_operator_cast] = STATE(5199), - [sym_inline_method_definition] = STATE(132), - [sym__constructor_specifiers] = STATE(1767), - [sym_operator_cast_definition] = STATE(132), - [sym_operator_cast_declaration] = STATE(132), - [sym_constructor_or_destructor_definition] = STATE(132), - [sym_constructor_or_destructor_declaration] = STATE(132), - [sym_friend_declaration] = STATE(132), - [sym_access_specifier] = STATE(132), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(2976), - [sym_template_function] = STATE(4825), - [sym_using_declaration] = STATE(132), - [sym_alias_declaration] = STATE(132), - [sym_static_assert_declaration] = STATE(132), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4515), - [sym_qualified_identifier] = STATE(4825), - [sym_qualified_type_identifier] = STATE(3400), - [sym_qualified_operator_cast_identifier] = STATE(5199), - [sym_operator_name] = STATE(4825), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(132), - [aux_sym__declaration_specifiers_repeat1] = STATE(1896), - [aux_sym_sized_type_specifier_repeat1] = STATE(3286), - [aux_sym_operator_cast_definition_repeat1] = STATE(1767), - [sym_identifier] = ACTIONS(1499), - [aux_sym_preproc_def_token1] = ACTIONS(1501), - [aux_sym_preproc_if_token1] = ACTIONS(1503), - [aux_sym_preproc_if_token2] = ACTIONS(1569), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1507), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1507), - [aux_sym_preproc_else_token1] = ACTIONS(1509), - [aux_sym_preproc_elif_token1] = ACTIONS(1511), - [sym_preproc_directive] = ACTIONS(1513), - [anon_sym_LPAREN2] = ACTIONS(1515), - [anon_sym_TILDE] = ACTIONS(1517), - [anon_sym_STAR] = ACTIONS(1519), + [sym_preproc_def] = STATE(137), + [sym_preproc_function_def] = STATE(137), + [sym_preproc_call] = STATE(137), + [sym_preproc_if_in_field_declaration_list] = STATE(137), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(137), + [sym_preproc_else_in_field_declaration_list] = STATE(6765), + [sym_preproc_elif_in_field_declaration_list] = STATE(6765), + [sym_type_definition] = STATE(137), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4414), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(3343), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(4956), + [sym_array_declarator] = STATE(5080), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3521), + [sym_sized_type_specifier] = STATE(4001), + [sym_enum_specifier] = STATE(4001), + [sym_struct_specifier] = STATE(4001), + [sym_union_specifier] = STATE(4001), + [sym__field_declaration_list_item] = STATE(137), + [sym_field_declaration] = STATE(137), + [sym_placeholder_type_specifier] = STATE(4001), + [sym_decltype_auto] = STATE(4021), + [sym_decltype] = STATE(4001), + [sym_class_specifier] = STATE(4001), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1985), + [sym_dependent_type] = STATE(4001), + [sym_template_declaration] = STATE(137), + [sym_operator_cast] = STATE(5475), + [sym_inline_method_definition] = STATE(137), + [sym__constructor_specifiers] = STATE(1985), + [sym_operator_cast_definition] = STATE(137), + [sym_operator_cast_declaration] = STATE(137), + [sym_constructor_or_destructor_definition] = STATE(137), + [sym_constructor_or_destructor_declaration] = STATE(137), + [sym_friend_declaration] = STATE(137), + [sym_access_specifier] = STATE(137), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3395), + [sym_template_function] = STATE(5080), + [sym_using_declaration] = STATE(137), + [sym_alias_declaration] = STATE(137), + [sym_static_assert_declaration] = STATE(137), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4775), + [sym_qualified_identifier] = STATE(5080), + [sym_qualified_type_identifier] = STATE(4003), + [sym_qualified_operator_cast_identifier] = STATE(5475), + [sym_operator_name] = STATE(5080), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(137), + [aux_sym__declaration_specifiers_repeat1] = STATE(2191), + [aux_sym_sized_type_specifier_repeat1] = STATE(3805), + [aux_sym_operator_cast_definition_repeat1] = STATE(1985), + [sym_identifier] = ACTIONS(1503), + [aux_sym_preproc_def_token1] = ACTIONS(1505), + [aux_sym_preproc_if_token1] = ACTIONS(1507), + [aux_sym_preproc_if_token2] = ACTIONS(1563), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1511), + [aux_sym_preproc_else_token1] = ACTIONS(1513), + [aux_sym_preproc_elif_token1] = ACTIONS(1515), + [sym_preproc_directive] = ACTIONS(1517), + [anon_sym_LPAREN2] = ACTIONS(1519), + [anon_sym_TILDE] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1523), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1521), - [anon_sym_typedef] = ACTIONS(1523), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_typedef] = ACTIONS(1527), [anon_sym_extern] = ACTIONS(55), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1525), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1389), + [anon_sym_COLON_COLON] = ACTIONS(1529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), [anon_sym___declspec] = ACTIONS(45), [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1527), + [anon_sym_LBRACK] = ACTIONS(1531), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), @@ -48248,101 +49943,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_constexpr] = ACTIONS(57), [anon_sym_constinit] = ACTIONS(57), [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1529), - [anon_sym_unsigned] = ACTIONS(1529), - [anon_sym_long] = ACTIONS(1529), - [anon_sym_short] = ACTIONS(1529), - [sym_primitive_type] = ACTIONS(1531), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1535), - [anon_sym_struct] = ACTIONS(1537), - [anon_sym_union] = ACTIONS(1539), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1541), - [anon_sym_decltype] = ACTIONS(1543), + [anon_sym_signed] = ACTIONS(1533), + [anon_sym_unsigned] = ACTIONS(1533), + [anon_sym_long] = ACTIONS(1533), + [anon_sym_short] = ACTIONS(1533), + [sym_primitive_type] = ACTIONS(1535), + [anon_sym_enum] = ACTIONS(1537), + [anon_sym_class] = ACTIONS(1539), + [anon_sym_struct] = ACTIONS(1541), + [anon_sym_union] = ACTIONS(1543), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1545), + [anon_sym_decltype] = ACTIONS(1547), [anon_sym_virtual] = ACTIONS(109), [anon_sym_explicit] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1545), - [anon_sym_private] = ACTIONS(1545), - [anon_sym_protected] = ACTIONS(1545), - [anon_sym_typename] = ACTIONS(1547), - [anon_sym_template] = ACTIONS(1549), + [anon_sym_public] = ACTIONS(1549), + [anon_sym_private] = ACTIONS(1549), + [anon_sym_protected] = ACTIONS(1549), + [anon_sym_typename] = ACTIONS(1551), + [anon_sym_template] = ACTIONS(1553), [anon_sym_operator] = ACTIONS(117), - [anon_sym_friend] = ACTIONS(1551), - [anon_sym_using] = ACTIONS(1553), - [anon_sym_static_assert] = ACTIONS(1555), + [anon_sym_friend] = ACTIONS(1555), + [anon_sym_using] = ACTIONS(1557), + [anon_sym_static_assert] = ACTIONS(1559), }, [126] = { - [sym__declaration_modifiers] = STATE(1894), - [sym__declaration_specifiers] = STATE(4059), - [sym_attribute_specifier] = STATE(1894), - [sym_attribute_declaration] = STATE(1894), - [sym_ms_declspec_modifier] = STATE(1894), - [sym_storage_class_specifier] = STATE(1894), - [sym_type_qualifier] = STATE(1894), - [sym__type_specifier] = STATE(2596), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym__expression] = STATE(3730), - [sym_comma_expression] = STATE(6591), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6144), - [sym_virtual_function_specifier] = STATE(1894), - [sym_dependent_type] = STATE(3139), - [sym_template_type] = STATE(3289), - [sym_template_function] = STATE(3428), - [sym_condition_declaration] = STATE(6591), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4625), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(3276), - [sym_user_defined_literal] = STATE(3428), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [sym_identifier] = ACTIONS(1387), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), + [sym_preproc_def] = STATE(137), + [sym_preproc_function_def] = STATE(137), + [sym_preproc_call] = STATE(137), + [sym_preproc_if_in_field_declaration_list] = STATE(137), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(137), + [sym_preproc_else_in_field_declaration_list] = STATE(6769), + [sym_preproc_elif_in_field_declaration_list] = STATE(6769), + [sym_type_definition] = STATE(137), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4414), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(3343), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(4956), + [sym_array_declarator] = STATE(5080), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3521), + [sym_sized_type_specifier] = STATE(4001), + [sym_enum_specifier] = STATE(4001), + [sym_struct_specifier] = STATE(4001), + [sym_union_specifier] = STATE(4001), + [sym__field_declaration_list_item] = STATE(137), + [sym_field_declaration] = STATE(137), + [sym_placeholder_type_specifier] = STATE(4001), + [sym_decltype_auto] = STATE(4021), + [sym_decltype] = STATE(4001), + [sym_class_specifier] = STATE(4001), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1985), + [sym_dependent_type] = STATE(4001), + [sym_template_declaration] = STATE(137), + [sym_operator_cast] = STATE(5475), + [sym_inline_method_definition] = STATE(137), + [sym__constructor_specifiers] = STATE(1985), + [sym_operator_cast_definition] = STATE(137), + [sym_operator_cast_declaration] = STATE(137), + [sym_constructor_or_destructor_definition] = STATE(137), + [sym_constructor_or_destructor_declaration] = STATE(137), + [sym_friend_declaration] = STATE(137), + [sym_access_specifier] = STATE(137), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3395), + [sym_template_function] = STATE(5080), + [sym_using_declaration] = STATE(137), + [sym_alias_declaration] = STATE(137), + [sym_static_assert_declaration] = STATE(137), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4775), + [sym_qualified_identifier] = STATE(5080), + [sym_qualified_type_identifier] = STATE(4003), + [sym_qualified_operator_cast_identifier] = STATE(5475), + [sym_operator_name] = STATE(5080), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(137), + [aux_sym__declaration_specifiers_repeat1] = STATE(2191), + [aux_sym_sized_type_specifier_repeat1] = STATE(3805), + [aux_sym_operator_cast_definition_repeat1] = STATE(1985), + [sym_identifier] = ACTIONS(1503), + [aux_sym_preproc_def_token1] = ACTIONS(1505), + [aux_sym_preproc_if_token1] = ACTIONS(1507), + [aux_sym_preproc_if_token2] = ACTIONS(1565), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1511), + [aux_sym_preproc_else_token1] = ACTIONS(1513), + [aux_sym_preproc_elif_token1] = ACTIONS(1515), + [sym_preproc_directive] = ACTIONS(1517), + [anon_sym_LPAREN2] = ACTIONS(1519), + [anon_sym_TILDE] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1523), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_typedef] = ACTIONS(1527), [anon_sym_extern] = ACTIONS(55), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1389), + [anon_sym_COLON_COLON] = ACTIONS(1529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), [anon_sym___declspec] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(970), + [anon_sym___based] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1531), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), @@ -48355,133 +50066,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_constexpr] = ACTIONS(57), [anon_sym_constinit] = ACTIONS(57), [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(61), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(105), - [anon_sym_decltype] = ACTIONS(107), + [anon_sym_signed] = ACTIONS(1533), + [anon_sym_unsigned] = ACTIONS(1533), + [anon_sym_long] = ACTIONS(1533), + [anon_sym_short] = ACTIONS(1533), + [sym_primitive_type] = ACTIONS(1535), + [anon_sym_enum] = ACTIONS(1537), + [anon_sym_class] = ACTIONS(1539), + [anon_sym_struct] = ACTIONS(1541), + [anon_sym_union] = ACTIONS(1543), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1545), + [anon_sym_decltype] = ACTIONS(1547), [anon_sym_virtual] = ACTIONS(109), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_public] = ACTIONS(1549), + [anon_sym_private] = ACTIONS(1549), + [anon_sym_protected] = ACTIONS(1549), + [anon_sym_typename] = ACTIONS(1551), + [anon_sym_template] = ACTIONS(1553), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_friend] = ACTIONS(1555), + [anon_sym_using] = ACTIONS(1557), + [anon_sym_static_assert] = ACTIONS(1559), }, [127] = { - [sym_preproc_def] = STATE(118), - [sym_preproc_function_def] = STATE(118), - [sym_preproc_call] = STATE(118), - [sym_preproc_if_in_field_declaration_list] = STATE(118), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(118), - [sym_preproc_else_in_field_declaration_list] = STATE(6712), - [sym_preproc_elif_in_field_declaration_list] = STATE(6712), - [sym_type_definition] = STATE(118), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(4157), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(2900), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4703), - [sym_array_declarator] = STATE(4825), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(3200), - [sym_sized_type_specifier] = STATE(3371), - [sym_enum_specifier] = STATE(3371), - [sym_struct_specifier] = STATE(3371), - [sym_union_specifier] = STATE(3371), - [sym__field_declaration_list_item] = STATE(118), - [sym_field_declaration] = STATE(118), - [sym_placeholder_type_specifier] = STATE(3371), - [sym_decltype_auto] = STATE(3366), - [sym_decltype] = STATE(3371), - [sym_class_specifier] = STATE(3371), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1767), - [sym_dependent_type] = STATE(3371), - [sym_template_declaration] = STATE(118), - [sym_operator_cast] = STATE(5199), - [sym_inline_method_definition] = STATE(118), - [sym__constructor_specifiers] = STATE(1767), - [sym_operator_cast_definition] = STATE(118), - [sym_operator_cast_declaration] = STATE(118), - [sym_constructor_or_destructor_definition] = STATE(118), - [sym_constructor_or_destructor_declaration] = STATE(118), - [sym_friend_declaration] = STATE(118), - [sym_access_specifier] = STATE(118), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(2976), - [sym_template_function] = STATE(4825), - [sym_using_declaration] = STATE(118), - [sym_alias_declaration] = STATE(118), - [sym_static_assert_declaration] = STATE(118), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4515), - [sym_qualified_identifier] = STATE(4825), - [sym_qualified_type_identifier] = STATE(3400), - [sym_qualified_operator_cast_identifier] = STATE(5199), - [sym_operator_name] = STATE(4825), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(118), - [aux_sym__declaration_specifiers_repeat1] = STATE(1896), - [aux_sym_sized_type_specifier_repeat1] = STATE(3286), - [aux_sym_operator_cast_definition_repeat1] = STATE(1767), - [sym_identifier] = ACTIONS(1499), - [aux_sym_preproc_def_token1] = ACTIONS(1501), - [aux_sym_preproc_if_token1] = ACTIONS(1503), - [aux_sym_preproc_if_token2] = ACTIONS(1571), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1507), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1507), - [aux_sym_preproc_else_token1] = ACTIONS(1509), - [aux_sym_preproc_elif_token1] = ACTIONS(1511), - [sym_preproc_directive] = ACTIONS(1513), - [anon_sym_LPAREN2] = ACTIONS(1515), - [anon_sym_TILDE] = ACTIONS(1517), - [anon_sym_STAR] = ACTIONS(1519), + [sym_preproc_def] = STATE(137), + [sym_preproc_function_def] = STATE(137), + [sym_preproc_call] = STATE(137), + [sym_preproc_if_in_field_declaration_list] = STATE(137), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(137), + [sym_preproc_else_in_field_declaration_list] = STATE(7145), + [sym_preproc_elif_in_field_declaration_list] = STATE(7145), + [sym_type_definition] = STATE(137), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4414), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(3343), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(4956), + [sym_array_declarator] = STATE(5080), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3521), + [sym_sized_type_specifier] = STATE(4001), + [sym_enum_specifier] = STATE(4001), + [sym_struct_specifier] = STATE(4001), + [sym_union_specifier] = STATE(4001), + [sym__field_declaration_list_item] = STATE(137), + [sym_field_declaration] = STATE(137), + [sym_placeholder_type_specifier] = STATE(4001), + [sym_decltype_auto] = STATE(4021), + [sym_decltype] = STATE(4001), + [sym_class_specifier] = STATE(4001), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1985), + [sym_dependent_type] = STATE(4001), + [sym_template_declaration] = STATE(137), + [sym_operator_cast] = STATE(5475), + [sym_inline_method_definition] = STATE(137), + [sym__constructor_specifiers] = STATE(1985), + [sym_operator_cast_definition] = STATE(137), + [sym_operator_cast_declaration] = STATE(137), + [sym_constructor_or_destructor_definition] = STATE(137), + [sym_constructor_or_destructor_declaration] = STATE(137), + [sym_friend_declaration] = STATE(137), + [sym_access_specifier] = STATE(137), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3395), + [sym_template_function] = STATE(5080), + [sym_using_declaration] = STATE(137), + [sym_alias_declaration] = STATE(137), + [sym_static_assert_declaration] = STATE(137), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4775), + [sym_qualified_identifier] = STATE(5080), + [sym_qualified_type_identifier] = STATE(4003), + [sym_qualified_operator_cast_identifier] = STATE(5475), + [sym_operator_name] = STATE(5080), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(137), + [aux_sym__declaration_specifiers_repeat1] = STATE(2191), + [aux_sym_sized_type_specifier_repeat1] = STATE(3805), + [aux_sym_operator_cast_definition_repeat1] = STATE(1985), + [sym_identifier] = ACTIONS(1503), + [aux_sym_preproc_def_token1] = ACTIONS(1505), + [aux_sym_preproc_if_token1] = ACTIONS(1507), + [aux_sym_preproc_if_token2] = ACTIONS(1567), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1511), + [aux_sym_preproc_else_token1] = ACTIONS(1513), + [aux_sym_preproc_elif_token1] = ACTIONS(1515), + [sym_preproc_directive] = ACTIONS(1517), + [anon_sym_LPAREN2] = ACTIONS(1519), + [anon_sym_TILDE] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1523), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1521), - [anon_sym_typedef] = ACTIONS(1523), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_typedef] = ACTIONS(1527), [anon_sym_extern] = ACTIONS(55), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1525), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1389), + [anon_sym_COLON_COLON] = ACTIONS(1529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), [anon_sym___declspec] = ACTIONS(45), [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1527), + [anon_sym_LBRACK] = ACTIONS(1531), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), @@ -48494,117 +50189,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_constexpr] = ACTIONS(57), [anon_sym_constinit] = ACTIONS(57), [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1529), - [anon_sym_unsigned] = ACTIONS(1529), - [anon_sym_long] = ACTIONS(1529), - [anon_sym_short] = ACTIONS(1529), - [sym_primitive_type] = ACTIONS(1531), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1535), - [anon_sym_struct] = ACTIONS(1537), - [anon_sym_union] = ACTIONS(1539), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1541), - [anon_sym_decltype] = ACTIONS(1543), + [anon_sym_signed] = ACTIONS(1533), + [anon_sym_unsigned] = ACTIONS(1533), + [anon_sym_long] = ACTIONS(1533), + [anon_sym_short] = ACTIONS(1533), + [sym_primitive_type] = ACTIONS(1535), + [anon_sym_enum] = ACTIONS(1537), + [anon_sym_class] = ACTIONS(1539), + [anon_sym_struct] = ACTIONS(1541), + [anon_sym_union] = ACTIONS(1543), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1545), + [anon_sym_decltype] = ACTIONS(1547), [anon_sym_virtual] = ACTIONS(109), [anon_sym_explicit] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1545), - [anon_sym_private] = ACTIONS(1545), - [anon_sym_protected] = ACTIONS(1545), - [anon_sym_typename] = ACTIONS(1547), - [anon_sym_template] = ACTIONS(1549), + [anon_sym_public] = ACTIONS(1549), + [anon_sym_private] = ACTIONS(1549), + [anon_sym_protected] = ACTIONS(1549), + [anon_sym_typename] = ACTIONS(1551), + [anon_sym_template] = ACTIONS(1553), [anon_sym_operator] = ACTIONS(117), - [anon_sym_friend] = ACTIONS(1551), - [anon_sym_using] = ACTIONS(1553), - [anon_sym_static_assert] = ACTIONS(1555), + [anon_sym_friend] = ACTIONS(1555), + [anon_sym_using] = ACTIONS(1557), + [anon_sym_static_assert] = ACTIONS(1559), }, [128] = { - [sym_preproc_def] = STATE(133), - [sym_preproc_function_def] = STATE(133), - [sym_preproc_call] = STATE(133), - [sym_preproc_if_in_field_declaration_list] = STATE(133), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(133), - [sym_preproc_else_in_field_declaration_list] = STATE(6710), - [sym_preproc_elif_in_field_declaration_list] = STATE(6710), - [sym_type_definition] = STATE(133), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(4157), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(2900), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4703), - [sym_array_declarator] = STATE(4825), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(3200), - [sym_sized_type_specifier] = STATE(3371), - [sym_enum_specifier] = STATE(3371), - [sym_struct_specifier] = STATE(3371), - [sym_union_specifier] = STATE(3371), - [sym__field_declaration_list_item] = STATE(133), - [sym_field_declaration] = STATE(133), - [sym_placeholder_type_specifier] = STATE(3371), - [sym_decltype_auto] = STATE(3366), - [sym_decltype] = STATE(3371), - [sym_class_specifier] = STATE(3371), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1767), - [sym_dependent_type] = STATE(3371), - [sym_template_declaration] = STATE(133), - [sym_operator_cast] = STATE(5199), - [sym_inline_method_definition] = STATE(133), - [sym__constructor_specifiers] = STATE(1767), - [sym_operator_cast_definition] = STATE(133), - [sym_operator_cast_declaration] = STATE(133), - [sym_constructor_or_destructor_definition] = STATE(133), - [sym_constructor_or_destructor_declaration] = STATE(133), - [sym_friend_declaration] = STATE(133), - [sym_access_specifier] = STATE(133), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(2976), - [sym_template_function] = STATE(4825), - [sym_using_declaration] = STATE(133), - [sym_alias_declaration] = STATE(133), - [sym_static_assert_declaration] = STATE(133), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4515), - [sym_qualified_identifier] = STATE(4825), - [sym_qualified_type_identifier] = STATE(3400), - [sym_qualified_operator_cast_identifier] = STATE(5199), - [sym_operator_name] = STATE(4825), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(133), - [aux_sym__declaration_specifiers_repeat1] = STATE(1896), - [aux_sym_sized_type_specifier_repeat1] = STATE(3286), - [aux_sym_operator_cast_definition_repeat1] = STATE(1767), - [sym_identifier] = ACTIONS(1499), - [aux_sym_preproc_def_token1] = ACTIONS(1501), - [aux_sym_preproc_if_token1] = ACTIONS(1503), - [aux_sym_preproc_if_token2] = ACTIONS(1573), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1507), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1507), - [aux_sym_preproc_else_token1] = ACTIONS(1509), - [aux_sym_preproc_elif_token1] = ACTIONS(1511), - [sym_preproc_directive] = ACTIONS(1513), - [anon_sym_LPAREN2] = ACTIONS(1515), - [anon_sym_TILDE] = ACTIONS(1517), - [anon_sym_STAR] = ACTIONS(1519), + [sym_preproc_def] = STATE(137), + [sym_preproc_function_def] = STATE(137), + [sym_preproc_call] = STATE(137), + [sym_preproc_if_in_field_declaration_list] = STATE(137), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(137), + [sym_preproc_else_in_field_declaration_list] = STATE(6807), + [sym_preproc_elif_in_field_declaration_list] = STATE(6807), + [sym_type_definition] = STATE(137), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4414), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(3343), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(4956), + [sym_array_declarator] = STATE(5080), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3521), + [sym_sized_type_specifier] = STATE(4001), + [sym_enum_specifier] = STATE(4001), + [sym_struct_specifier] = STATE(4001), + [sym_union_specifier] = STATE(4001), + [sym__field_declaration_list_item] = STATE(137), + [sym_field_declaration] = STATE(137), + [sym_placeholder_type_specifier] = STATE(4001), + [sym_decltype_auto] = STATE(4021), + [sym_decltype] = STATE(4001), + [sym_class_specifier] = STATE(4001), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1985), + [sym_dependent_type] = STATE(4001), + [sym_template_declaration] = STATE(137), + [sym_operator_cast] = STATE(5475), + [sym_inline_method_definition] = STATE(137), + [sym__constructor_specifiers] = STATE(1985), + [sym_operator_cast_definition] = STATE(137), + [sym_operator_cast_declaration] = STATE(137), + [sym_constructor_or_destructor_definition] = STATE(137), + [sym_constructor_or_destructor_declaration] = STATE(137), + [sym_friend_declaration] = STATE(137), + [sym_access_specifier] = STATE(137), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3395), + [sym_template_function] = STATE(5080), + [sym_using_declaration] = STATE(137), + [sym_alias_declaration] = STATE(137), + [sym_static_assert_declaration] = STATE(137), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4775), + [sym_qualified_identifier] = STATE(5080), + [sym_qualified_type_identifier] = STATE(4003), + [sym_qualified_operator_cast_identifier] = STATE(5475), + [sym_operator_name] = STATE(5080), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(137), + [aux_sym__declaration_specifiers_repeat1] = STATE(2191), + [aux_sym_sized_type_specifier_repeat1] = STATE(3805), + [aux_sym_operator_cast_definition_repeat1] = STATE(1985), + [sym_identifier] = ACTIONS(1503), + [aux_sym_preproc_def_token1] = ACTIONS(1505), + [aux_sym_preproc_if_token1] = ACTIONS(1507), + [aux_sym_preproc_if_token2] = ACTIONS(1569), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1511), + [aux_sym_preproc_else_token1] = ACTIONS(1513), + [aux_sym_preproc_elif_token1] = ACTIONS(1515), + [sym_preproc_directive] = ACTIONS(1517), + [anon_sym_LPAREN2] = ACTIONS(1519), + [anon_sym_TILDE] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1523), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1521), - [anon_sym_typedef] = ACTIONS(1523), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_typedef] = ACTIONS(1527), [anon_sym_extern] = ACTIONS(55), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1525), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1389), + [anon_sym_COLON_COLON] = ACTIONS(1529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), [anon_sym___declspec] = ACTIONS(45), [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1527), + [anon_sym_LBRACK] = ACTIONS(1531), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), @@ -48617,117 +50312,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_constexpr] = ACTIONS(57), [anon_sym_constinit] = ACTIONS(57), [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1529), - [anon_sym_unsigned] = ACTIONS(1529), - [anon_sym_long] = ACTIONS(1529), - [anon_sym_short] = ACTIONS(1529), - [sym_primitive_type] = ACTIONS(1531), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1535), - [anon_sym_struct] = ACTIONS(1537), - [anon_sym_union] = ACTIONS(1539), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1541), - [anon_sym_decltype] = ACTIONS(1543), + [anon_sym_signed] = ACTIONS(1533), + [anon_sym_unsigned] = ACTIONS(1533), + [anon_sym_long] = ACTIONS(1533), + [anon_sym_short] = ACTIONS(1533), + [sym_primitive_type] = ACTIONS(1535), + [anon_sym_enum] = ACTIONS(1537), + [anon_sym_class] = ACTIONS(1539), + [anon_sym_struct] = ACTIONS(1541), + [anon_sym_union] = ACTIONS(1543), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1545), + [anon_sym_decltype] = ACTIONS(1547), [anon_sym_virtual] = ACTIONS(109), [anon_sym_explicit] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1545), - [anon_sym_private] = ACTIONS(1545), - [anon_sym_protected] = ACTIONS(1545), - [anon_sym_typename] = ACTIONS(1547), - [anon_sym_template] = ACTIONS(1549), + [anon_sym_public] = ACTIONS(1549), + [anon_sym_private] = ACTIONS(1549), + [anon_sym_protected] = ACTIONS(1549), + [anon_sym_typename] = ACTIONS(1551), + [anon_sym_template] = ACTIONS(1553), [anon_sym_operator] = ACTIONS(117), - [anon_sym_friend] = ACTIONS(1551), - [anon_sym_using] = ACTIONS(1553), - [anon_sym_static_assert] = ACTIONS(1555), + [anon_sym_friend] = ACTIONS(1555), + [anon_sym_using] = ACTIONS(1557), + [anon_sym_static_assert] = ACTIONS(1559), }, [129] = { - [sym_preproc_def] = STATE(128), - [sym_preproc_function_def] = STATE(128), - [sym_preproc_call] = STATE(128), - [sym_preproc_if_in_field_declaration_list] = STATE(128), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(128), - [sym_preproc_else_in_field_declaration_list] = STATE(6757), - [sym_preproc_elif_in_field_declaration_list] = STATE(6757), - [sym_type_definition] = STATE(128), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(4157), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(2900), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4703), - [sym_array_declarator] = STATE(4825), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(3200), - [sym_sized_type_specifier] = STATE(3371), - [sym_enum_specifier] = STATE(3371), - [sym_struct_specifier] = STATE(3371), - [sym_union_specifier] = STATE(3371), - [sym__field_declaration_list_item] = STATE(128), - [sym_field_declaration] = STATE(128), - [sym_placeholder_type_specifier] = STATE(3371), - [sym_decltype_auto] = STATE(3366), - [sym_decltype] = STATE(3371), - [sym_class_specifier] = STATE(3371), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1767), - [sym_dependent_type] = STATE(3371), - [sym_template_declaration] = STATE(128), - [sym_operator_cast] = STATE(5199), - [sym_inline_method_definition] = STATE(128), - [sym__constructor_specifiers] = STATE(1767), - [sym_operator_cast_definition] = STATE(128), - [sym_operator_cast_declaration] = STATE(128), - [sym_constructor_or_destructor_definition] = STATE(128), - [sym_constructor_or_destructor_declaration] = STATE(128), - [sym_friend_declaration] = STATE(128), - [sym_access_specifier] = STATE(128), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(2976), - [sym_template_function] = STATE(4825), - [sym_using_declaration] = STATE(128), - [sym_alias_declaration] = STATE(128), - [sym_static_assert_declaration] = STATE(128), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4515), - [sym_qualified_identifier] = STATE(4825), - [sym_qualified_type_identifier] = STATE(3400), - [sym_qualified_operator_cast_identifier] = STATE(5199), - [sym_operator_name] = STATE(4825), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(128), - [aux_sym__declaration_specifiers_repeat1] = STATE(1896), - [aux_sym_sized_type_specifier_repeat1] = STATE(3286), - [aux_sym_operator_cast_definition_repeat1] = STATE(1767), - [sym_identifier] = ACTIONS(1499), - [aux_sym_preproc_def_token1] = ACTIONS(1501), - [aux_sym_preproc_if_token1] = ACTIONS(1503), - [aux_sym_preproc_if_token2] = ACTIONS(1575), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1507), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1507), - [aux_sym_preproc_else_token1] = ACTIONS(1509), - [aux_sym_preproc_elif_token1] = ACTIONS(1511), - [sym_preproc_directive] = ACTIONS(1513), - [anon_sym_LPAREN2] = ACTIONS(1515), - [anon_sym_TILDE] = ACTIONS(1517), - [anon_sym_STAR] = ACTIONS(1519), + [sym_preproc_def] = STATE(130), + [sym_preproc_function_def] = STATE(130), + [sym_preproc_call] = STATE(130), + [sym_preproc_if_in_field_declaration_list] = STATE(130), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(130), + [sym_preproc_else_in_field_declaration_list] = STATE(7240), + [sym_preproc_elif_in_field_declaration_list] = STATE(7240), + [sym_type_definition] = STATE(130), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4414), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(3343), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(4956), + [sym_array_declarator] = STATE(5080), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3521), + [sym_sized_type_specifier] = STATE(4001), + [sym_enum_specifier] = STATE(4001), + [sym_struct_specifier] = STATE(4001), + [sym_union_specifier] = STATE(4001), + [sym__field_declaration_list_item] = STATE(130), + [sym_field_declaration] = STATE(130), + [sym_placeholder_type_specifier] = STATE(4001), + [sym_decltype_auto] = STATE(4021), + [sym_decltype] = STATE(4001), + [sym_class_specifier] = STATE(4001), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1985), + [sym_dependent_type] = STATE(4001), + [sym_template_declaration] = STATE(130), + [sym_operator_cast] = STATE(5475), + [sym_inline_method_definition] = STATE(130), + [sym__constructor_specifiers] = STATE(1985), + [sym_operator_cast_definition] = STATE(130), + [sym_operator_cast_declaration] = STATE(130), + [sym_constructor_or_destructor_definition] = STATE(130), + [sym_constructor_or_destructor_declaration] = STATE(130), + [sym_friend_declaration] = STATE(130), + [sym_access_specifier] = STATE(130), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3395), + [sym_template_function] = STATE(5080), + [sym_using_declaration] = STATE(130), + [sym_alias_declaration] = STATE(130), + [sym_static_assert_declaration] = STATE(130), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4775), + [sym_qualified_identifier] = STATE(5080), + [sym_qualified_type_identifier] = STATE(4003), + [sym_qualified_operator_cast_identifier] = STATE(5475), + [sym_operator_name] = STATE(5080), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(130), + [aux_sym__declaration_specifiers_repeat1] = STATE(2191), + [aux_sym_sized_type_specifier_repeat1] = STATE(3805), + [aux_sym_operator_cast_definition_repeat1] = STATE(1985), + [sym_identifier] = ACTIONS(1503), + [aux_sym_preproc_def_token1] = ACTIONS(1505), + [aux_sym_preproc_if_token1] = ACTIONS(1507), + [aux_sym_preproc_if_token2] = ACTIONS(1571), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1511), + [aux_sym_preproc_else_token1] = ACTIONS(1513), + [aux_sym_preproc_elif_token1] = ACTIONS(1515), + [sym_preproc_directive] = ACTIONS(1517), + [anon_sym_LPAREN2] = ACTIONS(1519), + [anon_sym_TILDE] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1523), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1521), - [anon_sym_typedef] = ACTIONS(1523), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_typedef] = ACTIONS(1527), [anon_sym_extern] = ACTIONS(55), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1525), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1389), + [anon_sym_COLON_COLON] = ACTIONS(1529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), [anon_sym___declspec] = ACTIONS(45), [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1527), + [anon_sym_LBRACK] = ACTIONS(1531), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), @@ -48740,117 +50435,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_constexpr] = ACTIONS(57), [anon_sym_constinit] = ACTIONS(57), [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1529), - [anon_sym_unsigned] = ACTIONS(1529), - [anon_sym_long] = ACTIONS(1529), - [anon_sym_short] = ACTIONS(1529), - [sym_primitive_type] = ACTIONS(1531), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1535), - [anon_sym_struct] = ACTIONS(1537), - [anon_sym_union] = ACTIONS(1539), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1541), - [anon_sym_decltype] = ACTIONS(1543), + [anon_sym_signed] = ACTIONS(1533), + [anon_sym_unsigned] = ACTIONS(1533), + [anon_sym_long] = ACTIONS(1533), + [anon_sym_short] = ACTIONS(1533), + [sym_primitive_type] = ACTIONS(1535), + [anon_sym_enum] = ACTIONS(1537), + [anon_sym_class] = ACTIONS(1539), + [anon_sym_struct] = ACTIONS(1541), + [anon_sym_union] = ACTIONS(1543), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1545), + [anon_sym_decltype] = ACTIONS(1547), [anon_sym_virtual] = ACTIONS(109), [anon_sym_explicit] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1545), - [anon_sym_private] = ACTIONS(1545), - [anon_sym_protected] = ACTIONS(1545), - [anon_sym_typename] = ACTIONS(1547), - [anon_sym_template] = ACTIONS(1549), + [anon_sym_public] = ACTIONS(1549), + [anon_sym_private] = ACTIONS(1549), + [anon_sym_protected] = ACTIONS(1549), + [anon_sym_typename] = ACTIONS(1551), + [anon_sym_template] = ACTIONS(1553), [anon_sym_operator] = ACTIONS(117), - [anon_sym_friend] = ACTIONS(1551), - [anon_sym_using] = ACTIONS(1553), - [anon_sym_static_assert] = ACTIONS(1555), + [anon_sym_friend] = ACTIONS(1555), + [anon_sym_using] = ACTIONS(1557), + [anon_sym_static_assert] = ACTIONS(1559), }, [130] = { - [sym_preproc_def] = STATE(131), - [sym_preproc_function_def] = STATE(131), - [sym_preproc_call] = STATE(131), - [sym_preproc_if_in_field_declaration_list] = STATE(131), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(131), - [sym_preproc_else_in_field_declaration_list] = STATE(6708), - [sym_preproc_elif_in_field_declaration_list] = STATE(6708), - [sym_type_definition] = STATE(131), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(4157), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(2900), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4703), - [sym_array_declarator] = STATE(4825), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(3200), - [sym_sized_type_specifier] = STATE(3371), - [sym_enum_specifier] = STATE(3371), - [sym_struct_specifier] = STATE(3371), - [sym_union_specifier] = STATE(3371), - [sym__field_declaration_list_item] = STATE(131), - [sym_field_declaration] = STATE(131), - [sym_placeholder_type_specifier] = STATE(3371), - [sym_decltype_auto] = STATE(3366), - [sym_decltype] = STATE(3371), - [sym_class_specifier] = STATE(3371), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1767), - [sym_dependent_type] = STATE(3371), - [sym_template_declaration] = STATE(131), - [sym_operator_cast] = STATE(5199), - [sym_inline_method_definition] = STATE(131), - [sym__constructor_specifiers] = STATE(1767), - [sym_operator_cast_definition] = STATE(131), - [sym_operator_cast_declaration] = STATE(131), - [sym_constructor_or_destructor_definition] = STATE(131), - [sym_constructor_or_destructor_declaration] = STATE(131), - [sym_friend_declaration] = STATE(131), - [sym_access_specifier] = STATE(131), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(2976), - [sym_template_function] = STATE(4825), - [sym_using_declaration] = STATE(131), - [sym_alias_declaration] = STATE(131), - [sym_static_assert_declaration] = STATE(131), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4515), - [sym_qualified_identifier] = STATE(4825), - [sym_qualified_type_identifier] = STATE(3400), - [sym_qualified_operator_cast_identifier] = STATE(5199), - [sym_operator_name] = STATE(4825), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(131), - [aux_sym__declaration_specifiers_repeat1] = STATE(1896), - [aux_sym_sized_type_specifier_repeat1] = STATE(3286), - [aux_sym_operator_cast_definition_repeat1] = STATE(1767), - [sym_identifier] = ACTIONS(1499), - [aux_sym_preproc_def_token1] = ACTIONS(1501), - [aux_sym_preproc_if_token1] = ACTIONS(1503), - [aux_sym_preproc_if_token2] = ACTIONS(1577), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1507), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1507), - [aux_sym_preproc_else_token1] = ACTIONS(1509), - [aux_sym_preproc_elif_token1] = ACTIONS(1511), - [sym_preproc_directive] = ACTIONS(1513), - [anon_sym_LPAREN2] = ACTIONS(1515), - [anon_sym_TILDE] = ACTIONS(1517), - [anon_sym_STAR] = ACTIONS(1519), + [sym_preproc_def] = STATE(137), + [sym_preproc_function_def] = STATE(137), + [sym_preproc_call] = STATE(137), + [sym_preproc_if_in_field_declaration_list] = STATE(137), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(137), + [sym_preproc_else_in_field_declaration_list] = STATE(7208), + [sym_preproc_elif_in_field_declaration_list] = STATE(7208), + [sym_type_definition] = STATE(137), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4414), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(3343), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(4956), + [sym_array_declarator] = STATE(5080), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3521), + [sym_sized_type_specifier] = STATE(4001), + [sym_enum_specifier] = STATE(4001), + [sym_struct_specifier] = STATE(4001), + [sym_union_specifier] = STATE(4001), + [sym__field_declaration_list_item] = STATE(137), + [sym_field_declaration] = STATE(137), + [sym_placeholder_type_specifier] = STATE(4001), + [sym_decltype_auto] = STATE(4021), + [sym_decltype] = STATE(4001), + [sym_class_specifier] = STATE(4001), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1985), + [sym_dependent_type] = STATE(4001), + [sym_template_declaration] = STATE(137), + [sym_operator_cast] = STATE(5475), + [sym_inline_method_definition] = STATE(137), + [sym__constructor_specifiers] = STATE(1985), + [sym_operator_cast_definition] = STATE(137), + [sym_operator_cast_declaration] = STATE(137), + [sym_constructor_or_destructor_definition] = STATE(137), + [sym_constructor_or_destructor_declaration] = STATE(137), + [sym_friend_declaration] = STATE(137), + [sym_access_specifier] = STATE(137), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3395), + [sym_template_function] = STATE(5080), + [sym_using_declaration] = STATE(137), + [sym_alias_declaration] = STATE(137), + [sym_static_assert_declaration] = STATE(137), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4775), + [sym_qualified_identifier] = STATE(5080), + [sym_qualified_type_identifier] = STATE(4003), + [sym_qualified_operator_cast_identifier] = STATE(5475), + [sym_operator_name] = STATE(5080), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(137), + [aux_sym__declaration_specifiers_repeat1] = STATE(2191), + [aux_sym_sized_type_specifier_repeat1] = STATE(3805), + [aux_sym_operator_cast_definition_repeat1] = STATE(1985), + [sym_identifier] = ACTIONS(1503), + [aux_sym_preproc_def_token1] = ACTIONS(1505), + [aux_sym_preproc_if_token1] = ACTIONS(1507), + [aux_sym_preproc_if_token2] = ACTIONS(1573), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1511), + [aux_sym_preproc_else_token1] = ACTIONS(1513), + [aux_sym_preproc_elif_token1] = ACTIONS(1515), + [sym_preproc_directive] = ACTIONS(1517), + [anon_sym_LPAREN2] = ACTIONS(1519), + [anon_sym_TILDE] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1523), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1521), - [anon_sym_typedef] = ACTIONS(1523), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_typedef] = ACTIONS(1527), [anon_sym_extern] = ACTIONS(55), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1525), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1389), + [anon_sym_COLON_COLON] = ACTIONS(1529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), [anon_sym___declspec] = ACTIONS(45), [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1527), + [anon_sym_LBRACK] = ACTIONS(1531), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), @@ -48863,117 +50558,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_constexpr] = ACTIONS(57), [anon_sym_constinit] = ACTIONS(57), [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1529), - [anon_sym_unsigned] = ACTIONS(1529), - [anon_sym_long] = ACTIONS(1529), - [anon_sym_short] = ACTIONS(1529), - [sym_primitive_type] = ACTIONS(1531), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1535), - [anon_sym_struct] = ACTIONS(1537), - [anon_sym_union] = ACTIONS(1539), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1541), - [anon_sym_decltype] = ACTIONS(1543), + [anon_sym_signed] = ACTIONS(1533), + [anon_sym_unsigned] = ACTIONS(1533), + [anon_sym_long] = ACTIONS(1533), + [anon_sym_short] = ACTIONS(1533), + [sym_primitive_type] = ACTIONS(1535), + [anon_sym_enum] = ACTIONS(1537), + [anon_sym_class] = ACTIONS(1539), + [anon_sym_struct] = ACTIONS(1541), + [anon_sym_union] = ACTIONS(1543), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1545), + [anon_sym_decltype] = ACTIONS(1547), [anon_sym_virtual] = ACTIONS(109), [anon_sym_explicit] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1545), - [anon_sym_private] = ACTIONS(1545), - [anon_sym_protected] = ACTIONS(1545), - [anon_sym_typename] = ACTIONS(1547), - [anon_sym_template] = ACTIONS(1549), + [anon_sym_public] = ACTIONS(1549), + [anon_sym_private] = ACTIONS(1549), + [anon_sym_protected] = ACTIONS(1549), + [anon_sym_typename] = ACTIONS(1551), + [anon_sym_template] = ACTIONS(1553), [anon_sym_operator] = ACTIONS(117), - [anon_sym_friend] = ACTIONS(1551), - [anon_sym_using] = ACTIONS(1553), - [anon_sym_static_assert] = ACTIONS(1555), + [anon_sym_friend] = ACTIONS(1555), + [anon_sym_using] = ACTIONS(1557), + [anon_sym_static_assert] = ACTIONS(1559), }, [131] = { - [sym_preproc_def] = STATE(133), - [sym_preproc_function_def] = STATE(133), - [sym_preproc_call] = STATE(133), - [sym_preproc_if_in_field_declaration_list] = STATE(133), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(133), - [sym_preproc_else_in_field_declaration_list] = STATE(6739), - [sym_preproc_elif_in_field_declaration_list] = STATE(6739), - [sym_type_definition] = STATE(133), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(4157), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(2900), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4703), - [sym_array_declarator] = STATE(4825), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(3200), - [sym_sized_type_specifier] = STATE(3371), - [sym_enum_specifier] = STATE(3371), - [sym_struct_specifier] = STATE(3371), - [sym_union_specifier] = STATE(3371), - [sym__field_declaration_list_item] = STATE(133), - [sym_field_declaration] = STATE(133), - [sym_placeholder_type_specifier] = STATE(3371), - [sym_decltype_auto] = STATE(3366), - [sym_decltype] = STATE(3371), - [sym_class_specifier] = STATE(3371), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1767), - [sym_dependent_type] = STATE(3371), - [sym_template_declaration] = STATE(133), - [sym_operator_cast] = STATE(5199), - [sym_inline_method_definition] = STATE(133), - [sym__constructor_specifiers] = STATE(1767), - [sym_operator_cast_definition] = STATE(133), - [sym_operator_cast_declaration] = STATE(133), - [sym_constructor_or_destructor_definition] = STATE(133), - [sym_constructor_or_destructor_declaration] = STATE(133), - [sym_friend_declaration] = STATE(133), - [sym_access_specifier] = STATE(133), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(2976), - [sym_template_function] = STATE(4825), - [sym_using_declaration] = STATE(133), - [sym_alias_declaration] = STATE(133), - [sym_static_assert_declaration] = STATE(133), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4515), - [sym_qualified_identifier] = STATE(4825), - [sym_qualified_type_identifier] = STATE(3400), - [sym_qualified_operator_cast_identifier] = STATE(5199), - [sym_operator_name] = STATE(4825), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(133), - [aux_sym__declaration_specifiers_repeat1] = STATE(1896), - [aux_sym_sized_type_specifier_repeat1] = STATE(3286), - [aux_sym_operator_cast_definition_repeat1] = STATE(1767), - [sym_identifier] = ACTIONS(1499), - [aux_sym_preproc_def_token1] = ACTIONS(1501), - [aux_sym_preproc_if_token1] = ACTIONS(1503), - [aux_sym_preproc_if_token2] = ACTIONS(1579), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1507), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1507), - [aux_sym_preproc_else_token1] = ACTIONS(1509), - [aux_sym_preproc_elif_token1] = ACTIONS(1511), - [sym_preproc_directive] = ACTIONS(1513), - [anon_sym_LPAREN2] = ACTIONS(1515), - [anon_sym_TILDE] = ACTIONS(1517), - [anon_sym_STAR] = ACTIONS(1519), + [sym_preproc_def] = STATE(137), + [sym_preproc_function_def] = STATE(137), + [sym_preproc_call] = STATE(137), + [sym_preproc_if_in_field_declaration_list] = STATE(137), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(137), + [sym_preproc_else_in_field_declaration_list] = STATE(7127), + [sym_preproc_elif_in_field_declaration_list] = STATE(7127), + [sym_type_definition] = STATE(137), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4414), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(3343), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(4956), + [sym_array_declarator] = STATE(5080), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3521), + [sym_sized_type_specifier] = STATE(4001), + [sym_enum_specifier] = STATE(4001), + [sym_struct_specifier] = STATE(4001), + [sym_union_specifier] = STATE(4001), + [sym__field_declaration_list_item] = STATE(137), + [sym_field_declaration] = STATE(137), + [sym_placeholder_type_specifier] = STATE(4001), + [sym_decltype_auto] = STATE(4021), + [sym_decltype] = STATE(4001), + [sym_class_specifier] = STATE(4001), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1985), + [sym_dependent_type] = STATE(4001), + [sym_template_declaration] = STATE(137), + [sym_operator_cast] = STATE(5475), + [sym_inline_method_definition] = STATE(137), + [sym__constructor_specifiers] = STATE(1985), + [sym_operator_cast_definition] = STATE(137), + [sym_operator_cast_declaration] = STATE(137), + [sym_constructor_or_destructor_definition] = STATE(137), + [sym_constructor_or_destructor_declaration] = STATE(137), + [sym_friend_declaration] = STATE(137), + [sym_access_specifier] = STATE(137), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3395), + [sym_template_function] = STATE(5080), + [sym_using_declaration] = STATE(137), + [sym_alias_declaration] = STATE(137), + [sym_static_assert_declaration] = STATE(137), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4775), + [sym_qualified_identifier] = STATE(5080), + [sym_qualified_type_identifier] = STATE(4003), + [sym_qualified_operator_cast_identifier] = STATE(5475), + [sym_operator_name] = STATE(5080), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(137), + [aux_sym__declaration_specifiers_repeat1] = STATE(2191), + [aux_sym_sized_type_specifier_repeat1] = STATE(3805), + [aux_sym_operator_cast_definition_repeat1] = STATE(1985), + [sym_identifier] = ACTIONS(1503), + [aux_sym_preproc_def_token1] = ACTIONS(1505), + [aux_sym_preproc_if_token1] = ACTIONS(1507), + [aux_sym_preproc_if_token2] = ACTIONS(1575), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1511), + [aux_sym_preproc_else_token1] = ACTIONS(1513), + [aux_sym_preproc_elif_token1] = ACTIONS(1515), + [sym_preproc_directive] = ACTIONS(1517), + [anon_sym_LPAREN2] = ACTIONS(1519), + [anon_sym_TILDE] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1523), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1521), - [anon_sym_typedef] = ACTIONS(1523), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_typedef] = ACTIONS(1527), [anon_sym_extern] = ACTIONS(55), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1525), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1389), + [anon_sym_COLON_COLON] = ACTIONS(1529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), [anon_sym___declspec] = ACTIONS(45), [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1527), + [anon_sym_LBRACK] = ACTIONS(1531), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), @@ -48986,117 +50681,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_constexpr] = ACTIONS(57), [anon_sym_constinit] = ACTIONS(57), [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1529), - [anon_sym_unsigned] = ACTIONS(1529), - [anon_sym_long] = ACTIONS(1529), - [anon_sym_short] = ACTIONS(1529), - [sym_primitive_type] = ACTIONS(1531), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1535), - [anon_sym_struct] = ACTIONS(1537), - [anon_sym_union] = ACTIONS(1539), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1541), - [anon_sym_decltype] = ACTIONS(1543), + [anon_sym_signed] = ACTIONS(1533), + [anon_sym_unsigned] = ACTIONS(1533), + [anon_sym_long] = ACTIONS(1533), + [anon_sym_short] = ACTIONS(1533), + [sym_primitive_type] = ACTIONS(1535), + [anon_sym_enum] = ACTIONS(1537), + [anon_sym_class] = ACTIONS(1539), + [anon_sym_struct] = ACTIONS(1541), + [anon_sym_union] = ACTIONS(1543), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1545), + [anon_sym_decltype] = ACTIONS(1547), [anon_sym_virtual] = ACTIONS(109), [anon_sym_explicit] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1545), - [anon_sym_private] = ACTIONS(1545), - [anon_sym_protected] = ACTIONS(1545), - [anon_sym_typename] = ACTIONS(1547), - [anon_sym_template] = ACTIONS(1549), + [anon_sym_public] = ACTIONS(1549), + [anon_sym_private] = ACTIONS(1549), + [anon_sym_protected] = ACTIONS(1549), + [anon_sym_typename] = ACTIONS(1551), + [anon_sym_template] = ACTIONS(1553), [anon_sym_operator] = ACTIONS(117), - [anon_sym_friend] = ACTIONS(1551), - [anon_sym_using] = ACTIONS(1553), - [anon_sym_static_assert] = ACTIONS(1555), + [anon_sym_friend] = ACTIONS(1555), + [anon_sym_using] = ACTIONS(1557), + [anon_sym_static_assert] = ACTIONS(1559), }, [132] = { - [sym_preproc_def] = STATE(133), - [sym_preproc_function_def] = STATE(133), - [sym_preproc_call] = STATE(133), - [sym_preproc_if_in_field_declaration_list] = STATE(133), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(133), - [sym_preproc_else_in_field_declaration_list] = STATE(6711), - [sym_preproc_elif_in_field_declaration_list] = STATE(6711), - [sym_type_definition] = STATE(133), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(4157), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(2900), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4703), - [sym_array_declarator] = STATE(4825), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(3200), - [sym_sized_type_specifier] = STATE(3371), - [sym_enum_specifier] = STATE(3371), - [sym_struct_specifier] = STATE(3371), - [sym_union_specifier] = STATE(3371), - [sym__field_declaration_list_item] = STATE(133), - [sym_field_declaration] = STATE(133), - [sym_placeholder_type_specifier] = STATE(3371), - [sym_decltype_auto] = STATE(3366), - [sym_decltype] = STATE(3371), - [sym_class_specifier] = STATE(3371), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1767), - [sym_dependent_type] = STATE(3371), - [sym_template_declaration] = STATE(133), - [sym_operator_cast] = STATE(5199), - [sym_inline_method_definition] = STATE(133), - [sym__constructor_specifiers] = STATE(1767), - [sym_operator_cast_definition] = STATE(133), - [sym_operator_cast_declaration] = STATE(133), - [sym_constructor_or_destructor_definition] = STATE(133), - [sym_constructor_or_destructor_declaration] = STATE(133), - [sym_friend_declaration] = STATE(133), - [sym_access_specifier] = STATE(133), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(2976), - [sym_template_function] = STATE(4825), - [sym_using_declaration] = STATE(133), - [sym_alias_declaration] = STATE(133), - [sym_static_assert_declaration] = STATE(133), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4515), - [sym_qualified_identifier] = STATE(4825), - [sym_qualified_type_identifier] = STATE(3400), - [sym_qualified_operator_cast_identifier] = STATE(5199), - [sym_operator_name] = STATE(4825), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(133), - [aux_sym__declaration_specifiers_repeat1] = STATE(1896), - [aux_sym_sized_type_specifier_repeat1] = STATE(3286), - [aux_sym_operator_cast_definition_repeat1] = STATE(1767), - [sym_identifier] = ACTIONS(1499), - [aux_sym_preproc_def_token1] = ACTIONS(1501), - [aux_sym_preproc_if_token1] = ACTIONS(1503), - [aux_sym_preproc_if_token2] = ACTIONS(1581), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1507), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1507), - [aux_sym_preproc_else_token1] = ACTIONS(1509), - [aux_sym_preproc_elif_token1] = ACTIONS(1511), - [sym_preproc_directive] = ACTIONS(1513), - [anon_sym_LPAREN2] = ACTIONS(1515), - [anon_sym_TILDE] = ACTIONS(1517), - [anon_sym_STAR] = ACTIONS(1519), + [sym_preproc_def] = STATE(135), + [sym_preproc_function_def] = STATE(135), + [sym_preproc_call] = STATE(135), + [sym_preproc_if_in_field_declaration_list] = STATE(135), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(135), + [sym_preproc_else_in_field_declaration_list] = STATE(7249), + [sym_preproc_elif_in_field_declaration_list] = STATE(7249), + [sym_type_definition] = STATE(135), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4414), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(3343), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(4956), + [sym_array_declarator] = STATE(5080), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3521), + [sym_sized_type_specifier] = STATE(4001), + [sym_enum_specifier] = STATE(4001), + [sym_struct_specifier] = STATE(4001), + [sym_union_specifier] = STATE(4001), + [sym__field_declaration_list_item] = STATE(135), + [sym_field_declaration] = STATE(135), + [sym_placeholder_type_specifier] = STATE(4001), + [sym_decltype_auto] = STATE(4021), + [sym_decltype] = STATE(4001), + [sym_class_specifier] = STATE(4001), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1985), + [sym_dependent_type] = STATE(4001), + [sym_template_declaration] = STATE(135), + [sym_operator_cast] = STATE(5475), + [sym_inline_method_definition] = STATE(135), + [sym__constructor_specifiers] = STATE(1985), + [sym_operator_cast_definition] = STATE(135), + [sym_operator_cast_declaration] = STATE(135), + [sym_constructor_or_destructor_definition] = STATE(135), + [sym_constructor_or_destructor_declaration] = STATE(135), + [sym_friend_declaration] = STATE(135), + [sym_access_specifier] = STATE(135), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3395), + [sym_template_function] = STATE(5080), + [sym_using_declaration] = STATE(135), + [sym_alias_declaration] = STATE(135), + [sym_static_assert_declaration] = STATE(135), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4775), + [sym_qualified_identifier] = STATE(5080), + [sym_qualified_type_identifier] = STATE(4003), + [sym_qualified_operator_cast_identifier] = STATE(5475), + [sym_operator_name] = STATE(5080), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(135), + [aux_sym__declaration_specifiers_repeat1] = STATE(2191), + [aux_sym_sized_type_specifier_repeat1] = STATE(3805), + [aux_sym_operator_cast_definition_repeat1] = STATE(1985), + [sym_identifier] = ACTIONS(1503), + [aux_sym_preproc_def_token1] = ACTIONS(1505), + [aux_sym_preproc_if_token1] = ACTIONS(1507), + [aux_sym_preproc_if_token2] = ACTIONS(1577), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1511), + [aux_sym_preproc_else_token1] = ACTIONS(1513), + [aux_sym_preproc_elif_token1] = ACTIONS(1515), + [sym_preproc_directive] = ACTIONS(1517), + [anon_sym_LPAREN2] = ACTIONS(1519), + [anon_sym_TILDE] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1523), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1521), - [anon_sym_typedef] = ACTIONS(1523), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_typedef] = ACTIONS(1527), [anon_sym_extern] = ACTIONS(55), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1525), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1389), + [anon_sym_COLON_COLON] = ACTIONS(1529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), [anon_sym___declspec] = ACTIONS(45), [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1527), + [anon_sym_LBRACK] = ACTIONS(1531), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), @@ -49109,234 +50804,240 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_constexpr] = ACTIONS(57), [anon_sym_constinit] = ACTIONS(57), [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1529), - [anon_sym_unsigned] = ACTIONS(1529), - [anon_sym_long] = ACTIONS(1529), - [anon_sym_short] = ACTIONS(1529), - [sym_primitive_type] = ACTIONS(1531), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1535), - [anon_sym_struct] = ACTIONS(1537), - [anon_sym_union] = ACTIONS(1539), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1541), - [anon_sym_decltype] = ACTIONS(1543), + [anon_sym_signed] = ACTIONS(1533), + [anon_sym_unsigned] = ACTIONS(1533), + [anon_sym_long] = ACTIONS(1533), + [anon_sym_short] = ACTIONS(1533), + [sym_primitive_type] = ACTIONS(1535), + [anon_sym_enum] = ACTIONS(1537), + [anon_sym_class] = ACTIONS(1539), + [anon_sym_struct] = ACTIONS(1541), + [anon_sym_union] = ACTIONS(1543), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1545), + [anon_sym_decltype] = ACTIONS(1547), [anon_sym_virtual] = ACTIONS(109), [anon_sym_explicit] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1545), - [anon_sym_private] = ACTIONS(1545), - [anon_sym_protected] = ACTIONS(1545), - [anon_sym_typename] = ACTIONS(1547), - [anon_sym_template] = ACTIONS(1549), + [anon_sym_public] = ACTIONS(1549), + [anon_sym_private] = ACTIONS(1549), + [anon_sym_protected] = ACTIONS(1549), + [anon_sym_typename] = ACTIONS(1551), + [anon_sym_template] = ACTIONS(1553), [anon_sym_operator] = ACTIONS(117), - [anon_sym_friend] = ACTIONS(1551), - [anon_sym_using] = ACTIONS(1553), - [anon_sym_static_assert] = ACTIONS(1555), + [anon_sym_friend] = ACTIONS(1555), + [anon_sym_using] = ACTIONS(1557), + [anon_sym_static_assert] = ACTIONS(1559), }, [133] = { - [sym_preproc_def] = STATE(133), - [sym_preproc_function_def] = STATE(133), - [sym_preproc_call] = STATE(133), - [sym_preproc_if_in_field_declaration_list] = STATE(133), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(133), - [sym_type_definition] = STATE(133), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(4157), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(2900), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4703), - [sym_array_declarator] = STATE(4825), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(3200), - [sym_sized_type_specifier] = STATE(3371), - [sym_enum_specifier] = STATE(3371), - [sym_struct_specifier] = STATE(3371), - [sym_union_specifier] = STATE(3371), - [sym__field_declaration_list_item] = STATE(133), - [sym_field_declaration] = STATE(133), - [sym_placeholder_type_specifier] = STATE(3371), - [sym_decltype_auto] = STATE(3366), - [sym_decltype] = STATE(3371), - [sym_class_specifier] = STATE(3371), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1767), - [sym_dependent_type] = STATE(3371), - [sym_template_declaration] = STATE(133), - [sym_operator_cast] = STATE(5199), - [sym_inline_method_definition] = STATE(133), - [sym__constructor_specifiers] = STATE(1767), - [sym_operator_cast_definition] = STATE(133), - [sym_operator_cast_declaration] = STATE(133), - [sym_constructor_or_destructor_definition] = STATE(133), - [sym_constructor_or_destructor_declaration] = STATE(133), - [sym_friend_declaration] = STATE(133), - [sym_access_specifier] = STATE(133), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(2976), - [sym_template_function] = STATE(4825), - [sym_using_declaration] = STATE(133), - [sym_alias_declaration] = STATE(133), - [sym_static_assert_declaration] = STATE(133), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4515), - [sym_qualified_identifier] = STATE(4825), - [sym_qualified_type_identifier] = STATE(3400), - [sym_qualified_operator_cast_identifier] = STATE(5199), - [sym_operator_name] = STATE(4825), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(133), - [aux_sym__declaration_specifiers_repeat1] = STATE(1896), - [aux_sym_sized_type_specifier_repeat1] = STATE(3286), - [aux_sym_operator_cast_definition_repeat1] = STATE(1767), - [sym_identifier] = ACTIONS(1583), - [aux_sym_preproc_def_token1] = ACTIONS(1586), - [aux_sym_preproc_if_token1] = ACTIONS(1589), - [aux_sym_preproc_if_token2] = ACTIONS(1592), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1594), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1594), - [aux_sym_preproc_else_token1] = ACTIONS(1592), - [aux_sym_preproc_elif_token1] = ACTIONS(1592), - [sym_preproc_directive] = ACTIONS(1597), - [anon_sym_LPAREN2] = ACTIONS(1600), - [anon_sym_TILDE] = ACTIONS(1603), - [anon_sym_STAR] = ACTIONS(1606), - [anon_sym_AMP_AMP] = ACTIONS(1609), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_typedef] = ACTIONS(1615), - [anon_sym_extern] = ACTIONS(1618), - [anon_sym___attribute__] = ACTIONS(1621), - [anon_sym_COLON_COLON] = ACTIONS(1624), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1627), - [anon_sym___declspec] = ACTIONS(1630), - [anon_sym___based] = ACTIONS(1633), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_static] = ACTIONS(1618), - [anon_sym_register] = ACTIONS(1618), - [anon_sym_inline] = ACTIONS(1618), - [anon_sym_thread_local] = ACTIONS(1618), - [anon_sym_const] = ACTIONS(1639), - [anon_sym_volatile] = ACTIONS(1639), - [anon_sym_restrict] = ACTIONS(1639), - [anon_sym__Atomic] = ACTIONS(1639), - [anon_sym_mutable] = ACTIONS(1639), - [anon_sym_constexpr] = ACTIONS(1639), - [anon_sym_constinit] = ACTIONS(1639), - [anon_sym_consteval] = ACTIONS(1639), - [anon_sym_signed] = ACTIONS(1642), - [anon_sym_unsigned] = ACTIONS(1642), - [anon_sym_long] = ACTIONS(1642), - [anon_sym_short] = ACTIONS(1642), - [sym_primitive_type] = ACTIONS(1645), - [anon_sym_enum] = ACTIONS(1648), - [anon_sym_class] = ACTIONS(1651), - [anon_sym_struct] = ACTIONS(1654), - [anon_sym_union] = ACTIONS(1657), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1660), - [anon_sym_decltype] = ACTIONS(1663), - [anon_sym_virtual] = ACTIONS(1666), - [anon_sym_explicit] = ACTIONS(1669), - [anon_sym_public] = ACTIONS(1672), - [anon_sym_private] = ACTIONS(1672), - [anon_sym_protected] = ACTIONS(1672), - [anon_sym_typename] = ACTIONS(1675), - [anon_sym_template] = ACTIONS(1678), - [anon_sym_operator] = ACTIONS(1681), - [anon_sym_friend] = ACTIONS(1684), - [anon_sym_using] = ACTIONS(1687), - [anon_sym_static_assert] = ACTIONS(1690), + [sym_preproc_def] = STATE(126), + [sym_preproc_function_def] = STATE(126), + [sym_preproc_call] = STATE(126), + [sym_preproc_if_in_field_declaration_list] = STATE(126), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(126), + [sym_preproc_else_in_field_declaration_list] = STATE(6748), + [sym_preproc_elif_in_field_declaration_list] = STATE(6748), + [sym_type_definition] = STATE(126), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4414), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(3343), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(4956), + [sym_array_declarator] = STATE(5080), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3521), + [sym_sized_type_specifier] = STATE(4001), + [sym_enum_specifier] = STATE(4001), + [sym_struct_specifier] = STATE(4001), + [sym_union_specifier] = STATE(4001), + [sym__field_declaration_list_item] = STATE(126), + [sym_field_declaration] = STATE(126), + [sym_placeholder_type_specifier] = STATE(4001), + [sym_decltype_auto] = STATE(4021), + [sym_decltype] = STATE(4001), + [sym_class_specifier] = STATE(4001), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1985), + [sym_dependent_type] = STATE(4001), + [sym_template_declaration] = STATE(126), + [sym_operator_cast] = STATE(5475), + [sym_inline_method_definition] = STATE(126), + [sym__constructor_specifiers] = STATE(1985), + [sym_operator_cast_definition] = STATE(126), + [sym_operator_cast_declaration] = STATE(126), + [sym_constructor_or_destructor_definition] = STATE(126), + [sym_constructor_or_destructor_declaration] = STATE(126), + [sym_friend_declaration] = STATE(126), + [sym_access_specifier] = STATE(126), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3395), + [sym_template_function] = STATE(5080), + [sym_using_declaration] = STATE(126), + [sym_alias_declaration] = STATE(126), + [sym_static_assert_declaration] = STATE(126), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4775), + [sym_qualified_identifier] = STATE(5080), + [sym_qualified_type_identifier] = STATE(4003), + [sym_qualified_operator_cast_identifier] = STATE(5475), + [sym_operator_name] = STATE(5080), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(126), + [aux_sym__declaration_specifiers_repeat1] = STATE(2191), + [aux_sym_sized_type_specifier_repeat1] = STATE(3805), + [aux_sym_operator_cast_definition_repeat1] = STATE(1985), + [sym_identifier] = ACTIONS(1503), + [aux_sym_preproc_def_token1] = ACTIONS(1505), + [aux_sym_preproc_if_token1] = ACTIONS(1507), + [aux_sym_preproc_if_token2] = ACTIONS(1579), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1511), + [aux_sym_preproc_else_token1] = ACTIONS(1513), + [aux_sym_preproc_elif_token1] = ACTIONS(1515), + [sym_preproc_directive] = ACTIONS(1517), + [anon_sym_LPAREN2] = ACTIONS(1519), + [anon_sym_TILDE] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1523), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_typedef] = ACTIONS(1527), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(1529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1531), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1533), + [anon_sym_unsigned] = ACTIONS(1533), + [anon_sym_long] = ACTIONS(1533), + [anon_sym_short] = ACTIONS(1533), + [sym_primitive_type] = ACTIONS(1535), + [anon_sym_enum] = ACTIONS(1537), + [anon_sym_class] = ACTIONS(1539), + [anon_sym_struct] = ACTIONS(1541), + [anon_sym_union] = ACTIONS(1543), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1545), + [anon_sym_decltype] = ACTIONS(1547), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_public] = ACTIONS(1549), + [anon_sym_private] = ACTIONS(1549), + [anon_sym_protected] = ACTIONS(1549), + [anon_sym_typename] = ACTIONS(1551), + [anon_sym_template] = ACTIONS(1553), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_friend] = ACTIONS(1555), + [anon_sym_using] = ACTIONS(1557), + [anon_sym_static_assert] = ACTIONS(1559), }, [134] = { - [sym_preproc_def] = STATE(152), - [sym_preproc_function_def] = STATE(152), - [sym_preproc_call] = STATE(152), - [sym_preproc_if_in_field_declaration_list] = STATE(152), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(152), - [sym_type_definition] = STATE(152), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(4155), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(2900), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4709), - [sym_array_declarator] = STATE(4825), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(3200), - [sym_sized_type_specifier] = STATE(3371), - [sym_enum_specifier] = STATE(3371), - [sym_struct_specifier] = STATE(3371), - [sym_union_specifier] = STATE(3371), - [sym__field_declaration_list_item] = STATE(152), - [sym_field_declaration] = STATE(152), - [sym_placeholder_type_specifier] = STATE(3371), - [sym_decltype_auto] = STATE(3366), - [sym_decltype] = STATE(3371), - [sym_class_specifier] = STATE(3371), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1777), - [sym_dependent_type] = STATE(3371), - [sym_template_declaration] = STATE(152), - [sym_operator_cast] = STATE(5177), - [sym_inline_method_definition] = STATE(152), - [sym__constructor_specifiers] = STATE(1777), - [sym_operator_cast_definition] = STATE(152), - [sym_operator_cast_declaration] = STATE(152), - [sym_constructor_or_destructor_definition] = STATE(152), - [sym_constructor_or_destructor_declaration] = STATE(152), - [sym_friend_declaration] = STATE(152), - [sym_access_specifier] = STATE(152), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(2976), - [sym_template_function] = STATE(4825), - [sym_using_declaration] = STATE(152), - [sym_alias_declaration] = STATE(152), - [sym_static_assert_declaration] = STATE(152), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4515), - [sym_qualified_identifier] = STATE(4825), - [sym_qualified_type_identifier] = STATE(3400), - [sym_qualified_operator_cast_identifier] = STATE(5177), - [sym_operator_name] = STATE(4825), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(152), - [aux_sym__declaration_specifiers_repeat1] = STATE(1896), - [aux_sym_sized_type_specifier_repeat1] = STATE(3286), - [aux_sym_operator_cast_definition_repeat1] = STATE(1777), - [sym_identifier] = ACTIONS(1499), - [aux_sym_preproc_def_token1] = ACTIONS(1693), - [aux_sym_preproc_if_token1] = ACTIONS(1695), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1697), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1697), - [sym_preproc_directive] = ACTIONS(1699), - [anon_sym_LPAREN2] = ACTIONS(1515), - [anon_sym_TILDE] = ACTIONS(1517), - [anon_sym_STAR] = ACTIONS(1519), + [sym_preproc_def] = STATE(125), + [sym_preproc_function_def] = STATE(125), + [sym_preproc_call] = STATE(125), + [sym_preproc_if_in_field_declaration_list] = STATE(125), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(125), + [sym_preproc_else_in_field_declaration_list] = STATE(6768), + [sym_preproc_elif_in_field_declaration_list] = STATE(6768), + [sym_type_definition] = STATE(125), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4414), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(3343), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(4956), + [sym_array_declarator] = STATE(5080), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3521), + [sym_sized_type_specifier] = STATE(4001), + [sym_enum_specifier] = STATE(4001), + [sym_struct_specifier] = STATE(4001), + [sym_union_specifier] = STATE(4001), + [sym__field_declaration_list_item] = STATE(125), + [sym_field_declaration] = STATE(125), + [sym_placeholder_type_specifier] = STATE(4001), + [sym_decltype_auto] = STATE(4021), + [sym_decltype] = STATE(4001), + [sym_class_specifier] = STATE(4001), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1985), + [sym_dependent_type] = STATE(4001), + [sym_template_declaration] = STATE(125), + [sym_operator_cast] = STATE(5475), + [sym_inline_method_definition] = STATE(125), + [sym__constructor_specifiers] = STATE(1985), + [sym_operator_cast_definition] = STATE(125), + [sym_operator_cast_declaration] = STATE(125), + [sym_constructor_or_destructor_definition] = STATE(125), + [sym_constructor_or_destructor_declaration] = STATE(125), + [sym_friend_declaration] = STATE(125), + [sym_access_specifier] = STATE(125), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3395), + [sym_template_function] = STATE(5080), + [sym_using_declaration] = STATE(125), + [sym_alias_declaration] = STATE(125), + [sym_static_assert_declaration] = STATE(125), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4775), + [sym_qualified_identifier] = STATE(5080), + [sym_qualified_type_identifier] = STATE(4003), + [sym_qualified_operator_cast_identifier] = STATE(5475), + [sym_operator_name] = STATE(5080), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(125), + [aux_sym__declaration_specifiers_repeat1] = STATE(2191), + [aux_sym_sized_type_specifier_repeat1] = STATE(3805), + [aux_sym_operator_cast_definition_repeat1] = STATE(1985), + [sym_identifier] = ACTIONS(1503), + [aux_sym_preproc_def_token1] = ACTIONS(1505), + [aux_sym_preproc_if_token1] = ACTIONS(1507), + [aux_sym_preproc_if_token2] = ACTIONS(1581), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1511), + [aux_sym_preproc_else_token1] = ACTIONS(1513), + [aux_sym_preproc_elif_token1] = ACTIONS(1515), + [sym_preproc_directive] = ACTIONS(1517), + [anon_sym_LPAREN2] = ACTIONS(1519), + [anon_sym_TILDE] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1523), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1521), - [anon_sym_typedef] = ACTIONS(1701), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_typedef] = ACTIONS(1527), [anon_sym_extern] = ACTIONS(55), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1525), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1389), + [anon_sym_COLON_COLON] = ACTIONS(1529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), [anon_sym___declspec] = ACTIONS(45), [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(1703), - [anon_sym_LBRACK] = ACTIONS(1527), + [anon_sym_LBRACK] = ACTIONS(1531), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), @@ -49349,113 +51050,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_constexpr] = ACTIONS(57), [anon_sym_constinit] = ACTIONS(57), [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1529), - [anon_sym_unsigned] = ACTIONS(1529), - [anon_sym_long] = ACTIONS(1529), - [anon_sym_short] = ACTIONS(1529), - [sym_primitive_type] = ACTIONS(1531), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1535), - [anon_sym_struct] = ACTIONS(1537), - [anon_sym_union] = ACTIONS(1539), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1541), - [anon_sym_decltype] = ACTIONS(1543), + [anon_sym_signed] = ACTIONS(1533), + [anon_sym_unsigned] = ACTIONS(1533), + [anon_sym_long] = ACTIONS(1533), + [anon_sym_short] = ACTIONS(1533), + [sym_primitive_type] = ACTIONS(1535), + [anon_sym_enum] = ACTIONS(1537), + [anon_sym_class] = ACTIONS(1539), + [anon_sym_struct] = ACTIONS(1541), + [anon_sym_union] = ACTIONS(1543), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1545), + [anon_sym_decltype] = ACTIONS(1547), [anon_sym_virtual] = ACTIONS(109), [anon_sym_explicit] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1705), - [anon_sym_private] = ACTIONS(1705), - [anon_sym_protected] = ACTIONS(1705), - [anon_sym_typename] = ACTIONS(1547), - [anon_sym_template] = ACTIONS(1707), + [anon_sym_public] = ACTIONS(1549), + [anon_sym_private] = ACTIONS(1549), + [anon_sym_protected] = ACTIONS(1549), + [anon_sym_typename] = ACTIONS(1551), + [anon_sym_template] = ACTIONS(1553), [anon_sym_operator] = ACTIONS(117), - [anon_sym_friend] = ACTIONS(1709), - [anon_sym_using] = ACTIONS(1711), - [anon_sym_static_assert] = ACTIONS(1713), + [anon_sym_friend] = ACTIONS(1555), + [anon_sym_using] = ACTIONS(1557), + [anon_sym_static_assert] = ACTIONS(1559), }, [135] = { - [sym_preproc_def] = STATE(142), - [sym_preproc_function_def] = STATE(142), - [sym_preproc_call] = STATE(142), - [sym_preproc_if_in_field_declaration_list] = STATE(142), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(142), - [sym_type_definition] = STATE(142), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(4155), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(2900), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4709), - [sym_array_declarator] = STATE(4825), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(3200), - [sym_sized_type_specifier] = STATE(3371), - [sym_enum_specifier] = STATE(3371), - [sym_struct_specifier] = STATE(3371), - [sym_union_specifier] = STATE(3371), - [sym__field_declaration_list_item] = STATE(142), - [sym_field_declaration] = STATE(142), - [sym_placeholder_type_specifier] = STATE(3371), - [sym_decltype_auto] = STATE(3366), - [sym_decltype] = STATE(3371), - [sym_class_specifier] = STATE(3371), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1777), - [sym_dependent_type] = STATE(3371), - [sym_template_declaration] = STATE(142), - [sym_operator_cast] = STATE(5177), - [sym_inline_method_definition] = STATE(142), - [sym__constructor_specifiers] = STATE(1777), - [sym_operator_cast_definition] = STATE(142), - [sym_operator_cast_declaration] = STATE(142), - [sym_constructor_or_destructor_definition] = STATE(142), - [sym_constructor_or_destructor_declaration] = STATE(142), - [sym_friend_declaration] = STATE(142), - [sym_access_specifier] = STATE(142), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(2976), - [sym_template_function] = STATE(4825), - [sym_using_declaration] = STATE(142), - [sym_alias_declaration] = STATE(142), - [sym_static_assert_declaration] = STATE(142), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4515), - [sym_qualified_identifier] = STATE(4825), - [sym_qualified_type_identifier] = STATE(3400), - [sym_qualified_operator_cast_identifier] = STATE(5177), - [sym_operator_name] = STATE(4825), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(142), - [aux_sym__declaration_specifiers_repeat1] = STATE(1896), - [aux_sym_sized_type_specifier_repeat1] = STATE(3286), - [aux_sym_operator_cast_definition_repeat1] = STATE(1777), - [sym_identifier] = ACTIONS(1499), - [aux_sym_preproc_def_token1] = ACTIONS(1693), - [aux_sym_preproc_if_token1] = ACTIONS(1695), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1697), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1697), - [sym_preproc_directive] = ACTIONS(1699), - [anon_sym_LPAREN2] = ACTIONS(1515), - [anon_sym_TILDE] = ACTIONS(1517), - [anon_sym_STAR] = ACTIONS(1519), + [sym_preproc_def] = STATE(137), + [sym_preproc_function_def] = STATE(137), + [sym_preproc_call] = STATE(137), + [sym_preproc_if_in_field_declaration_list] = STATE(137), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(137), + [sym_preproc_else_in_field_declaration_list] = STATE(7238), + [sym_preproc_elif_in_field_declaration_list] = STATE(7238), + [sym_type_definition] = STATE(137), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4414), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(3343), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(4956), + [sym_array_declarator] = STATE(5080), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3521), + [sym_sized_type_specifier] = STATE(4001), + [sym_enum_specifier] = STATE(4001), + [sym_struct_specifier] = STATE(4001), + [sym_union_specifier] = STATE(4001), + [sym__field_declaration_list_item] = STATE(137), + [sym_field_declaration] = STATE(137), + [sym_placeholder_type_specifier] = STATE(4001), + [sym_decltype_auto] = STATE(4021), + [sym_decltype] = STATE(4001), + [sym_class_specifier] = STATE(4001), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1985), + [sym_dependent_type] = STATE(4001), + [sym_template_declaration] = STATE(137), + [sym_operator_cast] = STATE(5475), + [sym_inline_method_definition] = STATE(137), + [sym__constructor_specifiers] = STATE(1985), + [sym_operator_cast_definition] = STATE(137), + [sym_operator_cast_declaration] = STATE(137), + [sym_constructor_or_destructor_definition] = STATE(137), + [sym_constructor_or_destructor_declaration] = STATE(137), + [sym_friend_declaration] = STATE(137), + [sym_access_specifier] = STATE(137), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3395), + [sym_template_function] = STATE(5080), + [sym_using_declaration] = STATE(137), + [sym_alias_declaration] = STATE(137), + [sym_static_assert_declaration] = STATE(137), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4775), + [sym_qualified_identifier] = STATE(5080), + [sym_qualified_type_identifier] = STATE(4003), + [sym_qualified_operator_cast_identifier] = STATE(5475), + [sym_operator_name] = STATE(5080), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(137), + [aux_sym__declaration_specifiers_repeat1] = STATE(2191), + [aux_sym_sized_type_specifier_repeat1] = STATE(3805), + [aux_sym_operator_cast_definition_repeat1] = STATE(1985), + [sym_identifier] = ACTIONS(1503), + [aux_sym_preproc_def_token1] = ACTIONS(1505), + [aux_sym_preproc_if_token1] = ACTIONS(1507), + [aux_sym_preproc_if_token2] = ACTIONS(1583), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1511), + [aux_sym_preproc_else_token1] = ACTIONS(1513), + [aux_sym_preproc_elif_token1] = ACTIONS(1515), + [sym_preproc_directive] = ACTIONS(1517), + [anon_sym_LPAREN2] = ACTIONS(1519), + [anon_sym_TILDE] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1523), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1521), - [anon_sym_typedef] = ACTIONS(1701), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_typedef] = ACTIONS(1527), [anon_sym_extern] = ACTIONS(55), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1525), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1389), + [anon_sym_COLON_COLON] = ACTIONS(1529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), [anon_sym___declspec] = ACTIONS(45), [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(1715), - [anon_sym_LBRACK] = ACTIONS(1527), + [anon_sym_LBRACK] = ACTIONS(1531), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), @@ -49468,113 +51173,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_constexpr] = ACTIONS(57), [anon_sym_constinit] = ACTIONS(57), [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1529), - [anon_sym_unsigned] = ACTIONS(1529), - [anon_sym_long] = ACTIONS(1529), - [anon_sym_short] = ACTIONS(1529), - [sym_primitive_type] = ACTIONS(1531), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1535), - [anon_sym_struct] = ACTIONS(1537), - [anon_sym_union] = ACTIONS(1539), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1541), - [anon_sym_decltype] = ACTIONS(1543), + [anon_sym_signed] = ACTIONS(1533), + [anon_sym_unsigned] = ACTIONS(1533), + [anon_sym_long] = ACTIONS(1533), + [anon_sym_short] = ACTIONS(1533), + [sym_primitive_type] = ACTIONS(1535), + [anon_sym_enum] = ACTIONS(1537), + [anon_sym_class] = ACTIONS(1539), + [anon_sym_struct] = ACTIONS(1541), + [anon_sym_union] = ACTIONS(1543), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1545), + [anon_sym_decltype] = ACTIONS(1547), [anon_sym_virtual] = ACTIONS(109), [anon_sym_explicit] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1705), - [anon_sym_private] = ACTIONS(1705), - [anon_sym_protected] = ACTIONS(1705), - [anon_sym_typename] = ACTIONS(1547), - [anon_sym_template] = ACTIONS(1707), + [anon_sym_public] = ACTIONS(1549), + [anon_sym_private] = ACTIONS(1549), + [anon_sym_protected] = ACTIONS(1549), + [anon_sym_typename] = ACTIONS(1551), + [anon_sym_template] = ACTIONS(1553), [anon_sym_operator] = ACTIONS(117), - [anon_sym_friend] = ACTIONS(1709), - [anon_sym_using] = ACTIONS(1711), - [anon_sym_static_assert] = ACTIONS(1713), + [anon_sym_friend] = ACTIONS(1555), + [anon_sym_using] = ACTIONS(1557), + [anon_sym_static_assert] = ACTIONS(1559), }, [136] = { - [sym_preproc_def] = STATE(144), - [sym_preproc_function_def] = STATE(144), - [sym_preproc_call] = STATE(144), - [sym_preproc_if_in_field_declaration_list] = STATE(144), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(144), - [sym_type_definition] = STATE(144), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(4155), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(2900), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4709), - [sym_array_declarator] = STATE(4825), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(3200), - [sym_sized_type_specifier] = STATE(3371), - [sym_enum_specifier] = STATE(3371), - [sym_struct_specifier] = STATE(3371), - [sym_union_specifier] = STATE(3371), - [sym__field_declaration_list_item] = STATE(144), - [sym_field_declaration] = STATE(144), - [sym_placeholder_type_specifier] = STATE(3371), - [sym_decltype_auto] = STATE(3366), - [sym_decltype] = STATE(3371), - [sym_class_specifier] = STATE(3371), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1777), - [sym_dependent_type] = STATE(3371), - [sym_template_declaration] = STATE(144), - [sym_operator_cast] = STATE(5177), - [sym_inline_method_definition] = STATE(144), - [sym__constructor_specifiers] = STATE(1777), - [sym_operator_cast_definition] = STATE(144), - [sym_operator_cast_declaration] = STATE(144), - [sym_constructor_or_destructor_definition] = STATE(144), - [sym_constructor_or_destructor_declaration] = STATE(144), - [sym_friend_declaration] = STATE(144), - [sym_access_specifier] = STATE(144), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(2976), - [sym_template_function] = STATE(4825), - [sym_using_declaration] = STATE(144), - [sym_alias_declaration] = STATE(144), - [sym_static_assert_declaration] = STATE(144), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4515), - [sym_qualified_identifier] = STATE(4825), - [sym_qualified_type_identifier] = STATE(3400), - [sym_qualified_operator_cast_identifier] = STATE(5177), - [sym_operator_name] = STATE(4825), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(144), - [aux_sym__declaration_specifiers_repeat1] = STATE(1896), - [aux_sym_sized_type_specifier_repeat1] = STATE(3286), - [aux_sym_operator_cast_definition_repeat1] = STATE(1777), - [sym_identifier] = ACTIONS(1499), - [aux_sym_preproc_def_token1] = ACTIONS(1693), - [aux_sym_preproc_if_token1] = ACTIONS(1695), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1697), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1697), - [sym_preproc_directive] = ACTIONS(1699), - [anon_sym_LPAREN2] = ACTIONS(1515), - [anon_sym_TILDE] = ACTIONS(1517), - [anon_sym_STAR] = ACTIONS(1519), + [sym_preproc_def] = STATE(128), + [sym_preproc_function_def] = STATE(128), + [sym_preproc_call] = STATE(128), + [sym_preproc_if_in_field_declaration_list] = STATE(128), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(128), + [sym_preproc_else_in_field_declaration_list] = STATE(6803), + [sym_preproc_elif_in_field_declaration_list] = STATE(6803), + [sym_type_definition] = STATE(128), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4414), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(3343), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(4956), + [sym_array_declarator] = STATE(5080), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3521), + [sym_sized_type_specifier] = STATE(4001), + [sym_enum_specifier] = STATE(4001), + [sym_struct_specifier] = STATE(4001), + [sym_union_specifier] = STATE(4001), + [sym__field_declaration_list_item] = STATE(128), + [sym_field_declaration] = STATE(128), + [sym_placeholder_type_specifier] = STATE(4001), + [sym_decltype_auto] = STATE(4021), + [sym_decltype] = STATE(4001), + [sym_class_specifier] = STATE(4001), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1985), + [sym_dependent_type] = STATE(4001), + [sym_template_declaration] = STATE(128), + [sym_operator_cast] = STATE(5475), + [sym_inline_method_definition] = STATE(128), + [sym__constructor_specifiers] = STATE(1985), + [sym_operator_cast_definition] = STATE(128), + [sym_operator_cast_declaration] = STATE(128), + [sym_constructor_or_destructor_definition] = STATE(128), + [sym_constructor_or_destructor_declaration] = STATE(128), + [sym_friend_declaration] = STATE(128), + [sym_access_specifier] = STATE(128), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3395), + [sym_template_function] = STATE(5080), + [sym_using_declaration] = STATE(128), + [sym_alias_declaration] = STATE(128), + [sym_static_assert_declaration] = STATE(128), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4775), + [sym_qualified_identifier] = STATE(5080), + [sym_qualified_type_identifier] = STATE(4003), + [sym_qualified_operator_cast_identifier] = STATE(5475), + [sym_operator_name] = STATE(5080), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(128), + [aux_sym__declaration_specifiers_repeat1] = STATE(2191), + [aux_sym_sized_type_specifier_repeat1] = STATE(3805), + [aux_sym_operator_cast_definition_repeat1] = STATE(1985), + [sym_identifier] = ACTIONS(1503), + [aux_sym_preproc_def_token1] = ACTIONS(1505), + [aux_sym_preproc_if_token1] = ACTIONS(1507), + [aux_sym_preproc_if_token2] = ACTIONS(1585), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1511), + [aux_sym_preproc_else_token1] = ACTIONS(1513), + [aux_sym_preproc_elif_token1] = ACTIONS(1515), + [sym_preproc_directive] = ACTIONS(1517), + [anon_sym_LPAREN2] = ACTIONS(1519), + [anon_sym_TILDE] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1523), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1521), - [anon_sym_typedef] = ACTIONS(1701), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_typedef] = ACTIONS(1527), [anon_sym_extern] = ACTIONS(55), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1525), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1389), + [anon_sym_COLON_COLON] = ACTIONS(1529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), [anon_sym___declspec] = ACTIONS(45), [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(1717), - [anon_sym_LBRACK] = ACTIONS(1527), + [anon_sym_LBRACK] = ACTIONS(1531), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), @@ -49587,113 +51296,475 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_constexpr] = ACTIONS(57), [anon_sym_constinit] = ACTIONS(57), [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1529), - [anon_sym_unsigned] = ACTIONS(1529), - [anon_sym_long] = ACTIONS(1529), - [anon_sym_short] = ACTIONS(1529), - [sym_primitive_type] = ACTIONS(1531), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1535), - [anon_sym_struct] = ACTIONS(1537), - [anon_sym_union] = ACTIONS(1539), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1541), - [anon_sym_decltype] = ACTIONS(1543), + [anon_sym_signed] = ACTIONS(1533), + [anon_sym_unsigned] = ACTIONS(1533), + [anon_sym_long] = ACTIONS(1533), + [anon_sym_short] = ACTIONS(1533), + [sym_primitive_type] = ACTIONS(1535), + [anon_sym_enum] = ACTIONS(1537), + [anon_sym_class] = ACTIONS(1539), + [anon_sym_struct] = ACTIONS(1541), + [anon_sym_union] = ACTIONS(1543), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1545), + [anon_sym_decltype] = ACTIONS(1547), [anon_sym_virtual] = ACTIONS(109), [anon_sym_explicit] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1705), - [anon_sym_private] = ACTIONS(1705), - [anon_sym_protected] = ACTIONS(1705), - [anon_sym_typename] = ACTIONS(1547), - [anon_sym_template] = ACTIONS(1707), + [anon_sym_public] = ACTIONS(1549), + [anon_sym_private] = ACTIONS(1549), + [anon_sym_protected] = ACTIONS(1549), + [anon_sym_typename] = ACTIONS(1551), + [anon_sym_template] = ACTIONS(1553), [anon_sym_operator] = ACTIONS(117), - [anon_sym_friend] = ACTIONS(1709), - [anon_sym_using] = ACTIONS(1711), - [anon_sym_static_assert] = ACTIONS(1713), + [anon_sym_friend] = ACTIONS(1555), + [anon_sym_using] = ACTIONS(1557), + [anon_sym_static_assert] = ACTIONS(1559), }, [137] = { - [sym_preproc_def] = STATE(139), - [sym_preproc_function_def] = STATE(139), - [sym_preproc_call] = STATE(139), - [sym_preproc_if_in_field_declaration_list] = STATE(139), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(139), - [sym_type_definition] = STATE(139), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(4155), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(2900), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4709), - [sym_array_declarator] = STATE(4825), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(3200), - [sym_sized_type_specifier] = STATE(3371), - [sym_enum_specifier] = STATE(3371), - [sym_struct_specifier] = STATE(3371), - [sym_union_specifier] = STATE(3371), - [sym__field_declaration_list_item] = STATE(139), - [sym_field_declaration] = STATE(139), - [sym_placeholder_type_specifier] = STATE(3371), - [sym_decltype_auto] = STATE(3366), - [sym_decltype] = STATE(3371), - [sym_class_specifier] = STATE(3371), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1777), - [sym_dependent_type] = STATE(3371), - [sym_template_declaration] = STATE(139), - [sym_operator_cast] = STATE(5177), - [sym_inline_method_definition] = STATE(139), - [sym__constructor_specifiers] = STATE(1777), - [sym_operator_cast_definition] = STATE(139), - [sym_operator_cast_declaration] = STATE(139), - [sym_constructor_or_destructor_definition] = STATE(139), - [sym_constructor_or_destructor_declaration] = STATE(139), - [sym_friend_declaration] = STATE(139), - [sym_access_specifier] = STATE(139), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(2976), - [sym_template_function] = STATE(4825), - [sym_using_declaration] = STATE(139), - [sym_alias_declaration] = STATE(139), - [sym_static_assert_declaration] = STATE(139), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4515), - [sym_qualified_identifier] = STATE(4825), - [sym_qualified_type_identifier] = STATE(3400), - [sym_qualified_operator_cast_identifier] = STATE(5177), - [sym_operator_name] = STATE(4825), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(139), - [aux_sym__declaration_specifiers_repeat1] = STATE(1896), - [aux_sym_sized_type_specifier_repeat1] = STATE(3286), - [aux_sym_operator_cast_definition_repeat1] = STATE(1777), - [sym_identifier] = ACTIONS(1499), - [aux_sym_preproc_def_token1] = ACTIONS(1693), - [aux_sym_preproc_if_token1] = ACTIONS(1695), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1697), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1697), - [sym_preproc_directive] = ACTIONS(1699), - [anon_sym_LPAREN2] = ACTIONS(1515), - [anon_sym_TILDE] = ACTIONS(1517), - [anon_sym_STAR] = ACTIONS(1519), + [sym_preproc_def] = STATE(137), + [sym_preproc_function_def] = STATE(137), + [sym_preproc_call] = STATE(137), + [sym_preproc_if_in_field_declaration_list] = STATE(137), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(137), + [sym_type_definition] = STATE(137), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4414), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(3343), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(4956), + [sym_array_declarator] = STATE(5080), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3521), + [sym_sized_type_specifier] = STATE(4001), + [sym_enum_specifier] = STATE(4001), + [sym_struct_specifier] = STATE(4001), + [sym_union_specifier] = STATE(4001), + [sym__field_declaration_list_item] = STATE(137), + [sym_field_declaration] = STATE(137), + [sym_placeholder_type_specifier] = STATE(4001), + [sym_decltype_auto] = STATE(4021), + [sym_decltype] = STATE(4001), + [sym_class_specifier] = STATE(4001), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1985), + [sym_dependent_type] = STATE(4001), + [sym_template_declaration] = STATE(137), + [sym_operator_cast] = STATE(5475), + [sym_inline_method_definition] = STATE(137), + [sym__constructor_specifiers] = STATE(1985), + [sym_operator_cast_definition] = STATE(137), + [sym_operator_cast_declaration] = STATE(137), + [sym_constructor_or_destructor_definition] = STATE(137), + [sym_constructor_or_destructor_declaration] = STATE(137), + [sym_friend_declaration] = STATE(137), + [sym_access_specifier] = STATE(137), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3395), + [sym_template_function] = STATE(5080), + [sym_using_declaration] = STATE(137), + [sym_alias_declaration] = STATE(137), + [sym_static_assert_declaration] = STATE(137), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4775), + [sym_qualified_identifier] = STATE(5080), + [sym_qualified_type_identifier] = STATE(4003), + [sym_qualified_operator_cast_identifier] = STATE(5475), + [sym_operator_name] = STATE(5080), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(137), + [aux_sym__declaration_specifiers_repeat1] = STATE(2191), + [aux_sym_sized_type_specifier_repeat1] = STATE(3805), + [aux_sym_operator_cast_definition_repeat1] = STATE(1985), + [sym_identifier] = ACTIONS(1587), + [aux_sym_preproc_def_token1] = ACTIONS(1590), + [aux_sym_preproc_if_token1] = ACTIONS(1593), + [aux_sym_preproc_if_token2] = ACTIONS(1596), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1598), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1598), + [aux_sym_preproc_else_token1] = ACTIONS(1596), + [aux_sym_preproc_elif_token1] = ACTIONS(1596), + [sym_preproc_directive] = ACTIONS(1601), + [anon_sym_LPAREN2] = ACTIONS(1604), + [anon_sym_TILDE] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1610), + [anon_sym_AMP_AMP] = ACTIONS(1613), + [anon_sym_AMP] = ACTIONS(1616), + [anon_sym_typedef] = ACTIONS(1619), + [anon_sym_extern] = ACTIONS(1622), + [anon_sym___attribute__] = ACTIONS(1625), + [anon_sym_COLON_COLON] = ACTIONS(1628), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1631), + [anon_sym___declspec] = ACTIONS(1634), + [anon_sym___based] = ACTIONS(1637), + [anon_sym_LBRACK] = ACTIONS(1640), + [anon_sym_static] = ACTIONS(1622), + [anon_sym_register] = ACTIONS(1622), + [anon_sym_inline] = ACTIONS(1622), + [anon_sym_thread_local] = ACTIONS(1622), + [anon_sym_const] = ACTIONS(1643), + [anon_sym_volatile] = ACTIONS(1643), + [anon_sym_restrict] = ACTIONS(1643), + [anon_sym__Atomic] = ACTIONS(1643), + [anon_sym_mutable] = ACTIONS(1643), + [anon_sym_constexpr] = ACTIONS(1643), + [anon_sym_constinit] = ACTIONS(1643), + [anon_sym_consteval] = ACTIONS(1643), + [anon_sym_signed] = ACTIONS(1646), + [anon_sym_unsigned] = ACTIONS(1646), + [anon_sym_long] = ACTIONS(1646), + [anon_sym_short] = ACTIONS(1646), + [sym_primitive_type] = ACTIONS(1649), + [anon_sym_enum] = ACTIONS(1652), + [anon_sym_class] = ACTIONS(1655), + [anon_sym_struct] = ACTIONS(1658), + [anon_sym_union] = ACTIONS(1661), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1664), + [anon_sym_decltype] = ACTIONS(1667), + [anon_sym_virtual] = ACTIONS(1670), + [anon_sym_explicit] = ACTIONS(1673), + [anon_sym_public] = ACTIONS(1676), + [anon_sym_private] = ACTIONS(1676), + [anon_sym_protected] = ACTIONS(1676), + [anon_sym_typename] = ACTIONS(1679), + [anon_sym_template] = ACTIONS(1682), + [anon_sym_operator] = ACTIONS(1685), + [anon_sym_friend] = ACTIONS(1688), + [anon_sym_using] = ACTIONS(1691), + [anon_sym_static_assert] = ACTIONS(1694), + }, + [138] = { + [sym__expression] = STATE(2495), + [sym_conditional_expression] = STATE(2562), + [sym_assignment_expression] = STATE(2562), + [sym_pointer_expression] = STATE(2549), + [sym_unary_expression] = STATE(2562), + [sym_binary_expression] = STATE(2562), + [sym_update_expression] = STATE(2562), + [sym_cast_expression] = STATE(2562), + [sym_sizeof_expression] = STATE(2562), + [sym_subscript_expression] = STATE(2549), + [sym_call_expression] = STATE(2549), + [sym_field_expression] = STATE(2549), + [sym_compound_literal_expression] = STATE(2562), + [sym_parenthesized_expression] = STATE(2549), + [sym_initializer_list] = STATE(2500), + [sym_char_literal] = STATE(2344), + [sym_concatenated_string] = STATE(2344), + [sym_string_literal] = STATE(1824), + [sym__class_name] = STATE(6654), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2562), + [sym_co_await_expression] = STATE(2562), + [sym_new_expression] = STATE(2562), + [sym_delete_expression] = STATE(2562), + [sym_requires_clause] = STATE(2562), + [sym_requires_expression] = STATE(2562), + [sym_lambda_expression] = STATE(2562), + [sym_lambda_capture_specifier] = STATE(4787), + [sym_fold_expression] = STATE(2562), + [sym_parameter_pack_expansion] = STATE(2562), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2549), + [sym_qualified_type_identifier] = STATE(6654), + [sym_user_defined_literal] = STATE(2562), + [sym_identifier] = ACTIONS(1697), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1699), + [anon_sym_COMMA] = ACTIONS(1699), + [anon_sym_RPAREN] = ACTIONS(1699), + [anon_sym_LPAREN2] = ACTIONS(1701), + [anon_sym_BANG] = ACTIONS(1703), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1703), + [anon_sym_PLUS] = ACTIONS(1703), + [anon_sym_STAR] = ACTIONS(970), + [anon_sym_SLASH] = ACTIONS(1707), + [anon_sym_PERCENT] = ACTIONS(1707), + [anon_sym_PIPE_PIPE] = ACTIONS(1699), + [anon_sym_AMP_AMP] = ACTIONS(1699), + [anon_sym_PIPE] = ACTIONS(1707), + [anon_sym_CARET] = ACTIONS(1707), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_EQ_EQ] = ACTIONS(1699), + [anon_sym_BANG_EQ] = ACTIONS(1699), + [anon_sym_GT] = ACTIONS(1707), + [anon_sym_GT_EQ] = ACTIONS(1699), + [anon_sym_LT_EQ] = ACTIONS(1707), + [anon_sym_LT] = ACTIONS(1707), + [anon_sym_LT_LT] = ACTIONS(1707), + [anon_sym_GT_GT] = ACTIONS(1707), + [anon_sym_SEMI] = ACTIONS(1699), + [anon_sym_COLON_COLON] = ACTIONS(1709), + [anon_sym_LBRACE] = ACTIONS(1711), + [anon_sym_RBRACE] = ACTIONS(1699), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_RBRACK] = ACTIONS(1699), + [anon_sym_EQ] = ACTIONS(1707), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_QMARK] = ACTIONS(1699), + [anon_sym_STAR_EQ] = ACTIONS(1699), + [anon_sym_SLASH_EQ] = ACTIONS(1699), + [anon_sym_PERCENT_EQ] = ACTIONS(1699), + [anon_sym_PLUS_EQ] = ACTIONS(1699), + [anon_sym_DASH_EQ] = ACTIONS(1699), + [anon_sym_LT_LT_EQ] = ACTIONS(1699), + [anon_sym_GT_GT_EQ] = ACTIONS(1699), + [anon_sym_AMP_EQ] = ACTIONS(1699), + [anon_sym_CARET_EQ] = ACTIONS(1699), + [anon_sym_PIPE_EQ] = ACTIONS(1699), + [anon_sym_and_eq] = ACTIONS(1707), + [anon_sym_or_eq] = ACTIONS(1707), + [anon_sym_xor_eq] = ACTIONS(1707), + [anon_sym_not] = ACTIONS(1703), + [anon_sym_compl] = ACTIONS(1703), + [anon_sym_LT_EQ_GT] = ACTIONS(1699), + [anon_sym_or] = ACTIONS(1707), + [anon_sym_and] = ACTIONS(1707), + [anon_sym_bitor] = ACTIONS(1707), + [anon_sym_xor] = ACTIONS(1707), + [anon_sym_bitand] = ACTIONS(1707), + [anon_sym_not_eq] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1717), + [anon_sym_PLUS_PLUS] = ACTIONS(1717), + [anon_sym_sizeof] = ACTIONS(1719), + [anon_sym_DOT] = ACTIONS(1707), + [anon_sym_DASH_GT] = ACTIONS(1699), + [sym_number_literal] = ACTIONS(1721), + [anon_sym_L_SQUOTE] = ACTIONS(1723), + [anon_sym_u_SQUOTE] = ACTIONS(1723), + [anon_sym_U_SQUOTE] = ACTIONS(1723), + [anon_sym_u8_SQUOTE] = ACTIONS(1723), + [anon_sym_SQUOTE] = ACTIONS(1723), + [anon_sym_L_DQUOTE] = ACTIONS(1725), + [anon_sym_u_DQUOTE] = ACTIONS(1725), + [anon_sym_U_DQUOTE] = ACTIONS(1725), + [anon_sym_u8_DQUOTE] = ACTIONS(1725), + [anon_sym_DQUOTE] = ACTIONS(1725), + [sym_true] = ACTIONS(1727), + [sym_false] = ACTIONS(1727), + [sym_null] = ACTIONS(1727), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1729), + [anon_sym_co_await] = ACTIONS(1731), + [anon_sym_new] = ACTIONS(1733), + [anon_sym_requires] = ACTIONS(1735), + [sym_this] = ACTIONS(1727), + [sym_nullptr] = ACTIONS(1727), + [sym_raw_string_literal] = ACTIONS(1737), + }, + [139] = { + [sym__expression] = STATE(2636), + [sym_conditional_expression] = STATE(2821), + [sym_assignment_expression] = STATE(2821), + [sym_pointer_expression] = STATE(2805), + [sym_unary_expression] = STATE(2821), + [sym_binary_expression] = STATE(2821), + [sym_update_expression] = STATE(2821), + [sym_cast_expression] = STATE(2821), + [sym_sizeof_expression] = STATE(2821), + [sym_subscript_expression] = STATE(2805), + [sym_call_expression] = STATE(2805), + [sym_field_expression] = STATE(2805), + [sym_compound_literal_expression] = STATE(2821), + [sym_parenthesized_expression] = STATE(2805), + [sym_initializer_list] = STATE(2766), + [sym_char_literal] = STATE(2577), + [sym_concatenated_string] = STATE(2577), + [sym_string_literal] = STATE(1861), + [sym__class_name] = STATE(6652), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2821), + [sym_co_await_expression] = STATE(2821), + [sym_new_expression] = STATE(2821), + [sym_delete_expression] = STATE(2821), + [sym_requires_clause] = STATE(2821), + [sym_requires_expression] = STATE(2821), + [sym_lambda_expression] = STATE(2821), + [sym_lambda_capture_specifier] = STATE(4790), + [sym_fold_expression] = STATE(2821), + [sym_parameter_pack_expansion] = STATE(2821), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4904), + [sym_qualified_identifier] = STATE(2805), + [sym_qualified_type_identifier] = STATE(6652), + [sym_user_defined_literal] = STATE(2821), + [sym_identifier] = ACTIONS(1739), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1699), + [anon_sym_COMMA] = ACTIONS(1699), + [anon_sym_RPAREN] = ACTIONS(1699), + [anon_sym_LPAREN2] = ACTIONS(1741), + [anon_sym_BANG] = ACTIONS(1743), + [anon_sym_TILDE] = ACTIONS(1745), + [anon_sym_DASH] = ACTIONS(1743), + [anon_sym_PLUS] = ACTIONS(1743), + [anon_sym_STAR] = ACTIONS(1747), + [anon_sym_SLASH] = ACTIONS(1707), + [anon_sym_PERCENT] = ACTIONS(1707), + [anon_sym_PIPE_PIPE] = ACTIONS(1699), + [anon_sym_AMP_AMP] = ACTIONS(1699), + [anon_sym_PIPE] = ACTIONS(1707), + [anon_sym_CARET] = ACTIONS(1707), + [anon_sym_AMP] = ACTIONS(1747), + [anon_sym_EQ_EQ] = ACTIONS(1699), + [anon_sym_BANG_EQ] = ACTIONS(1699), + [anon_sym_GT] = ACTIONS(1707), + [anon_sym_GT_EQ] = ACTIONS(1699), + [anon_sym_LT_EQ] = ACTIONS(1707), + [anon_sym_LT] = ACTIONS(1707), + [anon_sym_LT_LT] = ACTIONS(1707), + [anon_sym_GT_GT] = ACTIONS(1707), + [anon_sym_COLON_COLON] = ACTIONS(1749), + [anon_sym_LBRACE] = ACTIONS(1751), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_EQ] = ACTIONS(1707), + [sym_primitive_type] = ACTIONS(1753), + [anon_sym_QMARK] = ACTIONS(1699), + [anon_sym_STAR_EQ] = ACTIONS(1699), + [anon_sym_SLASH_EQ] = ACTIONS(1699), + [anon_sym_PERCENT_EQ] = ACTIONS(1699), + [anon_sym_PLUS_EQ] = ACTIONS(1699), + [anon_sym_DASH_EQ] = ACTIONS(1699), + [anon_sym_LT_LT_EQ] = ACTIONS(1699), + [anon_sym_GT_GT_EQ] = ACTIONS(1699), + [anon_sym_AMP_EQ] = ACTIONS(1699), + [anon_sym_CARET_EQ] = ACTIONS(1699), + [anon_sym_PIPE_EQ] = ACTIONS(1699), + [anon_sym_and_eq] = ACTIONS(1707), + [anon_sym_or_eq] = ACTIONS(1707), + [anon_sym_xor_eq] = ACTIONS(1707), + [anon_sym_not] = ACTIONS(1743), + [anon_sym_compl] = ACTIONS(1743), + [anon_sym_LT_EQ_GT] = ACTIONS(1699), + [anon_sym_or] = ACTIONS(1707), + [anon_sym_and] = ACTIONS(1707), + [anon_sym_bitor] = ACTIONS(1707), + [anon_sym_xor] = ACTIONS(1707), + [anon_sym_bitand] = ACTIONS(1707), + [anon_sym_not_eq] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1755), + [anon_sym_PLUS_PLUS] = ACTIONS(1755), + [anon_sym_sizeof] = ACTIONS(1757), + [anon_sym_DOT] = ACTIONS(1707), + [anon_sym_DASH_GT] = ACTIONS(1707), + [sym_number_literal] = ACTIONS(1759), + [anon_sym_L_SQUOTE] = ACTIONS(1761), + [anon_sym_u_SQUOTE] = ACTIONS(1761), + [anon_sym_U_SQUOTE] = ACTIONS(1761), + [anon_sym_u8_SQUOTE] = ACTIONS(1761), + [anon_sym_SQUOTE] = ACTIONS(1761), + [anon_sym_L_DQUOTE] = ACTIONS(1763), + [anon_sym_u_DQUOTE] = ACTIONS(1763), + [anon_sym_U_DQUOTE] = ACTIONS(1763), + [anon_sym_u8_DQUOTE] = ACTIONS(1763), + [anon_sym_DQUOTE] = ACTIONS(1763), + [sym_true] = ACTIONS(1765), + [sym_false] = ACTIONS(1765), + [sym_null] = ACTIONS(1765), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1767), + [anon_sym_co_await] = ACTIONS(1769), + [anon_sym_new] = ACTIONS(1771), + [anon_sym_requires] = ACTIONS(1773), + [anon_sym_DOT_STAR] = ACTIONS(1699), + [anon_sym_DASH_GT_STAR] = ACTIONS(1699), + [sym_this] = ACTIONS(1765), + [sym_nullptr] = ACTIONS(1765), + [sym_raw_string_literal] = ACTIONS(1775), + }, + [140] = { + [sym_preproc_def] = STATE(147), + [sym_preproc_function_def] = STATE(147), + [sym_preproc_call] = STATE(147), + [sym_preproc_if_in_field_declaration_list] = STATE(147), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(147), + [sym_type_definition] = STATE(147), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4425), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(3343), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(4945), + [sym_array_declarator] = STATE(5080), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3521), + [sym_sized_type_specifier] = STATE(4001), + [sym_enum_specifier] = STATE(4001), + [sym_struct_specifier] = STATE(4001), + [sym_union_specifier] = STATE(4001), + [sym__field_declaration_list_item] = STATE(147), + [sym_field_declaration] = STATE(147), + [sym_placeholder_type_specifier] = STATE(4001), + [sym_decltype_auto] = STATE(4021), + [sym_decltype] = STATE(4001), + [sym_class_specifier] = STATE(4001), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1983), + [sym_dependent_type] = STATE(4001), + [sym_template_declaration] = STATE(147), + [sym_operator_cast] = STATE(5477), + [sym_inline_method_definition] = STATE(147), + [sym__constructor_specifiers] = STATE(1983), + [sym_operator_cast_definition] = STATE(147), + [sym_operator_cast_declaration] = STATE(147), + [sym_constructor_or_destructor_definition] = STATE(147), + [sym_constructor_or_destructor_declaration] = STATE(147), + [sym_friend_declaration] = STATE(147), + [sym_access_specifier] = STATE(147), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3395), + [sym_template_function] = STATE(5080), + [sym_using_declaration] = STATE(147), + [sym_alias_declaration] = STATE(147), + [sym_static_assert_declaration] = STATE(147), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4775), + [sym_qualified_identifier] = STATE(5080), + [sym_qualified_type_identifier] = STATE(4003), + [sym_qualified_operator_cast_identifier] = STATE(5477), + [sym_operator_name] = STATE(5080), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(147), + [aux_sym__declaration_specifiers_repeat1] = STATE(2191), + [aux_sym_sized_type_specifier_repeat1] = STATE(3805), + [aux_sym_operator_cast_definition_repeat1] = STATE(1983), + [sym_identifier] = ACTIONS(1503), + [aux_sym_preproc_def_token1] = ACTIONS(1777), + [aux_sym_preproc_if_token1] = ACTIONS(1779), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1781), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1781), + [sym_preproc_directive] = ACTIONS(1783), + [anon_sym_LPAREN2] = ACTIONS(1519), + [anon_sym_TILDE] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1523), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1521), - [anon_sym_typedef] = ACTIONS(1701), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_typedef] = ACTIONS(1785), [anon_sym_extern] = ACTIONS(55), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1525), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1389), + [anon_sym_COLON_COLON] = ACTIONS(1529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), [anon_sym___declspec] = ACTIONS(45), [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(1719), - [anon_sym_LBRACK] = ACTIONS(1527), + [anon_sym_RBRACE] = ACTIONS(1787), + [anon_sym_LBRACK] = ACTIONS(1531), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), @@ -49706,113 +51777,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_constexpr] = ACTIONS(57), [anon_sym_constinit] = ACTIONS(57), [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1529), - [anon_sym_unsigned] = ACTIONS(1529), - [anon_sym_long] = ACTIONS(1529), - [anon_sym_short] = ACTIONS(1529), - [sym_primitive_type] = ACTIONS(1531), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1535), - [anon_sym_struct] = ACTIONS(1537), - [anon_sym_union] = ACTIONS(1539), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1541), - [anon_sym_decltype] = ACTIONS(1543), + [anon_sym_signed] = ACTIONS(1533), + [anon_sym_unsigned] = ACTIONS(1533), + [anon_sym_long] = ACTIONS(1533), + [anon_sym_short] = ACTIONS(1533), + [sym_primitive_type] = ACTIONS(1535), + [anon_sym_enum] = ACTIONS(1537), + [anon_sym_class] = ACTIONS(1539), + [anon_sym_struct] = ACTIONS(1541), + [anon_sym_union] = ACTIONS(1543), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1545), + [anon_sym_decltype] = ACTIONS(1547), [anon_sym_virtual] = ACTIONS(109), [anon_sym_explicit] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1705), - [anon_sym_private] = ACTIONS(1705), - [anon_sym_protected] = ACTIONS(1705), - [anon_sym_typename] = ACTIONS(1547), - [anon_sym_template] = ACTIONS(1707), + [anon_sym_public] = ACTIONS(1789), + [anon_sym_private] = ACTIONS(1789), + [anon_sym_protected] = ACTIONS(1789), + [anon_sym_typename] = ACTIONS(1551), + [anon_sym_template] = ACTIONS(1791), [anon_sym_operator] = ACTIONS(117), - [anon_sym_friend] = ACTIONS(1709), - [anon_sym_using] = ACTIONS(1711), - [anon_sym_static_assert] = ACTIONS(1713), + [anon_sym_friend] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1795), + [anon_sym_static_assert] = ACTIONS(1797), }, - [138] = { - [sym_preproc_def] = STATE(136), - [sym_preproc_function_def] = STATE(136), - [sym_preproc_call] = STATE(136), - [sym_preproc_if_in_field_declaration_list] = STATE(136), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(136), - [sym_type_definition] = STATE(136), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(4155), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(2900), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4709), - [sym_array_declarator] = STATE(4825), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(3200), - [sym_sized_type_specifier] = STATE(3371), - [sym_enum_specifier] = STATE(3371), - [sym_struct_specifier] = STATE(3371), - [sym_union_specifier] = STATE(3371), - [sym__field_declaration_list_item] = STATE(136), - [sym_field_declaration] = STATE(136), - [sym_placeholder_type_specifier] = STATE(3371), - [sym_decltype_auto] = STATE(3366), - [sym_decltype] = STATE(3371), - [sym_class_specifier] = STATE(3371), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1777), - [sym_dependent_type] = STATE(3371), - [sym_template_declaration] = STATE(136), - [sym_operator_cast] = STATE(5177), - [sym_inline_method_definition] = STATE(136), - [sym__constructor_specifiers] = STATE(1777), - [sym_operator_cast_definition] = STATE(136), - [sym_operator_cast_declaration] = STATE(136), - [sym_constructor_or_destructor_definition] = STATE(136), - [sym_constructor_or_destructor_declaration] = STATE(136), - [sym_friend_declaration] = STATE(136), - [sym_access_specifier] = STATE(136), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(2976), - [sym_template_function] = STATE(4825), - [sym_using_declaration] = STATE(136), - [sym_alias_declaration] = STATE(136), - [sym_static_assert_declaration] = STATE(136), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4515), - [sym_qualified_identifier] = STATE(4825), - [sym_qualified_type_identifier] = STATE(3400), - [sym_qualified_operator_cast_identifier] = STATE(5177), - [sym_operator_name] = STATE(4825), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(136), - [aux_sym__declaration_specifiers_repeat1] = STATE(1896), - [aux_sym_sized_type_specifier_repeat1] = STATE(3286), - [aux_sym_operator_cast_definition_repeat1] = STATE(1777), - [sym_identifier] = ACTIONS(1499), - [aux_sym_preproc_def_token1] = ACTIONS(1693), - [aux_sym_preproc_if_token1] = ACTIONS(1695), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1697), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1697), - [sym_preproc_directive] = ACTIONS(1699), - [anon_sym_LPAREN2] = ACTIONS(1515), - [anon_sym_TILDE] = ACTIONS(1517), - [anon_sym_STAR] = ACTIONS(1519), + [141] = { + [sym_preproc_def] = STATE(157), + [sym_preproc_function_def] = STATE(157), + [sym_preproc_call] = STATE(157), + [sym_preproc_if_in_field_declaration_list] = STATE(157), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(157), + [sym_type_definition] = STATE(157), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4426), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(3343), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(4964), + [sym_array_declarator] = STATE(5080), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3521), + [sym_sized_type_specifier] = STATE(4001), + [sym_enum_specifier] = STATE(4001), + [sym_struct_specifier] = STATE(4001), + [sym_union_specifier] = STATE(4001), + [sym__field_declaration_list_item] = STATE(157), + [sym_field_declaration] = STATE(157), + [sym_placeholder_type_specifier] = STATE(4001), + [sym_decltype_auto] = STATE(4021), + [sym_decltype] = STATE(4001), + [sym_class_specifier] = STATE(4001), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1984), + [sym_dependent_type] = STATE(4001), + [sym_template_declaration] = STATE(157), + [sym_operator_cast] = STATE(5470), + [sym_inline_method_definition] = STATE(157), + [sym__constructor_specifiers] = STATE(1984), + [sym_operator_cast_definition] = STATE(157), + [sym_operator_cast_declaration] = STATE(157), + [sym_constructor_or_destructor_definition] = STATE(157), + [sym_constructor_or_destructor_declaration] = STATE(157), + [sym_friend_declaration] = STATE(157), + [sym_access_specifier] = STATE(157), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3395), + [sym_template_function] = STATE(5080), + [sym_using_declaration] = STATE(157), + [sym_alias_declaration] = STATE(157), + [sym_static_assert_declaration] = STATE(157), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4775), + [sym_qualified_identifier] = STATE(5080), + [sym_qualified_type_identifier] = STATE(4003), + [sym_qualified_operator_cast_identifier] = STATE(5470), + [sym_operator_name] = STATE(5080), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(157), + [aux_sym__declaration_specifiers_repeat1] = STATE(2191), + [aux_sym_sized_type_specifier_repeat1] = STATE(3805), + [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [sym_identifier] = ACTIONS(1503), + [aux_sym_preproc_def_token1] = ACTIONS(1799), + [aux_sym_preproc_if_token1] = ACTIONS(1801), + [aux_sym_preproc_if_token2] = ACTIONS(1803), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1805), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1805), + [sym_preproc_directive] = ACTIONS(1807), + [anon_sym_LPAREN2] = ACTIONS(1519), + [anon_sym_TILDE] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1523), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1521), - [anon_sym_typedef] = ACTIONS(1701), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_typedef] = ACTIONS(1809), [anon_sym_extern] = ACTIONS(55), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1525), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1389), + [anon_sym_COLON_COLON] = ACTIONS(1529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), [anon_sym___declspec] = ACTIONS(45), [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(1721), - [anon_sym_LBRACK] = ACTIONS(1527), + [anon_sym_LBRACK] = ACTIONS(1531), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), @@ -49825,113 +51896,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_constexpr] = ACTIONS(57), [anon_sym_constinit] = ACTIONS(57), [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1529), - [anon_sym_unsigned] = ACTIONS(1529), - [anon_sym_long] = ACTIONS(1529), - [anon_sym_short] = ACTIONS(1529), - [sym_primitive_type] = ACTIONS(1531), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1535), - [anon_sym_struct] = ACTIONS(1537), - [anon_sym_union] = ACTIONS(1539), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1541), - [anon_sym_decltype] = ACTIONS(1543), + [anon_sym_signed] = ACTIONS(1533), + [anon_sym_unsigned] = ACTIONS(1533), + [anon_sym_long] = ACTIONS(1533), + [anon_sym_short] = ACTIONS(1533), + [sym_primitive_type] = ACTIONS(1535), + [anon_sym_enum] = ACTIONS(1537), + [anon_sym_class] = ACTIONS(1539), + [anon_sym_struct] = ACTIONS(1541), + [anon_sym_union] = ACTIONS(1543), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1545), + [anon_sym_decltype] = ACTIONS(1547), [anon_sym_virtual] = ACTIONS(109), [anon_sym_explicit] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1705), - [anon_sym_private] = ACTIONS(1705), - [anon_sym_protected] = ACTIONS(1705), - [anon_sym_typename] = ACTIONS(1547), - [anon_sym_template] = ACTIONS(1707), + [anon_sym_public] = ACTIONS(1811), + [anon_sym_private] = ACTIONS(1811), + [anon_sym_protected] = ACTIONS(1811), + [anon_sym_typename] = ACTIONS(1551), + [anon_sym_template] = ACTIONS(1813), [anon_sym_operator] = ACTIONS(117), - [anon_sym_friend] = ACTIONS(1709), - [anon_sym_using] = ACTIONS(1711), - [anon_sym_static_assert] = ACTIONS(1713), + [anon_sym_friend] = ACTIONS(1815), + [anon_sym_using] = ACTIONS(1817), + [anon_sym_static_assert] = ACTIONS(1819), }, - [139] = { - [sym_preproc_def] = STATE(144), - [sym_preproc_function_def] = STATE(144), - [sym_preproc_call] = STATE(144), - [sym_preproc_if_in_field_declaration_list] = STATE(144), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(144), - [sym_type_definition] = STATE(144), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(4155), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(2900), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4709), - [sym_array_declarator] = STATE(4825), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(3200), - [sym_sized_type_specifier] = STATE(3371), - [sym_enum_specifier] = STATE(3371), - [sym_struct_specifier] = STATE(3371), - [sym_union_specifier] = STATE(3371), - [sym__field_declaration_list_item] = STATE(144), - [sym_field_declaration] = STATE(144), - [sym_placeholder_type_specifier] = STATE(3371), - [sym_decltype_auto] = STATE(3366), - [sym_decltype] = STATE(3371), - [sym_class_specifier] = STATE(3371), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1777), - [sym_dependent_type] = STATE(3371), - [sym_template_declaration] = STATE(144), - [sym_operator_cast] = STATE(5177), - [sym_inline_method_definition] = STATE(144), - [sym__constructor_specifiers] = STATE(1777), - [sym_operator_cast_definition] = STATE(144), - [sym_operator_cast_declaration] = STATE(144), - [sym_constructor_or_destructor_definition] = STATE(144), - [sym_constructor_or_destructor_declaration] = STATE(144), - [sym_friend_declaration] = STATE(144), - [sym_access_specifier] = STATE(144), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(2976), - [sym_template_function] = STATE(4825), - [sym_using_declaration] = STATE(144), - [sym_alias_declaration] = STATE(144), - [sym_static_assert_declaration] = STATE(144), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4515), - [sym_qualified_identifier] = STATE(4825), - [sym_qualified_type_identifier] = STATE(3400), - [sym_qualified_operator_cast_identifier] = STATE(5177), - [sym_operator_name] = STATE(4825), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(144), - [aux_sym__declaration_specifiers_repeat1] = STATE(1896), - [aux_sym_sized_type_specifier_repeat1] = STATE(3286), - [aux_sym_operator_cast_definition_repeat1] = STATE(1777), - [sym_identifier] = ACTIONS(1499), - [aux_sym_preproc_def_token1] = ACTIONS(1693), - [aux_sym_preproc_if_token1] = ACTIONS(1695), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1697), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1697), - [sym_preproc_directive] = ACTIONS(1699), - [anon_sym_LPAREN2] = ACTIONS(1515), - [anon_sym_TILDE] = ACTIONS(1517), - [anon_sym_STAR] = ACTIONS(1519), + [142] = { + [sym_preproc_def] = STATE(147), + [sym_preproc_function_def] = STATE(147), + [sym_preproc_call] = STATE(147), + [sym_preproc_if_in_field_declaration_list] = STATE(147), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(147), + [sym_type_definition] = STATE(147), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4425), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(3343), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(4945), + [sym_array_declarator] = STATE(5080), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3521), + [sym_sized_type_specifier] = STATE(4001), + [sym_enum_specifier] = STATE(4001), + [sym_struct_specifier] = STATE(4001), + [sym_union_specifier] = STATE(4001), + [sym__field_declaration_list_item] = STATE(147), + [sym_field_declaration] = STATE(147), + [sym_placeholder_type_specifier] = STATE(4001), + [sym_decltype_auto] = STATE(4021), + [sym_decltype] = STATE(4001), + [sym_class_specifier] = STATE(4001), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1983), + [sym_dependent_type] = STATE(4001), + [sym_template_declaration] = STATE(147), + [sym_operator_cast] = STATE(5477), + [sym_inline_method_definition] = STATE(147), + [sym__constructor_specifiers] = STATE(1983), + [sym_operator_cast_definition] = STATE(147), + [sym_operator_cast_declaration] = STATE(147), + [sym_constructor_or_destructor_definition] = STATE(147), + [sym_constructor_or_destructor_declaration] = STATE(147), + [sym_friend_declaration] = STATE(147), + [sym_access_specifier] = STATE(147), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3395), + [sym_template_function] = STATE(5080), + [sym_using_declaration] = STATE(147), + [sym_alias_declaration] = STATE(147), + [sym_static_assert_declaration] = STATE(147), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4775), + [sym_qualified_identifier] = STATE(5080), + [sym_qualified_type_identifier] = STATE(4003), + [sym_qualified_operator_cast_identifier] = STATE(5477), + [sym_operator_name] = STATE(5080), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(147), + [aux_sym__declaration_specifiers_repeat1] = STATE(2191), + [aux_sym_sized_type_specifier_repeat1] = STATE(3805), + [aux_sym_operator_cast_definition_repeat1] = STATE(1983), + [sym_identifier] = ACTIONS(1503), + [aux_sym_preproc_def_token1] = ACTIONS(1777), + [aux_sym_preproc_if_token1] = ACTIONS(1779), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1781), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1781), + [sym_preproc_directive] = ACTIONS(1783), + [anon_sym_LPAREN2] = ACTIONS(1519), + [anon_sym_TILDE] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1523), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1521), - [anon_sym_typedef] = ACTIONS(1701), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_typedef] = ACTIONS(1785), [anon_sym_extern] = ACTIONS(55), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1525), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1389), + [anon_sym_COLON_COLON] = ACTIONS(1529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), [anon_sym___declspec] = ACTIONS(45), [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(1723), - [anon_sym_LBRACK] = ACTIONS(1527), + [anon_sym_RBRACE] = ACTIONS(1821), + [anon_sym_LBRACK] = ACTIONS(1531), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), @@ -49944,113 +52015,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_constexpr] = ACTIONS(57), [anon_sym_constinit] = ACTIONS(57), [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1529), - [anon_sym_unsigned] = ACTIONS(1529), - [anon_sym_long] = ACTIONS(1529), - [anon_sym_short] = ACTIONS(1529), - [sym_primitive_type] = ACTIONS(1531), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1535), - [anon_sym_struct] = ACTIONS(1537), - [anon_sym_union] = ACTIONS(1539), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1541), - [anon_sym_decltype] = ACTIONS(1543), + [anon_sym_signed] = ACTIONS(1533), + [anon_sym_unsigned] = ACTIONS(1533), + [anon_sym_long] = ACTIONS(1533), + [anon_sym_short] = ACTIONS(1533), + [sym_primitive_type] = ACTIONS(1535), + [anon_sym_enum] = ACTIONS(1537), + [anon_sym_class] = ACTIONS(1539), + [anon_sym_struct] = ACTIONS(1541), + [anon_sym_union] = ACTIONS(1543), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1545), + [anon_sym_decltype] = ACTIONS(1547), [anon_sym_virtual] = ACTIONS(109), [anon_sym_explicit] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1705), - [anon_sym_private] = ACTIONS(1705), - [anon_sym_protected] = ACTIONS(1705), - [anon_sym_typename] = ACTIONS(1547), - [anon_sym_template] = ACTIONS(1707), + [anon_sym_public] = ACTIONS(1789), + [anon_sym_private] = ACTIONS(1789), + [anon_sym_protected] = ACTIONS(1789), + [anon_sym_typename] = ACTIONS(1551), + [anon_sym_template] = ACTIONS(1791), [anon_sym_operator] = ACTIONS(117), - [anon_sym_friend] = ACTIONS(1709), - [anon_sym_using] = ACTIONS(1711), - [anon_sym_static_assert] = ACTIONS(1713), + [anon_sym_friend] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1795), + [anon_sym_static_assert] = ACTIONS(1797), }, - [140] = { - [sym_preproc_def] = STATE(144), - [sym_preproc_function_def] = STATE(144), - [sym_preproc_call] = STATE(144), - [sym_preproc_if_in_field_declaration_list] = STATE(144), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(144), - [sym_type_definition] = STATE(144), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(4155), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(2900), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4709), - [sym_array_declarator] = STATE(4825), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(3200), - [sym_sized_type_specifier] = STATE(3371), - [sym_enum_specifier] = STATE(3371), - [sym_struct_specifier] = STATE(3371), - [sym_union_specifier] = STATE(3371), - [sym__field_declaration_list_item] = STATE(144), - [sym_field_declaration] = STATE(144), - [sym_placeholder_type_specifier] = STATE(3371), - [sym_decltype_auto] = STATE(3366), - [sym_decltype] = STATE(3371), - [sym_class_specifier] = STATE(3371), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1777), - [sym_dependent_type] = STATE(3371), - [sym_template_declaration] = STATE(144), - [sym_operator_cast] = STATE(5177), - [sym_inline_method_definition] = STATE(144), - [sym__constructor_specifiers] = STATE(1777), - [sym_operator_cast_definition] = STATE(144), - [sym_operator_cast_declaration] = STATE(144), - [sym_constructor_or_destructor_definition] = STATE(144), - [sym_constructor_or_destructor_declaration] = STATE(144), - [sym_friend_declaration] = STATE(144), - [sym_access_specifier] = STATE(144), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(2976), - [sym_template_function] = STATE(4825), - [sym_using_declaration] = STATE(144), - [sym_alias_declaration] = STATE(144), - [sym_static_assert_declaration] = STATE(144), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4515), - [sym_qualified_identifier] = STATE(4825), - [sym_qualified_type_identifier] = STATE(3400), - [sym_qualified_operator_cast_identifier] = STATE(5177), - [sym_operator_name] = STATE(4825), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(144), - [aux_sym__declaration_specifiers_repeat1] = STATE(1896), - [aux_sym_sized_type_specifier_repeat1] = STATE(3286), - [aux_sym_operator_cast_definition_repeat1] = STATE(1777), - [sym_identifier] = ACTIONS(1499), - [aux_sym_preproc_def_token1] = ACTIONS(1693), - [aux_sym_preproc_if_token1] = ACTIONS(1695), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1697), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1697), - [sym_preproc_directive] = ACTIONS(1699), - [anon_sym_LPAREN2] = ACTIONS(1515), - [anon_sym_TILDE] = ACTIONS(1517), - [anon_sym_STAR] = ACTIONS(1519), + [143] = { + [sym_preproc_def] = STATE(147), + [sym_preproc_function_def] = STATE(147), + [sym_preproc_call] = STATE(147), + [sym_preproc_if_in_field_declaration_list] = STATE(147), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(147), + [sym_type_definition] = STATE(147), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4425), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(3343), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(4945), + [sym_array_declarator] = STATE(5080), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3521), + [sym_sized_type_specifier] = STATE(4001), + [sym_enum_specifier] = STATE(4001), + [sym_struct_specifier] = STATE(4001), + [sym_union_specifier] = STATE(4001), + [sym__field_declaration_list_item] = STATE(147), + [sym_field_declaration] = STATE(147), + [sym_placeholder_type_specifier] = STATE(4001), + [sym_decltype_auto] = STATE(4021), + [sym_decltype] = STATE(4001), + [sym_class_specifier] = STATE(4001), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1983), + [sym_dependent_type] = STATE(4001), + [sym_template_declaration] = STATE(147), + [sym_operator_cast] = STATE(5477), + [sym_inline_method_definition] = STATE(147), + [sym__constructor_specifiers] = STATE(1983), + [sym_operator_cast_definition] = STATE(147), + [sym_operator_cast_declaration] = STATE(147), + [sym_constructor_or_destructor_definition] = STATE(147), + [sym_constructor_or_destructor_declaration] = STATE(147), + [sym_friend_declaration] = STATE(147), + [sym_access_specifier] = STATE(147), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3395), + [sym_template_function] = STATE(5080), + [sym_using_declaration] = STATE(147), + [sym_alias_declaration] = STATE(147), + [sym_static_assert_declaration] = STATE(147), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4775), + [sym_qualified_identifier] = STATE(5080), + [sym_qualified_type_identifier] = STATE(4003), + [sym_qualified_operator_cast_identifier] = STATE(5477), + [sym_operator_name] = STATE(5080), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(147), + [aux_sym__declaration_specifiers_repeat1] = STATE(2191), + [aux_sym_sized_type_specifier_repeat1] = STATE(3805), + [aux_sym_operator_cast_definition_repeat1] = STATE(1983), + [sym_identifier] = ACTIONS(1503), + [aux_sym_preproc_def_token1] = ACTIONS(1777), + [aux_sym_preproc_if_token1] = ACTIONS(1779), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1781), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1781), + [sym_preproc_directive] = ACTIONS(1783), + [anon_sym_LPAREN2] = ACTIONS(1519), + [anon_sym_TILDE] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1523), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1521), - [anon_sym_typedef] = ACTIONS(1701), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_typedef] = ACTIONS(1785), [anon_sym_extern] = ACTIONS(55), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1525), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1389), + [anon_sym_COLON_COLON] = ACTIONS(1529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), [anon_sym___declspec] = ACTIONS(45), [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(1725), - [anon_sym_LBRACK] = ACTIONS(1527), + [anon_sym_RBRACE] = ACTIONS(1823), + [anon_sym_LBRACK] = ACTIONS(1531), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), @@ -50063,113 +52134,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_constexpr] = ACTIONS(57), [anon_sym_constinit] = ACTIONS(57), [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1529), - [anon_sym_unsigned] = ACTIONS(1529), - [anon_sym_long] = ACTIONS(1529), - [anon_sym_short] = ACTIONS(1529), - [sym_primitive_type] = ACTIONS(1531), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1535), - [anon_sym_struct] = ACTIONS(1537), - [anon_sym_union] = ACTIONS(1539), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1541), - [anon_sym_decltype] = ACTIONS(1543), + [anon_sym_signed] = ACTIONS(1533), + [anon_sym_unsigned] = ACTIONS(1533), + [anon_sym_long] = ACTIONS(1533), + [anon_sym_short] = ACTIONS(1533), + [sym_primitive_type] = ACTIONS(1535), + [anon_sym_enum] = ACTIONS(1537), + [anon_sym_class] = ACTIONS(1539), + [anon_sym_struct] = ACTIONS(1541), + [anon_sym_union] = ACTIONS(1543), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1545), + [anon_sym_decltype] = ACTIONS(1547), [anon_sym_virtual] = ACTIONS(109), [anon_sym_explicit] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1705), - [anon_sym_private] = ACTIONS(1705), - [anon_sym_protected] = ACTIONS(1705), - [anon_sym_typename] = ACTIONS(1547), - [anon_sym_template] = ACTIONS(1707), + [anon_sym_public] = ACTIONS(1789), + [anon_sym_private] = ACTIONS(1789), + [anon_sym_protected] = ACTIONS(1789), + [anon_sym_typename] = ACTIONS(1551), + [anon_sym_template] = ACTIONS(1791), [anon_sym_operator] = ACTIONS(117), - [anon_sym_friend] = ACTIONS(1709), - [anon_sym_using] = ACTIONS(1711), - [anon_sym_static_assert] = ACTIONS(1713), + [anon_sym_friend] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1795), + [anon_sym_static_assert] = ACTIONS(1797), }, - [141] = { - [sym_preproc_def] = STATE(140), - [sym_preproc_function_def] = STATE(140), - [sym_preproc_call] = STATE(140), - [sym_preproc_if_in_field_declaration_list] = STATE(140), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(140), - [sym_type_definition] = STATE(140), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(4155), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(2900), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4709), - [sym_array_declarator] = STATE(4825), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(3200), - [sym_sized_type_specifier] = STATE(3371), - [sym_enum_specifier] = STATE(3371), - [sym_struct_specifier] = STATE(3371), - [sym_union_specifier] = STATE(3371), - [sym__field_declaration_list_item] = STATE(140), - [sym_field_declaration] = STATE(140), - [sym_placeholder_type_specifier] = STATE(3371), - [sym_decltype_auto] = STATE(3366), - [sym_decltype] = STATE(3371), - [sym_class_specifier] = STATE(3371), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1777), - [sym_dependent_type] = STATE(3371), - [sym_template_declaration] = STATE(140), - [sym_operator_cast] = STATE(5177), - [sym_inline_method_definition] = STATE(140), - [sym__constructor_specifiers] = STATE(1777), - [sym_operator_cast_definition] = STATE(140), - [sym_operator_cast_declaration] = STATE(140), - [sym_constructor_or_destructor_definition] = STATE(140), - [sym_constructor_or_destructor_declaration] = STATE(140), - [sym_friend_declaration] = STATE(140), - [sym_access_specifier] = STATE(140), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(2976), - [sym_template_function] = STATE(4825), - [sym_using_declaration] = STATE(140), - [sym_alias_declaration] = STATE(140), - [sym_static_assert_declaration] = STATE(140), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4515), - [sym_qualified_identifier] = STATE(4825), - [sym_qualified_type_identifier] = STATE(3400), - [sym_qualified_operator_cast_identifier] = STATE(5177), - [sym_operator_name] = STATE(4825), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(140), - [aux_sym__declaration_specifiers_repeat1] = STATE(1896), - [aux_sym_sized_type_specifier_repeat1] = STATE(3286), - [aux_sym_operator_cast_definition_repeat1] = STATE(1777), - [sym_identifier] = ACTIONS(1499), - [aux_sym_preproc_def_token1] = ACTIONS(1693), - [aux_sym_preproc_if_token1] = ACTIONS(1695), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1697), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1697), - [sym_preproc_directive] = ACTIONS(1699), - [anon_sym_LPAREN2] = ACTIONS(1515), - [anon_sym_TILDE] = ACTIONS(1517), - [anon_sym_STAR] = ACTIONS(1519), + [144] = { + [sym_preproc_def] = STATE(146), + [sym_preproc_function_def] = STATE(146), + [sym_preproc_call] = STATE(146), + [sym_preproc_if_in_field_declaration_list] = STATE(146), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(146), + [sym_type_definition] = STATE(146), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4425), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(3343), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(4945), + [sym_array_declarator] = STATE(5080), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3521), + [sym_sized_type_specifier] = STATE(4001), + [sym_enum_specifier] = STATE(4001), + [sym_struct_specifier] = STATE(4001), + [sym_union_specifier] = STATE(4001), + [sym__field_declaration_list_item] = STATE(146), + [sym_field_declaration] = STATE(146), + [sym_placeholder_type_specifier] = STATE(4001), + [sym_decltype_auto] = STATE(4021), + [sym_decltype] = STATE(4001), + [sym_class_specifier] = STATE(4001), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1983), + [sym_dependent_type] = STATE(4001), + [sym_template_declaration] = STATE(146), + [sym_operator_cast] = STATE(5477), + [sym_inline_method_definition] = STATE(146), + [sym__constructor_specifiers] = STATE(1983), + [sym_operator_cast_definition] = STATE(146), + [sym_operator_cast_declaration] = STATE(146), + [sym_constructor_or_destructor_definition] = STATE(146), + [sym_constructor_or_destructor_declaration] = STATE(146), + [sym_friend_declaration] = STATE(146), + [sym_access_specifier] = STATE(146), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3395), + [sym_template_function] = STATE(5080), + [sym_using_declaration] = STATE(146), + [sym_alias_declaration] = STATE(146), + [sym_static_assert_declaration] = STATE(146), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4775), + [sym_qualified_identifier] = STATE(5080), + [sym_qualified_type_identifier] = STATE(4003), + [sym_qualified_operator_cast_identifier] = STATE(5477), + [sym_operator_name] = STATE(5080), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(146), + [aux_sym__declaration_specifiers_repeat1] = STATE(2191), + [aux_sym_sized_type_specifier_repeat1] = STATE(3805), + [aux_sym_operator_cast_definition_repeat1] = STATE(1983), + [sym_identifier] = ACTIONS(1503), + [aux_sym_preproc_def_token1] = ACTIONS(1777), + [aux_sym_preproc_if_token1] = ACTIONS(1779), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1781), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1781), + [sym_preproc_directive] = ACTIONS(1783), + [anon_sym_LPAREN2] = ACTIONS(1519), + [anon_sym_TILDE] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1523), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1521), - [anon_sym_typedef] = ACTIONS(1701), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_typedef] = ACTIONS(1785), [anon_sym_extern] = ACTIONS(55), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1525), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1389), + [anon_sym_COLON_COLON] = ACTIONS(1529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), [anon_sym___declspec] = ACTIONS(45), [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1527), + [anon_sym_RBRACE] = ACTIONS(1825), + [anon_sym_LBRACK] = ACTIONS(1531), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), @@ -50182,113 +52253,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_constexpr] = ACTIONS(57), [anon_sym_constinit] = ACTIONS(57), [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1529), - [anon_sym_unsigned] = ACTIONS(1529), - [anon_sym_long] = ACTIONS(1529), - [anon_sym_short] = ACTIONS(1529), - [sym_primitive_type] = ACTIONS(1531), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1535), - [anon_sym_struct] = ACTIONS(1537), - [anon_sym_union] = ACTIONS(1539), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1541), - [anon_sym_decltype] = ACTIONS(1543), + [anon_sym_signed] = ACTIONS(1533), + [anon_sym_unsigned] = ACTIONS(1533), + [anon_sym_long] = ACTIONS(1533), + [anon_sym_short] = ACTIONS(1533), + [sym_primitive_type] = ACTIONS(1535), + [anon_sym_enum] = ACTIONS(1537), + [anon_sym_class] = ACTIONS(1539), + [anon_sym_struct] = ACTIONS(1541), + [anon_sym_union] = ACTIONS(1543), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1545), + [anon_sym_decltype] = ACTIONS(1547), [anon_sym_virtual] = ACTIONS(109), [anon_sym_explicit] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1705), - [anon_sym_private] = ACTIONS(1705), - [anon_sym_protected] = ACTIONS(1705), - [anon_sym_typename] = ACTIONS(1547), - [anon_sym_template] = ACTIONS(1707), + [anon_sym_public] = ACTIONS(1789), + [anon_sym_private] = ACTIONS(1789), + [anon_sym_protected] = ACTIONS(1789), + [anon_sym_typename] = ACTIONS(1551), + [anon_sym_template] = ACTIONS(1791), [anon_sym_operator] = ACTIONS(117), - [anon_sym_friend] = ACTIONS(1709), - [anon_sym_using] = ACTIONS(1711), - [anon_sym_static_assert] = ACTIONS(1713), + [anon_sym_friend] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1795), + [anon_sym_static_assert] = ACTIONS(1797), }, - [142] = { - [sym_preproc_def] = STATE(144), - [sym_preproc_function_def] = STATE(144), - [sym_preproc_call] = STATE(144), - [sym_preproc_if_in_field_declaration_list] = STATE(144), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(144), - [sym_type_definition] = STATE(144), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(4155), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(2900), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4709), - [sym_array_declarator] = STATE(4825), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(3200), - [sym_sized_type_specifier] = STATE(3371), - [sym_enum_specifier] = STATE(3371), - [sym_struct_specifier] = STATE(3371), - [sym_union_specifier] = STATE(3371), - [sym__field_declaration_list_item] = STATE(144), - [sym_field_declaration] = STATE(144), - [sym_placeholder_type_specifier] = STATE(3371), - [sym_decltype_auto] = STATE(3366), - [sym_decltype] = STATE(3371), - [sym_class_specifier] = STATE(3371), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1777), - [sym_dependent_type] = STATE(3371), - [sym_template_declaration] = STATE(144), - [sym_operator_cast] = STATE(5177), - [sym_inline_method_definition] = STATE(144), - [sym__constructor_specifiers] = STATE(1777), - [sym_operator_cast_definition] = STATE(144), - [sym_operator_cast_declaration] = STATE(144), - [sym_constructor_or_destructor_definition] = STATE(144), - [sym_constructor_or_destructor_declaration] = STATE(144), - [sym_friend_declaration] = STATE(144), - [sym_access_specifier] = STATE(144), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(2976), - [sym_template_function] = STATE(4825), - [sym_using_declaration] = STATE(144), - [sym_alias_declaration] = STATE(144), - [sym_static_assert_declaration] = STATE(144), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4515), - [sym_qualified_identifier] = STATE(4825), - [sym_qualified_type_identifier] = STATE(3400), - [sym_qualified_operator_cast_identifier] = STATE(5177), - [sym_operator_name] = STATE(4825), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(144), - [aux_sym__declaration_specifiers_repeat1] = STATE(1896), - [aux_sym_sized_type_specifier_repeat1] = STATE(3286), - [aux_sym_operator_cast_definition_repeat1] = STATE(1777), - [sym_identifier] = ACTIONS(1499), - [aux_sym_preproc_def_token1] = ACTIONS(1693), - [aux_sym_preproc_if_token1] = ACTIONS(1695), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1697), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1697), - [sym_preproc_directive] = ACTIONS(1699), - [anon_sym_LPAREN2] = ACTIONS(1515), - [anon_sym_TILDE] = ACTIONS(1517), - [anon_sym_STAR] = ACTIONS(1519), + [145] = { + [sym_preproc_def] = STATE(147), + [sym_preproc_function_def] = STATE(147), + [sym_preproc_call] = STATE(147), + [sym_preproc_if_in_field_declaration_list] = STATE(147), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(147), + [sym_type_definition] = STATE(147), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4425), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(3343), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(4945), + [sym_array_declarator] = STATE(5080), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3521), + [sym_sized_type_specifier] = STATE(4001), + [sym_enum_specifier] = STATE(4001), + [sym_struct_specifier] = STATE(4001), + [sym_union_specifier] = STATE(4001), + [sym__field_declaration_list_item] = STATE(147), + [sym_field_declaration] = STATE(147), + [sym_placeholder_type_specifier] = STATE(4001), + [sym_decltype_auto] = STATE(4021), + [sym_decltype] = STATE(4001), + [sym_class_specifier] = STATE(4001), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1983), + [sym_dependent_type] = STATE(4001), + [sym_template_declaration] = STATE(147), + [sym_operator_cast] = STATE(5477), + [sym_inline_method_definition] = STATE(147), + [sym__constructor_specifiers] = STATE(1983), + [sym_operator_cast_definition] = STATE(147), + [sym_operator_cast_declaration] = STATE(147), + [sym_constructor_or_destructor_definition] = STATE(147), + [sym_constructor_or_destructor_declaration] = STATE(147), + [sym_friend_declaration] = STATE(147), + [sym_access_specifier] = STATE(147), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3395), + [sym_template_function] = STATE(5080), + [sym_using_declaration] = STATE(147), + [sym_alias_declaration] = STATE(147), + [sym_static_assert_declaration] = STATE(147), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4775), + [sym_qualified_identifier] = STATE(5080), + [sym_qualified_type_identifier] = STATE(4003), + [sym_qualified_operator_cast_identifier] = STATE(5477), + [sym_operator_name] = STATE(5080), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(147), + [aux_sym__declaration_specifiers_repeat1] = STATE(2191), + [aux_sym_sized_type_specifier_repeat1] = STATE(3805), + [aux_sym_operator_cast_definition_repeat1] = STATE(1983), + [sym_identifier] = ACTIONS(1503), + [aux_sym_preproc_def_token1] = ACTIONS(1777), + [aux_sym_preproc_if_token1] = ACTIONS(1779), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1781), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1781), + [sym_preproc_directive] = ACTIONS(1783), + [anon_sym_LPAREN2] = ACTIONS(1519), + [anon_sym_TILDE] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1523), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1521), - [anon_sym_typedef] = ACTIONS(1701), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_typedef] = ACTIONS(1785), [anon_sym_extern] = ACTIONS(55), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1525), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1389), + [anon_sym_COLON_COLON] = ACTIONS(1529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), [anon_sym___declspec] = ACTIONS(45), [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(1729), - [anon_sym_LBRACK] = ACTIONS(1527), + [anon_sym_RBRACE] = ACTIONS(1827), + [anon_sym_LBRACK] = ACTIONS(1531), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), @@ -50301,113 +52372,351 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_constexpr] = ACTIONS(57), [anon_sym_constinit] = ACTIONS(57), [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1529), - [anon_sym_unsigned] = ACTIONS(1529), - [anon_sym_long] = ACTIONS(1529), - [anon_sym_short] = ACTIONS(1529), - [sym_primitive_type] = ACTIONS(1531), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1535), - [anon_sym_struct] = ACTIONS(1537), - [anon_sym_union] = ACTIONS(1539), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1541), - [anon_sym_decltype] = ACTIONS(1543), + [anon_sym_signed] = ACTIONS(1533), + [anon_sym_unsigned] = ACTIONS(1533), + [anon_sym_long] = ACTIONS(1533), + [anon_sym_short] = ACTIONS(1533), + [sym_primitive_type] = ACTIONS(1535), + [anon_sym_enum] = ACTIONS(1537), + [anon_sym_class] = ACTIONS(1539), + [anon_sym_struct] = ACTIONS(1541), + [anon_sym_union] = ACTIONS(1543), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1545), + [anon_sym_decltype] = ACTIONS(1547), [anon_sym_virtual] = ACTIONS(109), [anon_sym_explicit] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1705), - [anon_sym_private] = ACTIONS(1705), - [anon_sym_protected] = ACTIONS(1705), - [anon_sym_typename] = ACTIONS(1547), - [anon_sym_template] = ACTIONS(1707), + [anon_sym_public] = ACTIONS(1789), + [anon_sym_private] = ACTIONS(1789), + [anon_sym_protected] = ACTIONS(1789), + [anon_sym_typename] = ACTIONS(1551), + [anon_sym_template] = ACTIONS(1791), [anon_sym_operator] = ACTIONS(117), - [anon_sym_friend] = ACTIONS(1709), - [anon_sym_using] = ACTIONS(1711), - [anon_sym_static_assert] = ACTIONS(1713), + [anon_sym_friend] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1795), + [anon_sym_static_assert] = ACTIONS(1797), }, - [143] = { + [146] = { + [sym_preproc_def] = STATE(147), + [sym_preproc_function_def] = STATE(147), + [sym_preproc_call] = STATE(147), + [sym_preproc_if_in_field_declaration_list] = STATE(147), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(147), + [sym_type_definition] = STATE(147), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4425), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(3343), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(4945), + [sym_array_declarator] = STATE(5080), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3521), + [sym_sized_type_specifier] = STATE(4001), + [sym_enum_specifier] = STATE(4001), + [sym_struct_specifier] = STATE(4001), + [sym_union_specifier] = STATE(4001), + [sym__field_declaration_list_item] = STATE(147), + [sym_field_declaration] = STATE(147), + [sym_placeholder_type_specifier] = STATE(4001), + [sym_decltype_auto] = STATE(4021), + [sym_decltype] = STATE(4001), + [sym_class_specifier] = STATE(4001), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1983), + [sym_dependent_type] = STATE(4001), + [sym_template_declaration] = STATE(147), + [sym_operator_cast] = STATE(5477), + [sym_inline_method_definition] = STATE(147), + [sym__constructor_specifiers] = STATE(1983), + [sym_operator_cast_definition] = STATE(147), + [sym_operator_cast_declaration] = STATE(147), + [sym_constructor_or_destructor_definition] = STATE(147), + [sym_constructor_or_destructor_declaration] = STATE(147), + [sym_friend_declaration] = STATE(147), + [sym_access_specifier] = STATE(147), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3395), + [sym_template_function] = STATE(5080), + [sym_using_declaration] = STATE(147), + [sym_alias_declaration] = STATE(147), + [sym_static_assert_declaration] = STATE(147), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4775), + [sym_qualified_identifier] = STATE(5080), + [sym_qualified_type_identifier] = STATE(4003), + [sym_qualified_operator_cast_identifier] = STATE(5477), + [sym_operator_name] = STATE(5080), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(147), + [aux_sym__declaration_specifiers_repeat1] = STATE(2191), + [aux_sym_sized_type_specifier_repeat1] = STATE(3805), + [aux_sym_operator_cast_definition_repeat1] = STATE(1983), + [sym_identifier] = ACTIONS(1503), + [aux_sym_preproc_def_token1] = ACTIONS(1777), + [aux_sym_preproc_if_token1] = ACTIONS(1779), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1781), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1781), + [sym_preproc_directive] = ACTIONS(1783), + [anon_sym_LPAREN2] = ACTIONS(1519), + [anon_sym_TILDE] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1523), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_typedef] = ACTIONS(1785), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(1529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_RBRACE] = ACTIONS(1829), + [anon_sym_LBRACK] = ACTIONS(1531), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1533), + [anon_sym_unsigned] = ACTIONS(1533), + [anon_sym_long] = ACTIONS(1533), + [anon_sym_short] = ACTIONS(1533), + [sym_primitive_type] = ACTIONS(1535), + [anon_sym_enum] = ACTIONS(1537), + [anon_sym_class] = ACTIONS(1539), + [anon_sym_struct] = ACTIONS(1541), + [anon_sym_union] = ACTIONS(1543), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1545), + [anon_sym_decltype] = ACTIONS(1547), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_public] = ACTIONS(1789), + [anon_sym_private] = ACTIONS(1789), + [anon_sym_protected] = ACTIONS(1789), + [anon_sym_typename] = ACTIONS(1551), + [anon_sym_template] = ACTIONS(1791), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_friend] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1795), + [anon_sym_static_assert] = ACTIONS(1797), + }, + [147] = { + [sym_preproc_def] = STATE(147), + [sym_preproc_function_def] = STATE(147), + [sym_preproc_call] = STATE(147), + [sym_preproc_if_in_field_declaration_list] = STATE(147), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(147), + [sym_type_definition] = STATE(147), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4425), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(3343), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(4945), + [sym_array_declarator] = STATE(5080), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3521), + [sym_sized_type_specifier] = STATE(4001), + [sym_enum_specifier] = STATE(4001), + [sym_struct_specifier] = STATE(4001), + [sym_union_specifier] = STATE(4001), + [sym__field_declaration_list_item] = STATE(147), + [sym_field_declaration] = STATE(147), + [sym_placeholder_type_specifier] = STATE(4001), + [sym_decltype_auto] = STATE(4021), + [sym_decltype] = STATE(4001), + [sym_class_specifier] = STATE(4001), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1983), + [sym_dependent_type] = STATE(4001), + [sym_template_declaration] = STATE(147), + [sym_operator_cast] = STATE(5477), + [sym_inline_method_definition] = STATE(147), + [sym__constructor_specifiers] = STATE(1983), + [sym_operator_cast_definition] = STATE(147), + [sym_operator_cast_declaration] = STATE(147), + [sym_constructor_or_destructor_definition] = STATE(147), + [sym_constructor_or_destructor_declaration] = STATE(147), + [sym_friend_declaration] = STATE(147), + [sym_access_specifier] = STATE(147), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3395), + [sym_template_function] = STATE(5080), + [sym_using_declaration] = STATE(147), + [sym_alias_declaration] = STATE(147), + [sym_static_assert_declaration] = STATE(147), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4775), + [sym_qualified_identifier] = STATE(5080), + [sym_qualified_type_identifier] = STATE(4003), + [sym_qualified_operator_cast_identifier] = STATE(5477), + [sym_operator_name] = STATE(5080), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(147), + [aux_sym__declaration_specifiers_repeat1] = STATE(2191), + [aux_sym_sized_type_specifier_repeat1] = STATE(3805), + [aux_sym_operator_cast_definition_repeat1] = STATE(1983), + [sym_identifier] = ACTIONS(1587), + [aux_sym_preproc_def_token1] = ACTIONS(1831), + [aux_sym_preproc_if_token1] = ACTIONS(1834), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1837), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1837), + [sym_preproc_directive] = ACTIONS(1840), + [anon_sym_LPAREN2] = ACTIONS(1604), + [anon_sym_TILDE] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1610), + [anon_sym_AMP_AMP] = ACTIONS(1613), + [anon_sym_AMP] = ACTIONS(1616), + [anon_sym_typedef] = ACTIONS(1843), + [anon_sym_extern] = ACTIONS(1622), + [anon_sym___attribute__] = ACTIONS(1625), + [anon_sym_COLON_COLON] = ACTIONS(1628), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1631), + [anon_sym___declspec] = ACTIONS(1634), + [anon_sym___based] = ACTIONS(1637), + [anon_sym_RBRACE] = ACTIONS(1846), + [anon_sym_LBRACK] = ACTIONS(1640), + [anon_sym_static] = ACTIONS(1622), + [anon_sym_register] = ACTIONS(1622), + [anon_sym_inline] = ACTIONS(1622), + [anon_sym_thread_local] = ACTIONS(1622), + [anon_sym_const] = ACTIONS(1643), + [anon_sym_volatile] = ACTIONS(1643), + [anon_sym_restrict] = ACTIONS(1643), + [anon_sym__Atomic] = ACTIONS(1643), + [anon_sym_mutable] = ACTIONS(1643), + [anon_sym_constexpr] = ACTIONS(1643), + [anon_sym_constinit] = ACTIONS(1643), + [anon_sym_consteval] = ACTIONS(1643), + [anon_sym_signed] = ACTIONS(1646), + [anon_sym_unsigned] = ACTIONS(1646), + [anon_sym_long] = ACTIONS(1646), + [anon_sym_short] = ACTIONS(1646), + [sym_primitive_type] = ACTIONS(1649), + [anon_sym_enum] = ACTIONS(1652), + [anon_sym_class] = ACTIONS(1655), + [anon_sym_struct] = ACTIONS(1658), + [anon_sym_union] = ACTIONS(1661), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1664), + [anon_sym_decltype] = ACTIONS(1667), + [anon_sym_virtual] = ACTIONS(1670), + [anon_sym_explicit] = ACTIONS(1673), + [anon_sym_public] = ACTIONS(1848), + [anon_sym_private] = ACTIONS(1848), + [anon_sym_protected] = ACTIONS(1848), + [anon_sym_typename] = ACTIONS(1679), + [anon_sym_template] = ACTIONS(1851), + [anon_sym_operator] = ACTIONS(1685), + [anon_sym_friend] = ACTIONS(1854), + [anon_sym_using] = ACTIONS(1857), + [anon_sym_static_assert] = ACTIONS(1860), + }, + [148] = { [sym_preproc_def] = STATE(145), [sym_preproc_function_def] = STATE(145), [sym_preproc_call] = STATE(145), [sym_preproc_if_in_field_declaration_list] = STATE(145), [sym_preproc_ifdef_in_field_declaration_list] = STATE(145), [sym_type_definition] = STATE(145), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(4155), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(2900), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4709), - [sym_array_declarator] = STATE(4825), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(3200), - [sym_sized_type_specifier] = STATE(3371), - [sym_enum_specifier] = STATE(3371), - [sym_struct_specifier] = STATE(3371), - [sym_union_specifier] = STATE(3371), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4425), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(3343), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(4945), + [sym_array_declarator] = STATE(5080), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3521), + [sym_sized_type_specifier] = STATE(4001), + [sym_enum_specifier] = STATE(4001), + [sym_struct_specifier] = STATE(4001), + [sym_union_specifier] = STATE(4001), [sym__field_declaration_list_item] = STATE(145), [sym_field_declaration] = STATE(145), - [sym_placeholder_type_specifier] = STATE(3371), - [sym_decltype_auto] = STATE(3366), - [sym_decltype] = STATE(3371), - [sym_class_specifier] = STATE(3371), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1777), - [sym_dependent_type] = STATE(3371), + [sym_placeholder_type_specifier] = STATE(4001), + [sym_decltype_auto] = STATE(4021), + [sym_decltype] = STATE(4001), + [sym_class_specifier] = STATE(4001), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1983), + [sym_dependent_type] = STATE(4001), [sym_template_declaration] = STATE(145), - [sym_operator_cast] = STATE(5177), + [sym_operator_cast] = STATE(5477), [sym_inline_method_definition] = STATE(145), - [sym__constructor_specifiers] = STATE(1777), + [sym__constructor_specifiers] = STATE(1983), [sym_operator_cast_definition] = STATE(145), [sym_operator_cast_declaration] = STATE(145), [sym_constructor_or_destructor_definition] = STATE(145), [sym_constructor_or_destructor_declaration] = STATE(145), [sym_friend_declaration] = STATE(145), [sym_access_specifier] = STATE(145), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(2976), - [sym_template_function] = STATE(4825), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3395), + [sym_template_function] = STATE(5080), [sym_using_declaration] = STATE(145), [sym_alias_declaration] = STATE(145), [sym_static_assert_declaration] = STATE(145), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4515), - [sym_qualified_identifier] = STATE(4825), - [sym_qualified_type_identifier] = STATE(3400), - [sym_qualified_operator_cast_identifier] = STATE(5177), - [sym_operator_name] = STATE(4825), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4775), + [sym_qualified_identifier] = STATE(5080), + [sym_qualified_type_identifier] = STATE(4003), + [sym_qualified_operator_cast_identifier] = STATE(5477), + [sym_operator_name] = STATE(5080), [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(145), - [aux_sym__declaration_specifiers_repeat1] = STATE(1896), - [aux_sym_sized_type_specifier_repeat1] = STATE(3286), - [aux_sym_operator_cast_definition_repeat1] = STATE(1777), - [sym_identifier] = ACTIONS(1499), - [aux_sym_preproc_def_token1] = ACTIONS(1693), - [aux_sym_preproc_if_token1] = ACTIONS(1695), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1697), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1697), - [sym_preproc_directive] = ACTIONS(1699), - [anon_sym_LPAREN2] = ACTIONS(1515), - [anon_sym_TILDE] = ACTIONS(1517), - [anon_sym_STAR] = ACTIONS(1519), + [aux_sym__declaration_specifiers_repeat1] = STATE(2191), + [aux_sym_sized_type_specifier_repeat1] = STATE(3805), + [aux_sym_operator_cast_definition_repeat1] = STATE(1983), + [sym_identifier] = ACTIONS(1503), + [aux_sym_preproc_def_token1] = ACTIONS(1777), + [aux_sym_preproc_if_token1] = ACTIONS(1779), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1781), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1781), + [sym_preproc_directive] = ACTIONS(1783), + [anon_sym_LPAREN2] = ACTIONS(1519), + [anon_sym_TILDE] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1523), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1521), - [anon_sym_typedef] = ACTIONS(1701), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_typedef] = ACTIONS(1785), [anon_sym_extern] = ACTIONS(55), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1525), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1389), + [anon_sym_COLON_COLON] = ACTIONS(1529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), [anon_sym___declspec] = ACTIONS(45), [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(1731), - [anon_sym_LBRACK] = ACTIONS(1527), + [anon_sym_RBRACE] = ACTIONS(1863), + [anon_sym_LBRACK] = ACTIONS(1531), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), @@ -50420,232 +52729,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_constexpr] = ACTIONS(57), [anon_sym_constinit] = ACTIONS(57), [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1529), - [anon_sym_unsigned] = ACTIONS(1529), - [anon_sym_long] = ACTIONS(1529), - [anon_sym_short] = ACTIONS(1529), - [sym_primitive_type] = ACTIONS(1531), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1535), - [anon_sym_struct] = ACTIONS(1537), - [anon_sym_union] = ACTIONS(1539), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1541), - [anon_sym_decltype] = ACTIONS(1543), + [anon_sym_signed] = ACTIONS(1533), + [anon_sym_unsigned] = ACTIONS(1533), + [anon_sym_long] = ACTIONS(1533), + [anon_sym_short] = ACTIONS(1533), + [sym_primitive_type] = ACTIONS(1535), + [anon_sym_enum] = ACTIONS(1537), + [anon_sym_class] = ACTIONS(1539), + [anon_sym_struct] = ACTIONS(1541), + [anon_sym_union] = ACTIONS(1543), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1545), + [anon_sym_decltype] = ACTIONS(1547), [anon_sym_virtual] = ACTIONS(109), [anon_sym_explicit] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1705), - [anon_sym_private] = ACTIONS(1705), - [anon_sym_protected] = ACTIONS(1705), - [anon_sym_typename] = ACTIONS(1547), - [anon_sym_template] = ACTIONS(1707), + [anon_sym_public] = ACTIONS(1789), + [anon_sym_private] = ACTIONS(1789), + [anon_sym_protected] = ACTIONS(1789), + [anon_sym_typename] = ACTIONS(1551), + [anon_sym_template] = ACTIONS(1791), [anon_sym_operator] = ACTIONS(117), - [anon_sym_friend] = ACTIONS(1709), - [anon_sym_using] = ACTIONS(1711), - [anon_sym_static_assert] = ACTIONS(1713), + [anon_sym_friend] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1795), + [anon_sym_static_assert] = ACTIONS(1797), }, - [144] = { - [sym_preproc_def] = STATE(144), - [sym_preproc_function_def] = STATE(144), - [sym_preproc_call] = STATE(144), - [sym_preproc_if_in_field_declaration_list] = STATE(144), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(144), - [sym_type_definition] = STATE(144), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(4155), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(2900), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4709), - [sym_array_declarator] = STATE(4825), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(3200), - [sym_sized_type_specifier] = STATE(3371), - [sym_enum_specifier] = STATE(3371), - [sym_struct_specifier] = STATE(3371), - [sym_union_specifier] = STATE(3371), - [sym__field_declaration_list_item] = STATE(144), - [sym_field_declaration] = STATE(144), - [sym_placeholder_type_specifier] = STATE(3371), - [sym_decltype_auto] = STATE(3366), - [sym_decltype] = STATE(3371), - [sym_class_specifier] = STATE(3371), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1777), - [sym_dependent_type] = STATE(3371), - [sym_template_declaration] = STATE(144), - [sym_operator_cast] = STATE(5177), - [sym_inline_method_definition] = STATE(144), - [sym__constructor_specifiers] = STATE(1777), - [sym_operator_cast_definition] = STATE(144), - [sym_operator_cast_declaration] = STATE(144), - [sym_constructor_or_destructor_definition] = STATE(144), - [sym_constructor_or_destructor_declaration] = STATE(144), - [sym_friend_declaration] = STATE(144), - [sym_access_specifier] = STATE(144), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(2976), - [sym_template_function] = STATE(4825), - [sym_using_declaration] = STATE(144), - [sym_alias_declaration] = STATE(144), - [sym_static_assert_declaration] = STATE(144), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4515), - [sym_qualified_identifier] = STATE(4825), - [sym_qualified_type_identifier] = STATE(3400), - [sym_qualified_operator_cast_identifier] = STATE(5177), - [sym_operator_name] = STATE(4825), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(144), - [aux_sym__declaration_specifiers_repeat1] = STATE(1896), - [aux_sym_sized_type_specifier_repeat1] = STATE(3286), - [aux_sym_operator_cast_definition_repeat1] = STATE(1777), - [sym_identifier] = ACTIONS(1583), - [aux_sym_preproc_def_token1] = ACTIONS(1733), - [aux_sym_preproc_if_token1] = ACTIONS(1736), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1739), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1739), - [sym_preproc_directive] = ACTIONS(1742), - [anon_sym_LPAREN2] = ACTIONS(1600), - [anon_sym_TILDE] = ACTIONS(1603), - [anon_sym_STAR] = ACTIONS(1606), - [anon_sym_AMP_AMP] = ACTIONS(1609), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_typedef] = ACTIONS(1745), - [anon_sym_extern] = ACTIONS(1618), - [anon_sym___attribute__] = ACTIONS(1621), - [anon_sym_COLON_COLON] = ACTIONS(1624), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1627), - [anon_sym___declspec] = ACTIONS(1630), - [anon_sym___based] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(1748), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_static] = ACTIONS(1618), - [anon_sym_register] = ACTIONS(1618), - [anon_sym_inline] = ACTIONS(1618), - [anon_sym_thread_local] = ACTIONS(1618), - [anon_sym_const] = ACTIONS(1639), - [anon_sym_volatile] = ACTIONS(1639), - [anon_sym_restrict] = ACTIONS(1639), - [anon_sym__Atomic] = ACTIONS(1639), - [anon_sym_mutable] = ACTIONS(1639), - [anon_sym_constexpr] = ACTIONS(1639), - [anon_sym_constinit] = ACTIONS(1639), - [anon_sym_consteval] = ACTIONS(1639), - [anon_sym_signed] = ACTIONS(1642), - [anon_sym_unsigned] = ACTIONS(1642), - [anon_sym_long] = ACTIONS(1642), - [anon_sym_short] = ACTIONS(1642), - [sym_primitive_type] = ACTIONS(1645), - [anon_sym_enum] = ACTIONS(1648), - [anon_sym_class] = ACTIONS(1651), - [anon_sym_struct] = ACTIONS(1654), - [anon_sym_union] = ACTIONS(1657), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1660), - [anon_sym_decltype] = ACTIONS(1663), - [anon_sym_virtual] = ACTIONS(1666), - [anon_sym_explicit] = ACTIONS(1669), - [anon_sym_public] = ACTIONS(1750), - [anon_sym_private] = ACTIONS(1750), - [anon_sym_protected] = ACTIONS(1750), - [anon_sym_typename] = ACTIONS(1675), - [anon_sym_template] = ACTIONS(1753), - [anon_sym_operator] = ACTIONS(1681), - [anon_sym_friend] = ACTIONS(1756), - [anon_sym_using] = ACTIONS(1759), - [anon_sym_static_assert] = ACTIONS(1762), - }, - [145] = { - [sym_preproc_def] = STATE(144), - [sym_preproc_function_def] = STATE(144), - [sym_preproc_call] = STATE(144), - [sym_preproc_if_in_field_declaration_list] = STATE(144), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(144), - [sym_type_definition] = STATE(144), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(4155), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(2900), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4709), - [sym_array_declarator] = STATE(4825), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(3200), - [sym_sized_type_specifier] = STATE(3371), - [sym_enum_specifier] = STATE(3371), - [sym_struct_specifier] = STATE(3371), - [sym_union_specifier] = STATE(3371), - [sym__field_declaration_list_item] = STATE(144), - [sym_field_declaration] = STATE(144), - [sym_placeholder_type_specifier] = STATE(3371), - [sym_decltype_auto] = STATE(3366), - [sym_decltype] = STATE(3371), - [sym_class_specifier] = STATE(3371), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1777), - [sym_dependent_type] = STATE(3371), - [sym_template_declaration] = STATE(144), - [sym_operator_cast] = STATE(5177), - [sym_inline_method_definition] = STATE(144), - [sym__constructor_specifiers] = STATE(1777), - [sym_operator_cast_definition] = STATE(144), - [sym_operator_cast_declaration] = STATE(144), - [sym_constructor_or_destructor_definition] = STATE(144), - [sym_constructor_or_destructor_declaration] = STATE(144), - [sym_friend_declaration] = STATE(144), - [sym_access_specifier] = STATE(144), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(2976), - [sym_template_function] = STATE(4825), - [sym_using_declaration] = STATE(144), - [sym_alias_declaration] = STATE(144), - [sym_static_assert_declaration] = STATE(144), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4515), - [sym_qualified_identifier] = STATE(4825), - [sym_qualified_type_identifier] = STATE(3400), - [sym_qualified_operator_cast_identifier] = STATE(5177), - [sym_operator_name] = STATE(4825), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(144), - [aux_sym__declaration_specifiers_repeat1] = STATE(1896), - [aux_sym_sized_type_specifier_repeat1] = STATE(3286), - [aux_sym_operator_cast_definition_repeat1] = STATE(1777), - [sym_identifier] = ACTIONS(1499), - [aux_sym_preproc_def_token1] = ACTIONS(1693), - [aux_sym_preproc_if_token1] = ACTIONS(1695), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1697), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1697), - [sym_preproc_directive] = ACTIONS(1699), - [anon_sym_LPAREN2] = ACTIONS(1515), - [anon_sym_TILDE] = ACTIONS(1517), - [anon_sym_STAR] = ACTIONS(1519), + [149] = { + [sym_preproc_def] = STATE(155), + [sym_preproc_function_def] = STATE(155), + [sym_preproc_call] = STATE(155), + [sym_preproc_if_in_field_declaration_list] = STATE(155), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(155), + [sym_type_definition] = STATE(155), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4425), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(3343), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(4945), + [sym_array_declarator] = STATE(5080), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3521), + [sym_sized_type_specifier] = STATE(4001), + [sym_enum_specifier] = STATE(4001), + [sym_struct_specifier] = STATE(4001), + [sym_union_specifier] = STATE(4001), + [sym__field_declaration_list_item] = STATE(155), + [sym_field_declaration] = STATE(155), + [sym_placeholder_type_specifier] = STATE(4001), + [sym_decltype_auto] = STATE(4021), + [sym_decltype] = STATE(4001), + [sym_class_specifier] = STATE(4001), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1983), + [sym_dependent_type] = STATE(4001), + [sym_template_declaration] = STATE(155), + [sym_operator_cast] = STATE(5477), + [sym_inline_method_definition] = STATE(155), + [sym__constructor_specifiers] = STATE(1983), + [sym_operator_cast_definition] = STATE(155), + [sym_operator_cast_declaration] = STATE(155), + [sym_constructor_or_destructor_definition] = STATE(155), + [sym_constructor_or_destructor_declaration] = STATE(155), + [sym_friend_declaration] = STATE(155), + [sym_access_specifier] = STATE(155), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3395), + [sym_template_function] = STATE(5080), + [sym_using_declaration] = STATE(155), + [sym_alias_declaration] = STATE(155), + [sym_static_assert_declaration] = STATE(155), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4775), + [sym_qualified_identifier] = STATE(5080), + [sym_qualified_type_identifier] = STATE(4003), + [sym_qualified_operator_cast_identifier] = STATE(5477), + [sym_operator_name] = STATE(5080), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(155), + [aux_sym__declaration_specifiers_repeat1] = STATE(2191), + [aux_sym_sized_type_specifier_repeat1] = STATE(3805), + [aux_sym_operator_cast_definition_repeat1] = STATE(1983), + [sym_identifier] = ACTIONS(1503), + [aux_sym_preproc_def_token1] = ACTIONS(1777), + [aux_sym_preproc_if_token1] = ACTIONS(1779), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1781), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1781), + [sym_preproc_directive] = ACTIONS(1783), + [anon_sym_LPAREN2] = ACTIONS(1519), + [anon_sym_TILDE] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1523), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1521), - [anon_sym_typedef] = ACTIONS(1701), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_typedef] = ACTIONS(1785), [anon_sym_extern] = ACTIONS(55), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1525), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1389), + [anon_sym_COLON_COLON] = ACTIONS(1529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), [anon_sym___declspec] = ACTIONS(45), [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(1765), - [anon_sym_LBRACK] = ACTIONS(1527), + [anon_sym_RBRACE] = ACTIONS(1865), + [anon_sym_LBRACK] = ACTIONS(1531), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), @@ -50658,113 +52848,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_constexpr] = ACTIONS(57), [anon_sym_constinit] = ACTIONS(57), [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1529), - [anon_sym_unsigned] = ACTIONS(1529), - [anon_sym_long] = ACTIONS(1529), - [anon_sym_short] = ACTIONS(1529), - [sym_primitive_type] = ACTIONS(1531), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1535), - [anon_sym_struct] = ACTIONS(1537), - [anon_sym_union] = ACTIONS(1539), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1541), - [anon_sym_decltype] = ACTIONS(1543), + [anon_sym_signed] = ACTIONS(1533), + [anon_sym_unsigned] = ACTIONS(1533), + [anon_sym_long] = ACTIONS(1533), + [anon_sym_short] = ACTIONS(1533), + [sym_primitive_type] = ACTIONS(1535), + [anon_sym_enum] = ACTIONS(1537), + [anon_sym_class] = ACTIONS(1539), + [anon_sym_struct] = ACTIONS(1541), + [anon_sym_union] = ACTIONS(1543), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1545), + [anon_sym_decltype] = ACTIONS(1547), [anon_sym_virtual] = ACTIONS(109), [anon_sym_explicit] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1705), - [anon_sym_private] = ACTIONS(1705), - [anon_sym_protected] = ACTIONS(1705), - [anon_sym_typename] = ACTIONS(1547), - [anon_sym_template] = ACTIONS(1707), + [anon_sym_public] = ACTIONS(1789), + [anon_sym_private] = ACTIONS(1789), + [anon_sym_protected] = ACTIONS(1789), + [anon_sym_typename] = ACTIONS(1551), + [anon_sym_template] = ACTIONS(1791), [anon_sym_operator] = ACTIONS(117), - [anon_sym_friend] = ACTIONS(1709), - [anon_sym_using] = ACTIONS(1711), - [anon_sym_static_assert] = ACTIONS(1713), + [anon_sym_friend] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1795), + [anon_sym_static_assert] = ACTIONS(1797), }, - [146] = { - [sym_preproc_def] = STATE(150), - [sym_preproc_function_def] = STATE(150), - [sym_preproc_call] = STATE(150), - [sym_preproc_if_in_field_declaration_list] = STATE(150), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(150), - [sym_type_definition] = STATE(150), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(4164), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(2900), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4683), - [sym_array_declarator] = STATE(4825), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(3200), - [sym_sized_type_specifier] = STATE(3371), - [sym_enum_specifier] = STATE(3371), - [sym_struct_specifier] = STATE(3371), - [sym_union_specifier] = STATE(3371), - [sym__field_declaration_list_item] = STATE(150), - [sym_field_declaration] = STATE(150), - [sym_placeholder_type_specifier] = STATE(3371), - [sym_decltype_auto] = STATE(3366), - [sym_decltype] = STATE(3371), - [sym_class_specifier] = STATE(3371), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1764), - [sym_dependent_type] = STATE(3371), - [sym_template_declaration] = STATE(150), - [sym_operator_cast] = STATE(5215), - [sym_inline_method_definition] = STATE(150), - [sym__constructor_specifiers] = STATE(1764), - [sym_operator_cast_definition] = STATE(150), - [sym_operator_cast_declaration] = STATE(150), - [sym_constructor_or_destructor_definition] = STATE(150), - [sym_constructor_or_destructor_declaration] = STATE(150), - [sym_friend_declaration] = STATE(150), - [sym_access_specifier] = STATE(150), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(2976), - [sym_template_function] = STATE(4825), - [sym_using_declaration] = STATE(150), - [sym_alias_declaration] = STATE(150), - [sym_static_assert_declaration] = STATE(150), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4515), - [sym_qualified_identifier] = STATE(4825), - [sym_qualified_type_identifier] = STATE(3400), - [sym_qualified_operator_cast_identifier] = STATE(5215), - [sym_operator_name] = STATE(4825), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(150), - [aux_sym__declaration_specifiers_repeat1] = STATE(1896), - [aux_sym_sized_type_specifier_repeat1] = STATE(3286), - [aux_sym_operator_cast_definition_repeat1] = STATE(1764), - [sym_identifier] = ACTIONS(1499), - [aux_sym_preproc_def_token1] = ACTIONS(1767), - [aux_sym_preproc_if_token1] = ACTIONS(1769), - [aux_sym_preproc_if_token2] = ACTIONS(1771), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1773), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1773), - [sym_preproc_directive] = ACTIONS(1775), - [anon_sym_LPAREN2] = ACTIONS(1515), - [anon_sym_TILDE] = ACTIONS(1517), - [anon_sym_STAR] = ACTIONS(1519), + [150] = { + [sym_preproc_def] = STATE(143), + [sym_preproc_function_def] = STATE(143), + [sym_preproc_call] = STATE(143), + [sym_preproc_if_in_field_declaration_list] = STATE(143), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(143), + [sym_type_definition] = STATE(143), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4425), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(3343), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(4945), + [sym_array_declarator] = STATE(5080), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3521), + [sym_sized_type_specifier] = STATE(4001), + [sym_enum_specifier] = STATE(4001), + [sym_struct_specifier] = STATE(4001), + [sym_union_specifier] = STATE(4001), + [sym__field_declaration_list_item] = STATE(143), + [sym_field_declaration] = STATE(143), + [sym_placeholder_type_specifier] = STATE(4001), + [sym_decltype_auto] = STATE(4021), + [sym_decltype] = STATE(4001), + [sym_class_specifier] = STATE(4001), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1983), + [sym_dependent_type] = STATE(4001), + [sym_template_declaration] = STATE(143), + [sym_operator_cast] = STATE(5477), + [sym_inline_method_definition] = STATE(143), + [sym__constructor_specifiers] = STATE(1983), + [sym_operator_cast_definition] = STATE(143), + [sym_operator_cast_declaration] = STATE(143), + [sym_constructor_or_destructor_definition] = STATE(143), + [sym_constructor_or_destructor_declaration] = STATE(143), + [sym_friend_declaration] = STATE(143), + [sym_access_specifier] = STATE(143), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3395), + [sym_template_function] = STATE(5080), + [sym_using_declaration] = STATE(143), + [sym_alias_declaration] = STATE(143), + [sym_static_assert_declaration] = STATE(143), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4775), + [sym_qualified_identifier] = STATE(5080), + [sym_qualified_type_identifier] = STATE(4003), + [sym_qualified_operator_cast_identifier] = STATE(5477), + [sym_operator_name] = STATE(5080), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(143), + [aux_sym__declaration_specifiers_repeat1] = STATE(2191), + [aux_sym_sized_type_specifier_repeat1] = STATE(3805), + [aux_sym_operator_cast_definition_repeat1] = STATE(1983), + [sym_identifier] = ACTIONS(1503), + [aux_sym_preproc_def_token1] = ACTIONS(1777), + [aux_sym_preproc_if_token1] = ACTIONS(1779), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1781), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1781), + [sym_preproc_directive] = ACTIONS(1783), + [anon_sym_LPAREN2] = ACTIONS(1519), + [anon_sym_TILDE] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1523), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1521), - [anon_sym_typedef] = ACTIONS(1777), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_typedef] = ACTIONS(1785), [anon_sym_extern] = ACTIONS(55), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1525), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1389), + [anon_sym_COLON_COLON] = ACTIONS(1529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), [anon_sym___declspec] = ACTIONS(45), [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1527), + [anon_sym_RBRACE] = ACTIONS(1867), + [anon_sym_LBRACK] = ACTIONS(1531), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), @@ -50777,113 +52967,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_constexpr] = ACTIONS(57), [anon_sym_constinit] = ACTIONS(57), [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1529), - [anon_sym_unsigned] = ACTIONS(1529), - [anon_sym_long] = ACTIONS(1529), - [anon_sym_short] = ACTIONS(1529), - [sym_primitive_type] = ACTIONS(1531), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1535), - [anon_sym_struct] = ACTIONS(1537), - [anon_sym_union] = ACTIONS(1539), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1541), - [anon_sym_decltype] = ACTIONS(1543), + [anon_sym_signed] = ACTIONS(1533), + [anon_sym_unsigned] = ACTIONS(1533), + [anon_sym_long] = ACTIONS(1533), + [anon_sym_short] = ACTIONS(1533), + [sym_primitive_type] = ACTIONS(1535), + [anon_sym_enum] = ACTIONS(1537), + [anon_sym_class] = ACTIONS(1539), + [anon_sym_struct] = ACTIONS(1541), + [anon_sym_union] = ACTIONS(1543), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1545), + [anon_sym_decltype] = ACTIONS(1547), [anon_sym_virtual] = ACTIONS(109), [anon_sym_explicit] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1779), - [anon_sym_private] = ACTIONS(1779), - [anon_sym_protected] = ACTIONS(1779), - [anon_sym_typename] = ACTIONS(1547), - [anon_sym_template] = ACTIONS(1781), + [anon_sym_public] = ACTIONS(1789), + [anon_sym_private] = ACTIONS(1789), + [anon_sym_protected] = ACTIONS(1789), + [anon_sym_typename] = ACTIONS(1551), + [anon_sym_template] = ACTIONS(1791), [anon_sym_operator] = ACTIONS(117), - [anon_sym_friend] = ACTIONS(1783), - [anon_sym_using] = ACTIONS(1785), - [anon_sym_static_assert] = ACTIONS(1787), + [anon_sym_friend] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1795), + [anon_sym_static_assert] = ACTIONS(1797), }, - [147] = { - [sym_preproc_def] = STATE(148), - [sym_preproc_function_def] = STATE(148), - [sym_preproc_call] = STATE(148), - [sym_preproc_if_in_field_declaration_list] = STATE(148), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(148), - [sym_type_definition] = STATE(148), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(4155), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(2900), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4709), - [sym_array_declarator] = STATE(4825), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(3200), - [sym_sized_type_specifier] = STATE(3371), - [sym_enum_specifier] = STATE(3371), - [sym_struct_specifier] = STATE(3371), - [sym_union_specifier] = STATE(3371), - [sym__field_declaration_list_item] = STATE(148), - [sym_field_declaration] = STATE(148), - [sym_placeholder_type_specifier] = STATE(3371), - [sym_decltype_auto] = STATE(3366), - [sym_decltype] = STATE(3371), - [sym_class_specifier] = STATE(3371), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1777), - [sym_dependent_type] = STATE(3371), - [sym_template_declaration] = STATE(148), - [sym_operator_cast] = STATE(5177), - [sym_inline_method_definition] = STATE(148), - [sym__constructor_specifiers] = STATE(1777), - [sym_operator_cast_definition] = STATE(148), - [sym_operator_cast_declaration] = STATE(148), - [sym_constructor_or_destructor_definition] = STATE(148), - [sym_constructor_or_destructor_declaration] = STATE(148), - [sym_friend_declaration] = STATE(148), - [sym_access_specifier] = STATE(148), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(2976), - [sym_template_function] = STATE(4825), - [sym_using_declaration] = STATE(148), - [sym_alias_declaration] = STATE(148), - [sym_static_assert_declaration] = STATE(148), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4515), - [sym_qualified_identifier] = STATE(4825), - [sym_qualified_type_identifier] = STATE(3400), - [sym_qualified_operator_cast_identifier] = STATE(5177), - [sym_operator_name] = STATE(4825), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(148), - [aux_sym__declaration_specifiers_repeat1] = STATE(1896), - [aux_sym_sized_type_specifier_repeat1] = STATE(3286), - [aux_sym_operator_cast_definition_repeat1] = STATE(1777), - [sym_identifier] = ACTIONS(1499), - [aux_sym_preproc_def_token1] = ACTIONS(1693), - [aux_sym_preproc_if_token1] = ACTIONS(1695), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1697), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1697), - [sym_preproc_directive] = ACTIONS(1699), - [anon_sym_LPAREN2] = ACTIONS(1515), - [anon_sym_TILDE] = ACTIONS(1517), - [anon_sym_STAR] = ACTIONS(1519), + [151] = { + [sym_preproc_def] = STATE(140), + [sym_preproc_function_def] = STATE(140), + [sym_preproc_call] = STATE(140), + [sym_preproc_if_in_field_declaration_list] = STATE(140), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(140), + [sym_type_definition] = STATE(140), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4425), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(3343), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(4945), + [sym_array_declarator] = STATE(5080), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3521), + [sym_sized_type_specifier] = STATE(4001), + [sym_enum_specifier] = STATE(4001), + [sym_struct_specifier] = STATE(4001), + [sym_union_specifier] = STATE(4001), + [sym__field_declaration_list_item] = STATE(140), + [sym_field_declaration] = STATE(140), + [sym_placeholder_type_specifier] = STATE(4001), + [sym_decltype_auto] = STATE(4021), + [sym_decltype] = STATE(4001), + [sym_class_specifier] = STATE(4001), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1983), + [sym_dependent_type] = STATE(4001), + [sym_template_declaration] = STATE(140), + [sym_operator_cast] = STATE(5477), + [sym_inline_method_definition] = STATE(140), + [sym__constructor_specifiers] = STATE(1983), + [sym_operator_cast_definition] = STATE(140), + [sym_operator_cast_declaration] = STATE(140), + [sym_constructor_or_destructor_definition] = STATE(140), + [sym_constructor_or_destructor_declaration] = STATE(140), + [sym_friend_declaration] = STATE(140), + [sym_access_specifier] = STATE(140), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3395), + [sym_template_function] = STATE(5080), + [sym_using_declaration] = STATE(140), + [sym_alias_declaration] = STATE(140), + [sym_static_assert_declaration] = STATE(140), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4775), + [sym_qualified_identifier] = STATE(5080), + [sym_qualified_type_identifier] = STATE(4003), + [sym_qualified_operator_cast_identifier] = STATE(5477), + [sym_operator_name] = STATE(5080), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(140), + [aux_sym__declaration_specifiers_repeat1] = STATE(2191), + [aux_sym_sized_type_specifier_repeat1] = STATE(3805), + [aux_sym_operator_cast_definition_repeat1] = STATE(1983), + [sym_identifier] = ACTIONS(1503), + [aux_sym_preproc_def_token1] = ACTIONS(1777), + [aux_sym_preproc_if_token1] = ACTIONS(1779), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1781), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1781), + [sym_preproc_directive] = ACTIONS(1783), + [anon_sym_LPAREN2] = ACTIONS(1519), + [anon_sym_TILDE] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1523), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1521), - [anon_sym_typedef] = ACTIONS(1701), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_typedef] = ACTIONS(1785), [anon_sym_extern] = ACTIONS(55), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1525), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1389), + [anon_sym_COLON_COLON] = ACTIONS(1529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), [anon_sym___declspec] = ACTIONS(45), [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(1789), - [anon_sym_LBRACK] = ACTIONS(1527), + [anon_sym_RBRACE] = ACTIONS(1869), + [anon_sym_LBRACK] = ACTIONS(1531), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), @@ -50896,113 +53086,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_constexpr] = ACTIONS(57), [anon_sym_constinit] = ACTIONS(57), [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1529), - [anon_sym_unsigned] = ACTIONS(1529), - [anon_sym_long] = ACTIONS(1529), - [anon_sym_short] = ACTIONS(1529), - [sym_primitive_type] = ACTIONS(1531), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1535), - [anon_sym_struct] = ACTIONS(1537), - [anon_sym_union] = ACTIONS(1539), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1541), - [anon_sym_decltype] = ACTIONS(1543), + [anon_sym_signed] = ACTIONS(1533), + [anon_sym_unsigned] = ACTIONS(1533), + [anon_sym_long] = ACTIONS(1533), + [anon_sym_short] = ACTIONS(1533), + [sym_primitive_type] = ACTIONS(1535), + [anon_sym_enum] = ACTIONS(1537), + [anon_sym_class] = ACTIONS(1539), + [anon_sym_struct] = ACTIONS(1541), + [anon_sym_union] = ACTIONS(1543), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1545), + [anon_sym_decltype] = ACTIONS(1547), [anon_sym_virtual] = ACTIONS(109), [anon_sym_explicit] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1705), - [anon_sym_private] = ACTIONS(1705), - [anon_sym_protected] = ACTIONS(1705), - [anon_sym_typename] = ACTIONS(1547), - [anon_sym_template] = ACTIONS(1707), + [anon_sym_public] = ACTIONS(1789), + [anon_sym_private] = ACTIONS(1789), + [anon_sym_protected] = ACTIONS(1789), + [anon_sym_typename] = ACTIONS(1551), + [anon_sym_template] = ACTIONS(1791), [anon_sym_operator] = ACTIONS(117), - [anon_sym_friend] = ACTIONS(1709), - [anon_sym_using] = ACTIONS(1711), - [anon_sym_static_assert] = ACTIONS(1713), + [anon_sym_friend] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1795), + [anon_sym_static_assert] = ACTIONS(1797), }, - [148] = { - [sym_preproc_def] = STATE(144), - [sym_preproc_function_def] = STATE(144), - [sym_preproc_call] = STATE(144), - [sym_preproc_if_in_field_declaration_list] = STATE(144), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(144), - [sym_type_definition] = STATE(144), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(4155), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(2900), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4709), - [sym_array_declarator] = STATE(4825), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(3200), - [sym_sized_type_specifier] = STATE(3371), - [sym_enum_specifier] = STATE(3371), - [sym_struct_specifier] = STATE(3371), - [sym_union_specifier] = STATE(3371), - [sym__field_declaration_list_item] = STATE(144), - [sym_field_declaration] = STATE(144), - [sym_placeholder_type_specifier] = STATE(3371), - [sym_decltype_auto] = STATE(3366), - [sym_decltype] = STATE(3371), - [sym_class_specifier] = STATE(3371), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1777), - [sym_dependent_type] = STATE(3371), - [sym_template_declaration] = STATE(144), - [sym_operator_cast] = STATE(5177), - [sym_inline_method_definition] = STATE(144), - [sym__constructor_specifiers] = STATE(1777), - [sym_operator_cast_definition] = STATE(144), - [sym_operator_cast_declaration] = STATE(144), - [sym_constructor_or_destructor_definition] = STATE(144), - [sym_constructor_or_destructor_declaration] = STATE(144), - [sym_friend_declaration] = STATE(144), - [sym_access_specifier] = STATE(144), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(2976), - [sym_template_function] = STATE(4825), - [sym_using_declaration] = STATE(144), - [sym_alias_declaration] = STATE(144), - [sym_static_assert_declaration] = STATE(144), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4515), - [sym_qualified_identifier] = STATE(4825), - [sym_qualified_type_identifier] = STATE(3400), - [sym_qualified_operator_cast_identifier] = STATE(5177), - [sym_operator_name] = STATE(4825), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(144), - [aux_sym__declaration_specifiers_repeat1] = STATE(1896), - [aux_sym_sized_type_specifier_repeat1] = STATE(3286), - [aux_sym_operator_cast_definition_repeat1] = STATE(1777), - [sym_identifier] = ACTIONS(1499), - [aux_sym_preproc_def_token1] = ACTIONS(1693), - [aux_sym_preproc_if_token1] = ACTIONS(1695), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1697), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1697), - [sym_preproc_directive] = ACTIONS(1699), - [anon_sym_LPAREN2] = ACTIONS(1515), - [anon_sym_TILDE] = ACTIONS(1517), - [anon_sym_STAR] = ACTIONS(1519), + [152] = { + [sym_preproc_def] = STATE(156), + [sym_preproc_function_def] = STATE(156), + [sym_preproc_call] = STATE(156), + [sym_preproc_if_in_field_declaration_list] = STATE(156), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(156), + [sym_type_definition] = STATE(156), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4425), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(3343), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(4945), + [sym_array_declarator] = STATE(5080), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3521), + [sym_sized_type_specifier] = STATE(4001), + [sym_enum_specifier] = STATE(4001), + [sym_struct_specifier] = STATE(4001), + [sym_union_specifier] = STATE(4001), + [sym__field_declaration_list_item] = STATE(156), + [sym_field_declaration] = STATE(156), + [sym_placeholder_type_specifier] = STATE(4001), + [sym_decltype_auto] = STATE(4021), + [sym_decltype] = STATE(4001), + [sym_class_specifier] = STATE(4001), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1983), + [sym_dependent_type] = STATE(4001), + [sym_template_declaration] = STATE(156), + [sym_operator_cast] = STATE(5477), + [sym_inline_method_definition] = STATE(156), + [sym__constructor_specifiers] = STATE(1983), + [sym_operator_cast_definition] = STATE(156), + [sym_operator_cast_declaration] = STATE(156), + [sym_constructor_or_destructor_definition] = STATE(156), + [sym_constructor_or_destructor_declaration] = STATE(156), + [sym_friend_declaration] = STATE(156), + [sym_access_specifier] = STATE(156), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3395), + [sym_template_function] = STATE(5080), + [sym_using_declaration] = STATE(156), + [sym_alias_declaration] = STATE(156), + [sym_static_assert_declaration] = STATE(156), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4775), + [sym_qualified_identifier] = STATE(5080), + [sym_qualified_type_identifier] = STATE(4003), + [sym_qualified_operator_cast_identifier] = STATE(5477), + [sym_operator_name] = STATE(5080), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(156), + [aux_sym__declaration_specifiers_repeat1] = STATE(2191), + [aux_sym_sized_type_specifier_repeat1] = STATE(3805), + [aux_sym_operator_cast_definition_repeat1] = STATE(1983), + [sym_identifier] = ACTIONS(1503), + [aux_sym_preproc_def_token1] = ACTIONS(1777), + [aux_sym_preproc_if_token1] = ACTIONS(1779), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1781), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1781), + [sym_preproc_directive] = ACTIONS(1783), + [anon_sym_LPAREN2] = ACTIONS(1519), + [anon_sym_TILDE] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1523), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1521), - [anon_sym_typedef] = ACTIONS(1701), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_typedef] = ACTIONS(1785), [anon_sym_extern] = ACTIONS(55), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1525), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1389), + [anon_sym_COLON_COLON] = ACTIONS(1529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), [anon_sym___declspec] = ACTIONS(45), [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(1791), - [anon_sym_LBRACK] = ACTIONS(1527), + [anon_sym_RBRACE] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(1531), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), @@ -51015,113 +53205,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_constexpr] = ACTIONS(57), [anon_sym_constinit] = ACTIONS(57), [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1529), - [anon_sym_unsigned] = ACTIONS(1529), - [anon_sym_long] = ACTIONS(1529), - [anon_sym_short] = ACTIONS(1529), - [sym_primitive_type] = ACTIONS(1531), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1535), - [anon_sym_struct] = ACTIONS(1537), - [anon_sym_union] = ACTIONS(1539), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1541), - [anon_sym_decltype] = ACTIONS(1543), + [anon_sym_signed] = ACTIONS(1533), + [anon_sym_unsigned] = ACTIONS(1533), + [anon_sym_long] = ACTIONS(1533), + [anon_sym_short] = ACTIONS(1533), + [sym_primitive_type] = ACTIONS(1535), + [anon_sym_enum] = ACTIONS(1537), + [anon_sym_class] = ACTIONS(1539), + [anon_sym_struct] = ACTIONS(1541), + [anon_sym_union] = ACTIONS(1543), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1545), + [anon_sym_decltype] = ACTIONS(1547), [anon_sym_virtual] = ACTIONS(109), [anon_sym_explicit] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1705), - [anon_sym_private] = ACTIONS(1705), - [anon_sym_protected] = ACTIONS(1705), - [anon_sym_typename] = ACTIONS(1547), - [anon_sym_template] = ACTIONS(1707), + [anon_sym_public] = ACTIONS(1789), + [anon_sym_private] = ACTIONS(1789), + [anon_sym_protected] = ACTIONS(1789), + [anon_sym_typename] = ACTIONS(1551), + [anon_sym_template] = ACTIONS(1791), [anon_sym_operator] = ACTIONS(117), - [anon_sym_friend] = ACTIONS(1709), - [anon_sym_using] = ACTIONS(1711), - [anon_sym_static_assert] = ACTIONS(1713), + [anon_sym_friend] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1795), + [anon_sym_static_assert] = ACTIONS(1797), }, - [149] = { - [sym_preproc_def] = STATE(151), - [sym_preproc_function_def] = STATE(151), - [sym_preproc_call] = STATE(151), - [sym_preproc_if_in_field_declaration_list] = STATE(151), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(151), - [sym_type_definition] = STATE(151), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(4155), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(2900), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4709), - [sym_array_declarator] = STATE(4825), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(3200), - [sym_sized_type_specifier] = STATE(3371), - [sym_enum_specifier] = STATE(3371), - [sym_struct_specifier] = STATE(3371), - [sym_union_specifier] = STATE(3371), - [sym__field_declaration_list_item] = STATE(151), - [sym_field_declaration] = STATE(151), - [sym_placeholder_type_specifier] = STATE(3371), - [sym_decltype_auto] = STATE(3366), - [sym_decltype] = STATE(3371), - [sym_class_specifier] = STATE(3371), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1777), - [sym_dependent_type] = STATE(3371), - [sym_template_declaration] = STATE(151), - [sym_operator_cast] = STATE(5177), - [sym_inline_method_definition] = STATE(151), - [sym__constructor_specifiers] = STATE(1777), - [sym_operator_cast_definition] = STATE(151), - [sym_operator_cast_declaration] = STATE(151), - [sym_constructor_or_destructor_definition] = STATE(151), - [sym_constructor_or_destructor_declaration] = STATE(151), - [sym_friend_declaration] = STATE(151), - [sym_access_specifier] = STATE(151), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(2976), - [sym_template_function] = STATE(4825), - [sym_using_declaration] = STATE(151), - [sym_alias_declaration] = STATE(151), - [sym_static_assert_declaration] = STATE(151), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4515), - [sym_qualified_identifier] = STATE(4825), - [sym_qualified_type_identifier] = STATE(3400), - [sym_qualified_operator_cast_identifier] = STATE(5177), - [sym_operator_name] = STATE(4825), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(151), - [aux_sym__declaration_specifiers_repeat1] = STATE(1896), - [aux_sym_sized_type_specifier_repeat1] = STATE(3286), - [aux_sym_operator_cast_definition_repeat1] = STATE(1777), - [sym_identifier] = ACTIONS(1499), - [aux_sym_preproc_def_token1] = ACTIONS(1693), - [aux_sym_preproc_if_token1] = ACTIONS(1695), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1697), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1697), - [sym_preproc_directive] = ACTIONS(1699), - [anon_sym_LPAREN2] = ACTIONS(1515), - [anon_sym_TILDE] = ACTIONS(1517), - [anon_sym_STAR] = ACTIONS(1519), + [153] = { + [sym_preproc_def] = STATE(158), + [sym_preproc_function_def] = STATE(158), + [sym_preproc_call] = STATE(158), + [sym_preproc_if_in_field_declaration_list] = STATE(158), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(158), + [sym_type_definition] = STATE(158), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4425), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(3343), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(4945), + [sym_array_declarator] = STATE(5080), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3521), + [sym_sized_type_specifier] = STATE(4001), + [sym_enum_specifier] = STATE(4001), + [sym_struct_specifier] = STATE(4001), + [sym_union_specifier] = STATE(4001), + [sym__field_declaration_list_item] = STATE(158), + [sym_field_declaration] = STATE(158), + [sym_placeholder_type_specifier] = STATE(4001), + [sym_decltype_auto] = STATE(4021), + [sym_decltype] = STATE(4001), + [sym_class_specifier] = STATE(4001), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1983), + [sym_dependent_type] = STATE(4001), + [sym_template_declaration] = STATE(158), + [sym_operator_cast] = STATE(5477), + [sym_inline_method_definition] = STATE(158), + [sym__constructor_specifiers] = STATE(1983), + [sym_operator_cast_definition] = STATE(158), + [sym_operator_cast_declaration] = STATE(158), + [sym_constructor_or_destructor_definition] = STATE(158), + [sym_constructor_or_destructor_declaration] = STATE(158), + [sym_friend_declaration] = STATE(158), + [sym_access_specifier] = STATE(158), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3395), + [sym_template_function] = STATE(5080), + [sym_using_declaration] = STATE(158), + [sym_alias_declaration] = STATE(158), + [sym_static_assert_declaration] = STATE(158), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4775), + [sym_qualified_identifier] = STATE(5080), + [sym_qualified_type_identifier] = STATE(4003), + [sym_qualified_operator_cast_identifier] = STATE(5477), + [sym_operator_name] = STATE(5080), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(158), + [aux_sym__declaration_specifiers_repeat1] = STATE(2191), + [aux_sym_sized_type_specifier_repeat1] = STATE(3805), + [aux_sym_operator_cast_definition_repeat1] = STATE(1983), + [sym_identifier] = ACTIONS(1503), + [aux_sym_preproc_def_token1] = ACTIONS(1777), + [aux_sym_preproc_if_token1] = ACTIONS(1779), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1781), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1781), + [sym_preproc_directive] = ACTIONS(1783), + [anon_sym_LPAREN2] = ACTIONS(1519), + [anon_sym_TILDE] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1523), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1521), - [anon_sym_typedef] = ACTIONS(1701), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_typedef] = ACTIONS(1785), [anon_sym_extern] = ACTIONS(55), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1525), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1389), + [anon_sym_COLON_COLON] = ACTIONS(1529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), [anon_sym___declspec] = ACTIONS(45), [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(1793), - [anon_sym_LBRACK] = ACTIONS(1527), + [anon_sym_RBRACE] = ACTIONS(1873), + [anon_sym_LBRACK] = ACTIONS(1531), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), @@ -51134,113 +53324,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_constexpr] = ACTIONS(57), [anon_sym_constinit] = ACTIONS(57), [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1529), - [anon_sym_unsigned] = ACTIONS(1529), - [anon_sym_long] = ACTIONS(1529), - [anon_sym_short] = ACTIONS(1529), - [sym_primitive_type] = ACTIONS(1531), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1535), - [anon_sym_struct] = ACTIONS(1537), - [anon_sym_union] = ACTIONS(1539), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1541), - [anon_sym_decltype] = ACTIONS(1543), + [anon_sym_signed] = ACTIONS(1533), + [anon_sym_unsigned] = ACTIONS(1533), + [anon_sym_long] = ACTIONS(1533), + [anon_sym_short] = ACTIONS(1533), + [sym_primitive_type] = ACTIONS(1535), + [anon_sym_enum] = ACTIONS(1537), + [anon_sym_class] = ACTIONS(1539), + [anon_sym_struct] = ACTIONS(1541), + [anon_sym_union] = ACTIONS(1543), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1545), + [anon_sym_decltype] = ACTIONS(1547), [anon_sym_virtual] = ACTIONS(109), [anon_sym_explicit] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1705), - [anon_sym_private] = ACTIONS(1705), - [anon_sym_protected] = ACTIONS(1705), - [anon_sym_typename] = ACTIONS(1547), - [anon_sym_template] = ACTIONS(1707), + [anon_sym_public] = ACTIONS(1789), + [anon_sym_private] = ACTIONS(1789), + [anon_sym_protected] = ACTIONS(1789), + [anon_sym_typename] = ACTIONS(1551), + [anon_sym_template] = ACTIONS(1791), [anon_sym_operator] = ACTIONS(117), - [anon_sym_friend] = ACTIONS(1709), - [anon_sym_using] = ACTIONS(1711), - [anon_sym_static_assert] = ACTIONS(1713), + [anon_sym_friend] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1795), + [anon_sym_static_assert] = ACTIONS(1797), }, - [150] = { - [sym_preproc_def] = STATE(153), - [sym_preproc_function_def] = STATE(153), - [sym_preproc_call] = STATE(153), - [sym_preproc_if_in_field_declaration_list] = STATE(153), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(153), - [sym_type_definition] = STATE(153), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(4164), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(2900), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4683), - [sym_array_declarator] = STATE(4825), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(3200), - [sym_sized_type_specifier] = STATE(3371), - [sym_enum_specifier] = STATE(3371), - [sym_struct_specifier] = STATE(3371), - [sym_union_specifier] = STATE(3371), - [sym__field_declaration_list_item] = STATE(153), - [sym_field_declaration] = STATE(153), - [sym_placeholder_type_specifier] = STATE(3371), - [sym_decltype_auto] = STATE(3366), - [sym_decltype] = STATE(3371), - [sym_class_specifier] = STATE(3371), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1764), - [sym_dependent_type] = STATE(3371), - [sym_template_declaration] = STATE(153), - [sym_operator_cast] = STATE(5215), - [sym_inline_method_definition] = STATE(153), - [sym__constructor_specifiers] = STATE(1764), - [sym_operator_cast_definition] = STATE(153), - [sym_operator_cast_declaration] = STATE(153), - [sym_constructor_or_destructor_definition] = STATE(153), - [sym_constructor_or_destructor_declaration] = STATE(153), - [sym_friend_declaration] = STATE(153), - [sym_access_specifier] = STATE(153), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(2976), - [sym_template_function] = STATE(4825), - [sym_using_declaration] = STATE(153), - [sym_alias_declaration] = STATE(153), - [sym_static_assert_declaration] = STATE(153), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4515), - [sym_qualified_identifier] = STATE(4825), - [sym_qualified_type_identifier] = STATE(3400), - [sym_qualified_operator_cast_identifier] = STATE(5215), - [sym_operator_name] = STATE(4825), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(153), - [aux_sym__declaration_specifiers_repeat1] = STATE(1896), - [aux_sym_sized_type_specifier_repeat1] = STATE(3286), - [aux_sym_operator_cast_definition_repeat1] = STATE(1764), - [sym_identifier] = ACTIONS(1499), - [aux_sym_preproc_def_token1] = ACTIONS(1767), - [aux_sym_preproc_if_token1] = ACTIONS(1769), - [aux_sym_preproc_if_token2] = ACTIONS(1795), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1773), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1773), - [sym_preproc_directive] = ACTIONS(1775), - [anon_sym_LPAREN2] = ACTIONS(1515), - [anon_sym_TILDE] = ACTIONS(1517), - [anon_sym_STAR] = ACTIONS(1519), + [154] = { + [sym_preproc_def] = STATE(147), + [sym_preproc_function_def] = STATE(147), + [sym_preproc_call] = STATE(147), + [sym_preproc_if_in_field_declaration_list] = STATE(147), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(147), + [sym_type_definition] = STATE(147), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4425), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(3343), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(4945), + [sym_array_declarator] = STATE(5080), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3521), + [sym_sized_type_specifier] = STATE(4001), + [sym_enum_specifier] = STATE(4001), + [sym_struct_specifier] = STATE(4001), + [sym_union_specifier] = STATE(4001), + [sym__field_declaration_list_item] = STATE(147), + [sym_field_declaration] = STATE(147), + [sym_placeholder_type_specifier] = STATE(4001), + [sym_decltype_auto] = STATE(4021), + [sym_decltype] = STATE(4001), + [sym_class_specifier] = STATE(4001), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1983), + [sym_dependent_type] = STATE(4001), + [sym_template_declaration] = STATE(147), + [sym_operator_cast] = STATE(5477), + [sym_inline_method_definition] = STATE(147), + [sym__constructor_specifiers] = STATE(1983), + [sym_operator_cast_definition] = STATE(147), + [sym_operator_cast_declaration] = STATE(147), + [sym_constructor_or_destructor_definition] = STATE(147), + [sym_constructor_or_destructor_declaration] = STATE(147), + [sym_friend_declaration] = STATE(147), + [sym_access_specifier] = STATE(147), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3395), + [sym_template_function] = STATE(5080), + [sym_using_declaration] = STATE(147), + [sym_alias_declaration] = STATE(147), + [sym_static_assert_declaration] = STATE(147), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4775), + [sym_qualified_identifier] = STATE(5080), + [sym_qualified_type_identifier] = STATE(4003), + [sym_qualified_operator_cast_identifier] = STATE(5477), + [sym_operator_name] = STATE(5080), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(147), + [aux_sym__declaration_specifiers_repeat1] = STATE(2191), + [aux_sym_sized_type_specifier_repeat1] = STATE(3805), + [aux_sym_operator_cast_definition_repeat1] = STATE(1983), + [sym_identifier] = ACTIONS(1503), + [aux_sym_preproc_def_token1] = ACTIONS(1777), + [aux_sym_preproc_if_token1] = ACTIONS(1779), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1781), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1781), + [sym_preproc_directive] = ACTIONS(1783), + [anon_sym_LPAREN2] = ACTIONS(1519), + [anon_sym_TILDE] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1523), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1521), - [anon_sym_typedef] = ACTIONS(1777), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_typedef] = ACTIONS(1785), [anon_sym_extern] = ACTIONS(55), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1525), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1389), + [anon_sym_COLON_COLON] = ACTIONS(1529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), [anon_sym___declspec] = ACTIONS(45), [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1527), + [anon_sym_RBRACE] = ACTIONS(1875), + [anon_sym_LBRACK] = ACTIONS(1531), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), @@ -51253,113 +53443,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_constexpr] = ACTIONS(57), [anon_sym_constinit] = ACTIONS(57), [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1529), - [anon_sym_unsigned] = ACTIONS(1529), - [anon_sym_long] = ACTIONS(1529), - [anon_sym_short] = ACTIONS(1529), - [sym_primitive_type] = ACTIONS(1531), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1535), - [anon_sym_struct] = ACTIONS(1537), - [anon_sym_union] = ACTIONS(1539), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1541), - [anon_sym_decltype] = ACTIONS(1543), + [anon_sym_signed] = ACTIONS(1533), + [anon_sym_unsigned] = ACTIONS(1533), + [anon_sym_long] = ACTIONS(1533), + [anon_sym_short] = ACTIONS(1533), + [sym_primitive_type] = ACTIONS(1535), + [anon_sym_enum] = ACTIONS(1537), + [anon_sym_class] = ACTIONS(1539), + [anon_sym_struct] = ACTIONS(1541), + [anon_sym_union] = ACTIONS(1543), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1545), + [anon_sym_decltype] = ACTIONS(1547), [anon_sym_virtual] = ACTIONS(109), [anon_sym_explicit] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1779), - [anon_sym_private] = ACTIONS(1779), - [anon_sym_protected] = ACTIONS(1779), - [anon_sym_typename] = ACTIONS(1547), - [anon_sym_template] = ACTIONS(1781), + [anon_sym_public] = ACTIONS(1789), + [anon_sym_private] = ACTIONS(1789), + [anon_sym_protected] = ACTIONS(1789), + [anon_sym_typename] = ACTIONS(1551), + [anon_sym_template] = ACTIONS(1791), [anon_sym_operator] = ACTIONS(117), - [anon_sym_friend] = ACTIONS(1783), - [anon_sym_using] = ACTIONS(1785), - [anon_sym_static_assert] = ACTIONS(1787), + [anon_sym_friend] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1795), + [anon_sym_static_assert] = ACTIONS(1797), }, - [151] = { - [sym_preproc_def] = STATE(144), - [sym_preproc_function_def] = STATE(144), - [sym_preproc_call] = STATE(144), - [sym_preproc_if_in_field_declaration_list] = STATE(144), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(144), - [sym_type_definition] = STATE(144), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(4155), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(2900), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4709), - [sym_array_declarator] = STATE(4825), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(3200), - [sym_sized_type_specifier] = STATE(3371), - [sym_enum_specifier] = STATE(3371), - [sym_struct_specifier] = STATE(3371), - [sym_union_specifier] = STATE(3371), - [sym__field_declaration_list_item] = STATE(144), - [sym_field_declaration] = STATE(144), - [sym_placeholder_type_specifier] = STATE(3371), - [sym_decltype_auto] = STATE(3366), - [sym_decltype] = STATE(3371), - [sym_class_specifier] = STATE(3371), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1777), - [sym_dependent_type] = STATE(3371), - [sym_template_declaration] = STATE(144), - [sym_operator_cast] = STATE(5177), - [sym_inline_method_definition] = STATE(144), - [sym__constructor_specifiers] = STATE(1777), - [sym_operator_cast_definition] = STATE(144), - [sym_operator_cast_declaration] = STATE(144), - [sym_constructor_or_destructor_definition] = STATE(144), - [sym_constructor_or_destructor_declaration] = STATE(144), - [sym_friend_declaration] = STATE(144), - [sym_access_specifier] = STATE(144), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(2976), - [sym_template_function] = STATE(4825), - [sym_using_declaration] = STATE(144), - [sym_alias_declaration] = STATE(144), - [sym_static_assert_declaration] = STATE(144), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4515), - [sym_qualified_identifier] = STATE(4825), - [sym_qualified_type_identifier] = STATE(3400), - [sym_qualified_operator_cast_identifier] = STATE(5177), - [sym_operator_name] = STATE(4825), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(144), - [aux_sym__declaration_specifiers_repeat1] = STATE(1896), - [aux_sym_sized_type_specifier_repeat1] = STATE(3286), - [aux_sym_operator_cast_definition_repeat1] = STATE(1777), - [sym_identifier] = ACTIONS(1499), - [aux_sym_preproc_def_token1] = ACTIONS(1693), - [aux_sym_preproc_if_token1] = ACTIONS(1695), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1697), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1697), - [sym_preproc_directive] = ACTIONS(1699), - [anon_sym_LPAREN2] = ACTIONS(1515), - [anon_sym_TILDE] = ACTIONS(1517), - [anon_sym_STAR] = ACTIONS(1519), + [155] = { + [sym_preproc_def] = STATE(147), + [sym_preproc_function_def] = STATE(147), + [sym_preproc_call] = STATE(147), + [sym_preproc_if_in_field_declaration_list] = STATE(147), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(147), + [sym_type_definition] = STATE(147), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4425), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(3343), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(4945), + [sym_array_declarator] = STATE(5080), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3521), + [sym_sized_type_specifier] = STATE(4001), + [sym_enum_specifier] = STATE(4001), + [sym_struct_specifier] = STATE(4001), + [sym_union_specifier] = STATE(4001), + [sym__field_declaration_list_item] = STATE(147), + [sym_field_declaration] = STATE(147), + [sym_placeholder_type_specifier] = STATE(4001), + [sym_decltype_auto] = STATE(4021), + [sym_decltype] = STATE(4001), + [sym_class_specifier] = STATE(4001), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1983), + [sym_dependent_type] = STATE(4001), + [sym_template_declaration] = STATE(147), + [sym_operator_cast] = STATE(5477), + [sym_inline_method_definition] = STATE(147), + [sym__constructor_specifiers] = STATE(1983), + [sym_operator_cast_definition] = STATE(147), + [sym_operator_cast_declaration] = STATE(147), + [sym_constructor_or_destructor_definition] = STATE(147), + [sym_constructor_or_destructor_declaration] = STATE(147), + [sym_friend_declaration] = STATE(147), + [sym_access_specifier] = STATE(147), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3395), + [sym_template_function] = STATE(5080), + [sym_using_declaration] = STATE(147), + [sym_alias_declaration] = STATE(147), + [sym_static_assert_declaration] = STATE(147), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4775), + [sym_qualified_identifier] = STATE(5080), + [sym_qualified_type_identifier] = STATE(4003), + [sym_qualified_operator_cast_identifier] = STATE(5477), + [sym_operator_name] = STATE(5080), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(147), + [aux_sym__declaration_specifiers_repeat1] = STATE(2191), + [aux_sym_sized_type_specifier_repeat1] = STATE(3805), + [aux_sym_operator_cast_definition_repeat1] = STATE(1983), + [sym_identifier] = ACTIONS(1503), + [aux_sym_preproc_def_token1] = ACTIONS(1777), + [aux_sym_preproc_if_token1] = ACTIONS(1779), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1781), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1781), + [sym_preproc_directive] = ACTIONS(1783), + [anon_sym_LPAREN2] = ACTIONS(1519), + [anon_sym_TILDE] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1523), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1521), - [anon_sym_typedef] = ACTIONS(1701), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_typedef] = ACTIONS(1785), [anon_sym_extern] = ACTIONS(55), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1525), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1389), + [anon_sym_COLON_COLON] = ACTIONS(1529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), [anon_sym___declspec] = ACTIONS(45), [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(1797), - [anon_sym_LBRACK] = ACTIONS(1527), + [anon_sym_RBRACE] = ACTIONS(1877), + [anon_sym_LBRACK] = ACTIONS(1531), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), @@ -51372,113 +53562,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_constexpr] = ACTIONS(57), [anon_sym_constinit] = ACTIONS(57), [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1529), - [anon_sym_unsigned] = ACTIONS(1529), - [anon_sym_long] = ACTIONS(1529), - [anon_sym_short] = ACTIONS(1529), - [sym_primitive_type] = ACTIONS(1531), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1535), - [anon_sym_struct] = ACTIONS(1537), - [anon_sym_union] = ACTIONS(1539), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1541), - [anon_sym_decltype] = ACTIONS(1543), + [anon_sym_signed] = ACTIONS(1533), + [anon_sym_unsigned] = ACTIONS(1533), + [anon_sym_long] = ACTIONS(1533), + [anon_sym_short] = ACTIONS(1533), + [sym_primitive_type] = ACTIONS(1535), + [anon_sym_enum] = ACTIONS(1537), + [anon_sym_class] = ACTIONS(1539), + [anon_sym_struct] = ACTIONS(1541), + [anon_sym_union] = ACTIONS(1543), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1545), + [anon_sym_decltype] = ACTIONS(1547), [anon_sym_virtual] = ACTIONS(109), [anon_sym_explicit] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1705), - [anon_sym_private] = ACTIONS(1705), - [anon_sym_protected] = ACTIONS(1705), - [anon_sym_typename] = ACTIONS(1547), - [anon_sym_template] = ACTIONS(1707), + [anon_sym_public] = ACTIONS(1789), + [anon_sym_private] = ACTIONS(1789), + [anon_sym_protected] = ACTIONS(1789), + [anon_sym_typename] = ACTIONS(1551), + [anon_sym_template] = ACTIONS(1791), [anon_sym_operator] = ACTIONS(117), - [anon_sym_friend] = ACTIONS(1709), - [anon_sym_using] = ACTIONS(1711), - [anon_sym_static_assert] = ACTIONS(1713), + [anon_sym_friend] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1795), + [anon_sym_static_assert] = ACTIONS(1797), }, - [152] = { - [sym_preproc_def] = STATE(144), - [sym_preproc_function_def] = STATE(144), - [sym_preproc_call] = STATE(144), - [sym_preproc_if_in_field_declaration_list] = STATE(144), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(144), - [sym_type_definition] = STATE(144), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(4155), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(2900), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4709), - [sym_array_declarator] = STATE(4825), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(3200), - [sym_sized_type_specifier] = STATE(3371), - [sym_enum_specifier] = STATE(3371), - [sym_struct_specifier] = STATE(3371), - [sym_union_specifier] = STATE(3371), - [sym__field_declaration_list_item] = STATE(144), - [sym_field_declaration] = STATE(144), - [sym_placeholder_type_specifier] = STATE(3371), - [sym_decltype_auto] = STATE(3366), - [sym_decltype] = STATE(3371), - [sym_class_specifier] = STATE(3371), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1777), - [sym_dependent_type] = STATE(3371), - [sym_template_declaration] = STATE(144), - [sym_operator_cast] = STATE(5177), - [sym_inline_method_definition] = STATE(144), - [sym__constructor_specifiers] = STATE(1777), - [sym_operator_cast_definition] = STATE(144), - [sym_operator_cast_declaration] = STATE(144), - [sym_constructor_or_destructor_definition] = STATE(144), - [sym_constructor_or_destructor_declaration] = STATE(144), - [sym_friend_declaration] = STATE(144), - [sym_access_specifier] = STATE(144), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(2976), - [sym_template_function] = STATE(4825), - [sym_using_declaration] = STATE(144), - [sym_alias_declaration] = STATE(144), - [sym_static_assert_declaration] = STATE(144), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4515), - [sym_qualified_identifier] = STATE(4825), - [sym_qualified_type_identifier] = STATE(3400), - [sym_qualified_operator_cast_identifier] = STATE(5177), - [sym_operator_name] = STATE(4825), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(144), - [aux_sym__declaration_specifiers_repeat1] = STATE(1896), - [aux_sym_sized_type_specifier_repeat1] = STATE(3286), - [aux_sym_operator_cast_definition_repeat1] = STATE(1777), - [sym_identifier] = ACTIONS(1499), - [aux_sym_preproc_def_token1] = ACTIONS(1693), - [aux_sym_preproc_if_token1] = ACTIONS(1695), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1697), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1697), - [sym_preproc_directive] = ACTIONS(1699), - [anon_sym_LPAREN2] = ACTIONS(1515), - [anon_sym_TILDE] = ACTIONS(1517), - [anon_sym_STAR] = ACTIONS(1519), + [156] = { + [sym_preproc_def] = STATE(147), + [sym_preproc_function_def] = STATE(147), + [sym_preproc_call] = STATE(147), + [sym_preproc_if_in_field_declaration_list] = STATE(147), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(147), + [sym_type_definition] = STATE(147), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4425), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(3343), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(4945), + [sym_array_declarator] = STATE(5080), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3521), + [sym_sized_type_specifier] = STATE(4001), + [sym_enum_specifier] = STATE(4001), + [sym_struct_specifier] = STATE(4001), + [sym_union_specifier] = STATE(4001), + [sym__field_declaration_list_item] = STATE(147), + [sym_field_declaration] = STATE(147), + [sym_placeholder_type_specifier] = STATE(4001), + [sym_decltype_auto] = STATE(4021), + [sym_decltype] = STATE(4001), + [sym_class_specifier] = STATE(4001), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1983), + [sym_dependent_type] = STATE(4001), + [sym_template_declaration] = STATE(147), + [sym_operator_cast] = STATE(5477), + [sym_inline_method_definition] = STATE(147), + [sym__constructor_specifiers] = STATE(1983), + [sym_operator_cast_definition] = STATE(147), + [sym_operator_cast_declaration] = STATE(147), + [sym_constructor_or_destructor_definition] = STATE(147), + [sym_constructor_or_destructor_declaration] = STATE(147), + [sym_friend_declaration] = STATE(147), + [sym_access_specifier] = STATE(147), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3395), + [sym_template_function] = STATE(5080), + [sym_using_declaration] = STATE(147), + [sym_alias_declaration] = STATE(147), + [sym_static_assert_declaration] = STATE(147), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4775), + [sym_qualified_identifier] = STATE(5080), + [sym_qualified_type_identifier] = STATE(4003), + [sym_qualified_operator_cast_identifier] = STATE(5477), + [sym_operator_name] = STATE(5080), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(147), + [aux_sym__declaration_specifiers_repeat1] = STATE(2191), + [aux_sym_sized_type_specifier_repeat1] = STATE(3805), + [aux_sym_operator_cast_definition_repeat1] = STATE(1983), + [sym_identifier] = ACTIONS(1503), + [aux_sym_preproc_def_token1] = ACTIONS(1777), + [aux_sym_preproc_if_token1] = ACTIONS(1779), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1781), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1781), + [sym_preproc_directive] = ACTIONS(1783), + [anon_sym_LPAREN2] = ACTIONS(1519), + [anon_sym_TILDE] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1523), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1521), - [anon_sym_typedef] = ACTIONS(1701), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_typedef] = ACTIONS(1785), [anon_sym_extern] = ACTIONS(55), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(1525), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1389), + [anon_sym_COLON_COLON] = ACTIONS(1529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), [anon_sym___declspec] = ACTIONS(45), [anon_sym___based] = ACTIONS(47), - [anon_sym_RBRACE] = ACTIONS(1799), - [anon_sym_LBRACK] = ACTIONS(1527), + [anon_sym_RBRACE] = ACTIONS(1879), + [anon_sym_LBRACK] = ACTIONS(1531), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), @@ -51491,231 +53681,1061 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_constexpr] = ACTIONS(57), [anon_sym_constinit] = ACTIONS(57), [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1529), - [anon_sym_unsigned] = ACTIONS(1529), - [anon_sym_long] = ACTIONS(1529), - [anon_sym_short] = ACTIONS(1529), - [sym_primitive_type] = ACTIONS(1531), - [anon_sym_enum] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1535), - [anon_sym_struct] = ACTIONS(1537), - [anon_sym_union] = ACTIONS(1539), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1541), - [anon_sym_decltype] = ACTIONS(1543), + [anon_sym_signed] = ACTIONS(1533), + [anon_sym_unsigned] = ACTIONS(1533), + [anon_sym_long] = ACTIONS(1533), + [anon_sym_short] = ACTIONS(1533), + [sym_primitive_type] = ACTIONS(1535), + [anon_sym_enum] = ACTIONS(1537), + [anon_sym_class] = ACTIONS(1539), + [anon_sym_struct] = ACTIONS(1541), + [anon_sym_union] = ACTIONS(1543), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1545), + [anon_sym_decltype] = ACTIONS(1547), [anon_sym_virtual] = ACTIONS(109), [anon_sym_explicit] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1705), - [anon_sym_private] = ACTIONS(1705), - [anon_sym_protected] = ACTIONS(1705), - [anon_sym_typename] = ACTIONS(1547), - [anon_sym_template] = ACTIONS(1707), + [anon_sym_public] = ACTIONS(1789), + [anon_sym_private] = ACTIONS(1789), + [anon_sym_protected] = ACTIONS(1789), + [anon_sym_typename] = ACTIONS(1551), + [anon_sym_template] = ACTIONS(1791), [anon_sym_operator] = ACTIONS(117), - [anon_sym_friend] = ACTIONS(1709), - [anon_sym_using] = ACTIONS(1711), - [anon_sym_static_assert] = ACTIONS(1713), + [anon_sym_friend] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1795), + [anon_sym_static_assert] = ACTIONS(1797), }, - [153] = { - [sym_preproc_def] = STATE(153), - [sym_preproc_function_def] = STATE(153), - [sym_preproc_call] = STATE(153), - [sym_preproc_if_in_field_declaration_list] = STATE(153), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(153), - [sym_type_definition] = STATE(153), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(4164), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(2900), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4683), - [sym_array_declarator] = STATE(4825), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(3200), - [sym_sized_type_specifier] = STATE(3371), - [sym_enum_specifier] = STATE(3371), - [sym_struct_specifier] = STATE(3371), - [sym_union_specifier] = STATE(3371), - [sym__field_declaration_list_item] = STATE(153), - [sym_field_declaration] = STATE(153), - [sym_placeholder_type_specifier] = STATE(3371), - [sym_decltype_auto] = STATE(3366), - [sym_decltype] = STATE(3371), - [sym_class_specifier] = STATE(3371), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1764), - [sym_dependent_type] = STATE(3371), - [sym_template_declaration] = STATE(153), - [sym_operator_cast] = STATE(5215), - [sym_inline_method_definition] = STATE(153), - [sym__constructor_specifiers] = STATE(1764), - [sym_operator_cast_definition] = STATE(153), - [sym_operator_cast_declaration] = STATE(153), - [sym_constructor_or_destructor_definition] = STATE(153), - [sym_constructor_or_destructor_declaration] = STATE(153), - [sym_friend_declaration] = STATE(153), - [sym_access_specifier] = STATE(153), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(2976), - [sym_template_function] = STATE(4825), - [sym_using_declaration] = STATE(153), - [sym_alias_declaration] = STATE(153), - [sym_static_assert_declaration] = STATE(153), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4515), - [sym_qualified_identifier] = STATE(4825), - [sym_qualified_type_identifier] = STATE(3400), - [sym_qualified_operator_cast_identifier] = STATE(5215), - [sym_operator_name] = STATE(4825), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(153), - [aux_sym__declaration_specifiers_repeat1] = STATE(1896), - [aux_sym_sized_type_specifier_repeat1] = STATE(3286), - [aux_sym_operator_cast_definition_repeat1] = STATE(1764), - [sym_identifier] = ACTIONS(1583), - [aux_sym_preproc_def_token1] = ACTIONS(1801), - [aux_sym_preproc_if_token1] = ACTIONS(1804), - [aux_sym_preproc_if_token2] = ACTIONS(1592), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1807), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1807), - [sym_preproc_directive] = ACTIONS(1810), - [anon_sym_LPAREN2] = ACTIONS(1600), - [anon_sym_TILDE] = ACTIONS(1603), - [anon_sym_STAR] = ACTIONS(1606), - [anon_sym_AMP_AMP] = ACTIONS(1609), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_typedef] = ACTIONS(1813), - [anon_sym_extern] = ACTIONS(1618), - [anon_sym___attribute__] = ACTIONS(1621), - [anon_sym_COLON_COLON] = ACTIONS(1624), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1627), - [anon_sym___declspec] = ACTIONS(1630), - [anon_sym___based] = ACTIONS(1633), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_static] = ACTIONS(1618), - [anon_sym_register] = ACTIONS(1618), - [anon_sym_inline] = ACTIONS(1618), - [anon_sym_thread_local] = ACTIONS(1618), - [anon_sym_const] = ACTIONS(1639), - [anon_sym_volatile] = ACTIONS(1639), - [anon_sym_restrict] = ACTIONS(1639), - [anon_sym__Atomic] = ACTIONS(1639), - [anon_sym_mutable] = ACTIONS(1639), - [anon_sym_constexpr] = ACTIONS(1639), - [anon_sym_constinit] = ACTIONS(1639), - [anon_sym_consteval] = ACTIONS(1639), - [anon_sym_signed] = ACTIONS(1642), - [anon_sym_unsigned] = ACTIONS(1642), - [anon_sym_long] = ACTIONS(1642), - [anon_sym_short] = ACTIONS(1642), - [sym_primitive_type] = ACTIONS(1645), - [anon_sym_enum] = ACTIONS(1648), - [anon_sym_class] = ACTIONS(1651), - [anon_sym_struct] = ACTIONS(1654), - [anon_sym_union] = ACTIONS(1657), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1660), - [anon_sym_decltype] = ACTIONS(1663), - [anon_sym_virtual] = ACTIONS(1666), - [anon_sym_explicit] = ACTIONS(1669), - [anon_sym_public] = ACTIONS(1816), - [anon_sym_private] = ACTIONS(1816), - [anon_sym_protected] = ACTIONS(1816), - [anon_sym_typename] = ACTIONS(1675), - [anon_sym_template] = ACTIONS(1819), - [anon_sym_operator] = ACTIONS(1681), - [anon_sym_friend] = ACTIONS(1822), - [anon_sym_using] = ACTIONS(1825), - [anon_sym_static_assert] = ACTIONS(1828), + [157] = { + [sym_preproc_def] = STATE(159), + [sym_preproc_function_def] = STATE(159), + [sym_preproc_call] = STATE(159), + [sym_preproc_if_in_field_declaration_list] = STATE(159), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(159), + [sym_type_definition] = STATE(159), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4426), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(3343), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(4964), + [sym_array_declarator] = STATE(5080), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3521), + [sym_sized_type_specifier] = STATE(4001), + [sym_enum_specifier] = STATE(4001), + [sym_struct_specifier] = STATE(4001), + [sym_union_specifier] = STATE(4001), + [sym__field_declaration_list_item] = STATE(159), + [sym_field_declaration] = STATE(159), + [sym_placeholder_type_specifier] = STATE(4001), + [sym_decltype_auto] = STATE(4021), + [sym_decltype] = STATE(4001), + [sym_class_specifier] = STATE(4001), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1984), + [sym_dependent_type] = STATE(4001), + [sym_template_declaration] = STATE(159), + [sym_operator_cast] = STATE(5470), + [sym_inline_method_definition] = STATE(159), + [sym__constructor_specifiers] = STATE(1984), + [sym_operator_cast_definition] = STATE(159), + [sym_operator_cast_declaration] = STATE(159), + [sym_constructor_or_destructor_definition] = STATE(159), + [sym_constructor_or_destructor_declaration] = STATE(159), + [sym_friend_declaration] = STATE(159), + [sym_access_specifier] = STATE(159), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3395), + [sym_template_function] = STATE(5080), + [sym_using_declaration] = STATE(159), + [sym_alias_declaration] = STATE(159), + [sym_static_assert_declaration] = STATE(159), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4775), + [sym_qualified_identifier] = STATE(5080), + [sym_qualified_type_identifier] = STATE(4003), + [sym_qualified_operator_cast_identifier] = STATE(5470), + [sym_operator_name] = STATE(5080), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(159), + [aux_sym__declaration_specifiers_repeat1] = STATE(2191), + [aux_sym_sized_type_specifier_repeat1] = STATE(3805), + [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [sym_identifier] = ACTIONS(1503), + [aux_sym_preproc_def_token1] = ACTIONS(1799), + [aux_sym_preproc_if_token1] = ACTIONS(1801), + [aux_sym_preproc_if_token2] = ACTIONS(1881), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1805), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1805), + [sym_preproc_directive] = ACTIONS(1807), + [anon_sym_LPAREN2] = ACTIONS(1519), + [anon_sym_TILDE] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1523), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_typedef] = ACTIONS(1809), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(1529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1531), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1533), + [anon_sym_unsigned] = ACTIONS(1533), + [anon_sym_long] = ACTIONS(1533), + [anon_sym_short] = ACTIONS(1533), + [sym_primitive_type] = ACTIONS(1535), + [anon_sym_enum] = ACTIONS(1537), + [anon_sym_class] = ACTIONS(1539), + [anon_sym_struct] = ACTIONS(1541), + [anon_sym_union] = ACTIONS(1543), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1545), + [anon_sym_decltype] = ACTIONS(1547), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_public] = ACTIONS(1811), + [anon_sym_private] = ACTIONS(1811), + [anon_sym_protected] = ACTIONS(1811), + [anon_sym_typename] = ACTIONS(1551), + [anon_sym_template] = ACTIONS(1813), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_friend] = ACTIONS(1815), + [anon_sym_using] = ACTIONS(1817), + [anon_sym_static_assert] = ACTIONS(1819), }, - [154] = { - [sym_attribute_declaration] = STATE(244), - [sym_compound_statement] = STATE(1100), - [sym_attributed_statement] = STATE(1100), - [sym_labeled_statement] = STATE(1100), - [sym_expression_statement] = STATE(1100), - [sym_if_statement] = STATE(1100), - [sym_switch_statement] = STATE(1100), - [sym_case_statement] = STATE(1100), - [sym_while_statement] = STATE(1100), - [sym_do_statement] = STATE(1100), - [sym_for_statement] = STATE(1100), - [sym_return_statement] = STATE(1100), - [sym_break_statement] = STATE(1100), - [sym_continue_statement] = STATE(1100), - [sym_goto_statement] = STATE(1100), - [sym__expression] = STATE(3670), - [sym_comma_expression] = STATE(6450), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(1100), - [sym_co_return_statement] = STATE(1100), - [sym_co_yield_statement] = STATE(1100), - [sym_throw_statement] = STATE(1100), - [sym_try_statement] = STATE(1100), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(244), - [sym_identifier] = ACTIONS(1831), - [anon_sym_LPAREN2] = ACTIONS(960), + [158] = { + [sym_preproc_def] = STATE(147), + [sym_preproc_function_def] = STATE(147), + [sym_preproc_call] = STATE(147), + [sym_preproc_if_in_field_declaration_list] = STATE(147), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(147), + [sym_type_definition] = STATE(147), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4425), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(3343), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(4945), + [sym_array_declarator] = STATE(5080), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3521), + [sym_sized_type_specifier] = STATE(4001), + [sym_enum_specifier] = STATE(4001), + [sym_struct_specifier] = STATE(4001), + [sym_union_specifier] = STATE(4001), + [sym__field_declaration_list_item] = STATE(147), + [sym_field_declaration] = STATE(147), + [sym_placeholder_type_specifier] = STATE(4001), + [sym_decltype_auto] = STATE(4021), + [sym_decltype] = STATE(4001), + [sym_class_specifier] = STATE(4001), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1983), + [sym_dependent_type] = STATE(4001), + [sym_template_declaration] = STATE(147), + [sym_operator_cast] = STATE(5477), + [sym_inline_method_definition] = STATE(147), + [sym__constructor_specifiers] = STATE(1983), + [sym_operator_cast_definition] = STATE(147), + [sym_operator_cast_declaration] = STATE(147), + [sym_constructor_or_destructor_definition] = STATE(147), + [sym_constructor_or_destructor_declaration] = STATE(147), + [sym_friend_declaration] = STATE(147), + [sym_access_specifier] = STATE(147), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3395), + [sym_template_function] = STATE(5080), + [sym_using_declaration] = STATE(147), + [sym_alias_declaration] = STATE(147), + [sym_static_assert_declaration] = STATE(147), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4775), + [sym_qualified_identifier] = STATE(5080), + [sym_qualified_type_identifier] = STATE(4003), + [sym_qualified_operator_cast_identifier] = STATE(5477), + [sym_operator_name] = STATE(5080), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(147), + [aux_sym__declaration_specifiers_repeat1] = STATE(2191), + [aux_sym_sized_type_specifier_repeat1] = STATE(3805), + [aux_sym_operator_cast_definition_repeat1] = STATE(1983), + [sym_identifier] = ACTIONS(1503), + [aux_sym_preproc_def_token1] = ACTIONS(1777), + [aux_sym_preproc_if_token1] = ACTIONS(1779), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1781), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1781), + [sym_preproc_directive] = ACTIONS(1783), + [anon_sym_LPAREN2] = ACTIONS(1519), + [anon_sym_TILDE] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1523), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_typedef] = ACTIONS(1785), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(1529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_RBRACE] = ACTIONS(1883), + [anon_sym_LBRACK] = ACTIONS(1531), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1533), + [anon_sym_unsigned] = ACTIONS(1533), + [anon_sym_long] = ACTIONS(1533), + [anon_sym_short] = ACTIONS(1533), + [sym_primitive_type] = ACTIONS(1535), + [anon_sym_enum] = ACTIONS(1537), + [anon_sym_class] = ACTIONS(1539), + [anon_sym_struct] = ACTIONS(1541), + [anon_sym_union] = ACTIONS(1543), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1545), + [anon_sym_decltype] = ACTIONS(1547), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_public] = ACTIONS(1789), + [anon_sym_private] = ACTIONS(1789), + [anon_sym_protected] = ACTIONS(1789), + [anon_sym_typename] = ACTIONS(1551), + [anon_sym_template] = ACTIONS(1791), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_friend] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1795), + [anon_sym_static_assert] = ACTIONS(1797), + }, + [159] = { + [sym_preproc_def] = STATE(159), + [sym_preproc_function_def] = STATE(159), + [sym_preproc_call] = STATE(159), + [sym_preproc_if_in_field_declaration_list] = STATE(159), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(159), + [sym_type_definition] = STATE(159), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4426), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(3343), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(4964), + [sym_array_declarator] = STATE(5080), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3521), + [sym_sized_type_specifier] = STATE(4001), + [sym_enum_specifier] = STATE(4001), + [sym_struct_specifier] = STATE(4001), + [sym_union_specifier] = STATE(4001), + [sym__field_declaration_list_item] = STATE(159), + [sym_field_declaration] = STATE(159), + [sym_placeholder_type_specifier] = STATE(4001), + [sym_decltype_auto] = STATE(4021), + [sym_decltype] = STATE(4001), + [sym_class_specifier] = STATE(4001), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1984), + [sym_dependent_type] = STATE(4001), + [sym_template_declaration] = STATE(159), + [sym_operator_cast] = STATE(5470), + [sym_inline_method_definition] = STATE(159), + [sym__constructor_specifiers] = STATE(1984), + [sym_operator_cast_definition] = STATE(159), + [sym_operator_cast_declaration] = STATE(159), + [sym_constructor_or_destructor_definition] = STATE(159), + [sym_constructor_or_destructor_declaration] = STATE(159), + [sym_friend_declaration] = STATE(159), + [sym_access_specifier] = STATE(159), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3395), + [sym_template_function] = STATE(5080), + [sym_using_declaration] = STATE(159), + [sym_alias_declaration] = STATE(159), + [sym_static_assert_declaration] = STATE(159), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4775), + [sym_qualified_identifier] = STATE(5080), + [sym_qualified_type_identifier] = STATE(4003), + [sym_qualified_operator_cast_identifier] = STATE(5470), + [sym_operator_name] = STATE(5080), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(159), + [aux_sym__declaration_specifiers_repeat1] = STATE(2191), + [aux_sym_sized_type_specifier_repeat1] = STATE(3805), + [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [sym_identifier] = ACTIONS(1587), + [aux_sym_preproc_def_token1] = ACTIONS(1885), + [aux_sym_preproc_if_token1] = ACTIONS(1888), + [aux_sym_preproc_if_token2] = ACTIONS(1596), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1891), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1891), + [sym_preproc_directive] = ACTIONS(1894), + [anon_sym_LPAREN2] = ACTIONS(1604), + [anon_sym_TILDE] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1610), + [anon_sym_AMP_AMP] = ACTIONS(1613), + [anon_sym_AMP] = ACTIONS(1616), + [anon_sym_typedef] = ACTIONS(1897), + [anon_sym_extern] = ACTIONS(1622), + [anon_sym___attribute__] = ACTIONS(1625), + [anon_sym_COLON_COLON] = ACTIONS(1628), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1631), + [anon_sym___declspec] = ACTIONS(1634), + [anon_sym___based] = ACTIONS(1637), + [anon_sym_LBRACK] = ACTIONS(1640), + [anon_sym_static] = ACTIONS(1622), + [anon_sym_register] = ACTIONS(1622), + [anon_sym_inline] = ACTIONS(1622), + [anon_sym_thread_local] = ACTIONS(1622), + [anon_sym_const] = ACTIONS(1643), + [anon_sym_volatile] = ACTIONS(1643), + [anon_sym_restrict] = ACTIONS(1643), + [anon_sym__Atomic] = ACTIONS(1643), + [anon_sym_mutable] = ACTIONS(1643), + [anon_sym_constexpr] = ACTIONS(1643), + [anon_sym_constinit] = ACTIONS(1643), + [anon_sym_consteval] = ACTIONS(1643), + [anon_sym_signed] = ACTIONS(1646), + [anon_sym_unsigned] = ACTIONS(1646), + [anon_sym_long] = ACTIONS(1646), + [anon_sym_short] = ACTIONS(1646), + [sym_primitive_type] = ACTIONS(1649), + [anon_sym_enum] = ACTIONS(1652), + [anon_sym_class] = ACTIONS(1655), + [anon_sym_struct] = ACTIONS(1658), + [anon_sym_union] = ACTIONS(1661), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1664), + [anon_sym_decltype] = ACTIONS(1667), + [anon_sym_virtual] = ACTIONS(1670), + [anon_sym_explicit] = ACTIONS(1673), + [anon_sym_public] = ACTIONS(1900), + [anon_sym_private] = ACTIONS(1900), + [anon_sym_protected] = ACTIONS(1900), + [anon_sym_typename] = ACTIONS(1679), + [anon_sym_template] = ACTIONS(1903), + [anon_sym_operator] = ACTIONS(1685), + [anon_sym_friend] = ACTIONS(1906), + [anon_sym_using] = ACTIONS(1909), + [anon_sym_static_assert] = ACTIONS(1912), + }, + [160] = { + [sym_preproc_def] = STATE(154), + [sym_preproc_function_def] = STATE(154), + [sym_preproc_call] = STATE(154), + [sym_preproc_if_in_field_declaration_list] = STATE(154), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(154), + [sym_type_definition] = STATE(154), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4425), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(3343), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(4945), + [sym_array_declarator] = STATE(5080), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3521), + [sym_sized_type_specifier] = STATE(4001), + [sym_enum_specifier] = STATE(4001), + [sym_struct_specifier] = STATE(4001), + [sym_union_specifier] = STATE(4001), + [sym__field_declaration_list_item] = STATE(154), + [sym_field_declaration] = STATE(154), + [sym_placeholder_type_specifier] = STATE(4001), + [sym_decltype_auto] = STATE(4021), + [sym_decltype] = STATE(4001), + [sym_class_specifier] = STATE(4001), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1983), + [sym_dependent_type] = STATE(4001), + [sym_template_declaration] = STATE(154), + [sym_operator_cast] = STATE(5477), + [sym_inline_method_definition] = STATE(154), + [sym__constructor_specifiers] = STATE(1983), + [sym_operator_cast_definition] = STATE(154), + [sym_operator_cast_declaration] = STATE(154), + [sym_constructor_or_destructor_definition] = STATE(154), + [sym_constructor_or_destructor_declaration] = STATE(154), + [sym_friend_declaration] = STATE(154), + [sym_access_specifier] = STATE(154), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3395), + [sym_template_function] = STATE(5080), + [sym_using_declaration] = STATE(154), + [sym_alias_declaration] = STATE(154), + [sym_static_assert_declaration] = STATE(154), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4775), + [sym_qualified_identifier] = STATE(5080), + [sym_qualified_type_identifier] = STATE(4003), + [sym_qualified_operator_cast_identifier] = STATE(5477), + [sym_operator_name] = STATE(5080), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(154), + [aux_sym__declaration_specifiers_repeat1] = STATE(2191), + [aux_sym_sized_type_specifier_repeat1] = STATE(3805), + [aux_sym_operator_cast_definition_repeat1] = STATE(1983), + [sym_identifier] = ACTIONS(1503), + [aux_sym_preproc_def_token1] = ACTIONS(1777), + [aux_sym_preproc_if_token1] = ACTIONS(1779), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1781), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1781), + [sym_preproc_directive] = ACTIONS(1783), + [anon_sym_LPAREN2] = ACTIONS(1519), + [anon_sym_TILDE] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1523), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_typedef] = ACTIONS(1785), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(1529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_RBRACE] = ACTIONS(1915), + [anon_sym_LBRACK] = ACTIONS(1531), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1533), + [anon_sym_unsigned] = ACTIONS(1533), + [anon_sym_long] = ACTIONS(1533), + [anon_sym_short] = ACTIONS(1533), + [sym_primitive_type] = ACTIONS(1535), + [anon_sym_enum] = ACTIONS(1537), + [anon_sym_class] = ACTIONS(1539), + [anon_sym_struct] = ACTIONS(1541), + [anon_sym_union] = ACTIONS(1543), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1545), + [anon_sym_decltype] = ACTIONS(1547), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_public] = ACTIONS(1789), + [anon_sym_private] = ACTIONS(1789), + [anon_sym_protected] = ACTIONS(1789), + [anon_sym_typename] = ACTIONS(1551), + [anon_sym_template] = ACTIONS(1791), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_friend] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1795), + [anon_sym_static_assert] = ACTIONS(1797), + }, + [161] = { + [sym_preproc_def] = STATE(142), + [sym_preproc_function_def] = STATE(142), + [sym_preproc_call] = STATE(142), + [sym_preproc_if_in_field_declaration_list] = STATE(142), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(142), + [sym_type_definition] = STATE(142), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4425), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(3343), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(4945), + [sym_array_declarator] = STATE(5080), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3521), + [sym_sized_type_specifier] = STATE(4001), + [sym_enum_specifier] = STATE(4001), + [sym_struct_specifier] = STATE(4001), + [sym_union_specifier] = STATE(4001), + [sym__field_declaration_list_item] = STATE(142), + [sym_field_declaration] = STATE(142), + [sym_placeholder_type_specifier] = STATE(4001), + [sym_decltype_auto] = STATE(4021), + [sym_decltype] = STATE(4001), + [sym_class_specifier] = STATE(4001), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1983), + [sym_dependent_type] = STATE(4001), + [sym_template_declaration] = STATE(142), + [sym_operator_cast] = STATE(5477), + [sym_inline_method_definition] = STATE(142), + [sym__constructor_specifiers] = STATE(1983), + [sym_operator_cast_definition] = STATE(142), + [sym_operator_cast_declaration] = STATE(142), + [sym_constructor_or_destructor_definition] = STATE(142), + [sym_constructor_or_destructor_declaration] = STATE(142), + [sym_friend_declaration] = STATE(142), + [sym_access_specifier] = STATE(142), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3395), + [sym_template_function] = STATE(5080), + [sym_using_declaration] = STATE(142), + [sym_alias_declaration] = STATE(142), + [sym_static_assert_declaration] = STATE(142), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4775), + [sym_qualified_identifier] = STATE(5080), + [sym_qualified_type_identifier] = STATE(4003), + [sym_qualified_operator_cast_identifier] = STATE(5477), + [sym_operator_name] = STATE(5080), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(142), + [aux_sym__declaration_specifiers_repeat1] = STATE(2191), + [aux_sym_sized_type_specifier_repeat1] = STATE(3805), + [aux_sym_operator_cast_definition_repeat1] = STATE(1983), + [sym_identifier] = ACTIONS(1503), + [aux_sym_preproc_def_token1] = ACTIONS(1777), + [aux_sym_preproc_if_token1] = ACTIONS(1779), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1781), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1781), + [sym_preproc_directive] = ACTIONS(1783), + [anon_sym_LPAREN2] = ACTIONS(1519), + [anon_sym_TILDE] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1523), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_typedef] = ACTIONS(1785), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(1529), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_RBRACE] = ACTIONS(1917), + [anon_sym_LBRACK] = ACTIONS(1531), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1533), + [anon_sym_unsigned] = ACTIONS(1533), + [anon_sym_long] = ACTIONS(1533), + [anon_sym_short] = ACTIONS(1533), + [sym_primitive_type] = ACTIONS(1535), + [anon_sym_enum] = ACTIONS(1537), + [anon_sym_class] = ACTIONS(1539), + [anon_sym_struct] = ACTIONS(1541), + [anon_sym_union] = ACTIONS(1543), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1545), + [anon_sym_decltype] = ACTIONS(1547), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_public] = ACTIONS(1789), + [anon_sym_private] = ACTIONS(1789), + [anon_sym_protected] = ACTIONS(1789), + [anon_sym_typename] = ACTIONS(1551), + [anon_sym_template] = ACTIONS(1791), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_friend] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1795), + [anon_sym_static_assert] = ACTIONS(1797), + }, + [162] = { + [sym__expression] = STATE(2926), + [sym_conditional_expression] = STATE(2999), + [sym_assignment_expression] = STATE(2999), + [sym_pointer_expression] = STATE(2973), + [sym_unary_expression] = STATE(2999), + [sym_binary_expression] = STATE(2999), + [sym_update_expression] = STATE(2999), + [sym_cast_expression] = STATE(2999), + [sym_sizeof_expression] = STATE(2999), + [sym_subscript_expression] = STATE(2973), + [sym_call_expression] = STATE(2973), + [sym_field_expression] = STATE(2973), + [sym_compound_literal_expression] = STATE(2999), + [sym_parenthesized_expression] = STATE(2973), + [sym_initializer_list] = STATE(3003), + [sym_char_literal] = STATE(2933), + [sym_concatenated_string] = STATE(2933), + [sym_string_literal] = STATE(1927), + [sym__class_name] = STATE(6445), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2999), + [sym_co_await_expression] = STATE(2999), + [sym_new_expression] = STATE(2999), + [sym_delete_expression] = STATE(2999), + [sym_requires_clause] = STATE(2999), + [sym_requires_expression] = STATE(2999), + [sym_lambda_expression] = STATE(2999), + [sym_lambda_capture_specifier] = STATE(4767), + [sym_fold_expression] = STATE(2999), + [sym_parameter_pack_expansion] = STATE(2999), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2973), + [sym_qualified_type_identifier] = STATE(6445), + [sym_user_defined_literal] = STATE(2999), + [sym_identifier] = ACTIONS(1919), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1699), + [anon_sym_COMMA] = ACTIONS(1699), + [anon_sym_LPAREN2] = ACTIONS(1921), + [anon_sym_BANG] = ACTIONS(1923), + [anon_sym_TILDE] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1923), + [anon_sym_PLUS] = ACTIONS(1923), + [anon_sym_STAR] = ACTIONS(1927), + [anon_sym_SLASH] = ACTIONS(1707), + [anon_sym_PERCENT] = ACTIONS(1707), + [anon_sym_PIPE_PIPE] = ACTIONS(1699), + [anon_sym_AMP_AMP] = ACTIONS(1699), + [anon_sym_PIPE] = ACTIONS(1707), + [anon_sym_CARET] = ACTIONS(1707), + [anon_sym_AMP] = ACTIONS(1927), + [anon_sym_EQ_EQ] = ACTIONS(1699), + [anon_sym_BANG_EQ] = ACTIONS(1699), + [anon_sym_GT] = ACTIONS(1707), + [anon_sym_GT_EQ] = ACTIONS(1707), + [anon_sym_LT_EQ] = ACTIONS(1707), + [anon_sym_LT] = ACTIONS(1707), + [anon_sym_LT_LT] = ACTIONS(1707), + [anon_sym_GT_GT] = ACTIONS(1707), + [anon_sym_COLON_COLON] = ACTIONS(1929), + [anon_sym_LBRACE] = ACTIONS(1931), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_EQ] = ACTIONS(1707), + [sym_primitive_type] = ACTIONS(1933), + [anon_sym_QMARK] = ACTIONS(1699), + [anon_sym_STAR_EQ] = ACTIONS(1699), + [anon_sym_SLASH_EQ] = ACTIONS(1699), + [anon_sym_PERCENT_EQ] = ACTIONS(1699), + [anon_sym_PLUS_EQ] = ACTIONS(1699), + [anon_sym_DASH_EQ] = ACTIONS(1699), + [anon_sym_LT_LT_EQ] = ACTIONS(1699), + [anon_sym_GT_GT_EQ] = ACTIONS(1707), + [anon_sym_AMP_EQ] = ACTIONS(1699), + [anon_sym_CARET_EQ] = ACTIONS(1699), + [anon_sym_PIPE_EQ] = ACTIONS(1699), + [anon_sym_and_eq] = ACTIONS(1707), + [anon_sym_or_eq] = ACTIONS(1707), + [anon_sym_xor_eq] = ACTIONS(1707), + [anon_sym_not] = ACTIONS(1923), + [anon_sym_compl] = ACTIONS(1923), + [anon_sym_LT_EQ_GT] = ACTIONS(1699), + [anon_sym_or] = ACTIONS(1707), + [anon_sym_and] = ACTIONS(1707), + [anon_sym_bitor] = ACTIONS(1707), + [anon_sym_xor] = ACTIONS(1707), + [anon_sym_bitand] = ACTIONS(1707), + [anon_sym_not_eq] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1935), + [anon_sym_PLUS_PLUS] = ACTIONS(1935), + [anon_sym_sizeof] = ACTIONS(1937), + [anon_sym_DOT] = ACTIONS(1707), + [anon_sym_DASH_GT] = ACTIONS(1699), + [sym_number_literal] = ACTIONS(1939), + [anon_sym_L_SQUOTE] = ACTIONS(1941), + [anon_sym_u_SQUOTE] = ACTIONS(1941), + [anon_sym_U_SQUOTE] = ACTIONS(1941), + [anon_sym_u8_SQUOTE] = ACTIONS(1941), + [anon_sym_SQUOTE] = ACTIONS(1941), + [anon_sym_L_DQUOTE] = ACTIONS(1943), + [anon_sym_u_DQUOTE] = ACTIONS(1943), + [anon_sym_U_DQUOTE] = ACTIONS(1943), + [anon_sym_u8_DQUOTE] = ACTIONS(1943), + [anon_sym_DQUOTE] = ACTIONS(1943), + [sym_true] = ACTIONS(1945), + [sym_false] = ACTIONS(1945), + [sym_null] = ACTIONS(1945), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_GT2] = ACTIONS(1699), + [anon_sym_delete] = ACTIONS(1947), + [anon_sym_co_await] = ACTIONS(1949), + [anon_sym_new] = ACTIONS(1951), + [anon_sym_requires] = ACTIONS(1953), + [sym_this] = ACTIONS(1945), + [sym_nullptr] = ACTIONS(1945), + [sym_raw_string_literal] = ACTIONS(1955), + }, + [163] = { + [sym__expression] = STATE(3061), + [sym_conditional_expression] = STATE(3135), + [sym_assignment_expression] = STATE(3135), + [sym_pointer_expression] = STATE(2788), + [sym_unary_expression] = STATE(3135), + [sym_binary_expression] = STATE(3135), + [sym_update_expression] = STATE(3135), + [sym_cast_expression] = STATE(3135), + [sym_sizeof_expression] = STATE(3135), + [sym_subscript_expression] = STATE(2788), + [sym_call_expression] = STATE(2788), + [sym_field_expression] = STATE(2788), + [sym_compound_literal_expression] = STATE(3135), + [sym_parenthesized_expression] = STATE(2788), + [sym_initializer_list] = STATE(3098), + [sym_char_literal] = STATE(2981), + [sym_concatenated_string] = STATE(2981), + [sym_string_literal] = STATE(1970), + [sym__class_name] = STATE(6450), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3135), + [sym_co_await_expression] = STATE(3135), + [sym_new_expression] = STATE(3135), + [sym_delete_expression] = STATE(3135), + [sym_requires_clause] = STATE(3135), + [sym_requires_expression] = STATE(3135), + [sym_lambda_expression] = STATE(3135), + [sym_lambda_capture_specifier] = STATE(4771), + [sym_fold_expression] = STATE(3135), + [sym_parameter_pack_expansion] = STATE(3135), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4904), + [sym_qualified_identifier] = STATE(2788), + [sym_qualified_type_identifier] = STATE(6450), + [sym_user_defined_literal] = STATE(3135), + [sym_identifier] = ACTIONS(1957), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1699), + [anon_sym_COMMA] = ACTIONS(1699), + [anon_sym_RPAREN] = ACTIONS(1699), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1423), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1747), + [anon_sym_SLASH] = ACTIONS(1707), + [anon_sym_PERCENT] = ACTIONS(1707), + [anon_sym_PIPE_PIPE] = ACTIONS(1699), + [anon_sym_AMP_AMP] = ACTIONS(1699), + [anon_sym_PIPE] = ACTIONS(1707), + [anon_sym_CARET] = ACTIONS(1707), + [anon_sym_AMP] = ACTIONS(1747), + [anon_sym_EQ_EQ] = ACTIONS(1699), + [anon_sym_BANG_EQ] = ACTIONS(1699), + [anon_sym_GT] = ACTIONS(1707), + [anon_sym_GT_EQ] = ACTIONS(1699), + [anon_sym_LT_EQ] = ACTIONS(1707), + [anon_sym_LT] = ACTIONS(1707), + [anon_sym_LT_LT] = ACTIONS(1707), + [anon_sym_GT_GT] = ACTIONS(1707), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACE] = ACTIONS(1959), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_EQ] = ACTIONS(1707), + [sym_primitive_type] = ACTIONS(1753), + [anon_sym_QMARK] = ACTIONS(1699), + [anon_sym_STAR_EQ] = ACTIONS(1699), + [anon_sym_SLASH_EQ] = ACTIONS(1699), + [anon_sym_PERCENT_EQ] = ACTIONS(1699), + [anon_sym_PLUS_EQ] = ACTIONS(1699), + [anon_sym_DASH_EQ] = ACTIONS(1699), + [anon_sym_LT_LT_EQ] = ACTIONS(1699), + [anon_sym_GT_GT_EQ] = ACTIONS(1699), + [anon_sym_AMP_EQ] = ACTIONS(1699), + [anon_sym_CARET_EQ] = ACTIONS(1699), + [anon_sym_PIPE_EQ] = ACTIONS(1699), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_LT_EQ_GT] = ACTIONS(1699), + [anon_sym_or] = ACTIONS(1707), + [anon_sym_and] = ACTIONS(1707), + [anon_sym_bitor] = ACTIONS(1707), + [anon_sym_xor] = ACTIONS(1707), + [anon_sym_bitand] = ACTIONS(1707), + [anon_sym_not_eq] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [anon_sym_DOT] = ACTIONS(1707), + [anon_sym_DASH_GT] = ACTIONS(1707), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_co_await] = ACTIONS(1455), + [anon_sym_new] = ACTIONS(1457), + [anon_sym_requires] = ACTIONS(1459), + [anon_sym_DOT_STAR] = ACTIONS(1699), + [anon_sym_DASH_GT_STAR] = ACTIONS(1699), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + [sym_raw_string_literal] = ACTIONS(1461), + }, + [164] = { + [sym__expression] = STATE(2974), + [sym_conditional_expression] = STATE(2562), + [sym_assignment_expression] = STATE(2562), + [sym_pointer_expression] = STATE(2549), + [sym_unary_expression] = STATE(2562), + [sym_binary_expression] = STATE(2562), + [sym_update_expression] = STATE(2562), + [sym_cast_expression] = STATE(2562), + [sym_sizeof_expression] = STATE(2562), + [sym_subscript_expression] = STATE(2549), + [sym_call_expression] = STATE(2549), + [sym_field_expression] = STATE(2549), + [sym_compound_literal_expression] = STATE(2562), + [sym_parenthesized_expression] = STATE(2549), + [sym_initializer_list] = STATE(2500), + [sym_char_literal] = STATE(2344), + [sym_concatenated_string] = STATE(2344), + [sym_string_literal] = STATE(1824), + [sym__class_name] = STATE(6654), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2562), + [sym_co_await_expression] = STATE(2562), + [sym_new_expression] = STATE(2562), + [sym_delete_expression] = STATE(2562), + [sym_requires_clause] = STATE(2562), + [sym_requires_expression] = STATE(2562), + [sym_lambda_expression] = STATE(2562), + [sym_lambda_capture_specifier] = STATE(4787), + [sym_fold_expression] = STATE(2562), + [sym_parameter_pack_expansion] = STATE(2562), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2549), + [sym_qualified_type_identifier] = STATE(6654), + [sym_user_defined_literal] = STATE(2562), + [sym_identifier] = ACTIONS(1697), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1699), + [anon_sym_LPAREN2] = ACTIONS(1961), + [anon_sym_BANG] = ACTIONS(1963), + [anon_sym_TILDE] = ACTIONS(1965), + [anon_sym_DASH] = ACTIONS(1963), + [anon_sym_PLUS] = ACTIONS(1963), + [anon_sym_STAR] = ACTIONS(1967), + [anon_sym_SLASH] = ACTIONS(1707), + [anon_sym_PERCENT] = ACTIONS(1707), + [anon_sym_PIPE_PIPE] = ACTIONS(1699), + [anon_sym_AMP_AMP] = ACTIONS(1699), + [anon_sym_PIPE] = ACTIONS(1707), + [anon_sym_CARET] = ACTIONS(1707), + [anon_sym_AMP] = ACTIONS(1967), + [anon_sym_EQ_EQ] = ACTIONS(1699), + [anon_sym_BANG_EQ] = ACTIONS(1699), + [anon_sym_GT] = ACTIONS(1707), + [anon_sym_GT_EQ] = ACTIONS(1699), + [anon_sym_LT_EQ] = ACTIONS(1707), + [anon_sym_LT] = ACTIONS(1707), + [anon_sym_LT_LT] = ACTIONS(1707), + [anon_sym_GT_GT] = ACTIONS(1707), + [anon_sym_COLON_COLON] = ACTIONS(1969), + [anon_sym_LBRACE] = ACTIONS(1711), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_EQ] = ACTIONS(1707), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_COLON] = ACTIONS(1707), + [anon_sym_QMARK] = ACTIONS(1699), + [anon_sym_STAR_EQ] = ACTIONS(1699), + [anon_sym_SLASH_EQ] = ACTIONS(1699), + [anon_sym_PERCENT_EQ] = ACTIONS(1699), + [anon_sym_PLUS_EQ] = ACTIONS(1699), + [anon_sym_DASH_EQ] = ACTIONS(1699), + [anon_sym_LT_LT_EQ] = ACTIONS(1699), + [anon_sym_GT_GT_EQ] = ACTIONS(1699), + [anon_sym_AMP_EQ] = ACTIONS(1699), + [anon_sym_CARET_EQ] = ACTIONS(1699), + [anon_sym_PIPE_EQ] = ACTIONS(1699), + [anon_sym_and_eq] = ACTIONS(1707), + [anon_sym_or_eq] = ACTIONS(1707), + [anon_sym_xor_eq] = ACTIONS(1707), + [anon_sym_not] = ACTIONS(1963), + [anon_sym_compl] = ACTIONS(1963), + [anon_sym_LT_EQ_GT] = ACTIONS(1699), + [anon_sym_or] = ACTIONS(1707), + [anon_sym_and] = ACTIONS(1707), + [anon_sym_bitor] = ACTIONS(1707), + [anon_sym_xor] = ACTIONS(1707), + [anon_sym_bitand] = ACTIONS(1707), + [anon_sym_not_eq] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1971), + [anon_sym_sizeof] = ACTIONS(1973), + [anon_sym_DOT] = ACTIONS(1707), + [anon_sym_DASH_GT] = ACTIONS(1699), + [sym_number_literal] = ACTIONS(1721), + [anon_sym_L_SQUOTE] = ACTIONS(1723), + [anon_sym_u_SQUOTE] = ACTIONS(1723), + [anon_sym_U_SQUOTE] = ACTIONS(1723), + [anon_sym_u8_SQUOTE] = ACTIONS(1723), + [anon_sym_SQUOTE] = ACTIONS(1723), + [anon_sym_L_DQUOTE] = ACTIONS(1725), + [anon_sym_u_DQUOTE] = ACTIONS(1725), + [anon_sym_U_DQUOTE] = ACTIONS(1725), + [anon_sym_u8_DQUOTE] = ACTIONS(1725), + [anon_sym_DQUOTE] = ACTIONS(1725), + [sym_true] = ACTIONS(1727), + [sym_false] = ACTIONS(1727), + [sym_null] = ACTIONS(1727), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1975), + [anon_sym_co_await] = ACTIONS(1977), + [anon_sym_new] = ACTIONS(1979), + [anon_sym_requires] = ACTIONS(1735), + [sym_this] = ACTIONS(1727), + [sym_nullptr] = ACTIONS(1727), + [sym_raw_string_literal] = ACTIONS(1737), + }, + [165] = { + [sym_attribute_declaration] = STATE(179), + [sym_compound_statement] = STATE(6311), + [sym_attributed_statement] = STATE(6311), + [sym_labeled_statement] = STATE(6311), + [sym_expression_statement] = STATE(6311), + [sym_if_statement] = STATE(6311), + [sym_switch_statement] = STATE(6311), + [sym_case_statement] = STATE(6311), + [sym_while_statement] = STATE(6311), + [sym_do_statement] = STATE(6311), + [sym_for_statement] = STATE(6311), + [sym_return_statement] = STATE(6311), + [sym_break_statement] = STATE(6311), + [sym_continue_statement] = STATE(6311), + [sym_goto_statement] = STATE(6311), + [sym__expression] = STATE(3701), + [sym_comma_expression] = STATE(7176), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(6311), + [sym_co_return_statement] = STATE(6311), + [sym_co_yield_statement] = STATE(6311), + [sym_throw_statement] = STATE(6311), + [sym_try_statement] = STATE(6311), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(179), + [sym_identifier] = ACTIONS(1981), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1983), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1312), - [anon_sym_case] = ACTIONS(1835), - [anon_sym_default] = ACTIONS(1837), - [anon_sym_while] = ACTIONS(1314), - [anon_sym_do] = ACTIONS(1316), - [anon_sym_for] = ACTIONS(1318), - [anon_sym_return] = ACTIONS(1320), - [anon_sym_break] = ACTIONS(1322), - [anon_sym_continue] = ACTIONS(1324), - [anon_sym_goto] = ACTIONS(1326), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(1987), + [anon_sym_switch] = ACTIONS(1989), + [anon_sym_case] = ACTIONS(1991), + [anon_sym_default] = ACTIONS(1993), + [anon_sym_while] = ACTIONS(1995), + [anon_sym_do] = ACTIONS(1997), + [anon_sym_for] = ACTIONS(1999), + [anon_sym_return] = ACTIONS(2001), + [anon_sym_break] = ACTIONS(2003), + [anon_sym_continue] = ACTIONS(2005), + [anon_sym_goto] = ACTIONS(2007), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -51734,12 +54754,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(1328), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(2009), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(1330), - [anon_sym_co_return] = ACTIONS(1332), - [anon_sym_co_yield] = ACTIONS(1334), + [anon_sym_throw] = ACTIONS(2011), + [anon_sym_co_return] = ACTIONS(2013), + [anon_sym_co_yield] = ACTIONS(2015), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -51747,88 +54767,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [155] = { - [sym_attribute_declaration] = STATE(244), - [sym_compound_statement] = STATE(1116), - [sym_attributed_statement] = STATE(1116), - [sym_labeled_statement] = STATE(1116), - [sym_expression_statement] = STATE(1116), - [sym_if_statement] = STATE(1116), - [sym_switch_statement] = STATE(1116), - [sym_case_statement] = STATE(1116), - [sym_while_statement] = STATE(1116), - [sym_do_statement] = STATE(1116), - [sym_for_statement] = STATE(1116), - [sym_return_statement] = STATE(1116), - [sym_break_statement] = STATE(1116), - [sym_continue_statement] = STATE(1116), - [sym_goto_statement] = STATE(1116), - [sym__expression] = STATE(3670), - [sym_comma_expression] = STATE(6450), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(1116), - [sym_co_return_statement] = STATE(1116), - [sym_co_yield_statement] = STATE(1116), - [sym_throw_statement] = STATE(1116), - [sym_try_statement] = STATE(1116), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(244), - [sym_identifier] = ACTIONS(1831), - [anon_sym_LPAREN2] = ACTIONS(960), + [166] = { + [sym_attribute_declaration] = STATE(189), + [sym_compound_statement] = STATE(1230), + [sym_attributed_statement] = STATE(1221), + [sym_labeled_statement] = STATE(1220), + [sym_expression_statement] = STATE(1218), + [sym_if_statement] = STATE(1214), + [sym_switch_statement] = STATE(1212), + [sym_case_statement] = STATE(1180), + [sym_while_statement] = STATE(1176), + [sym_do_statement] = STATE(1175), + [sym_for_statement] = STATE(1173), + [sym_return_statement] = STATE(1158), + [sym_break_statement] = STATE(1156), + [sym_continue_statement] = STATE(1153), + [sym_goto_statement] = STATE(1151), + [sym__expression] = STATE(3699), + [sym_comma_expression] = STATE(6868), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(1150), + [sym_co_return_statement] = STATE(1149), + [sym_co_yield_statement] = STATE(1148), + [sym_throw_statement] = STATE(1145), + [sym_try_statement] = STATE(1131), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(189), + [sym_identifier] = ACTIONS(2017), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1359), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1312), - [anon_sym_case] = ACTIONS(1835), - [anon_sym_default] = ACTIONS(1837), - [anon_sym_while] = ACTIONS(1314), - [anon_sym_do] = ACTIONS(1316), - [anon_sym_for] = ACTIONS(1318), - [anon_sym_return] = ACTIONS(1320), - [anon_sym_break] = ACTIONS(1322), - [anon_sym_continue] = ACTIONS(1324), - [anon_sym_goto] = ACTIONS(1326), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1367), + [anon_sym_case] = ACTIONS(1991), + [anon_sym_default] = ACTIONS(1993), + [anon_sym_while] = ACTIONS(1369), + [anon_sym_do] = ACTIONS(1371), + [anon_sym_for] = ACTIONS(1373), + [anon_sym_return] = ACTIONS(1375), + [anon_sym_break] = ACTIONS(1377), + [anon_sym_continue] = ACTIONS(1379), + [anon_sym_goto] = ACTIONS(1381), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -51847,12 +54869,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(1328), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(1383), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(1330), - [anon_sym_co_return] = ACTIONS(1332), - [anon_sym_co_yield] = ACTIONS(1334), + [anon_sym_throw] = ACTIONS(1385), + [anon_sym_co_return] = ACTIONS(1387), + [anon_sym_co_yield] = ACTIONS(1389), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -51860,88 +54882,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [156] = { - [sym_attribute_declaration] = STATE(162), - [sym_compound_statement] = STATE(409), - [sym_attributed_statement] = STATE(409), - [sym_labeled_statement] = STATE(409), - [sym_expression_statement] = STATE(409), - [sym_if_statement] = STATE(409), - [sym_switch_statement] = STATE(409), - [sym_case_statement] = STATE(409), - [sym_while_statement] = STATE(409), - [sym_do_statement] = STATE(409), - [sym_for_statement] = STATE(409), - [sym_return_statement] = STATE(409), - [sym_break_statement] = STATE(409), - [sym_continue_statement] = STATE(409), - [sym_goto_statement] = STATE(409), - [sym__expression] = STATE(3579), - [sym_comma_expression] = STATE(6778), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(409), - [sym_co_return_statement] = STATE(409), - [sym_co_yield_statement] = STATE(409), - [sym_throw_statement] = STATE(409), - [sym_try_statement] = STATE(409), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(162), - [sym_identifier] = ACTIONS(1839), - [anon_sym_LPAREN2] = ACTIONS(960), + [167] = { + [sym_attribute_declaration] = STATE(191), + [sym_compound_statement] = STATE(811), + [sym_attributed_statement] = STATE(811), + [sym_labeled_statement] = STATE(811), + [sym_expression_statement] = STATE(811), + [sym_if_statement] = STATE(811), + [sym_switch_statement] = STATE(811), + [sym_case_statement] = STATE(811), + [sym_while_statement] = STATE(811), + [sym_do_statement] = STATE(811), + [sym_for_statement] = STATE(811), + [sym_return_statement] = STATE(811), + [sym_break_statement] = STATE(811), + [sym_continue_statement] = STATE(811), + [sym_goto_statement] = STATE(811), + [sym__expression] = STATE(3704), + [sym_comma_expression] = STATE(6857), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(811), + [sym_co_return_statement] = STATE(811), + [sym_co_yield_statement] = STATE(811), + [sym_throw_statement] = STATE(811), + [sym_try_statement] = STATE(811), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [sym_identifier] = ACTIONS(2019), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(159), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(253), - [anon_sym_switch] = ACTIONS(255), - [anon_sym_case] = ACTIONS(257), - [anon_sym_default] = ACTIONS(259), - [anon_sym_while] = ACTIONS(261), - [anon_sym_do] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_return] = ACTIONS(267), - [anon_sym_break] = ACTIONS(269), - [anon_sym_continue] = ACTIONS(271), - [anon_sym_goto] = ACTIONS(273), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -51960,12 +54984,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(277), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(197), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(279), - [anon_sym_co_return] = ACTIONS(289), - [anon_sym_co_yield] = ACTIONS(291), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -51973,88 +54997,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [157] = { - [sym_attribute_declaration] = STATE(162), - [sym_compound_statement] = STATE(394), - [sym_attributed_statement] = STATE(394), - [sym_labeled_statement] = STATE(394), - [sym_expression_statement] = STATE(394), - [sym_if_statement] = STATE(394), - [sym_switch_statement] = STATE(394), - [sym_case_statement] = STATE(394), - [sym_while_statement] = STATE(394), - [sym_do_statement] = STATE(394), - [sym_for_statement] = STATE(394), - [sym_return_statement] = STATE(394), - [sym_break_statement] = STATE(394), - [sym_continue_statement] = STATE(394), - [sym_goto_statement] = STATE(394), - [sym__expression] = STATE(3579), - [sym_comma_expression] = STATE(6778), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(394), - [sym_co_return_statement] = STATE(394), - [sym_co_yield_statement] = STATE(394), - [sym_throw_statement] = STATE(394), - [sym_try_statement] = STATE(394), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(162), - [sym_identifier] = ACTIONS(1839), - [anon_sym_LPAREN2] = ACTIONS(960), + [168] = { + [sym_attribute_declaration] = STATE(191), + [sym_compound_statement] = STATE(810), + [sym_attributed_statement] = STATE(809), + [sym_labeled_statement] = STATE(807), + [sym_expression_statement] = STATE(806), + [sym_if_statement] = STATE(805), + [sym_switch_statement] = STATE(804), + [sym_case_statement] = STATE(803), + [sym_while_statement] = STATE(802), + [sym_do_statement] = STATE(801), + [sym_for_statement] = STATE(800), + [sym_return_statement] = STATE(799), + [sym_break_statement] = STATE(798), + [sym_continue_statement] = STATE(797), + [sym_goto_statement] = STATE(796), + [sym__expression] = STATE(3704), + [sym_comma_expression] = STATE(6857), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(795), + [sym_co_return_statement] = STATE(794), + [sym_co_yield_statement] = STATE(793), + [sym_throw_statement] = STATE(792), + [sym_try_statement] = STATE(791), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [sym_identifier] = ACTIONS(2019), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(159), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(253), - [anon_sym_switch] = ACTIONS(255), - [anon_sym_case] = ACTIONS(257), - [anon_sym_default] = ACTIONS(259), - [anon_sym_while] = ACTIONS(261), - [anon_sym_do] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_return] = ACTIONS(267), - [anon_sym_break] = ACTIONS(269), - [anon_sym_continue] = ACTIONS(271), - [anon_sym_goto] = ACTIONS(273), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -52073,12 +55099,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(277), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(197), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(279), - [anon_sym_co_return] = ACTIONS(289), - [anon_sym_co_yield] = ACTIONS(291), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -52086,88 +55112,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [158] = { - [sym_attribute_declaration] = STATE(162), - [sym_compound_statement] = STATE(358), - [sym_attributed_statement] = STATE(358), - [sym_labeled_statement] = STATE(358), - [sym_expression_statement] = STATE(358), - [sym_if_statement] = STATE(358), - [sym_switch_statement] = STATE(358), - [sym_case_statement] = STATE(358), - [sym_while_statement] = STATE(358), - [sym_do_statement] = STATE(358), - [sym_for_statement] = STATE(358), - [sym_return_statement] = STATE(358), - [sym_break_statement] = STATE(358), - [sym_continue_statement] = STATE(358), - [sym_goto_statement] = STATE(358), - [sym__expression] = STATE(3579), - [sym_comma_expression] = STATE(6778), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(358), - [sym_co_return_statement] = STATE(358), - [sym_co_yield_statement] = STATE(358), - [sym_throw_statement] = STATE(358), - [sym_try_statement] = STATE(358), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(162), - [sym_identifier] = ACTIONS(1839), - [anon_sym_LPAREN2] = ACTIONS(960), + [169] = { + [sym_attribute_declaration] = STATE(191), + [sym_compound_statement] = STATE(790), + [sym_attributed_statement] = STATE(789), + [sym_labeled_statement] = STATE(788), + [sym_expression_statement] = STATE(787), + [sym_if_statement] = STATE(785), + [sym_switch_statement] = STATE(784), + [sym_case_statement] = STATE(783), + [sym_while_statement] = STATE(782), + [sym_do_statement] = STATE(781), + [sym_for_statement] = STATE(780), + [sym_return_statement] = STATE(779), + [sym_break_statement] = STATE(778), + [sym_continue_statement] = STATE(777), + [sym_goto_statement] = STATE(776), + [sym__expression] = STATE(3704), + [sym_comma_expression] = STATE(6857), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(775), + [sym_co_return_statement] = STATE(774), + [sym_co_yield_statement] = STATE(773), + [sym_throw_statement] = STATE(772), + [sym_try_statement] = STATE(771), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [sym_identifier] = ACTIONS(2019), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(159), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(253), - [anon_sym_switch] = ACTIONS(255), - [anon_sym_case] = ACTIONS(257), - [anon_sym_default] = ACTIONS(259), - [anon_sym_while] = ACTIONS(261), - [anon_sym_do] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_return] = ACTIONS(267), - [anon_sym_break] = ACTIONS(269), - [anon_sym_continue] = ACTIONS(271), - [anon_sym_goto] = ACTIONS(273), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -52186,12 +55214,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(277), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(197), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(279), - [anon_sym_co_return] = ACTIONS(289), - [anon_sym_co_yield] = ACTIONS(291), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -52199,88 +55227,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [159] = { - [sym_attribute_declaration] = STATE(162), - [sym_compound_statement] = STATE(359), - [sym_attributed_statement] = STATE(359), - [sym_labeled_statement] = STATE(359), - [sym_expression_statement] = STATE(359), - [sym_if_statement] = STATE(359), - [sym_switch_statement] = STATE(359), - [sym_case_statement] = STATE(359), - [sym_while_statement] = STATE(359), - [sym_do_statement] = STATE(359), - [sym_for_statement] = STATE(359), - [sym_return_statement] = STATE(359), - [sym_break_statement] = STATE(359), - [sym_continue_statement] = STATE(359), - [sym_goto_statement] = STATE(359), - [sym__expression] = STATE(3579), - [sym_comma_expression] = STATE(6778), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(359), - [sym_co_return_statement] = STATE(359), - [sym_co_yield_statement] = STATE(359), - [sym_throw_statement] = STATE(359), - [sym_try_statement] = STATE(359), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(162), - [sym_identifier] = ACTIONS(1839), - [anon_sym_LPAREN2] = ACTIONS(960), + [170] = { + [sym_attribute_declaration] = STATE(191), + [sym_compound_statement] = STATE(770), + [sym_attributed_statement] = STATE(770), + [sym_labeled_statement] = STATE(770), + [sym_expression_statement] = STATE(770), + [sym_if_statement] = STATE(770), + [sym_switch_statement] = STATE(770), + [sym_case_statement] = STATE(770), + [sym_while_statement] = STATE(770), + [sym_do_statement] = STATE(770), + [sym_for_statement] = STATE(770), + [sym_return_statement] = STATE(770), + [sym_break_statement] = STATE(770), + [sym_continue_statement] = STATE(770), + [sym_goto_statement] = STATE(770), + [sym__expression] = STATE(3704), + [sym_comma_expression] = STATE(6857), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(770), + [sym_co_return_statement] = STATE(770), + [sym_co_yield_statement] = STATE(770), + [sym_throw_statement] = STATE(770), + [sym_try_statement] = STATE(770), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [sym_identifier] = ACTIONS(2019), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(159), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(253), - [anon_sym_switch] = ACTIONS(255), - [anon_sym_case] = ACTIONS(257), - [anon_sym_default] = ACTIONS(259), - [anon_sym_while] = ACTIONS(261), - [anon_sym_do] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_return] = ACTIONS(267), - [anon_sym_break] = ACTIONS(269), - [anon_sym_continue] = ACTIONS(271), - [anon_sym_goto] = ACTIONS(273), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -52299,12 +55329,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(277), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(197), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(279), - [anon_sym_co_return] = ACTIONS(289), - [anon_sym_co_yield] = ACTIONS(291), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -52312,88 +55342,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [160] = { - [sym_attribute_declaration] = STATE(162), - [sym_compound_statement] = STATE(373), - [sym_attributed_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_switch_statement] = STATE(373), - [sym_case_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_goto_statement] = STATE(373), - [sym__expression] = STATE(3579), - [sym_comma_expression] = STATE(6778), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(373), - [sym_co_return_statement] = STATE(373), - [sym_co_yield_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(162), - [sym_identifier] = ACTIONS(1839), - [anon_sym_LPAREN2] = ACTIONS(960), + [171] = { + [sym_attribute_declaration] = STATE(191), + [sym_compound_statement] = STATE(769), + [sym_attributed_statement] = STATE(769), + [sym_labeled_statement] = STATE(769), + [sym_expression_statement] = STATE(769), + [sym_if_statement] = STATE(769), + [sym_switch_statement] = STATE(769), + [sym_case_statement] = STATE(769), + [sym_while_statement] = STATE(769), + [sym_do_statement] = STATE(769), + [sym_for_statement] = STATE(769), + [sym_return_statement] = STATE(769), + [sym_break_statement] = STATE(769), + [sym_continue_statement] = STATE(769), + [sym_goto_statement] = STATE(769), + [sym__expression] = STATE(3704), + [sym_comma_expression] = STATE(6857), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(769), + [sym_co_return_statement] = STATE(769), + [sym_co_yield_statement] = STATE(769), + [sym_throw_statement] = STATE(769), + [sym_try_statement] = STATE(769), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [sym_identifier] = ACTIONS(2019), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(159), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(253), - [anon_sym_switch] = ACTIONS(255), - [anon_sym_case] = ACTIONS(257), - [anon_sym_default] = ACTIONS(259), - [anon_sym_while] = ACTIONS(261), - [anon_sym_do] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_return] = ACTIONS(267), - [anon_sym_break] = ACTIONS(269), - [anon_sym_continue] = ACTIONS(271), - [anon_sym_goto] = ACTIONS(273), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -52412,12 +55444,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(277), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(197), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(279), - [anon_sym_co_return] = ACTIONS(289), - [anon_sym_co_yield] = ACTIONS(291), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -52425,88 +55457,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [161] = { - [sym_attribute_declaration] = STATE(183), - [sym_compound_statement] = STATE(6057), - [sym_attributed_statement] = STATE(6057), - [sym_labeled_statement] = STATE(6057), - [sym_expression_statement] = STATE(6057), - [sym_if_statement] = STATE(6057), - [sym_switch_statement] = STATE(6057), - [sym_case_statement] = STATE(6057), - [sym_while_statement] = STATE(6057), - [sym_do_statement] = STATE(6057), - [sym_for_statement] = STATE(6057), - [sym_return_statement] = STATE(6057), - [sym_break_statement] = STATE(6057), - [sym_continue_statement] = STATE(6057), - [sym_goto_statement] = STATE(6057), - [sym__expression] = STATE(3728), - [sym_comma_expression] = STATE(6585), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(6057), - [sym_co_return_statement] = STATE(6057), - [sym_co_yield_statement] = STATE(6057), - [sym_throw_statement] = STATE(6057), - [sym_try_statement] = STATE(6057), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(183), - [sym_identifier] = ACTIONS(1841), - [anon_sym_LPAREN2] = ACTIONS(960), + [172] = { + [sym_attribute_declaration] = STATE(189), + [sym_compound_statement] = STATE(1223), + [sym_attributed_statement] = STATE(1223), + [sym_labeled_statement] = STATE(1223), + [sym_expression_statement] = STATE(1223), + [sym_if_statement] = STATE(1223), + [sym_switch_statement] = STATE(1223), + [sym_case_statement] = STATE(1223), + [sym_while_statement] = STATE(1223), + [sym_do_statement] = STATE(1223), + [sym_for_statement] = STATE(1223), + [sym_return_statement] = STATE(1223), + [sym_break_statement] = STATE(1223), + [sym_continue_statement] = STATE(1223), + [sym_goto_statement] = STATE(1223), + [sym__expression] = STATE(3699), + [sym_comma_expression] = STATE(6868), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(1223), + [sym_co_return_statement] = STATE(1223), + [sym_co_yield_statement] = STATE(1223), + [sym_throw_statement] = STATE(1223), + [sym_try_statement] = STATE(1223), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(189), + [sym_identifier] = ACTIONS(2017), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(1843), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1359), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(1845), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(1847), - [anon_sym_switch] = ACTIONS(1849), - [anon_sym_case] = ACTIONS(1835), - [anon_sym_default] = ACTIONS(1837), - [anon_sym_while] = ACTIONS(1851), - [anon_sym_do] = ACTIONS(1853), - [anon_sym_for] = ACTIONS(1855), - [anon_sym_return] = ACTIONS(1857), - [anon_sym_break] = ACTIONS(1859), - [anon_sym_continue] = ACTIONS(1861), - [anon_sym_goto] = ACTIONS(1863), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1367), + [anon_sym_case] = ACTIONS(1991), + [anon_sym_default] = ACTIONS(1993), + [anon_sym_while] = ACTIONS(1369), + [anon_sym_do] = ACTIONS(1371), + [anon_sym_for] = ACTIONS(1373), + [anon_sym_return] = ACTIONS(1375), + [anon_sym_break] = ACTIONS(1377), + [anon_sym_continue] = ACTIONS(1379), + [anon_sym_goto] = ACTIONS(1381), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -52525,12 +55559,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(1865), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(1383), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(1867), - [anon_sym_co_return] = ACTIONS(1869), - [anon_sym_co_yield] = ACTIONS(1871), + [anon_sym_throw] = ACTIONS(1385), + [anon_sym_co_return] = ACTIONS(1387), + [anon_sym_co_yield] = ACTIONS(1389), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -52538,88 +55572,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [162] = { - [sym_attribute_declaration] = STATE(168), - [sym_compound_statement] = STATE(355), - [sym_attributed_statement] = STATE(355), - [sym_labeled_statement] = STATE(355), - [sym_expression_statement] = STATE(355), - [sym_if_statement] = STATE(355), - [sym_switch_statement] = STATE(355), - [sym_case_statement] = STATE(355), - [sym_while_statement] = STATE(355), - [sym_do_statement] = STATE(355), - [sym_for_statement] = STATE(355), - [sym_return_statement] = STATE(355), - [sym_break_statement] = STATE(355), - [sym_continue_statement] = STATE(355), - [sym_goto_statement] = STATE(355), - [sym__expression] = STATE(3579), - [sym_comma_expression] = STATE(6778), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(355), - [sym_co_return_statement] = STATE(355), - [sym_co_yield_statement] = STATE(355), - [sym_throw_statement] = STATE(355), - [sym_try_statement] = STATE(355), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(168), - [sym_identifier] = ACTIONS(1839), - [anon_sym_LPAREN2] = ACTIONS(960), + [173] = { + [sym_attribute_declaration] = STATE(191), + [sym_compound_statement] = STATE(833), + [sym_attributed_statement] = STATE(833), + [sym_labeled_statement] = STATE(833), + [sym_expression_statement] = STATE(833), + [sym_if_statement] = STATE(833), + [sym_switch_statement] = STATE(833), + [sym_case_statement] = STATE(833), + [sym_while_statement] = STATE(833), + [sym_do_statement] = STATE(833), + [sym_for_statement] = STATE(833), + [sym_return_statement] = STATE(833), + [sym_break_statement] = STATE(833), + [sym_continue_statement] = STATE(833), + [sym_goto_statement] = STATE(833), + [sym__expression] = STATE(3704), + [sym_comma_expression] = STATE(6857), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(833), + [sym_co_return_statement] = STATE(833), + [sym_co_yield_statement] = STATE(833), + [sym_throw_statement] = STATE(833), + [sym_try_statement] = STATE(833), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [sym_identifier] = ACTIONS(2019), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(159), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(253), - [anon_sym_switch] = ACTIONS(255), - [anon_sym_case] = ACTIONS(257), - [anon_sym_default] = ACTIONS(259), - [anon_sym_while] = ACTIONS(261), - [anon_sym_do] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_return] = ACTIONS(267), - [anon_sym_break] = ACTIONS(269), - [anon_sym_continue] = ACTIONS(271), - [anon_sym_goto] = ACTIONS(273), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -52638,12 +55674,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(277), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(197), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(279), - [anon_sym_co_return] = ACTIONS(289), - [anon_sym_co_yield] = ACTIONS(291), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -52651,88 +55687,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [163] = { - [sym_attribute_declaration] = STATE(183), - [sym_compound_statement] = STATE(6052), - [sym_attributed_statement] = STATE(6052), - [sym_labeled_statement] = STATE(6052), - [sym_expression_statement] = STATE(6052), - [sym_if_statement] = STATE(6052), - [sym_switch_statement] = STATE(6052), - [sym_case_statement] = STATE(6052), - [sym_while_statement] = STATE(6052), - [sym_do_statement] = STATE(6052), - [sym_for_statement] = STATE(6052), - [sym_return_statement] = STATE(6052), - [sym_break_statement] = STATE(6052), - [sym_continue_statement] = STATE(6052), - [sym_goto_statement] = STATE(6052), - [sym__expression] = STATE(3728), - [sym_comma_expression] = STATE(6585), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(6052), - [sym_co_return_statement] = STATE(6052), - [sym_co_yield_statement] = STATE(6052), - [sym_throw_statement] = STATE(6052), - [sym_try_statement] = STATE(6052), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(183), - [sym_identifier] = ACTIONS(1841), - [anon_sym_LPAREN2] = ACTIONS(960), + [174] = { + [sym_attribute_declaration] = STATE(191), + [sym_compound_statement] = STATE(765), + [sym_attributed_statement] = STATE(765), + [sym_labeled_statement] = STATE(765), + [sym_expression_statement] = STATE(765), + [sym_if_statement] = STATE(765), + [sym_switch_statement] = STATE(765), + [sym_case_statement] = STATE(765), + [sym_while_statement] = STATE(765), + [sym_do_statement] = STATE(765), + [sym_for_statement] = STATE(765), + [sym_return_statement] = STATE(765), + [sym_break_statement] = STATE(765), + [sym_continue_statement] = STATE(765), + [sym_goto_statement] = STATE(765), + [sym__expression] = STATE(3704), + [sym_comma_expression] = STATE(6857), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(765), + [sym_co_return_statement] = STATE(765), + [sym_co_yield_statement] = STATE(765), + [sym_throw_statement] = STATE(765), + [sym_try_statement] = STATE(765), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [sym_identifier] = ACTIONS(2019), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(1843), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(159), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(1845), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(1847), - [anon_sym_switch] = ACTIONS(1849), - [anon_sym_case] = ACTIONS(1835), - [anon_sym_default] = ACTIONS(1837), - [anon_sym_while] = ACTIONS(1851), - [anon_sym_do] = ACTIONS(1853), - [anon_sym_for] = ACTIONS(1855), - [anon_sym_return] = ACTIONS(1857), - [anon_sym_break] = ACTIONS(1859), - [anon_sym_continue] = ACTIONS(1861), - [anon_sym_goto] = ACTIONS(1863), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -52751,12 +55789,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(1865), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(197), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(1867), - [anon_sym_co_return] = ACTIONS(1869), - [anon_sym_co_yield] = ACTIONS(1871), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -52764,88 +55802,205 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [164] = { - [sym_attribute_declaration] = STATE(162), - [sym_compound_statement] = STATE(361), - [sym_attributed_statement] = STATE(361), - [sym_labeled_statement] = STATE(361), - [sym_expression_statement] = STATE(361), - [sym_if_statement] = STATE(361), - [sym_switch_statement] = STATE(361), - [sym_case_statement] = STATE(361), - [sym_while_statement] = STATE(361), - [sym_do_statement] = STATE(361), - [sym_for_statement] = STATE(361), - [sym_return_statement] = STATE(361), - [sym_break_statement] = STATE(361), - [sym_continue_statement] = STATE(361), - [sym_goto_statement] = STATE(361), - [sym__expression] = STATE(3579), - [sym_comma_expression] = STATE(6778), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(361), - [sym_co_return_statement] = STATE(361), - [sym_co_yield_statement] = STATE(361), - [sym_throw_statement] = STATE(361), - [sym_try_statement] = STATE(361), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(162), - [sym_identifier] = ACTIONS(1839), - [anon_sym_LPAREN2] = ACTIONS(960), + [175] = { + [sym_attribute_declaration] = STATE(175), + [sym_compound_statement] = STATE(1125), + [sym_attributed_statement] = STATE(1125), + [sym_labeled_statement] = STATE(1125), + [sym_expression_statement] = STATE(1125), + [sym_if_statement] = STATE(1125), + [sym_switch_statement] = STATE(1125), + [sym_case_statement] = STATE(1125), + [sym_while_statement] = STATE(1125), + [sym_do_statement] = STATE(1125), + [sym_for_statement] = STATE(1125), + [sym_return_statement] = STATE(1125), + [sym_break_statement] = STATE(1125), + [sym_continue_statement] = STATE(1125), + [sym_goto_statement] = STATE(1125), + [sym__expression] = STATE(3699), + [sym_comma_expression] = STATE(6868), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(1125), + [sym_co_return_statement] = STATE(1125), + [sym_co_yield_statement] = STATE(1125), + [sym_throw_statement] = STATE(1125), + [sym_try_statement] = STATE(1125), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(175), + [sym_identifier] = ACTIONS(2021), + [anon_sym_LPAREN2] = ACTIONS(2024), + [anon_sym_BANG] = ACTIONS(2027), + [anon_sym_TILDE] = ACTIONS(2027), + [anon_sym_DASH] = ACTIONS(2030), + [anon_sym_PLUS] = ACTIONS(2030), + [anon_sym_STAR] = ACTIONS(2033), + [anon_sym_AMP] = ACTIONS(2033), + [anon_sym_SEMI] = ACTIONS(2036), + [anon_sym_COLON_COLON] = ACTIONS(2039), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2042), + [anon_sym_LBRACE] = ACTIONS(2045), + [anon_sym_LBRACK] = ACTIONS(2048), + [sym_primitive_type] = ACTIONS(2051), + [anon_sym_if] = ACTIONS(2054), + [anon_sym_switch] = ACTIONS(2057), + [anon_sym_case] = ACTIONS(2060), + [anon_sym_default] = ACTIONS(2063), + [anon_sym_while] = ACTIONS(2066), + [anon_sym_do] = ACTIONS(2069), + [anon_sym_for] = ACTIONS(2072), + [anon_sym_return] = ACTIONS(2075), + [anon_sym_break] = ACTIONS(2078), + [anon_sym_continue] = ACTIONS(2081), + [anon_sym_goto] = ACTIONS(2084), + [anon_sym_not] = ACTIONS(2030), + [anon_sym_compl] = ACTIONS(2030), + [anon_sym_DASH_DASH] = ACTIONS(2087), + [anon_sym_PLUS_PLUS] = ACTIONS(2087), + [anon_sym_sizeof] = ACTIONS(2090), + [sym_number_literal] = ACTIONS(2093), + [anon_sym_L_SQUOTE] = ACTIONS(2096), + [anon_sym_u_SQUOTE] = ACTIONS(2096), + [anon_sym_U_SQUOTE] = ACTIONS(2096), + [anon_sym_u8_SQUOTE] = ACTIONS(2096), + [anon_sym_SQUOTE] = ACTIONS(2096), + [anon_sym_L_DQUOTE] = ACTIONS(2099), + [anon_sym_u_DQUOTE] = ACTIONS(2099), + [anon_sym_U_DQUOTE] = ACTIONS(2099), + [anon_sym_u8_DQUOTE] = ACTIONS(2099), + [anon_sym_DQUOTE] = ACTIONS(2099), + [sym_true] = ACTIONS(2102), + [sym_false] = ACTIONS(2102), + [sym_null] = ACTIONS(2102), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(2105), + [anon_sym_try] = ACTIONS(2108), + [anon_sym_delete] = ACTIONS(2111), + [anon_sym_throw] = ACTIONS(2114), + [anon_sym_co_return] = ACTIONS(2117), + [anon_sym_co_yield] = ACTIONS(2120), + [anon_sym_co_await] = ACTIONS(2123), + [anon_sym_new] = ACTIONS(2126), + [anon_sym_requires] = ACTIONS(2129), + [sym_this] = ACTIONS(2102), + [sym_nullptr] = ACTIONS(2102), + [sym_raw_string_literal] = ACTIONS(2132), + }, + [176] = { + [sym_attribute_declaration] = STATE(191), + [sym_compound_statement] = STATE(764), + [sym_attributed_statement] = STATE(760), + [sym_labeled_statement] = STATE(759), + [sym_expression_statement] = STATE(758), + [sym_if_statement] = STATE(757), + [sym_switch_statement] = STATE(756), + [sym_case_statement] = STATE(755), + [sym_while_statement] = STATE(754), + [sym_do_statement] = STATE(753), + [sym_for_statement] = STATE(752), + [sym_return_statement] = STATE(751), + [sym_break_statement] = STATE(749), + [sym_continue_statement] = STATE(748), + [sym_goto_statement] = STATE(747), + [sym__expression] = STATE(3704), + [sym_comma_expression] = STATE(6857), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(746), + [sym_co_return_statement] = STATE(745), + [sym_co_yield_statement] = STATE(744), + [sym_throw_statement] = STATE(742), + [sym_try_statement] = STATE(741), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [sym_identifier] = ACTIONS(2019), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(159), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(253), - [anon_sym_switch] = ACTIONS(255), - [anon_sym_case] = ACTIONS(257), - [anon_sym_default] = ACTIONS(259), - [anon_sym_while] = ACTIONS(261), - [anon_sym_do] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_return] = ACTIONS(267), - [anon_sym_break] = ACTIONS(269), - [anon_sym_continue] = ACTIONS(271), - [anon_sym_goto] = ACTIONS(273), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -52864,12 +56019,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(277), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(197), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(279), - [anon_sym_co_return] = ACTIONS(289), - [anon_sym_co_yield] = ACTIONS(291), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -52877,88 +56032,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [165] = { - [sym_attribute_declaration] = STATE(162), - [sym_compound_statement] = STATE(367), - [sym_attributed_statement] = STATE(367), - [sym_labeled_statement] = STATE(367), - [sym_expression_statement] = STATE(367), - [sym_if_statement] = STATE(367), - [sym_switch_statement] = STATE(367), - [sym_case_statement] = STATE(367), - [sym_while_statement] = STATE(367), - [sym_do_statement] = STATE(367), - [sym_for_statement] = STATE(367), - [sym_return_statement] = STATE(367), - [sym_break_statement] = STATE(367), - [sym_continue_statement] = STATE(367), - [sym_goto_statement] = STATE(367), - [sym__expression] = STATE(3579), - [sym_comma_expression] = STATE(6778), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(367), - [sym_co_return_statement] = STATE(367), - [sym_co_yield_statement] = STATE(367), - [sym_throw_statement] = STATE(367), - [sym_try_statement] = STATE(367), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(162), - [sym_identifier] = ACTIONS(1839), - [anon_sym_LPAREN2] = ACTIONS(960), + [177] = { + [sym_attribute_declaration] = STATE(191), + [sym_compound_statement] = STATE(740), + [sym_attributed_statement] = STATE(739), + [sym_labeled_statement] = STATE(738), + [sym_expression_statement] = STATE(737), + [sym_if_statement] = STATE(736), + [sym_switch_statement] = STATE(735), + [sym_case_statement] = STATE(734), + [sym_while_statement] = STATE(733), + [sym_do_statement] = STATE(732), + [sym_for_statement] = STATE(731), + [sym_return_statement] = STATE(730), + [sym_break_statement] = STATE(729), + [sym_continue_statement] = STATE(728), + [sym_goto_statement] = STATE(727), + [sym__expression] = STATE(3704), + [sym_comma_expression] = STATE(6857), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(550), + [sym_co_return_statement] = STATE(723), + [sym_co_yield_statement] = STATE(722), + [sym_throw_statement] = STATE(721), + [sym_try_statement] = STATE(720), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [sym_identifier] = ACTIONS(2019), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(159), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(253), - [anon_sym_switch] = ACTIONS(255), - [anon_sym_case] = ACTIONS(257), - [anon_sym_default] = ACTIONS(259), - [anon_sym_while] = ACTIONS(261), - [anon_sym_do] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_return] = ACTIONS(267), - [anon_sym_break] = ACTIONS(269), - [anon_sym_continue] = ACTIONS(271), - [anon_sym_goto] = ACTIONS(273), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -52977,12 +56134,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(277), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(197), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(279), - [anon_sym_co_return] = ACTIONS(289), - [anon_sym_co_yield] = ACTIONS(291), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -52990,77 +56147,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [166] = { - [sym_attribute_declaration] = STATE(162), - [sym_compound_statement] = STATE(368), - [sym_attributed_statement] = STATE(368), - [sym_labeled_statement] = STATE(368), - [sym_expression_statement] = STATE(368), - [sym_if_statement] = STATE(368), - [sym_switch_statement] = STATE(368), - [sym_case_statement] = STATE(368), - [sym_while_statement] = STATE(368), - [sym_do_statement] = STATE(368), - [sym_for_statement] = STATE(368), - [sym_return_statement] = STATE(368), - [sym_break_statement] = STATE(368), - [sym_continue_statement] = STATE(368), - [sym_goto_statement] = STATE(368), - [sym__expression] = STATE(3579), - [sym_comma_expression] = STATE(6778), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(368), - [sym_co_return_statement] = STATE(368), - [sym_co_yield_statement] = STATE(368), - [sym_throw_statement] = STATE(368), - [sym_try_statement] = STATE(368), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(162), - [sym_identifier] = ACTIONS(1839), - [anon_sym_LPAREN2] = ACTIONS(960), + [178] = { + [sym_attribute_declaration] = STATE(290), + [sym_compound_statement] = STATE(464), + [sym_attributed_statement] = STATE(464), + [sym_labeled_statement] = STATE(464), + [sym_expression_statement] = STATE(464), + [sym_if_statement] = STATE(464), + [sym_switch_statement] = STATE(464), + [sym_case_statement] = STATE(464), + [sym_while_statement] = STATE(464), + [sym_do_statement] = STATE(464), + [sym_for_statement] = STATE(464), + [sym_return_statement] = STATE(464), + [sym_break_statement] = STATE(464), + [sym_continue_statement] = STATE(464), + [sym_goto_statement] = STATE(464), + [sym__expression] = STATE(3680), + [sym_comma_expression] = STATE(7175), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(464), + [sym_co_return_statement] = STATE(464), + [sym_co_yield_statement] = STATE(464), + [sym_throw_statement] = STATE(464), + [sym_try_statement] = STATE(464), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(290), + [sym_identifier] = ACTIONS(2135), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), [anon_sym_SEMI] = ACTIONS(245), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), [anon_sym_if] = ACTIONS(253), [anon_sym_switch] = ACTIONS(255), [anon_sym_case] = ACTIONS(257), @@ -53072,6 +56229,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(269), [anon_sym_continue] = ACTIONS(271), [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -53090,7 +56249,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), + [anon_sym_template] = ACTIONS(976), [anon_sym_try] = ACTIONS(277), [anon_sym_delete] = ACTIONS(121), [anon_sym_throw] = ACTIONS(279), @@ -53103,88 +56262,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [167] = { - [sym_attribute_declaration] = STATE(183), - [sym_compound_statement] = STATE(6061), - [sym_attributed_statement] = STATE(6061), - [sym_labeled_statement] = STATE(6061), - [sym_expression_statement] = STATE(6061), - [sym_if_statement] = STATE(6061), - [sym_switch_statement] = STATE(6061), - [sym_case_statement] = STATE(6061), - [sym_while_statement] = STATE(6061), - [sym_do_statement] = STATE(6061), - [sym_for_statement] = STATE(6061), - [sym_return_statement] = STATE(6061), - [sym_break_statement] = STATE(6061), - [sym_continue_statement] = STATE(6061), - [sym_goto_statement] = STATE(6061), - [sym__expression] = STATE(3728), - [sym_comma_expression] = STATE(6585), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(6061), - [sym_co_return_statement] = STATE(6061), - [sym_co_yield_statement] = STATE(6061), - [sym_throw_statement] = STATE(6061), - [sym_try_statement] = STATE(6061), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(183), - [sym_identifier] = ACTIONS(1841), - [anon_sym_LPAREN2] = ACTIONS(960), + [179] = { + [sym_attribute_declaration] = STATE(185), + [sym_compound_statement] = STATE(6389), + [sym_attributed_statement] = STATE(6389), + [sym_labeled_statement] = STATE(6389), + [sym_expression_statement] = STATE(6389), + [sym_if_statement] = STATE(6389), + [sym_switch_statement] = STATE(6389), + [sym_case_statement] = STATE(6389), + [sym_while_statement] = STATE(6389), + [sym_do_statement] = STATE(6389), + [sym_for_statement] = STATE(6389), + [sym_return_statement] = STATE(6389), + [sym_break_statement] = STATE(6389), + [sym_continue_statement] = STATE(6389), + [sym_goto_statement] = STATE(6389), + [sym__expression] = STATE(3701), + [sym_comma_expression] = STATE(7176), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(6389), + [sym_co_return_statement] = STATE(6389), + [sym_co_yield_statement] = STATE(6389), + [sym_throw_statement] = STATE(6389), + [sym_try_statement] = STATE(6389), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [sym_identifier] = ACTIONS(1981), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(1843), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1983), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(1845), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(1847), - [anon_sym_switch] = ACTIONS(1849), - [anon_sym_case] = ACTIONS(1835), - [anon_sym_default] = ACTIONS(1837), - [anon_sym_while] = ACTIONS(1851), - [anon_sym_do] = ACTIONS(1853), - [anon_sym_for] = ACTIONS(1855), - [anon_sym_return] = ACTIONS(1857), - [anon_sym_break] = ACTIONS(1859), - [anon_sym_continue] = ACTIONS(1861), - [anon_sym_goto] = ACTIONS(1863), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(1987), + [anon_sym_switch] = ACTIONS(1989), + [anon_sym_case] = ACTIONS(1991), + [anon_sym_default] = ACTIONS(1993), + [anon_sym_while] = ACTIONS(1995), + [anon_sym_do] = ACTIONS(1997), + [anon_sym_for] = ACTIONS(1999), + [anon_sym_return] = ACTIONS(2001), + [anon_sym_break] = ACTIONS(2003), + [anon_sym_continue] = ACTIONS(2005), + [anon_sym_goto] = ACTIONS(2007), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -53203,12 +56364,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(1865), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(2009), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(1867), - [anon_sym_co_return] = ACTIONS(1869), - [anon_sym_co_yield] = ACTIONS(1871), + [anon_sym_throw] = ACTIONS(2011), + [anon_sym_co_return] = ACTIONS(2013), + [anon_sym_co_yield] = ACTIONS(2015), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -53216,201 +56377,205 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [168] = { - [sym_attribute_declaration] = STATE(168), - [sym_compound_statement] = STATE(355), - [sym_attributed_statement] = STATE(355), - [sym_labeled_statement] = STATE(355), - [sym_expression_statement] = STATE(355), - [sym_if_statement] = STATE(355), - [sym_switch_statement] = STATE(355), - [sym_case_statement] = STATE(355), - [sym_while_statement] = STATE(355), - [sym_do_statement] = STATE(355), - [sym_for_statement] = STATE(355), - [sym_return_statement] = STATE(355), - [sym_break_statement] = STATE(355), - [sym_continue_statement] = STATE(355), - [sym_goto_statement] = STATE(355), - [sym__expression] = STATE(3579), - [sym_comma_expression] = STATE(6778), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(355), - [sym_co_return_statement] = STATE(355), - [sym_co_yield_statement] = STATE(355), - [sym_throw_statement] = STATE(355), - [sym_try_statement] = STATE(355), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(168), - [sym_identifier] = ACTIONS(1873), - [anon_sym_LPAREN2] = ACTIONS(1876), - [anon_sym_BANG] = ACTIONS(1879), - [anon_sym_TILDE] = ACTIONS(1879), - [anon_sym_DASH] = ACTIONS(1882), - [anon_sym_PLUS] = ACTIONS(1882), - [anon_sym_STAR] = ACTIONS(1885), - [anon_sym_AMP] = ACTIONS(1885), - [anon_sym_SEMI] = ACTIONS(1888), - [anon_sym_COLON_COLON] = ACTIONS(1891), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), - [anon_sym_LBRACE] = ACTIONS(1897), - [anon_sym_LBRACK] = ACTIONS(1900), - [sym_primitive_type] = ACTIONS(1903), - [anon_sym_if] = ACTIONS(1906), - [anon_sym_switch] = ACTIONS(1909), - [anon_sym_case] = ACTIONS(1912), - [anon_sym_default] = ACTIONS(1915), - [anon_sym_while] = ACTIONS(1918), - [anon_sym_do] = ACTIONS(1921), - [anon_sym_for] = ACTIONS(1924), - [anon_sym_return] = ACTIONS(1927), - [anon_sym_break] = ACTIONS(1930), - [anon_sym_continue] = ACTIONS(1933), - [anon_sym_goto] = ACTIONS(1936), - [anon_sym_DASH_DASH] = ACTIONS(1939), - [anon_sym_PLUS_PLUS] = ACTIONS(1939), - [anon_sym_sizeof] = ACTIONS(1942), - [sym_number_literal] = ACTIONS(1945), - [anon_sym_L_SQUOTE] = ACTIONS(1948), - [anon_sym_u_SQUOTE] = ACTIONS(1948), - [anon_sym_U_SQUOTE] = ACTIONS(1948), - [anon_sym_u8_SQUOTE] = ACTIONS(1948), - [anon_sym_SQUOTE] = ACTIONS(1948), - [anon_sym_L_DQUOTE] = ACTIONS(1951), - [anon_sym_u_DQUOTE] = ACTIONS(1951), - [anon_sym_U_DQUOTE] = ACTIONS(1951), - [anon_sym_u8_DQUOTE] = ACTIONS(1951), - [anon_sym_DQUOTE] = ACTIONS(1951), - [sym_true] = ACTIONS(1954), - [sym_false] = ACTIONS(1954), - [sym_null] = ACTIONS(1954), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1957), - [anon_sym_try] = ACTIONS(1960), - [anon_sym_delete] = ACTIONS(1963), - [anon_sym_throw] = ACTIONS(1966), - [anon_sym_co_return] = ACTIONS(1969), - [anon_sym_co_yield] = ACTIONS(1972), - [anon_sym_co_await] = ACTIONS(1975), - [anon_sym_new] = ACTIONS(1978), - [anon_sym_requires] = ACTIONS(1981), - [sym_this] = ACTIONS(1954), - [sym_nullptr] = ACTIONS(1954), - [sym_raw_string_literal] = ACTIONS(1984), + [180] = { + [sym_attribute_declaration] = STATE(179), + [sym_compound_statement] = STATE(6386), + [sym_attributed_statement] = STATE(6386), + [sym_labeled_statement] = STATE(6386), + [sym_expression_statement] = STATE(6386), + [sym_if_statement] = STATE(6386), + [sym_switch_statement] = STATE(6386), + [sym_case_statement] = STATE(6386), + [sym_while_statement] = STATE(6386), + [sym_do_statement] = STATE(6386), + [sym_for_statement] = STATE(6386), + [sym_return_statement] = STATE(6386), + [sym_break_statement] = STATE(6386), + [sym_continue_statement] = STATE(6386), + [sym_goto_statement] = STATE(6386), + [sym__expression] = STATE(3701), + [sym_comma_expression] = STATE(7176), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(6386), + [sym_co_return_statement] = STATE(6386), + [sym_co_yield_statement] = STATE(6386), + [sym_throw_statement] = STATE(6386), + [sym_try_statement] = STATE(6386), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(179), + [sym_identifier] = ACTIONS(1981), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1983), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(1987), + [anon_sym_switch] = ACTIONS(1989), + [anon_sym_case] = ACTIONS(1991), + [anon_sym_default] = ACTIONS(1993), + [anon_sym_while] = ACTIONS(1995), + [anon_sym_do] = ACTIONS(1997), + [anon_sym_for] = ACTIONS(1999), + [anon_sym_return] = ACTIONS(2001), + [anon_sym_break] = ACTIONS(2003), + [anon_sym_continue] = ACTIONS(2005), + [anon_sym_goto] = ACTIONS(2007), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(2009), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(2011), + [anon_sym_co_return] = ACTIONS(2013), + [anon_sym_co_yield] = ACTIONS(2015), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), }, - [169] = { - [sym_attribute_declaration] = STATE(183), - [sym_compound_statement] = STATE(6064), - [sym_attributed_statement] = STATE(6064), - [sym_labeled_statement] = STATE(6064), - [sym_expression_statement] = STATE(6064), - [sym_if_statement] = STATE(6064), - [sym_switch_statement] = STATE(6064), - [sym_case_statement] = STATE(6064), - [sym_while_statement] = STATE(6064), - [sym_do_statement] = STATE(6064), - [sym_for_statement] = STATE(6064), - [sym_return_statement] = STATE(6064), - [sym_break_statement] = STATE(6064), - [sym_continue_statement] = STATE(6064), - [sym_goto_statement] = STATE(6064), - [sym__expression] = STATE(3728), - [sym_comma_expression] = STATE(6585), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(6064), - [sym_co_return_statement] = STATE(6064), - [sym_co_yield_statement] = STATE(6064), - [sym_throw_statement] = STATE(6064), - [sym_try_statement] = STATE(6064), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(183), - [sym_identifier] = ACTIONS(1841), - [anon_sym_LPAREN2] = ACTIONS(960), + [181] = { + [sym_attribute_declaration] = STATE(189), + [sym_compound_statement] = STATE(1189), + [sym_attributed_statement] = STATE(1189), + [sym_labeled_statement] = STATE(1189), + [sym_expression_statement] = STATE(1189), + [sym_if_statement] = STATE(1189), + [sym_switch_statement] = STATE(1189), + [sym_case_statement] = STATE(1189), + [sym_while_statement] = STATE(1189), + [sym_do_statement] = STATE(1189), + [sym_for_statement] = STATE(1189), + [sym_return_statement] = STATE(1189), + [sym_break_statement] = STATE(1189), + [sym_continue_statement] = STATE(1189), + [sym_goto_statement] = STATE(1189), + [sym__expression] = STATE(3699), + [sym_comma_expression] = STATE(6868), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(1189), + [sym_co_return_statement] = STATE(1189), + [sym_co_yield_statement] = STATE(1189), + [sym_throw_statement] = STATE(1189), + [sym_try_statement] = STATE(1189), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(189), + [sym_identifier] = ACTIONS(2017), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(1843), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1359), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(1845), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(1847), - [anon_sym_switch] = ACTIONS(1849), - [anon_sym_case] = ACTIONS(1835), - [anon_sym_default] = ACTIONS(1837), - [anon_sym_while] = ACTIONS(1851), - [anon_sym_do] = ACTIONS(1853), - [anon_sym_for] = ACTIONS(1855), - [anon_sym_return] = ACTIONS(1857), - [anon_sym_break] = ACTIONS(1859), - [anon_sym_continue] = ACTIONS(1861), - [anon_sym_goto] = ACTIONS(1863), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1367), + [anon_sym_case] = ACTIONS(1991), + [anon_sym_default] = ACTIONS(1993), + [anon_sym_while] = ACTIONS(1369), + [anon_sym_do] = ACTIONS(1371), + [anon_sym_for] = ACTIONS(1373), + [anon_sym_return] = ACTIONS(1375), + [anon_sym_break] = ACTIONS(1377), + [anon_sym_continue] = ACTIONS(1379), + [anon_sym_goto] = ACTIONS(1381), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -53429,12 +56594,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(1865), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(1383), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(1867), - [anon_sym_co_return] = ACTIONS(1869), - [anon_sym_co_yield] = ACTIONS(1871), + [anon_sym_throw] = ACTIONS(1385), + [anon_sym_co_return] = ACTIONS(1387), + [anon_sym_co_yield] = ACTIONS(1389), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -53442,88 +56607,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [170] = { - [sym_attribute_declaration] = STATE(183), - [sym_compound_statement] = STATE(6833), - [sym_attributed_statement] = STATE(6833), - [sym_labeled_statement] = STATE(6833), - [sym_expression_statement] = STATE(6833), - [sym_if_statement] = STATE(6833), - [sym_switch_statement] = STATE(6833), - [sym_case_statement] = STATE(6833), - [sym_while_statement] = STATE(6833), - [sym_do_statement] = STATE(6833), - [sym_for_statement] = STATE(6833), - [sym_return_statement] = STATE(6833), - [sym_break_statement] = STATE(6833), - [sym_continue_statement] = STATE(6833), - [sym_goto_statement] = STATE(6833), - [sym__expression] = STATE(3728), - [sym_comma_expression] = STATE(6585), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(6833), - [sym_co_return_statement] = STATE(6833), - [sym_co_yield_statement] = STATE(6833), - [sym_throw_statement] = STATE(6833), - [sym_try_statement] = STATE(6833), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(183), - [sym_identifier] = ACTIONS(1841), - [anon_sym_LPAREN2] = ACTIONS(960), + [182] = { + [sym_attribute_declaration] = STATE(179), + [sym_compound_statement] = STATE(6384), + [sym_attributed_statement] = STATE(6384), + [sym_labeled_statement] = STATE(6384), + [sym_expression_statement] = STATE(6384), + [sym_if_statement] = STATE(6384), + [sym_switch_statement] = STATE(6384), + [sym_case_statement] = STATE(6384), + [sym_while_statement] = STATE(6384), + [sym_do_statement] = STATE(6384), + [sym_for_statement] = STATE(6384), + [sym_return_statement] = STATE(6384), + [sym_break_statement] = STATE(6384), + [sym_continue_statement] = STATE(6384), + [sym_goto_statement] = STATE(6384), + [sym__expression] = STATE(3701), + [sym_comma_expression] = STATE(7176), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(6384), + [sym_co_return_statement] = STATE(6384), + [sym_co_yield_statement] = STATE(6384), + [sym_throw_statement] = STATE(6384), + [sym_try_statement] = STATE(6384), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(179), + [sym_identifier] = ACTIONS(1981), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(1843), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1983), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(1845), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(1847), - [anon_sym_switch] = ACTIONS(1849), - [anon_sym_case] = ACTIONS(1835), - [anon_sym_default] = ACTIONS(1837), - [anon_sym_while] = ACTIONS(1851), - [anon_sym_do] = ACTIONS(1853), - [anon_sym_for] = ACTIONS(1855), - [anon_sym_return] = ACTIONS(1857), - [anon_sym_break] = ACTIONS(1859), - [anon_sym_continue] = ACTIONS(1861), - [anon_sym_goto] = ACTIONS(1863), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(1987), + [anon_sym_switch] = ACTIONS(1989), + [anon_sym_case] = ACTIONS(1991), + [anon_sym_default] = ACTIONS(1993), + [anon_sym_while] = ACTIONS(1995), + [anon_sym_do] = ACTIONS(1997), + [anon_sym_for] = ACTIONS(1999), + [anon_sym_return] = ACTIONS(2001), + [anon_sym_break] = ACTIONS(2003), + [anon_sym_continue] = ACTIONS(2005), + [anon_sym_goto] = ACTIONS(2007), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -53542,12 +56709,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(1865), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(2009), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(1867), - [anon_sym_co_return] = ACTIONS(1869), - [anon_sym_co_yield] = ACTIONS(1871), + [anon_sym_throw] = ACTIONS(2011), + [anon_sym_co_return] = ACTIONS(2013), + [anon_sym_co_yield] = ACTIONS(2015), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -53555,88 +56722,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [171] = { - [sym_attribute_declaration] = STATE(183), - [sym_compound_statement] = STATE(6818), - [sym_attributed_statement] = STATE(6818), - [sym_labeled_statement] = STATE(6818), - [sym_expression_statement] = STATE(6818), - [sym_if_statement] = STATE(6818), - [sym_switch_statement] = STATE(6818), - [sym_case_statement] = STATE(6818), - [sym_while_statement] = STATE(6818), - [sym_do_statement] = STATE(6818), - [sym_for_statement] = STATE(6818), - [sym_return_statement] = STATE(6818), - [sym_break_statement] = STATE(6818), - [sym_continue_statement] = STATE(6818), - [sym_goto_statement] = STATE(6818), - [sym__expression] = STATE(3728), - [sym_comma_expression] = STATE(6585), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(6818), - [sym_co_return_statement] = STATE(6818), - [sym_co_yield_statement] = STATE(6818), - [sym_throw_statement] = STATE(6818), - [sym_try_statement] = STATE(6818), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(183), - [sym_identifier] = ACTIONS(1841), - [anon_sym_LPAREN2] = ACTIONS(960), + [183] = { + [sym_attribute_declaration] = STATE(179), + [sym_compound_statement] = STATE(6380), + [sym_attributed_statement] = STATE(6380), + [sym_labeled_statement] = STATE(6380), + [sym_expression_statement] = STATE(6380), + [sym_if_statement] = STATE(6380), + [sym_switch_statement] = STATE(6380), + [sym_case_statement] = STATE(6380), + [sym_while_statement] = STATE(6380), + [sym_do_statement] = STATE(6380), + [sym_for_statement] = STATE(6380), + [sym_return_statement] = STATE(6380), + [sym_break_statement] = STATE(6380), + [sym_continue_statement] = STATE(6380), + [sym_goto_statement] = STATE(6380), + [sym__expression] = STATE(3701), + [sym_comma_expression] = STATE(7176), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(6380), + [sym_co_return_statement] = STATE(6380), + [sym_co_yield_statement] = STATE(6380), + [sym_throw_statement] = STATE(6380), + [sym_try_statement] = STATE(6380), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(179), + [sym_identifier] = ACTIONS(1981), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(1843), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1983), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(1845), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(1847), - [anon_sym_switch] = ACTIONS(1849), - [anon_sym_case] = ACTIONS(1835), - [anon_sym_default] = ACTIONS(1837), - [anon_sym_while] = ACTIONS(1851), - [anon_sym_do] = ACTIONS(1853), - [anon_sym_for] = ACTIONS(1855), - [anon_sym_return] = ACTIONS(1857), - [anon_sym_break] = ACTIONS(1859), - [anon_sym_continue] = ACTIONS(1861), - [anon_sym_goto] = ACTIONS(1863), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(1987), + [anon_sym_switch] = ACTIONS(1989), + [anon_sym_case] = ACTIONS(1991), + [anon_sym_default] = ACTIONS(1993), + [anon_sym_while] = ACTIONS(1995), + [anon_sym_do] = ACTIONS(1997), + [anon_sym_for] = ACTIONS(1999), + [anon_sym_return] = ACTIONS(2001), + [anon_sym_break] = ACTIONS(2003), + [anon_sym_continue] = ACTIONS(2005), + [anon_sym_goto] = ACTIONS(2007), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -53655,12 +56824,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(1865), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(2009), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(1867), - [anon_sym_co_return] = ACTIONS(1869), - [anon_sym_co_yield] = ACTIONS(1871), + [anon_sym_throw] = ACTIONS(2011), + [anon_sym_co_return] = ACTIONS(2013), + [anon_sym_co_yield] = ACTIONS(2015), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -53668,88 +56837,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [172] = { - [sym_attribute_declaration] = STATE(162), - [sym_compound_statement] = STATE(384), - [sym_attributed_statement] = STATE(384), - [sym_labeled_statement] = STATE(384), - [sym_expression_statement] = STATE(384), - [sym_if_statement] = STATE(384), - [sym_switch_statement] = STATE(384), - [sym_case_statement] = STATE(384), - [sym_while_statement] = STATE(384), - [sym_do_statement] = STATE(384), - [sym_for_statement] = STATE(384), - [sym_return_statement] = STATE(384), - [sym_break_statement] = STATE(384), - [sym_continue_statement] = STATE(384), - [sym_goto_statement] = STATE(384), - [sym__expression] = STATE(3579), - [sym_comma_expression] = STATE(6778), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(384), - [sym_co_return_statement] = STATE(384), - [sym_co_yield_statement] = STATE(384), - [sym_throw_statement] = STATE(384), - [sym_try_statement] = STATE(384), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(162), - [sym_identifier] = ACTIONS(1839), - [anon_sym_LPAREN2] = ACTIONS(960), + [184] = { + [sym_attribute_declaration] = STATE(189), + [sym_compound_statement] = STATE(1162), + [sym_attributed_statement] = STATE(1162), + [sym_labeled_statement] = STATE(1162), + [sym_expression_statement] = STATE(1162), + [sym_if_statement] = STATE(1162), + [sym_switch_statement] = STATE(1162), + [sym_case_statement] = STATE(1162), + [sym_while_statement] = STATE(1162), + [sym_do_statement] = STATE(1162), + [sym_for_statement] = STATE(1162), + [sym_return_statement] = STATE(1162), + [sym_break_statement] = STATE(1162), + [sym_continue_statement] = STATE(1162), + [sym_goto_statement] = STATE(1162), + [sym__expression] = STATE(3699), + [sym_comma_expression] = STATE(6868), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(1162), + [sym_co_return_statement] = STATE(1162), + [sym_co_yield_statement] = STATE(1162), + [sym_throw_statement] = STATE(1162), + [sym_try_statement] = STATE(1162), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(189), + [sym_identifier] = ACTIONS(2017), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1359), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(253), - [anon_sym_switch] = ACTIONS(255), - [anon_sym_case] = ACTIONS(257), - [anon_sym_default] = ACTIONS(259), - [anon_sym_while] = ACTIONS(261), - [anon_sym_do] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_return] = ACTIONS(267), - [anon_sym_break] = ACTIONS(269), - [anon_sym_continue] = ACTIONS(271), - [anon_sym_goto] = ACTIONS(273), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1367), + [anon_sym_case] = ACTIONS(1991), + [anon_sym_default] = ACTIONS(1993), + [anon_sym_while] = ACTIONS(1369), + [anon_sym_do] = ACTIONS(1371), + [anon_sym_for] = ACTIONS(1373), + [anon_sym_return] = ACTIONS(1375), + [anon_sym_break] = ACTIONS(1377), + [anon_sym_continue] = ACTIONS(1379), + [anon_sym_goto] = ACTIONS(1381), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -53768,12 +56939,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(277), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(1383), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(279), - [anon_sym_co_return] = ACTIONS(289), - [anon_sym_co_yield] = ACTIONS(291), + [anon_sym_throw] = ACTIONS(1385), + [anon_sym_co_return] = ACTIONS(1387), + [anon_sym_co_yield] = ACTIONS(1389), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -53781,88 +56952,205 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [173] = { - [sym_attribute_declaration] = STATE(183), - [sym_compound_statement] = STATE(6791), - [sym_attributed_statement] = STATE(6791), - [sym_labeled_statement] = STATE(6791), - [sym_expression_statement] = STATE(6791), - [sym_if_statement] = STATE(6791), - [sym_switch_statement] = STATE(6791), - [sym_case_statement] = STATE(6791), - [sym_while_statement] = STATE(6791), - [sym_do_statement] = STATE(6791), - [sym_for_statement] = STATE(6791), - [sym_return_statement] = STATE(6791), - [sym_break_statement] = STATE(6791), - [sym_continue_statement] = STATE(6791), - [sym_goto_statement] = STATE(6791), - [sym__expression] = STATE(3728), - [sym_comma_expression] = STATE(6585), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(6791), - [sym_co_return_statement] = STATE(6791), - [sym_co_yield_statement] = STATE(6791), - [sym_throw_statement] = STATE(6791), - [sym_try_statement] = STATE(6791), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(183), - [sym_identifier] = ACTIONS(1841), - [anon_sym_LPAREN2] = ACTIONS(960), + [185] = { + [sym_attribute_declaration] = STATE(185), + [sym_compound_statement] = STATE(6389), + [sym_attributed_statement] = STATE(6389), + [sym_labeled_statement] = STATE(6389), + [sym_expression_statement] = STATE(6389), + [sym_if_statement] = STATE(6389), + [sym_switch_statement] = STATE(6389), + [sym_case_statement] = STATE(6389), + [sym_while_statement] = STATE(6389), + [sym_do_statement] = STATE(6389), + [sym_for_statement] = STATE(6389), + [sym_return_statement] = STATE(6389), + [sym_break_statement] = STATE(6389), + [sym_continue_statement] = STATE(6389), + [sym_goto_statement] = STATE(6389), + [sym__expression] = STATE(3701), + [sym_comma_expression] = STATE(7176), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(6389), + [sym_co_return_statement] = STATE(6389), + [sym_co_yield_statement] = STATE(6389), + [sym_throw_statement] = STATE(6389), + [sym_try_statement] = STATE(6389), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [sym_identifier] = ACTIONS(2137), + [anon_sym_LPAREN2] = ACTIONS(2024), + [anon_sym_BANG] = ACTIONS(2027), + [anon_sym_TILDE] = ACTIONS(2027), + [anon_sym_DASH] = ACTIONS(2030), + [anon_sym_PLUS] = ACTIONS(2030), + [anon_sym_STAR] = ACTIONS(2033), + [anon_sym_AMP] = ACTIONS(2033), + [anon_sym_SEMI] = ACTIONS(2140), + [anon_sym_COLON_COLON] = ACTIONS(2039), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2042), + [anon_sym_LBRACE] = ACTIONS(2143), + [anon_sym_LBRACK] = ACTIONS(2048), + [sym_primitive_type] = ACTIONS(2051), + [anon_sym_if] = ACTIONS(2146), + [anon_sym_switch] = ACTIONS(2149), + [anon_sym_case] = ACTIONS(2060), + [anon_sym_default] = ACTIONS(2063), + [anon_sym_while] = ACTIONS(2152), + [anon_sym_do] = ACTIONS(2155), + [anon_sym_for] = ACTIONS(2158), + [anon_sym_return] = ACTIONS(2161), + [anon_sym_break] = ACTIONS(2164), + [anon_sym_continue] = ACTIONS(2167), + [anon_sym_goto] = ACTIONS(2170), + [anon_sym_not] = ACTIONS(2030), + [anon_sym_compl] = ACTIONS(2030), + [anon_sym_DASH_DASH] = ACTIONS(2087), + [anon_sym_PLUS_PLUS] = ACTIONS(2087), + [anon_sym_sizeof] = ACTIONS(2090), + [sym_number_literal] = ACTIONS(2093), + [anon_sym_L_SQUOTE] = ACTIONS(2096), + [anon_sym_u_SQUOTE] = ACTIONS(2096), + [anon_sym_U_SQUOTE] = ACTIONS(2096), + [anon_sym_u8_SQUOTE] = ACTIONS(2096), + [anon_sym_SQUOTE] = ACTIONS(2096), + [anon_sym_L_DQUOTE] = ACTIONS(2099), + [anon_sym_u_DQUOTE] = ACTIONS(2099), + [anon_sym_U_DQUOTE] = ACTIONS(2099), + [anon_sym_u8_DQUOTE] = ACTIONS(2099), + [anon_sym_DQUOTE] = ACTIONS(2099), + [sym_true] = ACTIONS(2102), + [sym_false] = ACTIONS(2102), + [sym_null] = ACTIONS(2102), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(2105), + [anon_sym_try] = ACTIONS(2173), + [anon_sym_delete] = ACTIONS(2111), + [anon_sym_throw] = ACTIONS(2176), + [anon_sym_co_return] = ACTIONS(2179), + [anon_sym_co_yield] = ACTIONS(2182), + [anon_sym_co_await] = ACTIONS(2123), + [anon_sym_new] = ACTIONS(2126), + [anon_sym_requires] = ACTIONS(2129), + [sym_this] = ACTIONS(2102), + [sym_nullptr] = ACTIONS(2102), + [sym_raw_string_literal] = ACTIONS(2132), + }, + [186] = { + [sym_attribute_declaration] = STATE(189), + [sym_compound_statement] = STATE(1139), + [sym_attributed_statement] = STATE(1139), + [sym_labeled_statement] = STATE(1139), + [sym_expression_statement] = STATE(1139), + [sym_if_statement] = STATE(1139), + [sym_switch_statement] = STATE(1139), + [sym_case_statement] = STATE(1139), + [sym_while_statement] = STATE(1139), + [sym_do_statement] = STATE(1139), + [sym_for_statement] = STATE(1139), + [sym_return_statement] = STATE(1139), + [sym_break_statement] = STATE(1139), + [sym_continue_statement] = STATE(1139), + [sym_goto_statement] = STATE(1139), + [sym__expression] = STATE(3699), + [sym_comma_expression] = STATE(6868), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(1139), + [sym_co_return_statement] = STATE(1139), + [sym_co_yield_statement] = STATE(1139), + [sym_throw_statement] = STATE(1139), + [sym_try_statement] = STATE(1139), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(189), + [sym_identifier] = ACTIONS(2017), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(1843), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1359), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(1845), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(1847), - [anon_sym_switch] = ACTIONS(1849), - [anon_sym_case] = ACTIONS(1835), - [anon_sym_default] = ACTIONS(1837), - [anon_sym_while] = ACTIONS(1851), - [anon_sym_do] = ACTIONS(1853), - [anon_sym_for] = ACTIONS(1855), - [anon_sym_return] = ACTIONS(1857), - [anon_sym_break] = ACTIONS(1859), - [anon_sym_continue] = ACTIONS(1861), - [anon_sym_goto] = ACTIONS(1863), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1367), + [anon_sym_case] = ACTIONS(1991), + [anon_sym_default] = ACTIONS(1993), + [anon_sym_while] = ACTIONS(1369), + [anon_sym_do] = ACTIONS(1371), + [anon_sym_for] = ACTIONS(1373), + [anon_sym_return] = ACTIONS(1375), + [anon_sym_break] = ACTIONS(1377), + [anon_sym_continue] = ACTIONS(1379), + [anon_sym_goto] = ACTIONS(1381), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -53881,12 +57169,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(1865), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(1383), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(1867), - [anon_sym_co_return] = ACTIONS(1869), - [anon_sym_co_yield] = ACTIONS(1871), + [anon_sym_throw] = ACTIONS(1385), + [anon_sym_co_return] = ACTIONS(1387), + [anon_sym_co_yield] = ACTIONS(1389), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -53894,77 +57182,192 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [174] = { - [sym_attribute_declaration] = STATE(282), - [sym_compound_statement] = STATE(847), - [sym_attributed_statement] = STATE(847), - [sym_labeled_statement] = STATE(847), - [sym_expression_statement] = STATE(847), - [sym_if_statement] = STATE(847), - [sym_switch_statement] = STATE(847), - [sym_case_statement] = STATE(847), - [sym_while_statement] = STATE(847), - [sym_do_statement] = STATE(847), - [sym_for_statement] = STATE(847), - [sym_return_statement] = STATE(847), - [sym_break_statement] = STATE(847), - [sym_continue_statement] = STATE(847), - [sym_goto_statement] = STATE(847), - [sym__expression] = STATE(3605), - [sym_comma_expression] = STATE(6558), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(847), - [sym_co_return_statement] = STATE(847), - [sym_co_yield_statement] = STATE(847), - [sym_throw_statement] = STATE(847), - [sym_try_statement] = STATE(847), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(282), - [sym_identifier] = ACTIONS(1987), - [anon_sym_LPAREN2] = ACTIONS(960), + [187] = { + [sym_attribute_declaration] = STATE(179), + [sym_compound_statement] = STATE(6330), + [sym_attributed_statement] = STATE(6330), + [sym_labeled_statement] = STATE(6330), + [sym_expression_statement] = STATE(6330), + [sym_if_statement] = STATE(6330), + [sym_switch_statement] = STATE(6330), + [sym_case_statement] = STATE(6330), + [sym_while_statement] = STATE(6330), + [sym_do_statement] = STATE(6330), + [sym_for_statement] = STATE(6330), + [sym_return_statement] = STATE(6330), + [sym_break_statement] = STATE(6330), + [sym_continue_statement] = STATE(6330), + [sym_goto_statement] = STATE(6330), + [sym__expression] = STATE(3701), + [sym_comma_expression] = STATE(7176), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(6330), + [sym_co_return_statement] = STATE(6330), + [sym_co_yield_statement] = STATE(6330), + [sym_throw_statement] = STATE(6330), + [sym_try_statement] = STATE(6330), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(179), + [sym_identifier] = ACTIONS(1981), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1983), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(1987), + [anon_sym_switch] = ACTIONS(1989), + [anon_sym_case] = ACTIONS(1991), + [anon_sym_default] = ACTIONS(1993), + [anon_sym_while] = ACTIONS(1995), + [anon_sym_do] = ACTIONS(1997), + [anon_sym_for] = ACTIONS(1999), + [anon_sym_return] = ACTIONS(2001), + [anon_sym_break] = ACTIONS(2003), + [anon_sym_continue] = ACTIONS(2005), + [anon_sym_goto] = ACTIONS(2007), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(2009), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(2011), + [anon_sym_co_return] = ACTIONS(2013), + [anon_sym_co_yield] = ACTIONS(2015), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [188] = { + [sym_attribute_declaration] = STATE(286), + [sym_compound_statement] = STATE(898), + [sym_attributed_statement] = STATE(898), + [sym_labeled_statement] = STATE(898), + [sym_expression_statement] = STATE(898), + [sym_if_statement] = STATE(898), + [sym_switch_statement] = STATE(898), + [sym_case_statement] = STATE(898), + [sym_while_statement] = STATE(898), + [sym_do_statement] = STATE(898), + [sym_for_statement] = STATE(898), + [sym_return_statement] = STATE(898), + [sym_break_statement] = STATE(898), + [sym_continue_statement] = STATE(898), + [sym_goto_statement] = STATE(898), + [sym__expression] = STATE(3758), + [sym_comma_expression] = STATE(7239), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(898), + [sym_co_return_statement] = STATE(898), + [sym_co_yield_statement] = STATE(898), + [sym_throw_statement] = STATE(898), + [sym_try_statement] = STATE(898), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), [anon_sym_SEMI] = ACTIONS(33), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), [anon_sym_if] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), [anon_sym_case] = ACTIONS(75), @@ -53976,6 +57379,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(87), [anon_sym_continue] = ACTIONS(89), [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -53994,7 +57399,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), + [anon_sym_template] = ACTIONS(976), [anon_sym_try] = ACTIONS(119), [anon_sym_delete] = ACTIONS(121), [anon_sym_throw] = ACTIONS(123), @@ -54007,88 +57412,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [175] = { - [sym_attribute_declaration] = STATE(162), - [sym_compound_statement] = STATE(406), - [sym_attributed_statement] = STATE(406), - [sym_labeled_statement] = STATE(406), - [sym_expression_statement] = STATE(406), - [sym_if_statement] = STATE(406), - [sym_switch_statement] = STATE(406), - [sym_case_statement] = STATE(406), - [sym_while_statement] = STATE(406), - [sym_do_statement] = STATE(406), - [sym_for_statement] = STATE(406), - [sym_return_statement] = STATE(406), - [sym_break_statement] = STATE(406), - [sym_continue_statement] = STATE(406), - [sym_goto_statement] = STATE(406), - [sym__expression] = STATE(3579), - [sym_comma_expression] = STATE(6778), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(406), - [sym_co_return_statement] = STATE(406), - [sym_co_yield_statement] = STATE(406), - [sym_throw_statement] = STATE(406), - [sym_try_statement] = STATE(406), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(162), - [sym_identifier] = ACTIONS(1839), - [anon_sym_LPAREN2] = ACTIONS(960), + [189] = { + [sym_attribute_declaration] = STATE(175), + [sym_compound_statement] = STATE(1125), + [sym_attributed_statement] = STATE(1125), + [sym_labeled_statement] = STATE(1125), + [sym_expression_statement] = STATE(1125), + [sym_if_statement] = STATE(1125), + [sym_switch_statement] = STATE(1125), + [sym_case_statement] = STATE(1125), + [sym_while_statement] = STATE(1125), + [sym_do_statement] = STATE(1125), + [sym_for_statement] = STATE(1125), + [sym_return_statement] = STATE(1125), + [sym_break_statement] = STATE(1125), + [sym_continue_statement] = STATE(1125), + [sym_goto_statement] = STATE(1125), + [sym__expression] = STATE(3699), + [sym_comma_expression] = STATE(6868), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(1125), + [sym_co_return_statement] = STATE(1125), + [sym_co_yield_statement] = STATE(1125), + [sym_throw_statement] = STATE(1125), + [sym_try_statement] = STATE(1125), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(175), + [sym_identifier] = ACTIONS(2017), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1359), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(253), - [anon_sym_switch] = ACTIONS(255), - [anon_sym_case] = ACTIONS(257), - [anon_sym_default] = ACTIONS(259), - [anon_sym_while] = ACTIONS(261), - [anon_sym_do] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_return] = ACTIONS(267), - [anon_sym_break] = ACTIONS(269), - [anon_sym_continue] = ACTIONS(271), - [anon_sym_goto] = ACTIONS(273), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1367), + [anon_sym_case] = ACTIONS(1991), + [anon_sym_default] = ACTIONS(1993), + [anon_sym_while] = ACTIONS(1369), + [anon_sym_do] = ACTIONS(1371), + [anon_sym_for] = ACTIONS(1373), + [anon_sym_return] = ACTIONS(1375), + [anon_sym_break] = ACTIONS(1377), + [anon_sym_continue] = ACTIONS(1379), + [anon_sym_goto] = ACTIONS(1381), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -54107,12 +57514,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(277), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(1383), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(279), - [anon_sym_co_return] = ACTIONS(289), - [anon_sym_co_yield] = ACTIONS(291), + [anon_sym_throw] = ACTIONS(1385), + [anon_sym_co_return] = ACTIONS(1387), + [anon_sym_co_yield] = ACTIONS(1389), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -54120,88 +57527,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [176] = { - [sym_attribute_declaration] = STATE(162), - [sym_compound_statement] = STATE(407), - [sym_attributed_statement] = STATE(412), - [sym_labeled_statement] = STATE(413), - [sym_expression_statement] = STATE(414), - [sym_if_statement] = STATE(423), - [sym_switch_statement] = STATE(433), - [sym_case_statement] = STATE(397), - [sym_while_statement] = STATE(458), - [sym_do_statement] = STATE(456), - [sym_for_statement] = STATE(453), - [sym_return_statement] = STATE(452), - [sym_break_statement] = STATE(451), - [sym_continue_statement] = STATE(450), - [sym_goto_statement] = STATE(448), - [sym__expression] = STATE(3579), - [sym_comma_expression] = STATE(6778), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(447), - [sym_co_return_statement] = STATE(446), - [sym_co_yield_statement] = STATE(444), - [sym_throw_statement] = STATE(443), - [sym_try_statement] = STATE(442), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(162), - [sym_identifier] = ACTIONS(1839), - [anon_sym_LPAREN2] = ACTIONS(960), + [190] = { + [sym_attribute_declaration] = STATE(191), + [sym_compound_statement] = STATE(829), + [sym_attributed_statement] = STATE(829), + [sym_labeled_statement] = STATE(829), + [sym_expression_statement] = STATE(829), + [sym_if_statement] = STATE(829), + [sym_switch_statement] = STATE(829), + [sym_case_statement] = STATE(829), + [sym_while_statement] = STATE(829), + [sym_do_statement] = STATE(829), + [sym_for_statement] = STATE(829), + [sym_return_statement] = STATE(829), + [sym_break_statement] = STATE(829), + [sym_continue_statement] = STATE(829), + [sym_goto_statement] = STATE(829), + [sym__expression] = STATE(3704), + [sym_comma_expression] = STATE(6857), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(829), + [sym_co_return_statement] = STATE(829), + [sym_co_yield_statement] = STATE(829), + [sym_throw_statement] = STATE(829), + [sym_try_statement] = STATE(829), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [sym_identifier] = ACTIONS(2019), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(159), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(253), - [anon_sym_switch] = ACTIONS(255), - [anon_sym_case] = ACTIONS(257), - [anon_sym_default] = ACTIONS(259), - [anon_sym_while] = ACTIONS(261), - [anon_sym_do] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_return] = ACTIONS(267), - [anon_sym_break] = ACTIONS(269), - [anon_sym_continue] = ACTIONS(271), - [anon_sym_goto] = ACTIONS(273), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -54220,12 +57629,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(277), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(197), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(279), - [anon_sym_co_return] = ACTIONS(289), - [anon_sym_co_yield] = ACTIONS(291), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -54233,88 +57642,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [177] = { - [sym_attribute_declaration] = STATE(162), - [sym_compound_statement] = STATE(441), - [sym_attributed_statement] = STATE(439), - [sym_labeled_statement] = STATE(438), - [sym_expression_statement] = STATE(437), - [sym_if_statement] = STATE(436), - [sym_switch_statement] = STATE(435), - [sym_case_statement] = STATE(434), - [sym_while_statement] = STATE(431), - [sym_do_statement] = STATE(428), - [sym_for_statement] = STATE(427), - [sym_return_statement] = STATE(425), - [sym_break_statement] = STATE(424), - [sym_continue_statement] = STATE(416), - [sym_goto_statement] = STATE(420), - [sym__expression] = STATE(3579), - [sym_comma_expression] = STATE(6778), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(415), - [sym_co_return_statement] = STATE(411), - [sym_co_yield_statement] = STATE(405), - [sym_throw_statement] = STATE(404), - [sym_try_statement] = STATE(403), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(162), - [sym_identifier] = ACTIONS(1839), - [anon_sym_LPAREN2] = ACTIONS(960), + [191] = { + [sym_attribute_declaration] = STATE(303), + [sym_compound_statement] = STATE(890), + [sym_attributed_statement] = STATE(890), + [sym_labeled_statement] = STATE(890), + [sym_expression_statement] = STATE(890), + [sym_if_statement] = STATE(890), + [sym_switch_statement] = STATE(890), + [sym_case_statement] = STATE(890), + [sym_while_statement] = STATE(890), + [sym_do_statement] = STATE(890), + [sym_for_statement] = STATE(890), + [sym_return_statement] = STATE(890), + [sym_break_statement] = STATE(890), + [sym_continue_statement] = STATE(890), + [sym_goto_statement] = STATE(890), + [sym__expression] = STATE(3704), + [sym_comma_expression] = STATE(6857), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(890), + [sym_co_return_statement] = STATE(890), + [sym_co_yield_statement] = STATE(890), + [sym_throw_statement] = STATE(890), + [sym_try_statement] = STATE(890), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(303), + [sym_identifier] = ACTIONS(2019), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(159), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(253), - [anon_sym_switch] = ACTIONS(255), - [anon_sym_case] = ACTIONS(257), - [anon_sym_default] = ACTIONS(259), - [anon_sym_while] = ACTIONS(261), - [anon_sym_do] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_return] = ACTIONS(267), - [anon_sym_break] = ACTIONS(269), - [anon_sym_continue] = ACTIONS(271), - [anon_sym_goto] = ACTIONS(273), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -54333,12 +57744,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(277), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(197), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(279), - [anon_sym_co_return] = ACTIONS(289), - [anon_sym_co_yield] = ACTIONS(291), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -54346,88 +57757,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [178] = { - [sym_attribute_declaration] = STATE(183), - [sym_compound_statement] = STATE(6756), - [sym_attributed_statement] = STATE(6756), - [sym_labeled_statement] = STATE(6756), - [sym_expression_statement] = STATE(6756), - [sym_if_statement] = STATE(6756), - [sym_switch_statement] = STATE(6756), - [sym_case_statement] = STATE(6756), - [sym_while_statement] = STATE(6756), - [sym_do_statement] = STATE(6756), - [sym_for_statement] = STATE(6756), - [sym_return_statement] = STATE(6756), - [sym_break_statement] = STATE(6756), - [sym_continue_statement] = STATE(6756), - [sym_goto_statement] = STATE(6756), - [sym__expression] = STATE(3728), - [sym_comma_expression] = STATE(6585), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(6756), - [sym_co_return_statement] = STATE(6756), - [sym_co_yield_statement] = STATE(6756), - [sym_throw_statement] = STATE(6756), - [sym_try_statement] = STATE(6756), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(183), - [sym_identifier] = ACTIONS(1841), - [anon_sym_LPAREN2] = ACTIONS(960), + [192] = { + [sym_attribute_declaration] = STATE(286), + [sym_compound_statement] = STATE(873), + [sym_attributed_statement] = STATE(873), + [sym_labeled_statement] = STATE(873), + [sym_expression_statement] = STATE(873), + [sym_if_statement] = STATE(873), + [sym_switch_statement] = STATE(873), + [sym_case_statement] = STATE(873), + [sym_while_statement] = STATE(873), + [sym_do_statement] = STATE(873), + [sym_for_statement] = STATE(873), + [sym_return_statement] = STATE(873), + [sym_break_statement] = STATE(873), + [sym_continue_statement] = STATE(873), + [sym_goto_statement] = STATE(873), + [sym__expression] = STATE(3758), + [sym_comma_expression] = STATE(7239), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(873), + [sym_co_return_statement] = STATE(873), + [sym_co_yield_statement] = STATE(873), + [sym_throw_statement] = STATE(873), + [sym_try_statement] = STATE(873), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(1843), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(33), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(1845), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(1847), - [anon_sym_switch] = ACTIONS(1849), - [anon_sym_case] = ACTIONS(1835), - [anon_sym_default] = ACTIONS(1837), - [anon_sym_while] = ACTIONS(1851), - [anon_sym_do] = ACTIONS(1853), - [anon_sym_for] = ACTIONS(1855), - [anon_sym_return] = ACTIONS(1857), - [anon_sym_break] = ACTIONS(1859), - [anon_sym_continue] = ACTIONS(1861), - [anon_sym_goto] = ACTIONS(1863), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(75), + [anon_sym_default] = ACTIONS(77), + [anon_sym_while] = ACTIONS(79), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -54446,12 +57859,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(1865), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(119), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(1867), - [anon_sym_co_return] = ACTIONS(1869), - [anon_sym_co_yield] = ACTIONS(1871), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -54459,77 +57872,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [179] = { - [sym_attribute_declaration] = STATE(162), - [sym_compound_statement] = STATE(402), - [sym_attributed_statement] = STATE(402), - [sym_labeled_statement] = STATE(402), - [sym_expression_statement] = STATE(402), - [sym_if_statement] = STATE(402), - [sym_switch_statement] = STATE(402), - [sym_case_statement] = STATE(402), - [sym_while_statement] = STATE(402), - [sym_do_statement] = STATE(402), - [sym_for_statement] = STATE(402), - [sym_return_statement] = STATE(402), - [sym_break_statement] = STATE(402), - [sym_continue_statement] = STATE(402), - [sym_goto_statement] = STATE(402), - [sym__expression] = STATE(3579), - [sym_comma_expression] = STATE(6778), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(402), - [sym_co_return_statement] = STATE(402), - [sym_co_yield_statement] = STATE(402), - [sym_throw_statement] = STATE(402), - [sym_try_statement] = STATE(402), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(162), - [sym_identifier] = ACTIONS(1839), - [anon_sym_LPAREN2] = ACTIONS(960), + [193] = { + [sym_attribute_declaration] = STATE(290), + [sym_compound_statement] = STATE(462), + [sym_attributed_statement] = STATE(462), + [sym_labeled_statement] = STATE(462), + [sym_expression_statement] = STATE(462), + [sym_if_statement] = STATE(462), + [sym_switch_statement] = STATE(462), + [sym_case_statement] = STATE(462), + [sym_while_statement] = STATE(462), + [sym_do_statement] = STATE(462), + [sym_for_statement] = STATE(462), + [sym_return_statement] = STATE(462), + [sym_break_statement] = STATE(462), + [sym_continue_statement] = STATE(462), + [sym_goto_statement] = STATE(462), + [sym__expression] = STATE(3680), + [sym_comma_expression] = STATE(7175), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(462), + [sym_co_return_statement] = STATE(462), + [sym_co_yield_statement] = STATE(462), + [sym_throw_statement] = STATE(462), + [sym_try_statement] = STATE(462), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(290), + [sym_identifier] = ACTIONS(2135), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), [anon_sym_SEMI] = ACTIONS(245), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), [anon_sym_if] = ACTIONS(253), [anon_sym_switch] = ACTIONS(255), [anon_sym_case] = ACTIONS(257), @@ -54541,6 +57954,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(269), [anon_sym_continue] = ACTIONS(271), [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -54559,7 +57974,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), + [anon_sym_template] = ACTIONS(976), [anon_sym_try] = ACTIONS(277), [anon_sym_delete] = ACTIONS(121), [anon_sym_throw] = ACTIONS(279), @@ -54572,77 +57987,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [180] = { - [sym_attribute_declaration] = STATE(162), - [sym_compound_statement] = STATE(401), - [sym_attributed_statement] = STATE(401), - [sym_labeled_statement] = STATE(401), - [sym_expression_statement] = STATE(401), - [sym_if_statement] = STATE(401), - [sym_switch_statement] = STATE(401), - [sym_case_statement] = STATE(401), - [sym_while_statement] = STATE(401), - [sym_do_statement] = STATE(401), - [sym_for_statement] = STATE(401), - [sym_return_statement] = STATE(401), - [sym_break_statement] = STATE(401), - [sym_continue_statement] = STATE(401), - [sym_goto_statement] = STATE(401), - [sym__expression] = STATE(3579), - [sym_comma_expression] = STATE(6778), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(401), - [sym_co_return_statement] = STATE(401), - [sym_co_yield_statement] = STATE(401), - [sym_throw_statement] = STATE(401), - [sym_try_statement] = STATE(401), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(162), - [sym_identifier] = ACTIONS(1839), - [anon_sym_LPAREN2] = ACTIONS(960), + [194] = { + [sym_attribute_declaration] = STATE(290), + [sym_compound_statement] = STATE(461), + [sym_attributed_statement] = STATE(461), + [sym_labeled_statement] = STATE(461), + [sym_expression_statement] = STATE(461), + [sym_if_statement] = STATE(461), + [sym_switch_statement] = STATE(461), + [sym_case_statement] = STATE(461), + [sym_while_statement] = STATE(461), + [sym_do_statement] = STATE(461), + [sym_for_statement] = STATE(461), + [sym_return_statement] = STATE(461), + [sym_break_statement] = STATE(461), + [sym_continue_statement] = STATE(461), + [sym_goto_statement] = STATE(461), + [sym__expression] = STATE(3680), + [sym_comma_expression] = STATE(7175), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(461), + [sym_co_return_statement] = STATE(461), + [sym_co_yield_statement] = STATE(461), + [sym_throw_statement] = STATE(461), + [sym_try_statement] = STATE(461), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(290), + [sym_identifier] = ACTIONS(2135), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), [anon_sym_SEMI] = ACTIONS(245), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), [anon_sym_if] = ACTIONS(253), [anon_sym_switch] = ACTIONS(255), [anon_sym_case] = ACTIONS(257), @@ -54654,6 +58069,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(269), [anon_sym_continue] = ACTIONS(271), [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -54672,7 +58089,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), + [anon_sym_template] = ACTIONS(976), [anon_sym_try] = ACTIONS(277), [anon_sym_delete] = ACTIONS(121), [anon_sym_throw] = ACTIONS(279), @@ -54685,77 +58102,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [181] = { - [sym_attribute_declaration] = STATE(162), - [sym_compound_statement] = STATE(455), - [sym_attributed_statement] = STATE(455), - [sym_labeled_statement] = STATE(455), - [sym_expression_statement] = STATE(455), - [sym_if_statement] = STATE(455), - [sym_switch_statement] = STATE(455), - [sym_case_statement] = STATE(455), - [sym_while_statement] = STATE(455), - [sym_do_statement] = STATE(455), - [sym_for_statement] = STATE(455), - [sym_return_statement] = STATE(455), - [sym_break_statement] = STATE(455), - [sym_continue_statement] = STATE(455), - [sym_goto_statement] = STATE(455), - [sym__expression] = STATE(3579), - [sym_comma_expression] = STATE(6778), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(455), - [sym_co_return_statement] = STATE(455), - [sym_co_yield_statement] = STATE(455), - [sym_throw_statement] = STATE(455), - [sym_try_statement] = STATE(455), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(162), - [sym_identifier] = ACTIONS(1839), - [anon_sym_LPAREN2] = ACTIONS(960), + [195] = { + [sym_attribute_declaration] = STATE(290), + [sym_compound_statement] = STATE(457), + [sym_attributed_statement] = STATE(457), + [sym_labeled_statement] = STATE(457), + [sym_expression_statement] = STATE(457), + [sym_if_statement] = STATE(457), + [sym_switch_statement] = STATE(457), + [sym_case_statement] = STATE(457), + [sym_while_statement] = STATE(457), + [sym_do_statement] = STATE(457), + [sym_for_statement] = STATE(457), + [sym_return_statement] = STATE(457), + [sym_break_statement] = STATE(457), + [sym_continue_statement] = STATE(457), + [sym_goto_statement] = STATE(457), + [sym__expression] = STATE(3680), + [sym_comma_expression] = STATE(7175), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(457), + [sym_co_return_statement] = STATE(457), + [sym_co_yield_statement] = STATE(457), + [sym_throw_statement] = STATE(457), + [sym_try_statement] = STATE(457), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(290), + [sym_identifier] = ACTIONS(2135), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), [anon_sym_SEMI] = ACTIONS(245), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), [anon_sym_if] = ACTIONS(253), [anon_sym_switch] = ACTIONS(255), [anon_sym_case] = ACTIONS(257), @@ -54767,6 +58184,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(269), [anon_sym_continue] = ACTIONS(271), [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -54785,7 +58204,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), + [anon_sym_template] = ACTIONS(976), [anon_sym_try] = ACTIONS(277), [anon_sym_delete] = ACTIONS(121), [anon_sym_throw] = ACTIONS(279), @@ -54798,88 +58217,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [182] = { - [sym_attribute_declaration] = STATE(183), - [sym_compound_statement] = STATE(6608), - [sym_attributed_statement] = STATE(6608), - [sym_labeled_statement] = STATE(6608), - [sym_expression_statement] = STATE(6608), - [sym_if_statement] = STATE(6608), - [sym_switch_statement] = STATE(6608), - [sym_case_statement] = STATE(6608), - [sym_while_statement] = STATE(6608), - [sym_do_statement] = STATE(6608), - [sym_for_statement] = STATE(6608), - [sym_return_statement] = STATE(6608), - [sym_break_statement] = STATE(6608), - [sym_continue_statement] = STATE(6608), - [sym_goto_statement] = STATE(6608), - [sym__expression] = STATE(3728), - [sym_comma_expression] = STATE(6585), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(6608), - [sym_co_return_statement] = STATE(6608), - [sym_co_yield_statement] = STATE(6608), - [sym_throw_statement] = STATE(6608), - [sym_try_statement] = STATE(6608), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(183), - [sym_identifier] = ACTIONS(1841), - [anon_sym_LPAREN2] = ACTIONS(960), + [196] = { + [sym_attribute_declaration] = STATE(189), + [sym_compound_statement] = STATE(1237), + [sym_attributed_statement] = STATE(1237), + [sym_labeled_statement] = STATE(1237), + [sym_expression_statement] = STATE(1237), + [sym_if_statement] = STATE(1237), + [sym_switch_statement] = STATE(1237), + [sym_case_statement] = STATE(1237), + [sym_while_statement] = STATE(1237), + [sym_do_statement] = STATE(1237), + [sym_for_statement] = STATE(1237), + [sym_return_statement] = STATE(1237), + [sym_break_statement] = STATE(1237), + [sym_continue_statement] = STATE(1237), + [sym_goto_statement] = STATE(1237), + [sym__expression] = STATE(3699), + [sym_comma_expression] = STATE(6868), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(1237), + [sym_co_return_statement] = STATE(1237), + [sym_co_yield_statement] = STATE(1237), + [sym_throw_statement] = STATE(1237), + [sym_try_statement] = STATE(1237), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(189), + [sym_identifier] = ACTIONS(2017), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(1843), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1359), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(1845), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(1847), - [anon_sym_switch] = ACTIONS(1849), - [anon_sym_case] = ACTIONS(1835), - [anon_sym_default] = ACTIONS(1837), - [anon_sym_while] = ACTIONS(1851), - [anon_sym_do] = ACTIONS(1853), - [anon_sym_for] = ACTIONS(1855), - [anon_sym_return] = ACTIONS(1857), - [anon_sym_break] = ACTIONS(1859), - [anon_sym_continue] = ACTIONS(1861), - [anon_sym_goto] = ACTIONS(1863), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1367), + [anon_sym_case] = ACTIONS(1991), + [anon_sym_default] = ACTIONS(1993), + [anon_sym_while] = ACTIONS(1369), + [anon_sym_do] = ACTIONS(1371), + [anon_sym_for] = ACTIONS(1373), + [anon_sym_return] = ACTIONS(1375), + [anon_sym_break] = ACTIONS(1377), + [anon_sym_continue] = ACTIONS(1379), + [anon_sym_goto] = ACTIONS(1381), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -54898,12 +58319,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(1865), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(1383), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(1867), - [anon_sym_co_return] = ACTIONS(1869), - [anon_sym_co_yield] = ACTIONS(1871), + [anon_sym_throw] = ACTIONS(1385), + [anon_sym_co_return] = ACTIONS(1387), + [anon_sym_co_yield] = ACTIONS(1389), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -54911,88 +58332,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [183] = { - [sym_attribute_declaration] = STATE(233), - [sym_compound_statement] = STATE(6066), - [sym_attributed_statement] = STATE(6066), - [sym_labeled_statement] = STATE(6066), - [sym_expression_statement] = STATE(6066), - [sym_if_statement] = STATE(6066), - [sym_switch_statement] = STATE(6066), - [sym_case_statement] = STATE(6066), - [sym_while_statement] = STATE(6066), - [sym_do_statement] = STATE(6066), - [sym_for_statement] = STATE(6066), - [sym_return_statement] = STATE(6066), - [sym_break_statement] = STATE(6066), - [sym_continue_statement] = STATE(6066), - [sym_goto_statement] = STATE(6066), - [sym__expression] = STATE(3728), - [sym_comma_expression] = STATE(6585), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(6066), - [sym_co_return_statement] = STATE(6066), - [sym_co_yield_statement] = STATE(6066), - [sym_throw_statement] = STATE(6066), - [sym_try_statement] = STATE(6066), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(233), - [sym_identifier] = ACTIONS(1841), - [anon_sym_LPAREN2] = ACTIONS(960), + [197] = { + [sym_attribute_declaration] = STATE(191), + [sym_compound_statement] = STATE(825), + [sym_attributed_statement] = STATE(825), + [sym_labeled_statement] = STATE(825), + [sym_expression_statement] = STATE(825), + [sym_if_statement] = STATE(825), + [sym_switch_statement] = STATE(825), + [sym_case_statement] = STATE(825), + [sym_while_statement] = STATE(825), + [sym_do_statement] = STATE(825), + [sym_for_statement] = STATE(825), + [sym_return_statement] = STATE(825), + [sym_break_statement] = STATE(825), + [sym_continue_statement] = STATE(825), + [sym_goto_statement] = STATE(825), + [sym__expression] = STATE(3704), + [sym_comma_expression] = STATE(6857), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(825), + [sym_co_return_statement] = STATE(825), + [sym_co_yield_statement] = STATE(825), + [sym_throw_statement] = STATE(825), + [sym_try_statement] = STATE(825), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [sym_identifier] = ACTIONS(2019), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(1843), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(159), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(1845), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(1847), - [anon_sym_switch] = ACTIONS(1849), - [anon_sym_case] = ACTIONS(1835), - [anon_sym_default] = ACTIONS(1837), - [anon_sym_while] = ACTIONS(1851), - [anon_sym_do] = ACTIONS(1853), - [anon_sym_for] = ACTIONS(1855), - [anon_sym_return] = ACTIONS(1857), - [anon_sym_break] = ACTIONS(1859), - [anon_sym_continue] = ACTIONS(1861), - [anon_sym_goto] = ACTIONS(1863), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -55011,12 +58434,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(1865), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(197), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(1867), - [anon_sym_co_return] = ACTIONS(1869), - [anon_sym_co_yield] = ACTIONS(1871), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -55024,88 +58447,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [184] = { - [sym_attribute_declaration] = STATE(162), - [sym_compound_statement] = STATE(351), - [sym_attributed_statement] = STATE(351), - [sym_labeled_statement] = STATE(351), - [sym_expression_statement] = STATE(351), - [sym_if_statement] = STATE(351), - [sym_switch_statement] = STATE(351), - [sym_case_statement] = STATE(351), - [sym_while_statement] = STATE(351), - [sym_do_statement] = STATE(351), - [sym_for_statement] = STATE(351), - [sym_return_statement] = STATE(351), - [sym_break_statement] = STATE(351), - [sym_continue_statement] = STATE(351), - [sym_goto_statement] = STATE(351), - [sym__expression] = STATE(3579), - [sym_comma_expression] = STATE(6778), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(351), - [sym_co_return_statement] = STATE(351), - [sym_co_yield_statement] = STATE(351), - [sym_throw_statement] = STATE(351), - [sym_try_statement] = STATE(351), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(162), - [sym_identifier] = ACTIONS(1839), - [anon_sym_LPAREN2] = ACTIONS(960), + [198] = { + [sym_attribute_declaration] = STATE(286), + [sym_compound_statement] = STATE(677), + [sym_attributed_statement] = STATE(677), + [sym_labeled_statement] = STATE(677), + [sym_expression_statement] = STATE(677), + [sym_if_statement] = STATE(677), + [sym_switch_statement] = STATE(677), + [sym_case_statement] = STATE(677), + [sym_while_statement] = STATE(677), + [sym_do_statement] = STATE(677), + [sym_for_statement] = STATE(677), + [sym_return_statement] = STATE(677), + [sym_break_statement] = STATE(677), + [sym_continue_statement] = STATE(677), + [sym_goto_statement] = STATE(677), + [sym__expression] = STATE(3758), + [sym_comma_expression] = STATE(7239), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(677), + [sym_co_return_statement] = STATE(677), + [sym_co_yield_statement] = STATE(677), + [sym_throw_statement] = STATE(677), + [sym_try_statement] = STATE(677), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(33), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(253), - [anon_sym_switch] = ACTIONS(255), - [anon_sym_case] = ACTIONS(257), - [anon_sym_default] = ACTIONS(259), - [anon_sym_while] = ACTIONS(261), - [anon_sym_do] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_return] = ACTIONS(267), - [anon_sym_break] = ACTIONS(269), - [anon_sym_continue] = ACTIONS(271), - [anon_sym_goto] = ACTIONS(273), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(75), + [anon_sym_default] = ACTIONS(77), + [anon_sym_while] = ACTIONS(79), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -55124,12 +58549,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(277), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(119), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(279), - [anon_sym_co_return] = ACTIONS(289), - [anon_sym_co_yield] = ACTIONS(291), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -55137,88 +58562,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [185] = { - [sym_attribute_declaration] = STATE(183), - [sym_compound_statement] = STATE(6380), - [sym_attributed_statement] = STATE(6380), - [sym_labeled_statement] = STATE(6380), - [sym_expression_statement] = STATE(6380), - [sym_if_statement] = STATE(6380), - [sym_switch_statement] = STATE(6380), - [sym_case_statement] = STATE(6380), - [sym_while_statement] = STATE(6380), - [sym_do_statement] = STATE(6380), - [sym_for_statement] = STATE(6380), - [sym_return_statement] = STATE(6380), - [sym_break_statement] = STATE(6380), - [sym_continue_statement] = STATE(6380), - [sym_goto_statement] = STATE(6380), - [sym__expression] = STATE(3728), - [sym_comma_expression] = STATE(6585), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(6380), - [sym_co_return_statement] = STATE(6380), - [sym_co_yield_statement] = STATE(6380), - [sym_throw_statement] = STATE(6380), - [sym_try_statement] = STATE(6380), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(183), - [sym_identifier] = ACTIONS(1841), - [anon_sym_LPAREN2] = ACTIONS(960), + [199] = { + [sym_attribute_declaration] = STATE(191), + [sym_compound_statement] = STATE(832), + [sym_attributed_statement] = STATE(832), + [sym_labeled_statement] = STATE(832), + [sym_expression_statement] = STATE(832), + [sym_if_statement] = STATE(832), + [sym_switch_statement] = STATE(832), + [sym_case_statement] = STATE(832), + [sym_while_statement] = STATE(832), + [sym_do_statement] = STATE(832), + [sym_for_statement] = STATE(832), + [sym_return_statement] = STATE(832), + [sym_break_statement] = STATE(832), + [sym_continue_statement] = STATE(832), + [sym_goto_statement] = STATE(832), + [sym__expression] = STATE(3704), + [sym_comma_expression] = STATE(6857), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(832), + [sym_co_return_statement] = STATE(832), + [sym_co_yield_statement] = STATE(832), + [sym_throw_statement] = STATE(832), + [sym_try_statement] = STATE(832), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [sym_identifier] = ACTIONS(2019), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(1843), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(159), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(1845), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(1847), - [anon_sym_switch] = ACTIONS(1849), - [anon_sym_case] = ACTIONS(1835), - [anon_sym_default] = ACTIONS(1837), - [anon_sym_while] = ACTIONS(1851), - [anon_sym_do] = ACTIONS(1853), - [anon_sym_for] = ACTIONS(1855), - [anon_sym_return] = ACTIONS(1857), - [anon_sym_break] = ACTIONS(1859), - [anon_sym_continue] = ACTIONS(1861), - [anon_sym_goto] = ACTIONS(1863), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -55237,12 +58664,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(1865), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(197), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(1867), - [anon_sym_co_return] = ACTIONS(1869), - [anon_sym_co_yield] = ACTIONS(1871), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -55250,88 +58677,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [186] = { - [sym_attribute_declaration] = STATE(183), - [sym_compound_statement] = STATE(5851), - [sym_attributed_statement] = STATE(5846), - [sym_labeled_statement] = STATE(5841), - [sym_expression_statement] = STATE(5839), - [sym_if_statement] = STATE(5838), - [sym_switch_statement] = STATE(5835), - [sym_case_statement] = STATE(5834), - [sym_while_statement] = STATE(5833), - [sym_do_statement] = STATE(5826), - [sym_for_statement] = STATE(5819), - [sym_return_statement] = STATE(5817), - [sym_break_statement] = STATE(5815), - [sym_continue_statement] = STATE(6012), - [sym_goto_statement] = STATE(5811), - [sym__expression] = STATE(3728), - [sym_comma_expression] = STATE(6585), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(5810), - [sym_co_return_statement] = STATE(5809), - [sym_co_yield_statement] = STATE(5808), - [sym_throw_statement] = STATE(5804), - [sym_try_statement] = STATE(5803), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(183), - [sym_identifier] = ACTIONS(1841), - [anon_sym_LPAREN2] = ACTIONS(960), + [200] = { + [sym_attribute_declaration] = STATE(302), + [sym_compound_statement] = STATE(767), + [sym_attributed_statement] = STATE(768), + [sym_labeled_statement] = STATE(650), + [sym_expression_statement] = STATE(808), + [sym_if_statement] = STATE(814), + [sym_switch_statement] = STATE(815), + [sym_case_statement] = STATE(817), + [sym_while_statement] = STATE(818), + [sym_do_statement] = STATE(819), + [sym_for_statement] = STATE(823), + [sym_return_statement] = STATE(826), + [sym_break_statement] = STATE(827), + [sym_continue_statement] = STATE(828), + [sym_goto_statement] = STATE(830), + [sym__expression] = STATE(3763), + [sym_comma_expression] = STATE(6972), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(839), + [sym_co_return_statement] = STATE(840), + [sym_co_yield_statement] = STATE(844), + [sym_throw_statement] = STATE(846), + [sym_try_statement] = STATE(848), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(302), + [sym_identifier] = ACTIONS(2187), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(1843), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(560), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(1845), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(1847), - [anon_sym_switch] = ACTIONS(1849), - [anon_sym_case] = ACTIONS(1835), - [anon_sym_default] = ACTIONS(1837), - [anon_sym_while] = ACTIONS(1851), - [anon_sym_do] = ACTIONS(1853), - [anon_sym_for] = ACTIONS(1855), - [anon_sym_return] = ACTIONS(1857), - [anon_sym_break] = ACTIONS(1859), - [anon_sym_continue] = ACTIONS(1861), - [anon_sym_goto] = ACTIONS(1863), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(566), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(568), + [anon_sym_switch] = ACTIONS(570), + [anon_sym_case] = ACTIONS(572), + [anon_sym_default] = ACTIONS(574), + [anon_sym_while] = ACTIONS(576), + [anon_sym_do] = ACTIONS(578), + [anon_sym_for] = ACTIONS(580), + [anon_sym_return] = ACTIONS(582), + [anon_sym_break] = ACTIONS(584), + [anon_sym_continue] = ACTIONS(586), + [anon_sym_goto] = ACTIONS(588), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -55350,12 +58779,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(1865), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(592), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(1867), - [anon_sym_co_return] = ACTIONS(1869), - [anon_sym_co_yield] = ACTIONS(1871), + [anon_sym_throw] = ACTIONS(594), + [anon_sym_co_return] = ACTIONS(604), + [anon_sym_co_yield] = ACTIONS(606), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -55363,89 +58792,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [187] = { - [sym_attribute_declaration] = STATE(183), - [sym_compound_statement] = STATE(5906), - [sym_attributed_statement] = STATE(5905), - [sym_labeled_statement] = STATE(5903), - [sym_expression_statement] = STATE(5897), - [sym_if_statement] = STATE(5895), - [sym_switch_statement] = STATE(5888), - [sym_case_statement] = STATE(5887), - [sym_while_statement] = STATE(5886), - [sym_do_statement] = STATE(5885), - [sym_for_statement] = STATE(5883), - [sym_return_statement] = STATE(5882), - [sym_break_statement] = STATE(5881), - [sym_continue_statement] = STATE(5873), - [sym_goto_statement] = STATE(5869), - [sym__expression] = STATE(3728), - [sym_comma_expression] = STATE(6585), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(5863), - [sym_co_return_statement] = STATE(5862), - [sym_co_yield_statement] = STATE(5861), - [sym_throw_statement] = STATE(5860), - [sym_try_statement] = STATE(5854), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(183), - [sym_identifier] = ACTIONS(1841), - [anon_sym_LPAREN2] = ACTIONS(960), + [201] = { + [sym_attribute_declaration] = STATE(191), + [sym_compound_statement] = STATE(824), + [sym_attributed_statement] = STATE(824), + [sym_labeled_statement] = STATE(824), + [sym_expression_statement] = STATE(824), + [sym_if_statement] = STATE(824), + [sym_switch_statement] = STATE(824), + [sym_case_statement] = STATE(824), + [sym_while_statement] = STATE(824), + [sym_do_statement] = STATE(824), + [sym_for_statement] = STATE(824), + [sym_return_statement] = STATE(824), + [sym_break_statement] = STATE(824), + [sym_continue_statement] = STATE(824), + [sym_goto_statement] = STATE(824), + [sym__expression] = STATE(3704), + [sym_comma_expression] = STATE(6857), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(824), + [sym_co_return_statement] = STATE(824), + [sym_co_yield_statement] = STATE(824), + [sym_throw_statement] = STATE(824), + [sym_try_statement] = STATE(824), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [sym_identifier] = ACTIONS(2019), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(1843), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(1845), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(1847), - [anon_sym_switch] = ACTIONS(1849), - [anon_sym_case] = ACTIONS(1835), - [anon_sym_default] = ACTIONS(1837), - [anon_sym_while] = ACTIONS(1851), - [anon_sym_do] = ACTIONS(1853), - [anon_sym_for] = ACTIONS(1855), - [anon_sym_return] = ACTIONS(1857), - [anon_sym_break] = ACTIONS(1859), - [anon_sym_continue] = ACTIONS(1861), - [anon_sym_goto] = ACTIONS(1863), - [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), [sym_number_literal] = ACTIONS(97), @@ -55463,12 +58894,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(1865), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(197), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(1867), - [anon_sym_co_return] = ACTIONS(1869), - [anon_sym_co_yield] = ACTIONS(1871), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -55476,88 +58907,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [188] = { - [sym_attribute_declaration] = STATE(183), - [sym_compound_statement] = STATE(5907), - [sym_attributed_statement] = STATE(5907), - [sym_labeled_statement] = STATE(5907), - [sym_expression_statement] = STATE(5907), - [sym_if_statement] = STATE(5907), - [sym_switch_statement] = STATE(5907), - [sym_case_statement] = STATE(5907), - [sym_while_statement] = STATE(5907), - [sym_do_statement] = STATE(5907), - [sym_for_statement] = STATE(5907), - [sym_return_statement] = STATE(5907), - [sym_break_statement] = STATE(5907), - [sym_continue_statement] = STATE(5907), - [sym_goto_statement] = STATE(5907), - [sym__expression] = STATE(3728), - [sym_comma_expression] = STATE(6585), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(5907), - [sym_co_return_statement] = STATE(5907), - [sym_co_yield_statement] = STATE(5907), - [sym_throw_statement] = STATE(5907), - [sym_try_statement] = STATE(5907), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(183), - [sym_identifier] = ACTIONS(1841), - [anon_sym_LPAREN2] = ACTIONS(960), + [202] = { + [sym_attribute_declaration] = STATE(286), + [sym_compound_statement] = STATE(668), + [sym_attributed_statement] = STATE(668), + [sym_labeled_statement] = STATE(668), + [sym_expression_statement] = STATE(668), + [sym_if_statement] = STATE(668), + [sym_switch_statement] = STATE(668), + [sym_case_statement] = STATE(668), + [sym_while_statement] = STATE(668), + [sym_do_statement] = STATE(668), + [sym_for_statement] = STATE(668), + [sym_return_statement] = STATE(668), + [sym_break_statement] = STATE(668), + [sym_continue_statement] = STATE(668), + [sym_goto_statement] = STATE(668), + [sym__expression] = STATE(3758), + [sym_comma_expression] = STATE(7239), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(668), + [sym_co_return_statement] = STATE(668), + [sym_co_yield_statement] = STATE(668), + [sym_throw_statement] = STATE(668), + [sym_try_statement] = STATE(668), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(1843), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(33), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(1845), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(1847), - [anon_sym_switch] = ACTIONS(1849), - [anon_sym_case] = ACTIONS(1835), - [anon_sym_default] = ACTIONS(1837), - [anon_sym_while] = ACTIONS(1851), - [anon_sym_do] = ACTIONS(1853), - [anon_sym_for] = ACTIONS(1855), - [anon_sym_return] = ACTIONS(1857), - [anon_sym_break] = ACTIONS(1859), - [anon_sym_continue] = ACTIONS(1861), - [anon_sym_goto] = ACTIONS(1863), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(75), + [anon_sym_default] = ACTIONS(77), + [anon_sym_while] = ACTIONS(79), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -55576,12 +59009,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(1865), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(119), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(1867), - [anon_sym_co_return] = ACTIONS(1869), - [anon_sym_co_yield] = ACTIONS(1871), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -55589,88 +59022,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [189] = { - [sym_attribute_declaration] = STATE(162), - [sym_compound_statement] = STATE(353), - [sym_attributed_statement] = STATE(353), - [sym_labeled_statement] = STATE(353), - [sym_expression_statement] = STATE(353), - [sym_if_statement] = STATE(353), - [sym_switch_statement] = STATE(353), - [sym_case_statement] = STATE(353), - [sym_while_statement] = STATE(353), - [sym_do_statement] = STATE(353), - [sym_for_statement] = STATE(353), - [sym_return_statement] = STATE(353), - [sym_break_statement] = STATE(353), - [sym_continue_statement] = STATE(353), - [sym_goto_statement] = STATE(353), - [sym__expression] = STATE(3579), - [sym_comma_expression] = STATE(6778), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(353), - [sym_co_return_statement] = STATE(353), - [sym_co_yield_statement] = STATE(353), - [sym_throw_statement] = STATE(353), - [sym_try_statement] = STATE(353), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(162), - [sym_identifier] = ACTIONS(1839), - [anon_sym_LPAREN2] = ACTIONS(960), + [203] = { + [sym_attribute_declaration] = STATE(302), + [sym_compound_statement] = STATE(664), + [sym_attributed_statement] = STATE(678), + [sym_labeled_statement] = STATE(682), + [sym_expression_statement] = STATE(686), + [sym_if_statement] = STATE(687), + [sym_switch_statement] = STATE(688), + [sym_case_statement] = STATE(694), + [sym_while_statement] = STATE(695), + [sym_do_statement] = STATE(696), + [sym_for_statement] = STATE(698), + [sym_return_statement] = STATE(705), + [sym_break_statement] = STATE(706), + [sym_continue_statement] = STATE(713), + [sym_goto_statement] = STATE(714), + [sym__expression] = STATE(3763), + [sym_comma_expression] = STATE(6972), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(715), + [sym_co_return_statement] = STATE(717), + [sym_co_yield_statement] = STATE(719), + [sym_throw_statement] = STATE(763), + [sym_try_statement] = STATE(766), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(302), + [sym_identifier] = ACTIONS(2187), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(560), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(253), - [anon_sym_switch] = ACTIONS(255), - [anon_sym_case] = ACTIONS(257), - [anon_sym_default] = ACTIONS(259), - [anon_sym_while] = ACTIONS(261), - [anon_sym_do] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_return] = ACTIONS(267), - [anon_sym_break] = ACTIONS(269), - [anon_sym_continue] = ACTIONS(271), - [anon_sym_goto] = ACTIONS(273), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(566), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(568), + [anon_sym_switch] = ACTIONS(570), + [anon_sym_case] = ACTIONS(572), + [anon_sym_default] = ACTIONS(574), + [anon_sym_while] = ACTIONS(576), + [anon_sym_do] = ACTIONS(578), + [anon_sym_for] = ACTIONS(580), + [anon_sym_return] = ACTIONS(582), + [anon_sym_break] = ACTIONS(584), + [anon_sym_continue] = ACTIONS(586), + [anon_sym_goto] = ACTIONS(588), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -55689,12 +59124,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(277), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(592), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(279), - [anon_sym_co_return] = ACTIONS(289), - [anon_sym_co_yield] = ACTIONS(291), + [anon_sym_throw] = ACTIONS(594), + [anon_sym_co_return] = ACTIONS(604), + [anon_sym_co_yield] = ACTIONS(606), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -55702,88 +59137,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [190] = { - [sym_attribute_declaration] = STATE(183), - [sym_compound_statement] = STATE(5921), - [sym_attributed_statement] = STATE(5921), - [sym_labeled_statement] = STATE(5921), - [sym_expression_statement] = STATE(5921), - [sym_if_statement] = STATE(5921), - [sym_switch_statement] = STATE(5921), - [sym_case_statement] = STATE(5921), - [sym_while_statement] = STATE(5921), - [sym_do_statement] = STATE(5921), - [sym_for_statement] = STATE(5921), - [sym_return_statement] = STATE(5921), - [sym_break_statement] = STATE(5921), - [sym_continue_statement] = STATE(5921), - [sym_goto_statement] = STATE(5921), - [sym__expression] = STATE(3728), - [sym_comma_expression] = STATE(6585), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(5921), - [sym_co_return_statement] = STATE(5921), - [sym_co_yield_statement] = STATE(5921), - [sym_throw_statement] = STATE(5921), - [sym_try_statement] = STATE(5921), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(183), - [sym_identifier] = ACTIONS(1841), - [anon_sym_LPAREN2] = ACTIONS(960), + [204] = { + [sym_attribute_declaration] = STATE(302), + [sym_compound_statement] = STATE(662), + [sym_attributed_statement] = STATE(662), + [sym_labeled_statement] = STATE(662), + [sym_expression_statement] = STATE(662), + [sym_if_statement] = STATE(662), + [sym_switch_statement] = STATE(662), + [sym_case_statement] = STATE(662), + [sym_while_statement] = STATE(662), + [sym_do_statement] = STATE(662), + [sym_for_statement] = STATE(662), + [sym_return_statement] = STATE(662), + [sym_break_statement] = STATE(662), + [sym_continue_statement] = STATE(662), + [sym_goto_statement] = STATE(662), + [sym__expression] = STATE(3763), + [sym_comma_expression] = STATE(6972), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(662), + [sym_co_return_statement] = STATE(662), + [sym_co_yield_statement] = STATE(662), + [sym_throw_statement] = STATE(662), + [sym_try_statement] = STATE(662), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(302), + [sym_identifier] = ACTIONS(2187), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(1843), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(560), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(1845), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(1847), - [anon_sym_switch] = ACTIONS(1849), - [anon_sym_case] = ACTIONS(1835), - [anon_sym_default] = ACTIONS(1837), - [anon_sym_while] = ACTIONS(1851), - [anon_sym_do] = ACTIONS(1853), - [anon_sym_for] = ACTIONS(1855), - [anon_sym_return] = ACTIONS(1857), - [anon_sym_break] = ACTIONS(1859), - [anon_sym_continue] = ACTIONS(1861), - [anon_sym_goto] = ACTIONS(1863), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(566), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(568), + [anon_sym_switch] = ACTIONS(570), + [anon_sym_case] = ACTIONS(572), + [anon_sym_default] = ACTIONS(574), + [anon_sym_while] = ACTIONS(576), + [anon_sym_do] = ACTIONS(578), + [anon_sym_for] = ACTIONS(580), + [anon_sym_return] = ACTIONS(582), + [anon_sym_break] = ACTIONS(584), + [anon_sym_continue] = ACTIONS(586), + [anon_sym_goto] = ACTIONS(588), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -55802,12 +59239,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(1865), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(592), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(1867), - [anon_sym_co_return] = ACTIONS(1869), - [anon_sym_co_yield] = ACTIONS(1871), + [anon_sym_throw] = ACTIONS(594), + [anon_sym_co_return] = ACTIONS(604), + [anon_sym_co_yield] = ACTIONS(606), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -55815,88 +59252,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [191] = { - [sym_attribute_declaration] = STATE(183), - [sym_compound_statement] = STATE(5922), - [sym_attributed_statement] = STATE(5922), - [sym_labeled_statement] = STATE(5922), - [sym_expression_statement] = STATE(5922), - [sym_if_statement] = STATE(5922), - [sym_switch_statement] = STATE(5922), - [sym_case_statement] = STATE(5922), - [sym_while_statement] = STATE(5922), - [sym_do_statement] = STATE(5922), - [sym_for_statement] = STATE(5922), - [sym_return_statement] = STATE(5922), - [sym_break_statement] = STATE(5922), - [sym_continue_statement] = STATE(5922), - [sym_goto_statement] = STATE(5922), - [sym__expression] = STATE(3728), - [sym_comma_expression] = STATE(6585), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(5922), - [sym_co_return_statement] = STATE(5922), - [sym_co_yield_statement] = STATE(5922), - [sym_throw_statement] = STATE(5922), - [sym_try_statement] = STATE(5922), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(183), - [sym_identifier] = ACTIONS(1841), - [anon_sym_LPAREN2] = ACTIONS(960), + [205] = { + [sym_attribute_declaration] = STATE(286), + [sym_compound_statement] = STATE(566), + [sym_attributed_statement] = STATE(566), + [sym_labeled_statement] = STATE(566), + [sym_expression_statement] = STATE(566), + [sym_if_statement] = STATE(566), + [sym_switch_statement] = STATE(566), + [sym_case_statement] = STATE(566), + [sym_while_statement] = STATE(566), + [sym_do_statement] = STATE(566), + [sym_for_statement] = STATE(566), + [sym_return_statement] = STATE(566), + [sym_break_statement] = STATE(566), + [sym_continue_statement] = STATE(566), + [sym_goto_statement] = STATE(566), + [sym__expression] = STATE(3758), + [sym_comma_expression] = STATE(7239), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(566), + [sym_co_return_statement] = STATE(566), + [sym_co_yield_statement] = STATE(566), + [sym_throw_statement] = STATE(566), + [sym_try_statement] = STATE(566), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(1843), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(33), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(1845), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(1847), - [anon_sym_switch] = ACTIONS(1849), - [anon_sym_case] = ACTIONS(1835), - [anon_sym_default] = ACTIONS(1837), - [anon_sym_while] = ACTIONS(1851), - [anon_sym_do] = ACTIONS(1853), - [anon_sym_for] = ACTIONS(1855), - [anon_sym_return] = ACTIONS(1857), - [anon_sym_break] = ACTIONS(1859), - [anon_sym_continue] = ACTIONS(1861), - [anon_sym_goto] = ACTIONS(1863), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(75), + [anon_sym_default] = ACTIONS(77), + [anon_sym_while] = ACTIONS(79), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -55915,12 +59354,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(1865), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(119), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(1867), - [anon_sym_co_return] = ACTIONS(1869), - [anon_sym_co_yield] = ACTIONS(1871), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -55928,88 +59367,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [192] = { - [sym_attribute_declaration] = STATE(183), - [sym_compound_statement] = STATE(5980), - [sym_attributed_statement] = STATE(5977), - [sym_labeled_statement] = STATE(5976), - [sym_expression_statement] = STATE(5970), - [sym_if_statement] = STATE(5965), - [sym_switch_statement] = STATE(5964), - [sym_case_statement] = STATE(5963), - [sym_while_statement] = STATE(5961), - [sym_do_statement] = STATE(5960), - [sym_for_statement] = STATE(5959), - [sym_return_statement] = STATE(5958), - [sym_break_statement] = STATE(5943), - [sym_continue_statement] = STATE(5813), - [sym_goto_statement] = STATE(5935), - [sym__expression] = STATE(3728), - [sym_comma_expression] = STATE(6585), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(5929), - [sym_co_return_statement] = STATE(5928), - [sym_co_yield_statement] = STATE(5927), - [sym_throw_statement] = STATE(5925), - [sym_try_statement] = STATE(5923), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(183), - [sym_identifier] = ACTIONS(1841), - [anon_sym_LPAREN2] = ACTIONS(960), + [206] = { + [sym_attribute_declaration] = STATE(179), + [sym_compound_statement] = STATE(6340), + [sym_attributed_statement] = STATE(6340), + [sym_labeled_statement] = STATE(6340), + [sym_expression_statement] = STATE(6340), + [sym_if_statement] = STATE(6340), + [sym_switch_statement] = STATE(6340), + [sym_case_statement] = STATE(6340), + [sym_while_statement] = STATE(6340), + [sym_do_statement] = STATE(6340), + [sym_for_statement] = STATE(6340), + [sym_return_statement] = STATE(6340), + [sym_break_statement] = STATE(6340), + [sym_continue_statement] = STATE(6340), + [sym_goto_statement] = STATE(6340), + [sym__expression] = STATE(3701), + [sym_comma_expression] = STATE(7176), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(6340), + [sym_co_return_statement] = STATE(6340), + [sym_co_yield_statement] = STATE(6340), + [sym_throw_statement] = STATE(6340), + [sym_try_statement] = STATE(6340), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(179), + [sym_identifier] = ACTIONS(1981), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(1843), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1983), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(1845), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(1847), - [anon_sym_switch] = ACTIONS(1849), - [anon_sym_case] = ACTIONS(1835), - [anon_sym_default] = ACTIONS(1837), - [anon_sym_while] = ACTIONS(1851), - [anon_sym_do] = ACTIONS(1853), - [anon_sym_for] = ACTIONS(1855), - [anon_sym_return] = ACTIONS(1857), - [anon_sym_break] = ACTIONS(1859), - [anon_sym_continue] = ACTIONS(1861), - [anon_sym_goto] = ACTIONS(1863), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(1987), + [anon_sym_switch] = ACTIONS(1989), + [anon_sym_case] = ACTIONS(1991), + [anon_sym_default] = ACTIONS(1993), + [anon_sym_while] = ACTIONS(1995), + [anon_sym_do] = ACTIONS(1997), + [anon_sym_for] = ACTIONS(1999), + [anon_sym_return] = ACTIONS(2001), + [anon_sym_break] = ACTIONS(2003), + [anon_sym_continue] = ACTIONS(2005), + [anon_sym_goto] = ACTIONS(2007), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -56028,12 +59469,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(1865), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(2009), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(1867), - [anon_sym_co_return] = ACTIONS(1869), - [anon_sym_co_yield] = ACTIONS(1871), + [anon_sym_throw] = ACTIONS(2011), + [anon_sym_co_return] = ACTIONS(2013), + [anon_sym_co_yield] = ACTIONS(2015), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -56041,77 +59482,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [193] = { - [sym_attribute_declaration] = STATE(296), - [sym_compound_statement] = STATE(776), - [sym_attributed_statement] = STATE(775), - [sym_labeled_statement] = STATE(774), - [sym_expression_statement] = STATE(773), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(771), - [sym_case_statement] = STATE(770), - [sym_while_statement] = STATE(769), - [sym_do_statement] = STATE(768), - [sym_for_statement] = STATE(767), - [sym_return_statement] = STATE(765), - [sym_break_statement] = STATE(764), - [sym_continue_statement] = STATE(762), - [sym_goto_statement] = STATE(761), - [sym__expression] = STATE(3645), - [sym_comma_expression] = STATE(6499), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(760), - [sym_co_return_statement] = STATE(759), - [sym_co_yield_statement] = STATE(758), - [sym_throw_statement] = STATE(756), - [sym_try_statement] = STATE(755), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [sym_identifier] = ACTIONS(1989), - [anon_sym_LPAREN2] = ACTIONS(960), + [207] = { + [sym_attribute_declaration] = STATE(191), + [sym_compound_statement] = STATE(821), + [sym_attributed_statement] = STATE(821), + [sym_labeled_statement] = STATE(821), + [sym_expression_statement] = STATE(821), + [sym_if_statement] = STATE(821), + [sym_switch_statement] = STATE(821), + [sym_case_statement] = STATE(821), + [sym_while_statement] = STATE(821), + [sym_do_statement] = STATE(821), + [sym_for_statement] = STATE(821), + [sym_return_statement] = STATE(821), + [sym_break_statement] = STATE(821), + [sym_continue_statement] = STATE(821), + [sym_goto_statement] = STATE(821), + [sym__expression] = STATE(3704), + [sym_comma_expression] = STATE(6857), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(821), + [sym_co_return_statement] = STATE(821), + [sym_co_yield_statement] = STATE(821), + [sym_throw_statement] = STATE(821), + [sym_try_statement] = STATE(821), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [sym_identifier] = ACTIONS(2019), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), [anon_sym_SEMI] = ACTIONS(159), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), [anon_sym_LBRACE] = ACTIONS(536), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), [anon_sym_if] = ACTIONS(171), [anon_sym_switch] = ACTIONS(173), [anon_sym_case] = ACTIONS(175), @@ -56123,6 +59564,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(187), [anon_sym_continue] = ACTIONS(189), [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -56141,7 +59584,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), + [anon_sym_template] = ACTIONS(976), [anon_sym_try] = ACTIONS(197), [anon_sym_delete] = ACTIONS(121), [anon_sym_throw] = ACTIONS(199), @@ -56154,77 +59597,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [194] = { - [sym_attribute_declaration] = STATE(296), - [sym_compound_statement] = STATE(796), - [sym_attributed_statement] = STATE(795), - [sym_labeled_statement] = STATE(794), - [sym_expression_statement] = STATE(793), - [sym_if_statement] = STATE(792), - [sym_switch_statement] = STATE(791), - [sym_case_statement] = STATE(790), - [sym_while_statement] = STATE(789), - [sym_do_statement] = STATE(788), - [sym_for_statement] = STATE(787), - [sym_return_statement] = STATE(785), - [sym_break_statement] = STATE(784), - [sym_continue_statement] = STATE(783), - [sym_goto_statement] = STATE(782), - [sym__expression] = STATE(3645), - [sym_comma_expression] = STATE(6499), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(781), - [sym_co_return_statement] = STATE(780), - [sym_co_yield_statement] = STATE(779), - [sym_throw_statement] = STATE(778), - [sym_try_statement] = STATE(777), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [sym_identifier] = ACTIONS(1989), - [anon_sym_LPAREN2] = ACTIONS(960), + [208] = { + [sym_attribute_declaration] = STATE(191), + [sym_compound_statement] = STATE(820), + [sym_attributed_statement] = STATE(820), + [sym_labeled_statement] = STATE(820), + [sym_expression_statement] = STATE(820), + [sym_if_statement] = STATE(820), + [sym_switch_statement] = STATE(820), + [sym_case_statement] = STATE(820), + [sym_while_statement] = STATE(820), + [sym_do_statement] = STATE(820), + [sym_for_statement] = STATE(820), + [sym_return_statement] = STATE(820), + [sym_break_statement] = STATE(820), + [sym_continue_statement] = STATE(820), + [sym_goto_statement] = STATE(820), + [sym__expression] = STATE(3704), + [sym_comma_expression] = STATE(6857), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(820), + [sym_co_return_statement] = STATE(820), + [sym_co_yield_statement] = STATE(820), + [sym_throw_statement] = STATE(820), + [sym_try_statement] = STATE(820), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [sym_identifier] = ACTIONS(2019), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), [anon_sym_SEMI] = ACTIONS(159), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), [anon_sym_LBRACE] = ACTIONS(536), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), [anon_sym_if] = ACTIONS(171), [anon_sym_switch] = ACTIONS(173), [anon_sym_case] = ACTIONS(175), @@ -56236,6 +59679,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(187), [anon_sym_continue] = ACTIONS(189), [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -56254,7 +59699,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), + [anon_sym_template] = ACTIONS(976), [anon_sym_try] = ACTIONS(197), [anon_sym_delete] = ACTIONS(121), [anon_sym_throw] = ACTIONS(199), @@ -56267,77 +59712,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [195] = { - [sym_attribute_declaration] = STATE(296), - [sym_compound_statement] = STATE(797), - [sym_attributed_statement] = STATE(797), - [sym_labeled_statement] = STATE(797), - [sym_expression_statement] = STATE(797), - [sym_if_statement] = STATE(797), - [sym_switch_statement] = STATE(797), - [sym_case_statement] = STATE(797), - [sym_while_statement] = STATE(797), - [sym_do_statement] = STATE(797), - [sym_for_statement] = STATE(797), - [sym_return_statement] = STATE(797), - [sym_break_statement] = STATE(797), - [sym_continue_statement] = STATE(797), - [sym_goto_statement] = STATE(797), - [sym__expression] = STATE(3645), - [sym_comma_expression] = STATE(6499), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(797), - [sym_co_return_statement] = STATE(797), - [sym_co_yield_statement] = STATE(797), - [sym_throw_statement] = STATE(797), - [sym_try_statement] = STATE(797), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [sym_identifier] = ACTIONS(1989), - [anon_sym_LPAREN2] = ACTIONS(960), + [209] = { + [sym_attribute_declaration] = STATE(191), + [sym_compound_statement] = STATE(816), + [sym_attributed_statement] = STATE(816), + [sym_labeled_statement] = STATE(816), + [sym_expression_statement] = STATE(816), + [sym_if_statement] = STATE(816), + [sym_switch_statement] = STATE(816), + [sym_case_statement] = STATE(816), + [sym_while_statement] = STATE(816), + [sym_do_statement] = STATE(816), + [sym_for_statement] = STATE(816), + [sym_return_statement] = STATE(816), + [sym_break_statement] = STATE(816), + [sym_continue_statement] = STATE(816), + [sym_goto_statement] = STATE(816), + [sym__expression] = STATE(3704), + [sym_comma_expression] = STATE(6857), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(816), + [sym_co_return_statement] = STATE(816), + [sym_co_yield_statement] = STATE(816), + [sym_throw_statement] = STATE(816), + [sym_try_statement] = STATE(816), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [sym_identifier] = ACTIONS(2019), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), [anon_sym_SEMI] = ACTIONS(159), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), [anon_sym_LBRACE] = ACTIONS(536), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), [anon_sym_if] = ACTIONS(171), [anon_sym_switch] = ACTIONS(173), [anon_sym_case] = ACTIONS(175), @@ -56349,6 +59794,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(187), [anon_sym_continue] = ACTIONS(189), [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -56367,7 +59814,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), + [anon_sym_template] = ACTIONS(976), [anon_sym_try] = ACTIONS(197), [anon_sym_delete] = ACTIONS(121), [anon_sym_throw] = ACTIONS(199), @@ -56380,88 +59827,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [196] = { - [sym_attribute_declaration] = STATE(183), - [sym_compound_statement] = STATE(6033), - [sym_attributed_statement] = STATE(6032), - [sym_labeled_statement] = STATE(6031), - [sym_expression_statement] = STATE(6029), - [sym_if_statement] = STATE(6027), - [sym_switch_statement] = STATE(6026), - [sym_case_statement] = STATE(6077), - [sym_while_statement] = STATE(6018), - [sym_do_statement] = STATE(6017), - [sym_for_statement] = STATE(6022), - [sym_return_statement] = STATE(6011), - [sym_break_statement] = STATE(6010), - [sym_continue_statement] = STATE(6009), - [sym_goto_statement] = STATE(5995), - [sym__expression] = STATE(3728), - [sym_comma_expression] = STATE(6585), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(5991), - [sym_co_return_statement] = STATE(5990), - [sym_co_yield_statement] = STATE(5989), - [sym_throw_statement] = STATE(5982), - [sym_try_statement] = STATE(5981), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(183), - [sym_identifier] = ACTIONS(1841), - [anon_sym_LPAREN2] = ACTIONS(960), + [210] = { + [sym_attribute_declaration] = STATE(290), + [sym_compound_statement] = STATE(454), + [sym_attributed_statement] = STATE(454), + [sym_labeled_statement] = STATE(454), + [sym_expression_statement] = STATE(454), + [sym_if_statement] = STATE(454), + [sym_switch_statement] = STATE(454), + [sym_case_statement] = STATE(454), + [sym_while_statement] = STATE(454), + [sym_do_statement] = STATE(454), + [sym_for_statement] = STATE(454), + [sym_return_statement] = STATE(454), + [sym_break_statement] = STATE(454), + [sym_continue_statement] = STATE(454), + [sym_goto_statement] = STATE(454), + [sym__expression] = STATE(3680), + [sym_comma_expression] = STATE(7175), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(454), + [sym_co_return_statement] = STATE(454), + [sym_co_yield_statement] = STATE(454), + [sym_throw_statement] = STATE(454), + [sym_try_statement] = STATE(454), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(290), + [sym_identifier] = ACTIONS(2135), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(1843), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(245), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(1845), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(1847), - [anon_sym_switch] = ACTIONS(1849), - [anon_sym_case] = ACTIONS(1835), - [anon_sym_default] = ACTIONS(1837), - [anon_sym_while] = ACTIONS(1851), - [anon_sym_do] = ACTIONS(1853), - [anon_sym_for] = ACTIONS(1855), - [anon_sym_return] = ACTIONS(1857), - [anon_sym_break] = ACTIONS(1859), - [anon_sym_continue] = ACTIONS(1861), - [anon_sym_goto] = ACTIONS(1863), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(253), + [anon_sym_switch] = ACTIONS(255), + [anon_sym_case] = ACTIONS(257), + [anon_sym_default] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_do] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_return] = ACTIONS(267), + [anon_sym_break] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(271), + [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -56480,12 +59929,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(1865), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(277), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(1867), - [anon_sym_co_return] = ACTIONS(1869), - [anon_sym_co_yield] = ACTIONS(1871), + [anon_sym_throw] = ACTIONS(279), + [anon_sym_co_return] = ACTIONS(289), + [anon_sym_co_yield] = ACTIONS(291), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -56493,88 +59942,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [197] = { - [sym_attribute_declaration] = STATE(183), - [sym_compound_statement] = STATE(6034), - [sym_attributed_statement] = STATE(6034), - [sym_labeled_statement] = STATE(6034), - [sym_expression_statement] = STATE(6034), - [sym_if_statement] = STATE(6034), - [sym_switch_statement] = STATE(6034), - [sym_case_statement] = STATE(6034), - [sym_while_statement] = STATE(6034), - [sym_do_statement] = STATE(6034), - [sym_for_statement] = STATE(6034), - [sym_return_statement] = STATE(6034), - [sym_break_statement] = STATE(6034), - [sym_continue_statement] = STATE(6034), - [sym_goto_statement] = STATE(6034), - [sym__expression] = STATE(3728), - [sym_comma_expression] = STATE(6585), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(6034), - [sym_co_return_statement] = STATE(6034), - [sym_co_yield_statement] = STATE(6034), - [sym_throw_statement] = STATE(6034), - [sym_try_statement] = STATE(6034), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(183), - [sym_identifier] = ACTIONS(1841), - [anon_sym_LPAREN2] = ACTIONS(960), + [211] = { + [sym_attribute_declaration] = STATE(290), + [sym_compound_statement] = STATE(453), + [sym_attributed_statement] = STATE(453), + [sym_labeled_statement] = STATE(453), + [sym_expression_statement] = STATE(453), + [sym_if_statement] = STATE(453), + [sym_switch_statement] = STATE(453), + [sym_case_statement] = STATE(453), + [sym_while_statement] = STATE(453), + [sym_do_statement] = STATE(453), + [sym_for_statement] = STATE(453), + [sym_return_statement] = STATE(453), + [sym_break_statement] = STATE(453), + [sym_continue_statement] = STATE(453), + [sym_goto_statement] = STATE(453), + [sym__expression] = STATE(3680), + [sym_comma_expression] = STATE(7175), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(453), + [sym_co_return_statement] = STATE(453), + [sym_co_yield_statement] = STATE(453), + [sym_throw_statement] = STATE(453), + [sym_try_statement] = STATE(453), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(290), + [sym_identifier] = ACTIONS(2135), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(1843), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(245), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(1845), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(1847), - [anon_sym_switch] = ACTIONS(1849), - [anon_sym_case] = ACTIONS(1835), - [anon_sym_default] = ACTIONS(1837), - [anon_sym_while] = ACTIONS(1851), - [anon_sym_do] = ACTIONS(1853), - [anon_sym_for] = ACTIONS(1855), - [anon_sym_return] = ACTIONS(1857), - [anon_sym_break] = ACTIONS(1859), - [anon_sym_continue] = ACTIONS(1861), - [anon_sym_goto] = ACTIONS(1863), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(253), + [anon_sym_switch] = ACTIONS(255), + [anon_sym_case] = ACTIONS(257), + [anon_sym_default] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_do] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_return] = ACTIONS(267), + [anon_sym_break] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(271), + [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -56593,12 +60044,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(1865), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(277), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(1867), - [anon_sym_co_return] = ACTIONS(1869), - [anon_sym_co_yield] = ACTIONS(1871), + [anon_sym_throw] = ACTIONS(279), + [anon_sym_co_return] = ACTIONS(289), + [anon_sym_co_yield] = ACTIONS(291), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -56606,77 +60057,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [198] = { - [sym_attribute_declaration] = STATE(282), - [sym_compound_statement] = STATE(614), - [sym_attributed_statement] = STATE(614), - [sym_labeled_statement] = STATE(614), - [sym_expression_statement] = STATE(614), - [sym_if_statement] = STATE(614), - [sym_switch_statement] = STATE(614), - [sym_case_statement] = STATE(614), - [sym_while_statement] = STATE(614), - [sym_do_statement] = STATE(614), - [sym_for_statement] = STATE(614), - [sym_return_statement] = STATE(614), - [sym_break_statement] = STATE(614), - [sym_continue_statement] = STATE(614), - [sym_goto_statement] = STATE(614), - [sym__expression] = STATE(3605), - [sym_comma_expression] = STATE(6558), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(614), - [sym_co_return_statement] = STATE(614), - [sym_co_yield_statement] = STATE(614), - [sym_throw_statement] = STATE(614), - [sym_try_statement] = STATE(614), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(282), - [sym_identifier] = ACTIONS(1987), - [anon_sym_LPAREN2] = ACTIONS(960), + [212] = { + [sym_attribute_declaration] = STATE(286), + [sym_compound_statement] = STATE(869), + [sym_attributed_statement] = STATE(869), + [sym_labeled_statement] = STATE(869), + [sym_expression_statement] = STATE(869), + [sym_if_statement] = STATE(869), + [sym_switch_statement] = STATE(869), + [sym_case_statement] = STATE(869), + [sym_while_statement] = STATE(869), + [sym_do_statement] = STATE(869), + [sym_for_statement] = STATE(869), + [sym_return_statement] = STATE(869), + [sym_break_statement] = STATE(869), + [sym_continue_statement] = STATE(869), + [sym_goto_statement] = STATE(869), + [sym__expression] = STATE(3758), + [sym_comma_expression] = STATE(7239), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(869), + [sym_co_return_statement] = STATE(869), + [sym_co_yield_statement] = STATE(869), + [sym_throw_statement] = STATE(869), + [sym_try_statement] = STATE(869), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), [anon_sym_SEMI] = ACTIONS(33), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), [anon_sym_if] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), [anon_sym_case] = ACTIONS(75), @@ -56688,6 +60139,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(87), [anon_sym_continue] = ACTIONS(89), [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -56706,7 +60159,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), + [anon_sym_template] = ACTIONS(976), [anon_sym_try] = ACTIONS(119), [anon_sym_delete] = ACTIONS(121), [anon_sym_throw] = ACTIONS(123), @@ -56719,314 +60172,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [199] = { - [sym_attribute_declaration] = STATE(296), - [sym_compound_statement] = STATE(801), - [sym_attributed_statement] = STATE(801), - [sym_labeled_statement] = STATE(801), - [sym_expression_statement] = STATE(801), - [sym_if_statement] = STATE(801), - [sym_switch_statement] = STATE(801), - [sym_case_statement] = STATE(801), - [sym_while_statement] = STATE(801), - [sym_do_statement] = STATE(801), - [sym_for_statement] = STATE(801), - [sym_return_statement] = STATE(801), - [sym_break_statement] = STATE(801), - [sym_continue_statement] = STATE(801), - [sym_goto_statement] = STATE(801), - [sym__expression] = STATE(3645), - [sym_comma_expression] = STATE(6499), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(801), - [sym_co_return_statement] = STATE(801), - [sym_co_yield_statement] = STATE(801), - [sym_throw_statement] = STATE(801), - [sym_try_statement] = STATE(801), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [sym_identifier] = ACTIONS(1989), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(159), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(536), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(171), - [anon_sym_switch] = ACTIONS(173), - [anon_sym_case] = ACTIONS(175), - [anon_sym_default] = ACTIONS(177), - [anon_sym_while] = ACTIONS(179), - [anon_sym_do] = ACTIONS(181), - [anon_sym_for] = ACTIONS(183), - [anon_sym_return] = ACTIONS(185), - [anon_sym_break] = ACTIONS(187), - [anon_sym_continue] = ACTIONS(189), - [anon_sym_goto] = ACTIONS(191), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(197), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(199), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), - }, - [200] = { - [sym_attribute_declaration] = STATE(296), - [sym_compound_statement] = STATE(802), - [sym_attributed_statement] = STATE(802), - [sym_labeled_statement] = STATE(802), - [sym_expression_statement] = STATE(802), - [sym_if_statement] = STATE(802), - [sym_switch_statement] = STATE(802), - [sym_case_statement] = STATE(802), - [sym_while_statement] = STATE(802), - [sym_do_statement] = STATE(802), - [sym_for_statement] = STATE(802), - [sym_return_statement] = STATE(802), - [sym_break_statement] = STATE(802), - [sym_continue_statement] = STATE(802), - [sym_goto_statement] = STATE(802), - [sym__expression] = STATE(3645), - [sym_comma_expression] = STATE(6499), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(802), - [sym_co_return_statement] = STATE(802), - [sym_co_yield_statement] = STATE(802), - [sym_throw_statement] = STATE(802), - [sym_try_statement] = STATE(802), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [sym_identifier] = ACTIONS(1989), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(159), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(536), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(171), - [anon_sym_switch] = ACTIONS(173), - [anon_sym_case] = ACTIONS(175), - [anon_sym_default] = ACTIONS(177), - [anon_sym_while] = ACTIONS(179), - [anon_sym_do] = ACTIONS(181), - [anon_sym_for] = ACTIONS(183), - [anon_sym_return] = ACTIONS(185), - [anon_sym_break] = ACTIONS(187), - [anon_sym_continue] = ACTIONS(189), - [anon_sym_goto] = ACTIONS(191), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(197), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(199), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), - }, - [201] = { - [sym_attribute_declaration] = STATE(183), - [sym_compound_statement] = STATE(6035), - [sym_attributed_statement] = STATE(6035), - [sym_labeled_statement] = STATE(6035), - [sym_expression_statement] = STATE(6035), - [sym_if_statement] = STATE(6035), - [sym_switch_statement] = STATE(6035), - [sym_case_statement] = STATE(6035), - [sym_while_statement] = STATE(6035), - [sym_do_statement] = STATE(6035), - [sym_for_statement] = STATE(6035), - [sym_return_statement] = STATE(6035), - [sym_break_statement] = STATE(6035), - [sym_continue_statement] = STATE(6035), - [sym_goto_statement] = STATE(6035), - [sym__expression] = STATE(3728), - [sym_comma_expression] = STATE(6585), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(6035), - [sym_co_return_statement] = STATE(6035), - [sym_co_yield_statement] = STATE(6035), - [sym_throw_statement] = STATE(6035), - [sym_try_statement] = STATE(6035), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(183), - [sym_identifier] = ACTIONS(1841), - [anon_sym_LPAREN2] = ACTIONS(960), + [213] = { + [sym_attribute_declaration] = STATE(189), + [sym_compound_statement] = STATE(1209), + [sym_attributed_statement] = STATE(1209), + [sym_labeled_statement] = STATE(1209), + [sym_expression_statement] = STATE(1209), + [sym_if_statement] = STATE(1209), + [sym_switch_statement] = STATE(1209), + [sym_case_statement] = STATE(1209), + [sym_while_statement] = STATE(1209), + [sym_do_statement] = STATE(1209), + [sym_for_statement] = STATE(1209), + [sym_return_statement] = STATE(1209), + [sym_break_statement] = STATE(1209), + [sym_continue_statement] = STATE(1209), + [sym_goto_statement] = STATE(1209), + [sym__expression] = STATE(3699), + [sym_comma_expression] = STATE(6868), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(1209), + [sym_co_return_statement] = STATE(1209), + [sym_co_yield_statement] = STATE(1209), + [sym_throw_statement] = STATE(1209), + [sym_try_statement] = STATE(1209), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(189), + [sym_identifier] = ACTIONS(2017), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(1843), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1359), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(1845), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(1847), - [anon_sym_switch] = ACTIONS(1849), - [anon_sym_case] = ACTIONS(1835), - [anon_sym_default] = ACTIONS(1837), - [anon_sym_while] = ACTIONS(1851), - [anon_sym_do] = ACTIONS(1853), - [anon_sym_for] = ACTIONS(1855), - [anon_sym_return] = ACTIONS(1857), - [anon_sym_break] = ACTIONS(1859), - [anon_sym_continue] = ACTIONS(1861), - [anon_sym_goto] = ACTIONS(1863), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1367), + [anon_sym_case] = ACTIONS(1991), + [anon_sym_default] = ACTIONS(1993), + [anon_sym_while] = ACTIONS(1369), + [anon_sym_do] = ACTIONS(1371), + [anon_sym_for] = ACTIONS(1373), + [anon_sym_return] = ACTIONS(1375), + [anon_sym_break] = ACTIONS(1377), + [anon_sym_continue] = ACTIONS(1379), + [anon_sym_goto] = ACTIONS(1381), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -57045,12 +60274,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(1865), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(1383), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(1867), - [anon_sym_co_return] = ACTIONS(1869), - [anon_sym_co_yield] = ACTIONS(1871), + [anon_sym_throw] = ACTIONS(1385), + [anon_sym_co_return] = ACTIONS(1387), + [anon_sym_co_yield] = ACTIONS(1389), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -57058,88 +60287,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [202] = { - [sym_attribute_declaration] = STATE(282), - [sym_compound_statement] = STATE(577), - [sym_attributed_statement] = STATE(577), - [sym_labeled_statement] = STATE(577), - [sym_expression_statement] = STATE(577), - [sym_if_statement] = STATE(577), - [sym_switch_statement] = STATE(577), - [sym_case_statement] = STATE(577), - [sym_while_statement] = STATE(577), - [sym_do_statement] = STATE(577), - [sym_for_statement] = STATE(577), - [sym_return_statement] = STATE(577), - [sym_break_statement] = STATE(577), - [sym_continue_statement] = STATE(577), - [sym_goto_statement] = STATE(577), - [sym__expression] = STATE(3605), - [sym_comma_expression] = STATE(6558), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(577), - [sym_co_return_statement] = STATE(577), - [sym_co_yield_statement] = STATE(577), - [sym_throw_statement] = STATE(577), - [sym_try_statement] = STATE(577), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(282), - [sym_identifier] = ACTIONS(1987), - [anon_sym_LPAREN2] = ACTIONS(960), + [214] = { + [sym_attribute_declaration] = STATE(189), + [sym_compound_statement] = STATE(1215), + [sym_attributed_statement] = STATE(1215), + [sym_labeled_statement] = STATE(1215), + [sym_expression_statement] = STATE(1215), + [sym_if_statement] = STATE(1215), + [sym_switch_statement] = STATE(1215), + [sym_case_statement] = STATE(1215), + [sym_while_statement] = STATE(1215), + [sym_do_statement] = STATE(1215), + [sym_for_statement] = STATE(1215), + [sym_return_statement] = STATE(1215), + [sym_break_statement] = STATE(1215), + [sym_continue_statement] = STATE(1215), + [sym_goto_statement] = STATE(1215), + [sym__expression] = STATE(3699), + [sym_comma_expression] = STATE(6868), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(1215), + [sym_co_return_statement] = STATE(1215), + [sym_co_yield_statement] = STATE(1215), + [sym_throw_statement] = STATE(1215), + [sym_try_statement] = STATE(1215), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(189), + [sym_identifier] = ACTIONS(2017), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1359), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_case] = ACTIONS(75), - [anon_sym_default] = ACTIONS(77), - [anon_sym_while] = ACTIONS(79), - [anon_sym_do] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), - [anon_sym_return] = ACTIONS(85), - [anon_sym_break] = ACTIONS(87), - [anon_sym_continue] = ACTIONS(89), - [anon_sym_goto] = ACTIONS(91), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1367), + [anon_sym_case] = ACTIONS(1991), + [anon_sym_default] = ACTIONS(1993), + [anon_sym_while] = ACTIONS(1369), + [anon_sym_do] = ACTIONS(1371), + [anon_sym_for] = ACTIONS(1373), + [anon_sym_return] = ACTIONS(1375), + [anon_sym_break] = ACTIONS(1377), + [anon_sym_continue] = ACTIONS(1379), + [anon_sym_goto] = ACTIONS(1381), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -57158,12 +60389,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(119), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(1383), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(123), - [anon_sym_co_return] = ACTIONS(133), - [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_throw] = ACTIONS(1385), + [anon_sym_co_return] = ACTIONS(1387), + [anon_sym_co_yield] = ACTIONS(1389), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -57171,88 +60402,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [203] = { - [sym_attribute_declaration] = STATE(296), - [sym_compound_statement] = STATE(822), - [sym_attributed_statement] = STATE(821), - [sym_labeled_statement] = STATE(820), - [sym_expression_statement] = STATE(819), - [sym_if_statement] = STATE(818), - [sym_switch_statement] = STATE(817), - [sym_case_statement] = STATE(816), - [sym_while_statement] = STATE(815), - [sym_do_statement] = STATE(814), - [sym_for_statement] = STATE(813), - [sym_return_statement] = STATE(812), - [sym_break_statement] = STATE(811), - [sym_continue_statement] = STATE(810), - [sym_goto_statement] = STATE(809), - [sym__expression] = STATE(3645), - [sym_comma_expression] = STATE(6499), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(807), - [sym_co_return_statement] = STATE(806), - [sym_co_yield_statement] = STATE(805), - [sym_throw_statement] = STATE(804), - [sym_try_statement] = STATE(803), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [sym_identifier] = ACTIONS(1989), - [anon_sym_LPAREN2] = ACTIONS(960), + [215] = { + [sym_attribute_declaration] = STATE(290), + [sym_compound_statement] = STATE(356), + [sym_attributed_statement] = STATE(356), + [sym_labeled_statement] = STATE(356), + [sym_expression_statement] = STATE(356), + [sym_if_statement] = STATE(356), + [sym_switch_statement] = STATE(356), + [sym_case_statement] = STATE(356), + [sym_while_statement] = STATE(356), + [sym_do_statement] = STATE(356), + [sym_for_statement] = STATE(356), + [sym_return_statement] = STATE(356), + [sym_break_statement] = STATE(356), + [sym_continue_statement] = STATE(356), + [sym_goto_statement] = STATE(356), + [sym__expression] = STATE(3680), + [sym_comma_expression] = STATE(7175), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(356), + [sym_co_return_statement] = STATE(356), + [sym_co_yield_statement] = STATE(356), + [sym_throw_statement] = STATE(356), + [sym_try_statement] = STATE(356), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(290), + [sym_identifier] = ACTIONS(2135), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(245), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(536), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(171), - [anon_sym_switch] = ACTIONS(173), - [anon_sym_case] = ACTIONS(175), - [anon_sym_default] = ACTIONS(177), - [anon_sym_while] = ACTIONS(179), - [anon_sym_do] = ACTIONS(181), - [anon_sym_for] = ACTIONS(183), - [anon_sym_return] = ACTIONS(185), - [anon_sym_break] = ACTIONS(187), - [anon_sym_continue] = ACTIONS(189), - [anon_sym_goto] = ACTIONS(191), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(253), + [anon_sym_switch] = ACTIONS(255), + [anon_sym_case] = ACTIONS(257), + [anon_sym_default] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_do] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_return] = ACTIONS(267), + [anon_sym_break] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(271), + [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -57271,12 +60504,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(197), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(277), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(199), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_throw] = ACTIONS(279), + [anon_sym_co_return] = ACTIONS(289), + [anon_sym_co_yield] = ACTIONS(291), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -57284,88 +60517,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [204] = { - [sym_attribute_declaration] = STATE(296), - [sym_compound_statement] = STATE(845), - [sym_attributed_statement] = STATE(844), - [sym_labeled_statement] = STATE(843), - [sym_expression_statement] = STATE(842), - [sym_if_statement] = STATE(841), - [sym_switch_statement] = STATE(840), - [sym_case_statement] = STATE(839), - [sym_while_statement] = STATE(838), - [sym_do_statement] = STATE(835), - [sym_for_statement] = STATE(834), - [sym_return_statement] = STATE(833), - [sym_break_statement] = STATE(832), - [sym_continue_statement] = STATE(831), - [sym_goto_statement] = STATE(829), - [sym__expression] = STATE(3645), - [sym_comma_expression] = STATE(6499), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(828), - [sym_co_return_statement] = STATE(827), - [sym_co_yield_statement] = STATE(826), - [sym_throw_statement] = STATE(824), - [sym_try_statement] = STATE(823), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [sym_identifier] = ACTIONS(1989), - [anon_sym_LPAREN2] = ACTIONS(960), + [216] = { + [sym_attribute_declaration] = STATE(290), + [sym_compound_statement] = STATE(452), + [sym_attributed_statement] = STATE(451), + [sym_labeled_statement] = STATE(450), + [sym_expression_statement] = STATE(449), + [sym_if_statement] = STATE(448), + [sym_switch_statement] = STATE(447), + [sym_case_statement] = STATE(446), + [sym_while_statement] = STATE(445), + [sym_do_statement] = STATE(444), + [sym_for_statement] = STATE(443), + [sym_return_statement] = STATE(442), + [sym_break_statement] = STATE(441), + [sym_continue_statement] = STATE(440), + [sym_goto_statement] = STATE(439), + [sym__expression] = STATE(3680), + [sym_comma_expression] = STATE(7175), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(438), + [sym_co_return_statement] = STATE(437), + [sym_co_yield_statement] = STATE(436), + [sym_throw_statement] = STATE(435), + [sym_try_statement] = STATE(434), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(290), + [sym_identifier] = ACTIONS(2135), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(245), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(536), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(171), - [anon_sym_switch] = ACTIONS(173), - [anon_sym_case] = ACTIONS(175), - [anon_sym_default] = ACTIONS(177), - [anon_sym_while] = ACTIONS(179), - [anon_sym_do] = ACTIONS(181), - [anon_sym_for] = ACTIONS(183), - [anon_sym_return] = ACTIONS(185), - [anon_sym_break] = ACTIONS(187), - [anon_sym_continue] = ACTIONS(189), - [anon_sym_goto] = ACTIONS(191), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(253), + [anon_sym_switch] = ACTIONS(255), + [anon_sym_case] = ACTIONS(257), + [anon_sym_default] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_do] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_return] = ACTIONS(267), + [anon_sym_break] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(271), + [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -57384,12 +60619,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(197), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(277), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(199), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_throw] = ACTIONS(279), + [anon_sym_co_return] = ACTIONS(289), + [anon_sym_co_yield] = ACTIONS(291), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -57397,88 +60632,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [205] = { - [sym_attribute_declaration] = STATE(183), - [sym_compound_statement] = STATE(6036), - [sym_attributed_statement] = STATE(6036), - [sym_labeled_statement] = STATE(6036), - [sym_expression_statement] = STATE(6036), - [sym_if_statement] = STATE(6036), - [sym_switch_statement] = STATE(6036), - [sym_case_statement] = STATE(6036), - [sym_while_statement] = STATE(6036), - [sym_do_statement] = STATE(6036), - [sym_for_statement] = STATE(6036), - [sym_return_statement] = STATE(6036), - [sym_break_statement] = STATE(6036), - [sym_continue_statement] = STATE(6036), - [sym_goto_statement] = STATE(6036), - [sym__expression] = STATE(3728), - [sym_comma_expression] = STATE(6585), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(6036), - [sym_co_return_statement] = STATE(6036), - [sym_co_yield_statement] = STATE(6036), - [sym_throw_statement] = STATE(6036), - [sym_try_statement] = STATE(6036), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(183), - [sym_identifier] = ACTIONS(1841), - [anon_sym_LPAREN2] = ACTIONS(960), + [217] = { + [sym_attribute_declaration] = STATE(179), + [sym_compound_statement] = STATE(7169), + [sym_attributed_statement] = STATE(7169), + [sym_labeled_statement] = STATE(7169), + [sym_expression_statement] = STATE(7169), + [sym_if_statement] = STATE(7169), + [sym_switch_statement] = STATE(7169), + [sym_case_statement] = STATE(7169), + [sym_while_statement] = STATE(7169), + [sym_do_statement] = STATE(7169), + [sym_for_statement] = STATE(7169), + [sym_return_statement] = STATE(7169), + [sym_break_statement] = STATE(7169), + [sym_continue_statement] = STATE(7169), + [sym_goto_statement] = STATE(7169), + [sym__expression] = STATE(3701), + [sym_comma_expression] = STATE(7176), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(7169), + [sym_co_return_statement] = STATE(7169), + [sym_co_yield_statement] = STATE(7169), + [sym_throw_statement] = STATE(7169), + [sym_try_statement] = STATE(7169), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(179), + [sym_identifier] = ACTIONS(1981), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(1843), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1983), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(1845), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(1847), - [anon_sym_switch] = ACTIONS(1849), - [anon_sym_case] = ACTIONS(1835), - [anon_sym_default] = ACTIONS(1837), - [anon_sym_while] = ACTIONS(1851), - [anon_sym_do] = ACTIONS(1853), - [anon_sym_for] = ACTIONS(1855), - [anon_sym_return] = ACTIONS(1857), - [anon_sym_break] = ACTIONS(1859), - [anon_sym_continue] = ACTIONS(1861), - [anon_sym_goto] = ACTIONS(1863), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(1987), + [anon_sym_switch] = ACTIONS(1989), + [anon_sym_case] = ACTIONS(1991), + [anon_sym_default] = ACTIONS(1993), + [anon_sym_while] = ACTIONS(1995), + [anon_sym_do] = ACTIONS(1997), + [anon_sym_for] = ACTIONS(1999), + [anon_sym_return] = ACTIONS(2001), + [anon_sym_break] = ACTIONS(2003), + [anon_sym_continue] = ACTIONS(2005), + [anon_sym_goto] = ACTIONS(2007), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -57497,12 +60734,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(1865), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(2009), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(1867), - [anon_sym_co_return] = ACTIONS(1869), - [anon_sym_co_yield] = ACTIONS(1871), + [anon_sym_throw] = ACTIONS(2011), + [anon_sym_co_return] = ACTIONS(2013), + [anon_sym_co_yield] = ACTIONS(2015), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -57510,88 +60747,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [206] = { - [sym_attribute_declaration] = STATE(296), - [sym_compound_statement] = STATE(846), - [sym_attributed_statement] = STATE(846), - [sym_labeled_statement] = STATE(846), - [sym_expression_statement] = STATE(846), - [sym_if_statement] = STATE(846), - [sym_switch_statement] = STATE(846), - [sym_case_statement] = STATE(846), - [sym_while_statement] = STATE(846), - [sym_do_statement] = STATE(846), - [sym_for_statement] = STATE(846), - [sym_return_statement] = STATE(846), - [sym_break_statement] = STATE(846), - [sym_continue_statement] = STATE(846), - [sym_goto_statement] = STATE(846), - [sym__expression] = STATE(3645), - [sym_comma_expression] = STATE(6499), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(846), - [sym_co_return_statement] = STATE(846), - [sym_co_yield_statement] = STATE(846), - [sym_throw_statement] = STATE(846), - [sym_try_statement] = STATE(846), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [sym_identifier] = ACTIONS(1989), - [anon_sym_LPAREN2] = ACTIONS(960), + [218] = { + [sym_attribute_declaration] = STATE(290), + [sym_compound_statement] = STATE(433), + [sym_attributed_statement] = STATE(432), + [sym_labeled_statement] = STATE(431), + [sym_expression_statement] = STATE(430), + [sym_if_statement] = STATE(429), + [sym_switch_statement] = STATE(428), + [sym_case_statement] = STATE(427), + [sym_while_statement] = STATE(426), + [sym_do_statement] = STATE(425), + [sym_for_statement] = STATE(424), + [sym_return_statement] = STATE(423), + [sym_break_statement] = STATE(422), + [sym_continue_statement] = STATE(421), + [sym_goto_statement] = STATE(420), + [sym__expression] = STATE(3680), + [sym_comma_expression] = STATE(7175), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(419), + [sym_co_return_statement] = STATE(418), + [sym_co_yield_statement] = STATE(417), + [sym_throw_statement] = STATE(416), + [sym_try_statement] = STATE(415), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(290), + [sym_identifier] = ACTIONS(2135), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(245), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(536), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(171), - [anon_sym_switch] = ACTIONS(173), - [anon_sym_case] = ACTIONS(175), - [anon_sym_default] = ACTIONS(177), - [anon_sym_while] = ACTIONS(179), - [anon_sym_do] = ACTIONS(181), - [anon_sym_for] = ACTIONS(183), - [anon_sym_return] = ACTIONS(185), - [anon_sym_break] = ACTIONS(187), - [anon_sym_continue] = ACTIONS(189), - [anon_sym_goto] = ACTIONS(191), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(253), + [anon_sym_switch] = ACTIONS(255), + [anon_sym_case] = ACTIONS(257), + [anon_sym_default] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_do] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_return] = ACTIONS(267), + [anon_sym_break] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(271), + [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -57610,12 +60849,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(197), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(277), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(199), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_throw] = ACTIONS(279), + [anon_sym_co_return] = ACTIONS(289), + [anon_sym_co_yield] = ACTIONS(291), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -57623,88 +60862,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [207] = { - [sym_attribute_declaration] = STATE(296), - [sym_compound_statement] = STATE(850), - [sym_attributed_statement] = STATE(850), - [sym_labeled_statement] = STATE(850), - [sym_expression_statement] = STATE(850), - [sym_if_statement] = STATE(850), - [sym_switch_statement] = STATE(850), - [sym_case_statement] = STATE(850), - [sym_while_statement] = STATE(850), - [sym_do_statement] = STATE(850), - [sym_for_statement] = STATE(850), - [sym_return_statement] = STATE(850), - [sym_break_statement] = STATE(850), - [sym_continue_statement] = STATE(850), - [sym_goto_statement] = STATE(850), - [sym__expression] = STATE(3645), - [sym_comma_expression] = STATE(6499), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(850), - [sym_co_return_statement] = STATE(850), - [sym_co_yield_statement] = STATE(850), - [sym_throw_statement] = STATE(850), - [sym_try_statement] = STATE(850), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [sym_identifier] = ACTIONS(1989), - [anon_sym_LPAREN2] = ACTIONS(960), + [219] = { + [sym_attribute_declaration] = STATE(179), + [sym_compound_statement] = STATE(6284), + [sym_attributed_statement] = STATE(6284), + [sym_labeled_statement] = STATE(6284), + [sym_expression_statement] = STATE(6284), + [sym_if_statement] = STATE(6284), + [sym_switch_statement] = STATE(6284), + [sym_case_statement] = STATE(6284), + [sym_while_statement] = STATE(6284), + [sym_do_statement] = STATE(6284), + [sym_for_statement] = STATE(6284), + [sym_return_statement] = STATE(6284), + [sym_break_statement] = STATE(6284), + [sym_continue_statement] = STATE(6284), + [sym_goto_statement] = STATE(6284), + [sym__expression] = STATE(3701), + [sym_comma_expression] = STATE(7176), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(6284), + [sym_co_return_statement] = STATE(6284), + [sym_co_yield_statement] = STATE(6284), + [sym_throw_statement] = STATE(6284), + [sym_try_statement] = STATE(6284), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(179), + [sym_identifier] = ACTIONS(1981), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1983), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(536), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(171), - [anon_sym_switch] = ACTIONS(173), - [anon_sym_case] = ACTIONS(175), - [anon_sym_default] = ACTIONS(177), - [anon_sym_while] = ACTIONS(179), - [anon_sym_do] = ACTIONS(181), - [anon_sym_for] = ACTIONS(183), - [anon_sym_return] = ACTIONS(185), - [anon_sym_break] = ACTIONS(187), - [anon_sym_continue] = ACTIONS(189), - [anon_sym_goto] = ACTIONS(191), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(1987), + [anon_sym_switch] = ACTIONS(1989), + [anon_sym_case] = ACTIONS(1991), + [anon_sym_default] = ACTIONS(1993), + [anon_sym_while] = ACTIONS(1995), + [anon_sym_do] = ACTIONS(1997), + [anon_sym_for] = ACTIONS(1999), + [anon_sym_return] = ACTIONS(2001), + [anon_sym_break] = ACTIONS(2003), + [anon_sym_continue] = ACTIONS(2005), + [anon_sym_goto] = ACTIONS(2007), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -57723,12 +60964,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(197), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(2009), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(199), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_throw] = ACTIONS(2011), + [anon_sym_co_return] = ACTIONS(2013), + [anon_sym_co_yield] = ACTIONS(2015), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -57736,88 +60977,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [208] = { - [sym_attribute_declaration] = STATE(183), - [sym_compound_statement] = STATE(6038), - [sym_attributed_statement] = STATE(6038), - [sym_labeled_statement] = STATE(6038), - [sym_expression_statement] = STATE(6038), - [sym_if_statement] = STATE(6038), - [sym_switch_statement] = STATE(6038), - [sym_case_statement] = STATE(6038), - [sym_while_statement] = STATE(6038), - [sym_do_statement] = STATE(6038), - [sym_for_statement] = STATE(6038), - [sym_return_statement] = STATE(6038), - [sym_break_statement] = STATE(6038), - [sym_continue_statement] = STATE(6038), - [sym_goto_statement] = STATE(6038), - [sym__expression] = STATE(3728), - [sym_comma_expression] = STATE(6585), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(6038), - [sym_co_return_statement] = STATE(6038), - [sym_co_yield_statement] = STATE(6038), - [sym_throw_statement] = STATE(6038), - [sym_try_statement] = STATE(6038), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(183), - [sym_identifier] = ACTIONS(1841), - [anon_sym_LPAREN2] = ACTIONS(960), + [220] = { + [sym_attribute_declaration] = STATE(179), + [sym_compound_statement] = STATE(6327), + [sym_attributed_statement] = STATE(6327), + [sym_labeled_statement] = STATE(6327), + [sym_expression_statement] = STATE(6327), + [sym_if_statement] = STATE(6327), + [sym_switch_statement] = STATE(6327), + [sym_case_statement] = STATE(6327), + [sym_while_statement] = STATE(6327), + [sym_do_statement] = STATE(6327), + [sym_for_statement] = STATE(6327), + [sym_return_statement] = STATE(6327), + [sym_break_statement] = STATE(6327), + [sym_continue_statement] = STATE(6327), + [sym_goto_statement] = STATE(6327), + [sym__expression] = STATE(3701), + [sym_comma_expression] = STATE(7176), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(6327), + [sym_co_return_statement] = STATE(6327), + [sym_co_yield_statement] = STATE(6327), + [sym_throw_statement] = STATE(6327), + [sym_try_statement] = STATE(6327), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(179), + [sym_identifier] = ACTIONS(1981), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(1843), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1983), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(1845), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(1847), - [anon_sym_switch] = ACTIONS(1849), - [anon_sym_case] = ACTIONS(1835), - [anon_sym_default] = ACTIONS(1837), - [anon_sym_while] = ACTIONS(1851), - [anon_sym_do] = ACTIONS(1853), - [anon_sym_for] = ACTIONS(1855), - [anon_sym_return] = ACTIONS(1857), - [anon_sym_break] = ACTIONS(1859), - [anon_sym_continue] = ACTIONS(1861), - [anon_sym_goto] = ACTIONS(1863), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(1987), + [anon_sym_switch] = ACTIONS(1989), + [anon_sym_case] = ACTIONS(1991), + [anon_sym_default] = ACTIONS(1993), + [anon_sym_while] = ACTIONS(1995), + [anon_sym_do] = ACTIONS(1997), + [anon_sym_for] = ACTIONS(1999), + [anon_sym_return] = ACTIONS(2001), + [anon_sym_break] = ACTIONS(2003), + [anon_sym_continue] = ACTIONS(2005), + [anon_sym_goto] = ACTIONS(2007), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -57836,12 +61079,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(1865), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(2009), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(1867), - [anon_sym_co_return] = ACTIONS(1869), - [anon_sym_co_yield] = ACTIONS(1871), + [anon_sym_throw] = ACTIONS(2011), + [anon_sym_co_return] = ACTIONS(2013), + [anon_sym_co_yield] = ACTIONS(2015), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -57849,88 +61092,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [209] = { - [sym_attribute_declaration] = STATE(282), - [sym_compound_statement] = STATE(861), - [sym_attributed_statement] = STATE(861), - [sym_labeled_statement] = STATE(861), - [sym_expression_statement] = STATE(861), - [sym_if_statement] = STATE(861), - [sym_switch_statement] = STATE(861), - [sym_case_statement] = STATE(861), - [sym_while_statement] = STATE(861), - [sym_do_statement] = STATE(861), - [sym_for_statement] = STATE(861), - [sym_return_statement] = STATE(861), - [sym_break_statement] = STATE(861), - [sym_continue_statement] = STATE(861), - [sym_goto_statement] = STATE(861), - [sym__expression] = STATE(3605), - [sym_comma_expression] = STATE(6558), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(861), - [sym_co_return_statement] = STATE(861), - [sym_co_yield_statement] = STATE(861), - [sym_throw_statement] = STATE(861), - [sym_try_statement] = STATE(861), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(282), - [sym_identifier] = ACTIONS(1987), - [anon_sym_LPAREN2] = ACTIONS(960), + [221] = { + [sym_attribute_declaration] = STATE(179), + [sym_compound_statement] = STATE(6320), + [sym_attributed_statement] = STATE(6320), + [sym_labeled_statement] = STATE(6320), + [sym_expression_statement] = STATE(6320), + [sym_if_statement] = STATE(6320), + [sym_switch_statement] = STATE(6320), + [sym_case_statement] = STATE(6320), + [sym_while_statement] = STATE(6320), + [sym_do_statement] = STATE(6320), + [sym_for_statement] = STATE(6320), + [sym_return_statement] = STATE(6320), + [sym_break_statement] = STATE(6320), + [sym_continue_statement] = STATE(6320), + [sym_goto_statement] = STATE(6320), + [sym__expression] = STATE(3701), + [sym_comma_expression] = STATE(7176), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(6320), + [sym_co_return_statement] = STATE(6320), + [sym_co_yield_statement] = STATE(6320), + [sym_throw_statement] = STATE(6320), + [sym_try_statement] = STATE(6320), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(179), + [sym_identifier] = ACTIONS(1981), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1983), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_case] = ACTIONS(75), - [anon_sym_default] = ACTIONS(77), - [anon_sym_while] = ACTIONS(79), - [anon_sym_do] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), - [anon_sym_return] = ACTIONS(85), - [anon_sym_break] = ACTIONS(87), - [anon_sym_continue] = ACTIONS(89), - [anon_sym_goto] = ACTIONS(91), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(1987), + [anon_sym_switch] = ACTIONS(1989), + [anon_sym_case] = ACTIONS(1991), + [anon_sym_default] = ACTIONS(1993), + [anon_sym_while] = ACTIONS(1995), + [anon_sym_do] = ACTIONS(1997), + [anon_sym_for] = ACTIONS(1999), + [anon_sym_return] = ACTIONS(2001), + [anon_sym_break] = ACTIONS(2003), + [anon_sym_continue] = ACTIONS(2005), + [anon_sym_goto] = ACTIONS(2007), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -57949,12 +61194,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(119), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(2009), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(123), - [anon_sym_co_return] = ACTIONS(133), - [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_throw] = ACTIONS(2011), + [anon_sym_co_return] = ACTIONS(2013), + [anon_sym_co_yield] = ACTIONS(2015), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -57962,201 +61207,205 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [210] = { - [sym_attribute_declaration] = STATE(183), - [sym_compound_statement] = STATE(6040), - [sym_attributed_statement] = STATE(6040), - [sym_labeled_statement] = STATE(6040), - [sym_expression_statement] = STATE(6040), - [sym_if_statement] = STATE(6040), - [sym_switch_statement] = STATE(6040), - [sym_case_statement] = STATE(6040), - [sym_while_statement] = STATE(6040), - [sym_do_statement] = STATE(6040), - [sym_for_statement] = STATE(6040), - [sym_return_statement] = STATE(6040), - [sym_break_statement] = STATE(6040), - [sym_continue_statement] = STATE(6040), - [sym_goto_statement] = STATE(6040), - [sym__expression] = STATE(3728), - [sym_comma_expression] = STATE(6585), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(6040), - [sym_co_return_statement] = STATE(6040), - [sym_co_yield_statement] = STATE(6040), - [sym_throw_statement] = STATE(6040), - [sym_try_statement] = STATE(6040), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(183), - [sym_identifier] = ACTIONS(1841), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(1843), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(1845), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(1847), - [anon_sym_switch] = ACTIONS(1849), - [anon_sym_case] = ACTIONS(1835), - [anon_sym_default] = ACTIONS(1837), - [anon_sym_while] = ACTIONS(1851), - [anon_sym_do] = ACTIONS(1853), - [anon_sym_for] = ACTIONS(1855), - [anon_sym_return] = ACTIONS(1857), - [anon_sym_break] = ACTIONS(1859), - [anon_sym_continue] = ACTIONS(1861), - [anon_sym_goto] = ACTIONS(1863), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(1865), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(1867), - [anon_sym_co_return] = ACTIONS(1869), - [anon_sym_co_yield] = ACTIONS(1871), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [222] = { + [sym_attribute_declaration] = STATE(222), + [sym_compound_statement] = STATE(692), + [sym_attributed_statement] = STATE(692), + [sym_labeled_statement] = STATE(692), + [sym_expression_statement] = STATE(692), + [sym_if_statement] = STATE(692), + [sym_switch_statement] = STATE(692), + [sym_case_statement] = STATE(692), + [sym_while_statement] = STATE(692), + [sym_do_statement] = STATE(692), + [sym_for_statement] = STATE(692), + [sym_return_statement] = STATE(692), + [sym_break_statement] = STATE(692), + [sym_continue_statement] = STATE(692), + [sym_goto_statement] = STATE(692), + [sym__expression] = STATE(3763), + [sym_comma_expression] = STATE(6972), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(692), + [sym_co_return_statement] = STATE(692), + [sym_co_yield_statement] = STATE(692), + [sym_throw_statement] = STATE(692), + [sym_try_statement] = STATE(692), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(222), + [sym_identifier] = ACTIONS(2189), + [anon_sym_LPAREN2] = ACTIONS(2024), + [anon_sym_BANG] = ACTIONS(2027), + [anon_sym_TILDE] = ACTIONS(2027), + [anon_sym_DASH] = ACTIONS(2030), + [anon_sym_PLUS] = ACTIONS(2030), + [anon_sym_STAR] = ACTIONS(2033), + [anon_sym_AMP] = ACTIONS(2033), + [anon_sym_SEMI] = ACTIONS(2192), + [anon_sym_COLON_COLON] = ACTIONS(2039), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2042), + [anon_sym_LBRACE] = ACTIONS(2195), + [anon_sym_LBRACK] = ACTIONS(2048), + [sym_primitive_type] = ACTIONS(2051), + [anon_sym_if] = ACTIONS(2198), + [anon_sym_switch] = ACTIONS(2201), + [anon_sym_case] = ACTIONS(2204), + [anon_sym_default] = ACTIONS(2207), + [anon_sym_while] = ACTIONS(2210), + [anon_sym_do] = ACTIONS(2213), + [anon_sym_for] = ACTIONS(2216), + [anon_sym_return] = ACTIONS(2219), + [anon_sym_break] = ACTIONS(2222), + [anon_sym_continue] = ACTIONS(2225), + [anon_sym_goto] = ACTIONS(2228), + [anon_sym_not] = ACTIONS(2030), + [anon_sym_compl] = ACTIONS(2030), + [anon_sym_DASH_DASH] = ACTIONS(2087), + [anon_sym_PLUS_PLUS] = ACTIONS(2087), + [anon_sym_sizeof] = ACTIONS(2090), + [sym_number_literal] = ACTIONS(2093), + [anon_sym_L_SQUOTE] = ACTIONS(2096), + [anon_sym_u_SQUOTE] = ACTIONS(2096), + [anon_sym_U_SQUOTE] = ACTIONS(2096), + [anon_sym_u8_SQUOTE] = ACTIONS(2096), + [anon_sym_SQUOTE] = ACTIONS(2096), + [anon_sym_L_DQUOTE] = ACTIONS(2099), + [anon_sym_u_DQUOTE] = ACTIONS(2099), + [anon_sym_U_DQUOTE] = ACTIONS(2099), + [anon_sym_u8_DQUOTE] = ACTIONS(2099), + [anon_sym_DQUOTE] = ACTIONS(2099), + [sym_true] = ACTIONS(2102), + [sym_false] = ACTIONS(2102), + [sym_null] = ACTIONS(2102), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(2105), + [anon_sym_try] = ACTIONS(2231), + [anon_sym_delete] = ACTIONS(2111), + [anon_sym_throw] = ACTIONS(2234), + [anon_sym_co_return] = ACTIONS(2237), + [anon_sym_co_yield] = ACTIONS(2240), + [anon_sym_co_await] = ACTIONS(2123), + [anon_sym_new] = ACTIONS(2126), + [anon_sym_requires] = ACTIONS(2129), + [sym_this] = ACTIONS(2102), + [sym_nullptr] = ACTIONS(2102), + [sym_raw_string_literal] = ACTIONS(2132), }, - [211] = { - [sym_attribute_declaration] = STATE(162), - [sym_compound_statement] = STATE(354), - [sym_attributed_statement] = STATE(354), - [sym_labeled_statement] = STATE(354), - [sym_expression_statement] = STATE(354), - [sym_if_statement] = STATE(354), - [sym_switch_statement] = STATE(354), - [sym_case_statement] = STATE(354), - [sym_while_statement] = STATE(354), - [sym_do_statement] = STATE(354), - [sym_for_statement] = STATE(354), - [sym_return_statement] = STATE(354), - [sym_break_statement] = STATE(354), - [sym_continue_statement] = STATE(354), - [sym_goto_statement] = STATE(354), - [sym__expression] = STATE(3579), - [sym_comma_expression] = STATE(6778), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(354), - [sym_co_return_statement] = STATE(354), - [sym_co_yield_statement] = STATE(354), - [sym_throw_statement] = STATE(354), - [sym_try_statement] = STATE(354), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(162), - [sym_identifier] = ACTIONS(1839), - [anon_sym_LPAREN2] = ACTIONS(960), + [223] = { + [sym_attribute_declaration] = STATE(286), + [sym_compound_statement] = STATE(726), + [sym_attributed_statement] = STATE(726), + [sym_labeled_statement] = STATE(726), + [sym_expression_statement] = STATE(726), + [sym_if_statement] = STATE(726), + [sym_switch_statement] = STATE(726), + [sym_case_statement] = STATE(726), + [sym_while_statement] = STATE(726), + [sym_do_statement] = STATE(726), + [sym_for_statement] = STATE(726), + [sym_return_statement] = STATE(726), + [sym_break_statement] = STATE(726), + [sym_continue_statement] = STATE(726), + [sym_goto_statement] = STATE(726), + [sym__expression] = STATE(3758), + [sym_comma_expression] = STATE(7239), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(726), + [sym_co_return_statement] = STATE(726), + [sym_co_yield_statement] = STATE(726), + [sym_throw_statement] = STATE(726), + [sym_try_statement] = STATE(726), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(33), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(253), - [anon_sym_switch] = ACTIONS(255), - [anon_sym_case] = ACTIONS(257), - [anon_sym_default] = ACTIONS(259), - [anon_sym_while] = ACTIONS(261), - [anon_sym_do] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_return] = ACTIONS(267), - [anon_sym_break] = ACTIONS(269), - [anon_sym_continue] = ACTIONS(271), - [anon_sym_goto] = ACTIONS(273), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(75), + [anon_sym_default] = ACTIONS(77), + [anon_sym_while] = ACTIONS(79), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -58175,12 +61424,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(277), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(119), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(279), - [anon_sym_co_return] = ACTIONS(289), - [anon_sym_co_yield] = ACTIONS(291), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -58188,88 +61437,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [212] = { - [sym_attribute_declaration] = STATE(244), + [224] = { + [sym_attribute_declaration] = STATE(189), [sym_compound_statement] = STATE(1207), - [sym_attributed_statement] = STATE(1210), - [sym_labeled_statement] = STATE(1211), - [sym_expression_statement] = STATE(1212), - [sym_if_statement] = STATE(1213), - [sym_switch_statement] = STATE(1215), - [sym_case_statement] = STATE(1218), - [sym_while_statement] = STATE(1219), - [sym_do_statement] = STATE(1220), - [sym_for_statement] = STATE(1221), - [sym_return_statement] = STATE(1222), - [sym_break_statement] = STATE(1223), - [sym_continue_statement] = STATE(1224), - [sym_goto_statement] = STATE(1225), - [sym__expression] = STATE(3670), - [sym_comma_expression] = STATE(6450), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(1226), - [sym_co_return_statement] = STATE(1227), - [sym_co_yield_statement] = STATE(1228), - [sym_throw_statement] = STATE(1229), - [sym_try_statement] = STATE(1230), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(244), - [sym_identifier] = ACTIONS(1831), - [anon_sym_LPAREN2] = ACTIONS(960), + [sym_attributed_statement] = STATE(1207), + [sym_labeled_statement] = STATE(1207), + [sym_expression_statement] = STATE(1207), + [sym_if_statement] = STATE(1207), + [sym_switch_statement] = STATE(1207), + [sym_case_statement] = STATE(1207), + [sym_while_statement] = STATE(1207), + [sym_do_statement] = STATE(1207), + [sym_for_statement] = STATE(1207), + [sym_return_statement] = STATE(1207), + [sym_break_statement] = STATE(1207), + [sym_continue_statement] = STATE(1207), + [sym_goto_statement] = STATE(1207), + [sym__expression] = STATE(3699), + [sym_comma_expression] = STATE(6868), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(1207), + [sym_co_return_statement] = STATE(1207), + [sym_co_yield_statement] = STATE(1207), + [sym_throw_statement] = STATE(1207), + [sym_try_statement] = STATE(1207), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(189), + [sym_identifier] = ACTIONS(2017), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1359), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1312), - [anon_sym_case] = ACTIONS(1835), - [anon_sym_default] = ACTIONS(1837), - [anon_sym_while] = ACTIONS(1314), - [anon_sym_do] = ACTIONS(1316), - [anon_sym_for] = ACTIONS(1318), - [anon_sym_return] = ACTIONS(1320), - [anon_sym_break] = ACTIONS(1322), - [anon_sym_continue] = ACTIONS(1324), - [anon_sym_goto] = ACTIONS(1326), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1367), + [anon_sym_case] = ACTIONS(1991), + [anon_sym_default] = ACTIONS(1993), + [anon_sym_while] = ACTIONS(1369), + [anon_sym_do] = ACTIONS(1371), + [anon_sym_for] = ACTIONS(1373), + [anon_sym_return] = ACTIONS(1375), + [anon_sym_break] = ACTIONS(1377), + [anon_sym_continue] = ACTIONS(1379), + [anon_sym_goto] = ACTIONS(1381), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -58288,12 +61539,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(1328), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(1383), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(1330), - [anon_sym_co_return] = ACTIONS(1332), - [anon_sym_co_yield] = ACTIONS(1334), + [anon_sym_throw] = ACTIONS(1385), + [anon_sym_co_return] = ACTIONS(1387), + [anon_sym_co_yield] = ACTIONS(1389), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -58301,88 +61552,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [213] = { - [sym_attribute_declaration] = STATE(244), - [sym_compound_statement] = STATE(1185), - [sym_attributed_statement] = STATE(1187), - [sym_labeled_statement] = STATE(1188), - [sym_expression_statement] = STATE(1189), - [sym_if_statement] = STATE(1190), - [sym_switch_statement] = STATE(1191), - [sym_case_statement] = STATE(1192), - [sym_while_statement] = STATE(1099), - [sym_do_statement] = STATE(1193), - [sym_for_statement] = STATE(1195), - [sym_return_statement] = STATE(1197), - [sym_break_statement] = STATE(1198), - [sym_continue_statement] = STATE(1199), - [sym_goto_statement] = STATE(1200), - [sym__expression] = STATE(3670), - [sym_comma_expression] = STATE(6450), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(1201), - [sym_co_return_statement] = STATE(1203), - [sym_co_yield_statement] = STATE(1204), - [sym_throw_statement] = STATE(1205), - [sym_try_statement] = STATE(1206), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(244), - [sym_identifier] = ACTIONS(1831), - [anon_sym_LPAREN2] = ACTIONS(960), + [225] = { + [sym_attribute_declaration] = STATE(286), + [sym_compound_statement] = STATE(847), + [sym_attributed_statement] = STATE(847), + [sym_labeled_statement] = STATE(847), + [sym_expression_statement] = STATE(847), + [sym_if_statement] = STATE(847), + [sym_switch_statement] = STATE(847), + [sym_case_statement] = STATE(847), + [sym_while_statement] = STATE(847), + [sym_do_statement] = STATE(847), + [sym_for_statement] = STATE(847), + [sym_return_statement] = STATE(847), + [sym_break_statement] = STATE(847), + [sym_continue_statement] = STATE(847), + [sym_goto_statement] = STATE(847), + [sym__expression] = STATE(3758), + [sym_comma_expression] = STATE(7239), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(847), + [sym_co_return_statement] = STATE(847), + [sym_co_yield_statement] = STATE(847), + [sym_throw_statement] = STATE(847), + [sym_try_statement] = STATE(847), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(33), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1312), - [anon_sym_case] = ACTIONS(1835), - [anon_sym_default] = ACTIONS(1837), - [anon_sym_while] = ACTIONS(1314), - [anon_sym_do] = ACTIONS(1316), - [anon_sym_for] = ACTIONS(1318), - [anon_sym_return] = ACTIONS(1320), - [anon_sym_break] = ACTIONS(1322), - [anon_sym_continue] = ACTIONS(1324), - [anon_sym_goto] = ACTIONS(1326), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(75), + [anon_sym_default] = ACTIONS(77), + [anon_sym_while] = ACTIONS(79), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -58401,12 +61654,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(1328), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(119), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(1330), - [anon_sym_co_return] = ACTIONS(1332), - [anon_sym_co_yield] = ACTIONS(1334), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -58414,88 +61667,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [214] = { - [sym_attribute_declaration] = STATE(183), - [sym_compound_statement] = STATE(6042), - [sym_attributed_statement] = STATE(6042), - [sym_labeled_statement] = STATE(6042), - [sym_expression_statement] = STATE(6042), - [sym_if_statement] = STATE(6042), - [sym_switch_statement] = STATE(6042), - [sym_case_statement] = STATE(6042), - [sym_while_statement] = STATE(6042), - [sym_do_statement] = STATE(6042), - [sym_for_statement] = STATE(6042), - [sym_return_statement] = STATE(6042), - [sym_break_statement] = STATE(6042), - [sym_continue_statement] = STATE(6042), - [sym_goto_statement] = STATE(6042), - [sym__expression] = STATE(3728), - [sym_comma_expression] = STATE(6585), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(6042), - [sym_co_return_statement] = STATE(6042), - [sym_co_yield_statement] = STATE(6042), - [sym_throw_statement] = STATE(6042), - [sym_try_statement] = STATE(6042), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(183), - [sym_identifier] = ACTIONS(1841), - [anon_sym_LPAREN2] = ACTIONS(960), + [226] = { + [sym_attribute_declaration] = STATE(290), + [sym_compound_statement] = STATE(414), + [sym_attributed_statement] = STATE(414), + [sym_labeled_statement] = STATE(414), + [sym_expression_statement] = STATE(414), + [sym_if_statement] = STATE(414), + [sym_switch_statement] = STATE(414), + [sym_case_statement] = STATE(414), + [sym_while_statement] = STATE(414), + [sym_do_statement] = STATE(414), + [sym_for_statement] = STATE(414), + [sym_return_statement] = STATE(414), + [sym_break_statement] = STATE(414), + [sym_continue_statement] = STATE(414), + [sym_goto_statement] = STATE(414), + [sym__expression] = STATE(3680), + [sym_comma_expression] = STATE(7175), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(414), + [sym_co_return_statement] = STATE(414), + [sym_co_yield_statement] = STATE(414), + [sym_throw_statement] = STATE(414), + [sym_try_statement] = STATE(414), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(290), + [sym_identifier] = ACTIONS(2135), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(1843), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(245), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(1845), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(1847), - [anon_sym_switch] = ACTIONS(1849), - [anon_sym_case] = ACTIONS(1835), - [anon_sym_default] = ACTIONS(1837), - [anon_sym_while] = ACTIONS(1851), - [anon_sym_do] = ACTIONS(1853), - [anon_sym_for] = ACTIONS(1855), - [anon_sym_return] = ACTIONS(1857), - [anon_sym_break] = ACTIONS(1859), - [anon_sym_continue] = ACTIONS(1861), - [anon_sym_goto] = ACTIONS(1863), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(253), + [anon_sym_switch] = ACTIONS(255), + [anon_sym_case] = ACTIONS(257), + [anon_sym_default] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_do] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_return] = ACTIONS(267), + [anon_sym_break] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(271), + [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -58514,12 +61769,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(1865), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(277), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(1867), - [anon_sym_co_return] = ACTIONS(1869), - [anon_sym_co_yield] = ACTIONS(1871), + [anon_sym_throw] = ACTIONS(279), + [anon_sym_co_return] = ACTIONS(289), + [anon_sym_co_yield] = ACTIONS(291), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -58527,88 +61782,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [215] = { - [sym_attribute_declaration] = STATE(244), - [sym_compound_statement] = STATE(1184), - [sym_attributed_statement] = STATE(1184), - [sym_labeled_statement] = STATE(1184), - [sym_expression_statement] = STATE(1184), - [sym_if_statement] = STATE(1184), - [sym_switch_statement] = STATE(1184), - [sym_case_statement] = STATE(1184), - [sym_while_statement] = STATE(1184), - [sym_do_statement] = STATE(1184), - [sym_for_statement] = STATE(1184), - [sym_return_statement] = STATE(1184), - [sym_break_statement] = STATE(1184), - [sym_continue_statement] = STATE(1184), - [sym_goto_statement] = STATE(1184), - [sym__expression] = STATE(3670), - [sym_comma_expression] = STATE(6450), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(1184), - [sym_co_return_statement] = STATE(1184), - [sym_co_yield_statement] = STATE(1184), - [sym_throw_statement] = STATE(1184), - [sym_try_statement] = STATE(1184), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(244), - [sym_identifier] = ACTIONS(1831), - [anon_sym_LPAREN2] = ACTIONS(960), + [227] = { + [sym_attribute_declaration] = STATE(286), + [sym_compound_statement] = STATE(573), + [sym_attributed_statement] = STATE(573), + [sym_labeled_statement] = STATE(573), + [sym_expression_statement] = STATE(573), + [sym_if_statement] = STATE(573), + [sym_switch_statement] = STATE(573), + [sym_case_statement] = STATE(573), + [sym_while_statement] = STATE(573), + [sym_do_statement] = STATE(573), + [sym_for_statement] = STATE(573), + [sym_return_statement] = STATE(573), + [sym_break_statement] = STATE(573), + [sym_continue_statement] = STATE(573), + [sym_goto_statement] = STATE(573), + [sym__expression] = STATE(3758), + [sym_comma_expression] = STATE(7239), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(573), + [sym_co_return_statement] = STATE(573), + [sym_co_yield_statement] = STATE(573), + [sym_throw_statement] = STATE(573), + [sym_try_statement] = STATE(573), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(33), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1312), - [anon_sym_case] = ACTIONS(1835), - [anon_sym_default] = ACTIONS(1837), - [anon_sym_while] = ACTIONS(1314), - [anon_sym_do] = ACTIONS(1316), - [anon_sym_for] = ACTIONS(1318), - [anon_sym_return] = ACTIONS(1320), - [anon_sym_break] = ACTIONS(1322), - [anon_sym_continue] = ACTIONS(1324), - [anon_sym_goto] = ACTIONS(1326), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(75), + [anon_sym_default] = ACTIONS(77), + [anon_sym_while] = ACTIONS(79), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -58627,12 +61884,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(1328), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(119), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(1330), - [anon_sym_co_return] = ACTIONS(1332), - [anon_sym_co_yield] = ACTIONS(1334), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -58640,88 +61897,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [216] = { - [sym_attribute_declaration] = STATE(296), - [sym_compound_statement] = STATE(855), - [sym_attributed_statement] = STATE(855), - [sym_labeled_statement] = STATE(855), - [sym_expression_statement] = STATE(855), - [sym_if_statement] = STATE(855), - [sym_switch_statement] = STATE(855), - [sym_case_statement] = STATE(855), - [sym_while_statement] = STATE(855), - [sym_do_statement] = STATE(855), - [sym_for_statement] = STATE(855), - [sym_return_statement] = STATE(855), - [sym_break_statement] = STATE(855), - [sym_continue_statement] = STATE(855), - [sym_goto_statement] = STATE(855), - [sym__expression] = STATE(3645), - [sym_comma_expression] = STATE(6499), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(855), - [sym_co_return_statement] = STATE(855), - [sym_co_yield_statement] = STATE(855), - [sym_throw_statement] = STATE(855), - [sym_try_statement] = STATE(855), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [sym_identifier] = ACTIONS(1989), - [anon_sym_LPAREN2] = ACTIONS(960), + [228] = { + [sym_attribute_declaration] = STATE(179), + [sym_compound_statement] = STATE(6319), + [sym_attributed_statement] = STATE(6319), + [sym_labeled_statement] = STATE(6319), + [sym_expression_statement] = STATE(6319), + [sym_if_statement] = STATE(6319), + [sym_switch_statement] = STATE(6319), + [sym_case_statement] = STATE(6319), + [sym_while_statement] = STATE(6319), + [sym_do_statement] = STATE(6319), + [sym_for_statement] = STATE(6319), + [sym_return_statement] = STATE(6319), + [sym_break_statement] = STATE(6319), + [sym_continue_statement] = STATE(6319), + [sym_goto_statement] = STATE(6319), + [sym__expression] = STATE(3701), + [sym_comma_expression] = STATE(7176), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(6319), + [sym_co_return_statement] = STATE(6319), + [sym_co_yield_statement] = STATE(6319), + [sym_throw_statement] = STATE(6319), + [sym_try_statement] = STATE(6319), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(179), + [sym_identifier] = ACTIONS(1981), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1983), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(536), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(171), - [anon_sym_switch] = ACTIONS(173), - [anon_sym_case] = ACTIONS(175), - [anon_sym_default] = ACTIONS(177), - [anon_sym_while] = ACTIONS(179), - [anon_sym_do] = ACTIONS(181), - [anon_sym_for] = ACTIONS(183), - [anon_sym_return] = ACTIONS(185), - [anon_sym_break] = ACTIONS(187), - [anon_sym_continue] = ACTIONS(189), - [anon_sym_goto] = ACTIONS(191), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(1987), + [anon_sym_switch] = ACTIONS(1989), + [anon_sym_case] = ACTIONS(1991), + [anon_sym_default] = ACTIONS(1993), + [anon_sym_while] = ACTIONS(1995), + [anon_sym_do] = ACTIONS(1997), + [anon_sym_for] = ACTIONS(1999), + [anon_sym_return] = ACTIONS(2001), + [anon_sym_break] = ACTIONS(2003), + [anon_sym_continue] = ACTIONS(2005), + [anon_sym_goto] = ACTIONS(2007), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -58740,12 +61999,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(197), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(2009), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(199), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_throw] = ACTIONS(2011), + [anon_sym_co_return] = ACTIONS(2013), + [anon_sym_co_yield] = ACTIONS(2015), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -58753,88 +62012,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [217] = { - [sym_attribute_declaration] = STATE(296), - [sym_compound_statement] = STATE(859), - [sym_attributed_statement] = STATE(859), - [sym_labeled_statement] = STATE(859), - [sym_expression_statement] = STATE(859), - [sym_if_statement] = STATE(859), - [sym_switch_statement] = STATE(859), - [sym_case_statement] = STATE(859), - [sym_while_statement] = STATE(859), - [sym_do_statement] = STATE(859), - [sym_for_statement] = STATE(859), - [sym_return_statement] = STATE(859), - [sym_break_statement] = STATE(859), - [sym_continue_statement] = STATE(859), - [sym_goto_statement] = STATE(859), - [sym__expression] = STATE(3645), - [sym_comma_expression] = STATE(6499), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(859), - [sym_co_return_statement] = STATE(859), - [sym_co_yield_statement] = STATE(859), - [sym_throw_statement] = STATE(859), - [sym_try_statement] = STATE(859), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [sym_identifier] = ACTIONS(1989), - [anon_sym_LPAREN2] = ACTIONS(960), + [229] = { + [sym_attribute_declaration] = STATE(179), + [sym_compound_statement] = STATE(6317), + [sym_attributed_statement] = STATE(6317), + [sym_labeled_statement] = STATE(6317), + [sym_expression_statement] = STATE(6317), + [sym_if_statement] = STATE(6317), + [sym_switch_statement] = STATE(6317), + [sym_case_statement] = STATE(6317), + [sym_while_statement] = STATE(6317), + [sym_do_statement] = STATE(6317), + [sym_for_statement] = STATE(6317), + [sym_return_statement] = STATE(6317), + [sym_break_statement] = STATE(6317), + [sym_continue_statement] = STATE(6317), + [sym_goto_statement] = STATE(6317), + [sym__expression] = STATE(3701), + [sym_comma_expression] = STATE(7176), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(6317), + [sym_co_return_statement] = STATE(6317), + [sym_co_yield_statement] = STATE(6317), + [sym_throw_statement] = STATE(6317), + [sym_try_statement] = STATE(6317), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(179), + [sym_identifier] = ACTIONS(1981), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1983), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(536), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(171), - [anon_sym_switch] = ACTIONS(173), - [anon_sym_case] = ACTIONS(175), - [anon_sym_default] = ACTIONS(177), - [anon_sym_while] = ACTIONS(179), - [anon_sym_do] = ACTIONS(181), - [anon_sym_for] = ACTIONS(183), - [anon_sym_return] = ACTIONS(185), - [anon_sym_break] = ACTIONS(187), - [anon_sym_continue] = ACTIONS(189), - [anon_sym_goto] = ACTIONS(191), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(1987), + [anon_sym_switch] = ACTIONS(1989), + [anon_sym_case] = ACTIONS(1991), + [anon_sym_default] = ACTIONS(1993), + [anon_sym_while] = ACTIONS(1995), + [anon_sym_do] = ACTIONS(1997), + [anon_sym_for] = ACTIONS(1999), + [anon_sym_return] = ACTIONS(2001), + [anon_sym_break] = ACTIONS(2003), + [anon_sym_continue] = ACTIONS(2005), + [anon_sym_goto] = ACTIONS(2007), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -58853,12 +62114,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(197), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(2009), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(199), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_throw] = ACTIONS(2011), + [anon_sym_co_return] = ACTIONS(2013), + [anon_sym_co_yield] = ACTIONS(2015), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -58866,88 +62127,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [218] = { - [sym_attribute_declaration] = STATE(296), - [sym_compound_statement] = STATE(860), - [sym_attributed_statement] = STATE(860), - [sym_labeled_statement] = STATE(860), - [sym_expression_statement] = STATE(860), - [sym_if_statement] = STATE(860), - [sym_switch_statement] = STATE(860), - [sym_case_statement] = STATE(860), - [sym_while_statement] = STATE(860), - [sym_do_statement] = STATE(860), - [sym_for_statement] = STATE(860), - [sym_return_statement] = STATE(860), - [sym_break_statement] = STATE(860), - [sym_continue_statement] = STATE(860), - [sym_goto_statement] = STATE(860), - [sym__expression] = STATE(3645), - [sym_comma_expression] = STATE(6499), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(860), - [sym_co_return_statement] = STATE(860), - [sym_co_yield_statement] = STATE(860), - [sym_throw_statement] = STATE(860), - [sym_try_statement] = STATE(860), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [sym_identifier] = ACTIONS(1989), - [anon_sym_LPAREN2] = ACTIONS(960), + [230] = { + [sym_attribute_declaration] = STATE(179), + [sym_compound_statement] = STATE(6315), + [sym_attributed_statement] = STATE(6315), + [sym_labeled_statement] = STATE(6315), + [sym_expression_statement] = STATE(6315), + [sym_if_statement] = STATE(6315), + [sym_switch_statement] = STATE(6315), + [sym_case_statement] = STATE(6315), + [sym_while_statement] = STATE(6315), + [sym_do_statement] = STATE(6315), + [sym_for_statement] = STATE(6315), + [sym_return_statement] = STATE(6315), + [sym_break_statement] = STATE(6315), + [sym_continue_statement] = STATE(6315), + [sym_goto_statement] = STATE(6315), + [sym__expression] = STATE(3701), + [sym_comma_expression] = STATE(7176), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(6315), + [sym_co_return_statement] = STATE(6315), + [sym_co_yield_statement] = STATE(6315), + [sym_throw_statement] = STATE(6315), + [sym_try_statement] = STATE(6315), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(179), + [sym_identifier] = ACTIONS(1981), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1983), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(536), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(171), - [anon_sym_switch] = ACTIONS(173), - [anon_sym_case] = ACTIONS(175), - [anon_sym_default] = ACTIONS(177), - [anon_sym_while] = ACTIONS(179), - [anon_sym_do] = ACTIONS(181), - [anon_sym_for] = ACTIONS(183), - [anon_sym_return] = ACTIONS(185), - [anon_sym_break] = ACTIONS(187), - [anon_sym_continue] = ACTIONS(189), - [anon_sym_goto] = ACTIONS(191), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(1987), + [anon_sym_switch] = ACTIONS(1989), + [anon_sym_case] = ACTIONS(1991), + [anon_sym_default] = ACTIONS(1993), + [anon_sym_while] = ACTIONS(1995), + [anon_sym_do] = ACTIONS(1997), + [anon_sym_for] = ACTIONS(1999), + [anon_sym_return] = ACTIONS(2001), + [anon_sym_break] = ACTIONS(2003), + [anon_sym_continue] = ACTIONS(2005), + [anon_sym_goto] = ACTIONS(2007), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -58966,12 +62229,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(197), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(2009), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(199), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_throw] = ACTIONS(2011), + [anon_sym_co_return] = ACTIONS(2013), + [anon_sym_co_yield] = ACTIONS(2015), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -58979,88 +62242,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [219] = { - [sym_attribute_declaration] = STATE(296), - [sym_compound_statement] = STATE(862), - [sym_attributed_statement] = STATE(862), - [sym_labeled_statement] = STATE(862), - [sym_expression_statement] = STATE(862), - [sym_if_statement] = STATE(862), - [sym_switch_statement] = STATE(862), - [sym_case_statement] = STATE(862), - [sym_while_statement] = STATE(862), - [sym_do_statement] = STATE(862), - [sym_for_statement] = STATE(862), - [sym_return_statement] = STATE(862), - [sym_break_statement] = STATE(862), - [sym_continue_statement] = STATE(862), - [sym_goto_statement] = STATE(862), - [sym__expression] = STATE(3645), - [sym_comma_expression] = STATE(6499), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(862), - [sym_co_return_statement] = STATE(862), - [sym_co_yield_statement] = STATE(862), - [sym_throw_statement] = STATE(862), - [sym_try_statement] = STATE(862), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [sym_identifier] = ACTIONS(1989), - [anon_sym_LPAREN2] = ACTIONS(960), + [231] = { + [sym_attribute_declaration] = STATE(179), + [sym_compound_statement] = STATE(6314), + [sym_attributed_statement] = STATE(6314), + [sym_labeled_statement] = STATE(6314), + [sym_expression_statement] = STATE(6314), + [sym_if_statement] = STATE(6314), + [sym_switch_statement] = STATE(6314), + [sym_case_statement] = STATE(6314), + [sym_while_statement] = STATE(6314), + [sym_do_statement] = STATE(6314), + [sym_for_statement] = STATE(6314), + [sym_return_statement] = STATE(6314), + [sym_break_statement] = STATE(6314), + [sym_continue_statement] = STATE(6314), + [sym_goto_statement] = STATE(6314), + [sym__expression] = STATE(3701), + [sym_comma_expression] = STATE(7176), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(6314), + [sym_co_return_statement] = STATE(6314), + [sym_co_yield_statement] = STATE(6314), + [sym_throw_statement] = STATE(6314), + [sym_try_statement] = STATE(6314), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(179), + [sym_identifier] = ACTIONS(1981), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1983), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(536), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(171), - [anon_sym_switch] = ACTIONS(173), - [anon_sym_case] = ACTIONS(175), - [anon_sym_default] = ACTIONS(177), - [anon_sym_while] = ACTIONS(179), - [anon_sym_do] = ACTIONS(181), - [anon_sym_for] = ACTIONS(183), - [anon_sym_return] = ACTIONS(185), - [anon_sym_break] = ACTIONS(187), - [anon_sym_continue] = ACTIONS(189), - [anon_sym_goto] = ACTIONS(191), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(1987), + [anon_sym_switch] = ACTIONS(1989), + [anon_sym_case] = ACTIONS(1991), + [anon_sym_default] = ACTIONS(1993), + [anon_sym_while] = ACTIONS(1995), + [anon_sym_do] = ACTIONS(1997), + [anon_sym_for] = ACTIONS(1999), + [anon_sym_return] = ACTIONS(2001), + [anon_sym_break] = ACTIONS(2003), + [anon_sym_continue] = ACTIONS(2005), + [anon_sym_goto] = ACTIONS(2007), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -59079,12 +62344,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(197), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(2009), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(199), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_throw] = ACTIONS(2011), + [anon_sym_co_return] = ACTIONS(2013), + [anon_sym_co_yield] = ACTIONS(2015), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -59092,88 +62357,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [220] = { - [sym_attribute_declaration] = STATE(183), - [sym_compound_statement] = STATE(6044), - [sym_attributed_statement] = STATE(6044), - [sym_labeled_statement] = STATE(6044), - [sym_expression_statement] = STATE(6044), - [sym_if_statement] = STATE(6044), - [sym_switch_statement] = STATE(6044), - [sym_case_statement] = STATE(6044), - [sym_while_statement] = STATE(6044), - [sym_do_statement] = STATE(6044), - [sym_for_statement] = STATE(6044), - [sym_return_statement] = STATE(6044), - [sym_break_statement] = STATE(6044), - [sym_continue_statement] = STATE(6044), - [sym_goto_statement] = STATE(6044), - [sym__expression] = STATE(3728), - [sym_comma_expression] = STATE(6585), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(6044), - [sym_co_return_statement] = STATE(6044), - [sym_co_yield_statement] = STATE(6044), - [sym_throw_statement] = STATE(6044), - [sym_try_statement] = STATE(6044), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(183), - [sym_identifier] = ACTIONS(1841), - [anon_sym_LPAREN2] = ACTIONS(960), + [232] = { + [sym_attribute_declaration] = STATE(179), + [sym_compound_statement] = STATE(6313), + [sym_attributed_statement] = STATE(6313), + [sym_labeled_statement] = STATE(6313), + [sym_expression_statement] = STATE(6313), + [sym_if_statement] = STATE(6313), + [sym_switch_statement] = STATE(6313), + [sym_case_statement] = STATE(6313), + [sym_while_statement] = STATE(6313), + [sym_do_statement] = STATE(6313), + [sym_for_statement] = STATE(6313), + [sym_return_statement] = STATE(6313), + [sym_break_statement] = STATE(6313), + [sym_continue_statement] = STATE(6313), + [sym_goto_statement] = STATE(6313), + [sym__expression] = STATE(3701), + [sym_comma_expression] = STATE(7176), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(6313), + [sym_co_return_statement] = STATE(6313), + [sym_co_yield_statement] = STATE(6313), + [sym_throw_statement] = STATE(6313), + [sym_try_statement] = STATE(6313), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(179), + [sym_identifier] = ACTIONS(1981), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(1843), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1983), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(1845), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(1847), - [anon_sym_switch] = ACTIONS(1849), - [anon_sym_case] = ACTIONS(1835), - [anon_sym_default] = ACTIONS(1837), - [anon_sym_while] = ACTIONS(1851), - [anon_sym_do] = ACTIONS(1853), - [anon_sym_for] = ACTIONS(1855), - [anon_sym_return] = ACTIONS(1857), - [anon_sym_break] = ACTIONS(1859), - [anon_sym_continue] = ACTIONS(1861), - [anon_sym_goto] = ACTIONS(1863), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(1987), + [anon_sym_switch] = ACTIONS(1989), + [anon_sym_case] = ACTIONS(1991), + [anon_sym_default] = ACTIONS(1993), + [anon_sym_while] = ACTIONS(1995), + [anon_sym_do] = ACTIONS(1997), + [anon_sym_for] = ACTIONS(1999), + [anon_sym_return] = ACTIONS(2001), + [anon_sym_break] = ACTIONS(2003), + [anon_sym_continue] = ACTIONS(2005), + [anon_sym_goto] = ACTIONS(2007), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -59192,12 +62459,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(1865), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(2009), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(1867), - [anon_sym_co_return] = ACTIONS(1869), - [anon_sym_co_yield] = ACTIONS(1871), + [anon_sym_throw] = ACTIONS(2011), + [anon_sym_co_return] = ACTIONS(2013), + [anon_sym_co_yield] = ACTIONS(2015), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -59205,88 +62472,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [221] = { - [sym_attribute_declaration] = STATE(296), - [sym_compound_statement] = STATE(863), - [sym_attributed_statement] = STATE(863), - [sym_labeled_statement] = STATE(863), - [sym_expression_statement] = STATE(863), - [sym_if_statement] = STATE(863), - [sym_switch_statement] = STATE(863), - [sym_case_statement] = STATE(863), - [sym_while_statement] = STATE(863), - [sym_do_statement] = STATE(863), - [sym_for_statement] = STATE(863), - [sym_return_statement] = STATE(863), - [sym_break_statement] = STATE(863), - [sym_continue_statement] = STATE(863), - [sym_goto_statement] = STATE(863), - [sym__expression] = STATE(3645), - [sym_comma_expression] = STATE(6499), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(863), - [sym_co_return_statement] = STATE(863), - [sym_co_yield_statement] = STATE(863), - [sym_throw_statement] = STATE(863), - [sym_try_statement] = STATE(863), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [sym_identifier] = ACTIONS(1989), - [anon_sym_LPAREN2] = ACTIONS(960), + [233] = { + [sym_attribute_declaration] = STATE(286), + [sym_compound_statement] = STATE(562), + [sym_attributed_statement] = STATE(562), + [sym_labeled_statement] = STATE(562), + [sym_expression_statement] = STATE(562), + [sym_if_statement] = STATE(562), + [sym_switch_statement] = STATE(562), + [sym_case_statement] = STATE(562), + [sym_while_statement] = STATE(562), + [sym_do_statement] = STATE(562), + [sym_for_statement] = STATE(562), + [sym_return_statement] = STATE(562), + [sym_break_statement] = STATE(562), + [sym_continue_statement] = STATE(562), + [sym_goto_statement] = STATE(562), + [sym__expression] = STATE(3758), + [sym_comma_expression] = STATE(7239), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(562), + [sym_co_return_statement] = STATE(562), + [sym_co_yield_statement] = STATE(562), + [sym_throw_statement] = STATE(562), + [sym_try_statement] = STATE(562), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(33), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(536), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(171), - [anon_sym_switch] = ACTIONS(173), - [anon_sym_case] = ACTIONS(175), - [anon_sym_default] = ACTIONS(177), - [anon_sym_while] = ACTIONS(179), - [anon_sym_do] = ACTIONS(181), - [anon_sym_for] = ACTIONS(183), - [anon_sym_return] = ACTIONS(185), - [anon_sym_break] = ACTIONS(187), - [anon_sym_continue] = ACTIONS(189), - [anon_sym_goto] = ACTIONS(191), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(75), + [anon_sym_default] = ACTIONS(77), + [anon_sym_while] = ACTIONS(79), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -59305,12 +62574,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(197), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(119), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(199), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -59318,88 +62587,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [222] = { - [sym_attribute_declaration] = STATE(244), - [sym_compound_statement] = STATE(1182), - [sym_attributed_statement] = STATE(1182), - [sym_labeled_statement] = STATE(1182), - [sym_expression_statement] = STATE(1182), - [sym_if_statement] = STATE(1182), - [sym_switch_statement] = STATE(1182), - [sym_case_statement] = STATE(1182), - [sym_while_statement] = STATE(1182), - [sym_do_statement] = STATE(1182), - [sym_for_statement] = STATE(1182), - [sym_return_statement] = STATE(1182), - [sym_break_statement] = STATE(1182), - [sym_continue_statement] = STATE(1182), - [sym_goto_statement] = STATE(1182), - [sym__expression] = STATE(3670), - [sym_comma_expression] = STATE(6450), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(1182), - [sym_co_return_statement] = STATE(1182), - [sym_co_yield_statement] = STATE(1182), - [sym_throw_statement] = STATE(1182), - [sym_try_statement] = STATE(1182), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(244), - [sym_identifier] = ACTIONS(1831), - [anon_sym_LPAREN2] = ACTIONS(960), + [234] = { + [sym_attribute_declaration] = STATE(189), + [sym_compound_statement] = STATE(1204), + [sym_attributed_statement] = STATE(1204), + [sym_labeled_statement] = STATE(1204), + [sym_expression_statement] = STATE(1204), + [sym_if_statement] = STATE(1204), + [sym_switch_statement] = STATE(1204), + [sym_case_statement] = STATE(1204), + [sym_while_statement] = STATE(1204), + [sym_do_statement] = STATE(1204), + [sym_for_statement] = STATE(1204), + [sym_return_statement] = STATE(1204), + [sym_break_statement] = STATE(1204), + [sym_continue_statement] = STATE(1204), + [sym_goto_statement] = STATE(1204), + [sym__expression] = STATE(3699), + [sym_comma_expression] = STATE(6868), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(1204), + [sym_co_return_statement] = STATE(1204), + [sym_co_yield_statement] = STATE(1204), + [sym_throw_statement] = STATE(1204), + [sym_try_statement] = STATE(1204), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(189), + [sym_identifier] = ACTIONS(2017), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1359), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1312), - [anon_sym_case] = ACTIONS(1835), - [anon_sym_default] = ACTIONS(1837), - [anon_sym_while] = ACTIONS(1314), - [anon_sym_do] = ACTIONS(1316), - [anon_sym_for] = ACTIONS(1318), - [anon_sym_return] = ACTIONS(1320), - [anon_sym_break] = ACTIONS(1322), - [anon_sym_continue] = ACTIONS(1324), - [anon_sym_goto] = ACTIONS(1326), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1367), + [anon_sym_case] = ACTIONS(1991), + [anon_sym_default] = ACTIONS(1993), + [anon_sym_while] = ACTIONS(1369), + [anon_sym_do] = ACTIONS(1371), + [anon_sym_for] = ACTIONS(1373), + [anon_sym_return] = ACTIONS(1375), + [anon_sym_break] = ACTIONS(1377), + [anon_sym_continue] = ACTIONS(1379), + [anon_sym_goto] = ACTIONS(1381), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -59418,12 +62689,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(1328), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(1383), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(1330), - [anon_sym_co_return] = ACTIONS(1332), - [anon_sym_co_yield] = ACTIONS(1334), + [anon_sym_throw] = ACTIONS(1385), + [anon_sym_co_return] = ACTIONS(1387), + [anon_sym_co_yield] = ACTIONS(1389), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -59431,88 +62702,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [223] = { - [sym_attribute_declaration] = STATE(282), - [sym_compound_statement] = STATE(547), - [sym_attributed_statement] = STATE(547), - [sym_labeled_statement] = STATE(547), - [sym_expression_statement] = STATE(547), - [sym_if_statement] = STATE(547), - [sym_switch_statement] = STATE(547), - [sym_case_statement] = STATE(547), - [sym_while_statement] = STATE(547), - [sym_do_statement] = STATE(547), - [sym_for_statement] = STATE(547), - [sym_return_statement] = STATE(547), - [sym_break_statement] = STATE(547), - [sym_continue_statement] = STATE(547), - [sym_goto_statement] = STATE(547), - [sym__expression] = STATE(3605), - [sym_comma_expression] = STATE(6558), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(547), - [sym_co_return_statement] = STATE(547), - [sym_co_yield_statement] = STATE(547), - [sym_throw_statement] = STATE(547), - [sym_try_statement] = STATE(547), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(282), - [sym_identifier] = ACTIONS(1987), - [anon_sym_LPAREN2] = ACTIONS(960), + [235] = { + [sym_attribute_declaration] = STATE(290), + [sym_compound_statement] = STATE(465), + [sym_attributed_statement] = STATE(465), + [sym_labeled_statement] = STATE(465), + [sym_expression_statement] = STATE(465), + [sym_if_statement] = STATE(465), + [sym_switch_statement] = STATE(465), + [sym_case_statement] = STATE(465), + [sym_while_statement] = STATE(465), + [sym_do_statement] = STATE(465), + [sym_for_statement] = STATE(465), + [sym_return_statement] = STATE(465), + [sym_break_statement] = STATE(465), + [sym_continue_statement] = STATE(465), + [sym_goto_statement] = STATE(465), + [sym__expression] = STATE(3680), + [sym_comma_expression] = STATE(7175), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(465), + [sym_co_return_statement] = STATE(465), + [sym_co_yield_statement] = STATE(465), + [sym_throw_statement] = STATE(465), + [sym_try_statement] = STATE(465), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(290), + [sym_identifier] = ACTIONS(2135), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(245), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_case] = ACTIONS(75), - [anon_sym_default] = ACTIONS(77), - [anon_sym_while] = ACTIONS(79), - [anon_sym_do] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), - [anon_sym_return] = ACTIONS(85), - [anon_sym_break] = ACTIONS(87), - [anon_sym_continue] = ACTIONS(89), - [anon_sym_goto] = ACTIONS(91), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(253), + [anon_sym_switch] = ACTIONS(255), + [anon_sym_case] = ACTIONS(257), + [anon_sym_default] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_do] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_return] = ACTIONS(267), + [anon_sym_break] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(271), + [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -59531,12 +62804,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(119), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(277), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(123), - [anon_sym_co_return] = ACTIONS(133), - [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_throw] = ACTIONS(279), + [anon_sym_co_return] = ACTIONS(289), + [anon_sym_co_yield] = ACTIONS(291), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -59544,88 +62817,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [224] = { - [sym_attribute_declaration] = STATE(244), - [sym_compound_statement] = STATE(1181), - [sym_attributed_statement] = STATE(1181), - [sym_labeled_statement] = STATE(1181), - [sym_expression_statement] = STATE(1181), - [sym_if_statement] = STATE(1181), - [sym_switch_statement] = STATE(1181), - [sym_case_statement] = STATE(1181), - [sym_while_statement] = STATE(1181), - [sym_do_statement] = STATE(1181), - [sym_for_statement] = STATE(1181), - [sym_return_statement] = STATE(1181), - [sym_break_statement] = STATE(1181), - [sym_continue_statement] = STATE(1181), - [sym_goto_statement] = STATE(1181), - [sym__expression] = STATE(3670), - [sym_comma_expression] = STATE(6450), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(1181), - [sym_co_return_statement] = STATE(1181), - [sym_co_yield_statement] = STATE(1181), - [sym_throw_statement] = STATE(1181), - [sym_try_statement] = STATE(1181), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(244), - [sym_identifier] = ACTIONS(1831), - [anon_sym_LPAREN2] = ACTIONS(960), + [236] = { + [sym_attribute_declaration] = STATE(189), + [sym_compound_statement] = STATE(1187), + [sym_attributed_statement] = STATE(1187), + [sym_labeled_statement] = STATE(1187), + [sym_expression_statement] = STATE(1187), + [sym_if_statement] = STATE(1187), + [sym_switch_statement] = STATE(1187), + [sym_case_statement] = STATE(1187), + [sym_while_statement] = STATE(1187), + [sym_do_statement] = STATE(1187), + [sym_for_statement] = STATE(1187), + [sym_return_statement] = STATE(1187), + [sym_break_statement] = STATE(1187), + [sym_continue_statement] = STATE(1187), + [sym_goto_statement] = STATE(1187), + [sym__expression] = STATE(3699), + [sym_comma_expression] = STATE(6868), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(1187), + [sym_co_return_statement] = STATE(1187), + [sym_co_yield_statement] = STATE(1187), + [sym_throw_statement] = STATE(1187), + [sym_try_statement] = STATE(1187), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(189), + [sym_identifier] = ACTIONS(2017), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1359), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1312), - [anon_sym_case] = ACTIONS(1835), - [anon_sym_default] = ACTIONS(1837), - [anon_sym_while] = ACTIONS(1314), - [anon_sym_do] = ACTIONS(1316), - [anon_sym_for] = ACTIONS(1318), - [anon_sym_return] = ACTIONS(1320), - [anon_sym_break] = ACTIONS(1322), - [anon_sym_continue] = ACTIONS(1324), - [anon_sym_goto] = ACTIONS(1326), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1367), + [anon_sym_case] = ACTIONS(1991), + [anon_sym_default] = ACTIONS(1993), + [anon_sym_while] = ACTIONS(1369), + [anon_sym_do] = ACTIONS(1371), + [anon_sym_for] = ACTIONS(1373), + [anon_sym_return] = ACTIONS(1375), + [anon_sym_break] = ACTIONS(1377), + [anon_sym_continue] = ACTIONS(1379), + [anon_sym_goto] = ACTIONS(1381), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -59644,12 +62919,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(1328), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(1383), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(1330), - [anon_sym_co_return] = ACTIONS(1332), - [anon_sym_co_yield] = ACTIONS(1334), + [anon_sym_throw] = ACTIONS(1385), + [anon_sym_co_return] = ACTIONS(1387), + [anon_sym_co_yield] = ACTIONS(1389), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -59657,88 +62932,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [225] = { - [sym_attribute_declaration] = STATE(244), - [sym_compound_statement] = STATE(1150), - [sym_attributed_statement] = STATE(1152), - [sym_labeled_statement] = STATE(1153), - [sym_expression_statement] = STATE(1154), - [sym_if_statement] = STATE(1155), - [sym_switch_statement] = STATE(1157), - [sym_case_statement] = STATE(1159), - [sym_while_statement] = STATE(1160), - [sym_do_statement] = STATE(1163), - [sym_for_statement] = STATE(1164), - [sym_return_statement] = STATE(1165), - [sym_break_statement] = STATE(1166), - [sym_continue_statement] = STATE(1167), - [sym_goto_statement] = STATE(1169), - [sym__expression] = STATE(3670), - [sym_comma_expression] = STATE(6450), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(1170), - [sym_co_return_statement] = STATE(1171), - [sym_co_yield_statement] = STATE(1177), - [sym_throw_statement] = STATE(1179), - [sym_try_statement] = STATE(1180), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(244), - [sym_identifier] = ACTIONS(1831), - [anon_sym_LPAREN2] = ACTIONS(960), + [237] = { + [sym_attribute_declaration] = STATE(179), + [sym_compound_statement] = STATE(6304), + [sym_attributed_statement] = STATE(6304), + [sym_labeled_statement] = STATE(6304), + [sym_expression_statement] = STATE(6304), + [sym_if_statement] = STATE(6304), + [sym_switch_statement] = STATE(6304), + [sym_case_statement] = STATE(6304), + [sym_while_statement] = STATE(6304), + [sym_do_statement] = STATE(6304), + [sym_for_statement] = STATE(6304), + [sym_return_statement] = STATE(6304), + [sym_break_statement] = STATE(6304), + [sym_continue_statement] = STATE(6304), + [sym_goto_statement] = STATE(6304), + [sym__expression] = STATE(3701), + [sym_comma_expression] = STATE(7176), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(6304), + [sym_co_return_statement] = STATE(6304), + [sym_co_yield_statement] = STATE(6304), + [sym_throw_statement] = STATE(6304), + [sym_try_statement] = STATE(6304), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(179), + [sym_identifier] = ACTIONS(1981), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1983), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1312), - [anon_sym_case] = ACTIONS(1835), - [anon_sym_default] = ACTIONS(1837), - [anon_sym_while] = ACTIONS(1314), - [anon_sym_do] = ACTIONS(1316), - [anon_sym_for] = ACTIONS(1318), - [anon_sym_return] = ACTIONS(1320), - [anon_sym_break] = ACTIONS(1322), - [anon_sym_continue] = ACTIONS(1324), - [anon_sym_goto] = ACTIONS(1326), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(1987), + [anon_sym_switch] = ACTIONS(1989), + [anon_sym_case] = ACTIONS(1991), + [anon_sym_default] = ACTIONS(1993), + [anon_sym_while] = ACTIONS(1995), + [anon_sym_do] = ACTIONS(1997), + [anon_sym_for] = ACTIONS(1999), + [anon_sym_return] = ACTIONS(2001), + [anon_sym_break] = ACTIONS(2003), + [anon_sym_continue] = ACTIONS(2005), + [anon_sym_goto] = ACTIONS(2007), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -59757,12 +63034,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(1328), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(2009), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(1330), - [anon_sym_co_return] = ACTIONS(1332), - [anon_sym_co_yield] = ACTIONS(1334), + [anon_sym_throw] = ACTIONS(2011), + [anon_sym_co_return] = ACTIONS(2013), + [anon_sym_co_yield] = ACTIONS(2015), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -59770,88 +63047,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [226] = { - [sym_attribute_declaration] = STATE(244), - [sym_compound_statement] = STATE(1121), - [sym_attributed_statement] = STATE(1122), - [sym_labeled_statement] = STATE(1125), - [sym_expression_statement] = STATE(1126), - [sym_if_statement] = STATE(1128), - [sym_switch_statement] = STATE(1129), - [sym_case_statement] = STATE(1130), - [sym_while_statement] = STATE(1131), - [sym_do_statement] = STATE(1133), - [sym_for_statement] = STATE(1136), - [sym_return_statement] = STATE(1139), - [sym_break_statement] = STATE(1140), - [sym_continue_statement] = STATE(1141), - [sym_goto_statement] = STATE(1142), - [sym__expression] = STATE(3670), - [sym_comma_expression] = STATE(6450), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(1143), - [sym_co_return_statement] = STATE(1145), - [sym_co_yield_statement] = STATE(1146), - [sym_throw_statement] = STATE(1107), - [sym_try_statement] = STATE(1149), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(244), - [sym_identifier] = ACTIONS(1831), - [anon_sym_LPAREN2] = ACTIONS(960), + [238] = { + [sym_attribute_declaration] = STATE(179), + [sym_compound_statement] = STATE(6302), + [sym_attributed_statement] = STATE(6300), + [sym_labeled_statement] = STATE(6298), + [sym_expression_statement] = STATE(6297), + [sym_if_statement] = STATE(6296), + [sym_switch_statement] = STATE(6295), + [sym_case_statement] = STATE(6293), + [sym_while_statement] = STATE(6286), + [sym_do_statement] = STATE(6161), + [sym_for_statement] = STATE(6282), + [sym_return_statement] = STATE(6280), + [sym_break_statement] = STATE(6279), + [sym_continue_statement] = STATE(6278), + [sym_goto_statement] = STATE(6277), + [sym__expression] = STATE(3701), + [sym_comma_expression] = STATE(7176), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(6275), + [sym_co_return_statement] = STATE(6268), + [sym_co_yield_statement] = STATE(6266), + [sym_throw_statement] = STATE(6264), + [sym_try_statement] = STATE(6262), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(179), + [sym_identifier] = ACTIONS(1981), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1983), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1312), - [anon_sym_case] = ACTIONS(1835), - [anon_sym_default] = ACTIONS(1837), - [anon_sym_while] = ACTIONS(1314), - [anon_sym_do] = ACTIONS(1316), - [anon_sym_for] = ACTIONS(1318), - [anon_sym_return] = ACTIONS(1320), - [anon_sym_break] = ACTIONS(1322), - [anon_sym_continue] = ACTIONS(1324), - [anon_sym_goto] = ACTIONS(1326), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(1987), + [anon_sym_switch] = ACTIONS(1989), + [anon_sym_case] = ACTIONS(1991), + [anon_sym_default] = ACTIONS(1993), + [anon_sym_while] = ACTIONS(1995), + [anon_sym_do] = ACTIONS(1997), + [anon_sym_for] = ACTIONS(1999), + [anon_sym_return] = ACTIONS(2001), + [anon_sym_break] = ACTIONS(2003), + [anon_sym_continue] = ACTIONS(2005), + [anon_sym_goto] = ACTIONS(2007), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -59870,12 +63149,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(1328), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(2009), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(1330), - [anon_sym_co_return] = ACTIONS(1332), - [anon_sym_co_yield] = ACTIONS(1334), + [anon_sym_throw] = ACTIONS(2011), + [anon_sym_co_return] = ACTIONS(2013), + [anon_sym_co_yield] = ACTIONS(2015), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -59883,88 +63162,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [227] = { - [sym_attribute_declaration] = STATE(244), - [sym_compound_statement] = STATE(1119), - [sym_attributed_statement] = STATE(1119), - [sym_labeled_statement] = STATE(1119), - [sym_expression_statement] = STATE(1119), - [sym_if_statement] = STATE(1119), - [sym_switch_statement] = STATE(1119), - [sym_case_statement] = STATE(1119), - [sym_while_statement] = STATE(1119), - [sym_do_statement] = STATE(1119), - [sym_for_statement] = STATE(1119), - [sym_return_statement] = STATE(1119), - [sym_break_statement] = STATE(1119), - [sym_continue_statement] = STATE(1119), - [sym_goto_statement] = STATE(1119), - [sym__expression] = STATE(3670), - [sym_comma_expression] = STATE(6450), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(1119), - [sym_co_return_statement] = STATE(1119), - [sym_co_yield_statement] = STATE(1119), - [sym_throw_statement] = STATE(1119), - [sym_try_statement] = STATE(1119), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(244), - [sym_identifier] = ACTIONS(1831), - [anon_sym_LPAREN2] = ACTIONS(960), + [239] = { + [sym_attribute_declaration] = STATE(179), + [sym_compound_statement] = STATE(6261), + [sym_attributed_statement] = STATE(6260), + [sym_labeled_statement] = STATE(6259), + [sym_expression_statement] = STATE(6257), + [sym_if_statement] = STATE(6250), + [sym_switch_statement] = STATE(6248), + [sym_case_statement] = STATE(6246), + [sym_while_statement] = STATE(6244), + [sym_do_statement] = STATE(6242), + [sym_for_statement] = STATE(6241), + [sym_return_statement] = STATE(6240), + [sym_break_statement] = STATE(6238), + [sym_continue_statement] = STATE(6194), + [sym_goto_statement] = STATE(6191), + [sym__expression] = STATE(3701), + [sym_comma_expression] = STATE(7176), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(6190), + [sym_co_return_statement] = STATE(6189), + [sym_co_yield_statement] = STATE(6185), + [sym_throw_statement] = STATE(6172), + [sym_try_statement] = STATE(6166), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(179), + [sym_identifier] = ACTIONS(1981), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1983), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1312), - [anon_sym_case] = ACTIONS(1835), - [anon_sym_default] = ACTIONS(1837), - [anon_sym_while] = ACTIONS(1314), - [anon_sym_do] = ACTIONS(1316), - [anon_sym_for] = ACTIONS(1318), - [anon_sym_return] = ACTIONS(1320), - [anon_sym_break] = ACTIONS(1322), - [anon_sym_continue] = ACTIONS(1324), - [anon_sym_goto] = ACTIONS(1326), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(1987), + [anon_sym_switch] = ACTIONS(1989), + [anon_sym_case] = ACTIONS(1991), + [anon_sym_default] = ACTIONS(1993), + [anon_sym_while] = ACTIONS(1995), + [anon_sym_do] = ACTIONS(1997), + [anon_sym_for] = ACTIONS(1999), + [anon_sym_return] = ACTIONS(2001), + [anon_sym_break] = ACTIONS(2003), + [anon_sym_continue] = ACTIONS(2005), + [anon_sym_goto] = ACTIONS(2007), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -59983,12 +63264,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(1328), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(2009), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(1330), - [anon_sym_co_return] = ACTIONS(1332), - [anon_sym_co_yield] = ACTIONS(1334), + [anon_sym_throw] = ACTIONS(2011), + [anon_sym_co_return] = ACTIONS(2013), + [anon_sym_co_yield] = ACTIONS(2015), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -59996,88 +63277,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [228] = { - [sym_attribute_declaration] = STATE(244), - [sym_compound_statement] = STATE(1118), - [sym_attributed_statement] = STATE(1118), - [sym_labeled_statement] = STATE(1118), - [sym_expression_statement] = STATE(1118), - [sym_if_statement] = STATE(1118), - [sym_switch_statement] = STATE(1118), - [sym_case_statement] = STATE(1118), - [sym_while_statement] = STATE(1118), - [sym_do_statement] = STATE(1118), - [sym_for_statement] = STATE(1118), - [sym_return_statement] = STATE(1118), - [sym_break_statement] = STATE(1118), - [sym_continue_statement] = STATE(1118), - [sym_goto_statement] = STATE(1118), - [sym__expression] = STATE(3670), - [sym_comma_expression] = STATE(6450), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(1118), - [sym_co_return_statement] = STATE(1118), - [sym_co_yield_statement] = STATE(1118), - [sym_throw_statement] = STATE(1118), - [sym_try_statement] = STATE(1118), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(244), - [sym_identifier] = ACTIONS(1831), - [anon_sym_LPAREN2] = ACTIONS(960), + [240] = { + [sym_attribute_declaration] = STATE(189), + [sym_compound_statement] = STATE(1174), + [sym_attributed_statement] = STATE(1174), + [sym_labeled_statement] = STATE(1174), + [sym_expression_statement] = STATE(1174), + [sym_if_statement] = STATE(1174), + [sym_switch_statement] = STATE(1174), + [sym_case_statement] = STATE(1174), + [sym_while_statement] = STATE(1174), + [sym_do_statement] = STATE(1174), + [sym_for_statement] = STATE(1174), + [sym_return_statement] = STATE(1174), + [sym_break_statement] = STATE(1174), + [sym_continue_statement] = STATE(1174), + [sym_goto_statement] = STATE(1174), + [sym__expression] = STATE(3699), + [sym_comma_expression] = STATE(6868), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(1174), + [sym_co_return_statement] = STATE(1174), + [sym_co_yield_statement] = STATE(1174), + [sym_throw_statement] = STATE(1174), + [sym_try_statement] = STATE(1174), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(189), + [sym_identifier] = ACTIONS(2017), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1359), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1312), - [anon_sym_case] = ACTIONS(1835), - [anon_sym_default] = ACTIONS(1837), - [anon_sym_while] = ACTIONS(1314), - [anon_sym_do] = ACTIONS(1316), - [anon_sym_for] = ACTIONS(1318), - [anon_sym_return] = ACTIONS(1320), - [anon_sym_break] = ACTIONS(1322), - [anon_sym_continue] = ACTIONS(1324), - [anon_sym_goto] = ACTIONS(1326), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1367), + [anon_sym_case] = ACTIONS(1991), + [anon_sym_default] = ACTIONS(1993), + [anon_sym_while] = ACTIONS(1369), + [anon_sym_do] = ACTIONS(1371), + [anon_sym_for] = ACTIONS(1373), + [anon_sym_return] = ACTIONS(1375), + [anon_sym_break] = ACTIONS(1377), + [anon_sym_continue] = ACTIONS(1379), + [anon_sym_goto] = ACTIONS(1381), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -60096,12 +63379,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(1328), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(1383), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(1330), - [anon_sym_co_return] = ACTIONS(1332), - [anon_sym_co_yield] = ACTIONS(1334), + [anon_sym_throw] = ACTIONS(1385), + [anon_sym_co_return] = ACTIONS(1387), + [anon_sym_co_yield] = ACTIONS(1389), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -60109,88 +63392,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [229] = { - [sym_attribute_declaration] = STATE(244), - [sym_compound_statement] = STATE(1117), - [sym_attributed_statement] = STATE(1117), - [sym_labeled_statement] = STATE(1117), - [sym_expression_statement] = STATE(1117), - [sym_if_statement] = STATE(1117), - [sym_switch_statement] = STATE(1117), - [sym_case_statement] = STATE(1117), - [sym_while_statement] = STATE(1117), - [sym_do_statement] = STATE(1117), - [sym_for_statement] = STATE(1117), - [sym_return_statement] = STATE(1117), - [sym_break_statement] = STATE(1117), - [sym_continue_statement] = STATE(1117), - [sym_goto_statement] = STATE(1117), - [sym__expression] = STATE(3670), - [sym_comma_expression] = STATE(6450), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(1117), - [sym_co_return_statement] = STATE(1117), - [sym_co_yield_statement] = STATE(1117), - [sym_throw_statement] = STATE(1117), - [sym_try_statement] = STATE(1117), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(244), - [sym_identifier] = ACTIONS(1831), - [anon_sym_LPAREN2] = ACTIONS(960), + [241] = { + [sym_attribute_declaration] = STATE(179), + [sym_compound_statement] = STATE(6162), + [sym_attributed_statement] = STATE(6162), + [sym_labeled_statement] = STATE(6162), + [sym_expression_statement] = STATE(6162), + [sym_if_statement] = STATE(6162), + [sym_switch_statement] = STATE(6162), + [sym_case_statement] = STATE(6162), + [sym_while_statement] = STATE(6162), + [sym_do_statement] = STATE(6162), + [sym_for_statement] = STATE(6162), + [sym_return_statement] = STATE(6162), + [sym_break_statement] = STATE(6162), + [sym_continue_statement] = STATE(6162), + [sym_goto_statement] = STATE(6162), + [sym__expression] = STATE(3701), + [sym_comma_expression] = STATE(7176), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(6162), + [sym_co_return_statement] = STATE(6162), + [sym_co_yield_statement] = STATE(6162), + [sym_throw_statement] = STATE(6162), + [sym_try_statement] = STATE(6162), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(179), + [sym_identifier] = ACTIONS(1981), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1983), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1312), - [anon_sym_case] = ACTIONS(1835), - [anon_sym_default] = ACTIONS(1837), - [anon_sym_while] = ACTIONS(1314), - [anon_sym_do] = ACTIONS(1316), - [anon_sym_for] = ACTIONS(1318), - [anon_sym_return] = ACTIONS(1320), - [anon_sym_break] = ACTIONS(1322), - [anon_sym_continue] = ACTIONS(1324), - [anon_sym_goto] = ACTIONS(1326), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(1987), + [anon_sym_switch] = ACTIONS(1989), + [anon_sym_case] = ACTIONS(1991), + [anon_sym_default] = ACTIONS(1993), + [anon_sym_while] = ACTIONS(1995), + [anon_sym_do] = ACTIONS(1997), + [anon_sym_for] = ACTIONS(1999), + [anon_sym_return] = ACTIONS(2001), + [anon_sym_break] = ACTIONS(2003), + [anon_sym_continue] = ACTIONS(2005), + [anon_sym_goto] = ACTIONS(2007), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -60209,12 +63494,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(1328), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(2009), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(1330), - [anon_sym_co_return] = ACTIONS(1332), - [anon_sym_co_yield] = ACTIONS(1334), + [anon_sym_throw] = ACTIONS(2011), + [anon_sym_co_return] = ACTIONS(2013), + [anon_sym_co_yield] = ACTIONS(2015), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -60222,88 +63507,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [230] = { - [sym_attribute_declaration] = STATE(244), - [sym_compound_statement] = STATE(1115), - [sym_attributed_statement] = STATE(1115), - [sym_labeled_statement] = STATE(1115), - [sym_expression_statement] = STATE(1115), - [sym_if_statement] = STATE(1115), - [sym_switch_statement] = STATE(1115), - [sym_case_statement] = STATE(1115), - [sym_while_statement] = STATE(1115), - [sym_do_statement] = STATE(1115), - [sym_for_statement] = STATE(1115), - [sym_return_statement] = STATE(1115), - [sym_break_statement] = STATE(1115), - [sym_continue_statement] = STATE(1115), - [sym_goto_statement] = STATE(1115), - [sym__expression] = STATE(3670), - [sym_comma_expression] = STATE(6450), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(1115), - [sym_co_return_statement] = STATE(1115), - [sym_co_yield_statement] = STATE(1115), - [sym_throw_statement] = STATE(1115), - [sym_try_statement] = STATE(1115), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(244), - [sym_identifier] = ACTIONS(1831), - [anon_sym_LPAREN2] = ACTIONS(960), + [242] = { + [sym_attribute_declaration] = STATE(179), + [sym_compound_statement] = STATE(6221), + [sym_attributed_statement] = STATE(6221), + [sym_labeled_statement] = STATE(6221), + [sym_expression_statement] = STATE(6221), + [sym_if_statement] = STATE(6221), + [sym_switch_statement] = STATE(6221), + [sym_case_statement] = STATE(6221), + [sym_while_statement] = STATE(6221), + [sym_do_statement] = STATE(6221), + [sym_for_statement] = STATE(6221), + [sym_return_statement] = STATE(6221), + [sym_break_statement] = STATE(6221), + [sym_continue_statement] = STATE(6221), + [sym_goto_statement] = STATE(6221), + [sym__expression] = STATE(3701), + [sym_comma_expression] = STATE(7176), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(6221), + [sym_co_return_statement] = STATE(6221), + [sym_co_yield_statement] = STATE(6221), + [sym_throw_statement] = STATE(6221), + [sym_try_statement] = STATE(6221), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(179), + [sym_identifier] = ACTIONS(1981), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1983), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1312), - [anon_sym_case] = ACTIONS(1835), - [anon_sym_default] = ACTIONS(1837), - [anon_sym_while] = ACTIONS(1314), - [anon_sym_do] = ACTIONS(1316), - [anon_sym_for] = ACTIONS(1318), - [anon_sym_return] = ACTIONS(1320), - [anon_sym_break] = ACTIONS(1322), - [anon_sym_continue] = ACTIONS(1324), - [anon_sym_goto] = ACTIONS(1326), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(1987), + [anon_sym_switch] = ACTIONS(1989), + [anon_sym_case] = ACTIONS(1991), + [anon_sym_default] = ACTIONS(1993), + [anon_sym_while] = ACTIONS(1995), + [anon_sym_do] = ACTIONS(1997), + [anon_sym_for] = ACTIONS(1999), + [anon_sym_return] = ACTIONS(2001), + [anon_sym_break] = ACTIONS(2003), + [anon_sym_continue] = ACTIONS(2005), + [anon_sym_goto] = ACTIONS(2007), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -60322,12 +63609,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(1328), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(2009), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(1330), - [anon_sym_co_return] = ACTIONS(1332), - [anon_sym_co_yield] = ACTIONS(1334), + [anon_sym_throw] = ACTIONS(2011), + [anon_sym_co_return] = ACTIONS(2013), + [anon_sym_co_yield] = ACTIONS(2015), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -60335,88 +63622,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [231] = { - [sym_attribute_declaration] = STATE(244), - [sym_compound_statement] = STATE(1114), - [sym_attributed_statement] = STATE(1114), - [sym_labeled_statement] = STATE(1114), - [sym_expression_statement] = STATE(1114), - [sym_if_statement] = STATE(1114), - [sym_switch_statement] = STATE(1114), - [sym_case_statement] = STATE(1114), - [sym_while_statement] = STATE(1114), - [sym_do_statement] = STATE(1114), - [sym_for_statement] = STATE(1114), - [sym_return_statement] = STATE(1114), - [sym_break_statement] = STATE(1114), - [sym_continue_statement] = STATE(1114), - [sym_goto_statement] = STATE(1114), - [sym__expression] = STATE(3670), - [sym_comma_expression] = STATE(6450), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(1114), - [sym_co_return_statement] = STATE(1114), - [sym_co_yield_statement] = STATE(1114), - [sym_throw_statement] = STATE(1114), - [sym_try_statement] = STATE(1114), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(244), - [sym_identifier] = ACTIONS(1831), - [anon_sym_LPAREN2] = ACTIONS(960), + [243] = { + [sym_attribute_declaration] = STATE(189), + [sym_compound_statement] = STATE(1172), + [sym_attributed_statement] = STATE(1172), + [sym_labeled_statement] = STATE(1172), + [sym_expression_statement] = STATE(1172), + [sym_if_statement] = STATE(1172), + [sym_switch_statement] = STATE(1172), + [sym_case_statement] = STATE(1172), + [sym_while_statement] = STATE(1172), + [sym_do_statement] = STATE(1172), + [sym_for_statement] = STATE(1172), + [sym_return_statement] = STATE(1172), + [sym_break_statement] = STATE(1172), + [sym_continue_statement] = STATE(1172), + [sym_goto_statement] = STATE(1172), + [sym__expression] = STATE(3699), + [sym_comma_expression] = STATE(6868), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(1172), + [sym_co_return_statement] = STATE(1172), + [sym_co_yield_statement] = STATE(1172), + [sym_throw_statement] = STATE(1172), + [sym_try_statement] = STATE(1172), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(189), + [sym_identifier] = ACTIONS(2017), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1359), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1312), - [anon_sym_case] = ACTIONS(1835), - [anon_sym_default] = ACTIONS(1837), - [anon_sym_while] = ACTIONS(1314), - [anon_sym_do] = ACTIONS(1316), - [anon_sym_for] = ACTIONS(1318), - [anon_sym_return] = ACTIONS(1320), - [anon_sym_break] = ACTIONS(1322), - [anon_sym_continue] = ACTIONS(1324), - [anon_sym_goto] = ACTIONS(1326), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1367), + [anon_sym_case] = ACTIONS(1991), + [anon_sym_default] = ACTIONS(1993), + [anon_sym_while] = ACTIONS(1369), + [anon_sym_do] = ACTIONS(1371), + [anon_sym_for] = ACTIONS(1373), + [anon_sym_return] = ACTIONS(1375), + [anon_sym_break] = ACTIONS(1377), + [anon_sym_continue] = ACTIONS(1379), + [anon_sym_goto] = ACTIONS(1381), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -60435,12 +63724,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(1328), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(1383), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(1330), - [anon_sym_co_return] = ACTIONS(1332), - [anon_sym_co_yield] = ACTIONS(1334), + [anon_sym_throw] = ACTIONS(1385), + [anon_sym_co_return] = ACTIONS(1387), + [anon_sym_co_yield] = ACTIONS(1389), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -60448,88 +63737,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [232] = { - [sym_attribute_declaration] = STATE(244), - [sym_compound_statement] = STATE(1110), - [sym_attributed_statement] = STATE(1110), - [sym_labeled_statement] = STATE(1110), - [sym_expression_statement] = STATE(1110), - [sym_if_statement] = STATE(1110), - [sym_switch_statement] = STATE(1110), - [sym_case_statement] = STATE(1110), - [sym_while_statement] = STATE(1110), - [sym_do_statement] = STATE(1110), - [sym_for_statement] = STATE(1110), - [sym_return_statement] = STATE(1110), - [sym_break_statement] = STATE(1110), - [sym_continue_statement] = STATE(1110), - [sym_goto_statement] = STATE(1110), - [sym__expression] = STATE(3670), - [sym_comma_expression] = STATE(6450), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(1110), - [sym_co_return_statement] = STATE(1110), - [sym_co_yield_statement] = STATE(1110), - [sym_throw_statement] = STATE(1110), - [sym_try_statement] = STATE(1110), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(244), - [sym_identifier] = ACTIONS(1831), - [anon_sym_LPAREN2] = ACTIONS(960), + [244] = { + [sym_attribute_declaration] = STATE(189), + [sym_compound_statement] = STATE(1168), + [sym_attributed_statement] = STATE(1168), + [sym_labeled_statement] = STATE(1168), + [sym_expression_statement] = STATE(1168), + [sym_if_statement] = STATE(1168), + [sym_switch_statement] = STATE(1168), + [sym_case_statement] = STATE(1168), + [sym_while_statement] = STATE(1168), + [sym_do_statement] = STATE(1168), + [sym_for_statement] = STATE(1168), + [sym_return_statement] = STATE(1168), + [sym_break_statement] = STATE(1168), + [sym_continue_statement] = STATE(1168), + [sym_goto_statement] = STATE(1168), + [sym__expression] = STATE(3699), + [sym_comma_expression] = STATE(6868), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(1168), + [sym_co_return_statement] = STATE(1168), + [sym_co_yield_statement] = STATE(1168), + [sym_throw_statement] = STATE(1168), + [sym_try_statement] = STATE(1168), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(189), + [sym_identifier] = ACTIONS(2017), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1359), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1312), - [anon_sym_case] = ACTIONS(1835), - [anon_sym_default] = ACTIONS(1837), - [anon_sym_while] = ACTIONS(1314), - [anon_sym_do] = ACTIONS(1316), - [anon_sym_for] = ACTIONS(1318), - [anon_sym_return] = ACTIONS(1320), - [anon_sym_break] = ACTIONS(1322), - [anon_sym_continue] = ACTIONS(1324), - [anon_sym_goto] = ACTIONS(1326), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1367), + [anon_sym_case] = ACTIONS(1991), + [anon_sym_default] = ACTIONS(1993), + [anon_sym_while] = ACTIONS(1369), + [anon_sym_do] = ACTIONS(1371), + [anon_sym_for] = ACTIONS(1373), + [anon_sym_return] = ACTIONS(1375), + [anon_sym_break] = ACTIONS(1377), + [anon_sym_continue] = ACTIONS(1379), + [anon_sym_goto] = ACTIONS(1381), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -60548,12 +63839,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(1328), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(1383), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(1330), - [anon_sym_co_return] = ACTIONS(1332), - [anon_sym_co_yield] = ACTIONS(1334), + [anon_sym_throw] = ACTIONS(1385), + [anon_sym_co_return] = ACTIONS(1387), + [anon_sym_co_yield] = ACTIONS(1389), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -60561,201 +63852,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [233] = { - [sym_attribute_declaration] = STATE(233), - [sym_compound_statement] = STATE(6066), - [sym_attributed_statement] = STATE(6066), - [sym_labeled_statement] = STATE(6066), - [sym_expression_statement] = STATE(6066), - [sym_if_statement] = STATE(6066), - [sym_switch_statement] = STATE(6066), - [sym_case_statement] = STATE(6066), - [sym_while_statement] = STATE(6066), - [sym_do_statement] = STATE(6066), - [sym_for_statement] = STATE(6066), - [sym_return_statement] = STATE(6066), - [sym_break_statement] = STATE(6066), - [sym_continue_statement] = STATE(6066), - [sym_goto_statement] = STATE(6066), - [sym__expression] = STATE(3728), - [sym_comma_expression] = STATE(6585), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(6066), - [sym_co_return_statement] = STATE(6066), - [sym_co_yield_statement] = STATE(6066), - [sym_throw_statement] = STATE(6066), - [sym_try_statement] = STATE(6066), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(233), - [sym_identifier] = ACTIONS(1991), - [anon_sym_LPAREN2] = ACTIONS(1876), - [anon_sym_BANG] = ACTIONS(1879), - [anon_sym_TILDE] = ACTIONS(1879), - [anon_sym_DASH] = ACTIONS(1882), - [anon_sym_PLUS] = ACTIONS(1882), - [anon_sym_STAR] = ACTIONS(1885), - [anon_sym_AMP] = ACTIONS(1885), - [anon_sym_SEMI] = ACTIONS(1994), - [anon_sym_COLON_COLON] = ACTIONS(1891), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), - [anon_sym_LBRACE] = ACTIONS(1997), - [anon_sym_LBRACK] = ACTIONS(1900), - [sym_primitive_type] = ACTIONS(1903), - [anon_sym_if] = ACTIONS(2000), - [anon_sym_switch] = ACTIONS(2003), - [anon_sym_case] = ACTIONS(2006), - [anon_sym_default] = ACTIONS(2009), - [anon_sym_while] = ACTIONS(2012), - [anon_sym_do] = ACTIONS(2015), - [anon_sym_for] = ACTIONS(2018), - [anon_sym_return] = ACTIONS(2021), - [anon_sym_break] = ACTIONS(2024), - [anon_sym_continue] = ACTIONS(2027), - [anon_sym_goto] = ACTIONS(2030), - [anon_sym_DASH_DASH] = ACTIONS(1939), - [anon_sym_PLUS_PLUS] = ACTIONS(1939), - [anon_sym_sizeof] = ACTIONS(1942), - [sym_number_literal] = ACTIONS(1945), - [anon_sym_L_SQUOTE] = ACTIONS(1948), - [anon_sym_u_SQUOTE] = ACTIONS(1948), - [anon_sym_U_SQUOTE] = ACTIONS(1948), - [anon_sym_u8_SQUOTE] = ACTIONS(1948), - [anon_sym_SQUOTE] = ACTIONS(1948), - [anon_sym_L_DQUOTE] = ACTIONS(1951), - [anon_sym_u_DQUOTE] = ACTIONS(1951), - [anon_sym_U_DQUOTE] = ACTIONS(1951), - [anon_sym_u8_DQUOTE] = ACTIONS(1951), - [anon_sym_DQUOTE] = ACTIONS(1951), - [sym_true] = ACTIONS(1954), - [sym_false] = ACTIONS(1954), - [sym_null] = ACTIONS(1954), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1957), - [anon_sym_try] = ACTIONS(2033), - [anon_sym_delete] = ACTIONS(1963), - [anon_sym_throw] = ACTIONS(2036), - [anon_sym_co_return] = ACTIONS(2039), - [anon_sym_co_yield] = ACTIONS(2042), - [anon_sym_co_await] = ACTIONS(1975), - [anon_sym_new] = ACTIONS(1978), - [anon_sym_requires] = ACTIONS(1981), - [sym_this] = ACTIONS(1954), - [sym_nullptr] = ACTIONS(1954), - [sym_raw_string_literal] = ACTIONS(1984), - }, - [234] = { - [sym_attribute_declaration] = STATE(244), - [sym_compound_statement] = STATE(1101), - [sym_attributed_statement] = STATE(1101), - [sym_labeled_statement] = STATE(1101), - [sym_expression_statement] = STATE(1101), - [sym_if_statement] = STATE(1101), - [sym_switch_statement] = STATE(1101), - [sym_case_statement] = STATE(1101), - [sym_while_statement] = STATE(1101), - [sym_do_statement] = STATE(1101), - [sym_for_statement] = STATE(1101), - [sym_return_statement] = STATE(1101), - [sym_break_statement] = STATE(1101), - [sym_continue_statement] = STATE(1101), - [sym_goto_statement] = STATE(1101), - [sym__expression] = STATE(3670), - [sym_comma_expression] = STATE(6450), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(1101), - [sym_co_return_statement] = STATE(1101), - [sym_co_yield_statement] = STATE(1101), - [sym_throw_statement] = STATE(1101), - [sym_try_statement] = STATE(1101), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(244), - [sym_identifier] = ACTIONS(1831), - [anon_sym_LPAREN2] = ACTIONS(960), + [245] = { + [sym_attribute_declaration] = STATE(189), + [sym_compound_statement] = STATE(1165), + [sym_attributed_statement] = STATE(1165), + [sym_labeled_statement] = STATE(1165), + [sym_expression_statement] = STATE(1165), + [sym_if_statement] = STATE(1165), + [sym_switch_statement] = STATE(1165), + [sym_case_statement] = STATE(1165), + [sym_while_statement] = STATE(1165), + [sym_do_statement] = STATE(1165), + [sym_for_statement] = STATE(1165), + [sym_return_statement] = STATE(1165), + [sym_break_statement] = STATE(1165), + [sym_continue_statement] = STATE(1165), + [sym_goto_statement] = STATE(1165), + [sym__expression] = STATE(3699), + [sym_comma_expression] = STATE(6868), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(1165), + [sym_co_return_statement] = STATE(1165), + [sym_co_yield_statement] = STATE(1165), + [sym_throw_statement] = STATE(1165), + [sym_try_statement] = STATE(1165), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(189), + [sym_identifier] = ACTIONS(2017), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1359), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1312), - [anon_sym_case] = ACTIONS(1835), - [anon_sym_default] = ACTIONS(1837), - [anon_sym_while] = ACTIONS(1314), - [anon_sym_do] = ACTIONS(1316), - [anon_sym_for] = ACTIONS(1318), - [anon_sym_return] = ACTIONS(1320), - [anon_sym_break] = ACTIONS(1322), - [anon_sym_continue] = ACTIONS(1324), - [anon_sym_goto] = ACTIONS(1326), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1367), + [anon_sym_case] = ACTIONS(1991), + [anon_sym_default] = ACTIONS(1993), + [anon_sym_while] = ACTIONS(1369), + [anon_sym_do] = ACTIONS(1371), + [anon_sym_for] = ACTIONS(1373), + [anon_sym_return] = ACTIONS(1375), + [anon_sym_break] = ACTIONS(1377), + [anon_sym_continue] = ACTIONS(1379), + [anon_sym_goto] = ACTIONS(1381), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -60774,12 +63954,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(1328), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(1383), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(1330), - [anon_sym_co_return] = ACTIONS(1332), - [anon_sym_co_yield] = ACTIONS(1334), + [anon_sym_throw] = ACTIONS(1385), + [anon_sym_co_return] = ACTIONS(1387), + [anon_sym_co_yield] = ACTIONS(1389), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -60787,77 +63967,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [235] = { - [sym_attribute_declaration] = STATE(282), - [sym_compound_statement] = STATE(701), - [sym_attributed_statement] = STATE(701), - [sym_labeled_statement] = STATE(701), - [sym_expression_statement] = STATE(701), - [sym_if_statement] = STATE(701), - [sym_switch_statement] = STATE(701), - [sym_case_statement] = STATE(701), - [sym_while_statement] = STATE(701), - [sym_do_statement] = STATE(701), - [sym_for_statement] = STATE(701), - [sym_return_statement] = STATE(701), - [sym_break_statement] = STATE(701), - [sym_continue_statement] = STATE(701), - [sym_goto_statement] = STATE(701), - [sym__expression] = STATE(3605), - [sym_comma_expression] = STATE(6558), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(701), - [sym_co_return_statement] = STATE(701), - [sym_co_yield_statement] = STATE(701), - [sym_throw_statement] = STATE(701), - [sym_try_statement] = STATE(701), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(282), - [sym_identifier] = ACTIONS(1987), - [anon_sym_LPAREN2] = ACTIONS(960), + [246] = { + [sym_attribute_declaration] = STATE(286), + [sym_compound_statement] = STATE(560), + [sym_attributed_statement] = STATE(559), + [sym_labeled_statement] = STATE(556), + [sym_expression_statement] = STATE(555), + [sym_if_statement] = STATE(553), + [sym_switch_statement] = STATE(551), + [sym_case_statement] = STATE(619), + [sym_while_statement] = STATE(624), + [sym_do_statement] = STATE(631), + [sym_for_statement] = STATE(632), + [sym_return_statement] = STATE(636), + [sym_break_statement] = STATE(637), + [sym_continue_statement] = STATE(614), + [sym_goto_statement] = STATE(669), + [sym__expression] = STATE(3758), + [sym_comma_expression] = STATE(7239), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(674), + [sym_co_return_statement] = STATE(679), + [sym_co_yield_statement] = STATE(684), + [sym_throw_statement] = STATE(693), + [sym_try_statement] = STATE(697), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), [anon_sym_SEMI] = ACTIONS(33), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), [anon_sym_if] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), [anon_sym_case] = ACTIONS(75), @@ -60869,6 +64049,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(87), [anon_sym_continue] = ACTIONS(89), [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -60887,7 +64069,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), + [anon_sym_template] = ACTIONS(976), [anon_sym_try] = ACTIONS(119), [anon_sym_delete] = ACTIONS(121), [anon_sym_throw] = ACTIONS(123), @@ -60900,88 +64082,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [236] = { - [sym_attribute_declaration] = STATE(282), - [sym_compound_statement] = STATE(700), - [sym_attributed_statement] = STATE(700), - [sym_labeled_statement] = STATE(700), - [sym_expression_statement] = STATE(700), - [sym_if_statement] = STATE(700), - [sym_switch_statement] = STATE(700), - [sym_case_statement] = STATE(700), - [sym_while_statement] = STATE(700), - [sym_do_statement] = STATE(700), - [sym_for_statement] = STATE(700), - [sym_return_statement] = STATE(700), - [sym_break_statement] = STATE(700), - [sym_continue_statement] = STATE(700), - [sym_goto_statement] = STATE(700), - [sym__expression] = STATE(3605), - [sym_comma_expression] = STATE(6558), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(700), - [sym_co_return_statement] = STATE(700), - [sym_co_yield_statement] = STATE(700), - [sym_throw_statement] = STATE(700), - [sym_try_statement] = STATE(700), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(282), - [sym_identifier] = ACTIONS(1987), - [anon_sym_LPAREN2] = ACTIONS(960), + [247] = { + [sym_attribute_declaration] = STATE(189), + [sym_compound_statement] = STATE(1147), + [sym_attributed_statement] = STATE(1147), + [sym_labeled_statement] = STATE(1147), + [sym_expression_statement] = STATE(1147), + [sym_if_statement] = STATE(1147), + [sym_switch_statement] = STATE(1147), + [sym_case_statement] = STATE(1147), + [sym_while_statement] = STATE(1147), + [sym_do_statement] = STATE(1147), + [sym_for_statement] = STATE(1147), + [sym_return_statement] = STATE(1147), + [sym_break_statement] = STATE(1147), + [sym_continue_statement] = STATE(1147), + [sym_goto_statement] = STATE(1147), + [sym__expression] = STATE(3699), + [sym_comma_expression] = STATE(6868), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(1147), + [sym_co_return_statement] = STATE(1147), + [sym_co_yield_statement] = STATE(1147), + [sym_throw_statement] = STATE(1147), + [sym_try_statement] = STATE(1147), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(189), + [sym_identifier] = ACTIONS(2017), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1359), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_case] = ACTIONS(75), - [anon_sym_default] = ACTIONS(77), - [anon_sym_while] = ACTIONS(79), - [anon_sym_do] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), - [anon_sym_return] = ACTIONS(85), - [anon_sym_break] = ACTIONS(87), - [anon_sym_continue] = ACTIONS(89), - [anon_sym_goto] = ACTIONS(91), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1367), + [anon_sym_case] = ACTIONS(1991), + [anon_sym_default] = ACTIONS(1993), + [anon_sym_while] = ACTIONS(1369), + [anon_sym_do] = ACTIONS(1371), + [anon_sym_for] = ACTIONS(1373), + [anon_sym_return] = ACTIONS(1375), + [anon_sym_break] = ACTIONS(1377), + [anon_sym_continue] = ACTIONS(1379), + [anon_sym_goto] = ACTIONS(1381), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -61000,12 +64184,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(119), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(1383), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(123), - [anon_sym_co_return] = ACTIONS(133), - [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_throw] = ACTIONS(1385), + [anon_sym_co_return] = ACTIONS(1387), + [anon_sym_co_yield] = ACTIONS(1389), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -61013,88 +64197,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [237] = { - [sym_attribute_declaration] = STATE(282), - [sym_compound_statement] = STATE(697), - [sym_attributed_statement] = STATE(697), - [sym_labeled_statement] = STATE(697), - [sym_expression_statement] = STATE(697), - [sym_if_statement] = STATE(697), - [sym_switch_statement] = STATE(697), - [sym_case_statement] = STATE(697), - [sym_while_statement] = STATE(697), - [sym_do_statement] = STATE(697), - [sym_for_statement] = STATE(697), - [sym_return_statement] = STATE(697), - [sym_break_statement] = STATE(697), - [sym_continue_statement] = STATE(697), - [sym_goto_statement] = STATE(697), - [sym__expression] = STATE(3605), - [sym_comma_expression] = STATE(6558), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(697), - [sym_co_return_statement] = STATE(697), - [sym_co_yield_statement] = STATE(697), - [sym_throw_statement] = STATE(697), - [sym_try_statement] = STATE(697), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(282), - [sym_identifier] = ACTIONS(1987), - [anon_sym_LPAREN2] = ACTIONS(960), + [248] = { + [sym_attribute_declaration] = STATE(189), + [sym_compound_statement] = STATE(1146), + [sym_attributed_statement] = STATE(1143), + [sym_labeled_statement] = STATE(1138), + [sym_expression_statement] = STATE(1133), + [sym_if_statement] = STATE(1128), + [sym_switch_statement] = STATE(1112), + [sym_case_statement] = STATE(1113), + [sym_while_statement] = STATE(1114), + [sym_do_statement] = STATE(1115), + [sym_for_statement] = STATE(1117), + [sym_return_statement] = STATE(1119), + [sym_break_statement] = STATE(1120), + [sym_continue_statement] = STATE(1121), + [sym_goto_statement] = STATE(1122), + [sym__expression] = STATE(3699), + [sym_comma_expression] = STATE(6868), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(1123), + [sym_co_return_statement] = STATE(1124), + [sym_co_yield_statement] = STATE(1127), + [sym_throw_statement] = STATE(1129), + [sym_try_statement] = STATE(1130), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(189), + [sym_identifier] = ACTIONS(2017), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1359), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_case] = ACTIONS(75), - [anon_sym_default] = ACTIONS(77), - [anon_sym_while] = ACTIONS(79), - [anon_sym_do] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), - [anon_sym_return] = ACTIONS(85), - [anon_sym_break] = ACTIONS(87), - [anon_sym_continue] = ACTIONS(89), - [anon_sym_goto] = ACTIONS(91), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1367), + [anon_sym_case] = ACTIONS(1991), + [anon_sym_default] = ACTIONS(1993), + [anon_sym_while] = ACTIONS(1369), + [anon_sym_do] = ACTIONS(1371), + [anon_sym_for] = ACTIONS(1373), + [anon_sym_return] = ACTIONS(1375), + [anon_sym_break] = ACTIONS(1377), + [anon_sym_continue] = ACTIONS(1379), + [anon_sym_goto] = ACTIONS(1381), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -61113,12 +64299,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(119), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(1383), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(123), - [anon_sym_co_return] = ACTIONS(133), - [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_throw] = ACTIONS(1385), + [anon_sym_co_return] = ACTIONS(1387), + [anon_sym_co_yield] = ACTIONS(1389), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -61126,88 +64312,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [238] = { - [sym_attribute_declaration] = STATE(244), - [sym_compound_statement] = STATE(1104), - [sym_attributed_statement] = STATE(1104), - [sym_labeled_statement] = STATE(1104), - [sym_expression_statement] = STATE(1104), - [sym_if_statement] = STATE(1104), - [sym_switch_statement] = STATE(1104), - [sym_case_statement] = STATE(1104), - [sym_while_statement] = STATE(1104), - [sym_do_statement] = STATE(1104), - [sym_for_statement] = STATE(1104), - [sym_return_statement] = STATE(1104), - [sym_break_statement] = STATE(1104), - [sym_continue_statement] = STATE(1104), - [sym_goto_statement] = STATE(1104), - [sym__expression] = STATE(3670), - [sym_comma_expression] = STATE(6450), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(1104), - [sym_co_return_statement] = STATE(1104), - [sym_co_yield_statement] = STATE(1104), - [sym_throw_statement] = STATE(1104), - [sym_try_statement] = STATE(1104), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(244), - [sym_identifier] = ACTIONS(1831), - [anon_sym_LPAREN2] = ACTIONS(960), + [249] = { + [sym_attribute_declaration] = STATE(189), + [sym_compound_statement] = STATE(1132), + [sym_attributed_statement] = STATE(1134), + [sym_labeled_statement] = STATE(1110), + [sym_expression_statement] = STATE(1135), + [sym_if_statement] = STATE(1136), + [sym_switch_statement] = STATE(1140), + [sym_case_statement] = STATE(1152), + [sym_while_statement] = STATE(1154), + [sym_do_statement] = STATE(1161), + [sym_for_statement] = STATE(1163), + [sym_return_statement] = STATE(1164), + [sym_break_statement] = STATE(1166), + [sym_continue_statement] = STATE(1178), + [sym_goto_statement] = STATE(1111), + [sym__expression] = STATE(3699), + [sym_comma_expression] = STATE(6868), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(1181), + [sym_co_return_statement] = STATE(1182), + [sym_co_yield_statement] = STATE(1184), + [sym_throw_statement] = STATE(1185), + [sym_try_statement] = STATE(1186), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(189), + [sym_identifier] = ACTIONS(2017), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1359), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1312), - [anon_sym_case] = ACTIONS(1835), - [anon_sym_default] = ACTIONS(1837), - [anon_sym_while] = ACTIONS(1314), - [anon_sym_do] = ACTIONS(1316), - [anon_sym_for] = ACTIONS(1318), - [anon_sym_return] = ACTIONS(1320), - [anon_sym_break] = ACTIONS(1322), - [anon_sym_continue] = ACTIONS(1324), - [anon_sym_goto] = ACTIONS(1326), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1367), + [anon_sym_case] = ACTIONS(1991), + [anon_sym_default] = ACTIONS(1993), + [anon_sym_while] = ACTIONS(1369), + [anon_sym_do] = ACTIONS(1371), + [anon_sym_for] = ACTIONS(1373), + [anon_sym_return] = ACTIONS(1375), + [anon_sym_break] = ACTIONS(1377), + [anon_sym_continue] = ACTIONS(1379), + [anon_sym_goto] = ACTIONS(1381), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -61226,12 +64414,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(1328), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(1383), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(1330), - [anon_sym_co_return] = ACTIONS(1332), - [anon_sym_co_yield] = ACTIONS(1334), + [anon_sym_throw] = ACTIONS(1385), + [anon_sym_co_return] = ACTIONS(1387), + [anon_sym_co_yield] = ACTIONS(1389), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -61239,88 +64427,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [239] = { - [sym_attribute_declaration] = STATE(244), - [sym_compound_statement] = STATE(1132), - [sym_attributed_statement] = STATE(1132), - [sym_labeled_statement] = STATE(1132), - [sym_expression_statement] = STATE(1132), - [sym_if_statement] = STATE(1132), - [sym_switch_statement] = STATE(1132), - [sym_case_statement] = STATE(1132), - [sym_while_statement] = STATE(1132), - [sym_do_statement] = STATE(1132), - [sym_for_statement] = STATE(1132), - [sym_return_statement] = STATE(1132), - [sym_break_statement] = STATE(1132), - [sym_continue_statement] = STATE(1132), - [sym_goto_statement] = STATE(1132), - [sym__expression] = STATE(3670), - [sym_comma_expression] = STATE(6450), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(1132), - [sym_co_return_statement] = STATE(1132), - [sym_co_yield_statement] = STATE(1132), - [sym_throw_statement] = STATE(1132), - [sym_try_statement] = STATE(1132), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(244), - [sym_identifier] = ACTIONS(1831), - [anon_sym_LPAREN2] = ACTIONS(960), + [250] = { + [sym_attribute_declaration] = STATE(189), + [sym_compound_statement] = STATE(1190), + [sym_attributed_statement] = STATE(1190), + [sym_labeled_statement] = STATE(1190), + [sym_expression_statement] = STATE(1190), + [sym_if_statement] = STATE(1190), + [sym_switch_statement] = STATE(1190), + [sym_case_statement] = STATE(1190), + [sym_while_statement] = STATE(1190), + [sym_do_statement] = STATE(1190), + [sym_for_statement] = STATE(1190), + [sym_return_statement] = STATE(1190), + [sym_break_statement] = STATE(1190), + [sym_continue_statement] = STATE(1190), + [sym_goto_statement] = STATE(1190), + [sym__expression] = STATE(3699), + [sym_comma_expression] = STATE(6868), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(1190), + [sym_co_return_statement] = STATE(1190), + [sym_co_yield_statement] = STATE(1190), + [sym_throw_statement] = STATE(1190), + [sym_try_statement] = STATE(1190), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(189), + [sym_identifier] = ACTIONS(2017), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1359), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1312), - [anon_sym_case] = ACTIONS(1835), - [anon_sym_default] = ACTIONS(1837), - [anon_sym_while] = ACTIONS(1314), - [anon_sym_do] = ACTIONS(1316), - [anon_sym_for] = ACTIONS(1318), - [anon_sym_return] = ACTIONS(1320), - [anon_sym_break] = ACTIONS(1322), - [anon_sym_continue] = ACTIONS(1324), - [anon_sym_goto] = ACTIONS(1326), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1367), + [anon_sym_case] = ACTIONS(1991), + [anon_sym_default] = ACTIONS(1993), + [anon_sym_while] = ACTIONS(1369), + [anon_sym_do] = ACTIONS(1371), + [anon_sym_for] = ACTIONS(1373), + [anon_sym_return] = ACTIONS(1375), + [anon_sym_break] = ACTIONS(1377), + [anon_sym_continue] = ACTIONS(1379), + [anon_sym_goto] = ACTIONS(1381), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -61339,12 +64529,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(1328), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(1383), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(1330), - [anon_sym_co_return] = ACTIONS(1332), - [anon_sym_co_yield] = ACTIONS(1334), + [anon_sym_throw] = ACTIONS(1385), + [anon_sym_co_return] = ACTIONS(1387), + [anon_sym_co_yield] = ACTIONS(1389), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -61352,201 +64542,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [240] = { - [sym_attribute_declaration] = STATE(240), - [sym_compound_statement] = STATE(1196), - [sym_attributed_statement] = STATE(1196), - [sym_labeled_statement] = STATE(1196), - [sym_expression_statement] = STATE(1196), - [sym_if_statement] = STATE(1196), - [sym_switch_statement] = STATE(1196), - [sym_case_statement] = STATE(1196), - [sym_while_statement] = STATE(1196), - [sym_do_statement] = STATE(1196), - [sym_for_statement] = STATE(1196), - [sym_return_statement] = STATE(1196), - [sym_break_statement] = STATE(1196), - [sym_continue_statement] = STATE(1196), - [sym_goto_statement] = STATE(1196), - [sym__expression] = STATE(3670), - [sym_comma_expression] = STATE(6450), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(1196), - [sym_co_return_statement] = STATE(1196), - [sym_co_yield_statement] = STATE(1196), - [sym_throw_statement] = STATE(1196), - [sym_try_statement] = STATE(1196), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(240), - [sym_identifier] = ACTIONS(2045), - [anon_sym_LPAREN2] = ACTIONS(1876), - [anon_sym_BANG] = ACTIONS(1879), - [anon_sym_TILDE] = ACTIONS(1879), - [anon_sym_DASH] = ACTIONS(1882), - [anon_sym_PLUS] = ACTIONS(1882), - [anon_sym_STAR] = ACTIONS(1885), - [anon_sym_AMP] = ACTIONS(1885), - [anon_sym_SEMI] = ACTIONS(2048), - [anon_sym_COLON_COLON] = ACTIONS(1891), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), - [anon_sym_LBRACE] = ACTIONS(2051), - [anon_sym_LBRACK] = ACTIONS(1900), - [sym_primitive_type] = ACTIONS(1903), - [anon_sym_if] = ACTIONS(2054), - [anon_sym_switch] = ACTIONS(2057), - [anon_sym_case] = ACTIONS(2006), - [anon_sym_default] = ACTIONS(2009), - [anon_sym_while] = ACTIONS(2060), - [anon_sym_do] = ACTIONS(2063), - [anon_sym_for] = ACTIONS(2066), - [anon_sym_return] = ACTIONS(2069), - [anon_sym_break] = ACTIONS(2072), - [anon_sym_continue] = ACTIONS(2075), - [anon_sym_goto] = ACTIONS(2078), - [anon_sym_DASH_DASH] = ACTIONS(1939), - [anon_sym_PLUS_PLUS] = ACTIONS(1939), - [anon_sym_sizeof] = ACTIONS(1942), - [sym_number_literal] = ACTIONS(1945), - [anon_sym_L_SQUOTE] = ACTIONS(1948), - [anon_sym_u_SQUOTE] = ACTIONS(1948), - [anon_sym_U_SQUOTE] = ACTIONS(1948), - [anon_sym_u8_SQUOTE] = ACTIONS(1948), - [anon_sym_SQUOTE] = ACTIONS(1948), - [anon_sym_L_DQUOTE] = ACTIONS(1951), - [anon_sym_u_DQUOTE] = ACTIONS(1951), - [anon_sym_U_DQUOTE] = ACTIONS(1951), - [anon_sym_u8_DQUOTE] = ACTIONS(1951), - [anon_sym_DQUOTE] = ACTIONS(1951), - [sym_true] = ACTIONS(1954), - [sym_false] = ACTIONS(1954), - [sym_null] = ACTIONS(1954), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1957), - [anon_sym_try] = ACTIONS(2081), - [anon_sym_delete] = ACTIONS(1963), - [anon_sym_throw] = ACTIONS(2084), - [anon_sym_co_return] = ACTIONS(2087), - [anon_sym_co_yield] = ACTIONS(2090), - [anon_sym_co_await] = ACTIONS(1975), - [anon_sym_new] = ACTIONS(1978), - [anon_sym_requires] = ACTIONS(1981), - [sym_this] = ACTIONS(1954), - [sym_nullptr] = ACTIONS(1954), - [sym_raw_string_literal] = ACTIONS(1984), - }, - [241] = { - [sym_attribute_declaration] = STATE(244), - [sym_compound_statement] = STATE(1168), - [sym_attributed_statement] = STATE(1168), - [sym_labeled_statement] = STATE(1168), - [sym_expression_statement] = STATE(1168), - [sym_if_statement] = STATE(1168), - [sym_switch_statement] = STATE(1168), - [sym_case_statement] = STATE(1168), - [sym_while_statement] = STATE(1168), - [sym_do_statement] = STATE(1168), - [sym_for_statement] = STATE(1168), - [sym_return_statement] = STATE(1168), - [sym_break_statement] = STATE(1168), - [sym_continue_statement] = STATE(1168), - [sym_goto_statement] = STATE(1168), - [sym__expression] = STATE(3670), - [sym_comma_expression] = STATE(6450), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(1168), - [sym_co_return_statement] = STATE(1168), - [sym_co_yield_statement] = STATE(1168), - [sym_throw_statement] = STATE(1168), - [sym_try_statement] = STATE(1168), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(244), - [sym_identifier] = ACTIONS(1831), - [anon_sym_LPAREN2] = ACTIONS(960), + [251] = { + [sym_attribute_declaration] = STATE(179), + [sym_compound_statement] = STATE(7199), + [sym_attributed_statement] = STATE(7199), + [sym_labeled_statement] = STATE(7199), + [sym_expression_statement] = STATE(7199), + [sym_if_statement] = STATE(7199), + [sym_switch_statement] = STATE(7199), + [sym_case_statement] = STATE(7199), + [sym_while_statement] = STATE(7199), + [sym_do_statement] = STATE(7199), + [sym_for_statement] = STATE(7199), + [sym_return_statement] = STATE(7199), + [sym_break_statement] = STATE(7199), + [sym_continue_statement] = STATE(7199), + [sym_goto_statement] = STATE(7199), + [sym__expression] = STATE(3701), + [sym_comma_expression] = STATE(7176), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(7199), + [sym_co_return_statement] = STATE(7199), + [sym_co_yield_statement] = STATE(7199), + [sym_throw_statement] = STATE(7199), + [sym_try_statement] = STATE(7199), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(179), + [sym_identifier] = ACTIONS(1981), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1983), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1312), - [anon_sym_case] = ACTIONS(1835), - [anon_sym_default] = ACTIONS(1837), - [anon_sym_while] = ACTIONS(1314), - [anon_sym_do] = ACTIONS(1316), - [anon_sym_for] = ACTIONS(1318), - [anon_sym_return] = ACTIONS(1320), - [anon_sym_break] = ACTIONS(1322), - [anon_sym_continue] = ACTIONS(1324), - [anon_sym_goto] = ACTIONS(1326), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(1987), + [anon_sym_switch] = ACTIONS(1989), + [anon_sym_case] = ACTIONS(1991), + [anon_sym_default] = ACTIONS(1993), + [anon_sym_while] = ACTIONS(1995), + [anon_sym_do] = ACTIONS(1997), + [anon_sym_for] = ACTIONS(1999), + [anon_sym_return] = ACTIONS(2001), + [anon_sym_break] = ACTIONS(2003), + [anon_sym_continue] = ACTIONS(2005), + [anon_sym_goto] = ACTIONS(2007), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -61565,12 +64644,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(1328), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(2009), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(1330), - [anon_sym_co_return] = ACTIONS(1332), - [anon_sym_co_yield] = ACTIONS(1334), + [anon_sym_throw] = ACTIONS(2011), + [anon_sym_co_return] = ACTIONS(2013), + [anon_sym_co_yield] = ACTIONS(2015), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -61578,88 +64657,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [242] = { - [sym_attribute_declaration] = STATE(244), - [sym_compound_statement] = STATE(1174), - [sym_attributed_statement] = STATE(1174), - [sym_labeled_statement] = STATE(1174), - [sym_expression_statement] = STATE(1174), - [sym_if_statement] = STATE(1174), - [sym_switch_statement] = STATE(1174), - [sym_case_statement] = STATE(1174), - [sym_while_statement] = STATE(1174), - [sym_do_statement] = STATE(1174), - [sym_for_statement] = STATE(1174), - [sym_return_statement] = STATE(1174), - [sym_break_statement] = STATE(1174), - [sym_continue_statement] = STATE(1174), - [sym_goto_statement] = STATE(1174), - [sym__expression] = STATE(3670), - [sym_comma_expression] = STATE(6450), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(1174), - [sym_co_return_statement] = STATE(1174), - [sym_co_yield_statement] = STATE(1174), - [sym_throw_statement] = STATE(1174), - [sym_try_statement] = STATE(1174), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(244), - [sym_identifier] = ACTIONS(1831), - [anon_sym_LPAREN2] = ACTIONS(960), + [252] = { + [sym_attribute_declaration] = STATE(189), + [sym_compound_statement] = STATE(1191), + [sym_attributed_statement] = STATE(1191), + [sym_labeled_statement] = STATE(1191), + [sym_expression_statement] = STATE(1191), + [sym_if_statement] = STATE(1191), + [sym_switch_statement] = STATE(1191), + [sym_case_statement] = STATE(1191), + [sym_while_statement] = STATE(1191), + [sym_do_statement] = STATE(1191), + [sym_for_statement] = STATE(1191), + [sym_return_statement] = STATE(1191), + [sym_break_statement] = STATE(1191), + [sym_continue_statement] = STATE(1191), + [sym_goto_statement] = STATE(1191), + [sym__expression] = STATE(3699), + [sym_comma_expression] = STATE(6868), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(1191), + [sym_co_return_statement] = STATE(1191), + [sym_co_yield_statement] = STATE(1191), + [sym_throw_statement] = STATE(1191), + [sym_try_statement] = STATE(1191), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(189), + [sym_identifier] = ACTIONS(2017), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1359), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1312), - [anon_sym_case] = ACTIONS(1835), - [anon_sym_default] = ACTIONS(1837), - [anon_sym_while] = ACTIONS(1314), - [anon_sym_do] = ACTIONS(1316), - [anon_sym_for] = ACTIONS(1318), - [anon_sym_return] = ACTIONS(1320), - [anon_sym_break] = ACTIONS(1322), - [anon_sym_continue] = ACTIONS(1324), - [anon_sym_goto] = ACTIONS(1326), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1367), + [anon_sym_case] = ACTIONS(1991), + [anon_sym_default] = ACTIONS(1993), + [anon_sym_while] = ACTIONS(1369), + [anon_sym_do] = ACTIONS(1371), + [anon_sym_for] = ACTIONS(1373), + [anon_sym_return] = ACTIONS(1375), + [anon_sym_break] = ACTIONS(1377), + [anon_sym_continue] = ACTIONS(1379), + [anon_sym_goto] = ACTIONS(1381), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -61678,12 +64759,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(1328), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(1383), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(1330), - [anon_sym_co_return] = ACTIONS(1332), - [anon_sym_co_yield] = ACTIONS(1334), + [anon_sym_throw] = ACTIONS(1385), + [anon_sym_co_return] = ACTIONS(1387), + [anon_sym_co_yield] = ACTIONS(1389), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -61691,88 +64772,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [243] = { - [sym_attribute_declaration] = STATE(244), - [sym_compound_statement] = STATE(1176), - [sym_attributed_statement] = STATE(1176), - [sym_labeled_statement] = STATE(1176), - [sym_expression_statement] = STATE(1176), - [sym_if_statement] = STATE(1176), - [sym_switch_statement] = STATE(1176), - [sym_case_statement] = STATE(1176), - [sym_while_statement] = STATE(1176), - [sym_do_statement] = STATE(1176), - [sym_for_statement] = STATE(1176), - [sym_return_statement] = STATE(1176), - [sym_break_statement] = STATE(1176), - [sym_continue_statement] = STATE(1176), - [sym_goto_statement] = STATE(1176), - [sym__expression] = STATE(3670), - [sym_comma_expression] = STATE(6450), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(1176), - [sym_co_return_statement] = STATE(1176), - [sym_co_yield_statement] = STATE(1176), - [sym_throw_statement] = STATE(1176), - [sym_try_statement] = STATE(1176), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(244), - [sym_identifier] = ACTIONS(1831), - [anon_sym_LPAREN2] = ACTIONS(960), + [253] = { + [sym_attribute_declaration] = STATE(286), + [sym_compound_statement] = STATE(849), + [sym_attributed_statement] = STATE(849), + [sym_labeled_statement] = STATE(849), + [sym_expression_statement] = STATE(849), + [sym_if_statement] = STATE(849), + [sym_switch_statement] = STATE(849), + [sym_case_statement] = STATE(849), + [sym_while_statement] = STATE(849), + [sym_do_statement] = STATE(849), + [sym_for_statement] = STATE(849), + [sym_return_statement] = STATE(849), + [sym_break_statement] = STATE(849), + [sym_continue_statement] = STATE(849), + [sym_goto_statement] = STATE(849), + [sym__expression] = STATE(3758), + [sym_comma_expression] = STATE(7239), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(849), + [sym_co_return_statement] = STATE(849), + [sym_co_yield_statement] = STATE(849), + [sym_throw_statement] = STATE(849), + [sym_try_statement] = STATE(849), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(33), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1312), - [anon_sym_case] = ACTIONS(1835), - [anon_sym_default] = ACTIONS(1837), - [anon_sym_while] = ACTIONS(1314), - [anon_sym_do] = ACTIONS(1316), - [anon_sym_for] = ACTIONS(1318), - [anon_sym_return] = ACTIONS(1320), - [anon_sym_break] = ACTIONS(1322), - [anon_sym_continue] = ACTIONS(1324), - [anon_sym_goto] = ACTIONS(1326), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(75), + [anon_sym_default] = ACTIONS(77), + [anon_sym_while] = ACTIONS(79), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -61791,12 +64874,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(1328), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(119), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(1330), - [anon_sym_co_return] = ACTIONS(1332), - [anon_sym_co_yield] = ACTIONS(1334), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -61804,8 +64887,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [244] = { - [sym_attribute_declaration] = STATE(240), + [254] = { + [sym_attribute_declaration] = STATE(189), [sym_compound_statement] = STATE(1196), [sym_attributed_statement] = STATE(1196), [sym_labeled_statement] = STATE(1196), @@ -61820,72 +64903,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(1196), [sym_continue_statement] = STATE(1196), [sym_goto_statement] = STATE(1196), - [sym__expression] = STATE(3670), - [sym_comma_expression] = STATE(6450), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), + [sym__expression] = STATE(3699), + [sym_comma_expression] = STATE(6868), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), [sym_for_range_loop] = STATE(1196), [sym_co_return_statement] = STATE(1196), [sym_co_yield_statement] = STATE(1196), [sym_throw_statement] = STATE(1196), [sym_try_statement] = STATE(1196), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(240), - [sym_identifier] = ACTIONS(1831), - [anon_sym_LPAREN2] = ACTIONS(960), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(189), + [sym_identifier] = ACTIONS(2017), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1359), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1312), - [anon_sym_case] = ACTIONS(1835), - [anon_sym_default] = ACTIONS(1837), - [anon_sym_while] = ACTIONS(1314), - [anon_sym_do] = ACTIONS(1316), - [anon_sym_for] = ACTIONS(1318), - [anon_sym_return] = ACTIONS(1320), - [anon_sym_break] = ACTIONS(1322), - [anon_sym_continue] = ACTIONS(1324), - [anon_sym_goto] = ACTIONS(1326), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1367), + [anon_sym_case] = ACTIONS(1991), + [anon_sym_default] = ACTIONS(1993), + [anon_sym_while] = ACTIONS(1369), + [anon_sym_do] = ACTIONS(1371), + [anon_sym_for] = ACTIONS(1373), + [anon_sym_return] = ACTIONS(1375), + [anon_sym_break] = ACTIONS(1377), + [anon_sym_continue] = ACTIONS(1379), + [anon_sym_goto] = ACTIONS(1381), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -61904,12 +64989,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(1328), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(1383), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(1330), - [anon_sym_co_return] = ACTIONS(1332), - [anon_sym_co_yield] = ACTIONS(1334), + [anon_sym_throw] = ACTIONS(1385), + [anon_sym_co_return] = ACTIONS(1387), + [anon_sym_co_yield] = ACTIONS(1389), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -61917,88 +65002,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [245] = { - [sym_attribute_declaration] = STATE(296), - [sym_compound_statement] = STATE(874), - [sym_attributed_statement] = STATE(874), - [sym_labeled_statement] = STATE(874), - [sym_expression_statement] = STATE(874), - [sym_if_statement] = STATE(874), - [sym_switch_statement] = STATE(874), - [sym_case_statement] = STATE(874), - [sym_while_statement] = STATE(874), - [sym_do_statement] = STATE(874), - [sym_for_statement] = STATE(874), - [sym_return_statement] = STATE(874), - [sym_break_statement] = STATE(874), - [sym_continue_statement] = STATE(874), - [sym_goto_statement] = STATE(874), - [sym__expression] = STATE(3645), - [sym_comma_expression] = STATE(6499), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(874), - [sym_co_return_statement] = STATE(874), - [sym_co_yield_statement] = STATE(874), - [sym_throw_statement] = STATE(874), - [sym_try_statement] = STATE(874), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [sym_identifier] = ACTIONS(1989), - [anon_sym_LPAREN2] = ACTIONS(960), + [255] = { + [sym_attribute_declaration] = STATE(189), + [sym_compound_statement] = STATE(1199), + [sym_attributed_statement] = STATE(1200), + [sym_labeled_statement] = STATE(1201), + [sym_expression_statement] = STATE(1202), + [sym_if_statement] = STATE(1205), + [sym_switch_statement] = STATE(1206), + [sym_case_statement] = STATE(1208), + [sym_while_statement] = STATE(1213), + [sym_do_statement] = STATE(1216), + [sym_for_statement] = STATE(1225), + [sym_return_statement] = STATE(1226), + [sym_break_statement] = STATE(1227), + [sym_continue_statement] = STATE(1229), + [sym_goto_statement] = STATE(1234), + [sym__expression] = STATE(3699), + [sym_comma_expression] = STATE(6868), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(1236), + [sym_co_return_statement] = STATE(1240), + [sym_co_yield_statement] = STATE(1239), + [sym_throw_statement] = STATE(1235), + [sym_try_statement] = STATE(1231), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(189), + [sym_identifier] = ACTIONS(2017), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1359), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(536), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(171), - [anon_sym_switch] = ACTIONS(173), - [anon_sym_case] = ACTIONS(175), - [anon_sym_default] = ACTIONS(177), - [anon_sym_while] = ACTIONS(179), - [anon_sym_do] = ACTIONS(181), - [anon_sym_for] = ACTIONS(183), - [anon_sym_return] = ACTIONS(185), - [anon_sym_break] = ACTIONS(187), - [anon_sym_continue] = ACTIONS(189), - [anon_sym_goto] = ACTIONS(191), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(1365), + [anon_sym_switch] = ACTIONS(1367), + [anon_sym_case] = ACTIONS(1991), + [anon_sym_default] = ACTIONS(1993), + [anon_sym_while] = ACTIONS(1369), + [anon_sym_do] = ACTIONS(1371), + [anon_sym_for] = ACTIONS(1373), + [anon_sym_return] = ACTIONS(1375), + [anon_sym_break] = ACTIONS(1377), + [anon_sym_continue] = ACTIONS(1379), + [anon_sym_goto] = ACTIONS(1381), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -62017,12 +65104,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(197), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(1383), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(199), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_throw] = ACTIONS(1385), + [anon_sym_co_return] = ACTIONS(1387), + [anon_sym_co_yield] = ACTIONS(1389), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -62030,77 +65117,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [246] = { - [sym_attribute_declaration] = STATE(296), - [sym_compound_statement] = STATE(877), - [sym_attributed_statement] = STATE(877), - [sym_labeled_statement] = STATE(877), - [sym_expression_statement] = STATE(877), - [sym_if_statement] = STATE(877), - [sym_switch_statement] = STATE(877), - [sym_case_statement] = STATE(877), - [sym_while_statement] = STATE(877), - [sym_do_statement] = STATE(877), - [sym_for_statement] = STATE(877), - [sym_return_statement] = STATE(877), - [sym_break_statement] = STATE(877), - [sym_continue_statement] = STATE(877), - [sym_goto_statement] = STATE(877), - [sym__expression] = STATE(3645), - [sym_comma_expression] = STATE(6499), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(877), - [sym_co_return_statement] = STATE(877), - [sym_co_yield_statement] = STATE(877), - [sym_throw_statement] = STATE(877), - [sym_try_statement] = STATE(877), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [sym_identifier] = ACTIONS(1989), - [anon_sym_LPAREN2] = ACTIONS(960), + [256] = { + [sym_attribute_declaration] = STATE(191), + [sym_compound_statement] = STATE(879), + [sym_attributed_statement] = STATE(879), + [sym_labeled_statement] = STATE(879), + [sym_expression_statement] = STATE(879), + [sym_if_statement] = STATE(879), + [sym_switch_statement] = STATE(879), + [sym_case_statement] = STATE(879), + [sym_while_statement] = STATE(879), + [sym_do_statement] = STATE(879), + [sym_for_statement] = STATE(879), + [sym_return_statement] = STATE(879), + [sym_break_statement] = STATE(879), + [sym_continue_statement] = STATE(879), + [sym_goto_statement] = STATE(879), + [sym__expression] = STATE(3704), + [sym_comma_expression] = STATE(6857), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(879), + [sym_co_return_statement] = STATE(879), + [sym_co_yield_statement] = STATE(879), + [sym_throw_statement] = STATE(879), + [sym_try_statement] = STATE(879), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [sym_identifier] = ACTIONS(2019), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), [anon_sym_SEMI] = ACTIONS(159), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), [anon_sym_LBRACE] = ACTIONS(536), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), [anon_sym_if] = ACTIONS(171), [anon_sym_switch] = ACTIONS(173), [anon_sym_case] = ACTIONS(175), @@ -62112,6 +65199,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(187), [anon_sym_continue] = ACTIONS(189), [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -62130,7 +65219,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), + [anon_sym_template] = ACTIONS(976), [anon_sym_try] = ACTIONS(197), [anon_sym_delete] = ACTIONS(121), [anon_sym_throw] = ACTIONS(199), @@ -62143,88 +65232,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [247] = { - [sym_attribute_declaration] = STATE(296), - [sym_compound_statement] = STATE(878), - [sym_attributed_statement] = STATE(878), - [sym_labeled_statement] = STATE(878), - [sym_expression_statement] = STATE(878), - [sym_if_statement] = STATE(878), - [sym_switch_statement] = STATE(878), - [sym_case_statement] = STATE(878), - [sym_while_statement] = STATE(878), - [sym_do_statement] = STATE(878), - [sym_for_statement] = STATE(878), - [sym_return_statement] = STATE(878), - [sym_break_statement] = STATE(878), - [sym_continue_statement] = STATE(878), - [sym_goto_statement] = STATE(878), - [sym__expression] = STATE(3645), - [sym_comma_expression] = STATE(6499), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(878), - [sym_co_return_statement] = STATE(878), - [sym_co_yield_statement] = STATE(878), - [sym_throw_statement] = STATE(878), - [sym_try_statement] = STATE(878), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [sym_identifier] = ACTIONS(1989), - [anon_sym_LPAREN2] = ACTIONS(960), + [257] = { + [sym_attribute_declaration] = STATE(179), + [sym_compound_statement] = STATE(6154), + [sym_attributed_statement] = STATE(6154), + [sym_labeled_statement] = STATE(6154), + [sym_expression_statement] = STATE(6154), + [sym_if_statement] = STATE(6154), + [sym_switch_statement] = STATE(6154), + [sym_case_statement] = STATE(6154), + [sym_while_statement] = STATE(6154), + [sym_do_statement] = STATE(6154), + [sym_for_statement] = STATE(6154), + [sym_return_statement] = STATE(6154), + [sym_break_statement] = STATE(6154), + [sym_continue_statement] = STATE(6154), + [sym_goto_statement] = STATE(6154), + [sym__expression] = STATE(3701), + [sym_comma_expression] = STATE(7176), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(6154), + [sym_co_return_statement] = STATE(6154), + [sym_co_yield_statement] = STATE(6154), + [sym_throw_statement] = STATE(6154), + [sym_try_statement] = STATE(6154), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(179), + [sym_identifier] = ACTIONS(1981), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1983), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(536), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(171), - [anon_sym_switch] = ACTIONS(173), - [anon_sym_case] = ACTIONS(175), - [anon_sym_default] = ACTIONS(177), - [anon_sym_while] = ACTIONS(179), - [anon_sym_do] = ACTIONS(181), - [anon_sym_for] = ACTIONS(183), - [anon_sym_return] = ACTIONS(185), - [anon_sym_break] = ACTIONS(187), - [anon_sym_continue] = ACTIONS(189), - [anon_sym_goto] = ACTIONS(191), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(1987), + [anon_sym_switch] = ACTIONS(1989), + [anon_sym_case] = ACTIONS(1991), + [anon_sym_default] = ACTIONS(1993), + [anon_sym_while] = ACTIONS(1995), + [anon_sym_do] = ACTIONS(1997), + [anon_sym_for] = ACTIONS(1999), + [anon_sym_return] = ACTIONS(2001), + [anon_sym_break] = ACTIONS(2003), + [anon_sym_continue] = ACTIONS(2005), + [anon_sym_goto] = ACTIONS(2007), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -62243,12 +65334,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(197), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(2009), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(199), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_throw] = ACTIONS(2011), + [anon_sym_co_return] = ACTIONS(2013), + [anon_sym_co_yield] = ACTIONS(2015), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -62256,88 +65347,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [248] = { - [sym_attribute_declaration] = STATE(282), - [sym_compound_statement] = STATE(653), - [sym_attributed_statement] = STATE(653), - [sym_labeled_statement] = STATE(653), - [sym_expression_statement] = STATE(653), - [sym_if_statement] = STATE(653), - [sym_switch_statement] = STATE(653), - [sym_case_statement] = STATE(653), - [sym_while_statement] = STATE(653), - [sym_do_statement] = STATE(653), - [sym_for_statement] = STATE(653), - [sym_return_statement] = STATE(653), - [sym_break_statement] = STATE(653), - [sym_continue_statement] = STATE(653), - [sym_goto_statement] = STATE(653), - [sym__expression] = STATE(3605), - [sym_comma_expression] = STATE(6558), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(653), - [sym_co_return_statement] = STATE(653), - [sym_co_yield_statement] = STATE(653), - [sym_throw_statement] = STATE(653), - [sym_try_statement] = STATE(653), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(282), - [sym_identifier] = ACTIONS(1987), - [anon_sym_LPAREN2] = ACTIONS(960), + [258] = { + [sym_attribute_declaration] = STATE(179), + [sym_compound_statement] = STATE(6151), + [sym_attributed_statement] = STATE(6149), + [sym_labeled_statement] = STATE(6144), + [sym_expression_statement] = STATE(6143), + [sym_if_statement] = STATE(6142), + [sym_switch_statement] = STATE(6141), + [sym_case_statement] = STATE(6140), + [sym_while_statement] = STATE(6139), + [sym_do_statement] = STATE(6138), + [sym_for_statement] = STATE(6137), + [sym_return_statement] = STATE(6136), + [sym_break_statement] = STATE(6135), + [sym_continue_statement] = STATE(6134), + [sym_goto_statement] = STATE(6133), + [sym__expression] = STATE(3701), + [sym_comma_expression] = STATE(7176), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(6132), + [sym_co_return_statement] = STATE(6131), + [sym_co_yield_statement] = STATE(6170), + [sym_throw_statement] = STATE(6173), + [sym_try_statement] = STATE(6175), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(179), + [sym_identifier] = ACTIONS(1981), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1983), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_case] = ACTIONS(75), - [anon_sym_default] = ACTIONS(77), - [anon_sym_while] = ACTIONS(79), - [anon_sym_do] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), - [anon_sym_return] = ACTIONS(85), - [anon_sym_break] = ACTIONS(87), - [anon_sym_continue] = ACTIONS(89), - [anon_sym_goto] = ACTIONS(91), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(1987), + [anon_sym_switch] = ACTIONS(1989), + [anon_sym_case] = ACTIONS(1991), + [anon_sym_default] = ACTIONS(1993), + [anon_sym_while] = ACTIONS(1995), + [anon_sym_do] = ACTIONS(1997), + [anon_sym_for] = ACTIONS(1999), + [anon_sym_return] = ACTIONS(2001), + [anon_sym_break] = ACTIONS(2003), + [anon_sym_continue] = ACTIONS(2005), + [anon_sym_goto] = ACTIONS(2007), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -62356,12 +65449,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(119), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(2009), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(123), - [anon_sym_co_return] = ACTIONS(133), - [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_throw] = ACTIONS(2011), + [anon_sym_co_return] = ACTIONS(2013), + [anon_sym_co_yield] = ACTIONS(2015), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -62369,89 +65462,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [249] = { - [sym_attribute_declaration] = STATE(282), - [sym_compound_statement] = STATE(652), - [sym_attributed_statement] = STATE(652), - [sym_labeled_statement] = STATE(652), - [sym_expression_statement] = STATE(652), - [sym_if_statement] = STATE(652), - [sym_switch_statement] = STATE(652), - [sym_case_statement] = STATE(652), - [sym_while_statement] = STATE(652), - [sym_do_statement] = STATE(652), - [sym_for_statement] = STATE(652), - [sym_return_statement] = STATE(652), - [sym_break_statement] = STATE(652), - [sym_continue_statement] = STATE(652), - [sym_goto_statement] = STATE(652), - [sym__expression] = STATE(3605), - [sym_comma_expression] = STATE(6558), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(652), - [sym_co_return_statement] = STATE(652), - [sym_co_yield_statement] = STATE(652), - [sym_throw_statement] = STATE(652), - [sym_try_statement] = STATE(652), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(282), - [sym_identifier] = ACTIONS(1987), - [anon_sym_LPAREN2] = ACTIONS(960), + [259] = { + [sym_attribute_declaration] = STATE(290), + [sym_compound_statement] = STATE(413), + [sym_attributed_statement] = STATE(413), + [sym_labeled_statement] = STATE(413), + [sym_expression_statement] = STATE(413), + [sym_if_statement] = STATE(413), + [sym_switch_statement] = STATE(413), + [sym_case_statement] = STATE(413), + [sym_while_statement] = STATE(413), + [sym_do_statement] = STATE(413), + [sym_for_statement] = STATE(413), + [sym_return_statement] = STATE(413), + [sym_break_statement] = STATE(413), + [sym_continue_statement] = STATE(413), + [sym_goto_statement] = STATE(413), + [sym__expression] = STATE(3680), + [sym_comma_expression] = STATE(7175), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(413), + [sym_co_return_statement] = STATE(413), + [sym_co_yield_statement] = STATE(413), + [sym_throw_statement] = STATE(413), + [sym_try_statement] = STATE(413), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(290), + [sym_identifier] = ACTIONS(2135), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(245), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_case] = ACTIONS(75), - [anon_sym_default] = ACTIONS(77), - [anon_sym_while] = ACTIONS(79), - [anon_sym_do] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), - [anon_sym_return] = ACTIONS(85), - [anon_sym_break] = ACTIONS(87), - [anon_sym_continue] = ACTIONS(89), - [anon_sym_goto] = ACTIONS(91), - [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(253), + [anon_sym_switch] = ACTIONS(255), + [anon_sym_case] = ACTIONS(257), + [anon_sym_default] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_do] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_return] = ACTIONS(267), + [anon_sym_break] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(271), + [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), [sym_number_literal] = ACTIONS(97), @@ -62469,12 +65564,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(119), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(277), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(123), - [anon_sym_co_return] = ACTIONS(133), - [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_throw] = ACTIONS(279), + [anon_sym_co_return] = ACTIONS(289), + [anon_sym_co_yield] = ACTIONS(291), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -62482,88 +65577,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [250] = { - [sym_attribute_declaration] = STATE(282), - [sym_compound_statement] = STATE(651), - [sym_attributed_statement] = STATE(651), - [sym_labeled_statement] = STATE(651), - [sym_expression_statement] = STATE(651), - [sym_if_statement] = STATE(651), - [sym_switch_statement] = STATE(651), - [sym_case_statement] = STATE(651), - [sym_while_statement] = STATE(651), - [sym_do_statement] = STATE(651), - [sym_for_statement] = STATE(651), - [sym_return_statement] = STATE(651), - [sym_break_statement] = STATE(651), - [sym_continue_statement] = STATE(651), - [sym_goto_statement] = STATE(651), - [sym__expression] = STATE(3605), - [sym_comma_expression] = STATE(6558), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(651), - [sym_co_return_statement] = STATE(651), - [sym_co_yield_statement] = STATE(651), - [sym_throw_statement] = STATE(651), - [sym_try_statement] = STATE(651), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(282), - [sym_identifier] = ACTIONS(1987), - [anon_sym_LPAREN2] = ACTIONS(960), + [260] = { + [sym_attribute_declaration] = STATE(179), + [sym_compound_statement] = STATE(6177), + [sym_attributed_statement] = STATE(6179), + [sym_labeled_statement] = STATE(6181), + [sym_expression_statement] = STATE(6196), + [sym_if_statement] = STATE(6198), + [sym_switch_statement] = STATE(6200), + [sym_case_statement] = STATE(6203), + [sym_while_statement] = STATE(6213), + [sym_do_statement] = STATE(6215), + [sym_for_statement] = STATE(6216), + [sym_return_statement] = STATE(6224), + [sym_break_statement] = STATE(6222), + [sym_continue_statement] = STATE(6281), + [sym_goto_statement] = STATE(6228), + [sym__expression] = STATE(3701), + [sym_comma_expression] = STATE(7176), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(6232), + [sym_co_return_statement] = STATE(6239), + [sym_co_yield_statement] = STATE(6245), + [sym_throw_statement] = STATE(6247), + [sym_try_statement] = STATE(6220), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(179), + [sym_identifier] = ACTIONS(1981), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1983), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_case] = ACTIONS(75), - [anon_sym_default] = ACTIONS(77), - [anon_sym_while] = ACTIONS(79), - [anon_sym_do] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), - [anon_sym_return] = ACTIONS(85), - [anon_sym_break] = ACTIONS(87), - [anon_sym_continue] = ACTIONS(89), - [anon_sym_goto] = ACTIONS(91), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(1987), + [anon_sym_switch] = ACTIONS(1989), + [anon_sym_case] = ACTIONS(1991), + [anon_sym_default] = ACTIONS(1993), + [anon_sym_while] = ACTIONS(1995), + [anon_sym_do] = ACTIONS(1997), + [anon_sym_for] = ACTIONS(1999), + [anon_sym_return] = ACTIONS(2001), + [anon_sym_break] = ACTIONS(2003), + [anon_sym_continue] = ACTIONS(2005), + [anon_sym_goto] = ACTIONS(2007), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -62582,12 +65679,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(119), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(2009), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(123), - [anon_sym_co_return] = ACTIONS(133), - [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_throw] = ACTIONS(2011), + [anon_sym_co_return] = ACTIONS(2013), + [anon_sym_co_yield] = ACTIONS(2015), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -62595,88 +65692,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [251] = { - [sym_attribute_declaration] = STATE(183), - [sym_compound_statement] = STATE(6048), - [sym_attributed_statement] = STATE(6048), - [sym_labeled_statement] = STATE(6048), - [sym_expression_statement] = STATE(6048), - [sym_if_statement] = STATE(6048), - [sym_switch_statement] = STATE(6048), - [sym_case_statement] = STATE(6048), - [sym_while_statement] = STATE(6048), - [sym_do_statement] = STATE(6048), - [sym_for_statement] = STATE(6048), - [sym_return_statement] = STATE(6048), - [sym_break_statement] = STATE(6048), - [sym_continue_statement] = STATE(6048), - [sym_goto_statement] = STATE(6048), - [sym__expression] = STATE(3728), - [sym_comma_expression] = STATE(6585), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(6048), - [sym_co_return_statement] = STATE(6048), - [sym_co_yield_statement] = STATE(6048), - [sym_throw_statement] = STATE(6048), - [sym_try_statement] = STATE(6048), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(183), - [sym_identifier] = ACTIONS(1841), - [anon_sym_LPAREN2] = ACTIONS(960), + [261] = { + [sym_attribute_declaration] = STATE(286), + [sym_compound_statement] = STATE(699), + [sym_attributed_statement] = STATE(702), + [sym_labeled_statement] = STATE(883), + [sym_expression_statement] = STATE(884), + [sym_if_statement] = STATE(902), + [sym_switch_statement] = STATE(831), + [sym_case_statement] = STATE(586), + [sym_while_statement] = STATE(892), + [sym_do_statement] = STATE(889), + [sym_for_statement] = STATE(888), + [sym_return_statement] = STATE(718), + [sym_break_statement] = STATE(711), + [sym_continue_statement] = STATE(709), + [sym_goto_statement] = STATE(707), + [sym__expression] = STATE(3758), + [sym_comma_expression] = STATE(7239), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(703), + [sym_co_return_statement] = STATE(691), + [sym_co_yield_statement] = STATE(690), + [sym_throw_statement] = STATE(689), + [sym_try_statement] = STATE(683), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(1843), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(33), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(1845), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(1847), - [anon_sym_switch] = ACTIONS(1849), - [anon_sym_case] = ACTIONS(1835), - [anon_sym_default] = ACTIONS(1837), - [anon_sym_while] = ACTIONS(1851), - [anon_sym_do] = ACTIONS(1853), - [anon_sym_for] = ACTIONS(1855), - [anon_sym_return] = ACTIONS(1857), - [anon_sym_break] = ACTIONS(1859), - [anon_sym_continue] = ACTIONS(1861), - [anon_sym_goto] = ACTIONS(1863), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(75), + [anon_sym_default] = ACTIONS(77), + [anon_sym_while] = ACTIONS(79), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -62695,12 +65794,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(1865), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(119), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(1867), - [anon_sym_co_return] = ACTIONS(1869), - [anon_sym_co_yield] = ACTIONS(1871), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -62708,88 +65807,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [252] = { - [sym_attribute_declaration] = STATE(183), - [sym_compound_statement] = STATE(5940), - [sym_attributed_statement] = STATE(5940), - [sym_labeled_statement] = STATE(5940), - [sym_expression_statement] = STATE(5940), - [sym_if_statement] = STATE(5940), - [sym_switch_statement] = STATE(5940), - [sym_case_statement] = STATE(5940), - [sym_while_statement] = STATE(5940), - [sym_do_statement] = STATE(5940), - [sym_for_statement] = STATE(5940), - [sym_return_statement] = STATE(5940), - [sym_break_statement] = STATE(5940), - [sym_continue_statement] = STATE(5940), - [sym_goto_statement] = STATE(5940), - [sym__expression] = STATE(3728), - [sym_comma_expression] = STATE(6585), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(5940), - [sym_co_return_statement] = STATE(5940), - [sym_co_yield_statement] = STATE(5940), - [sym_throw_statement] = STATE(5940), - [sym_try_statement] = STATE(5940), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(183), - [sym_identifier] = ACTIONS(1841), - [anon_sym_LPAREN2] = ACTIONS(960), + [262] = { + [sym_attribute_declaration] = STATE(302), + [sym_compound_statement] = STATE(660), + [sym_attributed_statement] = STATE(660), + [sym_labeled_statement] = STATE(660), + [sym_expression_statement] = STATE(660), + [sym_if_statement] = STATE(660), + [sym_switch_statement] = STATE(660), + [sym_case_statement] = STATE(660), + [sym_while_statement] = STATE(660), + [sym_do_statement] = STATE(660), + [sym_for_statement] = STATE(660), + [sym_return_statement] = STATE(660), + [sym_break_statement] = STATE(660), + [sym_continue_statement] = STATE(660), + [sym_goto_statement] = STATE(660), + [sym__expression] = STATE(3763), + [sym_comma_expression] = STATE(6972), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(660), + [sym_co_return_statement] = STATE(660), + [sym_co_yield_statement] = STATE(660), + [sym_throw_statement] = STATE(660), + [sym_try_statement] = STATE(660), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(302), + [sym_identifier] = ACTIONS(2187), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(1843), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(560), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(1845), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(1847), - [anon_sym_switch] = ACTIONS(1849), - [anon_sym_case] = ACTIONS(1835), - [anon_sym_default] = ACTIONS(1837), - [anon_sym_while] = ACTIONS(1851), - [anon_sym_do] = ACTIONS(1853), - [anon_sym_for] = ACTIONS(1855), - [anon_sym_return] = ACTIONS(1857), - [anon_sym_break] = ACTIONS(1859), - [anon_sym_continue] = ACTIONS(1861), - [anon_sym_goto] = ACTIONS(1863), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(566), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(568), + [anon_sym_switch] = ACTIONS(570), + [anon_sym_case] = ACTIONS(572), + [anon_sym_default] = ACTIONS(574), + [anon_sym_while] = ACTIONS(576), + [anon_sym_do] = ACTIONS(578), + [anon_sym_for] = ACTIONS(580), + [anon_sym_return] = ACTIONS(582), + [anon_sym_break] = ACTIONS(584), + [anon_sym_continue] = ACTIONS(586), + [anon_sym_goto] = ACTIONS(588), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -62808,12 +65909,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(1865), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(592), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(1867), - [anon_sym_co_return] = ACTIONS(1869), - [anon_sym_co_yield] = ACTIONS(1871), + [anon_sym_throw] = ACTIONS(594), + [anon_sym_co_return] = ACTIONS(604), + [anon_sym_co_yield] = ACTIONS(606), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -62821,88 +65922,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [253] = { - [sym_attribute_declaration] = STATE(162), - [sym_compound_statement] = STATE(396), - [sym_attributed_statement] = STATE(396), - [sym_labeled_statement] = STATE(396), - [sym_expression_statement] = STATE(396), - [sym_if_statement] = STATE(396), - [sym_switch_statement] = STATE(396), - [sym_case_statement] = STATE(396), - [sym_while_statement] = STATE(396), - [sym_do_statement] = STATE(396), - [sym_for_statement] = STATE(396), - [sym_return_statement] = STATE(396), - [sym_break_statement] = STATE(396), - [sym_continue_statement] = STATE(396), - [sym_goto_statement] = STATE(396), - [sym__expression] = STATE(3579), - [sym_comma_expression] = STATE(6778), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(396), - [sym_co_return_statement] = STATE(396), - [sym_co_yield_statement] = STATE(396), - [sym_throw_statement] = STATE(396), - [sym_try_statement] = STATE(396), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(162), - [sym_identifier] = ACTIONS(1839), - [anon_sym_LPAREN2] = ACTIONS(960), + [263] = { + [sym_attribute_declaration] = STATE(302), + [sym_compound_statement] = STATE(659), + [sym_attributed_statement] = STATE(659), + [sym_labeled_statement] = STATE(659), + [sym_expression_statement] = STATE(659), + [sym_if_statement] = STATE(659), + [sym_switch_statement] = STATE(659), + [sym_case_statement] = STATE(659), + [sym_while_statement] = STATE(659), + [sym_do_statement] = STATE(659), + [sym_for_statement] = STATE(659), + [sym_return_statement] = STATE(659), + [sym_break_statement] = STATE(659), + [sym_continue_statement] = STATE(659), + [sym_goto_statement] = STATE(659), + [sym__expression] = STATE(3763), + [sym_comma_expression] = STATE(6972), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(659), + [sym_co_return_statement] = STATE(659), + [sym_co_yield_statement] = STATE(659), + [sym_throw_statement] = STATE(659), + [sym_try_statement] = STATE(659), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(302), + [sym_identifier] = ACTIONS(2187), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(560), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(253), - [anon_sym_switch] = ACTIONS(255), - [anon_sym_case] = ACTIONS(257), - [anon_sym_default] = ACTIONS(259), - [anon_sym_while] = ACTIONS(261), - [anon_sym_do] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_return] = ACTIONS(267), - [anon_sym_break] = ACTIONS(269), - [anon_sym_continue] = ACTIONS(271), - [anon_sym_goto] = ACTIONS(273), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(566), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(568), + [anon_sym_switch] = ACTIONS(570), + [anon_sym_case] = ACTIONS(572), + [anon_sym_default] = ACTIONS(574), + [anon_sym_while] = ACTIONS(576), + [anon_sym_do] = ACTIONS(578), + [anon_sym_for] = ACTIONS(580), + [anon_sym_return] = ACTIONS(582), + [anon_sym_break] = ACTIONS(584), + [anon_sym_continue] = ACTIONS(586), + [anon_sym_goto] = ACTIONS(588), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -62921,12 +66024,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(277), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(592), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(279), - [anon_sym_co_return] = ACTIONS(289), - [anon_sym_co_yield] = ACTIONS(291), + [anon_sym_throw] = ACTIONS(594), + [anon_sym_co_return] = ACTIONS(604), + [anon_sym_co_yield] = ACTIONS(606), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -62934,88 +66037,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [254] = { - [sym_attribute_declaration] = STATE(162), - [sym_compound_statement] = STATE(395), - [sym_attributed_statement] = STATE(393), - [sym_labeled_statement] = STATE(392), - [sym_expression_statement] = STATE(390), - [sym_if_statement] = STATE(389), - [sym_switch_statement] = STATE(388), - [sym_case_statement] = STATE(387), - [sym_while_statement] = STATE(386), - [sym_do_statement] = STATE(385), - [sym_for_statement] = STATE(383), - [sym_return_statement] = STATE(382), - [sym_break_statement] = STATE(381), - [sym_continue_statement] = STATE(380), - [sym_goto_statement] = STATE(379), - [sym__expression] = STATE(3579), - [sym_comma_expression] = STATE(6778), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(378), - [sym_co_return_statement] = STATE(376), - [sym_co_yield_statement] = STATE(375), - [sym_throw_statement] = STATE(374), - [sym_try_statement] = STATE(370), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(162), - [sym_identifier] = ACTIONS(1839), - [anon_sym_LPAREN2] = ACTIONS(960), + [264] = { + [sym_attribute_declaration] = STATE(302), + [sym_compound_statement] = STATE(621), + [sym_attributed_statement] = STATE(621), + [sym_labeled_statement] = STATE(621), + [sym_expression_statement] = STATE(621), + [sym_if_statement] = STATE(621), + [sym_switch_statement] = STATE(621), + [sym_case_statement] = STATE(621), + [sym_while_statement] = STATE(621), + [sym_do_statement] = STATE(621), + [sym_for_statement] = STATE(621), + [sym_return_statement] = STATE(621), + [sym_break_statement] = STATE(621), + [sym_continue_statement] = STATE(621), + [sym_goto_statement] = STATE(621), + [sym__expression] = STATE(3763), + [sym_comma_expression] = STATE(6972), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(621), + [sym_co_return_statement] = STATE(621), + [sym_co_yield_statement] = STATE(621), + [sym_throw_statement] = STATE(621), + [sym_try_statement] = STATE(621), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(302), + [sym_identifier] = ACTIONS(2187), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(560), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(253), - [anon_sym_switch] = ACTIONS(255), - [anon_sym_case] = ACTIONS(257), - [anon_sym_default] = ACTIONS(259), - [anon_sym_while] = ACTIONS(261), - [anon_sym_do] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_return] = ACTIONS(267), - [anon_sym_break] = ACTIONS(269), - [anon_sym_continue] = ACTIONS(271), - [anon_sym_goto] = ACTIONS(273), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(566), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(568), + [anon_sym_switch] = ACTIONS(570), + [anon_sym_case] = ACTIONS(572), + [anon_sym_default] = ACTIONS(574), + [anon_sym_while] = ACTIONS(576), + [anon_sym_do] = ACTIONS(578), + [anon_sym_for] = ACTIONS(580), + [anon_sym_return] = ACTIONS(582), + [anon_sym_break] = ACTIONS(584), + [anon_sym_continue] = ACTIONS(586), + [anon_sym_goto] = ACTIONS(588), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -63034,12 +66139,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(277), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(592), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(279), - [anon_sym_co_return] = ACTIONS(289), - [anon_sym_co_yield] = ACTIONS(291), + [anon_sym_throw] = ACTIONS(594), + [anon_sym_co_return] = ACTIONS(604), + [anon_sym_co_yield] = ACTIONS(606), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -63047,88 +66152,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [255] = { - [sym_attribute_declaration] = STATE(162), - [sym_compound_statement] = STATE(369), - [sym_attributed_statement] = STATE(366), - [sym_labeled_statement] = STATE(360), - [sym_expression_statement] = STATE(348), - [sym_if_statement] = STATE(347), - [sym_switch_statement] = STATE(346), - [sym_case_statement] = STATE(341), - [sym_while_statement] = STATE(340), - [sym_do_statement] = STATE(337), - [sym_for_statement] = STATE(432), - [sym_return_statement] = STATE(457), - [sym_break_statement] = STATE(429), - [sym_continue_statement] = STATE(372), - [sym_goto_statement] = STATE(334), - [sym__expression] = STATE(3579), - [sym_comma_expression] = STATE(6778), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(364), - [sym_co_return_statement] = STATE(363), - [sym_co_yield_statement] = STATE(350), - [sym_throw_statement] = STATE(419), - [sym_try_statement] = STATE(418), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(162), - [sym_identifier] = ACTIONS(1839), - [anon_sym_LPAREN2] = ACTIONS(960), + [265] = { + [sym_attribute_declaration] = STATE(302), + [sym_compound_statement] = STATE(611), + [sym_attributed_statement] = STATE(612), + [sym_labeled_statement] = STATE(613), + [sym_expression_statement] = STATE(615), + [sym_if_statement] = STATE(616), + [sym_switch_statement] = STATE(617), + [sym_case_statement] = STATE(618), + [sym_while_statement] = STATE(620), + [sym_do_statement] = STATE(622), + [sym_for_statement] = STATE(623), + [sym_return_statement] = STATE(629), + [sym_break_statement] = STATE(630), + [sym_continue_statement] = STATE(634), + [sym_goto_statement] = STATE(635), + [sym__expression] = STATE(3763), + [sym_comma_expression] = STATE(6972), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(641), + [sym_co_return_statement] = STATE(642), + [sym_co_yield_statement] = STATE(645), + [sym_throw_statement] = STATE(578), + [sym_try_statement] = STATE(658), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(302), + [sym_identifier] = ACTIONS(2187), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(560), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(253), - [anon_sym_switch] = ACTIONS(255), - [anon_sym_case] = ACTIONS(257), - [anon_sym_default] = ACTIONS(259), - [anon_sym_while] = ACTIONS(261), - [anon_sym_do] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_return] = ACTIONS(267), - [anon_sym_break] = ACTIONS(269), - [anon_sym_continue] = ACTIONS(271), - [anon_sym_goto] = ACTIONS(273), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(566), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(568), + [anon_sym_switch] = ACTIONS(570), + [anon_sym_case] = ACTIONS(572), + [anon_sym_default] = ACTIONS(574), + [anon_sym_while] = ACTIONS(576), + [anon_sym_do] = ACTIONS(578), + [anon_sym_for] = ACTIONS(580), + [anon_sym_return] = ACTIONS(582), + [anon_sym_break] = ACTIONS(584), + [anon_sym_continue] = ACTIONS(586), + [anon_sym_goto] = ACTIONS(588), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -63147,12 +66254,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(277), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(592), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(279), - [anon_sym_co_return] = ACTIONS(289), - [anon_sym_co_yield] = ACTIONS(291), + [anon_sym_throw] = ACTIONS(594), + [anon_sym_co_return] = ACTIONS(604), + [anon_sym_co_yield] = ACTIONS(606), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -63160,88 +66267,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [256] = { - [sym_attribute_declaration] = STATE(282), - [sym_compound_statement] = STATE(650), - [sym_attributed_statement] = STATE(650), - [sym_labeled_statement] = STATE(650), - [sym_expression_statement] = STATE(650), - [sym_if_statement] = STATE(650), - [sym_switch_statement] = STATE(650), - [sym_case_statement] = STATE(650), - [sym_while_statement] = STATE(650), - [sym_do_statement] = STATE(650), - [sym_for_statement] = STATE(650), - [sym_return_statement] = STATE(650), - [sym_break_statement] = STATE(650), - [sym_continue_statement] = STATE(650), - [sym_goto_statement] = STATE(650), - [sym__expression] = STATE(3605), - [sym_comma_expression] = STATE(6558), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(650), - [sym_co_return_statement] = STATE(650), - [sym_co_yield_statement] = STATE(650), - [sym_throw_statement] = STATE(650), - [sym_try_statement] = STATE(650), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(282), - [sym_identifier] = ACTIONS(1987), - [anon_sym_LPAREN2] = ACTIONS(960), + [266] = { + [sym_attribute_declaration] = STATE(302), + [sym_compound_statement] = STATE(549), + [sym_attributed_statement] = STATE(587), + [sym_labeled_statement] = STATE(588), + [sym_expression_statement] = STATE(589), + [sym_if_statement] = STATE(591), + [sym_switch_statement] = STATE(592), + [sym_case_statement] = STATE(593), + [sym_while_statement] = STATE(594), + [sym_do_statement] = STATE(595), + [sym_for_statement] = STATE(597), + [sym_return_statement] = STATE(598), + [sym_break_statement] = STATE(602), + [sym_continue_statement] = STATE(604), + [sym_goto_statement] = STATE(605), + [sym__expression] = STATE(3763), + [sym_comma_expression] = STATE(6972), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(606), + [sym_co_return_statement] = STATE(607), + [sym_co_yield_statement] = STATE(608), + [sym_throw_statement] = STATE(609), + [sym_try_statement] = STATE(610), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(302), + [sym_identifier] = ACTIONS(2187), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(560), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_case] = ACTIONS(75), - [anon_sym_default] = ACTIONS(77), - [anon_sym_while] = ACTIONS(79), - [anon_sym_do] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), - [anon_sym_return] = ACTIONS(85), - [anon_sym_break] = ACTIONS(87), - [anon_sym_continue] = ACTIONS(89), - [anon_sym_goto] = ACTIONS(91), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(566), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(568), + [anon_sym_switch] = ACTIONS(570), + [anon_sym_case] = ACTIONS(572), + [anon_sym_default] = ACTIONS(574), + [anon_sym_while] = ACTIONS(576), + [anon_sym_do] = ACTIONS(578), + [anon_sym_for] = ACTIONS(580), + [anon_sym_return] = ACTIONS(582), + [anon_sym_break] = ACTIONS(584), + [anon_sym_continue] = ACTIONS(586), + [anon_sym_goto] = ACTIONS(588), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -63260,12 +66369,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(119), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(592), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(123), - [anon_sym_co_return] = ACTIONS(133), - [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_throw] = ACTIONS(594), + [anon_sym_co_return] = ACTIONS(604), + [anon_sym_co_yield] = ACTIONS(606), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -63273,88 +66382,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [257] = { - [sym_attribute_declaration] = STATE(162), - [sym_compound_statement] = STATE(342), - [sym_attributed_statement] = STATE(342), - [sym_labeled_statement] = STATE(342), - [sym_expression_statement] = STATE(342), - [sym_if_statement] = STATE(342), - [sym_switch_statement] = STATE(342), - [sym_case_statement] = STATE(342), - [sym_while_statement] = STATE(342), - [sym_do_statement] = STATE(342), - [sym_for_statement] = STATE(342), - [sym_return_statement] = STATE(342), - [sym_break_statement] = STATE(342), - [sym_continue_statement] = STATE(342), - [sym_goto_statement] = STATE(342), - [sym__expression] = STATE(3579), - [sym_comma_expression] = STATE(6778), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(342), - [sym_co_return_statement] = STATE(342), - [sym_co_yield_statement] = STATE(342), - [sym_throw_statement] = STATE(342), - [sym_try_statement] = STATE(342), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(162), - [sym_identifier] = ACTIONS(1839), - [anon_sym_LPAREN2] = ACTIONS(960), + [267] = { + [sym_attribute_declaration] = STATE(302), + [sym_compound_statement] = STATE(585), + [sym_attributed_statement] = STATE(585), + [sym_labeled_statement] = STATE(585), + [sym_expression_statement] = STATE(585), + [sym_if_statement] = STATE(585), + [sym_switch_statement] = STATE(585), + [sym_case_statement] = STATE(585), + [sym_while_statement] = STATE(585), + [sym_do_statement] = STATE(585), + [sym_for_statement] = STATE(585), + [sym_return_statement] = STATE(585), + [sym_break_statement] = STATE(585), + [sym_continue_statement] = STATE(585), + [sym_goto_statement] = STATE(585), + [sym__expression] = STATE(3763), + [sym_comma_expression] = STATE(6972), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(585), + [sym_co_return_statement] = STATE(585), + [sym_co_yield_statement] = STATE(585), + [sym_throw_statement] = STATE(585), + [sym_try_statement] = STATE(585), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(302), + [sym_identifier] = ACTIONS(2187), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(245), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(560), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(251), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(253), - [anon_sym_switch] = ACTIONS(255), - [anon_sym_case] = ACTIONS(257), - [anon_sym_default] = ACTIONS(259), - [anon_sym_while] = ACTIONS(261), - [anon_sym_do] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_return] = ACTIONS(267), - [anon_sym_break] = ACTIONS(269), - [anon_sym_continue] = ACTIONS(271), - [anon_sym_goto] = ACTIONS(273), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(566), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(568), + [anon_sym_switch] = ACTIONS(570), + [anon_sym_case] = ACTIONS(572), + [anon_sym_default] = ACTIONS(574), + [anon_sym_while] = ACTIONS(576), + [anon_sym_do] = ACTIONS(578), + [anon_sym_for] = ACTIONS(580), + [anon_sym_return] = ACTIONS(582), + [anon_sym_break] = ACTIONS(584), + [anon_sym_continue] = ACTIONS(586), + [anon_sym_goto] = ACTIONS(588), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -63373,12 +66484,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(277), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(592), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(279), - [anon_sym_co_return] = ACTIONS(289), - [anon_sym_co_yield] = ACTIONS(291), + [anon_sym_throw] = ACTIONS(594), + [anon_sym_co_return] = ACTIONS(604), + [anon_sym_co_yield] = ACTIONS(606), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -63386,77 +66497,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [258] = { - [sym_attribute_declaration] = STATE(282), - [sym_compound_statement] = STATE(649), - [sym_attributed_statement] = STATE(649), - [sym_labeled_statement] = STATE(649), - [sym_expression_statement] = STATE(649), - [sym_if_statement] = STATE(649), - [sym_switch_statement] = STATE(649), - [sym_case_statement] = STATE(649), - [sym_while_statement] = STATE(649), - [sym_do_statement] = STATE(649), - [sym_for_statement] = STATE(649), - [sym_return_statement] = STATE(649), - [sym_break_statement] = STATE(649), - [sym_continue_statement] = STATE(649), - [sym_goto_statement] = STATE(649), - [sym__expression] = STATE(3605), - [sym_comma_expression] = STATE(6558), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(649), - [sym_co_return_statement] = STATE(649), - [sym_co_yield_statement] = STATE(649), - [sym_throw_statement] = STATE(649), - [sym_try_statement] = STATE(649), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(282), - [sym_identifier] = ACTIONS(1987), - [anon_sym_LPAREN2] = ACTIONS(960), + [268] = { + [sym_attribute_declaration] = STATE(286), + [sym_compound_statement] = STATE(850), + [sym_attributed_statement] = STATE(850), + [sym_labeled_statement] = STATE(850), + [sym_expression_statement] = STATE(850), + [sym_if_statement] = STATE(850), + [sym_switch_statement] = STATE(850), + [sym_case_statement] = STATE(850), + [sym_while_statement] = STATE(850), + [sym_do_statement] = STATE(850), + [sym_for_statement] = STATE(850), + [sym_return_statement] = STATE(850), + [sym_break_statement] = STATE(850), + [sym_continue_statement] = STATE(850), + [sym_goto_statement] = STATE(850), + [sym__expression] = STATE(3758), + [sym_comma_expression] = STATE(7239), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(850), + [sym_co_return_statement] = STATE(850), + [sym_co_yield_statement] = STATE(850), + [sym_throw_statement] = STATE(850), + [sym_try_statement] = STATE(850), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), [anon_sym_SEMI] = ACTIONS(33), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), [anon_sym_if] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), [anon_sym_case] = ACTIONS(75), @@ -63468,6 +66579,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(87), [anon_sym_continue] = ACTIONS(89), [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -63486,7 +66599,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), + [anon_sym_template] = ACTIONS(976), [anon_sym_try] = ACTIONS(119), [anon_sym_delete] = ACTIONS(121), [anon_sym_throw] = ACTIONS(123), @@ -63499,88 +66612,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [259] = { - [sym_attribute_declaration] = STATE(303), - [sym_compound_statement] = STATE(715), - [sym_attributed_statement] = STATE(716), - [sym_labeled_statement] = STATE(717), - [sym_expression_statement] = STATE(718), - [sym_if_statement] = STATE(719), - [sym_switch_statement] = STATE(720), - [sym_case_statement] = STATE(721), - [sym_while_statement] = STATE(722), - [sym_do_statement] = STATE(723), - [sym_for_statement] = STATE(724), - [sym_return_statement] = STATE(725), - [sym_break_statement] = STATE(727), - [sym_continue_statement] = STATE(728), - [sym_goto_statement] = STATE(729), - [sym__expression] = STATE(3612), - [sym_comma_expression] = STATE(6539), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(730), - [sym_co_return_statement] = STATE(731), - [sym_co_yield_statement] = STATE(732), - [sym_throw_statement] = STATE(734), - [sym_try_statement] = STATE(535), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(303), - [sym_identifier] = ACTIONS(2093), - [anon_sym_LPAREN2] = ACTIONS(960), + [269] = { + [sym_attribute_declaration] = STATE(191), + [sym_compound_statement] = STATE(853), + [sym_attributed_statement] = STATE(853), + [sym_labeled_statement] = STATE(853), + [sym_expression_statement] = STATE(853), + [sym_if_statement] = STATE(853), + [sym_switch_statement] = STATE(853), + [sym_case_statement] = STATE(853), + [sym_while_statement] = STATE(853), + [sym_do_statement] = STATE(853), + [sym_for_statement] = STATE(853), + [sym_return_statement] = STATE(853), + [sym_break_statement] = STATE(853), + [sym_continue_statement] = STATE(853), + [sym_goto_statement] = STATE(853), + [sym__expression] = STATE(3704), + [sym_comma_expression] = STATE(6857), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(853), + [sym_co_return_statement] = STATE(853), + [sym_co_yield_statement] = STATE(853), + [sym_throw_statement] = STATE(853), + [sym_try_statement] = STATE(853), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [sym_identifier] = ACTIONS(2019), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(594), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(159), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(600), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(602), - [anon_sym_switch] = ACTIONS(604), - [anon_sym_case] = ACTIONS(606), - [anon_sym_default] = ACTIONS(608), - [anon_sym_while] = ACTIONS(610), - [anon_sym_do] = ACTIONS(612), - [anon_sym_for] = ACTIONS(614), - [anon_sym_return] = ACTIONS(616), - [anon_sym_break] = ACTIONS(618), - [anon_sym_continue] = ACTIONS(620), - [anon_sym_goto] = ACTIONS(622), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -63599,12 +66714,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(626), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(197), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(628), - [anon_sym_co_return] = ACTIONS(638), - [anon_sym_co_yield] = ACTIONS(640), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -63612,88 +66727,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [260] = { - [sym_attribute_declaration] = STATE(303), - [sym_compound_statement] = STATE(691), - [sym_attributed_statement] = STATE(692), - [sym_labeled_statement] = STATE(693), - [sym_expression_statement] = STATE(694), - [sym_if_statement] = STATE(695), - [sym_switch_statement] = STATE(698), - [sym_case_statement] = STATE(699), - [sym_while_statement] = STATE(702), - [sym_do_statement] = STATE(703), - [sym_for_statement] = STATE(705), - [sym_return_statement] = STATE(706), - [sym_break_statement] = STATE(707), - [sym_continue_statement] = STATE(708), - [sym_goto_statement] = STATE(709), - [sym__expression] = STATE(3612), - [sym_comma_expression] = STATE(6539), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(710), - [sym_co_return_statement] = STATE(711), - [sym_co_yield_statement] = STATE(712), - [sym_throw_statement] = STATE(713), - [sym_try_statement] = STATE(714), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(303), - [sym_identifier] = ACTIONS(2093), - [anon_sym_LPAREN2] = ACTIONS(960), + [270] = { + [sym_attribute_declaration] = STATE(302), + [sym_compound_statement] = STATE(584), + [sym_attributed_statement] = STATE(584), + [sym_labeled_statement] = STATE(584), + [sym_expression_statement] = STATE(584), + [sym_if_statement] = STATE(584), + [sym_switch_statement] = STATE(584), + [sym_case_statement] = STATE(584), + [sym_while_statement] = STATE(584), + [sym_do_statement] = STATE(584), + [sym_for_statement] = STATE(584), + [sym_return_statement] = STATE(584), + [sym_break_statement] = STATE(584), + [sym_continue_statement] = STATE(584), + [sym_goto_statement] = STATE(584), + [sym__expression] = STATE(3763), + [sym_comma_expression] = STATE(6972), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(584), + [sym_co_return_statement] = STATE(584), + [sym_co_yield_statement] = STATE(584), + [sym_throw_statement] = STATE(584), + [sym_try_statement] = STATE(584), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(302), + [sym_identifier] = ACTIONS(2187), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(594), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(560), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(600), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(602), - [anon_sym_switch] = ACTIONS(604), - [anon_sym_case] = ACTIONS(606), - [anon_sym_default] = ACTIONS(608), - [anon_sym_while] = ACTIONS(610), - [anon_sym_do] = ACTIONS(612), - [anon_sym_for] = ACTIONS(614), - [anon_sym_return] = ACTIONS(616), - [anon_sym_break] = ACTIONS(618), - [anon_sym_continue] = ACTIONS(620), - [anon_sym_goto] = ACTIONS(622), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(566), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(568), + [anon_sym_switch] = ACTIONS(570), + [anon_sym_case] = ACTIONS(572), + [anon_sym_default] = ACTIONS(574), + [anon_sym_while] = ACTIONS(576), + [anon_sym_do] = ACTIONS(578), + [anon_sym_for] = ACTIONS(580), + [anon_sym_return] = ACTIONS(582), + [anon_sym_break] = ACTIONS(584), + [anon_sym_continue] = ACTIONS(586), + [anon_sym_goto] = ACTIONS(588), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -63712,12 +66829,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(626), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(592), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(628), - [anon_sym_co_return] = ACTIONS(638), - [anon_sym_co_yield] = ACTIONS(640), + [anon_sym_throw] = ACTIONS(594), + [anon_sym_co_return] = ACTIONS(604), + [anon_sym_co_yield] = ACTIONS(606), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -63725,88 +66842,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [261] = { - [sym_attribute_declaration] = STATE(303), - [sym_compound_statement] = STATE(690), - [sym_attributed_statement] = STATE(690), - [sym_labeled_statement] = STATE(690), - [sym_expression_statement] = STATE(690), - [sym_if_statement] = STATE(690), - [sym_switch_statement] = STATE(690), - [sym_case_statement] = STATE(690), - [sym_while_statement] = STATE(690), - [sym_do_statement] = STATE(690), - [sym_for_statement] = STATE(690), - [sym_return_statement] = STATE(690), - [sym_break_statement] = STATE(690), - [sym_continue_statement] = STATE(690), - [sym_goto_statement] = STATE(690), - [sym__expression] = STATE(3612), - [sym_comma_expression] = STATE(6539), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(690), - [sym_co_return_statement] = STATE(690), - [sym_co_yield_statement] = STATE(690), - [sym_throw_statement] = STATE(690), - [sym_try_statement] = STATE(690), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(303), - [sym_identifier] = ACTIONS(2093), - [anon_sym_LPAREN2] = ACTIONS(960), + [271] = { + [sym_attribute_declaration] = STATE(179), + [sym_compound_statement] = STATE(6974), + [sym_attributed_statement] = STATE(6974), + [sym_labeled_statement] = STATE(6974), + [sym_expression_statement] = STATE(6974), + [sym_if_statement] = STATE(6974), + [sym_switch_statement] = STATE(6974), + [sym_case_statement] = STATE(6974), + [sym_while_statement] = STATE(6974), + [sym_do_statement] = STATE(6974), + [sym_for_statement] = STATE(6974), + [sym_return_statement] = STATE(6974), + [sym_break_statement] = STATE(6974), + [sym_continue_statement] = STATE(6974), + [sym_goto_statement] = STATE(6974), + [sym__expression] = STATE(3701), + [sym_comma_expression] = STATE(7176), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(6974), + [sym_co_return_statement] = STATE(6974), + [sym_co_yield_statement] = STATE(6974), + [sym_throw_statement] = STATE(6974), + [sym_try_statement] = STATE(6974), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(179), + [sym_identifier] = ACTIONS(1981), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(594), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1983), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(600), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(602), - [anon_sym_switch] = ACTIONS(604), - [anon_sym_case] = ACTIONS(606), - [anon_sym_default] = ACTIONS(608), - [anon_sym_while] = ACTIONS(610), - [anon_sym_do] = ACTIONS(612), - [anon_sym_for] = ACTIONS(614), - [anon_sym_return] = ACTIONS(616), - [anon_sym_break] = ACTIONS(618), - [anon_sym_continue] = ACTIONS(620), - [anon_sym_goto] = ACTIONS(622), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(1987), + [anon_sym_switch] = ACTIONS(1989), + [anon_sym_case] = ACTIONS(1991), + [anon_sym_default] = ACTIONS(1993), + [anon_sym_while] = ACTIONS(1995), + [anon_sym_do] = ACTIONS(1997), + [anon_sym_for] = ACTIONS(1999), + [anon_sym_return] = ACTIONS(2001), + [anon_sym_break] = ACTIONS(2003), + [anon_sym_continue] = ACTIONS(2005), + [anon_sym_goto] = ACTIONS(2007), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -63825,12 +66944,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(626), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(2009), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(628), - [anon_sym_co_return] = ACTIONS(638), - [anon_sym_co_yield] = ACTIONS(640), + [anon_sym_throw] = ACTIONS(2011), + [anon_sym_co_return] = ACTIONS(2013), + [anon_sym_co_yield] = ACTIONS(2015), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -63838,77 +66957,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [262] = { - [sym_attribute_declaration] = STATE(282), - [sym_compound_statement] = STATE(638), - [sym_attributed_statement] = STATE(638), - [sym_labeled_statement] = STATE(638), - [sym_expression_statement] = STATE(638), - [sym_if_statement] = STATE(638), - [sym_switch_statement] = STATE(638), - [sym_case_statement] = STATE(638), - [sym_while_statement] = STATE(638), - [sym_do_statement] = STATE(638), - [sym_for_statement] = STATE(638), - [sym_return_statement] = STATE(638), - [sym_break_statement] = STATE(638), - [sym_continue_statement] = STATE(638), - [sym_goto_statement] = STATE(638), - [sym__expression] = STATE(3605), - [sym_comma_expression] = STATE(6558), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(638), - [sym_co_return_statement] = STATE(638), - [sym_co_yield_statement] = STATE(638), - [sym_throw_statement] = STATE(638), - [sym_try_statement] = STATE(638), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(282), - [sym_identifier] = ACTIONS(1987), - [anon_sym_LPAREN2] = ACTIONS(960), + [272] = { + [sym_attribute_declaration] = STATE(286), + [sym_compound_statement] = STATE(786), + [sym_attributed_statement] = STATE(786), + [sym_labeled_statement] = STATE(786), + [sym_expression_statement] = STATE(786), + [sym_if_statement] = STATE(786), + [sym_switch_statement] = STATE(786), + [sym_case_statement] = STATE(786), + [sym_while_statement] = STATE(786), + [sym_do_statement] = STATE(786), + [sym_for_statement] = STATE(786), + [sym_return_statement] = STATE(786), + [sym_break_statement] = STATE(786), + [sym_continue_statement] = STATE(786), + [sym_goto_statement] = STATE(786), + [sym__expression] = STATE(3758), + [sym_comma_expression] = STATE(7239), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(786), + [sym_co_return_statement] = STATE(786), + [sym_co_yield_statement] = STATE(786), + [sym_throw_statement] = STATE(786), + [sym_try_statement] = STATE(786), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), [anon_sym_SEMI] = ACTIONS(33), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), [anon_sym_if] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), [anon_sym_case] = ACTIONS(75), @@ -63920,6 +67039,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(87), [anon_sym_continue] = ACTIONS(89), [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -63938,7 +67059,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), + [anon_sym_template] = ACTIONS(976), [anon_sym_try] = ACTIONS(119), [anon_sym_delete] = ACTIONS(121), [anon_sym_throw] = ACTIONS(123), @@ -63951,88 +67072,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [263] = { - [sym_attribute_declaration] = STATE(282), - [sym_compound_statement] = STATE(637), - [sym_attributed_statement] = STATE(637), - [sym_labeled_statement] = STATE(637), - [sym_expression_statement] = STATE(637), - [sym_if_statement] = STATE(637), - [sym_switch_statement] = STATE(637), - [sym_case_statement] = STATE(637), - [sym_while_statement] = STATE(637), - [sym_do_statement] = STATE(637), - [sym_for_statement] = STATE(637), - [sym_return_statement] = STATE(637), - [sym_break_statement] = STATE(637), - [sym_continue_statement] = STATE(637), - [sym_goto_statement] = STATE(637), - [sym__expression] = STATE(3605), - [sym_comma_expression] = STATE(6558), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(637), - [sym_co_return_statement] = STATE(637), - [sym_co_yield_statement] = STATE(637), - [sym_throw_statement] = STATE(637), - [sym_try_statement] = STATE(637), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(282), - [sym_identifier] = ACTIONS(1987), - [anon_sym_LPAREN2] = ACTIONS(960), + [273] = { + [sym_attribute_declaration] = STATE(302), + [sym_compound_statement] = STATE(583), + [sym_attributed_statement] = STATE(583), + [sym_labeled_statement] = STATE(583), + [sym_expression_statement] = STATE(583), + [sym_if_statement] = STATE(583), + [sym_switch_statement] = STATE(583), + [sym_case_statement] = STATE(583), + [sym_while_statement] = STATE(583), + [sym_do_statement] = STATE(583), + [sym_for_statement] = STATE(583), + [sym_return_statement] = STATE(583), + [sym_break_statement] = STATE(583), + [sym_continue_statement] = STATE(583), + [sym_goto_statement] = STATE(583), + [sym__expression] = STATE(3763), + [sym_comma_expression] = STATE(6972), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(583), + [sym_co_return_statement] = STATE(583), + [sym_co_yield_statement] = STATE(583), + [sym_throw_statement] = STATE(583), + [sym_try_statement] = STATE(583), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(302), + [sym_identifier] = ACTIONS(2187), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(560), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_case] = ACTIONS(75), - [anon_sym_default] = ACTIONS(77), - [anon_sym_while] = ACTIONS(79), - [anon_sym_do] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), - [anon_sym_return] = ACTIONS(85), - [anon_sym_break] = ACTIONS(87), - [anon_sym_continue] = ACTIONS(89), - [anon_sym_goto] = ACTIONS(91), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(566), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(568), + [anon_sym_switch] = ACTIONS(570), + [anon_sym_case] = ACTIONS(572), + [anon_sym_default] = ACTIONS(574), + [anon_sym_while] = ACTIONS(576), + [anon_sym_do] = ACTIONS(578), + [anon_sym_for] = ACTIONS(580), + [anon_sym_return] = ACTIONS(582), + [anon_sym_break] = ACTIONS(584), + [anon_sym_continue] = ACTIONS(586), + [anon_sym_goto] = ACTIONS(588), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -64051,12 +67174,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(119), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(592), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(123), - [anon_sym_co_return] = ACTIONS(133), - [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_throw] = ACTIONS(594), + [anon_sym_co_return] = ACTIONS(604), + [anon_sym_co_yield] = ACTIONS(606), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -64064,88 +67187,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [264] = { - [sym_attribute_declaration] = STATE(282), - [sym_compound_statement] = STATE(635), - [sym_attributed_statement] = STATE(634), - [sym_labeled_statement] = STATE(633), - [sym_expression_statement] = STATE(632), - [sym_if_statement] = STATE(631), - [sym_switch_statement] = STATE(630), - [sym_case_statement] = STATE(629), - [sym_while_statement] = STATE(628), - [sym_do_statement] = STATE(627), - [sym_for_statement] = STATE(626), - [sym_return_statement] = STATE(625), - [sym_break_statement] = STATE(624), - [sym_continue_statement] = STATE(623), - [sym_goto_statement] = STATE(622), - [sym__expression] = STATE(3605), - [sym_comma_expression] = STATE(6558), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(621), - [sym_co_return_statement] = STATE(620), - [sym_co_yield_statement] = STATE(619), - [sym_throw_statement] = STATE(618), - [sym_try_statement] = STATE(617), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(282), - [sym_identifier] = ACTIONS(1987), - [anon_sym_LPAREN2] = ACTIONS(960), + [274] = { + [sym_attribute_declaration] = STATE(302), + [sym_compound_statement] = STATE(582), + [sym_attributed_statement] = STATE(582), + [sym_labeled_statement] = STATE(582), + [sym_expression_statement] = STATE(582), + [sym_if_statement] = STATE(582), + [sym_switch_statement] = STATE(582), + [sym_case_statement] = STATE(582), + [sym_while_statement] = STATE(582), + [sym_do_statement] = STATE(582), + [sym_for_statement] = STATE(582), + [sym_return_statement] = STATE(582), + [sym_break_statement] = STATE(582), + [sym_continue_statement] = STATE(582), + [sym_goto_statement] = STATE(582), + [sym__expression] = STATE(3763), + [sym_comma_expression] = STATE(6972), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(582), + [sym_co_return_statement] = STATE(582), + [sym_co_yield_statement] = STATE(582), + [sym_throw_statement] = STATE(582), + [sym_try_statement] = STATE(582), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(302), + [sym_identifier] = ACTIONS(2187), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(560), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_case] = ACTIONS(75), - [anon_sym_default] = ACTIONS(77), - [anon_sym_while] = ACTIONS(79), - [anon_sym_do] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), - [anon_sym_return] = ACTIONS(85), - [anon_sym_break] = ACTIONS(87), - [anon_sym_continue] = ACTIONS(89), - [anon_sym_goto] = ACTIONS(91), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(566), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(568), + [anon_sym_switch] = ACTIONS(570), + [anon_sym_case] = ACTIONS(572), + [anon_sym_default] = ACTIONS(574), + [anon_sym_while] = ACTIONS(576), + [anon_sym_do] = ACTIONS(578), + [anon_sym_for] = ACTIONS(580), + [anon_sym_return] = ACTIONS(582), + [anon_sym_break] = ACTIONS(584), + [anon_sym_continue] = ACTIONS(586), + [anon_sym_goto] = ACTIONS(588), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -64164,12 +67289,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(119), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(592), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(123), - [anon_sym_co_return] = ACTIONS(133), - [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_throw] = ACTIONS(594), + [anon_sym_co_return] = ACTIONS(604), + [anon_sym_co_yield] = ACTIONS(606), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -64177,77 +67302,192 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [265] = { - [sym_attribute_declaration] = STATE(282), - [sym_compound_statement] = STATE(616), - [sym_attributed_statement] = STATE(613), - [sym_labeled_statement] = STATE(612), - [sym_expression_statement] = STATE(610), - [sym_if_statement] = STATE(609), - [sym_switch_statement] = STATE(607), - [sym_case_statement] = STATE(606), - [sym_while_statement] = STATE(605), - [sym_do_statement] = STATE(604), - [sym_for_statement] = STATE(603), - [sym_return_statement] = STATE(602), - [sym_break_statement] = STATE(600), - [sym_continue_statement] = STATE(599), - [sym_goto_statement] = STATE(598), - [sym__expression] = STATE(3605), - [sym_comma_expression] = STATE(6558), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(597), - [sym_co_return_statement] = STATE(596), - [sym_co_yield_statement] = STATE(595), - [sym_throw_statement] = STATE(593), - [sym_try_statement] = STATE(592), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(282), - [sym_identifier] = ACTIONS(1987), - [anon_sym_LPAREN2] = ACTIONS(960), + [275] = { + [sym_attribute_declaration] = STATE(302), + [sym_compound_statement] = STATE(579), + [sym_attributed_statement] = STATE(579), + [sym_labeled_statement] = STATE(579), + [sym_expression_statement] = STATE(579), + [sym_if_statement] = STATE(579), + [sym_switch_statement] = STATE(579), + [sym_case_statement] = STATE(579), + [sym_while_statement] = STATE(579), + [sym_do_statement] = STATE(579), + [sym_for_statement] = STATE(579), + [sym_return_statement] = STATE(579), + [sym_break_statement] = STATE(579), + [sym_continue_statement] = STATE(579), + [sym_goto_statement] = STATE(579), + [sym__expression] = STATE(3763), + [sym_comma_expression] = STATE(6972), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(579), + [sym_co_return_statement] = STATE(579), + [sym_co_yield_statement] = STATE(579), + [sym_throw_statement] = STATE(579), + [sym_try_statement] = STATE(579), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(302), + [sym_identifier] = ACTIONS(2187), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(560), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(566), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(568), + [anon_sym_switch] = ACTIONS(570), + [anon_sym_case] = ACTIONS(572), + [anon_sym_default] = ACTIONS(574), + [anon_sym_while] = ACTIONS(576), + [anon_sym_do] = ACTIONS(578), + [anon_sym_for] = ACTIONS(580), + [anon_sym_return] = ACTIONS(582), + [anon_sym_break] = ACTIONS(584), + [anon_sym_continue] = ACTIONS(586), + [anon_sym_goto] = ACTIONS(588), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(592), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(594), + [anon_sym_co_return] = ACTIONS(604), + [anon_sym_co_yield] = ACTIONS(606), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [276] = { + [sym_attribute_declaration] = STATE(286), + [sym_compound_statement] = STATE(878), + [sym_attributed_statement] = STATE(878), + [sym_labeled_statement] = STATE(878), + [sym_expression_statement] = STATE(878), + [sym_if_statement] = STATE(878), + [sym_switch_statement] = STATE(878), + [sym_case_statement] = STATE(878), + [sym_while_statement] = STATE(878), + [sym_do_statement] = STATE(878), + [sym_for_statement] = STATE(878), + [sym_return_statement] = STATE(878), + [sym_break_statement] = STATE(878), + [sym_continue_statement] = STATE(878), + [sym_goto_statement] = STATE(878), + [sym__expression] = STATE(3758), + [sym_comma_expression] = STATE(7239), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(878), + [sym_co_return_statement] = STATE(878), + [sym_co_yield_statement] = STATE(878), + [sym_throw_statement] = STATE(878), + [sym_try_statement] = STATE(878), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), [anon_sym_SEMI] = ACTIONS(33), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), [anon_sym_if] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), [anon_sym_case] = ACTIONS(75), @@ -64259,6 +67499,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(87), [anon_sym_continue] = ACTIONS(89), [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -64277,7 +67519,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), + [anon_sym_template] = ACTIONS(976), [anon_sym_try] = ACTIONS(119), [anon_sym_delete] = ACTIONS(121), [anon_sym_throw] = ACTIONS(123), @@ -64290,77 +67532,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [266] = { - [sym_attribute_declaration] = STATE(282), - [sym_compound_statement] = STATE(591), - [sym_attributed_statement] = STATE(591), - [sym_labeled_statement] = STATE(591), - [sym_expression_statement] = STATE(591), - [sym_if_statement] = STATE(591), - [sym_switch_statement] = STATE(591), - [sym_case_statement] = STATE(591), - [sym_while_statement] = STATE(591), - [sym_do_statement] = STATE(591), - [sym_for_statement] = STATE(591), - [sym_return_statement] = STATE(591), - [sym_break_statement] = STATE(591), - [sym_continue_statement] = STATE(591), - [sym_goto_statement] = STATE(591), - [sym__expression] = STATE(3605), - [sym_comma_expression] = STATE(6558), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(591), - [sym_co_return_statement] = STATE(591), - [sym_co_yield_statement] = STATE(591), - [sym_throw_statement] = STATE(591), - [sym_try_statement] = STATE(591), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(282), - [sym_identifier] = ACTIONS(1987), - [anon_sym_LPAREN2] = ACTIONS(960), + [277] = { + [sym_attribute_declaration] = STATE(286), + [sym_compound_statement] = STATE(854), + [sym_attributed_statement] = STATE(854), + [sym_labeled_statement] = STATE(854), + [sym_expression_statement] = STATE(854), + [sym_if_statement] = STATE(854), + [sym_switch_statement] = STATE(854), + [sym_case_statement] = STATE(854), + [sym_while_statement] = STATE(854), + [sym_do_statement] = STATE(854), + [sym_for_statement] = STATE(854), + [sym_return_statement] = STATE(854), + [sym_break_statement] = STATE(854), + [sym_continue_statement] = STATE(854), + [sym_goto_statement] = STATE(854), + [sym__expression] = STATE(3758), + [sym_comma_expression] = STATE(7239), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(854), + [sym_co_return_statement] = STATE(854), + [sym_co_yield_statement] = STATE(854), + [sym_throw_statement] = STATE(854), + [sym_try_statement] = STATE(854), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), [anon_sym_SEMI] = ACTIONS(33), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), [anon_sym_if] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), [anon_sym_case] = ACTIONS(75), @@ -64372,6 +67614,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(87), [anon_sym_continue] = ACTIONS(89), [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -64390,7 +67634,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), + [anon_sym_template] = ACTIONS(976), [anon_sym_try] = ACTIONS(119), [anon_sym_delete] = ACTIONS(121), [anon_sym_throw] = ACTIONS(123), @@ -64403,77 +67647,192 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [267] = { - [sym_attribute_declaration] = STATE(282), - [sym_compound_statement] = STATE(590), - [sym_attributed_statement] = STATE(590), - [sym_labeled_statement] = STATE(590), - [sym_expression_statement] = STATE(590), - [sym_if_statement] = STATE(590), - [sym_switch_statement] = STATE(590), - [sym_case_statement] = STATE(590), - [sym_while_statement] = STATE(590), - [sym_do_statement] = STATE(590), - [sym_for_statement] = STATE(590), - [sym_return_statement] = STATE(590), - [sym_break_statement] = STATE(590), - [sym_continue_statement] = STATE(590), - [sym_goto_statement] = STATE(590), - [sym__expression] = STATE(3605), - [sym_comma_expression] = STATE(6558), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(590), - [sym_co_return_statement] = STATE(590), - [sym_co_yield_statement] = STATE(590), - [sym_throw_statement] = STATE(590), - [sym_try_statement] = STATE(590), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(282), - [sym_identifier] = ACTIONS(1987), - [anon_sym_LPAREN2] = ACTIONS(960), + [278] = { + [sym_attribute_declaration] = STATE(179), + [sym_compound_statement] = STATE(7184), + [sym_attributed_statement] = STATE(7184), + [sym_labeled_statement] = STATE(7184), + [sym_expression_statement] = STATE(7184), + [sym_if_statement] = STATE(7184), + [sym_switch_statement] = STATE(7184), + [sym_case_statement] = STATE(7184), + [sym_while_statement] = STATE(7184), + [sym_do_statement] = STATE(7184), + [sym_for_statement] = STATE(7184), + [sym_return_statement] = STATE(7184), + [sym_break_statement] = STATE(7184), + [sym_continue_statement] = STATE(7184), + [sym_goto_statement] = STATE(7184), + [sym__expression] = STATE(3701), + [sym_comma_expression] = STATE(7176), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(7184), + [sym_co_return_statement] = STATE(7184), + [sym_co_yield_statement] = STATE(7184), + [sym_throw_statement] = STATE(7184), + [sym_try_statement] = STATE(7184), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(179), + [sym_identifier] = ACTIONS(1981), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1983), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(1987), + [anon_sym_switch] = ACTIONS(1989), + [anon_sym_case] = ACTIONS(1991), + [anon_sym_default] = ACTIONS(1993), + [anon_sym_while] = ACTIONS(1995), + [anon_sym_do] = ACTIONS(1997), + [anon_sym_for] = ACTIONS(1999), + [anon_sym_return] = ACTIONS(2001), + [anon_sym_break] = ACTIONS(2003), + [anon_sym_continue] = ACTIONS(2005), + [anon_sym_goto] = ACTIONS(2007), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(2009), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_throw] = ACTIONS(2011), + [anon_sym_co_return] = ACTIONS(2013), + [anon_sym_co_yield] = ACTIONS(2015), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [279] = { + [sym_attribute_declaration] = STATE(286), + [sym_compound_statement] = STATE(671), + [sym_attributed_statement] = STATE(671), + [sym_labeled_statement] = STATE(671), + [sym_expression_statement] = STATE(671), + [sym_if_statement] = STATE(671), + [sym_switch_statement] = STATE(671), + [sym_case_statement] = STATE(671), + [sym_while_statement] = STATE(671), + [sym_do_statement] = STATE(671), + [sym_for_statement] = STATE(671), + [sym_return_statement] = STATE(671), + [sym_break_statement] = STATE(671), + [sym_continue_statement] = STATE(671), + [sym_goto_statement] = STATE(671), + [sym__expression] = STATE(3758), + [sym_comma_expression] = STATE(7239), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(671), + [sym_co_return_statement] = STATE(671), + [sym_co_yield_statement] = STATE(671), + [sym_throw_statement] = STATE(671), + [sym_try_statement] = STATE(671), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), [anon_sym_SEMI] = ACTIONS(33), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), [anon_sym_if] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), [anon_sym_case] = ACTIONS(75), @@ -64485,6 +67844,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(87), [anon_sym_continue] = ACTIONS(89), [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -64503,7 +67864,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), + [anon_sym_template] = ACTIONS(976), [anon_sym_try] = ACTIONS(119), [anon_sym_delete] = ACTIONS(121), [anon_sym_throw] = ACTIONS(123), @@ -64516,88 +67877,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [268] = { - [sym_attribute_declaration] = STATE(303), - [sym_compound_statement] = STATE(689), - [sym_attributed_statement] = STATE(689), - [sym_labeled_statement] = STATE(689), - [sym_expression_statement] = STATE(689), - [sym_if_statement] = STATE(689), - [sym_switch_statement] = STATE(689), - [sym_case_statement] = STATE(689), - [sym_while_statement] = STATE(689), - [sym_do_statement] = STATE(689), - [sym_for_statement] = STATE(689), - [sym_return_statement] = STATE(689), - [sym_break_statement] = STATE(689), - [sym_continue_statement] = STATE(689), - [sym_goto_statement] = STATE(689), - [sym__expression] = STATE(3612), - [sym_comma_expression] = STATE(6539), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(689), - [sym_co_return_statement] = STATE(689), - [sym_co_yield_statement] = STATE(689), - [sym_throw_statement] = STATE(689), - [sym_try_statement] = STATE(689), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(303), - [sym_identifier] = ACTIONS(2093), - [anon_sym_LPAREN2] = ACTIONS(960), + [280] = { + [sym_attribute_declaration] = STATE(302), + [sym_compound_statement] = STATE(654), + [sym_attributed_statement] = STATE(654), + [sym_labeled_statement] = STATE(654), + [sym_expression_statement] = STATE(654), + [sym_if_statement] = STATE(654), + [sym_switch_statement] = STATE(654), + [sym_case_statement] = STATE(654), + [sym_while_statement] = STATE(654), + [sym_do_statement] = STATE(654), + [sym_for_statement] = STATE(654), + [sym_return_statement] = STATE(654), + [sym_break_statement] = STATE(654), + [sym_continue_statement] = STATE(654), + [sym_goto_statement] = STATE(654), + [sym__expression] = STATE(3763), + [sym_comma_expression] = STATE(6972), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(654), + [sym_co_return_statement] = STATE(654), + [sym_co_yield_statement] = STATE(654), + [sym_throw_statement] = STATE(654), + [sym_try_statement] = STATE(654), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(302), + [sym_identifier] = ACTIONS(2187), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(594), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(560), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(600), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(602), - [anon_sym_switch] = ACTIONS(604), - [anon_sym_case] = ACTIONS(606), - [anon_sym_default] = ACTIONS(608), - [anon_sym_while] = ACTIONS(610), - [anon_sym_do] = ACTIONS(612), - [anon_sym_for] = ACTIONS(614), - [anon_sym_return] = ACTIONS(616), - [anon_sym_break] = ACTIONS(618), - [anon_sym_continue] = ACTIONS(620), - [anon_sym_goto] = ACTIONS(622), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(566), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(568), + [anon_sym_switch] = ACTIONS(570), + [anon_sym_case] = ACTIONS(572), + [anon_sym_default] = ACTIONS(574), + [anon_sym_while] = ACTIONS(576), + [anon_sym_do] = ACTIONS(578), + [anon_sym_for] = ACTIONS(580), + [anon_sym_return] = ACTIONS(582), + [anon_sym_break] = ACTIONS(584), + [anon_sym_continue] = ACTIONS(586), + [anon_sym_goto] = ACTIONS(588), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -64616,12 +67979,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(626), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(592), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(628), - [anon_sym_co_return] = ACTIONS(638), - [anon_sym_co_yield] = ACTIONS(640), + [anon_sym_throw] = ACTIONS(594), + [anon_sym_co_return] = ACTIONS(604), + [anon_sym_co_yield] = ACTIONS(606), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -64629,88 +67992,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [269] = { - [sym_attribute_declaration] = STATE(303), - [sym_compound_statement] = STATE(688), - [sym_attributed_statement] = STATE(688), - [sym_labeled_statement] = STATE(688), - [sym_expression_statement] = STATE(688), - [sym_if_statement] = STATE(688), - [sym_switch_statement] = STATE(688), - [sym_case_statement] = STATE(688), - [sym_while_statement] = STATE(688), - [sym_do_statement] = STATE(688), - [sym_for_statement] = STATE(688), - [sym_return_statement] = STATE(688), - [sym_break_statement] = STATE(688), - [sym_continue_statement] = STATE(688), - [sym_goto_statement] = STATE(688), - [sym__expression] = STATE(3612), - [sym_comma_expression] = STATE(6539), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(688), - [sym_co_return_statement] = STATE(688), - [sym_co_yield_statement] = STATE(688), - [sym_throw_statement] = STATE(688), - [sym_try_statement] = STATE(688), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(303), - [sym_identifier] = ACTIONS(2093), - [anon_sym_LPAREN2] = ACTIONS(960), + [281] = { + [sym_attribute_declaration] = STATE(302), + [sym_compound_statement] = STATE(577), + [sym_attributed_statement] = STATE(577), + [sym_labeled_statement] = STATE(577), + [sym_expression_statement] = STATE(577), + [sym_if_statement] = STATE(577), + [sym_switch_statement] = STATE(577), + [sym_case_statement] = STATE(577), + [sym_while_statement] = STATE(577), + [sym_do_statement] = STATE(577), + [sym_for_statement] = STATE(577), + [sym_return_statement] = STATE(577), + [sym_break_statement] = STATE(577), + [sym_continue_statement] = STATE(577), + [sym_goto_statement] = STATE(577), + [sym__expression] = STATE(3763), + [sym_comma_expression] = STATE(6972), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(577), + [sym_co_return_statement] = STATE(577), + [sym_co_yield_statement] = STATE(577), + [sym_throw_statement] = STATE(577), + [sym_try_statement] = STATE(577), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(302), + [sym_identifier] = ACTIONS(2187), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(594), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(560), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(600), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(602), - [anon_sym_switch] = ACTIONS(604), - [anon_sym_case] = ACTIONS(606), - [anon_sym_default] = ACTIONS(608), - [anon_sym_while] = ACTIONS(610), - [anon_sym_do] = ACTIONS(612), - [anon_sym_for] = ACTIONS(614), - [anon_sym_return] = ACTIONS(616), - [anon_sym_break] = ACTIONS(618), - [anon_sym_continue] = ACTIONS(620), - [anon_sym_goto] = ACTIONS(622), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(566), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(568), + [anon_sym_switch] = ACTIONS(570), + [anon_sym_case] = ACTIONS(572), + [anon_sym_default] = ACTIONS(574), + [anon_sym_while] = ACTIONS(576), + [anon_sym_do] = ACTIONS(578), + [anon_sym_for] = ACTIONS(580), + [anon_sym_return] = ACTIONS(582), + [anon_sym_break] = ACTIONS(584), + [anon_sym_continue] = ACTIONS(586), + [anon_sym_goto] = ACTIONS(588), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -64729,12 +68094,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(626), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(592), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(628), - [anon_sym_co_return] = ACTIONS(638), - [anon_sym_co_yield] = ACTIONS(640), + [anon_sym_throw] = ACTIONS(594), + [anon_sym_co_return] = ACTIONS(604), + [anon_sym_co_yield] = ACTIONS(606), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -64742,77 +68107,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [270] = { - [sym_attribute_declaration] = STATE(282), - [sym_compound_statement] = STATE(589), - [sym_attributed_statement] = STATE(589), - [sym_labeled_statement] = STATE(589), - [sym_expression_statement] = STATE(589), - [sym_if_statement] = STATE(589), - [sym_switch_statement] = STATE(589), - [sym_case_statement] = STATE(589), - [sym_while_statement] = STATE(589), - [sym_do_statement] = STATE(589), - [sym_for_statement] = STATE(589), - [sym_return_statement] = STATE(589), - [sym_break_statement] = STATE(589), - [sym_continue_statement] = STATE(589), - [sym_goto_statement] = STATE(589), - [sym__expression] = STATE(3605), - [sym_comma_expression] = STATE(6558), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(589), - [sym_co_return_statement] = STATE(589), - [sym_co_yield_statement] = STATE(589), - [sym_throw_statement] = STATE(589), - [sym_try_statement] = STATE(589), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(282), - [sym_identifier] = ACTIONS(1987), - [anon_sym_LPAREN2] = ACTIONS(960), + [282] = { + [sym_attribute_declaration] = STATE(286), + [sym_compound_statement] = STATE(627), + [sym_attributed_statement] = STATE(627), + [sym_labeled_statement] = STATE(627), + [sym_expression_statement] = STATE(627), + [sym_if_statement] = STATE(627), + [sym_switch_statement] = STATE(627), + [sym_case_statement] = STATE(627), + [sym_while_statement] = STATE(627), + [sym_do_statement] = STATE(627), + [sym_for_statement] = STATE(627), + [sym_return_statement] = STATE(627), + [sym_break_statement] = STATE(627), + [sym_continue_statement] = STATE(627), + [sym_goto_statement] = STATE(627), + [sym__expression] = STATE(3758), + [sym_comma_expression] = STATE(7239), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(627), + [sym_co_return_statement] = STATE(627), + [sym_co_yield_statement] = STATE(627), + [sym_throw_statement] = STATE(627), + [sym_try_statement] = STATE(627), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), [anon_sym_SEMI] = ACTIONS(33), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), [anon_sym_if] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), [anon_sym_case] = ACTIONS(75), @@ -64824,6 +68189,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(87), [anon_sym_continue] = ACTIONS(89), [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -64842,7 +68209,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), + [anon_sym_template] = ACTIONS(976), [anon_sym_try] = ACTIONS(119), [anon_sym_delete] = ACTIONS(121), [anon_sym_throw] = ACTIONS(123), @@ -64855,88 +68222,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [271] = { - [sym_attribute_declaration] = STATE(282), - [sym_compound_statement] = STATE(588), - [sym_attributed_statement] = STATE(587), - [sym_labeled_statement] = STATE(586), - [sym_expression_statement] = STATE(585), - [sym_if_statement] = STATE(584), - [sym_switch_statement] = STATE(583), - [sym_case_statement] = STATE(582), - [sym_while_statement] = STATE(581), - [sym_do_statement] = STATE(580), - [sym_for_statement] = STATE(579), - [sym_return_statement] = STATE(578), - [sym_break_statement] = STATE(576), - [sym_continue_statement] = STATE(573), - [sym_goto_statement] = STATE(572), - [sym__expression] = STATE(3605), - [sym_comma_expression] = STATE(6558), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(571), - [sym_co_return_statement] = STATE(570), - [sym_co_yield_statement] = STATE(569), - [sym_throw_statement] = STATE(568), - [sym_try_statement] = STATE(567), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(282), - [sym_identifier] = ACTIONS(1987), - [anon_sym_LPAREN2] = ACTIONS(960), + [283] = { + [sym_attribute_declaration] = STATE(290), + [sym_compound_statement] = STATE(409), + [sym_attributed_statement] = STATE(409), + [sym_labeled_statement] = STATE(409), + [sym_expression_statement] = STATE(409), + [sym_if_statement] = STATE(409), + [sym_switch_statement] = STATE(409), + [sym_case_statement] = STATE(409), + [sym_while_statement] = STATE(409), + [sym_do_statement] = STATE(409), + [sym_for_statement] = STATE(409), + [sym_return_statement] = STATE(409), + [sym_break_statement] = STATE(409), + [sym_continue_statement] = STATE(409), + [sym_goto_statement] = STATE(409), + [sym__expression] = STATE(3680), + [sym_comma_expression] = STATE(7175), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(409), + [sym_co_return_statement] = STATE(409), + [sym_co_yield_statement] = STATE(409), + [sym_throw_statement] = STATE(409), + [sym_try_statement] = STATE(409), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(290), + [sym_identifier] = ACTIONS(2135), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(245), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_case] = ACTIONS(75), - [anon_sym_default] = ACTIONS(77), - [anon_sym_while] = ACTIONS(79), - [anon_sym_do] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), - [anon_sym_return] = ACTIONS(85), - [anon_sym_break] = ACTIONS(87), - [anon_sym_continue] = ACTIONS(89), - [anon_sym_goto] = ACTIONS(91), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(253), + [anon_sym_switch] = ACTIONS(255), + [anon_sym_case] = ACTIONS(257), + [anon_sym_default] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_do] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_return] = ACTIONS(267), + [anon_sym_break] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(271), + [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -64955,12 +68324,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(119), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(277), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(123), - [anon_sym_co_return] = ACTIONS(133), - [anon_sym_co_yield] = ACTIONS(135), + [anon_sym_throw] = ACTIONS(279), + [anon_sym_co_return] = ACTIONS(289), + [anon_sym_co_yield] = ACTIONS(291), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -64968,77 +68337,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [272] = { - [sym_attribute_declaration] = STATE(282), - [sym_compound_statement] = STATE(566), - [sym_attributed_statement] = STATE(564), - [sym_labeled_statement] = STATE(563), - [sym_expression_statement] = STATE(562), - [sym_if_statement] = STATE(561), - [sym_switch_statement] = STATE(560), - [sym_case_statement] = STATE(559), - [sym_while_statement] = STATE(558), - [sym_do_statement] = STATE(557), - [sym_for_statement] = STATE(556), - [sym_return_statement] = STATE(555), - [sym_break_statement] = STATE(554), - [sym_continue_statement] = STATE(553), - [sym_goto_statement] = STATE(552), - [sym__expression] = STATE(3605), - [sym_comma_expression] = STATE(6558), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(551), - [sym_co_return_statement] = STATE(550), - [sym_co_yield_statement] = STATE(549), - [sym_throw_statement] = STATE(548), - [sym_try_statement] = STATE(546), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(282), - [sym_identifier] = ACTIONS(1987), - [anon_sym_LPAREN2] = ACTIONS(960), + [284] = { + [sym_attribute_declaration] = STATE(286), + [sym_compound_statement] = STATE(666), + [sym_attributed_statement] = STATE(666), + [sym_labeled_statement] = STATE(666), + [sym_expression_statement] = STATE(666), + [sym_if_statement] = STATE(666), + [sym_switch_statement] = STATE(666), + [sym_case_statement] = STATE(666), + [sym_while_statement] = STATE(666), + [sym_do_statement] = STATE(666), + [sym_for_statement] = STATE(666), + [sym_return_statement] = STATE(666), + [sym_break_statement] = STATE(666), + [sym_continue_statement] = STATE(666), + [sym_goto_statement] = STATE(666), + [sym__expression] = STATE(3758), + [sym_comma_expression] = STATE(7239), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(666), + [sym_co_return_statement] = STATE(666), + [sym_co_yield_statement] = STATE(666), + [sym_throw_statement] = STATE(666), + [sym_try_statement] = STATE(666), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), [anon_sym_SEMI] = ACTIONS(33), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), [anon_sym_if] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), [anon_sym_case] = ACTIONS(75), @@ -65050,6 +68419,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(87), [anon_sym_continue] = ACTIONS(89), [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -65068,7 +68439,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), + [anon_sym_template] = ACTIONS(976), [anon_sym_try] = ACTIONS(119), [anon_sym_delete] = ACTIONS(121), [anon_sym_throw] = ACTIONS(123), @@ -65081,88 +68452,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [273] = { - [sym_attribute_declaration] = STATE(303), - [sym_compound_statement] = STATE(668), - [sym_attributed_statement] = STATE(669), - [sym_labeled_statement] = STATE(670), - [sym_expression_statement] = STATE(672), - [sym_if_statement] = STATE(673), - [sym_switch_statement] = STATE(674), - [sym_case_statement] = STATE(675), - [sym_while_statement] = STATE(676), - [sym_do_statement] = STATE(677), - [sym_for_statement] = STATE(678), - [sym_return_statement] = STATE(534), - [sym_break_statement] = STATE(680), - [sym_continue_statement] = STATE(681), - [sym_goto_statement] = STATE(682), - [sym__expression] = STATE(3612), - [sym_comma_expression] = STATE(6539), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(683), - [sym_co_return_statement] = STATE(684), - [sym_co_yield_statement] = STATE(685), - [sym_throw_statement] = STATE(686), - [sym_try_statement] = STATE(687), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(303), - [sym_identifier] = ACTIONS(2093), - [anon_sym_LPAREN2] = ACTIONS(960), + [285] = { + [sym_attribute_declaration] = STATE(290), + [sym_compound_statement] = STATE(408), + [sym_attributed_statement] = STATE(407), + [sym_labeled_statement] = STATE(406), + [sym_expression_statement] = STATE(404), + [sym_if_statement] = STATE(403), + [sym_switch_statement] = STATE(402), + [sym_case_statement] = STATE(401), + [sym_while_statement] = STATE(400), + [sym_do_statement] = STATE(399), + [sym_for_statement] = STATE(398), + [sym_return_statement] = STATE(396), + [sym_break_statement] = STATE(395), + [sym_continue_statement] = STATE(394), + [sym_goto_statement] = STATE(393), + [sym__expression] = STATE(3680), + [sym_comma_expression] = STATE(7175), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(392), + [sym_co_return_statement] = STATE(391), + [sym_co_yield_statement] = STATE(390), + [sym_throw_statement] = STATE(389), + [sym_try_statement] = STATE(388), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(290), + [sym_identifier] = ACTIONS(2135), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(594), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(245), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(600), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(602), - [anon_sym_switch] = ACTIONS(604), - [anon_sym_case] = ACTIONS(606), - [anon_sym_default] = ACTIONS(608), - [anon_sym_while] = ACTIONS(610), - [anon_sym_do] = ACTIONS(612), - [anon_sym_for] = ACTIONS(614), - [anon_sym_return] = ACTIONS(616), - [anon_sym_break] = ACTIONS(618), - [anon_sym_continue] = ACTIONS(620), - [anon_sym_goto] = ACTIONS(622), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(253), + [anon_sym_switch] = ACTIONS(255), + [anon_sym_case] = ACTIONS(257), + [anon_sym_default] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_do] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_return] = ACTIONS(267), + [anon_sym_break] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(271), + [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -65181,12 +68554,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(626), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(277), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(628), - [anon_sym_co_return] = ACTIONS(638), - [anon_sym_co_yield] = ACTIONS(640), + [anon_sym_throw] = ACTIONS(279), + [anon_sym_co_return] = ACTIONS(289), + [anon_sym_co_yield] = ACTIONS(291), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -65194,88 +68567,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [274] = { - [sym_attribute_declaration] = STATE(303), - [sym_compound_statement] = STATE(642), - [sym_attributed_statement] = STATE(643), - [sym_labeled_statement] = STATE(644), - [sym_expression_statement] = STATE(645), - [sym_if_statement] = STATE(646), - [sym_switch_statement] = STATE(647), - [sym_case_statement] = STATE(648), - [sym_while_statement] = STATE(654), - [sym_do_statement] = STATE(655), - [sym_for_statement] = STATE(656), - [sym_return_statement] = STATE(657), - [sym_break_statement] = STATE(658), - [sym_continue_statement] = STATE(659), - [sym_goto_statement] = STATE(660), - [sym__expression] = STATE(3612), - [sym_comma_expression] = STATE(6539), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(661), - [sym_co_return_statement] = STATE(662), - [sym_co_yield_statement] = STATE(665), - [sym_throw_statement] = STATE(666), - [sym_try_statement] = STATE(667), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(303), - [sym_identifier] = ACTIONS(2093), - [anon_sym_LPAREN2] = ACTIONS(960), + [286] = { + [sym_attribute_declaration] = STATE(291), + [sym_compound_statement] = STATE(903), + [sym_attributed_statement] = STATE(903), + [sym_labeled_statement] = STATE(903), + [sym_expression_statement] = STATE(903), + [sym_if_statement] = STATE(903), + [sym_switch_statement] = STATE(903), + [sym_case_statement] = STATE(903), + [sym_while_statement] = STATE(903), + [sym_do_statement] = STATE(903), + [sym_for_statement] = STATE(903), + [sym_return_statement] = STATE(903), + [sym_break_statement] = STATE(903), + [sym_continue_statement] = STATE(903), + [sym_goto_statement] = STATE(903), + [sym__expression] = STATE(3758), + [sym_comma_expression] = STATE(7239), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(903), + [sym_co_return_statement] = STATE(903), + [sym_co_yield_statement] = STATE(903), + [sym_throw_statement] = STATE(903), + [sym_try_statement] = STATE(903), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(291), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(594), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(33), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(600), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(602), - [anon_sym_switch] = ACTIONS(604), - [anon_sym_case] = ACTIONS(606), - [anon_sym_default] = ACTIONS(608), - [anon_sym_while] = ACTIONS(610), - [anon_sym_do] = ACTIONS(612), - [anon_sym_for] = ACTIONS(614), - [anon_sym_return] = ACTIONS(616), - [anon_sym_break] = ACTIONS(618), - [anon_sym_continue] = ACTIONS(620), - [anon_sym_goto] = ACTIONS(622), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(75), + [anon_sym_default] = ACTIONS(77), + [anon_sym_while] = ACTIONS(79), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -65294,12 +68669,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(626), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(119), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(628), - [anon_sym_co_return] = ACTIONS(638), - [anon_sym_co_yield] = ACTIONS(640), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -65307,88 +68682,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [275] = { - [sym_attribute_declaration] = STATE(303), - [sym_compound_statement] = STATE(641), - [sym_attributed_statement] = STATE(641), - [sym_labeled_statement] = STATE(641), - [sym_expression_statement] = STATE(641), - [sym_if_statement] = STATE(641), - [sym_switch_statement] = STATE(641), - [sym_case_statement] = STATE(641), - [sym_while_statement] = STATE(641), - [sym_do_statement] = STATE(641), - [sym_for_statement] = STATE(641), - [sym_return_statement] = STATE(641), - [sym_break_statement] = STATE(641), - [sym_continue_statement] = STATE(641), - [sym_goto_statement] = STATE(641), - [sym__expression] = STATE(3612), - [sym_comma_expression] = STATE(6539), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(641), - [sym_co_return_statement] = STATE(641), - [sym_co_yield_statement] = STATE(641), - [sym_throw_statement] = STATE(641), - [sym_try_statement] = STATE(641), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(303), - [sym_identifier] = ACTIONS(2093), - [anon_sym_LPAREN2] = ACTIONS(960), + [287] = { + [sym_attribute_declaration] = STATE(286), + [sym_compound_statement] = STATE(626), + [sym_attributed_statement] = STATE(625), + [sym_labeled_statement] = STATE(552), + [sym_expression_statement] = STATE(554), + [sym_if_statement] = STATE(561), + [sym_switch_statement] = STATE(563), + [sym_case_statement] = STATE(564), + [sym_while_statement] = STATE(570), + [sym_do_statement] = STATE(574), + [sym_for_statement] = STATE(575), + [sym_return_statement] = STATE(599), + [sym_break_statement] = STATE(600), + [sym_continue_statement] = STATE(628), + [sym_goto_statement] = STATE(633), + [sym__expression] = STATE(3758), + [sym_comma_expression] = STATE(7239), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(663), + [sym_co_return_statement] = STATE(670), + [sym_co_yield_statement] = STATE(672), + [sym_throw_statement] = STATE(673), + [sym_try_statement] = STATE(675), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(594), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(33), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(600), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(602), - [anon_sym_switch] = ACTIONS(604), - [anon_sym_case] = ACTIONS(606), - [anon_sym_default] = ACTIONS(608), - [anon_sym_while] = ACTIONS(610), - [anon_sym_do] = ACTIONS(612), - [anon_sym_for] = ACTIONS(614), - [anon_sym_return] = ACTIONS(616), - [anon_sym_break] = ACTIONS(618), - [anon_sym_continue] = ACTIONS(620), - [anon_sym_goto] = ACTIONS(622), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_case] = ACTIONS(75), + [anon_sym_default] = ACTIONS(77), + [anon_sym_while] = ACTIONS(79), + [anon_sym_do] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_return] = ACTIONS(85), + [anon_sym_break] = ACTIONS(87), + [anon_sym_continue] = ACTIONS(89), + [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -65407,12 +68784,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(626), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(119), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(628), - [anon_sym_co_return] = ACTIONS(638), - [anon_sym_co_yield] = ACTIONS(640), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_co_return] = ACTIONS(133), + [anon_sym_co_yield] = ACTIONS(135), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -65420,88 +68797,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [276] = { - [sym_attribute_declaration] = STATE(303), - [sym_compound_statement] = STATE(640), - [sym_attributed_statement] = STATE(640), - [sym_labeled_statement] = STATE(640), - [sym_expression_statement] = STATE(640), - [sym_if_statement] = STATE(640), - [sym_switch_statement] = STATE(640), - [sym_case_statement] = STATE(640), - [sym_while_statement] = STATE(640), - [sym_do_statement] = STATE(640), - [sym_for_statement] = STATE(640), - [sym_return_statement] = STATE(640), - [sym_break_statement] = STATE(640), - [sym_continue_statement] = STATE(640), - [sym_goto_statement] = STATE(640), - [sym__expression] = STATE(3612), - [sym_comma_expression] = STATE(6539), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(640), - [sym_co_return_statement] = STATE(640), - [sym_co_yield_statement] = STATE(640), - [sym_throw_statement] = STATE(640), - [sym_try_statement] = STATE(640), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(303), - [sym_identifier] = ACTIONS(2093), - [anon_sym_LPAREN2] = ACTIONS(960), + [288] = { + [sym_attribute_declaration] = STATE(302), + [sym_compound_statement] = STATE(576), + [sym_attributed_statement] = STATE(576), + [sym_labeled_statement] = STATE(576), + [sym_expression_statement] = STATE(576), + [sym_if_statement] = STATE(576), + [sym_switch_statement] = STATE(576), + [sym_case_statement] = STATE(576), + [sym_while_statement] = STATE(576), + [sym_do_statement] = STATE(576), + [sym_for_statement] = STATE(576), + [sym_return_statement] = STATE(576), + [sym_break_statement] = STATE(576), + [sym_continue_statement] = STATE(576), + [sym_goto_statement] = STATE(576), + [sym__expression] = STATE(3763), + [sym_comma_expression] = STATE(6972), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(576), + [sym_co_return_statement] = STATE(576), + [sym_co_yield_statement] = STATE(576), + [sym_throw_statement] = STATE(576), + [sym_try_statement] = STATE(576), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(302), + [sym_identifier] = ACTIONS(2187), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(594), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(560), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(600), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(602), - [anon_sym_switch] = ACTIONS(604), - [anon_sym_case] = ACTIONS(606), - [anon_sym_default] = ACTIONS(608), - [anon_sym_while] = ACTIONS(610), - [anon_sym_do] = ACTIONS(612), - [anon_sym_for] = ACTIONS(614), - [anon_sym_return] = ACTIONS(616), - [anon_sym_break] = ACTIONS(618), - [anon_sym_continue] = ACTIONS(620), - [anon_sym_goto] = ACTIONS(622), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(566), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(568), + [anon_sym_switch] = ACTIONS(570), + [anon_sym_case] = ACTIONS(572), + [anon_sym_default] = ACTIONS(574), + [anon_sym_while] = ACTIONS(576), + [anon_sym_do] = ACTIONS(578), + [anon_sym_for] = ACTIONS(580), + [anon_sym_return] = ACTIONS(582), + [anon_sym_break] = ACTIONS(584), + [anon_sym_continue] = ACTIONS(586), + [anon_sym_goto] = ACTIONS(588), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -65520,12 +68899,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(626), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(592), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(628), - [anon_sym_co_return] = ACTIONS(638), - [anon_sym_co_yield] = ACTIONS(640), + [anon_sym_throw] = ACTIONS(594), + [anon_sym_co_return] = ACTIONS(604), + [anon_sym_co_yield] = ACTIONS(606), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -65533,88 +68912,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [277] = { - [sym_attribute_declaration] = STATE(303), - [sym_compound_statement] = STATE(639), - [sym_attributed_statement] = STATE(639), - [sym_labeled_statement] = STATE(639), - [sym_expression_statement] = STATE(639), - [sym_if_statement] = STATE(639), - [sym_switch_statement] = STATE(639), - [sym_case_statement] = STATE(639), - [sym_while_statement] = STATE(639), - [sym_do_statement] = STATE(639), - [sym_for_statement] = STATE(639), - [sym_return_statement] = STATE(639), - [sym_break_statement] = STATE(639), - [sym_continue_statement] = STATE(639), - [sym_goto_statement] = STATE(639), - [sym__expression] = STATE(3612), - [sym_comma_expression] = STATE(6539), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(639), - [sym_co_return_statement] = STATE(639), - [sym_co_yield_statement] = STATE(639), - [sym_throw_statement] = STATE(639), - [sym_try_statement] = STATE(639), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(303), - [sym_identifier] = ACTIONS(2093), - [anon_sym_LPAREN2] = ACTIONS(960), + [289] = { + [sym_attribute_declaration] = STATE(302), + [sym_compound_statement] = STATE(572), + [sym_attributed_statement] = STATE(572), + [sym_labeled_statement] = STATE(572), + [sym_expression_statement] = STATE(572), + [sym_if_statement] = STATE(572), + [sym_switch_statement] = STATE(572), + [sym_case_statement] = STATE(572), + [sym_while_statement] = STATE(572), + [sym_do_statement] = STATE(572), + [sym_for_statement] = STATE(572), + [sym_return_statement] = STATE(572), + [sym_break_statement] = STATE(572), + [sym_continue_statement] = STATE(572), + [sym_goto_statement] = STATE(572), + [sym__expression] = STATE(3763), + [sym_comma_expression] = STATE(6972), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(572), + [sym_co_return_statement] = STATE(572), + [sym_co_yield_statement] = STATE(572), + [sym_throw_statement] = STATE(572), + [sym_try_statement] = STATE(572), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(302), + [sym_identifier] = ACTIONS(2187), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(594), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(560), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(600), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(602), - [anon_sym_switch] = ACTIONS(604), - [anon_sym_case] = ACTIONS(606), - [anon_sym_default] = ACTIONS(608), - [anon_sym_while] = ACTIONS(610), - [anon_sym_do] = ACTIONS(612), - [anon_sym_for] = ACTIONS(614), - [anon_sym_return] = ACTIONS(616), - [anon_sym_break] = ACTIONS(618), - [anon_sym_continue] = ACTIONS(620), - [anon_sym_goto] = ACTIONS(622), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(566), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(568), + [anon_sym_switch] = ACTIONS(570), + [anon_sym_case] = ACTIONS(572), + [anon_sym_default] = ACTIONS(574), + [anon_sym_while] = ACTIONS(576), + [anon_sym_do] = ACTIONS(578), + [anon_sym_for] = ACTIONS(580), + [anon_sym_return] = ACTIONS(582), + [anon_sym_break] = ACTIONS(584), + [anon_sym_continue] = ACTIONS(586), + [anon_sym_goto] = ACTIONS(588), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -65633,12 +69014,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(626), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(592), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(628), - [anon_sym_co_return] = ACTIONS(638), - [anon_sym_co_yield] = ACTIONS(640), + [anon_sym_throw] = ACTIONS(594), + [anon_sym_co_return] = ACTIONS(604), + [anon_sym_co_yield] = ACTIONS(606), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -65646,88 +69027,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [278] = { - [sym_attribute_declaration] = STATE(303), - [sym_compound_statement] = STATE(541), - [sym_attributed_statement] = STATE(541), - [sym_labeled_statement] = STATE(541), - [sym_expression_statement] = STATE(541), - [sym_if_statement] = STATE(541), - [sym_switch_statement] = STATE(541), - [sym_case_statement] = STATE(541), - [sym_while_statement] = STATE(541), - [sym_do_statement] = STATE(541), - [sym_for_statement] = STATE(541), - [sym_return_statement] = STATE(541), - [sym_break_statement] = STATE(541), - [sym_continue_statement] = STATE(541), - [sym_goto_statement] = STATE(541), - [sym__expression] = STATE(3612), - [sym_comma_expression] = STATE(6539), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(541), - [sym_co_return_statement] = STATE(541), - [sym_co_yield_statement] = STATE(541), - [sym_throw_statement] = STATE(541), - [sym_try_statement] = STATE(541), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(303), - [sym_identifier] = ACTIONS(2093), - [anon_sym_LPAREN2] = ACTIONS(960), + [290] = { + [sym_attribute_declaration] = STATE(312), + [sym_compound_statement] = STATE(350), + [sym_attributed_statement] = STATE(350), + [sym_labeled_statement] = STATE(350), + [sym_expression_statement] = STATE(350), + [sym_if_statement] = STATE(350), + [sym_switch_statement] = STATE(350), + [sym_case_statement] = STATE(350), + [sym_while_statement] = STATE(350), + [sym_do_statement] = STATE(350), + [sym_for_statement] = STATE(350), + [sym_return_statement] = STATE(350), + [sym_break_statement] = STATE(350), + [sym_continue_statement] = STATE(350), + [sym_goto_statement] = STATE(350), + [sym__expression] = STATE(3680), + [sym_comma_expression] = STATE(7175), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(350), + [sym_co_return_statement] = STATE(350), + [sym_co_yield_statement] = STATE(350), + [sym_throw_statement] = STATE(350), + [sym_try_statement] = STATE(350), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(312), + [sym_identifier] = ACTIONS(2135), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(594), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(245), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(600), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(602), - [anon_sym_switch] = ACTIONS(604), - [anon_sym_case] = ACTIONS(606), - [anon_sym_default] = ACTIONS(608), - [anon_sym_while] = ACTIONS(610), - [anon_sym_do] = ACTIONS(612), - [anon_sym_for] = ACTIONS(614), - [anon_sym_return] = ACTIONS(616), - [anon_sym_break] = ACTIONS(618), - [anon_sym_continue] = ACTIONS(620), - [anon_sym_goto] = ACTIONS(622), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(253), + [anon_sym_switch] = ACTIONS(255), + [anon_sym_case] = ACTIONS(257), + [anon_sym_default] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_do] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_return] = ACTIONS(267), + [anon_sym_break] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(271), + [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -65746,12 +69129,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(626), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(277), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(628), - [anon_sym_co_return] = ACTIONS(638), - [anon_sym_co_yield] = ACTIONS(640), + [anon_sym_throw] = ACTIONS(279), + [anon_sym_co_return] = ACTIONS(289), + [anon_sym_co_yield] = ACTIONS(291), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -65759,88 +69142,205 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [279] = { - [sym_attribute_declaration] = STATE(303), - [sym_compound_statement] = STATE(540), - [sym_attributed_statement] = STATE(540), - [sym_labeled_statement] = STATE(540), - [sym_expression_statement] = STATE(540), - [sym_if_statement] = STATE(540), - [sym_switch_statement] = STATE(540), - [sym_case_statement] = STATE(540), - [sym_while_statement] = STATE(540), - [sym_do_statement] = STATE(540), - [sym_for_statement] = STATE(540), - [sym_return_statement] = STATE(540), - [sym_break_statement] = STATE(540), - [sym_continue_statement] = STATE(540), - [sym_goto_statement] = STATE(540), - [sym__expression] = STATE(3612), - [sym_comma_expression] = STATE(6539), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(540), - [sym_co_return_statement] = STATE(540), - [sym_co_yield_statement] = STATE(540), - [sym_throw_statement] = STATE(540), - [sym_try_statement] = STATE(540), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(303), - [sym_identifier] = ACTIONS(2093), - [anon_sym_LPAREN2] = ACTIONS(960), + [291] = { + [sym_attribute_declaration] = STATE(291), + [sym_compound_statement] = STATE(903), + [sym_attributed_statement] = STATE(903), + [sym_labeled_statement] = STATE(903), + [sym_expression_statement] = STATE(903), + [sym_if_statement] = STATE(903), + [sym_switch_statement] = STATE(903), + [sym_case_statement] = STATE(903), + [sym_while_statement] = STATE(903), + [sym_do_statement] = STATE(903), + [sym_for_statement] = STATE(903), + [sym_return_statement] = STATE(903), + [sym_break_statement] = STATE(903), + [sym_continue_statement] = STATE(903), + [sym_goto_statement] = STATE(903), + [sym__expression] = STATE(3758), + [sym_comma_expression] = STATE(7239), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(903), + [sym_co_return_statement] = STATE(903), + [sym_co_yield_statement] = STATE(903), + [sym_throw_statement] = STATE(903), + [sym_try_statement] = STATE(903), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(291), + [sym_identifier] = ACTIONS(2243), + [anon_sym_LPAREN2] = ACTIONS(2024), + [anon_sym_BANG] = ACTIONS(2027), + [anon_sym_TILDE] = ACTIONS(2027), + [anon_sym_DASH] = ACTIONS(2030), + [anon_sym_PLUS] = ACTIONS(2030), + [anon_sym_STAR] = ACTIONS(2033), + [anon_sym_AMP] = ACTIONS(2033), + [anon_sym_SEMI] = ACTIONS(2246), + [anon_sym_COLON_COLON] = ACTIONS(2039), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2042), + [anon_sym_LBRACE] = ACTIONS(2249), + [anon_sym_LBRACK] = ACTIONS(2048), + [sym_primitive_type] = ACTIONS(2051), + [anon_sym_if] = ACTIONS(2252), + [anon_sym_switch] = ACTIONS(2255), + [anon_sym_case] = ACTIONS(2258), + [anon_sym_default] = ACTIONS(2261), + [anon_sym_while] = ACTIONS(2264), + [anon_sym_do] = ACTIONS(2267), + [anon_sym_for] = ACTIONS(2270), + [anon_sym_return] = ACTIONS(2273), + [anon_sym_break] = ACTIONS(2276), + [anon_sym_continue] = ACTIONS(2279), + [anon_sym_goto] = ACTIONS(2282), + [anon_sym_not] = ACTIONS(2030), + [anon_sym_compl] = ACTIONS(2030), + [anon_sym_DASH_DASH] = ACTIONS(2087), + [anon_sym_PLUS_PLUS] = ACTIONS(2087), + [anon_sym_sizeof] = ACTIONS(2090), + [sym_number_literal] = ACTIONS(2093), + [anon_sym_L_SQUOTE] = ACTIONS(2096), + [anon_sym_u_SQUOTE] = ACTIONS(2096), + [anon_sym_U_SQUOTE] = ACTIONS(2096), + [anon_sym_u8_SQUOTE] = ACTIONS(2096), + [anon_sym_SQUOTE] = ACTIONS(2096), + [anon_sym_L_DQUOTE] = ACTIONS(2099), + [anon_sym_u_DQUOTE] = ACTIONS(2099), + [anon_sym_U_DQUOTE] = ACTIONS(2099), + [anon_sym_u8_DQUOTE] = ACTIONS(2099), + [anon_sym_DQUOTE] = ACTIONS(2099), + [sym_true] = ACTIONS(2102), + [sym_false] = ACTIONS(2102), + [sym_null] = ACTIONS(2102), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(2105), + [anon_sym_try] = ACTIONS(2285), + [anon_sym_delete] = ACTIONS(2111), + [anon_sym_throw] = ACTIONS(2288), + [anon_sym_co_return] = ACTIONS(2291), + [anon_sym_co_yield] = ACTIONS(2294), + [anon_sym_co_await] = ACTIONS(2123), + [anon_sym_new] = ACTIONS(2126), + [anon_sym_requires] = ACTIONS(2129), + [sym_this] = ACTIONS(2102), + [sym_nullptr] = ACTIONS(2102), + [sym_raw_string_literal] = ACTIONS(2132), + }, + [292] = { + [sym_attribute_declaration] = STATE(302), + [sym_compound_statement] = STATE(571), + [sym_attributed_statement] = STATE(571), + [sym_labeled_statement] = STATE(571), + [sym_expression_statement] = STATE(571), + [sym_if_statement] = STATE(571), + [sym_switch_statement] = STATE(571), + [sym_case_statement] = STATE(571), + [sym_while_statement] = STATE(571), + [sym_do_statement] = STATE(571), + [sym_for_statement] = STATE(571), + [sym_return_statement] = STATE(571), + [sym_break_statement] = STATE(571), + [sym_continue_statement] = STATE(571), + [sym_goto_statement] = STATE(571), + [sym__expression] = STATE(3763), + [sym_comma_expression] = STATE(6972), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(571), + [sym_co_return_statement] = STATE(571), + [sym_co_yield_statement] = STATE(571), + [sym_throw_statement] = STATE(571), + [sym_try_statement] = STATE(571), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(302), + [sym_identifier] = ACTIONS(2187), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(594), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(560), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(600), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(602), - [anon_sym_switch] = ACTIONS(604), - [anon_sym_case] = ACTIONS(606), - [anon_sym_default] = ACTIONS(608), - [anon_sym_while] = ACTIONS(610), - [anon_sym_do] = ACTIONS(612), - [anon_sym_for] = ACTIONS(614), - [anon_sym_return] = ACTIONS(616), - [anon_sym_break] = ACTIONS(618), - [anon_sym_continue] = ACTIONS(620), - [anon_sym_goto] = ACTIONS(622), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(566), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(568), + [anon_sym_switch] = ACTIONS(570), + [anon_sym_case] = ACTIONS(572), + [anon_sym_default] = ACTIONS(574), + [anon_sym_while] = ACTIONS(576), + [anon_sym_do] = ACTIONS(578), + [anon_sym_for] = ACTIONS(580), + [anon_sym_return] = ACTIONS(582), + [anon_sym_break] = ACTIONS(584), + [anon_sym_continue] = ACTIONS(586), + [anon_sym_goto] = ACTIONS(588), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -65859,12 +69359,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(626), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(592), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(628), - [anon_sym_co_return] = ACTIONS(638), - [anon_sym_co_yield] = ACTIONS(640), + [anon_sym_throw] = ACTIONS(594), + [anon_sym_co_return] = ACTIONS(604), + [anon_sym_co_yield] = ACTIONS(606), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -65872,88 +69372,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [280] = { - [sym_attribute_declaration] = STATE(303), - [sym_compound_statement] = STATE(539), - [sym_attributed_statement] = STATE(539), - [sym_labeled_statement] = STATE(539), - [sym_expression_statement] = STATE(539), - [sym_if_statement] = STATE(539), - [sym_switch_statement] = STATE(539), - [sym_case_statement] = STATE(539), - [sym_while_statement] = STATE(539), - [sym_do_statement] = STATE(539), - [sym_for_statement] = STATE(539), - [sym_return_statement] = STATE(539), - [sym_break_statement] = STATE(539), - [sym_continue_statement] = STATE(539), - [sym_goto_statement] = STATE(539), - [sym__expression] = STATE(3612), - [sym_comma_expression] = STATE(6539), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(539), - [sym_co_return_statement] = STATE(539), - [sym_co_yield_statement] = STATE(539), - [sym_throw_statement] = STATE(539), - [sym_try_statement] = STATE(539), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(303), - [sym_identifier] = ACTIONS(2093), - [anon_sym_LPAREN2] = ACTIONS(960), + [293] = { + [sym_attribute_declaration] = STATE(179), + [sym_compound_statement] = STATE(7157), + [sym_attributed_statement] = STATE(7157), + [sym_labeled_statement] = STATE(7157), + [sym_expression_statement] = STATE(7157), + [sym_if_statement] = STATE(7157), + [sym_switch_statement] = STATE(7157), + [sym_case_statement] = STATE(7157), + [sym_while_statement] = STATE(7157), + [sym_do_statement] = STATE(7157), + [sym_for_statement] = STATE(7157), + [sym_return_statement] = STATE(7157), + [sym_break_statement] = STATE(7157), + [sym_continue_statement] = STATE(7157), + [sym_goto_statement] = STATE(7157), + [sym__expression] = STATE(3701), + [sym_comma_expression] = STATE(7176), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(7157), + [sym_co_return_statement] = STATE(7157), + [sym_co_yield_statement] = STATE(7157), + [sym_throw_statement] = STATE(7157), + [sym_try_statement] = STATE(7157), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(179), + [sym_identifier] = ACTIONS(1981), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(594), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1983), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(600), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(602), - [anon_sym_switch] = ACTIONS(604), - [anon_sym_case] = ACTIONS(606), - [anon_sym_default] = ACTIONS(608), - [anon_sym_while] = ACTIONS(610), - [anon_sym_do] = ACTIONS(612), - [anon_sym_for] = ACTIONS(614), - [anon_sym_return] = ACTIONS(616), - [anon_sym_break] = ACTIONS(618), - [anon_sym_continue] = ACTIONS(620), - [anon_sym_goto] = ACTIONS(622), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(1987), + [anon_sym_switch] = ACTIONS(1989), + [anon_sym_case] = ACTIONS(1991), + [anon_sym_default] = ACTIONS(1993), + [anon_sym_while] = ACTIONS(1995), + [anon_sym_do] = ACTIONS(1997), + [anon_sym_for] = ACTIONS(1999), + [anon_sym_return] = ACTIONS(2001), + [anon_sym_break] = ACTIONS(2003), + [anon_sym_continue] = ACTIONS(2005), + [anon_sym_goto] = ACTIONS(2007), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -65972,12 +69474,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(626), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(2009), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(628), - [anon_sym_co_return] = ACTIONS(638), - [anon_sym_co_yield] = ACTIONS(640), + [anon_sym_throw] = ACTIONS(2011), + [anon_sym_co_return] = ACTIONS(2013), + [anon_sym_co_yield] = ACTIONS(2015), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -65985,88 +69487,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [281] = { - [sym_attribute_declaration] = STATE(183), - [sym_compound_statement] = STATE(6047), - [sym_attributed_statement] = STATE(6047), - [sym_labeled_statement] = STATE(6047), - [sym_expression_statement] = STATE(6047), - [sym_if_statement] = STATE(6047), - [sym_switch_statement] = STATE(6047), - [sym_case_statement] = STATE(6047), - [sym_while_statement] = STATE(6047), - [sym_do_statement] = STATE(6047), - [sym_for_statement] = STATE(6047), - [sym_return_statement] = STATE(6047), - [sym_break_statement] = STATE(6047), - [sym_continue_statement] = STATE(6047), - [sym_goto_statement] = STATE(6047), - [sym__expression] = STATE(3728), - [sym_comma_expression] = STATE(6585), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(6047), - [sym_co_return_statement] = STATE(6047), - [sym_co_yield_statement] = STATE(6047), - [sym_throw_statement] = STATE(6047), - [sym_try_statement] = STATE(6047), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(183), - [sym_identifier] = ACTIONS(1841), - [anon_sym_LPAREN2] = ACTIONS(960), + [294] = { + [sym_attribute_declaration] = STATE(290), + [sym_compound_statement] = STATE(362), + [sym_attributed_statement] = STATE(362), + [sym_labeled_statement] = STATE(362), + [sym_expression_statement] = STATE(362), + [sym_if_statement] = STATE(362), + [sym_switch_statement] = STATE(362), + [sym_case_statement] = STATE(362), + [sym_while_statement] = STATE(362), + [sym_do_statement] = STATE(362), + [sym_for_statement] = STATE(362), + [sym_return_statement] = STATE(362), + [sym_break_statement] = STATE(362), + [sym_continue_statement] = STATE(362), + [sym_goto_statement] = STATE(362), + [sym__expression] = STATE(3680), + [sym_comma_expression] = STATE(7175), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(362), + [sym_co_return_statement] = STATE(362), + [sym_co_yield_statement] = STATE(362), + [sym_throw_statement] = STATE(362), + [sym_try_statement] = STATE(362), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(290), + [sym_identifier] = ACTIONS(2135), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(1843), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(245), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(1845), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(1847), - [anon_sym_switch] = ACTIONS(1849), - [anon_sym_case] = ACTIONS(1835), - [anon_sym_default] = ACTIONS(1837), - [anon_sym_while] = ACTIONS(1851), - [anon_sym_do] = ACTIONS(1853), - [anon_sym_for] = ACTIONS(1855), - [anon_sym_return] = ACTIONS(1857), - [anon_sym_break] = ACTIONS(1859), - [anon_sym_continue] = ACTIONS(1861), - [anon_sym_goto] = ACTIONS(1863), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(253), + [anon_sym_switch] = ACTIONS(255), + [anon_sym_case] = ACTIONS(257), + [anon_sym_default] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_do] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_return] = ACTIONS(267), + [anon_sym_break] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(271), + [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -66085,12 +69589,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(1865), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(277), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(1867), - [anon_sym_co_return] = ACTIONS(1869), - [anon_sym_co_yield] = ACTIONS(1871), + [anon_sym_throw] = ACTIONS(279), + [anon_sym_co_return] = ACTIONS(289), + [anon_sym_co_yield] = ACTIONS(291), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -66098,77 +69602,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [282] = { - [sym_attribute_declaration] = STATE(290), - [sym_compound_statement] = STATE(726), - [sym_attributed_statement] = STATE(726), - [sym_labeled_statement] = STATE(726), - [sym_expression_statement] = STATE(726), - [sym_if_statement] = STATE(726), - [sym_switch_statement] = STATE(726), - [sym_case_statement] = STATE(726), - [sym_while_statement] = STATE(726), - [sym_do_statement] = STATE(726), - [sym_for_statement] = STATE(726), - [sym_return_statement] = STATE(726), - [sym_break_statement] = STATE(726), - [sym_continue_statement] = STATE(726), - [sym_goto_statement] = STATE(726), - [sym__expression] = STATE(3605), - [sym_comma_expression] = STATE(6558), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(726), - [sym_co_return_statement] = STATE(726), - [sym_co_yield_statement] = STATE(726), - [sym_throw_statement] = STATE(726), - [sym_try_statement] = STATE(726), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(290), - [sym_identifier] = ACTIONS(1987), - [anon_sym_LPAREN2] = ACTIONS(960), + [295] = { + [sym_attribute_declaration] = STATE(286), + [sym_compound_statement] = STATE(680), + [sym_attributed_statement] = STATE(681), + [sym_labeled_statement] = STATE(685), + [sym_expression_statement] = STATE(700), + [sym_if_statement] = STATE(701), + [sym_switch_statement] = STATE(716), + [sym_case_statement] = STATE(724), + [sym_while_statement] = STATE(725), + [sym_do_statement] = STATE(743), + [sym_for_statement] = STATE(761), + [sym_return_statement] = STATE(762), + [sym_break_statement] = STATE(813), + [sym_continue_statement] = STATE(822), + [sym_goto_statement] = STATE(835), + [sym__expression] = STATE(3758), + [sym_comma_expression] = STATE(7239), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(836), + [sym_co_return_statement] = STATE(837), + [sym_co_yield_statement] = STATE(838), + [sym_throw_statement] = STATE(841), + [sym_try_statement] = STATE(842), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(286), + [sym_identifier] = ACTIONS(2185), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), [anon_sym_SEMI] = ACTIONS(33), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), [anon_sym_LBRACE] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), [anon_sym_if] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), [anon_sym_case] = ACTIONS(75), @@ -66180,6 +69684,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(87), [anon_sym_continue] = ACTIONS(89), [anon_sym_goto] = ACTIONS(91), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -66198,7 +69704,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), + [anon_sym_template] = ACTIONS(976), [anon_sym_try] = ACTIONS(119), [anon_sym_delete] = ACTIONS(121), [anon_sym_throw] = ACTIONS(123), @@ -66211,88 +69717,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [283] = { - [sym_attribute_declaration] = STATE(303), - [sym_compound_statement] = STATE(538), - [sym_attributed_statement] = STATE(538), - [sym_labeled_statement] = STATE(538), - [sym_expression_statement] = STATE(538), - [sym_if_statement] = STATE(538), - [sym_switch_statement] = STATE(538), - [sym_case_statement] = STATE(538), - [sym_while_statement] = STATE(538), - [sym_do_statement] = STATE(538), - [sym_for_statement] = STATE(538), - [sym_return_statement] = STATE(538), - [sym_break_statement] = STATE(538), - [sym_continue_statement] = STATE(538), - [sym_goto_statement] = STATE(538), - [sym__expression] = STATE(3612), - [sym_comma_expression] = STATE(6539), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(538), - [sym_co_return_statement] = STATE(538), - [sym_co_yield_statement] = STATE(538), - [sym_throw_statement] = STATE(538), - [sym_try_statement] = STATE(538), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(303), - [sym_identifier] = ACTIONS(2093), - [anon_sym_LPAREN2] = ACTIONS(960), + [296] = { + [sym_attribute_declaration] = STATE(290), + [sym_compound_statement] = STATE(360), + [sym_attributed_statement] = STATE(360), + [sym_labeled_statement] = STATE(360), + [sym_expression_statement] = STATE(360), + [sym_if_statement] = STATE(360), + [sym_switch_statement] = STATE(360), + [sym_case_statement] = STATE(360), + [sym_while_statement] = STATE(360), + [sym_do_statement] = STATE(360), + [sym_for_statement] = STATE(360), + [sym_return_statement] = STATE(360), + [sym_break_statement] = STATE(360), + [sym_continue_statement] = STATE(360), + [sym_goto_statement] = STATE(360), + [sym__expression] = STATE(3680), + [sym_comma_expression] = STATE(7175), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(360), + [sym_co_return_statement] = STATE(360), + [sym_co_yield_statement] = STATE(360), + [sym_throw_statement] = STATE(360), + [sym_try_statement] = STATE(360), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(290), + [sym_identifier] = ACTIONS(2135), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(594), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(245), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(600), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(602), - [anon_sym_switch] = ACTIONS(604), - [anon_sym_case] = ACTIONS(606), - [anon_sym_default] = ACTIONS(608), - [anon_sym_while] = ACTIONS(610), - [anon_sym_do] = ACTIONS(612), - [anon_sym_for] = ACTIONS(614), - [anon_sym_return] = ACTIONS(616), - [anon_sym_break] = ACTIONS(618), - [anon_sym_continue] = ACTIONS(620), - [anon_sym_goto] = ACTIONS(622), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(253), + [anon_sym_switch] = ACTIONS(255), + [anon_sym_case] = ACTIONS(257), + [anon_sym_default] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_do] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_return] = ACTIONS(267), + [anon_sym_break] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(271), + [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -66311,12 +69819,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(626), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(277), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(628), - [anon_sym_co_return] = ACTIONS(638), - [anon_sym_co_yield] = ACTIONS(640), + [anon_sym_throw] = ACTIONS(279), + [anon_sym_co_return] = ACTIONS(289), + [anon_sym_co_yield] = ACTIONS(291), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -66324,88 +69832,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [284] = { - [sym_attribute_declaration] = STATE(183), - [sym_compound_statement] = STATE(6051), - [sym_attributed_statement] = STATE(6051), - [sym_labeled_statement] = STATE(6051), - [sym_expression_statement] = STATE(6051), - [sym_if_statement] = STATE(6051), - [sym_switch_statement] = STATE(6051), - [sym_case_statement] = STATE(6051), - [sym_while_statement] = STATE(6051), - [sym_do_statement] = STATE(6051), - [sym_for_statement] = STATE(6051), - [sym_return_statement] = STATE(6051), - [sym_break_statement] = STATE(6051), - [sym_continue_statement] = STATE(6051), - [sym_goto_statement] = STATE(6051), - [sym__expression] = STATE(3728), - [sym_comma_expression] = STATE(6585), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(6051), - [sym_co_return_statement] = STATE(6051), - [sym_co_yield_statement] = STATE(6051), - [sym_throw_statement] = STATE(6051), - [sym_try_statement] = STATE(6051), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(183), - [sym_identifier] = ACTIONS(1841), - [anon_sym_LPAREN2] = ACTIONS(960), + [297] = { + [sym_attribute_declaration] = STATE(290), + [sym_compound_statement] = STATE(387), + [sym_attributed_statement] = STATE(386), + [sym_labeled_statement] = STATE(385), + [sym_expression_statement] = STATE(384), + [sym_if_statement] = STATE(383), + [sym_switch_statement] = STATE(382), + [sym_case_statement] = STATE(381), + [sym_while_statement] = STATE(380), + [sym_do_statement] = STATE(379), + [sym_for_statement] = STATE(378), + [sym_return_statement] = STATE(377), + [sym_break_statement] = STATE(376), + [sym_continue_statement] = STATE(375), + [sym_goto_statement] = STATE(374), + [sym__expression] = STATE(3680), + [sym_comma_expression] = STATE(7175), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(373), + [sym_co_return_statement] = STATE(372), + [sym_co_yield_statement] = STATE(371), + [sym_throw_statement] = STATE(370), + [sym_try_statement] = STATE(367), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(290), + [sym_identifier] = ACTIONS(2135), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(1843), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(245), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(1845), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(1847), - [anon_sym_switch] = ACTIONS(1849), - [anon_sym_case] = ACTIONS(1835), - [anon_sym_default] = ACTIONS(1837), - [anon_sym_while] = ACTIONS(1851), - [anon_sym_do] = ACTIONS(1853), - [anon_sym_for] = ACTIONS(1855), - [anon_sym_return] = ACTIONS(1857), - [anon_sym_break] = ACTIONS(1859), - [anon_sym_continue] = ACTIONS(1861), - [anon_sym_goto] = ACTIONS(1863), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(253), + [anon_sym_switch] = ACTIONS(255), + [anon_sym_case] = ACTIONS(257), + [anon_sym_default] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_do] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_return] = ACTIONS(267), + [anon_sym_break] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(271), + [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -66424,12 +69934,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(1865), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(277), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(1867), - [anon_sym_co_return] = ACTIONS(1869), - [anon_sym_co_yield] = ACTIONS(1871), + [anon_sym_throw] = ACTIONS(279), + [anon_sym_co_return] = ACTIONS(289), + [anon_sym_co_yield] = ACTIONS(291), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -66437,88 +69947,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [285] = { - [sym_attribute_declaration] = STATE(244), - [sym_compound_statement] = STATE(1120), - [sym_attributed_statement] = STATE(1120), - [sym_labeled_statement] = STATE(1120), - [sym_expression_statement] = STATE(1120), - [sym_if_statement] = STATE(1120), - [sym_switch_statement] = STATE(1120), - [sym_case_statement] = STATE(1120), - [sym_while_statement] = STATE(1120), - [sym_do_statement] = STATE(1120), - [sym_for_statement] = STATE(1120), - [sym_return_statement] = STATE(1120), - [sym_break_statement] = STATE(1120), - [sym_continue_statement] = STATE(1120), - [sym_goto_statement] = STATE(1120), - [sym__expression] = STATE(3670), - [sym_comma_expression] = STATE(6450), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(1120), - [sym_co_return_statement] = STATE(1120), - [sym_co_yield_statement] = STATE(1120), - [sym_throw_statement] = STATE(1120), - [sym_try_statement] = STATE(1120), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(244), - [sym_identifier] = ACTIONS(1831), - [anon_sym_LPAREN2] = ACTIONS(960), + [298] = { + [sym_attribute_declaration] = STATE(191), + [sym_compound_statement] = STATE(886), + [sym_attributed_statement] = STATE(886), + [sym_labeled_statement] = STATE(886), + [sym_expression_statement] = STATE(886), + [sym_if_statement] = STATE(886), + [sym_switch_statement] = STATE(886), + [sym_case_statement] = STATE(886), + [sym_while_statement] = STATE(886), + [sym_do_statement] = STATE(886), + [sym_for_statement] = STATE(886), + [sym_return_statement] = STATE(886), + [sym_break_statement] = STATE(886), + [sym_continue_statement] = STATE(886), + [sym_goto_statement] = STATE(886), + [sym__expression] = STATE(3704), + [sym_comma_expression] = STATE(6857), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(886), + [sym_co_return_statement] = STATE(886), + [sym_co_yield_statement] = STATE(886), + [sym_throw_statement] = STATE(886), + [sym_try_statement] = STATE(886), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [sym_identifier] = ACTIONS(2019), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(159), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1312), - [anon_sym_case] = ACTIONS(1835), - [anon_sym_default] = ACTIONS(1837), - [anon_sym_while] = ACTIONS(1314), - [anon_sym_do] = ACTIONS(1316), - [anon_sym_for] = ACTIONS(1318), - [anon_sym_return] = ACTIONS(1320), - [anon_sym_break] = ACTIONS(1322), - [anon_sym_continue] = ACTIONS(1324), - [anon_sym_goto] = ACTIONS(1326), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -66537,12 +70049,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(1328), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(197), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(1330), - [anon_sym_co_return] = ACTIONS(1332), - [anon_sym_co_yield] = ACTIONS(1334), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -66550,88 +70062,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [286] = { - [sym_attribute_declaration] = STATE(303), - [sym_compound_statement] = STATE(735), - [sym_attributed_statement] = STATE(735), - [sym_labeled_statement] = STATE(735), - [sym_expression_statement] = STATE(735), - [sym_if_statement] = STATE(735), - [sym_switch_statement] = STATE(735), - [sym_case_statement] = STATE(735), - [sym_while_statement] = STATE(735), - [sym_do_statement] = STATE(735), - [sym_for_statement] = STATE(735), - [sym_return_statement] = STATE(735), - [sym_break_statement] = STATE(735), - [sym_continue_statement] = STATE(735), - [sym_goto_statement] = STATE(735), - [sym__expression] = STATE(3612), - [sym_comma_expression] = STATE(6539), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(735), - [sym_co_return_statement] = STATE(735), - [sym_co_yield_statement] = STATE(735), - [sym_throw_statement] = STATE(735), - [sym_try_statement] = STATE(735), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(303), - [sym_identifier] = ACTIONS(2093), - [anon_sym_LPAREN2] = ACTIONS(960), + [299] = { + [sym_attribute_declaration] = STATE(290), + [sym_compound_statement] = STATE(364), + [sym_attributed_statement] = STATE(364), + [sym_labeled_statement] = STATE(364), + [sym_expression_statement] = STATE(364), + [sym_if_statement] = STATE(364), + [sym_switch_statement] = STATE(364), + [sym_case_statement] = STATE(364), + [sym_while_statement] = STATE(364), + [sym_do_statement] = STATE(364), + [sym_for_statement] = STATE(364), + [sym_return_statement] = STATE(364), + [sym_break_statement] = STATE(364), + [sym_continue_statement] = STATE(364), + [sym_goto_statement] = STATE(364), + [sym__expression] = STATE(3680), + [sym_comma_expression] = STATE(7175), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(364), + [sym_co_return_statement] = STATE(364), + [sym_co_yield_statement] = STATE(364), + [sym_throw_statement] = STATE(364), + [sym_try_statement] = STATE(364), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(290), + [sym_identifier] = ACTIONS(2135), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(594), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(245), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(600), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(602), - [anon_sym_switch] = ACTIONS(604), - [anon_sym_case] = ACTIONS(606), - [anon_sym_default] = ACTIONS(608), - [anon_sym_while] = ACTIONS(610), - [anon_sym_do] = ACTIONS(612), - [anon_sym_for] = ACTIONS(614), - [anon_sym_return] = ACTIONS(616), - [anon_sym_break] = ACTIONS(618), - [anon_sym_continue] = ACTIONS(620), - [anon_sym_goto] = ACTIONS(622), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(253), + [anon_sym_switch] = ACTIONS(255), + [anon_sym_case] = ACTIONS(257), + [anon_sym_default] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_do] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_return] = ACTIONS(267), + [anon_sym_break] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(271), + [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -66650,12 +70164,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(626), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(277), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(628), - [anon_sym_co_return] = ACTIONS(638), - [anon_sym_co_yield] = ACTIONS(640), + [anon_sym_throw] = ACTIONS(279), + [anon_sym_co_return] = ACTIONS(289), + [anon_sym_co_yield] = ACTIONS(291), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -66663,88 +70177,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [287] = { - [sym_attribute_declaration] = STATE(303), - [sym_compound_statement] = STATE(544), - [sym_attributed_statement] = STATE(544), - [sym_labeled_statement] = STATE(544), - [sym_expression_statement] = STATE(544), - [sym_if_statement] = STATE(544), - [sym_switch_statement] = STATE(544), - [sym_case_statement] = STATE(544), - [sym_while_statement] = STATE(544), - [sym_do_statement] = STATE(544), - [sym_for_statement] = STATE(544), - [sym_return_statement] = STATE(544), - [sym_break_statement] = STATE(544), - [sym_continue_statement] = STATE(544), - [sym_goto_statement] = STATE(544), - [sym__expression] = STATE(3612), - [sym_comma_expression] = STATE(6539), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(544), - [sym_co_return_statement] = STATE(544), - [sym_co_yield_statement] = STATE(544), - [sym_throw_statement] = STATE(544), - [sym_try_statement] = STATE(544), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(303), - [sym_identifier] = ACTIONS(2093), - [anon_sym_LPAREN2] = ACTIONS(960), + [300] = { + [sym_attribute_declaration] = STATE(191), + [sym_compound_statement] = STATE(882), + [sym_attributed_statement] = STATE(882), + [sym_labeled_statement] = STATE(882), + [sym_expression_statement] = STATE(882), + [sym_if_statement] = STATE(882), + [sym_switch_statement] = STATE(882), + [sym_case_statement] = STATE(882), + [sym_while_statement] = STATE(882), + [sym_do_statement] = STATE(882), + [sym_for_statement] = STATE(882), + [sym_return_statement] = STATE(882), + [sym_break_statement] = STATE(882), + [sym_continue_statement] = STATE(882), + [sym_goto_statement] = STATE(882), + [sym__expression] = STATE(3704), + [sym_comma_expression] = STATE(6857), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(882), + [sym_co_return_statement] = STATE(882), + [sym_co_yield_statement] = STATE(882), + [sym_throw_statement] = STATE(882), + [sym_try_statement] = STATE(882), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [sym_identifier] = ACTIONS(2019), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(594), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(159), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(600), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(602), - [anon_sym_switch] = ACTIONS(604), - [anon_sym_case] = ACTIONS(606), - [anon_sym_default] = ACTIONS(608), - [anon_sym_while] = ACTIONS(610), - [anon_sym_do] = ACTIONS(612), - [anon_sym_for] = ACTIONS(614), - [anon_sym_return] = ACTIONS(616), - [anon_sym_break] = ACTIONS(618), - [anon_sym_continue] = ACTIONS(620), - [anon_sym_goto] = ACTIONS(622), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(171), + [anon_sym_switch] = ACTIONS(173), + [anon_sym_case] = ACTIONS(175), + [anon_sym_default] = ACTIONS(177), + [anon_sym_while] = ACTIONS(179), + [anon_sym_do] = ACTIONS(181), + [anon_sym_for] = ACTIONS(183), + [anon_sym_return] = ACTIONS(185), + [anon_sym_break] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(189), + [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -66763,12 +70279,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(626), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(197), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(628), - [anon_sym_co_return] = ACTIONS(638), - [anon_sym_co_yield] = ACTIONS(640), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_co_return] = ACTIONS(209), + [anon_sym_co_yield] = ACTIONS(211), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -66776,88 +70292,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [288] = { - [sym_attribute_declaration] = STATE(303), - [sym_compound_statement] = STATE(545), - [sym_attributed_statement] = STATE(545), - [sym_labeled_statement] = STATE(545), - [sym_expression_statement] = STATE(545), - [sym_if_statement] = STATE(545), - [sym_switch_statement] = STATE(545), - [sym_case_statement] = STATE(545), - [sym_while_statement] = STATE(545), - [sym_do_statement] = STATE(545), - [sym_for_statement] = STATE(545), - [sym_return_statement] = STATE(545), - [sym_break_statement] = STATE(545), - [sym_continue_statement] = STATE(545), - [sym_goto_statement] = STATE(545), - [sym__expression] = STATE(3612), - [sym_comma_expression] = STATE(6539), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(545), - [sym_co_return_statement] = STATE(545), - [sym_co_yield_statement] = STATE(545), - [sym_throw_statement] = STATE(545), - [sym_try_statement] = STATE(545), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(303), - [sym_identifier] = ACTIONS(2093), - [anon_sym_LPAREN2] = ACTIONS(960), + [301] = { + [sym_attribute_declaration] = STATE(290), + [sym_compound_statement] = STATE(355), + [sym_attributed_statement] = STATE(355), + [sym_labeled_statement] = STATE(355), + [sym_expression_statement] = STATE(355), + [sym_if_statement] = STATE(355), + [sym_switch_statement] = STATE(355), + [sym_case_statement] = STATE(355), + [sym_while_statement] = STATE(355), + [sym_do_statement] = STATE(355), + [sym_for_statement] = STATE(355), + [sym_return_statement] = STATE(355), + [sym_break_statement] = STATE(355), + [sym_continue_statement] = STATE(355), + [sym_goto_statement] = STATE(355), + [sym__expression] = STATE(3680), + [sym_comma_expression] = STATE(7175), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(355), + [sym_co_return_statement] = STATE(355), + [sym_co_yield_statement] = STATE(355), + [sym_throw_statement] = STATE(355), + [sym_try_statement] = STATE(355), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(290), + [sym_identifier] = ACTIONS(2135), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(594), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(245), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(600), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(602), - [anon_sym_switch] = ACTIONS(604), - [anon_sym_case] = ACTIONS(606), - [anon_sym_default] = ACTIONS(608), - [anon_sym_while] = ACTIONS(610), - [anon_sym_do] = ACTIONS(612), - [anon_sym_for] = ACTIONS(614), - [anon_sym_return] = ACTIONS(616), - [anon_sym_break] = ACTIONS(618), - [anon_sym_continue] = ACTIONS(620), - [anon_sym_goto] = ACTIONS(622), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(253), + [anon_sym_switch] = ACTIONS(255), + [anon_sym_case] = ACTIONS(257), + [anon_sym_default] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_do] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_return] = ACTIONS(267), + [anon_sym_break] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(271), + [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -66876,12 +70394,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(626), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(277), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(628), - [anon_sym_co_return] = ACTIONS(638), - [anon_sym_co_yield] = ACTIONS(640), + [anon_sym_throw] = ACTIONS(279), + [anon_sym_co_return] = ACTIONS(289), + [anon_sym_co_yield] = ACTIONS(291), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -66889,88 +70407,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [289] = { - [sym_attribute_declaration] = STATE(296), - [sym_compound_statement] = STATE(766), - [sym_attributed_statement] = STATE(766), - [sym_labeled_statement] = STATE(766), - [sym_expression_statement] = STATE(766), - [sym_if_statement] = STATE(766), - [sym_switch_statement] = STATE(766), - [sym_case_statement] = STATE(766), - [sym_while_statement] = STATE(766), - [sym_do_statement] = STATE(766), - [sym_for_statement] = STATE(766), - [sym_return_statement] = STATE(766), - [sym_break_statement] = STATE(766), - [sym_continue_statement] = STATE(766), - [sym_goto_statement] = STATE(766), - [sym__expression] = STATE(3645), - [sym_comma_expression] = STATE(6499), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(766), - [sym_co_return_statement] = STATE(766), - [sym_co_yield_statement] = STATE(766), - [sym_throw_statement] = STATE(766), - [sym_try_statement] = STATE(766), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [sym_identifier] = ACTIONS(1989), - [anon_sym_LPAREN2] = ACTIONS(960), + [302] = { + [sym_attribute_declaration] = STATE(222), + [sym_compound_statement] = STATE(692), + [sym_attributed_statement] = STATE(692), + [sym_labeled_statement] = STATE(692), + [sym_expression_statement] = STATE(692), + [sym_if_statement] = STATE(692), + [sym_switch_statement] = STATE(692), + [sym_case_statement] = STATE(692), + [sym_while_statement] = STATE(692), + [sym_do_statement] = STATE(692), + [sym_for_statement] = STATE(692), + [sym_return_statement] = STATE(692), + [sym_break_statement] = STATE(692), + [sym_continue_statement] = STATE(692), + [sym_goto_statement] = STATE(692), + [sym__expression] = STATE(3763), + [sym_comma_expression] = STATE(6972), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(692), + [sym_co_return_statement] = STATE(692), + [sym_co_yield_statement] = STATE(692), + [sym_throw_statement] = STATE(692), + [sym_try_statement] = STATE(692), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(222), + [sym_identifier] = ACTIONS(2187), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(560), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(536), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(171), - [anon_sym_switch] = ACTIONS(173), - [anon_sym_case] = ACTIONS(175), - [anon_sym_default] = ACTIONS(177), - [anon_sym_while] = ACTIONS(179), - [anon_sym_do] = ACTIONS(181), - [anon_sym_for] = ACTIONS(183), - [anon_sym_return] = ACTIONS(185), - [anon_sym_break] = ACTIONS(187), - [anon_sym_continue] = ACTIONS(189), - [anon_sym_goto] = ACTIONS(191), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(566), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(568), + [anon_sym_switch] = ACTIONS(570), + [anon_sym_case] = ACTIONS(572), + [anon_sym_default] = ACTIONS(574), + [anon_sym_while] = ACTIONS(576), + [anon_sym_do] = ACTIONS(578), + [anon_sym_for] = ACTIONS(580), + [anon_sym_return] = ACTIONS(582), + [anon_sym_break] = ACTIONS(584), + [anon_sym_continue] = ACTIONS(586), + [anon_sym_goto] = ACTIONS(588), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -66989,12 +70509,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(197), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(592), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(199), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_throw] = ACTIONS(594), + [anon_sym_co_return] = ACTIONS(604), + [anon_sym_co_yield] = ACTIONS(606), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -67002,201 +70522,205 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [290] = { - [sym_attribute_declaration] = STATE(290), - [sym_compound_statement] = STATE(726), - [sym_attributed_statement] = STATE(726), - [sym_labeled_statement] = STATE(726), - [sym_expression_statement] = STATE(726), - [sym_if_statement] = STATE(726), - [sym_switch_statement] = STATE(726), - [sym_case_statement] = STATE(726), - [sym_while_statement] = STATE(726), - [sym_do_statement] = STATE(726), - [sym_for_statement] = STATE(726), - [sym_return_statement] = STATE(726), - [sym_break_statement] = STATE(726), - [sym_continue_statement] = STATE(726), - [sym_goto_statement] = STATE(726), - [sym__expression] = STATE(3605), - [sym_comma_expression] = STATE(6558), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(726), - [sym_co_return_statement] = STATE(726), - [sym_co_yield_statement] = STATE(726), - [sym_throw_statement] = STATE(726), - [sym_try_statement] = STATE(726), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(290), - [sym_identifier] = ACTIONS(2095), - [anon_sym_LPAREN2] = ACTIONS(1876), - [anon_sym_BANG] = ACTIONS(1879), - [anon_sym_TILDE] = ACTIONS(1879), - [anon_sym_DASH] = ACTIONS(1882), - [anon_sym_PLUS] = ACTIONS(1882), - [anon_sym_STAR] = ACTIONS(1885), - [anon_sym_AMP] = ACTIONS(1885), - [anon_sym_SEMI] = ACTIONS(2098), - [anon_sym_COLON_COLON] = ACTIONS(1891), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), - [anon_sym_LBRACE] = ACTIONS(2101), - [anon_sym_LBRACK] = ACTIONS(1900), - [sym_primitive_type] = ACTIONS(1903), - [anon_sym_if] = ACTIONS(2104), - [anon_sym_switch] = ACTIONS(2107), - [anon_sym_case] = ACTIONS(2110), - [anon_sym_default] = ACTIONS(2113), - [anon_sym_while] = ACTIONS(2116), - [anon_sym_do] = ACTIONS(2119), - [anon_sym_for] = ACTIONS(2122), - [anon_sym_return] = ACTIONS(2125), - [anon_sym_break] = ACTIONS(2128), - [anon_sym_continue] = ACTIONS(2131), - [anon_sym_goto] = ACTIONS(2134), - [anon_sym_DASH_DASH] = ACTIONS(1939), - [anon_sym_PLUS_PLUS] = ACTIONS(1939), - [anon_sym_sizeof] = ACTIONS(1942), - [sym_number_literal] = ACTIONS(1945), - [anon_sym_L_SQUOTE] = ACTIONS(1948), - [anon_sym_u_SQUOTE] = ACTIONS(1948), - [anon_sym_U_SQUOTE] = ACTIONS(1948), - [anon_sym_u8_SQUOTE] = ACTIONS(1948), - [anon_sym_SQUOTE] = ACTIONS(1948), - [anon_sym_L_DQUOTE] = ACTIONS(1951), - [anon_sym_u_DQUOTE] = ACTIONS(1951), - [anon_sym_U_DQUOTE] = ACTIONS(1951), - [anon_sym_u8_DQUOTE] = ACTIONS(1951), - [anon_sym_DQUOTE] = ACTIONS(1951), - [sym_true] = ACTIONS(1954), - [sym_false] = ACTIONS(1954), - [sym_null] = ACTIONS(1954), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1957), - [anon_sym_try] = ACTIONS(2137), - [anon_sym_delete] = ACTIONS(1963), - [anon_sym_throw] = ACTIONS(2140), - [anon_sym_co_return] = ACTIONS(2143), - [anon_sym_co_yield] = ACTIONS(2146), - [anon_sym_co_await] = ACTIONS(1975), - [anon_sym_new] = ACTIONS(1978), - [anon_sym_requires] = ACTIONS(1981), - [sym_this] = ACTIONS(1954), - [sym_nullptr] = ACTIONS(1954), - [sym_raw_string_literal] = ACTIONS(1984), + [303] = { + [sym_attribute_declaration] = STATE(303), + [sym_compound_statement] = STATE(890), + [sym_attributed_statement] = STATE(890), + [sym_labeled_statement] = STATE(890), + [sym_expression_statement] = STATE(890), + [sym_if_statement] = STATE(890), + [sym_switch_statement] = STATE(890), + [sym_case_statement] = STATE(890), + [sym_while_statement] = STATE(890), + [sym_do_statement] = STATE(890), + [sym_for_statement] = STATE(890), + [sym_return_statement] = STATE(890), + [sym_break_statement] = STATE(890), + [sym_continue_statement] = STATE(890), + [sym_goto_statement] = STATE(890), + [sym__expression] = STATE(3704), + [sym_comma_expression] = STATE(6857), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(890), + [sym_co_return_statement] = STATE(890), + [sym_co_yield_statement] = STATE(890), + [sym_throw_statement] = STATE(890), + [sym_try_statement] = STATE(890), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(303), + [sym_identifier] = ACTIONS(2297), + [anon_sym_LPAREN2] = ACTIONS(2024), + [anon_sym_BANG] = ACTIONS(2027), + [anon_sym_TILDE] = ACTIONS(2027), + [anon_sym_DASH] = ACTIONS(2030), + [anon_sym_PLUS] = ACTIONS(2030), + [anon_sym_STAR] = ACTIONS(2033), + [anon_sym_AMP] = ACTIONS(2033), + [anon_sym_SEMI] = ACTIONS(2300), + [anon_sym_COLON_COLON] = ACTIONS(2039), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2042), + [anon_sym_LBRACE] = ACTIONS(2303), + [anon_sym_LBRACK] = ACTIONS(2048), + [sym_primitive_type] = ACTIONS(2051), + [anon_sym_if] = ACTIONS(2306), + [anon_sym_switch] = ACTIONS(2309), + [anon_sym_case] = ACTIONS(2312), + [anon_sym_default] = ACTIONS(2315), + [anon_sym_while] = ACTIONS(2318), + [anon_sym_do] = ACTIONS(2321), + [anon_sym_for] = ACTIONS(2324), + [anon_sym_return] = ACTIONS(2327), + [anon_sym_break] = ACTIONS(2330), + [anon_sym_continue] = ACTIONS(2333), + [anon_sym_goto] = ACTIONS(2336), + [anon_sym_not] = ACTIONS(2030), + [anon_sym_compl] = ACTIONS(2030), + [anon_sym_DASH_DASH] = ACTIONS(2087), + [anon_sym_PLUS_PLUS] = ACTIONS(2087), + [anon_sym_sizeof] = ACTIONS(2090), + [sym_number_literal] = ACTIONS(2093), + [anon_sym_L_SQUOTE] = ACTIONS(2096), + [anon_sym_u_SQUOTE] = ACTIONS(2096), + [anon_sym_U_SQUOTE] = ACTIONS(2096), + [anon_sym_u8_SQUOTE] = ACTIONS(2096), + [anon_sym_SQUOTE] = ACTIONS(2096), + [anon_sym_L_DQUOTE] = ACTIONS(2099), + [anon_sym_u_DQUOTE] = ACTIONS(2099), + [anon_sym_U_DQUOTE] = ACTIONS(2099), + [anon_sym_u8_DQUOTE] = ACTIONS(2099), + [anon_sym_DQUOTE] = ACTIONS(2099), + [sym_true] = ACTIONS(2102), + [sym_false] = ACTIONS(2102), + [sym_null] = ACTIONS(2102), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(2105), + [anon_sym_try] = ACTIONS(2339), + [anon_sym_delete] = ACTIONS(2111), + [anon_sym_throw] = ACTIONS(2342), + [anon_sym_co_return] = ACTIONS(2345), + [anon_sym_co_yield] = ACTIONS(2348), + [anon_sym_co_await] = ACTIONS(2123), + [anon_sym_new] = ACTIONS(2126), + [anon_sym_requires] = ACTIONS(2129), + [sym_this] = ACTIONS(2102), + [sym_nullptr] = ACTIONS(2102), + [sym_raw_string_literal] = ACTIONS(2132), }, - [291] = { - [sym_attribute_declaration] = STATE(296), - [sym_compound_statement] = STATE(798), - [sym_attributed_statement] = STATE(798), - [sym_labeled_statement] = STATE(798), - [sym_expression_statement] = STATE(798), - [sym_if_statement] = STATE(798), - [sym_switch_statement] = STATE(798), - [sym_case_statement] = STATE(798), - [sym_while_statement] = STATE(798), - [sym_do_statement] = STATE(798), - [sym_for_statement] = STATE(798), - [sym_return_statement] = STATE(798), - [sym_break_statement] = STATE(798), - [sym_continue_statement] = STATE(798), - [sym_goto_statement] = STATE(798), - [sym__expression] = STATE(3645), - [sym_comma_expression] = STATE(6499), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(798), - [sym_co_return_statement] = STATE(798), - [sym_co_yield_statement] = STATE(798), - [sym_throw_statement] = STATE(798), - [sym_try_statement] = STATE(798), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [sym_identifier] = ACTIONS(1989), - [anon_sym_LPAREN2] = ACTIONS(960), + [304] = { + [sym_attribute_declaration] = STATE(302), + [sym_compound_statement] = STATE(649), + [sym_attributed_statement] = STATE(649), + [sym_labeled_statement] = STATE(649), + [sym_expression_statement] = STATE(649), + [sym_if_statement] = STATE(649), + [sym_switch_statement] = STATE(649), + [sym_case_statement] = STATE(649), + [sym_while_statement] = STATE(649), + [sym_do_statement] = STATE(649), + [sym_for_statement] = STATE(649), + [sym_return_statement] = STATE(649), + [sym_break_statement] = STATE(649), + [sym_continue_statement] = STATE(649), + [sym_goto_statement] = STATE(649), + [sym__expression] = STATE(3763), + [sym_comma_expression] = STATE(6972), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(649), + [sym_co_return_statement] = STATE(649), + [sym_co_yield_statement] = STATE(649), + [sym_throw_statement] = STATE(649), + [sym_try_statement] = STATE(649), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(302), + [sym_identifier] = ACTIONS(2187), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(560), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(536), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(171), - [anon_sym_switch] = ACTIONS(173), - [anon_sym_case] = ACTIONS(175), - [anon_sym_default] = ACTIONS(177), - [anon_sym_while] = ACTIONS(179), - [anon_sym_do] = ACTIONS(181), - [anon_sym_for] = ACTIONS(183), - [anon_sym_return] = ACTIONS(185), - [anon_sym_break] = ACTIONS(187), - [anon_sym_continue] = ACTIONS(189), - [anon_sym_goto] = ACTIONS(191), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(566), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(568), + [anon_sym_switch] = ACTIONS(570), + [anon_sym_case] = ACTIONS(572), + [anon_sym_default] = ACTIONS(574), + [anon_sym_while] = ACTIONS(576), + [anon_sym_do] = ACTIONS(578), + [anon_sym_for] = ACTIONS(580), + [anon_sym_return] = ACTIONS(582), + [anon_sym_break] = ACTIONS(584), + [anon_sym_continue] = ACTIONS(586), + [anon_sym_goto] = ACTIONS(588), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -67215,12 +70739,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(197), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(592), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(199), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_throw] = ACTIONS(594), + [anon_sym_co_return] = ACTIONS(604), + [anon_sym_co_yield] = ACTIONS(606), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -67228,88 +70752,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [292] = { - [sym_attribute_declaration] = STATE(296), - [sym_compound_statement] = STATE(830), - [sym_attributed_statement] = STATE(830), - [sym_labeled_statement] = STATE(830), - [sym_expression_statement] = STATE(830), - [sym_if_statement] = STATE(830), - [sym_switch_statement] = STATE(830), - [sym_case_statement] = STATE(830), - [sym_while_statement] = STATE(830), - [sym_do_statement] = STATE(830), - [sym_for_statement] = STATE(830), - [sym_return_statement] = STATE(830), - [sym_break_statement] = STATE(830), - [sym_continue_statement] = STATE(830), - [sym_goto_statement] = STATE(830), - [sym__expression] = STATE(3645), - [sym_comma_expression] = STATE(6499), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(830), - [sym_co_return_statement] = STATE(830), - [sym_co_yield_statement] = STATE(830), - [sym_throw_statement] = STATE(830), - [sym_try_statement] = STATE(830), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [sym_identifier] = ACTIONS(1989), - [anon_sym_LPAREN2] = ACTIONS(960), + [305] = { + [sym_attribute_declaration] = STATE(290), + [sym_compound_statement] = STATE(369), + [sym_attributed_statement] = STATE(369), + [sym_labeled_statement] = STATE(369), + [sym_expression_statement] = STATE(369), + [sym_if_statement] = STATE(369), + [sym_switch_statement] = STATE(369), + [sym_case_statement] = STATE(369), + [sym_while_statement] = STATE(369), + [sym_do_statement] = STATE(369), + [sym_for_statement] = STATE(369), + [sym_return_statement] = STATE(369), + [sym_break_statement] = STATE(369), + [sym_continue_statement] = STATE(369), + [sym_goto_statement] = STATE(369), + [sym__expression] = STATE(3680), + [sym_comma_expression] = STATE(7175), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(369), + [sym_co_return_statement] = STATE(369), + [sym_co_yield_statement] = STATE(369), + [sym_throw_statement] = STATE(369), + [sym_try_statement] = STATE(369), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(290), + [sym_identifier] = ACTIONS(2135), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(245), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(536), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(171), - [anon_sym_switch] = ACTIONS(173), - [anon_sym_case] = ACTIONS(175), - [anon_sym_default] = ACTIONS(177), - [anon_sym_while] = ACTIONS(179), - [anon_sym_do] = ACTIONS(181), - [anon_sym_for] = ACTIONS(183), - [anon_sym_return] = ACTIONS(185), - [anon_sym_break] = ACTIONS(187), - [anon_sym_continue] = ACTIONS(189), - [anon_sym_goto] = ACTIONS(191), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(253), + [anon_sym_switch] = ACTIONS(255), + [anon_sym_case] = ACTIONS(257), + [anon_sym_default] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_do] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_return] = ACTIONS(267), + [anon_sym_break] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(271), + [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -67328,12 +70854,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(197), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(277), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(199), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_throw] = ACTIONS(279), + [anon_sym_co_return] = ACTIONS(289), + [anon_sym_co_yield] = ACTIONS(291), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -67341,88 +70867,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [293] = { - [sym_attribute_declaration] = STATE(303), - [sym_compound_statement] = STATE(664), - [sym_attributed_statement] = STATE(664), - [sym_labeled_statement] = STATE(664), - [sym_expression_statement] = STATE(664), - [sym_if_statement] = STATE(664), - [sym_switch_statement] = STATE(664), - [sym_case_statement] = STATE(664), - [sym_while_statement] = STATE(664), - [sym_do_statement] = STATE(664), - [sym_for_statement] = STATE(664), - [sym_return_statement] = STATE(664), - [sym_break_statement] = STATE(664), - [sym_continue_statement] = STATE(664), - [sym_goto_statement] = STATE(664), - [sym__expression] = STATE(3612), - [sym_comma_expression] = STATE(6539), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(664), - [sym_co_return_statement] = STATE(664), - [sym_co_yield_statement] = STATE(664), - [sym_throw_statement] = STATE(664), - [sym_try_statement] = STATE(664), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(303), - [sym_identifier] = ACTIONS(2093), - [anon_sym_LPAREN2] = ACTIONS(960), + [306] = { + [sym_attribute_declaration] = STATE(302), + [sym_compound_statement] = STATE(656), + [sym_attributed_statement] = STATE(656), + [sym_labeled_statement] = STATE(656), + [sym_expression_statement] = STATE(656), + [sym_if_statement] = STATE(656), + [sym_switch_statement] = STATE(656), + [sym_case_statement] = STATE(656), + [sym_while_statement] = STATE(656), + [sym_do_statement] = STATE(656), + [sym_for_statement] = STATE(656), + [sym_return_statement] = STATE(656), + [sym_break_statement] = STATE(656), + [sym_continue_statement] = STATE(656), + [sym_goto_statement] = STATE(656), + [sym__expression] = STATE(3763), + [sym_comma_expression] = STATE(6972), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(656), + [sym_co_return_statement] = STATE(656), + [sym_co_yield_statement] = STATE(656), + [sym_throw_statement] = STATE(656), + [sym_try_statement] = STATE(656), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(302), + [sym_identifier] = ACTIONS(2187), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(594), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(560), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(600), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(602), - [anon_sym_switch] = ACTIONS(604), - [anon_sym_case] = ACTIONS(606), - [anon_sym_default] = ACTIONS(608), - [anon_sym_while] = ACTIONS(610), - [anon_sym_do] = ACTIONS(612), - [anon_sym_for] = ACTIONS(614), - [anon_sym_return] = ACTIONS(616), - [anon_sym_break] = ACTIONS(618), - [anon_sym_continue] = ACTIONS(620), - [anon_sym_goto] = ACTIONS(622), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(566), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(568), + [anon_sym_switch] = ACTIONS(570), + [anon_sym_case] = ACTIONS(572), + [anon_sym_default] = ACTIONS(574), + [anon_sym_while] = ACTIONS(576), + [anon_sym_do] = ACTIONS(578), + [anon_sym_for] = ACTIONS(580), + [anon_sym_return] = ACTIONS(582), + [anon_sym_break] = ACTIONS(584), + [anon_sym_continue] = ACTIONS(586), + [anon_sym_goto] = ACTIONS(588), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -67441,12 +70969,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(626), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(592), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(628), - [anon_sym_co_return] = ACTIONS(638), - [anon_sym_co_yield] = ACTIONS(640), + [anon_sym_throw] = ACTIONS(594), + [anon_sym_co_return] = ACTIONS(604), + [anon_sym_co_yield] = ACTIONS(606), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -67454,88 +70982,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [294] = { - [sym_attribute_declaration] = STATE(296), - [sym_compound_statement] = STATE(895), - [sym_attributed_statement] = STATE(895), - [sym_labeled_statement] = STATE(895), - [sym_expression_statement] = STATE(895), - [sym_if_statement] = STATE(895), - [sym_switch_statement] = STATE(895), - [sym_case_statement] = STATE(895), - [sym_while_statement] = STATE(895), - [sym_do_statement] = STATE(895), - [sym_for_statement] = STATE(895), - [sym_return_statement] = STATE(895), - [sym_break_statement] = STATE(895), - [sym_continue_statement] = STATE(895), - [sym_goto_statement] = STATE(895), - [sym__expression] = STATE(3645), - [sym_comma_expression] = STATE(6499), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(895), - [sym_co_return_statement] = STATE(895), - [sym_co_yield_statement] = STATE(895), - [sym_throw_statement] = STATE(895), - [sym_try_statement] = STATE(895), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [sym_identifier] = ACTIONS(1989), - [anon_sym_LPAREN2] = ACTIONS(960), + [307] = { + [sym_attribute_declaration] = STATE(290), + [sym_compound_statement] = STATE(469), + [sym_attributed_statement] = STATE(469), + [sym_labeled_statement] = STATE(469), + [sym_expression_statement] = STATE(469), + [sym_if_statement] = STATE(469), + [sym_switch_statement] = STATE(469), + [sym_case_statement] = STATE(469), + [sym_while_statement] = STATE(469), + [sym_do_statement] = STATE(469), + [sym_for_statement] = STATE(469), + [sym_return_statement] = STATE(469), + [sym_break_statement] = STATE(469), + [sym_continue_statement] = STATE(469), + [sym_goto_statement] = STATE(469), + [sym__expression] = STATE(3680), + [sym_comma_expression] = STATE(7175), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(469), + [sym_co_return_statement] = STATE(469), + [sym_co_yield_statement] = STATE(469), + [sym_throw_statement] = STATE(469), + [sym_try_statement] = STATE(469), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(290), + [sym_identifier] = ACTIONS(2135), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(159), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(245), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(536), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(171), - [anon_sym_switch] = ACTIONS(173), - [anon_sym_case] = ACTIONS(175), - [anon_sym_default] = ACTIONS(177), - [anon_sym_while] = ACTIONS(179), - [anon_sym_do] = ACTIONS(181), - [anon_sym_for] = ACTIONS(183), - [anon_sym_return] = ACTIONS(185), - [anon_sym_break] = ACTIONS(187), - [anon_sym_continue] = ACTIONS(189), - [anon_sym_goto] = ACTIONS(191), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(253), + [anon_sym_switch] = ACTIONS(255), + [anon_sym_case] = ACTIONS(257), + [anon_sym_default] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_do] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_return] = ACTIONS(267), + [anon_sym_break] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(271), + [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -67554,12 +71084,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(197), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(277), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(199), - [anon_sym_co_return] = ACTIONS(209), - [anon_sym_co_yield] = ACTIONS(211), + [anon_sym_throw] = ACTIONS(279), + [anon_sym_co_return] = ACTIONS(289), + [anon_sym_co_yield] = ACTIONS(291), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -67567,190 +71097,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [295] = { - [sym_attribute_declaration] = STATE(295), - [sym_compound_statement] = STATE(744), - [sym_attributed_statement] = STATE(744), - [sym_labeled_statement] = STATE(744), - [sym_expression_statement] = STATE(744), - [sym_if_statement] = STATE(744), - [sym_switch_statement] = STATE(744), - [sym_case_statement] = STATE(744), - [sym_while_statement] = STATE(744), - [sym_do_statement] = STATE(744), - [sym_for_statement] = STATE(744), - [sym_return_statement] = STATE(744), - [sym_break_statement] = STATE(744), - [sym_continue_statement] = STATE(744), - [sym_goto_statement] = STATE(744), - [sym__expression] = STATE(3645), - [sym_comma_expression] = STATE(6499), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(744), - [sym_co_return_statement] = STATE(744), - [sym_co_yield_statement] = STATE(744), - [sym_throw_statement] = STATE(744), - [sym_try_statement] = STATE(744), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(295), - [sym_identifier] = ACTIONS(2149), - [anon_sym_LPAREN2] = ACTIONS(1876), - [anon_sym_BANG] = ACTIONS(1879), - [anon_sym_TILDE] = ACTIONS(1879), - [anon_sym_DASH] = ACTIONS(1882), - [anon_sym_PLUS] = ACTIONS(1882), - [anon_sym_STAR] = ACTIONS(1885), - [anon_sym_AMP] = ACTIONS(1885), - [anon_sym_SEMI] = ACTIONS(2152), - [anon_sym_COLON_COLON] = ACTIONS(1891), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), - [anon_sym_LBRACE] = ACTIONS(2155), - [anon_sym_LBRACK] = ACTIONS(1900), - [sym_primitive_type] = ACTIONS(1903), - [anon_sym_if] = ACTIONS(2158), - [anon_sym_switch] = ACTIONS(2161), - [anon_sym_case] = ACTIONS(2164), - [anon_sym_default] = ACTIONS(2167), - [anon_sym_while] = ACTIONS(2170), - [anon_sym_do] = ACTIONS(2173), - [anon_sym_for] = ACTIONS(2176), - [anon_sym_return] = ACTIONS(2179), - [anon_sym_break] = ACTIONS(2182), - [anon_sym_continue] = ACTIONS(2185), - [anon_sym_goto] = ACTIONS(2188), - [anon_sym_DASH_DASH] = ACTIONS(1939), - [anon_sym_PLUS_PLUS] = ACTIONS(1939), - [anon_sym_sizeof] = ACTIONS(1942), - [sym_number_literal] = ACTIONS(1945), - [anon_sym_L_SQUOTE] = ACTIONS(1948), - [anon_sym_u_SQUOTE] = ACTIONS(1948), - [anon_sym_U_SQUOTE] = ACTIONS(1948), - [anon_sym_u8_SQUOTE] = ACTIONS(1948), - [anon_sym_SQUOTE] = ACTIONS(1948), - [anon_sym_L_DQUOTE] = ACTIONS(1951), - [anon_sym_u_DQUOTE] = ACTIONS(1951), - [anon_sym_U_DQUOTE] = ACTIONS(1951), - [anon_sym_u8_DQUOTE] = ACTIONS(1951), - [anon_sym_DQUOTE] = ACTIONS(1951), - [sym_true] = ACTIONS(1954), - [sym_false] = ACTIONS(1954), - [sym_null] = ACTIONS(1954), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1957), - [anon_sym_try] = ACTIONS(2191), - [anon_sym_delete] = ACTIONS(1963), - [anon_sym_throw] = ACTIONS(2194), - [anon_sym_co_return] = ACTIONS(2197), - [anon_sym_co_yield] = ACTIONS(2200), - [anon_sym_co_await] = ACTIONS(1975), - [anon_sym_new] = ACTIONS(1978), - [anon_sym_requires] = ACTIONS(1981), - [sym_this] = ACTIONS(1954), - [sym_nullptr] = ACTIONS(1954), - [sym_raw_string_literal] = ACTIONS(1984), - }, - [296] = { - [sym_attribute_declaration] = STATE(295), - [sym_compound_statement] = STATE(744), - [sym_attributed_statement] = STATE(744), - [sym_labeled_statement] = STATE(744), - [sym_expression_statement] = STATE(744), - [sym_if_statement] = STATE(744), - [sym_switch_statement] = STATE(744), - [sym_case_statement] = STATE(744), - [sym_while_statement] = STATE(744), - [sym_do_statement] = STATE(744), - [sym_for_statement] = STATE(744), - [sym_return_statement] = STATE(744), - [sym_break_statement] = STATE(744), - [sym_continue_statement] = STATE(744), - [sym_goto_statement] = STATE(744), - [sym__expression] = STATE(3645), - [sym_comma_expression] = STATE(6499), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(744), - [sym_co_return_statement] = STATE(744), - [sym_co_yield_statement] = STATE(744), - [sym_throw_statement] = STATE(744), - [sym_try_statement] = STATE(744), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(295), - [sym_identifier] = ACTIONS(1989), - [anon_sym_LPAREN2] = ACTIONS(960), + [308] = { + [sym_attribute_declaration] = STATE(191), + [sym_compound_statement] = STATE(868), + [sym_attributed_statement] = STATE(868), + [sym_labeled_statement] = STATE(868), + [sym_expression_statement] = STATE(868), + [sym_if_statement] = STATE(868), + [sym_switch_statement] = STATE(868), + [sym_case_statement] = STATE(868), + [sym_while_statement] = STATE(868), + [sym_do_statement] = STATE(868), + [sym_for_statement] = STATE(868), + [sym_return_statement] = STATE(868), + [sym_break_statement] = STATE(868), + [sym_continue_statement] = STATE(868), + [sym_goto_statement] = STATE(868), + [sym__expression] = STATE(3704), + [sym_comma_expression] = STATE(6857), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(868), + [sym_co_return_statement] = STATE(868), + [sym_co_yield_statement] = STATE(868), + [sym_throw_statement] = STATE(868), + [sym_try_statement] = STATE(868), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [sym_identifier] = ACTIONS(2019), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), [anon_sym_SEMI] = ACTIONS(159), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), [anon_sym_LBRACE] = ACTIONS(536), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), [anon_sym_if] = ACTIONS(171), [anon_sym_switch] = ACTIONS(173), [anon_sym_case] = ACTIONS(175), @@ -67762,6 +71179,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(187), [anon_sym_continue] = ACTIONS(189), [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -67780,7 +71199,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), + [anon_sym_template] = ACTIONS(976), [anon_sym_try] = ACTIONS(197), [anon_sym_delete] = ACTIONS(121), [anon_sym_throw] = ACTIONS(199), @@ -67793,77 +71212,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [297] = { - [sym_attribute_declaration] = STATE(296), - [sym_compound_statement] = STATE(876), - [sym_attributed_statement] = STATE(876), - [sym_labeled_statement] = STATE(876), - [sym_expression_statement] = STATE(876), - [sym_if_statement] = STATE(876), - [sym_switch_statement] = STATE(876), - [sym_case_statement] = STATE(876), - [sym_while_statement] = STATE(876), - [sym_do_statement] = STATE(876), - [sym_for_statement] = STATE(876), - [sym_return_statement] = STATE(876), - [sym_break_statement] = STATE(876), - [sym_continue_statement] = STATE(876), - [sym_goto_statement] = STATE(876), - [sym__expression] = STATE(3645), - [sym_comma_expression] = STATE(6499), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(876), - [sym_co_return_statement] = STATE(876), - [sym_co_yield_statement] = STATE(876), - [sym_throw_statement] = STATE(876), - [sym_try_statement] = STATE(876), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(296), - [sym_identifier] = ACTIONS(1989), - [anon_sym_LPAREN2] = ACTIONS(960), + [309] = { + [sym_attribute_declaration] = STATE(191), + [sym_compound_statement] = STATE(812), + [sym_attributed_statement] = STATE(812), + [sym_labeled_statement] = STATE(812), + [sym_expression_statement] = STATE(812), + [sym_if_statement] = STATE(812), + [sym_switch_statement] = STATE(812), + [sym_case_statement] = STATE(812), + [sym_while_statement] = STATE(812), + [sym_do_statement] = STATE(812), + [sym_for_statement] = STATE(812), + [sym_return_statement] = STATE(812), + [sym_break_statement] = STATE(812), + [sym_continue_statement] = STATE(812), + [sym_goto_statement] = STATE(812), + [sym__expression] = STATE(3704), + [sym_comma_expression] = STATE(6857), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(812), + [sym_co_return_statement] = STATE(812), + [sym_co_yield_statement] = STATE(812), + [sym_throw_statement] = STATE(812), + [sym_try_statement] = STATE(812), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [sym_identifier] = ACTIONS(2019), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), [anon_sym_SEMI] = ACTIONS(159), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), [anon_sym_LBRACE] = ACTIONS(536), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), [anon_sym_if] = ACTIONS(171), [anon_sym_switch] = ACTIONS(173), [anon_sym_case] = ACTIONS(175), @@ -67875,6 +71294,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(187), [anon_sym_continue] = ACTIONS(189), [anon_sym_goto] = ACTIONS(191), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -67893,7 +71314,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), + [anon_sym_template] = ACTIONS(976), [anon_sym_try] = ACTIONS(197), [anon_sym_delete] = ACTIONS(121), [anon_sym_throw] = ACTIONS(199), @@ -67906,88 +71327,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [298] = { - [sym_attribute_declaration] = STATE(303), - [sym_compound_statement] = STATE(743), - [sym_attributed_statement] = STATE(743), - [sym_labeled_statement] = STATE(743), - [sym_expression_statement] = STATE(743), - [sym_if_statement] = STATE(743), - [sym_switch_statement] = STATE(743), - [sym_case_statement] = STATE(743), - [sym_while_statement] = STATE(743), - [sym_do_statement] = STATE(743), - [sym_for_statement] = STATE(743), - [sym_return_statement] = STATE(743), - [sym_break_statement] = STATE(743), - [sym_continue_statement] = STATE(743), - [sym_goto_statement] = STATE(743), - [sym__expression] = STATE(3612), - [sym_comma_expression] = STATE(6539), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(743), - [sym_co_return_statement] = STATE(743), - [sym_co_yield_statement] = STATE(743), - [sym_throw_statement] = STATE(743), - [sym_try_statement] = STATE(743), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(303), - [sym_identifier] = ACTIONS(2093), - [anon_sym_LPAREN2] = ACTIONS(960), + [310] = { + [sym_attribute_declaration] = STATE(302), + [sym_compound_statement] = STATE(567), + [sym_attributed_statement] = STATE(567), + [sym_labeled_statement] = STATE(567), + [sym_expression_statement] = STATE(567), + [sym_if_statement] = STATE(567), + [sym_switch_statement] = STATE(567), + [sym_case_statement] = STATE(567), + [sym_while_statement] = STATE(567), + [sym_do_statement] = STATE(567), + [sym_for_statement] = STATE(567), + [sym_return_statement] = STATE(567), + [sym_break_statement] = STATE(567), + [sym_continue_statement] = STATE(567), + [sym_goto_statement] = STATE(567), + [sym__expression] = STATE(3763), + [sym_comma_expression] = STATE(6972), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(567), + [sym_co_return_statement] = STATE(567), + [sym_co_yield_statement] = STATE(567), + [sym_throw_statement] = STATE(567), + [sym_try_statement] = STATE(567), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(302), + [sym_identifier] = ACTIONS(2187), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(594), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(560), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(600), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(602), - [anon_sym_switch] = ACTIONS(604), - [anon_sym_case] = ACTIONS(606), - [anon_sym_default] = ACTIONS(608), - [anon_sym_while] = ACTIONS(610), - [anon_sym_do] = ACTIONS(612), - [anon_sym_for] = ACTIONS(614), - [anon_sym_return] = ACTIONS(616), - [anon_sym_break] = ACTIONS(618), - [anon_sym_continue] = ACTIONS(620), - [anon_sym_goto] = ACTIONS(622), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(566), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(568), + [anon_sym_switch] = ACTIONS(570), + [anon_sym_case] = ACTIONS(572), + [anon_sym_default] = ACTIONS(574), + [anon_sym_while] = ACTIONS(576), + [anon_sym_do] = ACTIONS(578), + [anon_sym_for] = ACTIONS(580), + [anon_sym_return] = ACTIONS(582), + [anon_sym_break] = ACTIONS(584), + [anon_sym_continue] = ACTIONS(586), + [anon_sym_goto] = ACTIONS(588), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -68006,12 +71429,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(626), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(592), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(628), - [anon_sym_co_return] = ACTIONS(638), - [anon_sym_co_yield] = ACTIONS(640), + [anon_sym_throw] = ACTIONS(594), + [anon_sym_co_return] = ACTIONS(604), + [anon_sym_co_yield] = ACTIONS(606), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -68019,201 +71442,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [299] = { - [sym_attribute_declaration] = STATE(299), - [sym_compound_statement] = STATE(858), - [sym_attributed_statement] = STATE(858), - [sym_labeled_statement] = STATE(858), - [sym_expression_statement] = STATE(858), - [sym_if_statement] = STATE(858), - [sym_switch_statement] = STATE(858), - [sym_case_statement] = STATE(858), - [sym_while_statement] = STATE(858), - [sym_do_statement] = STATE(858), - [sym_for_statement] = STATE(858), - [sym_return_statement] = STATE(858), - [sym_break_statement] = STATE(858), - [sym_continue_statement] = STATE(858), - [sym_goto_statement] = STATE(858), - [sym__expression] = STATE(3612), - [sym_comma_expression] = STATE(6539), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(858), - [sym_co_return_statement] = STATE(858), - [sym_co_yield_statement] = STATE(858), - [sym_throw_statement] = STATE(858), - [sym_try_statement] = STATE(858), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(299), - [sym_identifier] = ACTIONS(2203), - [anon_sym_LPAREN2] = ACTIONS(1876), - [anon_sym_BANG] = ACTIONS(1879), - [anon_sym_TILDE] = ACTIONS(1879), - [anon_sym_DASH] = ACTIONS(1882), - [anon_sym_PLUS] = ACTIONS(1882), - [anon_sym_STAR] = ACTIONS(1885), - [anon_sym_AMP] = ACTIONS(1885), - [anon_sym_SEMI] = ACTIONS(2206), - [anon_sym_COLON_COLON] = ACTIONS(1891), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1894), - [anon_sym_LBRACE] = ACTIONS(2209), - [anon_sym_LBRACK] = ACTIONS(1900), - [sym_primitive_type] = ACTIONS(1903), - [anon_sym_if] = ACTIONS(2212), - [anon_sym_switch] = ACTIONS(2215), - [anon_sym_case] = ACTIONS(2218), - [anon_sym_default] = ACTIONS(2221), - [anon_sym_while] = ACTIONS(2224), - [anon_sym_do] = ACTIONS(2227), - [anon_sym_for] = ACTIONS(2230), - [anon_sym_return] = ACTIONS(2233), - [anon_sym_break] = ACTIONS(2236), - [anon_sym_continue] = ACTIONS(2239), - [anon_sym_goto] = ACTIONS(2242), - [anon_sym_DASH_DASH] = ACTIONS(1939), - [anon_sym_PLUS_PLUS] = ACTIONS(1939), - [anon_sym_sizeof] = ACTIONS(1942), - [sym_number_literal] = ACTIONS(1945), - [anon_sym_L_SQUOTE] = ACTIONS(1948), - [anon_sym_u_SQUOTE] = ACTIONS(1948), - [anon_sym_U_SQUOTE] = ACTIONS(1948), - [anon_sym_u8_SQUOTE] = ACTIONS(1948), - [anon_sym_SQUOTE] = ACTIONS(1948), - [anon_sym_L_DQUOTE] = ACTIONS(1951), - [anon_sym_u_DQUOTE] = ACTIONS(1951), - [anon_sym_U_DQUOTE] = ACTIONS(1951), - [anon_sym_u8_DQUOTE] = ACTIONS(1951), - [anon_sym_DQUOTE] = ACTIONS(1951), - [sym_true] = ACTIONS(1954), - [sym_false] = ACTIONS(1954), - [sym_null] = ACTIONS(1954), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(1957), - [anon_sym_try] = ACTIONS(2245), - [anon_sym_delete] = ACTIONS(1963), - [anon_sym_throw] = ACTIONS(2248), - [anon_sym_co_return] = ACTIONS(2251), - [anon_sym_co_yield] = ACTIONS(2254), - [anon_sym_co_await] = ACTIONS(1975), - [anon_sym_new] = ACTIONS(1978), - [anon_sym_requires] = ACTIONS(1981), - [sym_this] = ACTIONS(1954), - [sym_nullptr] = ACTIONS(1954), - [sym_raw_string_literal] = ACTIONS(1984), - }, - [300] = { - [sym_attribute_declaration] = STATE(303), - [sym_compound_statement] = STATE(751), - [sym_attributed_statement] = STATE(751), - [sym_labeled_statement] = STATE(751), - [sym_expression_statement] = STATE(751), - [sym_if_statement] = STATE(751), - [sym_switch_statement] = STATE(751), - [sym_case_statement] = STATE(751), - [sym_while_statement] = STATE(751), - [sym_do_statement] = STATE(751), - [sym_for_statement] = STATE(751), - [sym_return_statement] = STATE(751), - [sym_break_statement] = STATE(751), - [sym_continue_statement] = STATE(751), - [sym_goto_statement] = STATE(751), - [sym__expression] = STATE(3612), - [sym_comma_expression] = STATE(6539), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(751), - [sym_co_return_statement] = STATE(751), - [sym_co_yield_statement] = STATE(751), - [sym_throw_statement] = STATE(751), - [sym_try_statement] = STATE(751), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(303), - [sym_identifier] = ACTIONS(2093), - [anon_sym_LPAREN2] = ACTIONS(960), + [311] = { + [sym_attribute_declaration] = STATE(302), + [sym_compound_statement] = STATE(667), + [sym_attributed_statement] = STATE(667), + [sym_labeled_statement] = STATE(667), + [sym_expression_statement] = STATE(667), + [sym_if_statement] = STATE(667), + [sym_switch_statement] = STATE(667), + [sym_case_statement] = STATE(667), + [sym_while_statement] = STATE(667), + [sym_do_statement] = STATE(667), + [sym_for_statement] = STATE(667), + [sym_return_statement] = STATE(667), + [sym_break_statement] = STATE(667), + [sym_continue_statement] = STATE(667), + [sym_goto_statement] = STATE(667), + [sym__expression] = STATE(3763), + [sym_comma_expression] = STATE(6972), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(667), + [sym_co_return_statement] = STATE(667), + [sym_co_yield_statement] = STATE(667), + [sym_throw_statement] = STATE(667), + [sym_try_statement] = STATE(667), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(302), + [sym_identifier] = ACTIONS(2187), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(594), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(560), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(600), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(602), - [anon_sym_switch] = ACTIONS(604), - [anon_sym_case] = ACTIONS(606), - [anon_sym_default] = ACTIONS(608), - [anon_sym_while] = ACTIONS(610), - [anon_sym_do] = ACTIONS(612), - [anon_sym_for] = ACTIONS(614), - [anon_sym_return] = ACTIONS(616), - [anon_sym_break] = ACTIONS(618), - [anon_sym_continue] = ACTIONS(620), - [anon_sym_goto] = ACTIONS(622), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(566), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(568), + [anon_sym_switch] = ACTIONS(570), + [anon_sym_case] = ACTIONS(572), + [anon_sym_default] = ACTIONS(574), + [anon_sym_while] = ACTIONS(576), + [anon_sym_do] = ACTIONS(578), + [anon_sym_for] = ACTIONS(580), + [anon_sym_return] = ACTIONS(582), + [anon_sym_break] = ACTIONS(584), + [anon_sym_continue] = ACTIONS(586), + [anon_sym_goto] = ACTIONS(588), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -68232,12 +71544,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(626), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(592), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(628), - [anon_sym_co_return] = ACTIONS(638), - [anon_sym_co_yield] = ACTIONS(640), + [anon_sym_throw] = ACTIONS(594), + [anon_sym_co_return] = ACTIONS(604), + [anon_sym_co_yield] = ACTIONS(606), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -68245,201 +71557,205 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [301] = { - [sym_attribute_declaration] = STATE(303), - [sym_compound_statement] = STATE(754), - [sym_attributed_statement] = STATE(754), - [sym_labeled_statement] = STATE(754), - [sym_expression_statement] = STATE(754), - [sym_if_statement] = STATE(754), - [sym_switch_statement] = STATE(754), - [sym_case_statement] = STATE(754), - [sym_while_statement] = STATE(754), - [sym_do_statement] = STATE(754), - [sym_for_statement] = STATE(754), - [sym_return_statement] = STATE(754), - [sym_break_statement] = STATE(754), - [sym_continue_statement] = STATE(754), - [sym_goto_statement] = STATE(754), - [sym__expression] = STATE(3612), - [sym_comma_expression] = STATE(6539), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(754), - [sym_co_return_statement] = STATE(754), - [sym_co_yield_statement] = STATE(754), - [sym_throw_statement] = STATE(754), - [sym_try_statement] = STATE(754), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(303), - [sym_identifier] = ACTIONS(2093), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(594), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(600), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(602), - [anon_sym_switch] = ACTIONS(604), - [anon_sym_case] = ACTIONS(606), - [anon_sym_default] = ACTIONS(608), - [anon_sym_while] = ACTIONS(610), - [anon_sym_do] = ACTIONS(612), - [anon_sym_for] = ACTIONS(614), - [anon_sym_return] = ACTIONS(616), - [anon_sym_break] = ACTIONS(618), - [anon_sym_continue] = ACTIONS(620), - [anon_sym_goto] = ACTIONS(622), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(626), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(628), - [anon_sym_co_return] = ACTIONS(638), - [anon_sym_co_yield] = ACTIONS(640), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [312] = { + [sym_attribute_declaration] = STATE(312), + [sym_compound_statement] = STATE(350), + [sym_attributed_statement] = STATE(350), + [sym_labeled_statement] = STATE(350), + [sym_expression_statement] = STATE(350), + [sym_if_statement] = STATE(350), + [sym_switch_statement] = STATE(350), + [sym_case_statement] = STATE(350), + [sym_while_statement] = STATE(350), + [sym_do_statement] = STATE(350), + [sym_for_statement] = STATE(350), + [sym_return_statement] = STATE(350), + [sym_break_statement] = STATE(350), + [sym_continue_statement] = STATE(350), + [sym_goto_statement] = STATE(350), + [sym__expression] = STATE(3680), + [sym_comma_expression] = STATE(7175), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(350), + [sym_co_return_statement] = STATE(350), + [sym_co_yield_statement] = STATE(350), + [sym_throw_statement] = STATE(350), + [sym_try_statement] = STATE(350), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(312), + [sym_identifier] = ACTIONS(2351), + [anon_sym_LPAREN2] = ACTIONS(2024), + [anon_sym_BANG] = ACTIONS(2027), + [anon_sym_TILDE] = ACTIONS(2027), + [anon_sym_DASH] = ACTIONS(2030), + [anon_sym_PLUS] = ACTIONS(2030), + [anon_sym_STAR] = ACTIONS(2033), + [anon_sym_AMP] = ACTIONS(2033), + [anon_sym_SEMI] = ACTIONS(2354), + [anon_sym_COLON_COLON] = ACTIONS(2039), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2042), + [anon_sym_LBRACE] = ACTIONS(2357), + [anon_sym_LBRACK] = ACTIONS(2048), + [sym_primitive_type] = ACTIONS(2051), + [anon_sym_if] = ACTIONS(2360), + [anon_sym_switch] = ACTIONS(2363), + [anon_sym_case] = ACTIONS(2366), + [anon_sym_default] = ACTIONS(2369), + [anon_sym_while] = ACTIONS(2372), + [anon_sym_do] = ACTIONS(2375), + [anon_sym_for] = ACTIONS(2378), + [anon_sym_return] = ACTIONS(2381), + [anon_sym_break] = ACTIONS(2384), + [anon_sym_continue] = ACTIONS(2387), + [anon_sym_goto] = ACTIONS(2390), + [anon_sym_not] = ACTIONS(2030), + [anon_sym_compl] = ACTIONS(2030), + [anon_sym_DASH_DASH] = ACTIONS(2087), + [anon_sym_PLUS_PLUS] = ACTIONS(2087), + [anon_sym_sizeof] = ACTIONS(2090), + [sym_number_literal] = ACTIONS(2093), + [anon_sym_L_SQUOTE] = ACTIONS(2096), + [anon_sym_u_SQUOTE] = ACTIONS(2096), + [anon_sym_U_SQUOTE] = ACTIONS(2096), + [anon_sym_u8_SQUOTE] = ACTIONS(2096), + [anon_sym_SQUOTE] = ACTIONS(2096), + [anon_sym_L_DQUOTE] = ACTIONS(2099), + [anon_sym_u_DQUOTE] = ACTIONS(2099), + [anon_sym_U_DQUOTE] = ACTIONS(2099), + [anon_sym_u8_DQUOTE] = ACTIONS(2099), + [anon_sym_DQUOTE] = ACTIONS(2099), + [sym_true] = ACTIONS(2102), + [sym_false] = ACTIONS(2102), + [sym_null] = ACTIONS(2102), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(2105), + [anon_sym_try] = ACTIONS(2393), + [anon_sym_delete] = ACTIONS(2111), + [anon_sym_throw] = ACTIONS(2396), + [anon_sym_co_return] = ACTIONS(2399), + [anon_sym_co_yield] = ACTIONS(2402), + [anon_sym_co_await] = ACTIONS(2123), + [anon_sym_new] = ACTIONS(2126), + [anon_sym_requires] = ACTIONS(2129), + [sym_this] = ACTIONS(2102), + [sym_nullptr] = ACTIONS(2102), + [sym_raw_string_literal] = ACTIONS(2132), }, - [302] = { - [sym_attribute_declaration] = STATE(303), - [sym_compound_statement] = STATE(763), - [sym_attributed_statement] = STATE(763), - [sym_labeled_statement] = STATE(763), - [sym_expression_statement] = STATE(763), - [sym_if_statement] = STATE(763), - [sym_switch_statement] = STATE(763), - [sym_case_statement] = STATE(763), - [sym_while_statement] = STATE(763), - [sym_do_statement] = STATE(763), - [sym_for_statement] = STATE(763), - [sym_return_statement] = STATE(763), - [sym_break_statement] = STATE(763), - [sym_continue_statement] = STATE(763), - [sym_goto_statement] = STATE(763), - [sym__expression] = STATE(3612), - [sym_comma_expression] = STATE(6539), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(763), - [sym_co_return_statement] = STATE(763), - [sym_co_yield_statement] = STATE(763), - [sym_throw_statement] = STATE(763), - [sym_try_statement] = STATE(763), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(303), - [sym_identifier] = ACTIONS(2093), - [anon_sym_LPAREN2] = ACTIONS(960), + [313] = { + [sym_attribute_declaration] = STATE(179), + [sym_compound_statement] = STATE(7122), + [sym_attributed_statement] = STATE(7122), + [sym_labeled_statement] = STATE(7122), + [sym_expression_statement] = STATE(7122), + [sym_if_statement] = STATE(7122), + [sym_switch_statement] = STATE(7122), + [sym_case_statement] = STATE(7122), + [sym_while_statement] = STATE(7122), + [sym_do_statement] = STATE(7122), + [sym_for_statement] = STATE(7122), + [sym_return_statement] = STATE(7122), + [sym_break_statement] = STATE(7122), + [sym_continue_statement] = STATE(7122), + [sym_goto_statement] = STATE(7122), + [sym__expression] = STATE(3701), + [sym_comma_expression] = STATE(7176), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(7122), + [sym_co_return_statement] = STATE(7122), + [sym_co_yield_statement] = STATE(7122), + [sym_throw_statement] = STATE(7122), + [sym_try_statement] = STATE(7122), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(179), + [sym_identifier] = ACTIONS(1981), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(594), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(1983), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(600), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(602), - [anon_sym_switch] = ACTIONS(604), - [anon_sym_case] = ACTIONS(606), - [anon_sym_default] = ACTIONS(608), - [anon_sym_while] = ACTIONS(610), - [anon_sym_do] = ACTIONS(612), - [anon_sym_for] = ACTIONS(614), - [anon_sym_return] = ACTIONS(616), - [anon_sym_break] = ACTIONS(618), - [anon_sym_continue] = ACTIONS(620), - [anon_sym_goto] = ACTIONS(622), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(1987), + [anon_sym_switch] = ACTIONS(1989), + [anon_sym_case] = ACTIONS(1991), + [anon_sym_default] = ACTIONS(1993), + [anon_sym_while] = ACTIONS(1995), + [anon_sym_do] = ACTIONS(1997), + [anon_sym_for] = ACTIONS(1999), + [anon_sym_return] = ACTIONS(2001), + [anon_sym_break] = ACTIONS(2003), + [anon_sym_continue] = ACTIONS(2005), + [anon_sym_goto] = ACTIONS(2007), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -68458,12 +71774,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(626), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(2009), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(628), - [anon_sym_co_return] = ACTIONS(638), - [anon_sym_co_yield] = ACTIONS(640), + [anon_sym_throw] = ACTIONS(2011), + [anon_sym_co_return] = ACTIONS(2013), + [anon_sym_co_yield] = ACTIONS(2015), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -68471,88 +71787,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [303] = { - [sym_attribute_declaration] = STATE(299), - [sym_compound_statement] = STATE(858), - [sym_attributed_statement] = STATE(858), - [sym_labeled_statement] = STATE(858), - [sym_expression_statement] = STATE(858), - [sym_if_statement] = STATE(858), - [sym_switch_statement] = STATE(858), - [sym_case_statement] = STATE(858), - [sym_while_statement] = STATE(858), - [sym_do_statement] = STATE(858), - [sym_for_statement] = STATE(858), - [sym_return_statement] = STATE(858), - [sym_break_statement] = STATE(858), - [sym_continue_statement] = STATE(858), - [sym_goto_statement] = STATE(858), - [sym__expression] = STATE(3612), - [sym_comma_expression] = STATE(6539), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_for_range_loop] = STATE(858), - [sym_co_return_statement] = STATE(858), - [sym_co_yield_statement] = STATE(858), - [sym_throw_statement] = STATE(858), - [sym_try_statement] = STATE(858), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_attributed_declarator_repeat1] = STATE(299), - [sym_identifier] = ACTIONS(2093), - [anon_sym_LPAREN2] = ACTIONS(960), + [314] = { + [sym_attribute_declaration] = STATE(290), + [sym_compound_statement] = STATE(349), + [sym_attributed_statement] = STATE(349), + [sym_labeled_statement] = STATE(349), + [sym_expression_statement] = STATE(349), + [sym_if_statement] = STATE(349), + [sym_switch_statement] = STATE(349), + [sym_case_statement] = STATE(349), + [sym_while_statement] = STATE(349), + [sym_do_statement] = STATE(349), + [sym_for_statement] = STATE(349), + [sym_return_statement] = STATE(349), + [sym_break_statement] = STATE(349), + [sym_continue_statement] = STATE(349), + [sym_goto_statement] = STATE(349), + [sym__expression] = STATE(3680), + [sym_comma_expression] = STATE(7175), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_for_range_loop] = STATE(349), + [sym_co_return_statement] = STATE(349), + [sym_co_yield_statement] = STATE(349), + [sym_throw_statement] = STATE(349), + [sym_try_statement] = STATE(349), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_attributed_declarator_repeat1] = STATE(290), + [sym_identifier] = ACTIONS(2135), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(594), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(245), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK_LBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(600), - [anon_sym_LBRACK] = ACTIONS(970), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(602), - [anon_sym_switch] = ACTIONS(604), - [anon_sym_case] = ACTIONS(606), - [anon_sym_default] = ACTIONS(608), - [anon_sym_while] = ACTIONS(610), - [anon_sym_do] = ACTIONS(612), - [anon_sym_for] = ACTIONS(614), - [anon_sym_return] = ACTIONS(616), - [anon_sym_break] = ACTIONS(618), - [anon_sym_continue] = ACTIONS(620), - [anon_sym_goto] = ACTIONS(622), + [anon_sym_LBRACK_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(974), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(253), + [anon_sym_switch] = ACTIONS(255), + [anon_sym_case] = ACTIONS(257), + [anon_sym_default] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_do] = ACTIONS(263), + [anon_sym_for] = ACTIONS(265), + [anon_sym_return] = ACTIONS(267), + [anon_sym_break] = ACTIONS(269), + [anon_sym_continue] = ACTIONS(271), + [anon_sym_goto] = ACTIONS(273), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -68571,12 +71889,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_try] = ACTIONS(626), + [anon_sym_template] = ACTIONS(976), + [anon_sym_try] = ACTIONS(277), [anon_sym_delete] = ACTIONS(121), - [anon_sym_throw] = ACTIONS(628), - [anon_sym_co_return] = ACTIONS(638), - [anon_sym_co_yield] = ACTIONS(640), + [anon_sym_throw] = ACTIONS(279), + [anon_sym_co_return] = ACTIONS(289), + [anon_sym_co_yield] = ACTIONS(291), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), @@ -68584,1182 +71902,298 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [304] = { - [sym_catch_clause] = STATE(305), - [aux_sym_constructor_try_statement_repeat1] = STATE(305), - [sym_identifier] = ACTIONS(2257), - [aux_sym_preproc_include_token1] = ACTIONS(2257), - [aux_sym_preproc_def_token1] = ACTIONS(2257), - [aux_sym_preproc_if_token1] = ACTIONS(2257), - [aux_sym_preproc_if_token2] = ACTIONS(2257), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2257), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2257), - [aux_sym_preproc_else_token1] = ACTIONS(2257), - [aux_sym_preproc_elif_token1] = ACTIONS(2257), - [sym_preproc_directive] = ACTIONS(2257), - [anon_sym_LPAREN2] = ACTIONS(2259), - [anon_sym_BANG] = ACTIONS(2259), - [anon_sym_TILDE] = ACTIONS(2259), - [anon_sym_DASH] = ACTIONS(2257), - [anon_sym_PLUS] = ACTIONS(2257), - [anon_sym_STAR] = ACTIONS(2259), - [anon_sym_AMP_AMP] = ACTIONS(2259), - [anon_sym_AMP] = ACTIONS(2257), - [anon_sym_SEMI] = ACTIONS(2259), - [anon_sym_typedef] = ACTIONS(2257), - [anon_sym_extern] = ACTIONS(2257), - [anon_sym___attribute__] = ACTIONS(2257), - [anon_sym_COLON_COLON] = ACTIONS(2259), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2259), - [anon_sym___declspec] = ACTIONS(2257), - [anon_sym___based] = ACTIONS(2257), - [anon_sym___cdecl] = ACTIONS(2257), - [anon_sym___clrcall] = ACTIONS(2257), - [anon_sym___stdcall] = ACTIONS(2257), - [anon_sym___fastcall] = ACTIONS(2257), - [anon_sym___thiscall] = ACTIONS(2257), - [anon_sym___vectorcall] = ACTIONS(2257), - [anon_sym_LBRACE] = ACTIONS(2259), - [anon_sym_LBRACK] = ACTIONS(2257), - [anon_sym_static] = ACTIONS(2257), - [anon_sym_register] = ACTIONS(2257), - [anon_sym_inline] = ACTIONS(2257), - [anon_sym_thread_local] = ACTIONS(2257), - [anon_sym_const] = ACTIONS(2257), - [anon_sym_volatile] = ACTIONS(2257), - [anon_sym_restrict] = ACTIONS(2257), - [anon_sym__Atomic] = ACTIONS(2257), - [anon_sym_mutable] = ACTIONS(2257), - [anon_sym_constexpr] = ACTIONS(2257), - [anon_sym_constinit] = ACTIONS(2257), - [anon_sym_consteval] = ACTIONS(2257), - [anon_sym_signed] = ACTIONS(2257), - [anon_sym_unsigned] = ACTIONS(2257), - [anon_sym_long] = ACTIONS(2257), - [anon_sym_short] = ACTIONS(2257), - [sym_primitive_type] = ACTIONS(2257), - [anon_sym_enum] = ACTIONS(2257), - [anon_sym_class] = ACTIONS(2257), - [anon_sym_struct] = ACTIONS(2257), - [anon_sym_union] = ACTIONS(2257), - [anon_sym_if] = ACTIONS(2257), - [anon_sym_else] = ACTIONS(2257), - [anon_sym_switch] = ACTIONS(2257), - [anon_sym_case] = ACTIONS(2257), - [anon_sym_default] = ACTIONS(2257), - [anon_sym_while] = ACTIONS(2257), - [anon_sym_do] = ACTIONS(2257), - [anon_sym_for] = ACTIONS(2257), - [anon_sym_return] = ACTIONS(2257), - [anon_sym_break] = ACTIONS(2257), - [anon_sym_continue] = ACTIONS(2257), - [anon_sym_goto] = ACTIONS(2257), - [anon_sym_DASH_DASH] = ACTIONS(2259), - [anon_sym_PLUS_PLUS] = ACTIONS(2259), - [anon_sym_sizeof] = ACTIONS(2257), - [sym_number_literal] = ACTIONS(2259), - [anon_sym_L_SQUOTE] = ACTIONS(2259), - [anon_sym_u_SQUOTE] = ACTIONS(2259), - [anon_sym_U_SQUOTE] = ACTIONS(2259), - [anon_sym_u8_SQUOTE] = ACTIONS(2259), - [anon_sym_SQUOTE] = ACTIONS(2259), - [anon_sym_L_DQUOTE] = ACTIONS(2259), - [anon_sym_u_DQUOTE] = ACTIONS(2259), - [anon_sym_U_DQUOTE] = ACTIONS(2259), - [anon_sym_u8_DQUOTE] = ACTIONS(2259), - [anon_sym_DQUOTE] = ACTIONS(2259), - [sym_true] = ACTIONS(2257), - [sym_false] = ACTIONS(2257), - [sym_null] = ACTIONS(2257), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2257), - [anon_sym_decltype] = ACTIONS(2257), - [anon_sym_virtual] = ACTIONS(2257), - [anon_sym_explicit] = ACTIONS(2257), - [anon_sym_typename] = ACTIONS(2257), - [anon_sym_template] = ACTIONS(2257), - [anon_sym_operator] = ACTIONS(2257), - [anon_sym_try] = ACTIONS(2257), - [anon_sym_delete] = ACTIONS(2257), - [anon_sym_throw] = ACTIONS(2257), - [anon_sym_namespace] = ACTIONS(2257), - [anon_sym_using] = ACTIONS(2257), - [anon_sym_static_assert] = ACTIONS(2257), - [anon_sym_concept] = ACTIONS(2257), - [anon_sym_co_return] = ACTIONS(2257), - [anon_sym_co_yield] = ACTIONS(2257), - [anon_sym_catch] = ACTIONS(2261), - [anon_sym_co_await] = ACTIONS(2257), - [anon_sym_new] = ACTIONS(2257), - [anon_sym_requires] = ACTIONS(2257), - [sym_this] = ACTIONS(2257), - [sym_nullptr] = ACTIONS(2257), - [sym_raw_string_literal] = ACTIONS(2259), - }, - [305] = { - [sym_catch_clause] = STATE(305), - [aux_sym_constructor_try_statement_repeat1] = STATE(305), - [sym_identifier] = ACTIONS(2263), - [aux_sym_preproc_include_token1] = ACTIONS(2263), - [aux_sym_preproc_def_token1] = ACTIONS(2263), - [aux_sym_preproc_if_token1] = ACTIONS(2263), - [aux_sym_preproc_if_token2] = ACTIONS(2263), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2263), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2263), - [aux_sym_preproc_else_token1] = ACTIONS(2263), - [aux_sym_preproc_elif_token1] = ACTIONS(2263), - [sym_preproc_directive] = ACTIONS(2263), - [anon_sym_LPAREN2] = ACTIONS(2265), - [anon_sym_BANG] = ACTIONS(2265), - [anon_sym_TILDE] = ACTIONS(2265), - [anon_sym_DASH] = ACTIONS(2263), - [anon_sym_PLUS] = ACTIONS(2263), - [anon_sym_STAR] = ACTIONS(2265), - [anon_sym_AMP_AMP] = ACTIONS(2265), - [anon_sym_AMP] = ACTIONS(2263), - [anon_sym_SEMI] = ACTIONS(2265), - [anon_sym_typedef] = ACTIONS(2263), - [anon_sym_extern] = ACTIONS(2263), - [anon_sym___attribute__] = ACTIONS(2263), - [anon_sym_COLON_COLON] = ACTIONS(2265), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2265), - [anon_sym___declspec] = ACTIONS(2263), - [anon_sym___based] = ACTIONS(2263), - [anon_sym___cdecl] = ACTIONS(2263), - [anon_sym___clrcall] = ACTIONS(2263), - [anon_sym___stdcall] = ACTIONS(2263), - [anon_sym___fastcall] = ACTIONS(2263), - [anon_sym___thiscall] = ACTIONS(2263), - [anon_sym___vectorcall] = ACTIONS(2263), - [anon_sym_LBRACE] = ACTIONS(2265), - [anon_sym_LBRACK] = ACTIONS(2263), - [anon_sym_static] = ACTIONS(2263), - [anon_sym_register] = ACTIONS(2263), - [anon_sym_inline] = ACTIONS(2263), - [anon_sym_thread_local] = ACTIONS(2263), - [anon_sym_const] = ACTIONS(2263), - [anon_sym_volatile] = ACTIONS(2263), - [anon_sym_restrict] = ACTIONS(2263), - [anon_sym__Atomic] = ACTIONS(2263), - [anon_sym_mutable] = ACTIONS(2263), - [anon_sym_constexpr] = ACTIONS(2263), - [anon_sym_constinit] = ACTIONS(2263), - [anon_sym_consteval] = ACTIONS(2263), - [anon_sym_signed] = ACTIONS(2263), - [anon_sym_unsigned] = ACTIONS(2263), - [anon_sym_long] = ACTIONS(2263), - [anon_sym_short] = ACTIONS(2263), - [sym_primitive_type] = ACTIONS(2263), - [anon_sym_enum] = ACTIONS(2263), - [anon_sym_class] = ACTIONS(2263), - [anon_sym_struct] = ACTIONS(2263), - [anon_sym_union] = ACTIONS(2263), - [anon_sym_if] = ACTIONS(2263), - [anon_sym_else] = ACTIONS(2263), - [anon_sym_switch] = ACTIONS(2263), - [anon_sym_case] = ACTIONS(2263), - [anon_sym_default] = ACTIONS(2263), - [anon_sym_while] = ACTIONS(2263), - [anon_sym_do] = ACTIONS(2263), - [anon_sym_for] = ACTIONS(2263), - [anon_sym_return] = ACTIONS(2263), - [anon_sym_break] = ACTIONS(2263), - [anon_sym_continue] = ACTIONS(2263), - [anon_sym_goto] = ACTIONS(2263), - [anon_sym_DASH_DASH] = ACTIONS(2265), - [anon_sym_PLUS_PLUS] = ACTIONS(2265), - [anon_sym_sizeof] = ACTIONS(2263), - [sym_number_literal] = ACTIONS(2265), - [anon_sym_L_SQUOTE] = ACTIONS(2265), - [anon_sym_u_SQUOTE] = ACTIONS(2265), - [anon_sym_U_SQUOTE] = ACTIONS(2265), - [anon_sym_u8_SQUOTE] = ACTIONS(2265), - [anon_sym_SQUOTE] = ACTIONS(2265), - [anon_sym_L_DQUOTE] = ACTIONS(2265), - [anon_sym_u_DQUOTE] = ACTIONS(2265), - [anon_sym_U_DQUOTE] = ACTIONS(2265), - [anon_sym_u8_DQUOTE] = ACTIONS(2265), - [anon_sym_DQUOTE] = ACTIONS(2265), - [sym_true] = ACTIONS(2263), - [sym_false] = ACTIONS(2263), - [sym_null] = ACTIONS(2263), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2263), - [anon_sym_decltype] = ACTIONS(2263), - [anon_sym_virtual] = ACTIONS(2263), - [anon_sym_explicit] = ACTIONS(2263), - [anon_sym_typename] = ACTIONS(2263), - [anon_sym_template] = ACTIONS(2263), - [anon_sym_operator] = ACTIONS(2263), - [anon_sym_try] = ACTIONS(2263), - [anon_sym_delete] = ACTIONS(2263), - [anon_sym_throw] = ACTIONS(2263), - [anon_sym_namespace] = ACTIONS(2263), - [anon_sym_using] = ACTIONS(2263), - [anon_sym_static_assert] = ACTIONS(2263), - [anon_sym_concept] = ACTIONS(2263), - [anon_sym_co_return] = ACTIONS(2263), - [anon_sym_co_yield] = ACTIONS(2263), - [anon_sym_catch] = ACTIONS(2267), - [anon_sym_co_await] = ACTIONS(2263), - [anon_sym_new] = ACTIONS(2263), - [anon_sym_requires] = ACTIONS(2263), - [sym_this] = ACTIONS(2263), - [sym_nullptr] = ACTIONS(2263), - [sym_raw_string_literal] = ACTIONS(2265), - }, - [306] = { - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3825), - [sym_sized_type_specifier] = STATE(2346), - [sym_enum_specifier] = STATE(2346), - [sym_struct_specifier] = STATE(2346), - [sym_union_specifier] = STATE(2346), - [sym__expression] = STATE(2427), - [sym_comma_expression] = STATE(6596), - [sym_conditional_expression] = STATE(2765), - [sym_assignment_expression] = STATE(2765), - [sym_pointer_expression] = STATE(2827), - [sym_unary_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_update_expression] = STATE(2765), - [sym_cast_expression] = STATE(2765), - [sym_type_descriptor] = STATE(6905), - [sym_sizeof_expression] = STATE(2765), - [sym_subscript_expression] = STATE(2827), - [sym_call_expression] = STATE(2827), - [sym_field_expression] = STATE(2827), - [sym_compound_literal_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2827), - [sym_char_literal] = STATE(2674), - [sym_concatenated_string] = STATE(2674), - [sym_string_literal] = STATE(2093), - [sym_placeholder_type_specifier] = STATE(2346), - [sym_decltype_auto] = STATE(2494), - [sym_decltype] = STATE(2346), - [sym_class_specifier] = STATE(2346), - [sym__class_name] = STATE(6297), - [sym_dependent_type] = STATE(2346), - [sym_template_type] = STATE(4194), - [sym_template_function] = STATE(2765), - [sym_co_await_expression] = STATE(2765), - [sym_new_expression] = STATE(2765), - [sym_delete_expression] = STATE(2765), - [sym_requires_clause] = STATE(2765), - [sym_requires_expression] = STATE(2765), - [sym_lambda_expression] = STATE(2765), - [sym_lambda_capture_specifier] = STATE(4512), - [sym__unary_left_fold] = STATE(6907), - [sym__unary_right_fold] = STATE(6913), - [sym__binary_fold] = STATE(6914), - [sym_fold_expression] = STATE(2765), - [sym_parameter_pack_expansion] = STATE(2765), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4637), - [sym_qualified_identifier] = STATE(2827), - [sym_qualified_type_identifier] = STATE(4305), - [sym_user_defined_literal] = STATE(2765), - [aux_sym_type_definition_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(2075), - [sym_identifier] = ACTIONS(2270), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1411), - [anon_sym_LPAREN2] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1417), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_COLON_COLON] = ACTIONS(1423), - [anon_sym_LBRACK] = ACTIONS(2272), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1479), - [anon_sym_unsigned] = ACTIONS(1479), - [anon_sym_long] = ACTIONS(1479), - [anon_sym_short] = ACTIONS(1479), - [sym_primitive_type] = ACTIONS(1481), - [anon_sym_enum] = ACTIONS(1483), - [anon_sym_class] = ACTIONS(1485), - [anon_sym_struct] = ACTIONS(1487), - [anon_sym_union] = ACTIONS(1489), - [anon_sym_DASH_DASH] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [anon_sym_sizeof] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(1439), - [anon_sym_L_SQUOTE] = ACTIONS(1441), - [anon_sym_u_SQUOTE] = ACTIONS(1441), - [anon_sym_U_SQUOTE] = ACTIONS(1441), - [anon_sym_u8_SQUOTE] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1441), - [anon_sym_L_DQUOTE] = ACTIONS(1443), - [anon_sym_u_DQUOTE] = ACTIONS(1443), - [anon_sym_U_DQUOTE] = ACTIONS(1443), - [anon_sym_u8_DQUOTE] = ACTIONS(1443), - [anon_sym_DQUOTE] = ACTIONS(1443), - [sym_true] = ACTIONS(1445), - [sym_false] = ACTIONS(1445), - [sym_null] = ACTIONS(1445), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1491), - [anon_sym_decltype] = ACTIONS(1493), - [anon_sym_typename] = ACTIONS(1495), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_co_await] = ACTIONS(1451), - [anon_sym_new] = ACTIONS(1453), - [anon_sym_requires] = ACTIONS(1455), - [sym_this] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(1445), - [sym_raw_string_literal] = ACTIONS(1457), - }, - [307] = { - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3825), - [sym_sized_type_specifier] = STATE(2346), - [sym_enum_specifier] = STATE(2346), - [sym_struct_specifier] = STATE(2346), - [sym_union_specifier] = STATE(2346), - [sym__expression] = STATE(2375), - [sym_comma_expression] = STATE(6584), - [sym_conditional_expression] = STATE(2765), - [sym_assignment_expression] = STATE(2765), - [sym_pointer_expression] = STATE(2827), - [sym_unary_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_update_expression] = STATE(2765), - [sym_cast_expression] = STATE(2765), - [sym_type_descriptor] = STATE(6776), - [sym_sizeof_expression] = STATE(2765), - [sym_subscript_expression] = STATE(2827), - [sym_call_expression] = STATE(2827), - [sym_field_expression] = STATE(2827), - [sym_compound_literal_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2827), - [sym_char_literal] = STATE(2674), - [sym_concatenated_string] = STATE(2674), - [sym_string_literal] = STATE(2093), - [sym_placeholder_type_specifier] = STATE(2346), - [sym_decltype_auto] = STATE(2494), - [sym_decltype] = STATE(2346), - [sym_class_specifier] = STATE(2346), - [sym__class_name] = STATE(6297), - [sym_dependent_type] = STATE(2346), - [sym_template_type] = STATE(4194), - [sym_template_function] = STATE(2765), - [sym_co_await_expression] = STATE(2765), - [sym_new_expression] = STATE(2765), - [sym_delete_expression] = STATE(2765), - [sym_requires_clause] = STATE(2765), - [sym_requires_expression] = STATE(2765), - [sym_lambda_expression] = STATE(2765), - [sym_lambda_capture_specifier] = STATE(4512), - [sym__unary_left_fold] = STATE(6567), - [sym__unary_right_fold] = STATE(6566), - [sym__binary_fold] = STATE(6564), - [sym_fold_expression] = STATE(2765), - [sym_parameter_pack_expansion] = STATE(2765), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4637), - [sym_qualified_identifier] = STATE(2827), - [sym_qualified_type_identifier] = STATE(4305), - [sym_user_defined_literal] = STATE(2765), - [aux_sym_type_definition_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(2075), - [sym_identifier] = ACTIONS(2270), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1411), - [anon_sym_LPAREN2] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1417), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_COLON_COLON] = ACTIONS(1423), - [anon_sym_LBRACK] = ACTIONS(2272), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1479), - [anon_sym_unsigned] = ACTIONS(1479), - [anon_sym_long] = ACTIONS(1479), - [anon_sym_short] = ACTIONS(1479), - [sym_primitive_type] = ACTIONS(1481), - [anon_sym_enum] = ACTIONS(1483), - [anon_sym_class] = ACTIONS(1485), - [anon_sym_struct] = ACTIONS(1487), - [anon_sym_union] = ACTIONS(1489), - [anon_sym_DASH_DASH] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [anon_sym_sizeof] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(1439), - [anon_sym_L_SQUOTE] = ACTIONS(1441), - [anon_sym_u_SQUOTE] = ACTIONS(1441), - [anon_sym_U_SQUOTE] = ACTIONS(1441), - [anon_sym_u8_SQUOTE] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1441), - [anon_sym_L_DQUOTE] = ACTIONS(1443), - [anon_sym_u_DQUOTE] = ACTIONS(1443), - [anon_sym_U_DQUOTE] = ACTIONS(1443), - [anon_sym_u8_DQUOTE] = ACTIONS(1443), - [anon_sym_DQUOTE] = ACTIONS(1443), - [sym_true] = ACTIONS(1445), - [sym_false] = ACTIONS(1445), - [sym_null] = ACTIONS(1445), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1491), - [anon_sym_decltype] = ACTIONS(1493), - [anon_sym_typename] = ACTIONS(1495), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_co_await] = ACTIONS(1451), - [anon_sym_new] = ACTIONS(1453), - [anon_sym_requires] = ACTIONS(1455), - [sym_this] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(1445), - [sym_raw_string_literal] = ACTIONS(1457), - }, - [308] = { - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3825), - [sym_sized_type_specifier] = STATE(2346), - [sym_enum_specifier] = STATE(2346), - [sym_struct_specifier] = STATE(2346), - [sym_union_specifier] = STATE(2346), - [sym__expression] = STATE(2427), - [sym_comma_expression] = STATE(6596), - [sym_conditional_expression] = STATE(2765), - [sym_assignment_expression] = STATE(2765), - [sym_pointer_expression] = STATE(2827), - [sym_unary_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_update_expression] = STATE(2765), - [sym_cast_expression] = STATE(2765), - [sym_type_descriptor] = STATE(6834), - [sym_sizeof_expression] = STATE(2765), - [sym_subscript_expression] = STATE(2827), - [sym_call_expression] = STATE(2827), - [sym_field_expression] = STATE(2827), - [sym_compound_literal_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2827), - [sym_char_literal] = STATE(2674), - [sym_concatenated_string] = STATE(2674), - [sym_string_literal] = STATE(2093), - [sym_placeholder_type_specifier] = STATE(2346), - [sym_decltype_auto] = STATE(2494), - [sym_decltype] = STATE(2346), - [sym_class_specifier] = STATE(2346), - [sym__class_name] = STATE(6297), - [sym_dependent_type] = STATE(2346), - [sym_template_type] = STATE(4194), - [sym_template_function] = STATE(2765), - [sym_co_await_expression] = STATE(2765), - [sym_new_expression] = STATE(2765), - [sym_delete_expression] = STATE(2765), - [sym_requires_clause] = STATE(2765), - [sym_requires_expression] = STATE(2765), - [sym_lambda_expression] = STATE(2765), - [sym_lambda_capture_specifier] = STATE(4512), - [sym__unary_left_fold] = STATE(6786), - [sym__unary_right_fold] = STATE(6787), - [sym__binary_fold] = STATE(6789), - [sym_fold_expression] = STATE(2765), - [sym_parameter_pack_expansion] = STATE(2765), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4637), - [sym_qualified_identifier] = STATE(2827), - [sym_qualified_type_identifier] = STATE(4305), - [sym_user_defined_literal] = STATE(2765), - [aux_sym_type_definition_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(2075), - [sym_identifier] = ACTIONS(2270), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1411), - [anon_sym_LPAREN2] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1417), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_COLON_COLON] = ACTIONS(1423), - [anon_sym_LBRACK] = ACTIONS(2272), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1479), - [anon_sym_unsigned] = ACTIONS(1479), - [anon_sym_long] = ACTIONS(1479), - [anon_sym_short] = ACTIONS(1479), - [sym_primitive_type] = ACTIONS(1481), - [anon_sym_enum] = ACTIONS(1483), - [anon_sym_class] = ACTIONS(1485), - [anon_sym_struct] = ACTIONS(1487), - [anon_sym_union] = ACTIONS(1489), - [anon_sym_DASH_DASH] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [anon_sym_sizeof] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(1439), - [anon_sym_L_SQUOTE] = ACTIONS(1441), - [anon_sym_u_SQUOTE] = ACTIONS(1441), - [anon_sym_U_SQUOTE] = ACTIONS(1441), - [anon_sym_u8_SQUOTE] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1441), - [anon_sym_L_DQUOTE] = ACTIONS(1443), - [anon_sym_u_DQUOTE] = ACTIONS(1443), - [anon_sym_U_DQUOTE] = ACTIONS(1443), - [anon_sym_u8_DQUOTE] = ACTIONS(1443), - [anon_sym_DQUOTE] = ACTIONS(1443), - [sym_true] = ACTIONS(1445), - [sym_false] = ACTIONS(1445), - [sym_null] = ACTIONS(1445), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1491), - [anon_sym_decltype] = ACTIONS(1493), - [anon_sym_typename] = ACTIONS(1495), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_co_await] = ACTIONS(1451), - [anon_sym_new] = ACTIONS(1453), - [anon_sym_requires] = ACTIONS(1455), - [sym_this] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(1445), - [sym_raw_string_literal] = ACTIONS(1457), - }, - [309] = { - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3825), - [sym_sized_type_specifier] = STATE(2346), - [sym_enum_specifier] = STATE(2346), - [sym_struct_specifier] = STATE(2346), - [sym_union_specifier] = STATE(2346), - [sym__expression] = STATE(2375), - [sym_comma_expression] = STATE(6584), - [sym_conditional_expression] = STATE(2765), - [sym_assignment_expression] = STATE(2765), - [sym_pointer_expression] = STATE(2827), - [sym_unary_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_update_expression] = STATE(2765), - [sym_cast_expression] = STATE(2765), - [sym_type_descriptor] = STATE(6768), - [sym_sizeof_expression] = STATE(2765), - [sym_subscript_expression] = STATE(2827), - [sym_call_expression] = STATE(2827), - [sym_field_expression] = STATE(2827), - [sym_compound_literal_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2827), - [sym_char_literal] = STATE(2674), - [sym_concatenated_string] = STATE(2674), - [sym_string_literal] = STATE(2093), - [sym_placeholder_type_specifier] = STATE(2346), - [sym_decltype_auto] = STATE(2494), - [sym_decltype] = STATE(2346), - [sym_class_specifier] = STATE(2346), - [sym__class_name] = STATE(6297), - [sym_dependent_type] = STATE(2346), - [sym_template_type] = STATE(4194), - [sym_template_function] = STATE(2765), - [sym_co_await_expression] = STATE(2765), - [sym_new_expression] = STATE(2765), - [sym_delete_expression] = STATE(2765), - [sym_requires_clause] = STATE(2765), - [sym_requires_expression] = STATE(2765), - [sym_lambda_expression] = STATE(2765), - [sym_lambda_capture_specifier] = STATE(4512), - [sym__unary_left_fold] = STATE(6567), - [sym__unary_right_fold] = STATE(6566), - [sym__binary_fold] = STATE(6564), - [sym_fold_expression] = STATE(2765), - [sym_parameter_pack_expansion] = STATE(2765), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4637), - [sym_qualified_identifier] = STATE(2827), - [sym_qualified_type_identifier] = STATE(4305), - [sym_user_defined_literal] = STATE(2765), - [aux_sym_type_definition_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(2075), - [sym_identifier] = ACTIONS(2270), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1411), - [anon_sym_LPAREN2] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1417), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_COLON_COLON] = ACTIONS(1423), - [anon_sym_LBRACK] = ACTIONS(2272), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1479), - [anon_sym_unsigned] = ACTIONS(1479), - [anon_sym_long] = ACTIONS(1479), - [anon_sym_short] = ACTIONS(1479), - [sym_primitive_type] = ACTIONS(1481), - [anon_sym_enum] = ACTIONS(1483), - [anon_sym_class] = ACTIONS(1485), - [anon_sym_struct] = ACTIONS(1487), - [anon_sym_union] = ACTIONS(1489), - [anon_sym_DASH_DASH] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [anon_sym_sizeof] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(1439), - [anon_sym_L_SQUOTE] = ACTIONS(1441), - [anon_sym_u_SQUOTE] = ACTIONS(1441), - [anon_sym_U_SQUOTE] = ACTIONS(1441), - [anon_sym_u8_SQUOTE] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1441), - [anon_sym_L_DQUOTE] = ACTIONS(1443), - [anon_sym_u_DQUOTE] = ACTIONS(1443), - [anon_sym_U_DQUOTE] = ACTIONS(1443), - [anon_sym_u8_DQUOTE] = ACTIONS(1443), - [anon_sym_DQUOTE] = ACTIONS(1443), - [sym_true] = ACTIONS(1445), - [sym_false] = ACTIONS(1445), - [sym_null] = ACTIONS(1445), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1491), - [anon_sym_decltype] = ACTIONS(1493), - [anon_sym_typename] = ACTIONS(1495), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_co_await] = ACTIONS(1451), - [anon_sym_new] = ACTIONS(1453), - [anon_sym_requires] = ACTIONS(1455), - [sym_this] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(1445), - [sym_raw_string_literal] = ACTIONS(1457), - }, - [310] = { - [sym_catch_clause] = STATE(305), - [aux_sym_constructor_try_statement_repeat1] = STATE(305), - [sym_identifier] = ACTIONS(2274), - [aux_sym_preproc_include_token1] = ACTIONS(2274), - [aux_sym_preproc_def_token1] = ACTIONS(2274), - [aux_sym_preproc_if_token1] = ACTIONS(2274), - [aux_sym_preproc_if_token2] = ACTIONS(2274), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2274), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2274), - [aux_sym_preproc_else_token1] = ACTIONS(2274), - [aux_sym_preproc_elif_token1] = ACTIONS(2274), - [sym_preproc_directive] = ACTIONS(2274), - [anon_sym_LPAREN2] = ACTIONS(2276), - [anon_sym_BANG] = ACTIONS(2276), - [anon_sym_TILDE] = ACTIONS(2276), - [anon_sym_DASH] = ACTIONS(2274), - [anon_sym_PLUS] = ACTIONS(2274), - [anon_sym_STAR] = ACTIONS(2276), - [anon_sym_AMP_AMP] = ACTIONS(2276), - [anon_sym_AMP] = ACTIONS(2274), - [anon_sym_SEMI] = ACTIONS(2276), - [anon_sym_typedef] = ACTIONS(2274), - [anon_sym_extern] = ACTIONS(2274), - [anon_sym___attribute__] = ACTIONS(2274), - [anon_sym_COLON_COLON] = ACTIONS(2276), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2276), - [anon_sym___declspec] = ACTIONS(2274), - [anon_sym___based] = ACTIONS(2274), - [anon_sym___cdecl] = ACTIONS(2274), - [anon_sym___clrcall] = ACTIONS(2274), - [anon_sym___stdcall] = ACTIONS(2274), - [anon_sym___fastcall] = ACTIONS(2274), - [anon_sym___thiscall] = ACTIONS(2274), - [anon_sym___vectorcall] = ACTIONS(2274), - [anon_sym_LBRACE] = ACTIONS(2276), - [anon_sym_LBRACK] = ACTIONS(2274), - [anon_sym_static] = ACTIONS(2274), - [anon_sym_register] = ACTIONS(2274), - [anon_sym_inline] = ACTIONS(2274), - [anon_sym_thread_local] = ACTIONS(2274), - [anon_sym_const] = ACTIONS(2274), - [anon_sym_volatile] = ACTIONS(2274), - [anon_sym_restrict] = ACTIONS(2274), - [anon_sym__Atomic] = ACTIONS(2274), - [anon_sym_mutable] = ACTIONS(2274), - [anon_sym_constexpr] = ACTIONS(2274), - [anon_sym_constinit] = ACTIONS(2274), - [anon_sym_consteval] = ACTIONS(2274), - [anon_sym_signed] = ACTIONS(2274), - [anon_sym_unsigned] = ACTIONS(2274), - [anon_sym_long] = ACTIONS(2274), - [anon_sym_short] = ACTIONS(2274), - [sym_primitive_type] = ACTIONS(2274), - [anon_sym_enum] = ACTIONS(2274), - [anon_sym_class] = ACTIONS(2274), - [anon_sym_struct] = ACTIONS(2274), - [anon_sym_union] = ACTIONS(2274), - [anon_sym_if] = ACTIONS(2274), - [anon_sym_switch] = ACTIONS(2274), - [anon_sym_case] = ACTIONS(2274), - [anon_sym_default] = ACTIONS(2274), - [anon_sym_while] = ACTIONS(2274), - [anon_sym_do] = ACTIONS(2274), - [anon_sym_for] = ACTIONS(2274), - [anon_sym_return] = ACTIONS(2274), - [anon_sym_break] = ACTIONS(2274), - [anon_sym_continue] = ACTIONS(2274), - [anon_sym_goto] = ACTIONS(2274), - [anon_sym_DASH_DASH] = ACTIONS(2276), - [anon_sym_PLUS_PLUS] = ACTIONS(2276), - [anon_sym_sizeof] = ACTIONS(2274), - [sym_number_literal] = ACTIONS(2276), - [anon_sym_L_SQUOTE] = ACTIONS(2276), - [anon_sym_u_SQUOTE] = ACTIONS(2276), - [anon_sym_U_SQUOTE] = ACTIONS(2276), - [anon_sym_u8_SQUOTE] = ACTIONS(2276), - [anon_sym_SQUOTE] = ACTIONS(2276), - [anon_sym_L_DQUOTE] = ACTIONS(2276), - [anon_sym_u_DQUOTE] = ACTIONS(2276), - [anon_sym_U_DQUOTE] = ACTIONS(2276), - [anon_sym_u8_DQUOTE] = ACTIONS(2276), - [anon_sym_DQUOTE] = ACTIONS(2276), - [sym_true] = ACTIONS(2274), - [sym_false] = ACTIONS(2274), - [sym_null] = ACTIONS(2274), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2274), - [anon_sym_decltype] = ACTIONS(2274), - [anon_sym_virtual] = ACTIONS(2274), - [anon_sym_explicit] = ACTIONS(2274), - [anon_sym_typename] = ACTIONS(2274), - [anon_sym_template] = ACTIONS(2274), - [anon_sym_operator] = ACTIONS(2274), - [anon_sym_try] = ACTIONS(2274), - [anon_sym_delete] = ACTIONS(2274), - [anon_sym_throw] = ACTIONS(2274), - [anon_sym_namespace] = ACTIONS(2274), - [anon_sym_using] = ACTIONS(2274), - [anon_sym_static_assert] = ACTIONS(2274), - [anon_sym_concept] = ACTIONS(2274), - [anon_sym_co_return] = ACTIONS(2274), - [anon_sym_co_yield] = ACTIONS(2274), - [anon_sym_catch] = ACTIONS(2261), - [anon_sym_co_await] = ACTIONS(2274), - [anon_sym_new] = ACTIONS(2274), - [anon_sym_requires] = ACTIONS(2274), - [sym_this] = ACTIONS(2274), - [sym_nullptr] = ACTIONS(2274), - [sym_raw_string_literal] = ACTIONS(2276), - }, - [311] = { - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3825), - [sym_sized_type_specifier] = STATE(2346), - [sym_enum_specifier] = STATE(2346), - [sym_struct_specifier] = STATE(2346), - [sym_union_specifier] = STATE(2346), - [sym__expression] = STATE(2375), - [sym_comma_expression] = STATE(6584), - [sym_conditional_expression] = STATE(2765), - [sym_assignment_expression] = STATE(2765), - [sym_pointer_expression] = STATE(2827), - [sym_unary_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_update_expression] = STATE(2765), - [sym_cast_expression] = STATE(2765), - [sym_type_descriptor] = STATE(6647), - [sym_sizeof_expression] = STATE(2765), - [sym_subscript_expression] = STATE(2827), - [sym_call_expression] = STATE(2827), - [sym_field_expression] = STATE(2827), - [sym_compound_literal_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2827), - [sym_char_literal] = STATE(2674), - [sym_concatenated_string] = STATE(2674), - [sym_string_literal] = STATE(2093), - [sym_placeholder_type_specifier] = STATE(2346), - [sym_decltype_auto] = STATE(2494), - [sym_decltype] = STATE(2346), - [sym_class_specifier] = STATE(2346), - [sym__class_name] = STATE(6297), - [sym_dependent_type] = STATE(2346), - [sym_template_type] = STATE(4194), - [sym_template_function] = STATE(2765), - [sym_co_await_expression] = STATE(2765), - [sym_new_expression] = STATE(2765), - [sym_delete_expression] = STATE(2765), - [sym_requires_clause] = STATE(2765), - [sym_requires_expression] = STATE(2765), - [sym_lambda_expression] = STATE(2765), - [sym_lambda_capture_specifier] = STATE(4512), - [sym__unary_left_fold] = STATE(6598), - [sym__unary_right_fold] = STATE(6600), - [sym__binary_fold] = STATE(6603), - [sym_fold_expression] = STATE(2765), - [sym_parameter_pack_expansion] = STATE(2765), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4637), - [sym_qualified_identifier] = STATE(2827), - [sym_qualified_type_identifier] = STATE(4305), - [sym_user_defined_literal] = STATE(2765), - [aux_sym_type_definition_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(2075), - [sym_identifier] = ACTIONS(2270), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1411), - [anon_sym_LPAREN2] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1417), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_COLON_COLON] = ACTIONS(1423), - [anon_sym_LBRACK] = ACTIONS(2272), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1479), - [anon_sym_unsigned] = ACTIONS(1479), - [anon_sym_long] = ACTIONS(1479), - [anon_sym_short] = ACTIONS(1479), - [sym_primitive_type] = ACTIONS(1481), - [anon_sym_enum] = ACTIONS(1483), - [anon_sym_class] = ACTIONS(1485), - [anon_sym_struct] = ACTIONS(1487), - [anon_sym_union] = ACTIONS(1489), - [anon_sym_DASH_DASH] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [anon_sym_sizeof] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(1439), - [anon_sym_L_SQUOTE] = ACTIONS(1441), - [anon_sym_u_SQUOTE] = ACTIONS(1441), - [anon_sym_U_SQUOTE] = ACTIONS(1441), - [anon_sym_u8_SQUOTE] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1441), - [anon_sym_L_DQUOTE] = ACTIONS(1443), - [anon_sym_u_DQUOTE] = ACTIONS(1443), - [anon_sym_U_DQUOTE] = ACTIONS(1443), - [anon_sym_u8_DQUOTE] = ACTIONS(1443), - [anon_sym_DQUOTE] = ACTIONS(1443), - [sym_true] = ACTIONS(1445), - [sym_false] = ACTIONS(1445), - [sym_null] = ACTIONS(1445), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1491), - [anon_sym_decltype] = ACTIONS(1493), - [anon_sym_typename] = ACTIONS(1495), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_co_await] = ACTIONS(1451), - [anon_sym_new] = ACTIONS(1453), - [anon_sym_requires] = ACTIONS(1455), - [sym_this] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(1445), - [sym_raw_string_literal] = ACTIONS(1457), - }, - [312] = { - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3825), - [sym_sized_type_specifier] = STATE(2346), - [sym_enum_specifier] = STATE(2346), - [sym_struct_specifier] = STATE(2346), - [sym_union_specifier] = STATE(2346), - [sym__expression] = STATE(2375), - [sym_comma_expression] = STATE(6584), - [sym_conditional_expression] = STATE(2765), - [sym_assignment_expression] = STATE(2765), - [sym_pointer_expression] = STATE(2827), - [sym_unary_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_update_expression] = STATE(2765), - [sym_cast_expression] = STATE(2765), - [sym_type_descriptor] = STATE(6735), - [sym_sizeof_expression] = STATE(2765), - [sym_subscript_expression] = STATE(2827), - [sym_call_expression] = STATE(2827), - [sym_field_expression] = STATE(2827), - [sym_compound_literal_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2827), - [sym_char_literal] = STATE(2674), - [sym_concatenated_string] = STATE(2674), - [sym_string_literal] = STATE(2093), - [sym_placeholder_type_specifier] = STATE(2346), - [sym_decltype_auto] = STATE(2494), - [sym_decltype] = STATE(2346), - [sym_class_specifier] = STATE(2346), - [sym__class_name] = STATE(6297), - [sym_dependent_type] = STATE(2346), - [sym_template_type] = STATE(4194), - [sym_template_function] = STATE(2765), - [sym_co_await_expression] = STATE(2765), - [sym_new_expression] = STATE(2765), - [sym_delete_expression] = STATE(2765), - [sym_requires_clause] = STATE(2765), - [sym_requires_expression] = STATE(2765), - [sym_lambda_expression] = STATE(2765), - [sym_lambda_capture_specifier] = STATE(4512), - [sym__unary_left_fold] = STATE(6598), - [sym__unary_right_fold] = STATE(6600), - [sym__binary_fold] = STATE(6603), - [sym_fold_expression] = STATE(2765), - [sym_parameter_pack_expansion] = STATE(2765), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4637), - [sym_qualified_identifier] = STATE(2827), - [sym_qualified_type_identifier] = STATE(4305), - [sym_user_defined_literal] = STATE(2765), - [aux_sym_type_definition_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(2075), - [sym_identifier] = ACTIONS(2270), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1411), - [anon_sym_LPAREN2] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1417), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_COLON_COLON] = ACTIONS(1423), - [anon_sym_LBRACK] = ACTIONS(2272), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1479), - [anon_sym_unsigned] = ACTIONS(1479), - [anon_sym_long] = ACTIONS(1479), - [anon_sym_short] = ACTIONS(1479), - [sym_primitive_type] = ACTIONS(1481), - [anon_sym_enum] = ACTIONS(1483), - [anon_sym_class] = ACTIONS(1485), - [anon_sym_struct] = ACTIONS(1487), - [anon_sym_union] = ACTIONS(1489), - [anon_sym_DASH_DASH] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [anon_sym_sizeof] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(1439), - [anon_sym_L_SQUOTE] = ACTIONS(1441), - [anon_sym_u_SQUOTE] = ACTIONS(1441), - [anon_sym_U_SQUOTE] = ACTIONS(1441), - [anon_sym_u8_SQUOTE] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1441), - [anon_sym_L_DQUOTE] = ACTIONS(1443), - [anon_sym_u_DQUOTE] = ACTIONS(1443), - [anon_sym_U_DQUOTE] = ACTIONS(1443), - [anon_sym_u8_DQUOTE] = ACTIONS(1443), - [anon_sym_DQUOTE] = ACTIONS(1443), - [sym_true] = ACTIONS(1445), - [sym_false] = ACTIONS(1445), - [sym_null] = ACTIONS(1445), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1491), - [anon_sym_decltype] = ACTIONS(1493), - [anon_sym_typename] = ACTIONS(1495), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_co_await] = ACTIONS(1451), - [anon_sym_new] = ACTIONS(1453), - [anon_sym_requires] = ACTIONS(1455), - [sym_this] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(1445), - [sym_raw_string_literal] = ACTIONS(1457), + [315] = { + [sym_catch_clause] = STATE(316), + [aux_sym_constructor_try_statement_repeat1] = STATE(316), + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token2] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [aux_sym_preproc_else_token1] = ACTIONS(2405), + [aux_sym_preproc_elif_token1] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_catch] = ACTIONS(2409), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + [sym_raw_string_literal] = ACTIONS(2407), }, - [313] = { - [sym_catch_clause] = STATE(305), - [aux_sym_constructor_try_statement_repeat1] = STATE(305), - [sym_identifier] = ACTIONS(2278), - [aux_sym_preproc_include_token1] = ACTIONS(2278), - [aux_sym_preproc_def_token1] = ACTIONS(2278), - [aux_sym_preproc_if_token1] = ACTIONS(2278), - [aux_sym_preproc_if_token2] = ACTIONS(2278), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2278), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2278), - [aux_sym_preproc_else_token1] = ACTIONS(2278), - [aux_sym_preproc_elif_token1] = ACTIONS(2278), - [sym_preproc_directive] = ACTIONS(2278), - [anon_sym_LPAREN2] = ACTIONS(2280), - [anon_sym_BANG] = ACTIONS(2280), - [anon_sym_TILDE] = ACTIONS(2280), - [anon_sym_DASH] = ACTIONS(2278), - [anon_sym_PLUS] = ACTIONS(2278), - [anon_sym_STAR] = ACTIONS(2280), - [anon_sym_AMP_AMP] = ACTIONS(2280), - [anon_sym_AMP] = ACTIONS(2278), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_typedef] = ACTIONS(2278), - [anon_sym_extern] = ACTIONS(2278), - [anon_sym___attribute__] = ACTIONS(2278), - [anon_sym_COLON_COLON] = ACTIONS(2280), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2280), - [anon_sym___declspec] = ACTIONS(2278), - [anon_sym___based] = ACTIONS(2278), - [anon_sym___cdecl] = ACTIONS(2278), - [anon_sym___clrcall] = ACTIONS(2278), - [anon_sym___stdcall] = ACTIONS(2278), - [anon_sym___fastcall] = ACTIONS(2278), - [anon_sym___thiscall] = ACTIONS(2278), - [anon_sym___vectorcall] = ACTIONS(2278), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_LBRACK] = ACTIONS(2278), - [anon_sym_static] = ACTIONS(2278), - [anon_sym_register] = ACTIONS(2278), - [anon_sym_inline] = ACTIONS(2278), - [anon_sym_thread_local] = ACTIONS(2278), - [anon_sym_const] = ACTIONS(2278), - [anon_sym_volatile] = ACTIONS(2278), - [anon_sym_restrict] = ACTIONS(2278), - [anon_sym__Atomic] = ACTIONS(2278), - [anon_sym_mutable] = ACTIONS(2278), - [anon_sym_constexpr] = ACTIONS(2278), - [anon_sym_constinit] = ACTIONS(2278), - [anon_sym_consteval] = ACTIONS(2278), - [anon_sym_signed] = ACTIONS(2278), - [anon_sym_unsigned] = ACTIONS(2278), - [anon_sym_long] = ACTIONS(2278), - [anon_sym_short] = ACTIONS(2278), - [sym_primitive_type] = ACTIONS(2278), - [anon_sym_enum] = ACTIONS(2278), - [anon_sym_class] = ACTIONS(2278), - [anon_sym_struct] = ACTIONS(2278), - [anon_sym_union] = ACTIONS(2278), - [anon_sym_if] = ACTIONS(2278), - [anon_sym_switch] = ACTIONS(2278), - [anon_sym_case] = ACTIONS(2278), - [anon_sym_default] = ACTIONS(2278), - [anon_sym_while] = ACTIONS(2278), - [anon_sym_do] = ACTIONS(2278), - [anon_sym_for] = ACTIONS(2278), - [anon_sym_return] = ACTIONS(2278), - [anon_sym_break] = ACTIONS(2278), - [anon_sym_continue] = ACTIONS(2278), - [anon_sym_goto] = ACTIONS(2278), - [anon_sym_DASH_DASH] = ACTIONS(2280), - [anon_sym_PLUS_PLUS] = ACTIONS(2280), - [anon_sym_sizeof] = ACTIONS(2278), - [sym_number_literal] = ACTIONS(2280), - [anon_sym_L_SQUOTE] = ACTIONS(2280), - [anon_sym_u_SQUOTE] = ACTIONS(2280), - [anon_sym_U_SQUOTE] = ACTIONS(2280), - [anon_sym_u8_SQUOTE] = ACTIONS(2280), - [anon_sym_SQUOTE] = ACTIONS(2280), - [anon_sym_L_DQUOTE] = ACTIONS(2280), - [anon_sym_u_DQUOTE] = ACTIONS(2280), - [anon_sym_U_DQUOTE] = ACTIONS(2280), - [anon_sym_u8_DQUOTE] = ACTIONS(2280), - [anon_sym_DQUOTE] = ACTIONS(2280), - [sym_true] = ACTIONS(2278), - [sym_false] = ACTIONS(2278), - [sym_null] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2278), - [anon_sym_decltype] = ACTIONS(2278), - [anon_sym_virtual] = ACTIONS(2278), - [anon_sym_explicit] = ACTIONS(2278), - [anon_sym_typename] = ACTIONS(2278), - [anon_sym_template] = ACTIONS(2278), - [anon_sym_operator] = ACTIONS(2278), - [anon_sym_try] = ACTIONS(2278), - [anon_sym_delete] = ACTIONS(2278), - [anon_sym_throw] = ACTIONS(2278), - [anon_sym_namespace] = ACTIONS(2278), - [anon_sym_using] = ACTIONS(2278), - [anon_sym_static_assert] = ACTIONS(2278), - [anon_sym_concept] = ACTIONS(2278), - [anon_sym_co_return] = ACTIONS(2278), - [anon_sym_co_yield] = ACTIONS(2278), - [anon_sym_catch] = ACTIONS(2261), - [anon_sym_co_await] = ACTIONS(2278), - [anon_sym_new] = ACTIONS(2278), - [anon_sym_requires] = ACTIONS(2278), - [sym_this] = ACTIONS(2278), - [sym_nullptr] = ACTIONS(2278), - [sym_raw_string_literal] = ACTIONS(2280), + [316] = { + [sym_catch_clause] = STATE(316), + [aux_sym_constructor_try_statement_repeat1] = STATE(316), + [sym_identifier] = ACTIONS(2411), + [aux_sym_preproc_include_token1] = ACTIONS(2411), + [aux_sym_preproc_def_token1] = ACTIONS(2411), + [aux_sym_preproc_if_token1] = ACTIONS(2411), + [aux_sym_preproc_if_token2] = ACTIONS(2411), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2411), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2411), + [aux_sym_preproc_else_token1] = ACTIONS(2411), + [aux_sym_preproc_elif_token1] = ACTIONS(2411), + [sym_preproc_directive] = ACTIONS(2411), + [anon_sym_LPAREN2] = ACTIONS(2413), + [anon_sym_BANG] = ACTIONS(2413), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2411), + [anon_sym_PLUS] = ACTIONS(2411), + [anon_sym_STAR] = ACTIONS(2413), + [anon_sym_AMP_AMP] = ACTIONS(2413), + [anon_sym_AMP] = ACTIONS(2411), + [anon_sym_SEMI] = ACTIONS(2413), + [anon_sym_typedef] = ACTIONS(2411), + [anon_sym_extern] = ACTIONS(2411), + [anon_sym___attribute__] = ACTIONS(2411), + [anon_sym_COLON_COLON] = ACTIONS(2413), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2413), + [anon_sym___declspec] = ACTIONS(2411), + [anon_sym___based] = ACTIONS(2411), + [anon_sym___cdecl] = ACTIONS(2411), + [anon_sym___clrcall] = ACTIONS(2411), + [anon_sym___stdcall] = ACTIONS(2411), + [anon_sym___fastcall] = ACTIONS(2411), + [anon_sym___thiscall] = ACTIONS(2411), + [anon_sym___vectorcall] = ACTIONS(2411), + [anon_sym_LBRACE] = ACTIONS(2413), + [anon_sym_LBRACK] = ACTIONS(2411), + [anon_sym_static] = ACTIONS(2411), + [anon_sym_register] = ACTIONS(2411), + [anon_sym_inline] = ACTIONS(2411), + [anon_sym_thread_local] = ACTIONS(2411), + [anon_sym_const] = ACTIONS(2411), + [anon_sym_volatile] = ACTIONS(2411), + [anon_sym_restrict] = ACTIONS(2411), + [anon_sym__Atomic] = ACTIONS(2411), + [anon_sym_mutable] = ACTIONS(2411), + [anon_sym_constexpr] = ACTIONS(2411), + [anon_sym_constinit] = ACTIONS(2411), + [anon_sym_consteval] = ACTIONS(2411), + [anon_sym_signed] = ACTIONS(2411), + [anon_sym_unsigned] = ACTIONS(2411), + [anon_sym_long] = ACTIONS(2411), + [anon_sym_short] = ACTIONS(2411), + [sym_primitive_type] = ACTIONS(2411), + [anon_sym_enum] = ACTIONS(2411), + [anon_sym_class] = ACTIONS(2411), + [anon_sym_struct] = ACTIONS(2411), + [anon_sym_union] = ACTIONS(2411), + [anon_sym_if] = ACTIONS(2411), + [anon_sym_else] = ACTIONS(2411), + [anon_sym_switch] = ACTIONS(2411), + [anon_sym_case] = ACTIONS(2411), + [anon_sym_default] = ACTIONS(2411), + [anon_sym_while] = ACTIONS(2411), + [anon_sym_do] = ACTIONS(2411), + [anon_sym_for] = ACTIONS(2411), + [anon_sym_return] = ACTIONS(2411), + [anon_sym_break] = ACTIONS(2411), + [anon_sym_continue] = ACTIONS(2411), + [anon_sym_goto] = ACTIONS(2411), + [anon_sym_not] = ACTIONS(2411), + [anon_sym_compl] = ACTIONS(2411), + [anon_sym_DASH_DASH] = ACTIONS(2413), + [anon_sym_PLUS_PLUS] = ACTIONS(2413), + [anon_sym_sizeof] = ACTIONS(2411), + [sym_number_literal] = ACTIONS(2413), + [anon_sym_L_SQUOTE] = ACTIONS(2413), + [anon_sym_u_SQUOTE] = ACTIONS(2413), + [anon_sym_U_SQUOTE] = ACTIONS(2413), + [anon_sym_u8_SQUOTE] = ACTIONS(2413), + [anon_sym_SQUOTE] = ACTIONS(2413), + [anon_sym_L_DQUOTE] = ACTIONS(2413), + [anon_sym_u_DQUOTE] = ACTIONS(2413), + [anon_sym_U_DQUOTE] = ACTIONS(2413), + [anon_sym_u8_DQUOTE] = ACTIONS(2413), + [anon_sym_DQUOTE] = ACTIONS(2413), + [sym_true] = ACTIONS(2411), + [sym_false] = ACTIONS(2411), + [sym_null] = ACTIONS(2411), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2411), + [anon_sym_decltype] = ACTIONS(2411), + [anon_sym_virtual] = ACTIONS(2411), + [anon_sym_explicit] = ACTIONS(2411), + [anon_sym_typename] = ACTIONS(2411), + [anon_sym_template] = ACTIONS(2411), + [anon_sym_operator] = ACTIONS(2411), + [anon_sym_try] = ACTIONS(2411), + [anon_sym_delete] = ACTIONS(2411), + [anon_sym_throw] = ACTIONS(2411), + [anon_sym_namespace] = ACTIONS(2411), + [anon_sym_using] = ACTIONS(2411), + [anon_sym_static_assert] = ACTIONS(2411), + [anon_sym_concept] = ACTIONS(2411), + [anon_sym_co_return] = ACTIONS(2411), + [anon_sym_co_yield] = ACTIONS(2411), + [anon_sym_catch] = ACTIONS(2415), + [anon_sym_co_await] = ACTIONS(2411), + [anon_sym_new] = ACTIONS(2411), + [anon_sym_requires] = ACTIONS(2411), + [sym_this] = ACTIONS(2411), + [sym_nullptr] = ACTIONS(2411), + [sym_raw_string_literal] = ACTIONS(2413), }, - [314] = { - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3825), - [sym_sized_type_specifier] = STATE(2346), - [sym_enum_specifier] = STATE(2346), - [sym_struct_specifier] = STATE(2346), - [sym_union_specifier] = STATE(2346), - [sym__expression] = STATE(2375), - [sym_comma_expression] = STATE(6584), - [sym_conditional_expression] = STATE(2765), - [sym_assignment_expression] = STATE(2765), - [sym_pointer_expression] = STATE(2827), - [sym_unary_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_update_expression] = STATE(2765), - [sym_cast_expression] = STATE(2765), - [sym_type_descriptor] = STATE(6597), - [sym_sizeof_expression] = STATE(2765), - [sym_subscript_expression] = STATE(2827), - [sym_call_expression] = STATE(2827), - [sym_field_expression] = STATE(2827), - [sym_compound_literal_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2827), - [sym_char_literal] = STATE(2674), - [sym_concatenated_string] = STATE(2674), - [sym_string_literal] = STATE(2093), - [sym_placeholder_type_specifier] = STATE(2346), - [sym_decltype_auto] = STATE(2494), - [sym_decltype] = STATE(2346), - [sym_class_specifier] = STATE(2346), - [sym__class_name] = STATE(6297), - [sym_dependent_type] = STATE(2346), - [sym_template_type] = STATE(4194), - [sym_template_function] = STATE(2765), - [sym_co_await_expression] = STATE(2765), - [sym_new_expression] = STATE(2765), - [sym_delete_expression] = STATE(2765), - [sym_requires_clause] = STATE(2765), - [sym_requires_expression] = STATE(2765), - [sym_lambda_expression] = STATE(2765), - [sym_lambda_capture_specifier] = STATE(4512), - [sym__unary_left_fold] = STATE(6598), - [sym__unary_right_fold] = STATE(6600), - [sym__binary_fold] = STATE(6603), - [sym_fold_expression] = STATE(2765), - [sym_parameter_pack_expansion] = STATE(2765), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4637), - [sym_qualified_identifier] = STATE(2827), - [sym_qualified_type_identifier] = STATE(4305), - [sym_user_defined_literal] = STATE(2765), - [aux_sym_type_definition_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(2075), - [sym_identifier] = ACTIONS(2270), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1411), - [anon_sym_LPAREN2] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1417), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_COLON_COLON] = ACTIONS(1423), - [anon_sym_LBRACK] = ACTIONS(2272), + [317] = { + [sym_type_qualifier] = STATE(3369), + [sym__type_specifier] = STATE(4187), + [sym_sized_type_specifier] = STATE(2780), + [sym_enum_specifier] = STATE(2780), + [sym_struct_specifier] = STATE(2780), + [sym_union_specifier] = STATE(2780), + [sym__expression] = STATE(2875), + [sym_comma_expression] = STATE(7202), + [sym_conditional_expression] = STATE(3135), + [sym_assignment_expression] = STATE(3135), + [sym_pointer_expression] = STATE(2788), + [sym_unary_expression] = STATE(3135), + [sym_binary_expression] = STATE(3135), + [sym_update_expression] = STATE(3135), + [sym_cast_expression] = STATE(3135), + [sym_type_descriptor] = STATE(6966), + [sym_sizeof_expression] = STATE(3135), + [sym_subscript_expression] = STATE(2788), + [sym_call_expression] = STATE(2788), + [sym_field_expression] = STATE(2788), + [sym_compound_literal_expression] = STATE(3135), + [sym_parenthesized_expression] = STATE(2788), + [sym_char_literal] = STATE(2981), + [sym_concatenated_string] = STATE(2981), + [sym_string_literal] = STATE(1970), + [sym_placeholder_type_specifier] = STATE(2780), + [sym_decltype_auto] = STATE(2731), + [sym_decltype] = STATE(2780), + [sym_class_specifier] = STATE(2780), + [sym__class_name] = STATE(6450), + [sym_dependent_type] = STATE(2780), + [sym_template_type] = STATE(4443), + [sym_template_function] = STATE(3135), + [sym_co_await_expression] = STATE(3135), + [sym_new_expression] = STATE(3135), + [sym_delete_expression] = STATE(3135), + [sym_requires_clause] = STATE(3135), + [sym_requires_expression] = STATE(3135), + [sym_lambda_expression] = STATE(3135), + [sym_lambda_capture_specifier] = STATE(4771), + [sym__unary_left_fold] = STATE(6965), + [sym__unary_right_fold] = STATE(6964), + [sym__binary_fold] = STATE(6963), + [sym_fold_expression] = STATE(3135), + [sym_parameter_pack_expansion] = STATE(3135), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4907), + [sym_qualified_identifier] = STATE(2788), + [sym_qualified_type_identifier] = STATE(4514), + [sym_user_defined_literal] = STATE(3135), + [aux_sym_type_definition_repeat1] = STATE(3369), + [aux_sym_sized_type_specifier_repeat1] = STATE(1935), + [sym_identifier] = ACTIONS(2418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1713), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -69768,109 +72202,224 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_constexpr] = ACTIONS(57), [anon_sym_constinit] = ACTIONS(57), [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1479), - [anon_sym_unsigned] = ACTIONS(1479), - [anon_sym_long] = ACTIONS(1479), - [anon_sym_short] = ACTIONS(1479), - [sym_primitive_type] = ACTIONS(1481), - [anon_sym_enum] = ACTIONS(1483), - [anon_sym_class] = ACTIONS(1485), - [anon_sym_struct] = ACTIONS(1487), - [anon_sym_union] = ACTIONS(1489), - [anon_sym_DASH_DASH] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [anon_sym_sizeof] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(1439), - [anon_sym_L_SQUOTE] = ACTIONS(1441), - [anon_sym_u_SQUOTE] = ACTIONS(1441), - [anon_sym_U_SQUOTE] = ACTIONS(1441), - [anon_sym_u8_SQUOTE] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1441), - [anon_sym_L_DQUOTE] = ACTIONS(1443), - [anon_sym_u_DQUOTE] = ACTIONS(1443), - [anon_sym_U_DQUOTE] = ACTIONS(1443), - [anon_sym_u8_DQUOTE] = ACTIONS(1443), - [anon_sym_DQUOTE] = ACTIONS(1443), - [sym_true] = ACTIONS(1445), - [sym_false] = ACTIONS(1445), - [sym_null] = ACTIONS(1445), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1491), - [anon_sym_decltype] = ACTIONS(1493), - [anon_sym_typename] = ACTIONS(1495), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_co_await] = ACTIONS(1451), - [anon_sym_new] = ACTIONS(1453), - [anon_sym_requires] = ACTIONS(1455), - [sym_this] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(1445), - [sym_raw_string_literal] = ACTIONS(1457), + [anon_sym_signed] = ACTIONS(1483), + [anon_sym_unsigned] = ACTIONS(1483), + [anon_sym_long] = ACTIONS(1483), + [anon_sym_short] = ACTIONS(1483), + [sym_primitive_type] = ACTIONS(1485), + [anon_sym_enum] = ACTIONS(1487), + [anon_sym_class] = ACTIONS(1489), + [anon_sym_struct] = ACTIONS(1491), + [anon_sym_union] = ACTIONS(1493), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1495), + [anon_sym_decltype] = ACTIONS(1497), + [anon_sym_typename] = ACTIONS(1499), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_co_await] = ACTIONS(1455), + [anon_sym_new] = ACTIONS(1457), + [anon_sym_requires] = ACTIONS(1459), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + [sym_raw_string_literal] = ACTIONS(1461), }, - [315] = { - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3825), - [sym_sized_type_specifier] = STATE(2346), - [sym_enum_specifier] = STATE(2346), - [sym_struct_specifier] = STATE(2346), - [sym_union_specifier] = STATE(2346), - [sym__expression] = STATE(2375), - [sym_comma_expression] = STATE(6584), - [sym_conditional_expression] = STATE(2765), - [sym_assignment_expression] = STATE(2765), - [sym_pointer_expression] = STATE(2827), - [sym_unary_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_update_expression] = STATE(2765), - [sym_cast_expression] = STATE(2765), - [sym_type_descriptor] = STATE(6629), - [sym_sizeof_expression] = STATE(2765), - [sym_subscript_expression] = STATE(2827), - [sym_call_expression] = STATE(2827), - [sym_field_expression] = STATE(2827), - [sym_compound_literal_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2827), - [sym_char_literal] = STATE(2674), - [sym_concatenated_string] = STATE(2674), - [sym_string_literal] = STATE(2093), - [sym_placeholder_type_specifier] = STATE(2346), - [sym_decltype_auto] = STATE(2494), - [sym_decltype] = STATE(2346), - [sym_class_specifier] = STATE(2346), - [sym__class_name] = STATE(6297), - [sym_dependent_type] = STATE(2346), - [sym_template_type] = STATE(4194), - [sym_template_function] = STATE(2765), - [sym_co_await_expression] = STATE(2765), - [sym_new_expression] = STATE(2765), - [sym_delete_expression] = STATE(2765), - [sym_requires_clause] = STATE(2765), - [sym_requires_expression] = STATE(2765), - [sym_lambda_expression] = STATE(2765), - [sym_lambda_capture_specifier] = STATE(4512), - [sym__unary_left_fold] = STATE(6567), - [sym__unary_right_fold] = STATE(6566), - [sym__binary_fold] = STATE(6564), - [sym_fold_expression] = STATE(2765), - [sym_parameter_pack_expansion] = STATE(2765), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4637), - [sym_qualified_identifier] = STATE(2827), - [sym_qualified_type_identifier] = STATE(4305), - [sym_user_defined_literal] = STATE(2765), - [aux_sym_type_definition_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(2075), - [sym_identifier] = ACTIONS(2270), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1411), - [anon_sym_LPAREN2] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1417), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_COLON_COLON] = ACTIONS(1423), - [anon_sym_LBRACK] = ACTIONS(2272), + [318] = { + [sym_catch_clause] = STATE(316), + [aux_sym_constructor_try_statement_repeat1] = STATE(316), + [sym_identifier] = ACTIONS(2420), + [aux_sym_preproc_include_token1] = ACTIONS(2420), + [aux_sym_preproc_def_token1] = ACTIONS(2420), + [aux_sym_preproc_if_token1] = ACTIONS(2420), + [aux_sym_preproc_if_token2] = ACTIONS(2420), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2420), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2420), + [aux_sym_preproc_else_token1] = ACTIONS(2420), + [aux_sym_preproc_elif_token1] = ACTIONS(2420), + [sym_preproc_directive] = ACTIONS(2420), + [anon_sym_LPAREN2] = ACTIONS(2422), + [anon_sym_BANG] = ACTIONS(2422), + [anon_sym_TILDE] = ACTIONS(2422), + [anon_sym_DASH] = ACTIONS(2420), + [anon_sym_PLUS] = ACTIONS(2420), + [anon_sym_STAR] = ACTIONS(2422), + [anon_sym_AMP_AMP] = ACTIONS(2422), + [anon_sym_AMP] = ACTIONS(2420), + [anon_sym_SEMI] = ACTIONS(2422), + [anon_sym_typedef] = ACTIONS(2420), + [anon_sym_extern] = ACTIONS(2420), + [anon_sym___attribute__] = ACTIONS(2420), + [anon_sym_COLON_COLON] = ACTIONS(2422), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2422), + [anon_sym___declspec] = ACTIONS(2420), + [anon_sym___based] = ACTIONS(2420), + [anon_sym___cdecl] = ACTIONS(2420), + [anon_sym___clrcall] = ACTIONS(2420), + [anon_sym___stdcall] = ACTIONS(2420), + [anon_sym___fastcall] = ACTIONS(2420), + [anon_sym___thiscall] = ACTIONS(2420), + [anon_sym___vectorcall] = ACTIONS(2420), + [anon_sym_LBRACE] = ACTIONS(2422), + [anon_sym_LBRACK] = ACTIONS(2420), + [anon_sym_static] = ACTIONS(2420), + [anon_sym_register] = ACTIONS(2420), + [anon_sym_inline] = ACTIONS(2420), + [anon_sym_thread_local] = ACTIONS(2420), + [anon_sym_const] = ACTIONS(2420), + [anon_sym_volatile] = ACTIONS(2420), + [anon_sym_restrict] = ACTIONS(2420), + [anon_sym__Atomic] = ACTIONS(2420), + [anon_sym_mutable] = ACTIONS(2420), + [anon_sym_constexpr] = ACTIONS(2420), + [anon_sym_constinit] = ACTIONS(2420), + [anon_sym_consteval] = ACTIONS(2420), + [anon_sym_signed] = ACTIONS(2420), + [anon_sym_unsigned] = ACTIONS(2420), + [anon_sym_long] = ACTIONS(2420), + [anon_sym_short] = ACTIONS(2420), + [sym_primitive_type] = ACTIONS(2420), + [anon_sym_enum] = ACTIONS(2420), + [anon_sym_class] = ACTIONS(2420), + [anon_sym_struct] = ACTIONS(2420), + [anon_sym_union] = ACTIONS(2420), + [anon_sym_if] = ACTIONS(2420), + [anon_sym_switch] = ACTIONS(2420), + [anon_sym_case] = ACTIONS(2420), + [anon_sym_default] = ACTIONS(2420), + [anon_sym_while] = ACTIONS(2420), + [anon_sym_do] = ACTIONS(2420), + [anon_sym_for] = ACTIONS(2420), + [anon_sym_return] = ACTIONS(2420), + [anon_sym_break] = ACTIONS(2420), + [anon_sym_continue] = ACTIONS(2420), + [anon_sym_goto] = ACTIONS(2420), + [anon_sym_not] = ACTIONS(2420), + [anon_sym_compl] = ACTIONS(2420), + [anon_sym_DASH_DASH] = ACTIONS(2422), + [anon_sym_PLUS_PLUS] = ACTIONS(2422), + [anon_sym_sizeof] = ACTIONS(2420), + [sym_number_literal] = ACTIONS(2422), + [anon_sym_L_SQUOTE] = ACTIONS(2422), + [anon_sym_u_SQUOTE] = ACTIONS(2422), + [anon_sym_U_SQUOTE] = ACTIONS(2422), + [anon_sym_u8_SQUOTE] = ACTIONS(2422), + [anon_sym_SQUOTE] = ACTIONS(2422), + [anon_sym_L_DQUOTE] = ACTIONS(2422), + [anon_sym_u_DQUOTE] = ACTIONS(2422), + [anon_sym_U_DQUOTE] = ACTIONS(2422), + [anon_sym_u8_DQUOTE] = ACTIONS(2422), + [anon_sym_DQUOTE] = ACTIONS(2422), + [sym_true] = ACTIONS(2420), + [sym_false] = ACTIONS(2420), + [sym_null] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2420), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_virtual] = ACTIONS(2420), + [anon_sym_explicit] = ACTIONS(2420), + [anon_sym_typename] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2420), + [anon_sym_operator] = ACTIONS(2420), + [anon_sym_try] = ACTIONS(2420), + [anon_sym_delete] = ACTIONS(2420), + [anon_sym_throw] = ACTIONS(2420), + [anon_sym_namespace] = ACTIONS(2420), + [anon_sym_using] = ACTIONS(2420), + [anon_sym_static_assert] = ACTIONS(2420), + [anon_sym_concept] = ACTIONS(2420), + [anon_sym_co_return] = ACTIONS(2420), + [anon_sym_co_yield] = ACTIONS(2420), + [anon_sym_catch] = ACTIONS(2409), + [anon_sym_co_await] = ACTIONS(2420), + [anon_sym_new] = ACTIONS(2420), + [anon_sym_requires] = ACTIONS(2420), + [sym_this] = ACTIONS(2420), + [sym_nullptr] = ACTIONS(2420), + [sym_raw_string_literal] = ACTIONS(2422), + }, + [319] = { + [sym_type_qualifier] = STATE(3369), + [sym__type_specifier] = STATE(4187), + [sym_sized_type_specifier] = STATE(2780), + [sym_enum_specifier] = STATE(2780), + [sym_struct_specifier] = STATE(2780), + [sym_union_specifier] = STATE(2780), + [sym__expression] = STATE(2735), + [sym_comma_expression] = STATE(6941), + [sym_conditional_expression] = STATE(3135), + [sym_assignment_expression] = STATE(3135), + [sym_pointer_expression] = STATE(2788), + [sym_unary_expression] = STATE(3135), + [sym_binary_expression] = STATE(3135), + [sym_update_expression] = STATE(3135), + [sym_cast_expression] = STATE(3135), + [sym_type_descriptor] = STATE(7119), + [sym_sizeof_expression] = STATE(3135), + [sym_subscript_expression] = STATE(2788), + [sym_call_expression] = STATE(2788), + [sym_field_expression] = STATE(2788), + [sym_compound_literal_expression] = STATE(3135), + [sym_parenthesized_expression] = STATE(2788), + [sym_char_literal] = STATE(2981), + [sym_concatenated_string] = STATE(2981), + [sym_string_literal] = STATE(1970), + [sym_placeholder_type_specifier] = STATE(2780), + [sym_decltype_auto] = STATE(2731), + [sym_decltype] = STATE(2780), + [sym_class_specifier] = STATE(2780), + [sym__class_name] = STATE(6450), + [sym_dependent_type] = STATE(2780), + [sym_template_type] = STATE(4443), + [sym_template_function] = STATE(3135), + [sym_co_await_expression] = STATE(3135), + [sym_new_expression] = STATE(3135), + [sym_delete_expression] = STATE(3135), + [sym_requires_clause] = STATE(3135), + [sym_requires_expression] = STATE(3135), + [sym_lambda_expression] = STATE(3135), + [sym_lambda_capture_specifier] = STATE(4771), + [sym__unary_left_fold] = STATE(7167), + [sym__unary_right_fold] = STATE(7166), + [sym__binary_fold] = STATE(7158), + [sym_fold_expression] = STATE(3135), + [sym_parameter_pack_expansion] = STATE(3135), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4907), + [sym_qualified_identifier] = STATE(2788), + [sym_qualified_type_identifier] = STATE(4514), + [sym_user_defined_literal] = STATE(3135), + [aux_sym_type_definition_repeat1] = STATE(3369), + [aux_sym_sized_type_specifier_repeat1] = STATE(1935), + [sym_identifier] = ACTIONS(2418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1713), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -69879,109 +72428,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_constexpr] = ACTIONS(57), [anon_sym_constinit] = ACTIONS(57), [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1479), - [anon_sym_unsigned] = ACTIONS(1479), - [anon_sym_long] = ACTIONS(1479), - [anon_sym_short] = ACTIONS(1479), - [sym_primitive_type] = ACTIONS(1481), - [anon_sym_enum] = ACTIONS(1483), - [anon_sym_class] = ACTIONS(1485), - [anon_sym_struct] = ACTIONS(1487), - [anon_sym_union] = ACTIONS(1489), - [anon_sym_DASH_DASH] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [anon_sym_sizeof] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(1439), - [anon_sym_L_SQUOTE] = ACTIONS(1441), - [anon_sym_u_SQUOTE] = ACTIONS(1441), - [anon_sym_U_SQUOTE] = ACTIONS(1441), - [anon_sym_u8_SQUOTE] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1441), - [anon_sym_L_DQUOTE] = ACTIONS(1443), - [anon_sym_u_DQUOTE] = ACTIONS(1443), - [anon_sym_U_DQUOTE] = ACTIONS(1443), - [anon_sym_u8_DQUOTE] = ACTIONS(1443), - [anon_sym_DQUOTE] = ACTIONS(1443), - [sym_true] = ACTIONS(1445), - [sym_false] = ACTIONS(1445), - [sym_null] = ACTIONS(1445), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1491), - [anon_sym_decltype] = ACTIONS(1493), - [anon_sym_typename] = ACTIONS(1495), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_co_await] = ACTIONS(1451), - [anon_sym_new] = ACTIONS(1453), - [anon_sym_requires] = ACTIONS(1455), - [sym_this] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(1445), - [sym_raw_string_literal] = ACTIONS(1457), + [anon_sym_signed] = ACTIONS(1483), + [anon_sym_unsigned] = ACTIONS(1483), + [anon_sym_long] = ACTIONS(1483), + [anon_sym_short] = ACTIONS(1483), + [sym_primitive_type] = ACTIONS(1485), + [anon_sym_enum] = ACTIONS(1487), + [anon_sym_class] = ACTIONS(1489), + [anon_sym_struct] = ACTIONS(1491), + [anon_sym_union] = ACTIONS(1493), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1495), + [anon_sym_decltype] = ACTIONS(1497), + [anon_sym_typename] = ACTIONS(1499), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_co_await] = ACTIONS(1455), + [anon_sym_new] = ACTIONS(1457), + [anon_sym_requires] = ACTIONS(1459), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + [sym_raw_string_literal] = ACTIONS(1461), }, - [316] = { - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3825), - [sym_sized_type_specifier] = STATE(2346), - [sym_enum_specifier] = STATE(2346), - [sym_struct_specifier] = STATE(2346), - [sym_union_specifier] = STATE(2346), - [sym__expression] = STATE(2375), - [sym_comma_expression] = STATE(6584), - [sym_conditional_expression] = STATE(2765), - [sym_assignment_expression] = STATE(2765), - [sym_pointer_expression] = STATE(2827), - [sym_unary_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_update_expression] = STATE(2765), - [sym_cast_expression] = STATE(2765), - [sym_type_descriptor] = STATE(6602), - [sym_sizeof_expression] = STATE(2765), - [sym_subscript_expression] = STATE(2827), - [sym_call_expression] = STATE(2827), - [sym_field_expression] = STATE(2827), - [sym_compound_literal_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2827), - [sym_char_literal] = STATE(2674), - [sym_concatenated_string] = STATE(2674), - [sym_string_literal] = STATE(2093), - [sym_placeholder_type_specifier] = STATE(2346), - [sym_decltype_auto] = STATE(2494), - [sym_decltype] = STATE(2346), - [sym_class_specifier] = STATE(2346), - [sym__class_name] = STATE(6297), - [sym_dependent_type] = STATE(2346), - [sym_template_type] = STATE(4194), - [sym_template_function] = STATE(2765), - [sym_co_await_expression] = STATE(2765), - [sym_new_expression] = STATE(2765), - [sym_delete_expression] = STATE(2765), - [sym_requires_clause] = STATE(2765), - [sym_requires_expression] = STATE(2765), - [sym_lambda_expression] = STATE(2765), - [sym_lambda_capture_specifier] = STATE(4512), - [sym__unary_left_fold] = STATE(6567), - [sym__unary_right_fold] = STATE(6566), - [sym__binary_fold] = STATE(6564), - [sym_fold_expression] = STATE(2765), - [sym_parameter_pack_expansion] = STATE(2765), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4637), - [sym_qualified_identifier] = STATE(2827), - [sym_qualified_type_identifier] = STATE(4305), - [sym_user_defined_literal] = STATE(2765), - [aux_sym_type_definition_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(2075), - [sym_identifier] = ACTIONS(2270), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1411), - [anon_sym_LPAREN2] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1417), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_COLON_COLON] = ACTIONS(1423), - [anon_sym_LBRACK] = ACTIONS(2272), + [320] = { + [sym_type_qualifier] = STATE(3369), + [sym__type_specifier] = STATE(4187), + [sym_sized_type_specifier] = STATE(2780), + [sym_enum_specifier] = STATE(2780), + [sym_struct_specifier] = STATE(2780), + [sym_union_specifier] = STATE(2780), + [sym__expression] = STATE(2801), + [sym_comma_expression] = STATE(7222), + [sym_conditional_expression] = STATE(3135), + [sym_assignment_expression] = STATE(3135), + [sym_pointer_expression] = STATE(2788), + [sym_unary_expression] = STATE(3135), + [sym_binary_expression] = STATE(3135), + [sym_update_expression] = STATE(3135), + [sym_cast_expression] = STATE(3135), + [sym_type_descriptor] = STATE(7134), + [sym_sizeof_expression] = STATE(3135), + [sym_subscript_expression] = STATE(2788), + [sym_call_expression] = STATE(2788), + [sym_field_expression] = STATE(2788), + [sym_compound_literal_expression] = STATE(3135), + [sym_parenthesized_expression] = STATE(2788), + [sym_char_literal] = STATE(2981), + [sym_concatenated_string] = STATE(2981), + [sym_string_literal] = STATE(1970), + [sym_placeholder_type_specifier] = STATE(2780), + [sym_decltype_auto] = STATE(2731), + [sym_decltype] = STATE(2780), + [sym_class_specifier] = STATE(2780), + [sym__class_name] = STATE(6450), + [sym_dependent_type] = STATE(2780), + [sym_template_type] = STATE(4443), + [sym_template_function] = STATE(3135), + [sym_co_await_expression] = STATE(3135), + [sym_new_expression] = STATE(3135), + [sym_delete_expression] = STATE(3135), + [sym_requires_clause] = STATE(3135), + [sym_requires_expression] = STATE(3135), + [sym_lambda_expression] = STATE(3135), + [sym_lambda_capture_specifier] = STATE(4771), + [sym__unary_left_fold] = STATE(7218), + [sym__unary_right_fold] = STATE(7214), + [sym__binary_fold] = STATE(7213), + [sym_fold_expression] = STATE(3135), + [sym_parameter_pack_expansion] = STATE(3135), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4907), + [sym_qualified_identifier] = STATE(2788), + [sym_qualified_type_identifier] = STATE(4514), + [sym_user_defined_literal] = STATE(3135), + [aux_sym_type_definition_repeat1] = STATE(3369), + [aux_sym_sized_type_specifier_repeat1] = STATE(1935), + [sym_identifier] = ACTIONS(2418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1713), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -69990,109 +72541,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_constexpr] = ACTIONS(57), [anon_sym_constinit] = ACTIONS(57), [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1479), - [anon_sym_unsigned] = ACTIONS(1479), - [anon_sym_long] = ACTIONS(1479), - [anon_sym_short] = ACTIONS(1479), - [sym_primitive_type] = ACTIONS(1481), - [anon_sym_enum] = ACTIONS(1483), - [anon_sym_class] = ACTIONS(1485), - [anon_sym_struct] = ACTIONS(1487), - [anon_sym_union] = ACTIONS(1489), - [anon_sym_DASH_DASH] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [anon_sym_sizeof] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(1439), - [anon_sym_L_SQUOTE] = ACTIONS(1441), - [anon_sym_u_SQUOTE] = ACTIONS(1441), - [anon_sym_U_SQUOTE] = ACTIONS(1441), - [anon_sym_u8_SQUOTE] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1441), - [anon_sym_L_DQUOTE] = ACTIONS(1443), - [anon_sym_u_DQUOTE] = ACTIONS(1443), - [anon_sym_U_DQUOTE] = ACTIONS(1443), - [anon_sym_u8_DQUOTE] = ACTIONS(1443), - [anon_sym_DQUOTE] = ACTIONS(1443), - [sym_true] = ACTIONS(1445), - [sym_false] = ACTIONS(1445), - [sym_null] = ACTIONS(1445), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1491), - [anon_sym_decltype] = ACTIONS(1493), - [anon_sym_typename] = ACTIONS(1495), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_co_await] = ACTIONS(1451), - [anon_sym_new] = ACTIONS(1453), - [anon_sym_requires] = ACTIONS(1455), - [sym_this] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(1445), - [sym_raw_string_literal] = ACTIONS(1457), + [anon_sym_signed] = ACTIONS(1483), + [anon_sym_unsigned] = ACTIONS(1483), + [anon_sym_long] = ACTIONS(1483), + [anon_sym_short] = ACTIONS(1483), + [sym_primitive_type] = ACTIONS(1485), + [anon_sym_enum] = ACTIONS(1487), + [anon_sym_class] = ACTIONS(1489), + [anon_sym_struct] = ACTIONS(1491), + [anon_sym_union] = ACTIONS(1493), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1495), + [anon_sym_decltype] = ACTIONS(1497), + [anon_sym_typename] = ACTIONS(1499), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_co_await] = ACTIONS(1455), + [anon_sym_new] = ACTIONS(1457), + [anon_sym_requires] = ACTIONS(1459), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + [sym_raw_string_literal] = ACTIONS(1461), }, - [317] = { - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3825), - [sym_sized_type_specifier] = STATE(2346), - [sym_enum_specifier] = STATE(2346), - [sym_struct_specifier] = STATE(2346), - [sym_union_specifier] = STATE(2346), - [sym__expression] = STATE(2437), - [sym_comma_expression] = STATE(6483), - [sym_conditional_expression] = STATE(2765), - [sym_assignment_expression] = STATE(2765), - [sym_pointer_expression] = STATE(2827), - [sym_unary_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_update_expression] = STATE(2765), - [sym_cast_expression] = STATE(2765), - [sym_type_descriptor] = STATE(6409), - [sym_sizeof_expression] = STATE(2765), - [sym_subscript_expression] = STATE(2827), - [sym_call_expression] = STATE(2827), - [sym_field_expression] = STATE(2827), - [sym_compound_literal_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2827), - [sym_char_literal] = STATE(2674), - [sym_concatenated_string] = STATE(2674), - [sym_string_literal] = STATE(2093), - [sym_placeholder_type_specifier] = STATE(2346), - [sym_decltype_auto] = STATE(2494), - [sym_decltype] = STATE(2346), - [sym_class_specifier] = STATE(2346), - [sym__class_name] = STATE(6297), - [sym_dependent_type] = STATE(2346), - [sym_template_type] = STATE(4194), - [sym_template_function] = STATE(2765), - [sym_co_await_expression] = STATE(2765), - [sym_new_expression] = STATE(2765), - [sym_delete_expression] = STATE(2765), - [sym_requires_clause] = STATE(2765), - [sym_requires_expression] = STATE(2765), - [sym_lambda_expression] = STATE(2765), - [sym_lambda_capture_specifier] = STATE(4512), - [sym__unary_left_fold] = STATE(6480), - [sym__unary_right_fold] = STATE(6479), - [sym__binary_fold] = STATE(6474), - [sym_fold_expression] = STATE(2765), - [sym_parameter_pack_expansion] = STATE(2765), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4637), - [sym_qualified_identifier] = STATE(2827), - [sym_qualified_type_identifier] = STATE(4305), - [sym_user_defined_literal] = STATE(2765), - [aux_sym_type_definition_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(2075), - [sym_identifier] = ACTIONS(2270), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1411), - [anon_sym_LPAREN2] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1417), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_COLON_COLON] = ACTIONS(1423), - [anon_sym_LBRACK] = ACTIONS(2272), + [321] = { + [sym_type_qualifier] = STATE(3369), + [sym__type_specifier] = STATE(4187), + [sym_sized_type_specifier] = STATE(2780), + [sym_enum_specifier] = STATE(2780), + [sym_struct_specifier] = STATE(2780), + [sym_union_specifier] = STATE(2780), + [sym__expression] = STATE(2875), + [sym_comma_expression] = STATE(7202), + [sym_conditional_expression] = STATE(3135), + [sym_assignment_expression] = STATE(3135), + [sym_pointer_expression] = STATE(2788), + [sym_unary_expression] = STATE(3135), + [sym_binary_expression] = STATE(3135), + [sym_update_expression] = STATE(3135), + [sym_cast_expression] = STATE(3135), + [sym_type_descriptor] = STATE(6939), + [sym_sizeof_expression] = STATE(3135), + [sym_subscript_expression] = STATE(2788), + [sym_call_expression] = STATE(2788), + [sym_field_expression] = STATE(2788), + [sym_compound_literal_expression] = STATE(3135), + [sym_parenthesized_expression] = STATE(2788), + [sym_char_literal] = STATE(2981), + [sym_concatenated_string] = STATE(2981), + [sym_string_literal] = STATE(1970), + [sym_placeholder_type_specifier] = STATE(2780), + [sym_decltype_auto] = STATE(2731), + [sym_decltype] = STATE(2780), + [sym_class_specifier] = STATE(2780), + [sym__class_name] = STATE(6450), + [sym_dependent_type] = STATE(2780), + [sym_template_type] = STATE(4443), + [sym_template_function] = STATE(3135), + [sym_co_await_expression] = STATE(3135), + [sym_new_expression] = STATE(3135), + [sym_delete_expression] = STATE(3135), + [sym_requires_clause] = STATE(3135), + [sym_requires_expression] = STATE(3135), + [sym_lambda_expression] = STATE(3135), + [sym_lambda_capture_specifier] = STATE(4771), + [sym__unary_left_fold] = STATE(6965), + [sym__unary_right_fold] = STATE(6964), + [sym__binary_fold] = STATE(6963), + [sym_fold_expression] = STATE(3135), + [sym_parameter_pack_expansion] = STATE(3135), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4907), + [sym_qualified_identifier] = STATE(2788), + [sym_qualified_type_identifier] = STATE(4514), + [sym_user_defined_literal] = STATE(3135), + [aux_sym_type_definition_repeat1] = STATE(3369), + [aux_sym_sized_type_specifier_repeat1] = STATE(1935), + [sym_identifier] = ACTIONS(2418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1713), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -70101,109 +72654,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_constexpr] = ACTIONS(57), [anon_sym_constinit] = ACTIONS(57), [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1479), - [anon_sym_unsigned] = ACTIONS(1479), - [anon_sym_long] = ACTIONS(1479), - [anon_sym_short] = ACTIONS(1479), - [sym_primitive_type] = ACTIONS(1481), - [anon_sym_enum] = ACTIONS(1483), - [anon_sym_class] = ACTIONS(1485), - [anon_sym_struct] = ACTIONS(1487), - [anon_sym_union] = ACTIONS(1489), - [anon_sym_DASH_DASH] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [anon_sym_sizeof] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(1439), - [anon_sym_L_SQUOTE] = ACTIONS(1441), - [anon_sym_u_SQUOTE] = ACTIONS(1441), - [anon_sym_U_SQUOTE] = ACTIONS(1441), - [anon_sym_u8_SQUOTE] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1441), - [anon_sym_L_DQUOTE] = ACTIONS(1443), - [anon_sym_u_DQUOTE] = ACTIONS(1443), - [anon_sym_U_DQUOTE] = ACTIONS(1443), - [anon_sym_u8_DQUOTE] = ACTIONS(1443), - [anon_sym_DQUOTE] = ACTIONS(1443), - [sym_true] = ACTIONS(1445), - [sym_false] = ACTIONS(1445), - [sym_null] = ACTIONS(1445), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1491), - [anon_sym_decltype] = ACTIONS(1493), - [anon_sym_typename] = ACTIONS(1495), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_co_await] = ACTIONS(1451), - [anon_sym_new] = ACTIONS(1453), - [anon_sym_requires] = ACTIONS(1455), - [sym_this] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(1445), - [sym_raw_string_literal] = ACTIONS(1457), + [anon_sym_signed] = ACTIONS(1483), + [anon_sym_unsigned] = ACTIONS(1483), + [anon_sym_long] = ACTIONS(1483), + [anon_sym_short] = ACTIONS(1483), + [sym_primitive_type] = ACTIONS(1485), + [anon_sym_enum] = ACTIONS(1487), + [anon_sym_class] = ACTIONS(1489), + [anon_sym_struct] = ACTIONS(1491), + [anon_sym_union] = ACTIONS(1493), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1495), + [anon_sym_decltype] = ACTIONS(1497), + [anon_sym_typename] = ACTIONS(1499), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_co_await] = ACTIONS(1455), + [anon_sym_new] = ACTIONS(1457), + [anon_sym_requires] = ACTIONS(1459), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + [sym_raw_string_literal] = ACTIONS(1461), }, - [318] = { - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3825), - [sym_sized_type_specifier] = STATE(2346), - [sym_enum_specifier] = STATE(2346), - [sym_struct_specifier] = STATE(2346), - [sym_union_specifier] = STATE(2346), - [sym__expression] = STATE(2427), - [sym_comma_expression] = STATE(6596), - [sym_conditional_expression] = STATE(2765), - [sym_assignment_expression] = STATE(2765), - [sym_pointer_expression] = STATE(2827), - [sym_unary_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_update_expression] = STATE(2765), - [sym_cast_expression] = STATE(2765), - [sym_type_descriptor] = STATE(6785), - [sym_sizeof_expression] = STATE(2765), - [sym_subscript_expression] = STATE(2827), - [sym_call_expression] = STATE(2827), - [sym_field_expression] = STATE(2827), - [sym_compound_literal_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2827), - [sym_char_literal] = STATE(2674), - [sym_concatenated_string] = STATE(2674), - [sym_string_literal] = STATE(2093), - [sym_placeholder_type_specifier] = STATE(2346), - [sym_decltype_auto] = STATE(2494), - [sym_decltype] = STATE(2346), - [sym_class_specifier] = STATE(2346), - [sym__class_name] = STATE(6297), - [sym_dependent_type] = STATE(2346), - [sym_template_type] = STATE(4194), - [sym_template_function] = STATE(2765), - [sym_co_await_expression] = STATE(2765), - [sym_new_expression] = STATE(2765), - [sym_delete_expression] = STATE(2765), - [sym_requires_clause] = STATE(2765), - [sym_requires_expression] = STATE(2765), - [sym_lambda_expression] = STATE(2765), - [sym_lambda_capture_specifier] = STATE(4512), - [sym__unary_left_fold] = STATE(6786), - [sym__unary_right_fold] = STATE(6787), - [sym__binary_fold] = STATE(6789), - [sym_fold_expression] = STATE(2765), - [sym_parameter_pack_expansion] = STATE(2765), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4637), - [sym_qualified_identifier] = STATE(2827), - [sym_qualified_type_identifier] = STATE(4305), - [sym_user_defined_literal] = STATE(2765), - [aux_sym_type_definition_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(2075), - [sym_identifier] = ACTIONS(2270), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1411), - [anon_sym_LPAREN2] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1417), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_COLON_COLON] = ACTIONS(1423), - [anon_sym_LBRACK] = ACTIONS(2272), + [322] = { + [sym_type_qualifier] = STATE(3369), + [sym__type_specifier] = STATE(4187), + [sym_sized_type_specifier] = STATE(2780), + [sym_enum_specifier] = STATE(2780), + [sym_struct_specifier] = STATE(2780), + [sym_union_specifier] = STATE(2780), + [sym__expression] = STATE(2801), + [sym_comma_expression] = STATE(7222), + [sym_conditional_expression] = STATE(3135), + [sym_assignment_expression] = STATE(3135), + [sym_pointer_expression] = STATE(2788), + [sym_unary_expression] = STATE(3135), + [sym_binary_expression] = STATE(3135), + [sym_update_expression] = STATE(3135), + [sym_cast_expression] = STATE(3135), + [sym_type_descriptor] = STATE(6995), + [sym_sizeof_expression] = STATE(3135), + [sym_subscript_expression] = STATE(2788), + [sym_call_expression] = STATE(2788), + [sym_field_expression] = STATE(2788), + [sym_compound_literal_expression] = STATE(3135), + [sym_parenthesized_expression] = STATE(2788), + [sym_char_literal] = STATE(2981), + [sym_concatenated_string] = STATE(2981), + [sym_string_literal] = STATE(1970), + [sym_placeholder_type_specifier] = STATE(2780), + [sym_decltype_auto] = STATE(2731), + [sym_decltype] = STATE(2780), + [sym_class_specifier] = STATE(2780), + [sym__class_name] = STATE(6450), + [sym_dependent_type] = STATE(2780), + [sym_template_type] = STATE(4443), + [sym_template_function] = STATE(3135), + [sym_co_await_expression] = STATE(3135), + [sym_new_expression] = STATE(3135), + [sym_delete_expression] = STATE(3135), + [sym_requires_clause] = STATE(3135), + [sym_requires_expression] = STATE(3135), + [sym_lambda_expression] = STATE(3135), + [sym_lambda_capture_specifier] = STATE(4771), + [sym__unary_left_fold] = STATE(7218), + [sym__unary_right_fold] = STATE(7214), + [sym__binary_fold] = STATE(7213), + [sym_fold_expression] = STATE(3135), + [sym_parameter_pack_expansion] = STATE(3135), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4907), + [sym_qualified_identifier] = STATE(2788), + [sym_qualified_type_identifier] = STATE(4514), + [sym_user_defined_literal] = STATE(3135), + [aux_sym_type_definition_repeat1] = STATE(3369), + [aux_sym_sized_type_specifier_repeat1] = STATE(1935), + [sym_identifier] = ACTIONS(2418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1713), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -70212,109 +72767,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_constexpr] = ACTIONS(57), [anon_sym_constinit] = ACTIONS(57), [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1479), - [anon_sym_unsigned] = ACTIONS(1479), - [anon_sym_long] = ACTIONS(1479), - [anon_sym_short] = ACTIONS(1479), - [sym_primitive_type] = ACTIONS(1481), - [anon_sym_enum] = ACTIONS(1483), - [anon_sym_class] = ACTIONS(1485), - [anon_sym_struct] = ACTIONS(1487), - [anon_sym_union] = ACTIONS(1489), - [anon_sym_DASH_DASH] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [anon_sym_sizeof] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(1439), - [anon_sym_L_SQUOTE] = ACTIONS(1441), - [anon_sym_u_SQUOTE] = ACTIONS(1441), - [anon_sym_U_SQUOTE] = ACTIONS(1441), - [anon_sym_u8_SQUOTE] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1441), - [anon_sym_L_DQUOTE] = ACTIONS(1443), - [anon_sym_u_DQUOTE] = ACTIONS(1443), - [anon_sym_U_DQUOTE] = ACTIONS(1443), - [anon_sym_u8_DQUOTE] = ACTIONS(1443), - [anon_sym_DQUOTE] = ACTIONS(1443), - [sym_true] = ACTIONS(1445), - [sym_false] = ACTIONS(1445), - [sym_null] = ACTIONS(1445), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1491), - [anon_sym_decltype] = ACTIONS(1493), - [anon_sym_typename] = ACTIONS(1495), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_co_await] = ACTIONS(1451), - [anon_sym_new] = ACTIONS(1453), - [anon_sym_requires] = ACTIONS(1455), - [sym_this] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(1445), - [sym_raw_string_literal] = ACTIONS(1457), + [anon_sym_signed] = ACTIONS(1483), + [anon_sym_unsigned] = ACTIONS(1483), + [anon_sym_long] = ACTIONS(1483), + [anon_sym_short] = ACTIONS(1483), + [sym_primitive_type] = ACTIONS(1485), + [anon_sym_enum] = ACTIONS(1487), + [anon_sym_class] = ACTIONS(1489), + [anon_sym_struct] = ACTIONS(1491), + [anon_sym_union] = ACTIONS(1493), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1495), + [anon_sym_decltype] = ACTIONS(1497), + [anon_sym_typename] = ACTIONS(1499), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_co_await] = ACTIONS(1455), + [anon_sym_new] = ACTIONS(1457), + [anon_sym_requires] = ACTIONS(1459), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + [sym_raw_string_literal] = ACTIONS(1461), }, - [319] = { - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3825), - [sym_sized_type_specifier] = STATE(2346), - [sym_enum_specifier] = STATE(2346), - [sym_struct_specifier] = STATE(2346), - [sym_union_specifier] = STATE(2346), - [sym__expression] = STATE(2375), - [sym_comma_expression] = STATE(6584), - [sym_conditional_expression] = STATE(2765), - [sym_assignment_expression] = STATE(2765), - [sym_pointer_expression] = STATE(2827), - [sym_unary_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_update_expression] = STATE(2765), - [sym_cast_expression] = STATE(2765), - [sym_type_descriptor] = STATE(6752), - [sym_sizeof_expression] = STATE(2765), - [sym_subscript_expression] = STATE(2827), - [sym_call_expression] = STATE(2827), - [sym_field_expression] = STATE(2827), - [sym_compound_literal_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2827), - [sym_char_literal] = STATE(2674), - [sym_concatenated_string] = STATE(2674), - [sym_string_literal] = STATE(2093), - [sym_placeholder_type_specifier] = STATE(2346), - [sym_decltype_auto] = STATE(2494), - [sym_decltype] = STATE(2346), - [sym_class_specifier] = STATE(2346), - [sym__class_name] = STATE(6297), - [sym_dependent_type] = STATE(2346), - [sym_template_type] = STATE(4194), - [sym_template_function] = STATE(2765), - [sym_co_await_expression] = STATE(2765), - [sym_new_expression] = STATE(2765), - [sym_delete_expression] = STATE(2765), - [sym_requires_clause] = STATE(2765), - [sym_requires_expression] = STATE(2765), - [sym_lambda_expression] = STATE(2765), - [sym_lambda_capture_specifier] = STATE(4512), - [sym__unary_left_fold] = STATE(6567), - [sym__unary_right_fold] = STATE(6566), - [sym__binary_fold] = STATE(6564), - [sym_fold_expression] = STATE(2765), - [sym_parameter_pack_expansion] = STATE(2765), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4637), - [sym_qualified_identifier] = STATE(2827), - [sym_qualified_type_identifier] = STATE(4305), - [sym_user_defined_literal] = STATE(2765), - [aux_sym_type_definition_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(2075), - [sym_identifier] = ACTIONS(2270), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1411), - [anon_sym_LPAREN2] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1417), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_COLON_COLON] = ACTIONS(1423), - [anon_sym_LBRACK] = ACTIONS(2272), + [323] = { + [sym_type_qualifier] = STATE(3369), + [sym__type_specifier] = STATE(4187), + [sym_sized_type_specifier] = STATE(2780), + [sym_enum_specifier] = STATE(2780), + [sym_struct_specifier] = STATE(2780), + [sym_union_specifier] = STATE(2780), + [sym__expression] = STATE(2801), + [sym_comma_expression] = STATE(7222), + [sym_conditional_expression] = STATE(3135), + [sym_assignment_expression] = STATE(3135), + [sym_pointer_expression] = STATE(2788), + [sym_unary_expression] = STATE(3135), + [sym_binary_expression] = STATE(3135), + [sym_update_expression] = STATE(3135), + [sym_cast_expression] = STATE(3135), + [sym_type_descriptor] = STATE(7019), + [sym_sizeof_expression] = STATE(3135), + [sym_subscript_expression] = STATE(2788), + [sym_call_expression] = STATE(2788), + [sym_field_expression] = STATE(2788), + [sym_compound_literal_expression] = STATE(3135), + [sym_parenthesized_expression] = STATE(2788), + [sym_char_literal] = STATE(2981), + [sym_concatenated_string] = STATE(2981), + [sym_string_literal] = STATE(1970), + [sym_placeholder_type_specifier] = STATE(2780), + [sym_decltype_auto] = STATE(2731), + [sym_decltype] = STATE(2780), + [sym_class_specifier] = STATE(2780), + [sym__class_name] = STATE(6450), + [sym_dependent_type] = STATE(2780), + [sym_template_type] = STATE(4443), + [sym_template_function] = STATE(3135), + [sym_co_await_expression] = STATE(3135), + [sym_new_expression] = STATE(3135), + [sym_delete_expression] = STATE(3135), + [sym_requires_clause] = STATE(3135), + [sym_requires_expression] = STATE(3135), + [sym_lambda_expression] = STATE(3135), + [sym_lambda_capture_specifier] = STATE(4771), + [sym__unary_left_fold] = STATE(7218), + [sym__unary_right_fold] = STATE(7214), + [sym__binary_fold] = STATE(7213), + [sym_fold_expression] = STATE(3135), + [sym_parameter_pack_expansion] = STATE(3135), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4907), + [sym_qualified_identifier] = STATE(2788), + [sym_qualified_type_identifier] = STATE(4514), + [sym_user_defined_literal] = STATE(3135), + [aux_sym_type_definition_repeat1] = STATE(3369), + [aux_sym_sized_type_specifier_repeat1] = STATE(1935), + [sym_identifier] = ACTIONS(2418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1713), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -70323,109 +72880,224 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_constexpr] = ACTIONS(57), [anon_sym_constinit] = ACTIONS(57), [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1479), - [anon_sym_unsigned] = ACTIONS(1479), - [anon_sym_long] = ACTIONS(1479), - [anon_sym_short] = ACTIONS(1479), - [sym_primitive_type] = ACTIONS(1481), - [anon_sym_enum] = ACTIONS(1483), - [anon_sym_class] = ACTIONS(1485), - [anon_sym_struct] = ACTIONS(1487), - [anon_sym_union] = ACTIONS(1489), - [anon_sym_DASH_DASH] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [anon_sym_sizeof] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(1439), - [anon_sym_L_SQUOTE] = ACTIONS(1441), - [anon_sym_u_SQUOTE] = ACTIONS(1441), - [anon_sym_U_SQUOTE] = ACTIONS(1441), - [anon_sym_u8_SQUOTE] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1441), - [anon_sym_L_DQUOTE] = ACTIONS(1443), - [anon_sym_u_DQUOTE] = ACTIONS(1443), - [anon_sym_U_DQUOTE] = ACTIONS(1443), - [anon_sym_u8_DQUOTE] = ACTIONS(1443), - [anon_sym_DQUOTE] = ACTIONS(1443), - [sym_true] = ACTIONS(1445), - [sym_false] = ACTIONS(1445), - [sym_null] = ACTIONS(1445), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1491), - [anon_sym_decltype] = ACTIONS(1493), - [anon_sym_typename] = ACTIONS(1495), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_co_await] = ACTIONS(1451), - [anon_sym_new] = ACTIONS(1453), - [anon_sym_requires] = ACTIONS(1455), - [sym_this] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(1445), - [sym_raw_string_literal] = ACTIONS(1457), + [anon_sym_signed] = ACTIONS(1483), + [anon_sym_unsigned] = ACTIONS(1483), + [anon_sym_long] = ACTIONS(1483), + [anon_sym_short] = ACTIONS(1483), + [sym_primitive_type] = ACTIONS(1485), + [anon_sym_enum] = ACTIONS(1487), + [anon_sym_class] = ACTIONS(1489), + [anon_sym_struct] = ACTIONS(1491), + [anon_sym_union] = ACTIONS(1493), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1495), + [anon_sym_decltype] = ACTIONS(1497), + [anon_sym_typename] = ACTIONS(1499), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_co_await] = ACTIONS(1455), + [anon_sym_new] = ACTIONS(1457), + [anon_sym_requires] = ACTIONS(1459), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + [sym_raw_string_literal] = ACTIONS(1461), }, - [320] = { - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3825), - [sym_sized_type_specifier] = STATE(2346), - [sym_enum_specifier] = STATE(2346), - [sym_struct_specifier] = STATE(2346), - [sym_union_specifier] = STATE(2346), - [sym__expression] = STATE(2375), - [sym_comma_expression] = STATE(6584), - [sym_conditional_expression] = STATE(2765), - [sym_assignment_expression] = STATE(2765), - [sym_pointer_expression] = STATE(2827), - [sym_unary_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_update_expression] = STATE(2765), - [sym_cast_expression] = STATE(2765), - [sym_type_descriptor] = STATE(6730), - [sym_sizeof_expression] = STATE(2765), - [sym_subscript_expression] = STATE(2827), - [sym_call_expression] = STATE(2827), - [sym_field_expression] = STATE(2827), - [sym_compound_literal_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2827), - [sym_char_literal] = STATE(2674), - [sym_concatenated_string] = STATE(2674), - [sym_string_literal] = STATE(2093), - [sym_placeholder_type_specifier] = STATE(2346), - [sym_decltype_auto] = STATE(2494), - [sym_decltype] = STATE(2346), - [sym_class_specifier] = STATE(2346), - [sym__class_name] = STATE(6297), - [sym_dependent_type] = STATE(2346), - [sym_template_type] = STATE(4194), - [sym_template_function] = STATE(2765), - [sym_co_await_expression] = STATE(2765), - [sym_new_expression] = STATE(2765), - [sym_delete_expression] = STATE(2765), - [sym_requires_clause] = STATE(2765), - [sym_requires_expression] = STATE(2765), - [sym_lambda_expression] = STATE(2765), - [sym_lambda_capture_specifier] = STATE(4512), - [sym__unary_left_fold] = STATE(6598), - [sym__unary_right_fold] = STATE(6600), - [sym__binary_fold] = STATE(6603), - [sym_fold_expression] = STATE(2765), - [sym_parameter_pack_expansion] = STATE(2765), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4637), - [sym_qualified_identifier] = STATE(2827), - [sym_qualified_type_identifier] = STATE(4305), - [sym_user_defined_literal] = STATE(2765), - [aux_sym_type_definition_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(2075), - [sym_identifier] = ACTIONS(2270), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1411), - [anon_sym_LPAREN2] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1417), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_COLON_COLON] = ACTIONS(1423), - [anon_sym_LBRACK] = ACTIONS(2272), + [324] = { + [sym_catch_clause] = STATE(316), + [aux_sym_constructor_try_statement_repeat1] = STATE(316), + [sym_identifier] = ACTIONS(2424), + [aux_sym_preproc_include_token1] = ACTIONS(2424), + [aux_sym_preproc_def_token1] = ACTIONS(2424), + [aux_sym_preproc_if_token1] = ACTIONS(2424), + [aux_sym_preproc_if_token2] = ACTIONS(2424), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2424), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2424), + [aux_sym_preproc_else_token1] = ACTIONS(2424), + [aux_sym_preproc_elif_token1] = ACTIONS(2424), + [sym_preproc_directive] = ACTIONS(2424), + [anon_sym_LPAREN2] = ACTIONS(2426), + [anon_sym_BANG] = ACTIONS(2426), + [anon_sym_TILDE] = ACTIONS(2426), + [anon_sym_DASH] = ACTIONS(2424), + [anon_sym_PLUS] = ACTIONS(2424), + [anon_sym_STAR] = ACTIONS(2426), + [anon_sym_AMP_AMP] = ACTIONS(2426), + [anon_sym_AMP] = ACTIONS(2424), + [anon_sym_SEMI] = ACTIONS(2426), + [anon_sym_typedef] = ACTIONS(2424), + [anon_sym_extern] = ACTIONS(2424), + [anon_sym___attribute__] = ACTIONS(2424), + [anon_sym_COLON_COLON] = ACTIONS(2426), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2426), + [anon_sym___declspec] = ACTIONS(2424), + [anon_sym___based] = ACTIONS(2424), + [anon_sym___cdecl] = ACTIONS(2424), + [anon_sym___clrcall] = ACTIONS(2424), + [anon_sym___stdcall] = ACTIONS(2424), + [anon_sym___fastcall] = ACTIONS(2424), + [anon_sym___thiscall] = ACTIONS(2424), + [anon_sym___vectorcall] = ACTIONS(2424), + [anon_sym_LBRACE] = ACTIONS(2426), + [anon_sym_LBRACK] = ACTIONS(2424), + [anon_sym_static] = ACTIONS(2424), + [anon_sym_register] = ACTIONS(2424), + [anon_sym_inline] = ACTIONS(2424), + [anon_sym_thread_local] = ACTIONS(2424), + [anon_sym_const] = ACTIONS(2424), + [anon_sym_volatile] = ACTIONS(2424), + [anon_sym_restrict] = ACTIONS(2424), + [anon_sym__Atomic] = ACTIONS(2424), + [anon_sym_mutable] = ACTIONS(2424), + [anon_sym_constexpr] = ACTIONS(2424), + [anon_sym_constinit] = ACTIONS(2424), + [anon_sym_consteval] = ACTIONS(2424), + [anon_sym_signed] = ACTIONS(2424), + [anon_sym_unsigned] = ACTIONS(2424), + [anon_sym_long] = ACTIONS(2424), + [anon_sym_short] = ACTIONS(2424), + [sym_primitive_type] = ACTIONS(2424), + [anon_sym_enum] = ACTIONS(2424), + [anon_sym_class] = ACTIONS(2424), + [anon_sym_struct] = ACTIONS(2424), + [anon_sym_union] = ACTIONS(2424), + [anon_sym_if] = ACTIONS(2424), + [anon_sym_switch] = ACTIONS(2424), + [anon_sym_case] = ACTIONS(2424), + [anon_sym_default] = ACTIONS(2424), + [anon_sym_while] = ACTIONS(2424), + [anon_sym_do] = ACTIONS(2424), + [anon_sym_for] = ACTIONS(2424), + [anon_sym_return] = ACTIONS(2424), + [anon_sym_break] = ACTIONS(2424), + [anon_sym_continue] = ACTIONS(2424), + [anon_sym_goto] = ACTIONS(2424), + [anon_sym_not] = ACTIONS(2424), + [anon_sym_compl] = ACTIONS(2424), + [anon_sym_DASH_DASH] = ACTIONS(2426), + [anon_sym_PLUS_PLUS] = ACTIONS(2426), + [anon_sym_sizeof] = ACTIONS(2424), + [sym_number_literal] = ACTIONS(2426), + [anon_sym_L_SQUOTE] = ACTIONS(2426), + [anon_sym_u_SQUOTE] = ACTIONS(2426), + [anon_sym_U_SQUOTE] = ACTIONS(2426), + [anon_sym_u8_SQUOTE] = ACTIONS(2426), + [anon_sym_SQUOTE] = ACTIONS(2426), + [anon_sym_L_DQUOTE] = ACTIONS(2426), + [anon_sym_u_DQUOTE] = ACTIONS(2426), + [anon_sym_U_DQUOTE] = ACTIONS(2426), + [anon_sym_u8_DQUOTE] = ACTIONS(2426), + [anon_sym_DQUOTE] = ACTIONS(2426), + [sym_true] = ACTIONS(2424), + [sym_false] = ACTIONS(2424), + [sym_null] = ACTIONS(2424), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2424), + [anon_sym_decltype] = ACTIONS(2424), + [anon_sym_virtual] = ACTIONS(2424), + [anon_sym_explicit] = ACTIONS(2424), + [anon_sym_typename] = ACTIONS(2424), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_operator] = ACTIONS(2424), + [anon_sym_try] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2424), + [anon_sym_throw] = ACTIONS(2424), + [anon_sym_namespace] = ACTIONS(2424), + [anon_sym_using] = ACTIONS(2424), + [anon_sym_static_assert] = ACTIONS(2424), + [anon_sym_concept] = ACTIONS(2424), + [anon_sym_co_return] = ACTIONS(2424), + [anon_sym_co_yield] = ACTIONS(2424), + [anon_sym_catch] = ACTIONS(2409), + [anon_sym_co_await] = ACTIONS(2424), + [anon_sym_new] = ACTIONS(2424), + [anon_sym_requires] = ACTIONS(2424), + [sym_this] = ACTIONS(2424), + [sym_nullptr] = ACTIONS(2424), + [sym_raw_string_literal] = ACTIONS(2426), + }, + [325] = { + [sym_type_qualifier] = STATE(3369), + [sym__type_specifier] = STATE(4187), + [sym_sized_type_specifier] = STATE(2780), + [sym_enum_specifier] = STATE(2780), + [sym_struct_specifier] = STATE(2780), + [sym_union_specifier] = STATE(2780), + [sym__expression] = STATE(2801), + [sym_comma_expression] = STATE(7222), + [sym_conditional_expression] = STATE(3135), + [sym_assignment_expression] = STATE(3135), + [sym_pointer_expression] = STATE(2788), + [sym_unary_expression] = STATE(3135), + [sym_binary_expression] = STATE(3135), + [sym_update_expression] = STATE(3135), + [sym_cast_expression] = STATE(3135), + [sym_type_descriptor] = STATE(6830), + [sym_sizeof_expression] = STATE(3135), + [sym_subscript_expression] = STATE(2788), + [sym_call_expression] = STATE(2788), + [sym_field_expression] = STATE(2788), + [sym_compound_literal_expression] = STATE(3135), + [sym_parenthesized_expression] = STATE(2788), + [sym_char_literal] = STATE(2981), + [sym_concatenated_string] = STATE(2981), + [sym_string_literal] = STATE(1970), + [sym_placeholder_type_specifier] = STATE(2780), + [sym_decltype_auto] = STATE(2731), + [sym_decltype] = STATE(2780), + [sym_class_specifier] = STATE(2780), + [sym__class_name] = STATE(6450), + [sym_dependent_type] = STATE(2780), + [sym_template_type] = STATE(4443), + [sym_template_function] = STATE(3135), + [sym_co_await_expression] = STATE(3135), + [sym_new_expression] = STATE(3135), + [sym_delete_expression] = STATE(3135), + [sym_requires_clause] = STATE(3135), + [sym_requires_expression] = STATE(3135), + [sym_lambda_expression] = STATE(3135), + [sym_lambda_capture_specifier] = STATE(4771), + [sym__unary_left_fold] = STATE(7192), + [sym__unary_right_fold] = STATE(7193), + [sym__binary_fold] = STATE(7194), + [sym_fold_expression] = STATE(3135), + [sym_parameter_pack_expansion] = STATE(3135), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4907), + [sym_qualified_identifier] = STATE(2788), + [sym_qualified_type_identifier] = STATE(4514), + [sym_user_defined_literal] = STATE(3135), + [aux_sym_type_definition_repeat1] = STATE(3369), + [aux_sym_sized_type_specifier_repeat1] = STATE(1935), + [sym_identifier] = ACTIONS(2418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1713), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -70434,109 +73106,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_constexpr] = ACTIONS(57), [anon_sym_constinit] = ACTIONS(57), [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1479), - [anon_sym_unsigned] = ACTIONS(1479), - [anon_sym_long] = ACTIONS(1479), - [anon_sym_short] = ACTIONS(1479), - [sym_primitive_type] = ACTIONS(1481), - [anon_sym_enum] = ACTIONS(1483), - [anon_sym_class] = ACTIONS(1485), - [anon_sym_struct] = ACTIONS(1487), - [anon_sym_union] = ACTIONS(1489), - [anon_sym_DASH_DASH] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [anon_sym_sizeof] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(1439), - [anon_sym_L_SQUOTE] = ACTIONS(1441), - [anon_sym_u_SQUOTE] = ACTIONS(1441), - [anon_sym_U_SQUOTE] = ACTIONS(1441), - [anon_sym_u8_SQUOTE] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1441), - [anon_sym_L_DQUOTE] = ACTIONS(1443), - [anon_sym_u_DQUOTE] = ACTIONS(1443), - [anon_sym_U_DQUOTE] = ACTIONS(1443), - [anon_sym_u8_DQUOTE] = ACTIONS(1443), - [anon_sym_DQUOTE] = ACTIONS(1443), - [sym_true] = ACTIONS(1445), - [sym_false] = ACTIONS(1445), - [sym_null] = ACTIONS(1445), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1491), - [anon_sym_decltype] = ACTIONS(1493), - [anon_sym_typename] = ACTIONS(1495), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_co_await] = ACTIONS(1451), - [anon_sym_new] = ACTIONS(1453), - [anon_sym_requires] = ACTIONS(1455), - [sym_this] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(1445), - [sym_raw_string_literal] = ACTIONS(1457), + [anon_sym_signed] = ACTIONS(1483), + [anon_sym_unsigned] = ACTIONS(1483), + [anon_sym_long] = ACTIONS(1483), + [anon_sym_short] = ACTIONS(1483), + [sym_primitive_type] = ACTIONS(1485), + [anon_sym_enum] = ACTIONS(1487), + [anon_sym_class] = ACTIONS(1489), + [anon_sym_struct] = ACTIONS(1491), + [anon_sym_union] = ACTIONS(1493), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1495), + [anon_sym_decltype] = ACTIONS(1497), + [anon_sym_typename] = ACTIONS(1499), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_co_await] = ACTIONS(1455), + [anon_sym_new] = ACTIONS(1457), + [anon_sym_requires] = ACTIONS(1459), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + [sym_raw_string_literal] = ACTIONS(1461), }, - [321] = { - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3825), - [sym_sized_type_specifier] = STATE(2346), - [sym_enum_specifier] = STATE(2346), - [sym_struct_specifier] = STATE(2346), - [sym_union_specifier] = STATE(2346), - [sym__expression] = STATE(2375), - [sym_comma_expression] = STATE(6584), - [sym_conditional_expression] = STATE(2765), - [sym_assignment_expression] = STATE(2765), - [sym_pointer_expression] = STATE(2827), - [sym_unary_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_update_expression] = STATE(2765), - [sym_cast_expression] = STATE(2765), - [sym_type_descriptor] = STATE(6572), - [sym_sizeof_expression] = STATE(2765), - [sym_subscript_expression] = STATE(2827), - [sym_call_expression] = STATE(2827), - [sym_field_expression] = STATE(2827), - [sym_compound_literal_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2827), - [sym_char_literal] = STATE(2674), - [sym_concatenated_string] = STATE(2674), - [sym_string_literal] = STATE(2093), - [sym_placeholder_type_specifier] = STATE(2346), - [sym_decltype_auto] = STATE(2494), - [sym_decltype] = STATE(2346), - [sym_class_specifier] = STATE(2346), - [sym__class_name] = STATE(6297), - [sym_dependent_type] = STATE(2346), - [sym_template_type] = STATE(4194), - [sym_template_function] = STATE(2765), - [sym_co_await_expression] = STATE(2765), - [sym_new_expression] = STATE(2765), - [sym_delete_expression] = STATE(2765), - [sym_requires_clause] = STATE(2765), - [sym_requires_expression] = STATE(2765), - [sym_lambda_expression] = STATE(2765), - [sym_lambda_capture_specifier] = STATE(4512), - [sym__unary_left_fold] = STATE(6567), - [sym__unary_right_fold] = STATE(6566), - [sym__binary_fold] = STATE(6564), - [sym_fold_expression] = STATE(2765), - [sym_parameter_pack_expansion] = STATE(2765), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4637), - [sym_qualified_identifier] = STATE(2827), - [sym_qualified_type_identifier] = STATE(4305), - [sym_user_defined_literal] = STATE(2765), - [aux_sym_type_definition_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(2075), - [sym_identifier] = ACTIONS(2270), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1411), - [anon_sym_LPAREN2] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1417), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_COLON_COLON] = ACTIONS(1423), - [anon_sym_LBRACK] = ACTIONS(2272), + [326] = { + [sym_type_qualifier] = STATE(3369), + [sym__type_specifier] = STATE(4187), + [sym_sized_type_specifier] = STATE(2780), + [sym_enum_specifier] = STATE(2780), + [sym_struct_specifier] = STATE(2780), + [sym_union_specifier] = STATE(2780), + [sym__expression] = STATE(2801), + [sym_comma_expression] = STATE(7222), + [sym_conditional_expression] = STATE(3135), + [sym_assignment_expression] = STATE(3135), + [sym_pointer_expression] = STATE(2788), + [sym_unary_expression] = STATE(3135), + [sym_binary_expression] = STATE(3135), + [sym_update_expression] = STATE(3135), + [sym_cast_expression] = STATE(3135), + [sym_type_descriptor] = STATE(7096), + [sym_sizeof_expression] = STATE(3135), + [sym_subscript_expression] = STATE(2788), + [sym_call_expression] = STATE(2788), + [sym_field_expression] = STATE(2788), + [sym_compound_literal_expression] = STATE(3135), + [sym_parenthesized_expression] = STATE(2788), + [sym_char_literal] = STATE(2981), + [sym_concatenated_string] = STATE(2981), + [sym_string_literal] = STATE(1970), + [sym_placeholder_type_specifier] = STATE(2780), + [sym_decltype_auto] = STATE(2731), + [sym_decltype] = STATE(2780), + [sym_class_specifier] = STATE(2780), + [sym__class_name] = STATE(6450), + [sym_dependent_type] = STATE(2780), + [sym_template_type] = STATE(4443), + [sym_template_function] = STATE(3135), + [sym_co_await_expression] = STATE(3135), + [sym_new_expression] = STATE(3135), + [sym_delete_expression] = STATE(3135), + [sym_requires_clause] = STATE(3135), + [sym_requires_expression] = STATE(3135), + [sym_lambda_expression] = STATE(3135), + [sym_lambda_capture_specifier] = STATE(4771), + [sym__unary_left_fold] = STATE(7192), + [sym__unary_right_fold] = STATE(7193), + [sym__binary_fold] = STATE(7194), + [sym_fold_expression] = STATE(3135), + [sym_parameter_pack_expansion] = STATE(3135), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4907), + [sym_qualified_identifier] = STATE(2788), + [sym_qualified_type_identifier] = STATE(4514), + [sym_user_defined_literal] = STATE(3135), + [aux_sym_type_definition_repeat1] = STATE(3369), + [aux_sym_sized_type_specifier_repeat1] = STATE(1935), + [sym_identifier] = ACTIONS(2418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1713), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -70545,109 +73219,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_constexpr] = ACTIONS(57), [anon_sym_constinit] = ACTIONS(57), [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1479), - [anon_sym_unsigned] = ACTIONS(1479), - [anon_sym_long] = ACTIONS(1479), - [anon_sym_short] = ACTIONS(1479), - [sym_primitive_type] = ACTIONS(1481), - [anon_sym_enum] = ACTIONS(1483), - [anon_sym_class] = ACTIONS(1485), - [anon_sym_struct] = ACTIONS(1487), - [anon_sym_union] = ACTIONS(1489), - [anon_sym_DASH_DASH] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [anon_sym_sizeof] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(1439), - [anon_sym_L_SQUOTE] = ACTIONS(1441), - [anon_sym_u_SQUOTE] = ACTIONS(1441), - [anon_sym_U_SQUOTE] = ACTIONS(1441), - [anon_sym_u8_SQUOTE] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1441), - [anon_sym_L_DQUOTE] = ACTIONS(1443), - [anon_sym_u_DQUOTE] = ACTIONS(1443), - [anon_sym_U_DQUOTE] = ACTIONS(1443), - [anon_sym_u8_DQUOTE] = ACTIONS(1443), - [anon_sym_DQUOTE] = ACTIONS(1443), - [sym_true] = ACTIONS(1445), - [sym_false] = ACTIONS(1445), - [sym_null] = ACTIONS(1445), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1491), - [anon_sym_decltype] = ACTIONS(1493), - [anon_sym_typename] = ACTIONS(1495), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_co_await] = ACTIONS(1451), - [anon_sym_new] = ACTIONS(1453), - [anon_sym_requires] = ACTIONS(1455), - [sym_this] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(1445), - [sym_raw_string_literal] = ACTIONS(1457), + [anon_sym_signed] = ACTIONS(1483), + [anon_sym_unsigned] = ACTIONS(1483), + [anon_sym_long] = ACTIONS(1483), + [anon_sym_short] = ACTIONS(1483), + [sym_primitive_type] = ACTIONS(1485), + [anon_sym_enum] = ACTIONS(1487), + [anon_sym_class] = ACTIONS(1489), + [anon_sym_struct] = ACTIONS(1491), + [anon_sym_union] = ACTIONS(1493), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1495), + [anon_sym_decltype] = ACTIONS(1497), + [anon_sym_typename] = ACTIONS(1499), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_co_await] = ACTIONS(1455), + [anon_sym_new] = ACTIONS(1457), + [anon_sym_requires] = ACTIONS(1459), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + [sym_raw_string_literal] = ACTIONS(1461), }, - [322] = { - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3825), - [sym_sized_type_specifier] = STATE(2346), - [sym_enum_specifier] = STATE(2346), - [sym_struct_specifier] = STATE(2346), - [sym_union_specifier] = STATE(2346), - [sym__expression] = STATE(2437), - [sym_comma_expression] = STATE(6483), - [sym_conditional_expression] = STATE(2765), - [sym_assignment_expression] = STATE(2765), - [sym_pointer_expression] = STATE(2827), - [sym_unary_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_update_expression] = STATE(2765), - [sym_cast_expression] = STATE(2765), - [sym_type_descriptor] = STATE(6481), - [sym_sizeof_expression] = STATE(2765), - [sym_subscript_expression] = STATE(2827), - [sym_call_expression] = STATE(2827), - [sym_field_expression] = STATE(2827), - [sym_compound_literal_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2827), - [sym_char_literal] = STATE(2674), - [sym_concatenated_string] = STATE(2674), - [sym_string_literal] = STATE(2093), - [sym_placeholder_type_specifier] = STATE(2346), - [sym_decltype_auto] = STATE(2494), - [sym_decltype] = STATE(2346), - [sym_class_specifier] = STATE(2346), - [sym__class_name] = STATE(6297), - [sym_dependent_type] = STATE(2346), - [sym_template_type] = STATE(4194), - [sym_template_function] = STATE(2765), - [sym_co_await_expression] = STATE(2765), - [sym_new_expression] = STATE(2765), - [sym_delete_expression] = STATE(2765), - [sym_requires_clause] = STATE(2765), - [sym_requires_expression] = STATE(2765), - [sym_lambda_expression] = STATE(2765), - [sym_lambda_capture_specifier] = STATE(4512), - [sym__unary_left_fold] = STATE(6480), - [sym__unary_right_fold] = STATE(6479), - [sym__binary_fold] = STATE(6474), - [sym_fold_expression] = STATE(2765), - [sym_parameter_pack_expansion] = STATE(2765), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4637), - [sym_qualified_identifier] = STATE(2827), - [sym_qualified_type_identifier] = STATE(4305), - [sym_user_defined_literal] = STATE(2765), - [aux_sym_type_definition_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(2075), - [sym_identifier] = ACTIONS(2270), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1411), - [anon_sym_LPAREN2] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1417), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_COLON_COLON] = ACTIONS(1423), - [anon_sym_LBRACK] = ACTIONS(2272), + [327] = { + [sym_type_qualifier] = STATE(3369), + [sym__type_specifier] = STATE(4187), + [sym_sized_type_specifier] = STATE(2780), + [sym_enum_specifier] = STATE(2780), + [sym_struct_specifier] = STATE(2780), + [sym_union_specifier] = STATE(2780), + [sym__expression] = STATE(2801), + [sym_comma_expression] = STATE(7222), + [sym_conditional_expression] = STATE(3135), + [sym_assignment_expression] = STATE(3135), + [sym_pointer_expression] = STATE(2788), + [sym_unary_expression] = STATE(3135), + [sym_binary_expression] = STATE(3135), + [sym_update_expression] = STATE(3135), + [sym_cast_expression] = STATE(3135), + [sym_type_descriptor] = STATE(7185), + [sym_sizeof_expression] = STATE(3135), + [sym_subscript_expression] = STATE(2788), + [sym_call_expression] = STATE(2788), + [sym_field_expression] = STATE(2788), + [sym_compound_literal_expression] = STATE(3135), + [sym_parenthesized_expression] = STATE(2788), + [sym_char_literal] = STATE(2981), + [sym_concatenated_string] = STATE(2981), + [sym_string_literal] = STATE(1970), + [sym_placeholder_type_specifier] = STATE(2780), + [sym_decltype_auto] = STATE(2731), + [sym_decltype] = STATE(2780), + [sym_class_specifier] = STATE(2780), + [sym__class_name] = STATE(6450), + [sym_dependent_type] = STATE(2780), + [sym_template_type] = STATE(4443), + [sym_template_function] = STATE(3135), + [sym_co_await_expression] = STATE(3135), + [sym_new_expression] = STATE(3135), + [sym_delete_expression] = STATE(3135), + [sym_requires_clause] = STATE(3135), + [sym_requires_expression] = STATE(3135), + [sym_lambda_expression] = STATE(3135), + [sym_lambda_capture_specifier] = STATE(4771), + [sym__unary_left_fold] = STATE(7192), + [sym__unary_right_fold] = STATE(7193), + [sym__binary_fold] = STATE(7194), + [sym_fold_expression] = STATE(3135), + [sym_parameter_pack_expansion] = STATE(3135), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4907), + [sym_qualified_identifier] = STATE(2788), + [sym_qualified_type_identifier] = STATE(4514), + [sym_user_defined_literal] = STATE(3135), + [aux_sym_type_definition_repeat1] = STATE(3369), + [aux_sym_sized_type_specifier_repeat1] = STATE(1935), + [sym_identifier] = ACTIONS(2418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1713), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -70656,109 +73332,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_constexpr] = ACTIONS(57), [anon_sym_constinit] = ACTIONS(57), [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1479), - [anon_sym_unsigned] = ACTIONS(1479), - [anon_sym_long] = ACTIONS(1479), - [anon_sym_short] = ACTIONS(1479), - [sym_primitive_type] = ACTIONS(1481), - [anon_sym_enum] = ACTIONS(1483), - [anon_sym_class] = ACTIONS(1485), - [anon_sym_struct] = ACTIONS(1487), - [anon_sym_union] = ACTIONS(1489), - [anon_sym_DASH_DASH] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [anon_sym_sizeof] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(1439), - [anon_sym_L_SQUOTE] = ACTIONS(1441), - [anon_sym_u_SQUOTE] = ACTIONS(1441), - [anon_sym_U_SQUOTE] = ACTIONS(1441), - [anon_sym_u8_SQUOTE] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1441), - [anon_sym_L_DQUOTE] = ACTIONS(1443), - [anon_sym_u_DQUOTE] = ACTIONS(1443), - [anon_sym_U_DQUOTE] = ACTIONS(1443), - [anon_sym_u8_DQUOTE] = ACTIONS(1443), - [anon_sym_DQUOTE] = ACTIONS(1443), - [sym_true] = ACTIONS(1445), - [sym_false] = ACTIONS(1445), - [sym_null] = ACTIONS(1445), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1491), - [anon_sym_decltype] = ACTIONS(1493), - [anon_sym_typename] = ACTIONS(1495), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_co_await] = ACTIONS(1451), - [anon_sym_new] = ACTIONS(1453), - [anon_sym_requires] = ACTIONS(1455), - [sym_this] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(1445), - [sym_raw_string_literal] = ACTIONS(1457), + [anon_sym_signed] = ACTIONS(1483), + [anon_sym_unsigned] = ACTIONS(1483), + [anon_sym_long] = ACTIONS(1483), + [anon_sym_short] = ACTIONS(1483), + [sym_primitive_type] = ACTIONS(1485), + [anon_sym_enum] = ACTIONS(1487), + [anon_sym_class] = ACTIONS(1489), + [anon_sym_struct] = ACTIONS(1491), + [anon_sym_union] = ACTIONS(1493), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1495), + [anon_sym_decltype] = ACTIONS(1497), + [anon_sym_typename] = ACTIONS(1499), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_co_await] = ACTIONS(1455), + [anon_sym_new] = ACTIONS(1457), + [anon_sym_requires] = ACTIONS(1459), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + [sym_raw_string_literal] = ACTIONS(1461), }, - [323] = { - [sym_type_qualifier] = STATE(3031), - [sym__type_specifier] = STATE(3825), - [sym_sized_type_specifier] = STATE(2346), - [sym_enum_specifier] = STATE(2346), - [sym_struct_specifier] = STATE(2346), - [sym_union_specifier] = STATE(2346), - [sym__expression] = STATE(2427), - [sym_comma_expression] = STATE(6596), - [sym_conditional_expression] = STATE(2765), - [sym_assignment_expression] = STATE(2765), - [sym_pointer_expression] = STATE(2827), - [sym_unary_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_update_expression] = STATE(2765), - [sym_cast_expression] = STATE(2765), - [sym_type_descriptor] = STATE(6871), - [sym_sizeof_expression] = STATE(2765), - [sym_subscript_expression] = STATE(2827), - [sym_call_expression] = STATE(2827), - [sym_field_expression] = STATE(2827), - [sym_compound_literal_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2827), - [sym_char_literal] = STATE(2674), - [sym_concatenated_string] = STATE(2674), - [sym_string_literal] = STATE(2093), - [sym_placeholder_type_specifier] = STATE(2346), - [sym_decltype_auto] = STATE(2494), - [sym_decltype] = STATE(2346), - [sym_class_specifier] = STATE(2346), - [sym__class_name] = STATE(6297), - [sym_dependent_type] = STATE(2346), - [sym_template_type] = STATE(4194), - [sym_template_function] = STATE(2765), - [sym_co_await_expression] = STATE(2765), - [sym_new_expression] = STATE(2765), - [sym_delete_expression] = STATE(2765), - [sym_requires_clause] = STATE(2765), - [sym_requires_expression] = STATE(2765), - [sym_lambda_expression] = STATE(2765), - [sym_lambda_capture_specifier] = STATE(4512), - [sym__unary_left_fold] = STATE(6907), - [sym__unary_right_fold] = STATE(6913), - [sym__binary_fold] = STATE(6914), - [sym_fold_expression] = STATE(2765), - [sym_parameter_pack_expansion] = STATE(2765), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4637), - [sym_qualified_identifier] = STATE(2827), - [sym_qualified_type_identifier] = STATE(4305), - [sym_user_defined_literal] = STATE(2765), - [aux_sym_type_definition_repeat1] = STATE(3031), - [aux_sym_sized_type_specifier_repeat1] = STATE(2075), - [sym_identifier] = ACTIONS(2270), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1411), - [anon_sym_LPAREN2] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1417), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_COLON_COLON] = ACTIONS(1423), - [anon_sym_LBRACK] = ACTIONS(2272), + [328] = { + [sym_type_qualifier] = STATE(3369), + [sym__type_specifier] = STATE(4187), + [sym_sized_type_specifier] = STATE(2780), + [sym_enum_specifier] = STATE(2780), + [sym_struct_specifier] = STATE(2780), + [sym_union_specifier] = STATE(2780), + [sym__expression] = STATE(2801), + [sym_comma_expression] = STATE(7222), + [sym_conditional_expression] = STATE(3135), + [sym_assignment_expression] = STATE(3135), + [sym_pointer_expression] = STATE(2788), + [sym_unary_expression] = STATE(3135), + [sym_binary_expression] = STATE(3135), + [sym_update_expression] = STATE(3135), + [sym_cast_expression] = STATE(3135), + [sym_type_descriptor] = STATE(7118), + [sym_sizeof_expression] = STATE(3135), + [sym_subscript_expression] = STATE(2788), + [sym_call_expression] = STATE(2788), + [sym_field_expression] = STATE(2788), + [sym_compound_literal_expression] = STATE(3135), + [sym_parenthesized_expression] = STATE(2788), + [sym_char_literal] = STATE(2981), + [sym_concatenated_string] = STATE(2981), + [sym_string_literal] = STATE(1970), + [sym_placeholder_type_specifier] = STATE(2780), + [sym_decltype_auto] = STATE(2731), + [sym_decltype] = STATE(2780), + [sym_class_specifier] = STATE(2780), + [sym__class_name] = STATE(6450), + [sym_dependent_type] = STATE(2780), + [sym_template_type] = STATE(4443), + [sym_template_function] = STATE(3135), + [sym_co_await_expression] = STATE(3135), + [sym_new_expression] = STATE(3135), + [sym_delete_expression] = STATE(3135), + [sym_requires_clause] = STATE(3135), + [sym_requires_expression] = STATE(3135), + [sym_lambda_expression] = STATE(3135), + [sym_lambda_capture_specifier] = STATE(4771), + [sym__unary_left_fold] = STATE(7218), + [sym__unary_right_fold] = STATE(7214), + [sym__binary_fold] = STATE(7213), + [sym_fold_expression] = STATE(3135), + [sym_parameter_pack_expansion] = STATE(3135), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4907), + [sym_qualified_identifier] = STATE(2788), + [sym_qualified_type_identifier] = STATE(4514), + [sym_user_defined_literal] = STATE(3135), + [aux_sym_type_definition_repeat1] = STATE(3369), + [aux_sym_sized_type_specifier_repeat1] = STATE(1935), + [sym_identifier] = ACTIONS(2418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1713), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -70767,3553 +73445,1635 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_constexpr] = ACTIONS(57), [anon_sym_constinit] = ACTIONS(57), [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(1479), - [anon_sym_unsigned] = ACTIONS(1479), - [anon_sym_long] = ACTIONS(1479), - [anon_sym_short] = ACTIONS(1479), - [sym_primitive_type] = ACTIONS(1481), - [anon_sym_enum] = ACTIONS(1483), - [anon_sym_class] = ACTIONS(1485), - [anon_sym_struct] = ACTIONS(1487), - [anon_sym_union] = ACTIONS(1489), - [anon_sym_DASH_DASH] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [anon_sym_sizeof] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(1439), - [anon_sym_L_SQUOTE] = ACTIONS(1441), - [anon_sym_u_SQUOTE] = ACTIONS(1441), - [anon_sym_U_SQUOTE] = ACTIONS(1441), - [anon_sym_u8_SQUOTE] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1441), - [anon_sym_L_DQUOTE] = ACTIONS(1443), - [anon_sym_u_DQUOTE] = ACTIONS(1443), - [anon_sym_U_DQUOTE] = ACTIONS(1443), - [anon_sym_u8_DQUOTE] = ACTIONS(1443), - [anon_sym_DQUOTE] = ACTIONS(1443), - [sym_true] = ACTIONS(1445), - [sym_false] = ACTIONS(1445), - [sym_null] = ACTIONS(1445), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1491), - [anon_sym_decltype] = ACTIONS(1493), - [anon_sym_typename] = ACTIONS(1495), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_co_await] = ACTIONS(1451), - [anon_sym_new] = ACTIONS(1453), - [anon_sym_requires] = ACTIONS(1455), - [sym_this] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(1445), - [sym_raw_string_literal] = ACTIONS(1457), - }, - [324] = { - [sym_catch_clause] = STATE(324), - [aux_sym_constructor_try_statement_repeat1] = STATE(324), - [ts_builtin_sym_end] = ACTIONS(2265), - [sym_identifier] = ACTIONS(2263), - [aux_sym_preproc_include_token1] = ACTIONS(2263), - [aux_sym_preproc_def_token1] = ACTIONS(2263), - [aux_sym_preproc_if_token1] = ACTIONS(2263), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2263), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2263), - [sym_preproc_directive] = ACTIONS(2263), - [anon_sym_LPAREN2] = ACTIONS(2265), - [anon_sym_BANG] = ACTIONS(2265), - [anon_sym_TILDE] = ACTIONS(2265), - [anon_sym_DASH] = ACTIONS(2263), - [anon_sym_PLUS] = ACTIONS(2263), - [anon_sym_STAR] = ACTIONS(2265), - [anon_sym_AMP_AMP] = ACTIONS(2265), - [anon_sym_AMP] = ACTIONS(2263), - [anon_sym_SEMI] = ACTIONS(2265), - [anon_sym_typedef] = ACTIONS(2263), - [anon_sym_extern] = ACTIONS(2263), - [anon_sym___attribute__] = ACTIONS(2263), - [anon_sym_COLON_COLON] = ACTIONS(2265), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2265), - [anon_sym___declspec] = ACTIONS(2263), - [anon_sym___based] = ACTIONS(2263), - [anon_sym___cdecl] = ACTIONS(2263), - [anon_sym___clrcall] = ACTIONS(2263), - [anon_sym___stdcall] = ACTIONS(2263), - [anon_sym___fastcall] = ACTIONS(2263), - [anon_sym___thiscall] = ACTIONS(2263), - [anon_sym___vectorcall] = ACTIONS(2263), - [anon_sym_LBRACE] = ACTIONS(2265), - [anon_sym_LBRACK] = ACTIONS(2263), - [anon_sym_static] = ACTIONS(2263), - [anon_sym_register] = ACTIONS(2263), - [anon_sym_inline] = ACTIONS(2263), - [anon_sym_thread_local] = ACTIONS(2263), - [anon_sym_const] = ACTIONS(2263), - [anon_sym_volatile] = ACTIONS(2263), - [anon_sym_restrict] = ACTIONS(2263), - [anon_sym__Atomic] = ACTIONS(2263), - [anon_sym_mutable] = ACTIONS(2263), - [anon_sym_constexpr] = ACTIONS(2263), - [anon_sym_constinit] = ACTIONS(2263), - [anon_sym_consteval] = ACTIONS(2263), - [anon_sym_signed] = ACTIONS(2263), - [anon_sym_unsigned] = ACTIONS(2263), - [anon_sym_long] = ACTIONS(2263), - [anon_sym_short] = ACTIONS(2263), - [sym_primitive_type] = ACTIONS(2263), - [anon_sym_enum] = ACTIONS(2263), - [anon_sym_class] = ACTIONS(2263), - [anon_sym_struct] = ACTIONS(2263), - [anon_sym_union] = ACTIONS(2263), - [anon_sym_if] = ACTIONS(2263), - [anon_sym_else] = ACTIONS(2263), - [anon_sym_switch] = ACTIONS(2263), - [anon_sym_case] = ACTIONS(2263), - [anon_sym_default] = ACTIONS(2263), - [anon_sym_while] = ACTIONS(2263), - [anon_sym_do] = ACTIONS(2263), - [anon_sym_for] = ACTIONS(2263), - [anon_sym_return] = ACTIONS(2263), - [anon_sym_break] = ACTIONS(2263), - [anon_sym_continue] = ACTIONS(2263), - [anon_sym_goto] = ACTIONS(2263), - [anon_sym_DASH_DASH] = ACTIONS(2265), - [anon_sym_PLUS_PLUS] = ACTIONS(2265), - [anon_sym_sizeof] = ACTIONS(2263), - [sym_number_literal] = ACTIONS(2265), - [anon_sym_L_SQUOTE] = ACTIONS(2265), - [anon_sym_u_SQUOTE] = ACTIONS(2265), - [anon_sym_U_SQUOTE] = ACTIONS(2265), - [anon_sym_u8_SQUOTE] = ACTIONS(2265), - [anon_sym_SQUOTE] = ACTIONS(2265), - [anon_sym_L_DQUOTE] = ACTIONS(2265), - [anon_sym_u_DQUOTE] = ACTIONS(2265), - [anon_sym_U_DQUOTE] = ACTIONS(2265), - [anon_sym_u8_DQUOTE] = ACTIONS(2265), - [anon_sym_DQUOTE] = ACTIONS(2265), - [sym_true] = ACTIONS(2263), - [sym_false] = ACTIONS(2263), - [sym_null] = ACTIONS(2263), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2263), - [anon_sym_decltype] = ACTIONS(2263), - [anon_sym_virtual] = ACTIONS(2263), - [anon_sym_explicit] = ACTIONS(2263), - [anon_sym_typename] = ACTIONS(2263), - [anon_sym_template] = ACTIONS(2263), - [anon_sym_operator] = ACTIONS(2263), - [anon_sym_try] = ACTIONS(2263), - [anon_sym_delete] = ACTIONS(2263), - [anon_sym_throw] = ACTIONS(2263), - [anon_sym_namespace] = ACTIONS(2263), - [anon_sym_using] = ACTIONS(2263), - [anon_sym_static_assert] = ACTIONS(2263), - [anon_sym_concept] = ACTIONS(2263), - [anon_sym_co_return] = ACTIONS(2263), - [anon_sym_co_yield] = ACTIONS(2263), - [anon_sym_catch] = ACTIONS(2282), - [anon_sym_co_await] = ACTIONS(2263), - [anon_sym_new] = ACTIONS(2263), - [anon_sym_requires] = ACTIONS(2263), - [sym_this] = ACTIONS(2263), - [sym_nullptr] = ACTIONS(2263), - [sym_raw_string_literal] = ACTIONS(2265), - }, - [325] = { - [sym_catch_clause] = STATE(328), - [aux_sym_constructor_try_statement_repeat1] = STATE(328), - [sym_identifier] = ACTIONS(2257), - [aux_sym_preproc_include_token1] = ACTIONS(2257), - [aux_sym_preproc_def_token1] = ACTIONS(2257), - [aux_sym_preproc_if_token1] = ACTIONS(2257), - [aux_sym_preproc_if_token2] = ACTIONS(2257), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2257), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2257), - [sym_preproc_directive] = ACTIONS(2257), - [anon_sym_LPAREN2] = ACTIONS(2259), - [anon_sym_BANG] = ACTIONS(2259), - [anon_sym_TILDE] = ACTIONS(2259), - [anon_sym_DASH] = ACTIONS(2257), - [anon_sym_PLUS] = ACTIONS(2257), - [anon_sym_STAR] = ACTIONS(2259), - [anon_sym_AMP_AMP] = ACTIONS(2259), - [anon_sym_AMP] = ACTIONS(2257), - [anon_sym_SEMI] = ACTIONS(2259), - [anon_sym_typedef] = ACTIONS(2257), - [anon_sym_extern] = ACTIONS(2257), - [anon_sym___attribute__] = ACTIONS(2257), - [anon_sym_COLON_COLON] = ACTIONS(2259), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2259), - [anon_sym___declspec] = ACTIONS(2257), - [anon_sym___based] = ACTIONS(2257), - [anon_sym___cdecl] = ACTIONS(2257), - [anon_sym___clrcall] = ACTIONS(2257), - [anon_sym___stdcall] = ACTIONS(2257), - [anon_sym___fastcall] = ACTIONS(2257), - [anon_sym___thiscall] = ACTIONS(2257), - [anon_sym___vectorcall] = ACTIONS(2257), - [anon_sym_LBRACE] = ACTIONS(2259), - [anon_sym_LBRACK] = ACTIONS(2257), - [anon_sym_static] = ACTIONS(2257), - [anon_sym_register] = ACTIONS(2257), - [anon_sym_inline] = ACTIONS(2257), - [anon_sym_thread_local] = ACTIONS(2257), - [anon_sym_const] = ACTIONS(2257), - [anon_sym_volatile] = ACTIONS(2257), - [anon_sym_restrict] = ACTIONS(2257), - [anon_sym__Atomic] = ACTIONS(2257), - [anon_sym_mutable] = ACTIONS(2257), - [anon_sym_constexpr] = ACTIONS(2257), - [anon_sym_constinit] = ACTIONS(2257), - [anon_sym_consteval] = ACTIONS(2257), - [anon_sym_signed] = ACTIONS(2257), - [anon_sym_unsigned] = ACTIONS(2257), - [anon_sym_long] = ACTIONS(2257), - [anon_sym_short] = ACTIONS(2257), - [sym_primitive_type] = ACTIONS(2257), - [anon_sym_enum] = ACTIONS(2257), - [anon_sym_class] = ACTIONS(2257), - [anon_sym_struct] = ACTIONS(2257), - [anon_sym_union] = ACTIONS(2257), - [anon_sym_if] = ACTIONS(2257), - [anon_sym_else] = ACTIONS(2257), - [anon_sym_switch] = ACTIONS(2257), - [anon_sym_case] = ACTIONS(2257), - [anon_sym_default] = ACTIONS(2257), - [anon_sym_while] = ACTIONS(2257), - [anon_sym_do] = ACTIONS(2257), - [anon_sym_for] = ACTIONS(2257), - [anon_sym_return] = ACTIONS(2257), - [anon_sym_break] = ACTIONS(2257), - [anon_sym_continue] = ACTIONS(2257), - [anon_sym_goto] = ACTIONS(2257), - [anon_sym_DASH_DASH] = ACTIONS(2259), - [anon_sym_PLUS_PLUS] = ACTIONS(2259), - [anon_sym_sizeof] = ACTIONS(2257), - [sym_number_literal] = ACTIONS(2259), - [anon_sym_L_SQUOTE] = ACTIONS(2259), - [anon_sym_u_SQUOTE] = ACTIONS(2259), - [anon_sym_U_SQUOTE] = ACTIONS(2259), - [anon_sym_u8_SQUOTE] = ACTIONS(2259), - [anon_sym_SQUOTE] = ACTIONS(2259), - [anon_sym_L_DQUOTE] = ACTIONS(2259), - [anon_sym_u_DQUOTE] = ACTIONS(2259), - [anon_sym_U_DQUOTE] = ACTIONS(2259), - [anon_sym_u8_DQUOTE] = ACTIONS(2259), - [anon_sym_DQUOTE] = ACTIONS(2259), - [sym_true] = ACTIONS(2257), - [sym_false] = ACTIONS(2257), - [sym_null] = ACTIONS(2257), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2257), - [anon_sym_decltype] = ACTIONS(2257), - [anon_sym_virtual] = ACTIONS(2257), - [anon_sym_explicit] = ACTIONS(2257), - [anon_sym_typename] = ACTIONS(2257), - [anon_sym_template] = ACTIONS(2257), - [anon_sym_operator] = ACTIONS(2257), - [anon_sym_try] = ACTIONS(2257), - [anon_sym_delete] = ACTIONS(2257), - [anon_sym_throw] = ACTIONS(2257), - [anon_sym_namespace] = ACTIONS(2257), - [anon_sym_using] = ACTIONS(2257), - [anon_sym_static_assert] = ACTIONS(2257), - [anon_sym_concept] = ACTIONS(2257), - [anon_sym_co_return] = ACTIONS(2257), - [anon_sym_co_yield] = ACTIONS(2257), - [anon_sym_catch] = ACTIONS(2285), - [anon_sym_co_await] = ACTIONS(2257), - [anon_sym_new] = ACTIONS(2257), - [anon_sym_requires] = ACTIONS(2257), - [sym_this] = ACTIONS(2257), - [sym_nullptr] = ACTIONS(2257), - [sym_raw_string_literal] = ACTIONS(2259), - }, - [326] = { - [sym_identifier] = ACTIONS(2287), - [aux_sym_preproc_include_token1] = ACTIONS(2287), - [aux_sym_preproc_def_token1] = ACTIONS(2287), - [aux_sym_preproc_if_token1] = ACTIONS(2287), - [aux_sym_preproc_if_token2] = ACTIONS(2287), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2287), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2287), - [aux_sym_preproc_else_token1] = ACTIONS(2287), - [aux_sym_preproc_elif_token1] = ACTIONS(2287), - [sym_preproc_directive] = ACTIONS(2287), - [anon_sym_LPAREN2] = ACTIONS(2289), - [anon_sym_BANG] = ACTIONS(2289), - [anon_sym_TILDE] = ACTIONS(2289), - [anon_sym_DASH] = ACTIONS(2287), - [anon_sym_PLUS] = ACTIONS(2287), - [anon_sym_STAR] = ACTIONS(2289), - [anon_sym_AMP_AMP] = ACTIONS(2289), - [anon_sym_AMP] = ACTIONS(2287), - [anon_sym_SEMI] = ACTIONS(2289), - [anon_sym_typedef] = ACTIONS(2287), - [anon_sym_extern] = ACTIONS(2287), - [anon_sym___attribute__] = ACTIONS(2287), - [anon_sym_COLON_COLON] = ACTIONS(2289), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2289), - [anon_sym___declspec] = ACTIONS(2287), - [anon_sym___based] = ACTIONS(2287), - [anon_sym___cdecl] = ACTIONS(2287), - [anon_sym___clrcall] = ACTIONS(2287), - [anon_sym___stdcall] = ACTIONS(2287), - [anon_sym___fastcall] = ACTIONS(2287), - [anon_sym___thiscall] = ACTIONS(2287), - [anon_sym___vectorcall] = ACTIONS(2287), - [anon_sym_LBRACE] = ACTIONS(2289), - [anon_sym_LBRACK] = ACTIONS(2287), - [anon_sym_static] = ACTIONS(2287), - [anon_sym_register] = ACTIONS(2287), - [anon_sym_inline] = ACTIONS(2287), - [anon_sym_thread_local] = ACTIONS(2287), - [anon_sym_const] = ACTIONS(2287), - [anon_sym_volatile] = ACTIONS(2287), - [anon_sym_restrict] = ACTIONS(2287), - [anon_sym__Atomic] = ACTIONS(2287), - [anon_sym_mutable] = ACTIONS(2287), - [anon_sym_constexpr] = ACTIONS(2287), - [anon_sym_constinit] = ACTIONS(2287), - [anon_sym_consteval] = ACTIONS(2287), - [anon_sym_signed] = ACTIONS(2287), - [anon_sym_unsigned] = ACTIONS(2287), - [anon_sym_long] = ACTIONS(2287), - [anon_sym_short] = ACTIONS(2287), - [sym_primitive_type] = ACTIONS(2287), - [anon_sym_enum] = ACTIONS(2287), - [anon_sym_class] = ACTIONS(2287), - [anon_sym_struct] = ACTIONS(2287), - [anon_sym_union] = ACTIONS(2287), - [anon_sym_if] = ACTIONS(2287), - [anon_sym_else] = ACTIONS(2287), - [anon_sym_switch] = ACTIONS(2287), - [anon_sym_case] = ACTIONS(2287), - [anon_sym_default] = ACTIONS(2287), - [anon_sym_while] = ACTIONS(2287), - [anon_sym_do] = ACTIONS(2287), - [anon_sym_for] = ACTIONS(2287), - [anon_sym_return] = ACTIONS(2287), - [anon_sym_break] = ACTIONS(2287), - [anon_sym_continue] = ACTIONS(2287), - [anon_sym_goto] = ACTIONS(2287), - [anon_sym_DASH_DASH] = ACTIONS(2289), - [anon_sym_PLUS_PLUS] = ACTIONS(2289), - [anon_sym_sizeof] = ACTIONS(2287), - [sym_number_literal] = ACTIONS(2289), - [anon_sym_L_SQUOTE] = ACTIONS(2289), - [anon_sym_u_SQUOTE] = ACTIONS(2289), - [anon_sym_U_SQUOTE] = ACTIONS(2289), - [anon_sym_u8_SQUOTE] = ACTIONS(2289), - [anon_sym_SQUOTE] = ACTIONS(2289), - [anon_sym_L_DQUOTE] = ACTIONS(2289), - [anon_sym_u_DQUOTE] = ACTIONS(2289), - [anon_sym_U_DQUOTE] = ACTIONS(2289), - [anon_sym_u8_DQUOTE] = ACTIONS(2289), - [anon_sym_DQUOTE] = ACTIONS(2289), - [sym_true] = ACTIONS(2287), - [sym_false] = ACTIONS(2287), - [sym_null] = ACTIONS(2287), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2287), - [anon_sym_decltype] = ACTIONS(2287), - [anon_sym_virtual] = ACTIONS(2287), - [anon_sym_explicit] = ACTIONS(2287), - [anon_sym_typename] = ACTIONS(2287), - [anon_sym_template] = ACTIONS(2287), - [anon_sym_operator] = ACTIONS(2287), - [anon_sym_try] = ACTIONS(2287), - [anon_sym_delete] = ACTIONS(2287), - [anon_sym_throw] = ACTIONS(2287), - [anon_sym_namespace] = ACTIONS(2287), - [anon_sym_using] = ACTIONS(2287), - [anon_sym_static_assert] = ACTIONS(2287), - [anon_sym_concept] = ACTIONS(2287), - [anon_sym_co_return] = ACTIONS(2287), - [anon_sym_co_yield] = ACTIONS(2287), - [anon_sym_catch] = ACTIONS(2287), - [anon_sym_co_await] = ACTIONS(2287), - [anon_sym_new] = ACTIONS(2287), - [anon_sym_requires] = ACTIONS(2287), - [sym_this] = ACTIONS(2287), - [sym_nullptr] = ACTIONS(2287), - [sym_raw_string_literal] = ACTIONS(2289), - }, - [327] = { - [sym_identifier] = ACTIONS(2291), - [aux_sym_preproc_include_token1] = ACTIONS(2291), - [aux_sym_preproc_def_token1] = ACTIONS(2291), - [aux_sym_preproc_if_token1] = ACTIONS(2291), - [aux_sym_preproc_if_token2] = ACTIONS(2291), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2291), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2291), - [aux_sym_preproc_else_token1] = ACTIONS(2291), - [aux_sym_preproc_elif_token1] = ACTIONS(2291), - [sym_preproc_directive] = ACTIONS(2291), - [anon_sym_LPAREN2] = ACTIONS(2293), - [anon_sym_BANG] = ACTIONS(2293), - [anon_sym_TILDE] = ACTIONS(2293), - [anon_sym_DASH] = ACTIONS(2291), - [anon_sym_PLUS] = ACTIONS(2291), - [anon_sym_STAR] = ACTIONS(2293), - [anon_sym_AMP_AMP] = ACTIONS(2293), - [anon_sym_AMP] = ACTIONS(2291), - [anon_sym_SEMI] = ACTIONS(2293), - [anon_sym_typedef] = ACTIONS(2291), - [anon_sym_extern] = ACTIONS(2291), - [anon_sym___attribute__] = ACTIONS(2291), - [anon_sym_COLON_COLON] = ACTIONS(2293), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2293), - [anon_sym___declspec] = ACTIONS(2291), - [anon_sym___based] = ACTIONS(2291), - [anon_sym___cdecl] = ACTIONS(2291), - [anon_sym___clrcall] = ACTIONS(2291), - [anon_sym___stdcall] = ACTIONS(2291), - [anon_sym___fastcall] = ACTIONS(2291), - [anon_sym___thiscall] = ACTIONS(2291), - [anon_sym___vectorcall] = ACTIONS(2291), - [anon_sym_LBRACE] = ACTIONS(2293), - [anon_sym_LBRACK] = ACTIONS(2291), - [anon_sym_static] = ACTIONS(2291), - [anon_sym_register] = ACTIONS(2291), - [anon_sym_inline] = ACTIONS(2291), - [anon_sym_thread_local] = ACTIONS(2291), - [anon_sym_const] = ACTIONS(2291), - [anon_sym_volatile] = ACTIONS(2291), - [anon_sym_restrict] = ACTIONS(2291), - [anon_sym__Atomic] = ACTIONS(2291), - [anon_sym_mutable] = ACTIONS(2291), - [anon_sym_constexpr] = ACTIONS(2291), - [anon_sym_constinit] = ACTIONS(2291), - [anon_sym_consteval] = ACTIONS(2291), - [anon_sym_signed] = ACTIONS(2291), - [anon_sym_unsigned] = ACTIONS(2291), - [anon_sym_long] = ACTIONS(2291), - [anon_sym_short] = ACTIONS(2291), - [sym_primitive_type] = ACTIONS(2291), - [anon_sym_enum] = ACTIONS(2291), - [anon_sym_class] = ACTIONS(2291), - [anon_sym_struct] = ACTIONS(2291), - [anon_sym_union] = ACTIONS(2291), - [anon_sym_if] = ACTIONS(2291), - [anon_sym_else] = ACTIONS(2291), - [anon_sym_switch] = ACTIONS(2291), - [anon_sym_case] = ACTIONS(2291), - [anon_sym_default] = ACTIONS(2291), - [anon_sym_while] = ACTIONS(2291), - [anon_sym_do] = ACTIONS(2291), - [anon_sym_for] = ACTIONS(2291), - [anon_sym_return] = ACTIONS(2291), - [anon_sym_break] = ACTIONS(2291), - [anon_sym_continue] = ACTIONS(2291), - [anon_sym_goto] = ACTIONS(2291), - [anon_sym_DASH_DASH] = ACTIONS(2293), - [anon_sym_PLUS_PLUS] = ACTIONS(2293), - [anon_sym_sizeof] = ACTIONS(2291), - [sym_number_literal] = ACTIONS(2293), - [anon_sym_L_SQUOTE] = ACTIONS(2293), - [anon_sym_u_SQUOTE] = ACTIONS(2293), - [anon_sym_U_SQUOTE] = ACTIONS(2293), - [anon_sym_u8_SQUOTE] = ACTIONS(2293), - [anon_sym_SQUOTE] = ACTIONS(2293), - [anon_sym_L_DQUOTE] = ACTIONS(2293), - [anon_sym_u_DQUOTE] = ACTIONS(2293), - [anon_sym_U_DQUOTE] = ACTIONS(2293), - [anon_sym_u8_DQUOTE] = ACTIONS(2293), - [anon_sym_DQUOTE] = ACTIONS(2293), - [sym_true] = ACTIONS(2291), - [sym_false] = ACTIONS(2291), - [sym_null] = ACTIONS(2291), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2291), - [anon_sym_decltype] = ACTIONS(2291), - [anon_sym_virtual] = ACTIONS(2291), - [anon_sym_explicit] = ACTIONS(2291), - [anon_sym_typename] = ACTIONS(2291), - [anon_sym_template] = ACTIONS(2291), - [anon_sym_operator] = ACTIONS(2291), - [anon_sym_try] = ACTIONS(2291), - [anon_sym_delete] = ACTIONS(2291), - [anon_sym_throw] = ACTIONS(2291), - [anon_sym_namespace] = ACTIONS(2291), - [anon_sym_using] = ACTIONS(2291), - [anon_sym_static_assert] = ACTIONS(2291), - [anon_sym_concept] = ACTIONS(2291), - [anon_sym_co_return] = ACTIONS(2291), - [anon_sym_co_yield] = ACTIONS(2291), - [anon_sym_catch] = ACTIONS(2291), - [anon_sym_co_await] = ACTIONS(2291), - [anon_sym_new] = ACTIONS(2291), - [anon_sym_requires] = ACTIONS(2291), - [sym_this] = ACTIONS(2291), - [sym_nullptr] = ACTIONS(2291), - [sym_raw_string_literal] = ACTIONS(2293), - }, - [328] = { - [sym_catch_clause] = STATE(328), - [aux_sym_constructor_try_statement_repeat1] = STATE(328), - [sym_identifier] = ACTIONS(2263), - [aux_sym_preproc_include_token1] = ACTIONS(2263), - [aux_sym_preproc_def_token1] = ACTIONS(2263), - [aux_sym_preproc_if_token1] = ACTIONS(2263), - [aux_sym_preproc_if_token2] = ACTIONS(2263), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2263), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2263), - [sym_preproc_directive] = ACTIONS(2263), - [anon_sym_LPAREN2] = ACTIONS(2265), - [anon_sym_BANG] = ACTIONS(2265), - [anon_sym_TILDE] = ACTIONS(2265), - [anon_sym_DASH] = ACTIONS(2263), - [anon_sym_PLUS] = ACTIONS(2263), - [anon_sym_STAR] = ACTIONS(2265), - [anon_sym_AMP_AMP] = ACTIONS(2265), - [anon_sym_AMP] = ACTIONS(2263), - [anon_sym_SEMI] = ACTIONS(2265), - [anon_sym_typedef] = ACTIONS(2263), - [anon_sym_extern] = ACTIONS(2263), - [anon_sym___attribute__] = ACTIONS(2263), - [anon_sym_COLON_COLON] = ACTIONS(2265), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2265), - [anon_sym___declspec] = ACTIONS(2263), - [anon_sym___based] = ACTIONS(2263), - [anon_sym___cdecl] = ACTIONS(2263), - [anon_sym___clrcall] = ACTIONS(2263), - [anon_sym___stdcall] = ACTIONS(2263), - [anon_sym___fastcall] = ACTIONS(2263), - [anon_sym___thiscall] = ACTIONS(2263), - [anon_sym___vectorcall] = ACTIONS(2263), - [anon_sym_LBRACE] = ACTIONS(2265), - [anon_sym_LBRACK] = ACTIONS(2263), - [anon_sym_static] = ACTIONS(2263), - [anon_sym_register] = ACTIONS(2263), - [anon_sym_inline] = ACTIONS(2263), - [anon_sym_thread_local] = ACTIONS(2263), - [anon_sym_const] = ACTIONS(2263), - [anon_sym_volatile] = ACTIONS(2263), - [anon_sym_restrict] = ACTIONS(2263), - [anon_sym__Atomic] = ACTIONS(2263), - [anon_sym_mutable] = ACTIONS(2263), - [anon_sym_constexpr] = ACTIONS(2263), - [anon_sym_constinit] = ACTIONS(2263), - [anon_sym_consteval] = ACTIONS(2263), - [anon_sym_signed] = ACTIONS(2263), - [anon_sym_unsigned] = ACTIONS(2263), - [anon_sym_long] = ACTIONS(2263), - [anon_sym_short] = ACTIONS(2263), - [sym_primitive_type] = ACTIONS(2263), - [anon_sym_enum] = ACTIONS(2263), - [anon_sym_class] = ACTIONS(2263), - [anon_sym_struct] = ACTIONS(2263), - [anon_sym_union] = ACTIONS(2263), - [anon_sym_if] = ACTIONS(2263), - [anon_sym_else] = ACTIONS(2263), - [anon_sym_switch] = ACTIONS(2263), - [anon_sym_case] = ACTIONS(2263), - [anon_sym_default] = ACTIONS(2263), - [anon_sym_while] = ACTIONS(2263), - [anon_sym_do] = ACTIONS(2263), - [anon_sym_for] = ACTIONS(2263), - [anon_sym_return] = ACTIONS(2263), - [anon_sym_break] = ACTIONS(2263), - [anon_sym_continue] = ACTIONS(2263), - [anon_sym_goto] = ACTIONS(2263), - [anon_sym_DASH_DASH] = ACTIONS(2265), - [anon_sym_PLUS_PLUS] = ACTIONS(2265), - [anon_sym_sizeof] = ACTIONS(2263), - [sym_number_literal] = ACTIONS(2265), - [anon_sym_L_SQUOTE] = ACTIONS(2265), - [anon_sym_u_SQUOTE] = ACTIONS(2265), - [anon_sym_U_SQUOTE] = ACTIONS(2265), - [anon_sym_u8_SQUOTE] = ACTIONS(2265), - [anon_sym_SQUOTE] = ACTIONS(2265), - [anon_sym_L_DQUOTE] = ACTIONS(2265), - [anon_sym_u_DQUOTE] = ACTIONS(2265), - [anon_sym_U_DQUOTE] = ACTIONS(2265), - [anon_sym_u8_DQUOTE] = ACTIONS(2265), - [anon_sym_DQUOTE] = ACTIONS(2265), - [sym_true] = ACTIONS(2263), - [sym_false] = ACTIONS(2263), - [sym_null] = ACTIONS(2263), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2263), - [anon_sym_decltype] = ACTIONS(2263), - [anon_sym_virtual] = ACTIONS(2263), - [anon_sym_explicit] = ACTIONS(2263), - [anon_sym_typename] = ACTIONS(2263), - [anon_sym_template] = ACTIONS(2263), - [anon_sym_operator] = ACTIONS(2263), - [anon_sym_try] = ACTIONS(2263), - [anon_sym_delete] = ACTIONS(2263), - [anon_sym_throw] = ACTIONS(2263), - [anon_sym_namespace] = ACTIONS(2263), - [anon_sym_using] = ACTIONS(2263), - [anon_sym_static_assert] = ACTIONS(2263), - [anon_sym_concept] = ACTIONS(2263), - [anon_sym_co_return] = ACTIONS(2263), - [anon_sym_co_yield] = ACTIONS(2263), - [anon_sym_catch] = ACTIONS(2295), - [anon_sym_co_await] = ACTIONS(2263), - [anon_sym_new] = ACTIONS(2263), - [anon_sym_requires] = ACTIONS(2263), - [sym_this] = ACTIONS(2263), - [sym_nullptr] = ACTIONS(2263), - [sym_raw_string_literal] = ACTIONS(2265), + [anon_sym_signed] = ACTIONS(1483), + [anon_sym_unsigned] = ACTIONS(1483), + [anon_sym_long] = ACTIONS(1483), + [anon_sym_short] = ACTIONS(1483), + [sym_primitive_type] = ACTIONS(1485), + [anon_sym_enum] = ACTIONS(1487), + [anon_sym_class] = ACTIONS(1489), + [anon_sym_struct] = ACTIONS(1491), + [anon_sym_union] = ACTIONS(1493), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1495), + [anon_sym_decltype] = ACTIONS(1497), + [anon_sym_typename] = ACTIONS(1499), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_co_await] = ACTIONS(1455), + [anon_sym_new] = ACTIONS(1457), + [anon_sym_requires] = ACTIONS(1459), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + [sym_raw_string_literal] = ACTIONS(1461), }, [329] = { - [sym_catch_clause] = STATE(333), - [aux_sym_constructor_try_statement_repeat1] = STATE(333), - [sym_identifier] = ACTIONS(2257), - [aux_sym_preproc_include_token1] = ACTIONS(2257), - [aux_sym_preproc_def_token1] = ACTIONS(2257), - [aux_sym_preproc_if_token1] = ACTIONS(2257), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2257), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2257), - [sym_preproc_directive] = ACTIONS(2257), - [anon_sym_LPAREN2] = ACTIONS(2259), - [anon_sym_BANG] = ACTIONS(2259), - [anon_sym_TILDE] = ACTIONS(2259), - [anon_sym_DASH] = ACTIONS(2257), - [anon_sym_PLUS] = ACTIONS(2257), - [anon_sym_STAR] = ACTIONS(2259), - [anon_sym_AMP_AMP] = ACTIONS(2259), - [anon_sym_AMP] = ACTIONS(2257), - [anon_sym_SEMI] = ACTIONS(2259), - [anon_sym_typedef] = ACTIONS(2257), - [anon_sym_extern] = ACTIONS(2257), - [anon_sym___attribute__] = ACTIONS(2257), - [anon_sym_COLON_COLON] = ACTIONS(2259), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2259), - [anon_sym___declspec] = ACTIONS(2257), - [anon_sym___based] = ACTIONS(2257), - [anon_sym___cdecl] = ACTIONS(2257), - [anon_sym___clrcall] = ACTIONS(2257), - [anon_sym___stdcall] = ACTIONS(2257), - [anon_sym___fastcall] = ACTIONS(2257), - [anon_sym___thiscall] = ACTIONS(2257), - [anon_sym___vectorcall] = ACTIONS(2257), - [anon_sym_LBRACE] = ACTIONS(2259), - [anon_sym_RBRACE] = ACTIONS(2259), - [anon_sym_LBRACK] = ACTIONS(2257), - [anon_sym_static] = ACTIONS(2257), - [anon_sym_register] = ACTIONS(2257), - [anon_sym_inline] = ACTIONS(2257), - [anon_sym_thread_local] = ACTIONS(2257), - [anon_sym_const] = ACTIONS(2257), - [anon_sym_volatile] = ACTIONS(2257), - [anon_sym_restrict] = ACTIONS(2257), - [anon_sym__Atomic] = ACTIONS(2257), - [anon_sym_mutable] = ACTIONS(2257), - [anon_sym_constexpr] = ACTIONS(2257), - [anon_sym_constinit] = ACTIONS(2257), - [anon_sym_consteval] = ACTIONS(2257), - [anon_sym_signed] = ACTIONS(2257), - [anon_sym_unsigned] = ACTIONS(2257), - [anon_sym_long] = ACTIONS(2257), - [anon_sym_short] = ACTIONS(2257), - [sym_primitive_type] = ACTIONS(2257), - [anon_sym_enum] = ACTIONS(2257), - [anon_sym_class] = ACTIONS(2257), - [anon_sym_struct] = ACTIONS(2257), - [anon_sym_union] = ACTIONS(2257), - [anon_sym_if] = ACTIONS(2257), - [anon_sym_else] = ACTIONS(2257), - [anon_sym_switch] = ACTIONS(2257), - [anon_sym_case] = ACTIONS(2257), - [anon_sym_default] = ACTIONS(2257), - [anon_sym_while] = ACTIONS(2257), - [anon_sym_do] = ACTIONS(2257), - [anon_sym_for] = ACTIONS(2257), - [anon_sym_return] = ACTIONS(2257), - [anon_sym_break] = ACTIONS(2257), - [anon_sym_continue] = ACTIONS(2257), - [anon_sym_goto] = ACTIONS(2257), - [anon_sym_DASH_DASH] = ACTIONS(2259), - [anon_sym_PLUS_PLUS] = ACTIONS(2259), - [anon_sym_sizeof] = ACTIONS(2257), - [sym_number_literal] = ACTIONS(2259), - [anon_sym_L_SQUOTE] = ACTIONS(2259), - [anon_sym_u_SQUOTE] = ACTIONS(2259), - [anon_sym_U_SQUOTE] = ACTIONS(2259), - [anon_sym_u8_SQUOTE] = ACTIONS(2259), - [anon_sym_SQUOTE] = ACTIONS(2259), - [anon_sym_L_DQUOTE] = ACTIONS(2259), - [anon_sym_u_DQUOTE] = ACTIONS(2259), - [anon_sym_U_DQUOTE] = ACTIONS(2259), - [anon_sym_u8_DQUOTE] = ACTIONS(2259), - [anon_sym_DQUOTE] = ACTIONS(2259), - [sym_true] = ACTIONS(2257), - [sym_false] = ACTIONS(2257), - [sym_null] = ACTIONS(2257), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2257), - [anon_sym_decltype] = ACTIONS(2257), - [anon_sym_virtual] = ACTIONS(2257), - [anon_sym_explicit] = ACTIONS(2257), - [anon_sym_typename] = ACTIONS(2257), - [anon_sym_template] = ACTIONS(2257), - [anon_sym_operator] = ACTIONS(2257), - [anon_sym_try] = ACTIONS(2257), - [anon_sym_delete] = ACTIONS(2257), - [anon_sym_throw] = ACTIONS(2257), - [anon_sym_namespace] = ACTIONS(2257), - [anon_sym_using] = ACTIONS(2257), - [anon_sym_static_assert] = ACTIONS(2257), - [anon_sym_concept] = ACTIONS(2257), - [anon_sym_co_return] = ACTIONS(2257), - [anon_sym_co_yield] = ACTIONS(2257), - [anon_sym_catch] = ACTIONS(2298), - [anon_sym_co_await] = ACTIONS(2257), - [anon_sym_new] = ACTIONS(2257), - [anon_sym_requires] = ACTIONS(2257), - [sym_this] = ACTIONS(2257), - [sym_nullptr] = ACTIONS(2257), - [sym_raw_string_literal] = ACTIONS(2259), + [sym_type_qualifier] = STATE(3369), + [sym__type_specifier] = STATE(4187), + [sym_sized_type_specifier] = STATE(2780), + [sym_enum_specifier] = STATE(2780), + [sym_struct_specifier] = STATE(2780), + [sym_union_specifier] = STATE(2780), + [sym__expression] = STATE(2735), + [sym_comma_expression] = STATE(6941), + [sym_conditional_expression] = STATE(3135), + [sym_assignment_expression] = STATE(3135), + [sym_pointer_expression] = STATE(2788), + [sym_unary_expression] = STATE(3135), + [sym_binary_expression] = STATE(3135), + [sym_update_expression] = STATE(3135), + [sym_cast_expression] = STATE(3135), + [sym_type_descriptor] = STATE(7170), + [sym_sizeof_expression] = STATE(3135), + [sym_subscript_expression] = STATE(2788), + [sym_call_expression] = STATE(2788), + [sym_field_expression] = STATE(2788), + [sym_compound_literal_expression] = STATE(3135), + [sym_parenthesized_expression] = STATE(2788), + [sym_char_literal] = STATE(2981), + [sym_concatenated_string] = STATE(2981), + [sym_string_literal] = STATE(1970), + [sym_placeholder_type_specifier] = STATE(2780), + [sym_decltype_auto] = STATE(2731), + [sym_decltype] = STATE(2780), + [sym_class_specifier] = STATE(2780), + [sym__class_name] = STATE(6450), + [sym_dependent_type] = STATE(2780), + [sym_template_type] = STATE(4443), + [sym_template_function] = STATE(3135), + [sym_co_await_expression] = STATE(3135), + [sym_new_expression] = STATE(3135), + [sym_delete_expression] = STATE(3135), + [sym_requires_clause] = STATE(3135), + [sym_requires_expression] = STATE(3135), + [sym_lambda_expression] = STATE(3135), + [sym_lambda_capture_specifier] = STATE(4771), + [sym__unary_left_fold] = STATE(7167), + [sym__unary_right_fold] = STATE(7166), + [sym__binary_fold] = STATE(7158), + [sym_fold_expression] = STATE(3135), + [sym_parameter_pack_expansion] = STATE(3135), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4907), + [sym_qualified_identifier] = STATE(2788), + [sym_qualified_type_identifier] = STATE(4514), + [sym_user_defined_literal] = STATE(3135), + [aux_sym_type_definition_repeat1] = STATE(3369), + [aux_sym_sized_type_specifier_repeat1] = STATE(1935), + [sym_identifier] = ACTIONS(2418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1483), + [anon_sym_unsigned] = ACTIONS(1483), + [anon_sym_long] = ACTIONS(1483), + [anon_sym_short] = ACTIONS(1483), + [sym_primitive_type] = ACTIONS(1485), + [anon_sym_enum] = ACTIONS(1487), + [anon_sym_class] = ACTIONS(1489), + [anon_sym_struct] = ACTIONS(1491), + [anon_sym_union] = ACTIONS(1493), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1495), + [anon_sym_decltype] = ACTIONS(1497), + [anon_sym_typename] = ACTIONS(1499), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_co_await] = ACTIONS(1455), + [anon_sym_new] = ACTIONS(1457), + [anon_sym_requires] = ACTIONS(1459), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + [sym_raw_string_literal] = ACTIONS(1461), }, [330] = { - [sym_catch_clause] = STATE(324), - [aux_sym_constructor_try_statement_repeat1] = STATE(324), - [ts_builtin_sym_end] = ACTIONS(2259), - [sym_identifier] = ACTIONS(2257), - [aux_sym_preproc_include_token1] = ACTIONS(2257), - [aux_sym_preproc_def_token1] = ACTIONS(2257), - [aux_sym_preproc_if_token1] = ACTIONS(2257), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2257), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2257), - [sym_preproc_directive] = ACTIONS(2257), - [anon_sym_LPAREN2] = ACTIONS(2259), - [anon_sym_BANG] = ACTIONS(2259), - [anon_sym_TILDE] = ACTIONS(2259), - [anon_sym_DASH] = ACTIONS(2257), - [anon_sym_PLUS] = ACTIONS(2257), - [anon_sym_STAR] = ACTIONS(2259), - [anon_sym_AMP_AMP] = ACTIONS(2259), - [anon_sym_AMP] = ACTIONS(2257), - [anon_sym_SEMI] = ACTIONS(2259), - [anon_sym_typedef] = ACTIONS(2257), - [anon_sym_extern] = ACTIONS(2257), - [anon_sym___attribute__] = ACTIONS(2257), - [anon_sym_COLON_COLON] = ACTIONS(2259), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2259), - [anon_sym___declspec] = ACTIONS(2257), - [anon_sym___based] = ACTIONS(2257), - [anon_sym___cdecl] = ACTIONS(2257), - [anon_sym___clrcall] = ACTIONS(2257), - [anon_sym___stdcall] = ACTIONS(2257), - [anon_sym___fastcall] = ACTIONS(2257), - [anon_sym___thiscall] = ACTIONS(2257), - [anon_sym___vectorcall] = ACTIONS(2257), - [anon_sym_LBRACE] = ACTIONS(2259), - [anon_sym_LBRACK] = ACTIONS(2257), - [anon_sym_static] = ACTIONS(2257), - [anon_sym_register] = ACTIONS(2257), - [anon_sym_inline] = ACTIONS(2257), - [anon_sym_thread_local] = ACTIONS(2257), - [anon_sym_const] = ACTIONS(2257), - [anon_sym_volatile] = ACTIONS(2257), - [anon_sym_restrict] = ACTIONS(2257), - [anon_sym__Atomic] = ACTIONS(2257), - [anon_sym_mutable] = ACTIONS(2257), - [anon_sym_constexpr] = ACTIONS(2257), - [anon_sym_constinit] = ACTIONS(2257), - [anon_sym_consteval] = ACTIONS(2257), - [anon_sym_signed] = ACTIONS(2257), - [anon_sym_unsigned] = ACTIONS(2257), - [anon_sym_long] = ACTIONS(2257), - [anon_sym_short] = ACTIONS(2257), - [sym_primitive_type] = ACTIONS(2257), - [anon_sym_enum] = ACTIONS(2257), - [anon_sym_class] = ACTIONS(2257), - [anon_sym_struct] = ACTIONS(2257), - [anon_sym_union] = ACTIONS(2257), - [anon_sym_if] = ACTIONS(2257), - [anon_sym_else] = ACTIONS(2257), - [anon_sym_switch] = ACTIONS(2257), - [anon_sym_case] = ACTIONS(2257), - [anon_sym_default] = ACTIONS(2257), - [anon_sym_while] = ACTIONS(2257), - [anon_sym_do] = ACTIONS(2257), - [anon_sym_for] = ACTIONS(2257), - [anon_sym_return] = ACTIONS(2257), - [anon_sym_break] = ACTIONS(2257), - [anon_sym_continue] = ACTIONS(2257), - [anon_sym_goto] = ACTIONS(2257), - [anon_sym_DASH_DASH] = ACTIONS(2259), - [anon_sym_PLUS_PLUS] = ACTIONS(2259), - [anon_sym_sizeof] = ACTIONS(2257), - [sym_number_literal] = ACTIONS(2259), - [anon_sym_L_SQUOTE] = ACTIONS(2259), - [anon_sym_u_SQUOTE] = ACTIONS(2259), - [anon_sym_U_SQUOTE] = ACTIONS(2259), - [anon_sym_u8_SQUOTE] = ACTIONS(2259), - [anon_sym_SQUOTE] = ACTIONS(2259), - [anon_sym_L_DQUOTE] = ACTIONS(2259), - [anon_sym_u_DQUOTE] = ACTIONS(2259), - [anon_sym_U_DQUOTE] = ACTIONS(2259), - [anon_sym_u8_DQUOTE] = ACTIONS(2259), - [anon_sym_DQUOTE] = ACTIONS(2259), - [sym_true] = ACTIONS(2257), - [sym_false] = ACTIONS(2257), - [sym_null] = ACTIONS(2257), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2257), - [anon_sym_decltype] = ACTIONS(2257), - [anon_sym_virtual] = ACTIONS(2257), - [anon_sym_explicit] = ACTIONS(2257), - [anon_sym_typename] = ACTIONS(2257), - [anon_sym_template] = ACTIONS(2257), - [anon_sym_operator] = ACTIONS(2257), - [anon_sym_try] = ACTIONS(2257), - [anon_sym_delete] = ACTIONS(2257), - [anon_sym_throw] = ACTIONS(2257), - [anon_sym_namespace] = ACTIONS(2257), - [anon_sym_using] = ACTIONS(2257), - [anon_sym_static_assert] = ACTIONS(2257), - [anon_sym_concept] = ACTIONS(2257), - [anon_sym_co_return] = ACTIONS(2257), - [anon_sym_co_yield] = ACTIONS(2257), - [anon_sym_catch] = ACTIONS(2300), - [anon_sym_co_await] = ACTIONS(2257), - [anon_sym_new] = ACTIONS(2257), - [anon_sym_requires] = ACTIONS(2257), - [sym_this] = ACTIONS(2257), - [sym_nullptr] = ACTIONS(2257), - [sym_raw_string_literal] = ACTIONS(2259), + [sym_type_qualifier] = STATE(3369), + [sym__type_specifier] = STATE(4187), + [sym_sized_type_specifier] = STATE(2780), + [sym_enum_specifier] = STATE(2780), + [sym_struct_specifier] = STATE(2780), + [sym_union_specifier] = STATE(2780), + [sym__expression] = STATE(2801), + [sym_comma_expression] = STATE(7222), + [sym_conditional_expression] = STATE(3135), + [sym_assignment_expression] = STATE(3135), + [sym_pointer_expression] = STATE(2788), + [sym_unary_expression] = STATE(3135), + [sym_binary_expression] = STATE(3135), + [sym_update_expression] = STATE(3135), + [sym_cast_expression] = STATE(3135), + [sym_type_descriptor] = STATE(7101), + [sym_sizeof_expression] = STATE(3135), + [sym_subscript_expression] = STATE(2788), + [sym_call_expression] = STATE(2788), + [sym_field_expression] = STATE(2788), + [sym_compound_literal_expression] = STATE(3135), + [sym_parenthesized_expression] = STATE(2788), + [sym_char_literal] = STATE(2981), + [sym_concatenated_string] = STATE(2981), + [sym_string_literal] = STATE(1970), + [sym_placeholder_type_specifier] = STATE(2780), + [sym_decltype_auto] = STATE(2731), + [sym_decltype] = STATE(2780), + [sym_class_specifier] = STATE(2780), + [sym__class_name] = STATE(6450), + [sym_dependent_type] = STATE(2780), + [sym_template_type] = STATE(4443), + [sym_template_function] = STATE(3135), + [sym_co_await_expression] = STATE(3135), + [sym_new_expression] = STATE(3135), + [sym_delete_expression] = STATE(3135), + [sym_requires_clause] = STATE(3135), + [sym_requires_expression] = STATE(3135), + [sym_lambda_expression] = STATE(3135), + [sym_lambda_capture_specifier] = STATE(4771), + [sym__unary_left_fold] = STATE(7192), + [sym__unary_right_fold] = STATE(7193), + [sym__binary_fold] = STATE(7194), + [sym_fold_expression] = STATE(3135), + [sym_parameter_pack_expansion] = STATE(3135), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4907), + [sym_qualified_identifier] = STATE(2788), + [sym_qualified_type_identifier] = STATE(4514), + [sym_user_defined_literal] = STATE(3135), + [aux_sym_type_definition_repeat1] = STATE(3369), + [aux_sym_sized_type_specifier_repeat1] = STATE(1935), + [sym_identifier] = ACTIONS(2418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1483), + [anon_sym_unsigned] = ACTIONS(1483), + [anon_sym_long] = ACTIONS(1483), + [anon_sym_short] = ACTIONS(1483), + [sym_primitive_type] = ACTIONS(1485), + [anon_sym_enum] = ACTIONS(1487), + [anon_sym_class] = ACTIONS(1489), + [anon_sym_struct] = ACTIONS(1491), + [anon_sym_union] = ACTIONS(1493), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1495), + [anon_sym_decltype] = ACTIONS(1497), + [anon_sym_typename] = ACTIONS(1499), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_co_await] = ACTIONS(1455), + [anon_sym_new] = ACTIONS(1457), + [anon_sym_requires] = ACTIONS(1459), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + [sym_raw_string_literal] = ACTIONS(1461), }, [331] = { - [sym_identifier] = ACTIONS(2302), - [aux_sym_preproc_include_token1] = ACTIONS(2302), - [aux_sym_preproc_def_token1] = ACTIONS(2302), - [aux_sym_preproc_if_token1] = ACTIONS(2302), - [aux_sym_preproc_if_token2] = ACTIONS(2302), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2302), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2302), - [aux_sym_preproc_else_token1] = ACTIONS(2302), - [aux_sym_preproc_elif_token1] = ACTIONS(2302), - [sym_preproc_directive] = ACTIONS(2302), - [anon_sym_LPAREN2] = ACTIONS(2304), - [anon_sym_BANG] = ACTIONS(2304), - [anon_sym_TILDE] = ACTIONS(2304), - [anon_sym_DASH] = ACTIONS(2302), - [anon_sym_PLUS] = ACTIONS(2302), - [anon_sym_STAR] = ACTIONS(2304), - [anon_sym_AMP_AMP] = ACTIONS(2304), - [anon_sym_AMP] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(2304), - [anon_sym_typedef] = ACTIONS(2302), - [anon_sym_extern] = ACTIONS(2302), - [anon_sym___attribute__] = ACTIONS(2302), - [anon_sym_COLON_COLON] = ACTIONS(2304), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2304), - [anon_sym___declspec] = ACTIONS(2302), - [anon_sym___based] = ACTIONS(2302), - [anon_sym___cdecl] = ACTIONS(2302), - [anon_sym___clrcall] = ACTIONS(2302), - [anon_sym___stdcall] = ACTIONS(2302), - [anon_sym___fastcall] = ACTIONS(2302), - [anon_sym___thiscall] = ACTIONS(2302), - [anon_sym___vectorcall] = ACTIONS(2302), - [anon_sym_LBRACE] = ACTIONS(2304), - [anon_sym_LBRACK] = ACTIONS(2302), - [anon_sym_static] = ACTIONS(2302), - [anon_sym_register] = ACTIONS(2302), - [anon_sym_inline] = ACTIONS(2302), - [anon_sym_thread_local] = ACTIONS(2302), - [anon_sym_const] = ACTIONS(2302), - [anon_sym_volatile] = ACTIONS(2302), - [anon_sym_restrict] = ACTIONS(2302), - [anon_sym__Atomic] = ACTIONS(2302), - [anon_sym_mutable] = ACTIONS(2302), - [anon_sym_constexpr] = ACTIONS(2302), - [anon_sym_constinit] = ACTIONS(2302), - [anon_sym_consteval] = ACTIONS(2302), - [anon_sym_signed] = ACTIONS(2302), - [anon_sym_unsigned] = ACTIONS(2302), - [anon_sym_long] = ACTIONS(2302), - [anon_sym_short] = ACTIONS(2302), - [sym_primitive_type] = ACTIONS(2302), - [anon_sym_enum] = ACTIONS(2302), - [anon_sym_class] = ACTIONS(2302), - [anon_sym_struct] = ACTIONS(2302), - [anon_sym_union] = ACTIONS(2302), - [anon_sym_if] = ACTIONS(2302), - [anon_sym_else] = ACTIONS(2302), - [anon_sym_switch] = ACTIONS(2302), - [anon_sym_case] = ACTIONS(2302), - [anon_sym_default] = ACTIONS(2302), - [anon_sym_while] = ACTIONS(2302), - [anon_sym_do] = ACTIONS(2302), - [anon_sym_for] = ACTIONS(2302), - [anon_sym_return] = ACTIONS(2302), - [anon_sym_break] = ACTIONS(2302), - [anon_sym_continue] = ACTIONS(2302), - [anon_sym_goto] = ACTIONS(2302), - [anon_sym_DASH_DASH] = ACTIONS(2304), - [anon_sym_PLUS_PLUS] = ACTIONS(2304), - [anon_sym_sizeof] = ACTIONS(2302), - [sym_number_literal] = ACTIONS(2304), - [anon_sym_L_SQUOTE] = ACTIONS(2304), - [anon_sym_u_SQUOTE] = ACTIONS(2304), - [anon_sym_U_SQUOTE] = ACTIONS(2304), - [anon_sym_u8_SQUOTE] = ACTIONS(2304), - [anon_sym_SQUOTE] = ACTIONS(2304), - [anon_sym_L_DQUOTE] = ACTIONS(2304), - [anon_sym_u_DQUOTE] = ACTIONS(2304), - [anon_sym_U_DQUOTE] = ACTIONS(2304), - [anon_sym_u8_DQUOTE] = ACTIONS(2304), - [anon_sym_DQUOTE] = ACTIONS(2304), - [sym_true] = ACTIONS(2302), - [sym_false] = ACTIONS(2302), - [sym_null] = ACTIONS(2302), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2302), - [anon_sym_decltype] = ACTIONS(2302), - [anon_sym_virtual] = ACTIONS(2302), - [anon_sym_explicit] = ACTIONS(2302), - [anon_sym_typename] = ACTIONS(2302), - [anon_sym_template] = ACTIONS(2302), - [anon_sym_operator] = ACTIONS(2302), - [anon_sym_try] = ACTIONS(2302), - [anon_sym_delete] = ACTIONS(2302), - [anon_sym_throw] = ACTIONS(2302), - [anon_sym_namespace] = ACTIONS(2302), - [anon_sym_using] = ACTIONS(2302), - [anon_sym_static_assert] = ACTIONS(2302), - [anon_sym_concept] = ACTIONS(2302), - [anon_sym_co_return] = ACTIONS(2302), - [anon_sym_co_yield] = ACTIONS(2302), - [anon_sym_catch] = ACTIONS(2302), - [anon_sym_co_await] = ACTIONS(2302), - [anon_sym_new] = ACTIONS(2302), - [anon_sym_requires] = ACTIONS(2302), - [sym_this] = ACTIONS(2302), - [sym_nullptr] = ACTIONS(2302), - [sym_raw_string_literal] = ACTIONS(2304), + [sym_type_qualifier] = STATE(3369), + [sym__type_specifier] = STATE(4187), + [sym_sized_type_specifier] = STATE(2780), + [sym_enum_specifier] = STATE(2780), + [sym_struct_specifier] = STATE(2780), + [sym_union_specifier] = STATE(2780), + [sym__expression] = STATE(2875), + [sym_comma_expression] = STATE(7202), + [sym_conditional_expression] = STATE(3135), + [sym_assignment_expression] = STATE(3135), + [sym_pointer_expression] = STATE(2788), + [sym_unary_expression] = STATE(3135), + [sym_binary_expression] = STATE(3135), + [sym_update_expression] = STATE(3135), + [sym_cast_expression] = STATE(3135), + [sym_type_descriptor] = STATE(7046), + [sym_sizeof_expression] = STATE(3135), + [sym_subscript_expression] = STATE(2788), + [sym_call_expression] = STATE(2788), + [sym_field_expression] = STATE(2788), + [sym_compound_literal_expression] = STATE(3135), + [sym_parenthesized_expression] = STATE(2788), + [sym_char_literal] = STATE(2981), + [sym_concatenated_string] = STATE(2981), + [sym_string_literal] = STATE(1970), + [sym_placeholder_type_specifier] = STATE(2780), + [sym_decltype_auto] = STATE(2731), + [sym_decltype] = STATE(2780), + [sym_class_specifier] = STATE(2780), + [sym__class_name] = STATE(6450), + [sym_dependent_type] = STATE(2780), + [sym_template_type] = STATE(4443), + [sym_template_function] = STATE(3135), + [sym_co_await_expression] = STATE(3135), + [sym_new_expression] = STATE(3135), + [sym_delete_expression] = STATE(3135), + [sym_requires_clause] = STATE(3135), + [sym_requires_expression] = STATE(3135), + [sym_lambda_expression] = STATE(3135), + [sym_lambda_capture_specifier] = STATE(4771), + [sym__unary_left_fold] = STATE(7045), + [sym__unary_right_fold] = STATE(7044), + [sym__binary_fold] = STATE(7043), + [sym_fold_expression] = STATE(3135), + [sym_parameter_pack_expansion] = STATE(3135), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4907), + [sym_qualified_identifier] = STATE(2788), + [sym_qualified_type_identifier] = STATE(4514), + [sym_user_defined_literal] = STATE(3135), + [aux_sym_type_definition_repeat1] = STATE(3369), + [aux_sym_sized_type_specifier_repeat1] = STATE(1935), + [sym_identifier] = ACTIONS(2418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1483), + [anon_sym_unsigned] = ACTIONS(1483), + [anon_sym_long] = ACTIONS(1483), + [anon_sym_short] = ACTIONS(1483), + [sym_primitive_type] = ACTIONS(1485), + [anon_sym_enum] = ACTIONS(1487), + [anon_sym_class] = ACTIONS(1489), + [anon_sym_struct] = ACTIONS(1491), + [anon_sym_union] = ACTIONS(1493), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1495), + [anon_sym_decltype] = ACTIONS(1497), + [anon_sym_typename] = ACTIONS(1499), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_co_await] = ACTIONS(1455), + [anon_sym_new] = ACTIONS(1457), + [anon_sym_requires] = ACTIONS(1459), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + [sym_raw_string_literal] = ACTIONS(1461), }, [332] = { - [sym__expression] = STATE(2602), - [sym_conditional_expression] = STATE(2541), - [sym_assignment_expression] = STATE(2541), - [sym_pointer_expression] = STATE(2531), - [sym_unary_expression] = STATE(2541), - [sym_binary_expression] = STATE(2541), - [sym_update_expression] = STATE(2541), - [sym_cast_expression] = STATE(2541), - [sym_sizeof_expression] = STATE(2541), - [sym_subscript_expression] = STATE(2531), - [sym_call_expression] = STATE(2531), - [sym_field_expression] = STATE(2531), - [sym_compound_literal_expression] = STATE(2541), - [sym_parenthesized_expression] = STATE(2531), - [sym_initializer_list] = STATE(2606), - [sym_char_literal] = STATE(2481), - [sym_concatenated_string] = STATE(2481), - [sym_string_literal] = STATE(2063), - [sym__class_name] = STATE(6239), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2541), - [sym_co_await_expression] = STATE(2541), - [sym_new_expression] = STATE(2541), - [sym_delete_expression] = STATE(2541), - [sym_requires_clause] = STATE(2541), - [sym_requires_expression] = STATE(2541), - [sym_lambda_expression] = STATE(2541), - [sym_lambda_capture_specifier] = STATE(4508), - [sym_fold_expression] = STATE(2541), - [sym_parameter_pack_expansion] = STATE(2541), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2531), - [sym_qualified_type_identifier] = STATE(6239), - [sym_user_defined_literal] = STATE(2541), - [sym_identifier] = ACTIONS(2306), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2308), - [anon_sym_COMMA] = ACTIONS(2308), - [anon_sym_RPAREN] = ACTIONS(2308), - [anon_sym_LPAREN2] = ACTIONS(2310), - [anon_sym_BANG] = ACTIONS(2312), - [anon_sym_TILDE] = ACTIONS(2314), - [anon_sym_DASH] = ACTIONS(2312), - [anon_sym_PLUS] = ACTIONS(2312), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(2316), - [anon_sym_PERCENT] = ACTIONS(2316), - [anon_sym_PIPE_PIPE] = ACTIONS(2308), - [anon_sym_AMP_AMP] = ACTIONS(2308), - [anon_sym_PIPE] = ACTIONS(2316), - [anon_sym_CARET] = ACTIONS(2316), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_EQ_EQ] = ACTIONS(2308), - [anon_sym_BANG_EQ] = ACTIONS(2308), - [anon_sym_GT] = ACTIONS(2316), - [anon_sym_GT_EQ] = ACTIONS(2308), - [anon_sym_LT_EQ] = ACTIONS(2316), - [anon_sym_LT] = ACTIONS(2316), - [anon_sym_LT_LT] = ACTIONS(2316), - [anon_sym_GT_GT] = ACTIONS(2316), - [anon_sym_SEMI] = ACTIONS(2308), - [anon_sym_COLON_COLON] = ACTIONS(2318), - [anon_sym_LBRACE] = ACTIONS(2320), - [anon_sym_RBRACE] = ACTIONS(2308), - [anon_sym_LBRACK] = ACTIONS(2272), - [anon_sym_RBRACK] = ACTIONS(2308), - [anon_sym_EQ] = ACTIONS(2316), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_QMARK] = ACTIONS(2308), - [anon_sym_STAR_EQ] = ACTIONS(2308), - [anon_sym_SLASH_EQ] = ACTIONS(2308), - [anon_sym_PERCENT_EQ] = ACTIONS(2308), - [anon_sym_PLUS_EQ] = ACTIONS(2308), - [anon_sym_DASH_EQ] = ACTIONS(2308), - [anon_sym_LT_LT_EQ] = ACTIONS(2308), - [anon_sym_GT_GT_EQ] = ACTIONS(2308), - [anon_sym_AMP_EQ] = ACTIONS(2308), - [anon_sym_CARET_EQ] = ACTIONS(2308), - [anon_sym_PIPE_EQ] = ACTIONS(2308), - [anon_sym_LT_EQ_GT] = ACTIONS(2308), - [anon_sym_DASH_DASH] = ACTIONS(2322), - [anon_sym_PLUS_PLUS] = ACTIONS(2322), - [anon_sym_sizeof] = ACTIONS(2324), - [anon_sym_DOT] = ACTIONS(2316), - [anon_sym_DASH_GT] = ACTIONS(2308), - [sym_number_literal] = ACTIONS(2326), - [anon_sym_L_SQUOTE] = ACTIONS(2328), - [anon_sym_u_SQUOTE] = ACTIONS(2328), - [anon_sym_U_SQUOTE] = ACTIONS(2328), - [anon_sym_u8_SQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2328), - [anon_sym_L_DQUOTE] = ACTIONS(2330), - [anon_sym_u_DQUOTE] = ACTIONS(2330), - [anon_sym_U_DQUOTE] = ACTIONS(2330), - [anon_sym_u8_DQUOTE] = ACTIONS(2330), - [anon_sym_DQUOTE] = ACTIONS(2330), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2334), - [anon_sym_co_await] = ACTIONS(2336), - [anon_sym_new] = ACTIONS(2338), - [anon_sym_requires] = ACTIONS(2340), - [sym_this] = ACTIONS(2332), - [sym_nullptr] = ACTIONS(2332), - [sym_raw_string_literal] = ACTIONS(2342), + [sym_type_qualifier] = STATE(3369), + [sym__type_specifier] = STATE(4187), + [sym_sized_type_specifier] = STATE(2780), + [sym_enum_specifier] = STATE(2780), + [sym_struct_specifier] = STATE(2780), + [sym_union_specifier] = STATE(2780), + [sym__expression] = STATE(2735), + [sym_comma_expression] = STATE(6941), + [sym_conditional_expression] = STATE(3135), + [sym_assignment_expression] = STATE(3135), + [sym_pointer_expression] = STATE(2788), + [sym_unary_expression] = STATE(3135), + [sym_binary_expression] = STATE(3135), + [sym_update_expression] = STATE(3135), + [sym_cast_expression] = STATE(3135), + [sym_type_descriptor] = STATE(6942), + [sym_sizeof_expression] = STATE(3135), + [sym_subscript_expression] = STATE(2788), + [sym_call_expression] = STATE(2788), + [sym_field_expression] = STATE(2788), + [sym_compound_literal_expression] = STATE(3135), + [sym_parenthesized_expression] = STATE(2788), + [sym_char_literal] = STATE(2981), + [sym_concatenated_string] = STATE(2981), + [sym_string_literal] = STATE(1970), + [sym_placeholder_type_specifier] = STATE(2780), + [sym_decltype_auto] = STATE(2731), + [sym_decltype] = STATE(2780), + [sym_class_specifier] = STATE(2780), + [sym__class_name] = STATE(6450), + [sym_dependent_type] = STATE(2780), + [sym_template_type] = STATE(4443), + [sym_template_function] = STATE(3135), + [sym_co_await_expression] = STATE(3135), + [sym_new_expression] = STATE(3135), + [sym_delete_expression] = STATE(3135), + [sym_requires_clause] = STATE(3135), + [sym_requires_expression] = STATE(3135), + [sym_lambda_expression] = STATE(3135), + [sym_lambda_capture_specifier] = STATE(4771), + [sym__unary_left_fold] = STATE(6945), + [sym__unary_right_fold] = STATE(6946), + [sym__binary_fold] = STATE(6947), + [sym_fold_expression] = STATE(3135), + [sym_parameter_pack_expansion] = STATE(3135), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4907), + [sym_qualified_identifier] = STATE(2788), + [sym_qualified_type_identifier] = STATE(4514), + [sym_user_defined_literal] = STATE(3135), + [aux_sym_type_definition_repeat1] = STATE(3369), + [aux_sym_sized_type_specifier_repeat1] = STATE(1935), + [sym_identifier] = ACTIONS(2418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1483), + [anon_sym_unsigned] = ACTIONS(1483), + [anon_sym_long] = ACTIONS(1483), + [anon_sym_short] = ACTIONS(1483), + [sym_primitive_type] = ACTIONS(1485), + [anon_sym_enum] = ACTIONS(1487), + [anon_sym_class] = ACTIONS(1489), + [anon_sym_struct] = ACTIONS(1491), + [anon_sym_union] = ACTIONS(1493), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1495), + [anon_sym_decltype] = ACTIONS(1497), + [anon_sym_typename] = ACTIONS(1499), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_co_await] = ACTIONS(1455), + [anon_sym_new] = ACTIONS(1457), + [anon_sym_requires] = ACTIONS(1459), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + [sym_raw_string_literal] = ACTIONS(1461), }, [333] = { - [sym_catch_clause] = STATE(333), - [aux_sym_constructor_try_statement_repeat1] = STATE(333), - [sym_identifier] = ACTIONS(2263), - [aux_sym_preproc_include_token1] = ACTIONS(2263), - [aux_sym_preproc_def_token1] = ACTIONS(2263), - [aux_sym_preproc_if_token1] = ACTIONS(2263), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2263), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2263), - [sym_preproc_directive] = ACTIONS(2263), - [anon_sym_LPAREN2] = ACTIONS(2265), - [anon_sym_BANG] = ACTIONS(2265), - [anon_sym_TILDE] = ACTIONS(2265), - [anon_sym_DASH] = ACTIONS(2263), - [anon_sym_PLUS] = ACTIONS(2263), - [anon_sym_STAR] = ACTIONS(2265), - [anon_sym_AMP_AMP] = ACTIONS(2265), - [anon_sym_AMP] = ACTIONS(2263), - [anon_sym_SEMI] = ACTIONS(2265), - [anon_sym_typedef] = ACTIONS(2263), - [anon_sym_extern] = ACTIONS(2263), - [anon_sym___attribute__] = ACTIONS(2263), - [anon_sym_COLON_COLON] = ACTIONS(2265), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2265), - [anon_sym___declspec] = ACTIONS(2263), - [anon_sym___based] = ACTIONS(2263), - [anon_sym___cdecl] = ACTIONS(2263), - [anon_sym___clrcall] = ACTIONS(2263), - [anon_sym___stdcall] = ACTIONS(2263), - [anon_sym___fastcall] = ACTIONS(2263), - [anon_sym___thiscall] = ACTIONS(2263), - [anon_sym___vectorcall] = ACTIONS(2263), - [anon_sym_LBRACE] = ACTIONS(2265), - [anon_sym_RBRACE] = ACTIONS(2265), - [anon_sym_LBRACK] = ACTIONS(2263), - [anon_sym_static] = ACTIONS(2263), - [anon_sym_register] = ACTIONS(2263), - [anon_sym_inline] = ACTIONS(2263), - [anon_sym_thread_local] = ACTIONS(2263), - [anon_sym_const] = ACTIONS(2263), - [anon_sym_volatile] = ACTIONS(2263), - [anon_sym_restrict] = ACTIONS(2263), - [anon_sym__Atomic] = ACTIONS(2263), - [anon_sym_mutable] = ACTIONS(2263), - [anon_sym_constexpr] = ACTIONS(2263), - [anon_sym_constinit] = ACTIONS(2263), - [anon_sym_consteval] = ACTIONS(2263), - [anon_sym_signed] = ACTIONS(2263), - [anon_sym_unsigned] = ACTIONS(2263), - [anon_sym_long] = ACTIONS(2263), - [anon_sym_short] = ACTIONS(2263), - [sym_primitive_type] = ACTIONS(2263), - [anon_sym_enum] = ACTIONS(2263), - [anon_sym_class] = ACTIONS(2263), - [anon_sym_struct] = ACTIONS(2263), - [anon_sym_union] = ACTIONS(2263), - [anon_sym_if] = ACTIONS(2263), - [anon_sym_else] = ACTIONS(2263), - [anon_sym_switch] = ACTIONS(2263), - [anon_sym_case] = ACTIONS(2263), - [anon_sym_default] = ACTIONS(2263), - [anon_sym_while] = ACTIONS(2263), - [anon_sym_do] = ACTIONS(2263), - [anon_sym_for] = ACTIONS(2263), - [anon_sym_return] = ACTIONS(2263), - [anon_sym_break] = ACTIONS(2263), - [anon_sym_continue] = ACTIONS(2263), - [anon_sym_goto] = ACTIONS(2263), - [anon_sym_DASH_DASH] = ACTIONS(2265), - [anon_sym_PLUS_PLUS] = ACTIONS(2265), - [anon_sym_sizeof] = ACTIONS(2263), - [sym_number_literal] = ACTIONS(2265), - [anon_sym_L_SQUOTE] = ACTIONS(2265), - [anon_sym_u_SQUOTE] = ACTIONS(2265), - [anon_sym_U_SQUOTE] = ACTIONS(2265), - [anon_sym_u8_SQUOTE] = ACTIONS(2265), - [anon_sym_SQUOTE] = ACTIONS(2265), - [anon_sym_L_DQUOTE] = ACTIONS(2265), - [anon_sym_u_DQUOTE] = ACTIONS(2265), - [anon_sym_U_DQUOTE] = ACTIONS(2265), - [anon_sym_u8_DQUOTE] = ACTIONS(2265), - [anon_sym_DQUOTE] = ACTIONS(2265), - [sym_true] = ACTIONS(2263), - [sym_false] = ACTIONS(2263), - [sym_null] = ACTIONS(2263), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2263), - [anon_sym_decltype] = ACTIONS(2263), - [anon_sym_virtual] = ACTIONS(2263), - [anon_sym_explicit] = ACTIONS(2263), - [anon_sym_typename] = ACTIONS(2263), - [anon_sym_template] = ACTIONS(2263), - [anon_sym_operator] = ACTIONS(2263), - [anon_sym_try] = ACTIONS(2263), - [anon_sym_delete] = ACTIONS(2263), - [anon_sym_throw] = ACTIONS(2263), - [anon_sym_namespace] = ACTIONS(2263), - [anon_sym_using] = ACTIONS(2263), - [anon_sym_static_assert] = ACTIONS(2263), - [anon_sym_concept] = ACTIONS(2263), - [anon_sym_co_return] = ACTIONS(2263), - [anon_sym_co_yield] = ACTIONS(2263), - [anon_sym_catch] = ACTIONS(2344), - [anon_sym_co_await] = ACTIONS(2263), - [anon_sym_new] = ACTIONS(2263), - [anon_sym_requires] = ACTIONS(2263), - [sym_this] = ACTIONS(2263), - [sym_nullptr] = ACTIONS(2263), - [sym_raw_string_literal] = ACTIONS(2265), + [sym_type_qualifier] = STATE(3369), + [sym__type_specifier] = STATE(4187), + [sym_sized_type_specifier] = STATE(2780), + [sym_enum_specifier] = STATE(2780), + [sym_struct_specifier] = STATE(2780), + [sym_union_specifier] = STATE(2780), + [sym__expression] = STATE(2801), + [sym_comma_expression] = STATE(7222), + [sym_conditional_expression] = STATE(3135), + [sym_assignment_expression] = STATE(3135), + [sym_pointer_expression] = STATE(2788), + [sym_unary_expression] = STATE(3135), + [sym_binary_expression] = STATE(3135), + [sym_update_expression] = STATE(3135), + [sym_cast_expression] = STATE(3135), + [sym_type_descriptor] = STATE(6968), + [sym_sizeof_expression] = STATE(3135), + [sym_subscript_expression] = STATE(2788), + [sym_call_expression] = STATE(2788), + [sym_field_expression] = STATE(2788), + [sym_compound_literal_expression] = STATE(3135), + [sym_parenthesized_expression] = STATE(2788), + [sym_char_literal] = STATE(2981), + [sym_concatenated_string] = STATE(2981), + [sym_string_literal] = STATE(1970), + [sym_placeholder_type_specifier] = STATE(2780), + [sym_decltype_auto] = STATE(2731), + [sym_decltype] = STATE(2780), + [sym_class_specifier] = STATE(2780), + [sym__class_name] = STATE(6450), + [sym_dependent_type] = STATE(2780), + [sym_template_type] = STATE(4443), + [sym_template_function] = STATE(3135), + [sym_co_await_expression] = STATE(3135), + [sym_new_expression] = STATE(3135), + [sym_delete_expression] = STATE(3135), + [sym_requires_clause] = STATE(3135), + [sym_requires_expression] = STATE(3135), + [sym_lambda_expression] = STATE(3135), + [sym_lambda_capture_specifier] = STATE(4771), + [sym__unary_left_fold] = STATE(7218), + [sym__unary_right_fold] = STATE(7214), + [sym__binary_fold] = STATE(7213), + [sym_fold_expression] = STATE(3135), + [sym_parameter_pack_expansion] = STATE(3135), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4907), + [sym_qualified_identifier] = STATE(2788), + [sym_qualified_type_identifier] = STATE(4514), + [sym_user_defined_literal] = STATE(3135), + [aux_sym_type_definition_repeat1] = STATE(3369), + [aux_sym_sized_type_specifier_repeat1] = STATE(1935), + [sym_identifier] = ACTIONS(2418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1483), + [anon_sym_unsigned] = ACTIONS(1483), + [anon_sym_long] = ACTIONS(1483), + [anon_sym_short] = ACTIONS(1483), + [sym_primitive_type] = ACTIONS(1485), + [anon_sym_enum] = ACTIONS(1487), + [anon_sym_class] = ACTIONS(1489), + [anon_sym_struct] = ACTIONS(1491), + [anon_sym_union] = ACTIONS(1493), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1495), + [anon_sym_decltype] = ACTIONS(1497), + [anon_sym_typename] = ACTIONS(1499), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_co_await] = ACTIONS(1455), + [anon_sym_new] = ACTIONS(1457), + [anon_sym_requires] = ACTIONS(1459), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + [sym_raw_string_literal] = ACTIONS(1461), }, [334] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token2] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [aux_sym_preproc_else_token1] = ACTIONS(2347), - [aux_sym_preproc_elif_token1] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), + [sym_type_qualifier] = STATE(3369), + [sym__type_specifier] = STATE(4187), + [sym_sized_type_specifier] = STATE(2780), + [sym_enum_specifier] = STATE(2780), + [sym_struct_specifier] = STATE(2780), + [sym_union_specifier] = STATE(2780), + [sym__expression] = STATE(2801), + [sym_comma_expression] = STATE(7222), + [sym_conditional_expression] = STATE(3135), + [sym_assignment_expression] = STATE(3135), + [sym_pointer_expression] = STATE(2788), + [sym_unary_expression] = STATE(3135), + [sym_binary_expression] = STATE(3135), + [sym_update_expression] = STATE(3135), + [sym_cast_expression] = STATE(3135), + [sym_type_descriptor] = STATE(7220), + [sym_sizeof_expression] = STATE(3135), + [sym_subscript_expression] = STATE(2788), + [sym_call_expression] = STATE(2788), + [sym_field_expression] = STATE(2788), + [sym_compound_literal_expression] = STATE(3135), + [sym_parenthesized_expression] = STATE(2788), + [sym_char_literal] = STATE(2981), + [sym_concatenated_string] = STATE(2981), + [sym_string_literal] = STATE(1970), + [sym_placeholder_type_specifier] = STATE(2780), + [sym_decltype_auto] = STATE(2731), + [sym_decltype] = STATE(2780), + [sym_class_specifier] = STATE(2780), + [sym__class_name] = STATE(6450), + [sym_dependent_type] = STATE(2780), + [sym_template_type] = STATE(4443), + [sym_template_function] = STATE(3135), + [sym_co_await_expression] = STATE(3135), + [sym_new_expression] = STATE(3135), + [sym_delete_expression] = STATE(3135), + [sym_requires_clause] = STATE(3135), + [sym_requires_expression] = STATE(3135), + [sym_lambda_expression] = STATE(3135), + [sym_lambda_capture_specifier] = STATE(4771), + [sym__unary_left_fold] = STATE(7218), + [sym__unary_right_fold] = STATE(7214), + [sym__binary_fold] = STATE(7213), + [sym_fold_expression] = STATE(3135), + [sym_parameter_pack_expansion] = STATE(3135), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4907), + [sym_qualified_identifier] = STATE(2788), + [sym_qualified_type_identifier] = STATE(4514), + [sym_user_defined_literal] = STATE(3135), + [aux_sym_type_definition_repeat1] = STATE(3369), + [aux_sym_sized_type_specifier_repeat1] = STATE(1935), + [sym_identifier] = ACTIONS(2418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1483), + [anon_sym_unsigned] = ACTIONS(1483), + [anon_sym_long] = ACTIONS(1483), + [anon_sym_short] = ACTIONS(1483), + [sym_primitive_type] = ACTIONS(1485), + [anon_sym_enum] = ACTIONS(1487), + [anon_sym_class] = ACTIONS(1489), + [anon_sym_struct] = ACTIONS(1491), + [anon_sym_union] = ACTIONS(1493), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1495), + [anon_sym_decltype] = ACTIONS(1497), + [anon_sym_typename] = ACTIONS(1499), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_co_await] = ACTIONS(1455), + [anon_sym_new] = ACTIONS(1457), + [anon_sym_requires] = ACTIONS(1459), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + [sym_raw_string_literal] = ACTIONS(1461), }, [335] = { - [sym_identifier] = ACTIONS(2351), - [aux_sym_preproc_include_token1] = ACTIONS(2351), - [aux_sym_preproc_def_token1] = ACTIONS(2351), - [aux_sym_preproc_if_token1] = ACTIONS(2351), - [aux_sym_preproc_if_token2] = ACTIONS(2351), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2351), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2351), - [aux_sym_preproc_else_token1] = ACTIONS(2351), - [aux_sym_preproc_elif_token1] = ACTIONS(2351), - [sym_preproc_directive] = ACTIONS(2351), - [anon_sym_LPAREN2] = ACTIONS(2353), - [anon_sym_BANG] = ACTIONS(2353), - [anon_sym_TILDE] = ACTIONS(2353), - [anon_sym_DASH] = ACTIONS(2351), - [anon_sym_PLUS] = ACTIONS(2351), - [anon_sym_STAR] = ACTIONS(2353), - [anon_sym_AMP_AMP] = ACTIONS(2353), - [anon_sym_AMP] = ACTIONS(2351), - [anon_sym_SEMI] = ACTIONS(2353), - [anon_sym_typedef] = ACTIONS(2351), - [anon_sym_extern] = ACTIONS(2351), - [anon_sym___attribute__] = ACTIONS(2351), - [anon_sym_COLON_COLON] = ACTIONS(2353), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2353), - [anon_sym___declspec] = ACTIONS(2351), - [anon_sym___based] = ACTIONS(2351), - [anon_sym___cdecl] = ACTIONS(2351), - [anon_sym___clrcall] = ACTIONS(2351), - [anon_sym___stdcall] = ACTIONS(2351), - [anon_sym___fastcall] = ACTIONS(2351), - [anon_sym___thiscall] = ACTIONS(2351), - [anon_sym___vectorcall] = ACTIONS(2351), - [anon_sym_LBRACE] = ACTIONS(2353), - [anon_sym_LBRACK] = ACTIONS(2351), - [anon_sym_static] = ACTIONS(2351), - [anon_sym_register] = ACTIONS(2351), - [anon_sym_inline] = ACTIONS(2351), - [anon_sym_thread_local] = ACTIONS(2351), - [anon_sym_const] = ACTIONS(2351), - [anon_sym_volatile] = ACTIONS(2351), - [anon_sym_restrict] = ACTIONS(2351), - [anon_sym__Atomic] = ACTIONS(2351), - [anon_sym_mutable] = ACTIONS(2351), - [anon_sym_constexpr] = ACTIONS(2351), - [anon_sym_constinit] = ACTIONS(2351), - [anon_sym_consteval] = ACTIONS(2351), - [anon_sym_signed] = ACTIONS(2351), - [anon_sym_unsigned] = ACTIONS(2351), - [anon_sym_long] = ACTIONS(2351), - [anon_sym_short] = ACTIONS(2351), - [sym_primitive_type] = ACTIONS(2351), - [anon_sym_enum] = ACTIONS(2351), - [anon_sym_class] = ACTIONS(2351), - [anon_sym_struct] = ACTIONS(2351), - [anon_sym_union] = ACTIONS(2351), - [anon_sym_if] = ACTIONS(2351), - [anon_sym_else] = ACTIONS(2351), - [anon_sym_switch] = ACTIONS(2351), - [anon_sym_case] = ACTIONS(2351), - [anon_sym_default] = ACTIONS(2351), - [anon_sym_while] = ACTIONS(2351), - [anon_sym_do] = ACTIONS(2351), - [anon_sym_for] = ACTIONS(2351), - [anon_sym_return] = ACTIONS(2351), - [anon_sym_break] = ACTIONS(2351), - [anon_sym_continue] = ACTIONS(2351), - [anon_sym_goto] = ACTIONS(2351), - [anon_sym_DASH_DASH] = ACTIONS(2353), - [anon_sym_PLUS_PLUS] = ACTIONS(2353), - [anon_sym_sizeof] = ACTIONS(2351), - [sym_number_literal] = ACTIONS(2353), - [anon_sym_L_SQUOTE] = ACTIONS(2353), - [anon_sym_u_SQUOTE] = ACTIONS(2353), - [anon_sym_U_SQUOTE] = ACTIONS(2353), - [anon_sym_u8_SQUOTE] = ACTIONS(2353), - [anon_sym_SQUOTE] = ACTIONS(2353), - [anon_sym_L_DQUOTE] = ACTIONS(2353), - [anon_sym_u_DQUOTE] = ACTIONS(2353), - [anon_sym_U_DQUOTE] = ACTIONS(2353), - [anon_sym_u8_DQUOTE] = ACTIONS(2353), - [anon_sym_DQUOTE] = ACTIONS(2353), - [sym_true] = ACTIONS(2351), - [sym_false] = ACTIONS(2351), - [sym_null] = ACTIONS(2351), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2351), - [anon_sym_decltype] = ACTIONS(2351), - [anon_sym_virtual] = ACTIONS(2351), - [anon_sym_explicit] = ACTIONS(2351), - [anon_sym_typename] = ACTIONS(2351), - [anon_sym_template] = ACTIONS(2351), - [anon_sym_operator] = ACTIONS(2351), - [anon_sym_try] = ACTIONS(2351), - [anon_sym_delete] = ACTIONS(2351), - [anon_sym_throw] = ACTIONS(2351), - [anon_sym_namespace] = ACTIONS(2351), - [anon_sym_using] = ACTIONS(2351), - [anon_sym_static_assert] = ACTIONS(2351), - [anon_sym_concept] = ACTIONS(2351), - [anon_sym_co_return] = ACTIONS(2351), - [anon_sym_co_yield] = ACTIONS(2351), - [anon_sym_co_await] = ACTIONS(2351), - [anon_sym_new] = ACTIONS(2351), - [anon_sym_requires] = ACTIONS(2351), - [sym_this] = ACTIONS(2351), - [sym_nullptr] = ACTIONS(2351), - [sym_raw_string_literal] = ACTIONS(2353), + [sym__declaration_modifiers] = STATE(2201), + [sym__declaration_specifiers] = STATE(5007), + [sym_attribute_specifier] = STATE(2201), + [sym_attribute_declaration] = STATE(2201), + [sym_ms_declspec_modifier] = STATE(2201), + [sym_storage_class_specifier] = STATE(2201), + [sym_type_qualifier] = STATE(2201), + [sym__type_specifier] = STATE(4077), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym_virtual_function_specifier] = STATE(2201), + [sym_dependent_type] = STATE(3481), + [sym_template_type] = STATE(3395), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(5394), + [sym_qualified_type_identifier] = STATE(3490), + [aux_sym__declaration_specifiers_repeat1] = STATE(2201), + [aux_sym_sized_type_specifier_repeat1] = STATE(3511), + [sym_identifier] = ACTIONS(2428), + [anon_sym_COMMA] = ACTIONS(2430), + [anon_sym_BANG] = ACTIONS(2432), + [anon_sym_TILDE] = ACTIONS(2430), + [anon_sym_DASH] = ACTIONS(2432), + [anon_sym_PLUS] = ACTIONS(2432), + [anon_sym_STAR] = ACTIONS(2432), + [anon_sym_SLASH] = ACTIONS(2432), + [anon_sym_PERCENT] = ACTIONS(2432), + [anon_sym_PIPE_PIPE] = ACTIONS(2430), + [anon_sym_AMP_AMP] = ACTIONS(2430), + [anon_sym_PIPE] = ACTIONS(2432), + [anon_sym_CARET] = ACTIONS(2432), + [anon_sym_AMP] = ACTIONS(2432), + [anon_sym_EQ_EQ] = ACTIONS(2430), + [anon_sym_BANG_EQ] = ACTIONS(2430), + [anon_sym_GT] = ACTIONS(2432), + [anon_sym_GT_EQ] = ACTIONS(2430), + [anon_sym_LT_EQ] = ACTIONS(2432), + [anon_sym_LT] = ACTIONS(2432), + [anon_sym_LT_LT] = ACTIONS(2432), + [anon_sym_GT_GT] = ACTIONS(2432), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(2434), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym_EQ] = ACTIONS(2432), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2436), + [anon_sym_unsigned] = ACTIONS(2436), + [anon_sym_long] = ACTIONS(2436), + [anon_sym_short] = ACTIONS(2436), + [sym_primitive_type] = ACTIONS(2438), + [anon_sym_enum] = ACTIONS(2440), + [anon_sym_class] = ACTIONS(2442), + [anon_sym_struct] = ACTIONS(2444), + [anon_sym_union] = ACTIONS(2446), + [anon_sym_STAR_EQ] = ACTIONS(2430), + [anon_sym_SLASH_EQ] = ACTIONS(2430), + [anon_sym_PERCENT_EQ] = ACTIONS(2430), + [anon_sym_PLUS_EQ] = ACTIONS(2430), + [anon_sym_DASH_EQ] = ACTIONS(2430), + [anon_sym_LT_LT_EQ] = ACTIONS(2430), + [anon_sym_GT_GT_EQ] = ACTIONS(2430), + [anon_sym_AMP_EQ] = ACTIONS(2430), + [anon_sym_CARET_EQ] = ACTIONS(2430), + [anon_sym_PIPE_EQ] = ACTIONS(2430), + [anon_sym_and_eq] = ACTIONS(2432), + [anon_sym_or_eq] = ACTIONS(2432), + [anon_sym_xor_eq] = ACTIONS(2432), + [anon_sym_not] = ACTIONS(2432), + [anon_sym_compl] = ACTIONS(2432), + [anon_sym_LT_EQ_GT] = ACTIONS(2430), + [anon_sym_or] = ACTIONS(2432), + [anon_sym_and] = ACTIONS(2432), + [anon_sym_bitor] = ACTIONS(2432), + [anon_sym_xor] = ACTIONS(2432), + [anon_sym_bitand] = ACTIONS(2432), + [anon_sym_not_eq] = ACTIONS(2432), + [anon_sym_DASH_DASH] = ACTIONS(2430), + [anon_sym_PLUS_PLUS] = ACTIONS(2430), + [anon_sym_DASH_GT] = ACTIONS(2432), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_typename] = ACTIONS(2448), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(2450), + [anon_sym_co_await] = ACTIONS(2432), + [anon_sym_new] = ACTIONS(2450), + [anon_sym_DASH_GT_STAR] = ACTIONS(2430), + [anon_sym_LPAREN_RPAREN] = ACTIONS(2430), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2430), + [anon_sym_DQUOTE_DQUOTE] = ACTIONS(2452), }, [336] = { - [sym_identifier] = ACTIONS(2355), - [aux_sym_preproc_include_token1] = ACTIONS(2355), - [aux_sym_preproc_def_token1] = ACTIONS(2355), - [aux_sym_preproc_if_token1] = ACTIONS(2355), - [aux_sym_preproc_if_token2] = ACTIONS(2355), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2355), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2355), - [aux_sym_preproc_else_token1] = ACTIONS(2355), - [aux_sym_preproc_elif_token1] = ACTIONS(2355), - [sym_preproc_directive] = ACTIONS(2355), - [anon_sym_LPAREN2] = ACTIONS(2357), - [anon_sym_BANG] = ACTIONS(2357), - [anon_sym_TILDE] = ACTIONS(2357), - [anon_sym_DASH] = ACTIONS(2355), - [anon_sym_PLUS] = ACTIONS(2355), - [anon_sym_STAR] = ACTIONS(2357), - [anon_sym_AMP_AMP] = ACTIONS(2357), - [anon_sym_AMP] = ACTIONS(2355), - [anon_sym_SEMI] = ACTIONS(2357), - [anon_sym_typedef] = ACTIONS(2355), - [anon_sym_extern] = ACTIONS(2355), - [anon_sym___attribute__] = ACTIONS(2355), - [anon_sym_COLON_COLON] = ACTIONS(2357), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2357), - [anon_sym___declspec] = ACTIONS(2355), - [anon_sym___based] = ACTIONS(2355), - [anon_sym___cdecl] = ACTIONS(2355), - [anon_sym___clrcall] = ACTIONS(2355), - [anon_sym___stdcall] = ACTIONS(2355), - [anon_sym___fastcall] = ACTIONS(2355), - [anon_sym___thiscall] = ACTIONS(2355), - [anon_sym___vectorcall] = ACTIONS(2355), - [anon_sym_LBRACE] = ACTIONS(2357), - [anon_sym_LBRACK] = ACTIONS(2355), - [anon_sym_static] = ACTIONS(2355), - [anon_sym_register] = ACTIONS(2355), - [anon_sym_inline] = ACTIONS(2355), - [anon_sym_thread_local] = ACTIONS(2355), - [anon_sym_const] = ACTIONS(2355), - [anon_sym_volatile] = ACTIONS(2355), - [anon_sym_restrict] = ACTIONS(2355), - [anon_sym__Atomic] = ACTIONS(2355), - [anon_sym_mutable] = ACTIONS(2355), - [anon_sym_constexpr] = ACTIONS(2355), - [anon_sym_constinit] = ACTIONS(2355), - [anon_sym_consteval] = ACTIONS(2355), - [anon_sym_signed] = ACTIONS(2355), - [anon_sym_unsigned] = ACTIONS(2355), - [anon_sym_long] = ACTIONS(2355), - [anon_sym_short] = ACTIONS(2355), - [sym_primitive_type] = ACTIONS(2355), - [anon_sym_enum] = ACTIONS(2355), - [anon_sym_class] = ACTIONS(2355), - [anon_sym_struct] = ACTIONS(2355), - [anon_sym_union] = ACTIONS(2355), - [anon_sym_if] = ACTIONS(2355), - [anon_sym_else] = ACTIONS(2355), - [anon_sym_switch] = ACTIONS(2355), - [anon_sym_case] = ACTIONS(2355), - [anon_sym_default] = ACTIONS(2355), - [anon_sym_while] = ACTIONS(2355), - [anon_sym_do] = ACTIONS(2355), - [anon_sym_for] = ACTIONS(2355), - [anon_sym_return] = ACTIONS(2355), - [anon_sym_break] = ACTIONS(2355), - [anon_sym_continue] = ACTIONS(2355), - [anon_sym_goto] = ACTIONS(2355), - [anon_sym_DASH_DASH] = ACTIONS(2357), - [anon_sym_PLUS_PLUS] = ACTIONS(2357), - [anon_sym_sizeof] = ACTIONS(2355), - [sym_number_literal] = ACTIONS(2357), - [anon_sym_L_SQUOTE] = ACTIONS(2357), - [anon_sym_u_SQUOTE] = ACTIONS(2357), - [anon_sym_U_SQUOTE] = ACTIONS(2357), - [anon_sym_u8_SQUOTE] = ACTIONS(2357), - [anon_sym_SQUOTE] = ACTIONS(2357), - [anon_sym_L_DQUOTE] = ACTIONS(2357), - [anon_sym_u_DQUOTE] = ACTIONS(2357), - [anon_sym_U_DQUOTE] = ACTIONS(2357), - [anon_sym_u8_DQUOTE] = ACTIONS(2357), - [anon_sym_DQUOTE] = ACTIONS(2357), - [sym_true] = ACTIONS(2355), - [sym_false] = ACTIONS(2355), - [sym_null] = ACTIONS(2355), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2355), - [anon_sym_decltype] = ACTIONS(2355), - [anon_sym_virtual] = ACTIONS(2355), - [anon_sym_explicit] = ACTIONS(2355), - [anon_sym_typename] = ACTIONS(2355), - [anon_sym_template] = ACTIONS(2355), - [anon_sym_operator] = ACTIONS(2355), - [anon_sym_try] = ACTIONS(2355), - [anon_sym_delete] = ACTIONS(2355), - [anon_sym_throw] = ACTIONS(2355), - [anon_sym_namespace] = ACTIONS(2355), - [anon_sym_using] = ACTIONS(2355), - [anon_sym_static_assert] = ACTIONS(2355), - [anon_sym_concept] = ACTIONS(2355), - [anon_sym_co_return] = ACTIONS(2355), - [anon_sym_co_yield] = ACTIONS(2355), - [anon_sym_co_await] = ACTIONS(2355), - [anon_sym_new] = ACTIONS(2355), - [anon_sym_requires] = ACTIONS(2355), - [sym_this] = ACTIONS(2355), - [sym_nullptr] = ACTIONS(2355), - [sym_raw_string_literal] = ACTIONS(2357), + [sym__declaration_modifiers] = STATE(2201), + [sym__declaration_specifiers] = STATE(5007), + [sym_attribute_specifier] = STATE(2201), + [sym_attribute_declaration] = STATE(2201), + [sym_ms_declspec_modifier] = STATE(2201), + [sym_storage_class_specifier] = STATE(2201), + [sym_type_qualifier] = STATE(2201), + [sym__type_specifier] = STATE(4077), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym_virtual_function_specifier] = STATE(2201), + [sym_dependent_type] = STATE(3481), + [sym_template_type] = STATE(3395), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(5394), + [sym_qualified_type_identifier] = STATE(3490), + [aux_sym__declaration_specifiers_repeat1] = STATE(2201), + [aux_sym_sized_type_specifier_repeat1] = STATE(3511), + [sym_identifier] = ACTIONS(2428), + [anon_sym_COMMA] = ACTIONS(2454), + [anon_sym_BANG] = ACTIONS(2456), + [anon_sym_TILDE] = ACTIONS(2454), + [anon_sym_DASH] = ACTIONS(2456), + [anon_sym_PLUS] = ACTIONS(2456), + [anon_sym_STAR] = ACTIONS(2456), + [anon_sym_SLASH] = ACTIONS(2456), + [anon_sym_PERCENT] = ACTIONS(2456), + [anon_sym_PIPE_PIPE] = ACTIONS(2454), + [anon_sym_AMP_AMP] = ACTIONS(2454), + [anon_sym_PIPE] = ACTIONS(2456), + [anon_sym_CARET] = ACTIONS(2456), + [anon_sym_AMP] = ACTIONS(2456), + [anon_sym_EQ_EQ] = ACTIONS(2454), + [anon_sym_BANG_EQ] = ACTIONS(2454), + [anon_sym_GT] = ACTIONS(2456), + [anon_sym_GT_EQ] = ACTIONS(2454), + [anon_sym_LT_EQ] = ACTIONS(2456), + [anon_sym_LT] = ACTIONS(2456), + [anon_sym_LT_LT] = ACTIONS(2456), + [anon_sym_GT_GT] = ACTIONS(2456), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(2434), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym_EQ] = ACTIONS(2456), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2436), + [anon_sym_unsigned] = ACTIONS(2436), + [anon_sym_long] = ACTIONS(2436), + [anon_sym_short] = ACTIONS(2436), + [sym_primitive_type] = ACTIONS(2438), + [anon_sym_enum] = ACTIONS(2440), + [anon_sym_class] = ACTIONS(2442), + [anon_sym_struct] = ACTIONS(2444), + [anon_sym_union] = ACTIONS(2446), + [anon_sym_STAR_EQ] = ACTIONS(2454), + [anon_sym_SLASH_EQ] = ACTIONS(2454), + [anon_sym_PERCENT_EQ] = ACTIONS(2454), + [anon_sym_PLUS_EQ] = ACTIONS(2454), + [anon_sym_DASH_EQ] = ACTIONS(2454), + [anon_sym_LT_LT_EQ] = ACTIONS(2454), + [anon_sym_GT_GT_EQ] = ACTIONS(2454), + [anon_sym_AMP_EQ] = ACTIONS(2454), + [anon_sym_CARET_EQ] = ACTIONS(2454), + [anon_sym_PIPE_EQ] = ACTIONS(2454), + [anon_sym_and_eq] = ACTIONS(2456), + [anon_sym_or_eq] = ACTIONS(2456), + [anon_sym_xor_eq] = ACTIONS(2456), + [anon_sym_not] = ACTIONS(2456), + [anon_sym_compl] = ACTIONS(2456), + [anon_sym_LT_EQ_GT] = ACTIONS(2454), + [anon_sym_or] = ACTIONS(2456), + [anon_sym_and] = ACTIONS(2456), + [anon_sym_bitor] = ACTIONS(2456), + [anon_sym_xor] = ACTIONS(2456), + [anon_sym_bitand] = ACTIONS(2456), + [anon_sym_not_eq] = ACTIONS(2456), + [anon_sym_DASH_DASH] = ACTIONS(2454), + [anon_sym_PLUS_PLUS] = ACTIONS(2454), + [anon_sym_DASH_GT] = ACTIONS(2456), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_typename] = ACTIONS(2448), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(2458), + [anon_sym_co_await] = ACTIONS(2456), + [anon_sym_new] = ACTIONS(2458), + [anon_sym_DASH_GT_STAR] = ACTIONS(2454), + [anon_sym_LPAREN_RPAREN] = ACTIONS(2454), + [anon_sym_LBRACK_RBRACK] = ACTIONS(2454), + [anon_sym_DQUOTE_DQUOTE] = ACTIONS(2460), }, [337] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token2] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [aux_sym_preproc_else_token1] = ACTIONS(2347), - [aux_sym_preproc_elif_token1] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), + [sym_type_qualifier] = STATE(3369), + [sym__type_specifier] = STATE(4187), + [sym_sized_type_specifier] = STATE(2780), + [sym_enum_specifier] = STATE(2780), + [sym_struct_specifier] = STATE(2780), + [sym_union_specifier] = STATE(2780), + [sym__expression] = STATE(2875), + [sym_comma_expression] = STATE(7202), + [sym_conditional_expression] = STATE(3135), + [sym_assignment_expression] = STATE(3135), + [sym_pointer_expression] = STATE(2788), + [sym_unary_expression] = STATE(3135), + [sym_binary_expression] = STATE(3135), + [sym_update_expression] = STATE(3135), + [sym_cast_expression] = STATE(3135), + [sym_type_descriptor] = STATE(7016), + [sym_sizeof_expression] = STATE(3135), + [sym_subscript_expression] = STATE(2788), + [sym_call_expression] = STATE(2788), + [sym_field_expression] = STATE(2788), + [sym_compound_literal_expression] = STATE(3135), + [sym_parenthesized_expression] = STATE(2788), + [sym_char_literal] = STATE(2981), + [sym_concatenated_string] = STATE(2981), + [sym_string_literal] = STATE(1970), + [sym_placeholder_type_specifier] = STATE(2780), + [sym_decltype_auto] = STATE(2731), + [sym_decltype] = STATE(2780), + [sym_class_specifier] = STATE(2780), + [sym__class_name] = STATE(6450), + [sym_dependent_type] = STATE(2780), + [sym_template_type] = STATE(4443), + [sym_template_function] = STATE(3135), + [sym_co_await_expression] = STATE(3135), + [sym_new_expression] = STATE(3135), + [sym_delete_expression] = STATE(3135), + [sym_requires_clause] = STATE(3135), + [sym_requires_expression] = STATE(3135), + [sym_lambda_expression] = STATE(3135), + [sym_lambda_capture_specifier] = STATE(4771), + [sym__unary_left_fold] = STATE(7045), + [sym__unary_right_fold] = STATE(7044), + [sym__binary_fold] = STATE(7043), + [sym_fold_expression] = STATE(3135), + [sym_parameter_pack_expansion] = STATE(3135), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4907), + [sym_qualified_identifier] = STATE(2788), + [sym_qualified_type_identifier] = STATE(4514), + [sym_user_defined_literal] = STATE(3135), + [aux_sym_type_definition_repeat1] = STATE(3369), + [aux_sym_sized_type_specifier_repeat1] = STATE(1935), + [sym_identifier] = ACTIONS(2418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1483), + [anon_sym_unsigned] = ACTIONS(1483), + [anon_sym_long] = ACTIONS(1483), + [anon_sym_short] = ACTIONS(1483), + [sym_primitive_type] = ACTIONS(1485), + [anon_sym_enum] = ACTIONS(1487), + [anon_sym_class] = ACTIONS(1489), + [anon_sym_struct] = ACTIONS(1491), + [anon_sym_union] = ACTIONS(1493), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1495), + [anon_sym_decltype] = ACTIONS(1497), + [anon_sym_typename] = ACTIONS(1499), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_co_await] = ACTIONS(1455), + [anon_sym_new] = ACTIONS(1457), + [anon_sym_requires] = ACTIONS(1459), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + [sym_raw_string_literal] = ACTIONS(1461), }, [338] = { - [sym_identifier] = ACTIONS(2359), - [aux_sym_preproc_include_token1] = ACTIONS(2359), - [aux_sym_preproc_def_token1] = ACTIONS(2359), - [aux_sym_preproc_if_token1] = ACTIONS(2359), - [aux_sym_preproc_if_token2] = ACTIONS(2359), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2359), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2359), - [aux_sym_preproc_else_token1] = ACTIONS(2359), - [aux_sym_preproc_elif_token1] = ACTIONS(2359), - [sym_preproc_directive] = ACTIONS(2359), - [anon_sym_LPAREN2] = ACTIONS(2361), - [anon_sym_BANG] = ACTIONS(2361), - [anon_sym_TILDE] = ACTIONS(2361), - [anon_sym_DASH] = ACTIONS(2359), - [anon_sym_PLUS] = ACTIONS(2359), - [anon_sym_STAR] = ACTIONS(2361), - [anon_sym_AMP_AMP] = ACTIONS(2361), - [anon_sym_AMP] = ACTIONS(2359), - [anon_sym_SEMI] = ACTIONS(2361), - [anon_sym_typedef] = ACTIONS(2359), - [anon_sym_extern] = ACTIONS(2359), - [anon_sym___attribute__] = ACTIONS(2359), - [anon_sym_COLON_COLON] = ACTIONS(2361), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2361), - [anon_sym___declspec] = ACTIONS(2359), - [anon_sym___based] = ACTIONS(2359), - [anon_sym___cdecl] = ACTIONS(2359), - [anon_sym___clrcall] = ACTIONS(2359), - [anon_sym___stdcall] = ACTIONS(2359), - [anon_sym___fastcall] = ACTIONS(2359), - [anon_sym___thiscall] = ACTIONS(2359), - [anon_sym___vectorcall] = ACTIONS(2359), - [anon_sym_LBRACE] = ACTIONS(2361), - [anon_sym_LBRACK] = ACTIONS(2359), - [anon_sym_static] = ACTIONS(2359), - [anon_sym_register] = ACTIONS(2359), - [anon_sym_inline] = ACTIONS(2359), - [anon_sym_thread_local] = ACTIONS(2359), - [anon_sym_const] = ACTIONS(2359), - [anon_sym_volatile] = ACTIONS(2359), - [anon_sym_restrict] = ACTIONS(2359), - [anon_sym__Atomic] = ACTIONS(2359), - [anon_sym_mutable] = ACTIONS(2359), - [anon_sym_constexpr] = ACTIONS(2359), - [anon_sym_constinit] = ACTIONS(2359), - [anon_sym_consteval] = ACTIONS(2359), - [anon_sym_signed] = ACTIONS(2359), - [anon_sym_unsigned] = ACTIONS(2359), - [anon_sym_long] = ACTIONS(2359), - [anon_sym_short] = ACTIONS(2359), - [sym_primitive_type] = ACTIONS(2359), - [anon_sym_enum] = ACTIONS(2359), - [anon_sym_class] = ACTIONS(2359), - [anon_sym_struct] = ACTIONS(2359), - [anon_sym_union] = ACTIONS(2359), - [anon_sym_if] = ACTIONS(2359), - [anon_sym_else] = ACTIONS(2359), - [anon_sym_switch] = ACTIONS(2359), - [anon_sym_case] = ACTIONS(2359), - [anon_sym_default] = ACTIONS(2359), - [anon_sym_while] = ACTIONS(2359), - [anon_sym_do] = ACTIONS(2359), - [anon_sym_for] = ACTIONS(2359), - [anon_sym_return] = ACTIONS(2359), - [anon_sym_break] = ACTIONS(2359), - [anon_sym_continue] = ACTIONS(2359), - [anon_sym_goto] = ACTIONS(2359), - [anon_sym_DASH_DASH] = ACTIONS(2361), - [anon_sym_PLUS_PLUS] = ACTIONS(2361), - [anon_sym_sizeof] = ACTIONS(2359), - [sym_number_literal] = ACTIONS(2361), - [anon_sym_L_SQUOTE] = ACTIONS(2361), - [anon_sym_u_SQUOTE] = ACTIONS(2361), - [anon_sym_U_SQUOTE] = ACTIONS(2361), - [anon_sym_u8_SQUOTE] = ACTIONS(2361), - [anon_sym_SQUOTE] = ACTIONS(2361), - [anon_sym_L_DQUOTE] = ACTIONS(2361), - [anon_sym_u_DQUOTE] = ACTIONS(2361), - [anon_sym_U_DQUOTE] = ACTIONS(2361), - [anon_sym_u8_DQUOTE] = ACTIONS(2361), - [anon_sym_DQUOTE] = ACTIONS(2361), - [sym_true] = ACTIONS(2359), - [sym_false] = ACTIONS(2359), - [sym_null] = ACTIONS(2359), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2359), - [anon_sym_decltype] = ACTIONS(2359), - [anon_sym_virtual] = ACTIONS(2359), - [anon_sym_explicit] = ACTIONS(2359), - [anon_sym_typename] = ACTIONS(2359), - [anon_sym_template] = ACTIONS(2359), - [anon_sym_operator] = ACTIONS(2359), - [anon_sym_try] = ACTIONS(2359), - [anon_sym_delete] = ACTIONS(2359), - [anon_sym_throw] = ACTIONS(2359), - [anon_sym_namespace] = ACTIONS(2359), - [anon_sym_using] = ACTIONS(2359), - [anon_sym_static_assert] = ACTIONS(2359), - [anon_sym_concept] = ACTIONS(2359), - [anon_sym_co_return] = ACTIONS(2359), - [anon_sym_co_yield] = ACTIONS(2359), - [anon_sym_co_await] = ACTIONS(2359), - [anon_sym_new] = ACTIONS(2359), - [anon_sym_requires] = ACTIONS(2359), - [sym_this] = ACTIONS(2359), - [sym_nullptr] = ACTIONS(2359), - [sym_raw_string_literal] = ACTIONS(2361), + [sym_type_qualifier] = STATE(3369), + [sym__type_specifier] = STATE(4187), + [sym_sized_type_specifier] = STATE(2780), + [sym_enum_specifier] = STATE(2780), + [sym_struct_specifier] = STATE(2780), + [sym_union_specifier] = STATE(2780), + [sym__expression] = STATE(2735), + [sym_comma_expression] = STATE(6941), + [sym_conditional_expression] = STATE(3135), + [sym_assignment_expression] = STATE(3135), + [sym_pointer_expression] = STATE(2788), + [sym_unary_expression] = STATE(3135), + [sym_binary_expression] = STATE(3135), + [sym_update_expression] = STATE(3135), + [sym_cast_expression] = STATE(3135), + [sym_type_descriptor] = STATE(7012), + [sym_sizeof_expression] = STATE(3135), + [sym_subscript_expression] = STATE(2788), + [sym_call_expression] = STATE(2788), + [sym_field_expression] = STATE(2788), + [sym_compound_literal_expression] = STATE(3135), + [sym_parenthesized_expression] = STATE(2788), + [sym_char_literal] = STATE(2981), + [sym_concatenated_string] = STATE(2981), + [sym_string_literal] = STATE(1970), + [sym_placeholder_type_specifier] = STATE(2780), + [sym_decltype_auto] = STATE(2731), + [sym_decltype] = STATE(2780), + [sym_class_specifier] = STATE(2780), + [sym__class_name] = STATE(6450), + [sym_dependent_type] = STATE(2780), + [sym_template_type] = STATE(4443), + [sym_template_function] = STATE(3135), + [sym_co_await_expression] = STATE(3135), + [sym_new_expression] = STATE(3135), + [sym_delete_expression] = STATE(3135), + [sym_requires_clause] = STATE(3135), + [sym_requires_expression] = STATE(3135), + [sym_lambda_expression] = STATE(3135), + [sym_lambda_capture_specifier] = STATE(4771), + [sym__unary_left_fold] = STATE(6945), + [sym__unary_right_fold] = STATE(6946), + [sym__binary_fold] = STATE(6947), + [sym_fold_expression] = STATE(3135), + [sym_parameter_pack_expansion] = STATE(3135), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4907), + [sym_qualified_identifier] = STATE(2788), + [sym_qualified_type_identifier] = STATE(4514), + [sym_user_defined_literal] = STATE(3135), + [aux_sym_type_definition_repeat1] = STATE(3369), + [aux_sym_sized_type_specifier_repeat1] = STATE(1935), + [sym_identifier] = ACTIONS(2418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(1483), + [anon_sym_unsigned] = ACTIONS(1483), + [anon_sym_long] = ACTIONS(1483), + [anon_sym_short] = ACTIONS(1483), + [sym_primitive_type] = ACTIONS(1485), + [anon_sym_enum] = ACTIONS(1487), + [anon_sym_class] = ACTIONS(1489), + [anon_sym_struct] = ACTIONS(1491), + [anon_sym_union] = ACTIONS(1493), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1495), + [anon_sym_decltype] = ACTIONS(1497), + [anon_sym_typename] = ACTIONS(1499), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_co_await] = ACTIONS(1455), + [anon_sym_new] = ACTIONS(1457), + [anon_sym_requires] = ACTIONS(1459), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + [sym_raw_string_literal] = ACTIONS(1461), }, [339] = { - [sym__expression] = STATE(2662), - [sym_conditional_expression] = STATE(2765), - [sym_assignment_expression] = STATE(2765), - [sym_pointer_expression] = STATE(2827), - [sym_unary_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_update_expression] = STATE(2765), - [sym_cast_expression] = STATE(2765), - [sym_sizeof_expression] = STATE(2765), - [sym_subscript_expression] = STATE(2827), - [sym_call_expression] = STATE(2827), - [sym_field_expression] = STATE(2827), - [sym_compound_literal_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2827), - [sym_initializer_list] = STATE(2822), - [sym_char_literal] = STATE(2674), - [sym_concatenated_string] = STATE(2674), - [sym_string_literal] = STATE(2093), - [sym__class_name] = STATE(6297), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2765), - [sym_co_await_expression] = STATE(2765), - [sym_new_expression] = STATE(2765), - [sym_delete_expression] = STATE(2765), - [sym_requires_clause] = STATE(2765), - [sym_requires_expression] = STATE(2765), - [sym_lambda_expression] = STATE(2765), - [sym_lambda_capture_specifier] = STATE(4512), - [sym_fold_expression] = STATE(2765), - [sym_parameter_pack_expansion] = STATE(2765), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4648), - [sym_qualified_identifier] = STATE(2827), - [sym_qualified_type_identifier] = STATE(6297), - [sym_user_defined_literal] = STATE(2765), - [sym_identifier] = ACTIONS(2363), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2308), - [anon_sym_COMMA] = ACTIONS(2308), - [anon_sym_RPAREN] = ACTIONS(2308), - [anon_sym_LPAREN2] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1419), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(2365), - [anon_sym_SLASH] = ACTIONS(2316), - [anon_sym_PERCENT] = ACTIONS(2316), - [anon_sym_PIPE_PIPE] = ACTIONS(2308), - [anon_sym_AMP_AMP] = ACTIONS(2308), - [anon_sym_PIPE] = ACTIONS(2316), - [anon_sym_CARET] = ACTIONS(2316), - [anon_sym_AMP] = ACTIONS(2365), - [anon_sym_EQ_EQ] = ACTIONS(2308), - [anon_sym_BANG_EQ] = ACTIONS(2308), - [anon_sym_GT] = ACTIONS(2316), - [anon_sym_GT_EQ] = ACTIONS(2308), - [anon_sym_LT_EQ] = ACTIONS(2316), - [anon_sym_LT] = ACTIONS(2316), - [anon_sym_LT_LT] = ACTIONS(2316), - [anon_sym_GT_GT] = ACTIONS(2316), - [anon_sym_COLON_COLON] = ACTIONS(1423), - [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_LBRACK] = ACTIONS(2272), - [anon_sym_EQ] = ACTIONS(2316), - [sym_primitive_type] = ACTIONS(2369), - [anon_sym_QMARK] = ACTIONS(2308), - [anon_sym_STAR_EQ] = ACTIONS(2308), - [anon_sym_SLASH_EQ] = ACTIONS(2308), - [anon_sym_PERCENT_EQ] = ACTIONS(2308), - [anon_sym_PLUS_EQ] = ACTIONS(2308), - [anon_sym_DASH_EQ] = ACTIONS(2308), - [anon_sym_LT_LT_EQ] = ACTIONS(2308), - [anon_sym_GT_GT_EQ] = ACTIONS(2308), - [anon_sym_AMP_EQ] = ACTIONS(2308), - [anon_sym_CARET_EQ] = ACTIONS(2308), - [anon_sym_PIPE_EQ] = ACTIONS(2308), - [anon_sym_LT_EQ_GT] = ACTIONS(2308), - [anon_sym_DASH_DASH] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [anon_sym_sizeof] = ACTIONS(1437), - [anon_sym_DOT] = ACTIONS(2316), - [anon_sym_DASH_GT] = ACTIONS(2316), - [sym_number_literal] = ACTIONS(1439), - [anon_sym_L_SQUOTE] = ACTIONS(1441), - [anon_sym_u_SQUOTE] = ACTIONS(1441), - [anon_sym_U_SQUOTE] = ACTIONS(1441), - [anon_sym_u8_SQUOTE] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1441), - [anon_sym_L_DQUOTE] = ACTIONS(1443), - [anon_sym_u_DQUOTE] = ACTIONS(1443), - [anon_sym_U_DQUOTE] = ACTIONS(1443), - [anon_sym_u8_DQUOTE] = ACTIONS(1443), - [anon_sym_DQUOTE] = ACTIONS(1443), - [sym_true] = ACTIONS(1445), - [sym_false] = ACTIONS(1445), - [sym_null] = ACTIONS(1445), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_co_await] = ACTIONS(1451), - [anon_sym_new] = ACTIONS(1453), - [anon_sym_requires] = ACTIONS(1455), - [anon_sym_DOT_STAR] = ACTIONS(2308), - [anon_sym_DASH_GT_STAR] = ACTIONS(2308), - [sym_this] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(1445), - [sym_raw_string_literal] = ACTIONS(1457), + [sym_identifier] = ACTIONS(2462), + [aux_sym_preproc_include_token1] = ACTIONS(2462), + [aux_sym_preproc_def_token1] = ACTIONS(2462), + [aux_sym_preproc_if_token1] = ACTIONS(2462), + [aux_sym_preproc_if_token2] = ACTIONS(2462), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2462), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2462), + [aux_sym_preproc_else_token1] = ACTIONS(2462), + [aux_sym_preproc_elif_token1] = ACTIONS(2462), + [sym_preproc_directive] = ACTIONS(2462), + [anon_sym_LPAREN2] = ACTIONS(2464), + [anon_sym_BANG] = ACTIONS(2464), + [anon_sym_TILDE] = ACTIONS(2464), + [anon_sym_DASH] = ACTIONS(2462), + [anon_sym_PLUS] = ACTIONS(2462), + [anon_sym_STAR] = ACTIONS(2464), + [anon_sym_AMP_AMP] = ACTIONS(2464), + [anon_sym_AMP] = ACTIONS(2462), + [anon_sym_SEMI] = ACTIONS(2464), + [anon_sym_typedef] = ACTIONS(2462), + [anon_sym_extern] = ACTIONS(2462), + [anon_sym___attribute__] = ACTIONS(2462), + [anon_sym_COLON_COLON] = ACTIONS(2464), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), + [anon_sym___declspec] = ACTIONS(2462), + [anon_sym___based] = ACTIONS(2462), + [anon_sym___cdecl] = ACTIONS(2462), + [anon_sym___clrcall] = ACTIONS(2462), + [anon_sym___stdcall] = ACTIONS(2462), + [anon_sym___fastcall] = ACTIONS(2462), + [anon_sym___thiscall] = ACTIONS(2462), + [anon_sym___vectorcall] = ACTIONS(2462), + [anon_sym_LBRACE] = ACTIONS(2464), + [anon_sym_LBRACK] = ACTIONS(2462), + [anon_sym_static] = ACTIONS(2462), + [anon_sym_register] = ACTIONS(2462), + [anon_sym_inline] = ACTIONS(2462), + [anon_sym_thread_local] = ACTIONS(2462), + [anon_sym_const] = ACTIONS(2462), + [anon_sym_volatile] = ACTIONS(2462), + [anon_sym_restrict] = ACTIONS(2462), + [anon_sym__Atomic] = ACTIONS(2462), + [anon_sym_mutable] = ACTIONS(2462), + [anon_sym_constexpr] = ACTIONS(2462), + [anon_sym_constinit] = ACTIONS(2462), + [anon_sym_consteval] = ACTIONS(2462), + [anon_sym_signed] = ACTIONS(2462), + [anon_sym_unsigned] = ACTIONS(2462), + [anon_sym_long] = ACTIONS(2462), + [anon_sym_short] = ACTIONS(2462), + [sym_primitive_type] = ACTIONS(2462), + [anon_sym_enum] = ACTIONS(2462), + [anon_sym_class] = ACTIONS(2462), + [anon_sym_struct] = ACTIONS(2462), + [anon_sym_union] = ACTIONS(2462), + [anon_sym_if] = ACTIONS(2462), + [anon_sym_else] = ACTIONS(2462), + [anon_sym_switch] = ACTIONS(2462), + [anon_sym_case] = ACTIONS(2462), + [anon_sym_default] = ACTIONS(2462), + [anon_sym_while] = ACTIONS(2462), + [anon_sym_do] = ACTIONS(2462), + [anon_sym_for] = ACTIONS(2462), + [anon_sym_return] = ACTIONS(2462), + [anon_sym_break] = ACTIONS(2462), + [anon_sym_continue] = ACTIONS(2462), + [anon_sym_goto] = ACTIONS(2462), + [anon_sym_not] = ACTIONS(2462), + [anon_sym_compl] = ACTIONS(2462), + [anon_sym_DASH_DASH] = ACTIONS(2464), + [anon_sym_PLUS_PLUS] = ACTIONS(2464), + [anon_sym_sizeof] = ACTIONS(2462), + [sym_number_literal] = ACTIONS(2464), + [anon_sym_L_SQUOTE] = ACTIONS(2464), + [anon_sym_u_SQUOTE] = ACTIONS(2464), + [anon_sym_U_SQUOTE] = ACTIONS(2464), + [anon_sym_u8_SQUOTE] = ACTIONS(2464), + [anon_sym_SQUOTE] = ACTIONS(2464), + [anon_sym_L_DQUOTE] = ACTIONS(2464), + [anon_sym_u_DQUOTE] = ACTIONS(2464), + [anon_sym_U_DQUOTE] = ACTIONS(2464), + [anon_sym_u8_DQUOTE] = ACTIONS(2464), + [anon_sym_DQUOTE] = ACTIONS(2464), + [sym_true] = ACTIONS(2462), + [sym_false] = ACTIONS(2462), + [sym_null] = ACTIONS(2462), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2462), + [anon_sym_decltype] = ACTIONS(2462), + [anon_sym_virtual] = ACTIONS(2462), + [anon_sym_explicit] = ACTIONS(2462), + [anon_sym_typename] = ACTIONS(2462), + [anon_sym_template] = ACTIONS(2462), + [anon_sym_operator] = ACTIONS(2462), + [anon_sym_try] = ACTIONS(2462), + [anon_sym_delete] = ACTIONS(2462), + [anon_sym_throw] = ACTIONS(2462), + [anon_sym_namespace] = ACTIONS(2462), + [anon_sym_using] = ACTIONS(2462), + [anon_sym_static_assert] = ACTIONS(2462), + [anon_sym_concept] = ACTIONS(2462), + [anon_sym_co_return] = ACTIONS(2462), + [anon_sym_co_yield] = ACTIONS(2462), + [anon_sym_catch] = ACTIONS(2462), + [anon_sym_co_await] = ACTIONS(2462), + [anon_sym_new] = ACTIONS(2462), + [anon_sym_requires] = ACTIONS(2462), + [sym_this] = ACTIONS(2462), + [sym_nullptr] = ACTIONS(2462), + [sym_raw_string_literal] = ACTIONS(2464), }, [340] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token2] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [aux_sym_preproc_else_token1] = ACTIONS(2347), - [aux_sym_preproc_elif_token1] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), + [sym_catch_clause] = STATE(340), + [aux_sym_constructor_try_statement_repeat1] = STATE(340), + [sym_identifier] = ACTIONS(2411), + [aux_sym_preproc_include_token1] = ACTIONS(2411), + [aux_sym_preproc_def_token1] = ACTIONS(2411), + [aux_sym_preproc_if_token1] = ACTIONS(2411), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2411), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2411), + [sym_preproc_directive] = ACTIONS(2411), + [anon_sym_LPAREN2] = ACTIONS(2413), + [anon_sym_BANG] = ACTIONS(2413), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2411), + [anon_sym_PLUS] = ACTIONS(2411), + [anon_sym_STAR] = ACTIONS(2413), + [anon_sym_AMP_AMP] = ACTIONS(2413), + [anon_sym_AMP] = ACTIONS(2411), + [anon_sym_SEMI] = ACTIONS(2413), + [anon_sym_typedef] = ACTIONS(2411), + [anon_sym_extern] = ACTIONS(2411), + [anon_sym___attribute__] = ACTIONS(2411), + [anon_sym_COLON_COLON] = ACTIONS(2413), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2413), + [anon_sym___declspec] = ACTIONS(2411), + [anon_sym___based] = ACTIONS(2411), + [anon_sym___cdecl] = ACTIONS(2411), + [anon_sym___clrcall] = ACTIONS(2411), + [anon_sym___stdcall] = ACTIONS(2411), + [anon_sym___fastcall] = ACTIONS(2411), + [anon_sym___thiscall] = ACTIONS(2411), + [anon_sym___vectorcall] = ACTIONS(2411), + [anon_sym_LBRACE] = ACTIONS(2413), + [anon_sym_RBRACE] = ACTIONS(2413), + [anon_sym_LBRACK] = ACTIONS(2411), + [anon_sym_static] = ACTIONS(2411), + [anon_sym_register] = ACTIONS(2411), + [anon_sym_inline] = ACTIONS(2411), + [anon_sym_thread_local] = ACTIONS(2411), + [anon_sym_const] = ACTIONS(2411), + [anon_sym_volatile] = ACTIONS(2411), + [anon_sym_restrict] = ACTIONS(2411), + [anon_sym__Atomic] = ACTIONS(2411), + [anon_sym_mutable] = ACTIONS(2411), + [anon_sym_constexpr] = ACTIONS(2411), + [anon_sym_constinit] = ACTIONS(2411), + [anon_sym_consteval] = ACTIONS(2411), + [anon_sym_signed] = ACTIONS(2411), + [anon_sym_unsigned] = ACTIONS(2411), + [anon_sym_long] = ACTIONS(2411), + [anon_sym_short] = ACTIONS(2411), + [sym_primitive_type] = ACTIONS(2411), + [anon_sym_enum] = ACTIONS(2411), + [anon_sym_class] = ACTIONS(2411), + [anon_sym_struct] = ACTIONS(2411), + [anon_sym_union] = ACTIONS(2411), + [anon_sym_if] = ACTIONS(2411), + [anon_sym_else] = ACTIONS(2411), + [anon_sym_switch] = ACTIONS(2411), + [anon_sym_case] = ACTIONS(2411), + [anon_sym_default] = ACTIONS(2411), + [anon_sym_while] = ACTIONS(2411), + [anon_sym_do] = ACTIONS(2411), + [anon_sym_for] = ACTIONS(2411), + [anon_sym_return] = ACTIONS(2411), + [anon_sym_break] = ACTIONS(2411), + [anon_sym_continue] = ACTIONS(2411), + [anon_sym_goto] = ACTIONS(2411), + [anon_sym_not] = ACTIONS(2411), + [anon_sym_compl] = ACTIONS(2411), + [anon_sym_DASH_DASH] = ACTIONS(2413), + [anon_sym_PLUS_PLUS] = ACTIONS(2413), + [anon_sym_sizeof] = ACTIONS(2411), + [sym_number_literal] = ACTIONS(2413), + [anon_sym_L_SQUOTE] = ACTIONS(2413), + [anon_sym_u_SQUOTE] = ACTIONS(2413), + [anon_sym_U_SQUOTE] = ACTIONS(2413), + [anon_sym_u8_SQUOTE] = ACTIONS(2413), + [anon_sym_SQUOTE] = ACTIONS(2413), + [anon_sym_L_DQUOTE] = ACTIONS(2413), + [anon_sym_u_DQUOTE] = ACTIONS(2413), + [anon_sym_U_DQUOTE] = ACTIONS(2413), + [anon_sym_u8_DQUOTE] = ACTIONS(2413), + [anon_sym_DQUOTE] = ACTIONS(2413), + [sym_true] = ACTIONS(2411), + [sym_false] = ACTIONS(2411), + [sym_null] = ACTIONS(2411), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2411), + [anon_sym_decltype] = ACTIONS(2411), + [anon_sym_virtual] = ACTIONS(2411), + [anon_sym_explicit] = ACTIONS(2411), + [anon_sym_typename] = ACTIONS(2411), + [anon_sym_template] = ACTIONS(2411), + [anon_sym_operator] = ACTIONS(2411), + [anon_sym_try] = ACTIONS(2411), + [anon_sym_delete] = ACTIONS(2411), + [anon_sym_throw] = ACTIONS(2411), + [anon_sym_namespace] = ACTIONS(2411), + [anon_sym_using] = ACTIONS(2411), + [anon_sym_static_assert] = ACTIONS(2411), + [anon_sym_concept] = ACTIONS(2411), + [anon_sym_co_return] = ACTIONS(2411), + [anon_sym_co_yield] = ACTIONS(2411), + [anon_sym_catch] = ACTIONS(2466), + [anon_sym_co_await] = ACTIONS(2411), + [anon_sym_new] = ACTIONS(2411), + [anon_sym_requires] = ACTIONS(2411), + [sym_this] = ACTIONS(2411), + [sym_nullptr] = ACTIONS(2411), + [sym_raw_string_literal] = ACTIONS(2413), }, [341] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token2] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [aux_sym_preproc_else_token1] = ACTIONS(2347), - [aux_sym_preproc_elif_token1] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), + [sym_catch_clause] = STATE(341), + [aux_sym_constructor_try_statement_repeat1] = STATE(341), + [ts_builtin_sym_end] = ACTIONS(2413), + [sym_identifier] = ACTIONS(2411), + [aux_sym_preproc_include_token1] = ACTIONS(2411), + [aux_sym_preproc_def_token1] = ACTIONS(2411), + [aux_sym_preproc_if_token1] = ACTIONS(2411), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2411), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2411), + [sym_preproc_directive] = ACTIONS(2411), + [anon_sym_LPAREN2] = ACTIONS(2413), + [anon_sym_BANG] = ACTIONS(2413), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2411), + [anon_sym_PLUS] = ACTIONS(2411), + [anon_sym_STAR] = ACTIONS(2413), + [anon_sym_AMP_AMP] = ACTIONS(2413), + [anon_sym_AMP] = ACTIONS(2411), + [anon_sym_SEMI] = ACTIONS(2413), + [anon_sym_typedef] = ACTIONS(2411), + [anon_sym_extern] = ACTIONS(2411), + [anon_sym___attribute__] = ACTIONS(2411), + [anon_sym_COLON_COLON] = ACTIONS(2413), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2413), + [anon_sym___declspec] = ACTIONS(2411), + [anon_sym___based] = ACTIONS(2411), + [anon_sym___cdecl] = ACTIONS(2411), + [anon_sym___clrcall] = ACTIONS(2411), + [anon_sym___stdcall] = ACTIONS(2411), + [anon_sym___fastcall] = ACTIONS(2411), + [anon_sym___thiscall] = ACTIONS(2411), + [anon_sym___vectorcall] = ACTIONS(2411), + [anon_sym_LBRACE] = ACTIONS(2413), + [anon_sym_LBRACK] = ACTIONS(2411), + [anon_sym_static] = ACTIONS(2411), + [anon_sym_register] = ACTIONS(2411), + [anon_sym_inline] = ACTIONS(2411), + [anon_sym_thread_local] = ACTIONS(2411), + [anon_sym_const] = ACTIONS(2411), + [anon_sym_volatile] = ACTIONS(2411), + [anon_sym_restrict] = ACTIONS(2411), + [anon_sym__Atomic] = ACTIONS(2411), + [anon_sym_mutable] = ACTIONS(2411), + [anon_sym_constexpr] = ACTIONS(2411), + [anon_sym_constinit] = ACTIONS(2411), + [anon_sym_consteval] = ACTIONS(2411), + [anon_sym_signed] = ACTIONS(2411), + [anon_sym_unsigned] = ACTIONS(2411), + [anon_sym_long] = ACTIONS(2411), + [anon_sym_short] = ACTIONS(2411), + [sym_primitive_type] = ACTIONS(2411), + [anon_sym_enum] = ACTIONS(2411), + [anon_sym_class] = ACTIONS(2411), + [anon_sym_struct] = ACTIONS(2411), + [anon_sym_union] = ACTIONS(2411), + [anon_sym_if] = ACTIONS(2411), + [anon_sym_else] = ACTIONS(2411), + [anon_sym_switch] = ACTIONS(2411), + [anon_sym_case] = ACTIONS(2411), + [anon_sym_default] = ACTIONS(2411), + [anon_sym_while] = ACTIONS(2411), + [anon_sym_do] = ACTIONS(2411), + [anon_sym_for] = ACTIONS(2411), + [anon_sym_return] = ACTIONS(2411), + [anon_sym_break] = ACTIONS(2411), + [anon_sym_continue] = ACTIONS(2411), + [anon_sym_goto] = ACTIONS(2411), + [anon_sym_not] = ACTIONS(2411), + [anon_sym_compl] = ACTIONS(2411), + [anon_sym_DASH_DASH] = ACTIONS(2413), + [anon_sym_PLUS_PLUS] = ACTIONS(2413), + [anon_sym_sizeof] = ACTIONS(2411), + [sym_number_literal] = ACTIONS(2413), + [anon_sym_L_SQUOTE] = ACTIONS(2413), + [anon_sym_u_SQUOTE] = ACTIONS(2413), + [anon_sym_U_SQUOTE] = ACTIONS(2413), + [anon_sym_u8_SQUOTE] = ACTIONS(2413), + [anon_sym_SQUOTE] = ACTIONS(2413), + [anon_sym_L_DQUOTE] = ACTIONS(2413), + [anon_sym_u_DQUOTE] = ACTIONS(2413), + [anon_sym_U_DQUOTE] = ACTIONS(2413), + [anon_sym_u8_DQUOTE] = ACTIONS(2413), + [anon_sym_DQUOTE] = ACTIONS(2413), + [sym_true] = ACTIONS(2411), + [sym_false] = ACTIONS(2411), + [sym_null] = ACTIONS(2411), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2411), + [anon_sym_decltype] = ACTIONS(2411), + [anon_sym_virtual] = ACTIONS(2411), + [anon_sym_explicit] = ACTIONS(2411), + [anon_sym_typename] = ACTIONS(2411), + [anon_sym_template] = ACTIONS(2411), + [anon_sym_operator] = ACTIONS(2411), + [anon_sym_try] = ACTIONS(2411), + [anon_sym_delete] = ACTIONS(2411), + [anon_sym_throw] = ACTIONS(2411), + [anon_sym_namespace] = ACTIONS(2411), + [anon_sym_using] = ACTIONS(2411), + [anon_sym_static_assert] = ACTIONS(2411), + [anon_sym_concept] = ACTIONS(2411), + [anon_sym_co_return] = ACTIONS(2411), + [anon_sym_co_yield] = ACTIONS(2411), + [anon_sym_catch] = ACTIONS(2469), + [anon_sym_co_await] = ACTIONS(2411), + [anon_sym_new] = ACTIONS(2411), + [anon_sym_requires] = ACTIONS(2411), + [sym_this] = ACTIONS(2411), + [sym_nullptr] = ACTIONS(2411), + [sym_raw_string_literal] = ACTIONS(2413), }, [342] = { - [sym_identifier] = ACTIONS(2371), - [aux_sym_preproc_include_token1] = ACTIONS(2371), - [aux_sym_preproc_def_token1] = ACTIONS(2371), - [aux_sym_preproc_if_token1] = ACTIONS(2371), - [aux_sym_preproc_if_token2] = ACTIONS(2371), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2371), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2371), - [aux_sym_preproc_else_token1] = ACTIONS(2371), - [aux_sym_preproc_elif_token1] = ACTIONS(2371), - [sym_preproc_directive] = ACTIONS(2371), - [anon_sym_LPAREN2] = ACTIONS(2373), - [anon_sym_BANG] = ACTIONS(2373), - [anon_sym_TILDE] = ACTIONS(2373), - [anon_sym_DASH] = ACTIONS(2371), - [anon_sym_PLUS] = ACTIONS(2371), - [anon_sym_STAR] = ACTIONS(2373), - [anon_sym_AMP_AMP] = ACTIONS(2373), - [anon_sym_AMP] = ACTIONS(2371), - [anon_sym_SEMI] = ACTIONS(2373), - [anon_sym_typedef] = ACTIONS(2371), - [anon_sym_extern] = ACTIONS(2371), - [anon_sym___attribute__] = ACTIONS(2371), - [anon_sym_COLON_COLON] = ACTIONS(2373), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2373), - [anon_sym___declspec] = ACTIONS(2371), - [anon_sym___based] = ACTIONS(2371), - [anon_sym___cdecl] = ACTIONS(2371), - [anon_sym___clrcall] = ACTIONS(2371), - [anon_sym___stdcall] = ACTIONS(2371), - [anon_sym___fastcall] = ACTIONS(2371), - [anon_sym___thiscall] = ACTIONS(2371), - [anon_sym___vectorcall] = ACTIONS(2371), - [anon_sym_LBRACE] = ACTIONS(2373), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_static] = ACTIONS(2371), - [anon_sym_register] = ACTIONS(2371), - [anon_sym_inline] = ACTIONS(2371), - [anon_sym_thread_local] = ACTIONS(2371), - [anon_sym_const] = ACTIONS(2371), - [anon_sym_volatile] = ACTIONS(2371), - [anon_sym_restrict] = ACTIONS(2371), - [anon_sym__Atomic] = ACTIONS(2371), - [anon_sym_mutable] = ACTIONS(2371), - [anon_sym_constexpr] = ACTIONS(2371), - [anon_sym_constinit] = ACTIONS(2371), - [anon_sym_consteval] = ACTIONS(2371), - [anon_sym_signed] = ACTIONS(2371), - [anon_sym_unsigned] = ACTIONS(2371), - [anon_sym_long] = ACTIONS(2371), - [anon_sym_short] = ACTIONS(2371), - [sym_primitive_type] = ACTIONS(2371), - [anon_sym_enum] = ACTIONS(2371), - [anon_sym_class] = ACTIONS(2371), - [anon_sym_struct] = ACTIONS(2371), - [anon_sym_union] = ACTIONS(2371), - [anon_sym_if] = ACTIONS(2371), - [anon_sym_else] = ACTIONS(2371), - [anon_sym_switch] = ACTIONS(2371), - [anon_sym_case] = ACTIONS(2371), - [anon_sym_default] = ACTIONS(2371), - [anon_sym_while] = ACTIONS(2371), - [anon_sym_do] = ACTIONS(2371), - [anon_sym_for] = ACTIONS(2371), - [anon_sym_return] = ACTIONS(2371), - [anon_sym_break] = ACTIONS(2371), - [anon_sym_continue] = ACTIONS(2371), - [anon_sym_goto] = ACTIONS(2371), - [anon_sym_DASH_DASH] = ACTIONS(2373), - [anon_sym_PLUS_PLUS] = ACTIONS(2373), - [anon_sym_sizeof] = ACTIONS(2371), - [sym_number_literal] = ACTIONS(2373), - [anon_sym_L_SQUOTE] = ACTIONS(2373), - [anon_sym_u_SQUOTE] = ACTIONS(2373), - [anon_sym_U_SQUOTE] = ACTIONS(2373), - [anon_sym_u8_SQUOTE] = ACTIONS(2373), - [anon_sym_SQUOTE] = ACTIONS(2373), - [anon_sym_L_DQUOTE] = ACTIONS(2373), - [anon_sym_u_DQUOTE] = ACTIONS(2373), - [anon_sym_U_DQUOTE] = ACTIONS(2373), - [anon_sym_u8_DQUOTE] = ACTIONS(2373), - [anon_sym_DQUOTE] = ACTIONS(2373), - [sym_true] = ACTIONS(2371), - [sym_false] = ACTIONS(2371), - [sym_null] = ACTIONS(2371), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2371), - [anon_sym_decltype] = ACTIONS(2371), - [anon_sym_virtual] = ACTIONS(2371), - [anon_sym_explicit] = ACTIONS(2371), - [anon_sym_typename] = ACTIONS(2371), - [anon_sym_template] = ACTIONS(2371), - [anon_sym_operator] = ACTIONS(2371), - [anon_sym_try] = ACTIONS(2371), - [anon_sym_delete] = ACTIONS(2371), - [anon_sym_throw] = ACTIONS(2371), - [anon_sym_namespace] = ACTIONS(2371), - [anon_sym_using] = ACTIONS(2371), - [anon_sym_static_assert] = ACTIONS(2371), - [anon_sym_concept] = ACTIONS(2371), - [anon_sym_co_return] = ACTIONS(2371), - [anon_sym_co_yield] = ACTIONS(2371), - [anon_sym_co_await] = ACTIONS(2371), - [anon_sym_new] = ACTIONS(2371), - [anon_sym_requires] = ACTIONS(2371), - [sym_this] = ACTIONS(2371), - [sym_nullptr] = ACTIONS(2371), - [sym_raw_string_literal] = ACTIONS(2373), + [sym_catch_clause] = STATE(340), + [aux_sym_constructor_try_statement_repeat1] = STATE(340), + [sym_identifier] = ACTIONS(2405), + [aux_sym_preproc_include_token1] = ACTIONS(2405), + [aux_sym_preproc_def_token1] = ACTIONS(2405), + [aux_sym_preproc_if_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), + [sym_preproc_directive] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP_AMP] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2405), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym___based] = ACTIONS(2405), + [anon_sym___cdecl] = ACTIONS(2405), + [anon_sym___clrcall] = ACTIONS(2405), + [anon_sym___stdcall] = ACTIONS(2405), + [anon_sym___fastcall] = ACTIONS(2405), + [anon_sym___thiscall] = ACTIONS(2405), + [anon_sym___vectorcall] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_RBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_case] = ACTIONS(2405), + [anon_sym_default] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_explicit] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_operator] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_static_assert] = ACTIONS(2405), + [anon_sym_concept] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_catch] = ACTIONS(2472), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + [sym_raw_string_literal] = ACTIONS(2407), }, [343] = { - [sym_identifier] = ACTIONS(2375), - [aux_sym_preproc_include_token1] = ACTIONS(2375), - [aux_sym_preproc_def_token1] = ACTIONS(2375), - [aux_sym_preproc_if_token1] = ACTIONS(2375), - [aux_sym_preproc_if_token2] = ACTIONS(2375), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2375), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2375), - [aux_sym_preproc_else_token1] = ACTIONS(2375), - [aux_sym_preproc_elif_token1] = ACTIONS(2375), - [sym_preproc_directive] = ACTIONS(2375), - [anon_sym_LPAREN2] = ACTIONS(2377), - [anon_sym_BANG] = ACTIONS(2377), - [anon_sym_TILDE] = ACTIONS(2377), - [anon_sym_DASH] = ACTIONS(2375), - [anon_sym_PLUS] = ACTIONS(2375), - [anon_sym_STAR] = ACTIONS(2377), - [anon_sym_AMP_AMP] = ACTIONS(2377), - [anon_sym_AMP] = ACTIONS(2375), - [anon_sym_SEMI] = ACTIONS(2377), - [anon_sym_typedef] = ACTIONS(2375), - [anon_sym_extern] = ACTIONS(2375), - [anon_sym___attribute__] = ACTIONS(2375), - [anon_sym_COLON_COLON] = ACTIONS(2377), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2377), - [anon_sym___declspec] = ACTIONS(2375), - [anon_sym___based] = ACTIONS(2375), - [anon_sym___cdecl] = ACTIONS(2375), - [anon_sym___clrcall] = ACTIONS(2375), - [anon_sym___stdcall] = ACTIONS(2375), - [anon_sym___fastcall] = ACTIONS(2375), - [anon_sym___thiscall] = ACTIONS(2375), - [anon_sym___vectorcall] = ACTIONS(2375), - [anon_sym_LBRACE] = ACTIONS(2377), - [anon_sym_LBRACK] = ACTIONS(2375), - [anon_sym_static] = ACTIONS(2375), - [anon_sym_register] = ACTIONS(2375), - [anon_sym_inline] = ACTIONS(2375), - [anon_sym_thread_local] = ACTIONS(2375), - [anon_sym_const] = ACTIONS(2375), - [anon_sym_volatile] = ACTIONS(2375), - [anon_sym_restrict] = ACTIONS(2375), - [anon_sym__Atomic] = ACTIONS(2375), - [anon_sym_mutable] = ACTIONS(2375), - [anon_sym_constexpr] = ACTIONS(2375), - [anon_sym_constinit] = ACTIONS(2375), - [anon_sym_consteval] = ACTIONS(2375), - [anon_sym_signed] = ACTIONS(2375), - [anon_sym_unsigned] = ACTIONS(2375), - [anon_sym_long] = ACTIONS(2375), - [anon_sym_short] = ACTIONS(2375), - [sym_primitive_type] = ACTIONS(2375), - [anon_sym_enum] = ACTIONS(2375), - [anon_sym_class] = ACTIONS(2375), - [anon_sym_struct] = ACTIONS(2375), - [anon_sym_union] = ACTIONS(2375), - [anon_sym_if] = ACTIONS(2375), - [anon_sym_else] = ACTIONS(2375), - [anon_sym_switch] = ACTIONS(2375), - [anon_sym_case] = ACTIONS(2375), - [anon_sym_default] = ACTIONS(2375), - [anon_sym_while] = ACTIONS(2375), - [anon_sym_do] = ACTIONS(2375), - [anon_sym_for] = ACTIONS(2375), - [anon_sym_return] = ACTIONS(2375), - [anon_sym_break] = ACTIONS(2375), - [anon_sym_continue] = ACTIONS(2375), - [anon_sym_goto] = ACTIONS(2375), - [anon_sym_DASH_DASH] = ACTIONS(2377), - [anon_sym_PLUS_PLUS] = ACTIONS(2377), - [anon_sym_sizeof] = ACTIONS(2375), - [sym_number_literal] = ACTIONS(2377), - [anon_sym_L_SQUOTE] = ACTIONS(2377), - [anon_sym_u_SQUOTE] = ACTIONS(2377), - [anon_sym_U_SQUOTE] = ACTIONS(2377), - [anon_sym_u8_SQUOTE] = ACTIONS(2377), - [anon_sym_SQUOTE] = ACTIONS(2377), - [anon_sym_L_DQUOTE] = ACTIONS(2377), - [anon_sym_u_DQUOTE] = ACTIONS(2377), - [anon_sym_U_DQUOTE] = ACTIONS(2377), - [anon_sym_u8_DQUOTE] = ACTIONS(2377), - [anon_sym_DQUOTE] = ACTIONS(2377), - [sym_true] = ACTIONS(2375), - [sym_false] = ACTIONS(2375), - [sym_null] = ACTIONS(2375), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2375), - [anon_sym_decltype] = ACTIONS(2375), - [anon_sym_virtual] = ACTIONS(2375), - [anon_sym_explicit] = ACTIONS(2375), - [anon_sym_typename] = ACTIONS(2375), - [anon_sym_template] = ACTIONS(2375), - [anon_sym_operator] = ACTIONS(2375), - [anon_sym_try] = ACTIONS(2375), - [anon_sym_delete] = ACTIONS(2375), - [anon_sym_throw] = ACTIONS(2375), - [anon_sym_namespace] = ACTIONS(2375), - [anon_sym_using] = ACTIONS(2375), - [anon_sym_static_assert] = ACTIONS(2375), - [anon_sym_concept] = ACTIONS(2375), - [anon_sym_co_return] = ACTIONS(2375), - [anon_sym_co_yield] = ACTIONS(2375), - [anon_sym_co_await] = ACTIONS(2375), - [anon_sym_new] = ACTIONS(2375), - [anon_sym_requires] = ACTIONS(2375), - [sym_this] = ACTIONS(2375), - [sym_nullptr] = ACTIONS(2375), - [sym_raw_string_literal] = ACTIONS(2377), - }, - [344] = { - [sym_catch_clause] = STATE(328), - [aux_sym_constructor_try_statement_repeat1] = STATE(328), - [sym_identifier] = ACTIONS(2278), - [aux_sym_preproc_include_token1] = ACTIONS(2278), - [aux_sym_preproc_def_token1] = ACTIONS(2278), - [aux_sym_preproc_if_token1] = ACTIONS(2278), - [aux_sym_preproc_if_token2] = ACTIONS(2278), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2278), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2278), - [sym_preproc_directive] = ACTIONS(2278), - [anon_sym_LPAREN2] = ACTIONS(2280), - [anon_sym_BANG] = ACTIONS(2280), - [anon_sym_TILDE] = ACTIONS(2280), - [anon_sym_DASH] = ACTIONS(2278), - [anon_sym_PLUS] = ACTIONS(2278), - [anon_sym_STAR] = ACTIONS(2280), - [anon_sym_AMP_AMP] = ACTIONS(2280), - [anon_sym_AMP] = ACTIONS(2278), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_typedef] = ACTIONS(2278), - [anon_sym_extern] = ACTIONS(2278), - [anon_sym___attribute__] = ACTIONS(2278), - [anon_sym_COLON_COLON] = ACTIONS(2280), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2280), - [anon_sym___declspec] = ACTIONS(2278), - [anon_sym___based] = ACTIONS(2278), - [anon_sym___cdecl] = ACTIONS(2278), - [anon_sym___clrcall] = ACTIONS(2278), - [anon_sym___stdcall] = ACTIONS(2278), - [anon_sym___fastcall] = ACTIONS(2278), - [anon_sym___thiscall] = ACTIONS(2278), - [anon_sym___vectorcall] = ACTIONS(2278), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_LBRACK] = ACTIONS(2278), - [anon_sym_static] = ACTIONS(2278), - [anon_sym_register] = ACTIONS(2278), - [anon_sym_inline] = ACTIONS(2278), - [anon_sym_thread_local] = ACTIONS(2278), - [anon_sym_const] = ACTIONS(2278), - [anon_sym_volatile] = ACTIONS(2278), - [anon_sym_restrict] = ACTIONS(2278), - [anon_sym__Atomic] = ACTIONS(2278), - [anon_sym_mutable] = ACTIONS(2278), - [anon_sym_constexpr] = ACTIONS(2278), - [anon_sym_constinit] = ACTIONS(2278), - [anon_sym_consteval] = ACTIONS(2278), - [anon_sym_signed] = ACTIONS(2278), - [anon_sym_unsigned] = ACTIONS(2278), - [anon_sym_long] = ACTIONS(2278), - [anon_sym_short] = ACTIONS(2278), - [sym_primitive_type] = ACTIONS(2278), - [anon_sym_enum] = ACTIONS(2278), - [anon_sym_class] = ACTIONS(2278), - [anon_sym_struct] = ACTIONS(2278), - [anon_sym_union] = ACTIONS(2278), - [anon_sym_if] = ACTIONS(2278), - [anon_sym_switch] = ACTIONS(2278), - [anon_sym_case] = ACTIONS(2278), - [anon_sym_default] = ACTIONS(2278), - [anon_sym_while] = ACTIONS(2278), - [anon_sym_do] = ACTIONS(2278), - [anon_sym_for] = ACTIONS(2278), - [anon_sym_return] = ACTIONS(2278), - [anon_sym_break] = ACTIONS(2278), - [anon_sym_continue] = ACTIONS(2278), - [anon_sym_goto] = ACTIONS(2278), - [anon_sym_DASH_DASH] = ACTIONS(2280), - [anon_sym_PLUS_PLUS] = ACTIONS(2280), - [anon_sym_sizeof] = ACTIONS(2278), - [sym_number_literal] = ACTIONS(2280), - [anon_sym_L_SQUOTE] = ACTIONS(2280), - [anon_sym_u_SQUOTE] = ACTIONS(2280), - [anon_sym_U_SQUOTE] = ACTIONS(2280), - [anon_sym_u8_SQUOTE] = ACTIONS(2280), - [anon_sym_SQUOTE] = ACTIONS(2280), - [anon_sym_L_DQUOTE] = ACTIONS(2280), - [anon_sym_u_DQUOTE] = ACTIONS(2280), - [anon_sym_U_DQUOTE] = ACTIONS(2280), - [anon_sym_u8_DQUOTE] = ACTIONS(2280), - [anon_sym_DQUOTE] = ACTIONS(2280), - [sym_true] = ACTIONS(2278), - [sym_false] = ACTIONS(2278), - [sym_null] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2278), - [anon_sym_decltype] = ACTIONS(2278), - [anon_sym_virtual] = ACTIONS(2278), - [anon_sym_explicit] = ACTIONS(2278), - [anon_sym_typename] = ACTIONS(2278), - [anon_sym_template] = ACTIONS(2278), - [anon_sym_operator] = ACTIONS(2278), - [anon_sym_try] = ACTIONS(2278), - [anon_sym_delete] = ACTIONS(2278), - [anon_sym_throw] = ACTIONS(2278), - [anon_sym_namespace] = ACTIONS(2278), - [anon_sym_using] = ACTIONS(2278), - [anon_sym_static_assert] = ACTIONS(2278), - [anon_sym_concept] = ACTIONS(2278), - [anon_sym_co_return] = ACTIONS(2278), - [anon_sym_co_yield] = ACTIONS(2278), - [anon_sym_catch] = ACTIONS(2285), - [anon_sym_co_await] = ACTIONS(2278), - [anon_sym_new] = ACTIONS(2278), - [anon_sym_requires] = ACTIONS(2278), - [sym_this] = ACTIONS(2278), - [sym_nullptr] = ACTIONS(2278), - [sym_raw_string_literal] = ACTIONS(2280), - }, - [345] = { - [sym_identifier] = ACTIONS(2379), - [aux_sym_preproc_include_token1] = ACTIONS(2379), - [aux_sym_preproc_def_token1] = ACTIONS(2379), - [aux_sym_preproc_if_token1] = ACTIONS(2379), - [aux_sym_preproc_if_token2] = ACTIONS(2379), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2379), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2379), - [aux_sym_preproc_else_token1] = ACTIONS(2379), - [aux_sym_preproc_elif_token1] = ACTIONS(2379), - [sym_preproc_directive] = ACTIONS(2379), - [anon_sym_LPAREN2] = ACTIONS(2381), - [anon_sym_BANG] = ACTIONS(2381), - [anon_sym_TILDE] = ACTIONS(2381), - [anon_sym_DASH] = ACTIONS(2379), - [anon_sym_PLUS] = ACTIONS(2379), - [anon_sym_STAR] = ACTIONS(2381), - [anon_sym_AMP_AMP] = ACTIONS(2381), - [anon_sym_AMP] = ACTIONS(2379), - [anon_sym_SEMI] = ACTIONS(2381), - [anon_sym_typedef] = ACTIONS(2379), - [anon_sym_extern] = ACTIONS(2379), - [anon_sym___attribute__] = ACTIONS(2379), - [anon_sym_COLON_COLON] = ACTIONS(2381), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2381), - [anon_sym___declspec] = ACTIONS(2379), - [anon_sym___based] = ACTIONS(2379), - [anon_sym___cdecl] = ACTIONS(2379), - [anon_sym___clrcall] = ACTIONS(2379), - [anon_sym___stdcall] = ACTIONS(2379), - [anon_sym___fastcall] = ACTIONS(2379), - [anon_sym___thiscall] = ACTIONS(2379), - [anon_sym___vectorcall] = ACTIONS(2379), - [anon_sym_LBRACE] = ACTIONS(2381), - [anon_sym_LBRACK] = ACTIONS(2379), - [anon_sym_static] = ACTIONS(2379), - [anon_sym_register] = ACTIONS(2379), - [anon_sym_inline] = ACTIONS(2379), - [anon_sym_thread_local] = ACTIONS(2379), - [anon_sym_const] = ACTIONS(2379), - [anon_sym_volatile] = ACTIONS(2379), - [anon_sym_restrict] = ACTIONS(2379), - [anon_sym__Atomic] = ACTIONS(2379), - [anon_sym_mutable] = ACTIONS(2379), - [anon_sym_constexpr] = ACTIONS(2379), - [anon_sym_constinit] = ACTIONS(2379), - [anon_sym_consteval] = ACTIONS(2379), - [anon_sym_signed] = ACTIONS(2379), - [anon_sym_unsigned] = ACTIONS(2379), - [anon_sym_long] = ACTIONS(2379), - [anon_sym_short] = ACTIONS(2379), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_enum] = ACTIONS(2379), - [anon_sym_class] = ACTIONS(2379), - [anon_sym_struct] = ACTIONS(2379), - [anon_sym_union] = ACTIONS(2379), - [anon_sym_if] = ACTIONS(2379), - [anon_sym_else] = ACTIONS(2379), - [anon_sym_switch] = ACTIONS(2379), - [anon_sym_case] = ACTIONS(2379), - [anon_sym_default] = ACTIONS(2379), - [anon_sym_while] = ACTIONS(2379), - [anon_sym_do] = ACTIONS(2379), - [anon_sym_for] = ACTIONS(2379), - [anon_sym_return] = ACTIONS(2379), - [anon_sym_break] = ACTIONS(2379), - [anon_sym_continue] = ACTIONS(2379), - [anon_sym_goto] = ACTIONS(2379), - [anon_sym_DASH_DASH] = ACTIONS(2381), - [anon_sym_PLUS_PLUS] = ACTIONS(2381), - [anon_sym_sizeof] = ACTIONS(2379), - [sym_number_literal] = ACTIONS(2381), - [anon_sym_L_SQUOTE] = ACTIONS(2381), - [anon_sym_u_SQUOTE] = ACTIONS(2381), - [anon_sym_U_SQUOTE] = ACTIONS(2381), - [anon_sym_u8_SQUOTE] = ACTIONS(2381), - [anon_sym_SQUOTE] = ACTIONS(2381), - [anon_sym_L_DQUOTE] = ACTIONS(2381), - [anon_sym_u_DQUOTE] = ACTIONS(2381), - [anon_sym_U_DQUOTE] = ACTIONS(2381), - [anon_sym_u8_DQUOTE] = ACTIONS(2381), - [anon_sym_DQUOTE] = ACTIONS(2381), - [sym_true] = ACTIONS(2379), - [sym_false] = ACTIONS(2379), - [sym_null] = ACTIONS(2379), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2379), - [anon_sym_decltype] = ACTIONS(2379), - [anon_sym_virtual] = ACTIONS(2379), - [anon_sym_explicit] = ACTIONS(2379), - [anon_sym_typename] = ACTIONS(2379), - [anon_sym_template] = ACTIONS(2379), - [anon_sym_operator] = ACTIONS(2379), - [anon_sym_try] = ACTIONS(2379), - [anon_sym_delete] = ACTIONS(2379), - [anon_sym_throw] = ACTIONS(2379), - [anon_sym_namespace] = ACTIONS(2379), - [anon_sym_using] = ACTIONS(2379), - [anon_sym_static_assert] = ACTIONS(2379), - [anon_sym_concept] = ACTIONS(2379), - [anon_sym_co_return] = ACTIONS(2379), - [anon_sym_co_yield] = ACTIONS(2379), - [anon_sym_co_await] = ACTIONS(2379), - [anon_sym_new] = ACTIONS(2379), - [anon_sym_requires] = ACTIONS(2379), - [sym_this] = ACTIONS(2379), - [sym_nullptr] = ACTIONS(2379), - [sym_raw_string_literal] = ACTIONS(2381), - }, - [346] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token2] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [aux_sym_preproc_else_token1] = ACTIONS(2347), - [aux_sym_preproc_elif_token1] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [347] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token2] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [aux_sym_preproc_else_token1] = ACTIONS(2347), - [aux_sym_preproc_elif_token1] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [348] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token2] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [aux_sym_preproc_else_token1] = ACTIONS(2347), - [aux_sym_preproc_elif_token1] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [349] = { - [sym_identifier] = ACTIONS(2383), - [aux_sym_preproc_include_token1] = ACTIONS(2383), - [aux_sym_preproc_def_token1] = ACTIONS(2383), - [aux_sym_preproc_if_token1] = ACTIONS(2383), - [aux_sym_preproc_if_token2] = ACTIONS(2383), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2383), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2383), - [aux_sym_preproc_else_token1] = ACTIONS(2383), - [aux_sym_preproc_elif_token1] = ACTIONS(2383), - [sym_preproc_directive] = ACTIONS(2383), - [anon_sym_LPAREN2] = ACTIONS(2385), - [anon_sym_BANG] = ACTIONS(2385), - [anon_sym_TILDE] = ACTIONS(2385), - [anon_sym_DASH] = ACTIONS(2383), - [anon_sym_PLUS] = ACTIONS(2383), - [anon_sym_STAR] = ACTIONS(2385), - [anon_sym_AMP_AMP] = ACTIONS(2385), - [anon_sym_AMP] = ACTIONS(2383), - [anon_sym_SEMI] = ACTIONS(2385), - [anon_sym_typedef] = ACTIONS(2383), - [anon_sym_extern] = ACTIONS(2383), - [anon_sym___attribute__] = ACTIONS(2383), - [anon_sym_COLON_COLON] = ACTIONS(2385), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2385), - [anon_sym___declspec] = ACTIONS(2383), - [anon_sym___based] = ACTIONS(2383), - [anon_sym___cdecl] = ACTIONS(2383), - [anon_sym___clrcall] = ACTIONS(2383), - [anon_sym___stdcall] = ACTIONS(2383), - [anon_sym___fastcall] = ACTIONS(2383), - [anon_sym___thiscall] = ACTIONS(2383), - [anon_sym___vectorcall] = ACTIONS(2383), - [anon_sym_LBRACE] = ACTIONS(2385), - [anon_sym_LBRACK] = ACTIONS(2383), - [anon_sym_static] = ACTIONS(2383), - [anon_sym_register] = ACTIONS(2383), - [anon_sym_inline] = ACTIONS(2383), - [anon_sym_thread_local] = ACTIONS(2383), - [anon_sym_const] = ACTIONS(2383), - [anon_sym_volatile] = ACTIONS(2383), - [anon_sym_restrict] = ACTIONS(2383), - [anon_sym__Atomic] = ACTIONS(2383), - [anon_sym_mutable] = ACTIONS(2383), - [anon_sym_constexpr] = ACTIONS(2383), - [anon_sym_constinit] = ACTIONS(2383), - [anon_sym_consteval] = ACTIONS(2383), - [anon_sym_signed] = ACTIONS(2383), - [anon_sym_unsigned] = ACTIONS(2383), - [anon_sym_long] = ACTIONS(2383), - [anon_sym_short] = ACTIONS(2383), - [sym_primitive_type] = ACTIONS(2383), - [anon_sym_enum] = ACTIONS(2383), - [anon_sym_class] = ACTIONS(2383), - [anon_sym_struct] = ACTIONS(2383), - [anon_sym_union] = ACTIONS(2383), - [anon_sym_if] = ACTIONS(2383), - [anon_sym_else] = ACTIONS(2383), - [anon_sym_switch] = ACTIONS(2383), - [anon_sym_case] = ACTIONS(2383), - [anon_sym_default] = ACTIONS(2383), - [anon_sym_while] = ACTIONS(2383), - [anon_sym_do] = ACTIONS(2383), - [anon_sym_for] = ACTIONS(2383), - [anon_sym_return] = ACTIONS(2383), - [anon_sym_break] = ACTIONS(2383), - [anon_sym_continue] = ACTIONS(2383), - [anon_sym_goto] = ACTIONS(2383), - [anon_sym_DASH_DASH] = ACTIONS(2385), - [anon_sym_PLUS_PLUS] = ACTIONS(2385), - [anon_sym_sizeof] = ACTIONS(2383), - [sym_number_literal] = ACTIONS(2385), - [anon_sym_L_SQUOTE] = ACTIONS(2385), - [anon_sym_u_SQUOTE] = ACTIONS(2385), - [anon_sym_U_SQUOTE] = ACTIONS(2385), - [anon_sym_u8_SQUOTE] = ACTIONS(2385), - [anon_sym_SQUOTE] = ACTIONS(2385), - [anon_sym_L_DQUOTE] = ACTIONS(2385), - [anon_sym_u_DQUOTE] = ACTIONS(2385), - [anon_sym_U_DQUOTE] = ACTIONS(2385), - [anon_sym_u8_DQUOTE] = ACTIONS(2385), - [anon_sym_DQUOTE] = ACTIONS(2385), - [sym_true] = ACTIONS(2383), - [sym_false] = ACTIONS(2383), - [sym_null] = ACTIONS(2383), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2383), - [anon_sym_decltype] = ACTIONS(2383), - [anon_sym_virtual] = ACTIONS(2383), - [anon_sym_explicit] = ACTIONS(2383), - [anon_sym_typename] = ACTIONS(2383), - [anon_sym_template] = ACTIONS(2383), - [anon_sym_operator] = ACTIONS(2383), - [anon_sym_try] = ACTIONS(2383), - [anon_sym_delete] = ACTIONS(2383), - [anon_sym_throw] = ACTIONS(2383), - [anon_sym_namespace] = ACTIONS(2383), - [anon_sym_using] = ACTIONS(2383), - [anon_sym_static_assert] = ACTIONS(2383), - [anon_sym_concept] = ACTIONS(2383), - [anon_sym_co_return] = ACTIONS(2383), - [anon_sym_co_yield] = ACTIONS(2383), - [anon_sym_co_await] = ACTIONS(2383), - [anon_sym_new] = ACTIONS(2383), - [anon_sym_requires] = ACTIONS(2383), - [sym_this] = ACTIONS(2383), - [sym_nullptr] = ACTIONS(2383), - [sym_raw_string_literal] = ACTIONS(2385), - }, - [350] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token2] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [aux_sym_preproc_else_token1] = ACTIONS(2347), - [aux_sym_preproc_elif_token1] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [351] = { - [sym_identifier] = ACTIONS(2387), - [aux_sym_preproc_include_token1] = ACTIONS(2387), - [aux_sym_preproc_def_token1] = ACTIONS(2387), - [aux_sym_preproc_if_token1] = ACTIONS(2387), - [aux_sym_preproc_if_token2] = ACTIONS(2387), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2387), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2387), - [aux_sym_preproc_else_token1] = ACTIONS(2387), - [aux_sym_preproc_elif_token1] = ACTIONS(2387), - [sym_preproc_directive] = ACTIONS(2387), - [anon_sym_LPAREN2] = ACTIONS(2389), - [anon_sym_BANG] = ACTIONS(2389), - [anon_sym_TILDE] = ACTIONS(2389), - [anon_sym_DASH] = ACTIONS(2387), - [anon_sym_PLUS] = ACTIONS(2387), - [anon_sym_STAR] = ACTIONS(2389), - [anon_sym_AMP_AMP] = ACTIONS(2389), - [anon_sym_AMP] = ACTIONS(2387), - [anon_sym_SEMI] = ACTIONS(2389), - [anon_sym_typedef] = ACTIONS(2387), - [anon_sym_extern] = ACTIONS(2387), - [anon_sym___attribute__] = ACTIONS(2387), - [anon_sym_COLON_COLON] = ACTIONS(2389), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2389), - [anon_sym___declspec] = ACTIONS(2387), - [anon_sym___based] = ACTIONS(2387), - [anon_sym___cdecl] = ACTIONS(2387), - [anon_sym___clrcall] = ACTIONS(2387), - [anon_sym___stdcall] = ACTIONS(2387), - [anon_sym___fastcall] = ACTIONS(2387), - [anon_sym___thiscall] = ACTIONS(2387), - [anon_sym___vectorcall] = ACTIONS(2387), - [anon_sym_LBRACE] = ACTIONS(2389), - [anon_sym_LBRACK] = ACTIONS(2387), - [anon_sym_static] = ACTIONS(2387), - [anon_sym_register] = ACTIONS(2387), - [anon_sym_inline] = ACTIONS(2387), - [anon_sym_thread_local] = ACTIONS(2387), - [anon_sym_const] = ACTIONS(2387), - [anon_sym_volatile] = ACTIONS(2387), - [anon_sym_restrict] = ACTIONS(2387), - [anon_sym__Atomic] = ACTIONS(2387), - [anon_sym_mutable] = ACTIONS(2387), - [anon_sym_constexpr] = ACTIONS(2387), - [anon_sym_constinit] = ACTIONS(2387), - [anon_sym_consteval] = ACTIONS(2387), - [anon_sym_signed] = ACTIONS(2387), - [anon_sym_unsigned] = ACTIONS(2387), - [anon_sym_long] = ACTIONS(2387), - [anon_sym_short] = ACTIONS(2387), - [sym_primitive_type] = ACTIONS(2387), - [anon_sym_enum] = ACTIONS(2387), - [anon_sym_class] = ACTIONS(2387), - [anon_sym_struct] = ACTIONS(2387), - [anon_sym_union] = ACTIONS(2387), - [anon_sym_if] = ACTIONS(2387), - [anon_sym_else] = ACTIONS(2387), - [anon_sym_switch] = ACTIONS(2387), - [anon_sym_case] = ACTIONS(2387), - [anon_sym_default] = ACTIONS(2387), - [anon_sym_while] = ACTIONS(2387), - [anon_sym_do] = ACTIONS(2387), - [anon_sym_for] = ACTIONS(2387), - [anon_sym_return] = ACTIONS(2387), - [anon_sym_break] = ACTIONS(2387), - [anon_sym_continue] = ACTIONS(2387), - [anon_sym_goto] = ACTIONS(2387), - [anon_sym_DASH_DASH] = ACTIONS(2389), - [anon_sym_PLUS_PLUS] = ACTIONS(2389), - [anon_sym_sizeof] = ACTIONS(2387), - [sym_number_literal] = ACTIONS(2389), - [anon_sym_L_SQUOTE] = ACTIONS(2389), - [anon_sym_u_SQUOTE] = ACTIONS(2389), - [anon_sym_U_SQUOTE] = ACTIONS(2389), - [anon_sym_u8_SQUOTE] = ACTIONS(2389), - [anon_sym_SQUOTE] = ACTIONS(2389), - [anon_sym_L_DQUOTE] = ACTIONS(2389), - [anon_sym_u_DQUOTE] = ACTIONS(2389), - [anon_sym_U_DQUOTE] = ACTIONS(2389), - [anon_sym_u8_DQUOTE] = ACTIONS(2389), - [anon_sym_DQUOTE] = ACTIONS(2389), - [sym_true] = ACTIONS(2387), - [sym_false] = ACTIONS(2387), - [sym_null] = ACTIONS(2387), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2387), - [anon_sym_decltype] = ACTIONS(2387), - [anon_sym_virtual] = ACTIONS(2387), - [anon_sym_explicit] = ACTIONS(2387), - [anon_sym_typename] = ACTIONS(2387), - [anon_sym_template] = ACTIONS(2387), - [anon_sym_operator] = ACTIONS(2387), - [anon_sym_try] = ACTIONS(2387), - [anon_sym_delete] = ACTIONS(2387), - [anon_sym_throw] = ACTIONS(2387), - [anon_sym_namespace] = ACTIONS(2387), - [anon_sym_using] = ACTIONS(2387), - [anon_sym_static_assert] = ACTIONS(2387), - [anon_sym_concept] = ACTIONS(2387), - [anon_sym_co_return] = ACTIONS(2387), - [anon_sym_co_yield] = ACTIONS(2387), - [anon_sym_co_await] = ACTIONS(2387), - [anon_sym_new] = ACTIONS(2387), - [anon_sym_requires] = ACTIONS(2387), - [sym_this] = ACTIONS(2387), - [sym_nullptr] = ACTIONS(2387), - [sym_raw_string_literal] = ACTIONS(2389), - }, - [352] = { - [sym_identifier] = ACTIONS(2287), - [aux_sym_preproc_include_token1] = ACTIONS(2287), - [aux_sym_preproc_def_token1] = ACTIONS(2287), - [anon_sym_COMMA] = ACTIONS(2391), - [aux_sym_preproc_if_token1] = ACTIONS(2287), - [aux_sym_preproc_if_token2] = ACTIONS(2287), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2287), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2287), - [aux_sym_preproc_else_token1] = ACTIONS(2287), - [aux_sym_preproc_elif_token1] = ACTIONS(2287), - [sym_preproc_directive] = ACTIONS(2287), - [anon_sym_LPAREN2] = ACTIONS(2289), - [anon_sym_BANG] = ACTIONS(2289), - [anon_sym_TILDE] = ACTIONS(2289), - [anon_sym_DASH] = ACTIONS(2287), - [anon_sym_PLUS] = ACTIONS(2287), - [anon_sym_STAR] = ACTIONS(2289), - [anon_sym_AMP_AMP] = ACTIONS(2289), - [anon_sym_AMP] = ACTIONS(2287), - [anon_sym_SEMI] = ACTIONS(2391), - [anon_sym_typedef] = ACTIONS(2287), - [anon_sym_extern] = ACTIONS(2287), - [anon_sym___attribute__] = ACTIONS(2287), - [anon_sym_COLON_COLON] = ACTIONS(2289), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2289), - [anon_sym___declspec] = ACTIONS(2287), - [anon_sym___based] = ACTIONS(2287), - [anon_sym___cdecl] = ACTIONS(2287), - [anon_sym___clrcall] = ACTIONS(2287), - [anon_sym___stdcall] = ACTIONS(2287), - [anon_sym___fastcall] = ACTIONS(2287), - [anon_sym___thiscall] = ACTIONS(2287), - [anon_sym___vectorcall] = ACTIONS(2287), - [anon_sym_LBRACE] = ACTIONS(2289), - [anon_sym_LBRACK] = ACTIONS(2287), - [anon_sym_static] = ACTIONS(2287), - [anon_sym_register] = ACTIONS(2287), - [anon_sym_inline] = ACTIONS(2287), - [anon_sym_thread_local] = ACTIONS(2287), - [anon_sym_const] = ACTIONS(2287), - [anon_sym_volatile] = ACTIONS(2287), - [anon_sym_restrict] = ACTIONS(2287), - [anon_sym__Atomic] = ACTIONS(2287), - [anon_sym_mutable] = ACTIONS(2287), - [anon_sym_constexpr] = ACTIONS(2287), - [anon_sym_constinit] = ACTIONS(2287), - [anon_sym_consteval] = ACTIONS(2287), - [anon_sym_signed] = ACTIONS(2287), - [anon_sym_unsigned] = ACTIONS(2287), - [anon_sym_long] = ACTIONS(2287), - [anon_sym_short] = ACTIONS(2287), - [sym_primitive_type] = ACTIONS(2287), - [anon_sym_enum] = ACTIONS(2287), - [anon_sym_class] = ACTIONS(2287), - [anon_sym_struct] = ACTIONS(2287), - [anon_sym_union] = ACTIONS(2287), - [anon_sym_if] = ACTIONS(2287), - [anon_sym_switch] = ACTIONS(2287), - [anon_sym_case] = ACTIONS(2287), - [anon_sym_default] = ACTIONS(2287), - [anon_sym_while] = ACTIONS(2287), - [anon_sym_do] = ACTIONS(2287), - [anon_sym_for] = ACTIONS(2287), - [anon_sym_return] = ACTIONS(2287), - [anon_sym_break] = ACTIONS(2287), - [anon_sym_continue] = ACTIONS(2287), - [anon_sym_goto] = ACTIONS(2287), - [anon_sym_DASH_DASH] = ACTIONS(2289), - [anon_sym_PLUS_PLUS] = ACTIONS(2289), - [anon_sym_sizeof] = ACTIONS(2287), - [sym_number_literal] = ACTIONS(2289), - [anon_sym_L_SQUOTE] = ACTIONS(2289), - [anon_sym_u_SQUOTE] = ACTIONS(2289), - [anon_sym_U_SQUOTE] = ACTIONS(2289), - [anon_sym_u8_SQUOTE] = ACTIONS(2289), - [anon_sym_SQUOTE] = ACTIONS(2289), - [anon_sym_L_DQUOTE] = ACTIONS(2289), - [anon_sym_u_DQUOTE] = ACTIONS(2289), - [anon_sym_U_DQUOTE] = ACTIONS(2289), - [anon_sym_u8_DQUOTE] = ACTIONS(2289), - [anon_sym_DQUOTE] = ACTIONS(2289), - [sym_true] = ACTIONS(2287), - [sym_false] = ACTIONS(2287), - [sym_null] = ACTIONS(2287), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2287), - [anon_sym_decltype] = ACTIONS(2287), - [anon_sym_virtual] = ACTIONS(2287), - [anon_sym_explicit] = ACTIONS(2287), - [anon_sym_typename] = ACTIONS(2287), - [anon_sym_template] = ACTIONS(2287), - [anon_sym_operator] = ACTIONS(2287), - [anon_sym_try] = ACTIONS(2287), - [anon_sym_delete] = ACTIONS(2287), - [anon_sym_throw] = ACTIONS(2287), - [anon_sym_namespace] = ACTIONS(2287), - [anon_sym_using] = ACTIONS(2287), - [anon_sym_static_assert] = ACTIONS(2287), - [anon_sym_concept] = ACTIONS(2287), - [anon_sym_co_return] = ACTIONS(2287), - [anon_sym_co_yield] = ACTIONS(2287), - [anon_sym_co_await] = ACTIONS(2287), - [anon_sym_new] = ACTIONS(2287), - [anon_sym_requires] = ACTIONS(2287), - [sym_this] = ACTIONS(2287), - [sym_nullptr] = ACTIONS(2287), - [sym_raw_string_literal] = ACTIONS(2289), - }, - [353] = { - [sym_identifier] = ACTIONS(2393), - [aux_sym_preproc_include_token1] = ACTIONS(2393), - [aux_sym_preproc_def_token1] = ACTIONS(2393), - [aux_sym_preproc_if_token1] = ACTIONS(2393), - [aux_sym_preproc_if_token2] = ACTIONS(2393), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2393), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2393), - [aux_sym_preproc_else_token1] = ACTIONS(2393), - [aux_sym_preproc_elif_token1] = ACTIONS(2393), - [sym_preproc_directive] = ACTIONS(2393), - [anon_sym_LPAREN2] = ACTIONS(2395), - [anon_sym_BANG] = ACTIONS(2395), - [anon_sym_TILDE] = ACTIONS(2395), - [anon_sym_DASH] = ACTIONS(2393), - [anon_sym_PLUS] = ACTIONS(2393), - [anon_sym_STAR] = ACTIONS(2395), - [anon_sym_AMP_AMP] = ACTIONS(2395), - [anon_sym_AMP] = ACTIONS(2393), - [anon_sym_SEMI] = ACTIONS(2395), - [anon_sym_typedef] = ACTIONS(2393), - [anon_sym_extern] = ACTIONS(2393), - [anon_sym___attribute__] = ACTIONS(2393), - [anon_sym_COLON_COLON] = ACTIONS(2395), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2395), - [anon_sym___declspec] = ACTIONS(2393), - [anon_sym___based] = ACTIONS(2393), - [anon_sym___cdecl] = ACTIONS(2393), - [anon_sym___clrcall] = ACTIONS(2393), - [anon_sym___stdcall] = ACTIONS(2393), - [anon_sym___fastcall] = ACTIONS(2393), - [anon_sym___thiscall] = ACTIONS(2393), - [anon_sym___vectorcall] = ACTIONS(2393), - [anon_sym_LBRACE] = ACTIONS(2395), - [anon_sym_LBRACK] = ACTIONS(2393), - [anon_sym_static] = ACTIONS(2393), - [anon_sym_register] = ACTIONS(2393), - [anon_sym_inline] = ACTIONS(2393), - [anon_sym_thread_local] = ACTIONS(2393), - [anon_sym_const] = ACTIONS(2393), - [anon_sym_volatile] = ACTIONS(2393), - [anon_sym_restrict] = ACTIONS(2393), - [anon_sym__Atomic] = ACTIONS(2393), - [anon_sym_mutable] = ACTIONS(2393), - [anon_sym_constexpr] = ACTIONS(2393), - [anon_sym_constinit] = ACTIONS(2393), - [anon_sym_consteval] = ACTIONS(2393), - [anon_sym_signed] = ACTIONS(2393), - [anon_sym_unsigned] = ACTIONS(2393), - [anon_sym_long] = ACTIONS(2393), - [anon_sym_short] = ACTIONS(2393), - [sym_primitive_type] = ACTIONS(2393), - [anon_sym_enum] = ACTIONS(2393), - [anon_sym_class] = ACTIONS(2393), - [anon_sym_struct] = ACTIONS(2393), - [anon_sym_union] = ACTIONS(2393), - [anon_sym_if] = ACTIONS(2393), - [anon_sym_else] = ACTIONS(2393), - [anon_sym_switch] = ACTIONS(2393), - [anon_sym_case] = ACTIONS(2393), - [anon_sym_default] = ACTIONS(2393), - [anon_sym_while] = ACTIONS(2393), - [anon_sym_do] = ACTIONS(2393), - [anon_sym_for] = ACTIONS(2393), - [anon_sym_return] = ACTIONS(2393), - [anon_sym_break] = ACTIONS(2393), - [anon_sym_continue] = ACTIONS(2393), - [anon_sym_goto] = ACTIONS(2393), - [anon_sym_DASH_DASH] = ACTIONS(2395), - [anon_sym_PLUS_PLUS] = ACTIONS(2395), - [anon_sym_sizeof] = ACTIONS(2393), - [sym_number_literal] = ACTIONS(2395), - [anon_sym_L_SQUOTE] = ACTIONS(2395), - [anon_sym_u_SQUOTE] = ACTIONS(2395), - [anon_sym_U_SQUOTE] = ACTIONS(2395), - [anon_sym_u8_SQUOTE] = ACTIONS(2395), - [anon_sym_SQUOTE] = ACTIONS(2395), - [anon_sym_L_DQUOTE] = ACTIONS(2395), - [anon_sym_u_DQUOTE] = ACTIONS(2395), - [anon_sym_U_DQUOTE] = ACTIONS(2395), - [anon_sym_u8_DQUOTE] = ACTIONS(2395), - [anon_sym_DQUOTE] = ACTIONS(2395), - [sym_true] = ACTIONS(2393), - [sym_false] = ACTIONS(2393), - [sym_null] = ACTIONS(2393), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2393), - [anon_sym_decltype] = ACTIONS(2393), - [anon_sym_virtual] = ACTIONS(2393), - [anon_sym_explicit] = ACTIONS(2393), - [anon_sym_typename] = ACTIONS(2393), - [anon_sym_template] = ACTIONS(2393), - [anon_sym_operator] = ACTIONS(2393), - [anon_sym_try] = ACTIONS(2393), - [anon_sym_delete] = ACTIONS(2393), - [anon_sym_throw] = ACTIONS(2393), - [anon_sym_namespace] = ACTIONS(2393), - [anon_sym_using] = ACTIONS(2393), - [anon_sym_static_assert] = ACTIONS(2393), - [anon_sym_concept] = ACTIONS(2393), - [anon_sym_co_return] = ACTIONS(2393), - [anon_sym_co_yield] = ACTIONS(2393), - [anon_sym_co_await] = ACTIONS(2393), - [anon_sym_new] = ACTIONS(2393), - [anon_sym_requires] = ACTIONS(2393), - [sym_this] = ACTIONS(2393), - [sym_nullptr] = ACTIONS(2393), - [sym_raw_string_literal] = ACTIONS(2395), - }, - [354] = { - [sym_identifier] = ACTIONS(2397), - [aux_sym_preproc_include_token1] = ACTIONS(2397), - [aux_sym_preproc_def_token1] = ACTIONS(2397), - [aux_sym_preproc_if_token1] = ACTIONS(2397), - [aux_sym_preproc_if_token2] = ACTIONS(2397), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2397), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2397), - [aux_sym_preproc_else_token1] = ACTIONS(2397), - [aux_sym_preproc_elif_token1] = ACTIONS(2397), - [sym_preproc_directive] = ACTIONS(2397), - [anon_sym_LPAREN2] = ACTIONS(2399), - [anon_sym_BANG] = ACTIONS(2399), - [anon_sym_TILDE] = ACTIONS(2399), - [anon_sym_DASH] = ACTIONS(2397), - [anon_sym_PLUS] = ACTIONS(2397), - [anon_sym_STAR] = ACTIONS(2399), - [anon_sym_AMP_AMP] = ACTIONS(2399), - [anon_sym_AMP] = ACTIONS(2397), - [anon_sym_SEMI] = ACTIONS(2399), - [anon_sym_typedef] = ACTIONS(2397), - [anon_sym_extern] = ACTIONS(2397), - [anon_sym___attribute__] = ACTIONS(2397), - [anon_sym_COLON_COLON] = ACTIONS(2399), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2399), - [anon_sym___declspec] = ACTIONS(2397), - [anon_sym___based] = ACTIONS(2397), - [anon_sym___cdecl] = ACTIONS(2397), - [anon_sym___clrcall] = ACTIONS(2397), - [anon_sym___stdcall] = ACTIONS(2397), - [anon_sym___fastcall] = ACTIONS(2397), - [anon_sym___thiscall] = ACTIONS(2397), - [anon_sym___vectorcall] = ACTIONS(2397), - [anon_sym_LBRACE] = ACTIONS(2399), - [anon_sym_LBRACK] = ACTIONS(2397), - [anon_sym_static] = ACTIONS(2397), - [anon_sym_register] = ACTIONS(2397), - [anon_sym_inline] = ACTIONS(2397), - [anon_sym_thread_local] = ACTIONS(2397), - [anon_sym_const] = ACTIONS(2397), - [anon_sym_volatile] = ACTIONS(2397), - [anon_sym_restrict] = ACTIONS(2397), - [anon_sym__Atomic] = ACTIONS(2397), - [anon_sym_mutable] = ACTIONS(2397), - [anon_sym_constexpr] = ACTIONS(2397), - [anon_sym_constinit] = ACTIONS(2397), - [anon_sym_consteval] = ACTIONS(2397), - [anon_sym_signed] = ACTIONS(2397), - [anon_sym_unsigned] = ACTIONS(2397), - [anon_sym_long] = ACTIONS(2397), - [anon_sym_short] = ACTIONS(2397), - [sym_primitive_type] = ACTIONS(2397), - [anon_sym_enum] = ACTIONS(2397), - [anon_sym_class] = ACTIONS(2397), - [anon_sym_struct] = ACTIONS(2397), - [anon_sym_union] = ACTIONS(2397), - [anon_sym_if] = ACTIONS(2397), - [anon_sym_else] = ACTIONS(2397), - [anon_sym_switch] = ACTIONS(2397), - [anon_sym_case] = ACTIONS(2397), - [anon_sym_default] = ACTIONS(2397), - [anon_sym_while] = ACTIONS(2397), - [anon_sym_do] = ACTIONS(2397), - [anon_sym_for] = ACTIONS(2397), - [anon_sym_return] = ACTIONS(2397), - [anon_sym_break] = ACTIONS(2397), - [anon_sym_continue] = ACTIONS(2397), - [anon_sym_goto] = ACTIONS(2397), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_sizeof] = ACTIONS(2397), - [sym_number_literal] = ACTIONS(2399), - [anon_sym_L_SQUOTE] = ACTIONS(2399), - [anon_sym_u_SQUOTE] = ACTIONS(2399), - [anon_sym_U_SQUOTE] = ACTIONS(2399), - [anon_sym_u8_SQUOTE] = ACTIONS(2399), - [anon_sym_SQUOTE] = ACTIONS(2399), - [anon_sym_L_DQUOTE] = ACTIONS(2399), - [anon_sym_u_DQUOTE] = ACTIONS(2399), - [anon_sym_U_DQUOTE] = ACTIONS(2399), - [anon_sym_u8_DQUOTE] = ACTIONS(2399), - [anon_sym_DQUOTE] = ACTIONS(2399), - [sym_true] = ACTIONS(2397), - [sym_false] = ACTIONS(2397), - [sym_null] = ACTIONS(2397), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2397), - [anon_sym_decltype] = ACTIONS(2397), - [anon_sym_virtual] = ACTIONS(2397), - [anon_sym_explicit] = ACTIONS(2397), - [anon_sym_typename] = ACTIONS(2397), - [anon_sym_template] = ACTIONS(2397), - [anon_sym_operator] = ACTIONS(2397), - [anon_sym_try] = ACTIONS(2397), - [anon_sym_delete] = ACTIONS(2397), - [anon_sym_throw] = ACTIONS(2397), - [anon_sym_namespace] = ACTIONS(2397), - [anon_sym_using] = ACTIONS(2397), - [anon_sym_static_assert] = ACTIONS(2397), - [anon_sym_concept] = ACTIONS(2397), - [anon_sym_co_return] = ACTIONS(2397), - [anon_sym_co_yield] = ACTIONS(2397), - [anon_sym_co_await] = ACTIONS(2397), - [anon_sym_new] = ACTIONS(2397), - [anon_sym_requires] = ACTIONS(2397), - [sym_this] = ACTIONS(2397), - [sym_nullptr] = ACTIONS(2397), - [sym_raw_string_literal] = ACTIONS(2399), - }, - [355] = { - [sym_identifier] = ACTIONS(2401), - [aux_sym_preproc_include_token1] = ACTIONS(2401), - [aux_sym_preproc_def_token1] = ACTIONS(2401), - [aux_sym_preproc_if_token1] = ACTIONS(2401), - [aux_sym_preproc_if_token2] = ACTIONS(2401), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2401), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2401), - [aux_sym_preproc_else_token1] = ACTIONS(2401), - [aux_sym_preproc_elif_token1] = ACTIONS(2401), - [sym_preproc_directive] = ACTIONS(2401), - [anon_sym_LPAREN2] = ACTIONS(2403), - [anon_sym_BANG] = ACTIONS(2403), - [anon_sym_TILDE] = ACTIONS(2403), - [anon_sym_DASH] = ACTIONS(2401), - [anon_sym_PLUS] = ACTIONS(2401), - [anon_sym_STAR] = ACTIONS(2403), - [anon_sym_AMP_AMP] = ACTIONS(2403), - [anon_sym_AMP] = ACTIONS(2401), - [anon_sym_SEMI] = ACTIONS(2403), - [anon_sym_typedef] = ACTIONS(2401), - [anon_sym_extern] = ACTIONS(2401), - [anon_sym___attribute__] = ACTIONS(2401), - [anon_sym_COLON_COLON] = ACTIONS(2403), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2403), - [anon_sym___declspec] = ACTIONS(2401), - [anon_sym___based] = ACTIONS(2401), - [anon_sym___cdecl] = ACTIONS(2401), - [anon_sym___clrcall] = ACTIONS(2401), - [anon_sym___stdcall] = ACTIONS(2401), - [anon_sym___fastcall] = ACTIONS(2401), - [anon_sym___thiscall] = ACTIONS(2401), - [anon_sym___vectorcall] = ACTIONS(2401), - [anon_sym_LBRACE] = ACTIONS(2403), - [anon_sym_LBRACK] = ACTIONS(2401), - [anon_sym_static] = ACTIONS(2401), - [anon_sym_register] = ACTIONS(2401), - [anon_sym_inline] = ACTIONS(2401), - [anon_sym_thread_local] = ACTIONS(2401), - [anon_sym_const] = ACTIONS(2401), - [anon_sym_volatile] = ACTIONS(2401), - [anon_sym_restrict] = ACTIONS(2401), - [anon_sym__Atomic] = ACTIONS(2401), - [anon_sym_mutable] = ACTIONS(2401), - [anon_sym_constexpr] = ACTIONS(2401), - [anon_sym_constinit] = ACTIONS(2401), - [anon_sym_consteval] = ACTIONS(2401), - [anon_sym_signed] = ACTIONS(2401), - [anon_sym_unsigned] = ACTIONS(2401), - [anon_sym_long] = ACTIONS(2401), - [anon_sym_short] = ACTIONS(2401), - [sym_primitive_type] = ACTIONS(2401), - [anon_sym_enum] = ACTIONS(2401), - [anon_sym_class] = ACTIONS(2401), - [anon_sym_struct] = ACTIONS(2401), - [anon_sym_union] = ACTIONS(2401), - [anon_sym_if] = ACTIONS(2401), - [anon_sym_else] = ACTIONS(2401), - [anon_sym_switch] = ACTIONS(2401), - [anon_sym_case] = ACTIONS(2401), - [anon_sym_default] = ACTIONS(2401), - [anon_sym_while] = ACTIONS(2401), - [anon_sym_do] = ACTIONS(2401), - [anon_sym_for] = ACTIONS(2401), - [anon_sym_return] = ACTIONS(2401), - [anon_sym_break] = ACTIONS(2401), - [anon_sym_continue] = ACTIONS(2401), - [anon_sym_goto] = ACTIONS(2401), - [anon_sym_DASH_DASH] = ACTIONS(2403), - [anon_sym_PLUS_PLUS] = ACTIONS(2403), - [anon_sym_sizeof] = ACTIONS(2401), - [sym_number_literal] = ACTIONS(2403), - [anon_sym_L_SQUOTE] = ACTIONS(2403), - [anon_sym_u_SQUOTE] = ACTIONS(2403), - [anon_sym_U_SQUOTE] = ACTIONS(2403), - [anon_sym_u8_SQUOTE] = ACTIONS(2403), - [anon_sym_SQUOTE] = ACTIONS(2403), - [anon_sym_L_DQUOTE] = ACTIONS(2403), - [anon_sym_u_DQUOTE] = ACTIONS(2403), - [anon_sym_U_DQUOTE] = ACTIONS(2403), - [anon_sym_u8_DQUOTE] = ACTIONS(2403), - [anon_sym_DQUOTE] = ACTIONS(2403), - [sym_true] = ACTIONS(2401), - [sym_false] = ACTIONS(2401), - [sym_null] = ACTIONS(2401), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2401), - [anon_sym_decltype] = ACTIONS(2401), - [anon_sym_virtual] = ACTIONS(2401), - [anon_sym_explicit] = ACTIONS(2401), - [anon_sym_typename] = ACTIONS(2401), - [anon_sym_template] = ACTIONS(2401), - [anon_sym_operator] = ACTIONS(2401), - [anon_sym_try] = ACTIONS(2401), - [anon_sym_delete] = ACTIONS(2401), - [anon_sym_throw] = ACTIONS(2401), - [anon_sym_namespace] = ACTIONS(2401), - [anon_sym_using] = ACTIONS(2401), - [anon_sym_static_assert] = ACTIONS(2401), - [anon_sym_concept] = ACTIONS(2401), - [anon_sym_co_return] = ACTIONS(2401), - [anon_sym_co_yield] = ACTIONS(2401), - [anon_sym_co_await] = ACTIONS(2401), - [anon_sym_new] = ACTIONS(2401), - [anon_sym_requires] = ACTIONS(2401), - [sym_this] = ACTIONS(2401), - [sym_nullptr] = ACTIONS(2401), - [sym_raw_string_literal] = ACTIONS(2403), - }, - [356] = { + [sym_catch_clause] = STATE(341), + [aux_sym_constructor_try_statement_repeat1] = STATE(341), + [ts_builtin_sym_end] = ACTIONS(2407), [sym_identifier] = ACTIONS(2405), [aux_sym_preproc_include_token1] = ACTIONS(2405), [aux_sym_preproc_def_token1] = ACTIONS(2405), [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token2] = ACTIONS(2405), [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [aux_sym_preproc_else_token1] = ACTIONS(2405), - [aux_sym_preproc_elif_token1] = ACTIONS(2405), [sym_preproc_directive] = ACTIONS(2405), [anon_sym_LPAREN2] = ACTIONS(2407), [anon_sym_BANG] = ACTIONS(2407), @@ -74372,6 +75132,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(2405), [anon_sym_continue] = ACTIONS(2405), [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), [anon_sym_DASH_DASH] = ACTIONS(2407), [anon_sym_PLUS_PLUS] = ACTIONS(2407), [anon_sym_sizeof] = ACTIONS(2405), @@ -74406,6 +75168,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_concept] = ACTIONS(2405), [anon_sym_co_return] = ACTIONS(2405), [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_catch] = ACTIONS(2474), [anon_sym_co_await] = ACTIONS(2405), [anon_sym_new] = ACTIONS(2405), [anon_sym_requires] = ACTIONS(2405), @@ -74413,7 +75176,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(2405), [sym_raw_string_literal] = ACTIONS(2407), }, - [357] = { + [344] = { + [sym_identifier] = ACTIONS(2476), + [aux_sym_preproc_include_token1] = ACTIONS(2476), + [aux_sym_preproc_def_token1] = ACTIONS(2476), + [aux_sym_preproc_if_token1] = ACTIONS(2476), + [aux_sym_preproc_if_token2] = ACTIONS(2476), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2476), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2476), + [aux_sym_preproc_else_token1] = ACTIONS(2476), + [aux_sym_preproc_elif_token1] = ACTIONS(2476), + [sym_preproc_directive] = ACTIONS(2476), + [anon_sym_LPAREN2] = ACTIONS(2478), + [anon_sym_BANG] = ACTIONS(2478), + [anon_sym_TILDE] = ACTIONS(2478), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_STAR] = ACTIONS(2478), + [anon_sym_AMP_AMP] = ACTIONS(2478), + [anon_sym_AMP] = ACTIONS(2476), + [anon_sym_SEMI] = ACTIONS(2478), + [anon_sym_typedef] = ACTIONS(2476), + [anon_sym_extern] = ACTIONS(2476), + [anon_sym___attribute__] = ACTIONS(2476), + [anon_sym_COLON_COLON] = ACTIONS(2478), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2478), + [anon_sym___declspec] = ACTIONS(2476), + [anon_sym___based] = ACTIONS(2476), + [anon_sym___cdecl] = ACTIONS(2476), + [anon_sym___clrcall] = ACTIONS(2476), + [anon_sym___stdcall] = ACTIONS(2476), + [anon_sym___fastcall] = ACTIONS(2476), + [anon_sym___thiscall] = ACTIONS(2476), + [anon_sym___vectorcall] = ACTIONS(2476), + [anon_sym_LBRACE] = ACTIONS(2478), + [anon_sym_LBRACK] = ACTIONS(2476), + [anon_sym_static] = ACTIONS(2476), + [anon_sym_register] = ACTIONS(2476), + [anon_sym_inline] = ACTIONS(2476), + [anon_sym_thread_local] = ACTIONS(2476), + [anon_sym_const] = ACTIONS(2476), + [anon_sym_volatile] = ACTIONS(2476), + [anon_sym_restrict] = ACTIONS(2476), + [anon_sym__Atomic] = ACTIONS(2476), + [anon_sym_mutable] = ACTIONS(2476), + [anon_sym_constexpr] = ACTIONS(2476), + [anon_sym_constinit] = ACTIONS(2476), + [anon_sym_consteval] = ACTIONS(2476), + [anon_sym_signed] = ACTIONS(2476), + [anon_sym_unsigned] = ACTIONS(2476), + [anon_sym_long] = ACTIONS(2476), + [anon_sym_short] = ACTIONS(2476), + [sym_primitive_type] = ACTIONS(2476), + [anon_sym_enum] = ACTIONS(2476), + [anon_sym_class] = ACTIONS(2476), + [anon_sym_struct] = ACTIONS(2476), + [anon_sym_union] = ACTIONS(2476), + [anon_sym_if] = ACTIONS(2476), + [anon_sym_else] = ACTIONS(2476), + [anon_sym_switch] = ACTIONS(2476), + [anon_sym_case] = ACTIONS(2476), + [anon_sym_default] = ACTIONS(2476), + [anon_sym_while] = ACTIONS(2476), + [anon_sym_do] = ACTIONS(2476), + [anon_sym_for] = ACTIONS(2476), + [anon_sym_return] = ACTIONS(2476), + [anon_sym_break] = ACTIONS(2476), + [anon_sym_continue] = ACTIONS(2476), + [anon_sym_goto] = ACTIONS(2476), + [anon_sym_not] = ACTIONS(2476), + [anon_sym_compl] = ACTIONS(2476), + [anon_sym_DASH_DASH] = ACTIONS(2478), + [anon_sym_PLUS_PLUS] = ACTIONS(2478), + [anon_sym_sizeof] = ACTIONS(2476), + [sym_number_literal] = ACTIONS(2478), + [anon_sym_L_SQUOTE] = ACTIONS(2478), + [anon_sym_u_SQUOTE] = ACTIONS(2478), + [anon_sym_U_SQUOTE] = ACTIONS(2478), + [anon_sym_u8_SQUOTE] = ACTIONS(2478), + [anon_sym_SQUOTE] = ACTIONS(2478), + [anon_sym_L_DQUOTE] = ACTIONS(2478), + [anon_sym_u_DQUOTE] = ACTIONS(2478), + [anon_sym_U_DQUOTE] = ACTIONS(2478), + [anon_sym_u8_DQUOTE] = ACTIONS(2478), + [anon_sym_DQUOTE] = ACTIONS(2478), + [sym_true] = ACTIONS(2476), + [sym_false] = ACTIONS(2476), + [sym_null] = ACTIONS(2476), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2476), + [anon_sym_decltype] = ACTIONS(2476), + [anon_sym_virtual] = ACTIONS(2476), + [anon_sym_explicit] = ACTIONS(2476), + [anon_sym_typename] = ACTIONS(2476), + [anon_sym_template] = ACTIONS(2476), + [anon_sym_operator] = ACTIONS(2476), + [anon_sym_try] = ACTIONS(2476), + [anon_sym_delete] = ACTIONS(2476), + [anon_sym_throw] = ACTIONS(2476), + [anon_sym_namespace] = ACTIONS(2476), + [anon_sym_using] = ACTIONS(2476), + [anon_sym_static_assert] = ACTIONS(2476), + [anon_sym_concept] = ACTIONS(2476), + [anon_sym_co_return] = ACTIONS(2476), + [anon_sym_co_yield] = ACTIONS(2476), + [anon_sym_catch] = ACTIONS(2476), + [anon_sym_co_await] = ACTIONS(2476), + [anon_sym_new] = ACTIONS(2476), + [anon_sym_requires] = ACTIONS(2476), + [sym_this] = ACTIONS(2476), + [sym_nullptr] = ACTIONS(2476), + [sym_raw_string_literal] = ACTIONS(2478), + }, + [345] = { + [sym_catch_clause] = STATE(346), + [aux_sym_constructor_try_statement_repeat1] = STATE(346), [sym_identifier] = ACTIONS(2405), [aux_sym_preproc_include_token1] = ACTIONS(2405), [aux_sym_preproc_def_token1] = ACTIONS(2405), @@ -74421,8 +75298,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_token2] = ACTIONS(2405), [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [aux_sym_preproc_else_token1] = ACTIONS(2405), - [aux_sym_preproc_elif_token1] = ACTIONS(2405), [sym_preproc_directive] = ACTIONS(2405), [anon_sym_LPAREN2] = ACTIONS(2407), [anon_sym_BANG] = ACTIONS(2407), @@ -74481,6 +75356,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(2405), [anon_sym_continue] = ACTIONS(2405), [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), [anon_sym_DASH_DASH] = ACTIONS(2407), [anon_sym_PLUS_PLUS] = ACTIONS(2407), [anon_sym_sizeof] = ACTIONS(2405), @@ -74515,6 +75392,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_concept] = ACTIONS(2405), [anon_sym_co_return] = ACTIONS(2405), [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_catch] = ACTIONS(2480), [anon_sym_co_await] = ACTIONS(2405), [anon_sym_new] = ACTIONS(2405), [anon_sym_requires] = ACTIONS(2405), @@ -74522,6438 +75400,453 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(2405), [sym_raw_string_literal] = ACTIONS(2407), }, - [358] = { - [sym_identifier] = ACTIONS(2409), - [aux_sym_preproc_include_token1] = ACTIONS(2409), - [aux_sym_preproc_def_token1] = ACTIONS(2409), - [aux_sym_preproc_if_token1] = ACTIONS(2409), - [aux_sym_preproc_if_token2] = ACTIONS(2409), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2409), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2409), - [aux_sym_preproc_else_token1] = ACTIONS(2409), - [aux_sym_preproc_elif_token1] = ACTIONS(2409), - [sym_preproc_directive] = ACTIONS(2409), - [anon_sym_LPAREN2] = ACTIONS(2411), - [anon_sym_BANG] = ACTIONS(2411), - [anon_sym_TILDE] = ACTIONS(2411), - [anon_sym_DASH] = ACTIONS(2409), - [anon_sym_PLUS] = ACTIONS(2409), - [anon_sym_STAR] = ACTIONS(2411), - [anon_sym_AMP_AMP] = ACTIONS(2411), - [anon_sym_AMP] = ACTIONS(2409), - [anon_sym_SEMI] = ACTIONS(2411), - [anon_sym_typedef] = ACTIONS(2409), - [anon_sym_extern] = ACTIONS(2409), - [anon_sym___attribute__] = ACTIONS(2409), - [anon_sym_COLON_COLON] = ACTIONS(2411), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2411), - [anon_sym___declspec] = ACTIONS(2409), - [anon_sym___based] = ACTIONS(2409), - [anon_sym___cdecl] = ACTIONS(2409), - [anon_sym___clrcall] = ACTIONS(2409), - [anon_sym___stdcall] = ACTIONS(2409), - [anon_sym___fastcall] = ACTIONS(2409), - [anon_sym___thiscall] = ACTIONS(2409), - [anon_sym___vectorcall] = ACTIONS(2409), - [anon_sym_LBRACE] = ACTIONS(2411), - [anon_sym_LBRACK] = ACTIONS(2409), - [anon_sym_static] = ACTIONS(2409), - [anon_sym_register] = ACTIONS(2409), - [anon_sym_inline] = ACTIONS(2409), - [anon_sym_thread_local] = ACTIONS(2409), - [anon_sym_const] = ACTIONS(2409), - [anon_sym_volatile] = ACTIONS(2409), - [anon_sym_restrict] = ACTIONS(2409), - [anon_sym__Atomic] = ACTIONS(2409), - [anon_sym_mutable] = ACTIONS(2409), - [anon_sym_constexpr] = ACTIONS(2409), - [anon_sym_constinit] = ACTIONS(2409), - [anon_sym_consteval] = ACTIONS(2409), - [anon_sym_signed] = ACTIONS(2409), - [anon_sym_unsigned] = ACTIONS(2409), - [anon_sym_long] = ACTIONS(2409), - [anon_sym_short] = ACTIONS(2409), - [sym_primitive_type] = ACTIONS(2409), - [anon_sym_enum] = ACTIONS(2409), - [anon_sym_class] = ACTIONS(2409), - [anon_sym_struct] = ACTIONS(2409), - [anon_sym_union] = ACTIONS(2409), - [anon_sym_if] = ACTIONS(2409), - [anon_sym_else] = ACTIONS(2409), - [anon_sym_switch] = ACTIONS(2409), - [anon_sym_case] = ACTIONS(2409), - [anon_sym_default] = ACTIONS(2409), - [anon_sym_while] = ACTIONS(2409), - [anon_sym_do] = ACTIONS(2409), - [anon_sym_for] = ACTIONS(2409), - [anon_sym_return] = ACTIONS(2409), - [anon_sym_break] = ACTIONS(2409), - [anon_sym_continue] = ACTIONS(2409), - [anon_sym_goto] = ACTIONS(2409), - [anon_sym_DASH_DASH] = ACTIONS(2411), - [anon_sym_PLUS_PLUS] = ACTIONS(2411), - [anon_sym_sizeof] = ACTIONS(2409), - [sym_number_literal] = ACTIONS(2411), - [anon_sym_L_SQUOTE] = ACTIONS(2411), - [anon_sym_u_SQUOTE] = ACTIONS(2411), - [anon_sym_U_SQUOTE] = ACTIONS(2411), - [anon_sym_u8_SQUOTE] = ACTIONS(2411), - [anon_sym_SQUOTE] = ACTIONS(2411), - [anon_sym_L_DQUOTE] = ACTIONS(2411), - [anon_sym_u_DQUOTE] = ACTIONS(2411), - [anon_sym_U_DQUOTE] = ACTIONS(2411), - [anon_sym_u8_DQUOTE] = ACTIONS(2411), - [anon_sym_DQUOTE] = ACTIONS(2411), - [sym_true] = ACTIONS(2409), - [sym_false] = ACTIONS(2409), - [sym_null] = ACTIONS(2409), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2409), - [anon_sym_decltype] = ACTIONS(2409), - [anon_sym_virtual] = ACTIONS(2409), - [anon_sym_explicit] = ACTIONS(2409), - [anon_sym_typename] = ACTIONS(2409), - [anon_sym_template] = ACTIONS(2409), - [anon_sym_operator] = ACTIONS(2409), - [anon_sym_try] = ACTIONS(2409), - [anon_sym_delete] = ACTIONS(2409), - [anon_sym_throw] = ACTIONS(2409), - [anon_sym_namespace] = ACTIONS(2409), - [anon_sym_using] = ACTIONS(2409), - [anon_sym_static_assert] = ACTIONS(2409), - [anon_sym_concept] = ACTIONS(2409), - [anon_sym_co_return] = ACTIONS(2409), - [anon_sym_co_yield] = ACTIONS(2409), - [anon_sym_co_await] = ACTIONS(2409), - [anon_sym_new] = ACTIONS(2409), - [anon_sym_requires] = ACTIONS(2409), - [sym_this] = ACTIONS(2409), - [sym_nullptr] = ACTIONS(2409), - [sym_raw_string_literal] = ACTIONS(2411), - }, - [359] = { - [sym_identifier] = ACTIONS(2413), - [aux_sym_preproc_include_token1] = ACTIONS(2413), - [aux_sym_preproc_def_token1] = ACTIONS(2413), - [aux_sym_preproc_if_token1] = ACTIONS(2413), - [aux_sym_preproc_if_token2] = ACTIONS(2413), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2413), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2413), - [aux_sym_preproc_else_token1] = ACTIONS(2413), - [aux_sym_preproc_elif_token1] = ACTIONS(2413), - [sym_preproc_directive] = ACTIONS(2413), - [anon_sym_LPAREN2] = ACTIONS(2415), - [anon_sym_BANG] = ACTIONS(2415), - [anon_sym_TILDE] = ACTIONS(2415), - [anon_sym_DASH] = ACTIONS(2413), - [anon_sym_PLUS] = ACTIONS(2413), - [anon_sym_STAR] = ACTIONS(2415), - [anon_sym_AMP_AMP] = ACTIONS(2415), - [anon_sym_AMP] = ACTIONS(2413), - [anon_sym_SEMI] = ACTIONS(2415), - [anon_sym_typedef] = ACTIONS(2413), - [anon_sym_extern] = ACTIONS(2413), - [anon_sym___attribute__] = ACTIONS(2413), - [anon_sym_COLON_COLON] = ACTIONS(2415), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2415), - [anon_sym___declspec] = ACTIONS(2413), - [anon_sym___based] = ACTIONS(2413), - [anon_sym___cdecl] = ACTIONS(2413), - [anon_sym___clrcall] = ACTIONS(2413), - [anon_sym___stdcall] = ACTIONS(2413), - [anon_sym___fastcall] = ACTIONS(2413), - [anon_sym___thiscall] = ACTIONS(2413), - [anon_sym___vectorcall] = ACTIONS(2413), - [anon_sym_LBRACE] = ACTIONS(2415), - [anon_sym_LBRACK] = ACTIONS(2413), - [anon_sym_static] = ACTIONS(2413), - [anon_sym_register] = ACTIONS(2413), - [anon_sym_inline] = ACTIONS(2413), - [anon_sym_thread_local] = ACTIONS(2413), - [anon_sym_const] = ACTIONS(2413), - [anon_sym_volatile] = ACTIONS(2413), - [anon_sym_restrict] = ACTIONS(2413), - [anon_sym__Atomic] = ACTIONS(2413), - [anon_sym_mutable] = ACTIONS(2413), - [anon_sym_constexpr] = ACTIONS(2413), - [anon_sym_constinit] = ACTIONS(2413), - [anon_sym_consteval] = ACTIONS(2413), - [anon_sym_signed] = ACTIONS(2413), - [anon_sym_unsigned] = ACTIONS(2413), - [anon_sym_long] = ACTIONS(2413), - [anon_sym_short] = ACTIONS(2413), - [sym_primitive_type] = ACTIONS(2413), - [anon_sym_enum] = ACTIONS(2413), - [anon_sym_class] = ACTIONS(2413), - [anon_sym_struct] = ACTIONS(2413), - [anon_sym_union] = ACTIONS(2413), - [anon_sym_if] = ACTIONS(2413), - [anon_sym_else] = ACTIONS(2413), - [anon_sym_switch] = ACTIONS(2413), - [anon_sym_case] = ACTIONS(2413), - [anon_sym_default] = ACTIONS(2413), - [anon_sym_while] = ACTIONS(2413), - [anon_sym_do] = ACTIONS(2413), - [anon_sym_for] = ACTIONS(2413), - [anon_sym_return] = ACTIONS(2413), - [anon_sym_break] = ACTIONS(2413), - [anon_sym_continue] = ACTIONS(2413), - [anon_sym_goto] = ACTIONS(2413), - [anon_sym_DASH_DASH] = ACTIONS(2415), - [anon_sym_PLUS_PLUS] = ACTIONS(2415), - [anon_sym_sizeof] = ACTIONS(2413), - [sym_number_literal] = ACTIONS(2415), - [anon_sym_L_SQUOTE] = ACTIONS(2415), - [anon_sym_u_SQUOTE] = ACTIONS(2415), - [anon_sym_U_SQUOTE] = ACTIONS(2415), - [anon_sym_u8_SQUOTE] = ACTIONS(2415), - [anon_sym_SQUOTE] = ACTIONS(2415), - [anon_sym_L_DQUOTE] = ACTIONS(2415), - [anon_sym_u_DQUOTE] = ACTIONS(2415), - [anon_sym_U_DQUOTE] = ACTIONS(2415), - [anon_sym_u8_DQUOTE] = ACTIONS(2415), - [anon_sym_DQUOTE] = ACTIONS(2415), - [sym_true] = ACTIONS(2413), - [sym_false] = ACTIONS(2413), - [sym_null] = ACTIONS(2413), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2413), - [anon_sym_decltype] = ACTIONS(2413), - [anon_sym_virtual] = ACTIONS(2413), - [anon_sym_explicit] = ACTIONS(2413), - [anon_sym_typename] = ACTIONS(2413), - [anon_sym_template] = ACTIONS(2413), - [anon_sym_operator] = ACTIONS(2413), - [anon_sym_try] = ACTIONS(2413), - [anon_sym_delete] = ACTIONS(2413), - [anon_sym_throw] = ACTIONS(2413), - [anon_sym_namespace] = ACTIONS(2413), - [anon_sym_using] = ACTIONS(2413), - [anon_sym_static_assert] = ACTIONS(2413), - [anon_sym_concept] = ACTIONS(2413), - [anon_sym_co_return] = ACTIONS(2413), - [anon_sym_co_yield] = ACTIONS(2413), - [anon_sym_co_await] = ACTIONS(2413), - [anon_sym_new] = ACTIONS(2413), - [anon_sym_requires] = ACTIONS(2413), - [sym_this] = ACTIONS(2413), - [sym_nullptr] = ACTIONS(2413), - [sym_raw_string_literal] = ACTIONS(2415), - }, - [360] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token2] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [aux_sym_preproc_else_token1] = ACTIONS(2347), - [aux_sym_preproc_elif_token1] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [361] = { - [sym_identifier] = ACTIONS(2417), - [aux_sym_preproc_include_token1] = ACTIONS(2417), - [aux_sym_preproc_def_token1] = ACTIONS(2417), - [aux_sym_preproc_if_token1] = ACTIONS(2417), - [aux_sym_preproc_if_token2] = ACTIONS(2417), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2417), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2417), - [aux_sym_preproc_else_token1] = ACTIONS(2417), - [aux_sym_preproc_elif_token1] = ACTIONS(2417), - [sym_preproc_directive] = ACTIONS(2417), - [anon_sym_LPAREN2] = ACTIONS(2419), - [anon_sym_BANG] = ACTIONS(2419), - [anon_sym_TILDE] = ACTIONS(2419), - [anon_sym_DASH] = ACTIONS(2417), - [anon_sym_PLUS] = ACTIONS(2417), - [anon_sym_STAR] = ACTIONS(2419), - [anon_sym_AMP_AMP] = ACTIONS(2419), - [anon_sym_AMP] = ACTIONS(2417), - [anon_sym_SEMI] = ACTIONS(2419), - [anon_sym_typedef] = ACTIONS(2417), - [anon_sym_extern] = ACTIONS(2417), - [anon_sym___attribute__] = ACTIONS(2417), - [anon_sym_COLON_COLON] = ACTIONS(2419), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2419), - [anon_sym___declspec] = ACTIONS(2417), - [anon_sym___based] = ACTIONS(2417), - [anon_sym___cdecl] = ACTIONS(2417), - [anon_sym___clrcall] = ACTIONS(2417), - [anon_sym___stdcall] = ACTIONS(2417), - [anon_sym___fastcall] = ACTIONS(2417), - [anon_sym___thiscall] = ACTIONS(2417), - [anon_sym___vectorcall] = ACTIONS(2417), - [anon_sym_LBRACE] = ACTIONS(2419), - [anon_sym_LBRACK] = ACTIONS(2417), - [anon_sym_static] = ACTIONS(2417), - [anon_sym_register] = ACTIONS(2417), - [anon_sym_inline] = ACTIONS(2417), - [anon_sym_thread_local] = ACTIONS(2417), - [anon_sym_const] = ACTIONS(2417), - [anon_sym_volatile] = ACTIONS(2417), - [anon_sym_restrict] = ACTIONS(2417), - [anon_sym__Atomic] = ACTIONS(2417), - [anon_sym_mutable] = ACTIONS(2417), - [anon_sym_constexpr] = ACTIONS(2417), - [anon_sym_constinit] = ACTIONS(2417), - [anon_sym_consteval] = ACTIONS(2417), - [anon_sym_signed] = ACTIONS(2417), - [anon_sym_unsigned] = ACTIONS(2417), - [anon_sym_long] = ACTIONS(2417), - [anon_sym_short] = ACTIONS(2417), - [sym_primitive_type] = ACTIONS(2417), - [anon_sym_enum] = ACTIONS(2417), - [anon_sym_class] = ACTIONS(2417), - [anon_sym_struct] = ACTIONS(2417), - [anon_sym_union] = ACTIONS(2417), - [anon_sym_if] = ACTIONS(2417), - [anon_sym_else] = ACTIONS(2417), - [anon_sym_switch] = ACTIONS(2417), - [anon_sym_case] = ACTIONS(2417), - [anon_sym_default] = ACTIONS(2417), - [anon_sym_while] = ACTIONS(2417), - [anon_sym_do] = ACTIONS(2417), - [anon_sym_for] = ACTIONS(2417), - [anon_sym_return] = ACTIONS(2417), - [anon_sym_break] = ACTIONS(2417), - [anon_sym_continue] = ACTIONS(2417), - [anon_sym_goto] = ACTIONS(2417), - [anon_sym_DASH_DASH] = ACTIONS(2419), - [anon_sym_PLUS_PLUS] = ACTIONS(2419), - [anon_sym_sizeof] = ACTIONS(2417), - [sym_number_literal] = ACTIONS(2419), - [anon_sym_L_SQUOTE] = ACTIONS(2419), - [anon_sym_u_SQUOTE] = ACTIONS(2419), - [anon_sym_U_SQUOTE] = ACTIONS(2419), - [anon_sym_u8_SQUOTE] = ACTIONS(2419), - [anon_sym_SQUOTE] = ACTIONS(2419), - [anon_sym_L_DQUOTE] = ACTIONS(2419), - [anon_sym_u_DQUOTE] = ACTIONS(2419), - [anon_sym_U_DQUOTE] = ACTIONS(2419), - [anon_sym_u8_DQUOTE] = ACTIONS(2419), - [anon_sym_DQUOTE] = ACTIONS(2419), - [sym_true] = ACTIONS(2417), - [sym_false] = ACTIONS(2417), - [sym_null] = ACTIONS(2417), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2417), - [anon_sym_decltype] = ACTIONS(2417), - [anon_sym_virtual] = ACTIONS(2417), - [anon_sym_explicit] = ACTIONS(2417), - [anon_sym_typename] = ACTIONS(2417), - [anon_sym_template] = ACTIONS(2417), - [anon_sym_operator] = ACTIONS(2417), - [anon_sym_try] = ACTIONS(2417), - [anon_sym_delete] = ACTIONS(2417), - [anon_sym_throw] = ACTIONS(2417), - [anon_sym_namespace] = ACTIONS(2417), - [anon_sym_using] = ACTIONS(2417), - [anon_sym_static_assert] = ACTIONS(2417), - [anon_sym_concept] = ACTIONS(2417), - [anon_sym_co_return] = ACTIONS(2417), - [anon_sym_co_yield] = ACTIONS(2417), - [anon_sym_co_await] = ACTIONS(2417), - [anon_sym_new] = ACTIONS(2417), - [anon_sym_requires] = ACTIONS(2417), - [sym_this] = ACTIONS(2417), - [sym_nullptr] = ACTIONS(2417), - [sym_raw_string_literal] = ACTIONS(2419), - }, - [362] = { - [sym_identifier] = ACTIONS(2421), - [aux_sym_preproc_include_token1] = ACTIONS(2421), - [aux_sym_preproc_def_token1] = ACTIONS(2421), - [aux_sym_preproc_if_token1] = ACTIONS(2421), - [aux_sym_preproc_if_token2] = ACTIONS(2421), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2421), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2421), - [aux_sym_preproc_else_token1] = ACTIONS(2421), - [aux_sym_preproc_elif_token1] = ACTIONS(2421), - [sym_preproc_directive] = ACTIONS(2421), - [anon_sym_LPAREN2] = ACTIONS(2423), - [anon_sym_BANG] = ACTIONS(2423), - [anon_sym_TILDE] = ACTIONS(2423), - [anon_sym_DASH] = ACTIONS(2421), - [anon_sym_PLUS] = ACTIONS(2421), - [anon_sym_STAR] = ACTIONS(2423), - [anon_sym_AMP_AMP] = ACTIONS(2423), - [anon_sym_AMP] = ACTIONS(2421), - [anon_sym_SEMI] = ACTIONS(2423), - [anon_sym_typedef] = ACTIONS(2421), - [anon_sym_extern] = ACTIONS(2421), - [anon_sym___attribute__] = ACTIONS(2421), - [anon_sym_COLON_COLON] = ACTIONS(2423), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2423), - [anon_sym___declspec] = ACTIONS(2421), - [anon_sym___based] = ACTIONS(2421), - [anon_sym___cdecl] = ACTIONS(2421), - [anon_sym___clrcall] = ACTIONS(2421), - [anon_sym___stdcall] = ACTIONS(2421), - [anon_sym___fastcall] = ACTIONS(2421), - [anon_sym___thiscall] = ACTIONS(2421), - [anon_sym___vectorcall] = ACTIONS(2421), - [anon_sym_LBRACE] = ACTIONS(2423), - [anon_sym_LBRACK] = ACTIONS(2421), - [anon_sym_static] = ACTIONS(2421), - [anon_sym_register] = ACTIONS(2421), - [anon_sym_inline] = ACTIONS(2421), - [anon_sym_thread_local] = ACTIONS(2421), - [anon_sym_const] = ACTIONS(2421), - [anon_sym_volatile] = ACTIONS(2421), - [anon_sym_restrict] = ACTIONS(2421), - [anon_sym__Atomic] = ACTIONS(2421), - [anon_sym_mutable] = ACTIONS(2421), - [anon_sym_constexpr] = ACTIONS(2421), - [anon_sym_constinit] = ACTIONS(2421), - [anon_sym_consteval] = ACTIONS(2421), - [anon_sym_signed] = ACTIONS(2421), - [anon_sym_unsigned] = ACTIONS(2421), - [anon_sym_long] = ACTIONS(2421), - [anon_sym_short] = ACTIONS(2421), - [sym_primitive_type] = ACTIONS(2421), - [anon_sym_enum] = ACTIONS(2421), - [anon_sym_class] = ACTIONS(2421), - [anon_sym_struct] = ACTIONS(2421), - [anon_sym_union] = ACTIONS(2421), - [anon_sym_if] = ACTIONS(2421), - [anon_sym_else] = ACTIONS(2421), - [anon_sym_switch] = ACTIONS(2421), - [anon_sym_case] = ACTIONS(2421), - [anon_sym_default] = ACTIONS(2421), - [anon_sym_while] = ACTIONS(2421), - [anon_sym_do] = ACTIONS(2421), - [anon_sym_for] = ACTIONS(2421), - [anon_sym_return] = ACTIONS(2421), - [anon_sym_break] = ACTIONS(2421), - [anon_sym_continue] = ACTIONS(2421), - [anon_sym_goto] = ACTIONS(2421), - [anon_sym_DASH_DASH] = ACTIONS(2423), - [anon_sym_PLUS_PLUS] = ACTIONS(2423), - [anon_sym_sizeof] = ACTIONS(2421), - [sym_number_literal] = ACTIONS(2423), - [anon_sym_L_SQUOTE] = ACTIONS(2423), - [anon_sym_u_SQUOTE] = ACTIONS(2423), - [anon_sym_U_SQUOTE] = ACTIONS(2423), - [anon_sym_u8_SQUOTE] = ACTIONS(2423), - [anon_sym_SQUOTE] = ACTIONS(2423), - [anon_sym_L_DQUOTE] = ACTIONS(2423), - [anon_sym_u_DQUOTE] = ACTIONS(2423), - [anon_sym_U_DQUOTE] = ACTIONS(2423), - [anon_sym_u8_DQUOTE] = ACTIONS(2423), - [anon_sym_DQUOTE] = ACTIONS(2423), - [sym_true] = ACTIONS(2421), - [sym_false] = ACTIONS(2421), - [sym_null] = ACTIONS(2421), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2421), - [anon_sym_decltype] = ACTIONS(2421), - [anon_sym_virtual] = ACTIONS(2421), - [anon_sym_explicit] = ACTIONS(2421), - [anon_sym_typename] = ACTIONS(2421), - [anon_sym_template] = ACTIONS(2421), - [anon_sym_operator] = ACTIONS(2421), - [anon_sym_try] = ACTIONS(2421), - [anon_sym_delete] = ACTIONS(2421), - [anon_sym_throw] = ACTIONS(2421), - [anon_sym_namespace] = ACTIONS(2421), - [anon_sym_using] = ACTIONS(2421), - [anon_sym_static_assert] = ACTIONS(2421), - [anon_sym_concept] = ACTIONS(2421), - [anon_sym_co_return] = ACTIONS(2421), - [anon_sym_co_yield] = ACTIONS(2421), - [anon_sym_co_await] = ACTIONS(2421), - [anon_sym_new] = ACTIONS(2421), - [anon_sym_requires] = ACTIONS(2421), - [sym_this] = ACTIONS(2421), - [sym_nullptr] = ACTIONS(2421), - [sym_raw_string_literal] = ACTIONS(2423), - }, - [363] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token2] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [aux_sym_preproc_else_token1] = ACTIONS(2347), - [aux_sym_preproc_elif_token1] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [364] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token2] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [aux_sym_preproc_else_token1] = ACTIONS(2347), - [aux_sym_preproc_elif_token1] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [365] = { - [sym_catch_clause] = STATE(324), - [aux_sym_constructor_try_statement_repeat1] = STATE(324), - [ts_builtin_sym_end] = ACTIONS(2280), - [sym_identifier] = ACTIONS(2278), - [aux_sym_preproc_include_token1] = ACTIONS(2278), - [aux_sym_preproc_def_token1] = ACTIONS(2278), - [aux_sym_preproc_if_token1] = ACTIONS(2278), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2278), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2278), - [sym_preproc_directive] = ACTIONS(2278), - [anon_sym_LPAREN2] = ACTIONS(2280), - [anon_sym_BANG] = ACTIONS(2280), - [anon_sym_TILDE] = ACTIONS(2280), - [anon_sym_DASH] = ACTIONS(2278), - [anon_sym_PLUS] = ACTIONS(2278), - [anon_sym_STAR] = ACTIONS(2280), - [anon_sym_AMP_AMP] = ACTIONS(2280), - [anon_sym_AMP] = ACTIONS(2278), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_typedef] = ACTIONS(2278), - [anon_sym_extern] = ACTIONS(2278), - [anon_sym___attribute__] = ACTIONS(2278), - [anon_sym_COLON_COLON] = ACTIONS(2280), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2280), - [anon_sym___declspec] = ACTIONS(2278), - [anon_sym___based] = ACTIONS(2278), - [anon_sym___cdecl] = ACTIONS(2278), - [anon_sym___clrcall] = ACTIONS(2278), - [anon_sym___stdcall] = ACTIONS(2278), - [anon_sym___fastcall] = ACTIONS(2278), - [anon_sym___thiscall] = ACTIONS(2278), - [anon_sym___vectorcall] = ACTIONS(2278), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_LBRACK] = ACTIONS(2278), - [anon_sym_static] = ACTIONS(2278), - [anon_sym_register] = ACTIONS(2278), - [anon_sym_inline] = ACTIONS(2278), - [anon_sym_thread_local] = ACTIONS(2278), - [anon_sym_const] = ACTIONS(2278), - [anon_sym_volatile] = ACTIONS(2278), - [anon_sym_restrict] = ACTIONS(2278), - [anon_sym__Atomic] = ACTIONS(2278), - [anon_sym_mutable] = ACTIONS(2278), - [anon_sym_constexpr] = ACTIONS(2278), - [anon_sym_constinit] = ACTIONS(2278), - [anon_sym_consteval] = ACTIONS(2278), - [anon_sym_signed] = ACTIONS(2278), - [anon_sym_unsigned] = ACTIONS(2278), - [anon_sym_long] = ACTIONS(2278), - [anon_sym_short] = ACTIONS(2278), - [sym_primitive_type] = ACTIONS(2278), - [anon_sym_enum] = ACTIONS(2278), - [anon_sym_class] = ACTIONS(2278), - [anon_sym_struct] = ACTIONS(2278), - [anon_sym_union] = ACTIONS(2278), - [anon_sym_if] = ACTIONS(2278), - [anon_sym_switch] = ACTIONS(2278), - [anon_sym_case] = ACTIONS(2278), - [anon_sym_default] = ACTIONS(2278), - [anon_sym_while] = ACTIONS(2278), - [anon_sym_do] = ACTIONS(2278), - [anon_sym_for] = ACTIONS(2278), - [anon_sym_return] = ACTIONS(2278), - [anon_sym_break] = ACTIONS(2278), - [anon_sym_continue] = ACTIONS(2278), - [anon_sym_goto] = ACTIONS(2278), - [anon_sym_DASH_DASH] = ACTIONS(2280), - [anon_sym_PLUS_PLUS] = ACTIONS(2280), - [anon_sym_sizeof] = ACTIONS(2278), - [sym_number_literal] = ACTIONS(2280), - [anon_sym_L_SQUOTE] = ACTIONS(2280), - [anon_sym_u_SQUOTE] = ACTIONS(2280), - [anon_sym_U_SQUOTE] = ACTIONS(2280), - [anon_sym_u8_SQUOTE] = ACTIONS(2280), - [anon_sym_SQUOTE] = ACTIONS(2280), - [anon_sym_L_DQUOTE] = ACTIONS(2280), - [anon_sym_u_DQUOTE] = ACTIONS(2280), - [anon_sym_U_DQUOTE] = ACTIONS(2280), - [anon_sym_u8_DQUOTE] = ACTIONS(2280), - [anon_sym_DQUOTE] = ACTIONS(2280), - [sym_true] = ACTIONS(2278), - [sym_false] = ACTIONS(2278), - [sym_null] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2278), - [anon_sym_decltype] = ACTIONS(2278), - [anon_sym_virtual] = ACTIONS(2278), - [anon_sym_explicit] = ACTIONS(2278), - [anon_sym_typename] = ACTIONS(2278), - [anon_sym_template] = ACTIONS(2278), - [anon_sym_operator] = ACTIONS(2278), - [anon_sym_try] = ACTIONS(2278), - [anon_sym_delete] = ACTIONS(2278), - [anon_sym_throw] = ACTIONS(2278), - [anon_sym_namespace] = ACTIONS(2278), - [anon_sym_using] = ACTIONS(2278), - [anon_sym_static_assert] = ACTIONS(2278), - [anon_sym_concept] = ACTIONS(2278), - [anon_sym_co_return] = ACTIONS(2278), - [anon_sym_co_yield] = ACTIONS(2278), - [anon_sym_catch] = ACTIONS(2300), - [anon_sym_co_await] = ACTIONS(2278), - [anon_sym_new] = ACTIONS(2278), - [anon_sym_requires] = ACTIONS(2278), - [sym_this] = ACTIONS(2278), - [sym_nullptr] = ACTIONS(2278), - [sym_raw_string_literal] = ACTIONS(2280), - }, - [366] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token2] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [aux_sym_preproc_else_token1] = ACTIONS(2347), - [aux_sym_preproc_elif_token1] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [367] = { - [sym_identifier] = ACTIONS(2425), - [aux_sym_preproc_include_token1] = ACTIONS(2425), - [aux_sym_preproc_def_token1] = ACTIONS(2425), - [aux_sym_preproc_if_token1] = ACTIONS(2425), - [aux_sym_preproc_if_token2] = ACTIONS(2425), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2425), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2425), - [aux_sym_preproc_else_token1] = ACTIONS(2425), - [aux_sym_preproc_elif_token1] = ACTIONS(2425), - [sym_preproc_directive] = ACTIONS(2425), - [anon_sym_LPAREN2] = ACTIONS(2427), - [anon_sym_BANG] = ACTIONS(2427), - [anon_sym_TILDE] = ACTIONS(2427), - [anon_sym_DASH] = ACTIONS(2425), - [anon_sym_PLUS] = ACTIONS(2425), - [anon_sym_STAR] = ACTIONS(2427), - [anon_sym_AMP_AMP] = ACTIONS(2427), - [anon_sym_AMP] = ACTIONS(2425), - [anon_sym_SEMI] = ACTIONS(2427), - [anon_sym_typedef] = ACTIONS(2425), - [anon_sym_extern] = ACTIONS(2425), - [anon_sym___attribute__] = ACTIONS(2425), - [anon_sym_COLON_COLON] = ACTIONS(2427), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2427), - [anon_sym___declspec] = ACTIONS(2425), - [anon_sym___based] = ACTIONS(2425), - [anon_sym___cdecl] = ACTIONS(2425), - [anon_sym___clrcall] = ACTIONS(2425), - [anon_sym___stdcall] = ACTIONS(2425), - [anon_sym___fastcall] = ACTIONS(2425), - [anon_sym___thiscall] = ACTIONS(2425), - [anon_sym___vectorcall] = ACTIONS(2425), - [anon_sym_LBRACE] = ACTIONS(2427), - [anon_sym_LBRACK] = ACTIONS(2425), - [anon_sym_static] = ACTIONS(2425), - [anon_sym_register] = ACTIONS(2425), - [anon_sym_inline] = ACTIONS(2425), - [anon_sym_thread_local] = ACTIONS(2425), - [anon_sym_const] = ACTIONS(2425), - [anon_sym_volatile] = ACTIONS(2425), - [anon_sym_restrict] = ACTIONS(2425), - [anon_sym__Atomic] = ACTIONS(2425), - [anon_sym_mutable] = ACTIONS(2425), - [anon_sym_constexpr] = ACTIONS(2425), - [anon_sym_constinit] = ACTIONS(2425), - [anon_sym_consteval] = ACTIONS(2425), - [anon_sym_signed] = ACTIONS(2425), - [anon_sym_unsigned] = ACTIONS(2425), - [anon_sym_long] = ACTIONS(2425), - [anon_sym_short] = ACTIONS(2425), - [sym_primitive_type] = ACTIONS(2425), - [anon_sym_enum] = ACTIONS(2425), - [anon_sym_class] = ACTIONS(2425), - [anon_sym_struct] = ACTIONS(2425), - [anon_sym_union] = ACTIONS(2425), - [anon_sym_if] = ACTIONS(2425), - [anon_sym_else] = ACTIONS(2425), - [anon_sym_switch] = ACTIONS(2425), - [anon_sym_case] = ACTIONS(2425), - [anon_sym_default] = ACTIONS(2425), - [anon_sym_while] = ACTIONS(2425), - [anon_sym_do] = ACTIONS(2425), - [anon_sym_for] = ACTIONS(2425), - [anon_sym_return] = ACTIONS(2425), - [anon_sym_break] = ACTIONS(2425), - [anon_sym_continue] = ACTIONS(2425), - [anon_sym_goto] = ACTIONS(2425), - [anon_sym_DASH_DASH] = ACTIONS(2427), - [anon_sym_PLUS_PLUS] = ACTIONS(2427), - [anon_sym_sizeof] = ACTIONS(2425), - [sym_number_literal] = ACTIONS(2427), - [anon_sym_L_SQUOTE] = ACTIONS(2427), - [anon_sym_u_SQUOTE] = ACTIONS(2427), - [anon_sym_U_SQUOTE] = ACTIONS(2427), - [anon_sym_u8_SQUOTE] = ACTIONS(2427), - [anon_sym_SQUOTE] = ACTIONS(2427), - [anon_sym_L_DQUOTE] = ACTIONS(2427), - [anon_sym_u_DQUOTE] = ACTIONS(2427), - [anon_sym_U_DQUOTE] = ACTIONS(2427), - [anon_sym_u8_DQUOTE] = ACTIONS(2427), - [anon_sym_DQUOTE] = ACTIONS(2427), - [sym_true] = ACTIONS(2425), - [sym_false] = ACTIONS(2425), - [sym_null] = ACTIONS(2425), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2425), - [anon_sym_decltype] = ACTIONS(2425), - [anon_sym_virtual] = ACTIONS(2425), - [anon_sym_explicit] = ACTIONS(2425), - [anon_sym_typename] = ACTIONS(2425), - [anon_sym_template] = ACTIONS(2425), - [anon_sym_operator] = ACTIONS(2425), - [anon_sym_try] = ACTIONS(2425), - [anon_sym_delete] = ACTIONS(2425), - [anon_sym_throw] = ACTIONS(2425), - [anon_sym_namespace] = ACTIONS(2425), - [anon_sym_using] = ACTIONS(2425), - [anon_sym_static_assert] = ACTIONS(2425), - [anon_sym_concept] = ACTIONS(2425), - [anon_sym_co_return] = ACTIONS(2425), - [anon_sym_co_yield] = ACTIONS(2425), - [anon_sym_co_await] = ACTIONS(2425), - [anon_sym_new] = ACTIONS(2425), - [anon_sym_requires] = ACTIONS(2425), - [sym_this] = ACTIONS(2425), - [sym_nullptr] = ACTIONS(2425), - [sym_raw_string_literal] = ACTIONS(2427), - }, - [368] = { - [sym_identifier] = ACTIONS(2429), - [aux_sym_preproc_include_token1] = ACTIONS(2429), - [aux_sym_preproc_def_token1] = ACTIONS(2429), - [aux_sym_preproc_if_token1] = ACTIONS(2429), - [aux_sym_preproc_if_token2] = ACTIONS(2429), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2429), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2429), - [aux_sym_preproc_else_token1] = ACTIONS(2429), - [aux_sym_preproc_elif_token1] = ACTIONS(2429), - [sym_preproc_directive] = ACTIONS(2429), - [anon_sym_LPAREN2] = ACTIONS(2431), - [anon_sym_BANG] = ACTIONS(2431), - [anon_sym_TILDE] = ACTIONS(2431), - [anon_sym_DASH] = ACTIONS(2429), - [anon_sym_PLUS] = ACTIONS(2429), - [anon_sym_STAR] = ACTIONS(2431), - [anon_sym_AMP_AMP] = ACTIONS(2431), - [anon_sym_AMP] = ACTIONS(2429), - [anon_sym_SEMI] = ACTIONS(2431), - [anon_sym_typedef] = ACTIONS(2429), - [anon_sym_extern] = ACTIONS(2429), - [anon_sym___attribute__] = ACTIONS(2429), - [anon_sym_COLON_COLON] = ACTIONS(2431), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2431), - [anon_sym___declspec] = ACTIONS(2429), - [anon_sym___based] = ACTIONS(2429), - [anon_sym___cdecl] = ACTIONS(2429), - [anon_sym___clrcall] = ACTIONS(2429), - [anon_sym___stdcall] = ACTIONS(2429), - [anon_sym___fastcall] = ACTIONS(2429), - [anon_sym___thiscall] = ACTIONS(2429), - [anon_sym___vectorcall] = ACTIONS(2429), - [anon_sym_LBRACE] = ACTIONS(2431), - [anon_sym_LBRACK] = ACTIONS(2429), - [anon_sym_static] = ACTIONS(2429), - [anon_sym_register] = ACTIONS(2429), - [anon_sym_inline] = ACTIONS(2429), - [anon_sym_thread_local] = ACTIONS(2429), - [anon_sym_const] = ACTIONS(2429), - [anon_sym_volatile] = ACTIONS(2429), - [anon_sym_restrict] = ACTIONS(2429), - [anon_sym__Atomic] = ACTIONS(2429), - [anon_sym_mutable] = ACTIONS(2429), - [anon_sym_constexpr] = ACTIONS(2429), - [anon_sym_constinit] = ACTIONS(2429), - [anon_sym_consteval] = ACTIONS(2429), - [anon_sym_signed] = ACTIONS(2429), - [anon_sym_unsigned] = ACTIONS(2429), - [anon_sym_long] = ACTIONS(2429), - [anon_sym_short] = ACTIONS(2429), - [sym_primitive_type] = ACTIONS(2429), - [anon_sym_enum] = ACTIONS(2429), - [anon_sym_class] = ACTIONS(2429), - [anon_sym_struct] = ACTIONS(2429), - [anon_sym_union] = ACTIONS(2429), - [anon_sym_if] = ACTIONS(2429), - [anon_sym_else] = ACTIONS(2429), - [anon_sym_switch] = ACTIONS(2429), - [anon_sym_case] = ACTIONS(2429), - [anon_sym_default] = ACTIONS(2429), - [anon_sym_while] = ACTIONS(2429), - [anon_sym_do] = ACTIONS(2429), - [anon_sym_for] = ACTIONS(2429), - [anon_sym_return] = ACTIONS(2429), - [anon_sym_break] = ACTIONS(2429), - [anon_sym_continue] = ACTIONS(2429), - [anon_sym_goto] = ACTIONS(2429), - [anon_sym_DASH_DASH] = ACTIONS(2431), - [anon_sym_PLUS_PLUS] = ACTIONS(2431), - [anon_sym_sizeof] = ACTIONS(2429), - [sym_number_literal] = ACTIONS(2431), - [anon_sym_L_SQUOTE] = ACTIONS(2431), - [anon_sym_u_SQUOTE] = ACTIONS(2431), - [anon_sym_U_SQUOTE] = ACTIONS(2431), - [anon_sym_u8_SQUOTE] = ACTIONS(2431), - [anon_sym_SQUOTE] = ACTIONS(2431), - [anon_sym_L_DQUOTE] = ACTIONS(2431), - [anon_sym_u_DQUOTE] = ACTIONS(2431), - [anon_sym_U_DQUOTE] = ACTIONS(2431), - [anon_sym_u8_DQUOTE] = ACTIONS(2431), - [anon_sym_DQUOTE] = ACTIONS(2431), - [sym_true] = ACTIONS(2429), - [sym_false] = ACTIONS(2429), - [sym_null] = ACTIONS(2429), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2429), - [anon_sym_decltype] = ACTIONS(2429), - [anon_sym_virtual] = ACTIONS(2429), - [anon_sym_explicit] = ACTIONS(2429), - [anon_sym_typename] = ACTIONS(2429), - [anon_sym_template] = ACTIONS(2429), - [anon_sym_operator] = ACTIONS(2429), - [anon_sym_try] = ACTIONS(2429), - [anon_sym_delete] = ACTIONS(2429), - [anon_sym_throw] = ACTIONS(2429), - [anon_sym_namespace] = ACTIONS(2429), - [anon_sym_using] = ACTIONS(2429), - [anon_sym_static_assert] = ACTIONS(2429), - [anon_sym_concept] = ACTIONS(2429), - [anon_sym_co_return] = ACTIONS(2429), - [anon_sym_co_yield] = ACTIONS(2429), - [anon_sym_co_await] = ACTIONS(2429), - [anon_sym_new] = ACTIONS(2429), - [anon_sym_requires] = ACTIONS(2429), - [sym_this] = ACTIONS(2429), - [sym_nullptr] = ACTIONS(2429), - [sym_raw_string_literal] = ACTIONS(2431), - }, - [369] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token2] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [aux_sym_preproc_else_token1] = ACTIONS(2347), - [aux_sym_preproc_elif_token1] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [370] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token2] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [aux_sym_preproc_else_token1] = ACTIONS(2347), - [aux_sym_preproc_elif_token1] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [371] = { - [sym_identifier] = ACTIONS(2433), - [aux_sym_preproc_include_token1] = ACTIONS(2433), - [aux_sym_preproc_def_token1] = ACTIONS(2433), - [aux_sym_preproc_if_token1] = ACTIONS(2433), - [aux_sym_preproc_if_token2] = ACTIONS(2433), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2433), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2433), - [aux_sym_preproc_else_token1] = ACTIONS(2433), - [aux_sym_preproc_elif_token1] = ACTIONS(2433), - [sym_preproc_directive] = ACTIONS(2433), - [anon_sym_LPAREN2] = ACTIONS(2435), - [anon_sym_BANG] = ACTIONS(2435), - [anon_sym_TILDE] = ACTIONS(2435), - [anon_sym_DASH] = ACTIONS(2433), - [anon_sym_PLUS] = ACTIONS(2433), - [anon_sym_STAR] = ACTIONS(2435), - [anon_sym_AMP_AMP] = ACTIONS(2435), - [anon_sym_AMP] = ACTIONS(2433), - [anon_sym_SEMI] = ACTIONS(2435), - [anon_sym_typedef] = ACTIONS(2433), - [anon_sym_extern] = ACTIONS(2433), - [anon_sym___attribute__] = ACTIONS(2433), - [anon_sym_COLON_COLON] = ACTIONS(2435), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2435), - [anon_sym___declspec] = ACTIONS(2433), - [anon_sym___based] = ACTIONS(2433), - [anon_sym___cdecl] = ACTIONS(2433), - [anon_sym___clrcall] = ACTIONS(2433), - [anon_sym___stdcall] = ACTIONS(2433), - [anon_sym___fastcall] = ACTIONS(2433), - [anon_sym___thiscall] = ACTIONS(2433), - [anon_sym___vectorcall] = ACTIONS(2433), - [anon_sym_LBRACE] = ACTIONS(2435), - [anon_sym_LBRACK] = ACTIONS(2433), - [anon_sym_static] = ACTIONS(2433), - [anon_sym_register] = ACTIONS(2433), - [anon_sym_inline] = ACTIONS(2433), - [anon_sym_thread_local] = ACTIONS(2433), - [anon_sym_const] = ACTIONS(2433), - [anon_sym_volatile] = ACTIONS(2433), - [anon_sym_restrict] = ACTIONS(2433), - [anon_sym__Atomic] = ACTIONS(2433), - [anon_sym_mutable] = ACTIONS(2433), - [anon_sym_constexpr] = ACTIONS(2433), - [anon_sym_constinit] = ACTIONS(2433), - [anon_sym_consteval] = ACTIONS(2433), - [anon_sym_signed] = ACTIONS(2433), - [anon_sym_unsigned] = ACTIONS(2433), - [anon_sym_long] = ACTIONS(2433), - [anon_sym_short] = ACTIONS(2433), - [sym_primitive_type] = ACTIONS(2433), - [anon_sym_enum] = ACTIONS(2433), - [anon_sym_class] = ACTIONS(2433), - [anon_sym_struct] = ACTIONS(2433), - [anon_sym_union] = ACTIONS(2433), - [anon_sym_if] = ACTIONS(2433), - [anon_sym_else] = ACTIONS(2433), - [anon_sym_switch] = ACTIONS(2433), - [anon_sym_case] = ACTIONS(2433), - [anon_sym_default] = ACTIONS(2433), - [anon_sym_while] = ACTIONS(2433), - [anon_sym_do] = ACTIONS(2433), - [anon_sym_for] = ACTIONS(2433), - [anon_sym_return] = ACTIONS(2433), - [anon_sym_break] = ACTIONS(2433), - [anon_sym_continue] = ACTIONS(2433), - [anon_sym_goto] = ACTIONS(2433), - [anon_sym_DASH_DASH] = ACTIONS(2435), - [anon_sym_PLUS_PLUS] = ACTIONS(2435), - [anon_sym_sizeof] = ACTIONS(2433), - [sym_number_literal] = ACTIONS(2435), - [anon_sym_L_SQUOTE] = ACTIONS(2435), - [anon_sym_u_SQUOTE] = ACTIONS(2435), - [anon_sym_U_SQUOTE] = ACTIONS(2435), - [anon_sym_u8_SQUOTE] = ACTIONS(2435), - [anon_sym_SQUOTE] = ACTIONS(2435), - [anon_sym_L_DQUOTE] = ACTIONS(2435), - [anon_sym_u_DQUOTE] = ACTIONS(2435), - [anon_sym_U_DQUOTE] = ACTIONS(2435), - [anon_sym_u8_DQUOTE] = ACTIONS(2435), - [anon_sym_DQUOTE] = ACTIONS(2435), - [sym_true] = ACTIONS(2433), - [sym_false] = ACTIONS(2433), - [sym_null] = ACTIONS(2433), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2433), - [anon_sym_decltype] = ACTIONS(2433), - [anon_sym_virtual] = ACTIONS(2433), - [anon_sym_explicit] = ACTIONS(2433), - [anon_sym_typename] = ACTIONS(2433), - [anon_sym_template] = ACTIONS(2433), - [anon_sym_operator] = ACTIONS(2433), - [anon_sym_try] = ACTIONS(2433), - [anon_sym_delete] = ACTIONS(2433), - [anon_sym_throw] = ACTIONS(2433), - [anon_sym_namespace] = ACTIONS(2433), - [anon_sym_using] = ACTIONS(2433), - [anon_sym_static_assert] = ACTIONS(2433), - [anon_sym_concept] = ACTIONS(2433), - [anon_sym_co_return] = ACTIONS(2433), - [anon_sym_co_yield] = ACTIONS(2433), - [anon_sym_co_await] = ACTIONS(2433), - [anon_sym_new] = ACTIONS(2433), - [anon_sym_requires] = ACTIONS(2433), - [sym_this] = ACTIONS(2433), - [sym_nullptr] = ACTIONS(2433), - [sym_raw_string_literal] = ACTIONS(2435), - }, - [372] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token2] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [aux_sym_preproc_else_token1] = ACTIONS(2347), - [aux_sym_preproc_elif_token1] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [373] = { - [sym_identifier] = ACTIONS(2437), - [aux_sym_preproc_include_token1] = ACTIONS(2437), - [aux_sym_preproc_def_token1] = ACTIONS(2437), - [aux_sym_preproc_if_token1] = ACTIONS(2437), - [aux_sym_preproc_if_token2] = ACTIONS(2437), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2437), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2437), - [aux_sym_preproc_else_token1] = ACTIONS(2437), - [aux_sym_preproc_elif_token1] = ACTIONS(2437), - [sym_preproc_directive] = ACTIONS(2437), - [anon_sym_LPAREN2] = ACTIONS(2439), - [anon_sym_BANG] = ACTIONS(2439), - [anon_sym_TILDE] = ACTIONS(2439), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2439), - [anon_sym_AMP_AMP] = ACTIONS(2439), - [anon_sym_AMP] = ACTIONS(2437), - [anon_sym_SEMI] = ACTIONS(2439), - [anon_sym_typedef] = ACTIONS(2437), - [anon_sym_extern] = ACTIONS(2437), - [anon_sym___attribute__] = ACTIONS(2437), - [anon_sym_COLON_COLON] = ACTIONS(2439), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2439), - [anon_sym___declspec] = ACTIONS(2437), - [anon_sym___based] = ACTIONS(2437), - [anon_sym___cdecl] = ACTIONS(2437), - [anon_sym___clrcall] = ACTIONS(2437), - [anon_sym___stdcall] = ACTIONS(2437), - [anon_sym___fastcall] = ACTIONS(2437), - [anon_sym___thiscall] = ACTIONS(2437), - [anon_sym___vectorcall] = ACTIONS(2437), - [anon_sym_LBRACE] = ACTIONS(2439), - [anon_sym_LBRACK] = ACTIONS(2437), - [anon_sym_static] = ACTIONS(2437), - [anon_sym_register] = ACTIONS(2437), - [anon_sym_inline] = ACTIONS(2437), - [anon_sym_thread_local] = ACTIONS(2437), - [anon_sym_const] = ACTIONS(2437), - [anon_sym_volatile] = ACTIONS(2437), - [anon_sym_restrict] = ACTIONS(2437), - [anon_sym__Atomic] = ACTIONS(2437), - [anon_sym_mutable] = ACTIONS(2437), - [anon_sym_constexpr] = ACTIONS(2437), - [anon_sym_constinit] = ACTIONS(2437), - [anon_sym_consteval] = ACTIONS(2437), - [anon_sym_signed] = ACTIONS(2437), - [anon_sym_unsigned] = ACTIONS(2437), - [anon_sym_long] = ACTIONS(2437), - [anon_sym_short] = ACTIONS(2437), - [sym_primitive_type] = ACTIONS(2437), - [anon_sym_enum] = ACTIONS(2437), - [anon_sym_class] = ACTIONS(2437), - [anon_sym_struct] = ACTIONS(2437), - [anon_sym_union] = ACTIONS(2437), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_else] = ACTIONS(2441), - [anon_sym_switch] = ACTIONS(2437), - [anon_sym_case] = ACTIONS(2437), - [anon_sym_default] = ACTIONS(2437), - [anon_sym_while] = ACTIONS(2437), - [anon_sym_do] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_return] = ACTIONS(2437), - [anon_sym_break] = ACTIONS(2437), - [anon_sym_continue] = ACTIONS(2437), - [anon_sym_goto] = ACTIONS(2437), - [anon_sym_DASH_DASH] = ACTIONS(2439), - [anon_sym_PLUS_PLUS] = ACTIONS(2439), - [anon_sym_sizeof] = ACTIONS(2437), - [sym_number_literal] = ACTIONS(2439), - [anon_sym_L_SQUOTE] = ACTIONS(2439), - [anon_sym_u_SQUOTE] = ACTIONS(2439), - [anon_sym_U_SQUOTE] = ACTIONS(2439), - [anon_sym_u8_SQUOTE] = ACTIONS(2439), - [anon_sym_SQUOTE] = ACTIONS(2439), - [anon_sym_L_DQUOTE] = ACTIONS(2439), - [anon_sym_u_DQUOTE] = ACTIONS(2439), - [anon_sym_U_DQUOTE] = ACTIONS(2439), - [anon_sym_u8_DQUOTE] = ACTIONS(2439), - [anon_sym_DQUOTE] = ACTIONS(2439), - [sym_true] = ACTIONS(2437), - [sym_false] = ACTIONS(2437), - [sym_null] = ACTIONS(2437), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2437), - [anon_sym_decltype] = ACTIONS(2437), - [anon_sym_virtual] = ACTIONS(2437), - [anon_sym_explicit] = ACTIONS(2437), - [anon_sym_typename] = ACTIONS(2437), - [anon_sym_template] = ACTIONS(2437), - [anon_sym_operator] = ACTIONS(2437), - [anon_sym_try] = ACTIONS(2437), - [anon_sym_delete] = ACTIONS(2437), - [anon_sym_throw] = ACTIONS(2437), - [anon_sym_namespace] = ACTIONS(2437), - [anon_sym_using] = ACTIONS(2437), - [anon_sym_static_assert] = ACTIONS(2437), - [anon_sym_concept] = ACTIONS(2437), - [anon_sym_co_return] = ACTIONS(2437), - [anon_sym_co_yield] = ACTIONS(2437), - [anon_sym_co_await] = ACTIONS(2437), - [anon_sym_new] = ACTIONS(2437), - [anon_sym_requires] = ACTIONS(2437), - [sym_this] = ACTIONS(2437), - [sym_nullptr] = ACTIONS(2437), - [sym_raw_string_literal] = ACTIONS(2439), - }, - [374] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token2] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [aux_sym_preproc_else_token1] = ACTIONS(2347), - [aux_sym_preproc_elif_token1] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [375] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token2] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [aux_sym_preproc_else_token1] = ACTIONS(2347), - [aux_sym_preproc_elif_token1] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [376] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token2] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [aux_sym_preproc_else_token1] = ACTIONS(2347), - [aux_sym_preproc_elif_token1] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [377] = { - [sym_catch_clause] = STATE(333), - [aux_sym_constructor_try_statement_repeat1] = STATE(333), - [sym_identifier] = ACTIONS(2274), - [aux_sym_preproc_include_token1] = ACTIONS(2274), - [aux_sym_preproc_def_token1] = ACTIONS(2274), - [aux_sym_preproc_if_token1] = ACTIONS(2274), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2274), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2274), - [sym_preproc_directive] = ACTIONS(2274), - [anon_sym_LPAREN2] = ACTIONS(2276), - [anon_sym_BANG] = ACTIONS(2276), - [anon_sym_TILDE] = ACTIONS(2276), - [anon_sym_DASH] = ACTIONS(2274), - [anon_sym_PLUS] = ACTIONS(2274), - [anon_sym_STAR] = ACTIONS(2276), - [anon_sym_AMP_AMP] = ACTIONS(2276), - [anon_sym_AMP] = ACTIONS(2274), - [anon_sym_SEMI] = ACTIONS(2276), - [anon_sym_typedef] = ACTIONS(2274), - [anon_sym_extern] = ACTIONS(2274), - [anon_sym___attribute__] = ACTIONS(2274), - [anon_sym_COLON_COLON] = ACTIONS(2276), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2276), - [anon_sym___declspec] = ACTIONS(2274), - [anon_sym___based] = ACTIONS(2274), - [anon_sym___cdecl] = ACTIONS(2274), - [anon_sym___clrcall] = ACTIONS(2274), - [anon_sym___stdcall] = ACTIONS(2274), - [anon_sym___fastcall] = ACTIONS(2274), - [anon_sym___thiscall] = ACTIONS(2274), - [anon_sym___vectorcall] = ACTIONS(2274), - [anon_sym_LBRACE] = ACTIONS(2276), - [anon_sym_RBRACE] = ACTIONS(2276), - [anon_sym_LBRACK] = ACTIONS(2274), - [anon_sym_static] = ACTIONS(2274), - [anon_sym_register] = ACTIONS(2274), - [anon_sym_inline] = ACTIONS(2274), - [anon_sym_thread_local] = ACTIONS(2274), - [anon_sym_const] = ACTIONS(2274), - [anon_sym_volatile] = ACTIONS(2274), - [anon_sym_restrict] = ACTIONS(2274), - [anon_sym__Atomic] = ACTIONS(2274), - [anon_sym_mutable] = ACTIONS(2274), - [anon_sym_constexpr] = ACTIONS(2274), - [anon_sym_constinit] = ACTIONS(2274), - [anon_sym_consteval] = ACTIONS(2274), - [anon_sym_signed] = ACTIONS(2274), - [anon_sym_unsigned] = ACTIONS(2274), - [anon_sym_long] = ACTIONS(2274), - [anon_sym_short] = ACTIONS(2274), - [sym_primitive_type] = ACTIONS(2274), - [anon_sym_enum] = ACTIONS(2274), - [anon_sym_class] = ACTIONS(2274), - [anon_sym_struct] = ACTIONS(2274), - [anon_sym_union] = ACTIONS(2274), - [anon_sym_if] = ACTIONS(2274), - [anon_sym_switch] = ACTIONS(2274), - [anon_sym_case] = ACTIONS(2274), - [anon_sym_default] = ACTIONS(2274), - [anon_sym_while] = ACTIONS(2274), - [anon_sym_do] = ACTIONS(2274), - [anon_sym_for] = ACTIONS(2274), - [anon_sym_return] = ACTIONS(2274), - [anon_sym_break] = ACTIONS(2274), - [anon_sym_continue] = ACTIONS(2274), - [anon_sym_goto] = ACTIONS(2274), - [anon_sym_DASH_DASH] = ACTIONS(2276), - [anon_sym_PLUS_PLUS] = ACTIONS(2276), - [anon_sym_sizeof] = ACTIONS(2274), - [sym_number_literal] = ACTIONS(2276), - [anon_sym_L_SQUOTE] = ACTIONS(2276), - [anon_sym_u_SQUOTE] = ACTIONS(2276), - [anon_sym_U_SQUOTE] = ACTIONS(2276), - [anon_sym_u8_SQUOTE] = ACTIONS(2276), - [anon_sym_SQUOTE] = ACTIONS(2276), - [anon_sym_L_DQUOTE] = ACTIONS(2276), - [anon_sym_u_DQUOTE] = ACTIONS(2276), - [anon_sym_U_DQUOTE] = ACTIONS(2276), - [anon_sym_u8_DQUOTE] = ACTIONS(2276), - [anon_sym_DQUOTE] = ACTIONS(2276), - [sym_true] = ACTIONS(2274), - [sym_false] = ACTIONS(2274), - [sym_null] = ACTIONS(2274), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2274), - [anon_sym_decltype] = ACTIONS(2274), - [anon_sym_virtual] = ACTIONS(2274), - [anon_sym_explicit] = ACTIONS(2274), - [anon_sym_typename] = ACTIONS(2274), - [anon_sym_template] = ACTIONS(2274), - [anon_sym_operator] = ACTIONS(2274), - [anon_sym_try] = ACTIONS(2274), - [anon_sym_delete] = ACTIONS(2274), - [anon_sym_throw] = ACTIONS(2274), - [anon_sym_namespace] = ACTIONS(2274), - [anon_sym_using] = ACTIONS(2274), - [anon_sym_static_assert] = ACTIONS(2274), - [anon_sym_concept] = ACTIONS(2274), - [anon_sym_co_return] = ACTIONS(2274), - [anon_sym_co_yield] = ACTIONS(2274), - [anon_sym_catch] = ACTIONS(2298), - [anon_sym_co_await] = ACTIONS(2274), - [anon_sym_new] = ACTIONS(2274), - [anon_sym_requires] = ACTIONS(2274), - [sym_this] = ACTIONS(2274), - [sym_nullptr] = ACTIONS(2274), - [sym_raw_string_literal] = ACTIONS(2276), - }, - [378] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token2] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [aux_sym_preproc_else_token1] = ACTIONS(2347), - [aux_sym_preproc_elif_token1] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [379] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token2] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [aux_sym_preproc_else_token1] = ACTIONS(2347), - [aux_sym_preproc_elif_token1] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [380] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token2] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [aux_sym_preproc_else_token1] = ACTIONS(2347), - [aux_sym_preproc_elif_token1] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [381] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token2] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [aux_sym_preproc_else_token1] = ACTIONS(2347), - [aux_sym_preproc_elif_token1] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [382] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token2] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [aux_sym_preproc_else_token1] = ACTIONS(2347), - [aux_sym_preproc_elif_token1] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [383] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token2] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [aux_sym_preproc_else_token1] = ACTIONS(2347), - [aux_sym_preproc_elif_token1] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [384] = { - [sym_identifier] = ACTIONS(2443), - [aux_sym_preproc_include_token1] = ACTIONS(2443), - [aux_sym_preproc_def_token1] = ACTIONS(2443), - [aux_sym_preproc_if_token1] = ACTIONS(2443), - [aux_sym_preproc_if_token2] = ACTIONS(2443), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2443), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2443), - [aux_sym_preproc_else_token1] = ACTIONS(2443), - [aux_sym_preproc_elif_token1] = ACTIONS(2443), - [sym_preproc_directive] = ACTIONS(2443), - [anon_sym_LPAREN2] = ACTIONS(2445), - [anon_sym_BANG] = ACTIONS(2445), - [anon_sym_TILDE] = ACTIONS(2445), - [anon_sym_DASH] = ACTIONS(2443), - [anon_sym_PLUS] = ACTIONS(2443), - [anon_sym_STAR] = ACTIONS(2445), - [anon_sym_AMP_AMP] = ACTIONS(2445), - [anon_sym_AMP] = ACTIONS(2443), - [anon_sym_SEMI] = ACTIONS(2445), - [anon_sym_typedef] = ACTIONS(2443), - [anon_sym_extern] = ACTIONS(2443), - [anon_sym___attribute__] = ACTIONS(2443), - [anon_sym_COLON_COLON] = ACTIONS(2445), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2445), - [anon_sym___declspec] = ACTIONS(2443), - [anon_sym___based] = ACTIONS(2443), - [anon_sym___cdecl] = ACTIONS(2443), - [anon_sym___clrcall] = ACTIONS(2443), - [anon_sym___stdcall] = ACTIONS(2443), - [anon_sym___fastcall] = ACTIONS(2443), - [anon_sym___thiscall] = ACTIONS(2443), - [anon_sym___vectorcall] = ACTIONS(2443), - [anon_sym_LBRACE] = ACTIONS(2445), - [anon_sym_LBRACK] = ACTIONS(2443), - [anon_sym_static] = ACTIONS(2443), - [anon_sym_register] = ACTIONS(2443), - [anon_sym_inline] = ACTIONS(2443), - [anon_sym_thread_local] = ACTIONS(2443), - [anon_sym_const] = ACTIONS(2443), - [anon_sym_volatile] = ACTIONS(2443), - [anon_sym_restrict] = ACTIONS(2443), - [anon_sym__Atomic] = ACTIONS(2443), - [anon_sym_mutable] = ACTIONS(2443), - [anon_sym_constexpr] = ACTIONS(2443), - [anon_sym_constinit] = ACTIONS(2443), - [anon_sym_consteval] = ACTIONS(2443), - [anon_sym_signed] = ACTIONS(2443), - [anon_sym_unsigned] = ACTIONS(2443), - [anon_sym_long] = ACTIONS(2443), - [anon_sym_short] = ACTIONS(2443), - [sym_primitive_type] = ACTIONS(2443), - [anon_sym_enum] = ACTIONS(2443), - [anon_sym_class] = ACTIONS(2443), - [anon_sym_struct] = ACTIONS(2443), - [anon_sym_union] = ACTIONS(2443), - [anon_sym_if] = ACTIONS(2443), - [anon_sym_else] = ACTIONS(2443), - [anon_sym_switch] = ACTIONS(2443), - [anon_sym_case] = ACTIONS(2443), - [anon_sym_default] = ACTIONS(2443), - [anon_sym_while] = ACTIONS(2443), - [anon_sym_do] = ACTIONS(2443), - [anon_sym_for] = ACTIONS(2443), - [anon_sym_return] = ACTIONS(2443), - [anon_sym_break] = ACTIONS(2443), - [anon_sym_continue] = ACTIONS(2443), - [anon_sym_goto] = ACTIONS(2443), - [anon_sym_DASH_DASH] = ACTIONS(2445), - [anon_sym_PLUS_PLUS] = ACTIONS(2445), - [anon_sym_sizeof] = ACTIONS(2443), - [sym_number_literal] = ACTIONS(2445), - [anon_sym_L_SQUOTE] = ACTIONS(2445), - [anon_sym_u_SQUOTE] = ACTIONS(2445), - [anon_sym_U_SQUOTE] = ACTIONS(2445), - [anon_sym_u8_SQUOTE] = ACTIONS(2445), - [anon_sym_SQUOTE] = ACTIONS(2445), - [anon_sym_L_DQUOTE] = ACTIONS(2445), - [anon_sym_u_DQUOTE] = ACTIONS(2445), - [anon_sym_U_DQUOTE] = ACTIONS(2445), - [anon_sym_u8_DQUOTE] = ACTIONS(2445), - [anon_sym_DQUOTE] = ACTIONS(2445), - [sym_true] = ACTIONS(2443), - [sym_false] = ACTIONS(2443), - [sym_null] = ACTIONS(2443), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2443), - [anon_sym_decltype] = ACTIONS(2443), - [anon_sym_virtual] = ACTIONS(2443), - [anon_sym_explicit] = ACTIONS(2443), - [anon_sym_typename] = ACTIONS(2443), - [anon_sym_template] = ACTIONS(2443), - [anon_sym_operator] = ACTIONS(2443), - [anon_sym_try] = ACTIONS(2443), - [anon_sym_delete] = ACTIONS(2443), - [anon_sym_throw] = ACTIONS(2443), - [anon_sym_namespace] = ACTIONS(2443), - [anon_sym_using] = ACTIONS(2443), - [anon_sym_static_assert] = ACTIONS(2443), - [anon_sym_concept] = ACTIONS(2443), - [anon_sym_co_return] = ACTIONS(2443), - [anon_sym_co_yield] = ACTIONS(2443), - [anon_sym_co_await] = ACTIONS(2443), - [anon_sym_new] = ACTIONS(2443), - [anon_sym_requires] = ACTIONS(2443), - [sym_this] = ACTIONS(2443), - [sym_nullptr] = ACTIONS(2443), - [sym_raw_string_literal] = ACTIONS(2445), - }, - [385] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token2] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [aux_sym_preproc_else_token1] = ACTIONS(2347), - [aux_sym_preproc_elif_token1] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [386] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token2] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [aux_sym_preproc_else_token1] = ACTIONS(2347), - [aux_sym_preproc_elif_token1] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [387] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token2] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [aux_sym_preproc_else_token1] = ACTIONS(2347), - [aux_sym_preproc_elif_token1] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [388] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token2] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [aux_sym_preproc_else_token1] = ACTIONS(2347), - [aux_sym_preproc_elif_token1] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [389] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token2] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [aux_sym_preproc_else_token1] = ACTIONS(2347), - [aux_sym_preproc_elif_token1] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [390] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token2] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [aux_sym_preproc_else_token1] = ACTIONS(2347), - [aux_sym_preproc_elif_token1] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [391] = { - [sym_identifier] = ACTIONS(2447), - [aux_sym_preproc_include_token1] = ACTIONS(2447), - [aux_sym_preproc_def_token1] = ACTIONS(2447), - [aux_sym_preproc_if_token1] = ACTIONS(2447), - [aux_sym_preproc_if_token2] = ACTIONS(2447), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2447), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2447), - [aux_sym_preproc_else_token1] = ACTIONS(2447), - [aux_sym_preproc_elif_token1] = ACTIONS(2447), - [sym_preproc_directive] = ACTIONS(2447), - [anon_sym_LPAREN2] = ACTIONS(2449), - [anon_sym_BANG] = ACTIONS(2449), - [anon_sym_TILDE] = ACTIONS(2449), - [anon_sym_DASH] = ACTIONS(2447), - [anon_sym_PLUS] = ACTIONS(2447), - [anon_sym_STAR] = ACTIONS(2449), - [anon_sym_AMP_AMP] = ACTIONS(2449), - [anon_sym_AMP] = ACTIONS(2447), - [anon_sym_SEMI] = ACTIONS(2449), - [anon_sym_typedef] = ACTIONS(2447), - [anon_sym_extern] = ACTIONS(2447), - [anon_sym___attribute__] = ACTIONS(2447), - [anon_sym_COLON_COLON] = ACTIONS(2449), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2449), - [anon_sym___declspec] = ACTIONS(2447), - [anon_sym___based] = ACTIONS(2447), - [anon_sym___cdecl] = ACTIONS(2447), - [anon_sym___clrcall] = ACTIONS(2447), - [anon_sym___stdcall] = ACTIONS(2447), - [anon_sym___fastcall] = ACTIONS(2447), - [anon_sym___thiscall] = ACTIONS(2447), - [anon_sym___vectorcall] = ACTIONS(2447), - [anon_sym_LBRACE] = ACTIONS(2449), - [anon_sym_LBRACK] = ACTIONS(2447), - [anon_sym_static] = ACTIONS(2447), - [anon_sym_register] = ACTIONS(2447), - [anon_sym_inline] = ACTIONS(2447), - [anon_sym_thread_local] = ACTIONS(2447), - [anon_sym_const] = ACTIONS(2447), - [anon_sym_volatile] = ACTIONS(2447), - [anon_sym_restrict] = ACTIONS(2447), - [anon_sym__Atomic] = ACTIONS(2447), - [anon_sym_mutable] = ACTIONS(2447), - [anon_sym_constexpr] = ACTIONS(2447), - [anon_sym_constinit] = ACTIONS(2447), - [anon_sym_consteval] = ACTIONS(2447), - [anon_sym_signed] = ACTIONS(2447), - [anon_sym_unsigned] = ACTIONS(2447), - [anon_sym_long] = ACTIONS(2447), - [anon_sym_short] = ACTIONS(2447), - [sym_primitive_type] = ACTIONS(2447), - [anon_sym_enum] = ACTIONS(2447), - [anon_sym_class] = ACTIONS(2447), - [anon_sym_struct] = ACTIONS(2447), - [anon_sym_union] = ACTIONS(2447), - [anon_sym_if] = ACTIONS(2447), - [anon_sym_else] = ACTIONS(2447), - [anon_sym_switch] = ACTIONS(2447), - [anon_sym_case] = ACTIONS(2447), - [anon_sym_default] = ACTIONS(2447), - [anon_sym_while] = ACTIONS(2447), - [anon_sym_do] = ACTIONS(2447), - [anon_sym_for] = ACTIONS(2447), - [anon_sym_return] = ACTIONS(2447), - [anon_sym_break] = ACTIONS(2447), - [anon_sym_continue] = ACTIONS(2447), - [anon_sym_goto] = ACTIONS(2447), - [anon_sym_DASH_DASH] = ACTIONS(2449), - [anon_sym_PLUS_PLUS] = ACTIONS(2449), - [anon_sym_sizeof] = ACTIONS(2447), - [sym_number_literal] = ACTIONS(2449), - [anon_sym_L_SQUOTE] = ACTIONS(2449), - [anon_sym_u_SQUOTE] = ACTIONS(2449), - [anon_sym_U_SQUOTE] = ACTIONS(2449), - [anon_sym_u8_SQUOTE] = ACTIONS(2449), - [anon_sym_SQUOTE] = ACTIONS(2449), - [anon_sym_L_DQUOTE] = ACTIONS(2449), - [anon_sym_u_DQUOTE] = ACTIONS(2449), - [anon_sym_U_DQUOTE] = ACTIONS(2449), - [anon_sym_u8_DQUOTE] = ACTIONS(2449), - [anon_sym_DQUOTE] = ACTIONS(2449), - [sym_true] = ACTIONS(2447), - [sym_false] = ACTIONS(2447), - [sym_null] = ACTIONS(2447), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2447), - [anon_sym_decltype] = ACTIONS(2447), - [anon_sym_virtual] = ACTIONS(2447), - [anon_sym_explicit] = ACTIONS(2447), - [anon_sym_typename] = ACTIONS(2447), - [anon_sym_template] = ACTIONS(2447), - [anon_sym_operator] = ACTIONS(2447), - [anon_sym_try] = ACTIONS(2447), - [anon_sym_delete] = ACTIONS(2447), - [anon_sym_throw] = ACTIONS(2447), - [anon_sym_namespace] = ACTIONS(2447), - [anon_sym_using] = ACTIONS(2447), - [anon_sym_static_assert] = ACTIONS(2447), - [anon_sym_concept] = ACTIONS(2447), - [anon_sym_co_return] = ACTIONS(2447), - [anon_sym_co_yield] = ACTIONS(2447), - [anon_sym_co_await] = ACTIONS(2447), - [anon_sym_new] = ACTIONS(2447), - [anon_sym_requires] = ACTIONS(2447), - [sym_this] = ACTIONS(2447), - [sym_nullptr] = ACTIONS(2447), - [sym_raw_string_literal] = ACTIONS(2449), - }, - [392] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token2] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [aux_sym_preproc_else_token1] = ACTIONS(2347), - [aux_sym_preproc_elif_token1] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [393] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token2] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [aux_sym_preproc_else_token1] = ACTIONS(2347), - [aux_sym_preproc_elif_token1] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [394] = { - [sym_identifier] = ACTIONS(2451), - [aux_sym_preproc_include_token1] = ACTIONS(2451), - [aux_sym_preproc_def_token1] = ACTIONS(2451), - [aux_sym_preproc_if_token1] = ACTIONS(2451), - [aux_sym_preproc_if_token2] = ACTIONS(2451), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2451), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2451), - [aux_sym_preproc_else_token1] = ACTIONS(2451), - [aux_sym_preproc_elif_token1] = ACTIONS(2451), - [sym_preproc_directive] = ACTIONS(2451), - [anon_sym_LPAREN2] = ACTIONS(2453), - [anon_sym_BANG] = ACTIONS(2453), - [anon_sym_TILDE] = ACTIONS(2453), - [anon_sym_DASH] = ACTIONS(2451), - [anon_sym_PLUS] = ACTIONS(2451), - [anon_sym_STAR] = ACTIONS(2453), - [anon_sym_AMP_AMP] = ACTIONS(2453), - [anon_sym_AMP] = ACTIONS(2451), - [anon_sym_SEMI] = ACTIONS(2453), - [anon_sym_typedef] = ACTIONS(2451), - [anon_sym_extern] = ACTIONS(2451), - [anon_sym___attribute__] = ACTIONS(2451), - [anon_sym_COLON_COLON] = ACTIONS(2453), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2453), - [anon_sym___declspec] = ACTIONS(2451), - [anon_sym___based] = ACTIONS(2451), - [anon_sym___cdecl] = ACTIONS(2451), - [anon_sym___clrcall] = ACTIONS(2451), - [anon_sym___stdcall] = ACTIONS(2451), - [anon_sym___fastcall] = ACTIONS(2451), - [anon_sym___thiscall] = ACTIONS(2451), - [anon_sym___vectorcall] = ACTIONS(2451), - [anon_sym_LBRACE] = ACTIONS(2453), - [anon_sym_LBRACK] = ACTIONS(2451), - [anon_sym_static] = ACTIONS(2451), - [anon_sym_register] = ACTIONS(2451), - [anon_sym_inline] = ACTIONS(2451), - [anon_sym_thread_local] = ACTIONS(2451), - [anon_sym_const] = ACTIONS(2451), - [anon_sym_volatile] = ACTIONS(2451), - [anon_sym_restrict] = ACTIONS(2451), - [anon_sym__Atomic] = ACTIONS(2451), - [anon_sym_mutable] = ACTIONS(2451), - [anon_sym_constexpr] = ACTIONS(2451), - [anon_sym_constinit] = ACTIONS(2451), - [anon_sym_consteval] = ACTIONS(2451), - [anon_sym_signed] = ACTIONS(2451), - [anon_sym_unsigned] = ACTIONS(2451), - [anon_sym_long] = ACTIONS(2451), - [anon_sym_short] = ACTIONS(2451), - [sym_primitive_type] = ACTIONS(2451), - [anon_sym_enum] = ACTIONS(2451), - [anon_sym_class] = ACTIONS(2451), - [anon_sym_struct] = ACTIONS(2451), - [anon_sym_union] = ACTIONS(2451), - [anon_sym_if] = ACTIONS(2451), - [anon_sym_else] = ACTIONS(2451), - [anon_sym_switch] = ACTIONS(2451), - [anon_sym_case] = ACTIONS(2451), - [anon_sym_default] = ACTIONS(2451), - [anon_sym_while] = ACTIONS(2451), - [anon_sym_do] = ACTIONS(2451), - [anon_sym_for] = ACTIONS(2451), - [anon_sym_return] = ACTIONS(2451), - [anon_sym_break] = ACTIONS(2451), - [anon_sym_continue] = ACTIONS(2451), - [anon_sym_goto] = ACTIONS(2451), - [anon_sym_DASH_DASH] = ACTIONS(2453), - [anon_sym_PLUS_PLUS] = ACTIONS(2453), - [anon_sym_sizeof] = ACTIONS(2451), - [sym_number_literal] = ACTIONS(2453), - [anon_sym_L_SQUOTE] = ACTIONS(2453), - [anon_sym_u_SQUOTE] = ACTIONS(2453), - [anon_sym_U_SQUOTE] = ACTIONS(2453), - [anon_sym_u8_SQUOTE] = ACTIONS(2453), - [anon_sym_SQUOTE] = ACTIONS(2453), - [anon_sym_L_DQUOTE] = ACTIONS(2453), - [anon_sym_u_DQUOTE] = ACTIONS(2453), - [anon_sym_U_DQUOTE] = ACTIONS(2453), - [anon_sym_u8_DQUOTE] = ACTIONS(2453), - [anon_sym_DQUOTE] = ACTIONS(2453), - [sym_true] = ACTIONS(2451), - [sym_false] = ACTIONS(2451), - [sym_null] = ACTIONS(2451), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2451), - [anon_sym_decltype] = ACTIONS(2451), - [anon_sym_virtual] = ACTIONS(2451), - [anon_sym_explicit] = ACTIONS(2451), - [anon_sym_typename] = ACTIONS(2451), - [anon_sym_template] = ACTIONS(2451), - [anon_sym_operator] = ACTIONS(2451), - [anon_sym_try] = ACTIONS(2451), - [anon_sym_delete] = ACTIONS(2451), - [anon_sym_throw] = ACTIONS(2451), - [anon_sym_namespace] = ACTIONS(2451), - [anon_sym_using] = ACTIONS(2451), - [anon_sym_static_assert] = ACTIONS(2451), - [anon_sym_concept] = ACTIONS(2451), - [anon_sym_co_return] = ACTIONS(2451), - [anon_sym_co_yield] = ACTIONS(2451), - [anon_sym_co_await] = ACTIONS(2451), - [anon_sym_new] = ACTIONS(2451), - [anon_sym_requires] = ACTIONS(2451), - [sym_this] = ACTIONS(2451), - [sym_nullptr] = ACTIONS(2451), - [sym_raw_string_literal] = ACTIONS(2453), - }, - [395] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token2] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [aux_sym_preproc_else_token1] = ACTIONS(2347), - [aux_sym_preproc_elif_token1] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [396] = { - [sym_identifier] = ACTIONS(2455), - [aux_sym_preproc_include_token1] = ACTIONS(2455), - [aux_sym_preproc_def_token1] = ACTIONS(2455), - [aux_sym_preproc_if_token1] = ACTIONS(2455), - [aux_sym_preproc_if_token2] = ACTIONS(2455), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2455), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2455), - [aux_sym_preproc_else_token1] = ACTIONS(2455), - [aux_sym_preproc_elif_token1] = ACTIONS(2455), - [sym_preproc_directive] = ACTIONS(2455), - [anon_sym_LPAREN2] = ACTIONS(2457), - [anon_sym_BANG] = ACTIONS(2457), - [anon_sym_TILDE] = ACTIONS(2457), - [anon_sym_DASH] = ACTIONS(2455), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_STAR] = ACTIONS(2457), - [anon_sym_AMP_AMP] = ACTIONS(2457), - [anon_sym_AMP] = ACTIONS(2455), - [anon_sym_SEMI] = ACTIONS(2457), - [anon_sym_typedef] = ACTIONS(2455), - [anon_sym_extern] = ACTIONS(2455), - [anon_sym___attribute__] = ACTIONS(2455), - [anon_sym_COLON_COLON] = ACTIONS(2457), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2457), - [anon_sym___declspec] = ACTIONS(2455), - [anon_sym___based] = ACTIONS(2455), - [anon_sym___cdecl] = ACTIONS(2455), - [anon_sym___clrcall] = ACTIONS(2455), - [anon_sym___stdcall] = ACTIONS(2455), - [anon_sym___fastcall] = ACTIONS(2455), - [anon_sym___thiscall] = ACTIONS(2455), - [anon_sym___vectorcall] = ACTIONS(2455), - [anon_sym_LBRACE] = ACTIONS(2457), - [anon_sym_LBRACK] = ACTIONS(2455), - [anon_sym_static] = ACTIONS(2455), - [anon_sym_register] = ACTIONS(2455), - [anon_sym_inline] = ACTIONS(2455), - [anon_sym_thread_local] = ACTIONS(2455), - [anon_sym_const] = ACTIONS(2455), - [anon_sym_volatile] = ACTIONS(2455), - [anon_sym_restrict] = ACTIONS(2455), - [anon_sym__Atomic] = ACTIONS(2455), - [anon_sym_mutable] = ACTIONS(2455), - [anon_sym_constexpr] = ACTIONS(2455), - [anon_sym_constinit] = ACTIONS(2455), - [anon_sym_consteval] = ACTIONS(2455), - [anon_sym_signed] = ACTIONS(2455), - [anon_sym_unsigned] = ACTIONS(2455), - [anon_sym_long] = ACTIONS(2455), - [anon_sym_short] = ACTIONS(2455), - [sym_primitive_type] = ACTIONS(2455), - [anon_sym_enum] = ACTIONS(2455), - [anon_sym_class] = ACTIONS(2455), - [anon_sym_struct] = ACTIONS(2455), - [anon_sym_union] = ACTIONS(2455), - [anon_sym_if] = ACTIONS(2455), - [anon_sym_else] = ACTIONS(2455), - [anon_sym_switch] = ACTIONS(2455), - [anon_sym_case] = ACTIONS(2455), - [anon_sym_default] = ACTIONS(2455), - [anon_sym_while] = ACTIONS(2455), - [anon_sym_do] = ACTIONS(2455), - [anon_sym_for] = ACTIONS(2455), - [anon_sym_return] = ACTIONS(2455), - [anon_sym_break] = ACTIONS(2455), - [anon_sym_continue] = ACTIONS(2455), - [anon_sym_goto] = ACTIONS(2455), - [anon_sym_DASH_DASH] = ACTIONS(2457), - [anon_sym_PLUS_PLUS] = ACTIONS(2457), - [anon_sym_sizeof] = ACTIONS(2455), - [sym_number_literal] = ACTIONS(2457), - [anon_sym_L_SQUOTE] = ACTIONS(2457), - [anon_sym_u_SQUOTE] = ACTIONS(2457), - [anon_sym_U_SQUOTE] = ACTIONS(2457), - [anon_sym_u8_SQUOTE] = ACTIONS(2457), - [anon_sym_SQUOTE] = ACTIONS(2457), - [anon_sym_L_DQUOTE] = ACTIONS(2457), - [anon_sym_u_DQUOTE] = ACTIONS(2457), - [anon_sym_U_DQUOTE] = ACTIONS(2457), - [anon_sym_u8_DQUOTE] = ACTIONS(2457), - [anon_sym_DQUOTE] = ACTIONS(2457), - [sym_true] = ACTIONS(2455), - [sym_false] = ACTIONS(2455), - [sym_null] = ACTIONS(2455), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2455), - [anon_sym_decltype] = ACTIONS(2455), - [anon_sym_virtual] = ACTIONS(2455), - [anon_sym_explicit] = ACTIONS(2455), - [anon_sym_typename] = ACTIONS(2455), - [anon_sym_template] = ACTIONS(2455), - [anon_sym_operator] = ACTIONS(2455), - [anon_sym_try] = ACTIONS(2455), - [anon_sym_delete] = ACTIONS(2455), - [anon_sym_throw] = ACTIONS(2455), - [anon_sym_namespace] = ACTIONS(2455), - [anon_sym_using] = ACTIONS(2455), - [anon_sym_static_assert] = ACTIONS(2455), - [anon_sym_concept] = ACTIONS(2455), - [anon_sym_co_return] = ACTIONS(2455), - [anon_sym_co_yield] = ACTIONS(2455), - [anon_sym_co_await] = ACTIONS(2455), - [anon_sym_new] = ACTIONS(2455), - [anon_sym_requires] = ACTIONS(2455), - [sym_this] = ACTIONS(2455), - [sym_nullptr] = ACTIONS(2455), - [sym_raw_string_literal] = ACTIONS(2457), - }, - [397] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token2] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [aux_sym_preproc_else_token1] = ACTIONS(2459), - [aux_sym_preproc_elif_token1] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [398] = { - [sym_identifier] = ACTIONS(2463), - [aux_sym_preproc_include_token1] = ACTIONS(2463), - [aux_sym_preproc_def_token1] = ACTIONS(2463), - [aux_sym_preproc_if_token1] = ACTIONS(2463), - [aux_sym_preproc_if_token2] = ACTIONS(2463), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2463), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2463), - [aux_sym_preproc_else_token1] = ACTIONS(2463), - [aux_sym_preproc_elif_token1] = ACTIONS(2463), - [sym_preproc_directive] = ACTIONS(2463), - [anon_sym_LPAREN2] = ACTIONS(2465), - [anon_sym_BANG] = ACTIONS(2465), - [anon_sym_TILDE] = ACTIONS(2465), - [anon_sym_DASH] = ACTIONS(2463), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_STAR] = ACTIONS(2465), - [anon_sym_AMP_AMP] = ACTIONS(2465), - [anon_sym_AMP] = ACTIONS(2463), - [anon_sym_SEMI] = ACTIONS(2465), - [anon_sym_typedef] = ACTIONS(2463), - [anon_sym_extern] = ACTIONS(2463), - [anon_sym___attribute__] = ACTIONS(2463), - [anon_sym_COLON_COLON] = ACTIONS(2465), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2465), - [anon_sym___declspec] = ACTIONS(2463), - [anon_sym___based] = ACTIONS(2463), - [anon_sym___cdecl] = ACTIONS(2463), - [anon_sym___clrcall] = ACTIONS(2463), - [anon_sym___stdcall] = ACTIONS(2463), - [anon_sym___fastcall] = ACTIONS(2463), - [anon_sym___thiscall] = ACTIONS(2463), - [anon_sym___vectorcall] = ACTIONS(2463), - [anon_sym_LBRACE] = ACTIONS(2465), - [anon_sym_LBRACK] = ACTIONS(2463), - [anon_sym_static] = ACTIONS(2463), - [anon_sym_register] = ACTIONS(2463), - [anon_sym_inline] = ACTIONS(2463), - [anon_sym_thread_local] = ACTIONS(2463), - [anon_sym_const] = ACTIONS(2463), - [anon_sym_volatile] = ACTIONS(2463), - [anon_sym_restrict] = ACTIONS(2463), - [anon_sym__Atomic] = ACTIONS(2463), - [anon_sym_mutable] = ACTIONS(2463), - [anon_sym_constexpr] = ACTIONS(2463), - [anon_sym_constinit] = ACTIONS(2463), - [anon_sym_consteval] = ACTIONS(2463), - [anon_sym_signed] = ACTIONS(2463), - [anon_sym_unsigned] = ACTIONS(2463), - [anon_sym_long] = ACTIONS(2463), - [anon_sym_short] = ACTIONS(2463), - [sym_primitive_type] = ACTIONS(2463), - [anon_sym_enum] = ACTIONS(2463), - [anon_sym_class] = ACTIONS(2463), - [anon_sym_struct] = ACTIONS(2463), - [anon_sym_union] = ACTIONS(2463), - [anon_sym_if] = ACTIONS(2463), - [anon_sym_else] = ACTIONS(2463), - [anon_sym_switch] = ACTIONS(2463), - [anon_sym_case] = ACTIONS(2463), - [anon_sym_default] = ACTIONS(2463), - [anon_sym_while] = ACTIONS(2463), - [anon_sym_do] = ACTIONS(2463), - [anon_sym_for] = ACTIONS(2463), - [anon_sym_return] = ACTIONS(2463), - [anon_sym_break] = ACTIONS(2463), - [anon_sym_continue] = ACTIONS(2463), - [anon_sym_goto] = ACTIONS(2463), - [anon_sym_DASH_DASH] = ACTIONS(2465), - [anon_sym_PLUS_PLUS] = ACTIONS(2465), - [anon_sym_sizeof] = ACTIONS(2463), - [sym_number_literal] = ACTIONS(2465), - [anon_sym_L_SQUOTE] = ACTIONS(2465), - [anon_sym_u_SQUOTE] = ACTIONS(2465), - [anon_sym_U_SQUOTE] = ACTIONS(2465), - [anon_sym_u8_SQUOTE] = ACTIONS(2465), - [anon_sym_SQUOTE] = ACTIONS(2465), - [anon_sym_L_DQUOTE] = ACTIONS(2465), - [anon_sym_u_DQUOTE] = ACTIONS(2465), - [anon_sym_U_DQUOTE] = ACTIONS(2465), - [anon_sym_u8_DQUOTE] = ACTIONS(2465), - [anon_sym_DQUOTE] = ACTIONS(2465), - [sym_true] = ACTIONS(2463), - [sym_false] = ACTIONS(2463), - [sym_null] = ACTIONS(2463), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2463), - [anon_sym_decltype] = ACTIONS(2463), - [anon_sym_virtual] = ACTIONS(2463), - [anon_sym_explicit] = ACTIONS(2463), - [anon_sym_typename] = ACTIONS(2463), - [anon_sym_template] = ACTIONS(2463), - [anon_sym_operator] = ACTIONS(2463), - [anon_sym_try] = ACTIONS(2463), - [anon_sym_delete] = ACTIONS(2463), - [anon_sym_throw] = ACTIONS(2463), - [anon_sym_namespace] = ACTIONS(2463), - [anon_sym_using] = ACTIONS(2463), - [anon_sym_static_assert] = ACTIONS(2463), - [anon_sym_concept] = ACTIONS(2463), - [anon_sym_co_return] = ACTIONS(2463), - [anon_sym_co_yield] = ACTIONS(2463), - [anon_sym_co_await] = ACTIONS(2463), - [anon_sym_new] = ACTIONS(2463), - [anon_sym_requires] = ACTIONS(2463), - [sym_this] = ACTIONS(2463), - [sym_nullptr] = ACTIONS(2463), - [sym_raw_string_literal] = ACTIONS(2465), - }, - [399] = { - [sym_identifier] = ACTIONS(2467), - [aux_sym_preproc_include_token1] = ACTIONS(2467), - [aux_sym_preproc_def_token1] = ACTIONS(2467), - [aux_sym_preproc_if_token1] = ACTIONS(2467), - [aux_sym_preproc_if_token2] = ACTIONS(2467), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2467), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2467), - [aux_sym_preproc_else_token1] = ACTIONS(2467), - [aux_sym_preproc_elif_token1] = ACTIONS(2467), - [sym_preproc_directive] = ACTIONS(2467), - [anon_sym_LPAREN2] = ACTIONS(2469), - [anon_sym_BANG] = ACTIONS(2469), - [anon_sym_TILDE] = ACTIONS(2469), - [anon_sym_DASH] = ACTIONS(2467), - [anon_sym_PLUS] = ACTIONS(2467), - [anon_sym_STAR] = ACTIONS(2469), - [anon_sym_AMP_AMP] = ACTIONS(2469), - [anon_sym_AMP] = ACTIONS(2467), - [anon_sym_SEMI] = ACTIONS(2469), - [anon_sym_typedef] = ACTIONS(2467), - [anon_sym_extern] = ACTIONS(2467), - [anon_sym___attribute__] = ACTIONS(2467), - [anon_sym_COLON_COLON] = ACTIONS(2469), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2469), - [anon_sym___declspec] = ACTIONS(2467), - [anon_sym___based] = ACTIONS(2467), - [anon_sym___cdecl] = ACTIONS(2467), - [anon_sym___clrcall] = ACTIONS(2467), - [anon_sym___stdcall] = ACTIONS(2467), - [anon_sym___fastcall] = ACTIONS(2467), - [anon_sym___thiscall] = ACTIONS(2467), - [anon_sym___vectorcall] = ACTIONS(2467), - [anon_sym_LBRACE] = ACTIONS(2469), - [anon_sym_LBRACK] = ACTIONS(2467), - [anon_sym_static] = ACTIONS(2467), - [anon_sym_register] = ACTIONS(2467), - [anon_sym_inline] = ACTIONS(2467), - [anon_sym_thread_local] = ACTIONS(2467), - [anon_sym_const] = ACTIONS(2467), - [anon_sym_volatile] = ACTIONS(2467), - [anon_sym_restrict] = ACTIONS(2467), - [anon_sym__Atomic] = ACTIONS(2467), - [anon_sym_mutable] = ACTIONS(2467), - [anon_sym_constexpr] = ACTIONS(2467), - [anon_sym_constinit] = ACTIONS(2467), - [anon_sym_consteval] = ACTIONS(2467), - [anon_sym_signed] = ACTIONS(2467), - [anon_sym_unsigned] = ACTIONS(2467), - [anon_sym_long] = ACTIONS(2467), - [anon_sym_short] = ACTIONS(2467), - [sym_primitive_type] = ACTIONS(2467), - [anon_sym_enum] = ACTIONS(2467), - [anon_sym_class] = ACTIONS(2467), - [anon_sym_struct] = ACTIONS(2467), - [anon_sym_union] = ACTIONS(2467), - [anon_sym_if] = ACTIONS(2467), - [anon_sym_else] = ACTIONS(2467), - [anon_sym_switch] = ACTIONS(2467), - [anon_sym_case] = ACTIONS(2467), - [anon_sym_default] = ACTIONS(2467), - [anon_sym_while] = ACTIONS(2467), - [anon_sym_do] = ACTIONS(2467), - [anon_sym_for] = ACTIONS(2467), - [anon_sym_return] = ACTIONS(2467), - [anon_sym_break] = ACTIONS(2467), - [anon_sym_continue] = ACTIONS(2467), - [anon_sym_goto] = ACTIONS(2467), - [anon_sym_DASH_DASH] = ACTIONS(2469), - [anon_sym_PLUS_PLUS] = ACTIONS(2469), - [anon_sym_sizeof] = ACTIONS(2467), - [sym_number_literal] = ACTIONS(2469), - [anon_sym_L_SQUOTE] = ACTIONS(2469), - [anon_sym_u_SQUOTE] = ACTIONS(2469), - [anon_sym_U_SQUOTE] = ACTIONS(2469), - [anon_sym_u8_SQUOTE] = ACTIONS(2469), - [anon_sym_SQUOTE] = ACTIONS(2469), - [anon_sym_L_DQUOTE] = ACTIONS(2469), - [anon_sym_u_DQUOTE] = ACTIONS(2469), - [anon_sym_U_DQUOTE] = ACTIONS(2469), - [anon_sym_u8_DQUOTE] = ACTIONS(2469), - [anon_sym_DQUOTE] = ACTIONS(2469), - [sym_true] = ACTIONS(2467), - [sym_false] = ACTIONS(2467), - [sym_null] = ACTIONS(2467), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2467), - [anon_sym_decltype] = ACTIONS(2467), - [anon_sym_virtual] = ACTIONS(2467), - [anon_sym_explicit] = ACTIONS(2467), - [anon_sym_typename] = ACTIONS(2467), - [anon_sym_template] = ACTIONS(2467), - [anon_sym_operator] = ACTIONS(2467), - [anon_sym_try] = ACTIONS(2467), - [anon_sym_delete] = ACTIONS(2467), - [anon_sym_throw] = ACTIONS(2467), - [anon_sym_namespace] = ACTIONS(2467), - [anon_sym_using] = ACTIONS(2467), - [anon_sym_static_assert] = ACTIONS(2467), - [anon_sym_concept] = ACTIONS(2467), - [anon_sym_co_return] = ACTIONS(2467), - [anon_sym_co_yield] = ACTIONS(2467), - [anon_sym_co_await] = ACTIONS(2467), - [anon_sym_new] = ACTIONS(2467), - [anon_sym_requires] = ACTIONS(2467), - [sym_this] = ACTIONS(2467), - [sym_nullptr] = ACTIONS(2467), - [sym_raw_string_literal] = ACTIONS(2469), - }, - [400] = { - [sym_identifier] = ACTIONS(2471), - [aux_sym_preproc_include_token1] = ACTIONS(2471), - [aux_sym_preproc_def_token1] = ACTIONS(2471), - [aux_sym_preproc_if_token1] = ACTIONS(2471), - [aux_sym_preproc_if_token2] = ACTIONS(2471), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2471), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2471), - [aux_sym_preproc_else_token1] = ACTIONS(2471), - [aux_sym_preproc_elif_token1] = ACTIONS(2471), - [sym_preproc_directive] = ACTIONS(2471), - [anon_sym_LPAREN2] = ACTIONS(2473), - [anon_sym_BANG] = ACTIONS(2473), - [anon_sym_TILDE] = ACTIONS(2473), - [anon_sym_DASH] = ACTIONS(2471), - [anon_sym_PLUS] = ACTIONS(2471), - [anon_sym_STAR] = ACTIONS(2473), - [anon_sym_AMP_AMP] = ACTIONS(2473), - [anon_sym_AMP] = ACTIONS(2471), - [anon_sym_SEMI] = ACTIONS(2473), - [anon_sym_typedef] = ACTIONS(2471), - [anon_sym_extern] = ACTIONS(2471), - [anon_sym___attribute__] = ACTIONS(2471), - [anon_sym_COLON_COLON] = ACTIONS(2473), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2473), - [anon_sym___declspec] = ACTIONS(2471), - [anon_sym___based] = ACTIONS(2471), - [anon_sym___cdecl] = ACTIONS(2471), - [anon_sym___clrcall] = ACTIONS(2471), - [anon_sym___stdcall] = ACTIONS(2471), - [anon_sym___fastcall] = ACTIONS(2471), - [anon_sym___thiscall] = ACTIONS(2471), - [anon_sym___vectorcall] = ACTIONS(2471), - [anon_sym_LBRACE] = ACTIONS(2473), - [anon_sym_LBRACK] = ACTIONS(2471), - [anon_sym_static] = ACTIONS(2471), - [anon_sym_register] = ACTIONS(2471), - [anon_sym_inline] = ACTIONS(2471), - [anon_sym_thread_local] = ACTIONS(2471), - [anon_sym_const] = ACTIONS(2471), - [anon_sym_volatile] = ACTIONS(2471), - [anon_sym_restrict] = ACTIONS(2471), - [anon_sym__Atomic] = ACTIONS(2471), - [anon_sym_mutable] = ACTIONS(2471), - [anon_sym_constexpr] = ACTIONS(2471), - [anon_sym_constinit] = ACTIONS(2471), - [anon_sym_consteval] = ACTIONS(2471), - [anon_sym_signed] = ACTIONS(2471), - [anon_sym_unsigned] = ACTIONS(2471), - [anon_sym_long] = ACTIONS(2471), - [anon_sym_short] = ACTIONS(2471), - [sym_primitive_type] = ACTIONS(2471), - [anon_sym_enum] = ACTIONS(2471), - [anon_sym_class] = ACTIONS(2471), - [anon_sym_struct] = ACTIONS(2471), - [anon_sym_union] = ACTIONS(2471), - [anon_sym_if] = ACTIONS(2471), - [anon_sym_else] = ACTIONS(2471), - [anon_sym_switch] = ACTIONS(2471), - [anon_sym_case] = ACTIONS(2471), - [anon_sym_default] = ACTIONS(2471), - [anon_sym_while] = ACTIONS(2471), - [anon_sym_do] = ACTIONS(2471), - [anon_sym_for] = ACTIONS(2471), - [anon_sym_return] = ACTIONS(2471), - [anon_sym_break] = ACTIONS(2471), - [anon_sym_continue] = ACTIONS(2471), - [anon_sym_goto] = ACTIONS(2471), - [anon_sym_DASH_DASH] = ACTIONS(2473), - [anon_sym_PLUS_PLUS] = ACTIONS(2473), - [anon_sym_sizeof] = ACTIONS(2471), - [sym_number_literal] = ACTIONS(2473), - [anon_sym_L_SQUOTE] = ACTIONS(2473), - [anon_sym_u_SQUOTE] = ACTIONS(2473), - [anon_sym_U_SQUOTE] = ACTIONS(2473), - [anon_sym_u8_SQUOTE] = ACTIONS(2473), - [anon_sym_SQUOTE] = ACTIONS(2473), - [anon_sym_L_DQUOTE] = ACTIONS(2473), - [anon_sym_u_DQUOTE] = ACTIONS(2473), - [anon_sym_U_DQUOTE] = ACTIONS(2473), - [anon_sym_u8_DQUOTE] = ACTIONS(2473), - [anon_sym_DQUOTE] = ACTIONS(2473), - [sym_true] = ACTIONS(2471), - [sym_false] = ACTIONS(2471), - [sym_null] = ACTIONS(2471), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2471), - [anon_sym_decltype] = ACTIONS(2471), - [anon_sym_virtual] = ACTIONS(2471), - [anon_sym_explicit] = ACTIONS(2471), - [anon_sym_typename] = ACTIONS(2471), - [anon_sym_template] = ACTIONS(2471), - [anon_sym_operator] = ACTIONS(2471), - [anon_sym_try] = ACTIONS(2471), - [anon_sym_delete] = ACTIONS(2471), - [anon_sym_throw] = ACTIONS(2471), - [anon_sym_namespace] = ACTIONS(2471), - [anon_sym_using] = ACTIONS(2471), - [anon_sym_static_assert] = ACTIONS(2471), - [anon_sym_concept] = ACTIONS(2471), - [anon_sym_co_return] = ACTIONS(2471), - [anon_sym_co_yield] = ACTIONS(2471), - [anon_sym_co_await] = ACTIONS(2471), - [anon_sym_new] = ACTIONS(2471), - [anon_sym_requires] = ACTIONS(2471), - [sym_this] = ACTIONS(2471), - [sym_nullptr] = ACTIONS(2471), - [sym_raw_string_literal] = ACTIONS(2473), - }, - [401] = { - [sym_identifier] = ACTIONS(2475), - [aux_sym_preproc_include_token1] = ACTIONS(2475), - [aux_sym_preproc_def_token1] = ACTIONS(2475), - [aux_sym_preproc_if_token1] = ACTIONS(2475), - [aux_sym_preproc_if_token2] = ACTIONS(2475), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2475), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2475), - [aux_sym_preproc_else_token1] = ACTIONS(2475), - [aux_sym_preproc_elif_token1] = ACTIONS(2475), - [sym_preproc_directive] = ACTIONS(2475), - [anon_sym_LPAREN2] = ACTIONS(2477), - [anon_sym_BANG] = ACTIONS(2477), - [anon_sym_TILDE] = ACTIONS(2477), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_PLUS] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2477), - [anon_sym_AMP_AMP] = ACTIONS(2477), - [anon_sym_AMP] = ACTIONS(2475), - [anon_sym_SEMI] = ACTIONS(2477), - [anon_sym_typedef] = ACTIONS(2475), - [anon_sym_extern] = ACTIONS(2475), - [anon_sym___attribute__] = ACTIONS(2475), - [anon_sym_COLON_COLON] = ACTIONS(2477), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2477), - [anon_sym___declspec] = ACTIONS(2475), - [anon_sym___based] = ACTIONS(2475), - [anon_sym___cdecl] = ACTIONS(2475), - [anon_sym___clrcall] = ACTIONS(2475), - [anon_sym___stdcall] = ACTIONS(2475), - [anon_sym___fastcall] = ACTIONS(2475), - [anon_sym___thiscall] = ACTIONS(2475), - [anon_sym___vectorcall] = ACTIONS(2475), - [anon_sym_LBRACE] = ACTIONS(2477), - [anon_sym_LBRACK] = ACTIONS(2475), - [anon_sym_static] = ACTIONS(2475), - [anon_sym_register] = ACTIONS(2475), - [anon_sym_inline] = ACTIONS(2475), - [anon_sym_thread_local] = ACTIONS(2475), - [anon_sym_const] = ACTIONS(2475), - [anon_sym_volatile] = ACTIONS(2475), - [anon_sym_restrict] = ACTIONS(2475), - [anon_sym__Atomic] = ACTIONS(2475), - [anon_sym_mutable] = ACTIONS(2475), - [anon_sym_constexpr] = ACTIONS(2475), - [anon_sym_constinit] = ACTIONS(2475), - [anon_sym_consteval] = ACTIONS(2475), - [anon_sym_signed] = ACTIONS(2475), - [anon_sym_unsigned] = ACTIONS(2475), - [anon_sym_long] = ACTIONS(2475), - [anon_sym_short] = ACTIONS(2475), - [sym_primitive_type] = ACTIONS(2475), - [anon_sym_enum] = ACTIONS(2475), - [anon_sym_class] = ACTIONS(2475), - [anon_sym_struct] = ACTIONS(2475), - [anon_sym_union] = ACTIONS(2475), - [anon_sym_if] = ACTIONS(2475), - [anon_sym_else] = ACTIONS(2475), - [anon_sym_switch] = ACTIONS(2475), - [anon_sym_case] = ACTIONS(2475), - [anon_sym_default] = ACTIONS(2475), - [anon_sym_while] = ACTIONS(2475), - [anon_sym_do] = ACTIONS(2475), - [anon_sym_for] = ACTIONS(2475), - [anon_sym_return] = ACTIONS(2475), - [anon_sym_break] = ACTIONS(2475), - [anon_sym_continue] = ACTIONS(2475), - [anon_sym_goto] = ACTIONS(2475), - [anon_sym_DASH_DASH] = ACTIONS(2477), - [anon_sym_PLUS_PLUS] = ACTIONS(2477), - [anon_sym_sizeof] = ACTIONS(2475), - [sym_number_literal] = ACTIONS(2477), - [anon_sym_L_SQUOTE] = ACTIONS(2477), - [anon_sym_u_SQUOTE] = ACTIONS(2477), - [anon_sym_U_SQUOTE] = ACTIONS(2477), - [anon_sym_u8_SQUOTE] = ACTIONS(2477), - [anon_sym_SQUOTE] = ACTIONS(2477), - [anon_sym_L_DQUOTE] = ACTIONS(2477), - [anon_sym_u_DQUOTE] = ACTIONS(2477), - [anon_sym_U_DQUOTE] = ACTIONS(2477), - [anon_sym_u8_DQUOTE] = ACTIONS(2477), - [anon_sym_DQUOTE] = ACTIONS(2477), - [sym_true] = ACTIONS(2475), - [sym_false] = ACTIONS(2475), - [sym_null] = ACTIONS(2475), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2475), - [anon_sym_decltype] = ACTIONS(2475), - [anon_sym_virtual] = ACTIONS(2475), - [anon_sym_explicit] = ACTIONS(2475), - [anon_sym_typename] = ACTIONS(2475), - [anon_sym_template] = ACTIONS(2475), - [anon_sym_operator] = ACTIONS(2475), - [anon_sym_try] = ACTIONS(2475), - [anon_sym_delete] = ACTIONS(2475), - [anon_sym_throw] = ACTIONS(2475), - [anon_sym_namespace] = ACTIONS(2475), - [anon_sym_using] = ACTIONS(2475), - [anon_sym_static_assert] = ACTIONS(2475), - [anon_sym_concept] = ACTIONS(2475), - [anon_sym_co_return] = ACTIONS(2475), - [anon_sym_co_yield] = ACTIONS(2475), - [anon_sym_co_await] = ACTIONS(2475), - [anon_sym_new] = ACTIONS(2475), - [anon_sym_requires] = ACTIONS(2475), - [sym_this] = ACTIONS(2475), - [sym_nullptr] = ACTIONS(2475), - [sym_raw_string_literal] = ACTIONS(2477), - }, - [402] = { - [sym_identifier] = ACTIONS(2479), - [aux_sym_preproc_include_token1] = ACTIONS(2479), - [aux_sym_preproc_def_token1] = ACTIONS(2479), - [aux_sym_preproc_if_token1] = ACTIONS(2479), - [aux_sym_preproc_if_token2] = ACTIONS(2479), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2479), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2479), - [aux_sym_preproc_else_token1] = ACTIONS(2479), - [aux_sym_preproc_elif_token1] = ACTIONS(2479), - [sym_preproc_directive] = ACTIONS(2479), - [anon_sym_LPAREN2] = ACTIONS(2481), - [anon_sym_BANG] = ACTIONS(2481), - [anon_sym_TILDE] = ACTIONS(2481), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_AMP_AMP] = ACTIONS(2481), - [anon_sym_AMP] = ACTIONS(2479), - [anon_sym_SEMI] = ACTIONS(2481), - [anon_sym_typedef] = ACTIONS(2479), - [anon_sym_extern] = ACTIONS(2479), - [anon_sym___attribute__] = ACTIONS(2479), - [anon_sym_COLON_COLON] = ACTIONS(2481), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2481), - [anon_sym___declspec] = ACTIONS(2479), - [anon_sym___based] = ACTIONS(2479), - [anon_sym___cdecl] = ACTIONS(2479), - [anon_sym___clrcall] = ACTIONS(2479), - [anon_sym___stdcall] = ACTIONS(2479), - [anon_sym___fastcall] = ACTIONS(2479), - [anon_sym___thiscall] = ACTIONS(2479), - [anon_sym___vectorcall] = ACTIONS(2479), - [anon_sym_LBRACE] = ACTIONS(2481), - [anon_sym_LBRACK] = ACTIONS(2479), - [anon_sym_static] = ACTIONS(2479), - [anon_sym_register] = ACTIONS(2479), - [anon_sym_inline] = ACTIONS(2479), - [anon_sym_thread_local] = ACTIONS(2479), - [anon_sym_const] = ACTIONS(2479), - [anon_sym_volatile] = ACTIONS(2479), - [anon_sym_restrict] = ACTIONS(2479), - [anon_sym__Atomic] = ACTIONS(2479), - [anon_sym_mutable] = ACTIONS(2479), - [anon_sym_constexpr] = ACTIONS(2479), - [anon_sym_constinit] = ACTIONS(2479), - [anon_sym_consteval] = ACTIONS(2479), - [anon_sym_signed] = ACTIONS(2479), - [anon_sym_unsigned] = ACTIONS(2479), - [anon_sym_long] = ACTIONS(2479), - [anon_sym_short] = ACTIONS(2479), - [sym_primitive_type] = ACTIONS(2479), - [anon_sym_enum] = ACTIONS(2479), - [anon_sym_class] = ACTIONS(2479), - [anon_sym_struct] = ACTIONS(2479), - [anon_sym_union] = ACTIONS(2479), - [anon_sym_if] = ACTIONS(2479), - [anon_sym_else] = ACTIONS(2479), - [anon_sym_switch] = ACTIONS(2479), - [anon_sym_case] = ACTIONS(2479), - [anon_sym_default] = ACTIONS(2479), - [anon_sym_while] = ACTIONS(2479), - [anon_sym_do] = ACTIONS(2479), - [anon_sym_for] = ACTIONS(2479), - [anon_sym_return] = ACTIONS(2479), - [anon_sym_break] = ACTIONS(2479), - [anon_sym_continue] = ACTIONS(2479), - [anon_sym_goto] = ACTIONS(2479), - [anon_sym_DASH_DASH] = ACTIONS(2481), - [anon_sym_PLUS_PLUS] = ACTIONS(2481), - [anon_sym_sizeof] = ACTIONS(2479), - [sym_number_literal] = ACTIONS(2481), - [anon_sym_L_SQUOTE] = ACTIONS(2481), - [anon_sym_u_SQUOTE] = ACTIONS(2481), - [anon_sym_U_SQUOTE] = ACTIONS(2481), - [anon_sym_u8_SQUOTE] = ACTIONS(2481), - [anon_sym_SQUOTE] = ACTIONS(2481), - [anon_sym_L_DQUOTE] = ACTIONS(2481), - [anon_sym_u_DQUOTE] = ACTIONS(2481), - [anon_sym_U_DQUOTE] = ACTIONS(2481), - [anon_sym_u8_DQUOTE] = ACTIONS(2481), - [anon_sym_DQUOTE] = ACTIONS(2481), - [sym_true] = ACTIONS(2479), - [sym_false] = ACTIONS(2479), - [sym_null] = ACTIONS(2479), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2479), - [anon_sym_decltype] = ACTIONS(2479), - [anon_sym_virtual] = ACTIONS(2479), - [anon_sym_explicit] = ACTIONS(2479), - [anon_sym_typename] = ACTIONS(2479), - [anon_sym_template] = ACTIONS(2479), - [anon_sym_operator] = ACTIONS(2479), - [anon_sym_try] = ACTIONS(2479), - [anon_sym_delete] = ACTIONS(2479), - [anon_sym_throw] = ACTIONS(2479), - [anon_sym_namespace] = ACTIONS(2479), - [anon_sym_using] = ACTIONS(2479), - [anon_sym_static_assert] = ACTIONS(2479), - [anon_sym_concept] = ACTIONS(2479), - [anon_sym_co_return] = ACTIONS(2479), - [anon_sym_co_yield] = ACTIONS(2479), - [anon_sym_co_await] = ACTIONS(2479), - [anon_sym_new] = ACTIONS(2479), - [anon_sym_requires] = ACTIONS(2479), - [sym_this] = ACTIONS(2479), - [sym_nullptr] = ACTIONS(2479), - [sym_raw_string_literal] = ACTIONS(2481), - }, - [403] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token2] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [aux_sym_preproc_else_token1] = ACTIONS(2459), - [aux_sym_preproc_elif_token1] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [404] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token2] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [aux_sym_preproc_else_token1] = ACTIONS(2459), - [aux_sym_preproc_elif_token1] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [405] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token2] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [aux_sym_preproc_else_token1] = ACTIONS(2459), - [aux_sym_preproc_elif_token1] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [406] = { - [sym_identifier] = ACTIONS(2483), - [aux_sym_preproc_include_token1] = ACTIONS(2483), - [aux_sym_preproc_def_token1] = ACTIONS(2483), - [aux_sym_preproc_if_token1] = ACTIONS(2483), - [aux_sym_preproc_if_token2] = ACTIONS(2483), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2483), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2483), - [aux_sym_preproc_else_token1] = ACTIONS(2483), - [aux_sym_preproc_elif_token1] = ACTIONS(2483), - [sym_preproc_directive] = ACTIONS(2483), - [anon_sym_LPAREN2] = ACTIONS(2485), - [anon_sym_BANG] = ACTIONS(2485), - [anon_sym_TILDE] = ACTIONS(2485), - [anon_sym_DASH] = ACTIONS(2483), - [anon_sym_PLUS] = ACTIONS(2483), - [anon_sym_STAR] = ACTIONS(2485), - [anon_sym_AMP_AMP] = ACTIONS(2485), - [anon_sym_AMP] = ACTIONS(2483), - [anon_sym_SEMI] = ACTIONS(2485), - [anon_sym_typedef] = ACTIONS(2483), - [anon_sym_extern] = ACTIONS(2483), - [anon_sym___attribute__] = ACTIONS(2483), - [anon_sym_COLON_COLON] = ACTIONS(2485), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2485), - [anon_sym___declspec] = ACTIONS(2483), - [anon_sym___based] = ACTIONS(2483), - [anon_sym___cdecl] = ACTIONS(2483), - [anon_sym___clrcall] = ACTIONS(2483), - [anon_sym___stdcall] = ACTIONS(2483), - [anon_sym___fastcall] = ACTIONS(2483), - [anon_sym___thiscall] = ACTIONS(2483), - [anon_sym___vectorcall] = ACTIONS(2483), - [anon_sym_LBRACE] = ACTIONS(2485), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_static] = ACTIONS(2483), - [anon_sym_register] = ACTIONS(2483), - [anon_sym_inline] = ACTIONS(2483), - [anon_sym_thread_local] = ACTIONS(2483), - [anon_sym_const] = ACTIONS(2483), - [anon_sym_volatile] = ACTIONS(2483), - [anon_sym_restrict] = ACTIONS(2483), - [anon_sym__Atomic] = ACTIONS(2483), - [anon_sym_mutable] = ACTIONS(2483), - [anon_sym_constexpr] = ACTIONS(2483), - [anon_sym_constinit] = ACTIONS(2483), - [anon_sym_consteval] = ACTIONS(2483), - [anon_sym_signed] = ACTIONS(2483), - [anon_sym_unsigned] = ACTIONS(2483), - [anon_sym_long] = ACTIONS(2483), - [anon_sym_short] = ACTIONS(2483), - [sym_primitive_type] = ACTIONS(2483), - [anon_sym_enum] = ACTIONS(2483), - [anon_sym_class] = ACTIONS(2483), - [anon_sym_struct] = ACTIONS(2483), - [anon_sym_union] = ACTIONS(2483), - [anon_sym_if] = ACTIONS(2483), - [anon_sym_else] = ACTIONS(2483), - [anon_sym_switch] = ACTIONS(2483), - [anon_sym_case] = ACTIONS(2483), - [anon_sym_default] = ACTIONS(2483), - [anon_sym_while] = ACTIONS(2483), - [anon_sym_do] = ACTIONS(2483), - [anon_sym_for] = ACTIONS(2483), - [anon_sym_return] = ACTIONS(2483), - [anon_sym_break] = ACTIONS(2483), - [anon_sym_continue] = ACTIONS(2483), - [anon_sym_goto] = ACTIONS(2483), - [anon_sym_DASH_DASH] = ACTIONS(2485), - [anon_sym_PLUS_PLUS] = ACTIONS(2485), - [anon_sym_sizeof] = ACTIONS(2483), - [sym_number_literal] = ACTIONS(2485), - [anon_sym_L_SQUOTE] = ACTIONS(2485), - [anon_sym_u_SQUOTE] = ACTIONS(2485), - [anon_sym_U_SQUOTE] = ACTIONS(2485), - [anon_sym_u8_SQUOTE] = ACTIONS(2485), - [anon_sym_SQUOTE] = ACTIONS(2485), - [anon_sym_L_DQUOTE] = ACTIONS(2485), - [anon_sym_u_DQUOTE] = ACTIONS(2485), - [anon_sym_U_DQUOTE] = ACTIONS(2485), - [anon_sym_u8_DQUOTE] = ACTIONS(2485), - [anon_sym_DQUOTE] = ACTIONS(2485), - [sym_true] = ACTIONS(2483), - [sym_false] = ACTIONS(2483), - [sym_null] = ACTIONS(2483), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2483), - [anon_sym_decltype] = ACTIONS(2483), - [anon_sym_virtual] = ACTIONS(2483), - [anon_sym_explicit] = ACTIONS(2483), - [anon_sym_typename] = ACTIONS(2483), - [anon_sym_template] = ACTIONS(2483), - [anon_sym_operator] = ACTIONS(2483), - [anon_sym_try] = ACTIONS(2483), - [anon_sym_delete] = ACTIONS(2483), - [anon_sym_throw] = ACTIONS(2483), - [anon_sym_namespace] = ACTIONS(2483), - [anon_sym_using] = ACTIONS(2483), - [anon_sym_static_assert] = ACTIONS(2483), - [anon_sym_concept] = ACTIONS(2483), - [anon_sym_co_return] = ACTIONS(2483), - [anon_sym_co_yield] = ACTIONS(2483), - [anon_sym_co_await] = ACTIONS(2483), - [anon_sym_new] = ACTIONS(2483), - [anon_sym_requires] = ACTIONS(2483), - [sym_this] = ACTIONS(2483), - [sym_nullptr] = ACTIONS(2483), - [sym_raw_string_literal] = ACTIONS(2485), - }, - [407] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token2] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [aux_sym_preproc_else_token1] = ACTIONS(2459), - [aux_sym_preproc_elif_token1] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [408] = { - [sym_identifier] = ACTIONS(2487), - [aux_sym_preproc_include_token1] = ACTIONS(2487), - [aux_sym_preproc_def_token1] = ACTIONS(2487), - [aux_sym_preproc_if_token1] = ACTIONS(2487), - [aux_sym_preproc_if_token2] = ACTIONS(2487), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2487), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2487), - [aux_sym_preproc_else_token1] = ACTIONS(2487), - [aux_sym_preproc_elif_token1] = ACTIONS(2487), - [sym_preproc_directive] = ACTIONS(2487), - [anon_sym_LPAREN2] = ACTIONS(2489), - [anon_sym_BANG] = ACTIONS(2489), - [anon_sym_TILDE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_STAR] = ACTIONS(2489), - [anon_sym_AMP_AMP] = ACTIONS(2489), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_SEMI] = ACTIONS(2489), - [anon_sym_typedef] = ACTIONS(2487), - [anon_sym_extern] = ACTIONS(2487), - [anon_sym___attribute__] = ACTIONS(2487), - [anon_sym_COLON_COLON] = ACTIONS(2489), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2489), - [anon_sym___declspec] = ACTIONS(2487), - [anon_sym___based] = ACTIONS(2487), - [anon_sym___cdecl] = ACTIONS(2487), - [anon_sym___clrcall] = ACTIONS(2487), - [anon_sym___stdcall] = ACTIONS(2487), - [anon_sym___fastcall] = ACTIONS(2487), - [anon_sym___thiscall] = ACTIONS(2487), - [anon_sym___vectorcall] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_LBRACK] = ACTIONS(2487), - [anon_sym_static] = ACTIONS(2487), - [anon_sym_register] = ACTIONS(2487), - [anon_sym_inline] = ACTIONS(2487), - [anon_sym_thread_local] = ACTIONS(2487), - [anon_sym_const] = ACTIONS(2487), - [anon_sym_volatile] = ACTIONS(2487), - [anon_sym_restrict] = ACTIONS(2487), - [anon_sym__Atomic] = ACTIONS(2487), - [anon_sym_mutable] = ACTIONS(2487), - [anon_sym_constexpr] = ACTIONS(2487), - [anon_sym_constinit] = ACTIONS(2487), - [anon_sym_consteval] = ACTIONS(2487), - [anon_sym_signed] = ACTIONS(2487), - [anon_sym_unsigned] = ACTIONS(2487), - [anon_sym_long] = ACTIONS(2487), - [anon_sym_short] = ACTIONS(2487), - [sym_primitive_type] = ACTIONS(2487), - [anon_sym_enum] = ACTIONS(2487), - [anon_sym_class] = ACTIONS(2487), - [anon_sym_struct] = ACTIONS(2487), - [anon_sym_union] = ACTIONS(2487), - [anon_sym_if] = ACTIONS(2487), - [anon_sym_else] = ACTIONS(2487), - [anon_sym_switch] = ACTIONS(2487), - [anon_sym_case] = ACTIONS(2487), - [anon_sym_default] = ACTIONS(2487), - [anon_sym_while] = ACTIONS(2487), - [anon_sym_do] = ACTIONS(2487), - [anon_sym_for] = ACTIONS(2487), - [anon_sym_return] = ACTIONS(2487), - [anon_sym_break] = ACTIONS(2487), - [anon_sym_continue] = ACTIONS(2487), - [anon_sym_goto] = ACTIONS(2487), - [anon_sym_DASH_DASH] = ACTIONS(2489), - [anon_sym_PLUS_PLUS] = ACTIONS(2489), - [anon_sym_sizeof] = ACTIONS(2487), - [sym_number_literal] = ACTIONS(2489), - [anon_sym_L_SQUOTE] = ACTIONS(2489), - [anon_sym_u_SQUOTE] = ACTIONS(2489), - [anon_sym_U_SQUOTE] = ACTIONS(2489), - [anon_sym_u8_SQUOTE] = ACTIONS(2489), - [anon_sym_SQUOTE] = ACTIONS(2489), - [anon_sym_L_DQUOTE] = ACTIONS(2489), - [anon_sym_u_DQUOTE] = ACTIONS(2489), - [anon_sym_U_DQUOTE] = ACTIONS(2489), - [anon_sym_u8_DQUOTE] = ACTIONS(2489), - [anon_sym_DQUOTE] = ACTIONS(2489), - [sym_true] = ACTIONS(2487), - [sym_false] = ACTIONS(2487), - [sym_null] = ACTIONS(2487), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2487), - [anon_sym_decltype] = ACTIONS(2487), - [anon_sym_virtual] = ACTIONS(2487), - [anon_sym_explicit] = ACTIONS(2487), - [anon_sym_typename] = ACTIONS(2487), - [anon_sym_template] = ACTIONS(2487), - [anon_sym_operator] = ACTIONS(2487), - [anon_sym_try] = ACTIONS(2487), - [anon_sym_delete] = ACTIONS(2487), - [anon_sym_throw] = ACTIONS(2487), - [anon_sym_namespace] = ACTIONS(2487), - [anon_sym_using] = ACTIONS(2487), - [anon_sym_static_assert] = ACTIONS(2487), - [anon_sym_concept] = ACTIONS(2487), - [anon_sym_co_return] = ACTIONS(2487), - [anon_sym_co_yield] = ACTIONS(2487), - [anon_sym_co_await] = ACTIONS(2487), - [anon_sym_new] = ACTIONS(2487), - [anon_sym_requires] = ACTIONS(2487), - [sym_this] = ACTIONS(2487), - [sym_nullptr] = ACTIONS(2487), - [sym_raw_string_literal] = ACTIONS(2489), - }, - [409] = { - [sym_identifier] = ACTIONS(2491), - [aux_sym_preproc_include_token1] = ACTIONS(2491), - [aux_sym_preproc_def_token1] = ACTIONS(2491), - [aux_sym_preproc_if_token1] = ACTIONS(2491), - [aux_sym_preproc_if_token2] = ACTIONS(2491), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2491), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2491), - [aux_sym_preproc_else_token1] = ACTIONS(2491), - [aux_sym_preproc_elif_token1] = ACTIONS(2491), - [sym_preproc_directive] = ACTIONS(2491), - [anon_sym_LPAREN2] = ACTIONS(2493), - [anon_sym_BANG] = ACTIONS(2493), - [anon_sym_TILDE] = ACTIONS(2493), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_STAR] = ACTIONS(2493), - [anon_sym_AMP_AMP] = ACTIONS(2493), - [anon_sym_AMP] = ACTIONS(2491), - [anon_sym_SEMI] = ACTIONS(2493), - [anon_sym_typedef] = ACTIONS(2491), - [anon_sym_extern] = ACTIONS(2491), - [anon_sym___attribute__] = ACTIONS(2491), - [anon_sym_COLON_COLON] = ACTIONS(2493), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2493), - [anon_sym___declspec] = ACTIONS(2491), - [anon_sym___based] = ACTIONS(2491), - [anon_sym___cdecl] = ACTIONS(2491), - [anon_sym___clrcall] = ACTIONS(2491), - [anon_sym___stdcall] = ACTIONS(2491), - [anon_sym___fastcall] = ACTIONS(2491), - [anon_sym___thiscall] = ACTIONS(2491), - [anon_sym___vectorcall] = ACTIONS(2491), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_LBRACK] = ACTIONS(2491), - [anon_sym_static] = ACTIONS(2491), - [anon_sym_register] = ACTIONS(2491), - [anon_sym_inline] = ACTIONS(2491), - [anon_sym_thread_local] = ACTIONS(2491), - [anon_sym_const] = ACTIONS(2491), - [anon_sym_volatile] = ACTIONS(2491), - [anon_sym_restrict] = ACTIONS(2491), - [anon_sym__Atomic] = ACTIONS(2491), - [anon_sym_mutable] = ACTIONS(2491), - [anon_sym_constexpr] = ACTIONS(2491), - [anon_sym_constinit] = ACTIONS(2491), - [anon_sym_consteval] = ACTIONS(2491), - [anon_sym_signed] = ACTIONS(2491), - [anon_sym_unsigned] = ACTIONS(2491), - [anon_sym_long] = ACTIONS(2491), - [anon_sym_short] = ACTIONS(2491), - [sym_primitive_type] = ACTIONS(2491), - [anon_sym_enum] = ACTIONS(2491), - [anon_sym_class] = ACTIONS(2491), - [anon_sym_struct] = ACTIONS(2491), - [anon_sym_union] = ACTIONS(2491), - [anon_sym_if] = ACTIONS(2491), - [anon_sym_else] = ACTIONS(2491), - [anon_sym_switch] = ACTIONS(2491), - [anon_sym_case] = ACTIONS(2491), - [anon_sym_default] = ACTIONS(2491), - [anon_sym_while] = ACTIONS(2491), - [anon_sym_do] = ACTIONS(2491), - [anon_sym_for] = ACTIONS(2491), - [anon_sym_return] = ACTIONS(2491), - [anon_sym_break] = ACTIONS(2491), - [anon_sym_continue] = ACTIONS(2491), - [anon_sym_goto] = ACTIONS(2491), - [anon_sym_DASH_DASH] = ACTIONS(2493), - [anon_sym_PLUS_PLUS] = ACTIONS(2493), - [anon_sym_sizeof] = ACTIONS(2491), - [sym_number_literal] = ACTIONS(2493), - [anon_sym_L_SQUOTE] = ACTIONS(2493), - [anon_sym_u_SQUOTE] = ACTIONS(2493), - [anon_sym_U_SQUOTE] = ACTIONS(2493), - [anon_sym_u8_SQUOTE] = ACTIONS(2493), - [anon_sym_SQUOTE] = ACTIONS(2493), - [anon_sym_L_DQUOTE] = ACTIONS(2493), - [anon_sym_u_DQUOTE] = ACTIONS(2493), - [anon_sym_U_DQUOTE] = ACTIONS(2493), - [anon_sym_u8_DQUOTE] = ACTIONS(2493), - [anon_sym_DQUOTE] = ACTIONS(2493), - [sym_true] = ACTIONS(2491), - [sym_false] = ACTIONS(2491), - [sym_null] = ACTIONS(2491), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2491), - [anon_sym_decltype] = ACTIONS(2491), - [anon_sym_virtual] = ACTIONS(2491), - [anon_sym_explicit] = ACTIONS(2491), - [anon_sym_typename] = ACTIONS(2491), - [anon_sym_template] = ACTIONS(2491), - [anon_sym_operator] = ACTIONS(2491), - [anon_sym_try] = ACTIONS(2491), - [anon_sym_delete] = ACTIONS(2491), - [anon_sym_throw] = ACTIONS(2491), - [anon_sym_namespace] = ACTIONS(2491), - [anon_sym_using] = ACTIONS(2491), - [anon_sym_static_assert] = ACTIONS(2491), - [anon_sym_concept] = ACTIONS(2491), - [anon_sym_co_return] = ACTIONS(2491), - [anon_sym_co_yield] = ACTIONS(2491), - [anon_sym_co_await] = ACTIONS(2491), - [anon_sym_new] = ACTIONS(2491), - [anon_sym_requires] = ACTIONS(2491), - [sym_this] = ACTIONS(2491), - [sym_nullptr] = ACTIONS(2491), - [sym_raw_string_literal] = ACTIONS(2493), - }, - [410] = { - [sym_identifier] = ACTIONS(2495), - [aux_sym_preproc_include_token1] = ACTIONS(2495), - [aux_sym_preproc_def_token1] = ACTIONS(2495), - [aux_sym_preproc_if_token1] = ACTIONS(2495), - [aux_sym_preproc_if_token2] = ACTIONS(2495), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2495), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2495), - [aux_sym_preproc_else_token1] = ACTIONS(2495), - [aux_sym_preproc_elif_token1] = ACTIONS(2495), - [sym_preproc_directive] = ACTIONS(2495), - [anon_sym_LPAREN2] = ACTIONS(2497), - [anon_sym_BANG] = ACTIONS(2497), - [anon_sym_TILDE] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2495), - [anon_sym_PLUS] = ACTIONS(2495), - [anon_sym_STAR] = ACTIONS(2497), - [anon_sym_AMP_AMP] = ACTIONS(2497), - [anon_sym_AMP] = ACTIONS(2495), - [anon_sym_SEMI] = ACTIONS(2497), - [anon_sym_typedef] = ACTIONS(2495), - [anon_sym_extern] = ACTIONS(2495), - [anon_sym___attribute__] = ACTIONS(2495), - [anon_sym_COLON_COLON] = ACTIONS(2497), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2497), - [anon_sym___declspec] = ACTIONS(2495), - [anon_sym___based] = ACTIONS(2495), - [anon_sym___cdecl] = ACTIONS(2495), - [anon_sym___clrcall] = ACTIONS(2495), - [anon_sym___stdcall] = ACTIONS(2495), - [anon_sym___fastcall] = ACTIONS(2495), - [anon_sym___thiscall] = ACTIONS(2495), - [anon_sym___vectorcall] = ACTIONS(2495), - [anon_sym_LBRACE] = ACTIONS(2497), - [anon_sym_LBRACK] = ACTIONS(2495), - [anon_sym_static] = ACTIONS(2495), - [anon_sym_register] = ACTIONS(2495), - [anon_sym_inline] = ACTIONS(2495), - [anon_sym_thread_local] = ACTIONS(2495), - [anon_sym_const] = ACTIONS(2495), - [anon_sym_volatile] = ACTIONS(2495), - [anon_sym_restrict] = ACTIONS(2495), - [anon_sym__Atomic] = ACTIONS(2495), - [anon_sym_mutable] = ACTIONS(2495), - [anon_sym_constexpr] = ACTIONS(2495), - [anon_sym_constinit] = ACTIONS(2495), - [anon_sym_consteval] = ACTIONS(2495), - [anon_sym_signed] = ACTIONS(2495), - [anon_sym_unsigned] = ACTIONS(2495), - [anon_sym_long] = ACTIONS(2495), - [anon_sym_short] = ACTIONS(2495), - [sym_primitive_type] = ACTIONS(2495), - [anon_sym_enum] = ACTIONS(2495), - [anon_sym_class] = ACTIONS(2495), - [anon_sym_struct] = ACTIONS(2495), - [anon_sym_union] = ACTIONS(2495), - [anon_sym_if] = ACTIONS(2495), - [anon_sym_else] = ACTIONS(2495), - [anon_sym_switch] = ACTIONS(2495), - [anon_sym_case] = ACTIONS(2495), - [anon_sym_default] = ACTIONS(2495), - [anon_sym_while] = ACTIONS(2495), - [anon_sym_do] = ACTIONS(2495), - [anon_sym_for] = ACTIONS(2495), - [anon_sym_return] = ACTIONS(2495), - [anon_sym_break] = ACTIONS(2495), - [anon_sym_continue] = ACTIONS(2495), - [anon_sym_goto] = ACTIONS(2495), - [anon_sym_DASH_DASH] = ACTIONS(2497), - [anon_sym_PLUS_PLUS] = ACTIONS(2497), - [anon_sym_sizeof] = ACTIONS(2495), - [sym_number_literal] = ACTIONS(2497), - [anon_sym_L_SQUOTE] = ACTIONS(2497), - [anon_sym_u_SQUOTE] = ACTIONS(2497), - [anon_sym_U_SQUOTE] = ACTIONS(2497), - [anon_sym_u8_SQUOTE] = ACTIONS(2497), - [anon_sym_SQUOTE] = ACTIONS(2497), - [anon_sym_L_DQUOTE] = ACTIONS(2497), - [anon_sym_u_DQUOTE] = ACTIONS(2497), - [anon_sym_U_DQUOTE] = ACTIONS(2497), - [anon_sym_u8_DQUOTE] = ACTIONS(2497), - [anon_sym_DQUOTE] = ACTIONS(2497), - [sym_true] = ACTIONS(2495), - [sym_false] = ACTIONS(2495), - [sym_null] = ACTIONS(2495), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2495), - [anon_sym_decltype] = ACTIONS(2495), - [anon_sym_virtual] = ACTIONS(2495), - [anon_sym_explicit] = ACTIONS(2495), - [anon_sym_typename] = ACTIONS(2495), - [anon_sym_template] = ACTIONS(2495), - [anon_sym_operator] = ACTIONS(2495), - [anon_sym_try] = ACTIONS(2495), - [anon_sym_delete] = ACTIONS(2495), - [anon_sym_throw] = ACTIONS(2495), - [anon_sym_namespace] = ACTIONS(2495), - [anon_sym_using] = ACTIONS(2495), - [anon_sym_static_assert] = ACTIONS(2495), - [anon_sym_concept] = ACTIONS(2495), - [anon_sym_co_return] = ACTIONS(2495), - [anon_sym_co_yield] = ACTIONS(2495), - [anon_sym_co_await] = ACTIONS(2495), - [anon_sym_new] = ACTIONS(2495), - [anon_sym_requires] = ACTIONS(2495), - [sym_this] = ACTIONS(2495), - [sym_nullptr] = ACTIONS(2495), - [sym_raw_string_literal] = ACTIONS(2497), - }, - [411] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token2] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [aux_sym_preproc_else_token1] = ACTIONS(2459), - [aux_sym_preproc_elif_token1] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [412] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token2] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [aux_sym_preproc_else_token1] = ACTIONS(2459), - [aux_sym_preproc_elif_token1] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [413] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token2] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [aux_sym_preproc_else_token1] = ACTIONS(2459), - [aux_sym_preproc_elif_token1] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), + [346] = { + [sym_catch_clause] = STATE(346), + [aux_sym_constructor_try_statement_repeat1] = STATE(346), + [sym_identifier] = ACTIONS(2411), + [aux_sym_preproc_include_token1] = ACTIONS(2411), + [aux_sym_preproc_def_token1] = ACTIONS(2411), + [aux_sym_preproc_if_token1] = ACTIONS(2411), + [aux_sym_preproc_if_token2] = ACTIONS(2411), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2411), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2411), + [sym_preproc_directive] = ACTIONS(2411), + [anon_sym_LPAREN2] = ACTIONS(2413), + [anon_sym_BANG] = ACTIONS(2413), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2411), + [anon_sym_PLUS] = ACTIONS(2411), + [anon_sym_STAR] = ACTIONS(2413), + [anon_sym_AMP_AMP] = ACTIONS(2413), + [anon_sym_AMP] = ACTIONS(2411), + [anon_sym_SEMI] = ACTIONS(2413), + [anon_sym_typedef] = ACTIONS(2411), + [anon_sym_extern] = ACTIONS(2411), + [anon_sym___attribute__] = ACTIONS(2411), + [anon_sym_COLON_COLON] = ACTIONS(2413), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2413), + [anon_sym___declspec] = ACTIONS(2411), + [anon_sym___based] = ACTIONS(2411), + [anon_sym___cdecl] = ACTIONS(2411), + [anon_sym___clrcall] = ACTIONS(2411), + [anon_sym___stdcall] = ACTIONS(2411), + [anon_sym___fastcall] = ACTIONS(2411), + [anon_sym___thiscall] = ACTIONS(2411), + [anon_sym___vectorcall] = ACTIONS(2411), + [anon_sym_LBRACE] = ACTIONS(2413), + [anon_sym_LBRACK] = ACTIONS(2411), + [anon_sym_static] = ACTIONS(2411), + [anon_sym_register] = ACTIONS(2411), + [anon_sym_inline] = ACTIONS(2411), + [anon_sym_thread_local] = ACTIONS(2411), + [anon_sym_const] = ACTIONS(2411), + [anon_sym_volatile] = ACTIONS(2411), + [anon_sym_restrict] = ACTIONS(2411), + [anon_sym__Atomic] = ACTIONS(2411), + [anon_sym_mutable] = ACTIONS(2411), + [anon_sym_constexpr] = ACTIONS(2411), + [anon_sym_constinit] = ACTIONS(2411), + [anon_sym_consteval] = ACTIONS(2411), + [anon_sym_signed] = ACTIONS(2411), + [anon_sym_unsigned] = ACTIONS(2411), + [anon_sym_long] = ACTIONS(2411), + [anon_sym_short] = ACTIONS(2411), + [sym_primitive_type] = ACTIONS(2411), + [anon_sym_enum] = ACTIONS(2411), + [anon_sym_class] = ACTIONS(2411), + [anon_sym_struct] = ACTIONS(2411), + [anon_sym_union] = ACTIONS(2411), + [anon_sym_if] = ACTIONS(2411), + [anon_sym_else] = ACTIONS(2411), + [anon_sym_switch] = ACTIONS(2411), + [anon_sym_case] = ACTIONS(2411), + [anon_sym_default] = ACTIONS(2411), + [anon_sym_while] = ACTIONS(2411), + [anon_sym_do] = ACTIONS(2411), + [anon_sym_for] = ACTIONS(2411), + [anon_sym_return] = ACTIONS(2411), + [anon_sym_break] = ACTIONS(2411), + [anon_sym_continue] = ACTIONS(2411), + [anon_sym_goto] = ACTIONS(2411), + [anon_sym_not] = ACTIONS(2411), + [anon_sym_compl] = ACTIONS(2411), + [anon_sym_DASH_DASH] = ACTIONS(2413), + [anon_sym_PLUS_PLUS] = ACTIONS(2413), + [anon_sym_sizeof] = ACTIONS(2411), + [sym_number_literal] = ACTIONS(2413), + [anon_sym_L_SQUOTE] = ACTIONS(2413), + [anon_sym_u_SQUOTE] = ACTIONS(2413), + [anon_sym_U_SQUOTE] = ACTIONS(2413), + [anon_sym_u8_SQUOTE] = ACTIONS(2413), + [anon_sym_SQUOTE] = ACTIONS(2413), + [anon_sym_L_DQUOTE] = ACTIONS(2413), + [anon_sym_u_DQUOTE] = ACTIONS(2413), + [anon_sym_U_DQUOTE] = ACTIONS(2413), + [anon_sym_u8_DQUOTE] = ACTIONS(2413), + [anon_sym_DQUOTE] = ACTIONS(2413), + [sym_true] = ACTIONS(2411), + [sym_false] = ACTIONS(2411), + [sym_null] = ACTIONS(2411), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2411), + [anon_sym_decltype] = ACTIONS(2411), + [anon_sym_virtual] = ACTIONS(2411), + [anon_sym_explicit] = ACTIONS(2411), + [anon_sym_typename] = ACTIONS(2411), + [anon_sym_template] = ACTIONS(2411), + [anon_sym_operator] = ACTIONS(2411), + [anon_sym_try] = ACTIONS(2411), + [anon_sym_delete] = ACTIONS(2411), + [anon_sym_throw] = ACTIONS(2411), + [anon_sym_namespace] = ACTIONS(2411), + [anon_sym_using] = ACTIONS(2411), + [anon_sym_static_assert] = ACTIONS(2411), + [anon_sym_concept] = ACTIONS(2411), + [anon_sym_co_return] = ACTIONS(2411), + [anon_sym_co_yield] = ACTIONS(2411), + [anon_sym_catch] = ACTIONS(2482), + [anon_sym_co_await] = ACTIONS(2411), + [anon_sym_new] = ACTIONS(2411), + [anon_sym_requires] = ACTIONS(2411), + [sym_this] = ACTIONS(2411), + [sym_nullptr] = ACTIONS(2411), + [sym_raw_string_literal] = ACTIONS(2413), }, - [414] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token2] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [aux_sym_preproc_else_token1] = ACTIONS(2459), - [aux_sym_preproc_elif_token1] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), + [347] = { + [sym_identifier] = ACTIONS(2485), + [aux_sym_preproc_include_token1] = ACTIONS(2485), + [aux_sym_preproc_def_token1] = ACTIONS(2485), + [aux_sym_preproc_if_token1] = ACTIONS(2485), + [aux_sym_preproc_if_token2] = ACTIONS(2485), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2485), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2485), + [aux_sym_preproc_else_token1] = ACTIONS(2485), + [aux_sym_preproc_elif_token1] = ACTIONS(2485), + [sym_preproc_directive] = ACTIONS(2485), + [anon_sym_LPAREN2] = ACTIONS(2487), + [anon_sym_BANG] = ACTIONS(2487), + [anon_sym_TILDE] = ACTIONS(2487), + [anon_sym_DASH] = ACTIONS(2485), + [anon_sym_PLUS] = ACTIONS(2485), + [anon_sym_STAR] = ACTIONS(2487), + [anon_sym_AMP_AMP] = ACTIONS(2487), + [anon_sym_AMP] = ACTIONS(2485), + [anon_sym_SEMI] = ACTIONS(2487), + [anon_sym_typedef] = ACTIONS(2485), + [anon_sym_extern] = ACTIONS(2485), + [anon_sym___attribute__] = ACTIONS(2485), + [anon_sym_COLON_COLON] = ACTIONS(2487), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2487), + [anon_sym___declspec] = ACTIONS(2485), + [anon_sym___based] = ACTIONS(2485), + [anon_sym___cdecl] = ACTIONS(2485), + [anon_sym___clrcall] = ACTIONS(2485), + [anon_sym___stdcall] = ACTIONS(2485), + [anon_sym___fastcall] = ACTIONS(2485), + [anon_sym___thiscall] = ACTIONS(2485), + [anon_sym___vectorcall] = ACTIONS(2485), + [anon_sym_LBRACE] = ACTIONS(2487), + [anon_sym_LBRACK] = ACTIONS(2485), + [anon_sym_static] = ACTIONS(2485), + [anon_sym_register] = ACTIONS(2485), + [anon_sym_inline] = ACTIONS(2485), + [anon_sym_thread_local] = ACTIONS(2485), + [anon_sym_const] = ACTIONS(2485), + [anon_sym_volatile] = ACTIONS(2485), + [anon_sym_restrict] = ACTIONS(2485), + [anon_sym__Atomic] = ACTIONS(2485), + [anon_sym_mutable] = ACTIONS(2485), + [anon_sym_constexpr] = ACTIONS(2485), + [anon_sym_constinit] = ACTIONS(2485), + [anon_sym_consteval] = ACTIONS(2485), + [anon_sym_signed] = ACTIONS(2485), + [anon_sym_unsigned] = ACTIONS(2485), + [anon_sym_long] = ACTIONS(2485), + [anon_sym_short] = ACTIONS(2485), + [sym_primitive_type] = ACTIONS(2485), + [anon_sym_enum] = ACTIONS(2485), + [anon_sym_class] = ACTIONS(2485), + [anon_sym_struct] = ACTIONS(2485), + [anon_sym_union] = ACTIONS(2485), + [anon_sym_if] = ACTIONS(2485), + [anon_sym_else] = ACTIONS(2485), + [anon_sym_switch] = ACTIONS(2485), + [anon_sym_case] = ACTIONS(2485), + [anon_sym_default] = ACTIONS(2485), + [anon_sym_while] = ACTIONS(2485), + [anon_sym_do] = ACTIONS(2485), + [anon_sym_for] = ACTIONS(2485), + [anon_sym_return] = ACTIONS(2485), + [anon_sym_break] = ACTIONS(2485), + [anon_sym_continue] = ACTIONS(2485), + [anon_sym_goto] = ACTIONS(2485), + [anon_sym_not] = ACTIONS(2485), + [anon_sym_compl] = ACTIONS(2485), + [anon_sym_DASH_DASH] = ACTIONS(2487), + [anon_sym_PLUS_PLUS] = ACTIONS(2487), + [anon_sym_sizeof] = ACTIONS(2485), + [sym_number_literal] = ACTIONS(2487), + [anon_sym_L_SQUOTE] = ACTIONS(2487), + [anon_sym_u_SQUOTE] = ACTIONS(2487), + [anon_sym_U_SQUOTE] = ACTIONS(2487), + [anon_sym_u8_SQUOTE] = ACTIONS(2487), + [anon_sym_SQUOTE] = ACTIONS(2487), + [anon_sym_L_DQUOTE] = ACTIONS(2487), + [anon_sym_u_DQUOTE] = ACTIONS(2487), + [anon_sym_U_DQUOTE] = ACTIONS(2487), + [anon_sym_u8_DQUOTE] = ACTIONS(2487), + [anon_sym_DQUOTE] = ACTIONS(2487), + [sym_true] = ACTIONS(2485), + [sym_false] = ACTIONS(2485), + [sym_null] = ACTIONS(2485), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2485), + [anon_sym_decltype] = ACTIONS(2485), + [anon_sym_virtual] = ACTIONS(2485), + [anon_sym_explicit] = ACTIONS(2485), + [anon_sym_typename] = ACTIONS(2485), + [anon_sym_template] = ACTIONS(2485), + [anon_sym_operator] = ACTIONS(2485), + [anon_sym_try] = ACTIONS(2485), + [anon_sym_delete] = ACTIONS(2485), + [anon_sym_throw] = ACTIONS(2485), + [anon_sym_namespace] = ACTIONS(2485), + [anon_sym_using] = ACTIONS(2485), + [anon_sym_static_assert] = ACTIONS(2485), + [anon_sym_concept] = ACTIONS(2485), + [anon_sym_co_return] = ACTIONS(2485), + [anon_sym_co_yield] = ACTIONS(2485), + [anon_sym_catch] = ACTIONS(2485), + [anon_sym_co_await] = ACTIONS(2485), + [anon_sym_new] = ACTIONS(2485), + [anon_sym_requires] = ACTIONS(2485), + [sym_this] = ACTIONS(2485), + [sym_nullptr] = ACTIONS(2485), + [sym_raw_string_literal] = ACTIONS(2487), }, - [415] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token2] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [aux_sym_preproc_else_token1] = ACTIONS(2459), - [aux_sym_preproc_elif_token1] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), + [348] = { + [sym_identifier] = ACTIONS(2489), + [aux_sym_preproc_include_token1] = ACTIONS(2489), + [aux_sym_preproc_def_token1] = ACTIONS(2489), + [aux_sym_preproc_if_token1] = ACTIONS(2489), + [aux_sym_preproc_if_token2] = ACTIONS(2489), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2489), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2489), + [aux_sym_preproc_else_token1] = ACTIONS(2489), + [aux_sym_preproc_elif_token1] = ACTIONS(2489), + [sym_preproc_directive] = ACTIONS(2489), + [anon_sym_LPAREN2] = ACTIONS(2491), + [anon_sym_BANG] = ACTIONS(2491), + [anon_sym_TILDE] = ACTIONS(2491), + [anon_sym_DASH] = ACTIONS(2489), + [anon_sym_PLUS] = ACTIONS(2489), + [anon_sym_STAR] = ACTIONS(2491), + [anon_sym_AMP_AMP] = ACTIONS(2491), + [anon_sym_AMP] = ACTIONS(2489), + [anon_sym_SEMI] = ACTIONS(2491), + [anon_sym_typedef] = ACTIONS(2489), + [anon_sym_extern] = ACTIONS(2489), + [anon_sym___attribute__] = ACTIONS(2489), + [anon_sym_COLON_COLON] = ACTIONS(2491), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2491), + [anon_sym___declspec] = ACTIONS(2489), + [anon_sym___based] = ACTIONS(2489), + [anon_sym___cdecl] = ACTIONS(2489), + [anon_sym___clrcall] = ACTIONS(2489), + [anon_sym___stdcall] = ACTIONS(2489), + [anon_sym___fastcall] = ACTIONS(2489), + [anon_sym___thiscall] = ACTIONS(2489), + [anon_sym___vectorcall] = ACTIONS(2489), + [anon_sym_LBRACE] = ACTIONS(2491), + [anon_sym_LBRACK] = ACTIONS(2489), + [anon_sym_static] = ACTIONS(2489), + [anon_sym_register] = ACTIONS(2489), + [anon_sym_inline] = ACTIONS(2489), + [anon_sym_thread_local] = ACTIONS(2489), + [anon_sym_const] = ACTIONS(2489), + [anon_sym_volatile] = ACTIONS(2489), + [anon_sym_restrict] = ACTIONS(2489), + [anon_sym__Atomic] = ACTIONS(2489), + [anon_sym_mutable] = ACTIONS(2489), + [anon_sym_constexpr] = ACTIONS(2489), + [anon_sym_constinit] = ACTIONS(2489), + [anon_sym_consteval] = ACTIONS(2489), + [anon_sym_signed] = ACTIONS(2489), + [anon_sym_unsigned] = ACTIONS(2489), + [anon_sym_long] = ACTIONS(2489), + [anon_sym_short] = ACTIONS(2489), + [sym_primitive_type] = ACTIONS(2489), + [anon_sym_enum] = ACTIONS(2489), + [anon_sym_class] = ACTIONS(2489), + [anon_sym_struct] = ACTIONS(2489), + [anon_sym_union] = ACTIONS(2489), + [anon_sym_if] = ACTIONS(2489), + [anon_sym_else] = ACTIONS(2489), + [anon_sym_switch] = ACTIONS(2489), + [anon_sym_case] = ACTIONS(2489), + [anon_sym_default] = ACTIONS(2489), + [anon_sym_while] = ACTIONS(2489), + [anon_sym_do] = ACTIONS(2489), + [anon_sym_for] = ACTIONS(2489), + [anon_sym_return] = ACTIONS(2489), + [anon_sym_break] = ACTIONS(2489), + [anon_sym_continue] = ACTIONS(2489), + [anon_sym_goto] = ACTIONS(2489), + [anon_sym_not] = ACTIONS(2489), + [anon_sym_compl] = ACTIONS(2489), + [anon_sym_DASH_DASH] = ACTIONS(2491), + [anon_sym_PLUS_PLUS] = ACTIONS(2491), + [anon_sym_sizeof] = ACTIONS(2489), + [sym_number_literal] = ACTIONS(2491), + [anon_sym_L_SQUOTE] = ACTIONS(2491), + [anon_sym_u_SQUOTE] = ACTIONS(2491), + [anon_sym_U_SQUOTE] = ACTIONS(2491), + [anon_sym_u8_SQUOTE] = ACTIONS(2491), + [anon_sym_SQUOTE] = ACTIONS(2491), + [anon_sym_L_DQUOTE] = ACTIONS(2491), + [anon_sym_u_DQUOTE] = ACTIONS(2491), + [anon_sym_U_DQUOTE] = ACTIONS(2491), + [anon_sym_u8_DQUOTE] = ACTIONS(2491), + [anon_sym_DQUOTE] = ACTIONS(2491), + [sym_true] = ACTIONS(2489), + [sym_false] = ACTIONS(2489), + [sym_null] = ACTIONS(2489), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2489), + [anon_sym_decltype] = ACTIONS(2489), + [anon_sym_virtual] = ACTIONS(2489), + [anon_sym_explicit] = ACTIONS(2489), + [anon_sym_typename] = ACTIONS(2489), + [anon_sym_template] = ACTIONS(2489), + [anon_sym_operator] = ACTIONS(2489), + [anon_sym_try] = ACTIONS(2489), + [anon_sym_delete] = ACTIONS(2489), + [anon_sym_throw] = ACTIONS(2489), + [anon_sym_namespace] = ACTIONS(2489), + [anon_sym_using] = ACTIONS(2489), + [anon_sym_static_assert] = ACTIONS(2489), + [anon_sym_concept] = ACTIONS(2489), + [anon_sym_co_return] = ACTIONS(2489), + [anon_sym_co_yield] = ACTIONS(2489), + [anon_sym_co_await] = ACTIONS(2489), + [anon_sym_new] = ACTIONS(2489), + [anon_sym_requires] = ACTIONS(2489), + [sym_this] = ACTIONS(2489), + [sym_nullptr] = ACTIONS(2489), + [sym_raw_string_literal] = ACTIONS(2491), }, - [416] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token2] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [aux_sym_preproc_else_token1] = ACTIONS(2459), - [aux_sym_preproc_elif_token1] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), + [349] = { + [sym_identifier] = ACTIONS(2493), + [aux_sym_preproc_include_token1] = ACTIONS(2493), + [aux_sym_preproc_def_token1] = ACTIONS(2493), + [aux_sym_preproc_if_token1] = ACTIONS(2493), + [aux_sym_preproc_if_token2] = ACTIONS(2493), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2493), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2493), + [aux_sym_preproc_else_token1] = ACTIONS(2493), + [aux_sym_preproc_elif_token1] = ACTIONS(2493), + [sym_preproc_directive] = ACTIONS(2493), + [anon_sym_LPAREN2] = ACTIONS(2495), + [anon_sym_BANG] = ACTIONS(2495), + [anon_sym_TILDE] = ACTIONS(2495), + [anon_sym_DASH] = ACTIONS(2493), + [anon_sym_PLUS] = ACTIONS(2493), + [anon_sym_STAR] = ACTIONS(2495), + [anon_sym_AMP_AMP] = ACTIONS(2495), + [anon_sym_AMP] = ACTIONS(2493), + [anon_sym_SEMI] = ACTIONS(2495), + [anon_sym_typedef] = ACTIONS(2493), + [anon_sym_extern] = ACTIONS(2493), + [anon_sym___attribute__] = ACTIONS(2493), + [anon_sym_COLON_COLON] = ACTIONS(2495), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2495), + [anon_sym___declspec] = ACTIONS(2493), + [anon_sym___based] = ACTIONS(2493), + [anon_sym___cdecl] = ACTIONS(2493), + [anon_sym___clrcall] = ACTIONS(2493), + [anon_sym___stdcall] = ACTIONS(2493), + [anon_sym___fastcall] = ACTIONS(2493), + [anon_sym___thiscall] = ACTIONS(2493), + [anon_sym___vectorcall] = ACTIONS(2493), + [anon_sym_LBRACE] = ACTIONS(2495), + [anon_sym_LBRACK] = ACTIONS(2493), + [anon_sym_static] = ACTIONS(2493), + [anon_sym_register] = ACTIONS(2493), + [anon_sym_inline] = ACTIONS(2493), + [anon_sym_thread_local] = ACTIONS(2493), + [anon_sym_const] = ACTIONS(2493), + [anon_sym_volatile] = ACTIONS(2493), + [anon_sym_restrict] = ACTIONS(2493), + [anon_sym__Atomic] = ACTIONS(2493), + [anon_sym_mutable] = ACTIONS(2493), + [anon_sym_constexpr] = ACTIONS(2493), + [anon_sym_constinit] = ACTIONS(2493), + [anon_sym_consteval] = ACTIONS(2493), + [anon_sym_signed] = ACTIONS(2493), + [anon_sym_unsigned] = ACTIONS(2493), + [anon_sym_long] = ACTIONS(2493), + [anon_sym_short] = ACTIONS(2493), + [sym_primitive_type] = ACTIONS(2493), + [anon_sym_enum] = ACTIONS(2493), + [anon_sym_class] = ACTIONS(2493), + [anon_sym_struct] = ACTIONS(2493), + [anon_sym_union] = ACTIONS(2493), + [anon_sym_if] = ACTIONS(2493), + [anon_sym_else] = ACTIONS(2497), + [anon_sym_switch] = ACTIONS(2493), + [anon_sym_case] = ACTIONS(2493), + [anon_sym_default] = ACTIONS(2493), + [anon_sym_while] = ACTIONS(2493), + [anon_sym_do] = ACTIONS(2493), + [anon_sym_for] = ACTIONS(2493), + [anon_sym_return] = ACTIONS(2493), + [anon_sym_break] = ACTIONS(2493), + [anon_sym_continue] = ACTIONS(2493), + [anon_sym_goto] = ACTIONS(2493), + [anon_sym_not] = ACTIONS(2493), + [anon_sym_compl] = ACTIONS(2493), + [anon_sym_DASH_DASH] = ACTIONS(2495), + [anon_sym_PLUS_PLUS] = ACTIONS(2495), + [anon_sym_sizeof] = ACTIONS(2493), + [sym_number_literal] = ACTIONS(2495), + [anon_sym_L_SQUOTE] = ACTIONS(2495), + [anon_sym_u_SQUOTE] = ACTIONS(2495), + [anon_sym_U_SQUOTE] = ACTIONS(2495), + [anon_sym_u8_SQUOTE] = ACTIONS(2495), + [anon_sym_SQUOTE] = ACTIONS(2495), + [anon_sym_L_DQUOTE] = ACTIONS(2495), + [anon_sym_u_DQUOTE] = ACTIONS(2495), + [anon_sym_U_DQUOTE] = ACTIONS(2495), + [anon_sym_u8_DQUOTE] = ACTIONS(2495), + [anon_sym_DQUOTE] = ACTIONS(2495), + [sym_true] = ACTIONS(2493), + [sym_false] = ACTIONS(2493), + [sym_null] = ACTIONS(2493), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2493), + [anon_sym_decltype] = ACTIONS(2493), + [anon_sym_virtual] = ACTIONS(2493), + [anon_sym_explicit] = ACTIONS(2493), + [anon_sym_typename] = ACTIONS(2493), + [anon_sym_template] = ACTIONS(2493), + [anon_sym_operator] = ACTIONS(2493), + [anon_sym_try] = ACTIONS(2493), + [anon_sym_delete] = ACTIONS(2493), + [anon_sym_throw] = ACTIONS(2493), + [anon_sym_namespace] = ACTIONS(2493), + [anon_sym_using] = ACTIONS(2493), + [anon_sym_static_assert] = ACTIONS(2493), + [anon_sym_concept] = ACTIONS(2493), + [anon_sym_co_return] = ACTIONS(2493), + [anon_sym_co_yield] = ACTIONS(2493), + [anon_sym_co_await] = ACTIONS(2493), + [anon_sym_new] = ACTIONS(2493), + [anon_sym_requires] = ACTIONS(2493), + [sym_this] = ACTIONS(2493), + [sym_nullptr] = ACTIONS(2493), + [sym_raw_string_literal] = ACTIONS(2495), }, - [417] = { + [350] = { [sym_identifier] = ACTIONS(2499), [aux_sym_preproc_include_token1] = ACTIONS(2499), [aux_sym_preproc_def_token1] = ACTIONS(2499), @@ -81021,6 +75914,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(2499), [anon_sym_continue] = ACTIONS(2499), [anon_sym_goto] = ACTIONS(2499), + [anon_sym_not] = ACTIONS(2499), + [anon_sym_compl] = ACTIONS(2499), [anon_sym_DASH_DASH] = ACTIONS(2501), [anon_sym_PLUS_PLUS] = ACTIONS(2501), [anon_sym_sizeof] = ACTIONS(2499), @@ -81062,334 +75957,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(2499), [sym_raw_string_literal] = ACTIONS(2501), }, - [418] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token2] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [aux_sym_preproc_else_token1] = ACTIONS(2347), - [aux_sym_preproc_elif_token1] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [419] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token2] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [aux_sym_preproc_else_token1] = ACTIONS(2347), - [aux_sym_preproc_elif_token1] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [420] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token2] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [aux_sym_preproc_else_token1] = ACTIONS(2459), - [aux_sym_preproc_elif_token1] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [421] = { + [351] = { [sym_identifier] = ACTIONS(2503), [aux_sym_preproc_include_token1] = ACTIONS(2503), [aux_sym_preproc_def_token1] = ACTIONS(2503), @@ -81457,6 +76025,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(2503), [anon_sym_continue] = ACTIONS(2503), [anon_sym_goto] = ACTIONS(2503), + [anon_sym_not] = ACTIONS(2503), + [anon_sym_compl] = ACTIONS(2503), [anon_sym_DASH_DASH] = ACTIONS(2505), [anon_sym_PLUS_PLUS] = ACTIONS(2505), [anon_sym_sizeof] = ACTIONS(2503), @@ -81498,4040 +76068,562 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(2503), [sym_raw_string_literal] = ACTIONS(2505), }, - [422] = { - [sym_catch_clause] = STATE(328), - [aux_sym_constructor_try_statement_repeat1] = STATE(328), - [sym_identifier] = ACTIONS(2274), - [aux_sym_preproc_include_token1] = ACTIONS(2274), - [aux_sym_preproc_def_token1] = ACTIONS(2274), - [aux_sym_preproc_if_token1] = ACTIONS(2274), - [aux_sym_preproc_if_token2] = ACTIONS(2274), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2274), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2274), - [sym_preproc_directive] = ACTIONS(2274), - [anon_sym_LPAREN2] = ACTIONS(2276), - [anon_sym_BANG] = ACTIONS(2276), - [anon_sym_TILDE] = ACTIONS(2276), - [anon_sym_DASH] = ACTIONS(2274), - [anon_sym_PLUS] = ACTIONS(2274), - [anon_sym_STAR] = ACTIONS(2276), - [anon_sym_AMP_AMP] = ACTIONS(2276), - [anon_sym_AMP] = ACTIONS(2274), - [anon_sym_SEMI] = ACTIONS(2276), - [anon_sym_typedef] = ACTIONS(2274), - [anon_sym_extern] = ACTIONS(2274), - [anon_sym___attribute__] = ACTIONS(2274), - [anon_sym_COLON_COLON] = ACTIONS(2276), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2276), - [anon_sym___declspec] = ACTIONS(2274), - [anon_sym___based] = ACTIONS(2274), - [anon_sym___cdecl] = ACTIONS(2274), - [anon_sym___clrcall] = ACTIONS(2274), - [anon_sym___stdcall] = ACTIONS(2274), - [anon_sym___fastcall] = ACTIONS(2274), - [anon_sym___thiscall] = ACTIONS(2274), - [anon_sym___vectorcall] = ACTIONS(2274), - [anon_sym_LBRACE] = ACTIONS(2276), - [anon_sym_LBRACK] = ACTIONS(2274), - [anon_sym_static] = ACTIONS(2274), - [anon_sym_register] = ACTIONS(2274), - [anon_sym_inline] = ACTIONS(2274), - [anon_sym_thread_local] = ACTIONS(2274), - [anon_sym_const] = ACTIONS(2274), - [anon_sym_volatile] = ACTIONS(2274), - [anon_sym_restrict] = ACTIONS(2274), - [anon_sym__Atomic] = ACTIONS(2274), - [anon_sym_mutable] = ACTIONS(2274), - [anon_sym_constexpr] = ACTIONS(2274), - [anon_sym_constinit] = ACTIONS(2274), - [anon_sym_consteval] = ACTIONS(2274), - [anon_sym_signed] = ACTIONS(2274), - [anon_sym_unsigned] = ACTIONS(2274), - [anon_sym_long] = ACTIONS(2274), - [anon_sym_short] = ACTIONS(2274), - [sym_primitive_type] = ACTIONS(2274), - [anon_sym_enum] = ACTIONS(2274), - [anon_sym_class] = ACTIONS(2274), - [anon_sym_struct] = ACTIONS(2274), - [anon_sym_union] = ACTIONS(2274), - [anon_sym_if] = ACTIONS(2274), - [anon_sym_switch] = ACTIONS(2274), - [anon_sym_case] = ACTIONS(2274), - [anon_sym_default] = ACTIONS(2274), - [anon_sym_while] = ACTIONS(2274), - [anon_sym_do] = ACTIONS(2274), - [anon_sym_for] = ACTIONS(2274), - [anon_sym_return] = ACTIONS(2274), - [anon_sym_break] = ACTIONS(2274), - [anon_sym_continue] = ACTIONS(2274), - [anon_sym_goto] = ACTIONS(2274), - [anon_sym_DASH_DASH] = ACTIONS(2276), - [anon_sym_PLUS_PLUS] = ACTIONS(2276), - [anon_sym_sizeof] = ACTIONS(2274), - [sym_number_literal] = ACTIONS(2276), - [anon_sym_L_SQUOTE] = ACTIONS(2276), - [anon_sym_u_SQUOTE] = ACTIONS(2276), - [anon_sym_U_SQUOTE] = ACTIONS(2276), - [anon_sym_u8_SQUOTE] = ACTIONS(2276), - [anon_sym_SQUOTE] = ACTIONS(2276), - [anon_sym_L_DQUOTE] = ACTIONS(2276), - [anon_sym_u_DQUOTE] = ACTIONS(2276), - [anon_sym_U_DQUOTE] = ACTIONS(2276), - [anon_sym_u8_DQUOTE] = ACTIONS(2276), - [anon_sym_DQUOTE] = ACTIONS(2276), - [sym_true] = ACTIONS(2274), - [sym_false] = ACTIONS(2274), - [sym_null] = ACTIONS(2274), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2274), - [anon_sym_decltype] = ACTIONS(2274), - [anon_sym_virtual] = ACTIONS(2274), - [anon_sym_explicit] = ACTIONS(2274), - [anon_sym_typename] = ACTIONS(2274), - [anon_sym_template] = ACTIONS(2274), - [anon_sym_operator] = ACTIONS(2274), - [anon_sym_try] = ACTIONS(2274), - [anon_sym_delete] = ACTIONS(2274), - [anon_sym_throw] = ACTIONS(2274), - [anon_sym_namespace] = ACTIONS(2274), - [anon_sym_using] = ACTIONS(2274), - [anon_sym_static_assert] = ACTIONS(2274), - [anon_sym_concept] = ACTIONS(2274), - [anon_sym_co_return] = ACTIONS(2274), - [anon_sym_co_yield] = ACTIONS(2274), - [anon_sym_catch] = ACTIONS(2285), - [anon_sym_co_await] = ACTIONS(2274), - [anon_sym_new] = ACTIONS(2274), - [anon_sym_requires] = ACTIONS(2274), - [sym_this] = ACTIONS(2274), - [sym_nullptr] = ACTIONS(2274), - [sym_raw_string_literal] = ACTIONS(2276), - }, - [423] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token2] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [aux_sym_preproc_else_token1] = ACTIONS(2459), - [aux_sym_preproc_elif_token1] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [424] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token2] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [aux_sym_preproc_else_token1] = ACTIONS(2459), - [aux_sym_preproc_elif_token1] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [425] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token2] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [aux_sym_preproc_else_token1] = ACTIONS(2459), - [aux_sym_preproc_elif_token1] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [426] = { - [sym_identifier] = ACTIONS(2507), - [aux_sym_preproc_include_token1] = ACTIONS(2507), - [aux_sym_preproc_def_token1] = ACTIONS(2507), - [aux_sym_preproc_if_token1] = ACTIONS(2507), - [aux_sym_preproc_if_token2] = ACTIONS(2507), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2507), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2507), - [aux_sym_preproc_else_token1] = ACTIONS(2507), - [aux_sym_preproc_elif_token1] = ACTIONS(2507), - [sym_preproc_directive] = ACTIONS(2507), - [anon_sym_LPAREN2] = ACTIONS(2509), - [anon_sym_BANG] = ACTIONS(2509), - [anon_sym_TILDE] = ACTIONS(2509), - [anon_sym_DASH] = ACTIONS(2507), - [anon_sym_PLUS] = ACTIONS(2507), - [anon_sym_STAR] = ACTIONS(2509), - [anon_sym_AMP_AMP] = ACTIONS(2509), - [anon_sym_AMP] = ACTIONS(2507), - [anon_sym_SEMI] = ACTIONS(2509), - [anon_sym_typedef] = ACTIONS(2507), - [anon_sym_extern] = ACTIONS(2507), - [anon_sym___attribute__] = ACTIONS(2507), - [anon_sym_COLON_COLON] = ACTIONS(2509), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2509), - [anon_sym___declspec] = ACTIONS(2507), - [anon_sym___based] = ACTIONS(2507), - [anon_sym___cdecl] = ACTIONS(2507), - [anon_sym___clrcall] = ACTIONS(2507), - [anon_sym___stdcall] = ACTIONS(2507), - [anon_sym___fastcall] = ACTIONS(2507), - [anon_sym___thiscall] = ACTIONS(2507), - [anon_sym___vectorcall] = ACTIONS(2507), - [anon_sym_LBRACE] = ACTIONS(2509), - [anon_sym_LBRACK] = ACTIONS(2507), - [anon_sym_static] = ACTIONS(2507), - [anon_sym_register] = ACTIONS(2507), - [anon_sym_inline] = ACTIONS(2507), - [anon_sym_thread_local] = ACTIONS(2507), - [anon_sym_const] = ACTIONS(2507), - [anon_sym_volatile] = ACTIONS(2507), - [anon_sym_restrict] = ACTIONS(2507), - [anon_sym__Atomic] = ACTIONS(2507), - [anon_sym_mutable] = ACTIONS(2507), - [anon_sym_constexpr] = ACTIONS(2507), - [anon_sym_constinit] = ACTIONS(2507), - [anon_sym_consteval] = ACTIONS(2507), - [anon_sym_signed] = ACTIONS(2507), - [anon_sym_unsigned] = ACTIONS(2507), - [anon_sym_long] = ACTIONS(2507), - [anon_sym_short] = ACTIONS(2507), - [sym_primitive_type] = ACTIONS(2507), - [anon_sym_enum] = ACTIONS(2507), - [anon_sym_class] = ACTIONS(2507), - [anon_sym_struct] = ACTIONS(2507), - [anon_sym_union] = ACTIONS(2507), - [anon_sym_if] = ACTIONS(2507), - [anon_sym_else] = ACTIONS(2507), - [anon_sym_switch] = ACTIONS(2507), - [anon_sym_case] = ACTIONS(2507), - [anon_sym_default] = ACTIONS(2507), - [anon_sym_while] = ACTIONS(2507), - [anon_sym_do] = ACTIONS(2507), - [anon_sym_for] = ACTIONS(2507), - [anon_sym_return] = ACTIONS(2507), - [anon_sym_break] = ACTIONS(2507), - [anon_sym_continue] = ACTIONS(2507), - [anon_sym_goto] = ACTIONS(2507), - [anon_sym_DASH_DASH] = ACTIONS(2509), - [anon_sym_PLUS_PLUS] = ACTIONS(2509), - [anon_sym_sizeof] = ACTIONS(2507), - [sym_number_literal] = ACTIONS(2509), - [anon_sym_L_SQUOTE] = ACTIONS(2509), - [anon_sym_u_SQUOTE] = ACTIONS(2509), - [anon_sym_U_SQUOTE] = ACTIONS(2509), - [anon_sym_u8_SQUOTE] = ACTIONS(2509), - [anon_sym_SQUOTE] = ACTIONS(2509), - [anon_sym_L_DQUOTE] = ACTIONS(2509), - [anon_sym_u_DQUOTE] = ACTIONS(2509), - [anon_sym_U_DQUOTE] = ACTIONS(2509), - [anon_sym_u8_DQUOTE] = ACTIONS(2509), - [anon_sym_DQUOTE] = ACTIONS(2509), - [sym_true] = ACTIONS(2507), - [sym_false] = ACTIONS(2507), - [sym_null] = ACTIONS(2507), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2507), - [anon_sym_decltype] = ACTIONS(2507), - [anon_sym_virtual] = ACTIONS(2507), - [anon_sym_explicit] = ACTIONS(2507), - [anon_sym_typename] = ACTIONS(2507), - [anon_sym_template] = ACTIONS(2507), - [anon_sym_operator] = ACTIONS(2507), - [anon_sym_try] = ACTIONS(2507), - [anon_sym_delete] = ACTIONS(2507), - [anon_sym_throw] = ACTIONS(2507), - [anon_sym_namespace] = ACTIONS(2507), - [anon_sym_using] = ACTIONS(2507), - [anon_sym_static_assert] = ACTIONS(2507), - [anon_sym_concept] = ACTIONS(2507), - [anon_sym_co_return] = ACTIONS(2507), - [anon_sym_co_yield] = ACTIONS(2507), - [anon_sym_co_await] = ACTIONS(2507), - [anon_sym_new] = ACTIONS(2507), - [anon_sym_requires] = ACTIONS(2507), - [sym_this] = ACTIONS(2507), - [sym_nullptr] = ACTIONS(2507), - [sym_raw_string_literal] = ACTIONS(2509), - }, - [427] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token2] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [aux_sym_preproc_else_token1] = ACTIONS(2459), - [aux_sym_preproc_elif_token1] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [428] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token2] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [aux_sym_preproc_else_token1] = ACTIONS(2459), - [aux_sym_preproc_elif_token1] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [429] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token2] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [aux_sym_preproc_else_token1] = ACTIONS(2347), - [aux_sym_preproc_elif_token1] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [430] = { - [sym_catch_clause] = STATE(333), - [aux_sym_constructor_try_statement_repeat1] = STATE(333), - [sym_identifier] = ACTIONS(2278), - [aux_sym_preproc_include_token1] = ACTIONS(2278), - [aux_sym_preproc_def_token1] = ACTIONS(2278), - [aux_sym_preproc_if_token1] = ACTIONS(2278), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2278), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2278), - [sym_preproc_directive] = ACTIONS(2278), - [anon_sym_LPAREN2] = ACTIONS(2280), - [anon_sym_BANG] = ACTIONS(2280), - [anon_sym_TILDE] = ACTIONS(2280), - [anon_sym_DASH] = ACTIONS(2278), - [anon_sym_PLUS] = ACTIONS(2278), - [anon_sym_STAR] = ACTIONS(2280), - [anon_sym_AMP_AMP] = ACTIONS(2280), - [anon_sym_AMP] = ACTIONS(2278), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_typedef] = ACTIONS(2278), - [anon_sym_extern] = ACTIONS(2278), - [anon_sym___attribute__] = ACTIONS(2278), - [anon_sym_COLON_COLON] = ACTIONS(2280), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2280), - [anon_sym___declspec] = ACTIONS(2278), - [anon_sym___based] = ACTIONS(2278), - [anon_sym___cdecl] = ACTIONS(2278), - [anon_sym___clrcall] = ACTIONS(2278), - [anon_sym___stdcall] = ACTIONS(2278), - [anon_sym___fastcall] = ACTIONS(2278), - [anon_sym___thiscall] = ACTIONS(2278), - [anon_sym___vectorcall] = ACTIONS(2278), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_RBRACE] = ACTIONS(2280), - [anon_sym_LBRACK] = ACTIONS(2278), - [anon_sym_static] = ACTIONS(2278), - [anon_sym_register] = ACTIONS(2278), - [anon_sym_inline] = ACTIONS(2278), - [anon_sym_thread_local] = ACTIONS(2278), - [anon_sym_const] = ACTIONS(2278), - [anon_sym_volatile] = ACTIONS(2278), - [anon_sym_restrict] = ACTIONS(2278), - [anon_sym__Atomic] = ACTIONS(2278), - [anon_sym_mutable] = ACTIONS(2278), - [anon_sym_constexpr] = ACTIONS(2278), - [anon_sym_constinit] = ACTIONS(2278), - [anon_sym_consteval] = ACTIONS(2278), - [anon_sym_signed] = ACTIONS(2278), - [anon_sym_unsigned] = ACTIONS(2278), - [anon_sym_long] = ACTIONS(2278), - [anon_sym_short] = ACTIONS(2278), - [sym_primitive_type] = ACTIONS(2278), - [anon_sym_enum] = ACTIONS(2278), - [anon_sym_class] = ACTIONS(2278), - [anon_sym_struct] = ACTIONS(2278), - [anon_sym_union] = ACTIONS(2278), - [anon_sym_if] = ACTIONS(2278), - [anon_sym_switch] = ACTIONS(2278), - [anon_sym_case] = ACTIONS(2278), - [anon_sym_default] = ACTIONS(2278), - [anon_sym_while] = ACTIONS(2278), - [anon_sym_do] = ACTIONS(2278), - [anon_sym_for] = ACTIONS(2278), - [anon_sym_return] = ACTIONS(2278), - [anon_sym_break] = ACTIONS(2278), - [anon_sym_continue] = ACTIONS(2278), - [anon_sym_goto] = ACTIONS(2278), - [anon_sym_DASH_DASH] = ACTIONS(2280), - [anon_sym_PLUS_PLUS] = ACTIONS(2280), - [anon_sym_sizeof] = ACTIONS(2278), - [sym_number_literal] = ACTIONS(2280), - [anon_sym_L_SQUOTE] = ACTIONS(2280), - [anon_sym_u_SQUOTE] = ACTIONS(2280), - [anon_sym_U_SQUOTE] = ACTIONS(2280), - [anon_sym_u8_SQUOTE] = ACTIONS(2280), - [anon_sym_SQUOTE] = ACTIONS(2280), - [anon_sym_L_DQUOTE] = ACTIONS(2280), - [anon_sym_u_DQUOTE] = ACTIONS(2280), - [anon_sym_U_DQUOTE] = ACTIONS(2280), - [anon_sym_u8_DQUOTE] = ACTIONS(2280), - [anon_sym_DQUOTE] = ACTIONS(2280), - [sym_true] = ACTIONS(2278), - [sym_false] = ACTIONS(2278), - [sym_null] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2278), - [anon_sym_decltype] = ACTIONS(2278), - [anon_sym_virtual] = ACTIONS(2278), - [anon_sym_explicit] = ACTIONS(2278), - [anon_sym_typename] = ACTIONS(2278), - [anon_sym_template] = ACTIONS(2278), - [anon_sym_operator] = ACTIONS(2278), - [anon_sym_try] = ACTIONS(2278), - [anon_sym_delete] = ACTIONS(2278), - [anon_sym_throw] = ACTIONS(2278), - [anon_sym_namespace] = ACTIONS(2278), - [anon_sym_using] = ACTIONS(2278), - [anon_sym_static_assert] = ACTIONS(2278), - [anon_sym_concept] = ACTIONS(2278), - [anon_sym_co_return] = ACTIONS(2278), - [anon_sym_co_yield] = ACTIONS(2278), - [anon_sym_catch] = ACTIONS(2298), - [anon_sym_co_await] = ACTIONS(2278), - [anon_sym_new] = ACTIONS(2278), - [anon_sym_requires] = ACTIONS(2278), - [sym_this] = ACTIONS(2278), - [sym_nullptr] = ACTIONS(2278), - [sym_raw_string_literal] = ACTIONS(2280), - }, - [431] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token2] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [aux_sym_preproc_else_token1] = ACTIONS(2459), - [aux_sym_preproc_elif_token1] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [432] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token2] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [aux_sym_preproc_else_token1] = ACTIONS(2347), - [aux_sym_preproc_elif_token1] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [433] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token2] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [aux_sym_preproc_else_token1] = ACTIONS(2459), - [aux_sym_preproc_elif_token1] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [434] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token2] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [aux_sym_preproc_else_token1] = ACTIONS(2459), - [aux_sym_preproc_elif_token1] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [435] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token2] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [aux_sym_preproc_else_token1] = ACTIONS(2459), - [aux_sym_preproc_elif_token1] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [436] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token2] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [aux_sym_preproc_else_token1] = ACTIONS(2459), - [aux_sym_preproc_elif_token1] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [437] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token2] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [aux_sym_preproc_else_token1] = ACTIONS(2459), - [aux_sym_preproc_elif_token1] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [438] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token2] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [aux_sym_preproc_else_token1] = ACTIONS(2459), - [aux_sym_preproc_elif_token1] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [439] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token2] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [aux_sym_preproc_else_token1] = ACTIONS(2459), - [aux_sym_preproc_elif_token1] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [440] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token2] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [aux_sym_preproc_else_token1] = ACTIONS(2511), - [aux_sym_preproc_elif_token1] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - [sym_raw_string_literal] = ACTIONS(2513), - }, - [441] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token2] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [aux_sym_preproc_else_token1] = ACTIONS(2459), - [aux_sym_preproc_elif_token1] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [442] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token2] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [aux_sym_preproc_else_token1] = ACTIONS(2459), - [aux_sym_preproc_elif_token1] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [443] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token2] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [aux_sym_preproc_else_token1] = ACTIONS(2459), - [aux_sym_preproc_elif_token1] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [444] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token2] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [aux_sym_preproc_else_token1] = ACTIONS(2459), - [aux_sym_preproc_elif_token1] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [445] = { - [sym_identifier] = ACTIONS(2515), - [aux_sym_preproc_include_token1] = ACTIONS(2515), - [aux_sym_preproc_def_token1] = ACTIONS(2515), - [aux_sym_preproc_if_token1] = ACTIONS(2515), - [aux_sym_preproc_if_token2] = ACTIONS(2515), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2515), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2515), - [aux_sym_preproc_else_token1] = ACTIONS(2515), - [aux_sym_preproc_elif_token1] = ACTIONS(2515), - [sym_preproc_directive] = ACTIONS(2515), - [anon_sym_LPAREN2] = ACTIONS(2517), - [anon_sym_BANG] = ACTIONS(2517), - [anon_sym_TILDE] = ACTIONS(2517), - [anon_sym_DASH] = ACTIONS(2515), - [anon_sym_PLUS] = ACTIONS(2515), - [anon_sym_STAR] = ACTIONS(2517), - [anon_sym_AMP_AMP] = ACTIONS(2517), - [anon_sym_AMP] = ACTIONS(2515), - [anon_sym_SEMI] = ACTIONS(2517), - [anon_sym_typedef] = ACTIONS(2515), - [anon_sym_extern] = ACTIONS(2515), - [anon_sym___attribute__] = ACTIONS(2515), - [anon_sym_COLON_COLON] = ACTIONS(2517), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2517), - [anon_sym___declspec] = ACTIONS(2515), - [anon_sym___based] = ACTIONS(2515), - [anon_sym___cdecl] = ACTIONS(2515), - [anon_sym___clrcall] = ACTIONS(2515), - [anon_sym___stdcall] = ACTIONS(2515), - [anon_sym___fastcall] = ACTIONS(2515), - [anon_sym___thiscall] = ACTIONS(2515), - [anon_sym___vectorcall] = ACTIONS(2515), - [anon_sym_LBRACE] = ACTIONS(2517), - [anon_sym_LBRACK] = ACTIONS(2515), - [anon_sym_static] = ACTIONS(2515), - [anon_sym_register] = ACTIONS(2515), - [anon_sym_inline] = ACTIONS(2515), - [anon_sym_thread_local] = ACTIONS(2515), - [anon_sym_const] = ACTIONS(2515), - [anon_sym_volatile] = ACTIONS(2515), - [anon_sym_restrict] = ACTIONS(2515), - [anon_sym__Atomic] = ACTIONS(2515), - [anon_sym_mutable] = ACTIONS(2515), - [anon_sym_constexpr] = ACTIONS(2515), - [anon_sym_constinit] = ACTIONS(2515), - [anon_sym_consteval] = ACTIONS(2515), - [anon_sym_signed] = ACTIONS(2515), - [anon_sym_unsigned] = ACTIONS(2515), - [anon_sym_long] = ACTIONS(2515), - [anon_sym_short] = ACTIONS(2515), - [sym_primitive_type] = ACTIONS(2515), - [anon_sym_enum] = ACTIONS(2515), - [anon_sym_class] = ACTIONS(2515), - [anon_sym_struct] = ACTIONS(2515), - [anon_sym_union] = ACTIONS(2515), - [anon_sym_if] = ACTIONS(2515), - [anon_sym_else] = ACTIONS(2515), - [anon_sym_switch] = ACTIONS(2515), - [anon_sym_case] = ACTIONS(2515), - [anon_sym_default] = ACTIONS(2515), - [anon_sym_while] = ACTIONS(2515), - [anon_sym_do] = ACTIONS(2515), - [anon_sym_for] = ACTIONS(2515), - [anon_sym_return] = ACTIONS(2515), - [anon_sym_break] = ACTIONS(2515), - [anon_sym_continue] = ACTIONS(2515), - [anon_sym_goto] = ACTIONS(2515), - [anon_sym_DASH_DASH] = ACTIONS(2517), - [anon_sym_PLUS_PLUS] = ACTIONS(2517), - [anon_sym_sizeof] = ACTIONS(2515), - [sym_number_literal] = ACTIONS(2517), - [anon_sym_L_SQUOTE] = ACTIONS(2517), - [anon_sym_u_SQUOTE] = ACTIONS(2517), - [anon_sym_U_SQUOTE] = ACTIONS(2517), - [anon_sym_u8_SQUOTE] = ACTIONS(2517), - [anon_sym_SQUOTE] = ACTIONS(2517), - [anon_sym_L_DQUOTE] = ACTIONS(2517), - [anon_sym_u_DQUOTE] = ACTIONS(2517), - [anon_sym_U_DQUOTE] = ACTIONS(2517), - [anon_sym_u8_DQUOTE] = ACTIONS(2517), - [anon_sym_DQUOTE] = ACTIONS(2517), - [sym_true] = ACTIONS(2515), - [sym_false] = ACTIONS(2515), - [sym_null] = ACTIONS(2515), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2515), - [anon_sym_decltype] = ACTIONS(2515), - [anon_sym_virtual] = ACTIONS(2515), - [anon_sym_explicit] = ACTIONS(2515), - [anon_sym_typename] = ACTIONS(2515), - [anon_sym_template] = ACTIONS(2515), - [anon_sym_operator] = ACTIONS(2515), - [anon_sym_try] = ACTIONS(2515), - [anon_sym_delete] = ACTIONS(2515), - [anon_sym_throw] = ACTIONS(2515), - [anon_sym_namespace] = ACTIONS(2515), - [anon_sym_using] = ACTIONS(2515), - [anon_sym_static_assert] = ACTIONS(2515), - [anon_sym_concept] = ACTIONS(2515), - [anon_sym_co_return] = ACTIONS(2515), - [anon_sym_co_yield] = ACTIONS(2515), - [anon_sym_co_await] = ACTIONS(2515), - [anon_sym_new] = ACTIONS(2515), - [anon_sym_requires] = ACTIONS(2515), - [sym_this] = ACTIONS(2515), - [sym_nullptr] = ACTIONS(2515), - [sym_raw_string_literal] = ACTIONS(2517), - }, - [446] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token2] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [aux_sym_preproc_else_token1] = ACTIONS(2459), - [aux_sym_preproc_elif_token1] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [447] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token2] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [aux_sym_preproc_else_token1] = ACTIONS(2459), - [aux_sym_preproc_elif_token1] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [448] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token2] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [aux_sym_preproc_else_token1] = ACTIONS(2459), - [aux_sym_preproc_elif_token1] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [449] = { - [sym_catch_clause] = STATE(324), - [aux_sym_constructor_try_statement_repeat1] = STATE(324), - [ts_builtin_sym_end] = ACTIONS(2276), - [sym_identifier] = ACTIONS(2274), - [aux_sym_preproc_include_token1] = ACTIONS(2274), - [aux_sym_preproc_def_token1] = ACTIONS(2274), - [aux_sym_preproc_if_token1] = ACTIONS(2274), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2274), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2274), - [sym_preproc_directive] = ACTIONS(2274), - [anon_sym_LPAREN2] = ACTIONS(2276), - [anon_sym_BANG] = ACTIONS(2276), - [anon_sym_TILDE] = ACTIONS(2276), - [anon_sym_DASH] = ACTIONS(2274), - [anon_sym_PLUS] = ACTIONS(2274), - [anon_sym_STAR] = ACTIONS(2276), - [anon_sym_AMP_AMP] = ACTIONS(2276), - [anon_sym_AMP] = ACTIONS(2274), - [anon_sym_SEMI] = ACTIONS(2276), - [anon_sym_typedef] = ACTIONS(2274), - [anon_sym_extern] = ACTIONS(2274), - [anon_sym___attribute__] = ACTIONS(2274), - [anon_sym_COLON_COLON] = ACTIONS(2276), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2276), - [anon_sym___declspec] = ACTIONS(2274), - [anon_sym___based] = ACTIONS(2274), - [anon_sym___cdecl] = ACTIONS(2274), - [anon_sym___clrcall] = ACTIONS(2274), - [anon_sym___stdcall] = ACTIONS(2274), - [anon_sym___fastcall] = ACTIONS(2274), - [anon_sym___thiscall] = ACTIONS(2274), - [anon_sym___vectorcall] = ACTIONS(2274), - [anon_sym_LBRACE] = ACTIONS(2276), - [anon_sym_LBRACK] = ACTIONS(2274), - [anon_sym_static] = ACTIONS(2274), - [anon_sym_register] = ACTIONS(2274), - [anon_sym_inline] = ACTIONS(2274), - [anon_sym_thread_local] = ACTIONS(2274), - [anon_sym_const] = ACTIONS(2274), - [anon_sym_volatile] = ACTIONS(2274), - [anon_sym_restrict] = ACTIONS(2274), - [anon_sym__Atomic] = ACTIONS(2274), - [anon_sym_mutable] = ACTIONS(2274), - [anon_sym_constexpr] = ACTIONS(2274), - [anon_sym_constinit] = ACTIONS(2274), - [anon_sym_consteval] = ACTIONS(2274), - [anon_sym_signed] = ACTIONS(2274), - [anon_sym_unsigned] = ACTIONS(2274), - [anon_sym_long] = ACTIONS(2274), - [anon_sym_short] = ACTIONS(2274), - [sym_primitive_type] = ACTIONS(2274), - [anon_sym_enum] = ACTIONS(2274), - [anon_sym_class] = ACTIONS(2274), - [anon_sym_struct] = ACTIONS(2274), - [anon_sym_union] = ACTIONS(2274), - [anon_sym_if] = ACTIONS(2274), - [anon_sym_switch] = ACTIONS(2274), - [anon_sym_case] = ACTIONS(2274), - [anon_sym_default] = ACTIONS(2274), - [anon_sym_while] = ACTIONS(2274), - [anon_sym_do] = ACTIONS(2274), - [anon_sym_for] = ACTIONS(2274), - [anon_sym_return] = ACTIONS(2274), - [anon_sym_break] = ACTIONS(2274), - [anon_sym_continue] = ACTIONS(2274), - [anon_sym_goto] = ACTIONS(2274), - [anon_sym_DASH_DASH] = ACTIONS(2276), - [anon_sym_PLUS_PLUS] = ACTIONS(2276), - [anon_sym_sizeof] = ACTIONS(2274), - [sym_number_literal] = ACTIONS(2276), - [anon_sym_L_SQUOTE] = ACTIONS(2276), - [anon_sym_u_SQUOTE] = ACTIONS(2276), - [anon_sym_U_SQUOTE] = ACTIONS(2276), - [anon_sym_u8_SQUOTE] = ACTIONS(2276), - [anon_sym_SQUOTE] = ACTIONS(2276), - [anon_sym_L_DQUOTE] = ACTIONS(2276), - [anon_sym_u_DQUOTE] = ACTIONS(2276), - [anon_sym_U_DQUOTE] = ACTIONS(2276), - [anon_sym_u8_DQUOTE] = ACTIONS(2276), - [anon_sym_DQUOTE] = ACTIONS(2276), - [sym_true] = ACTIONS(2274), - [sym_false] = ACTIONS(2274), - [sym_null] = ACTIONS(2274), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2274), - [anon_sym_decltype] = ACTIONS(2274), - [anon_sym_virtual] = ACTIONS(2274), - [anon_sym_explicit] = ACTIONS(2274), - [anon_sym_typename] = ACTIONS(2274), - [anon_sym_template] = ACTIONS(2274), - [anon_sym_operator] = ACTIONS(2274), - [anon_sym_try] = ACTIONS(2274), - [anon_sym_delete] = ACTIONS(2274), - [anon_sym_throw] = ACTIONS(2274), - [anon_sym_namespace] = ACTIONS(2274), - [anon_sym_using] = ACTIONS(2274), - [anon_sym_static_assert] = ACTIONS(2274), - [anon_sym_concept] = ACTIONS(2274), - [anon_sym_co_return] = ACTIONS(2274), - [anon_sym_co_yield] = ACTIONS(2274), - [anon_sym_catch] = ACTIONS(2300), - [anon_sym_co_await] = ACTIONS(2274), - [anon_sym_new] = ACTIONS(2274), - [anon_sym_requires] = ACTIONS(2274), - [sym_this] = ACTIONS(2274), - [sym_nullptr] = ACTIONS(2274), - [sym_raw_string_literal] = ACTIONS(2276), - }, - [450] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token2] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [aux_sym_preproc_else_token1] = ACTIONS(2459), - [aux_sym_preproc_elif_token1] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [451] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token2] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [aux_sym_preproc_else_token1] = ACTIONS(2459), - [aux_sym_preproc_elif_token1] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [452] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token2] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [aux_sym_preproc_else_token1] = ACTIONS(2459), - [aux_sym_preproc_elif_token1] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [453] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token2] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [aux_sym_preproc_else_token1] = ACTIONS(2459), - [aux_sym_preproc_elif_token1] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [454] = { - [sym_identifier] = ACTIONS(2351), - [aux_sym_preproc_include_token1] = ACTIONS(2351), - [aux_sym_preproc_def_token1] = ACTIONS(2351), - [aux_sym_preproc_if_token1] = ACTIONS(2351), - [aux_sym_preproc_if_token2] = ACTIONS(2351), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2351), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2351), - [aux_sym_preproc_else_token1] = ACTIONS(2351), - [aux_sym_preproc_elif_token1] = ACTIONS(2351), - [sym_preproc_directive] = ACTIONS(2351), - [anon_sym_LPAREN2] = ACTIONS(2353), - [anon_sym_BANG] = ACTIONS(2353), - [anon_sym_TILDE] = ACTIONS(2353), - [anon_sym_DASH] = ACTIONS(2351), - [anon_sym_PLUS] = ACTIONS(2351), - [anon_sym_STAR] = ACTIONS(2353), - [anon_sym_AMP_AMP] = ACTIONS(2353), - [anon_sym_AMP] = ACTIONS(2351), - [anon_sym_SEMI] = ACTIONS(2353), - [anon_sym_typedef] = ACTIONS(2351), - [anon_sym_extern] = ACTIONS(2351), - [anon_sym___attribute__] = ACTIONS(2351), - [anon_sym_COLON_COLON] = ACTIONS(2353), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2353), - [anon_sym___declspec] = ACTIONS(2351), - [anon_sym___based] = ACTIONS(2351), - [anon_sym___cdecl] = ACTIONS(2351), - [anon_sym___clrcall] = ACTIONS(2351), - [anon_sym___stdcall] = ACTIONS(2351), - [anon_sym___fastcall] = ACTIONS(2351), - [anon_sym___thiscall] = ACTIONS(2351), - [anon_sym___vectorcall] = ACTIONS(2351), - [anon_sym_LBRACE] = ACTIONS(2353), - [anon_sym_LBRACK] = ACTIONS(2351), - [anon_sym_static] = ACTIONS(2351), - [anon_sym_register] = ACTIONS(2351), - [anon_sym_inline] = ACTIONS(2351), - [anon_sym_thread_local] = ACTIONS(2351), - [anon_sym_const] = ACTIONS(2351), - [anon_sym_volatile] = ACTIONS(2351), - [anon_sym_restrict] = ACTIONS(2351), - [anon_sym__Atomic] = ACTIONS(2351), - [anon_sym_mutable] = ACTIONS(2351), - [anon_sym_constexpr] = ACTIONS(2351), - [anon_sym_constinit] = ACTIONS(2351), - [anon_sym_consteval] = ACTIONS(2351), - [anon_sym_signed] = ACTIONS(2351), - [anon_sym_unsigned] = ACTIONS(2351), - [anon_sym_long] = ACTIONS(2351), - [anon_sym_short] = ACTIONS(2351), - [sym_primitive_type] = ACTIONS(2351), - [anon_sym_enum] = ACTIONS(2351), - [anon_sym_class] = ACTIONS(2351), - [anon_sym_struct] = ACTIONS(2351), - [anon_sym_union] = ACTIONS(2351), - [anon_sym_if] = ACTIONS(2351), - [anon_sym_else] = ACTIONS(2351), - [anon_sym_switch] = ACTIONS(2351), - [anon_sym_case] = ACTIONS(2351), - [anon_sym_default] = ACTIONS(2351), - [anon_sym_while] = ACTIONS(2351), - [anon_sym_do] = ACTIONS(2351), - [anon_sym_for] = ACTIONS(2351), - [anon_sym_return] = ACTIONS(2351), - [anon_sym_break] = ACTIONS(2351), - [anon_sym_continue] = ACTIONS(2351), - [anon_sym_goto] = ACTIONS(2351), - [anon_sym_DASH_DASH] = ACTIONS(2353), - [anon_sym_PLUS_PLUS] = ACTIONS(2353), - [anon_sym_sizeof] = ACTIONS(2351), - [sym_number_literal] = ACTIONS(2353), - [anon_sym_L_SQUOTE] = ACTIONS(2353), - [anon_sym_u_SQUOTE] = ACTIONS(2353), - [anon_sym_U_SQUOTE] = ACTIONS(2353), - [anon_sym_u8_SQUOTE] = ACTIONS(2353), - [anon_sym_SQUOTE] = ACTIONS(2353), - [anon_sym_L_DQUOTE] = ACTIONS(2353), - [anon_sym_u_DQUOTE] = ACTIONS(2353), - [anon_sym_U_DQUOTE] = ACTIONS(2353), - [anon_sym_u8_DQUOTE] = ACTIONS(2353), - [anon_sym_DQUOTE] = ACTIONS(2353), - [sym_true] = ACTIONS(2351), - [sym_false] = ACTIONS(2351), - [sym_null] = ACTIONS(2351), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2351), - [anon_sym_decltype] = ACTIONS(2351), - [anon_sym_virtual] = ACTIONS(2351), - [anon_sym_explicit] = ACTIONS(2351), - [anon_sym_typename] = ACTIONS(2351), - [anon_sym_template] = ACTIONS(2351), - [anon_sym_operator] = ACTIONS(2351), - [anon_sym_try] = ACTIONS(2351), - [anon_sym_delete] = ACTIONS(2351), - [anon_sym_throw] = ACTIONS(2351), - [anon_sym_namespace] = ACTIONS(2351), - [anon_sym_using] = ACTIONS(2351), - [anon_sym_static_assert] = ACTIONS(2351), - [anon_sym_concept] = ACTIONS(2351), - [anon_sym_co_return] = ACTIONS(2351), - [anon_sym_co_yield] = ACTIONS(2351), - [anon_sym_co_await] = ACTIONS(2351), - [anon_sym_new] = ACTIONS(2351), - [anon_sym_requires] = ACTIONS(2351), - [sym_this] = ACTIONS(2351), - [sym_nullptr] = ACTIONS(2351), - [sym_raw_string_literal] = ACTIONS(2353), + [352] = { + [sym_identifier] = ACTIONS(2476), + [aux_sym_preproc_include_token1] = ACTIONS(2476), + [aux_sym_preproc_def_token1] = ACTIONS(2476), + [anon_sym_COMMA] = ACTIONS(2507), + [aux_sym_preproc_if_token1] = ACTIONS(2476), + [aux_sym_preproc_if_token2] = ACTIONS(2476), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2476), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2476), + [aux_sym_preproc_else_token1] = ACTIONS(2476), + [aux_sym_preproc_elif_token1] = ACTIONS(2476), + [sym_preproc_directive] = ACTIONS(2476), + [anon_sym_LPAREN2] = ACTIONS(2478), + [anon_sym_BANG] = ACTIONS(2478), + [anon_sym_TILDE] = ACTIONS(2478), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_STAR] = ACTIONS(2478), + [anon_sym_AMP_AMP] = ACTIONS(2478), + [anon_sym_AMP] = ACTIONS(2476), + [anon_sym_SEMI] = ACTIONS(2507), + [anon_sym_typedef] = ACTIONS(2476), + [anon_sym_extern] = ACTIONS(2476), + [anon_sym___attribute__] = ACTIONS(2476), + [anon_sym_COLON_COLON] = ACTIONS(2478), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2478), + [anon_sym___declspec] = ACTIONS(2476), + [anon_sym___based] = ACTIONS(2476), + [anon_sym___cdecl] = ACTIONS(2476), + [anon_sym___clrcall] = ACTIONS(2476), + [anon_sym___stdcall] = ACTIONS(2476), + [anon_sym___fastcall] = ACTIONS(2476), + [anon_sym___thiscall] = ACTIONS(2476), + [anon_sym___vectorcall] = ACTIONS(2476), + [anon_sym_LBRACE] = ACTIONS(2478), + [anon_sym_LBRACK] = ACTIONS(2476), + [anon_sym_static] = ACTIONS(2476), + [anon_sym_register] = ACTIONS(2476), + [anon_sym_inline] = ACTIONS(2476), + [anon_sym_thread_local] = ACTIONS(2476), + [anon_sym_const] = ACTIONS(2476), + [anon_sym_volatile] = ACTIONS(2476), + [anon_sym_restrict] = ACTIONS(2476), + [anon_sym__Atomic] = ACTIONS(2476), + [anon_sym_mutable] = ACTIONS(2476), + [anon_sym_constexpr] = ACTIONS(2476), + [anon_sym_constinit] = ACTIONS(2476), + [anon_sym_consteval] = ACTIONS(2476), + [anon_sym_signed] = ACTIONS(2476), + [anon_sym_unsigned] = ACTIONS(2476), + [anon_sym_long] = ACTIONS(2476), + [anon_sym_short] = ACTIONS(2476), + [sym_primitive_type] = ACTIONS(2476), + [anon_sym_enum] = ACTIONS(2476), + [anon_sym_class] = ACTIONS(2476), + [anon_sym_struct] = ACTIONS(2476), + [anon_sym_union] = ACTIONS(2476), + [anon_sym_if] = ACTIONS(2476), + [anon_sym_switch] = ACTIONS(2476), + [anon_sym_case] = ACTIONS(2476), + [anon_sym_default] = ACTIONS(2476), + [anon_sym_while] = ACTIONS(2476), + [anon_sym_do] = ACTIONS(2476), + [anon_sym_for] = ACTIONS(2476), + [anon_sym_return] = ACTIONS(2476), + [anon_sym_break] = ACTIONS(2476), + [anon_sym_continue] = ACTIONS(2476), + [anon_sym_goto] = ACTIONS(2476), + [anon_sym_not] = ACTIONS(2476), + [anon_sym_compl] = ACTIONS(2476), + [anon_sym_DASH_DASH] = ACTIONS(2478), + [anon_sym_PLUS_PLUS] = ACTIONS(2478), + [anon_sym_sizeof] = ACTIONS(2476), + [sym_number_literal] = ACTIONS(2478), + [anon_sym_L_SQUOTE] = ACTIONS(2478), + [anon_sym_u_SQUOTE] = ACTIONS(2478), + [anon_sym_U_SQUOTE] = ACTIONS(2478), + [anon_sym_u8_SQUOTE] = ACTIONS(2478), + [anon_sym_SQUOTE] = ACTIONS(2478), + [anon_sym_L_DQUOTE] = ACTIONS(2478), + [anon_sym_u_DQUOTE] = ACTIONS(2478), + [anon_sym_U_DQUOTE] = ACTIONS(2478), + [anon_sym_u8_DQUOTE] = ACTIONS(2478), + [anon_sym_DQUOTE] = ACTIONS(2478), + [sym_true] = ACTIONS(2476), + [sym_false] = ACTIONS(2476), + [sym_null] = ACTIONS(2476), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2476), + [anon_sym_decltype] = ACTIONS(2476), + [anon_sym_virtual] = ACTIONS(2476), + [anon_sym_explicit] = ACTIONS(2476), + [anon_sym_typename] = ACTIONS(2476), + [anon_sym_template] = ACTIONS(2476), + [anon_sym_operator] = ACTIONS(2476), + [anon_sym_try] = ACTIONS(2476), + [anon_sym_delete] = ACTIONS(2476), + [anon_sym_throw] = ACTIONS(2476), + [anon_sym_namespace] = ACTIONS(2476), + [anon_sym_using] = ACTIONS(2476), + [anon_sym_static_assert] = ACTIONS(2476), + [anon_sym_concept] = ACTIONS(2476), + [anon_sym_co_return] = ACTIONS(2476), + [anon_sym_co_yield] = ACTIONS(2476), + [anon_sym_co_await] = ACTIONS(2476), + [anon_sym_new] = ACTIONS(2476), + [anon_sym_requires] = ACTIONS(2476), + [sym_this] = ACTIONS(2476), + [sym_nullptr] = ACTIONS(2476), + [sym_raw_string_literal] = ACTIONS(2478), }, - [455] = { - [sym_identifier] = ACTIONS(2519), - [aux_sym_preproc_include_token1] = ACTIONS(2519), - [aux_sym_preproc_def_token1] = ACTIONS(2519), - [aux_sym_preproc_if_token1] = ACTIONS(2519), - [aux_sym_preproc_if_token2] = ACTIONS(2519), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2519), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2519), - [aux_sym_preproc_else_token1] = ACTIONS(2519), - [aux_sym_preproc_elif_token1] = ACTIONS(2519), - [sym_preproc_directive] = ACTIONS(2519), - [anon_sym_LPAREN2] = ACTIONS(2521), - [anon_sym_BANG] = ACTIONS(2521), - [anon_sym_TILDE] = ACTIONS(2521), - [anon_sym_DASH] = ACTIONS(2519), - [anon_sym_PLUS] = ACTIONS(2519), - [anon_sym_STAR] = ACTIONS(2521), - [anon_sym_AMP_AMP] = ACTIONS(2521), - [anon_sym_AMP] = ACTIONS(2519), - [anon_sym_SEMI] = ACTIONS(2521), - [anon_sym_typedef] = ACTIONS(2519), - [anon_sym_extern] = ACTIONS(2519), - [anon_sym___attribute__] = ACTIONS(2519), - [anon_sym_COLON_COLON] = ACTIONS(2521), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2521), - [anon_sym___declspec] = ACTIONS(2519), - [anon_sym___based] = ACTIONS(2519), - [anon_sym___cdecl] = ACTIONS(2519), - [anon_sym___clrcall] = ACTIONS(2519), - [anon_sym___stdcall] = ACTIONS(2519), - [anon_sym___fastcall] = ACTIONS(2519), - [anon_sym___thiscall] = ACTIONS(2519), - [anon_sym___vectorcall] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(2521), - [anon_sym_LBRACK] = ACTIONS(2519), - [anon_sym_static] = ACTIONS(2519), - [anon_sym_register] = ACTIONS(2519), - [anon_sym_inline] = ACTIONS(2519), - [anon_sym_thread_local] = ACTIONS(2519), - [anon_sym_const] = ACTIONS(2519), - [anon_sym_volatile] = ACTIONS(2519), - [anon_sym_restrict] = ACTIONS(2519), - [anon_sym__Atomic] = ACTIONS(2519), - [anon_sym_mutable] = ACTIONS(2519), - [anon_sym_constexpr] = ACTIONS(2519), - [anon_sym_constinit] = ACTIONS(2519), - [anon_sym_consteval] = ACTIONS(2519), - [anon_sym_signed] = ACTIONS(2519), - [anon_sym_unsigned] = ACTIONS(2519), - [anon_sym_long] = ACTIONS(2519), - [anon_sym_short] = ACTIONS(2519), - [sym_primitive_type] = ACTIONS(2519), - [anon_sym_enum] = ACTIONS(2519), - [anon_sym_class] = ACTIONS(2519), - [anon_sym_struct] = ACTIONS(2519), - [anon_sym_union] = ACTIONS(2519), - [anon_sym_if] = ACTIONS(2519), - [anon_sym_else] = ACTIONS(2523), - [anon_sym_switch] = ACTIONS(2519), - [anon_sym_case] = ACTIONS(2519), - [anon_sym_default] = ACTIONS(2519), - [anon_sym_while] = ACTIONS(2519), - [anon_sym_do] = ACTIONS(2519), - [anon_sym_for] = ACTIONS(2519), - [anon_sym_return] = ACTIONS(2519), - [anon_sym_break] = ACTIONS(2519), - [anon_sym_continue] = ACTIONS(2519), - [anon_sym_goto] = ACTIONS(2519), - [anon_sym_DASH_DASH] = ACTIONS(2521), - [anon_sym_PLUS_PLUS] = ACTIONS(2521), - [anon_sym_sizeof] = ACTIONS(2519), - [sym_number_literal] = ACTIONS(2521), - [anon_sym_L_SQUOTE] = ACTIONS(2521), - [anon_sym_u_SQUOTE] = ACTIONS(2521), - [anon_sym_U_SQUOTE] = ACTIONS(2521), - [anon_sym_u8_SQUOTE] = ACTIONS(2521), - [anon_sym_SQUOTE] = ACTIONS(2521), - [anon_sym_L_DQUOTE] = ACTIONS(2521), - [anon_sym_u_DQUOTE] = ACTIONS(2521), - [anon_sym_U_DQUOTE] = ACTIONS(2521), - [anon_sym_u8_DQUOTE] = ACTIONS(2521), - [anon_sym_DQUOTE] = ACTIONS(2521), - [sym_true] = ACTIONS(2519), - [sym_false] = ACTIONS(2519), - [sym_null] = ACTIONS(2519), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2519), - [anon_sym_decltype] = ACTIONS(2519), - [anon_sym_virtual] = ACTIONS(2519), - [anon_sym_explicit] = ACTIONS(2519), - [anon_sym_typename] = ACTIONS(2519), - [anon_sym_template] = ACTIONS(2519), - [anon_sym_operator] = ACTIONS(2519), - [anon_sym_try] = ACTIONS(2519), - [anon_sym_delete] = ACTIONS(2519), - [anon_sym_throw] = ACTIONS(2519), - [anon_sym_namespace] = ACTIONS(2519), - [anon_sym_using] = ACTIONS(2519), - [anon_sym_static_assert] = ACTIONS(2519), - [anon_sym_concept] = ACTIONS(2519), - [anon_sym_co_return] = ACTIONS(2519), - [anon_sym_co_yield] = ACTIONS(2519), - [anon_sym_co_await] = ACTIONS(2519), - [anon_sym_new] = ACTIONS(2519), - [anon_sym_requires] = ACTIONS(2519), - [sym_this] = ACTIONS(2519), - [sym_nullptr] = ACTIONS(2519), - [sym_raw_string_literal] = ACTIONS(2521), + [353] = { + [sym_identifier] = ACTIONS(2509), + [aux_sym_preproc_include_token1] = ACTIONS(2509), + [aux_sym_preproc_def_token1] = ACTIONS(2509), + [aux_sym_preproc_if_token1] = ACTIONS(2509), + [aux_sym_preproc_if_token2] = ACTIONS(2509), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2509), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2509), + [aux_sym_preproc_else_token1] = ACTIONS(2509), + [aux_sym_preproc_elif_token1] = ACTIONS(2509), + [sym_preproc_directive] = ACTIONS(2509), + [anon_sym_LPAREN2] = ACTIONS(2511), + [anon_sym_BANG] = ACTIONS(2511), + [anon_sym_TILDE] = ACTIONS(2511), + [anon_sym_DASH] = ACTIONS(2509), + [anon_sym_PLUS] = ACTIONS(2509), + [anon_sym_STAR] = ACTIONS(2511), + [anon_sym_AMP_AMP] = ACTIONS(2511), + [anon_sym_AMP] = ACTIONS(2509), + [anon_sym_SEMI] = ACTIONS(2511), + [anon_sym_typedef] = ACTIONS(2509), + [anon_sym_extern] = ACTIONS(2509), + [anon_sym___attribute__] = ACTIONS(2509), + [anon_sym_COLON_COLON] = ACTIONS(2511), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2511), + [anon_sym___declspec] = ACTIONS(2509), + [anon_sym___based] = ACTIONS(2509), + [anon_sym___cdecl] = ACTIONS(2509), + [anon_sym___clrcall] = ACTIONS(2509), + [anon_sym___stdcall] = ACTIONS(2509), + [anon_sym___fastcall] = ACTIONS(2509), + [anon_sym___thiscall] = ACTIONS(2509), + [anon_sym___vectorcall] = ACTIONS(2509), + [anon_sym_LBRACE] = ACTIONS(2511), + [anon_sym_LBRACK] = ACTIONS(2509), + [anon_sym_static] = ACTIONS(2509), + [anon_sym_register] = ACTIONS(2509), + [anon_sym_inline] = ACTIONS(2509), + [anon_sym_thread_local] = ACTIONS(2509), + [anon_sym_const] = ACTIONS(2509), + [anon_sym_volatile] = ACTIONS(2509), + [anon_sym_restrict] = ACTIONS(2509), + [anon_sym__Atomic] = ACTIONS(2509), + [anon_sym_mutable] = ACTIONS(2509), + [anon_sym_constexpr] = ACTIONS(2509), + [anon_sym_constinit] = ACTIONS(2509), + [anon_sym_consteval] = ACTIONS(2509), + [anon_sym_signed] = ACTIONS(2509), + [anon_sym_unsigned] = ACTIONS(2509), + [anon_sym_long] = ACTIONS(2509), + [anon_sym_short] = ACTIONS(2509), + [sym_primitive_type] = ACTIONS(2509), + [anon_sym_enum] = ACTIONS(2509), + [anon_sym_class] = ACTIONS(2509), + [anon_sym_struct] = ACTIONS(2509), + [anon_sym_union] = ACTIONS(2509), + [anon_sym_if] = ACTIONS(2509), + [anon_sym_else] = ACTIONS(2509), + [anon_sym_switch] = ACTIONS(2509), + [anon_sym_case] = ACTIONS(2509), + [anon_sym_default] = ACTIONS(2509), + [anon_sym_while] = ACTIONS(2509), + [anon_sym_do] = ACTIONS(2509), + [anon_sym_for] = ACTIONS(2509), + [anon_sym_return] = ACTIONS(2509), + [anon_sym_break] = ACTIONS(2509), + [anon_sym_continue] = ACTIONS(2509), + [anon_sym_goto] = ACTIONS(2509), + [anon_sym_not] = ACTIONS(2509), + [anon_sym_compl] = ACTIONS(2509), + [anon_sym_DASH_DASH] = ACTIONS(2511), + [anon_sym_PLUS_PLUS] = ACTIONS(2511), + [anon_sym_sizeof] = ACTIONS(2509), + [sym_number_literal] = ACTIONS(2511), + [anon_sym_L_SQUOTE] = ACTIONS(2511), + [anon_sym_u_SQUOTE] = ACTIONS(2511), + [anon_sym_U_SQUOTE] = ACTIONS(2511), + [anon_sym_u8_SQUOTE] = ACTIONS(2511), + [anon_sym_SQUOTE] = ACTIONS(2511), + [anon_sym_L_DQUOTE] = ACTIONS(2511), + [anon_sym_u_DQUOTE] = ACTIONS(2511), + [anon_sym_U_DQUOTE] = ACTIONS(2511), + [anon_sym_u8_DQUOTE] = ACTIONS(2511), + [anon_sym_DQUOTE] = ACTIONS(2511), + [sym_true] = ACTIONS(2509), + [sym_false] = ACTIONS(2509), + [sym_null] = ACTIONS(2509), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2509), + [anon_sym_decltype] = ACTIONS(2509), + [anon_sym_virtual] = ACTIONS(2509), + [anon_sym_explicit] = ACTIONS(2509), + [anon_sym_typename] = ACTIONS(2509), + [anon_sym_template] = ACTIONS(2509), + [anon_sym_operator] = ACTIONS(2509), + [anon_sym_try] = ACTIONS(2509), + [anon_sym_delete] = ACTIONS(2509), + [anon_sym_throw] = ACTIONS(2509), + [anon_sym_namespace] = ACTIONS(2509), + [anon_sym_using] = ACTIONS(2509), + [anon_sym_static_assert] = ACTIONS(2509), + [anon_sym_concept] = ACTIONS(2509), + [anon_sym_co_return] = ACTIONS(2509), + [anon_sym_co_yield] = ACTIONS(2509), + [anon_sym_co_await] = ACTIONS(2509), + [anon_sym_new] = ACTIONS(2509), + [anon_sym_requires] = ACTIONS(2509), + [sym_this] = ACTIONS(2509), + [sym_nullptr] = ACTIONS(2509), + [sym_raw_string_literal] = ACTIONS(2511), }, - [456] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token2] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [aux_sym_preproc_else_token1] = ACTIONS(2459), - [aux_sym_preproc_elif_token1] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), + [354] = { + [sym_identifier] = ACTIONS(2513), + [aux_sym_preproc_include_token1] = ACTIONS(2513), + [aux_sym_preproc_def_token1] = ACTIONS(2513), + [aux_sym_preproc_if_token1] = ACTIONS(2513), + [aux_sym_preproc_if_token2] = ACTIONS(2513), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2513), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2513), + [aux_sym_preproc_else_token1] = ACTIONS(2513), + [aux_sym_preproc_elif_token1] = ACTIONS(2513), + [sym_preproc_directive] = ACTIONS(2513), + [anon_sym_LPAREN2] = ACTIONS(2515), + [anon_sym_BANG] = ACTIONS(2515), + [anon_sym_TILDE] = ACTIONS(2515), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_STAR] = ACTIONS(2515), + [anon_sym_AMP_AMP] = ACTIONS(2515), + [anon_sym_AMP] = ACTIONS(2513), + [anon_sym_SEMI] = ACTIONS(2515), + [anon_sym_typedef] = ACTIONS(2513), + [anon_sym_extern] = ACTIONS(2513), + [anon_sym___attribute__] = ACTIONS(2513), + [anon_sym_COLON_COLON] = ACTIONS(2515), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2515), + [anon_sym___declspec] = ACTIONS(2513), + [anon_sym___based] = ACTIONS(2513), + [anon_sym___cdecl] = ACTIONS(2513), + [anon_sym___clrcall] = ACTIONS(2513), + [anon_sym___stdcall] = ACTIONS(2513), + [anon_sym___fastcall] = ACTIONS(2513), + [anon_sym___thiscall] = ACTIONS(2513), + [anon_sym___vectorcall] = ACTIONS(2513), + [anon_sym_LBRACE] = ACTIONS(2515), + [anon_sym_LBRACK] = ACTIONS(2513), + [anon_sym_static] = ACTIONS(2513), + [anon_sym_register] = ACTIONS(2513), + [anon_sym_inline] = ACTIONS(2513), + [anon_sym_thread_local] = ACTIONS(2513), + [anon_sym_const] = ACTIONS(2513), + [anon_sym_volatile] = ACTIONS(2513), + [anon_sym_restrict] = ACTIONS(2513), + [anon_sym__Atomic] = ACTIONS(2513), + [anon_sym_mutable] = ACTIONS(2513), + [anon_sym_constexpr] = ACTIONS(2513), + [anon_sym_constinit] = ACTIONS(2513), + [anon_sym_consteval] = ACTIONS(2513), + [anon_sym_signed] = ACTIONS(2513), + [anon_sym_unsigned] = ACTIONS(2513), + [anon_sym_long] = ACTIONS(2513), + [anon_sym_short] = ACTIONS(2513), + [sym_primitive_type] = ACTIONS(2513), + [anon_sym_enum] = ACTIONS(2513), + [anon_sym_class] = ACTIONS(2513), + [anon_sym_struct] = ACTIONS(2513), + [anon_sym_union] = ACTIONS(2513), + [anon_sym_if] = ACTIONS(2513), + [anon_sym_else] = ACTIONS(2513), + [anon_sym_switch] = ACTIONS(2513), + [anon_sym_case] = ACTIONS(2513), + [anon_sym_default] = ACTIONS(2513), + [anon_sym_while] = ACTIONS(2513), + [anon_sym_do] = ACTIONS(2513), + [anon_sym_for] = ACTIONS(2513), + [anon_sym_return] = ACTIONS(2513), + [anon_sym_break] = ACTIONS(2513), + [anon_sym_continue] = ACTIONS(2513), + [anon_sym_goto] = ACTIONS(2513), + [anon_sym_not] = ACTIONS(2513), + [anon_sym_compl] = ACTIONS(2513), + [anon_sym_DASH_DASH] = ACTIONS(2515), + [anon_sym_PLUS_PLUS] = ACTIONS(2515), + [anon_sym_sizeof] = ACTIONS(2513), + [sym_number_literal] = ACTIONS(2515), + [anon_sym_L_SQUOTE] = ACTIONS(2515), + [anon_sym_u_SQUOTE] = ACTIONS(2515), + [anon_sym_U_SQUOTE] = ACTIONS(2515), + [anon_sym_u8_SQUOTE] = ACTIONS(2515), + [anon_sym_SQUOTE] = ACTIONS(2515), + [anon_sym_L_DQUOTE] = ACTIONS(2515), + [anon_sym_u_DQUOTE] = ACTIONS(2515), + [anon_sym_U_DQUOTE] = ACTIONS(2515), + [anon_sym_u8_DQUOTE] = ACTIONS(2515), + [anon_sym_DQUOTE] = ACTIONS(2515), + [sym_true] = ACTIONS(2513), + [sym_false] = ACTIONS(2513), + [sym_null] = ACTIONS(2513), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2513), + [anon_sym_decltype] = ACTIONS(2513), + [anon_sym_virtual] = ACTIONS(2513), + [anon_sym_explicit] = ACTIONS(2513), + [anon_sym_typename] = ACTIONS(2513), + [anon_sym_template] = ACTIONS(2513), + [anon_sym_operator] = ACTIONS(2513), + [anon_sym_try] = ACTIONS(2513), + [anon_sym_delete] = ACTIONS(2513), + [anon_sym_throw] = ACTIONS(2513), + [anon_sym_namespace] = ACTIONS(2513), + [anon_sym_using] = ACTIONS(2513), + [anon_sym_static_assert] = ACTIONS(2513), + [anon_sym_concept] = ACTIONS(2513), + [anon_sym_co_return] = ACTIONS(2513), + [anon_sym_co_yield] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2513), + [anon_sym_new] = ACTIONS(2513), + [anon_sym_requires] = ACTIONS(2513), + [sym_this] = ACTIONS(2513), + [sym_nullptr] = ACTIONS(2513), + [sym_raw_string_literal] = ACTIONS(2515), }, - [457] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token2] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [aux_sym_preproc_else_token1] = ACTIONS(2347), - [aux_sym_preproc_elif_token1] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), + [355] = { + [sym_identifier] = ACTIONS(2517), + [aux_sym_preproc_include_token1] = ACTIONS(2517), + [aux_sym_preproc_def_token1] = ACTIONS(2517), + [aux_sym_preproc_if_token1] = ACTIONS(2517), + [aux_sym_preproc_if_token2] = ACTIONS(2517), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2517), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2517), + [aux_sym_preproc_else_token1] = ACTIONS(2517), + [aux_sym_preproc_elif_token1] = ACTIONS(2517), + [sym_preproc_directive] = ACTIONS(2517), + [anon_sym_LPAREN2] = ACTIONS(2519), + [anon_sym_BANG] = ACTIONS(2519), + [anon_sym_TILDE] = ACTIONS(2519), + [anon_sym_DASH] = ACTIONS(2517), + [anon_sym_PLUS] = ACTIONS(2517), + [anon_sym_STAR] = ACTIONS(2519), + [anon_sym_AMP_AMP] = ACTIONS(2519), + [anon_sym_AMP] = ACTIONS(2517), + [anon_sym_SEMI] = ACTIONS(2519), + [anon_sym_typedef] = ACTIONS(2517), + [anon_sym_extern] = ACTIONS(2517), + [anon_sym___attribute__] = ACTIONS(2517), + [anon_sym_COLON_COLON] = ACTIONS(2519), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2519), + [anon_sym___declspec] = ACTIONS(2517), + [anon_sym___based] = ACTIONS(2517), + [anon_sym___cdecl] = ACTIONS(2517), + [anon_sym___clrcall] = ACTIONS(2517), + [anon_sym___stdcall] = ACTIONS(2517), + [anon_sym___fastcall] = ACTIONS(2517), + [anon_sym___thiscall] = ACTIONS(2517), + [anon_sym___vectorcall] = ACTIONS(2517), + [anon_sym_LBRACE] = ACTIONS(2519), + [anon_sym_LBRACK] = ACTIONS(2517), + [anon_sym_static] = ACTIONS(2517), + [anon_sym_register] = ACTIONS(2517), + [anon_sym_inline] = ACTIONS(2517), + [anon_sym_thread_local] = ACTIONS(2517), + [anon_sym_const] = ACTIONS(2517), + [anon_sym_volatile] = ACTIONS(2517), + [anon_sym_restrict] = ACTIONS(2517), + [anon_sym__Atomic] = ACTIONS(2517), + [anon_sym_mutable] = ACTIONS(2517), + [anon_sym_constexpr] = ACTIONS(2517), + [anon_sym_constinit] = ACTIONS(2517), + [anon_sym_consteval] = ACTIONS(2517), + [anon_sym_signed] = ACTIONS(2517), + [anon_sym_unsigned] = ACTIONS(2517), + [anon_sym_long] = ACTIONS(2517), + [anon_sym_short] = ACTIONS(2517), + [sym_primitive_type] = ACTIONS(2517), + [anon_sym_enum] = ACTIONS(2517), + [anon_sym_class] = ACTIONS(2517), + [anon_sym_struct] = ACTIONS(2517), + [anon_sym_union] = ACTIONS(2517), + [anon_sym_if] = ACTIONS(2517), + [anon_sym_else] = ACTIONS(2517), + [anon_sym_switch] = ACTIONS(2517), + [anon_sym_case] = ACTIONS(2517), + [anon_sym_default] = ACTIONS(2517), + [anon_sym_while] = ACTIONS(2517), + [anon_sym_do] = ACTIONS(2517), + [anon_sym_for] = ACTIONS(2517), + [anon_sym_return] = ACTIONS(2517), + [anon_sym_break] = ACTIONS(2517), + [anon_sym_continue] = ACTIONS(2517), + [anon_sym_goto] = ACTIONS(2517), + [anon_sym_not] = ACTIONS(2517), + [anon_sym_compl] = ACTIONS(2517), + [anon_sym_DASH_DASH] = ACTIONS(2519), + [anon_sym_PLUS_PLUS] = ACTIONS(2519), + [anon_sym_sizeof] = ACTIONS(2517), + [sym_number_literal] = ACTIONS(2519), + [anon_sym_L_SQUOTE] = ACTIONS(2519), + [anon_sym_u_SQUOTE] = ACTIONS(2519), + [anon_sym_U_SQUOTE] = ACTIONS(2519), + [anon_sym_u8_SQUOTE] = ACTIONS(2519), + [anon_sym_SQUOTE] = ACTIONS(2519), + [anon_sym_L_DQUOTE] = ACTIONS(2519), + [anon_sym_u_DQUOTE] = ACTIONS(2519), + [anon_sym_U_DQUOTE] = ACTIONS(2519), + [anon_sym_u8_DQUOTE] = ACTIONS(2519), + [anon_sym_DQUOTE] = ACTIONS(2519), + [sym_true] = ACTIONS(2517), + [sym_false] = ACTIONS(2517), + [sym_null] = ACTIONS(2517), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2517), + [anon_sym_decltype] = ACTIONS(2517), + [anon_sym_virtual] = ACTIONS(2517), + [anon_sym_explicit] = ACTIONS(2517), + [anon_sym_typename] = ACTIONS(2517), + [anon_sym_template] = ACTIONS(2517), + [anon_sym_operator] = ACTIONS(2517), + [anon_sym_try] = ACTIONS(2517), + [anon_sym_delete] = ACTIONS(2517), + [anon_sym_throw] = ACTIONS(2517), + [anon_sym_namespace] = ACTIONS(2517), + [anon_sym_using] = ACTIONS(2517), + [anon_sym_static_assert] = ACTIONS(2517), + [anon_sym_concept] = ACTIONS(2517), + [anon_sym_co_return] = ACTIONS(2517), + [anon_sym_co_yield] = ACTIONS(2517), + [anon_sym_co_await] = ACTIONS(2517), + [anon_sym_new] = ACTIONS(2517), + [anon_sym_requires] = ACTIONS(2517), + [sym_this] = ACTIONS(2517), + [sym_nullptr] = ACTIONS(2517), + [sym_raw_string_literal] = ACTIONS(2519), }, - [458] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token2] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [aux_sym_preproc_else_token1] = ACTIONS(2459), - [aux_sym_preproc_elif_token1] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), + [356] = { + [sym_identifier] = ACTIONS(2521), + [aux_sym_preproc_include_token1] = ACTIONS(2521), + [aux_sym_preproc_def_token1] = ACTIONS(2521), + [aux_sym_preproc_if_token1] = ACTIONS(2521), + [aux_sym_preproc_if_token2] = ACTIONS(2521), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2521), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2521), + [aux_sym_preproc_else_token1] = ACTIONS(2521), + [aux_sym_preproc_elif_token1] = ACTIONS(2521), + [sym_preproc_directive] = ACTIONS(2521), + [anon_sym_LPAREN2] = ACTIONS(2523), + [anon_sym_BANG] = ACTIONS(2523), + [anon_sym_TILDE] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2521), + [anon_sym_PLUS] = ACTIONS(2521), + [anon_sym_STAR] = ACTIONS(2523), + [anon_sym_AMP_AMP] = ACTIONS(2523), + [anon_sym_AMP] = ACTIONS(2521), + [anon_sym_SEMI] = ACTIONS(2523), + [anon_sym_typedef] = ACTIONS(2521), + [anon_sym_extern] = ACTIONS(2521), + [anon_sym___attribute__] = ACTIONS(2521), + [anon_sym_COLON_COLON] = ACTIONS(2523), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2523), + [anon_sym___declspec] = ACTIONS(2521), + [anon_sym___based] = ACTIONS(2521), + [anon_sym___cdecl] = ACTIONS(2521), + [anon_sym___clrcall] = ACTIONS(2521), + [anon_sym___stdcall] = ACTIONS(2521), + [anon_sym___fastcall] = ACTIONS(2521), + [anon_sym___thiscall] = ACTIONS(2521), + [anon_sym___vectorcall] = ACTIONS(2521), + [anon_sym_LBRACE] = ACTIONS(2523), + [anon_sym_LBRACK] = ACTIONS(2521), + [anon_sym_static] = ACTIONS(2521), + [anon_sym_register] = ACTIONS(2521), + [anon_sym_inline] = ACTIONS(2521), + [anon_sym_thread_local] = ACTIONS(2521), + [anon_sym_const] = ACTIONS(2521), + [anon_sym_volatile] = ACTIONS(2521), + [anon_sym_restrict] = ACTIONS(2521), + [anon_sym__Atomic] = ACTIONS(2521), + [anon_sym_mutable] = ACTIONS(2521), + [anon_sym_constexpr] = ACTIONS(2521), + [anon_sym_constinit] = ACTIONS(2521), + [anon_sym_consteval] = ACTIONS(2521), + [anon_sym_signed] = ACTIONS(2521), + [anon_sym_unsigned] = ACTIONS(2521), + [anon_sym_long] = ACTIONS(2521), + [anon_sym_short] = ACTIONS(2521), + [sym_primitive_type] = ACTIONS(2521), + [anon_sym_enum] = ACTIONS(2521), + [anon_sym_class] = ACTIONS(2521), + [anon_sym_struct] = ACTIONS(2521), + [anon_sym_union] = ACTIONS(2521), + [anon_sym_if] = ACTIONS(2521), + [anon_sym_else] = ACTIONS(2521), + [anon_sym_switch] = ACTIONS(2521), + [anon_sym_case] = ACTIONS(2521), + [anon_sym_default] = ACTIONS(2521), + [anon_sym_while] = ACTIONS(2521), + [anon_sym_do] = ACTIONS(2521), + [anon_sym_for] = ACTIONS(2521), + [anon_sym_return] = ACTIONS(2521), + [anon_sym_break] = ACTIONS(2521), + [anon_sym_continue] = ACTIONS(2521), + [anon_sym_goto] = ACTIONS(2521), + [anon_sym_not] = ACTIONS(2521), + [anon_sym_compl] = ACTIONS(2521), + [anon_sym_DASH_DASH] = ACTIONS(2523), + [anon_sym_PLUS_PLUS] = ACTIONS(2523), + [anon_sym_sizeof] = ACTIONS(2521), + [sym_number_literal] = ACTIONS(2523), + [anon_sym_L_SQUOTE] = ACTIONS(2523), + [anon_sym_u_SQUOTE] = ACTIONS(2523), + [anon_sym_U_SQUOTE] = ACTIONS(2523), + [anon_sym_u8_SQUOTE] = ACTIONS(2523), + [anon_sym_SQUOTE] = ACTIONS(2523), + [anon_sym_L_DQUOTE] = ACTIONS(2523), + [anon_sym_u_DQUOTE] = ACTIONS(2523), + [anon_sym_U_DQUOTE] = ACTIONS(2523), + [anon_sym_u8_DQUOTE] = ACTIONS(2523), + [anon_sym_DQUOTE] = ACTIONS(2523), + [sym_true] = ACTIONS(2521), + [sym_false] = ACTIONS(2521), + [sym_null] = ACTIONS(2521), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2521), + [anon_sym_decltype] = ACTIONS(2521), + [anon_sym_virtual] = ACTIONS(2521), + [anon_sym_explicit] = ACTIONS(2521), + [anon_sym_typename] = ACTIONS(2521), + [anon_sym_template] = ACTIONS(2521), + [anon_sym_operator] = ACTIONS(2521), + [anon_sym_try] = ACTIONS(2521), + [anon_sym_delete] = ACTIONS(2521), + [anon_sym_throw] = ACTIONS(2521), + [anon_sym_namespace] = ACTIONS(2521), + [anon_sym_using] = ACTIONS(2521), + [anon_sym_static_assert] = ACTIONS(2521), + [anon_sym_concept] = ACTIONS(2521), + [anon_sym_co_return] = ACTIONS(2521), + [anon_sym_co_yield] = ACTIONS(2521), + [anon_sym_co_await] = ACTIONS(2521), + [anon_sym_new] = ACTIONS(2521), + [anon_sym_requires] = ACTIONS(2521), + [sym_this] = ACTIONS(2521), + [sym_nullptr] = ACTIONS(2521), + [sym_raw_string_literal] = ACTIONS(2523), }, - [459] = { + [357] = { [sym_identifier] = ACTIONS(2525), [aux_sym_preproc_include_token1] = ACTIONS(2525), [aux_sym_preproc_def_token1] = ACTIONS(2525), @@ -85588,6 +76680,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(2525), [anon_sym_union] = ACTIONS(2525), [anon_sym_if] = ACTIONS(2525), + [anon_sym_else] = ACTIONS(2525), [anon_sym_switch] = ACTIONS(2525), [anon_sym_case] = ACTIONS(2525), [anon_sym_default] = ACTIONS(2525), @@ -85598,6 +76691,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(2525), [anon_sym_continue] = ACTIONS(2525), [anon_sym_goto] = ACTIONS(2525), + [anon_sym_not] = ACTIONS(2525), + [anon_sym_compl] = ACTIONS(2525), [anon_sym_DASH_DASH] = ACTIONS(2527), [anon_sym_PLUS_PLUS] = ACTIONS(2527), [anon_sym_sizeof] = ACTIONS(2525), @@ -85639,115 +76734,5779 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(2525), [sym_raw_string_literal] = ACTIONS(2527), }, - [460] = { - [sym_type_qualifier] = STATE(2979), - [sym__type_specifier] = STATE(3924), - [sym_sized_type_specifier] = STATE(2872), - [sym_enum_specifier] = STATE(2872), - [sym_struct_specifier] = STATE(2872), - [sym_union_specifier] = STATE(2872), - [sym__expression] = STATE(3534), - [sym_conditional_expression] = STATE(3881), - [sym_assignment_expression] = STATE(3881), - [sym_pointer_expression] = STATE(2977), - [sym_unary_expression] = STATE(3881), - [sym_binary_expression] = STATE(3881), - [sym_update_expression] = STATE(3881), - [sym_cast_expression] = STATE(3881), - [sym_type_descriptor] = STATE(5297), - [sym_sizeof_expression] = STATE(3881), - [sym_subscript_expression] = STATE(2977), - [sym_call_expression] = STATE(2977), - [sym_field_expression] = STATE(2977), - [sym_compound_literal_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(2977), - [sym_char_literal] = STATE(3701), - [sym_concatenated_string] = STATE(3701), - [sym_string_literal] = STATE(3219), - [sym_placeholder_type_specifier] = STATE(2872), - [sym_decltype_auto] = STATE(2878), - [sym_decltype] = STATE(2872), - [sym_class_specifier] = STATE(2872), - [sym__class_name] = STATE(6063), - [sym_dependent_type] = STATE(2872), - [sym_template_type] = STATE(4194), - [sym_template_function] = STATE(3881), - [sym_co_await_expression] = STATE(3881), - [sym_new_expression] = STATE(3881), - [sym_delete_expression] = STATE(3881), - [sym_requires_clause] = STATE(3881), - [sym_requires_expression] = STATE(3881), - [sym_lambda_expression] = STATE(3881), - [sym_lambda_capture_specifier] = STATE(4519), - [sym_fold_expression] = STATE(3881), - [sym_parameter_pack_expansion] = STATE(3881), - [sym_type_parameter_pack_expansion] = STATE(5697), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4633), - [sym_qualified_identifier] = STATE(2977), - [sym_qualified_type_identifier] = STATE(4305), - [sym_user_defined_literal] = STATE(3881), - [aux_sym_type_definition_repeat1] = STATE(2979), - [aux_sym_sized_type_specifier_repeat1] = STATE(2182), + [358] = { [sym_identifier] = ACTIONS(2529), + [aux_sym_preproc_include_token1] = ACTIONS(2529), + [aux_sym_preproc_def_token1] = ACTIONS(2529), + [aux_sym_preproc_if_token1] = ACTIONS(2529), + [aux_sym_preproc_if_token2] = ACTIONS(2529), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2529), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2529), + [aux_sym_preproc_else_token1] = ACTIONS(2529), + [aux_sym_preproc_elif_token1] = ACTIONS(2529), + [sym_preproc_directive] = ACTIONS(2529), [anon_sym_LPAREN2] = ACTIONS(2531), - [anon_sym_BANG] = ACTIONS(2533), - [anon_sym_TILDE] = ACTIONS(2533), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_STAR] = ACTIONS(2537), + [anon_sym_BANG] = ACTIONS(2531), + [anon_sym_TILDE] = ACTIONS(2531), + [anon_sym_DASH] = ACTIONS(2529), + [anon_sym_PLUS] = ACTIONS(2529), + [anon_sym_STAR] = ACTIONS(2531), + [anon_sym_AMP_AMP] = ACTIONS(2531), + [anon_sym_AMP] = ACTIONS(2529), + [anon_sym_SEMI] = ACTIONS(2531), + [anon_sym_typedef] = ACTIONS(2529), + [anon_sym_extern] = ACTIONS(2529), + [anon_sym___attribute__] = ACTIONS(2529), + [anon_sym_COLON_COLON] = ACTIONS(2531), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2531), + [anon_sym___declspec] = ACTIONS(2529), + [anon_sym___based] = ACTIONS(2529), + [anon_sym___cdecl] = ACTIONS(2529), + [anon_sym___clrcall] = ACTIONS(2529), + [anon_sym___stdcall] = ACTIONS(2529), + [anon_sym___fastcall] = ACTIONS(2529), + [anon_sym___thiscall] = ACTIONS(2529), + [anon_sym___vectorcall] = ACTIONS(2529), + [anon_sym_LBRACE] = ACTIONS(2531), + [anon_sym_LBRACK] = ACTIONS(2529), + [anon_sym_static] = ACTIONS(2529), + [anon_sym_register] = ACTIONS(2529), + [anon_sym_inline] = ACTIONS(2529), + [anon_sym_thread_local] = ACTIONS(2529), + [anon_sym_const] = ACTIONS(2529), + [anon_sym_volatile] = ACTIONS(2529), + [anon_sym_restrict] = ACTIONS(2529), + [anon_sym__Atomic] = ACTIONS(2529), + [anon_sym_mutable] = ACTIONS(2529), + [anon_sym_constexpr] = ACTIONS(2529), + [anon_sym_constinit] = ACTIONS(2529), + [anon_sym_consteval] = ACTIONS(2529), + [anon_sym_signed] = ACTIONS(2529), + [anon_sym_unsigned] = ACTIONS(2529), + [anon_sym_long] = ACTIONS(2529), + [anon_sym_short] = ACTIONS(2529), + [sym_primitive_type] = ACTIONS(2529), + [anon_sym_enum] = ACTIONS(2529), + [anon_sym_class] = ACTIONS(2529), + [anon_sym_struct] = ACTIONS(2529), + [anon_sym_union] = ACTIONS(2529), + [anon_sym_if] = ACTIONS(2529), + [anon_sym_else] = ACTIONS(2529), + [anon_sym_switch] = ACTIONS(2529), + [anon_sym_case] = ACTIONS(2529), + [anon_sym_default] = ACTIONS(2529), + [anon_sym_while] = ACTIONS(2529), + [anon_sym_do] = ACTIONS(2529), + [anon_sym_for] = ACTIONS(2529), + [anon_sym_return] = ACTIONS(2529), + [anon_sym_break] = ACTIONS(2529), + [anon_sym_continue] = ACTIONS(2529), + [anon_sym_goto] = ACTIONS(2529), + [anon_sym_not] = ACTIONS(2529), + [anon_sym_compl] = ACTIONS(2529), + [anon_sym_DASH_DASH] = ACTIONS(2531), + [anon_sym_PLUS_PLUS] = ACTIONS(2531), + [anon_sym_sizeof] = ACTIONS(2529), + [sym_number_literal] = ACTIONS(2531), + [anon_sym_L_SQUOTE] = ACTIONS(2531), + [anon_sym_u_SQUOTE] = ACTIONS(2531), + [anon_sym_U_SQUOTE] = ACTIONS(2531), + [anon_sym_u8_SQUOTE] = ACTIONS(2531), + [anon_sym_SQUOTE] = ACTIONS(2531), + [anon_sym_L_DQUOTE] = ACTIONS(2531), + [anon_sym_u_DQUOTE] = ACTIONS(2531), + [anon_sym_U_DQUOTE] = ACTIONS(2531), + [anon_sym_u8_DQUOTE] = ACTIONS(2531), + [anon_sym_DQUOTE] = ACTIONS(2531), + [sym_true] = ACTIONS(2529), + [sym_false] = ACTIONS(2529), + [sym_null] = ACTIONS(2529), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2529), + [anon_sym_decltype] = ACTIONS(2529), + [anon_sym_virtual] = ACTIONS(2529), + [anon_sym_explicit] = ACTIONS(2529), + [anon_sym_typename] = ACTIONS(2529), + [anon_sym_template] = ACTIONS(2529), + [anon_sym_operator] = ACTIONS(2529), + [anon_sym_try] = ACTIONS(2529), + [anon_sym_delete] = ACTIONS(2529), + [anon_sym_throw] = ACTIONS(2529), + [anon_sym_namespace] = ACTIONS(2529), + [anon_sym_using] = ACTIONS(2529), + [anon_sym_static_assert] = ACTIONS(2529), + [anon_sym_concept] = ACTIONS(2529), + [anon_sym_co_return] = ACTIONS(2529), + [anon_sym_co_yield] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2529), + [anon_sym_new] = ACTIONS(2529), + [anon_sym_requires] = ACTIONS(2529), + [sym_this] = ACTIONS(2529), + [sym_nullptr] = ACTIONS(2529), + [sym_raw_string_literal] = ACTIONS(2531), + }, + [359] = { + [sym_identifier] = ACTIONS(2533), + [aux_sym_preproc_include_token1] = ACTIONS(2533), + [aux_sym_preproc_def_token1] = ACTIONS(2533), + [aux_sym_preproc_if_token1] = ACTIONS(2533), + [aux_sym_preproc_if_token2] = ACTIONS(2533), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2533), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2533), + [aux_sym_preproc_else_token1] = ACTIONS(2533), + [aux_sym_preproc_elif_token1] = ACTIONS(2533), + [sym_preproc_directive] = ACTIONS(2533), + [anon_sym_LPAREN2] = ACTIONS(2535), + [anon_sym_BANG] = ACTIONS(2535), + [anon_sym_TILDE] = ACTIONS(2535), + [anon_sym_DASH] = ACTIONS(2533), + [anon_sym_PLUS] = ACTIONS(2533), + [anon_sym_STAR] = ACTIONS(2535), + [anon_sym_AMP_AMP] = ACTIONS(2535), + [anon_sym_AMP] = ACTIONS(2533), + [anon_sym_SEMI] = ACTIONS(2535), + [anon_sym_typedef] = ACTIONS(2533), + [anon_sym_extern] = ACTIONS(2533), + [anon_sym___attribute__] = ACTIONS(2533), + [anon_sym_COLON_COLON] = ACTIONS(2535), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2535), + [anon_sym___declspec] = ACTIONS(2533), + [anon_sym___based] = ACTIONS(2533), + [anon_sym___cdecl] = ACTIONS(2533), + [anon_sym___clrcall] = ACTIONS(2533), + [anon_sym___stdcall] = ACTIONS(2533), + [anon_sym___fastcall] = ACTIONS(2533), + [anon_sym___thiscall] = ACTIONS(2533), + [anon_sym___vectorcall] = ACTIONS(2533), + [anon_sym_LBRACE] = ACTIONS(2535), + [anon_sym_LBRACK] = ACTIONS(2533), + [anon_sym_static] = ACTIONS(2533), + [anon_sym_register] = ACTIONS(2533), + [anon_sym_inline] = ACTIONS(2533), + [anon_sym_thread_local] = ACTIONS(2533), + [anon_sym_const] = ACTIONS(2533), + [anon_sym_volatile] = ACTIONS(2533), + [anon_sym_restrict] = ACTIONS(2533), + [anon_sym__Atomic] = ACTIONS(2533), + [anon_sym_mutable] = ACTIONS(2533), + [anon_sym_constexpr] = ACTIONS(2533), + [anon_sym_constinit] = ACTIONS(2533), + [anon_sym_consteval] = ACTIONS(2533), + [anon_sym_signed] = ACTIONS(2533), + [anon_sym_unsigned] = ACTIONS(2533), + [anon_sym_long] = ACTIONS(2533), + [anon_sym_short] = ACTIONS(2533), + [sym_primitive_type] = ACTIONS(2533), + [anon_sym_enum] = ACTIONS(2533), + [anon_sym_class] = ACTIONS(2533), + [anon_sym_struct] = ACTIONS(2533), + [anon_sym_union] = ACTIONS(2533), + [anon_sym_if] = ACTIONS(2533), + [anon_sym_else] = ACTIONS(2533), + [anon_sym_switch] = ACTIONS(2533), + [anon_sym_case] = ACTIONS(2533), + [anon_sym_default] = ACTIONS(2533), + [anon_sym_while] = ACTIONS(2533), + [anon_sym_do] = ACTIONS(2533), + [anon_sym_for] = ACTIONS(2533), + [anon_sym_return] = ACTIONS(2533), + [anon_sym_break] = ACTIONS(2533), + [anon_sym_continue] = ACTIONS(2533), + [anon_sym_goto] = ACTIONS(2533), + [anon_sym_not] = ACTIONS(2533), + [anon_sym_compl] = ACTIONS(2533), + [anon_sym_DASH_DASH] = ACTIONS(2535), + [anon_sym_PLUS_PLUS] = ACTIONS(2535), + [anon_sym_sizeof] = ACTIONS(2533), + [sym_number_literal] = ACTIONS(2535), + [anon_sym_L_SQUOTE] = ACTIONS(2535), + [anon_sym_u_SQUOTE] = ACTIONS(2535), + [anon_sym_U_SQUOTE] = ACTIONS(2535), + [anon_sym_u8_SQUOTE] = ACTIONS(2535), + [anon_sym_SQUOTE] = ACTIONS(2535), + [anon_sym_L_DQUOTE] = ACTIONS(2535), + [anon_sym_u_DQUOTE] = ACTIONS(2535), + [anon_sym_U_DQUOTE] = ACTIONS(2535), + [anon_sym_u8_DQUOTE] = ACTIONS(2535), + [anon_sym_DQUOTE] = ACTIONS(2535), + [sym_true] = ACTIONS(2533), + [sym_false] = ACTIONS(2533), + [sym_null] = ACTIONS(2533), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2533), + [anon_sym_decltype] = ACTIONS(2533), + [anon_sym_virtual] = ACTIONS(2533), + [anon_sym_explicit] = ACTIONS(2533), + [anon_sym_typename] = ACTIONS(2533), + [anon_sym_template] = ACTIONS(2533), + [anon_sym_operator] = ACTIONS(2533), + [anon_sym_try] = ACTIONS(2533), + [anon_sym_delete] = ACTIONS(2533), + [anon_sym_throw] = ACTIONS(2533), + [anon_sym_namespace] = ACTIONS(2533), + [anon_sym_using] = ACTIONS(2533), + [anon_sym_static_assert] = ACTIONS(2533), + [anon_sym_concept] = ACTIONS(2533), + [anon_sym_co_return] = ACTIONS(2533), + [anon_sym_co_yield] = ACTIONS(2533), + [anon_sym_co_await] = ACTIONS(2533), + [anon_sym_new] = ACTIONS(2533), + [anon_sym_requires] = ACTIONS(2533), + [sym_this] = ACTIONS(2533), + [sym_nullptr] = ACTIONS(2533), + [sym_raw_string_literal] = ACTIONS(2535), + }, + [360] = { + [sym_identifier] = ACTIONS(2537), + [aux_sym_preproc_include_token1] = ACTIONS(2537), + [aux_sym_preproc_def_token1] = ACTIONS(2537), + [aux_sym_preproc_if_token1] = ACTIONS(2537), + [aux_sym_preproc_if_token2] = ACTIONS(2537), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2537), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2537), + [aux_sym_preproc_else_token1] = ACTIONS(2537), + [aux_sym_preproc_elif_token1] = ACTIONS(2537), + [sym_preproc_directive] = ACTIONS(2537), + [anon_sym_LPAREN2] = ACTIONS(2539), + [anon_sym_BANG] = ACTIONS(2539), + [anon_sym_TILDE] = ACTIONS(2539), + [anon_sym_DASH] = ACTIONS(2537), + [anon_sym_PLUS] = ACTIONS(2537), + [anon_sym_STAR] = ACTIONS(2539), + [anon_sym_AMP_AMP] = ACTIONS(2539), [anon_sym_AMP] = ACTIONS(2537), + [anon_sym_SEMI] = ACTIONS(2539), + [anon_sym_typedef] = ACTIONS(2537), + [anon_sym_extern] = ACTIONS(2537), + [anon_sym___attribute__] = ACTIONS(2537), [anon_sym_COLON_COLON] = ACTIONS(2539), - [anon_sym_LBRACK] = ACTIONS(2272), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2539), + [anon_sym___declspec] = ACTIONS(2537), + [anon_sym___based] = ACTIONS(2537), + [anon_sym___cdecl] = ACTIONS(2537), + [anon_sym___clrcall] = ACTIONS(2537), + [anon_sym___stdcall] = ACTIONS(2537), + [anon_sym___fastcall] = ACTIONS(2537), + [anon_sym___thiscall] = ACTIONS(2537), + [anon_sym___vectorcall] = ACTIONS(2537), + [anon_sym_LBRACE] = ACTIONS(2539), + [anon_sym_LBRACK] = ACTIONS(2537), + [anon_sym_static] = ACTIONS(2537), + [anon_sym_register] = ACTIONS(2537), + [anon_sym_inline] = ACTIONS(2537), + [anon_sym_thread_local] = ACTIONS(2537), + [anon_sym_const] = ACTIONS(2537), + [anon_sym_volatile] = ACTIONS(2537), + [anon_sym_restrict] = ACTIONS(2537), + [anon_sym__Atomic] = ACTIONS(2537), + [anon_sym_mutable] = ACTIONS(2537), + [anon_sym_constexpr] = ACTIONS(2537), + [anon_sym_constinit] = ACTIONS(2537), + [anon_sym_consteval] = ACTIONS(2537), + [anon_sym_signed] = ACTIONS(2537), + [anon_sym_unsigned] = ACTIONS(2537), + [anon_sym_long] = ACTIONS(2537), + [anon_sym_short] = ACTIONS(2537), + [sym_primitive_type] = ACTIONS(2537), + [anon_sym_enum] = ACTIONS(2537), + [anon_sym_class] = ACTIONS(2537), + [anon_sym_struct] = ACTIONS(2537), + [anon_sym_union] = ACTIONS(2537), + [anon_sym_if] = ACTIONS(2537), + [anon_sym_else] = ACTIONS(2537), + [anon_sym_switch] = ACTIONS(2537), + [anon_sym_case] = ACTIONS(2537), + [anon_sym_default] = ACTIONS(2537), + [anon_sym_while] = ACTIONS(2537), + [anon_sym_do] = ACTIONS(2537), + [anon_sym_for] = ACTIONS(2537), + [anon_sym_return] = ACTIONS(2537), + [anon_sym_break] = ACTIONS(2537), + [anon_sym_continue] = ACTIONS(2537), + [anon_sym_goto] = ACTIONS(2537), + [anon_sym_not] = ACTIONS(2537), + [anon_sym_compl] = ACTIONS(2537), + [anon_sym_DASH_DASH] = ACTIONS(2539), + [anon_sym_PLUS_PLUS] = ACTIONS(2539), + [anon_sym_sizeof] = ACTIONS(2537), + [sym_number_literal] = ACTIONS(2539), + [anon_sym_L_SQUOTE] = ACTIONS(2539), + [anon_sym_u_SQUOTE] = ACTIONS(2539), + [anon_sym_U_SQUOTE] = ACTIONS(2539), + [anon_sym_u8_SQUOTE] = ACTIONS(2539), + [anon_sym_SQUOTE] = ACTIONS(2539), + [anon_sym_L_DQUOTE] = ACTIONS(2539), + [anon_sym_u_DQUOTE] = ACTIONS(2539), + [anon_sym_U_DQUOTE] = ACTIONS(2539), + [anon_sym_u8_DQUOTE] = ACTIONS(2539), + [anon_sym_DQUOTE] = ACTIONS(2539), + [sym_true] = ACTIONS(2537), + [sym_false] = ACTIONS(2537), + [sym_null] = ACTIONS(2537), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2537), + [anon_sym_decltype] = ACTIONS(2537), + [anon_sym_virtual] = ACTIONS(2537), + [anon_sym_explicit] = ACTIONS(2537), + [anon_sym_typename] = ACTIONS(2537), + [anon_sym_template] = ACTIONS(2537), + [anon_sym_operator] = ACTIONS(2537), + [anon_sym_try] = ACTIONS(2537), + [anon_sym_delete] = ACTIONS(2537), + [anon_sym_throw] = ACTIONS(2537), + [anon_sym_namespace] = ACTIONS(2537), + [anon_sym_using] = ACTIONS(2537), + [anon_sym_static_assert] = ACTIONS(2537), + [anon_sym_concept] = ACTIONS(2537), + [anon_sym_co_return] = ACTIONS(2537), + [anon_sym_co_yield] = ACTIONS(2537), + [anon_sym_co_await] = ACTIONS(2537), + [anon_sym_new] = ACTIONS(2537), + [anon_sym_requires] = ACTIONS(2537), + [sym_this] = ACTIONS(2537), + [sym_nullptr] = ACTIONS(2537), + [sym_raw_string_literal] = ACTIONS(2539), + }, + [361] = { + [sym_catch_clause] = STATE(341), + [aux_sym_constructor_try_statement_repeat1] = STATE(341), + [ts_builtin_sym_end] = ACTIONS(2426), + [sym_identifier] = ACTIONS(2424), + [aux_sym_preproc_include_token1] = ACTIONS(2424), + [aux_sym_preproc_def_token1] = ACTIONS(2424), + [aux_sym_preproc_if_token1] = ACTIONS(2424), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2424), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2424), + [sym_preproc_directive] = ACTIONS(2424), + [anon_sym_LPAREN2] = ACTIONS(2426), + [anon_sym_BANG] = ACTIONS(2426), + [anon_sym_TILDE] = ACTIONS(2426), + [anon_sym_DASH] = ACTIONS(2424), + [anon_sym_PLUS] = ACTIONS(2424), + [anon_sym_STAR] = ACTIONS(2426), + [anon_sym_AMP_AMP] = ACTIONS(2426), + [anon_sym_AMP] = ACTIONS(2424), + [anon_sym_SEMI] = ACTIONS(2426), + [anon_sym_typedef] = ACTIONS(2424), + [anon_sym_extern] = ACTIONS(2424), + [anon_sym___attribute__] = ACTIONS(2424), + [anon_sym_COLON_COLON] = ACTIONS(2426), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2426), + [anon_sym___declspec] = ACTIONS(2424), + [anon_sym___based] = ACTIONS(2424), + [anon_sym___cdecl] = ACTIONS(2424), + [anon_sym___clrcall] = ACTIONS(2424), + [anon_sym___stdcall] = ACTIONS(2424), + [anon_sym___fastcall] = ACTIONS(2424), + [anon_sym___thiscall] = ACTIONS(2424), + [anon_sym___vectorcall] = ACTIONS(2424), + [anon_sym_LBRACE] = ACTIONS(2426), + [anon_sym_LBRACK] = ACTIONS(2424), + [anon_sym_static] = ACTIONS(2424), + [anon_sym_register] = ACTIONS(2424), + [anon_sym_inline] = ACTIONS(2424), + [anon_sym_thread_local] = ACTIONS(2424), + [anon_sym_const] = ACTIONS(2424), + [anon_sym_volatile] = ACTIONS(2424), + [anon_sym_restrict] = ACTIONS(2424), + [anon_sym__Atomic] = ACTIONS(2424), + [anon_sym_mutable] = ACTIONS(2424), + [anon_sym_constexpr] = ACTIONS(2424), + [anon_sym_constinit] = ACTIONS(2424), + [anon_sym_consteval] = ACTIONS(2424), + [anon_sym_signed] = ACTIONS(2424), + [anon_sym_unsigned] = ACTIONS(2424), + [anon_sym_long] = ACTIONS(2424), + [anon_sym_short] = ACTIONS(2424), + [sym_primitive_type] = ACTIONS(2424), + [anon_sym_enum] = ACTIONS(2424), + [anon_sym_class] = ACTIONS(2424), + [anon_sym_struct] = ACTIONS(2424), + [anon_sym_union] = ACTIONS(2424), + [anon_sym_if] = ACTIONS(2424), + [anon_sym_switch] = ACTIONS(2424), + [anon_sym_case] = ACTIONS(2424), + [anon_sym_default] = ACTIONS(2424), + [anon_sym_while] = ACTIONS(2424), + [anon_sym_do] = ACTIONS(2424), + [anon_sym_for] = ACTIONS(2424), + [anon_sym_return] = ACTIONS(2424), + [anon_sym_break] = ACTIONS(2424), + [anon_sym_continue] = ACTIONS(2424), + [anon_sym_goto] = ACTIONS(2424), + [anon_sym_not] = ACTIONS(2424), + [anon_sym_compl] = ACTIONS(2424), + [anon_sym_DASH_DASH] = ACTIONS(2426), + [anon_sym_PLUS_PLUS] = ACTIONS(2426), + [anon_sym_sizeof] = ACTIONS(2424), + [sym_number_literal] = ACTIONS(2426), + [anon_sym_L_SQUOTE] = ACTIONS(2426), + [anon_sym_u_SQUOTE] = ACTIONS(2426), + [anon_sym_U_SQUOTE] = ACTIONS(2426), + [anon_sym_u8_SQUOTE] = ACTIONS(2426), + [anon_sym_SQUOTE] = ACTIONS(2426), + [anon_sym_L_DQUOTE] = ACTIONS(2426), + [anon_sym_u_DQUOTE] = ACTIONS(2426), + [anon_sym_U_DQUOTE] = ACTIONS(2426), + [anon_sym_u8_DQUOTE] = ACTIONS(2426), + [anon_sym_DQUOTE] = ACTIONS(2426), + [sym_true] = ACTIONS(2424), + [sym_false] = ACTIONS(2424), + [sym_null] = ACTIONS(2424), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2424), + [anon_sym_decltype] = ACTIONS(2424), + [anon_sym_virtual] = ACTIONS(2424), + [anon_sym_explicit] = ACTIONS(2424), + [anon_sym_typename] = ACTIONS(2424), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_operator] = ACTIONS(2424), + [anon_sym_try] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2424), + [anon_sym_throw] = ACTIONS(2424), + [anon_sym_namespace] = ACTIONS(2424), + [anon_sym_using] = ACTIONS(2424), + [anon_sym_static_assert] = ACTIONS(2424), + [anon_sym_concept] = ACTIONS(2424), + [anon_sym_co_return] = ACTIONS(2424), + [anon_sym_co_yield] = ACTIONS(2424), + [anon_sym_catch] = ACTIONS(2474), + [anon_sym_co_await] = ACTIONS(2424), + [anon_sym_new] = ACTIONS(2424), + [anon_sym_requires] = ACTIONS(2424), + [sym_this] = ACTIONS(2424), + [sym_nullptr] = ACTIONS(2424), + [sym_raw_string_literal] = ACTIONS(2426), + }, + [362] = { + [sym_identifier] = ACTIONS(2541), + [aux_sym_preproc_include_token1] = ACTIONS(2541), + [aux_sym_preproc_def_token1] = ACTIONS(2541), + [aux_sym_preproc_if_token1] = ACTIONS(2541), + [aux_sym_preproc_if_token2] = ACTIONS(2541), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2541), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2541), + [aux_sym_preproc_else_token1] = ACTIONS(2541), + [aux_sym_preproc_elif_token1] = ACTIONS(2541), + [sym_preproc_directive] = ACTIONS(2541), + [anon_sym_LPAREN2] = ACTIONS(2543), + [anon_sym_BANG] = ACTIONS(2543), + [anon_sym_TILDE] = ACTIONS(2543), + [anon_sym_DASH] = ACTIONS(2541), + [anon_sym_PLUS] = ACTIONS(2541), + [anon_sym_STAR] = ACTIONS(2543), + [anon_sym_AMP_AMP] = ACTIONS(2543), + [anon_sym_AMP] = ACTIONS(2541), + [anon_sym_SEMI] = ACTIONS(2543), + [anon_sym_typedef] = ACTIONS(2541), + [anon_sym_extern] = ACTIONS(2541), + [anon_sym___attribute__] = ACTIONS(2541), + [anon_sym_COLON_COLON] = ACTIONS(2543), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2543), + [anon_sym___declspec] = ACTIONS(2541), + [anon_sym___based] = ACTIONS(2541), + [anon_sym___cdecl] = ACTIONS(2541), + [anon_sym___clrcall] = ACTIONS(2541), + [anon_sym___stdcall] = ACTIONS(2541), + [anon_sym___fastcall] = ACTIONS(2541), + [anon_sym___thiscall] = ACTIONS(2541), + [anon_sym___vectorcall] = ACTIONS(2541), + [anon_sym_LBRACE] = ACTIONS(2543), + [anon_sym_LBRACK] = ACTIONS(2541), + [anon_sym_static] = ACTIONS(2541), + [anon_sym_register] = ACTIONS(2541), + [anon_sym_inline] = ACTIONS(2541), + [anon_sym_thread_local] = ACTIONS(2541), + [anon_sym_const] = ACTIONS(2541), + [anon_sym_volatile] = ACTIONS(2541), + [anon_sym_restrict] = ACTIONS(2541), + [anon_sym__Atomic] = ACTIONS(2541), + [anon_sym_mutable] = ACTIONS(2541), + [anon_sym_constexpr] = ACTIONS(2541), + [anon_sym_constinit] = ACTIONS(2541), + [anon_sym_consteval] = ACTIONS(2541), [anon_sym_signed] = ACTIONS(2541), [anon_sym_unsigned] = ACTIONS(2541), [anon_sym_long] = ACTIONS(2541), [anon_sym_short] = ACTIONS(2541), - [sym_primitive_type] = ACTIONS(2543), - [anon_sym_enum] = ACTIONS(2545), + [sym_primitive_type] = ACTIONS(2541), + [anon_sym_enum] = ACTIONS(2541), + [anon_sym_class] = ACTIONS(2541), + [anon_sym_struct] = ACTIONS(2541), + [anon_sym_union] = ACTIONS(2541), + [anon_sym_if] = ACTIONS(2541), + [anon_sym_else] = ACTIONS(2545), + [anon_sym_switch] = ACTIONS(2541), + [anon_sym_case] = ACTIONS(2541), + [anon_sym_default] = ACTIONS(2541), + [anon_sym_while] = ACTIONS(2541), + [anon_sym_do] = ACTIONS(2541), + [anon_sym_for] = ACTIONS(2541), + [anon_sym_return] = ACTIONS(2541), + [anon_sym_break] = ACTIONS(2541), + [anon_sym_continue] = ACTIONS(2541), + [anon_sym_goto] = ACTIONS(2541), + [anon_sym_not] = ACTIONS(2541), + [anon_sym_compl] = ACTIONS(2541), + [anon_sym_DASH_DASH] = ACTIONS(2543), + [anon_sym_PLUS_PLUS] = ACTIONS(2543), + [anon_sym_sizeof] = ACTIONS(2541), + [sym_number_literal] = ACTIONS(2543), + [anon_sym_L_SQUOTE] = ACTIONS(2543), + [anon_sym_u_SQUOTE] = ACTIONS(2543), + [anon_sym_U_SQUOTE] = ACTIONS(2543), + [anon_sym_u8_SQUOTE] = ACTIONS(2543), + [anon_sym_SQUOTE] = ACTIONS(2543), + [anon_sym_L_DQUOTE] = ACTIONS(2543), + [anon_sym_u_DQUOTE] = ACTIONS(2543), + [anon_sym_U_DQUOTE] = ACTIONS(2543), + [anon_sym_u8_DQUOTE] = ACTIONS(2543), + [anon_sym_DQUOTE] = ACTIONS(2543), + [sym_true] = ACTIONS(2541), + [sym_false] = ACTIONS(2541), + [sym_null] = ACTIONS(2541), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2541), + [anon_sym_decltype] = ACTIONS(2541), + [anon_sym_virtual] = ACTIONS(2541), + [anon_sym_explicit] = ACTIONS(2541), + [anon_sym_typename] = ACTIONS(2541), + [anon_sym_template] = ACTIONS(2541), + [anon_sym_operator] = ACTIONS(2541), + [anon_sym_try] = ACTIONS(2541), + [anon_sym_delete] = ACTIONS(2541), + [anon_sym_throw] = ACTIONS(2541), + [anon_sym_namespace] = ACTIONS(2541), + [anon_sym_using] = ACTIONS(2541), + [anon_sym_static_assert] = ACTIONS(2541), + [anon_sym_concept] = ACTIONS(2541), + [anon_sym_co_return] = ACTIONS(2541), + [anon_sym_co_yield] = ACTIONS(2541), + [anon_sym_co_await] = ACTIONS(2541), + [anon_sym_new] = ACTIONS(2541), + [anon_sym_requires] = ACTIONS(2541), + [sym_this] = ACTIONS(2541), + [sym_nullptr] = ACTIONS(2541), + [sym_raw_string_literal] = ACTIONS(2543), + }, + [363] = { + [sym_catch_clause] = STATE(341), + [aux_sym_constructor_try_statement_repeat1] = STATE(341), + [ts_builtin_sym_end] = ACTIONS(2422), + [sym_identifier] = ACTIONS(2420), + [aux_sym_preproc_include_token1] = ACTIONS(2420), + [aux_sym_preproc_def_token1] = ACTIONS(2420), + [aux_sym_preproc_if_token1] = ACTIONS(2420), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2420), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2420), + [sym_preproc_directive] = ACTIONS(2420), + [anon_sym_LPAREN2] = ACTIONS(2422), + [anon_sym_BANG] = ACTIONS(2422), + [anon_sym_TILDE] = ACTIONS(2422), + [anon_sym_DASH] = ACTIONS(2420), + [anon_sym_PLUS] = ACTIONS(2420), + [anon_sym_STAR] = ACTIONS(2422), + [anon_sym_AMP_AMP] = ACTIONS(2422), + [anon_sym_AMP] = ACTIONS(2420), + [anon_sym_SEMI] = ACTIONS(2422), + [anon_sym_typedef] = ACTIONS(2420), + [anon_sym_extern] = ACTIONS(2420), + [anon_sym___attribute__] = ACTIONS(2420), + [anon_sym_COLON_COLON] = ACTIONS(2422), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2422), + [anon_sym___declspec] = ACTIONS(2420), + [anon_sym___based] = ACTIONS(2420), + [anon_sym___cdecl] = ACTIONS(2420), + [anon_sym___clrcall] = ACTIONS(2420), + [anon_sym___stdcall] = ACTIONS(2420), + [anon_sym___fastcall] = ACTIONS(2420), + [anon_sym___thiscall] = ACTIONS(2420), + [anon_sym___vectorcall] = ACTIONS(2420), + [anon_sym_LBRACE] = ACTIONS(2422), + [anon_sym_LBRACK] = ACTIONS(2420), + [anon_sym_static] = ACTIONS(2420), + [anon_sym_register] = ACTIONS(2420), + [anon_sym_inline] = ACTIONS(2420), + [anon_sym_thread_local] = ACTIONS(2420), + [anon_sym_const] = ACTIONS(2420), + [anon_sym_volatile] = ACTIONS(2420), + [anon_sym_restrict] = ACTIONS(2420), + [anon_sym__Atomic] = ACTIONS(2420), + [anon_sym_mutable] = ACTIONS(2420), + [anon_sym_constexpr] = ACTIONS(2420), + [anon_sym_constinit] = ACTIONS(2420), + [anon_sym_consteval] = ACTIONS(2420), + [anon_sym_signed] = ACTIONS(2420), + [anon_sym_unsigned] = ACTIONS(2420), + [anon_sym_long] = ACTIONS(2420), + [anon_sym_short] = ACTIONS(2420), + [sym_primitive_type] = ACTIONS(2420), + [anon_sym_enum] = ACTIONS(2420), + [anon_sym_class] = ACTIONS(2420), + [anon_sym_struct] = ACTIONS(2420), + [anon_sym_union] = ACTIONS(2420), + [anon_sym_if] = ACTIONS(2420), + [anon_sym_switch] = ACTIONS(2420), + [anon_sym_case] = ACTIONS(2420), + [anon_sym_default] = ACTIONS(2420), + [anon_sym_while] = ACTIONS(2420), + [anon_sym_do] = ACTIONS(2420), + [anon_sym_for] = ACTIONS(2420), + [anon_sym_return] = ACTIONS(2420), + [anon_sym_break] = ACTIONS(2420), + [anon_sym_continue] = ACTIONS(2420), + [anon_sym_goto] = ACTIONS(2420), + [anon_sym_not] = ACTIONS(2420), + [anon_sym_compl] = ACTIONS(2420), + [anon_sym_DASH_DASH] = ACTIONS(2422), + [anon_sym_PLUS_PLUS] = ACTIONS(2422), + [anon_sym_sizeof] = ACTIONS(2420), + [sym_number_literal] = ACTIONS(2422), + [anon_sym_L_SQUOTE] = ACTIONS(2422), + [anon_sym_u_SQUOTE] = ACTIONS(2422), + [anon_sym_U_SQUOTE] = ACTIONS(2422), + [anon_sym_u8_SQUOTE] = ACTIONS(2422), + [anon_sym_SQUOTE] = ACTIONS(2422), + [anon_sym_L_DQUOTE] = ACTIONS(2422), + [anon_sym_u_DQUOTE] = ACTIONS(2422), + [anon_sym_U_DQUOTE] = ACTIONS(2422), + [anon_sym_u8_DQUOTE] = ACTIONS(2422), + [anon_sym_DQUOTE] = ACTIONS(2422), + [sym_true] = ACTIONS(2420), + [sym_false] = ACTIONS(2420), + [sym_null] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2420), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_virtual] = ACTIONS(2420), + [anon_sym_explicit] = ACTIONS(2420), + [anon_sym_typename] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2420), + [anon_sym_operator] = ACTIONS(2420), + [anon_sym_try] = ACTIONS(2420), + [anon_sym_delete] = ACTIONS(2420), + [anon_sym_throw] = ACTIONS(2420), + [anon_sym_namespace] = ACTIONS(2420), + [anon_sym_using] = ACTIONS(2420), + [anon_sym_static_assert] = ACTIONS(2420), + [anon_sym_concept] = ACTIONS(2420), + [anon_sym_co_return] = ACTIONS(2420), + [anon_sym_co_yield] = ACTIONS(2420), + [anon_sym_catch] = ACTIONS(2474), + [anon_sym_co_await] = ACTIONS(2420), + [anon_sym_new] = ACTIONS(2420), + [anon_sym_requires] = ACTIONS(2420), + [sym_this] = ACTIONS(2420), + [sym_nullptr] = ACTIONS(2420), + [sym_raw_string_literal] = ACTIONS(2422), + }, + [364] = { + [sym_identifier] = ACTIONS(2547), + [aux_sym_preproc_include_token1] = ACTIONS(2547), + [aux_sym_preproc_def_token1] = ACTIONS(2547), + [aux_sym_preproc_if_token1] = ACTIONS(2547), + [aux_sym_preproc_if_token2] = ACTIONS(2547), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2547), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2547), + [aux_sym_preproc_else_token1] = ACTIONS(2547), + [aux_sym_preproc_elif_token1] = ACTIONS(2547), + [sym_preproc_directive] = ACTIONS(2547), + [anon_sym_LPAREN2] = ACTIONS(2549), + [anon_sym_BANG] = ACTIONS(2549), + [anon_sym_TILDE] = ACTIONS(2549), + [anon_sym_DASH] = ACTIONS(2547), + [anon_sym_PLUS] = ACTIONS(2547), + [anon_sym_STAR] = ACTIONS(2549), + [anon_sym_AMP_AMP] = ACTIONS(2549), + [anon_sym_AMP] = ACTIONS(2547), + [anon_sym_SEMI] = ACTIONS(2549), + [anon_sym_typedef] = ACTIONS(2547), + [anon_sym_extern] = ACTIONS(2547), + [anon_sym___attribute__] = ACTIONS(2547), + [anon_sym_COLON_COLON] = ACTIONS(2549), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2549), + [anon_sym___declspec] = ACTIONS(2547), + [anon_sym___based] = ACTIONS(2547), + [anon_sym___cdecl] = ACTIONS(2547), + [anon_sym___clrcall] = ACTIONS(2547), + [anon_sym___stdcall] = ACTIONS(2547), + [anon_sym___fastcall] = ACTIONS(2547), + [anon_sym___thiscall] = ACTIONS(2547), + [anon_sym___vectorcall] = ACTIONS(2547), + [anon_sym_LBRACE] = ACTIONS(2549), + [anon_sym_LBRACK] = ACTIONS(2547), + [anon_sym_static] = ACTIONS(2547), + [anon_sym_register] = ACTIONS(2547), + [anon_sym_inline] = ACTIONS(2547), + [anon_sym_thread_local] = ACTIONS(2547), + [anon_sym_const] = ACTIONS(2547), + [anon_sym_volatile] = ACTIONS(2547), + [anon_sym_restrict] = ACTIONS(2547), + [anon_sym__Atomic] = ACTIONS(2547), + [anon_sym_mutable] = ACTIONS(2547), + [anon_sym_constexpr] = ACTIONS(2547), + [anon_sym_constinit] = ACTIONS(2547), + [anon_sym_consteval] = ACTIONS(2547), + [anon_sym_signed] = ACTIONS(2547), + [anon_sym_unsigned] = ACTIONS(2547), + [anon_sym_long] = ACTIONS(2547), + [anon_sym_short] = ACTIONS(2547), + [sym_primitive_type] = ACTIONS(2547), + [anon_sym_enum] = ACTIONS(2547), [anon_sym_class] = ACTIONS(2547), - [anon_sym_struct] = ACTIONS(2549), + [anon_sym_struct] = ACTIONS(2547), + [anon_sym_union] = ACTIONS(2547), + [anon_sym_if] = ACTIONS(2547), + [anon_sym_else] = ACTIONS(2547), + [anon_sym_switch] = ACTIONS(2547), + [anon_sym_case] = ACTIONS(2547), + [anon_sym_default] = ACTIONS(2547), + [anon_sym_while] = ACTIONS(2547), + [anon_sym_do] = ACTIONS(2547), + [anon_sym_for] = ACTIONS(2547), + [anon_sym_return] = ACTIONS(2547), + [anon_sym_break] = ACTIONS(2547), + [anon_sym_continue] = ACTIONS(2547), + [anon_sym_goto] = ACTIONS(2547), + [anon_sym_not] = ACTIONS(2547), + [anon_sym_compl] = ACTIONS(2547), + [anon_sym_DASH_DASH] = ACTIONS(2549), + [anon_sym_PLUS_PLUS] = ACTIONS(2549), + [anon_sym_sizeof] = ACTIONS(2547), + [sym_number_literal] = ACTIONS(2549), + [anon_sym_L_SQUOTE] = ACTIONS(2549), + [anon_sym_u_SQUOTE] = ACTIONS(2549), + [anon_sym_U_SQUOTE] = ACTIONS(2549), + [anon_sym_u8_SQUOTE] = ACTIONS(2549), + [anon_sym_SQUOTE] = ACTIONS(2549), + [anon_sym_L_DQUOTE] = ACTIONS(2549), + [anon_sym_u_DQUOTE] = ACTIONS(2549), + [anon_sym_U_DQUOTE] = ACTIONS(2549), + [anon_sym_u8_DQUOTE] = ACTIONS(2549), + [anon_sym_DQUOTE] = ACTIONS(2549), + [sym_true] = ACTIONS(2547), + [sym_false] = ACTIONS(2547), + [sym_null] = ACTIONS(2547), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2547), + [anon_sym_decltype] = ACTIONS(2547), + [anon_sym_virtual] = ACTIONS(2547), + [anon_sym_explicit] = ACTIONS(2547), + [anon_sym_typename] = ACTIONS(2547), + [anon_sym_template] = ACTIONS(2547), + [anon_sym_operator] = ACTIONS(2547), + [anon_sym_try] = ACTIONS(2547), + [anon_sym_delete] = ACTIONS(2547), + [anon_sym_throw] = ACTIONS(2547), + [anon_sym_namespace] = ACTIONS(2547), + [anon_sym_using] = ACTIONS(2547), + [anon_sym_static_assert] = ACTIONS(2547), + [anon_sym_concept] = ACTIONS(2547), + [anon_sym_co_return] = ACTIONS(2547), + [anon_sym_co_yield] = ACTIONS(2547), + [anon_sym_co_await] = ACTIONS(2547), + [anon_sym_new] = ACTIONS(2547), + [anon_sym_requires] = ACTIONS(2547), + [sym_this] = ACTIONS(2547), + [sym_nullptr] = ACTIONS(2547), + [sym_raw_string_literal] = ACTIONS(2549), + }, + [365] = { + [sym_identifier] = ACTIONS(2551), + [aux_sym_preproc_include_token1] = ACTIONS(2551), + [aux_sym_preproc_def_token1] = ACTIONS(2551), + [aux_sym_preproc_if_token1] = ACTIONS(2551), + [aux_sym_preproc_if_token2] = ACTIONS(2551), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2551), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2551), + [aux_sym_preproc_else_token1] = ACTIONS(2551), + [aux_sym_preproc_elif_token1] = ACTIONS(2551), + [sym_preproc_directive] = ACTIONS(2551), + [anon_sym_LPAREN2] = ACTIONS(2553), + [anon_sym_BANG] = ACTIONS(2553), + [anon_sym_TILDE] = ACTIONS(2553), + [anon_sym_DASH] = ACTIONS(2551), + [anon_sym_PLUS] = ACTIONS(2551), + [anon_sym_STAR] = ACTIONS(2553), + [anon_sym_AMP_AMP] = ACTIONS(2553), + [anon_sym_AMP] = ACTIONS(2551), + [anon_sym_SEMI] = ACTIONS(2553), + [anon_sym_typedef] = ACTIONS(2551), + [anon_sym_extern] = ACTIONS(2551), + [anon_sym___attribute__] = ACTIONS(2551), + [anon_sym_COLON_COLON] = ACTIONS(2553), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2553), + [anon_sym___declspec] = ACTIONS(2551), + [anon_sym___based] = ACTIONS(2551), + [anon_sym___cdecl] = ACTIONS(2551), + [anon_sym___clrcall] = ACTIONS(2551), + [anon_sym___stdcall] = ACTIONS(2551), + [anon_sym___fastcall] = ACTIONS(2551), + [anon_sym___thiscall] = ACTIONS(2551), + [anon_sym___vectorcall] = ACTIONS(2551), + [anon_sym_LBRACE] = ACTIONS(2553), + [anon_sym_LBRACK] = ACTIONS(2551), + [anon_sym_static] = ACTIONS(2551), + [anon_sym_register] = ACTIONS(2551), + [anon_sym_inline] = ACTIONS(2551), + [anon_sym_thread_local] = ACTIONS(2551), + [anon_sym_const] = ACTIONS(2551), + [anon_sym_volatile] = ACTIONS(2551), + [anon_sym_restrict] = ACTIONS(2551), + [anon_sym__Atomic] = ACTIONS(2551), + [anon_sym_mutable] = ACTIONS(2551), + [anon_sym_constexpr] = ACTIONS(2551), + [anon_sym_constinit] = ACTIONS(2551), + [anon_sym_consteval] = ACTIONS(2551), + [anon_sym_signed] = ACTIONS(2551), + [anon_sym_unsigned] = ACTIONS(2551), + [anon_sym_long] = ACTIONS(2551), + [anon_sym_short] = ACTIONS(2551), + [sym_primitive_type] = ACTIONS(2551), + [anon_sym_enum] = ACTIONS(2551), + [anon_sym_class] = ACTIONS(2551), + [anon_sym_struct] = ACTIONS(2551), [anon_sym_union] = ACTIONS(2551), + [anon_sym_if] = ACTIONS(2551), + [anon_sym_else] = ACTIONS(2551), + [anon_sym_switch] = ACTIONS(2551), + [anon_sym_case] = ACTIONS(2551), + [anon_sym_default] = ACTIONS(2551), + [anon_sym_while] = ACTIONS(2551), + [anon_sym_do] = ACTIONS(2551), + [anon_sym_for] = ACTIONS(2551), + [anon_sym_return] = ACTIONS(2551), + [anon_sym_break] = ACTIONS(2551), + [anon_sym_continue] = ACTIONS(2551), + [anon_sym_goto] = ACTIONS(2551), + [anon_sym_not] = ACTIONS(2551), + [anon_sym_compl] = ACTIONS(2551), [anon_sym_DASH_DASH] = ACTIONS(2553), [anon_sym_PLUS_PLUS] = ACTIONS(2553), + [anon_sym_sizeof] = ACTIONS(2551), + [sym_number_literal] = ACTIONS(2553), + [anon_sym_L_SQUOTE] = ACTIONS(2553), + [anon_sym_u_SQUOTE] = ACTIONS(2553), + [anon_sym_U_SQUOTE] = ACTIONS(2553), + [anon_sym_u8_SQUOTE] = ACTIONS(2553), + [anon_sym_SQUOTE] = ACTIONS(2553), + [anon_sym_L_DQUOTE] = ACTIONS(2553), + [anon_sym_u_DQUOTE] = ACTIONS(2553), + [anon_sym_U_DQUOTE] = ACTIONS(2553), + [anon_sym_u8_DQUOTE] = ACTIONS(2553), + [anon_sym_DQUOTE] = ACTIONS(2553), + [sym_true] = ACTIONS(2551), + [sym_false] = ACTIONS(2551), + [sym_null] = ACTIONS(2551), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2551), + [anon_sym_decltype] = ACTIONS(2551), + [anon_sym_virtual] = ACTIONS(2551), + [anon_sym_explicit] = ACTIONS(2551), + [anon_sym_typename] = ACTIONS(2551), + [anon_sym_template] = ACTIONS(2551), + [anon_sym_operator] = ACTIONS(2551), + [anon_sym_try] = ACTIONS(2551), + [anon_sym_delete] = ACTIONS(2551), + [anon_sym_throw] = ACTIONS(2551), + [anon_sym_namespace] = ACTIONS(2551), + [anon_sym_using] = ACTIONS(2551), + [anon_sym_static_assert] = ACTIONS(2551), + [anon_sym_concept] = ACTIONS(2551), + [anon_sym_co_return] = ACTIONS(2551), + [anon_sym_co_yield] = ACTIONS(2551), + [anon_sym_co_await] = ACTIONS(2551), + [anon_sym_new] = ACTIONS(2551), + [anon_sym_requires] = ACTIONS(2551), + [sym_this] = ACTIONS(2551), + [sym_nullptr] = ACTIONS(2551), + [sym_raw_string_literal] = ACTIONS(2553), + }, + [366] = { + [sym_identifier] = ACTIONS(2555), + [aux_sym_preproc_include_token1] = ACTIONS(2555), + [aux_sym_preproc_def_token1] = ACTIONS(2555), + [aux_sym_preproc_if_token1] = ACTIONS(2555), + [aux_sym_preproc_if_token2] = ACTIONS(2555), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2555), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2555), + [aux_sym_preproc_else_token1] = ACTIONS(2555), + [aux_sym_preproc_elif_token1] = ACTIONS(2555), + [sym_preproc_directive] = ACTIONS(2555), + [anon_sym_LPAREN2] = ACTIONS(2557), + [anon_sym_BANG] = ACTIONS(2557), + [anon_sym_TILDE] = ACTIONS(2557), + [anon_sym_DASH] = ACTIONS(2555), + [anon_sym_PLUS] = ACTIONS(2555), + [anon_sym_STAR] = ACTIONS(2557), + [anon_sym_AMP_AMP] = ACTIONS(2557), + [anon_sym_AMP] = ACTIONS(2555), + [anon_sym_SEMI] = ACTIONS(2557), + [anon_sym_typedef] = ACTIONS(2555), + [anon_sym_extern] = ACTIONS(2555), + [anon_sym___attribute__] = ACTIONS(2555), + [anon_sym_COLON_COLON] = ACTIONS(2557), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2557), + [anon_sym___declspec] = ACTIONS(2555), + [anon_sym___based] = ACTIONS(2555), + [anon_sym___cdecl] = ACTIONS(2555), + [anon_sym___clrcall] = ACTIONS(2555), + [anon_sym___stdcall] = ACTIONS(2555), + [anon_sym___fastcall] = ACTIONS(2555), + [anon_sym___thiscall] = ACTIONS(2555), + [anon_sym___vectorcall] = ACTIONS(2555), + [anon_sym_LBRACE] = ACTIONS(2557), + [anon_sym_LBRACK] = ACTIONS(2555), + [anon_sym_static] = ACTIONS(2555), + [anon_sym_register] = ACTIONS(2555), + [anon_sym_inline] = ACTIONS(2555), + [anon_sym_thread_local] = ACTIONS(2555), + [anon_sym_const] = ACTIONS(2555), + [anon_sym_volatile] = ACTIONS(2555), + [anon_sym_restrict] = ACTIONS(2555), + [anon_sym__Atomic] = ACTIONS(2555), + [anon_sym_mutable] = ACTIONS(2555), + [anon_sym_constexpr] = ACTIONS(2555), + [anon_sym_constinit] = ACTIONS(2555), + [anon_sym_consteval] = ACTIONS(2555), + [anon_sym_signed] = ACTIONS(2555), + [anon_sym_unsigned] = ACTIONS(2555), + [anon_sym_long] = ACTIONS(2555), + [anon_sym_short] = ACTIONS(2555), + [sym_primitive_type] = ACTIONS(2555), + [anon_sym_enum] = ACTIONS(2555), + [anon_sym_class] = ACTIONS(2555), + [anon_sym_struct] = ACTIONS(2555), + [anon_sym_union] = ACTIONS(2555), + [anon_sym_if] = ACTIONS(2555), + [anon_sym_else] = ACTIONS(2555), + [anon_sym_switch] = ACTIONS(2555), + [anon_sym_case] = ACTIONS(2555), + [anon_sym_default] = ACTIONS(2555), + [anon_sym_while] = ACTIONS(2555), + [anon_sym_do] = ACTIONS(2555), + [anon_sym_for] = ACTIONS(2555), + [anon_sym_return] = ACTIONS(2555), + [anon_sym_break] = ACTIONS(2555), + [anon_sym_continue] = ACTIONS(2555), + [anon_sym_goto] = ACTIONS(2555), + [anon_sym_not] = ACTIONS(2555), + [anon_sym_compl] = ACTIONS(2555), + [anon_sym_DASH_DASH] = ACTIONS(2557), + [anon_sym_PLUS_PLUS] = ACTIONS(2557), [anon_sym_sizeof] = ACTIONS(2555), [sym_number_literal] = ACTIONS(2557), - [anon_sym_L_SQUOTE] = ACTIONS(2559), - [anon_sym_u_SQUOTE] = ACTIONS(2559), - [anon_sym_U_SQUOTE] = ACTIONS(2559), - [anon_sym_u8_SQUOTE] = ACTIONS(2559), - [anon_sym_SQUOTE] = ACTIONS(2559), + [anon_sym_L_SQUOTE] = ACTIONS(2557), + [anon_sym_u_SQUOTE] = ACTIONS(2557), + [anon_sym_U_SQUOTE] = ACTIONS(2557), + [anon_sym_u8_SQUOTE] = ACTIONS(2557), + [anon_sym_SQUOTE] = ACTIONS(2557), + [anon_sym_L_DQUOTE] = ACTIONS(2557), + [anon_sym_u_DQUOTE] = ACTIONS(2557), + [anon_sym_U_DQUOTE] = ACTIONS(2557), + [anon_sym_u8_DQUOTE] = ACTIONS(2557), + [anon_sym_DQUOTE] = ACTIONS(2557), + [sym_true] = ACTIONS(2555), + [sym_false] = ACTIONS(2555), + [sym_null] = ACTIONS(2555), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2555), + [anon_sym_decltype] = ACTIONS(2555), + [anon_sym_virtual] = ACTIONS(2555), + [anon_sym_explicit] = ACTIONS(2555), + [anon_sym_typename] = ACTIONS(2555), + [anon_sym_template] = ACTIONS(2555), + [anon_sym_operator] = ACTIONS(2555), + [anon_sym_try] = ACTIONS(2555), + [anon_sym_delete] = ACTIONS(2555), + [anon_sym_throw] = ACTIONS(2555), + [anon_sym_namespace] = ACTIONS(2555), + [anon_sym_using] = ACTIONS(2555), + [anon_sym_static_assert] = ACTIONS(2555), + [anon_sym_concept] = ACTIONS(2555), + [anon_sym_co_return] = ACTIONS(2555), + [anon_sym_co_yield] = ACTIONS(2555), + [anon_sym_co_await] = ACTIONS(2555), + [anon_sym_new] = ACTIONS(2555), + [anon_sym_requires] = ACTIONS(2555), + [sym_this] = ACTIONS(2555), + [sym_nullptr] = ACTIONS(2555), + [sym_raw_string_literal] = ACTIONS(2557), + }, + [367] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token2] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [aux_sym_preproc_else_token1] = ACTIONS(2559), + [aux_sym_preproc_elif_token1] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), [anon_sym_L_DQUOTE] = ACTIONS(2561), [anon_sym_u_DQUOTE] = ACTIONS(2561), [anon_sym_U_DQUOTE] = ACTIONS(2561), [anon_sym_u8_DQUOTE] = ACTIONS(2561), [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), + }, + [368] = { + [sym_identifier] = ACTIONS(2563), + [aux_sym_preproc_include_token1] = ACTIONS(2563), + [aux_sym_preproc_def_token1] = ACTIONS(2563), + [aux_sym_preproc_if_token1] = ACTIONS(2563), + [aux_sym_preproc_if_token2] = ACTIONS(2563), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2563), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2563), + [aux_sym_preproc_else_token1] = ACTIONS(2563), + [aux_sym_preproc_elif_token1] = ACTIONS(2563), + [sym_preproc_directive] = ACTIONS(2563), + [anon_sym_LPAREN2] = ACTIONS(2565), + [anon_sym_BANG] = ACTIONS(2565), + [anon_sym_TILDE] = ACTIONS(2565), + [anon_sym_DASH] = ACTIONS(2563), + [anon_sym_PLUS] = ACTIONS(2563), + [anon_sym_STAR] = ACTIONS(2565), + [anon_sym_AMP_AMP] = ACTIONS(2565), + [anon_sym_AMP] = ACTIONS(2563), + [anon_sym_SEMI] = ACTIONS(2565), + [anon_sym_typedef] = ACTIONS(2563), + [anon_sym_extern] = ACTIONS(2563), + [anon_sym___attribute__] = ACTIONS(2563), + [anon_sym_COLON_COLON] = ACTIONS(2565), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2565), + [anon_sym___declspec] = ACTIONS(2563), + [anon_sym___based] = ACTIONS(2563), + [anon_sym___cdecl] = ACTIONS(2563), + [anon_sym___clrcall] = ACTIONS(2563), + [anon_sym___stdcall] = ACTIONS(2563), + [anon_sym___fastcall] = ACTIONS(2563), + [anon_sym___thiscall] = ACTIONS(2563), + [anon_sym___vectorcall] = ACTIONS(2563), + [anon_sym_LBRACE] = ACTIONS(2565), + [anon_sym_LBRACK] = ACTIONS(2563), + [anon_sym_static] = ACTIONS(2563), + [anon_sym_register] = ACTIONS(2563), + [anon_sym_inline] = ACTIONS(2563), + [anon_sym_thread_local] = ACTIONS(2563), + [anon_sym_const] = ACTIONS(2563), + [anon_sym_volatile] = ACTIONS(2563), + [anon_sym_restrict] = ACTIONS(2563), + [anon_sym__Atomic] = ACTIONS(2563), + [anon_sym_mutable] = ACTIONS(2563), + [anon_sym_constexpr] = ACTIONS(2563), + [anon_sym_constinit] = ACTIONS(2563), + [anon_sym_consteval] = ACTIONS(2563), + [anon_sym_signed] = ACTIONS(2563), + [anon_sym_unsigned] = ACTIONS(2563), + [anon_sym_long] = ACTIONS(2563), + [anon_sym_short] = ACTIONS(2563), + [sym_primitive_type] = ACTIONS(2563), + [anon_sym_enum] = ACTIONS(2563), + [anon_sym_class] = ACTIONS(2563), + [anon_sym_struct] = ACTIONS(2563), + [anon_sym_union] = ACTIONS(2563), + [anon_sym_if] = ACTIONS(2563), + [anon_sym_else] = ACTIONS(2563), + [anon_sym_switch] = ACTIONS(2563), + [anon_sym_case] = ACTIONS(2563), + [anon_sym_default] = ACTIONS(2563), + [anon_sym_while] = ACTIONS(2563), + [anon_sym_do] = ACTIONS(2563), + [anon_sym_for] = ACTIONS(2563), + [anon_sym_return] = ACTIONS(2563), + [anon_sym_break] = ACTIONS(2563), + [anon_sym_continue] = ACTIONS(2563), + [anon_sym_goto] = ACTIONS(2563), + [anon_sym_not] = ACTIONS(2563), + [anon_sym_compl] = ACTIONS(2563), + [anon_sym_DASH_DASH] = ACTIONS(2565), + [anon_sym_PLUS_PLUS] = ACTIONS(2565), + [anon_sym_sizeof] = ACTIONS(2563), + [sym_number_literal] = ACTIONS(2565), + [anon_sym_L_SQUOTE] = ACTIONS(2565), + [anon_sym_u_SQUOTE] = ACTIONS(2565), + [anon_sym_U_SQUOTE] = ACTIONS(2565), + [anon_sym_u8_SQUOTE] = ACTIONS(2565), + [anon_sym_SQUOTE] = ACTIONS(2565), + [anon_sym_L_DQUOTE] = ACTIONS(2565), + [anon_sym_u_DQUOTE] = ACTIONS(2565), + [anon_sym_U_DQUOTE] = ACTIONS(2565), + [anon_sym_u8_DQUOTE] = ACTIONS(2565), + [anon_sym_DQUOTE] = ACTIONS(2565), [sym_true] = ACTIONS(2563), [sym_false] = ACTIONS(2563), [sym_null] = ACTIONS(2563), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2565), + [sym_auto] = ACTIONS(2563), + [anon_sym_decltype] = ACTIONS(2563), + [anon_sym_virtual] = ACTIONS(2563), + [anon_sym_explicit] = ACTIONS(2563), + [anon_sym_typename] = ACTIONS(2563), + [anon_sym_template] = ACTIONS(2563), + [anon_sym_operator] = ACTIONS(2563), + [anon_sym_try] = ACTIONS(2563), + [anon_sym_delete] = ACTIONS(2563), + [anon_sym_throw] = ACTIONS(2563), + [anon_sym_namespace] = ACTIONS(2563), + [anon_sym_using] = ACTIONS(2563), + [anon_sym_static_assert] = ACTIONS(2563), + [anon_sym_concept] = ACTIONS(2563), + [anon_sym_co_return] = ACTIONS(2563), + [anon_sym_co_yield] = ACTIONS(2563), + [anon_sym_co_await] = ACTIONS(2563), + [anon_sym_new] = ACTIONS(2563), + [anon_sym_requires] = ACTIONS(2563), + [sym_this] = ACTIONS(2563), + [sym_nullptr] = ACTIONS(2563), + [sym_raw_string_literal] = ACTIONS(2565), + }, + [369] = { + [sym_identifier] = ACTIONS(2567), + [aux_sym_preproc_include_token1] = ACTIONS(2567), + [aux_sym_preproc_def_token1] = ACTIONS(2567), + [aux_sym_preproc_if_token1] = ACTIONS(2567), + [aux_sym_preproc_if_token2] = ACTIONS(2567), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2567), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2567), + [aux_sym_preproc_else_token1] = ACTIONS(2567), + [aux_sym_preproc_elif_token1] = ACTIONS(2567), + [sym_preproc_directive] = ACTIONS(2567), + [anon_sym_LPAREN2] = ACTIONS(2569), + [anon_sym_BANG] = ACTIONS(2569), + [anon_sym_TILDE] = ACTIONS(2569), + [anon_sym_DASH] = ACTIONS(2567), + [anon_sym_PLUS] = ACTIONS(2567), + [anon_sym_STAR] = ACTIONS(2569), + [anon_sym_AMP_AMP] = ACTIONS(2569), + [anon_sym_AMP] = ACTIONS(2567), + [anon_sym_SEMI] = ACTIONS(2569), + [anon_sym_typedef] = ACTIONS(2567), + [anon_sym_extern] = ACTIONS(2567), + [anon_sym___attribute__] = ACTIONS(2567), + [anon_sym_COLON_COLON] = ACTIONS(2569), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2569), + [anon_sym___declspec] = ACTIONS(2567), + [anon_sym___based] = ACTIONS(2567), + [anon_sym___cdecl] = ACTIONS(2567), + [anon_sym___clrcall] = ACTIONS(2567), + [anon_sym___stdcall] = ACTIONS(2567), + [anon_sym___fastcall] = ACTIONS(2567), + [anon_sym___thiscall] = ACTIONS(2567), + [anon_sym___vectorcall] = ACTIONS(2567), + [anon_sym_LBRACE] = ACTIONS(2569), + [anon_sym_LBRACK] = ACTIONS(2567), + [anon_sym_static] = ACTIONS(2567), + [anon_sym_register] = ACTIONS(2567), + [anon_sym_inline] = ACTIONS(2567), + [anon_sym_thread_local] = ACTIONS(2567), + [anon_sym_const] = ACTIONS(2567), + [anon_sym_volatile] = ACTIONS(2567), + [anon_sym_restrict] = ACTIONS(2567), + [anon_sym__Atomic] = ACTIONS(2567), + [anon_sym_mutable] = ACTIONS(2567), + [anon_sym_constexpr] = ACTIONS(2567), + [anon_sym_constinit] = ACTIONS(2567), + [anon_sym_consteval] = ACTIONS(2567), + [anon_sym_signed] = ACTIONS(2567), + [anon_sym_unsigned] = ACTIONS(2567), + [anon_sym_long] = ACTIONS(2567), + [anon_sym_short] = ACTIONS(2567), + [sym_primitive_type] = ACTIONS(2567), + [anon_sym_enum] = ACTIONS(2567), + [anon_sym_class] = ACTIONS(2567), + [anon_sym_struct] = ACTIONS(2567), + [anon_sym_union] = ACTIONS(2567), + [anon_sym_if] = ACTIONS(2567), + [anon_sym_else] = ACTIONS(2567), + [anon_sym_switch] = ACTIONS(2567), + [anon_sym_case] = ACTIONS(2567), + [anon_sym_default] = ACTIONS(2567), + [anon_sym_while] = ACTIONS(2567), + [anon_sym_do] = ACTIONS(2567), + [anon_sym_for] = ACTIONS(2567), + [anon_sym_return] = ACTIONS(2567), + [anon_sym_break] = ACTIONS(2567), + [anon_sym_continue] = ACTIONS(2567), + [anon_sym_goto] = ACTIONS(2567), + [anon_sym_not] = ACTIONS(2567), + [anon_sym_compl] = ACTIONS(2567), + [anon_sym_DASH_DASH] = ACTIONS(2569), + [anon_sym_PLUS_PLUS] = ACTIONS(2569), + [anon_sym_sizeof] = ACTIONS(2567), + [sym_number_literal] = ACTIONS(2569), + [anon_sym_L_SQUOTE] = ACTIONS(2569), + [anon_sym_u_SQUOTE] = ACTIONS(2569), + [anon_sym_U_SQUOTE] = ACTIONS(2569), + [anon_sym_u8_SQUOTE] = ACTIONS(2569), + [anon_sym_SQUOTE] = ACTIONS(2569), + [anon_sym_L_DQUOTE] = ACTIONS(2569), + [anon_sym_u_DQUOTE] = ACTIONS(2569), + [anon_sym_U_DQUOTE] = ACTIONS(2569), + [anon_sym_u8_DQUOTE] = ACTIONS(2569), + [anon_sym_DQUOTE] = ACTIONS(2569), + [sym_true] = ACTIONS(2567), + [sym_false] = ACTIONS(2567), + [sym_null] = ACTIONS(2567), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2567), [anon_sym_decltype] = ACTIONS(2567), - [anon_sym_typename] = ACTIONS(2569), - [anon_sym_template] = ACTIONS(972), - [anon_sym_GT2] = ACTIONS(2571), - [anon_sym_delete] = ACTIONS(2573), + [anon_sym_virtual] = ACTIONS(2567), + [anon_sym_explicit] = ACTIONS(2567), + [anon_sym_typename] = ACTIONS(2567), + [anon_sym_template] = ACTIONS(2567), + [anon_sym_operator] = ACTIONS(2567), + [anon_sym_try] = ACTIONS(2567), + [anon_sym_delete] = ACTIONS(2567), + [anon_sym_throw] = ACTIONS(2567), + [anon_sym_namespace] = ACTIONS(2567), + [anon_sym_using] = ACTIONS(2567), + [anon_sym_static_assert] = ACTIONS(2567), + [anon_sym_concept] = ACTIONS(2567), + [anon_sym_co_return] = ACTIONS(2567), + [anon_sym_co_yield] = ACTIONS(2567), + [anon_sym_co_await] = ACTIONS(2567), + [anon_sym_new] = ACTIONS(2567), + [anon_sym_requires] = ACTIONS(2567), + [sym_this] = ACTIONS(2567), + [sym_nullptr] = ACTIONS(2567), + [sym_raw_string_literal] = ACTIONS(2569), + }, + [370] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token2] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [aux_sym_preproc_else_token1] = ACTIONS(2559), + [aux_sym_preproc_elif_token1] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), + }, + [371] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token2] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [aux_sym_preproc_else_token1] = ACTIONS(2559), + [aux_sym_preproc_elif_token1] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), + }, + [372] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token2] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [aux_sym_preproc_else_token1] = ACTIONS(2559), + [aux_sym_preproc_elif_token1] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), + }, + [373] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token2] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [aux_sym_preproc_else_token1] = ACTIONS(2559), + [aux_sym_preproc_elif_token1] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), + }, + [374] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token2] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [aux_sym_preproc_else_token1] = ACTIONS(2559), + [aux_sym_preproc_elif_token1] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), + }, + [375] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token2] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [aux_sym_preproc_else_token1] = ACTIONS(2559), + [aux_sym_preproc_elif_token1] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), + }, + [376] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token2] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [aux_sym_preproc_else_token1] = ACTIONS(2559), + [aux_sym_preproc_elif_token1] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), + }, + [377] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token2] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [aux_sym_preproc_else_token1] = ACTIONS(2559), + [aux_sym_preproc_elif_token1] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), + }, + [378] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token2] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [aux_sym_preproc_else_token1] = ACTIONS(2559), + [aux_sym_preproc_elif_token1] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), + }, + [379] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token2] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [aux_sym_preproc_else_token1] = ACTIONS(2559), + [aux_sym_preproc_elif_token1] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), + }, + [380] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token2] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [aux_sym_preproc_else_token1] = ACTIONS(2559), + [aux_sym_preproc_elif_token1] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), + }, + [381] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token2] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [aux_sym_preproc_else_token1] = ACTIONS(2559), + [aux_sym_preproc_elif_token1] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), + }, + [382] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token2] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [aux_sym_preproc_else_token1] = ACTIONS(2559), + [aux_sym_preproc_elif_token1] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), + }, + [383] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token2] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [aux_sym_preproc_else_token1] = ACTIONS(2559), + [aux_sym_preproc_elif_token1] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), + }, + [384] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token2] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [aux_sym_preproc_else_token1] = ACTIONS(2559), + [aux_sym_preproc_elif_token1] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), + }, + [385] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token2] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [aux_sym_preproc_else_token1] = ACTIONS(2559), + [aux_sym_preproc_elif_token1] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), + }, + [386] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token2] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [aux_sym_preproc_else_token1] = ACTIONS(2559), + [aux_sym_preproc_elif_token1] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), + }, + [387] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token2] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [aux_sym_preproc_else_token1] = ACTIONS(2559), + [aux_sym_preproc_elif_token1] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), + }, + [388] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token2] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [aux_sym_preproc_else_token1] = ACTIONS(2559), + [aux_sym_preproc_elif_token1] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), + }, + [389] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token2] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [aux_sym_preproc_else_token1] = ACTIONS(2559), + [aux_sym_preproc_elif_token1] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), + }, + [390] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token2] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [aux_sym_preproc_else_token1] = ACTIONS(2559), + [aux_sym_preproc_elif_token1] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), + }, + [391] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token2] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [aux_sym_preproc_else_token1] = ACTIONS(2559), + [aux_sym_preproc_elif_token1] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), + }, + [392] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token2] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [aux_sym_preproc_else_token1] = ACTIONS(2559), + [aux_sym_preproc_elif_token1] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), + }, + [393] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token2] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [aux_sym_preproc_else_token1] = ACTIONS(2559), + [aux_sym_preproc_elif_token1] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), + }, + [394] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token2] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [aux_sym_preproc_else_token1] = ACTIONS(2559), + [aux_sym_preproc_elif_token1] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), + }, + [395] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token2] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [aux_sym_preproc_else_token1] = ACTIONS(2559), + [aux_sym_preproc_elif_token1] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), + }, + [396] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token2] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [aux_sym_preproc_else_token1] = ACTIONS(2559), + [aux_sym_preproc_elif_token1] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), + }, + [397] = { + [sym_identifier] = ACTIONS(2571), + [aux_sym_preproc_include_token1] = ACTIONS(2571), + [aux_sym_preproc_def_token1] = ACTIONS(2571), + [aux_sym_preproc_if_token1] = ACTIONS(2571), + [aux_sym_preproc_if_token2] = ACTIONS(2571), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2571), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2571), + [aux_sym_preproc_else_token1] = ACTIONS(2571), + [aux_sym_preproc_elif_token1] = ACTIONS(2571), + [sym_preproc_directive] = ACTIONS(2571), + [anon_sym_LPAREN2] = ACTIONS(2573), + [anon_sym_BANG] = ACTIONS(2573), + [anon_sym_TILDE] = ACTIONS(2573), + [anon_sym_DASH] = ACTIONS(2571), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_STAR] = ACTIONS(2573), + [anon_sym_AMP_AMP] = ACTIONS(2573), + [anon_sym_AMP] = ACTIONS(2571), + [anon_sym_SEMI] = ACTIONS(2573), + [anon_sym_typedef] = ACTIONS(2571), + [anon_sym_extern] = ACTIONS(2571), + [anon_sym___attribute__] = ACTIONS(2571), + [anon_sym_COLON_COLON] = ACTIONS(2573), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2573), + [anon_sym___declspec] = ACTIONS(2571), + [anon_sym___based] = ACTIONS(2571), + [anon_sym___cdecl] = ACTIONS(2571), + [anon_sym___clrcall] = ACTIONS(2571), + [anon_sym___stdcall] = ACTIONS(2571), + [anon_sym___fastcall] = ACTIONS(2571), + [anon_sym___thiscall] = ACTIONS(2571), + [anon_sym___vectorcall] = ACTIONS(2571), + [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(2571), + [anon_sym_static] = ACTIONS(2571), + [anon_sym_register] = ACTIONS(2571), + [anon_sym_inline] = ACTIONS(2571), + [anon_sym_thread_local] = ACTIONS(2571), + [anon_sym_const] = ACTIONS(2571), + [anon_sym_volatile] = ACTIONS(2571), + [anon_sym_restrict] = ACTIONS(2571), + [anon_sym__Atomic] = ACTIONS(2571), + [anon_sym_mutable] = ACTIONS(2571), + [anon_sym_constexpr] = ACTIONS(2571), + [anon_sym_constinit] = ACTIONS(2571), + [anon_sym_consteval] = ACTIONS(2571), + [anon_sym_signed] = ACTIONS(2571), + [anon_sym_unsigned] = ACTIONS(2571), + [anon_sym_long] = ACTIONS(2571), + [anon_sym_short] = ACTIONS(2571), + [sym_primitive_type] = ACTIONS(2571), + [anon_sym_enum] = ACTIONS(2571), + [anon_sym_class] = ACTIONS(2571), + [anon_sym_struct] = ACTIONS(2571), + [anon_sym_union] = ACTIONS(2571), + [anon_sym_if] = ACTIONS(2571), + [anon_sym_else] = ACTIONS(2571), + [anon_sym_switch] = ACTIONS(2571), + [anon_sym_case] = ACTIONS(2571), + [anon_sym_default] = ACTIONS(2571), + [anon_sym_while] = ACTIONS(2571), + [anon_sym_do] = ACTIONS(2571), + [anon_sym_for] = ACTIONS(2571), + [anon_sym_return] = ACTIONS(2571), + [anon_sym_break] = ACTIONS(2571), + [anon_sym_continue] = ACTIONS(2571), + [anon_sym_goto] = ACTIONS(2571), + [anon_sym_not] = ACTIONS(2571), + [anon_sym_compl] = ACTIONS(2571), + [anon_sym_DASH_DASH] = ACTIONS(2573), + [anon_sym_PLUS_PLUS] = ACTIONS(2573), + [anon_sym_sizeof] = ACTIONS(2571), + [sym_number_literal] = ACTIONS(2573), + [anon_sym_L_SQUOTE] = ACTIONS(2573), + [anon_sym_u_SQUOTE] = ACTIONS(2573), + [anon_sym_U_SQUOTE] = ACTIONS(2573), + [anon_sym_u8_SQUOTE] = ACTIONS(2573), + [anon_sym_SQUOTE] = ACTIONS(2573), + [anon_sym_L_DQUOTE] = ACTIONS(2573), + [anon_sym_u_DQUOTE] = ACTIONS(2573), + [anon_sym_U_DQUOTE] = ACTIONS(2573), + [anon_sym_u8_DQUOTE] = ACTIONS(2573), + [anon_sym_DQUOTE] = ACTIONS(2573), + [sym_true] = ACTIONS(2571), + [sym_false] = ACTIONS(2571), + [sym_null] = ACTIONS(2571), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2571), + [anon_sym_decltype] = ACTIONS(2571), + [anon_sym_virtual] = ACTIONS(2571), + [anon_sym_explicit] = ACTIONS(2571), + [anon_sym_typename] = ACTIONS(2571), + [anon_sym_template] = ACTIONS(2571), + [anon_sym_operator] = ACTIONS(2571), + [anon_sym_try] = ACTIONS(2571), + [anon_sym_delete] = ACTIONS(2571), + [anon_sym_throw] = ACTIONS(2571), + [anon_sym_namespace] = ACTIONS(2571), + [anon_sym_using] = ACTIONS(2571), + [anon_sym_static_assert] = ACTIONS(2571), + [anon_sym_concept] = ACTIONS(2571), + [anon_sym_co_return] = ACTIONS(2571), + [anon_sym_co_yield] = ACTIONS(2571), + [anon_sym_co_await] = ACTIONS(2571), + [anon_sym_new] = ACTIONS(2571), + [anon_sym_requires] = ACTIONS(2571), + [sym_this] = ACTIONS(2571), + [sym_nullptr] = ACTIONS(2571), + [sym_raw_string_literal] = ACTIONS(2573), + }, + [398] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token2] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [aux_sym_preproc_else_token1] = ACTIONS(2559), + [aux_sym_preproc_elif_token1] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), + }, + [399] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token2] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [aux_sym_preproc_else_token1] = ACTIONS(2559), + [aux_sym_preproc_elif_token1] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), + }, + [400] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token2] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [aux_sym_preproc_else_token1] = ACTIONS(2559), + [aux_sym_preproc_elif_token1] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), + }, + [401] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token2] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [aux_sym_preproc_else_token1] = ACTIONS(2559), + [aux_sym_preproc_elif_token1] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), + }, + [402] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token2] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [aux_sym_preproc_else_token1] = ACTIONS(2559), + [aux_sym_preproc_elif_token1] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), + }, + [403] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token2] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [aux_sym_preproc_else_token1] = ACTIONS(2559), + [aux_sym_preproc_elif_token1] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), + }, + [404] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token2] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [aux_sym_preproc_else_token1] = ACTIONS(2559), + [aux_sym_preproc_elif_token1] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), + }, + [405] = { + [sym_identifier] = ACTIONS(2575), + [aux_sym_preproc_include_token1] = ACTIONS(2575), + [aux_sym_preproc_def_token1] = ACTIONS(2575), + [aux_sym_preproc_if_token1] = ACTIONS(2575), + [aux_sym_preproc_if_token2] = ACTIONS(2575), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2575), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2575), + [aux_sym_preproc_else_token1] = ACTIONS(2575), + [aux_sym_preproc_elif_token1] = ACTIONS(2575), + [sym_preproc_directive] = ACTIONS(2575), + [anon_sym_LPAREN2] = ACTIONS(2577), + [anon_sym_BANG] = ACTIONS(2577), + [anon_sym_TILDE] = ACTIONS(2577), + [anon_sym_DASH] = ACTIONS(2575), + [anon_sym_PLUS] = ACTIONS(2575), + [anon_sym_STAR] = ACTIONS(2577), + [anon_sym_AMP_AMP] = ACTIONS(2577), + [anon_sym_AMP] = ACTIONS(2575), + [anon_sym_SEMI] = ACTIONS(2577), + [anon_sym_typedef] = ACTIONS(2575), + [anon_sym_extern] = ACTIONS(2575), + [anon_sym___attribute__] = ACTIONS(2575), + [anon_sym_COLON_COLON] = ACTIONS(2577), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2577), + [anon_sym___declspec] = ACTIONS(2575), + [anon_sym___based] = ACTIONS(2575), + [anon_sym___cdecl] = ACTIONS(2575), + [anon_sym___clrcall] = ACTIONS(2575), + [anon_sym___stdcall] = ACTIONS(2575), + [anon_sym___fastcall] = ACTIONS(2575), + [anon_sym___thiscall] = ACTIONS(2575), + [anon_sym___vectorcall] = ACTIONS(2575), + [anon_sym_LBRACE] = ACTIONS(2577), + [anon_sym_LBRACK] = ACTIONS(2575), + [anon_sym_static] = ACTIONS(2575), + [anon_sym_register] = ACTIONS(2575), + [anon_sym_inline] = ACTIONS(2575), + [anon_sym_thread_local] = ACTIONS(2575), + [anon_sym_const] = ACTIONS(2575), + [anon_sym_volatile] = ACTIONS(2575), + [anon_sym_restrict] = ACTIONS(2575), + [anon_sym__Atomic] = ACTIONS(2575), + [anon_sym_mutable] = ACTIONS(2575), + [anon_sym_constexpr] = ACTIONS(2575), + [anon_sym_constinit] = ACTIONS(2575), + [anon_sym_consteval] = ACTIONS(2575), + [anon_sym_signed] = ACTIONS(2575), + [anon_sym_unsigned] = ACTIONS(2575), + [anon_sym_long] = ACTIONS(2575), + [anon_sym_short] = ACTIONS(2575), + [sym_primitive_type] = ACTIONS(2575), + [anon_sym_enum] = ACTIONS(2575), + [anon_sym_class] = ACTIONS(2575), + [anon_sym_struct] = ACTIONS(2575), + [anon_sym_union] = ACTIONS(2575), + [anon_sym_if] = ACTIONS(2575), + [anon_sym_else] = ACTIONS(2575), + [anon_sym_switch] = ACTIONS(2575), + [anon_sym_case] = ACTIONS(2575), + [anon_sym_default] = ACTIONS(2575), + [anon_sym_while] = ACTIONS(2575), + [anon_sym_do] = ACTIONS(2575), + [anon_sym_for] = ACTIONS(2575), + [anon_sym_return] = ACTIONS(2575), + [anon_sym_break] = ACTIONS(2575), + [anon_sym_continue] = ACTIONS(2575), + [anon_sym_goto] = ACTIONS(2575), + [anon_sym_not] = ACTIONS(2575), + [anon_sym_compl] = ACTIONS(2575), + [anon_sym_DASH_DASH] = ACTIONS(2577), + [anon_sym_PLUS_PLUS] = ACTIONS(2577), + [anon_sym_sizeof] = ACTIONS(2575), + [sym_number_literal] = ACTIONS(2577), + [anon_sym_L_SQUOTE] = ACTIONS(2577), + [anon_sym_u_SQUOTE] = ACTIONS(2577), + [anon_sym_U_SQUOTE] = ACTIONS(2577), + [anon_sym_u8_SQUOTE] = ACTIONS(2577), + [anon_sym_SQUOTE] = ACTIONS(2577), + [anon_sym_L_DQUOTE] = ACTIONS(2577), + [anon_sym_u_DQUOTE] = ACTIONS(2577), + [anon_sym_U_DQUOTE] = ACTIONS(2577), + [anon_sym_u8_DQUOTE] = ACTIONS(2577), + [anon_sym_DQUOTE] = ACTIONS(2577), + [sym_true] = ACTIONS(2575), + [sym_false] = ACTIONS(2575), + [sym_null] = ACTIONS(2575), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2575), + [anon_sym_decltype] = ACTIONS(2575), + [anon_sym_virtual] = ACTIONS(2575), + [anon_sym_explicit] = ACTIONS(2575), + [anon_sym_typename] = ACTIONS(2575), + [anon_sym_template] = ACTIONS(2575), + [anon_sym_operator] = ACTIONS(2575), + [anon_sym_try] = ACTIONS(2575), + [anon_sym_delete] = ACTIONS(2575), + [anon_sym_throw] = ACTIONS(2575), + [anon_sym_namespace] = ACTIONS(2575), + [anon_sym_using] = ACTIONS(2575), + [anon_sym_static_assert] = ACTIONS(2575), + [anon_sym_concept] = ACTIONS(2575), + [anon_sym_co_return] = ACTIONS(2575), + [anon_sym_co_yield] = ACTIONS(2575), [anon_sym_co_await] = ACTIONS(2575), - [anon_sym_new] = ACTIONS(2577), + [anon_sym_new] = ACTIONS(2575), + [anon_sym_requires] = ACTIONS(2575), + [sym_this] = ACTIONS(2575), + [sym_nullptr] = ACTIONS(2575), + [sym_raw_string_literal] = ACTIONS(2577), + }, + [406] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token2] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [aux_sym_preproc_else_token1] = ACTIONS(2559), + [aux_sym_preproc_elif_token1] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), + }, + [407] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token2] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [aux_sym_preproc_else_token1] = ACTIONS(2559), + [aux_sym_preproc_elif_token1] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), + }, + [408] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token2] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [aux_sym_preproc_else_token1] = ACTIONS(2559), + [aux_sym_preproc_elif_token1] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), + }, + [409] = { + [sym_identifier] = ACTIONS(2579), + [aux_sym_preproc_include_token1] = ACTIONS(2579), + [aux_sym_preproc_def_token1] = ACTIONS(2579), + [aux_sym_preproc_if_token1] = ACTIONS(2579), + [aux_sym_preproc_if_token2] = ACTIONS(2579), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2579), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2579), + [aux_sym_preproc_else_token1] = ACTIONS(2579), + [aux_sym_preproc_elif_token1] = ACTIONS(2579), + [sym_preproc_directive] = ACTIONS(2579), + [anon_sym_LPAREN2] = ACTIONS(2581), + [anon_sym_BANG] = ACTIONS(2581), + [anon_sym_TILDE] = ACTIONS(2581), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_STAR] = ACTIONS(2581), + [anon_sym_AMP_AMP] = ACTIONS(2581), + [anon_sym_AMP] = ACTIONS(2579), + [anon_sym_SEMI] = ACTIONS(2581), + [anon_sym_typedef] = ACTIONS(2579), + [anon_sym_extern] = ACTIONS(2579), + [anon_sym___attribute__] = ACTIONS(2579), + [anon_sym_COLON_COLON] = ACTIONS(2581), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2581), + [anon_sym___declspec] = ACTIONS(2579), + [anon_sym___based] = ACTIONS(2579), + [anon_sym___cdecl] = ACTIONS(2579), + [anon_sym___clrcall] = ACTIONS(2579), + [anon_sym___stdcall] = ACTIONS(2579), + [anon_sym___fastcall] = ACTIONS(2579), + [anon_sym___thiscall] = ACTIONS(2579), + [anon_sym___vectorcall] = ACTIONS(2579), + [anon_sym_LBRACE] = ACTIONS(2581), + [anon_sym_LBRACK] = ACTIONS(2579), + [anon_sym_static] = ACTIONS(2579), + [anon_sym_register] = ACTIONS(2579), + [anon_sym_inline] = ACTIONS(2579), + [anon_sym_thread_local] = ACTIONS(2579), + [anon_sym_const] = ACTIONS(2579), + [anon_sym_volatile] = ACTIONS(2579), + [anon_sym_restrict] = ACTIONS(2579), + [anon_sym__Atomic] = ACTIONS(2579), + [anon_sym_mutable] = ACTIONS(2579), + [anon_sym_constexpr] = ACTIONS(2579), + [anon_sym_constinit] = ACTIONS(2579), + [anon_sym_consteval] = ACTIONS(2579), + [anon_sym_signed] = ACTIONS(2579), + [anon_sym_unsigned] = ACTIONS(2579), + [anon_sym_long] = ACTIONS(2579), + [anon_sym_short] = ACTIONS(2579), + [sym_primitive_type] = ACTIONS(2579), + [anon_sym_enum] = ACTIONS(2579), + [anon_sym_class] = ACTIONS(2579), + [anon_sym_struct] = ACTIONS(2579), + [anon_sym_union] = ACTIONS(2579), + [anon_sym_if] = ACTIONS(2579), + [anon_sym_else] = ACTIONS(2579), + [anon_sym_switch] = ACTIONS(2579), + [anon_sym_case] = ACTIONS(2579), + [anon_sym_default] = ACTIONS(2579), + [anon_sym_while] = ACTIONS(2579), + [anon_sym_do] = ACTIONS(2579), + [anon_sym_for] = ACTIONS(2579), + [anon_sym_return] = ACTIONS(2579), + [anon_sym_break] = ACTIONS(2579), + [anon_sym_continue] = ACTIONS(2579), + [anon_sym_goto] = ACTIONS(2579), + [anon_sym_not] = ACTIONS(2579), + [anon_sym_compl] = ACTIONS(2579), + [anon_sym_DASH_DASH] = ACTIONS(2581), + [anon_sym_PLUS_PLUS] = ACTIONS(2581), + [anon_sym_sizeof] = ACTIONS(2579), + [sym_number_literal] = ACTIONS(2581), + [anon_sym_L_SQUOTE] = ACTIONS(2581), + [anon_sym_u_SQUOTE] = ACTIONS(2581), + [anon_sym_U_SQUOTE] = ACTIONS(2581), + [anon_sym_u8_SQUOTE] = ACTIONS(2581), + [anon_sym_SQUOTE] = ACTIONS(2581), + [anon_sym_L_DQUOTE] = ACTIONS(2581), + [anon_sym_u_DQUOTE] = ACTIONS(2581), + [anon_sym_U_DQUOTE] = ACTIONS(2581), + [anon_sym_u8_DQUOTE] = ACTIONS(2581), + [anon_sym_DQUOTE] = ACTIONS(2581), + [sym_true] = ACTIONS(2579), + [sym_false] = ACTIONS(2579), + [sym_null] = ACTIONS(2579), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2579), + [anon_sym_decltype] = ACTIONS(2579), + [anon_sym_virtual] = ACTIONS(2579), + [anon_sym_explicit] = ACTIONS(2579), + [anon_sym_typename] = ACTIONS(2579), + [anon_sym_template] = ACTIONS(2579), + [anon_sym_operator] = ACTIONS(2579), + [anon_sym_try] = ACTIONS(2579), + [anon_sym_delete] = ACTIONS(2579), + [anon_sym_throw] = ACTIONS(2579), + [anon_sym_namespace] = ACTIONS(2579), + [anon_sym_using] = ACTIONS(2579), + [anon_sym_static_assert] = ACTIONS(2579), + [anon_sym_concept] = ACTIONS(2579), + [anon_sym_co_return] = ACTIONS(2579), + [anon_sym_co_yield] = ACTIONS(2579), + [anon_sym_co_await] = ACTIONS(2579), + [anon_sym_new] = ACTIONS(2579), [anon_sym_requires] = ACTIONS(2579), - [sym_this] = ACTIONS(2563), - [sym_nullptr] = ACTIONS(2563), + [sym_this] = ACTIONS(2579), + [sym_nullptr] = ACTIONS(2579), [sym_raw_string_literal] = ACTIONS(2581), }, - [461] = { + [410] = { [sym_identifier] = ACTIONS(2583), [aux_sym_preproc_include_token1] = ACTIONS(2583), [aux_sym_preproc_def_token1] = ACTIONS(2583), @@ -85804,6 +82563,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(2583), [anon_sym_union] = ACTIONS(2583), [anon_sym_if] = ACTIONS(2583), + [anon_sym_else] = ACTIONS(2583), [anon_sym_switch] = ACTIONS(2583), [anon_sym_case] = ACTIONS(2583), [anon_sym_default] = ACTIONS(2583), @@ -85814,6 +82574,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(2583), [anon_sym_continue] = ACTIONS(2583), [anon_sym_goto] = ACTIONS(2583), + [anon_sym_not] = ACTIONS(2583), + [anon_sym_compl] = ACTIONS(2583), [anon_sym_DASH_DASH] = ACTIONS(2585), [anon_sym_PLUS_PLUS] = ACTIONS(2585), [anon_sym_sizeof] = ACTIONS(2583), @@ -85855,7 +82617,229 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(2583), [sym_raw_string_literal] = ACTIONS(2585), }, - [462] = { + [411] = { + [sym_catch_clause] = STATE(346), + [aux_sym_constructor_try_statement_repeat1] = STATE(346), + [sym_identifier] = ACTIONS(2420), + [aux_sym_preproc_include_token1] = ACTIONS(2420), + [aux_sym_preproc_def_token1] = ACTIONS(2420), + [aux_sym_preproc_if_token1] = ACTIONS(2420), + [aux_sym_preproc_if_token2] = ACTIONS(2420), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2420), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2420), + [sym_preproc_directive] = ACTIONS(2420), + [anon_sym_LPAREN2] = ACTIONS(2422), + [anon_sym_BANG] = ACTIONS(2422), + [anon_sym_TILDE] = ACTIONS(2422), + [anon_sym_DASH] = ACTIONS(2420), + [anon_sym_PLUS] = ACTIONS(2420), + [anon_sym_STAR] = ACTIONS(2422), + [anon_sym_AMP_AMP] = ACTIONS(2422), + [anon_sym_AMP] = ACTIONS(2420), + [anon_sym_SEMI] = ACTIONS(2422), + [anon_sym_typedef] = ACTIONS(2420), + [anon_sym_extern] = ACTIONS(2420), + [anon_sym___attribute__] = ACTIONS(2420), + [anon_sym_COLON_COLON] = ACTIONS(2422), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2422), + [anon_sym___declspec] = ACTIONS(2420), + [anon_sym___based] = ACTIONS(2420), + [anon_sym___cdecl] = ACTIONS(2420), + [anon_sym___clrcall] = ACTIONS(2420), + [anon_sym___stdcall] = ACTIONS(2420), + [anon_sym___fastcall] = ACTIONS(2420), + [anon_sym___thiscall] = ACTIONS(2420), + [anon_sym___vectorcall] = ACTIONS(2420), + [anon_sym_LBRACE] = ACTIONS(2422), + [anon_sym_LBRACK] = ACTIONS(2420), + [anon_sym_static] = ACTIONS(2420), + [anon_sym_register] = ACTIONS(2420), + [anon_sym_inline] = ACTIONS(2420), + [anon_sym_thread_local] = ACTIONS(2420), + [anon_sym_const] = ACTIONS(2420), + [anon_sym_volatile] = ACTIONS(2420), + [anon_sym_restrict] = ACTIONS(2420), + [anon_sym__Atomic] = ACTIONS(2420), + [anon_sym_mutable] = ACTIONS(2420), + [anon_sym_constexpr] = ACTIONS(2420), + [anon_sym_constinit] = ACTIONS(2420), + [anon_sym_consteval] = ACTIONS(2420), + [anon_sym_signed] = ACTIONS(2420), + [anon_sym_unsigned] = ACTIONS(2420), + [anon_sym_long] = ACTIONS(2420), + [anon_sym_short] = ACTIONS(2420), + [sym_primitive_type] = ACTIONS(2420), + [anon_sym_enum] = ACTIONS(2420), + [anon_sym_class] = ACTIONS(2420), + [anon_sym_struct] = ACTIONS(2420), + [anon_sym_union] = ACTIONS(2420), + [anon_sym_if] = ACTIONS(2420), + [anon_sym_switch] = ACTIONS(2420), + [anon_sym_case] = ACTIONS(2420), + [anon_sym_default] = ACTIONS(2420), + [anon_sym_while] = ACTIONS(2420), + [anon_sym_do] = ACTIONS(2420), + [anon_sym_for] = ACTIONS(2420), + [anon_sym_return] = ACTIONS(2420), + [anon_sym_break] = ACTIONS(2420), + [anon_sym_continue] = ACTIONS(2420), + [anon_sym_goto] = ACTIONS(2420), + [anon_sym_not] = ACTIONS(2420), + [anon_sym_compl] = ACTIONS(2420), + [anon_sym_DASH_DASH] = ACTIONS(2422), + [anon_sym_PLUS_PLUS] = ACTIONS(2422), + [anon_sym_sizeof] = ACTIONS(2420), + [sym_number_literal] = ACTIONS(2422), + [anon_sym_L_SQUOTE] = ACTIONS(2422), + [anon_sym_u_SQUOTE] = ACTIONS(2422), + [anon_sym_U_SQUOTE] = ACTIONS(2422), + [anon_sym_u8_SQUOTE] = ACTIONS(2422), + [anon_sym_SQUOTE] = ACTIONS(2422), + [anon_sym_L_DQUOTE] = ACTIONS(2422), + [anon_sym_u_DQUOTE] = ACTIONS(2422), + [anon_sym_U_DQUOTE] = ACTIONS(2422), + [anon_sym_u8_DQUOTE] = ACTIONS(2422), + [anon_sym_DQUOTE] = ACTIONS(2422), + [sym_true] = ACTIONS(2420), + [sym_false] = ACTIONS(2420), + [sym_null] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2420), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_virtual] = ACTIONS(2420), + [anon_sym_explicit] = ACTIONS(2420), + [anon_sym_typename] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2420), + [anon_sym_operator] = ACTIONS(2420), + [anon_sym_try] = ACTIONS(2420), + [anon_sym_delete] = ACTIONS(2420), + [anon_sym_throw] = ACTIONS(2420), + [anon_sym_namespace] = ACTIONS(2420), + [anon_sym_using] = ACTIONS(2420), + [anon_sym_static_assert] = ACTIONS(2420), + [anon_sym_concept] = ACTIONS(2420), + [anon_sym_co_return] = ACTIONS(2420), + [anon_sym_co_yield] = ACTIONS(2420), + [anon_sym_catch] = ACTIONS(2480), + [anon_sym_co_await] = ACTIONS(2420), + [anon_sym_new] = ACTIONS(2420), + [anon_sym_requires] = ACTIONS(2420), + [sym_this] = ACTIONS(2420), + [sym_nullptr] = ACTIONS(2420), + [sym_raw_string_literal] = ACTIONS(2422), + }, + [412] = { + [sym_catch_clause] = STATE(346), + [aux_sym_constructor_try_statement_repeat1] = STATE(346), + [sym_identifier] = ACTIONS(2424), + [aux_sym_preproc_include_token1] = ACTIONS(2424), + [aux_sym_preproc_def_token1] = ACTIONS(2424), + [aux_sym_preproc_if_token1] = ACTIONS(2424), + [aux_sym_preproc_if_token2] = ACTIONS(2424), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2424), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2424), + [sym_preproc_directive] = ACTIONS(2424), + [anon_sym_LPAREN2] = ACTIONS(2426), + [anon_sym_BANG] = ACTIONS(2426), + [anon_sym_TILDE] = ACTIONS(2426), + [anon_sym_DASH] = ACTIONS(2424), + [anon_sym_PLUS] = ACTIONS(2424), + [anon_sym_STAR] = ACTIONS(2426), + [anon_sym_AMP_AMP] = ACTIONS(2426), + [anon_sym_AMP] = ACTIONS(2424), + [anon_sym_SEMI] = ACTIONS(2426), + [anon_sym_typedef] = ACTIONS(2424), + [anon_sym_extern] = ACTIONS(2424), + [anon_sym___attribute__] = ACTIONS(2424), + [anon_sym_COLON_COLON] = ACTIONS(2426), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2426), + [anon_sym___declspec] = ACTIONS(2424), + [anon_sym___based] = ACTIONS(2424), + [anon_sym___cdecl] = ACTIONS(2424), + [anon_sym___clrcall] = ACTIONS(2424), + [anon_sym___stdcall] = ACTIONS(2424), + [anon_sym___fastcall] = ACTIONS(2424), + [anon_sym___thiscall] = ACTIONS(2424), + [anon_sym___vectorcall] = ACTIONS(2424), + [anon_sym_LBRACE] = ACTIONS(2426), + [anon_sym_LBRACK] = ACTIONS(2424), + [anon_sym_static] = ACTIONS(2424), + [anon_sym_register] = ACTIONS(2424), + [anon_sym_inline] = ACTIONS(2424), + [anon_sym_thread_local] = ACTIONS(2424), + [anon_sym_const] = ACTIONS(2424), + [anon_sym_volatile] = ACTIONS(2424), + [anon_sym_restrict] = ACTIONS(2424), + [anon_sym__Atomic] = ACTIONS(2424), + [anon_sym_mutable] = ACTIONS(2424), + [anon_sym_constexpr] = ACTIONS(2424), + [anon_sym_constinit] = ACTIONS(2424), + [anon_sym_consteval] = ACTIONS(2424), + [anon_sym_signed] = ACTIONS(2424), + [anon_sym_unsigned] = ACTIONS(2424), + [anon_sym_long] = ACTIONS(2424), + [anon_sym_short] = ACTIONS(2424), + [sym_primitive_type] = ACTIONS(2424), + [anon_sym_enum] = ACTIONS(2424), + [anon_sym_class] = ACTIONS(2424), + [anon_sym_struct] = ACTIONS(2424), + [anon_sym_union] = ACTIONS(2424), + [anon_sym_if] = ACTIONS(2424), + [anon_sym_switch] = ACTIONS(2424), + [anon_sym_case] = ACTIONS(2424), + [anon_sym_default] = ACTIONS(2424), + [anon_sym_while] = ACTIONS(2424), + [anon_sym_do] = ACTIONS(2424), + [anon_sym_for] = ACTIONS(2424), + [anon_sym_return] = ACTIONS(2424), + [anon_sym_break] = ACTIONS(2424), + [anon_sym_continue] = ACTIONS(2424), + [anon_sym_goto] = ACTIONS(2424), + [anon_sym_not] = ACTIONS(2424), + [anon_sym_compl] = ACTIONS(2424), + [anon_sym_DASH_DASH] = ACTIONS(2426), + [anon_sym_PLUS_PLUS] = ACTIONS(2426), + [anon_sym_sizeof] = ACTIONS(2424), + [sym_number_literal] = ACTIONS(2426), + [anon_sym_L_SQUOTE] = ACTIONS(2426), + [anon_sym_u_SQUOTE] = ACTIONS(2426), + [anon_sym_U_SQUOTE] = ACTIONS(2426), + [anon_sym_u8_SQUOTE] = ACTIONS(2426), + [anon_sym_SQUOTE] = ACTIONS(2426), + [anon_sym_L_DQUOTE] = ACTIONS(2426), + [anon_sym_u_DQUOTE] = ACTIONS(2426), + [anon_sym_U_DQUOTE] = ACTIONS(2426), + [anon_sym_u8_DQUOTE] = ACTIONS(2426), + [anon_sym_DQUOTE] = ACTIONS(2426), + [sym_true] = ACTIONS(2424), + [sym_false] = ACTIONS(2424), + [sym_null] = ACTIONS(2424), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2424), + [anon_sym_decltype] = ACTIONS(2424), + [anon_sym_virtual] = ACTIONS(2424), + [anon_sym_explicit] = ACTIONS(2424), + [anon_sym_typename] = ACTIONS(2424), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_operator] = ACTIONS(2424), + [anon_sym_try] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2424), + [anon_sym_throw] = ACTIONS(2424), + [anon_sym_namespace] = ACTIONS(2424), + [anon_sym_using] = ACTIONS(2424), + [anon_sym_static_assert] = ACTIONS(2424), + [anon_sym_concept] = ACTIONS(2424), + [anon_sym_co_return] = ACTIONS(2424), + [anon_sym_co_yield] = ACTIONS(2424), + [anon_sym_catch] = ACTIONS(2480), + [anon_sym_co_await] = ACTIONS(2424), + [anon_sym_new] = ACTIONS(2424), + [anon_sym_requires] = ACTIONS(2424), + [sym_this] = ACTIONS(2424), + [sym_nullptr] = ACTIONS(2424), + [sym_raw_string_literal] = ACTIONS(2426), + }, + [413] = { [sym_identifier] = ACTIONS(2587), [aux_sym_preproc_include_token1] = ACTIONS(2587), [aux_sym_preproc_def_token1] = ACTIONS(2587), @@ -85912,6 +82896,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(2587), [anon_sym_union] = ACTIONS(2587), [anon_sym_if] = ACTIONS(2587), + [anon_sym_else] = ACTIONS(2587), [anon_sym_switch] = ACTIONS(2587), [anon_sym_case] = ACTIONS(2587), [anon_sym_default] = ACTIONS(2587), @@ -85922,6 +82907,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(2587), [anon_sym_continue] = ACTIONS(2587), [anon_sym_goto] = ACTIONS(2587), + [anon_sym_not] = ACTIONS(2587), + [anon_sym_compl] = ACTIONS(2587), [anon_sym_DASH_DASH] = ACTIONS(2589), [anon_sym_PLUS_PLUS] = ACTIONS(2589), [anon_sym_sizeof] = ACTIONS(2587), @@ -85963,7 +82950,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(2587), [sym_raw_string_literal] = ACTIONS(2589), }, - [463] = { + [414] = { [sym_identifier] = ACTIONS(2591), [aux_sym_preproc_include_token1] = ACTIONS(2591), [aux_sym_preproc_def_token1] = ACTIONS(2591), @@ -86020,6 +83007,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(2591), [anon_sym_union] = ACTIONS(2591), [anon_sym_if] = ACTIONS(2591), + [anon_sym_else] = ACTIONS(2591), [anon_sym_switch] = ACTIONS(2591), [anon_sym_case] = ACTIONS(2591), [anon_sym_default] = ACTIONS(2591), @@ -86030,6 +83018,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(2591), [anon_sym_continue] = ACTIONS(2591), [anon_sym_goto] = ACTIONS(2591), + [anon_sym_not] = ACTIONS(2591), + [anon_sym_compl] = ACTIONS(2591), [anon_sym_DASH_DASH] = ACTIONS(2593), [anon_sym_PLUS_PLUS] = ACTIONS(2593), [anon_sym_sizeof] = ACTIONS(2591), @@ -86071,7 +83061,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(2591), [sym_raw_string_literal] = ACTIONS(2593), }, - [464] = { + [415] = { [sym_identifier] = ACTIONS(2595), [aux_sym_preproc_include_token1] = ACTIONS(2595), [aux_sym_preproc_def_token1] = ACTIONS(2595), @@ -86128,6 +83118,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(2595), [anon_sym_union] = ACTIONS(2595), [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), [anon_sym_switch] = ACTIONS(2595), [anon_sym_case] = ACTIONS(2595), [anon_sym_default] = ACTIONS(2595), @@ -86138,6 +83129,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(2595), [anon_sym_continue] = ACTIONS(2595), [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), [anon_sym_DASH_DASH] = ACTIONS(2597), [anon_sym_PLUS_PLUS] = ACTIONS(2597), [anon_sym_sizeof] = ACTIONS(2595), @@ -86179,15454 +83172,6392 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(2595), [sym_raw_string_literal] = ACTIONS(2597), }, - [465] = { - [sym_type_qualifier] = STATE(2979), - [sym__type_specifier] = STATE(3924), - [sym_sized_type_specifier] = STATE(2872), - [sym_enum_specifier] = STATE(2872), - [sym_struct_specifier] = STATE(2872), - [sym_union_specifier] = STATE(2872), - [sym__expression] = STATE(3548), - [sym_conditional_expression] = STATE(3881), - [sym_assignment_expression] = STATE(3881), - [sym_pointer_expression] = STATE(2977), - [sym_unary_expression] = STATE(3881), - [sym_binary_expression] = STATE(3881), - [sym_update_expression] = STATE(3881), - [sym_cast_expression] = STATE(3881), - [sym_type_descriptor] = STATE(5319), - [sym_sizeof_expression] = STATE(3881), - [sym_subscript_expression] = STATE(2977), - [sym_call_expression] = STATE(2977), - [sym_field_expression] = STATE(2977), - [sym_compound_literal_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(2977), - [sym_char_literal] = STATE(3701), - [sym_concatenated_string] = STATE(3701), - [sym_string_literal] = STATE(3219), - [sym_placeholder_type_specifier] = STATE(2872), - [sym_decltype_auto] = STATE(2878), - [sym_decltype] = STATE(2872), - [sym_class_specifier] = STATE(2872), - [sym__class_name] = STATE(6063), - [sym_dependent_type] = STATE(2872), - [sym_template_type] = STATE(4194), - [sym_template_function] = STATE(3881), - [sym_co_await_expression] = STATE(3881), - [sym_new_expression] = STATE(3881), - [sym_delete_expression] = STATE(3881), - [sym_requires_clause] = STATE(3881), - [sym_requires_expression] = STATE(3881), - [sym_lambda_expression] = STATE(3881), - [sym_lambda_capture_specifier] = STATE(4519), - [sym_fold_expression] = STATE(3881), - [sym_parameter_pack_expansion] = STATE(3881), - [sym_type_parameter_pack_expansion] = STATE(5759), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4633), - [sym_qualified_identifier] = STATE(2977), - [sym_qualified_type_identifier] = STATE(4305), - [sym_user_defined_literal] = STATE(3881), - [aux_sym_type_definition_repeat1] = STATE(2979), - [aux_sym_sized_type_specifier_repeat1] = STATE(2182), - [sym_identifier] = ACTIONS(2529), - [anon_sym_LPAREN2] = ACTIONS(2531), - [anon_sym_BANG] = ACTIONS(2533), - [anon_sym_TILDE] = ACTIONS(2533), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_STAR] = ACTIONS(2537), - [anon_sym_AMP] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(2539), - [anon_sym_LBRACK] = ACTIONS(2272), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(2541), - [anon_sym_unsigned] = ACTIONS(2541), - [anon_sym_long] = ACTIONS(2541), - [anon_sym_short] = ACTIONS(2541), - [sym_primitive_type] = ACTIONS(2543), - [anon_sym_enum] = ACTIONS(2545), - [anon_sym_class] = ACTIONS(2547), - [anon_sym_struct] = ACTIONS(2549), - [anon_sym_union] = ACTIONS(2551), - [anon_sym_DASH_DASH] = ACTIONS(2553), - [anon_sym_PLUS_PLUS] = ACTIONS(2553), - [anon_sym_sizeof] = ACTIONS(2555), - [sym_number_literal] = ACTIONS(2557), - [anon_sym_L_SQUOTE] = ACTIONS(2559), - [anon_sym_u_SQUOTE] = ACTIONS(2559), - [anon_sym_U_SQUOTE] = ACTIONS(2559), - [anon_sym_u8_SQUOTE] = ACTIONS(2559), - [anon_sym_SQUOTE] = ACTIONS(2559), - [anon_sym_L_DQUOTE] = ACTIONS(2561), - [anon_sym_u_DQUOTE] = ACTIONS(2561), - [anon_sym_U_DQUOTE] = ACTIONS(2561), - [anon_sym_u8_DQUOTE] = ACTIONS(2561), - [anon_sym_DQUOTE] = ACTIONS(2561), - [sym_true] = ACTIONS(2563), - [sym_false] = ACTIONS(2563), - [sym_null] = ACTIONS(2563), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2565), - [anon_sym_decltype] = ACTIONS(2567), - [anon_sym_typename] = ACTIONS(2569), - [anon_sym_template] = ACTIONS(972), - [anon_sym_GT2] = ACTIONS(2599), - [anon_sym_delete] = ACTIONS(2573), - [anon_sym_co_await] = ACTIONS(2575), - [anon_sym_new] = ACTIONS(2577), - [anon_sym_requires] = ACTIONS(2579), - [sym_this] = ACTIONS(2563), - [sym_nullptr] = ACTIONS(2563), - [sym_raw_string_literal] = ACTIONS(2581), - }, - [466] = { - [sym_identifier] = ACTIONS(2601), - [aux_sym_preproc_include_token1] = ACTIONS(2601), - [aux_sym_preproc_def_token1] = ACTIONS(2601), - [aux_sym_preproc_if_token1] = ACTIONS(2601), - [aux_sym_preproc_if_token2] = ACTIONS(2601), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2601), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2601), - [aux_sym_preproc_else_token1] = ACTIONS(2601), - [aux_sym_preproc_elif_token1] = ACTIONS(2601), - [sym_preproc_directive] = ACTIONS(2601), - [anon_sym_LPAREN2] = ACTIONS(2603), - [anon_sym_BANG] = ACTIONS(2603), - [anon_sym_TILDE] = ACTIONS(2603), - [anon_sym_DASH] = ACTIONS(2601), - [anon_sym_PLUS] = ACTIONS(2601), - [anon_sym_STAR] = ACTIONS(2603), - [anon_sym_AMP_AMP] = ACTIONS(2603), - [anon_sym_AMP] = ACTIONS(2601), - [anon_sym_SEMI] = ACTIONS(2603), - [anon_sym_typedef] = ACTIONS(2601), - [anon_sym_extern] = ACTIONS(2601), - [anon_sym___attribute__] = ACTIONS(2601), - [anon_sym_COLON_COLON] = ACTIONS(2603), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2603), - [anon_sym___declspec] = ACTIONS(2601), - [anon_sym___based] = ACTIONS(2601), - [anon_sym___cdecl] = ACTIONS(2601), - [anon_sym___clrcall] = ACTIONS(2601), - [anon_sym___stdcall] = ACTIONS(2601), - [anon_sym___fastcall] = ACTIONS(2601), - [anon_sym___thiscall] = ACTIONS(2601), - [anon_sym___vectorcall] = ACTIONS(2601), - [anon_sym_LBRACE] = ACTIONS(2603), - [anon_sym_LBRACK] = ACTIONS(2601), - [anon_sym_static] = ACTIONS(2601), - [anon_sym_register] = ACTIONS(2601), - [anon_sym_inline] = ACTIONS(2601), - [anon_sym_thread_local] = ACTIONS(2601), - [anon_sym_const] = ACTIONS(2601), - [anon_sym_volatile] = ACTIONS(2601), - [anon_sym_restrict] = ACTIONS(2601), - [anon_sym__Atomic] = ACTIONS(2601), - [anon_sym_mutable] = ACTIONS(2601), - [anon_sym_constexpr] = ACTIONS(2601), - [anon_sym_constinit] = ACTIONS(2601), - [anon_sym_consteval] = ACTIONS(2601), - [anon_sym_signed] = ACTIONS(2601), - [anon_sym_unsigned] = ACTIONS(2601), - [anon_sym_long] = ACTIONS(2601), - [anon_sym_short] = ACTIONS(2601), - [sym_primitive_type] = ACTIONS(2601), - [anon_sym_enum] = ACTIONS(2601), - [anon_sym_class] = ACTIONS(2601), - [anon_sym_struct] = ACTIONS(2601), - [anon_sym_union] = ACTIONS(2601), - [anon_sym_if] = ACTIONS(2601), - [anon_sym_switch] = ACTIONS(2601), - [anon_sym_case] = ACTIONS(2601), - [anon_sym_default] = ACTIONS(2601), - [anon_sym_while] = ACTIONS(2601), - [anon_sym_do] = ACTIONS(2601), - [anon_sym_for] = ACTIONS(2601), - [anon_sym_return] = ACTIONS(2601), - [anon_sym_break] = ACTIONS(2601), - [anon_sym_continue] = ACTIONS(2601), - [anon_sym_goto] = ACTIONS(2601), - [anon_sym_DASH_DASH] = ACTIONS(2603), - [anon_sym_PLUS_PLUS] = ACTIONS(2603), - [anon_sym_sizeof] = ACTIONS(2601), - [sym_number_literal] = ACTIONS(2603), - [anon_sym_L_SQUOTE] = ACTIONS(2603), - [anon_sym_u_SQUOTE] = ACTIONS(2603), - [anon_sym_U_SQUOTE] = ACTIONS(2603), - [anon_sym_u8_SQUOTE] = ACTIONS(2603), - [anon_sym_SQUOTE] = ACTIONS(2603), - [anon_sym_L_DQUOTE] = ACTIONS(2603), - [anon_sym_u_DQUOTE] = ACTIONS(2603), - [anon_sym_U_DQUOTE] = ACTIONS(2603), - [anon_sym_u8_DQUOTE] = ACTIONS(2603), - [anon_sym_DQUOTE] = ACTIONS(2603), - [sym_true] = ACTIONS(2601), - [sym_false] = ACTIONS(2601), - [sym_null] = ACTIONS(2601), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2601), - [anon_sym_decltype] = ACTIONS(2601), - [anon_sym_virtual] = ACTIONS(2601), - [anon_sym_explicit] = ACTIONS(2601), - [anon_sym_typename] = ACTIONS(2601), - [anon_sym_template] = ACTIONS(2601), - [anon_sym_operator] = ACTIONS(2601), - [anon_sym_try] = ACTIONS(2601), - [anon_sym_delete] = ACTIONS(2601), - [anon_sym_throw] = ACTIONS(2601), - [anon_sym_namespace] = ACTIONS(2601), - [anon_sym_using] = ACTIONS(2601), - [anon_sym_static_assert] = ACTIONS(2601), - [anon_sym_concept] = ACTIONS(2601), - [anon_sym_co_return] = ACTIONS(2601), - [anon_sym_co_yield] = ACTIONS(2601), - [anon_sym_co_await] = ACTIONS(2601), - [anon_sym_new] = ACTIONS(2601), - [anon_sym_requires] = ACTIONS(2601), - [sym_this] = ACTIONS(2601), - [sym_nullptr] = ACTIONS(2601), - [sym_raw_string_literal] = ACTIONS(2603), - }, - [467] = { - [ts_builtin_sym_end] = ACTIONS(2304), - [sym_identifier] = ACTIONS(2302), - [aux_sym_preproc_include_token1] = ACTIONS(2302), - [aux_sym_preproc_def_token1] = ACTIONS(2302), - [aux_sym_preproc_if_token1] = ACTIONS(2302), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2302), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2302), - [sym_preproc_directive] = ACTIONS(2302), - [anon_sym_LPAREN2] = ACTIONS(2304), - [anon_sym_BANG] = ACTIONS(2304), - [anon_sym_TILDE] = ACTIONS(2304), - [anon_sym_DASH] = ACTIONS(2302), - [anon_sym_PLUS] = ACTIONS(2302), - [anon_sym_STAR] = ACTIONS(2304), - [anon_sym_AMP_AMP] = ACTIONS(2304), - [anon_sym_AMP] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(2304), - [anon_sym_typedef] = ACTIONS(2302), - [anon_sym_extern] = ACTIONS(2302), - [anon_sym___attribute__] = ACTIONS(2302), - [anon_sym_COLON_COLON] = ACTIONS(2304), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2304), - [anon_sym___declspec] = ACTIONS(2302), - [anon_sym___based] = ACTIONS(2302), - [anon_sym___cdecl] = ACTIONS(2302), - [anon_sym___clrcall] = ACTIONS(2302), - [anon_sym___stdcall] = ACTIONS(2302), - [anon_sym___fastcall] = ACTIONS(2302), - [anon_sym___thiscall] = ACTIONS(2302), - [anon_sym___vectorcall] = ACTIONS(2302), - [anon_sym_LBRACE] = ACTIONS(2304), - [anon_sym_LBRACK] = ACTIONS(2302), - [anon_sym_static] = ACTIONS(2302), - [anon_sym_register] = ACTIONS(2302), - [anon_sym_inline] = ACTIONS(2302), - [anon_sym_thread_local] = ACTIONS(2302), - [anon_sym_const] = ACTIONS(2302), - [anon_sym_volatile] = ACTIONS(2302), - [anon_sym_restrict] = ACTIONS(2302), - [anon_sym__Atomic] = ACTIONS(2302), - [anon_sym_mutable] = ACTIONS(2302), - [anon_sym_constexpr] = ACTIONS(2302), - [anon_sym_constinit] = ACTIONS(2302), - [anon_sym_consteval] = ACTIONS(2302), - [anon_sym_signed] = ACTIONS(2302), - [anon_sym_unsigned] = ACTIONS(2302), - [anon_sym_long] = ACTIONS(2302), - [anon_sym_short] = ACTIONS(2302), - [sym_primitive_type] = ACTIONS(2302), - [anon_sym_enum] = ACTIONS(2302), - [anon_sym_class] = ACTIONS(2302), - [anon_sym_struct] = ACTIONS(2302), - [anon_sym_union] = ACTIONS(2302), - [anon_sym_if] = ACTIONS(2302), - [anon_sym_else] = ACTIONS(2302), - [anon_sym_switch] = ACTIONS(2302), - [anon_sym_case] = ACTIONS(2302), - [anon_sym_default] = ACTIONS(2302), - [anon_sym_while] = ACTIONS(2302), - [anon_sym_do] = ACTIONS(2302), - [anon_sym_for] = ACTIONS(2302), - [anon_sym_return] = ACTIONS(2302), - [anon_sym_break] = ACTIONS(2302), - [anon_sym_continue] = ACTIONS(2302), - [anon_sym_goto] = ACTIONS(2302), - [anon_sym_DASH_DASH] = ACTIONS(2304), - [anon_sym_PLUS_PLUS] = ACTIONS(2304), - [anon_sym_sizeof] = ACTIONS(2302), - [sym_number_literal] = ACTIONS(2304), - [anon_sym_L_SQUOTE] = ACTIONS(2304), - [anon_sym_u_SQUOTE] = ACTIONS(2304), - [anon_sym_U_SQUOTE] = ACTIONS(2304), - [anon_sym_u8_SQUOTE] = ACTIONS(2304), - [anon_sym_SQUOTE] = ACTIONS(2304), - [anon_sym_L_DQUOTE] = ACTIONS(2304), - [anon_sym_u_DQUOTE] = ACTIONS(2304), - [anon_sym_U_DQUOTE] = ACTIONS(2304), - [anon_sym_u8_DQUOTE] = ACTIONS(2304), - [anon_sym_DQUOTE] = ACTIONS(2304), - [sym_true] = ACTIONS(2302), - [sym_false] = ACTIONS(2302), - [sym_null] = ACTIONS(2302), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2302), - [anon_sym_decltype] = ACTIONS(2302), - [anon_sym_virtual] = ACTIONS(2302), - [anon_sym_explicit] = ACTIONS(2302), - [anon_sym_typename] = ACTIONS(2302), - [anon_sym_template] = ACTIONS(2302), - [anon_sym_operator] = ACTIONS(2302), - [anon_sym_try] = ACTIONS(2302), - [anon_sym_delete] = ACTIONS(2302), - [anon_sym_throw] = ACTIONS(2302), - [anon_sym_namespace] = ACTIONS(2302), - [anon_sym_using] = ACTIONS(2302), - [anon_sym_static_assert] = ACTIONS(2302), - [anon_sym_concept] = ACTIONS(2302), - [anon_sym_co_return] = ACTIONS(2302), - [anon_sym_co_yield] = ACTIONS(2302), - [anon_sym_catch] = ACTIONS(2302), - [anon_sym_co_await] = ACTIONS(2302), - [anon_sym_new] = ACTIONS(2302), - [anon_sym_requires] = ACTIONS(2302), - [sym_this] = ACTIONS(2302), - [sym_nullptr] = ACTIONS(2302), - [sym_raw_string_literal] = ACTIONS(2304), - }, - [468] = { - [sym_identifier] = ACTIONS(2605), - [aux_sym_preproc_include_token1] = ACTIONS(2605), - [aux_sym_preproc_def_token1] = ACTIONS(2605), - [aux_sym_preproc_if_token1] = ACTIONS(2605), - [aux_sym_preproc_if_token2] = ACTIONS(2605), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2605), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2605), - [aux_sym_preproc_else_token1] = ACTIONS(2605), - [aux_sym_preproc_elif_token1] = ACTIONS(2605), - [sym_preproc_directive] = ACTIONS(2605), - [anon_sym_LPAREN2] = ACTIONS(2607), - [anon_sym_BANG] = ACTIONS(2607), - [anon_sym_TILDE] = ACTIONS(2607), - [anon_sym_DASH] = ACTIONS(2605), - [anon_sym_PLUS] = ACTIONS(2605), - [anon_sym_STAR] = ACTIONS(2607), - [anon_sym_AMP_AMP] = ACTIONS(2607), - [anon_sym_AMP] = ACTIONS(2605), - [anon_sym_SEMI] = ACTIONS(2607), - [anon_sym_typedef] = ACTIONS(2605), - [anon_sym_extern] = ACTIONS(2605), - [anon_sym___attribute__] = ACTIONS(2605), - [anon_sym_COLON_COLON] = ACTIONS(2607), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2607), - [anon_sym___declspec] = ACTIONS(2605), - [anon_sym___based] = ACTIONS(2605), - [anon_sym___cdecl] = ACTIONS(2605), - [anon_sym___clrcall] = ACTIONS(2605), - [anon_sym___stdcall] = ACTIONS(2605), - [anon_sym___fastcall] = ACTIONS(2605), - [anon_sym___thiscall] = ACTIONS(2605), - [anon_sym___vectorcall] = ACTIONS(2605), - [anon_sym_LBRACE] = ACTIONS(2607), - [anon_sym_LBRACK] = ACTIONS(2605), - [anon_sym_static] = ACTIONS(2605), - [anon_sym_register] = ACTIONS(2605), - [anon_sym_inline] = ACTIONS(2605), - [anon_sym_thread_local] = ACTIONS(2605), - [anon_sym_const] = ACTIONS(2605), - [anon_sym_volatile] = ACTIONS(2605), - [anon_sym_restrict] = ACTIONS(2605), - [anon_sym__Atomic] = ACTIONS(2605), - [anon_sym_mutable] = ACTIONS(2605), - [anon_sym_constexpr] = ACTIONS(2605), - [anon_sym_constinit] = ACTIONS(2605), - [anon_sym_consteval] = ACTIONS(2605), - [anon_sym_signed] = ACTIONS(2605), - [anon_sym_unsigned] = ACTIONS(2605), - [anon_sym_long] = ACTIONS(2605), - [anon_sym_short] = ACTIONS(2605), - [sym_primitive_type] = ACTIONS(2605), - [anon_sym_enum] = ACTIONS(2605), - [anon_sym_class] = ACTIONS(2605), - [anon_sym_struct] = ACTIONS(2605), - [anon_sym_union] = ACTIONS(2605), - [anon_sym_if] = ACTIONS(2605), - [anon_sym_switch] = ACTIONS(2605), - [anon_sym_case] = ACTIONS(2605), - [anon_sym_default] = ACTIONS(2605), - [anon_sym_while] = ACTIONS(2605), - [anon_sym_do] = ACTIONS(2605), - [anon_sym_for] = ACTIONS(2605), - [anon_sym_return] = ACTIONS(2605), - [anon_sym_break] = ACTIONS(2605), - [anon_sym_continue] = ACTIONS(2605), - [anon_sym_goto] = ACTIONS(2605), - [anon_sym_DASH_DASH] = ACTIONS(2607), - [anon_sym_PLUS_PLUS] = ACTIONS(2607), - [anon_sym_sizeof] = ACTIONS(2605), - [sym_number_literal] = ACTIONS(2607), - [anon_sym_L_SQUOTE] = ACTIONS(2607), - [anon_sym_u_SQUOTE] = ACTIONS(2607), - [anon_sym_U_SQUOTE] = ACTIONS(2607), - [anon_sym_u8_SQUOTE] = ACTIONS(2607), - [anon_sym_SQUOTE] = ACTIONS(2607), - [anon_sym_L_DQUOTE] = ACTIONS(2607), - [anon_sym_u_DQUOTE] = ACTIONS(2607), - [anon_sym_U_DQUOTE] = ACTIONS(2607), - [anon_sym_u8_DQUOTE] = ACTIONS(2607), - [anon_sym_DQUOTE] = ACTIONS(2607), - [sym_true] = ACTIONS(2605), - [sym_false] = ACTIONS(2605), - [sym_null] = ACTIONS(2605), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2605), - [anon_sym_decltype] = ACTIONS(2605), - [anon_sym_virtual] = ACTIONS(2605), - [anon_sym_explicit] = ACTIONS(2605), - [anon_sym_typename] = ACTIONS(2605), - [anon_sym_template] = ACTIONS(2605), - [anon_sym_operator] = ACTIONS(2605), - [anon_sym_try] = ACTIONS(2605), - [anon_sym_delete] = ACTIONS(2605), - [anon_sym_throw] = ACTIONS(2605), - [anon_sym_namespace] = ACTIONS(2605), - [anon_sym_using] = ACTIONS(2605), - [anon_sym_static_assert] = ACTIONS(2605), - [anon_sym_concept] = ACTIONS(2605), - [anon_sym_co_return] = ACTIONS(2605), - [anon_sym_co_yield] = ACTIONS(2605), - [anon_sym_co_await] = ACTIONS(2605), - [anon_sym_new] = ACTIONS(2605), - [anon_sym_requires] = ACTIONS(2605), - [sym_this] = ACTIONS(2605), - [sym_nullptr] = ACTIONS(2605), - [sym_raw_string_literal] = ACTIONS(2607), - }, - [469] = { - [sym_identifier] = ACTIONS(2609), - [aux_sym_preproc_include_token1] = ACTIONS(2609), - [aux_sym_preproc_def_token1] = ACTIONS(2609), - [aux_sym_preproc_if_token1] = ACTIONS(2609), - [aux_sym_preproc_if_token2] = ACTIONS(2609), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2609), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2609), - [aux_sym_preproc_else_token1] = ACTIONS(2609), - [aux_sym_preproc_elif_token1] = ACTIONS(2609), - [sym_preproc_directive] = ACTIONS(2609), - [anon_sym_LPAREN2] = ACTIONS(2611), - [anon_sym_BANG] = ACTIONS(2611), - [anon_sym_TILDE] = ACTIONS(2611), - [anon_sym_DASH] = ACTIONS(2609), - [anon_sym_PLUS] = ACTIONS(2609), - [anon_sym_STAR] = ACTIONS(2611), - [anon_sym_AMP_AMP] = ACTIONS(2611), - [anon_sym_AMP] = ACTIONS(2609), - [anon_sym_SEMI] = ACTIONS(2611), - [anon_sym_typedef] = ACTIONS(2609), - [anon_sym_extern] = ACTIONS(2609), - [anon_sym___attribute__] = ACTIONS(2609), - [anon_sym_COLON_COLON] = ACTIONS(2611), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2611), - [anon_sym___declspec] = ACTIONS(2609), - [anon_sym___based] = ACTIONS(2609), - [anon_sym___cdecl] = ACTIONS(2609), - [anon_sym___clrcall] = ACTIONS(2609), - [anon_sym___stdcall] = ACTIONS(2609), - [anon_sym___fastcall] = ACTIONS(2609), - [anon_sym___thiscall] = ACTIONS(2609), - [anon_sym___vectorcall] = ACTIONS(2609), - [anon_sym_LBRACE] = ACTIONS(2611), - [anon_sym_LBRACK] = ACTIONS(2609), - [anon_sym_static] = ACTIONS(2609), - [anon_sym_register] = ACTIONS(2609), - [anon_sym_inline] = ACTIONS(2609), - [anon_sym_thread_local] = ACTIONS(2609), - [anon_sym_const] = ACTIONS(2609), - [anon_sym_volatile] = ACTIONS(2609), - [anon_sym_restrict] = ACTIONS(2609), - [anon_sym__Atomic] = ACTIONS(2609), - [anon_sym_mutable] = ACTIONS(2609), - [anon_sym_constexpr] = ACTIONS(2609), - [anon_sym_constinit] = ACTIONS(2609), - [anon_sym_consteval] = ACTIONS(2609), - [anon_sym_signed] = ACTIONS(2609), - [anon_sym_unsigned] = ACTIONS(2609), - [anon_sym_long] = ACTIONS(2609), - [anon_sym_short] = ACTIONS(2609), - [sym_primitive_type] = ACTIONS(2609), - [anon_sym_enum] = ACTIONS(2609), - [anon_sym_class] = ACTIONS(2609), - [anon_sym_struct] = ACTIONS(2609), - [anon_sym_union] = ACTIONS(2609), - [anon_sym_if] = ACTIONS(2609), - [anon_sym_switch] = ACTIONS(2609), - [anon_sym_case] = ACTIONS(2609), - [anon_sym_default] = ACTIONS(2609), - [anon_sym_while] = ACTIONS(2609), - [anon_sym_do] = ACTIONS(2609), - [anon_sym_for] = ACTIONS(2609), - [anon_sym_return] = ACTIONS(2609), - [anon_sym_break] = ACTIONS(2609), - [anon_sym_continue] = ACTIONS(2609), - [anon_sym_goto] = ACTIONS(2609), - [anon_sym_DASH_DASH] = ACTIONS(2611), - [anon_sym_PLUS_PLUS] = ACTIONS(2611), - [anon_sym_sizeof] = ACTIONS(2609), - [sym_number_literal] = ACTIONS(2611), - [anon_sym_L_SQUOTE] = ACTIONS(2611), - [anon_sym_u_SQUOTE] = ACTIONS(2611), - [anon_sym_U_SQUOTE] = ACTIONS(2611), - [anon_sym_u8_SQUOTE] = ACTIONS(2611), - [anon_sym_SQUOTE] = ACTIONS(2611), - [anon_sym_L_DQUOTE] = ACTIONS(2611), - [anon_sym_u_DQUOTE] = ACTIONS(2611), - [anon_sym_U_DQUOTE] = ACTIONS(2611), - [anon_sym_u8_DQUOTE] = ACTIONS(2611), - [anon_sym_DQUOTE] = ACTIONS(2611), - [sym_true] = ACTIONS(2609), - [sym_false] = ACTIONS(2609), - [sym_null] = ACTIONS(2609), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2609), - [anon_sym_decltype] = ACTIONS(2609), - [anon_sym_virtual] = ACTIONS(2609), - [anon_sym_explicit] = ACTIONS(2609), - [anon_sym_typename] = ACTIONS(2609), - [anon_sym_template] = ACTIONS(2609), - [anon_sym_operator] = ACTIONS(2609), - [anon_sym_try] = ACTIONS(2609), - [anon_sym_delete] = ACTIONS(2609), - [anon_sym_throw] = ACTIONS(2609), - [anon_sym_namespace] = ACTIONS(2609), - [anon_sym_using] = ACTIONS(2609), - [anon_sym_static_assert] = ACTIONS(2609), - [anon_sym_concept] = ACTIONS(2609), - [anon_sym_co_return] = ACTIONS(2609), - [anon_sym_co_yield] = ACTIONS(2609), - [anon_sym_co_await] = ACTIONS(2609), - [anon_sym_new] = ACTIONS(2609), - [anon_sym_requires] = ACTIONS(2609), - [sym_this] = ACTIONS(2609), - [sym_nullptr] = ACTIONS(2609), - [sym_raw_string_literal] = ACTIONS(2611), - }, - [470] = { - [sym_identifier] = ACTIONS(2613), - [aux_sym_preproc_include_token1] = ACTIONS(2613), - [aux_sym_preproc_def_token1] = ACTIONS(2613), - [aux_sym_preproc_if_token1] = ACTIONS(2613), - [aux_sym_preproc_if_token2] = ACTIONS(2613), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2613), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2613), - [aux_sym_preproc_else_token1] = ACTIONS(2613), - [aux_sym_preproc_elif_token1] = ACTIONS(2613), - [sym_preproc_directive] = ACTIONS(2613), - [anon_sym_LPAREN2] = ACTIONS(2615), - [anon_sym_BANG] = ACTIONS(2615), - [anon_sym_TILDE] = ACTIONS(2615), - [anon_sym_DASH] = ACTIONS(2613), - [anon_sym_PLUS] = ACTIONS(2613), - [anon_sym_STAR] = ACTIONS(2615), - [anon_sym_AMP_AMP] = ACTIONS(2615), - [anon_sym_AMP] = ACTIONS(2613), - [anon_sym_SEMI] = ACTIONS(2615), - [anon_sym_typedef] = ACTIONS(2613), - [anon_sym_extern] = ACTIONS(2613), - [anon_sym___attribute__] = ACTIONS(2613), - [anon_sym_COLON_COLON] = ACTIONS(2615), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2615), - [anon_sym___declspec] = ACTIONS(2613), - [anon_sym___based] = ACTIONS(2613), - [anon_sym___cdecl] = ACTIONS(2613), - [anon_sym___clrcall] = ACTIONS(2613), - [anon_sym___stdcall] = ACTIONS(2613), - [anon_sym___fastcall] = ACTIONS(2613), - [anon_sym___thiscall] = ACTIONS(2613), - [anon_sym___vectorcall] = ACTIONS(2613), - [anon_sym_LBRACE] = ACTIONS(2615), - [anon_sym_LBRACK] = ACTIONS(2613), - [anon_sym_static] = ACTIONS(2613), - [anon_sym_register] = ACTIONS(2613), - [anon_sym_inline] = ACTIONS(2613), - [anon_sym_thread_local] = ACTIONS(2613), - [anon_sym_const] = ACTIONS(2613), - [anon_sym_volatile] = ACTIONS(2613), - [anon_sym_restrict] = ACTIONS(2613), - [anon_sym__Atomic] = ACTIONS(2613), - [anon_sym_mutable] = ACTIONS(2613), - [anon_sym_constexpr] = ACTIONS(2613), - [anon_sym_constinit] = ACTIONS(2613), - [anon_sym_consteval] = ACTIONS(2613), - [anon_sym_signed] = ACTIONS(2613), - [anon_sym_unsigned] = ACTIONS(2613), - [anon_sym_long] = ACTIONS(2613), - [anon_sym_short] = ACTIONS(2613), - [sym_primitive_type] = ACTIONS(2613), - [anon_sym_enum] = ACTIONS(2613), - [anon_sym_class] = ACTIONS(2613), - [anon_sym_struct] = ACTIONS(2613), - [anon_sym_union] = ACTIONS(2613), - [anon_sym_if] = ACTIONS(2613), - [anon_sym_switch] = ACTIONS(2613), - [anon_sym_case] = ACTIONS(2613), - [anon_sym_default] = ACTIONS(2613), - [anon_sym_while] = ACTIONS(2613), - [anon_sym_do] = ACTIONS(2613), - [anon_sym_for] = ACTIONS(2613), - [anon_sym_return] = ACTIONS(2613), - [anon_sym_break] = ACTIONS(2613), - [anon_sym_continue] = ACTIONS(2613), - [anon_sym_goto] = ACTIONS(2613), - [anon_sym_DASH_DASH] = ACTIONS(2615), - [anon_sym_PLUS_PLUS] = ACTIONS(2615), - [anon_sym_sizeof] = ACTIONS(2613), - [sym_number_literal] = ACTIONS(2615), - [anon_sym_L_SQUOTE] = ACTIONS(2615), - [anon_sym_u_SQUOTE] = ACTIONS(2615), - [anon_sym_U_SQUOTE] = ACTIONS(2615), - [anon_sym_u8_SQUOTE] = ACTIONS(2615), - [anon_sym_SQUOTE] = ACTIONS(2615), - [anon_sym_L_DQUOTE] = ACTIONS(2615), - [anon_sym_u_DQUOTE] = ACTIONS(2615), - [anon_sym_U_DQUOTE] = ACTIONS(2615), - [anon_sym_u8_DQUOTE] = ACTIONS(2615), - [anon_sym_DQUOTE] = ACTIONS(2615), - [sym_true] = ACTIONS(2613), - [sym_false] = ACTIONS(2613), - [sym_null] = ACTIONS(2613), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2613), - [anon_sym_decltype] = ACTIONS(2613), - [anon_sym_virtual] = ACTIONS(2613), - [anon_sym_explicit] = ACTIONS(2613), - [anon_sym_typename] = ACTIONS(2613), - [anon_sym_template] = ACTIONS(2613), - [anon_sym_operator] = ACTIONS(2613), - [anon_sym_try] = ACTIONS(2613), - [anon_sym_delete] = ACTIONS(2613), - [anon_sym_throw] = ACTIONS(2613), - [anon_sym_namespace] = ACTIONS(2613), - [anon_sym_using] = ACTIONS(2613), - [anon_sym_static_assert] = ACTIONS(2613), - [anon_sym_concept] = ACTIONS(2613), - [anon_sym_co_return] = ACTIONS(2613), - [anon_sym_co_yield] = ACTIONS(2613), - [anon_sym_co_await] = ACTIONS(2613), - [anon_sym_new] = ACTIONS(2613), - [anon_sym_requires] = ACTIONS(2613), - [sym_this] = ACTIONS(2613), - [sym_nullptr] = ACTIONS(2613), - [sym_raw_string_literal] = ACTIONS(2615), - }, - [471] = { - [sym_identifier] = ACTIONS(2617), - [aux_sym_preproc_include_token1] = ACTIONS(2617), - [aux_sym_preproc_def_token1] = ACTIONS(2617), - [aux_sym_preproc_if_token1] = ACTIONS(2617), - [aux_sym_preproc_if_token2] = ACTIONS(2617), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2617), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2617), - [aux_sym_preproc_else_token1] = ACTIONS(2617), - [aux_sym_preproc_elif_token1] = ACTIONS(2617), - [sym_preproc_directive] = ACTIONS(2617), - [anon_sym_LPAREN2] = ACTIONS(2619), - [anon_sym_BANG] = ACTIONS(2619), - [anon_sym_TILDE] = ACTIONS(2619), - [anon_sym_DASH] = ACTIONS(2617), - [anon_sym_PLUS] = ACTIONS(2617), - [anon_sym_STAR] = ACTIONS(2619), - [anon_sym_AMP_AMP] = ACTIONS(2619), - [anon_sym_AMP] = ACTIONS(2617), - [anon_sym_SEMI] = ACTIONS(2619), - [anon_sym_typedef] = ACTIONS(2617), - [anon_sym_extern] = ACTIONS(2617), - [anon_sym___attribute__] = ACTIONS(2617), - [anon_sym_COLON_COLON] = ACTIONS(2619), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2619), - [anon_sym___declspec] = ACTIONS(2617), - [anon_sym___based] = ACTIONS(2617), - [anon_sym___cdecl] = ACTIONS(2617), - [anon_sym___clrcall] = ACTIONS(2617), - [anon_sym___stdcall] = ACTIONS(2617), - [anon_sym___fastcall] = ACTIONS(2617), - [anon_sym___thiscall] = ACTIONS(2617), - [anon_sym___vectorcall] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2619), - [anon_sym_LBRACK] = ACTIONS(2617), - [anon_sym_static] = ACTIONS(2617), - [anon_sym_register] = ACTIONS(2617), - [anon_sym_inline] = ACTIONS(2617), - [anon_sym_thread_local] = ACTIONS(2617), - [anon_sym_const] = ACTIONS(2617), - [anon_sym_volatile] = ACTIONS(2617), - [anon_sym_restrict] = ACTIONS(2617), - [anon_sym__Atomic] = ACTIONS(2617), - [anon_sym_mutable] = ACTIONS(2617), - [anon_sym_constexpr] = ACTIONS(2617), - [anon_sym_constinit] = ACTIONS(2617), - [anon_sym_consteval] = ACTIONS(2617), - [anon_sym_signed] = ACTIONS(2617), - [anon_sym_unsigned] = ACTIONS(2617), - [anon_sym_long] = ACTIONS(2617), - [anon_sym_short] = ACTIONS(2617), - [sym_primitive_type] = ACTIONS(2617), - [anon_sym_enum] = ACTIONS(2617), - [anon_sym_class] = ACTIONS(2617), - [anon_sym_struct] = ACTIONS(2617), - [anon_sym_union] = ACTIONS(2617), - [anon_sym_if] = ACTIONS(2617), - [anon_sym_switch] = ACTIONS(2617), - [anon_sym_case] = ACTIONS(2617), - [anon_sym_default] = ACTIONS(2617), - [anon_sym_while] = ACTIONS(2617), - [anon_sym_do] = ACTIONS(2617), - [anon_sym_for] = ACTIONS(2617), - [anon_sym_return] = ACTIONS(2617), - [anon_sym_break] = ACTIONS(2617), - [anon_sym_continue] = ACTIONS(2617), - [anon_sym_goto] = ACTIONS(2617), - [anon_sym_DASH_DASH] = ACTIONS(2619), - [anon_sym_PLUS_PLUS] = ACTIONS(2619), - [anon_sym_sizeof] = ACTIONS(2617), - [sym_number_literal] = ACTIONS(2619), - [anon_sym_L_SQUOTE] = ACTIONS(2619), - [anon_sym_u_SQUOTE] = ACTIONS(2619), - [anon_sym_U_SQUOTE] = ACTIONS(2619), - [anon_sym_u8_SQUOTE] = ACTIONS(2619), - [anon_sym_SQUOTE] = ACTIONS(2619), - [anon_sym_L_DQUOTE] = ACTIONS(2619), - [anon_sym_u_DQUOTE] = ACTIONS(2619), - [anon_sym_U_DQUOTE] = ACTIONS(2619), - [anon_sym_u8_DQUOTE] = ACTIONS(2619), - [anon_sym_DQUOTE] = ACTIONS(2619), - [sym_true] = ACTIONS(2617), - [sym_false] = ACTIONS(2617), - [sym_null] = ACTIONS(2617), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2617), - [anon_sym_decltype] = ACTIONS(2617), - [anon_sym_virtual] = ACTIONS(2617), - [anon_sym_explicit] = ACTIONS(2617), - [anon_sym_typename] = ACTIONS(2617), - [anon_sym_template] = ACTIONS(2617), - [anon_sym_operator] = ACTIONS(2617), - [anon_sym_try] = ACTIONS(2617), - [anon_sym_delete] = ACTIONS(2617), - [anon_sym_throw] = ACTIONS(2617), - [anon_sym_namespace] = ACTIONS(2617), - [anon_sym_using] = ACTIONS(2617), - [anon_sym_static_assert] = ACTIONS(2617), - [anon_sym_concept] = ACTIONS(2617), - [anon_sym_co_return] = ACTIONS(2617), - [anon_sym_co_yield] = ACTIONS(2617), - [anon_sym_co_await] = ACTIONS(2617), - [anon_sym_new] = ACTIONS(2617), - [anon_sym_requires] = ACTIONS(2617), - [sym_this] = ACTIONS(2617), - [sym_nullptr] = ACTIONS(2617), - [sym_raw_string_literal] = ACTIONS(2619), - }, - [472] = { - [sym_identifier] = ACTIONS(2621), - [aux_sym_preproc_include_token1] = ACTIONS(2621), - [aux_sym_preproc_def_token1] = ACTIONS(2621), - [aux_sym_preproc_if_token1] = ACTIONS(2621), - [aux_sym_preproc_if_token2] = ACTIONS(2621), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2621), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2621), - [aux_sym_preproc_else_token1] = ACTIONS(2621), - [aux_sym_preproc_elif_token1] = ACTIONS(2621), - [sym_preproc_directive] = ACTIONS(2621), - [anon_sym_LPAREN2] = ACTIONS(2623), - [anon_sym_BANG] = ACTIONS(2623), - [anon_sym_TILDE] = ACTIONS(2623), - [anon_sym_DASH] = ACTIONS(2621), - [anon_sym_PLUS] = ACTIONS(2621), - [anon_sym_STAR] = ACTIONS(2623), - [anon_sym_AMP_AMP] = ACTIONS(2623), - [anon_sym_AMP] = ACTIONS(2621), - [anon_sym_SEMI] = ACTIONS(2623), - [anon_sym_typedef] = ACTIONS(2621), - [anon_sym_extern] = ACTIONS(2621), - [anon_sym___attribute__] = ACTIONS(2621), - [anon_sym_COLON_COLON] = ACTIONS(2623), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2623), - [anon_sym___declspec] = ACTIONS(2621), - [anon_sym___based] = ACTIONS(2621), - [anon_sym___cdecl] = ACTIONS(2621), - [anon_sym___clrcall] = ACTIONS(2621), - [anon_sym___stdcall] = ACTIONS(2621), - [anon_sym___fastcall] = ACTIONS(2621), - [anon_sym___thiscall] = ACTIONS(2621), - [anon_sym___vectorcall] = ACTIONS(2621), - [anon_sym_LBRACE] = ACTIONS(2623), - [anon_sym_LBRACK] = ACTIONS(2621), - [anon_sym_static] = ACTIONS(2621), - [anon_sym_register] = ACTIONS(2621), - [anon_sym_inline] = ACTIONS(2621), - [anon_sym_thread_local] = ACTIONS(2621), - [anon_sym_const] = ACTIONS(2621), - [anon_sym_volatile] = ACTIONS(2621), - [anon_sym_restrict] = ACTIONS(2621), - [anon_sym__Atomic] = ACTIONS(2621), - [anon_sym_mutable] = ACTIONS(2621), - [anon_sym_constexpr] = ACTIONS(2621), - [anon_sym_constinit] = ACTIONS(2621), - [anon_sym_consteval] = ACTIONS(2621), - [anon_sym_signed] = ACTIONS(2621), - [anon_sym_unsigned] = ACTIONS(2621), - [anon_sym_long] = ACTIONS(2621), - [anon_sym_short] = ACTIONS(2621), - [sym_primitive_type] = ACTIONS(2621), - [anon_sym_enum] = ACTIONS(2621), - [anon_sym_class] = ACTIONS(2621), - [anon_sym_struct] = ACTIONS(2621), - [anon_sym_union] = ACTIONS(2621), - [anon_sym_if] = ACTIONS(2621), - [anon_sym_switch] = ACTIONS(2621), - [anon_sym_case] = ACTIONS(2621), - [anon_sym_default] = ACTIONS(2621), - [anon_sym_while] = ACTIONS(2621), - [anon_sym_do] = ACTIONS(2621), - [anon_sym_for] = ACTIONS(2621), - [anon_sym_return] = ACTIONS(2621), - [anon_sym_break] = ACTIONS(2621), - [anon_sym_continue] = ACTIONS(2621), - [anon_sym_goto] = ACTIONS(2621), - [anon_sym_DASH_DASH] = ACTIONS(2623), - [anon_sym_PLUS_PLUS] = ACTIONS(2623), - [anon_sym_sizeof] = ACTIONS(2621), - [sym_number_literal] = ACTIONS(2623), - [anon_sym_L_SQUOTE] = ACTIONS(2623), - [anon_sym_u_SQUOTE] = ACTIONS(2623), - [anon_sym_U_SQUOTE] = ACTIONS(2623), - [anon_sym_u8_SQUOTE] = ACTIONS(2623), - [anon_sym_SQUOTE] = ACTIONS(2623), - [anon_sym_L_DQUOTE] = ACTIONS(2623), - [anon_sym_u_DQUOTE] = ACTIONS(2623), - [anon_sym_U_DQUOTE] = ACTIONS(2623), - [anon_sym_u8_DQUOTE] = ACTIONS(2623), - [anon_sym_DQUOTE] = ACTIONS(2623), - [sym_true] = ACTIONS(2621), - [sym_false] = ACTIONS(2621), - [sym_null] = ACTIONS(2621), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2621), - [anon_sym_decltype] = ACTIONS(2621), - [anon_sym_virtual] = ACTIONS(2621), - [anon_sym_explicit] = ACTIONS(2621), - [anon_sym_typename] = ACTIONS(2621), - [anon_sym_template] = ACTIONS(2621), - [anon_sym_operator] = ACTIONS(2621), - [anon_sym_try] = ACTIONS(2621), - [anon_sym_delete] = ACTIONS(2621), - [anon_sym_throw] = ACTIONS(2621), - [anon_sym_namespace] = ACTIONS(2621), - [anon_sym_using] = ACTIONS(2621), - [anon_sym_static_assert] = ACTIONS(2621), - [anon_sym_concept] = ACTIONS(2621), - [anon_sym_co_return] = ACTIONS(2621), - [anon_sym_co_yield] = ACTIONS(2621), - [anon_sym_co_await] = ACTIONS(2621), - [anon_sym_new] = ACTIONS(2621), - [anon_sym_requires] = ACTIONS(2621), - [sym_this] = ACTIONS(2621), - [sym_nullptr] = ACTIONS(2621), - [sym_raw_string_literal] = ACTIONS(2623), - }, - [473] = { - [sym_identifier] = ACTIONS(2625), - [aux_sym_preproc_include_token1] = ACTIONS(2625), - [aux_sym_preproc_def_token1] = ACTIONS(2625), - [aux_sym_preproc_if_token1] = ACTIONS(2625), - [aux_sym_preproc_if_token2] = ACTIONS(2625), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2625), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2625), - [aux_sym_preproc_else_token1] = ACTIONS(2625), - [aux_sym_preproc_elif_token1] = ACTIONS(2625), - [sym_preproc_directive] = ACTIONS(2625), - [anon_sym_LPAREN2] = ACTIONS(2627), - [anon_sym_BANG] = ACTIONS(2627), - [anon_sym_TILDE] = ACTIONS(2627), - [anon_sym_DASH] = ACTIONS(2625), - [anon_sym_PLUS] = ACTIONS(2625), - [anon_sym_STAR] = ACTIONS(2627), - [anon_sym_AMP_AMP] = ACTIONS(2627), - [anon_sym_AMP] = ACTIONS(2625), - [anon_sym_SEMI] = ACTIONS(2627), - [anon_sym_typedef] = ACTIONS(2625), - [anon_sym_extern] = ACTIONS(2625), - [anon_sym___attribute__] = ACTIONS(2625), - [anon_sym_COLON_COLON] = ACTIONS(2627), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2627), - [anon_sym___declspec] = ACTIONS(2625), - [anon_sym___based] = ACTIONS(2625), - [anon_sym___cdecl] = ACTIONS(2625), - [anon_sym___clrcall] = ACTIONS(2625), - [anon_sym___stdcall] = ACTIONS(2625), - [anon_sym___fastcall] = ACTIONS(2625), - [anon_sym___thiscall] = ACTIONS(2625), - [anon_sym___vectorcall] = ACTIONS(2625), - [anon_sym_LBRACE] = ACTIONS(2627), - [anon_sym_LBRACK] = ACTIONS(2625), - [anon_sym_static] = ACTIONS(2625), - [anon_sym_register] = ACTIONS(2625), - [anon_sym_inline] = ACTIONS(2625), - [anon_sym_thread_local] = ACTIONS(2625), - [anon_sym_const] = ACTIONS(2625), - [anon_sym_volatile] = ACTIONS(2625), - [anon_sym_restrict] = ACTIONS(2625), - [anon_sym__Atomic] = ACTIONS(2625), - [anon_sym_mutable] = ACTIONS(2625), - [anon_sym_constexpr] = ACTIONS(2625), - [anon_sym_constinit] = ACTIONS(2625), - [anon_sym_consteval] = ACTIONS(2625), - [anon_sym_signed] = ACTIONS(2625), - [anon_sym_unsigned] = ACTIONS(2625), - [anon_sym_long] = ACTIONS(2625), - [anon_sym_short] = ACTIONS(2625), - [sym_primitive_type] = ACTIONS(2625), - [anon_sym_enum] = ACTIONS(2625), - [anon_sym_class] = ACTIONS(2625), - [anon_sym_struct] = ACTIONS(2625), - [anon_sym_union] = ACTIONS(2625), - [anon_sym_if] = ACTIONS(2625), - [anon_sym_switch] = ACTIONS(2625), - [anon_sym_case] = ACTIONS(2625), - [anon_sym_default] = ACTIONS(2625), - [anon_sym_while] = ACTIONS(2625), - [anon_sym_do] = ACTIONS(2625), - [anon_sym_for] = ACTIONS(2625), - [anon_sym_return] = ACTIONS(2625), - [anon_sym_break] = ACTIONS(2625), - [anon_sym_continue] = ACTIONS(2625), - [anon_sym_goto] = ACTIONS(2625), - [anon_sym_DASH_DASH] = ACTIONS(2627), - [anon_sym_PLUS_PLUS] = ACTIONS(2627), - [anon_sym_sizeof] = ACTIONS(2625), - [sym_number_literal] = ACTIONS(2627), - [anon_sym_L_SQUOTE] = ACTIONS(2627), - [anon_sym_u_SQUOTE] = ACTIONS(2627), - [anon_sym_U_SQUOTE] = ACTIONS(2627), - [anon_sym_u8_SQUOTE] = ACTIONS(2627), - [anon_sym_SQUOTE] = ACTIONS(2627), - [anon_sym_L_DQUOTE] = ACTIONS(2627), - [anon_sym_u_DQUOTE] = ACTIONS(2627), - [anon_sym_U_DQUOTE] = ACTIONS(2627), - [anon_sym_u8_DQUOTE] = ACTIONS(2627), - [anon_sym_DQUOTE] = ACTIONS(2627), - [sym_true] = ACTIONS(2625), - [sym_false] = ACTIONS(2625), - [sym_null] = ACTIONS(2625), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2625), - [anon_sym_decltype] = ACTIONS(2625), - [anon_sym_virtual] = ACTIONS(2625), - [anon_sym_explicit] = ACTIONS(2625), - [anon_sym_typename] = ACTIONS(2625), - [anon_sym_template] = ACTIONS(2625), - [anon_sym_operator] = ACTIONS(2625), - [anon_sym_try] = ACTIONS(2625), - [anon_sym_delete] = ACTIONS(2625), - [anon_sym_throw] = ACTIONS(2625), - [anon_sym_namespace] = ACTIONS(2625), - [anon_sym_using] = ACTIONS(2625), - [anon_sym_static_assert] = ACTIONS(2625), - [anon_sym_concept] = ACTIONS(2625), - [anon_sym_co_return] = ACTIONS(2625), - [anon_sym_co_yield] = ACTIONS(2625), - [anon_sym_co_await] = ACTIONS(2625), - [anon_sym_new] = ACTIONS(2625), - [anon_sym_requires] = ACTIONS(2625), - [sym_this] = ACTIONS(2625), - [sym_nullptr] = ACTIONS(2625), - [sym_raw_string_literal] = ACTIONS(2627), - }, - [474] = { - [sym_identifier] = ACTIONS(2302), - [aux_sym_preproc_include_token1] = ACTIONS(2302), - [aux_sym_preproc_def_token1] = ACTIONS(2302), - [aux_sym_preproc_if_token1] = ACTIONS(2302), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2302), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2302), - [sym_preproc_directive] = ACTIONS(2302), - [anon_sym_LPAREN2] = ACTIONS(2304), - [anon_sym_BANG] = ACTIONS(2304), - [anon_sym_TILDE] = ACTIONS(2304), - [anon_sym_DASH] = ACTIONS(2302), - [anon_sym_PLUS] = ACTIONS(2302), - [anon_sym_STAR] = ACTIONS(2304), - [anon_sym_AMP_AMP] = ACTIONS(2304), - [anon_sym_AMP] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(2304), - [anon_sym_typedef] = ACTIONS(2302), - [anon_sym_extern] = ACTIONS(2302), - [anon_sym___attribute__] = ACTIONS(2302), - [anon_sym_COLON_COLON] = ACTIONS(2304), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2304), - [anon_sym___declspec] = ACTIONS(2302), - [anon_sym___based] = ACTIONS(2302), - [anon_sym___cdecl] = ACTIONS(2302), - [anon_sym___clrcall] = ACTIONS(2302), - [anon_sym___stdcall] = ACTIONS(2302), - [anon_sym___fastcall] = ACTIONS(2302), - [anon_sym___thiscall] = ACTIONS(2302), - [anon_sym___vectorcall] = ACTIONS(2302), - [anon_sym_LBRACE] = ACTIONS(2304), - [anon_sym_RBRACE] = ACTIONS(2304), - [anon_sym_LBRACK] = ACTIONS(2302), - [anon_sym_static] = ACTIONS(2302), - [anon_sym_register] = ACTIONS(2302), - [anon_sym_inline] = ACTIONS(2302), - [anon_sym_thread_local] = ACTIONS(2302), - [anon_sym_const] = ACTIONS(2302), - [anon_sym_volatile] = ACTIONS(2302), - [anon_sym_restrict] = ACTIONS(2302), - [anon_sym__Atomic] = ACTIONS(2302), - [anon_sym_mutable] = ACTIONS(2302), - [anon_sym_constexpr] = ACTIONS(2302), - [anon_sym_constinit] = ACTIONS(2302), - [anon_sym_consteval] = ACTIONS(2302), - [anon_sym_signed] = ACTIONS(2302), - [anon_sym_unsigned] = ACTIONS(2302), - [anon_sym_long] = ACTIONS(2302), - [anon_sym_short] = ACTIONS(2302), - [sym_primitive_type] = ACTIONS(2302), - [anon_sym_enum] = ACTIONS(2302), - [anon_sym_class] = ACTIONS(2302), - [anon_sym_struct] = ACTIONS(2302), - [anon_sym_union] = ACTIONS(2302), - [anon_sym_if] = ACTIONS(2302), - [anon_sym_else] = ACTIONS(2302), - [anon_sym_switch] = ACTIONS(2302), - [anon_sym_case] = ACTIONS(2302), - [anon_sym_default] = ACTIONS(2302), - [anon_sym_while] = ACTIONS(2302), - [anon_sym_do] = ACTIONS(2302), - [anon_sym_for] = ACTIONS(2302), - [anon_sym_return] = ACTIONS(2302), - [anon_sym_break] = ACTIONS(2302), - [anon_sym_continue] = ACTIONS(2302), - [anon_sym_goto] = ACTIONS(2302), - [anon_sym_DASH_DASH] = ACTIONS(2304), - [anon_sym_PLUS_PLUS] = ACTIONS(2304), - [anon_sym_sizeof] = ACTIONS(2302), - [sym_number_literal] = ACTIONS(2304), - [anon_sym_L_SQUOTE] = ACTIONS(2304), - [anon_sym_u_SQUOTE] = ACTIONS(2304), - [anon_sym_U_SQUOTE] = ACTIONS(2304), - [anon_sym_u8_SQUOTE] = ACTIONS(2304), - [anon_sym_SQUOTE] = ACTIONS(2304), - [anon_sym_L_DQUOTE] = ACTIONS(2304), - [anon_sym_u_DQUOTE] = ACTIONS(2304), - [anon_sym_U_DQUOTE] = ACTIONS(2304), - [anon_sym_u8_DQUOTE] = ACTIONS(2304), - [anon_sym_DQUOTE] = ACTIONS(2304), - [sym_true] = ACTIONS(2302), - [sym_false] = ACTIONS(2302), - [sym_null] = ACTIONS(2302), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2302), - [anon_sym_decltype] = ACTIONS(2302), - [anon_sym_virtual] = ACTIONS(2302), - [anon_sym_explicit] = ACTIONS(2302), - [anon_sym_typename] = ACTIONS(2302), - [anon_sym_template] = ACTIONS(2302), - [anon_sym_operator] = ACTIONS(2302), - [anon_sym_try] = ACTIONS(2302), - [anon_sym_delete] = ACTIONS(2302), - [anon_sym_throw] = ACTIONS(2302), - [anon_sym_namespace] = ACTIONS(2302), - [anon_sym_using] = ACTIONS(2302), - [anon_sym_static_assert] = ACTIONS(2302), - [anon_sym_concept] = ACTIONS(2302), - [anon_sym_co_return] = ACTIONS(2302), - [anon_sym_co_yield] = ACTIONS(2302), - [anon_sym_catch] = ACTIONS(2302), - [anon_sym_co_await] = ACTIONS(2302), - [anon_sym_new] = ACTIONS(2302), - [anon_sym_requires] = ACTIONS(2302), - [sym_this] = ACTIONS(2302), - [sym_nullptr] = ACTIONS(2302), - [sym_raw_string_literal] = ACTIONS(2304), - }, - [475] = { - [sym_identifier] = ACTIONS(2629), - [aux_sym_preproc_include_token1] = ACTIONS(2629), - [aux_sym_preproc_def_token1] = ACTIONS(2629), - [aux_sym_preproc_if_token1] = ACTIONS(2629), - [aux_sym_preproc_if_token2] = ACTIONS(2629), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2629), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2629), - [aux_sym_preproc_else_token1] = ACTIONS(2629), - [aux_sym_preproc_elif_token1] = ACTIONS(2629), - [sym_preproc_directive] = ACTIONS(2629), - [anon_sym_LPAREN2] = ACTIONS(2631), - [anon_sym_BANG] = ACTIONS(2631), - [anon_sym_TILDE] = ACTIONS(2631), - [anon_sym_DASH] = ACTIONS(2629), - [anon_sym_PLUS] = ACTIONS(2629), - [anon_sym_STAR] = ACTIONS(2631), - [anon_sym_AMP_AMP] = ACTIONS(2631), - [anon_sym_AMP] = ACTIONS(2629), - [anon_sym_SEMI] = ACTIONS(2631), - [anon_sym_typedef] = ACTIONS(2629), - [anon_sym_extern] = ACTIONS(2629), - [anon_sym___attribute__] = ACTIONS(2629), - [anon_sym_COLON_COLON] = ACTIONS(2631), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2631), - [anon_sym___declspec] = ACTIONS(2629), - [anon_sym___based] = ACTIONS(2629), - [anon_sym___cdecl] = ACTIONS(2629), - [anon_sym___clrcall] = ACTIONS(2629), - [anon_sym___stdcall] = ACTIONS(2629), - [anon_sym___fastcall] = ACTIONS(2629), - [anon_sym___thiscall] = ACTIONS(2629), - [anon_sym___vectorcall] = ACTIONS(2629), - [anon_sym_LBRACE] = ACTIONS(2631), - [anon_sym_LBRACK] = ACTIONS(2629), - [anon_sym_static] = ACTIONS(2629), - [anon_sym_register] = ACTIONS(2629), - [anon_sym_inline] = ACTIONS(2629), - [anon_sym_thread_local] = ACTIONS(2629), - [anon_sym_const] = ACTIONS(2629), - [anon_sym_volatile] = ACTIONS(2629), - [anon_sym_restrict] = ACTIONS(2629), - [anon_sym__Atomic] = ACTIONS(2629), - [anon_sym_mutable] = ACTIONS(2629), - [anon_sym_constexpr] = ACTIONS(2629), - [anon_sym_constinit] = ACTIONS(2629), - [anon_sym_consteval] = ACTIONS(2629), - [anon_sym_signed] = ACTIONS(2629), - [anon_sym_unsigned] = ACTIONS(2629), - [anon_sym_long] = ACTIONS(2629), - [anon_sym_short] = ACTIONS(2629), - [sym_primitive_type] = ACTIONS(2629), - [anon_sym_enum] = ACTIONS(2629), - [anon_sym_class] = ACTIONS(2629), - [anon_sym_struct] = ACTIONS(2629), - [anon_sym_union] = ACTIONS(2629), - [anon_sym_if] = ACTIONS(2629), - [anon_sym_switch] = ACTIONS(2629), - [anon_sym_case] = ACTIONS(2629), - [anon_sym_default] = ACTIONS(2629), - [anon_sym_while] = ACTIONS(2629), - [anon_sym_do] = ACTIONS(2629), - [anon_sym_for] = ACTIONS(2629), - [anon_sym_return] = ACTIONS(2629), - [anon_sym_break] = ACTIONS(2629), - [anon_sym_continue] = ACTIONS(2629), - [anon_sym_goto] = ACTIONS(2629), - [anon_sym_DASH_DASH] = ACTIONS(2631), - [anon_sym_PLUS_PLUS] = ACTIONS(2631), - [anon_sym_sizeof] = ACTIONS(2629), - [sym_number_literal] = ACTIONS(2631), - [anon_sym_L_SQUOTE] = ACTIONS(2631), - [anon_sym_u_SQUOTE] = ACTIONS(2631), - [anon_sym_U_SQUOTE] = ACTIONS(2631), - [anon_sym_u8_SQUOTE] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2631), - [anon_sym_L_DQUOTE] = ACTIONS(2631), - [anon_sym_u_DQUOTE] = ACTIONS(2631), - [anon_sym_U_DQUOTE] = ACTIONS(2631), - [anon_sym_u8_DQUOTE] = ACTIONS(2631), - [anon_sym_DQUOTE] = ACTIONS(2631), - [sym_true] = ACTIONS(2629), - [sym_false] = ACTIONS(2629), - [sym_null] = ACTIONS(2629), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2629), - [anon_sym_decltype] = ACTIONS(2629), - [anon_sym_virtual] = ACTIONS(2629), - [anon_sym_explicit] = ACTIONS(2629), - [anon_sym_typename] = ACTIONS(2629), - [anon_sym_template] = ACTIONS(2629), - [anon_sym_operator] = ACTIONS(2629), - [anon_sym_try] = ACTIONS(2629), - [anon_sym_delete] = ACTIONS(2629), - [anon_sym_throw] = ACTIONS(2629), - [anon_sym_namespace] = ACTIONS(2629), - [anon_sym_using] = ACTIONS(2629), - [anon_sym_static_assert] = ACTIONS(2629), - [anon_sym_concept] = ACTIONS(2629), - [anon_sym_co_return] = ACTIONS(2629), - [anon_sym_co_yield] = ACTIONS(2629), - [anon_sym_co_await] = ACTIONS(2629), - [anon_sym_new] = ACTIONS(2629), - [anon_sym_requires] = ACTIONS(2629), - [sym_this] = ACTIONS(2629), - [sym_nullptr] = ACTIONS(2629), - [sym_raw_string_literal] = ACTIONS(2631), - }, - [476] = { - [sym_identifier] = ACTIONS(2633), - [aux_sym_preproc_include_token1] = ACTIONS(2633), - [aux_sym_preproc_def_token1] = ACTIONS(2633), - [aux_sym_preproc_if_token1] = ACTIONS(2633), - [aux_sym_preproc_if_token2] = ACTIONS(2633), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2633), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2633), - [aux_sym_preproc_else_token1] = ACTIONS(2633), - [aux_sym_preproc_elif_token1] = ACTIONS(2633), - [sym_preproc_directive] = ACTIONS(2633), - [anon_sym_LPAREN2] = ACTIONS(2635), - [anon_sym_BANG] = ACTIONS(2635), - [anon_sym_TILDE] = ACTIONS(2635), - [anon_sym_DASH] = ACTIONS(2633), - [anon_sym_PLUS] = ACTIONS(2633), - [anon_sym_STAR] = ACTIONS(2635), - [anon_sym_AMP_AMP] = ACTIONS(2635), - [anon_sym_AMP] = ACTIONS(2633), - [anon_sym_SEMI] = ACTIONS(2635), - [anon_sym_typedef] = ACTIONS(2633), - [anon_sym_extern] = ACTIONS(2633), - [anon_sym___attribute__] = ACTIONS(2633), - [anon_sym_COLON_COLON] = ACTIONS(2635), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2635), - [anon_sym___declspec] = ACTIONS(2633), - [anon_sym___based] = ACTIONS(2633), - [anon_sym___cdecl] = ACTIONS(2633), - [anon_sym___clrcall] = ACTIONS(2633), - [anon_sym___stdcall] = ACTIONS(2633), - [anon_sym___fastcall] = ACTIONS(2633), - [anon_sym___thiscall] = ACTIONS(2633), - [anon_sym___vectorcall] = ACTIONS(2633), - [anon_sym_LBRACE] = ACTIONS(2635), - [anon_sym_LBRACK] = ACTIONS(2633), - [anon_sym_static] = ACTIONS(2633), - [anon_sym_register] = ACTIONS(2633), - [anon_sym_inline] = ACTIONS(2633), - [anon_sym_thread_local] = ACTIONS(2633), - [anon_sym_const] = ACTIONS(2633), - [anon_sym_volatile] = ACTIONS(2633), - [anon_sym_restrict] = ACTIONS(2633), - [anon_sym__Atomic] = ACTIONS(2633), - [anon_sym_mutable] = ACTIONS(2633), - [anon_sym_constexpr] = ACTIONS(2633), - [anon_sym_constinit] = ACTIONS(2633), - [anon_sym_consteval] = ACTIONS(2633), - [anon_sym_signed] = ACTIONS(2633), - [anon_sym_unsigned] = ACTIONS(2633), - [anon_sym_long] = ACTIONS(2633), - [anon_sym_short] = ACTIONS(2633), - [sym_primitive_type] = ACTIONS(2633), - [anon_sym_enum] = ACTIONS(2633), - [anon_sym_class] = ACTIONS(2633), - [anon_sym_struct] = ACTIONS(2633), - [anon_sym_union] = ACTIONS(2633), - [anon_sym_if] = ACTIONS(2633), - [anon_sym_switch] = ACTIONS(2633), - [anon_sym_case] = ACTIONS(2633), - [anon_sym_default] = ACTIONS(2633), - [anon_sym_while] = ACTIONS(2633), - [anon_sym_do] = ACTIONS(2633), - [anon_sym_for] = ACTIONS(2633), - [anon_sym_return] = ACTIONS(2633), - [anon_sym_break] = ACTIONS(2633), - [anon_sym_continue] = ACTIONS(2633), - [anon_sym_goto] = ACTIONS(2633), - [anon_sym_DASH_DASH] = ACTIONS(2635), - [anon_sym_PLUS_PLUS] = ACTIONS(2635), - [anon_sym_sizeof] = ACTIONS(2633), - [sym_number_literal] = ACTIONS(2635), - [anon_sym_L_SQUOTE] = ACTIONS(2635), - [anon_sym_u_SQUOTE] = ACTIONS(2635), - [anon_sym_U_SQUOTE] = ACTIONS(2635), - [anon_sym_u8_SQUOTE] = ACTIONS(2635), - [anon_sym_SQUOTE] = ACTIONS(2635), - [anon_sym_L_DQUOTE] = ACTIONS(2635), - [anon_sym_u_DQUOTE] = ACTIONS(2635), - [anon_sym_U_DQUOTE] = ACTIONS(2635), - [anon_sym_u8_DQUOTE] = ACTIONS(2635), - [anon_sym_DQUOTE] = ACTIONS(2635), - [sym_true] = ACTIONS(2633), - [sym_false] = ACTIONS(2633), - [sym_null] = ACTIONS(2633), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2633), - [anon_sym_decltype] = ACTIONS(2633), - [anon_sym_virtual] = ACTIONS(2633), - [anon_sym_explicit] = ACTIONS(2633), - [anon_sym_typename] = ACTIONS(2633), - [anon_sym_template] = ACTIONS(2633), - [anon_sym_operator] = ACTIONS(2633), - [anon_sym_try] = ACTIONS(2633), - [anon_sym_delete] = ACTIONS(2633), - [anon_sym_throw] = ACTIONS(2633), - [anon_sym_namespace] = ACTIONS(2633), - [anon_sym_using] = ACTIONS(2633), - [anon_sym_static_assert] = ACTIONS(2633), - [anon_sym_concept] = ACTIONS(2633), - [anon_sym_co_return] = ACTIONS(2633), - [anon_sym_co_yield] = ACTIONS(2633), - [anon_sym_co_await] = ACTIONS(2633), - [anon_sym_new] = ACTIONS(2633), - [anon_sym_requires] = ACTIONS(2633), - [sym_this] = ACTIONS(2633), - [sym_nullptr] = ACTIONS(2633), - [sym_raw_string_literal] = ACTIONS(2635), - }, - [477] = { - [sym_type_qualifier] = STATE(2979), - [sym__type_specifier] = STATE(3924), - [sym_sized_type_specifier] = STATE(2872), - [sym_enum_specifier] = STATE(2872), - [sym_struct_specifier] = STATE(2872), - [sym_union_specifier] = STATE(2872), - [sym__expression] = STATE(3552), - [sym_conditional_expression] = STATE(3881), - [sym_assignment_expression] = STATE(3881), - [sym_pointer_expression] = STATE(2977), - [sym_unary_expression] = STATE(3881), - [sym_binary_expression] = STATE(3881), - [sym_update_expression] = STATE(3881), - [sym_cast_expression] = STATE(3881), - [sym_type_descriptor] = STATE(5418), - [sym_sizeof_expression] = STATE(3881), - [sym_subscript_expression] = STATE(2977), - [sym_call_expression] = STATE(2977), - [sym_field_expression] = STATE(2977), - [sym_compound_literal_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(2977), - [sym_char_literal] = STATE(3701), - [sym_concatenated_string] = STATE(3701), - [sym_string_literal] = STATE(3219), - [sym_placeholder_type_specifier] = STATE(2872), - [sym_decltype_auto] = STATE(2878), - [sym_decltype] = STATE(2872), - [sym_class_specifier] = STATE(2872), - [sym__class_name] = STATE(6063), - [sym_dependent_type] = STATE(2872), - [sym_template_type] = STATE(4194), - [sym_template_function] = STATE(3881), - [sym_co_await_expression] = STATE(3881), - [sym_new_expression] = STATE(3881), - [sym_delete_expression] = STATE(3881), - [sym_requires_clause] = STATE(3881), - [sym_requires_expression] = STATE(3881), - [sym_lambda_expression] = STATE(3881), - [sym_lambda_capture_specifier] = STATE(4519), - [sym_fold_expression] = STATE(3881), - [sym_parameter_pack_expansion] = STATE(3881), - [sym_type_parameter_pack_expansion] = STATE(5620), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4633), - [sym_qualified_identifier] = STATE(2977), - [sym_qualified_type_identifier] = STATE(4305), - [sym_user_defined_literal] = STATE(3881), - [aux_sym_type_definition_repeat1] = STATE(2979), - [aux_sym_sized_type_specifier_repeat1] = STATE(2182), - [sym_identifier] = ACTIONS(2529), - [anon_sym_LPAREN2] = ACTIONS(2531), - [anon_sym_BANG] = ACTIONS(2533), - [anon_sym_TILDE] = ACTIONS(2533), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_STAR] = ACTIONS(2537), - [anon_sym_AMP] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(2539), - [anon_sym_LBRACK] = ACTIONS(2272), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(2541), - [anon_sym_unsigned] = ACTIONS(2541), - [anon_sym_long] = ACTIONS(2541), - [anon_sym_short] = ACTIONS(2541), - [sym_primitive_type] = ACTIONS(2543), - [anon_sym_enum] = ACTIONS(2545), - [anon_sym_class] = ACTIONS(2547), - [anon_sym_struct] = ACTIONS(2549), - [anon_sym_union] = ACTIONS(2551), - [anon_sym_DASH_DASH] = ACTIONS(2553), - [anon_sym_PLUS_PLUS] = ACTIONS(2553), - [anon_sym_sizeof] = ACTIONS(2555), - [sym_number_literal] = ACTIONS(2557), - [anon_sym_L_SQUOTE] = ACTIONS(2559), - [anon_sym_u_SQUOTE] = ACTIONS(2559), - [anon_sym_U_SQUOTE] = ACTIONS(2559), - [anon_sym_u8_SQUOTE] = ACTIONS(2559), - [anon_sym_SQUOTE] = ACTIONS(2559), - [anon_sym_L_DQUOTE] = ACTIONS(2561), - [anon_sym_u_DQUOTE] = ACTIONS(2561), - [anon_sym_U_DQUOTE] = ACTIONS(2561), - [anon_sym_u8_DQUOTE] = ACTIONS(2561), - [anon_sym_DQUOTE] = ACTIONS(2561), - [sym_true] = ACTIONS(2563), - [sym_false] = ACTIONS(2563), - [sym_null] = ACTIONS(2563), + [416] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token2] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [aux_sym_preproc_else_token1] = ACTIONS(2595), + [aux_sym_preproc_elif_token1] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2565), - [anon_sym_decltype] = ACTIONS(2567), - [anon_sym_typename] = ACTIONS(2569), - [anon_sym_template] = ACTIONS(972), - [anon_sym_GT2] = ACTIONS(2637), - [anon_sym_delete] = ACTIONS(2573), - [anon_sym_co_await] = ACTIONS(2575), - [anon_sym_new] = ACTIONS(2577), - [anon_sym_requires] = ACTIONS(2579), - [sym_this] = ACTIONS(2563), - [sym_nullptr] = ACTIONS(2563), - [sym_raw_string_literal] = ACTIONS(2581), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [478] = { - [sym_identifier] = ACTIONS(2639), - [aux_sym_preproc_include_token1] = ACTIONS(2639), - [aux_sym_preproc_def_token1] = ACTIONS(2639), - [aux_sym_preproc_if_token1] = ACTIONS(2639), - [aux_sym_preproc_if_token2] = ACTIONS(2639), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2639), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2639), - [aux_sym_preproc_else_token1] = ACTIONS(2639), - [aux_sym_preproc_elif_token1] = ACTIONS(2639), - [sym_preproc_directive] = ACTIONS(2639), - [anon_sym_LPAREN2] = ACTIONS(2641), - [anon_sym_BANG] = ACTIONS(2641), - [anon_sym_TILDE] = ACTIONS(2641), - [anon_sym_DASH] = ACTIONS(2639), - [anon_sym_PLUS] = ACTIONS(2639), - [anon_sym_STAR] = ACTIONS(2641), - [anon_sym_AMP_AMP] = ACTIONS(2641), - [anon_sym_AMP] = ACTIONS(2639), - [anon_sym_SEMI] = ACTIONS(2641), - [anon_sym_typedef] = ACTIONS(2639), - [anon_sym_extern] = ACTIONS(2639), - [anon_sym___attribute__] = ACTIONS(2639), - [anon_sym_COLON_COLON] = ACTIONS(2641), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2641), - [anon_sym___declspec] = ACTIONS(2639), - [anon_sym___based] = ACTIONS(2639), - [anon_sym___cdecl] = ACTIONS(2639), - [anon_sym___clrcall] = ACTIONS(2639), - [anon_sym___stdcall] = ACTIONS(2639), - [anon_sym___fastcall] = ACTIONS(2639), - [anon_sym___thiscall] = ACTIONS(2639), - [anon_sym___vectorcall] = ACTIONS(2639), - [anon_sym_LBRACE] = ACTIONS(2641), - [anon_sym_LBRACK] = ACTIONS(2639), - [anon_sym_static] = ACTIONS(2639), - [anon_sym_register] = ACTIONS(2639), - [anon_sym_inline] = ACTIONS(2639), - [anon_sym_thread_local] = ACTIONS(2639), - [anon_sym_const] = ACTIONS(2639), - [anon_sym_volatile] = ACTIONS(2639), - [anon_sym_restrict] = ACTIONS(2639), - [anon_sym__Atomic] = ACTIONS(2639), - [anon_sym_mutable] = ACTIONS(2639), - [anon_sym_constexpr] = ACTIONS(2639), - [anon_sym_constinit] = ACTIONS(2639), - [anon_sym_consteval] = ACTIONS(2639), - [anon_sym_signed] = ACTIONS(2639), - [anon_sym_unsigned] = ACTIONS(2639), - [anon_sym_long] = ACTIONS(2639), - [anon_sym_short] = ACTIONS(2639), - [sym_primitive_type] = ACTIONS(2639), - [anon_sym_enum] = ACTIONS(2639), - [anon_sym_class] = ACTIONS(2639), - [anon_sym_struct] = ACTIONS(2639), - [anon_sym_union] = ACTIONS(2639), - [anon_sym_if] = ACTIONS(2639), - [anon_sym_switch] = ACTIONS(2639), - [anon_sym_case] = ACTIONS(2639), - [anon_sym_default] = ACTIONS(2639), - [anon_sym_while] = ACTIONS(2639), - [anon_sym_do] = ACTIONS(2639), - [anon_sym_for] = ACTIONS(2639), - [anon_sym_return] = ACTIONS(2639), - [anon_sym_break] = ACTIONS(2639), - [anon_sym_continue] = ACTIONS(2639), - [anon_sym_goto] = ACTIONS(2639), - [anon_sym_DASH_DASH] = ACTIONS(2641), - [anon_sym_PLUS_PLUS] = ACTIONS(2641), - [anon_sym_sizeof] = ACTIONS(2639), - [sym_number_literal] = ACTIONS(2641), - [anon_sym_L_SQUOTE] = ACTIONS(2641), - [anon_sym_u_SQUOTE] = ACTIONS(2641), - [anon_sym_U_SQUOTE] = ACTIONS(2641), - [anon_sym_u8_SQUOTE] = ACTIONS(2641), - [anon_sym_SQUOTE] = ACTIONS(2641), - [anon_sym_L_DQUOTE] = ACTIONS(2641), - [anon_sym_u_DQUOTE] = ACTIONS(2641), - [anon_sym_U_DQUOTE] = ACTIONS(2641), - [anon_sym_u8_DQUOTE] = ACTIONS(2641), - [anon_sym_DQUOTE] = ACTIONS(2641), - [sym_true] = ACTIONS(2639), - [sym_false] = ACTIONS(2639), - [sym_null] = ACTIONS(2639), + [417] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token2] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [aux_sym_preproc_else_token1] = ACTIONS(2595), + [aux_sym_preproc_elif_token1] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2639), - [anon_sym_decltype] = ACTIONS(2639), - [anon_sym_virtual] = ACTIONS(2639), - [anon_sym_explicit] = ACTIONS(2639), - [anon_sym_typename] = ACTIONS(2639), - [anon_sym_template] = ACTIONS(2639), - [anon_sym_operator] = ACTIONS(2639), - [anon_sym_try] = ACTIONS(2639), - [anon_sym_delete] = ACTIONS(2639), - [anon_sym_throw] = ACTIONS(2639), - [anon_sym_namespace] = ACTIONS(2639), - [anon_sym_using] = ACTIONS(2639), - [anon_sym_static_assert] = ACTIONS(2639), - [anon_sym_concept] = ACTIONS(2639), - [anon_sym_co_return] = ACTIONS(2639), - [anon_sym_co_yield] = ACTIONS(2639), - [anon_sym_co_await] = ACTIONS(2639), - [anon_sym_new] = ACTIONS(2639), - [anon_sym_requires] = ACTIONS(2639), - [sym_this] = ACTIONS(2639), - [sym_nullptr] = ACTIONS(2639), - [sym_raw_string_literal] = ACTIONS(2641), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [479] = { - [sym_identifier] = ACTIONS(2643), - [aux_sym_preproc_include_token1] = ACTIONS(2643), - [aux_sym_preproc_def_token1] = ACTIONS(2643), - [aux_sym_preproc_if_token1] = ACTIONS(2643), - [aux_sym_preproc_if_token2] = ACTIONS(2643), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2643), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2643), - [aux_sym_preproc_else_token1] = ACTIONS(2643), - [aux_sym_preproc_elif_token1] = ACTIONS(2643), - [sym_preproc_directive] = ACTIONS(2643), - [anon_sym_LPAREN2] = ACTIONS(2645), - [anon_sym_BANG] = ACTIONS(2645), - [anon_sym_TILDE] = ACTIONS(2645), - [anon_sym_DASH] = ACTIONS(2643), - [anon_sym_PLUS] = ACTIONS(2643), - [anon_sym_STAR] = ACTIONS(2645), - [anon_sym_AMP_AMP] = ACTIONS(2645), - [anon_sym_AMP] = ACTIONS(2643), - [anon_sym_SEMI] = ACTIONS(2645), - [anon_sym_typedef] = ACTIONS(2643), - [anon_sym_extern] = ACTIONS(2643), - [anon_sym___attribute__] = ACTIONS(2643), - [anon_sym_COLON_COLON] = ACTIONS(2645), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2645), - [anon_sym___declspec] = ACTIONS(2643), - [anon_sym___based] = ACTIONS(2643), - [anon_sym___cdecl] = ACTIONS(2643), - [anon_sym___clrcall] = ACTIONS(2643), - [anon_sym___stdcall] = ACTIONS(2643), - [anon_sym___fastcall] = ACTIONS(2643), - [anon_sym___thiscall] = ACTIONS(2643), - [anon_sym___vectorcall] = ACTIONS(2643), - [anon_sym_LBRACE] = ACTIONS(2645), - [anon_sym_LBRACK] = ACTIONS(2643), - [anon_sym_static] = ACTIONS(2643), - [anon_sym_register] = ACTIONS(2643), - [anon_sym_inline] = ACTIONS(2643), - [anon_sym_thread_local] = ACTIONS(2643), - [anon_sym_const] = ACTIONS(2643), - [anon_sym_volatile] = ACTIONS(2643), - [anon_sym_restrict] = ACTIONS(2643), - [anon_sym__Atomic] = ACTIONS(2643), - [anon_sym_mutable] = ACTIONS(2643), - [anon_sym_constexpr] = ACTIONS(2643), - [anon_sym_constinit] = ACTIONS(2643), - [anon_sym_consteval] = ACTIONS(2643), - [anon_sym_signed] = ACTIONS(2643), - [anon_sym_unsigned] = ACTIONS(2643), - [anon_sym_long] = ACTIONS(2643), - [anon_sym_short] = ACTIONS(2643), - [sym_primitive_type] = ACTIONS(2643), - [anon_sym_enum] = ACTIONS(2643), - [anon_sym_class] = ACTIONS(2643), - [anon_sym_struct] = ACTIONS(2643), - [anon_sym_union] = ACTIONS(2643), - [anon_sym_if] = ACTIONS(2643), - [anon_sym_switch] = ACTIONS(2643), - [anon_sym_case] = ACTIONS(2643), - [anon_sym_default] = ACTIONS(2643), - [anon_sym_while] = ACTIONS(2643), - [anon_sym_do] = ACTIONS(2643), - [anon_sym_for] = ACTIONS(2643), - [anon_sym_return] = ACTIONS(2643), - [anon_sym_break] = ACTIONS(2643), - [anon_sym_continue] = ACTIONS(2643), - [anon_sym_goto] = ACTIONS(2643), - [anon_sym_DASH_DASH] = ACTIONS(2645), - [anon_sym_PLUS_PLUS] = ACTIONS(2645), - [anon_sym_sizeof] = ACTIONS(2643), - [sym_number_literal] = ACTIONS(2645), - [anon_sym_L_SQUOTE] = ACTIONS(2645), - [anon_sym_u_SQUOTE] = ACTIONS(2645), - [anon_sym_U_SQUOTE] = ACTIONS(2645), - [anon_sym_u8_SQUOTE] = ACTIONS(2645), - [anon_sym_SQUOTE] = ACTIONS(2645), - [anon_sym_L_DQUOTE] = ACTIONS(2645), - [anon_sym_u_DQUOTE] = ACTIONS(2645), - [anon_sym_U_DQUOTE] = ACTIONS(2645), - [anon_sym_u8_DQUOTE] = ACTIONS(2645), - [anon_sym_DQUOTE] = ACTIONS(2645), - [sym_true] = ACTIONS(2643), - [sym_false] = ACTIONS(2643), - [sym_null] = ACTIONS(2643), + [418] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token2] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [aux_sym_preproc_else_token1] = ACTIONS(2595), + [aux_sym_preproc_elif_token1] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2643), - [anon_sym_decltype] = ACTIONS(2643), - [anon_sym_virtual] = ACTIONS(2643), - [anon_sym_explicit] = ACTIONS(2643), - [anon_sym_typename] = ACTIONS(2643), - [anon_sym_template] = ACTIONS(2643), - [anon_sym_operator] = ACTIONS(2643), - [anon_sym_try] = ACTIONS(2643), - [anon_sym_delete] = ACTIONS(2643), - [anon_sym_throw] = ACTIONS(2643), - [anon_sym_namespace] = ACTIONS(2643), - [anon_sym_using] = ACTIONS(2643), - [anon_sym_static_assert] = ACTIONS(2643), - [anon_sym_concept] = ACTIONS(2643), - [anon_sym_co_return] = ACTIONS(2643), - [anon_sym_co_yield] = ACTIONS(2643), - [anon_sym_co_await] = ACTIONS(2643), - [anon_sym_new] = ACTIONS(2643), - [anon_sym_requires] = ACTIONS(2643), - [sym_this] = ACTIONS(2643), - [sym_nullptr] = ACTIONS(2643), - [sym_raw_string_literal] = ACTIONS(2645), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [480] = { - [sym_identifier] = ACTIONS(2647), - [aux_sym_preproc_include_token1] = ACTIONS(2647), - [aux_sym_preproc_def_token1] = ACTIONS(2647), - [aux_sym_preproc_if_token1] = ACTIONS(2647), - [aux_sym_preproc_if_token2] = ACTIONS(2647), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2647), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2647), - [aux_sym_preproc_else_token1] = ACTIONS(2647), - [aux_sym_preproc_elif_token1] = ACTIONS(2647), - [sym_preproc_directive] = ACTIONS(2647), - [anon_sym_LPAREN2] = ACTIONS(2649), - [anon_sym_BANG] = ACTIONS(2649), - [anon_sym_TILDE] = ACTIONS(2649), - [anon_sym_DASH] = ACTIONS(2647), - [anon_sym_PLUS] = ACTIONS(2647), - [anon_sym_STAR] = ACTIONS(2649), - [anon_sym_AMP_AMP] = ACTIONS(2649), - [anon_sym_AMP] = ACTIONS(2647), - [anon_sym_SEMI] = ACTIONS(2649), - [anon_sym_typedef] = ACTIONS(2647), - [anon_sym_extern] = ACTIONS(2647), - [anon_sym___attribute__] = ACTIONS(2647), - [anon_sym_COLON_COLON] = ACTIONS(2649), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2649), - [anon_sym___declspec] = ACTIONS(2647), - [anon_sym___based] = ACTIONS(2647), - [anon_sym___cdecl] = ACTIONS(2647), - [anon_sym___clrcall] = ACTIONS(2647), - [anon_sym___stdcall] = ACTIONS(2647), - [anon_sym___fastcall] = ACTIONS(2647), - [anon_sym___thiscall] = ACTIONS(2647), - [anon_sym___vectorcall] = ACTIONS(2647), - [anon_sym_LBRACE] = ACTIONS(2649), - [anon_sym_LBRACK] = ACTIONS(2647), - [anon_sym_static] = ACTIONS(2647), - [anon_sym_register] = ACTIONS(2647), - [anon_sym_inline] = ACTIONS(2647), - [anon_sym_thread_local] = ACTIONS(2647), - [anon_sym_const] = ACTIONS(2647), - [anon_sym_volatile] = ACTIONS(2647), - [anon_sym_restrict] = ACTIONS(2647), - [anon_sym__Atomic] = ACTIONS(2647), - [anon_sym_mutable] = ACTIONS(2647), - [anon_sym_constexpr] = ACTIONS(2647), - [anon_sym_constinit] = ACTIONS(2647), - [anon_sym_consteval] = ACTIONS(2647), - [anon_sym_signed] = ACTIONS(2647), - [anon_sym_unsigned] = ACTIONS(2647), - [anon_sym_long] = ACTIONS(2647), - [anon_sym_short] = ACTIONS(2647), - [sym_primitive_type] = ACTIONS(2647), - [anon_sym_enum] = ACTIONS(2647), - [anon_sym_class] = ACTIONS(2647), - [anon_sym_struct] = ACTIONS(2647), - [anon_sym_union] = ACTIONS(2647), - [anon_sym_if] = ACTIONS(2647), - [anon_sym_switch] = ACTIONS(2647), - [anon_sym_case] = ACTIONS(2647), - [anon_sym_default] = ACTIONS(2647), - [anon_sym_while] = ACTIONS(2647), - [anon_sym_do] = ACTIONS(2647), - [anon_sym_for] = ACTIONS(2647), - [anon_sym_return] = ACTIONS(2647), - [anon_sym_break] = ACTIONS(2647), - [anon_sym_continue] = ACTIONS(2647), - [anon_sym_goto] = ACTIONS(2647), - [anon_sym_DASH_DASH] = ACTIONS(2649), - [anon_sym_PLUS_PLUS] = ACTIONS(2649), - [anon_sym_sizeof] = ACTIONS(2647), - [sym_number_literal] = ACTIONS(2649), - [anon_sym_L_SQUOTE] = ACTIONS(2649), - [anon_sym_u_SQUOTE] = ACTIONS(2649), - [anon_sym_U_SQUOTE] = ACTIONS(2649), - [anon_sym_u8_SQUOTE] = ACTIONS(2649), - [anon_sym_SQUOTE] = ACTIONS(2649), - [anon_sym_L_DQUOTE] = ACTIONS(2649), - [anon_sym_u_DQUOTE] = ACTIONS(2649), - [anon_sym_U_DQUOTE] = ACTIONS(2649), - [anon_sym_u8_DQUOTE] = ACTIONS(2649), - [anon_sym_DQUOTE] = ACTIONS(2649), - [sym_true] = ACTIONS(2647), - [sym_false] = ACTIONS(2647), - [sym_null] = ACTIONS(2647), + [419] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token2] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [aux_sym_preproc_else_token1] = ACTIONS(2595), + [aux_sym_preproc_elif_token1] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2647), - [anon_sym_decltype] = ACTIONS(2647), - [anon_sym_virtual] = ACTIONS(2647), - [anon_sym_explicit] = ACTIONS(2647), - [anon_sym_typename] = ACTIONS(2647), - [anon_sym_template] = ACTIONS(2647), - [anon_sym_operator] = ACTIONS(2647), - [anon_sym_try] = ACTIONS(2647), - [anon_sym_delete] = ACTIONS(2647), - [anon_sym_throw] = ACTIONS(2647), - [anon_sym_namespace] = ACTIONS(2647), - [anon_sym_using] = ACTIONS(2647), - [anon_sym_static_assert] = ACTIONS(2647), - [anon_sym_concept] = ACTIONS(2647), - [anon_sym_co_return] = ACTIONS(2647), - [anon_sym_co_yield] = ACTIONS(2647), - [anon_sym_co_await] = ACTIONS(2647), - [anon_sym_new] = ACTIONS(2647), - [anon_sym_requires] = ACTIONS(2647), - [sym_this] = ACTIONS(2647), - [sym_nullptr] = ACTIONS(2647), - [sym_raw_string_literal] = ACTIONS(2649), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [481] = { - [sym_identifier] = ACTIONS(2651), - [aux_sym_preproc_include_token1] = ACTIONS(2651), - [aux_sym_preproc_def_token1] = ACTIONS(2651), - [aux_sym_preproc_if_token1] = ACTIONS(2651), - [aux_sym_preproc_if_token2] = ACTIONS(2651), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2651), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2651), - [aux_sym_preproc_else_token1] = ACTIONS(2651), - [aux_sym_preproc_elif_token1] = ACTIONS(2651), - [sym_preproc_directive] = ACTIONS(2651), - [anon_sym_LPAREN2] = ACTIONS(2653), - [anon_sym_BANG] = ACTIONS(2653), - [anon_sym_TILDE] = ACTIONS(2653), - [anon_sym_DASH] = ACTIONS(2651), - [anon_sym_PLUS] = ACTIONS(2651), - [anon_sym_STAR] = ACTIONS(2653), - [anon_sym_AMP_AMP] = ACTIONS(2653), - [anon_sym_AMP] = ACTIONS(2651), - [anon_sym_SEMI] = ACTIONS(2653), - [anon_sym_typedef] = ACTIONS(2651), - [anon_sym_extern] = ACTIONS(2651), - [anon_sym___attribute__] = ACTIONS(2651), - [anon_sym_COLON_COLON] = ACTIONS(2653), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2653), - [anon_sym___declspec] = ACTIONS(2651), - [anon_sym___based] = ACTIONS(2651), - [anon_sym___cdecl] = ACTIONS(2651), - [anon_sym___clrcall] = ACTIONS(2651), - [anon_sym___stdcall] = ACTIONS(2651), - [anon_sym___fastcall] = ACTIONS(2651), - [anon_sym___thiscall] = ACTIONS(2651), - [anon_sym___vectorcall] = ACTIONS(2651), - [anon_sym_LBRACE] = ACTIONS(2653), - [anon_sym_LBRACK] = ACTIONS(2651), - [anon_sym_static] = ACTIONS(2651), - [anon_sym_register] = ACTIONS(2651), - [anon_sym_inline] = ACTIONS(2651), - [anon_sym_thread_local] = ACTIONS(2651), - [anon_sym_const] = ACTIONS(2651), - [anon_sym_volatile] = ACTIONS(2651), - [anon_sym_restrict] = ACTIONS(2651), - [anon_sym__Atomic] = ACTIONS(2651), - [anon_sym_mutable] = ACTIONS(2651), - [anon_sym_constexpr] = ACTIONS(2651), - [anon_sym_constinit] = ACTIONS(2651), - [anon_sym_consteval] = ACTIONS(2651), - [anon_sym_signed] = ACTIONS(2651), - [anon_sym_unsigned] = ACTIONS(2651), - [anon_sym_long] = ACTIONS(2651), - [anon_sym_short] = ACTIONS(2651), - [sym_primitive_type] = ACTIONS(2651), - [anon_sym_enum] = ACTIONS(2651), - [anon_sym_class] = ACTIONS(2651), - [anon_sym_struct] = ACTIONS(2651), - [anon_sym_union] = ACTIONS(2651), - [anon_sym_if] = ACTIONS(2651), - [anon_sym_switch] = ACTIONS(2651), - [anon_sym_case] = ACTIONS(2651), - [anon_sym_default] = ACTIONS(2651), - [anon_sym_while] = ACTIONS(2651), - [anon_sym_do] = ACTIONS(2651), - [anon_sym_for] = ACTIONS(2651), - [anon_sym_return] = ACTIONS(2651), - [anon_sym_break] = ACTIONS(2651), - [anon_sym_continue] = ACTIONS(2651), - [anon_sym_goto] = ACTIONS(2651), - [anon_sym_DASH_DASH] = ACTIONS(2653), - [anon_sym_PLUS_PLUS] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(2651), - [sym_number_literal] = ACTIONS(2653), - [anon_sym_L_SQUOTE] = ACTIONS(2653), - [anon_sym_u_SQUOTE] = ACTIONS(2653), - [anon_sym_U_SQUOTE] = ACTIONS(2653), - [anon_sym_u8_SQUOTE] = ACTIONS(2653), - [anon_sym_SQUOTE] = ACTIONS(2653), - [anon_sym_L_DQUOTE] = ACTIONS(2653), - [anon_sym_u_DQUOTE] = ACTIONS(2653), - [anon_sym_U_DQUOTE] = ACTIONS(2653), - [anon_sym_u8_DQUOTE] = ACTIONS(2653), - [anon_sym_DQUOTE] = ACTIONS(2653), - [sym_true] = ACTIONS(2651), - [sym_false] = ACTIONS(2651), - [sym_null] = ACTIONS(2651), + [420] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token2] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [aux_sym_preproc_else_token1] = ACTIONS(2595), + [aux_sym_preproc_elif_token1] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2651), - [anon_sym_decltype] = ACTIONS(2651), - [anon_sym_virtual] = ACTIONS(2651), - [anon_sym_explicit] = ACTIONS(2651), - [anon_sym_typename] = ACTIONS(2651), - [anon_sym_template] = ACTIONS(2651), - [anon_sym_operator] = ACTIONS(2651), - [anon_sym_try] = ACTIONS(2651), - [anon_sym_delete] = ACTIONS(2651), - [anon_sym_throw] = ACTIONS(2651), - [anon_sym_namespace] = ACTIONS(2651), - [anon_sym_using] = ACTIONS(2651), - [anon_sym_static_assert] = ACTIONS(2651), - [anon_sym_concept] = ACTIONS(2651), - [anon_sym_co_return] = ACTIONS(2651), - [anon_sym_co_yield] = ACTIONS(2651), - [anon_sym_co_await] = ACTIONS(2651), - [anon_sym_new] = ACTIONS(2651), - [anon_sym_requires] = ACTIONS(2651), - [sym_this] = ACTIONS(2651), - [sym_nullptr] = ACTIONS(2651), - [sym_raw_string_literal] = ACTIONS(2653), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [482] = { - [sym_identifier] = ACTIONS(2655), - [aux_sym_preproc_include_token1] = ACTIONS(2655), - [aux_sym_preproc_def_token1] = ACTIONS(2655), - [aux_sym_preproc_if_token1] = ACTIONS(2655), - [aux_sym_preproc_if_token2] = ACTIONS(2655), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2655), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2655), - [aux_sym_preproc_else_token1] = ACTIONS(2655), - [aux_sym_preproc_elif_token1] = ACTIONS(2655), - [sym_preproc_directive] = ACTIONS(2655), - [anon_sym_LPAREN2] = ACTIONS(2657), - [anon_sym_BANG] = ACTIONS(2657), - [anon_sym_TILDE] = ACTIONS(2657), - [anon_sym_DASH] = ACTIONS(2655), - [anon_sym_PLUS] = ACTIONS(2655), - [anon_sym_STAR] = ACTIONS(2657), - [anon_sym_AMP_AMP] = ACTIONS(2657), - [anon_sym_AMP] = ACTIONS(2655), - [anon_sym_SEMI] = ACTIONS(2657), - [anon_sym_typedef] = ACTIONS(2655), - [anon_sym_extern] = ACTIONS(2655), - [anon_sym___attribute__] = ACTIONS(2655), - [anon_sym_COLON_COLON] = ACTIONS(2657), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2657), - [anon_sym___declspec] = ACTIONS(2655), - [anon_sym___based] = ACTIONS(2655), - [anon_sym___cdecl] = ACTIONS(2655), - [anon_sym___clrcall] = ACTIONS(2655), - [anon_sym___stdcall] = ACTIONS(2655), - [anon_sym___fastcall] = ACTIONS(2655), - [anon_sym___thiscall] = ACTIONS(2655), - [anon_sym___vectorcall] = ACTIONS(2655), - [anon_sym_LBRACE] = ACTIONS(2657), - [anon_sym_LBRACK] = ACTIONS(2655), - [anon_sym_static] = ACTIONS(2655), - [anon_sym_register] = ACTIONS(2655), - [anon_sym_inline] = ACTIONS(2655), - [anon_sym_thread_local] = ACTIONS(2655), - [anon_sym_const] = ACTIONS(2655), - [anon_sym_volatile] = ACTIONS(2655), - [anon_sym_restrict] = ACTIONS(2655), - [anon_sym__Atomic] = ACTIONS(2655), - [anon_sym_mutable] = ACTIONS(2655), - [anon_sym_constexpr] = ACTIONS(2655), - [anon_sym_constinit] = ACTIONS(2655), - [anon_sym_consteval] = ACTIONS(2655), - [anon_sym_signed] = ACTIONS(2655), - [anon_sym_unsigned] = ACTIONS(2655), - [anon_sym_long] = ACTIONS(2655), - [anon_sym_short] = ACTIONS(2655), - [sym_primitive_type] = ACTIONS(2655), - [anon_sym_enum] = ACTIONS(2655), - [anon_sym_class] = ACTIONS(2655), - [anon_sym_struct] = ACTIONS(2655), - [anon_sym_union] = ACTIONS(2655), - [anon_sym_if] = ACTIONS(2655), - [anon_sym_switch] = ACTIONS(2655), - [anon_sym_case] = ACTIONS(2655), - [anon_sym_default] = ACTIONS(2655), - [anon_sym_while] = ACTIONS(2655), - [anon_sym_do] = ACTIONS(2655), - [anon_sym_for] = ACTIONS(2655), - [anon_sym_return] = ACTIONS(2655), - [anon_sym_break] = ACTIONS(2655), - [anon_sym_continue] = ACTIONS(2655), - [anon_sym_goto] = ACTIONS(2655), - [anon_sym_DASH_DASH] = ACTIONS(2657), - [anon_sym_PLUS_PLUS] = ACTIONS(2657), - [anon_sym_sizeof] = ACTIONS(2655), - [sym_number_literal] = ACTIONS(2657), - [anon_sym_L_SQUOTE] = ACTIONS(2657), - [anon_sym_u_SQUOTE] = ACTIONS(2657), - [anon_sym_U_SQUOTE] = ACTIONS(2657), - [anon_sym_u8_SQUOTE] = ACTIONS(2657), - [anon_sym_SQUOTE] = ACTIONS(2657), - [anon_sym_L_DQUOTE] = ACTIONS(2657), - [anon_sym_u_DQUOTE] = ACTIONS(2657), - [anon_sym_U_DQUOTE] = ACTIONS(2657), - [anon_sym_u8_DQUOTE] = ACTIONS(2657), - [anon_sym_DQUOTE] = ACTIONS(2657), - [sym_true] = ACTIONS(2655), - [sym_false] = ACTIONS(2655), - [sym_null] = ACTIONS(2655), + [421] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token2] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [aux_sym_preproc_else_token1] = ACTIONS(2595), + [aux_sym_preproc_elif_token1] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2655), - [anon_sym_decltype] = ACTIONS(2655), - [anon_sym_virtual] = ACTIONS(2655), - [anon_sym_explicit] = ACTIONS(2655), - [anon_sym_typename] = ACTIONS(2655), - [anon_sym_template] = ACTIONS(2655), - [anon_sym_operator] = ACTIONS(2655), - [anon_sym_try] = ACTIONS(2655), - [anon_sym_delete] = ACTIONS(2655), - [anon_sym_throw] = ACTIONS(2655), - [anon_sym_namespace] = ACTIONS(2655), - [anon_sym_using] = ACTIONS(2655), - [anon_sym_static_assert] = ACTIONS(2655), - [anon_sym_concept] = ACTIONS(2655), - [anon_sym_co_return] = ACTIONS(2655), - [anon_sym_co_yield] = ACTIONS(2655), - [anon_sym_co_await] = ACTIONS(2655), - [anon_sym_new] = ACTIONS(2655), - [anon_sym_requires] = ACTIONS(2655), - [sym_this] = ACTIONS(2655), - [sym_nullptr] = ACTIONS(2655), - [sym_raw_string_literal] = ACTIONS(2657), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [483] = { - [sym_identifier] = ACTIONS(2659), - [aux_sym_preproc_include_token1] = ACTIONS(2659), - [aux_sym_preproc_def_token1] = ACTIONS(2659), - [aux_sym_preproc_if_token1] = ACTIONS(2659), - [aux_sym_preproc_if_token2] = ACTIONS(2659), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2659), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2659), - [aux_sym_preproc_else_token1] = ACTIONS(2659), - [aux_sym_preproc_elif_token1] = ACTIONS(2659), - [sym_preproc_directive] = ACTIONS(2659), - [anon_sym_LPAREN2] = ACTIONS(2661), - [anon_sym_BANG] = ACTIONS(2661), - [anon_sym_TILDE] = ACTIONS(2661), - [anon_sym_DASH] = ACTIONS(2659), - [anon_sym_PLUS] = ACTIONS(2659), - [anon_sym_STAR] = ACTIONS(2661), - [anon_sym_AMP_AMP] = ACTIONS(2661), - [anon_sym_AMP] = ACTIONS(2659), - [anon_sym_SEMI] = ACTIONS(2661), - [anon_sym_typedef] = ACTIONS(2659), - [anon_sym_extern] = ACTIONS(2659), - [anon_sym___attribute__] = ACTIONS(2659), - [anon_sym_COLON_COLON] = ACTIONS(2661), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2661), - [anon_sym___declspec] = ACTIONS(2659), - [anon_sym___based] = ACTIONS(2659), - [anon_sym___cdecl] = ACTIONS(2659), - [anon_sym___clrcall] = ACTIONS(2659), - [anon_sym___stdcall] = ACTIONS(2659), - [anon_sym___fastcall] = ACTIONS(2659), - [anon_sym___thiscall] = ACTIONS(2659), - [anon_sym___vectorcall] = ACTIONS(2659), - [anon_sym_LBRACE] = ACTIONS(2661), - [anon_sym_LBRACK] = ACTIONS(2659), - [anon_sym_static] = ACTIONS(2659), - [anon_sym_register] = ACTIONS(2659), - [anon_sym_inline] = ACTIONS(2659), - [anon_sym_thread_local] = ACTIONS(2659), - [anon_sym_const] = ACTIONS(2659), - [anon_sym_volatile] = ACTIONS(2659), - [anon_sym_restrict] = ACTIONS(2659), - [anon_sym__Atomic] = ACTIONS(2659), - [anon_sym_mutable] = ACTIONS(2659), - [anon_sym_constexpr] = ACTIONS(2659), - [anon_sym_constinit] = ACTIONS(2659), - [anon_sym_consteval] = ACTIONS(2659), - [anon_sym_signed] = ACTIONS(2659), - [anon_sym_unsigned] = ACTIONS(2659), - [anon_sym_long] = ACTIONS(2659), - [anon_sym_short] = ACTIONS(2659), - [sym_primitive_type] = ACTIONS(2659), - [anon_sym_enum] = ACTIONS(2659), - [anon_sym_class] = ACTIONS(2659), - [anon_sym_struct] = ACTIONS(2659), - [anon_sym_union] = ACTIONS(2659), - [anon_sym_if] = ACTIONS(2659), - [anon_sym_switch] = ACTIONS(2659), - [anon_sym_case] = ACTIONS(2659), - [anon_sym_default] = ACTIONS(2659), - [anon_sym_while] = ACTIONS(2659), - [anon_sym_do] = ACTIONS(2659), - [anon_sym_for] = ACTIONS(2659), - [anon_sym_return] = ACTIONS(2659), - [anon_sym_break] = ACTIONS(2659), - [anon_sym_continue] = ACTIONS(2659), - [anon_sym_goto] = ACTIONS(2659), - [anon_sym_DASH_DASH] = ACTIONS(2661), - [anon_sym_PLUS_PLUS] = ACTIONS(2661), - [anon_sym_sizeof] = ACTIONS(2659), - [sym_number_literal] = ACTIONS(2661), - [anon_sym_L_SQUOTE] = ACTIONS(2661), - [anon_sym_u_SQUOTE] = ACTIONS(2661), - [anon_sym_U_SQUOTE] = ACTIONS(2661), - [anon_sym_u8_SQUOTE] = ACTIONS(2661), - [anon_sym_SQUOTE] = ACTIONS(2661), - [anon_sym_L_DQUOTE] = ACTIONS(2661), - [anon_sym_u_DQUOTE] = ACTIONS(2661), - [anon_sym_U_DQUOTE] = ACTIONS(2661), - [anon_sym_u8_DQUOTE] = ACTIONS(2661), - [anon_sym_DQUOTE] = ACTIONS(2661), - [sym_true] = ACTIONS(2659), - [sym_false] = ACTIONS(2659), - [sym_null] = ACTIONS(2659), + [422] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token2] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [aux_sym_preproc_else_token1] = ACTIONS(2595), + [aux_sym_preproc_elif_token1] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2659), - [anon_sym_decltype] = ACTIONS(2659), - [anon_sym_virtual] = ACTIONS(2659), - [anon_sym_explicit] = ACTIONS(2659), - [anon_sym_typename] = ACTIONS(2659), - [anon_sym_template] = ACTIONS(2659), - [anon_sym_operator] = ACTIONS(2659), - [anon_sym_try] = ACTIONS(2659), - [anon_sym_delete] = ACTIONS(2659), - [anon_sym_throw] = ACTIONS(2659), - [anon_sym_namespace] = ACTIONS(2659), - [anon_sym_using] = ACTIONS(2659), - [anon_sym_static_assert] = ACTIONS(2659), - [anon_sym_concept] = ACTIONS(2659), - [anon_sym_co_return] = ACTIONS(2659), - [anon_sym_co_yield] = ACTIONS(2659), - [anon_sym_co_await] = ACTIONS(2659), - [anon_sym_new] = ACTIONS(2659), - [anon_sym_requires] = ACTIONS(2659), - [sym_this] = ACTIONS(2659), - [sym_nullptr] = ACTIONS(2659), - [sym_raw_string_literal] = ACTIONS(2661), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [484] = { - [sym_type_qualifier] = STATE(2979), - [sym__type_specifier] = STATE(3924), - [sym_sized_type_specifier] = STATE(2872), - [sym_enum_specifier] = STATE(2872), - [sym_struct_specifier] = STATE(2872), - [sym_union_specifier] = STATE(2872), - [sym__expression] = STATE(3564), - [sym_conditional_expression] = STATE(3881), - [sym_assignment_expression] = STATE(3881), - [sym_pointer_expression] = STATE(2977), - [sym_unary_expression] = STATE(3881), - [sym_binary_expression] = STATE(3881), - [sym_update_expression] = STATE(3881), - [sym_cast_expression] = STATE(3881), - [sym_type_descriptor] = STATE(5511), - [sym_sizeof_expression] = STATE(3881), - [sym_subscript_expression] = STATE(2977), - [sym_call_expression] = STATE(2977), - [sym_field_expression] = STATE(2977), - [sym_compound_literal_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(2977), - [sym_char_literal] = STATE(3701), - [sym_concatenated_string] = STATE(3701), - [sym_string_literal] = STATE(3219), - [sym_placeholder_type_specifier] = STATE(2872), - [sym_decltype_auto] = STATE(2878), - [sym_decltype] = STATE(2872), - [sym_class_specifier] = STATE(2872), - [sym__class_name] = STATE(6063), - [sym_dependent_type] = STATE(2872), - [sym_template_type] = STATE(4194), - [sym_template_function] = STATE(3881), - [sym_co_await_expression] = STATE(3881), - [sym_new_expression] = STATE(3881), - [sym_delete_expression] = STATE(3881), - [sym_requires_clause] = STATE(3881), - [sym_requires_expression] = STATE(3881), - [sym_lambda_expression] = STATE(3881), - [sym_lambda_capture_specifier] = STATE(4519), - [sym_fold_expression] = STATE(3881), - [sym_parameter_pack_expansion] = STATE(3881), - [sym_type_parameter_pack_expansion] = STATE(5529), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4633), - [sym_qualified_identifier] = STATE(2977), - [sym_qualified_type_identifier] = STATE(4305), - [sym_user_defined_literal] = STATE(3881), - [aux_sym_type_definition_repeat1] = STATE(2979), - [aux_sym_sized_type_specifier_repeat1] = STATE(2182), - [sym_identifier] = ACTIONS(2529), - [anon_sym_LPAREN2] = ACTIONS(2531), - [anon_sym_BANG] = ACTIONS(2533), - [anon_sym_TILDE] = ACTIONS(2533), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_STAR] = ACTIONS(2537), - [anon_sym_AMP] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(2539), - [anon_sym_LBRACK] = ACTIONS(2272), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(2541), - [anon_sym_unsigned] = ACTIONS(2541), - [anon_sym_long] = ACTIONS(2541), - [anon_sym_short] = ACTIONS(2541), - [sym_primitive_type] = ACTIONS(2543), - [anon_sym_enum] = ACTIONS(2545), - [anon_sym_class] = ACTIONS(2547), - [anon_sym_struct] = ACTIONS(2549), - [anon_sym_union] = ACTIONS(2551), - [anon_sym_DASH_DASH] = ACTIONS(2553), - [anon_sym_PLUS_PLUS] = ACTIONS(2553), - [anon_sym_sizeof] = ACTIONS(2555), - [sym_number_literal] = ACTIONS(2557), - [anon_sym_L_SQUOTE] = ACTIONS(2559), - [anon_sym_u_SQUOTE] = ACTIONS(2559), - [anon_sym_U_SQUOTE] = ACTIONS(2559), - [anon_sym_u8_SQUOTE] = ACTIONS(2559), - [anon_sym_SQUOTE] = ACTIONS(2559), - [anon_sym_L_DQUOTE] = ACTIONS(2561), - [anon_sym_u_DQUOTE] = ACTIONS(2561), - [anon_sym_U_DQUOTE] = ACTIONS(2561), - [anon_sym_u8_DQUOTE] = ACTIONS(2561), - [anon_sym_DQUOTE] = ACTIONS(2561), - [sym_true] = ACTIONS(2563), - [sym_false] = ACTIONS(2563), - [sym_null] = ACTIONS(2563), + [423] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token2] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [aux_sym_preproc_else_token1] = ACTIONS(2595), + [aux_sym_preproc_elif_token1] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2565), - [anon_sym_decltype] = ACTIONS(2567), - [anon_sym_typename] = ACTIONS(2569), - [anon_sym_template] = ACTIONS(972), - [anon_sym_GT2] = ACTIONS(2663), - [anon_sym_delete] = ACTIONS(2573), - [anon_sym_co_await] = ACTIONS(2575), - [anon_sym_new] = ACTIONS(2577), - [anon_sym_requires] = ACTIONS(2579), - [sym_this] = ACTIONS(2563), - [sym_nullptr] = ACTIONS(2563), - [sym_raw_string_literal] = ACTIONS(2581), - }, - [485] = { - [sym_identifier] = ACTIONS(2665), - [aux_sym_preproc_include_token1] = ACTIONS(2665), - [aux_sym_preproc_def_token1] = ACTIONS(2665), - [aux_sym_preproc_if_token1] = ACTIONS(2665), - [aux_sym_preproc_if_token2] = ACTIONS(2665), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2665), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2665), - [aux_sym_preproc_else_token1] = ACTIONS(2665), - [aux_sym_preproc_elif_token1] = ACTIONS(2665), - [sym_preproc_directive] = ACTIONS(2665), - [anon_sym_LPAREN2] = ACTIONS(2667), - [anon_sym_BANG] = ACTIONS(2667), - [anon_sym_TILDE] = ACTIONS(2667), - [anon_sym_DASH] = ACTIONS(2665), - [anon_sym_PLUS] = ACTIONS(2665), - [anon_sym_STAR] = ACTIONS(2667), - [anon_sym_AMP_AMP] = ACTIONS(2667), - [anon_sym_AMP] = ACTIONS(2665), - [anon_sym_SEMI] = ACTIONS(2667), - [anon_sym_typedef] = ACTIONS(2665), - [anon_sym_extern] = ACTIONS(2665), - [anon_sym___attribute__] = ACTIONS(2665), - [anon_sym_COLON_COLON] = ACTIONS(2667), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2667), - [anon_sym___declspec] = ACTIONS(2665), - [anon_sym___based] = ACTIONS(2665), - [anon_sym___cdecl] = ACTIONS(2665), - [anon_sym___clrcall] = ACTIONS(2665), - [anon_sym___stdcall] = ACTIONS(2665), - [anon_sym___fastcall] = ACTIONS(2665), - [anon_sym___thiscall] = ACTIONS(2665), - [anon_sym___vectorcall] = ACTIONS(2665), - [anon_sym_LBRACE] = ACTIONS(2667), - [anon_sym_LBRACK] = ACTIONS(2665), - [anon_sym_static] = ACTIONS(2665), - [anon_sym_register] = ACTIONS(2665), - [anon_sym_inline] = ACTIONS(2665), - [anon_sym_thread_local] = ACTIONS(2665), - [anon_sym_const] = ACTIONS(2665), - [anon_sym_volatile] = ACTIONS(2665), - [anon_sym_restrict] = ACTIONS(2665), - [anon_sym__Atomic] = ACTIONS(2665), - [anon_sym_mutable] = ACTIONS(2665), - [anon_sym_constexpr] = ACTIONS(2665), - [anon_sym_constinit] = ACTIONS(2665), - [anon_sym_consteval] = ACTIONS(2665), - [anon_sym_signed] = ACTIONS(2665), - [anon_sym_unsigned] = ACTIONS(2665), - [anon_sym_long] = ACTIONS(2665), - [anon_sym_short] = ACTIONS(2665), - [sym_primitive_type] = ACTIONS(2665), - [anon_sym_enum] = ACTIONS(2665), - [anon_sym_class] = ACTIONS(2665), - [anon_sym_struct] = ACTIONS(2665), - [anon_sym_union] = ACTIONS(2665), - [anon_sym_if] = ACTIONS(2665), - [anon_sym_switch] = ACTIONS(2665), - [anon_sym_case] = ACTIONS(2665), - [anon_sym_default] = ACTIONS(2665), - [anon_sym_while] = ACTIONS(2665), - [anon_sym_do] = ACTIONS(2665), - [anon_sym_for] = ACTIONS(2665), - [anon_sym_return] = ACTIONS(2665), - [anon_sym_break] = ACTIONS(2665), - [anon_sym_continue] = ACTIONS(2665), - [anon_sym_goto] = ACTIONS(2665), - [anon_sym_DASH_DASH] = ACTIONS(2667), - [anon_sym_PLUS_PLUS] = ACTIONS(2667), - [anon_sym_sizeof] = ACTIONS(2665), - [sym_number_literal] = ACTIONS(2667), - [anon_sym_L_SQUOTE] = ACTIONS(2667), - [anon_sym_u_SQUOTE] = ACTIONS(2667), - [anon_sym_U_SQUOTE] = ACTIONS(2667), - [anon_sym_u8_SQUOTE] = ACTIONS(2667), - [anon_sym_SQUOTE] = ACTIONS(2667), - [anon_sym_L_DQUOTE] = ACTIONS(2667), - [anon_sym_u_DQUOTE] = ACTIONS(2667), - [anon_sym_U_DQUOTE] = ACTIONS(2667), - [anon_sym_u8_DQUOTE] = ACTIONS(2667), - [anon_sym_DQUOTE] = ACTIONS(2667), - [sym_true] = ACTIONS(2665), - [sym_false] = ACTIONS(2665), - [sym_null] = ACTIONS(2665), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2665), - [anon_sym_decltype] = ACTIONS(2665), - [anon_sym_virtual] = ACTIONS(2665), - [anon_sym_explicit] = ACTIONS(2665), - [anon_sym_typename] = ACTIONS(2665), - [anon_sym_template] = ACTIONS(2665), - [anon_sym_operator] = ACTIONS(2665), - [anon_sym_try] = ACTIONS(2665), - [anon_sym_delete] = ACTIONS(2665), - [anon_sym_throw] = ACTIONS(2665), - [anon_sym_namespace] = ACTIONS(2665), - [anon_sym_using] = ACTIONS(2665), - [anon_sym_static_assert] = ACTIONS(2665), - [anon_sym_concept] = ACTIONS(2665), - [anon_sym_co_return] = ACTIONS(2665), - [anon_sym_co_yield] = ACTIONS(2665), - [anon_sym_co_await] = ACTIONS(2665), - [anon_sym_new] = ACTIONS(2665), - [anon_sym_requires] = ACTIONS(2665), - [sym_this] = ACTIONS(2665), - [sym_nullptr] = ACTIONS(2665), - [sym_raw_string_literal] = ACTIONS(2667), - }, - [486] = { - [ts_builtin_sym_end] = ACTIONS(2293), - [sym_identifier] = ACTIONS(2291), - [aux_sym_preproc_include_token1] = ACTIONS(2291), - [aux_sym_preproc_def_token1] = ACTIONS(2291), - [aux_sym_preproc_if_token1] = ACTIONS(2291), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2291), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2291), - [sym_preproc_directive] = ACTIONS(2291), - [anon_sym_LPAREN2] = ACTIONS(2293), - [anon_sym_BANG] = ACTIONS(2293), - [anon_sym_TILDE] = ACTIONS(2293), - [anon_sym_DASH] = ACTIONS(2291), - [anon_sym_PLUS] = ACTIONS(2291), - [anon_sym_STAR] = ACTIONS(2293), - [anon_sym_AMP_AMP] = ACTIONS(2293), - [anon_sym_AMP] = ACTIONS(2291), - [anon_sym_SEMI] = ACTIONS(2293), - [anon_sym_typedef] = ACTIONS(2291), - [anon_sym_extern] = ACTIONS(2291), - [anon_sym___attribute__] = ACTIONS(2291), - [anon_sym_COLON_COLON] = ACTIONS(2293), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2293), - [anon_sym___declspec] = ACTIONS(2291), - [anon_sym___based] = ACTIONS(2291), - [anon_sym___cdecl] = ACTIONS(2291), - [anon_sym___clrcall] = ACTIONS(2291), - [anon_sym___stdcall] = ACTIONS(2291), - [anon_sym___fastcall] = ACTIONS(2291), - [anon_sym___thiscall] = ACTIONS(2291), - [anon_sym___vectorcall] = ACTIONS(2291), - [anon_sym_LBRACE] = ACTIONS(2293), - [anon_sym_LBRACK] = ACTIONS(2291), - [anon_sym_static] = ACTIONS(2291), - [anon_sym_register] = ACTIONS(2291), - [anon_sym_inline] = ACTIONS(2291), - [anon_sym_thread_local] = ACTIONS(2291), - [anon_sym_const] = ACTIONS(2291), - [anon_sym_volatile] = ACTIONS(2291), - [anon_sym_restrict] = ACTIONS(2291), - [anon_sym__Atomic] = ACTIONS(2291), - [anon_sym_mutable] = ACTIONS(2291), - [anon_sym_constexpr] = ACTIONS(2291), - [anon_sym_constinit] = ACTIONS(2291), - [anon_sym_consteval] = ACTIONS(2291), - [anon_sym_signed] = ACTIONS(2291), - [anon_sym_unsigned] = ACTIONS(2291), - [anon_sym_long] = ACTIONS(2291), - [anon_sym_short] = ACTIONS(2291), - [sym_primitive_type] = ACTIONS(2291), - [anon_sym_enum] = ACTIONS(2291), - [anon_sym_class] = ACTIONS(2291), - [anon_sym_struct] = ACTIONS(2291), - [anon_sym_union] = ACTIONS(2291), - [anon_sym_if] = ACTIONS(2291), - [anon_sym_else] = ACTIONS(2291), - [anon_sym_switch] = ACTIONS(2291), - [anon_sym_case] = ACTIONS(2291), - [anon_sym_default] = ACTIONS(2291), - [anon_sym_while] = ACTIONS(2291), - [anon_sym_do] = ACTIONS(2291), - [anon_sym_for] = ACTIONS(2291), - [anon_sym_return] = ACTIONS(2291), - [anon_sym_break] = ACTIONS(2291), - [anon_sym_continue] = ACTIONS(2291), - [anon_sym_goto] = ACTIONS(2291), - [anon_sym_DASH_DASH] = ACTIONS(2293), - [anon_sym_PLUS_PLUS] = ACTIONS(2293), - [anon_sym_sizeof] = ACTIONS(2291), - [sym_number_literal] = ACTIONS(2293), - [anon_sym_L_SQUOTE] = ACTIONS(2293), - [anon_sym_u_SQUOTE] = ACTIONS(2293), - [anon_sym_U_SQUOTE] = ACTIONS(2293), - [anon_sym_u8_SQUOTE] = ACTIONS(2293), - [anon_sym_SQUOTE] = ACTIONS(2293), - [anon_sym_L_DQUOTE] = ACTIONS(2293), - [anon_sym_u_DQUOTE] = ACTIONS(2293), - [anon_sym_U_DQUOTE] = ACTIONS(2293), - [anon_sym_u8_DQUOTE] = ACTIONS(2293), - [anon_sym_DQUOTE] = ACTIONS(2293), - [sym_true] = ACTIONS(2291), - [sym_false] = ACTIONS(2291), - [sym_null] = ACTIONS(2291), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2291), - [anon_sym_decltype] = ACTIONS(2291), - [anon_sym_virtual] = ACTIONS(2291), - [anon_sym_explicit] = ACTIONS(2291), - [anon_sym_typename] = ACTIONS(2291), - [anon_sym_template] = ACTIONS(2291), - [anon_sym_operator] = ACTIONS(2291), - [anon_sym_try] = ACTIONS(2291), - [anon_sym_delete] = ACTIONS(2291), - [anon_sym_throw] = ACTIONS(2291), - [anon_sym_namespace] = ACTIONS(2291), - [anon_sym_using] = ACTIONS(2291), - [anon_sym_static_assert] = ACTIONS(2291), - [anon_sym_concept] = ACTIONS(2291), - [anon_sym_co_return] = ACTIONS(2291), - [anon_sym_co_yield] = ACTIONS(2291), - [anon_sym_catch] = ACTIONS(2291), - [anon_sym_co_await] = ACTIONS(2291), - [anon_sym_new] = ACTIONS(2291), - [anon_sym_requires] = ACTIONS(2291), - [sym_this] = ACTIONS(2291), - [sym_nullptr] = ACTIONS(2291), - [sym_raw_string_literal] = ACTIONS(2293), - }, - [487] = { - [sym_identifier] = ACTIONS(2291), - [aux_sym_preproc_include_token1] = ACTIONS(2291), - [aux_sym_preproc_def_token1] = ACTIONS(2291), - [aux_sym_preproc_if_token1] = ACTIONS(2291), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2291), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2291), - [sym_preproc_directive] = ACTIONS(2291), - [anon_sym_LPAREN2] = ACTIONS(2293), - [anon_sym_BANG] = ACTIONS(2293), - [anon_sym_TILDE] = ACTIONS(2293), - [anon_sym_DASH] = ACTIONS(2291), - [anon_sym_PLUS] = ACTIONS(2291), - [anon_sym_STAR] = ACTIONS(2293), - [anon_sym_AMP_AMP] = ACTIONS(2293), - [anon_sym_AMP] = ACTIONS(2291), - [anon_sym_SEMI] = ACTIONS(2293), - [anon_sym_typedef] = ACTIONS(2291), - [anon_sym_extern] = ACTIONS(2291), - [anon_sym___attribute__] = ACTIONS(2291), - [anon_sym_COLON_COLON] = ACTIONS(2293), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2293), - [anon_sym___declspec] = ACTIONS(2291), - [anon_sym___based] = ACTIONS(2291), - [anon_sym___cdecl] = ACTIONS(2291), - [anon_sym___clrcall] = ACTIONS(2291), - [anon_sym___stdcall] = ACTIONS(2291), - [anon_sym___fastcall] = ACTIONS(2291), - [anon_sym___thiscall] = ACTIONS(2291), - [anon_sym___vectorcall] = ACTIONS(2291), - [anon_sym_LBRACE] = ACTIONS(2293), - [anon_sym_RBRACE] = ACTIONS(2293), - [anon_sym_LBRACK] = ACTIONS(2291), - [anon_sym_static] = ACTIONS(2291), - [anon_sym_register] = ACTIONS(2291), - [anon_sym_inline] = ACTIONS(2291), - [anon_sym_thread_local] = ACTIONS(2291), - [anon_sym_const] = ACTIONS(2291), - [anon_sym_volatile] = ACTIONS(2291), - [anon_sym_restrict] = ACTIONS(2291), - [anon_sym__Atomic] = ACTIONS(2291), - [anon_sym_mutable] = ACTIONS(2291), - [anon_sym_constexpr] = ACTIONS(2291), - [anon_sym_constinit] = ACTIONS(2291), - [anon_sym_consteval] = ACTIONS(2291), - [anon_sym_signed] = ACTIONS(2291), - [anon_sym_unsigned] = ACTIONS(2291), - [anon_sym_long] = ACTIONS(2291), - [anon_sym_short] = ACTIONS(2291), - [sym_primitive_type] = ACTIONS(2291), - [anon_sym_enum] = ACTIONS(2291), - [anon_sym_class] = ACTIONS(2291), - [anon_sym_struct] = ACTIONS(2291), - [anon_sym_union] = ACTIONS(2291), - [anon_sym_if] = ACTIONS(2291), - [anon_sym_else] = ACTIONS(2291), - [anon_sym_switch] = ACTIONS(2291), - [anon_sym_case] = ACTIONS(2291), - [anon_sym_default] = ACTIONS(2291), - [anon_sym_while] = ACTIONS(2291), - [anon_sym_do] = ACTIONS(2291), - [anon_sym_for] = ACTIONS(2291), - [anon_sym_return] = ACTIONS(2291), - [anon_sym_break] = ACTIONS(2291), - [anon_sym_continue] = ACTIONS(2291), - [anon_sym_goto] = ACTIONS(2291), - [anon_sym_DASH_DASH] = ACTIONS(2293), - [anon_sym_PLUS_PLUS] = ACTIONS(2293), - [anon_sym_sizeof] = ACTIONS(2291), - [sym_number_literal] = ACTIONS(2293), - [anon_sym_L_SQUOTE] = ACTIONS(2293), - [anon_sym_u_SQUOTE] = ACTIONS(2293), - [anon_sym_U_SQUOTE] = ACTIONS(2293), - [anon_sym_u8_SQUOTE] = ACTIONS(2293), - [anon_sym_SQUOTE] = ACTIONS(2293), - [anon_sym_L_DQUOTE] = ACTIONS(2293), - [anon_sym_u_DQUOTE] = ACTIONS(2293), - [anon_sym_U_DQUOTE] = ACTIONS(2293), - [anon_sym_u8_DQUOTE] = ACTIONS(2293), - [anon_sym_DQUOTE] = ACTIONS(2293), - [sym_true] = ACTIONS(2291), - [sym_false] = ACTIONS(2291), - [sym_null] = ACTIONS(2291), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2291), - [anon_sym_decltype] = ACTIONS(2291), - [anon_sym_virtual] = ACTIONS(2291), - [anon_sym_explicit] = ACTIONS(2291), - [anon_sym_typename] = ACTIONS(2291), - [anon_sym_template] = ACTIONS(2291), - [anon_sym_operator] = ACTIONS(2291), - [anon_sym_try] = ACTIONS(2291), - [anon_sym_delete] = ACTIONS(2291), - [anon_sym_throw] = ACTIONS(2291), - [anon_sym_namespace] = ACTIONS(2291), - [anon_sym_using] = ACTIONS(2291), - [anon_sym_static_assert] = ACTIONS(2291), - [anon_sym_concept] = ACTIONS(2291), - [anon_sym_co_return] = ACTIONS(2291), - [anon_sym_co_yield] = ACTIONS(2291), - [anon_sym_catch] = ACTIONS(2291), - [anon_sym_co_await] = ACTIONS(2291), - [anon_sym_new] = ACTIONS(2291), - [anon_sym_requires] = ACTIONS(2291), - [sym_this] = ACTIONS(2291), - [sym_nullptr] = ACTIONS(2291), - [sym_raw_string_literal] = ACTIONS(2293), - }, - [488] = { - [sym_identifier] = ACTIONS(2669), - [aux_sym_preproc_include_token1] = ACTIONS(2669), - [aux_sym_preproc_def_token1] = ACTIONS(2669), - [aux_sym_preproc_if_token1] = ACTIONS(2669), - [aux_sym_preproc_if_token2] = ACTIONS(2669), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2669), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2669), - [aux_sym_preproc_else_token1] = ACTIONS(2669), - [aux_sym_preproc_elif_token1] = ACTIONS(2669), - [sym_preproc_directive] = ACTIONS(2669), - [anon_sym_LPAREN2] = ACTIONS(2671), - [anon_sym_BANG] = ACTIONS(2671), - [anon_sym_TILDE] = ACTIONS(2671), - [anon_sym_DASH] = ACTIONS(2669), - [anon_sym_PLUS] = ACTIONS(2669), - [anon_sym_STAR] = ACTIONS(2671), - [anon_sym_AMP_AMP] = ACTIONS(2671), - [anon_sym_AMP] = ACTIONS(2669), - [anon_sym_SEMI] = ACTIONS(2671), - [anon_sym_typedef] = ACTIONS(2669), - [anon_sym_extern] = ACTIONS(2669), - [anon_sym___attribute__] = ACTIONS(2669), - [anon_sym_COLON_COLON] = ACTIONS(2671), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2671), - [anon_sym___declspec] = ACTIONS(2669), - [anon_sym___based] = ACTIONS(2669), - [anon_sym___cdecl] = ACTIONS(2669), - [anon_sym___clrcall] = ACTIONS(2669), - [anon_sym___stdcall] = ACTIONS(2669), - [anon_sym___fastcall] = ACTIONS(2669), - [anon_sym___thiscall] = ACTIONS(2669), - [anon_sym___vectorcall] = ACTIONS(2669), - [anon_sym_LBRACE] = ACTIONS(2671), - [anon_sym_LBRACK] = ACTIONS(2669), - [anon_sym_static] = ACTIONS(2669), - [anon_sym_register] = ACTIONS(2669), - [anon_sym_inline] = ACTIONS(2669), - [anon_sym_thread_local] = ACTIONS(2669), - [anon_sym_const] = ACTIONS(2669), - [anon_sym_volatile] = ACTIONS(2669), - [anon_sym_restrict] = ACTIONS(2669), - [anon_sym__Atomic] = ACTIONS(2669), - [anon_sym_mutable] = ACTIONS(2669), - [anon_sym_constexpr] = ACTIONS(2669), - [anon_sym_constinit] = ACTIONS(2669), - [anon_sym_consteval] = ACTIONS(2669), - [anon_sym_signed] = ACTIONS(2669), - [anon_sym_unsigned] = ACTIONS(2669), - [anon_sym_long] = ACTIONS(2669), - [anon_sym_short] = ACTIONS(2669), - [sym_primitive_type] = ACTIONS(2669), - [anon_sym_enum] = ACTIONS(2669), - [anon_sym_class] = ACTIONS(2669), - [anon_sym_struct] = ACTIONS(2669), - [anon_sym_union] = ACTIONS(2669), - [anon_sym_if] = ACTIONS(2669), - [anon_sym_switch] = ACTIONS(2669), - [anon_sym_case] = ACTIONS(2669), - [anon_sym_default] = ACTIONS(2669), - [anon_sym_while] = ACTIONS(2669), - [anon_sym_do] = ACTIONS(2669), - [anon_sym_for] = ACTIONS(2669), - [anon_sym_return] = ACTIONS(2669), - [anon_sym_break] = ACTIONS(2669), - [anon_sym_continue] = ACTIONS(2669), - [anon_sym_goto] = ACTIONS(2669), - [anon_sym_DASH_DASH] = ACTIONS(2671), - [anon_sym_PLUS_PLUS] = ACTIONS(2671), - [anon_sym_sizeof] = ACTIONS(2669), - [sym_number_literal] = ACTIONS(2671), - [anon_sym_L_SQUOTE] = ACTIONS(2671), - [anon_sym_u_SQUOTE] = ACTIONS(2671), - [anon_sym_U_SQUOTE] = ACTIONS(2671), - [anon_sym_u8_SQUOTE] = ACTIONS(2671), - [anon_sym_SQUOTE] = ACTIONS(2671), - [anon_sym_L_DQUOTE] = ACTIONS(2671), - [anon_sym_u_DQUOTE] = ACTIONS(2671), - [anon_sym_U_DQUOTE] = ACTIONS(2671), - [anon_sym_u8_DQUOTE] = ACTIONS(2671), - [anon_sym_DQUOTE] = ACTIONS(2671), - [sym_true] = ACTIONS(2669), - [sym_false] = ACTIONS(2669), - [sym_null] = ACTIONS(2669), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2669), - [anon_sym_decltype] = ACTIONS(2669), - [anon_sym_virtual] = ACTIONS(2669), - [anon_sym_explicit] = ACTIONS(2669), - [anon_sym_typename] = ACTIONS(2669), - [anon_sym_template] = ACTIONS(2669), - [anon_sym_operator] = ACTIONS(2669), - [anon_sym_try] = ACTIONS(2669), - [anon_sym_delete] = ACTIONS(2669), - [anon_sym_throw] = ACTIONS(2669), - [anon_sym_namespace] = ACTIONS(2669), - [anon_sym_using] = ACTIONS(2669), - [anon_sym_static_assert] = ACTIONS(2669), - [anon_sym_concept] = ACTIONS(2669), - [anon_sym_co_return] = ACTIONS(2669), - [anon_sym_co_yield] = ACTIONS(2669), - [anon_sym_co_await] = ACTIONS(2669), - [anon_sym_new] = ACTIONS(2669), - [anon_sym_requires] = ACTIONS(2669), - [sym_this] = ACTIONS(2669), - [sym_nullptr] = ACTIONS(2669), - [sym_raw_string_literal] = ACTIONS(2671), - }, - [489] = { - [sym_identifier] = ACTIONS(2673), - [aux_sym_preproc_include_token1] = ACTIONS(2673), - [aux_sym_preproc_def_token1] = ACTIONS(2673), - [aux_sym_preproc_if_token1] = ACTIONS(2673), - [aux_sym_preproc_if_token2] = ACTIONS(2673), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2673), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2673), - [aux_sym_preproc_else_token1] = ACTIONS(2673), - [aux_sym_preproc_elif_token1] = ACTIONS(2673), - [sym_preproc_directive] = ACTIONS(2673), - [anon_sym_LPAREN2] = ACTIONS(2675), - [anon_sym_BANG] = ACTIONS(2675), - [anon_sym_TILDE] = ACTIONS(2675), - [anon_sym_DASH] = ACTIONS(2673), - [anon_sym_PLUS] = ACTIONS(2673), - [anon_sym_STAR] = ACTIONS(2675), - [anon_sym_AMP_AMP] = ACTIONS(2675), - [anon_sym_AMP] = ACTIONS(2673), - [anon_sym_SEMI] = ACTIONS(2675), - [anon_sym_typedef] = ACTIONS(2673), - [anon_sym_extern] = ACTIONS(2673), - [anon_sym___attribute__] = ACTIONS(2673), - [anon_sym_COLON_COLON] = ACTIONS(2675), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2675), - [anon_sym___declspec] = ACTIONS(2673), - [anon_sym___based] = ACTIONS(2673), - [anon_sym___cdecl] = ACTIONS(2673), - [anon_sym___clrcall] = ACTIONS(2673), - [anon_sym___stdcall] = ACTIONS(2673), - [anon_sym___fastcall] = ACTIONS(2673), - [anon_sym___thiscall] = ACTIONS(2673), - [anon_sym___vectorcall] = ACTIONS(2673), - [anon_sym_LBRACE] = ACTIONS(2675), - [anon_sym_LBRACK] = ACTIONS(2673), - [anon_sym_static] = ACTIONS(2673), - [anon_sym_register] = ACTIONS(2673), - [anon_sym_inline] = ACTIONS(2673), - [anon_sym_thread_local] = ACTIONS(2673), - [anon_sym_const] = ACTIONS(2673), - [anon_sym_volatile] = ACTIONS(2673), - [anon_sym_restrict] = ACTIONS(2673), - [anon_sym__Atomic] = ACTIONS(2673), - [anon_sym_mutable] = ACTIONS(2673), - [anon_sym_constexpr] = ACTIONS(2673), - [anon_sym_constinit] = ACTIONS(2673), - [anon_sym_consteval] = ACTIONS(2673), - [anon_sym_signed] = ACTIONS(2673), - [anon_sym_unsigned] = ACTIONS(2673), - [anon_sym_long] = ACTIONS(2673), - [anon_sym_short] = ACTIONS(2673), - [sym_primitive_type] = ACTIONS(2673), - [anon_sym_enum] = ACTIONS(2673), - [anon_sym_class] = ACTIONS(2673), - [anon_sym_struct] = ACTIONS(2673), - [anon_sym_union] = ACTIONS(2673), - [anon_sym_if] = ACTIONS(2673), - [anon_sym_switch] = ACTIONS(2673), - [anon_sym_case] = ACTIONS(2673), - [anon_sym_default] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2673), - [anon_sym_do] = ACTIONS(2673), - [anon_sym_for] = ACTIONS(2673), - [anon_sym_return] = ACTIONS(2673), - [anon_sym_break] = ACTIONS(2673), - [anon_sym_continue] = ACTIONS(2673), - [anon_sym_goto] = ACTIONS(2673), - [anon_sym_DASH_DASH] = ACTIONS(2675), - [anon_sym_PLUS_PLUS] = ACTIONS(2675), - [anon_sym_sizeof] = ACTIONS(2673), - [sym_number_literal] = ACTIONS(2675), - [anon_sym_L_SQUOTE] = ACTIONS(2675), - [anon_sym_u_SQUOTE] = ACTIONS(2675), - [anon_sym_U_SQUOTE] = ACTIONS(2675), - [anon_sym_u8_SQUOTE] = ACTIONS(2675), - [anon_sym_SQUOTE] = ACTIONS(2675), - [anon_sym_L_DQUOTE] = ACTIONS(2675), - [anon_sym_u_DQUOTE] = ACTIONS(2675), - [anon_sym_U_DQUOTE] = ACTIONS(2675), - [anon_sym_u8_DQUOTE] = ACTIONS(2675), - [anon_sym_DQUOTE] = ACTIONS(2675), - [sym_true] = ACTIONS(2673), - [sym_false] = ACTIONS(2673), - [sym_null] = ACTIONS(2673), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2673), - [anon_sym_decltype] = ACTIONS(2673), - [anon_sym_virtual] = ACTIONS(2673), - [anon_sym_explicit] = ACTIONS(2673), - [anon_sym_typename] = ACTIONS(2673), - [anon_sym_template] = ACTIONS(2673), - [anon_sym_operator] = ACTIONS(2673), - [anon_sym_try] = ACTIONS(2673), - [anon_sym_delete] = ACTIONS(2673), - [anon_sym_throw] = ACTIONS(2673), - [anon_sym_namespace] = ACTIONS(2673), - [anon_sym_using] = ACTIONS(2673), - [anon_sym_static_assert] = ACTIONS(2673), - [anon_sym_concept] = ACTIONS(2673), - [anon_sym_co_return] = ACTIONS(2673), - [anon_sym_co_yield] = ACTIONS(2673), - [anon_sym_co_await] = ACTIONS(2673), - [anon_sym_new] = ACTIONS(2673), - [anon_sym_requires] = ACTIONS(2673), - [sym_this] = ACTIONS(2673), - [sym_nullptr] = ACTIONS(2673), - [sym_raw_string_literal] = ACTIONS(2675), - }, - [490] = { - [sym_identifier] = ACTIONS(2677), - [aux_sym_preproc_include_token1] = ACTIONS(2677), - [aux_sym_preproc_def_token1] = ACTIONS(2677), - [aux_sym_preproc_if_token1] = ACTIONS(2677), - [aux_sym_preproc_if_token2] = ACTIONS(2677), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2677), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2677), - [aux_sym_preproc_else_token1] = ACTIONS(2677), - [aux_sym_preproc_elif_token1] = ACTIONS(2677), - [sym_preproc_directive] = ACTIONS(2677), - [anon_sym_LPAREN2] = ACTIONS(2679), - [anon_sym_BANG] = ACTIONS(2679), - [anon_sym_TILDE] = ACTIONS(2679), - [anon_sym_DASH] = ACTIONS(2677), - [anon_sym_PLUS] = ACTIONS(2677), - [anon_sym_STAR] = ACTIONS(2679), - [anon_sym_AMP_AMP] = ACTIONS(2679), - [anon_sym_AMP] = ACTIONS(2677), - [anon_sym_SEMI] = ACTIONS(2679), - [anon_sym_typedef] = ACTIONS(2677), - [anon_sym_extern] = ACTIONS(2677), - [anon_sym___attribute__] = ACTIONS(2677), - [anon_sym_COLON_COLON] = ACTIONS(2679), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2679), - [anon_sym___declspec] = ACTIONS(2677), - [anon_sym___based] = ACTIONS(2677), - [anon_sym___cdecl] = ACTIONS(2677), - [anon_sym___clrcall] = ACTIONS(2677), - [anon_sym___stdcall] = ACTIONS(2677), - [anon_sym___fastcall] = ACTIONS(2677), - [anon_sym___thiscall] = ACTIONS(2677), - [anon_sym___vectorcall] = ACTIONS(2677), - [anon_sym_LBRACE] = ACTIONS(2679), - [anon_sym_LBRACK] = ACTIONS(2677), - [anon_sym_static] = ACTIONS(2677), - [anon_sym_register] = ACTIONS(2677), - [anon_sym_inline] = ACTIONS(2677), - [anon_sym_thread_local] = ACTIONS(2677), - [anon_sym_const] = ACTIONS(2677), - [anon_sym_volatile] = ACTIONS(2677), - [anon_sym_restrict] = ACTIONS(2677), - [anon_sym__Atomic] = ACTIONS(2677), - [anon_sym_mutable] = ACTIONS(2677), - [anon_sym_constexpr] = ACTIONS(2677), - [anon_sym_constinit] = ACTIONS(2677), - [anon_sym_consteval] = ACTIONS(2677), - [anon_sym_signed] = ACTIONS(2677), - [anon_sym_unsigned] = ACTIONS(2677), - [anon_sym_long] = ACTIONS(2677), - [anon_sym_short] = ACTIONS(2677), - [sym_primitive_type] = ACTIONS(2677), - [anon_sym_enum] = ACTIONS(2677), - [anon_sym_class] = ACTIONS(2677), - [anon_sym_struct] = ACTIONS(2677), - [anon_sym_union] = ACTIONS(2677), - [anon_sym_if] = ACTIONS(2677), - [anon_sym_switch] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2677), - [anon_sym_default] = ACTIONS(2677), - [anon_sym_while] = ACTIONS(2677), - [anon_sym_do] = ACTIONS(2677), - [anon_sym_for] = ACTIONS(2677), - [anon_sym_return] = ACTIONS(2677), - [anon_sym_break] = ACTIONS(2677), - [anon_sym_continue] = ACTIONS(2677), - [anon_sym_goto] = ACTIONS(2677), - [anon_sym_DASH_DASH] = ACTIONS(2679), - [anon_sym_PLUS_PLUS] = ACTIONS(2679), - [anon_sym_sizeof] = ACTIONS(2677), - [sym_number_literal] = ACTIONS(2679), - [anon_sym_L_SQUOTE] = ACTIONS(2679), - [anon_sym_u_SQUOTE] = ACTIONS(2679), - [anon_sym_U_SQUOTE] = ACTIONS(2679), - [anon_sym_u8_SQUOTE] = ACTIONS(2679), - [anon_sym_SQUOTE] = ACTIONS(2679), - [anon_sym_L_DQUOTE] = ACTIONS(2679), - [anon_sym_u_DQUOTE] = ACTIONS(2679), - [anon_sym_U_DQUOTE] = ACTIONS(2679), - [anon_sym_u8_DQUOTE] = ACTIONS(2679), - [anon_sym_DQUOTE] = ACTIONS(2679), - [sym_true] = ACTIONS(2677), - [sym_false] = ACTIONS(2677), - [sym_null] = ACTIONS(2677), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2677), - [anon_sym_decltype] = ACTIONS(2677), - [anon_sym_virtual] = ACTIONS(2677), - [anon_sym_explicit] = ACTIONS(2677), - [anon_sym_typename] = ACTIONS(2677), - [anon_sym_template] = ACTIONS(2677), - [anon_sym_operator] = ACTIONS(2677), - [anon_sym_try] = ACTIONS(2677), - [anon_sym_delete] = ACTIONS(2677), - [anon_sym_throw] = ACTIONS(2677), - [anon_sym_namespace] = ACTIONS(2677), - [anon_sym_using] = ACTIONS(2677), - [anon_sym_static_assert] = ACTIONS(2677), - [anon_sym_concept] = ACTIONS(2677), - [anon_sym_co_return] = ACTIONS(2677), - [anon_sym_co_yield] = ACTIONS(2677), - [anon_sym_co_await] = ACTIONS(2677), - [anon_sym_new] = ACTIONS(2677), - [anon_sym_requires] = ACTIONS(2677), - [sym_this] = ACTIONS(2677), - [sym_nullptr] = ACTIONS(2677), - [sym_raw_string_literal] = ACTIONS(2679), - }, - [491] = { - [sym_identifier] = ACTIONS(2681), - [aux_sym_preproc_include_token1] = ACTIONS(2681), - [aux_sym_preproc_def_token1] = ACTIONS(2681), - [aux_sym_preproc_if_token1] = ACTIONS(2681), - [aux_sym_preproc_if_token2] = ACTIONS(2681), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2681), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2681), - [aux_sym_preproc_else_token1] = ACTIONS(2681), - [aux_sym_preproc_elif_token1] = ACTIONS(2681), - [sym_preproc_directive] = ACTIONS(2681), - [anon_sym_LPAREN2] = ACTIONS(2683), - [anon_sym_BANG] = ACTIONS(2683), - [anon_sym_TILDE] = ACTIONS(2683), - [anon_sym_DASH] = ACTIONS(2681), - [anon_sym_PLUS] = ACTIONS(2681), - [anon_sym_STAR] = ACTIONS(2683), - [anon_sym_AMP_AMP] = ACTIONS(2683), - [anon_sym_AMP] = ACTIONS(2681), - [anon_sym_SEMI] = ACTIONS(2683), - [anon_sym_typedef] = ACTIONS(2681), - [anon_sym_extern] = ACTIONS(2681), - [anon_sym___attribute__] = ACTIONS(2681), - [anon_sym_COLON_COLON] = ACTIONS(2683), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2683), - [anon_sym___declspec] = ACTIONS(2681), - [anon_sym___based] = ACTIONS(2681), - [anon_sym___cdecl] = ACTIONS(2681), - [anon_sym___clrcall] = ACTIONS(2681), - [anon_sym___stdcall] = ACTIONS(2681), - [anon_sym___fastcall] = ACTIONS(2681), - [anon_sym___thiscall] = ACTIONS(2681), - [anon_sym___vectorcall] = ACTIONS(2681), - [anon_sym_LBRACE] = ACTIONS(2683), - [anon_sym_LBRACK] = ACTIONS(2681), - [anon_sym_static] = ACTIONS(2681), - [anon_sym_register] = ACTIONS(2681), - [anon_sym_inline] = ACTIONS(2681), - [anon_sym_thread_local] = ACTIONS(2681), - [anon_sym_const] = ACTIONS(2681), - [anon_sym_volatile] = ACTIONS(2681), - [anon_sym_restrict] = ACTIONS(2681), - [anon_sym__Atomic] = ACTIONS(2681), - [anon_sym_mutable] = ACTIONS(2681), - [anon_sym_constexpr] = ACTIONS(2681), - [anon_sym_constinit] = ACTIONS(2681), - [anon_sym_consteval] = ACTIONS(2681), - [anon_sym_signed] = ACTIONS(2681), - [anon_sym_unsigned] = ACTIONS(2681), - [anon_sym_long] = ACTIONS(2681), - [anon_sym_short] = ACTIONS(2681), - [sym_primitive_type] = ACTIONS(2681), - [anon_sym_enum] = ACTIONS(2681), - [anon_sym_class] = ACTIONS(2681), - [anon_sym_struct] = ACTIONS(2681), - [anon_sym_union] = ACTIONS(2681), - [anon_sym_if] = ACTIONS(2681), - [anon_sym_switch] = ACTIONS(2681), - [anon_sym_case] = ACTIONS(2681), - [anon_sym_default] = ACTIONS(2681), - [anon_sym_while] = ACTIONS(2681), - [anon_sym_do] = ACTIONS(2681), - [anon_sym_for] = ACTIONS(2681), - [anon_sym_return] = ACTIONS(2681), - [anon_sym_break] = ACTIONS(2681), - [anon_sym_continue] = ACTIONS(2681), - [anon_sym_goto] = ACTIONS(2681), - [anon_sym_DASH_DASH] = ACTIONS(2683), - [anon_sym_PLUS_PLUS] = ACTIONS(2683), - [anon_sym_sizeof] = ACTIONS(2681), - [sym_number_literal] = ACTIONS(2683), - [anon_sym_L_SQUOTE] = ACTIONS(2683), - [anon_sym_u_SQUOTE] = ACTIONS(2683), - [anon_sym_U_SQUOTE] = ACTIONS(2683), - [anon_sym_u8_SQUOTE] = ACTIONS(2683), - [anon_sym_SQUOTE] = ACTIONS(2683), - [anon_sym_L_DQUOTE] = ACTIONS(2683), - [anon_sym_u_DQUOTE] = ACTIONS(2683), - [anon_sym_U_DQUOTE] = ACTIONS(2683), - [anon_sym_u8_DQUOTE] = ACTIONS(2683), - [anon_sym_DQUOTE] = ACTIONS(2683), - [sym_true] = ACTIONS(2681), - [sym_false] = ACTIONS(2681), - [sym_null] = ACTIONS(2681), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2681), - [anon_sym_decltype] = ACTIONS(2681), - [anon_sym_virtual] = ACTIONS(2681), - [anon_sym_explicit] = ACTIONS(2681), - [anon_sym_typename] = ACTIONS(2681), - [anon_sym_template] = ACTIONS(2681), - [anon_sym_operator] = ACTIONS(2681), - [anon_sym_try] = ACTIONS(2681), - [anon_sym_delete] = ACTIONS(2681), - [anon_sym_throw] = ACTIONS(2681), - [anon_sym_namespace] = ACTIONS(2681), - [anon_sym_using] = ACTIONS(2681), - [anon_sym_static_assert] = ACTIONS(2681), - [anon_sym_concept] = ACTIONS(2681), - [anon_sym_co_return] = ACTIONS(2681), - [anon_sym_co_yield] = ACTIONS(2681), - [anon_sym_co_await] = ACTIONS(2681), - [anon_sym_new] = ACTIONS(2681), - [anon_sym_requires] = ACTIONS(2681), - [sym_this] = ACTIONS(2681), - [sym_nullptr] = ACTIONS(2681), - [sym_raw_string_literal] = ACTIONS(2683), - }, - [492] = { - [sym_identifier] = ACTIONS(2685), - [aux_sym_preproc_include_token1] = ACTIONS(2685), - [aux_sym_preproc_def_token1] = ACTIONS(2685), - [aux_sym_preproc_if_token1] = ACTIONS(2685), - [aux_sym_preproc_if_token2] = ACTIONS(2685), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2685), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2685), - [aux_sym_preproc_else_token1] = ACTIONS(2685), - [aux_sym_preproc_elif_token1] = ACTIONS(2685), - [sym_preproc_directive] = ACTIONS(2685), - [anon_sym_LPAREN2] = ACTIONS(2687), - [anon_sym_BANG] = ACTIONS(2687), - [anon_sym_TILDE] = ACTIONS(2687), - [anon_sym_DASH] = ACTIONS(2685), - [anon_sym_PLUS] = ACTIONS(2685), - [anon_sym_STAR] = ACTIONS(2687), - [anon_sym_AMP_AMP] = ACTIONS(2687), - [anon_sym_AMP] = ACTIONS(2685), - [anon_sym_SEMI] = ACTIONS(2687), - [anon_sym_typedef] = ACTIONS(2685), - [anon_sym_extern] = ACTIONS(2685), - [anon_sym___attribute__] = ACTIONS(2685), - [anon_sym_COLON_COLON] = ACTIONS(2687), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2687), - [anon_sym___declspec] = ACTIONS(2685), - [anon_sym___based] = ACTIONS(2685), - [anon_sym___cdecl] = ACTIONS(2685), - [anon_sym___clrcall] = ACTIONS(2685), - [anon_sym___stdcall] = ACTIONS(2685), - [anon_sym___fastcall] = ACTIONS(2685), - [anon_sym___thiscall] = ACTIONS(2685), - [anon_sym___vectorcall] = ACTIONS(2685), - [anon_sym_LBRACE] = ACTIONS(2687), - [anon_sym_LBRACK] = ACTIONS(2685), - [anon_sym_static] = ACTIONS(2685), - [anon_sym_register] = ACTIONS(2685), - [anon_sym_inline] = ACTIONS(2685), - [anon_sym_thread_local] = ACTIONS(2685), - [anon_sym_const] = ACTIONS(2685), - [anon_sym_volatile] = ACTIONS(2685), - [anon_sym_restrict] = ACTIONS(2685), - [anon_sym__Atomic] = ACTIONS(2685), - [anon_sym_mutable] = ACTIONS(2685), - [anon_sym_constexpr] = ACTIONS(2685), - [anon_sym_constinit] = ACTIONS(2685), - [anon_sym_consteval] = ACTIONS(2685), - [anon_sym_signed] = ACTIONS(2685), - [anon_sym_unsigned] = ACTIONS(2685), - [anon_sym_long] = ACTIONS(2685), - [anon_sym_short] = ACTIONS(2685), - [sym_primitive_type] = ACTIONS(2685), - [anon_sym_enum] = ACTIONS(2685), - [anon_sym_class] = ACTIONS(2685), - [anon_sym_struct] = ACTIONS(2685), - [anon_sym_union] = ACTIONS(2685), - [anon_sym_if] = ACTIONS(2685), - [anon_sym_switch] = ACTIONS(2685), - [anon_sym_case] = ACTIONS(2685), - [anon_sym_default] = ACTIONS(2685), - [anon_sym_while] = ACTIONS(2685), - [anon_sym_do] = ACTIONS(2685), - [anon_sym_for] = ACTIONS(2685), - [anon_sym_return] = ACTIONS(2685), - [anon_sym_break] = ACTIONS(2685), - [anon_sym_continue] = ACTIONS(2685), - [anon_sym_goto] = ACTIONS(2685), - [anon_sym_DASH_DASH] = ACTIONS(2687), - [anon_sym_PLUS_PLUS] = ACTIONS(2687), - [anon_sym_sizeof] = ACTIONS(2685), - [sym_number_literal] = ACTIONS(2687), - [anon_sym_L_SQUOTE] = ACTIONS(2687), - [anon_sym_u_SQUOTE] = ACTIONS(2687), - [anon_sym_U_SQUOTE] = ACTIONS(2687), - [anon_sym_u8_SQUOTE] = ACTIONS(2687), - [anon_sym_SQUOTE] = ACTIONS(2687), - [anon_sym_L_DQUOTE] = ACTIONS(2687), - [anon_sym_u_DQUOTE] = ACTIONS(2687), - [anon_sym_U_DQUOTE] = ACTIONS(2687), - [anon_sym_u8_DQUOTE] = ACTIONS(2687), - [anon_sym_DQUOTE] = ACTIONS(2687), - [sym_true] = ACTIONS(2685), - [sym_false] = ACTIONS(2685), - [sym_null] = ACTIONS(2685), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2685), - [anon_sym_decltype] = ACTIONS(2685), - [anon_sym_virtual] = ACTIONS(2685), - [anon_sym_explicit] = ACTIONS(2685), - [anon_sym_typename] = ACTIONS(2685), - [anon_sym_template] = ACTIONS(2685), - [anon_sym_operator] = ACTIONS(2685), - [anon_sym_try] = ACTIONS(2685), - [anon_sym_delete] = ACTIONS(2685), - [anon_sym_throw] = ACTIONS(2685), - [anon_sym_namespace] = ACTIONS(2685), - [anon_sym_using] = ACTIONS(2685), - [anon_sym_static_assert] = ACTIONS(2685), - [anon_sym_concept] = ACTIONS(2685), - [anon_sym_co_return] = ACTIONS(2685), - [anon_sym_co_yield] = ACTIONS(2685), - [anon_sym_co_await] = ACTIONS(2685), - [anon_sym_new] = ACTIONS(2685), - [anon_sym_requires] = ACTIONS(2685), - [sym_this] = ACTIONS(2685), - [sym_nullptr] = ACTIONS(2685), - [sym_raw_string_literal] = ACTIONS(2687), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [493] = { - [sym_type_qualifier] = STATE(2979), - [sym__type_specifier] = STATE(3924), - [sym_sized_type_specifier] = STATE(2872), - [sym_enum_specifier] = STATE(2872), - [sym_struct_specifier] = STATE(2872), - [sym_union_specifier] = STATE(2872), - [sym__expression] = STATE(3549), - [sym_conditional_expression] = STATE(3881), - [sym_assignment_expression] = STATE(3881), - [sym_pointer_expression] = STATE(2977), - [sym_unary_expression] = STATE(3881), - [sym_binary_expression] = STATE(3881), - [sym_update_expression] = STATE(3881), - [sym_cast_expression] = STATE(3881), - [sym_type_descriptor] = STATE(5351), - [sym_sizeof_expression] = STATE(3881), - [sym_subscript_expression] = STATE(2977), - [sym_call_expression] = STATE(2977), - [sym_field_expression] = STATE(2977), - [sym_compound_literal_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(2977), - [sym_char_literal] = STATE(3701), - [sym_concatenated_string] = STATE(3701), - [sym_string_literal] = STATE(3219), - [sym_placeholder_type_specifier] = STATE(2872), - [sym_decltype_auto] = STATE(2878), - [sym_decltype] = STATE(2872), - [sym_class_specifier] = STATE(2872), - [sym__class_name] = STATE(6063), - [sym_dependent_type] = STATE(2872), - [sym_template_type] = STATE(4194), - [sym_template_function] = STATE(3881), - [sym_co_await_expression] = STATE(3881), - [sym_new_expression] = STATE(3881), - [sym_delete_expression] = STATE(3881), - [sym_requires_clause] = STATE(3881), - [sym_requires_expression] = STATE(3881), - [sym_lambda_expression] = STATE(3881), - [sym_lambda_capture_specifier] = STATE(4519), - [sym_fold_expression] = STATE(3881), - [sym_parameter_pack_expansion] = STATE(3881), - [sym_type_parameter_pack_expansion] = STATE(5696), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4633), - [sym_qualified_identifier] = STATE(2977), - [sym_qualified_type_identifier] = STATE(4305), - [sym_user_defined_literal] = STATE(3881), - [aux_sym_type_definition_repeat1] = STATE(2979), - [aux_sym_sized_type_specifier_repeat1] = STATE(2182), - [sym_identifier] = ACTIONS(2529), - [anon_sym_LPAREN2] = ACTIONS(2531), - [anon_sym_BANG] = ACTIONS(2533), - [anon_sym_TILDE] = ACTIONS(2533), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_STAR] = ACTIONS(2537), - [anon_sym_AMP] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(2539), - [anon_sym_LBRACK] = ACTIONS(2272), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(2541), - [anon_sym_unsigned] = ACTIONS(2541), - [anon_sym_long] = ACTIONS(2541), - [anon_sym_short] = ACTIONS(2541), - [sym_primitive_type] = ACTIONS(2543), - [anon_sym_enum] = ACTIONS(2545), - [anon_sym_class] = ACTIONS(2547), - [anon_sym_struct] = ACTIONS(2549), - [anon_sym_union] = ACTIONS(2551), - [anon_sym_DASH_DASH] = ACTIONS(2553), - [anon_sym_PLUS_PLUS] = ACTIONS(2553), - [anon_sym_sizeof] = ACTIONS(2555), - [sym_number_literal] = ACTIONS(2557), - [anon_sym_L_SQUOTE] = ACTIONS(2559), - [anon_sym_u_SQUOTE] = ACTIONS(2559), - [anon_sym_U_SQUOTE] = ACTIONS(2559), - [anon_sym_u8_SQUOTE] = ACTIONS(2559), - [anon_sym_SQUOTE] = ACTIONS(2559), - [anon_sym_L_DQUOTE] = ACTIONS(2561), - [anon_sym_u_DQUOTE] = ACTIONS(2561), - [anon_sym_U_DQUOTE] = ACTIONS(2561), - [anon_sym_u8_DQUOTE] = ACTIONS(2561), - [anon_sym_DQUOTE] = ACTIONS(2561), - [sym_true] = ACTIONS(2563), - [sym_false] = ACTIONS(2563), - [sym_null] = ACTIONS(2563), + [424] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token2] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [aux_sym_preproc_else_token1] = ACTIONS(2595), + [aux_sym_preproc_elif_token1] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2565), - [anon_sym_decltype] = ACTIONS(2567), - [anon_sym_typename] = ACTIONS(2569), - [anon_sym_template] = ACTIONS(972), - [anon_sym_GT2] = ACTIONS(2689), - [anon_sym_delete] = ACTIONS(2573), - [anon_sym_co_await] = ACTIONS(2575), - [anon_sym_new] = ACTIONS(2577), - [anon_sym_requires] = ACTIONS(2579), - [sym_this] = ACTIONS(2563), - [sym_nullptr] = ACTIONS(2563), - [sym_raw_string_literal] = ACTIONS(2581), - }, - [494] = { - [sym_identifier] = ACTIONS(2691), - [aux_sym_preproc_include_token1] = ACTIONS(2691), - [aux_sym_preproc_def_token1] = ACTIONS(2691), - [aux_sym_preproc_if_token1] = ACTIONS(2691), - [aux_sym_preproc_if_token2] = ACTIONS(2691), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2691), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2691), - [aux_sym_preproc_else_token1] = ACTIONS(2691), - [aux_sym_preproc_elif_token1] = ACTIONS(2691), - [sym_preproc_directive] = ACTIONS(2691), - [anon_sym_LPAREN2] = ACTIONS(2693), - [anon_sym_BANG] = ACTIONS(2693), - [anon_sym_TILDE] = ACTIONS(2693), - [anon_sym_DASH] = ACTIONS(2691), - [anon_sym_PLUS] = ACTIONS(2691), - [anon_sym_STAR] = ACTIONS(2693), - [anon_sym_AMP_AMP] = ACTIONS(2693), - [anon_sym_AMP] = ACTIONS(2691), - [anon_sym_SEMI] = ACTIONS(2693), - [anon_sym_typedef] = ACTIONS(2691), - [anon_sym_extern] = ACTIONS(2691), - [anon_sym___attribute__] = ACTIONS(2691), - [anon_sym_COLON_COLON] = ACTIONS(2693), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2693), - [anon_sym___declspec] = ACTIONS(2691), - [anon_sym___based] = ACTIONS(2691), - [anon_sym___cdecl] = ACTIONS(2691), - [anon_sym___clrcall] = ACTIONS(2691), - [anon_sym___stdcall] = ACTIONS(2691), - [anon_sym___fastcall] = ACTIONS(2691), - [anon_sym___thiscall] = ACTIONS(2691), - [anon_sym___vectorcall] = ACTIONS(2691), - [anon_sym_LBRACE] = ACTIONS(2693), - [anon_sym_LBRACK] = ACTIONS(2691), - [anon_sym_static] = ACTIONS(2691), - [anon_sym_register] = ACTIONS(2691), - [anon_sym_inline] = ACTIONS(2691), - [anon_sym_thread_local] = ACTIONS(2691), - [anon_sym_const] = ACTIONS(2691), - [anon_sym_volatile] = ACTIONS(2691), - [anon_sym_restrict] = ACTIONS(2691), - [anon_sym__Atomic] = ACTIONS(2691), - [anon_sym_mutable] = ACTIONS(2691), - [anon_sym_constexpr] = ACTIONS(2691), - [anon_sym_constinit] = ACTIONS(2691), - [anon_sym_consteval] = ACTIONS(2691), - [anon_sym_signed] = ACTIONS(2691), - [anon_sym_unsigned] = ACTIONS(2691), - [anon_sym_long] = ACTIONS(2691), - [anon_sym_short] = ACTIONS(2691), - [sym_primitive_type] = ACTIONS(2691), - [anon_sym_enum] = ACTIONS(2691), - [anon_sym_class] = ACTIONS(2691), - [anon_sym_struct] = ACTIONS(2691), - [anon_sym_union] = ACTIONS(2691), - [anon_sym_if] = ACTIONS(2691), - [anon_sym_switch] = ACTIONS(2691), - [anon_sym_case] = ACTIONS(2691), - [anon_sym_default] = ACTIONS(2691), - [anon_sym_while] = ACTIONS(2691), - [anon_sym_do] = ACTIONS(2691), - [anon_sym_for] = ACTIONS(2691), - [anon_sym_return] = ACTIONS(2691), - [anon_sym_break] = ACTIONS(2691), - [anon_sym_continue] = ACTIONS(2691), - [anon_sym_goto] = ACTIONS(2691), - [anon_sym_DASH_DASH] = ACTIONS(2693), - [anon_sym_PLUS_PLUS] = ACTIONS(2693), - [anon_sym_sizeof] = ACTIONS(2691), - [sym_number_literal] = ACTIONS(2693), - [anon_sym_L_SQUOTE] = ACTIONS(2693), - [anon_sym_u_SQUOTE] = ACTIONS(2693), - [anon_sym_U_SQUOTE] = ACTIONS(2693), - [anon_sym_u8_SQUOTE] = ACTIONS(2693), - [anon_sym_SQUOTE] = ACTIONS(2693), - [anon_sym_L_DQUOTE] = ACTIONS(2693), - [anon_sym_u_DQUOTE] = ACTIONS(2693), - [anon_sym_U_DQUOTE] = ACTIONS(2693), - [anon_sym_u8_DQUOTE] = ACTIONS(2693), - [anon_sym_DQUOTE] = ACTIONS(2693), - [sym_true] = ACTIONS(2691), - [sym_false] = ACTIONS(2691), - [sym_null] = ACTIONS(2691), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2691), - [anon_sym_decltype] = ACTIONS(2691), - [anon_sym_virtual] = ACTIONS(2691), - [anon_sym_explicit] = ACTIONS(2691), - [anon_sym_typename] = ACTIONS(2691), - [anon_sym_template] = ACTIONS(2691), - [anon_sym_operator] = ACTIONS(2691), - [anon_sym_try] = ACTIONS(2691), - [anon_sym_delete] = ACTIONS(2691), - [anon_sym_throw] = ACTIONS(2691), - [anon_sym_namespace] = ACTIONS(2691), - [anon_sym_using] = ACTIONS(2691), - [anon_sym_static_assert] = ACTIONS(2691), - [anon_sym_concept] = ACTIONS(2691), - [anon_sym_co_return] = ACTIONS(2691), - [anon_sym_co_yield] = ACTIONS(2691), - [anon_sym_co_await] = ACTIONS(2691), - [anon_sym_new] = ACTIONS(2691), - [anon_sym_requires] = ACTIONS(2691), - [sym_this] = ACTIONS(2691), - [sym_nullptr] = ACTIONS(2691), - [sym_raw_string_literal] = ACTIONS(2693), - }, - [495] = { - [sym_identifier] = ACTIONS(2695), - [aux_sym_preproc_include_token1] = ACTIONS(2695), - [aux_sym_preproc_def_token1] = ACTIONS(2695), - [aux_sym_preproc_if_token1] = ACTIONS(2695), - [aux_sym_preproc_if_token2] = ACTIONS(2695), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2695), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2695), - [aux_sym_preproc_else_token1] = ACTIONS(2695), - [aux_sym_preproc_elif_token1] = ACTIONS(2695), - [sym_preproc_directive] = ACTIONS(2695), - [anon_sym_LPAREN2] = ACTIONS(2697), - [anon_sym_BANG] = ACTIONS(2697), - [anon_sym_TILDE] = ACTIONS(2697), - [anon_sym_DASH] = ACTIONS(2695), - [anon_sym_PLUS] = ACTIONS(2695), - [anon_sym_STAR] = ACTIONS(2697), - [anon_sym_AMP_AMP] = ACTIONS(2697), - [anon_sym_AMP] = ACTIONS(2695), - [anon_sym_SEMI] = ACTIONS(2697), - [anon_sym_typedef] = ACTIONS(2695), - [anon_sym_extern] = ACTIONS(2695), - [anon_sym___attribute__] = ACTIONS(2695), - [anon_sym_COLON_COLON] = ACTIONS(2697), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2697), - [anon_sym___declspec] = ACTIONS(2695), - [anon_sym___based] = ACTIONS(2695), - [anon_sym___cdecl] = ACTIONS(2695), - [anon_sym___clrcall] = ACTIONS(2695), - [anon_sym___stdcall] = ACTIONS(2695), - [anon_sym___fastcall] = ACTIONS(2695), - [anon_sym___thiscall] = ACTIONS(2695), - [anon_sym___vectorcall] = ACTIONS(2695), - [anon_sym_LBRACE] = ACTIONS(2697), - [anon_sym_LBRACK] = ACTIONS(2695), - [anon_sym_static] = ACTIONS(2695), - [anon_sym_register] = ACTIONS(2695), - [anon_sym_inline] = ACTIONS(2695), - [anon_sym_thread_local] = ACTIONS(2695), - [anon_sym_const] = ACTIONS(2695), - [anon_sym_volatile] = ACTIONS(2695), - [anon_sym_restrict] = ACTIONS(2695), - [anon_sym__Atomic] = ACTIONS(2695), - [anon_sym_mutable] = ACTIONS(2695), - [anon_sym_constexpr] = ACTIONS(2695), - [anon_sym_constinit] = ACTIONS(2695), - [anon_sym_consteval] = ACTIONS(2695), - [anon_sym_signed] = ACTIONS(2695), - [anon_sym_unsigned] = ACTIONS(2695), - [anon_sym_long] = ACTIONS(2695), - [anon_sym_short] = ACTIONS(2695), - [sym_primitive_type] = ACTIONS(2695), - [anon_sym_enum] = ACTIONS(2695), - [anon_sym_class] = ACTIONS(2695), - [anon_sym_struct] = ACTIONS(2695), - [anon_sym_union] = ACTIONS(2695), - [anon_sym_if] = ACTIONS(2695), - [anon_sym_switch] = ACTIONS(2695), - [anon_sym_case] = ACTIONS(2695), - [anon_sym_default] = ACTIONS(2695), - [anon_sym_while] = ACTIONS(2695), - [anon_sym_do] = ACTIONS(2695), - [anon_sym_for] = ACTIONS(2695), - [anon_sym_return] = ACTIONS(2695), - [anon_sym_break] = ACTIONS(2695), - [anon_sym_continue] = ACTIONS(2695), - [anon_sym_goto] = ACTIONS(2695), - [anon_sym_DASH_DASH] = ACTIONS(2697), - [anon_sym_PLUS_PLUS] = ACTIONS(2697), - [anon_sym_sizeof] = ACTIONS(2695), - [sym_number_literal] = ACTIONS(2697), - [anon_sym_L_SQUOTE] = ACTIONS(2697), - [anon_sym_u_SQUOTE] = ACTIONS(2697), - [anon_sym_U_SQUOTE] = ACTIONS(2697), - [anon_sym_u8_SQUOTE] = ACTIONS(2697), - [anon_sym_SQUOTE] = ACTIONS(2697), - [anon_sym_L_DQUOTE] = ACTIONS(2697), - [anon_sym_u_DQUOTE] = ACTIONS(2697), - [anon_sym_U_DQUOTE] = ACTIONS(2697), - [anon_sym_u8_DQUOTE] = ACTIONS(2697), - [anon_sym_DQUOTE] = ACTIONS(2697), - [sym_true] = ACTIONS(2695), - [sym_false] = ACTIONS(2695), - [sym_null] = ACTIONS(2695), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2695), - [anon_sym_decltype] = ACTIONS(2695), - [anon_sym_virtual] = ACTIONS(2695), - [anon_sym_explicit] = ACTIONS(2695), - [anon_sym_typename] = ACTIONS(2695), - [anon_sym_template] = ACTIONS(2695), - [anon_sym_operator] = ACTIONS(2695), - [anon_sym_try] = ACTIONS(2695), - [anon_sym_delete] = ACTIONS(2695), - [anon_sym_throw] = ACTIONS(2695), - [anon_sym_namespace] = ACTIONS(2695), - [anon_sym_using] = ACTIONS(2695), - [anon_sym_static_assert] = ACTIONS(2695), - [anon_sym_concept] = ACTIONS(2695), - [anon_sym_co_return] = ACTIONS(2695), - [anon_sym_co_yield] = ACTIONS(2695), - [anon_sym_co_await] = ACTIONS(2695), - [anon_sym_new] = ACTIONS(2695), - [anon_sym_requires] = ACTIONS(2695), - [sym_this] = ACTIONS(2695), - [sym_nullptr] = ACTIONS(2695), - [sym_raw_string_literal] = ACTIONS(2697), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [496] = { - [sym_identifier] = ACTIONS(2699), - [aux_sym_preproc_include_token1] = ACTIONS(2699), - [aux_sym_preproc_def_token1] = ACTIONS(2699), - [aux_sym_preproc_if_token1] = ACTIONS(2699), - [aux_sym_preproc_if_token2] = ACTIONS(2699), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2699), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2699), - [aux_sym_preproc_else_token1] = ACTIONS(2699), - [aux_sym_preproc_elif_token1] = ACTIONS(2699), - [sym_preproc_directive] = ACTIONS(2699), - [anon_sym_LPAREN2] = ACTIONS(2701), - [anon_sym_BANG] = ACTIONS(2701), - [anon_sym_TILDE] = ACTIONS(2701), - [anon_sym_DASH] = ACTIONS(2699), - [anon_sym_PLUS] = ACTIONS(2699), - [anon_sym_STAR] = ACTIONS(2701), - [anon_sym_AMP_AMP] = ACTIONS(2701), - [anon_sym_AMP] = ACTIONS(2699), - [anon_sym_SEMI] = ACTIONS(2701), - [anon_sym_typedef] = ACTIONS(2699), - [anon_sym_extern] = ACTIONS(2699), - [anon_sym___attribute__] = ACTIONS(2699), - [anon_sym_COLON_COLON] = ACTIONS(2701), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2701), - [anon_sym___declspec] = ACTIONS(2699), - [anon_sym___based] = ACTIONS(2699), - [anon_sym___cdecl] = ACTIONS(2699), - [anon_sym___clrcall] = ACTIONS(2699), - [anon_sym___stdcall] = ACTIONS(2699), - [anon_sym___fastcall] = ACTIONS(2699), - [anon_sym___thiscall] = ACTIONS(2699), - [anon_sym___vectorcall] = ACTIONS(2699), - [anon_sym_LBRACE] = ACTIONS(2701), - [anon_sym_LBRACK] = ACTIONS(2699), - [anon_sym_static] = ACTIONS(2699), - [anon_sym_register] = ACTIONS(2699), - [anon_sym_inline] = ACTIONS(2699), - [anon_sym_thread_local] = ACTIONS(2699), - [anon_sym_const] = ACTIONS(2699), - [anon_sym_volatile] = ACTIONS(2699), - [anon_sym_restrict] = ACTIONS(2699), - [anon_sym__Atomic] = ACTIONS(2699), - [anon_sym_mutable] = ACTIONS(2699), - [anon_sym_constexpr] = ACTIONS(2699), - [anon_sym_constinit] = ACTIONS(2699), - [anon_sym_consteval] = ACTIONS(2699), - [anon_sym_signed] = ACTIONS(2699), - [anon_sym_unsigned] = ACTIONS(2699), - [anon_sym_long] = ACTIONS(2699), - [anon_sym_short] = ACTIONS(2699), - [sym_primitive_type] = ACTIONS(2699), - [anon_sym_enum] = ACTIONS(2699), - [anon_sym_class] = ACTIONS(2699), - [anon_sym_struct] = ACTIONS(2699), - [anon_sym_union] = ACTIONS(2699), - [anon_sym_if] = ACTIONS(2699), - [anon_sym_switch] = ACTIONS(2699), - [anon_sym_case] = ACTIONS(2699), - [anon_sym_default] = ACTIONS(2699), - [anon_sym_while] = ACTIONS(2699), - [anon_sym_do] = ACTIONS(2699), - [anon_sym_for] = ACTIONS(2699), - [anon_sym_return] = ACTIONS(2699), - [anon_sym_break] = ACTIONS(2699), - [anon_sym_continue] = ACTIONS(2699), - [anon_sym_goto] = ACTIONS(2699), - [anon_sym_DASH_DASH] = ACTIONS(2701), - [anon_sym_PLUS_PLUS] = ACTIONS(2701), - [anon_sym_sizeof] = ACTIONS(2699), - [sym_number_literal] = ACTIONS(2701), - [anon_sym_L_SQUOTE] = ACTIONS(2701), - [anon_sym_u_SQUOTE] = ACTIONS(2701), - [anon_sym_U_SQUOTE] = ACTIONS(2701), - [anon_sym_u8_SQUOTE] = ACTIONS(2701), - [anon_sym_SQUOTE] = ACTIONS(2701), - [anon_sym_L_DQUOTE] = ACTIONS(2701), - [anon_sym_u_DQUOTE] = ACTIONS(2701), - [anon_sym_U_DQUOTE] = ACTIONS(2701), - [anon_sym_u8_DQUOTE] = ACTIONS(2701), - [anon_sym_DQUOTE] = ACTIONS(2701), - [sym_true] = ACTIONS(2699), - [sym_false] = ACTIONS(2699), - [sym_null] = ACTIONS(2699), + [425] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token2] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [aux_sym_preproc_else_token1] = ACTIONS(2595), + [aux_sym_preproc_elif_token1] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2699), - [anon_sym_decltype] = ACTIONS(2699), - [anon_sym_virtual] = ACTIONS(2699), - [anon_sym_explicit] = ACTIONS(2699), - [anon_sym_typename] = ACTIONS(2699), - [anon_sym_template] = ACTIONS(2699), - [anon_sym_operator] = ACTIONS(2699), - [anon_sym_try] = ACTIONS(2699), - [anon_sym_delete] = ACTIONS(2699), - [anon_sym_throw] = ACTIONS(2699), - [anon_sym_namespace] = ACTIONS(2699), - [anon_sym_using] = ACTIONS(2699), - [anon_sym_static_assert] = ACTIONS(2699), - [anon_sym_concept] = ACTIONS(2699), - [anon_sym_co_return] = ACTIONS(2699), - [anon_sym_co_yield] = ACTIONS(2699), - [anon_sym_co_await] = ACTIONS(2699), - [anon_sym_new] = ACTIONS(2699), - [anon_sym_requires] = ACTIONS(2699), - [sym_this] = ACTIONS(2699), - [sym_nullptr] = ACTIONS(2699), - [sym_raw_string_literal] = ACTIONS(2701), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [497] = { - [sym_type_qualifier] = STATE(2979), - [sym__type_specifier] = STATE(3924), - [sym_sized_type_specifier] = STATE(2872), - [sym_enum_specifier] = STATE(2872), - [sym_struct_specifier] = STATE(2872), - [sym_union_specifier] = STATE(2872), - [sym__expression] = STATE(3536), - [sym_conditional_expression] = STATE(3881), - [sym_assignment_expression] = STATE(3881), - [sym_pointer_expression] = STATE(2977), - [sym_unary_expression] = STATE(3881), - [sym_binary_expression] = STATE(3881), - [sym_update_expression] = STATE(3881), - [sym_cast_expression] = STATE(3881), - [sym_type_descriptor] = STATE(5264), - [sym_sizeof_expression] = STATE(3881), - [sym_subscript_expression] = STATE(2977), - [sym_call_expression] = STATE(2977), - [sym_field_expression] = STATE(2977), - [sym_compound_literal_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(2977), - [sym_char_literal] = STATE(3701), - [sym_concatenated_string] = STATE(3701), - [sym_string_literal] = STATE(3219), - [sym_placeholder_type_specifier] = STATE(2872), - [sym_decltype_auto] = STATE(2878), - [sym_decltype] = STATE(2872), - [sym_class_specifier] = STATE(2872), - [sym__class_name] = STATE(6063), - [sym_dependent_type] = STATE(2872), - [sym_template_type] = STATE(4194), - [sym_template_function] = STATE(3881), - [sym_co_await_expression] = STATE(3881), - [sym_new_expression] = STATE(3881), - [sym_delete_expression] = STATE(3881), - [sym_requires_clause] = STATE(3881), - [sym_requires_expression] = STATE(3881), - [sym_lambda_expression] = STATE(3881), - [sym_lambda_capture_specifier] = STATE(4519), - [sym_fold_expression] = STATE(3881), - [sym_parameter_pack_expansion] = STATE(3881), - [sym_type_parameter_pack_expansion] = STATE(5795), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4633), - [sym_qualified_identifier] = STATE(2977), - [sym_qualified_type_identifier] = STATE(4305), - [sym_user_defined_literal] = STATE(3881), - [aux_sym_type_definition_repeat1] = STATE(2979), - [aux_sym_sized_type_specifier_repeat1] = STATE(2182), - [sym_identifier] = ACTIONS(2529), - [anon_sym_LPAREN2] = ACTIONS(2531), - [anon_sym_BANG] = ACTIONS(2533), - [anon_sym_TILDE] = ACTIONS(2533), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_STAR] = ACTIONS(2537), - [anon_sym_AMP] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(2539), - [anon_sym_LBRACK] = ACTIONS(2272), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(2541), - [anon_sym_unsigned] = ACTIONS(2541), - [anon_sym_long] = ACTIONS(2541), - [anon_sym_short] = ACTIONS(2541), - [sym_primitive_type] = ACTIONS(2543), - [anon_sym_enum] = ACTIONS(2545), - [anon_sym_class] = ACTIONS(2547), - [anon_sym_struct] = ACTIONS(2549), - [anon_sym_union] = ACTIONS(2551), - [anon_sym_DASH_DASH] = ACTIONS(2553), - [anon_sym_PLUS_PLUS] = ACTIONS(2553), - [anon_sym_sizeof] = ACTIONS(2555), - [sym_number_literal] = ACTIONS(2557), - [anon_sym_L_SQUOTE] = ACTIONS(2559), - [anon_sym_u_SQUOTE] = ACTIONS(2559), - [anon_sym_U_SQUOTE] = ACTIONS(2559), - [anon_sym_u8_SQUOTE] = ACTIONS(2559), - [anon_sym_SQUOTE] = ACTIONS(2559), - [anon_sym_L_DQUOTE] = ACTIONS(2561), - [anon_sym_u_DQUOTE] = ACTIONS(2561), - [anon_sym_U_DQUOTE] = ACTIONS(2561), - [anon_sym_u8_DQUOTE] = ACTIONS(2561), - [anon_sym_DQUOTE] = ACTIONS(2561), - [sym_true] = ACTIONS(2563), - [sym_false] = ACTIONS(2563), - [sym_null] = ACTIONS(2563), + [426] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token2] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [aux_sym_preproc_else_token1] = ACTIONS(2595), + [aux_sym_preproc_elif_token1] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2565), - [anon_sym_decltype] = ACTIONS(2567), - [anon_sym_typename] = ACTIONS(2569), - [anon_sym_template] = ACTIONS(972), - [anon_sym_GT2] = ACTIONS(2703), - [anon_sym_delete] = ACTIONS(2573), - [anon_sym_co_await] = ACTIONS(2575), - [anon_sym_new] = ACTIONS(2577), - [anon_sym_requires] = ACTIONS(2579), - [sym_this] = ACTIONS(2563), - [sym_nullptr] = ACTIONS(2563), - [sym_raw_string_literal] = ACTIONS(2581), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [498] = { - [sym_identifier] = ACTIONS(2647), - [aux_sym_preproc_include_token1] = ACTIONS(2647), - [aux_sym_preproc_def_token1] = ACTIONS(2647), - [aux_sym_preproc_if_token1] = ACTIONS(2647), - [aux_sym_preproc_if_token2] = ACTIONS(2647), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2647), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2647), - [aux_sym_preproc_else_token1] = ACTIONS(2647), - [aux_sym_preproc_elif_token1] = ACTIONS(2647), - [sym_preproc_directive] = ACTIONS(2647), - [anon_sym_LPAREN2] = ACTIONS(2649), - [anon_sym_BANG] = ACTIONS(2649), - [anon_sym_TILDE] = ACTIONS(2649), - [anon_sym_DASH] = ACTIONS(2647), - [anon_sym_PLUS] = ACTIONS(2647), - [anon_sym_STAR] = ACTIONS(2649), - [anon_sym_AMP_AMP] = ACTIONS(2649), - [anon_sym_AMP] = ACTIONS(2647), - [anon_sym_SEMI] = ACTIONS(2649), - [anon_sym_typedef] = ACTIONS(2647), - [anon_sym_extern] = ACTIONS(2647), - [anon_sym___attribute__] = ACTIONS(2647), - [anon_sym_COLON_COLON] = ACTIONS(2649), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2649), - [anon_sym___declspec] = ACTIONS(2647), - [anon_sym___based] = ACTIONS(2647), - [anon_sym___cdecl] = ACTIONS(2647), - [anon_sym___clrcall] = ACTIONS(2647), - [anon_sym___stdcall] = ACTIONS(2647), - [anon_sym___fastcall] = ACTIONS(2647), - [anon_sym___thiscall] = ACTIONS(2647), - [anon_sym___vectorcall] = ACTIONS(2647), - [anon_sym_LBRACE] = ACTIONS(2649), - [anon_sym_LBRACK] = ACTIONS(2647), - [anon_sym_static] = ACTIONS(2647), - [anon_sym_register] = ACTIONS(2647), - [anon_sym_inline] = ACTIONS(2647), - [anon_sym_thread_local] = ACTIONS(2647), - [anon_sym_const] = ACTIONS(2647), - [anon_sym_volatile] = ACTIONS(2647), - [anon_sym_restrict] = ACTIONS(2647), - [anon_sym__Atomic] = ACTIONS(2647), - [anon_sym_mutable] = ACTIONS(2647), - [anon_sym_constexpr] = ACTIONS(2647), - [anon_sym_constinit] = ACTIONS(2647), - [anon_sym_consteval] = ACTIONS(2647), - [anon_sym_signed] = ACTIONS(2647), - [anon_sym_unsigned] = ACTIONS(2647), - [anon_sym_long] = ACTIONS(2647), - [anon_sym_short] = ACTIONS(2647), - [sym_primitive_type] = ACTIONS(2647), - [anon_sym_enum] = ACTIONS(2647), - [anon_sym_class] = ACTIONS(2647), - [anon_sym_struct] = ACTIONS(2647), - [anon_sym_union] = ACTIONS(2647), - [anon_sym_if] = ACTIONS(2647), - [anon_sym_switch] = ACTIONS(2647), - [anon_sym_case] = ACTIONS(2647), - [anon_sym_default] = ACTIONS(2647), - [anon_sym_while] = ACTIONS(2647), - [anon_sym_do] = ACTIONS(2647), - [anon_sym_for] = ACTIONS(2647), - [anon_sym_return] = ACTIONS(2647), - [anon_sym_break] = ACTIONS(2647), - [anon_sym_continue] = ACTIONS(2647), - [anon_sym_goto] = ACTIONS(2647), - [anon_sym_DASH_DASH] = ACTIONS(2649), - [anon_sym_PLUS_PLUS] = ACTIONS(2649), - [anon_sym_sizeof] = ACTIONS(2647), - [sym_number_literal] = ACTIONS(2649), - [anon_sym_L_SQUOTE] = ACTIONS(2649), - [anon_sym_u_SQUOTE] = ACTIONS(2649), - [anon_sym_U_SQUOTE] = ACTIONS(2649), - [anon_sym_u8_SQUOTE] = ACTIONS(2649), - [anon_sym_SQUOTE] = ACTIONS(2649), - [anon_sym_L_DQUOTE] = ACTIONS(2649), - [anon_sym_u_DQUOTE] = ACTIONS(2649), - [anon_sym_U_DQUOTE] = ACTIONS(2649), - [anon_sym_u8_DQUOTE] = ACTIONS(2649), - [anon_sym_DQUOTE] = ACTIONS(2649), - [sym_true] = ACTIONS(2647), - [sym_false] = ACTIONS(2647), - [sym_null] = ACTIONS(2647), + [427] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token2] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [aux_sym_preproc_else_token1] = ACTIONS(2595), + [aux_sym_preproc_elif_token1] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2647), - [anon_sym_decltype] = ACTIONS(2647), - [anon_sym_virtual] = ACTIONS(2647), - [anon_sym_explicit] = ACTIONS(2647), - [anon_sym_typename] = ACTIONS(2647), - [anon_sym_template] = ACTIONS(2647), - [anon_sym_operator] = ACTIONS(2647), - [anon_sym_try] = ACTIONS(2647), - [anon_sym_delete] = ACTIONS(2647), - [anon_sym_throw] = ACTIONS(2647), - [anon_sym_namespace] = ACTIONS(2647), - [anon_sym_using] = ACTIONS(2647), - [anon_sym_static_assert] = ACTIONS(2647), - [anon_sym_concept] = ACTIONS(2647), - [anon_sym_co_return] = ACTIONS(2647), - [anon_sym_co_yield] = ACTIONS(2647), - [anon_sym_co_await] = ACTIONS(2647), - [anon_sym_new] = ACTIONS(2647), - [anon_sym_requires] = ACTIONS(2647), - [sym_this] = ACTIONS(2647), - [sym_nullptr] = ACTIONS(2647), - [sym_raw_string_literal] = ACTIONS(2649), - }, - [499] = { - [sym_identifier] = ACTIONS(2705), - [aux_sym_preproc_include_token1] = ACTIONS(2705), - [aux_sym_preproc_def_token1] = ACTIONS(2705), - [aux_sym_preproc_if_token1] = ACTIONS(2705), - [aux_sym_preproc_if_token2] = ACTIONS(2705), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2705), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2705), - [aux_sym_preproc_else_token1] = ACTIONS(2705), - [aux_sym_preproc_elif_token1] = ACTIONS(2705), - [sym_preproc_directive] = ACTIONS(2705), - [anon_sym_LPAREN2] = ACTIONS(2707), - [anon_sym_BANG] = ACTIONS(2707), - [anon_sym_TILDE] = ACTIONS(2707), - [anon_sym_DASH] = ACTIONS(2705), - [anon_sym_PLUS] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2707), - [anon_sym_AMP_AMP] = ACTIONS(2707), - [anon_sym_AMP] = ACTIONS(2705), - [anon_sym_SEMI] = ACTIONS(2707), - [anon_sym_typedef] = ACTIONS(2705), - [anon_sym_extern] = ACTIONS(2705), - [anon_sym___attribute__] = ACTIONS(2705), - [anon_sym_COLON_COLON] = ACTIONS(2707), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2707), - [anon_sym___declspec] = ACTIONS(2705), - [anon_sym___based] = ACTIONS(2705), - [anon_sym___cdecl] = ACTIONS(2705), - [anon_sym___clrcall] = ACTIONS(2705), - [anon_sym___stdcall] = ACTIONS(2705), - [anon_sym___fastcall] = ACTIONS(2705), - [anon_sym___thiscall] = ACTIONS(2705), - [anon_sym___vectorcall] = ACTIONS(2705), - [anon_sym_LBRACE] = ACTIONS(2707), - [anon_sym_LBRACK] = ACTIONS(2705), - [anon_sym_static] = ACTIONS(2705), - [anon_sym_register] = ACTIONS(2705), - [anon_sym_inline] = ACTIONS(2705), - [anon_sym_thread_local] = ACTIONS(2705), - [anon_sym_const] = ACTIONS(2705), - [anon_sym_volatile] = ACTIONS(2705), - [anon_sym_restrict] = ACTIONS(2705), - [anon_sym__Atomic] = ACTIONS(2705), - [anon_sym_mutable] = ACTIONS(2705), - [anon_sym_constexpr] = ACTIONS(2705), - [anon_sym_constinit] = ACTIONS(2705), - [anon_sym_consteval] = ACTIONS(2705), - [anon_sym_signed] = ACTIONS(2705), - [anon_sym_unsigned] = ACTIONS(2705), - [anon_sym_long] = ACTIONS(2705), - [anon_sym_short] = ACTIONS(2705), - [sym_primitive_type] = ACTIONS(2705), - [anon_sym_enum] = ACTIONS(2705), - [anon_sym_class] = ACTIONS(2705), - [anon_sym_struct] = ACTIONS(2705), - [anon_sym_union] = ACTIONS(2705), - [anon_sym_if] = ACTIONS(2705), - [anon_sym_switch] = ACTIONS(2705), - [anon_sym_case] = ACTIONS(2705), - [anon_sym_default] = ACTIONS(2705), - [anon_sym_while] = ACTIONS(2705), - [anon_sym_do] = ACTIONS(2705), - [anon_sym_for] = ACTIONS(2705), - [anon_sym_return] = ACTIONS(2705), - [anon_sym_break] = ACTIONS(2705), - [anon_sym_continue] = ACTIONS(2705), - [anon_sym_goto] = ACTIONS(2705), - [anon_sym_DASH_DASH] = ACTIONS(2707), - [anon_sym_PLUS_PLUS] = ACTIONS(2707), - [anon_sym_sizeof] = ACTIONS(2705), - [sym_number_literal] = ACTIONS(2707), - [anon_sym_L_SQUOTE] = ACTIONS(2707), - [anon_sym_u_SQUOTE] = ACTIONS(2707), - [anon_sym_U_SQUOTE] = ACTIONS(2707), - [anon_sym_u8_SQUOTE] = ACTIONS(2707), - [anon_sym_SQUOTE] = ACTIONS(2707), - [anon_sym_L_DQUOTE] = ACTIONS(2707), - [anon_sym_u_DQUOTE] = ACTIONS(2707), - [anon_sym_U_DQUOTE] = ACTIONS(2707), - [anon_sym_u8_DQUOTE] = ACTIONS(2707), - [anon_sym_DQUOTE] = ACTIONS(2707), - [sym_true] = ACTIONS(2705), - [sym_false] = ACTIONS(2705), - [sym_null] = ACTIONS(2705), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2705), - [anon_sym_decltype] = ACTIONS(2705), - [anon_sym_virtual] = ACTIONS(2705), - [anon_sym_explicit] = ACTIONS(2705), - [anon_sym_typename] = ACTIONS(2705), - [anon_sym_template] = ACTIONS(2705), - [anon_sym_operator] = ACTIONS(2705), - [anon_sym_try] = ACTIONS(2705), - [anon_sym_delete] = ACTIONS(2705), - [anon_sym_throw] = ACTIONS(2705), - [anon_sym_namespace] = ACTIONS(2705), - [anon_sym_using] = ACTIONS(2705), - [anon_sym_static_assert] = ACTIONS(2705), - [anon_sym_concept] = ACTIONS(2705), - [anon_sym_co_return] = ACTIONS(2705), - [anon_sym_co_yield] = ACTIONS(2705), - [anon_sym_co_await] = ACTIONS(2705), - [anon_sym_new] = ACTIONS(2705), - [anon_sym_requires] = ACTIONS(2705), - [sym_this] = ACTIONS(2705), - [sym_nullptr] = ACTIONS(2705), - [sym_raw_string_literal] = ACTIONS(2707), - }, - [500] = { - [sym_identifier] = ACTIONS(2709), - [aux_sym_preproc_include_token1] = ACTIONS(2709), - [aux_sym_preproc_def_token1] = ACTIONS(2709), - [aux_sym_preproc_if_token1] = ACTIONS(2709), - [aux_sym_preproc_if_token2] = ACTIONS(2709), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2709), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2709), - [aux_sym_preproc_else_token1] = ACTIONS(2709), - [aux_sym_preproc_elif_token1] = ACTIONS(2709), - [sym_preproc_directive] = ACTIONS(2709), - [anon_sym_LPAREN2] = ACTIONS(2711), - [anon_sym_BANG] = ACTIONS(2711), - [anon_sym_TILDE] = ACTIONS(2711), - [anon_sym_DASH] = ACTIONS(2709), - [anon_sym_PLUS] = ACTIONS(2709), - [anon_sym_STAR] = ACTIONS(2711), - [anon_sym_AMP_AMP] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym_SEMI] = ACTIONS(2711), - [anon_sym_typedef] = ACTIONS(2709), - [anon_sym_extern] = ACTIONS(2709), - [anon_sym___attribute__] = ACTIONS(2709), - [anon_sym_COLON_COLON] = ACTIONS(2711), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2711), - [anon_sym___declspec] = ACTIONS(2709), - [anon_sym___based] = ACTIONS(2709), - [anon_sym___cdecl] = ACTIONS(2709), - [anon_sym___clrcall] = ACTIONS(2709), - [anon_sym___stdcall] = ACTIONS(2709), - [anon_sym___fastcall] = ACTIONS(2709), - [anon_sym___thiscall] = ACTIONS(2709), - [anon_sym___vectorcall] = ACTIONS(2709), - [anon_sym_LBRACE] = ACTIONS(2711), - [anon_sym_LBRACK] = ACTIONS(2709), - [anon_sym_static] = ACTIONS(2709), - [anon_sym_register] = ACTIONS(2709), - [anon_sym_inline] = ACTIONS(2709), - [anon_sym_thread_local] = ACTIONS(2709), - [anon_sym_const] = ACTIONS(2709), - [anon_sym_volatile] = ACTIONS(2709), - [anon_sym_restrict] = ACTIONS(2709), - [anon_sym__Atomic] = ACTIONS(2709), - [anon_sym_mutable] = ACTIONS(2709), - [anon_sym_constexpr] = ACTIONS(2709), - [anon_sym_constinit] = ACTIONS(2709), - [anon_sym_consteval] = ACTIONS(2709), - [anon_sym_signed] = ACTIONS(2709), - [anon_sym_unsigned] = ACTIONS(2709), - [anon_sym_long] = ACTIONS(2709), - [anon_sym_short] = ACTIONS(2709), - [sym_primitive_type] = ACTIONS(2709), - [anon_sym_enum] = ACTIONS(2709), - [anon_sym_class] = ACTIONS(2709), - [anon_sym_struct] = ACTIONS(2709), - [anon_sym_union] = ACTIONS(2709), - [anon_sym_if] = ACTIONS(2709), - [anon_sym_switch] = ACTIONS(2709), - [anon_sym_case] = ACTIONS(2709), - [anon_sym_default] = ACTIONS(2709), - [anon_sym_while] = ACTIONS(2709), - [anon_sym_do] = ACTIONS(2709), - [anon_sym_for] = ACTIONS(2709), - [anon_sym_return] = ACTIONS(2709), - [anon_sym_break] = ACTIONS(2709), - [anon_sym_continue] = ACTIONS(2709), - [anon_sym_goto] = ACTIONS(2709), - [anon_sym_DASH_DASH] = ACTIONS(2711), - [anon_sym_PLUS_PLUS] = ACTIONS(2711), - [anon_sym_sizeof] = ACTIONS(2709), - [sym_number_literal] = ACTIONS(2711), - [anon_sym_L_SQUOTE] = ACTIONS(2711), - [anon_sym_u_SQUOTE] = ACTIONS(2711), - [anon_sym_U_SQUOTE] = ACTIONS(2711), - [anon_sym_u8_SQUOTE] = ACTIONS(2711), - [anon_sym_SQUOTE] = ACTIONS(2711), - [anon_sym_L_DQUOTE] = ACTIONS(2711), - [anon_sym_u_DQUOTE] = ACTIONS(2711), - [anon_sym_U_DQUOTE] = ACTIONS(2711), - [anon_sym_u8_DQUOTE] = ACTIONS(2711), - [anon_sym_DQUOTE] = ACTIONS(2711), - [sym_true] = ACTIONS(2709), - [sym_false] = ACTIONS(2709), - [sym_null] = ACTIONS(2709), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2709), - [anon_sym_decltype] = ACTIONS(2709), - [anon_sym_virtual] = ACTIONS(2709), - [anon_sym_explicit] = ACTIONS(2709), - [anon_sym_typename] = ACTIONS(2709), - [anon_sym_template] = ACTIONS(2709), - [anon_sym_operator] = ACTIONS(2709), - [anon_sym_try] = ACTIONS(2709), - [anon_sym_delete] = ACTIONS(2709), - [anon_sym_throw] = ACTIONS(2709), - [anon_sym_namespace] = ACTIONS(2709), - [anon_sym_using] = ACTIONS(2709), - [anon_sym_static_assert] = ACTIONS(2709), - [anon_sym_concept] = ACTIONS(2709), - [anon_sym_co_return] = ACTIONS(2709), - [anon_sym_co_yield] = ACTIONS(2709), - [anon_sym_co_await] = ACTIONS(2709), - [anon_sym_new] = ACTIONS(2709), - [anon_sym_requires] = ACTIONS(2709), - [sym_this] = ACTIONS(2709), - [sym_nullptr] = ACTIONS(2709), - [sym_raw_string_literal] = ACTIONS(2711), - }, - [501] = { - [sym_identifier] = ACTIONS(2713), - [aux_sym_preproc_include_token1] = ACTIONS(2713), - [aux_sym_preproc_def_token1] = ACTIONS(2713), - [aux_sym_preproc_if_token1] = ACTIONS(2713), - [aux_sym_preproc_if_token2] = ACTIONS(2713), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2713), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2713), - [aux_sym_preproc_else_token1] = ACTIONS(2713), - [aux_sym_preproc_elif_token1] = ACTIONS(2713), - [sym_preproc_directive] = ACTIONS(2713), - [anon_sym_LPAREN2] = ACTIONS(2715), - [anon_sym_BANG] = ACTIONS(2715), - [anon_sym_TILDE] = ACTIONS(2715), - [anon_sym_DASH] = ACTIONS(2713), - [anon_sym_PLUS] = ACTIONS(2713), - [anon_sym_STAR] = ACTIONS(2715), - [anon_sym_AMP_AMP] = ACTIONS(2715), - [anon_sym_AMP] = ACTIONS(2713), - [anon_sym_SEMI] = ACTIONS(2715), - [anon_sym_typedef] = ACTIONS(2713), - [anon_sym_extern] = ACTIONS(2713), - [anon_sym___attribute__] = ACTIONS(2713), - [anon_sym_COLON_COLON] = ACTIONS(2715), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2715), - [anon_sym___declspec] = ACTIONS(2713), - [anon_sym___based] = ACTIONS(2713), - [anon_sym___cdecl] = ACTIONS(2713), - [anon_sym___clrcall] = ACTIONS(2713), - [anon_sym___stdcall] = ACTIONS(2713), - [anon_sym___fastcall] = ACTIONS(2713), - [anon_sym___thiscall] = ACTIONS(2713), - [anon_sym___vectorcall] = ACTIONS(2713), - [anon_sym_LBRACE] = ACTIONS(2715), - [anon_sym_LBRACK] = ACTIONS(2713), - [anon_sym_static] = ACTIONS(2713), - [anon_sym_register] = ACTIONS(2713), - [anon_sym_inline] = ACTIONS(2713), - [anon_sym_thread_local] = ACTIONS(2713), - [anon_sym_const] = ACTIONS(2713), - [anon_sym_volatile] = ACTIONS(2713), - [anon_sym_restrict] = ACTIONS(2713), - [anon_sym__Atomic] = ACTIONS(2713), - [anon_sym_mutable] = ACTIONS(2713), - [anon_sym_constexpr] = ACTIONS(2713), - [anon_sym_constinit] = ACTIONS(2713), - [anon_sym_consteval] = ACTIONS(2713), - [anon_sym_signed] = ACTIONS(2713), - [anon_sym_unsigned] = ACTIONS(2713), - [anon_sym_long] = ACTIONS(2713), - [anon_sym_short] = ACTIONS(2713), - [sym_primitive_type] = ACTIONS(2713), - [anon_sym_enum] = ACTIONS(2713), - [anon_sym_class] = ACTIONS(2713), - [anon_sym_struct] = ACTIONS(2713), - [anon_sym_union] = ACTIONS(2713), - [anon_sym_if] = ACTIONS(2713), - [anon_sym_switch] = ACTIONS(2713), - [anon_sym_case] = ACTIONS(2713), - [anon_sym_default] = ACTIONS(2713), - [anon_sym_while] = ACTIONS(2713), - [anon_sym_do] = ACTIONS(2713), - [anon_sym_for] = ACTIONS(2713), - [anon_sym_return] = ACTIONS(2713), - [anon_sym_break] = ACTIONS(2713), - [anon_sym_continue] = ACTIONS(2713), - [anon_sym_goto] = ACTIONS(2713), - [anon_sym_DASH_DASH] = ACTIONS(2715), - [anon_sym_PLUS_PLUS] = ACTIONS(2715), - [anon_sym_sizeof] = ACTIONS(2713), - [sym_number_literal] = ACTIONS(2715), - [anon_sym_L_SQUOTE] = ACTIONS(2715), - [anon_sym_u_SQUOTE] = ACTIONS(2715), - [anon_sym_U_SQUOTE] = ACTIONS(2715), - [anon_sym_u8_SQUOTE] = ACTIONS(2715), - [anon_sym_SQUOTE] = ACTIONS(2715), - [anon_sym_L_DQUOTE] = ACTIONS(2715), - [anon_sym_u_DQUOTE] = ACTIONS(2715), - [anon_sym_U_DQUOTE] = ACTIONS(2715), - [anon_sym_u8_DQUOTE] = ACTIONS(2715), - [anon_sym_DQUOTE] = ACTIONS(2715), - [sym_true] = ACTIONS(2713), - [sym_false] = ACTIONS(2713), - [sym_null] = ACTIONS(2713), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2713), - [anon_sym_decltype] = ACTIONS(2713), - [anon_sym_virtual] = ACTIONS(2713), - [anon_sym_explicit] = ACTIONS(2713), - [anon_sym_typename] = ACTIONS(2713), - [anon_sym_template] = ACTIONS(2713), - [anon_sym_operator] = ACTIONS(2713), - [anon_sym_try] = ACTIONS(2713), - [anon_sym_delete] = ACTIONS(2713), - [anon_sym_throw] = ACTIONS(2713), - [anon_sym_namespace] = ACTIONS(2713), - [anon_sym_using] = ACTIONS(2713), - [anon_sym_static_assert] = ACTIONS(2713), - [anon_sym_concept] = ACTIONS(2713), - [anon_sym_co_return] = ACTIONS(2713), - [anon_sym_co_yield] = ACTIONS(2713), - [anon_sym_co_await] = ACTIONS(2713), - [anon_sym_new] = ACTIONS(2713), - [anon_sym_requires] = ACTIONS(2713), - [sym_this] = ACTIONS(2713), - [sym_nullptr] = ACTIONS(2713), - [sym_raw_string_literal] = ACTIONS(2715), - }, - [502] = { - [sym_identifier] = ACTIONS(2717), - [aux_sym_preproc_include_token1] = ACTIONS(2717), - [aux_sym_preproc_def_token1] = ACTIONS(2717), - [aux_sym_preproc_if_token1] = ACTIONS(2717), - [aux_sym_preproc_if_token2] = ACTIONS(2717), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2717), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2717), - [aux_sym_preproc_else_token1] = ACTIONS(2717), - [aux_sym_preproc_elif_token1] = ACTIONS(2717), - [sym_preproc_directive] = ACTIONS(2717), - [anon_sym_LPAREN2] = ACTIONS(2719), - [anon_sym_BANG] = ACTIONS(2719), - [anon_sym_TILDE] = ACTIONS(2719), - [anon_sym_DASH] = ACTIONS(2717), - [anon_sym_PLUS] = ACTIONS(2717), - [anon_sym_STAR] = ACTIONS(2719), - [anon_sym_AMP_AMP] = ACTIONS(2719), - [anon_sym_AMP] = ACTIONS(2717), - [anon_sym_SEMI] = ACTIONS(2719), - [anon_sym_typedef] = ACTIONS(2717), - [anon_sym_extern] = ACTIONS(2717), - [anon_sym___attribute__] = ACTIONS(2717), - [anon_sym_COLON_COLON] = ACTIONS(2719), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2719), - [anon_sym___declspec] = ACTIONS(2717), - [anon_sym___based] = ACTIONS(2717), - [anon_sym___cdecl] = ACTIONS(2717), - [anon_sym___clrcall] = ACTIONS(2717), - [anon_sym___stdcall] = ACTIONS(2717), - [anon_sym___fastcall] = ACTIONS(2717), - [anon_sym___thiscall] = ACTIONS(2717), - [anon_sym___vectorcall] = ACTIONS(2717), - [anon_sym_LBRACE] = ACTIONS(2719), - [anon_sym_LBRACK] = ACTIONS(2717), - [anon_sym_static] = ACTIONS(2717), - [anon_sym_register] = ACTIONS(2717), - [anon_sym_inline] = ACTIONS(2717), - [anon_sym_thread_local] = ACTIONS(2717), - [anon_sym_const] = ACTIONS(2717), - [anon_sym_volatile] = ACTIONS(2717), - [anon_sym_restrict] = ACTIONS(2717), - [anon_sym__Atomic] = ACTIONS(2717), - [anon_sym_mutable] = ACTIONS(2717), - [anon_sym_constexpr] = ACTIONS(2717), - [anon_sym_constinit] = ACTIONS(2717), - [anon_sym_consteval] = ACTIONS(2717), - [anon_sym_signed] = ACTIONS(2717), - [anon_sym_unsigned] = ACTIONS(2717), - [anon_sym_long] = ACTIONS(2717), - [anon_sym_short] = ACTIONS(2717), - [sym_primitive_type] = ACTIONS(2717), - [anon_sym_enum] = ACTIONS(2717), - [anon_sym_class] = ACTIONS(2717), - [anon_sym_struct] = ACTIONS(2717), - [anon_sym_union] = ACTIONS(2717), - [anon_sym_if] = ACTIONS(2717), - [anon_sym_switch] = ACTIONS(2717), - [anon_sym_case] = ACTIONS(2717), - [anon_sym_default] = ACTIONS(2717), - [anon_sym_while] = ACTIONS(2717), - [anon_sym_do] = ACTIONS(2717), - [anon_sym_for] = ACTIONS(2717), - [anon_sym_return] = ACTIONS(2717), - [anon_sym_break] = ACTIONS(2717), - [anon_sym_continue] = ACTIONS(2717), - [anon_sym_goto] = ACTIONS(2717), - [anon_sym_DASH_DASH] = ACTIONS(2719), - [anon_sym_PLUS_PLUS] = ACTIONS(2719), - [anon_sym_sizeof] = ACTIONS(2717), - [sym_number_literal] = ACTIONS(2719), - [anon_sym_L_SQUOTE] = ACTIONS(2719), - [anon_sym_u_SQUOTE] = ACTIONS(2719), - [anon_sym_U_SQUOTE] = ACTIONS(2719), - [anon_sym_u8_SQUOTE] = ACTIONS(2719), - [anon_sym_SQUOTE] = ACTIONS(2719), - [anon_sym_L_DQUOTE] = ACTIONS(2719), - [anon_sym_u_DQUOTE] = ACTIONS(2719), - [anon_sym_U_DQUOTE] = ACTIONS(2719), - [anon_sym_u8_DQUOTE] = ACTIONS(2719), - [anon_sym_DQUOTE] = ACTIONS(2719), - [sym_true] = ACTIONS(2717), - [sym_false] = ACTIONS(2717), - [sym_null] = ACTIONS(2717), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2717), - [anon_sym_decltype] = ACTIONS(2717), - [anon_sym_virtual] = ACTIONS(2717), - [anon_sym_explicit] = ACTIONS(2717), - [anon_sym_typename] = ACTIONS(2717), - [anon_sym_template] = ACTIONS(2717), - [anon_sym_operator] = ACTIONS(2717), - [anon_sym_try] = ACTIONS(2717), - [anon_sym_delete] = ACTIONS(2717), - [anon_sym_throw] = ACTIONS(2717), - [anon_sym_namespace] = ACTIONS(2717), - [anon_sym_using] = ACTIONS(2717), - [anon_sym_static_assert] = ACTIONS(2717), - [anon_sym_concept] = ACTIONS(2717), - [anon_sym_co_return] = ACTIONS(2717), - [anon_sym_co_yield] = ACTIONS(2717), - [anon_sym_co_await] = ACTIONS(2717), - [anon_sym_new] = ACTIONS(2717), - [anon_sym_requires] = ACTIONS(2717), - [sym_this] = ACTIONS(2717), - [sym_nullptr] = ACTIONS(2717), - [sym_raw_string_literal] = ACTIONS(2719), - }, - [503] = { - [sym_identifier] = ACTIONS(2721), - [aux_sym_preproc_include_token1] = ACTIONS(2721), - [aux_sym_preproc_def_token1] = ACTIONS(2721), - [aux_sym_preproc_if_token1] = ACTIONS(2721), - [aux_sym_preproc_if_token2] = ACTIONS(2721), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2721), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2721), - [aux_sym_preproc_else_token1] = ACTIONS(2721), - [aux_sym_preproc_elif_token1] = ACTIONS(2721), - [sym_preproc_directive] = ACTIONS(2721), - [anon_sym_LPAREN2] = ACTIONS(2723), - [anon_sym_BANG] = ACTIONS(2723), - [anon_sym_TILDE] = ACTIONS(2723), - [anon_sym_DASH] = ACTIONS(2721), - [anon_sym_PLUS] = ACTIONS(2721), - [anon_sym_STAR] = ACTIONS(2723), - [anon_sym_AMP_AMP] = ACTIONS(2723), - [anon_sym_AMP] = ACTIONS(2721), - [anon_sym_SEMI] = ACTIONS(2723), - [anon_sym_typedef] = ACTIONS(2721), - [anon_sym_extern] = ACTIONS(2721), - [anon_sym___attribute__] = ACTIONS(2721), - [anon_sym_COLON_COLON] = ACTIONS(2723), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2723), - [anon_sym___declspec] = ACTIONS(2721), - [anon_sym___based] = ACTIONS(2721), - [anon_sym___cdecl] = ACTIONS(2721), - [anon_sym___clrcall] = ACTIONS(2721), - [anon_sym___stdcall] = ACTIONS(2721), - [anon_sym___fastcall] = ACTIONS(2721), - [anon_sym___thiscall] = ACTIONS(2721), - [anon_sym___vectorcall] = ACTIONS(2721), - [anon_sym_LBRACE] = ACTIONS(2723), - [anon_sym_LBRACK] = ACTIONS(2721), - [anon_sym_static] = ACTIONS(2721), - [anon_sym_register] = ACTIONS(2721), - [anon_sym_inline] = ACTIONS(2721), - [anon_sym_thread_local] = ACTIONS(2721), - [anon_sym_const] = ACTIONS(2721), - [anon_sym_volatile] = ACTIONS(2721), - [anon_sym_restrict] = ACTIONS(2721), - [anon_sym__Atomic] = ACTIONS(2721), - [anon_sym_mutable] = ACTIONS(2721), - [anon_sym_constexpr] = ACTIONS(2721), - [anon_sym_constinit] = ACTIONS(2721), - [anon_sym_consteval] = ACTIONS(2721), - [anon_sym_signed] = ACTIONS(2721), - [anon_sym_unsigned] = ACTIONS(2721), - [anon_sym_long] = ACTIONS(2721), - [anon_sym_short] = ACTIONS(2721), - [sym_primitive_type] = ACTIONS(2721), - [anon_sym_enum] = ACTIONS(2721), - [anon_sym_class] = ACTIONS(2721), - [anon_sym_struct] = ACTIONS(2721), - [anon_sym_union] = ACTIONS(2721), - [anon_sym_if] = ACTIONS(2721), - [anon_sym_switch] = ACTIONS(2721), - [anon_sym_case] = ACTIONS(2721), - [anon_sym_default] = ACTIONS(2721), - [anon_sym_while] = ACTIONS(2721), - [anon_sym_do] = ACTIONS(2721), - [anon_sym_for] = ACTIONS(2721), - [anon_sym_return] = ACTIONS(2721), - [anon_sym_break] = ACTIONS(2721), - [anon_sym_continue] = ACTIONS(2721), - [anon_sym_goto] = ACTIONS(2721), - [anon_sym_DASH_DASH] = ACTIONS(2723), - [anon_sym_PLUS_PLUS] = ACTIONS(2723), - [anon_sym_sizeof] = ACTIONS(2721), - [sym_number_literal] = ACTIONS(2723), - [anon_sym_L_SQUOTE] = ACTIONS(2723), - [anon_sym_u_SQUOTE] = ACTIONS(2723), - [anon_sym_U_SQUOTE] = ACTIONS(2723), - [anon_sym_u8_SQUOTE] = ACTIONS(2723), - [anon_sym_SQUOTE] = ACTIONS(2723), - [anon_sym_L_DQUOTE] = ACTIONS(2723), - [anon_sym_u_DQUOTE] = ACTIONS(2723), - [anon_sym_U_DQUOTE] = ACTIONS(2723), - [anon_sym_u8_DQUOTE] = ACTIONS(2723), - [anon_sym_DQUOTE] = ACTIONS(2723), - [sym_true] = ACTIONS(2721), - [sym_false] = ACTIONS(2721), - [sym_null] = ACTIONS(2721), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2721), - [anon_sym_decltype] = ACTIONS(2721), - [anon_sym_virtual] = ACTIONS(2721), - [anon_sym_explicit] = ACTIONS(2721), - [anon_sym_typename] = ACTIONS(2721), - [anon_sym_template] = ACTIONS(2721), - [anon_sym_operator] = ACTIONS(2721), - [anon_sym_try] = ACTIONS(2721), - [anon_sym_delete] = ACTIONS(2721), - [anon_sym_throw] = ACTIONS(2721), - [anon_sym_namespace] = ACTIONS(2721), - [anon_sym_using] = ACTIONS(2721), - [anon_sym_static_assert] = ACTIONS(2721), - [anon_sym_concept] = ACTIONS(2721), - [anon_sym_co_return] = ACTIONS(2721), - [anon_sym_co_yield] = ACTIONS(2721), - [anon_sym_co_await] = ACTIONS(2721), - [anon_sym_new] = ACTIONS(2721), - [anon_sym_requires] = ACTIONS(2721), - [sym_this] = ACTIONS(2721), - [sym_nullptr] = ACTIONS(2721), - [sym_raw_string_literal] = ACTIONS(2723), - }, - [504] = { - [sym_identifier] = ACTIONS(2725), - [aux_sym_preproc_include_token1] = ACTIONS(2725), - [aux_sym_preproc_def_token1] = ACTIONS(2725), - [aux_sym_preproc_if_token1] = ACTIONS(2725), - [aux_sym_preproc_if_token2] = ACTIONS(2725), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2725), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2725), - [aux_sym_preproc_else_token1] = ACTIONS(2725), - [aux_sym_preproc_elif_token1] = ACTIONS(2725), - [sym_preproc_directive] = ACTIONS(2725), - [anon_sym_LPAREN2] = ACTIONS(2727), - [anon_sym_BANG] = ACTIONS(2727), - [anon_sym_TILDE] = ACTIONS(2727), - [anon_sym_DASH] = ACTIONS(2725), - [anon_sym_PLUS] = ACTIONS(2725), - [anon_sym_STAR] = ACTIONS(2727), - [anon_sym_AMP_AMP] = ACTIONS(2727), - [anon_sym_AMP] = ACTIONS(2725), - [anon_sym_SEMI] = ACTIONS(2727), - [anon_sym_typedef] = ACTIONS(2725), - [anon_sym_extern] = ACTIONS(2725), - [anon_sym___attribute__] = ACTIONS(2725), - [anon_sym_COLON_COLON] = ACTIONS(2727), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2727), - [anon_sym___declspec] = ACTIONS(2725), - [anon_sym___based] = ACTIONS(2725), - [anon_sym___cdecl] = ACTIONS(2725), - [anon_sym___clrcall] = ACTIONS(2725), - [anon_sym___stdcall] = ACTIONS(2725), - [anon_sym___fastcall] = ACTIONS(2725), - [anon_sym___thiscall] = ACTIONS(2725), - [anon_sym___vectorcall] = ACTIONS(2725), - [anon_sym_LBRACE] = ACTIONS(2727), - [anon_sym_LBRACK] = ACTIONS(2725), - [anon_sym_static] = ACTIONS(2725), - [anon_sym_register] = ACTIONS(2725), - [anon_sym_inline] = ACTIONS(2725), - [anon_sym_thread_local] = ACTIONS(2725), - [anon_sym_const] = ACTIONS(2725), - [anon_sym_volatile] = ACTIONS(2725), - [anon_sym_restrict] = ACTIONS(2725), - [anon_sym__Atomic] = ACTIONS(2725), - [anon_sym_mutable] = ACTIONS(2725), - [anon_sym_constexpr] = ACTIONS(2725), - [anon_sym_constinit] = ACTIONS(2725), - [anon_sym_consteval] = ACTIONS(2725), - [anon_sym_signed] = ACTIONS(2725), - [anon_sym_unsigned] = ACTIONS(2725), - [anon_sym_long] = ACTIONS(2725), - [anon_sym_short] = ACTIONS(2725), - [sym_primitive_type] = ACTIONS(2725), - [anon_sym_enum] = ACTIONS(2725), - [anon_sym_class] = ACTIONS(2725), - [anon_sym_struct] = ACTIONS(2725), - [anon_sym_union] = ACTIONS(2725), - [anon_sym_if] = ACTIONS(2725), - [anon_sym_switch] = ACTIONS(2725), - [anon_sym_case] = ACTIONS(2725), - [anon_sym_default] = ACTIONS(2725), - [anon_sym_while] = ACTIONS(2725), - [anon_sym_do] = ACTIONS(2725), - [anon_sym_for] = ACTIONS(2725), - [anon_sym_return] = ACTIONS(2725), - [anon_sym_break] = ACTIONS(2725), - [anon_sym_continue] = ACTIONS(2725), - [anon_sym_goto] = ACTIONS(2725), - [anon_sym_DASH_DASH] = ACTIONS(2727), - [anon_sym_PLUS_PLUS] = ACTIONS(2727), - [anon_sym_sizeof] = ACTIONS(2725), - [sym_number_literal] = ACTIONS(2727), - [anon_sym_L_SQUOTE] = ACTIONS(2727), - [anon_sym_u_SQUOTE] = ACTIONS(2727), - [anon_sym_U_SQUOTE] = ACTIONS(2727), - [anon_sym_u8_SQUOTE] = ACTIONS(2727), - [anon_sym_SQUOTE] = ACTIONS(2727), - [anon_sym_L_DQUOTE] = ACTIONS(2727), - [anon_sym_u_DQUOTE] = ACTIONS(2727), - [anon_sym_U_DQUOTE] = ACTIONS(2727), - [anon_sym_u8_DQUOTE] = ACTIONS(2727), - [anon_sym_DQUOTE] = ACTIONS(2727), - [sym_true] = ACTIONS(2725), - [sym_false] = ACTIONS(2725), - [sym_null] = ACTIONS(2725), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2725), - [anon_sym_decltype] = ACTIONS(2725), - [anon_sym_virtual] = ACTIONS(2725), - [anon_sym_explicit] = ACTIONS(2725), - [anon_sym_typename] = ACTIONS(2725), - [anon_sym_template] = ACTIONS(2725), - [anon_sym_operator] = ACTIONS(2725), - [anon_sym_try] = ACTIONS(2725), - [anon_sym_delete] = ACTIONS(2725), - [anon_sym_throw] = ACTIONS(2725), - [anon_sym_namespace] = ACTIONS(2725), - [anon_sym_using] = ACTIONS(2725), - [anon_sym_static_assert] = ACTIONS(2725), - [anon_sym_concept] = ACTIONS(2725), - [anon_sym_co_return] = ACTIONS(2725), - [anon_sym_co_yield] = ACTIONS(2725), - [anon_sym_co_await] = ACTIONS(2725), - [anon_sym_new] = ACTIONS(2725), - [anon_sym_requires] = ACTIONS(2725), - [sym_this] = ACTIONS(2725), - [sym_nullptr] = ACTIONS(2725), - [sym_raw_string_literal] = ACTIONS(2727), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [505] = { - [sym_identifier] = ACTIONS(2729), - [aux_sym_preproc_include_token1] = ACTIONS(2729), - [aux_sym_preproc_def_token1] = ACTIONS(2729), - [aux_sym_preproc_if_token1] = ACTIONS(2729), - [aux_sym_preproc_if_token2] = ACTIONS(2729), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2729), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2729), - [aux_sym_preproc_else_token1] = ACTIONS(2729), - [aux_sym_preproc_elif_token1] = ACTIONS(2729), - [sym_preproc_directive] = ACTIONS(2729), - [anon_sym_LPAREN2] = ACTIONS(2731), - [anon_sym_BANG] = ACTIONS(2731), - [anon_sym_TILDE] = ACTIONS(2731), - [anon_sym_DASH] = ACTIONS(2729), - [anon_sym_PLUS] = ACTIONS(2729), - [anon_sym_STAR] = ACTIONS(2731), - [anon_sym_AMP_AMP] = ACTIONS(2731), - [anon_sym_AMP] = ACTIONS(2729), - [anon_sym_SEMI] = ACTIONS(2731), - [anon_sym_typedef] = ACTIONS(2729), - [anon_sym_extern] = ACTIONS(2729), - [anon_sym___attribute__] = ACTIONS(2729), - [anon_sym_COLON_COLON] = ACTIONS(2731), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2731), - [anon_sym___declspec] = ACTIONS(2729), - [anon_sym___based] = ACTIONS(2729), - [anon_sym___cdecl] = ACTIONS(2729), - [anon_sym___clrcall] = ACTIONS(2729), - [anon_sym___stdcall] = ACTIONS(2729), - [anon_sym___fastcall] = ACTIONS(2729), - [anon_sym___thiscall] = ACTIONS(2729), - [anon_sym___vectorcall] = ACTIONS(2729), - [anon_sym_LBRACE] = ACTIONS(2731), - [anon_sym_LBRACK] = ACTIONS(2729), - [anon_sym_static] = ACTIONS(2729), - [anon_sym_register] = ACTIONS(2729), - [anon_sym_inline] = ACTIONS(2729), - [anon_sym_thread_local] = ACTIONS(2729), - [anon_sym_const] = ACTIONS(2729), - [anon_sym_volatile] = ACTIONS(2729), - [anon_sym_restrict] = ACTIONS(2729), - [anon_sym__Atomic] = ACTIONS(2729), - [anon_sym_mutable] = ACTIONS(2729), - [anon_sym_constexpr] = ACTIONS(2729), - [anon_sym_constinit] = ACTIONS(2729), - [anon_sym_consteval] = ACTIONS(2729), - [anon_sym_signed] = ACTIONS(2729), - [anon_sym_unsigned] = ACTIONS(2729), - [anon_sym_long] = ACTIONS(2729), - [anon_sym_short] = ACTIONS(2729), - [sym_primitive_type] = ACTIONS(2729), - [anon_sym_enum] = ACTIONS(2729), - [anon_sym_class] = ACTIONS(2729), - [anon_sym_struct] = ACTIONS(2729), - [anon_sym_union] = ACTIONS(2729), - [anon_sym_if] = ACTIONS(2729), - [anon_sym_switch] = ACTIONS(2729), - [anon_sym_case] = ACTIONS(2729), - [anon_sym_default] = ACTIONS(2729), - [anon_sym_while] = ACTIONS(2729), - [anon_sym_do] = ACTIONS(2729), - [anon_sym_for] = ACTIONS(2729), - [anon_sym_return] = ACTIONS(2729), - [anon_sym_break] = ACTIONS(2729), - [anon_sym_continue] = ACTIONS(2729), - [anon_sym_goto] = ACTIONS(2729), - [anon_sym_DASH_DASH] = ACTIONS(2731), - [anon_sym_PLUS_PLUS] = ACTIONS(2731), - [anon_sym_sizeof] = ACTIONS(2729), - [sym_number_literal] = ACTIONS(2731), - [anon_sym_L_SQUOTE] = ACTIONS(2731), - [anon_sym_u_SQUOTE] = ACTIONS(2731), - [anon_sym_U_SQUOTE] = ACTIONS(2731), - [anon_sym_u8_SQUOTE] = ACTIONS(2731), - [anon_sym_SQUOTE] = ACTIONS(2731), - [anon_sym_L_DQUOTE] = ACTIONS(2731), - [anon_sym_u_DQUOTE] = ACTIONS(2731), - [anon_sym_U_DQUOTE] = ACTIONS(2731), - [anon_sym_u8_DQUOTE] = ACTIONS(2731), - [anon_sym_DQUOTE] = ACTIONS(2731), - [sym_true] = ACTIONS(2729), - [sym_false] = ACTIONS(2729), - [sym_null] = ACTIONS(2729), + [428] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token2] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [aux_sym_preproc_else_token1] = ACTIONS(2595), + [aux_sym_preproc_elif_token1] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2729), - [anon_sym_decltype] = ACTIONS(2729), - [anon_sym_virtual] = ACTIONS(2729), - [anon_sym_explicit] = ACTIONS(2729), - [anon_sym_typename] = ACTIONS(2729), - [anon_sym_template] = ACTIONS(2729), - [anon_sym_operator] = ACTIONS(2729), - [anon_sym_try] = ACTIONS(2729), - [anon_sym_delete] = ACTIONS(2729), - [anon_sym_throw] = ACTIONS(2729), - [anon_sym_namespace] = ACTIONS(2729), - [anon_sym_using] = ACTIONS(2729), - [anon_sym_static_assert] = ACTIONS(2729), - [anon_sym_concept] = ACTIONS(2729), - [anon_sym_co_return] = ACTIONS(2729), - [anon_sym_co_yield] = ACTIONS(2729), - [anon_sym_co_await] = ACTIONS(2729), - [anon_sym_new] = ACTIONS(2729), - [anon_sym_requires] = ACTIONS(2729), - [sym_this] = ACTIONS(2729), - [sym_nullptr] = ACTIONS(2729), - [sym_raw_string_literal] = ACTIONS(2731), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [506] = { - [sym_identifier] = ACTIONS(2733), - [aux_sym_preproc_include_token1] = ACTIONS(2733), - [aux_sym_preproc_def_token1] = ACTIONS(2733), - [aux_sym_preproc_if_token1] = ACTIONS(2733), - [aux_sym_preproc_if_token2] = ACTIONS(2733), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2733), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2733), - [aux_sym_preproc_else_token1] = ACTIONS(2733), - [aux_sym_preproc_elif_token1] = ACTIONS(2733), - [sym_preproc_directive] = ACTIONS(2733), - [anon_sym_LPAREN2] = ACTIONS(2735), - [anon_sym_BANG] = ACTIONS(2735), - [anon_sym_TILDE] = ACTIONS(2735), - [anon_sym_DASH] = ACTIONS(2733), - [anon_sym_PLUS] = ACTIONS(2733), - [anon_sym_STAR] = ACTIONS(2735), - [anon_sym_AMP_AMP] = ACTIONS(2735), - [anon_sym_AMP] = ACTIONS(2733), - [anon_sym_SEMI] = ACTIONS(2735), - [anon_sym_typedef] = ACTIONS(2733), - [anon_sym_extern] = ACTIONS(2733), - [anon_sym___attribute__] = ACTIONS(2733), - [anon_sym_COLON_COLON] = ACTIONS(2735), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2735), - [anon_sym___declspec] = ACTIONS(2733), - [anon_sym___based] = ACTIONS(2733), - [anon_sym___cdecl] = ACTIONS(2733), - [anon_sym___clrcall] = ACTIONS(2733), - [anon_sym___stdcall] = ACTIONS(2733), - [anon_sym___fastcall] = ACTIONS(2733), - [anon_sym___thiscall] = ACTIONS(2733), - [anon_sym___vectorcall] = ACTIONS(2733), - [anon_sym_LBRACE] = ACTIONS(2735), - [anon_sym_LBRACK] = ACTIONS(2733), - [anon_sym_static] = ACTIONS(2733), - [anon_sym_register] = ACTIONS(2733), - [anon_sym_inline] = ACTIONS(2733), - [anon_sym_thread_local] = ACTIONS(2733), - [anon_sym_const] = ACTIONS(2733), - [anon_sym_volatile] = ACTIONS(2733), - [anon_sym_restrict] = ACTIONS(2733), - [anon_sym__Atomic] = ACTIONS(2733), - [anon_sym_mutable] = ACTIONS(2733), - [anon_sym_constexpr] = ACTIONS(2733), - [anon_sym_constinit] = ACTIONS(2733), - [anon_sym_consteval] = ACTIONS(2733), - [anon_sym_signed] = ACTIONS(2733), - [anon_sym_unsigned] = ACTIONS(2733), - [anon_sym_long] = ACTIONS(2733), - [anon_sym_short] = ACTIONS(2733), - [sym_primitive_type] = ACTIONS(2733), - [anon_sym_enum] = ACTIONS(2733), - [anon_sym_class] = ACTIONS(2733), - [anon_sym_struct] = ACTIONS(2733), - [anon_sym_union] = ACTIONS(2733), - [anon_sym_if] = ACTIONS(2733), - [anon_sym_switch] = ACTIONS(2733), - [anon_sym_case] = ACTIONS(2733), - [anon_sym_default] = ACTIONS(2733), - [anon_sym_while] = ACTIONS(2733), - [anon_sym_do] = ACTIONS(2733), - [anon_sym_for] = ACTIONS(2733), - [anon_sym_return] = ACTIONS(2733), - [anon_sym_break] = ACTIONS(2733), - [anon_sym_continue] = ACTIONS(2733), - [anon_sym_goto] = ACTIONS(2733), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_sizeof] = ACTIONS(2733), - [sym_number_literal] = ACTIONS(2735), - [anon_sym_L_SQUOTE] = ACTIONS(2735), - [anon_sym_u_SQUOTE] = ACTIONS(2735), - [anon_sym_U_SQUOTE] = ACTIONS(2735), - [anon_sym_u8_SQUOTE] = ACTIONS(2735), - [anon_sym_SQUOTE] = ACTIONS(2735), - [anon_sym_L_DQUOTE] = ACTIONS(2735), - [anon_sym_u_DQUOTE] = ACTIONS(2735), - [anon_sym_U_DQUOTE] = ACTIONS(2735), - [anon_sym_u8_DQUOTE] = ACTIONS(2735), - [anon_sym_DQUOTE] = ACTIONS(2735), - [sym_true] = ACTIONS(2733), - [sym_false] = ACTIONS(2733), - [sym_null] = ACTIONS(2733), + [429] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token2] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [aux_sym_preproc_else_token1] = ACTIONS(2595), + [aux_sym_preproc_elif_token1] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2733), - [anon_sym_decltype] = ACTIONS(2733), - [anon_sym_virtual] = ACTIONS(2733), - [anon_sym_explicit] = ACTIONS(2733), - [anon_sym_typename] = ACTIONS(2733), - [anon_sym_template] = ACTIONS(2733), - [anon_sym_operator] = ACTIONS(2733), - [anon_sym_try] = ACTIONS(2733), - [anon_sym_delete] = ACTIONS(2733), - [anon_sym_throw] = ACTIONS(2733), - [anon_sym_namespace] = ACTIONS(2733), - [anon_sym_using] = ACTIONS(2733), - [anon_sym_static_assert] = ACTIONS(2733), - [anon_sym_concept] = ACTIONS(2733), - [anon_sym_co_return] = ACTIONS(2733), - [anon_sym_co_yield] = ACTIONS(2733), - [anon_sym_co_await] = ACTIONS(2733), - [anon_sym_new] = ACTIONS(2733), - [anon_sym_requires] = ACTIONS(2733), - [sym_this] = ACTIONS(2733), - [sym_nullptr] = ACTIONS(2733), - [sym_raw_string_literal] = ACTIONS(2735), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [507] = { - [sym_type_qualifier] = STATE(2979), - [sym__type_specifier] = STATE(3924), - [sym_sized_type_specifier] = STATE(2872), - [sym_enum_specifier] = STATE(2872), - [sym_struct_specifier] = STATE(2872), - [sym_union_specifier] = STATE(2872), - [sym__expression] = STATE(3519), - [sym_conditional_expression] = STATE(3881), - [sym_assignment_expression] = STATE(3881), - [sym_pointer_expression] = STATE(2977), - [sym_unary_expression] = STATE(3881), - [sym_binary_expression] = STATE(3881), - [sym_update_expression] = STATE(3881), - [sym_cast_expression] = STATE(3881), - [sym_type_descriptor] = STATE(5414), - [sym_sizeof_expression] = STATE(3881), - [sym_subscript_expression] = STATE(2977), - [sym_call_expression] = STATE(2977), - [sym_field_expression] = STATE(2977), - [sym_compound_literal_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(2977), - [sym_char_literal] = STATE(3701), - [sym_concatenated_string] = STATE(3701), - [sym_string_literal] = STATE(3219), - [sym_placeholder_type_specifier] = STATE(2872), - [sym_decltype_auto] = STATE(2878), - [sym_decltype] = STATE(2872), - [sym_class_specifier] = STATE(2872), - [sym__class_name] = STATE(6063), - [sym_dependent_type] = STATE(2872), - [sym_template_type] = STATE(4194), - [sym_template_function] = STATE(3881), - [sym_co_await_expression] = STATE(3881), - [sym_new_expression] = STATE(3881), - [sym_delete_expression] = STATE(3881), - [sym_requires_clause] = STATE(3881), - [sym_requires_expression] = STATE(3881), - [sym_lambda_expression] = STATE(3881), - [sym_lambda_capture_specifier] = STATE(4519), - [sym_fold_expression] = STATE(3881), - [sym_parameter_pack_expansion] = STATE(3881), - [sym_type_parameter_pack_expansion] = STATE(5728), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4633), - [sym_qualified_identifier] = STATE(2977), - [sym_qualified_type_identifier] = STATE(4305), - [sym_user_defined_literal] = STATE(3881), - [aux_sym_type_definition_repeat1] = STATE(2979), - [aux_sym_sized_type_specifier_repeat1] = STATE(2182), - [sym_identifier] = ACTIONS(2529), - [anon_sym_LPAREN2] = ACTIONS(2531), - [anon_sym_BANG] = ACTIONS(2533), - [anon_sym_TILDE] = ACTIONS(2533), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_STAR] = ACTIONS(2537), - [anon_sym_AMP] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(2539), - [anon_sym_LBRACK] = ACTIONS(2272), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(2541), - [anon_sym_unsigned] = ACTIONS(2541), - [anon_sym_long] = ACTIONS(2541), - [anon_sym_short] = ACTIONS(2541), - [sym_primitive_type] = ACTIONS(2543), - [anon_sym_enum] = ACTIONS(2545), - [anon_sym_class] = ACTIONS(2547), - [anon_sym_struct] = ACTIONS(2549), - [anon_sym_union] = ACTIONS(2551), - [anon_sym_DASH_DASH] = ACTIONS(2553), - [anon_sym_PLUS_PLUS] = ACTIONS(2553), - [anon_sym_sizeof] = ACTIONS(2555), - [sym_number_literal] = ACTIONS(2557), - [anon_sym_L_SQUOTE] = ACTIONS(2559), - [anon_sym_u_SQUOTE] = ACTIONS(2559), - [anon_sym_U_SQUOTE] = ACTIONS(2559), - [anon_sym_u8_SQUOTE] = ACTIONS(2559), - [anon_sym_SQUOTE] = ACTIONS(2559), - [anon_sym_L_DQUOTE] = ACTIONS(2561), - [anon_sym_u_DQUOTE] = ACTIONS(2561), - [anon_sym_U_DQUOTE] = ACTIONS(2561), - [anon_sym_u8_DQUOTE] = ACTIONS(2561), - [anon_sym_DQUOTE] = ACTIONS(2561), - [sym_true] = ACTIONS(2563), - [sym_false] = ACTIONS(2563), - [sym_null] = ACTIONS(2563), + [430] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token2] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [aux_sym_preproc_else_token1] = ACTIONS(2595), + [aux_sym_preproc_elif_token1] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2565), - [anon_sym_decltype] = ACTIONS(2567), - [anon_sym_typename] = ACTIONS(2569), - [anon_sym_template] = ACTIONS(972), - [anon_sym_GT2] = ACTIONS(2737), - [anon_sym_delete] = ACTIONS(2573), - [anon_sym_co_await] = ACTIONS(2575), - [anon_sym_new] = ACTIONS(2577), - [anon_sym_requires] = ACTIONS(2579), - [sym_this] = ACTIONS(2563), - [sym_nullptr] = ACTIONS(2563), - [sym_raw_string_literal] = ACTIONS(2581), - }, - [508] = { - [sym_identifier] = ACTIONS(2739), - [aux_sym_preproc_include_token1] = ACTIONS(2739), - [aux_sym_preproc_def_token1] = ACTIONS(2739), - [aux_sym_preproc_if_token1] = ACTIONS(2739), - [aux_sym_preproc_if_token2] = ACTIONS(2739), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2739), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2739), - [aux_sym_preproc_else_token1] = ACTIONS(2739), - [aux_sym_preproc_elif_token1] = ACTIONS(2739), - [sym_preproc_directive] = ACTIONS(2739), - [anon_sym_LPAREN2] = ACTIONS(2741), - [anon_sym_BANG] = ACTIONS(2741), - [anon_sym_TILDE] = ACTIONS(2741), - [anon_sym_DASH] = ACTIONS(2739), - [anon_sym_PLUS] = ACTIONS(2739), - [anon_sym_STAR] = ACTIONS(2741), - [anon_sym_AMP_AMP] = ACTIONS(2741), - [anon_sym_AMP] = ACTIONS(2739), - [anon_sym_SEMI] = ACTIONS(2741), - [anon_sym_typedef] = ACTIONS(2739), - [anon_sym_extern] = ACTIONS(2739), - [anon_sym___attribute__] = ACTIONS(2739), - [anon_sym_COLON_COLON] = ACTIONS(2741), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2741), - [anon_sym___declspec] = ACTIONS(2739), - [anon_sym___based] = ACTIONS(2739), - [anon_sym___cdecl] = ACTIONS(2739), - [anon_sym___clrcall] = ACTIONS(2739), - [anon_sym___stdcall] = ACTIONS(2739), - [anon_sym___fastcall] = ACTIONS(2739), - [anon_sym___thiscall] = ACTIONS(2739), - [anon_sym___vectorcall] = ACTIONS(2739), - [anon_sym_LBRACE] = ACTIONS(2741), - [anon_sym_LBRACK] = ACTIONS(2739), - [anon_sym_static] = ACTIONS(2739), - [anon_sym_register] = ACTIONS(2739), - [anon_sym_inline] = ACTIONS(2739), - [anon_sym_thread_local] = ACTIONS(2739), - [anon_sym_const] = ACTIONS(2739), - [anon_sym_volatile] = ACTIONS(2739), - [anon_sym_restrict] = ACTIONS(2739), - [anon_sym__Atomic] = ACTIONS(2739), - [anon_sym_mutable] = ACTIONS(2739), - [anon_sym_constexpr] = ACTIONS(2739), - [anon_sym_constinit] = ACTIONS(2739), - [anon_sym_consteval] = ACTIONS(2739), - [anon_sym_signed] = ACTIONS(2739), - [anon_sym_unsigned] = ACTIONS(2739), - [anon_sym_long] = ACTIONS(2739), - [anon_sym_short] = ACTIONS(2739), - [sym_primitive_type] = ACTIONS(2739), - [anon_sym_enum] = ACTIONS(2739), - [anon_sym_class] = ACTIONS(2739), - [anon_sym_struct] = ACTIONS(2739), - [anon_sym_union] = ACTIONS(2739), - [anon_sym_if] = ACTIONS(2739), - [anon_sym_switch] = ACTIONS(2739), - [anon_sym_case] = ACTIONS(2739), - [anon_sym_default] = ACTIONS(2739), - [anon_sym_while] = ACTIONS(2739), - [anon_sym_do] = ACTIONS(2739), - [anon_sym_for] = ACTIONS(2739), - [anon_sym_return] = ACTIONS(2739), - [anon_sym_break] = ACTIONS(2739), - [anon_sym_continue] = ACTIONS(2739), - [anon_sym_goto] = ACTIONS(2739), - [anon_sym_DASH_DASH] = ACTIONS(2741), - [anon_sym_PLUS_PLUS] = ACTIONS(2741), - [anon_sym_sizeof] = ACTIONS(2739), - [sym_number_literal] = ACTIONS(2741), - [anon_sym_L_SQUOTE] = ACTIONS(2741), - [anon_sym_u_SQUOTE] = ACTIONS(2741), - [anon_sym_U_SQUOTE] = ACTIONS(2741), - [anon_sym_u8_SQUOTE] = ACTIONS(2741), - [anon_sym_SQUOTE] = ACTIONS(2741), - [anon_sym_L_DQUOTE] = ACTIONS(2741), - [anon_sym_u_DQUOTE] = ACTIONS(2741), - [anon_sym_U_DQUOTE] = ACTIONS(2741), - [anon_sym_u8_DQUOTE] = ACTIONS(2741), - [anon_sym_DQUOTE] = ACTIONS(2741), - [sym_true] = ACTIONS(2739), - [sym_false] = ACTIONS(2739), - [sym_null] = ACTIONS(2739), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2739), - [anon_sym_decltype] = ACTIONS(2739), - [anon_sym_virtual] = ACTIONS(2739), - [anon_sym_explicit] = ACTIONS(2739), - [anon_sym_typename] = ACTIONS(2739), - [anon_sym_template] = ACTIONS(2739), - [anon_sym_operator] = ACTIONS(2739), - [anon_sym_try] = ACTIONS(2739), - [anon_sym_delete] = ACTIONS(2739), - [anon_sym_throw] = ACTIONS(2739), - [anon_sym_namespace] = ACTIONS(2739), - [anon_sym_using] = ACTIONS(2739), - [anon_sym_static_assert] = ACTIONS(2739), - [anon_sym_concept] = ACTIONS(2739), - [anon_sym_co_return] = ACTIONS(2739), - [anon_sym_co_yield] = ACTIONS(2739), - [anon_sym_co_await] = ACTIONS(2739), - [anon_sym_new] = ACTIONS(2739), - [anon_sym_requires] = ACTIONS(2739), - [sym_this] = ACTIONS(2739), - [sym_nullptr] = ACTIONS(2739), - [sym_raw_string_literal] = ACTIONS(2741), - }, - [509] = { - [sym_identifier] = ACTIONS(2302), - [aux_sym_preproc_include_token1] = ACTIONS(2302), - [aux_sym_preproc_def_token1] = ACTIONS(2302), - [aux_sym_preproc_if_token1] = ACTIONS(2302), - [aux_sym_preproc_if_token2] = ACTIONS(2302), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2302), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2302), - [sym_preproc_directive] = ACTIONS(2302), - [anon_sym_LPAREN2] = ACTIONS(2304), - [anon_sym_BANG] = ACTIONS(2304), - [anon_sym_TILDE] = ACTIONS(2304), - [anon_sym_DASH] = ACTIONS(2302), - [anon_sym_PLUS] = ACTIONS(2302), - [anon_sym_STAR] = ACTIONS(2304), - [anon_sym_AMP_AMP] = ACTIONS(2304), - [anon_sym_AMP] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(2304), - [anon_sym_typedef] = ACTIONS(2302), - [anon_sym_extern] = ACTIONS(2302), - [anon_sym___attribute__] = ACTIONS(2302), - [anon_sym_COLON_COLON] = ACTIONS(2304), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2304), - [anon_sym___declspec] = ACTIONS(2302), - [anon_sym___based] = ACTIONS(2302), - [anon_sym___cdecl] = ACTIONS(2302), - [anon_sym___clrcall] = ACTIONS(2302), - [anon_sym___stdcall] = ACTIONS(2302), - [anon_sym___fastcall] = ACTIONS(2302), - [anon_sym___thiscall] = ACTIONS(2302), - [anon_sym___vectorcall] = ACTIONS(2302), - [anon_sym_LBRACE] = ACTIONS(2304), - [anon_sym_LBRACK] = ACTIONS(2302), - [anon_sym_static] = ACTIONS(2302), - [anon_sym_register] = ACTIONS(2302), - [anon_sym_inline] = ACTIONS(2302), - [anon_sym_thread_local] = ACTIONS(2302), - [anon_sym_const] = ACTIONS(2302), - [anon_sym_volatile] = ACTIONS(2302), - [anon_sym_restrict] = ACTIONS(2302), - [anon_sym__Atomic] = ACTIONS(2302), - [anon_sym_mutable] = ACTIONS(2302), - [anon_sym_constexpr] = ACTIONS(2302), - [anon_sym_constinit] = ACTIONS(2302), - [anon_sym_consteval] = ACTIONS(2302), - [anon_sym_signed] = ACTIONS(2302), - [anon_sym_unsigned] = ACTIONS(2302), - [anon_sym_long] = ACTIONS(2302), - [anon_sym_short] = ACTIONS(2302), - [sym_primitive_type] = ACTIONS(2302), - [anon_sym_enum] = ACTIONS(2302), - [anon_sym_class] = ACTIONS(2302), - [anon_sym_struct] = ACTIONS(2302), - [anon_sym_union] = ACTIONS(2302), - [anon_sym_if] = ACTIONS(2302), - [anon_sym_else] = ACTIONS(2302), - [anon_sym_switch] = ACTIONS(2302), - [anon_sym_case] = ACTIONS(2302), - [anon_sym_default] = ACTIONS(2302), - [anon_sym_while] = ACTIONS(2302), - [anon_sym_do] = ACTIONS(2302), - [anon_sym_for] = ACTIONS(2302), - [anon_sym_return] = ACTIONS(2302), - [anon_sym_break] = ACTIONS(2302), - [anon_sym_continue] = ACTIONS(2302), - [anon_sym_goto] = ACTIONS(2302), - [anon_sym_DASH_DASH] = ACTIONS(2304), - [anon_sym_PLUS_PLUS] = ACTIONS(2304), - [anon_sym_sizeof] = ACTIONS(2302), - [sym_number_literal] = ACTIONS(2304), - [anon_sym_L_SQUOTE] = ACTIONS(2304), - [anon_sym_u_SQUOTE] = ACTIONS(2304), - [anon_sym_U_SQUOTE] = ACTIONS(2304), - [anon_sym_u8_SQUOTE] = ACTIONS(2304), - [anon_sym_SQUOTE] = ACTIONS(2304), - [anon_sym_L_DQUOTE] = ACTIONS(2304), - [anon_sym_u_DQUOTE] = ACTIONS(2304), - [anon_sym_U_DQUOTE] = ACTIONS(2304), - [anon_sym_u8_DQUOTE] = ACTIONS(2304), - [anon_sym_DQUOTE] = ACTIONS(2304), - [sym_true] = ACTIONS(2302), - [sym_false] = ACTIONS(2302), - [sym_null] = ACTIONS(2302), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2302), - [anon_sym_decltype] = ACTIONS(2302), - [anon_sym_virtual] = ACTIONS(2302), - [anon_sym_explicit] = ACTIONS(2302), - [anon_sym_typename] = ACTIONS(2302), - [anon_sym_template] = ACTIONS(2302), - [anon_sym_operator] = ACTIONS(2302), - [anon_sym_try] = ACTIONS(2302), - [anon_sym_delete] = ACTIONS(2302), - [anon_sym_throw] = ACTIONS(2302), - [anon_sym_namespace] = ACTIONS(2302), - [anon_sym_using] = ACTIONS(2302), - [anon_sym_static_assert] = ACTIONS(2302), - [anon_sym_concept] = ACTIONS(2302), - [anon_sym_co_return] = ACTIONS(2302), - [anon_sym_co_yield] = ACTIONS(2302), - [anon_sym_catch] = ACTIONS(2302), - [anon_sym_co_await] = ACTIONS(2302), - [anon_sym_new] = ACTIONS(2302), - [anon_sym_requires] = ACTIONS(2302), - [sym_this] = ACTIONS(2302), - [sym_nullptr] = ACTIONS(2302), - [sym_raw_string_literal] = ACTIONS(2304), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [510] = { - [sym_type_qualifier] = STATE(2979), - [sym__type_specifier] = STATE(3924), - [sym_sized_type_specifier] = STATE(2872), - [sym_enum_specifier] = STATE(2872), - [sym_struct_specifier] = STATE(2872), - [sym_union_specifier] = STATE(2872), - [sym__expression] = STATE(3544), - [sym_conditional_expression] = STATE(3881), - [sym_assignment_expression] = STATE(3881), - [sym_pointer_expression] = STATE(2977), - [sym_unary_expression] = STATE(3881), - [sym_binary_expression] = STATE(3881), - [sym_update_expression] = STATE(3881), - [sym_cast_expression] = STATE(3881), - [sym_type_descriptor] = STATE(5397), - [sym_sizeof_expression] = STATE(3881), - [sym_subscript_expression] = STATE(2977), - [sym_call_expression] = STATE(2977), - [sym_field_expression] = STATE(2977), - [sym_compound_literal_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(2977), - [sym_char_literal] = STATE(3701), - [sym_concatenated_string] = STATE(3701), - [sym_string_literal] = STATE(3219), - [sym_placeholder_type_specifier] = STATE(2872), - [sym_decltype_auto] = STATE(2878), - [sym_decltype] = STATE(2872), - [sym_class_specifier] = STATE(2872), - [sym__class_name] = STATE(6063), - [sym_dependent_type] = STATE(2872), - [sym_template_type] = STATE(4194), - [sym_template_function] = STATE(3881), - [sym_co_await_expression] = STATE(3881), - [sym_new_expression] = STATE(3881), - [sym_delete_expression] = STATE(3881), - [sym_requires_clause] = STATE(3881), - [sym_requires_expression] = STATE(3881), - [sym_lambda_expression] = STATE(3881), - [sym_lambda_capture_specifier] = STATE(4519), - [sym_fold_expression] = STATE(3881), - [sym_parameter_pack_expansion] = STATE(3881), - [sym_type_parameter_pack_expansion] = STATE(5676), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4633), - [sym_qualified_identifier] = STATE(2977), - [sym_qualified_type_identifier] = STATE(4305), - [sym_user_defined_literal] = STATE(3881), - [aux_sym_type_definition_repeat1] = STATE(2979), - [aux_sym_sized_type_specifier_repeat1] = STATE(2182), - [sym_identifier] = ACTIONS(2529), - [anon_sym_LPAREN2] = ACTIONS(2531), - [anon_sym_BANG] = ACTIONS(2533), - [anon_sym_TILDE] = ACTIONS(2533), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_STAR] = ACTIONS(2537), - [anon_sym_AMP] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(2539), - [anon_sym_LBRACK] = ACTIONS(2272), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(2541), - [anon_sym_unsigned] = ACTIONS(2541), - [anon_sym_long] = ACTIONS(2541), - [anon_sym_short] = ACTIONS(2541), - [sym_primitive_type] = ACTIONS(2543), - [anon_sym_enum] = ACTIONS(2545), - [anon_sym_class] = ACTIONS(2547), - [anon_sym_struct] = ACTIONS(2549), - [anon_sym_union] = ACTIONS(2551), - [anon_sym_DASH_DASH] = ACTIONS(2553), - [anon_sym_PLUS_PLUS] = ACTIONS(2553), - [anon_sym_sizeof] = ACTIONS(2555), - [sym_number_literal] = ACTIONS(2557), - [anon_sym_L_SQUOTE] = ACTIONS(2559), - [anon_sym_u_SQUOTE] = ACTIONS(2559), - [anon_sym_U_SQUOTE] = ACTIONS(2559), - [anon_sym_u8_SQUOTE] = ACTIONS(2559), - [anon_sym_SQUOTE] = ACTIONS(2559), - [anon_sym_L_DQUOTE] = ACTIONS(2561), - [anon_sym_u_DQUOTE] = ACTIONS(2561), - [anon_sym_U_DQUOTE] = ACTIONS(2561), - [anon_sym_u8_DQUOTE] = ACTIONS(2561), - [anon_sym_DQUOTE] = ACTIONS(2561), - [sym_true] = ACTIONS(2563), - [sym_false] = ACTIONS(2563), - [sym_null] = ACTIONS(2563), + [431] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token2] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [aux_sym_preproc_else_token1] = ACTIONS(2595), + [aux_sym_preproc_elif_token1] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2565), - [anon_sym_decltype] = ACTIONS(2567), - [anon_sym_typename] = ACTIONS(2569), - [anon_sym_template] = ACTIONS(972), - [anon_sym_GT2] = ACTIONS(2743), - [anon_sym_delete] = ACTIONS(2573), - [anon_sym_co_await] = ACTIONS(2575), - [anon_sym_new] = ACTIONS(2577), - [anon_sym_requires] = ACTIONS(2579), - [sym_this] = ACTIONS(2563), - [sym_nullptr] = ACTIONS(2563), - [sym_raw_string_literal] = ACTIONS(2581), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [511] = { - [sym_type_qualifier] = STATE(2979), - [sym__type_specifier] = STATE(3924), - [sym_sized_type_specifier] = STATE(2872), - [sym_enum_specifier] = STATE(2872), - [sym_struct_specifier] = STATE(2872), - [sym_union_specifier] = STATE(2872), - [sym__expression] = STATE(3529), - [sym_conditional_expression] = STATE(3881), - [sym_assignment_expression] = STATE(3881), - [sym_pointer_expression] = STATE(2977), - [sym_unary_expression] = STATE(3881), - [sym_binary_expression] = STATE(3881), - [sym_update_expression] = STATE(3881), - [sym_cast_expression] = STATE(3881), - [sym_type_descriptor] = STATE(5488), - [sym_sizeof_expression] = STATE(3881), - [sym_subscript_expression] = STATE(2977), - [sym_call_expression] = STATE(2977), - [sym_field_expression] = STATE(2977), - [sym_compound_literal_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(2977), - [sym_char_literal] = STATE(3701), - [sym_concatenated_string] = STATE(3701), - [sym_string_literal] = STATE(3219), - [sym_placeholder_type_specifier] = STATE(2872), - [sym_decltype_auto] = STATE(2878), - [sym_decltype] = STATE(2872), - [sym_class_specifier] = STATE(2872), - [sym__class_name] = STATE(6063), - [sym_dependent_type] = STATE(2872), - [sym_template_type] = STATE(4194), - [sym_template_function] = STATE(3881), - [sym_co_await_expression] = STATE(3881), - [sym_new_expression] = STATE(3881), - [sym_delete_expression] = STATE(3881), - [sym_requires_clause] = STATE(3881), - [sym_requires_expression] = STATE(3881), - [sym_lambda_expression] = STATE(3881), - [sym_lambda_capture_specifier] = STATE(4519), - [sym_fold_expression] = STATE(3881), - [sym_parameter_pack_expansion] = STATE(3881), - [sym_type_parameter_pack_expansion] = STATE(5775), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4633), - [sym_qualified_identifier] = STATE(2977), - [sym_qualified_type_identifier] = STATE(4305), - [sym_user_defined_literal] = STATE(3881), - [aux_sym_type_definition_repeat1] = STATE(2979), - [aux_sym_sized_type_specifier_repeat1] = STATE(2182), - [sym_identifier] = ACTIONS(2529), - [anon_sym_LPAREN2] = ACTIONS(2531), - [anon_sym_BANG] = ACTIONS(2533), - [anon_sym_TILDE] = ACTIONS(2533), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_STAR] = ACTIONS(2537), - [anon_sym_AMP] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(2539), - [anon_sym_LBRACK] = ACTIONS(2272), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(2541), - [anon_sym_unsigned] = ACTIONS(2541), - [anon_sym_long] = ACTIONS(2541), - [anon_sym_short] = ACTIONS(2541), - [sym_primitive_type] = ACTIONS(2543), - [anon_sym_enum] = ACTIONS(2545), - [anon_sym_class] = ACTIONS(2547), - [anon_sym_struct] = ACTIONS(2549), - [anon_sym_union] = ACTIONS(2551), - [anon_sym_DASH_DASH] = ACTIONS(2553), - [anon_sym_PLUS_PLUS] = ACTIONS(2553), - [anon_sym_sizeof] = ACTIONS(2555), - [sym_number_literal] = ACTIONS(2557), - [anon_sym_L_SQUOTE] = ACTIONS(2559), - [anon_sym_u_SQUOTE] = ACTIONS(2559), - [anon_sym_U_SQUOTE] = ACTIONS(2559), - [anon_sym_u8_SQUOTE] = ACTIONS(2559), - [anon_sym_SQUOTE] = ACTIONS(2559), - [anon_sym_L_DQUOTE] = ACTIONS(2561), - [anon_sym_u_DQUOTE] = ACTIONS(2561), - [anon_sym_U_DQUOTE] = ACTIONS(2561), - [anon_sym_u8_DQUOTE] = ACTIONS(2561), - [anon_sym_DQUOTE] = ACTIONS(2561), - [sym_true] = ACTIONS(2563), - [sym_false] = ACTIONS(2563), - [sym_null] = ACTIONS(2563), + [432] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token2] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [aux_sym_preproc_else_token1] = ACTIONS(2595), + [aux_sym_preproc_elif_token1] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2565), - [anon_sym_decltype] = ACTIONS(2567), - [anon_sym_typename] = ACTIONS(2569), - [anon_sym_template] = ACTIONS(972), - [anon_sym_GT2] = ACTIONS(2745), - [anon_sym_delete] = ACTIONS(2573), - [anon_sym_co_await] = ACTIONS(2575), - [anon_sym_new] = ACTIONS(2577), - [anon_sym_requires] = ACTIONS(2579), - [sym_this] = ACTIONS(2563), - [sym_nullptr] = ACTIONS(2563), - [sym_raw_string_literal] = ACTIONS(2581), - }, - [512] = { - [sym_identifier] = ACTIONS(2747), - [aux_sym_preproc_include_token1] = ACTIONS(2747), - [aux_sym_preproc_def_token1] = ACTIONS(2747), - [aux_sym_preproc_if_token1] = ACTIONS(2747), - [aux_sym_preproc_if_token2] = ACTIONS(2747), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2747), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2747), - [aux_sym_preproc_else_token1] = ACTIONS(2747), - [aux_sym_preproc_elif_token1] = ACTIONS(2747), - [sym_preproc_directive] = ACTIONS(2747), - [anon_sym_LPAREN2] = ACTIONS(2749), - [anon_sym_BANG] = ACTIONS(2749), - [anon_sym_TILDE] = ACTIONS(2749), - [anon_sym_DASH] = ACTIONS(2747), - [anon_sym_PLUS] = ACTIONS(2747), - [anon_sym_STAR] = ACTIONS(2749), - [anon_sym_AMP_AMP] = ACTIONS(2749), - [anon_sym_AMP] = ACTIONS(2747), - [anon_sym_SEMI] = ACTIONS(2749), - [anon_sym_typedef] = ACTIONS(2747), - [anon_sym_extern] = ACTIONS(2747), - [anon_sym___attribute__] = ACTIONS(2747), - [anon_sym_COLON_COLON] = ACTIONS(2749), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2749), - [anon_sym___declspec] = ACTIONS(2747), - [anon_sym___based] = ACTIONS(2747), - [anon_sym___cdecl] = ACTIONS(2747), - [anon_sym___clrcall] = ACTIONS(2747), - [anon_sym___stdcall] = ACTIONS(2747), - [anon_sym___fastcall] = ACTIONS(2747), - [anon_sym___thiscall] = ACTIONS(2747), - [anon_sym___vectorcall] = ACTIONS(2747), - [anon_sym_LBRACE] = ACTIONS(2749), - [anon_sym_LBRACK] = ACTIONS(2747), - [anon_sym_static] = ACTIONS(2747), - [anon_sym_register] = ACTIONS(2747), - [anon_sym_inline] = ACTIONS(2747), - [anon_sym_thread_local] = ACTIONS(2747), - [anon_sym_const] = ACTIONS(2747), - [anon_sym_volatile] = ACTIONS(2747), - [anon_sym_restrict] = ACTIONS(2747), - [anon_sym__Atomic] = ACTIONS(2747), - [anon_sym_mutable] = ACTIONS(2747), - [anon_sym_constexpr] = ACTIONS(2747), - [anon_sym_constinit] = ACTIONS(2747), - [anon_sym_consteval] = ACTIONS(2747), - [anon_sym_signed] = ACTIONS(2747), - [anon_sym_unsigned] = ACTIONS(2747), - [anon_sym_long] = ACTIONS(2747), - [anon_sym_short] = ACTIONS(2747), - [sym_primitive_type] = ACTIONS(2747), - [anon_sym_enum] = ACTIONS(2747), - [anon_sym_class] = ACTIONS(2747), - [anon_sym_struct] = ACTIONS(2747), - [anon_sym_union] = ACTIONS(2747), - [anon_sym_if] = ACTIONS(2747), - [anon_sym_switch] = ACTIONS(2747), - [anon_sym_case] = ACTIONS(2747), - [anon_sym_default] = ACTIONS(2747), - [anon_sym_while] = ACTIONS(2747), - [anon_sym_do] = ACTIONS(2747), - [anon_sym_for] = ACTIONS(2747), - [anon_sym_return] = ACTIONS(2747), - [anon_sym_break] = ACTIONS(2747), - [anon_sym_continue] = ACTIONS(2747), - [anon_sym_goto] = ACTIONS(2747), - [anon_sym_DASH_DASH] = ACTIONS(2749), - [anon_sym_PLUS_PLUS] = ACTIONS(2749), - [anon_sym_sizeof] = ACTIONS(2747), - [sym_number_literal] = ACTIONS(2749), - [anon_sym_L_SQUOTE] = ACTIONS(2749), - [anon_sym_u_SQUOTE] = ACTIONS(2749), - [anon_sym_U_SQUOTE] = ACTIONS(2749), - [anon_sym_u8_SQUOTE] = ACTIONS(2749), - [anon_sym_SQUOTE] = ACTIONS(2749), - [anon_sym_L_DQUOTE] = ACTIONS(2749), - [anon_sym_u_DQUOTE] = ACTIONS(2749), - [anon_sym_U_DQUOTE] = ACTIONS(2749), - [anon_sym_u8_DQUOTE] = ACTIONS(2749), - [anon_sym_DQUOTE] = ACTIONS(2749), - [sym_true] = ACTIONS(2747), - [sym_false] = ACTIONS(2747), - [sym_null] = ACTIONS(2747), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2747), - [anon_sym_decltype] = ACTIONS(2747), - [anon_sym_virtual] = ACTIONS(2747), - [anon_sym_explicit] = ACTIONS(2747), - [anon_sym_typename] = ACTIONS(2747), - [anon_sym_template] = ACTIONS(2747), - [anon_sym_operator] = ACTIONS(2747), - [anon_sym_try] = ACTIONS(2747), - [anon_sym_delete] = ACTIONS(2747), - [anon_sym_throw] = ACTIONS(2747), - [anon_sym_namespace] = ACTIONS(2747), - [anon_sym_using] = ACTIONS(2747), - [anon_sym_static_assert] = ACTIONS(2747), - [anon_sym_concept] = ACTIONS(2747), - [anon_sym_co_return] = ACTIONS(2747), - [anon_sym_co_yield] = ACTIONS(2747), - [anon_sym_co_await] = ACTIONS(2747), - [anon_sym_new] = ACTIONS(2747), - [anon_sym_requires] = ACTIONS(2747), - [sym_this] = ACTIONS(2747), - [sym_nullptr] = ACTIONS(2747), - [sym_raw_string_literal] = ACTIONS(2749), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [513] = { - [sym_type_qualifier] = STATE(2979), - [sym__type_specifier] = STATE(3924), - [sym_sized_type_specifier] = STATE(2872), - [sym_enum_specifier] = STATE(2872), - [sym_struct_specifier] = STATE(2872), - [sym_union_specifier] = STATE(2872), - [sym__expression] = STATE(3526), - [sym_conditional_expression] = STATE(3881), - [sym_assignment_expression] = STATE(3881), - [sym_pointer_expression] = STATE(2977), - [sym_unary_expression] = STATE(3881), - [sym_binary_expression] = STATE(3881), - [sym_update_expression] = STATE(3881), - [sym_cast_expression] = STATE(3881), - [sym_type_descriptor] = STATE(5515), - [sym_sizeof_expression] = STATE(3881), - [sym_subscript_expression] = STATE(2977), - [sym_call_expression] = STATE(2977), - [sym_field_expression] = STATE(2977), - [sym_compound_literal_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(2977), - [sym_char_literal] = STATE(3701), - [sym_concatenated_string] = STATE(3701), - [sym_string_literal] = STATE(3219), - [sym_placeholder_type_specifier] = STATE(2872), - [sym_decltype_auto] = STATE(2878), - [sym_decltype] = STATE(2872), - [sym_class_specifier] = STATE(2872), - [sym__class_name] = STATE(6063), - [sym_dependent_type] = STATE(2872), - [sym_template_type] = STATE(4194), - [sym_template_function] = STATE(3881), - [sym_co_await_expression] = STATE(3881), - [sym_new_expression] = STATE(3881), - [sym_delete_expression] = STATE(3881), - [sym_requires_clause] = STATE(3881), - [sym_requires_expression] = STATE(3881), - [sym_lambda_expression] = STATE(3881), - [sym_lambda_capture_specifier] = STATE(4519), - [sym_fold_expression] = STATE(3881), - [sym_parameter_pack_expansion] = STATE(3881), - [sym_type_parameter_pack_expansion] = STATE(5769), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4633), - [sym_qualified_identifier] = STATE(2977), - [sym_qualified_type_identifier] = STATE(4305), - [sym_user_defined_literal] = STATE(3881), - [aux_sym_type_definition_repeat1] = STATE(2979), - [aux_sym_sized_type_specifier_repeat1] = STATE(2182), - [sym_identifier] = ACTIONS(2529), - [anon_sym_LPAREN2] = ACTIONS(2531), - [anon_sym_BANG] = ACTIONS(2533), - [anon_sym_TILDE] = ACTIONS(2533), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_STAR] = ACTIONS(2537), - [anon_sym_AMP] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(2539), - [anon_sym_LBRACK] = ACTIONS(2272), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(2541), - [anon_sym_unsigned] = ACTIONS(2541), - [anon_sym_long] = ACTIONS(2541), - [anon_sym_short] = ACTIONS(2541), - [sym_primitive_type] = ACTIONS(2543), - [anon_sym_enum] = ACTIONS(2545), - [anon_sym_class] = ACTIONS(2547), - [anon_sym_struct] = ACTIONS(2549), - [anon_sym_union] = ACTIONS(2551), - [anon_sym_DASH_DASH] = ACTIONS(2553), - [anon_sym_PLUS_PLUS] = ACTIONS(2553), - [anon_sym_sizeof] = ACTIONS(2555), - [sym_number_literal] = ACTIONS(2557), - [anon_sym_L_SQUOTE] = ACTIONS(2559), - [anon_sym_u_SQUOTE] = ACTIONS(2559), - [anon_sym_U_SQUOTE] = ACTIONS(2559), - [anon_sym_u8_SQUOTE] = ACTIONS(2559), - [anon_sym_SQUOTE] = ACTIONS(2559), - [anon_sym_L_DQUOTE] = ACTIONS(2561), - [anon_sym_u_DQUOTE] = ACTIONS(2561), - [anon_sym_U_DQUOTE] = ACTIONS(2561), - [anon_sym_u8_DQUOTE] = ACTIONS(2561), - [anon_sym_DQUOTE] = ACTIONS(2561), - [sym_true] = ACTIONS(2563), - [sym_false] = ACTIONS(2563), - [sym_null] = ACTIONS(2563), + [433] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token2] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [aux_sym_preproc_else_token1] = ACTIONS(2595), + [aux_sym_preproc_elif_token1] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2565), - [anon_sym_decltype] = ACTIONS(2567), - [anon_sym_typename] = ACTIONS(2569), - [anon_sym_template] = ACTIONS(972), - [anon_sym_GT2] = ACTIONS(2751), - [anon_sym_delete] = ACTIONS(2573), - [anon_sym_co_await] = ACTIONS(2575), - [anon_sym_new] = ACTIONS(2577), - [anon_sym_requires] = ACTIONS(2579), - [sym_this] = ACTIONS(2563), - [sym_nullptr] = ACTIONS(2563), - [sym_raw_string_literal] = ACTIONS(2581), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [514] = { - [sym_identifier] = ACTIONS(2753), - [aux_sym_preproc_include_token1] = ACTIONS(2753), - [aux_sym_preproc_def_token1] = ACTIONS(2753), - [aux_sym_preproc_if_token1] = ACTIONS(2753), - [aux_sym_preproc_if_token2] = ACTIONS(2753), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2753), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2753), - [aux_sym_preproc_else_token1] = ACTIONS(2753), - [aux_sym_preproc_elif_token1] = ACTIONS(2753), - [sym_preproc_directive] = ACTIONS(2753), - [anon_sym_LPAREN2] = ACTIONS(2755), - [anon_sym_BANG] = ACTIONS(2755), - [anon_sym_TILDE] = ACTIONS(2755), - [anon_sym_DASH] = ACTIONS(2753), - [anon_sym_PLUS] = ACTIONS(2753), - [anon_sym_STAR] = ACTIONS(2755), - [anon_sym_AMP_AMP] = ACTIONS(2755), - [anon_sym_AMP] = ACTIONS(2753), - [anon_sym_SEMI] = ACTIONS(2755), - [anon_sym_typedef] = ACTIONS(2753), - [anon_sym_extern] = ACTIONS(2753), - [anon_sym___attribute__] = ACTIONS(2753), - [anon_sym_COLON_COLON] = ACTIONS(2755), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2755), - [anon_sym___declspec] = ACTIONS(2753), - [anon_sym___based] = ACTIONS(2753), - [anon_sym___cdecl] = ACTIONS(2753), - [anon_sym___clrcall] = ACTIONS(2753), - [anon_sym___stdcall] = ACTIONS(2753), - [anon_sym___fastcall] = ACTIONS(2753), - [anon_sym___thiscall] = ACTIONS(2753), - [anon_sym___vectorcall] = ACTIONS(2753), - [anon_sym_LBRACE] = ACTIONS(2755), - [anon_sym_LBRACK] = ACTIONS(2753), - [anon_sym_static] = ACTIONS(2753), - [anon_sym_register] = ACTIONS(2753), - [anon_sym_inline] = ACTIONS(2753), - [anon_sym_thread_local] = ACTIONS(2753), - [anon_sym_const] = ACTIONS(2753), - [anon_sym_volatile] = ACTIONS(2753), - [anon_sym_restrict] = ACTIONS(2753), - [anon_sym__Atomic] = ACTIONS(2753), - [anon_sym_mutable] = ACTIONS(2753), - [anon_sym_constexpr] = ACTIONS(2753), - [anon_sym_constinit] = ACTIONS(2753), - [anon_sym_consteval] = ACTIONS(2753), - [anon_sym_signed] = ACTIONS(2753), - [anon_sym_unsigned] = ACTIONS(2753), - [anon_sym_long] = ACTIONS(2753), - [anon_sym_short] = ACTIONS(2753), - [sym_primitive_type] = ACTIONS(2753), - [anon_sym_enum] = ACTIONS(2753), - [anon_sym_class] = ACTIONS(2753), - [anon_sym_struct] = ACTIONS(2753), - [anon_sym_union] = ACTIONS(2753), - [anon_sym_if] = ACTIONS(2753), - [anon_sym_switch] = ACTIONS(2753), - [anon_sym_case] = ACTIONS(2753), - [anon_sym_default] = ACTIONS(2753), - [anon_sym_while] = ACTIONS(2753), - [anon_sym_do] = ACTIONS(2753), - [anon_sym_for] = ACTIONS(2753), - [anon_sym_return] = ACTIONS(2753), - [anon_sym_break] = ACTIONS(2753), - [anon_sym_continue] = ACTIONS(2753), - [anon_sym_goto] = ACTIONS(2753), - [anon_sym_DASH_DASH] = ACTIONS(2755), - [anon_sym_PLUS_PLUS] = ACTIONS(2755), - [anon_sym_sizeof] = ACTIONS(2753), - [sym_number_literal] = ACTIONS(2755), - [anon_sym_L_SQUOTE] = ACTIONS(2755), - [anon_sym_u_SQUOTE] = ACTIONS(2755), - [anon_sym_U_SQUOTE] = ACTIONS(2755), - [anon_sym_u8_SQUOTE] = ACTIONS(2755), - [anon_sym_SQUOTE] = ACTIONS(2755), - [anon_sym_L_DQUOTE] = ACTIONS(2755), - [anon_sym_u_DQUOTE] = ACTIONS(2755), - [anon_sym_U_DQUOTE] = ACTIONS(2755), - [anon_sym_u8_DQUOTE] = ACTIONS(2755), - [anon_sym_DQUOTE] = ACTIONS(2755), - [sym_true] = ACTIONS(2753), - [sym_false] = ACTIONS(2753), - [sym_null] = ACTIONS(2753), + [434] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token2] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [aux_sym_preproc_else_token1] = ACTIONS(2595), + [aux_sym_preproc_elif_token1] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2753), - [anon_sym_decltype] = ACTIONS(2753), - [anon_sym_virtual] = ACTIONS(2753), - [anon_sym_explicit] = ACTIONS(2753), - [anon_sym_typename] = ACTIONS(2753), - [anon_sym_template] = ACTIONS(2753), - [anon_sym_operator] = ACTIONS(2753), - [anon_sym_try] = ACTIONS(2753), - [anon_sym_delete] = ACTIONS(2753), - [anon_sym_throw] = ACTIONS(2753), - [anon_sym_namespace] = ACTIONS(2753), - [anon_sym_using] = ACTIONS(2753), - [anon_sym_static_assert] = ACTIONS(2753), - [anon_sym_concept] = ACTIONS(2753), - [anon_sym_co_return] = ACTIONS(2753), - [anon_sym_co_yield] = ACTIONS(2753), - [anon_sym_co_await] = ACTIONS(2753), - [anon_sym_new] = ACTIONS(2753), - [anon_sym_requires] = ACTIONS(2753), - [sym_this] = ACTIONS(2753), - [sym_nullptr] = ACTIONS(2753), - [sym_raw_string_literal] = ACTIONS(2755), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [515] = { - [sym_identifier] = ACTIONS(2757), - [aux_sym_preproc_include_token1] = ACTIONS(2757), - [aux_sym_preproc_def_token1] = ACTIONS(2757), - [aux_sym_preproc_if_token1] = ACTIONS(2757), - [aux_sym_preproc_if_token2] = ACTIONS(2757), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2757), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2757), - [aux_sym_preproc_else_token1] = ACTIONS(2757), - [aux_sym_preproc_elif_token1] = ACTIONS(2757), - [sym_preproc_directive] = ACTIONS(2757), - [anon_sym_LPAREN2] = ACTIONS(2759), - [anon_sym_BANG] = ACTIONS(2759), - [anon_sym_TILDE] = ACTIONS(2759), - [anon_sym_DASH] = ACTIONS(2757), - [anon_sym_PLUS] = ACTIONS(2757), - [anon_sym_STAR] = ACTIONS(2759), - [anon_sym_AMP_AMP] = ACTIONS(2759), - [anon_sym_AMP] = ACTIONS(2757), - [anon_sym_SEMI] = ACTIONS(2759), - [anon_sym_typedef] = ACTIONS(2757), - [anon_sym_extern] = ACTIONS(2757), - [anon_sym___attribute__] = ACTIONS(2757), - [anon_sym_COLON_COLON] = ACTIONS(2759), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2759), - [anon_sym___declspec] = ACTIONS(2757), - [anon_sym___based] = ACTIONS(2757), - [anon_sym___cdecl] = ACTIONS(2757), - [anon_sym___clrcall] = ACTIONS(2757), - [anon_sym___stdcall] = ACTIONS(2757), - [anon_sym___fastcall] = ACTIONS(2757), - [anon_sym___thiscall] = ACTIONS(2757), - [anon_sym___vectorcall] = ACTIONS(2757), - [anon_sym_LBRACE] = ACTIONS(2759), - [anon_sym_LBRACK] = ACTIONS(2757), - [anon_sym_static] = ACTIONS(2757), - [anon_sym_register] = ACTIONS(2757), - [anon_sym_inline] = ACTIONS(2757), - [anon_sym_thread_local] = ACTIONS(2757), - [anon_sym_const] = ACTIONS(2757), - [anon_sym_volatile] = ACTIONS(2757), - [anon_sym_restrict] = ACTIONS(2757), - [anon_sym__Atomic] = ACTIONS(2757), - [anon_sym_mutable] = ACTIONS(2757), - [anon_sym_constexpr] = ACTIONS(2757), - [anon_sym_constinit] = ACTIONS(2757), - [anon_sym_consteval] = ACTIONS(2757), - [anon_sym_signed] = ACTIONS(2757), - [anon_sym_unsigned] = ACTIONS(2757), - [anon_sym_long] = ACTIONS(2757), - [anon_sym_short] = ACTIONS(2757), - [sym_primitive_type] = ACTIONS(2757), - [anon_sym_enum] = ACTIONS(2757), - [anon_sym_class] = ACTIONS(2757), - [anon_sym_struct] = ACTIONS(2757), - [anon_sym_union] = ACTIONS(2757), - [anon_sym_if] = ACTIONS(2757), - [anon_sym_switch] = ACTIONS(2757), - [anon_sym_case] = ACTIONS(2757), - [anon_sym_default] = ACTIONS(2757), - [anon_sym_while] = ACTIONS(2757), - [anon_sym_do] = ACTIONS(2757), - [anon_sym_for] = ACTIONS(2757), - [anon_sym_return] = ACTIONS(2757), - [anon_sym_break] = ACTIONS(2757), - [anon_sym_continue] = ACTIONS(2757), - [anon_sym_goto] = ACTIONS(2757), - [anon_sym_DASH_DASH] = ACTIONS(2759), - [anon_sym_PLUS_PLUS] = ACTIONS(2759), - [anon_sym_sizeof] = ACTIONS(2757), - [sym_number_literal] = ACTIONS(2759), - [anon_sym_L_SQUOTE] = ACTIONS(2759), - [anon_sym_u_SQUOTE] = ACTIONS(2759), - [anon_sym_U_SQUOTE] = ACTIONS(2759), - [anon_sym_u8_SQUOTE] = ACTIONS(2759), - [anon_sym_SQUOTE] = ACTIONS(2759), - [anon_sym_L_DQUOTE] = ACTIONS(2759), - [anon_sym_u_DQUOTE] = ACTIONS(2759), - [anon_sym_U_DQUOTE] = ACTIONS(2759), - [anon_sym_u8_DQUOTE] = ACTIONS(2759), - [anon_sym_DQUOTE] = ACTIONS(2759), - [sym_true] = ACTIONS(2757), - [sym_false] = ACTIONS(2757), - [sym_null] = ACTIONS(2757), + [435] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token2] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [aux_sym_preproc_else_token1] = ACTIONS(2595), + [aux_sym_preproc_elif_token1] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2757), - [anon_sym_decltype] = ACTIONS(2757), - [anon_sym_virtual] = ACTIONS(2757), - [anon_sym_explicit] = ACTIONS(2757), - [anon_sym_typename] = ACTIONS(2757), - [anon_sym_template] = ACTIONS(2757), - [anon_sym_operator] = ACTIONS(2757), - [anon_sym_try] = ACTIONS(2757), - [anon_sym_delete] = ACTIONS(2757), - [anon_sym_throw] = ACTIONS(2757), - [anon_sym_namespace] = ACTIONS(2757), - [anon_sym_using] = ACTIONS(2757), - [anon_sym_static_assert] = ACTIONS(2757), - [anon_sym_concept] = ACTIONS(2757), - [anon_sym_co_return] = ACTIONS(2757), - [anon_sym_co_yield] = ACTIONS(2757), - [anon_sym_co_await] = ACTIONS(2757), - [anon_sym_new] = ACTIONS(2757), - [anon_sym_requires] = ACTIONS(2757), - [sym_this] = ACTIONS(2757), - [sym_nullptr] = ACTIONS(2757), - [sym_raw_string_literal] = ACTIONS(2759), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [516] = { - [sym_type_qualifier] = STATE(2979), - [sym__type_specifier] = STATE(3924), - [sym_sized_type_specifier] = STATE(2872), - [sym_enum_specifier] = STATE(2872), - [sym_struct_specifier] = STATE(2872), - [sym_union_specifier] = STATE(2872), - [sym__expression] = STATE(3524), - [sym_conditional_expression] = STATE(3881), - [sym_assignment_expression] = STATE(3881), - [sym_pointer_expression] = STATE(2977), - [sym_unary_expression] = STATE(3881), - [sym_binary_expression] = STATE(3881), - [sym_update_expression] = STATE(3881), - [sym_cast_expression] = STATE(3881), - [sym_type_descriptor] = STATE(5493), - [sym_sizeof_expression] = STATE(3881), - [sym_subscript_expression] = STATE(2977), - [sym_call_expression] = STATE(2977), - [sym_field_expression] = STATE(2977), - [sym_compound_literal_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(2977), - [sym_char_literal] = STATE(3701), - [sym_concatenated_string] = STATE(3701), - [sym_string_literal] = STATE(3219), - [sym_placeholder_type_specifier] = STATE(2872), - [sym_decltype_auto] = STATE(2878), - [sym_decltype] = STATE(2872), - [sym_class_specifier] = STATE(2872), - [sym__class_name] = STATE(6063), - [sym_dependent_type] = STATE(2872), - [sym_template_type] = STATE(4194), - [sym_template_function] = STATE(3881), - [sym_co_await_expression] = STATE(3881), - [sym_new_expression] = STATE(3881), - [sym_delete_expression] = STATE(3881), - [sym_requires_clause] = STATE(3881), - [sym_requires_expression] = STATE(3881), - [sym_lambda_expression] = STATE(3881), - [sym_lambda_capture_specifier] = STATE(4519), - [sym_fold_expression] = STATE(3881), - [sym_parameter_pack_expansion] = STATE(3881), - [sym_type_parameter_pack_expansion] = STATE(5757), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4633), - [sym_qualified_identifier] = STATE(2977), - [sym_qualified_type_identifier] = STATE(4305), - [sym_user_defined_literal] = STATE(3881), - [aux_sym_type_definition_repeat1] = STATE(2979), - [aux_sym_sized_type_specifier_repeat1] = STATE(2182), - [sym_identifier] = ACTIONS(2529), - [anon_sym_LPAREN2] = ACTIONS(2531), - [anon_sym_BANG] = ACTIONS(2533), - [anon_sym_TILDE] = ACTIONS(2533), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_STAR] = ACTIONS(2537), - [anon_sym_AMP] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(2539), - [anon_sym_LBRACK] = ACTIONS(2272), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(2541), - [anon_sym_unsigned] = ACTIONS(2541), - [anon_sym_long] = ACTIONS(2541), - [anon_sym_short] = ACTIONS(2541), - [sym_primitive_type] = ACTIONS(2543), - [anon_sym_enum] = ACTIONS(2545), - [anon_sym_class] = ACTIONS(2547), - [anon_sym_struct] = ACTIONS(2549), - [anon_sym_union] = ACTIONS(2551), - [anon_sym_DASH_DASH] = ACTIONS(2553), - [anon_sym_PLUS_PLUS] = ACTIONS(2553), - [anon_sym_sizeof] = ACTIONS(2555), - [sym_number_literal] = ACTIONS(2557), - [anon_sym_L_SQUOTE] = ACTIONS(2559), - [anon_sym_u_SQUOTE] = ACTIONS(2559), - [anon_sym_U_SQUOTE] = ACTIONS(2559), - [anon_sym_u8_SQUOTE] = ACTIONS(2559), - [anon_sym_SQUOTE] = ACTIONS(2559), - [anon_sym_L_DQUOTE] = ACTIONS(2561), - [anon_sym_u_DQUOTE] = ACTIONS(2561), - [anon_sym_U_DQUOTE] = ACTIONS(2561), - [anon_sym_u8_DQUOTE] = ACTIONS(2561), - [anon_sym_DQUOTE] = ACTIONS(2561), - [sym_true] = ACTIONS(2563), - [sym_false] = ACTIONS(2563), - [sym_null] = ACTIONS(2563), + [436] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token2] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [aux_sym_preproc_else_token1] = ACTIONS(2595), + [aux_sym_preproc_elif_token1] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2565), - [anon_sym_decltype] = ACTIONS(2567), - [anon_sym_typename] = ACTIONS(2569), - [anon_sym_template] = ACTIONS(972), - [anon_sym_GT2] = ACTIONS(2761), - [anon_sym_delete] = ACTIONS(2573), - [anon_sym_co_await] = ACTIONS(2575), - [anon_sym_new] = ACTIONS(2577), - [anon_sym_requires] = ACTIONS(2579), - [sym_this] = ACTIONS(2563), - [sym_nullptr] = ACTIONS(2563), - [sym_raw_string_literal] = ACTIONS(2581), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [517] = { - [sym_identifier] = ACTIONS(2757), - [aux_sym_preproc_include_token1] = ACTIONS(2757), - [aux_sym_preproc_def_token1] = ACTIONS(2757), - [aux_sym_preproc_if_token1] = ACTIONS(2757), - [aux_sym_preproc_if_token2] = ACTIONS(2757), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2757), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2757), - [aux_sym_preproc_else_token1] = ACTIONS(2757), - [aux_sym_preproc_elif_token1] = ACTIONS(2757), - [sym_preproc_directive] = ACTIONS(2757), - [anon_sym_LPAREN2] = ACTIONS(2759), - [anon_sym_BANG] = ACTIONS(2759), - [anon_sym_TILDE] = ACTIONS(2759), - [anon_sym_DASH] = ACTIONS(2757), - [anon_sym_PLUS] = ACTIONS(2757), - [anon_sym_STAR] = ACTIONS(2759), - [anon_sym_AMP_AMP] = ACTIONS(2759), - [anon_sym_AMP] = ACTIONS(2757), - [anon_sym_SEMI] = ACTIONS(2759), - [anon_sym_typedef] = ACTIONS(2757), - [anon_sym_extern] = ACTIONS(2757), - [anon_sym___attribute__] = ACTIONS(2757), - [anon_sym_COLON_COLON] = ACTIONS(2759), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2759), - [anon_sym___declspec] = ACTIONS(2757), - [anon_sym___based] = ACTIONS(2757), - [anon_sym___cdecl] = ACTIONS(2757), - [anon_sym___clrcall] = ACTIONS(2757), - [anon_sym___stdcall] = ACTIONS(2757), - [anon_sym___fastcall] = ACTIONS(2757), - [anon_sym___thiscall] = ACTIONS(2757), - [anon_sym___vectorcall] = ACTIONS(2757), - [anon_sym_LBRACE] = ACTIONS(2759), - [anon_sym_LBRACK] = ACTIONS(2757), - [anon_sym_static] = ACTIONS(2757), - [anon_sym_register] = ACTIONS(2757), - [anon_sym_inline] = ACTIONS(2757), - [anon_sym_thread_local] = ACTIONS(2757), - [anon_sym_const] = ACTIONS(2757), - [anon_sym_volatile] = ACTIONS(2757), - [anon_sym_restrict] = ACTIONS(2757), - [anon_sym__Atomic] = ACTIONS(2757), - [anon_sym_mutable] = ACTIONS(2757), - [anon_sym_constexpr] = ACTIONS(2757), - [anon_sym_constinit] = ACTIONS(2757), - [anon_sym_consteval] = ACTIONS(2757), - [anon_sym_signed] = ACTIONS(2757), - [anon_sym_unsigned] = ACTIONS(2757), - [anon_sym_long] = ACTIONS(2757), - [anon_sym_short] = ACTIONS(2757), - [sym_primitive_type] = ACTIONS(2757), - [anon_sym_enum] = ACTIONS(2757), - [anon_sym_class] = ACTIONS(2757), - [anon_sym_struct] = ACTIONS(2757), - [anon_sym_union] = ACTIONS(2757), - [anon_sym_if] = ACTIONS(2757), - [anon_sym_switch] = ACTIONS(2757), - [anon_sym_case] = ACTIONS(2757), - [anon_sym_default] = ACTIONS(2757), - [anon_sym_while] = ACTIONS(2757), - [anon_sym_do] = ACTIONS(2757), - [anon_sym_for] = ACTIONS(2757), - [anon_sym_return] = ACTIONS(2757), - [anon_sym_break] = ACTIONS(2757), - [anon_sym_continue] = ACTIONS(2757), - [anon_sym_goto] = ACTIONS(2757), - [anon_sym_DASH_DASH] = ACTIONS(2759), - [anon_sym_PLUS_PLUS] = ACTIONS(2759), - [anon_sym_sizeof] = ACTIONS(2757), - [sym_number_literal] = ACTIONS(2759), - [anon_sym_L_SQUOTE] = ACTIONS(2759), - [anon_sym_u_SQUOTE] = ACTIONS(2759), - [anon_sym_U_SQUOTE] = ACTIONS(2759), - [anon_sym_u8_SQUOTE] = ACTIONS(2759), - [anon_sym_SQUOTE] = ACTIONS(2759), - [anon_sym_L_DQUOTE] = ACTIONS(2759), - [anon_sym_u_DQUOTE] = ACTIONS(2759), - [anon_sym_U_DQUOTE] = ACTIONS(2759), - [anon_sym_u8_DQUOTE] = ACTIONS(2759), - [anon_sym_DQUOTE] = ACTIONS(2759), - [sym_true] = ACTIONS(2757), - [sym_false] = ACTIONS(2757), - [sym_null] = ACTIONS(2757), + [437] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token2] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [aux_sym_preproc_else_token1] = ACTIONS(2595), + [aux_sym_preproc_elif_token1] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2757), - [anon_sym_decltype] = ACTIONS(2757), - [anon_sym_virtual] = ACTIONS(2757), - [anon_sym_explicit] = ACTIONS(2757), - [anon_sym_typename] = ACTIONS(2757), - [anon_sym_template] = ACTIONS(2757), - [anon_sym_operator] = ACTIONS(2757), - [anon_sym_try] = ACTIONS(2757), - [anon_sym_delete] = ACTIONS(2757), - [anon_sym_throw] = ACTIONS(2757), - [anon_sym_namespace] = ACTIONS(2757), - [anon_sym_using] = ACTIONS(2757), - [anon_sym_static_assert] = ACTIONS(2757), - [anon_sym_concept] = ACTIONS(2757), - [anon_sym_co_return] = ACTIONS(2757), - [anon_sym_co_yield] = ACTIONS(2757), - [anon_sym_co_await] = ACTIONS(2757), - [anon_sym_new] = ACTIONS(2757), - [anon_sym_requires] = ACTIONS(2757), - [sym_this] = ACTIONS(2757), - [sym_nullptr] = ACTIONS(2757), - [sym_raw_string_literal] = ACTIONS(2759), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [518] = { - [sym_identifier] = ACTIONS(2763), - [aux_sym_preproc_include_token1] = ACTIONS(2763), - [aux_sym_preproc_def_token1] = ACTIONS(2763), - [aux_sym_preproc_if_token1] = ACTIONS(2763), - [aux_sym_preproc_if_token2] = ACTIONS(2763), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2763), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2763), - [aux_sym_preproc_else_token1] = ACTIONS(2763), - [aux_sym_preproc_elif_token1] = ACTIONS(2763), - [sym_preproc_directive] = ACTIONS(2763), - [anon_sym_LPAREN2] = ACTIONS(2765), - [anon_sym_BANG] = ACTIONS(2765), - [anon_sym_TILDE] = ACTIONS(2765), - [anon_sym_DASH] = ACTIONS(2763), - [anon_sym_PLUS] = ACTIONS(2763), - [anon_sym_STAR] = ACTIONS(2765), - [anon_sym_AMP_AMP] = ACTIONS(2765), - [anon_sym_AMP] = ACTIONS(2763), - [anon_sym_SEMI] = ACTIONS(2765), - [anon_sym_typedef] = ACTIONS(2763), - [anon_sym_extern] = ACTIONS(2763), - [anon_sym___attribute__] = ACTIONS(2763), - [anon_sym_COLON_COLON] = ACTIONS(2765), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2765), - [anon_sym___declspec] = ACTIONS(2763), - [anon_sym___based] = ACTIONS(2763), - [anon_sym___cdecl] = ACTIONS(2763), - [anon_sym___clrcall] = ACTIONS(2763), - [anon_sym___stdcall] = ACTIONS(2763), - [anon_sym___fastcall] = ACTIONS(2763), - [anon_sym___thiscall] = ACTIONS(2763), - [anon_sym___vectorcall] = ACTIONS(2763), - [anon_sym_LBRACE] = ACTIONS(2765), - [anon_sym_LBRACK] = ACTIONS(2763), - [anon_sym_static] = ACTIONS(2763), - [anon_sym_register] = ACTIONS(2763), - [anon_sym_inline] = ACTIONS(2763), - [anon_sym_thread_local] = ACTIONS(2763), - [anon_sym_const] = ACTIONS(2763), - [anon_sym_volatile] = ACTIONS(2763), - [anon_sym_restrict] = ACTIONS(2763), - [anon_sym__Atomic] = ACTIONS(2763), - [anon_sym_mutable] = ACTIONS(2763), - [anon_sym_constexpr] = ACTIONS(2763), - [anon_sym_constinit] = ACTIONS(2763), - [anon_sym_consteval] = ACTIONS(2763), - [anon_sym_signed] = ACTIONS(2763), - [anon_sym_unsigned] = ACTIONS(2763), - [anon_sym_long] = ACTIONS(2763), - [anon_sym_short] = ACTIONS(2763), - [sym_primitive_type] = ACTIONS(2763), - [anon_sym_enum] = ACTIONS(2763), - [anon_sym_class] = ACTIONS(2763), - [anon_sym_struct] = ACTIONS(2763), - [anon_sym_union] = ACTIONS(2763), - [anon_sym_if] = ACTIONS(2763), - [anon_sym_switch] = ACTIONS(2763), - [anon_sym_case] = ACTIONS(2763), - [anon_sym_default] = ACTIONS(2763), - [anon_sym_while] = ACTIONS(2763), - [anon_sym_do] = ACTIONS(2763), - [anon_sym_for] = ACTIONS(2763), - [anon_sym_return] = ACTIONS(2763), - [anon_sym_break] = ACTIONS(2763), - [anon_sym_continue] = ACTIONS(2763), - [anon_sym_goto] = ACTIONS(2763), - [anon_sym_DASH_DASH] = ACTIONS(2765), - [anon_sym_PLUS_PLUS] = ACTIONS(2765), - [anon_sym_sizeof] = ACTIONS(2763), - [sym_number_literal] = ACTIONS(2765), - [anon_sym_L_SQUOTE] = ACTIONS(2765), - [anon_sym_u_SQUOTE] = ACTIONS(2765), - [anon_sym_U_SQUOTE] = ACTIONS(2765), - [anon_sym_u8_SQUOTE] = ACTIONS(2765), - [anon_sym_SQUOTE] = ACTIONS(2765), - [anon_sym_L_DQUOTE] = ACTIONS(2765), - [anon_sym_u_DQUOTE] = ACTIONS(2765), - [anon_sym_U_DQUOTE] = ACTIONS(2765), - [anon_sym_u8_DQUOTE] = ACTIONS(2765), - [anon_sym_DQUOTE] = ACTIONS(2765), - [sym_true] = ACTIONS(2763), - [sym_false] = ACTIONS(2763), - [sym_null] = ACTIONS(2763), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2763), - [anon_sym_decltype] = ACTIONS(2763), - [anon_sym_virtual] = ACTIONS(2763), - [anon_sym_explicit] = ACTIONS(2763), - [anon_sym_typename] = ACTIONS(2763), - [anon_sym_template] = ACTIONS(2763), - [anon_sym_operator] = ACTIONS(2763), - [anon_sym_try] = ACTIONS(2763), - [anon_sym_delete] = ACTIONS(2763), - [anon_sym_throw] = ACTIONS(2763), - [anon_sym_namespace] = ACTIONS(2763), - [anon_sym_using] = ACTIONS(2763), - [anon_sym_static_assert] = ACTIONS(2763), - [anon_sym_concept] = ACTIONS(2763), - [anon_sym_co_return] = ACTIONS(2763), - [anon_sym_co_yield] = ACTIONS(2763), - [anon_sym_co_await] = ACTIONS(2763), - [anon_sym_new] = ACTIONS(2763), - [anon_sym_requires] = ACTIONS(2763), - [sym_this] = ACTIONS(2763), - [sym_nullptr] = ACTIONS(2763), - [sym_raw_string_literal] = ACTIONS(2765), + [438] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token2] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [aux_sym_preproc_else_token1] = ACTIONS(2595), + [aux_sym_preproc_elif_token1] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [519] = { - [sym_type_qualifier] = STATE(2979), - [sym__type_specifier] = STATE(3924), - [sym_sized_type_specifier] = STATE(2872), - [sym_enum_specifier] = STATE(2872), - [sym_struct_specifier] = STATE(2872), - [sym_union_specifier] = STATE(2872), - [sym__expression] = STATE(3523), - [sym_conditional_expression] = STATE(3881), - [sym_assignment_expression] = STATE(3881), - [sym_pointer_expression] = STATE(2977), - [sym_unary_expression] = STATE(3881), - [sym_binary_expression] = STATE(3881), - [sym_update_expression] = STATE(3881), - [sym_cast_expression] = STATE(3881), - [sym_type_descriptor] = STATE(5440), - [sym_sizeof_expression] = STATE(3881), - [sym_subscript_expression] = STATE(2977), - [sym_call_expression] = STATE(2977), - [sym_field_expression] = STATE(2977), - [sym_compound_literal_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(2977), - [sym_char_literal] = STATE(3701), - [sym_concatenated_string] = STATE(3701), - [sym_string_literal] = STATE(3219), - [sym_placeholder_type_specifier] = STATE(2872), - [sym_decltype_auto] = STATE(2878), - [sym_decltype] = STATE(2872), - [sym_class_specifier] = STATE(2872), - [sym__class_name] = STATE(6063), - [sym_dependent_type] = STATE(2872), - [sym_template_type] = STATE(4194), - [sym_template_function] = STATE(3881), - [sym_co_await_expression] = STATE(3881), - [sym_new_expression] = STATE(3881), - [sym_delete_expression] = STATE(3881), - [sym_requires_clause] = STATE(3881), - [sym_requires_expression] = STATE(3881), - [sym_lambda_expression] = STATE(3881), - [sym_lambda_capture_specifier] = STATE(4519), - [sym_fold_expression] = STATE(3881), - [sym_parameter_pack_expansion] = STATE(3881), - [sym_type_parameter_pack_expansion] = STATE(5752), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4633), - [sym_qualified_identifier] = STATE(2977), - [sym_qualified_type_identifier] = STATE(4305), - [sym_user_defined_literal] = STATE(3881), - [aux_sym_type_definition_repeat1] = STATE(2979), - [aux_sym_sized_type_specifier_repeat1] = STATE(2182), - [sym_identifier] = ACTIONS(2529), - [anon_sym_LPAREN2] = ACTIONS(2531), - [anon_sym_BANG] = ACTIONS(2533), - [anon_sym_TILDE] = ACTIONS(2533), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_STAR] = ACTIONS(2537), - [anon_sym_AMP] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(2539), - [anon_sym_LBRACK] = ACTIONS(2272), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(2541), - [anon_sym_unsigned] = ACTIONS(2541), - [anon_sym_long] = ACTIONS(2541), - [anon_sym_short] = ACTIONS(2541), - [sym_primitive_type] = ACTIONS(2543), - [anon_sym_enum] = ACTIONS(2545), - [anon_sym_class] = ACTIONS(2547), - [anon_sym_struct] = ACTIONS(2549), - [anon_sym_union] = ACTIONS(2551), - [anon_sym_DASH_DASH] = ACTIONS(2553), - [anon_sym_PLUS_PLUS] = ACTIONS(2553), - [anon_sym_sizeof] = ACTIONS(2555), - [sym_number_literal] = ACTIONS(2557), - [anon_sym_L_SQUOTE] = ACTIONS(2559), - [anon_sym_u_SQUOTE] = ACTIONS(2559), - [anon_sym_U_SQUOTE] = ACTIONS(2559), - [anon_sym_u8_SQUOTE] = ACTIONS(2559), - [anon_sym_SQUOTE] = ACTIONS(2559), - [anon_sym_L_DQUOTE] = ACTIONS(2561), - [anon_sym_u_DQUOTE] = ACTIONS(2561), - [anon_sym_U_DQUOTE] = ACTIONS(2561), - [anon_sym_u8_DQUOTE] = ACTIONS(2561), - [anon_sym_DQUOTE] = ACTIONS(2561), - [sym_true] = ACTIONS(2563), - [sym_false] = ACTIONS(2563), - [sym_null] = ACTIONS(2563), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2565), - [anon_sym_decltype] = ACTIONS(2567), - [anon_sym_typename] = ACTIONS(2569), - [anon_sym_template] = ACTIONS(972), - [anon_sym_GT2] = ACTIONS(2767), - [anon_sym_delete] = ACTIONS(2573), - [anon_sym_co_await] = ACTIONS(2575), - [anon_sym_new] = ACTIONS(2577), - [anon_sym_requires] = ACTIONS(2579), - [sym_this] = ACTIONS(2563), - [sym_nullptr] = ACTIONS(2563), - [sym_raw_string_literal] = ACTIONS(2581), - }, - [520] = { - [sym_identifier] = ACTIONS(2769), - [aux_sym_preproc_include_token1] = ACTIONS(2769), - [aux_sym_preproc_def_token1] = ACTIONS(2769), - [aux_sym_preproc_if_token1] = ACTIONS(2769), - [aux_sym_preproc_if_token2] = ACTIONS(2769), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2769), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2769), - [aux_sym_preproc_else_token1] = ACTIONS(2769), - [aux_sym_preproc_elif_token1] = ACTIONS(2769), - [sym_preproc_directive] = ACTIONS(2769), - [anon_sym_LPAREN2] = ACTIONS(2771), - [anon_sym_BANG] = ACTIONS(2771), - [anon_sym_TILDE] = ACTIONS(2771), - [anon_sym_DASH] = ACTIONS(2769), - [anon_sym_PLUS] = ACTIONS(2769), - [anon_sym_STAR] = ACTIONS(2771), - [anon_sym_AMP_AMP] = ACTIONS(2771), - [anon_sym_AMP] = ACTIONS(2769), - [anon_sym_SEMI] = ACTIONS(2771), - [anon_sym_typedef] = ACTIONS(2769), - [anon_sym_extern] = ACTIONS(2769), - [anon_sym___attribute__] = ACTIONS(2769), - [anon_sym_COLON_COLON] = ACTIONS(2771), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2771), - [anon_sym___declspec] = ACTIONS(2769), - [anon_sym___based] = ACTIONS(2769), - [anon_sym___cdecl] = ACTIONS(2769), - [anon_sym___clrcall] = ACTIONS(2769), - [anon_sym___stdcall] = ACTIONS(2769), - [anon_sym___fastcall] = ACTIONS(2769), - [anon_sym___thiscall] = ACTIONS(2769), - [anon_sym___vectorcall] = ACTIONS(2769), - [anon_sym_LBRACE] = ACTIONS(2771), - [anon_sym_LBRACK] = ACTIONS(2769), - [anon_sym_static] = ACTIONS(2769), - [anon_sym_register] = ACTIONS(2769), - [anon_sym_inline] = ACTIONS(2769), - [anon_sym_thread_local] = ACTIONS(2769), - [anon_sym_const] = ACTIONS(2769), - [anon_sym_volatile] = ACTIONS(2769), - [anon_sym_restrict] = ACTIONS(2769), - [anon_sym__Atomic] = ACTIONS(2769), - [anon_sym_mutable] = ACTIONS(2769), - [anon_sym_constexpr] = ACTIONS(2769), - [anon_sym_constinit] = ACTIONS(2769), - [anon_sym_consteval] = ACTIONS(2769), - [anon_sym_signed] = ACTIONS(2769), - [anon_sym_unsigned] = ACTIONS(2769), - [anon_sym_long] = ACTIONS(2769), - [anon_sym_short] = ACTIONS(2769), - [sym_primitive_type] = ACTIONS(2769), - [anon_sym_enum] = ACTIONS(2769), - [anon_sym_class] = ACTIONS(2769), - [anon_sym_struct] = ACTIONS(2769), - [anon_sym_union] = ACTIONS(2769), - [anon_sym_if] = ACTIONS(2769), - [anon_sym_switch] = ACTIONS(2769), - [anon_sym_case] = ACTIONS(2769), - [anon_sym_default] = ACTIONS(2769), - [anon_sym_while] = ACTIONS(2769), - [anon_sym_do] = ACTIONS(2769), - [anon_sym_for] = ACTIONS(2769), - [anon_sym_return] = ACTIONS(2769), - [anon_sym_break] = ACTIONS(2769), - [anon_sym_continue] = ACTIONS(2769), - [anon_sym_goto] = ACTIONS(2769), - [anon_sym_DASH_DASH] = ACTIONS(2771), - [anon_sym_PLUS_PLUS] = ACTIONS(2771), - [anon_sym_sizeof] = ACTIONS(2769), - [sym_number_literal] = ACTIONS(2771), - [anon_sym_L_SQUOTE] = ACTIONS(2771), - [anon_sym_u_SQUOTE] = ACTIONS(2771), - [anon_sym_U_SQUOTE] = ACTIONS(2771), - [anon_sym_u8_SQUOTE] = ACTIONS(2771), - [anon_sym_SQUOTE] = ACTIONS(2771), - [anon_sym_L_DQUOTE] = ACTIONS(2771), - [anon_sym_u_DQUOTE] = ACTIONS(2771), - [anon_sym_U_DQUOTE] = ACTIONS(2771), - [anon_sym_u8_DQUOTE] = ACTIONS(2771), - [anon_sym_DQUOTE] = ACTIONS(2771), - [sym_true] = ACTIONS(2769), - [sym_false] = ACTIONS(2769), - [sym_null] = ACTIONS(2769), + [439] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token2] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [aux_sym_preproc_else_token1] = ACTIONS(2595), + [aux_sym_preproc_elif_token1] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2769), - [anon_sym_decltype] = ACTIONS(2769), - [anon_sym_virtual] = ACTIONS(2769), - [anon_sym_explicit] = ACTIONS(2769), - [anon_sym_typename] = ACTIONS(2769), - [anon_sym_template] = ACTIONS(2769), - [anon_sym_operator] = ACTIONS(2769), - [anon_sym_try] = ACTIONS(2769), - [anon_sym_delete] = ACTIONS(2769), - [anon_sym_throw] = ACTIONS(2769), - [anon_sym_namespace] = ACTIONS(2769), - [anon_sym_using] = ACTIONS(2769), - [anon_sym_static_assert] = ACTIONS(2769), - [anon_sym_concept] = ACTIONS(2769), - [anon_sym_co_return] = ACTIONS(2769), - [anon_sym_co_yield] = ACTIONS(2769), - [anon_sym_co_await] = ACTIONS(2769), - [anon_sym_new] = ACTIONS(2769), - [anon_sym_requires] = ACTIONS(2769), - [sym_this] = ACTIONS(2769), - [sym_nullptr] = ACTIONS(2769), - [sym_raw_string_literal] = ACTIONS(2771), - }, - [521] = { - [ts_builtin_sym_end] = ACTIONS(2289), - [sym_identifier] = ACTIONS(2287), - [aux_sym_preproc_include_token1] = ACTIONS(2287), - [aux_sym_preproc_def_token1] = ACTIONS(2287), - [aux_sym_preproc_if_token1] = ACTIONS(2287), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2287), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2287), - [sym_preproc_directive] = ACTIONS(2287), - [anon_sym_LPAREN2] = ACTIONS(2289), - [anon_sym_BANG] = ACTIONS(2289), - [anon_sym_TILDE] = ACTIONS(2289), - [anon_sym_DASH] = ACTIONS(2287), - [anon_sym_PLUS] = ACTIONS(2287), - [anon_sym_STAR] = ACTIONS(2289), - [anon_sym_AMP_AMP] = ACTIONS(2289), - [anon_sym_AMP] = ACTIONS(2287), - [anon_sym_SEMI] = ACTIONS(2289), - [anon_sym_typedef] = ACTIONS(2287), - [anon_sym_extern] = ACTIONS(2287), - [anon_sym___attribute__] = ACTIONS(2287), - [anon_sym_COLON_COLON] = ACTIONS(2289), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2289), - [anon_sym___declspec] = ACTIONS(2287), - [anon_sym___based] = ACTIONS(2287), - [anon_sym___cdecl] = ACTIONS(2287), - [anon_sym___clrcall] = ACTIONS(2287), - [anon_sym___stdcall] = ACTIONS(2287), - [anon_sym___fastcall] = ACTIONS(2287), - [anon_sym___thiscall] = ACTIONS(2287), - [anon_sym___vectorcall] = ACTIONS(2287), - [anon_sym_LBRACE] = ACTIONS(2289), - [anon_sym_LBRACK] = ACTIONS(2287), - [anon_sym_static] = ACTIONS(2287), - [anon_sym_register] = ACTIONS(2287), - [anon_sym_inline] = ACTIONS(2287), - [anon_sym_thread_local] = ACTIONS(2287), - [anon_sym_const] = ACTIONS(2287), - [anon_sym_volatile] = ACTIONS(2287), - [anon_sym_restrict] = ACTIONS(2287), - [anon_sym__Atomic] = ACTIONS(2287), - [anon_sym_mutable] = ACTIONS(2287), - [anon_sym_constexpr] = ACTIONS(2287), - [anon_sym_constinit] = ACTIONS(2287), - [anon_sym_consteval] = ACTIONS(2287), - [anon_sym_signed] = ACTIONS(2287), - [anon_sym_unsigned] = ACTIONS(2287), - [anon_sym_long] = ACTIONS(2287), - [anon_sym_short] = ACTIONS(2287), - [sym_primitive_type] = ACTIONS(2287), - [anon_sym_enum] = ACTIONS(2287), - [anon_sym_class] = ACTIONS(2287), - [anon_sym_struct] = ACTIONS(2287), - [anon_sym_union] = ACTIONS(2287), - [anon_sym_if] = ACTIONS(2287), - [anon_sym_else] = ACTIONS(2287), - [anon_sym_switch] = ACTIONS(2287), - [anon_sym_case] = ACTIONS(2287), - [anon_sym_default] = ACTIONS(2287), - [anon_sym_while] = ACTIONS(2287), - [anon_sym_do] = ACTIONS(2287), - [anon_sym_for] = ACTIONS(2287), - [anon_sym_return] = ACTIONS(2287), - [anon_sym_break] = ACTIONS(2287), - [anon_sym_continue] = ACTIONS(2287), - [anon_sym_goto] = ACTIONS(2287), - [anon_sym_DASH_DASH] = ACTIONS(2289), - [anon_sym_PLUS_PLUS] = ACTIONS(2289), - [anon_sym_sizeof] = ACTIONS(2287), - [sym_number_literal] = ACTIONS(2289), - [anon_sym_L_SQUOTE] = ACTIONS(2289), - [anon_sym_u_SQUOTE] = ACTIONS(2289), - [anon_sym_U_SQUOTE] = ACTIONS(2289), - [anon_sym_u8_SQUOTE] = ACTIONS(2289), - [anon_sym_SQUOTE] = ACTIONS(2289), - [anon_sym_L_DQUOTE] = ACTIONS(2289), - [anon_sym_u_DQUOTE] = ACTIONS(2289), - [anon_sym_U_DQUOTE] = ACTIONS(2289), - [anon_sym_u8_DQUOTE] = ACTIONS(2289), - [anon_sym_DQUOTE] = ACTIONS(2289), - [sym_true] = ACTIONS(2287), - [sym_false] = ACTIONS(2287), - [sym_null] = ACTIONS(2287), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2287), - [anon_sym_decltype] = ACTIONS(2287), - [anon_sym_virtual] = ACTIONS(2287), - [anon_sym_explicit] = ACTIONS(2287), - [anon_sym_typename] = ACTIONS(2287), - [anon_sym_template] = ACTIONS(2287), - [anon_sym_operator] = ACTIONS(2287), - [anon_sym_try] = ACTIONS(2287), - [anon_sym_delete] = ACTIONS(2287), - [anon_sym_throw] = ACTIONS(2287), - [anon_sym_namespace] = ACTIONS(2287), - [anon_sym_using] = ACTIONS(2287), - [anon_sym_static_assert] = ACTIONS(2287), - [anon_sym_concept] = ACTIONS(2287), - [anon_sym_co_return] = ACTIONS(2287), - [anon_sym_co_yield] = ACTIONS(2287), - [anon_sym_catch] = ACTIONS(2287), - [anon_sym_co_await] = ACTIONS(2287), - [anon_sym_new] = ACTIONS(2287), - [anon_sym_requires] = ACTIONS(2287), - [sym_this] = ACTIONS(2287), - [sym_nullptr] = ACTIONS(2287), - [sym_raw_string_literal] = ACTIONS(2289), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [522] = { - [sym_identifier] = ACTIONS(2773), - [aux_sym_preproc_include_token1] = ACTIONS(2773), - [aux_sym_preproc_def_token1] = ACTIONS(2773), - [aux_sym_preproc_if_token1] = ACTIONS(2773), - [aux_sym_preproc_if_token2] = ACTIONS(2773), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2773), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2773), - [aux_sym_preproc_else_token1] = ACTIONS(2773), - [aux_sym_preproc_elif_token1] = ACTIONS(2773), - [sym_preproc_directive] = ACTIONS(2773), - [anon_sym_LPAREN2] = ACTIONS(2775), - [anon_sym_BANG] = ACTIONS(2775), - [anon_sym_TILDE] = ACTIONS(2775), - [anon_sym_DASH] = ACTIONS(2773), - [anon_sym_PLUS] = ACTIONS(2773), - [anon_sym_STAR] = ACTIONS(2775), - [anon_sym_AMP_AMP] = ACTIONS(2775), - [anon_sym_AMP] = ACTIONS(2773), - [anon_sym_SEMI] = ACTIONS(2775), - [anon_sym_typedef] = ACTIONS(2773), - [anon_sym_extern] = ACTIONS(2773), - [anon_sym___attribute__] = ACTIONS(2773), - [anon_sym_COLON_COLON] = ACTIONS(2775), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2775), - [anon_sym___declspec] = ACTIONS(2773), - [anon_sym___based] = ACTIONS(2773), - [anon_sym___cdecl] = ACTIONS(2773), - [anon_sym___clrcall] = ACTIONS(2773), - [anon_sym___stdcall] = ACTIONS(2773), - [anon_sym___fastcall] = ACTIONS(2773), - [anon_sym___thiscall] = ACTIONS(2773), - [anon_sym___vectorcall] = ACTIONS(2773), - [anon_sym_LBRACE] = ACTIONS(2775), - [anon_sym_LBRACK] = ACTIONS(2773), - [anon_sym_static] = ACTIONS(2773), - [anon_sym_register] = ACTIONS(2773), - [anon_sym_inline] = ACTIONS(2773), - [anon_sym_thread_local] = ACTIONS(2773), - [anon_sym_const] = ACTIONS(2773), - [anon_sym_volatile] = ACTIONS(2773), - [anon_sym_restrict] = ACTIONS(2773), - [anon_sym__Atomic] = ACTIONS(2773), - [anon_sym_mutable] = ACTIONS(2773), - [anon_sym_constexpr] = ACTIONS(2773), - [anon_sym_constinit] = ACTIONS(2773), - [anon_sym_consteval] = ACTIONS(2773), - [anon_sym_signed] = ACTIONS(2773), - [anon_sym_unsigned] = ACTIONS(2773), - [anon_sym_long] = ACTIONS(2773), - [anon_sym_short] = ACTIONS(2773), - [sym_primitive_type] = ACTIONS(2773), - [anon_sym_enum] = ACTIONS(2773), - [anon_sym_class] = ACTIONS(2773), - [anon_sym_struct] = ACTIONS(2773), - [anon_sym_union] = ACTIONS(2773), - [anon_sym_if] = ACTIONS(2773), - [anon_sym_switch] = ACTIONS(2773), - [anon_sym_case] = ACTIONS(2773), - [anon_sym_default] = ACTIONS(2773), - [anon_sym_while] = ACTIONS(2773), - [anon_sym_do] = ACTIONS(2773), - [anon_sym_for] = ACTIONS(2773), - [anon_sym_return] = ACTIONS(2773), - [anon_sym_break] = ACTIONS(2773), - [anon_sym_continue] = ACTIONS(2773), - [anon_sym_goto] = ACTIONS(2773), - [anon_sym_DASH_DASH] = ACTIONS(2775), - [anon_sym_PLUS_PLUS] = ACTIONS(2775), - [anon_sym_sizeof] = ACTIONS(2773), - [sym_number_literal] = ACTIONS(2775), - [anon_sym_L_SQUOTE] = ACTIONS(2775), - [anon_sym_u_SQUOTE] = ACTIONS(2775), - [anon_sym_U_SQUOTE] = ACTIONS(2775), - [anon_sym_u8_SQUOTE] = ACTIONS(2775), - [anon_sym_SQUOTE] = ACTIONS(2775), - [anon_sym_L_DQUOTE] = ACTIONS(2775), - [anon_sym_u_DQUOTE] = ACTIONS(2775), - [anon_sym_U_DQUOTE] = ACTIONS(2775), - [anon_sym_u8_DQUOTE] = ACTIONS(2775), - [anon_sym_DQUOTE] = ACTIONS(2775), - [sym_true] = ACTIONS(2773), - [sym_false] = ACTIONS(2773), - [sym_null] = ACTIONS(2773), + [440] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token2] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [aux_sym_preproc_else_token1] = ACTIONS(2595), + [aux_sym_preproc_elif_token1] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2773), - [anon_sym_decltype] = ACTIONS(2773), - [anon_sym_virtual] = ACTIONS(2773), - [anon_sym_explicit] = ACTIONS(2773), - [anon_sym_typename] = ACTIONS(2773), - [anon_sym_template] = ACTIONS(2773), - [anon_sym_operator] = ACTIONS(2773), - [anon_sym_try] = ACTIONS(2773), - [anon_sym_delete] = ACTIONS(2773), - [anon_sym_throw] = ACTIONS(2773), - [anon_sym_namespace] = ACTIONS(2773), - [anon_sym_using] = ACTIONS(2773), - [anon_sym_static_assert] = ACTIONS(2773), - [anon_sym_concept] = ACTIONS(2773), - [anon_sym_co_return] = ACTIONS(2773), - [anon_sym_co_yield] = ACTIONS(2773), - [anon_sym_co_await] = ACTIONS(2773), - [anon_sym_new] = ACTIONS(2773), - [anon_sym_requires] = ACTIONS(2773), - [sym_this] = ACTIONS(2773), - [sym_nullptr] = ACTIONS(2773), - [sym_raw_string_literal] = ACTIONS(2775), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [523] = { - [sym_identifier] = ACTIONS(2777), - [aux_sym_preproc_include_token1] = ACTIONS(2777), - [aux_sym_preproc_def_token1] = ACTIONS(2777), - [aux_sym_preproc_if_token1] = ACTIONS(2777), - [aux_sym_preproc_if_token2] = ACTIONS(2777), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2777), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2777), - [aux_sym_preproc_else_token1] = ACTIONS(2777), - [aux_sym_preproc_elif_token1] = ACTIONS(2777), - [sym_preproc_directive] = ACTIONS(2777), - [anon_sym_LPAREN2] = ACTIONS(2779), - [anon_sym_BANG] = ACTIONS(2779), - [anon_sym_TILDE] = ACTIONS(2779), - [anon_sym_DASH] = ACTIONS(2777), - [anon_sym_PLUS] = ACTIONS(2777), - [anon_sym_STAR] = ACTIONS(2779), - [anon_sym_AMP_AMP] = ACTIONS(2779), - [anon_sym_AMP] = ACTIONS(2777), - [anon_sym_SEMI] = ACTIONS(2779), - [anon_sym_typedef] = ACTIONS(2777), - [anon_sym_extern] = ACTIONS(2777), - [anon_sym___attribute__] = ACTIONS(2777), - [anon_sym_COLON_COLON] = ACTIONS(2779), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2779), - [anon_sym___declspec] = ACTIONS(2777), - [anon_sym___based] = ACTIONS(2777), - [anon_sym___cdecl] = ACTIONS(2777), - [anon_sym___clrcall] = ACTIONS(2777), - [anon_sym___stdcall] = ACTIONS(2777), - [anon_sym___fastcall] = ACTIONS(2777), - [anon_sym___thiscall] = ACTIONS(2777), - [anon_sym___vectorcall] = ACTIONS(2777), - [anon_sym_LBRACE] = ACTIONS(2779), - [anon_sym_LBRACK] = ACTIONS(2777), - [anon_sym_static] = ACTIONS(2777), - [anon_sym_register] = ACTIONS(2777), - [anon_sym_inline] = ACTIONS(2777), - [anon_sym_thread_local] = ACTIONS(2777), - [anon_sym_const] = ACTIONS(2777), - [anon_sym_volatile] = ACTIONS(2777), - [anon_sym_restrict] = ACTIONS(2777), - [anon_sym__Atomic] = ACTIONS(2777), - [anon_sym_mutable] = ACTIONS(2777), - [anon_sym_constexpr] = ACTIONS(2777), - [anon_sym_constinit] = ACTIONS(2777), - [anon_sym_consteval] = ACTIONS(2777), - [anon_sym_signed] = ACTIONS(2777), - [anon_sym_unsigned] = ACTIONS(2777), - [anon_sym_long] = ACTIONS(2777), - [anon_sym_short] = ACTIONS(2777), - [sym_primitive_type] = ACTIONS(2777), - [anon_sym_enum] = ACTIONS(2777), - [anon_sym_class] = ACTIONS(2777), - [anon_sym_struct] = ACTIONS(2777), - [anon_sym_union] = ACTIONS(2777), - [anon_sym_if] = ACTIONS(2777), - [anon_sym_switch] = ACTIONS(2777), - [anon_sym_case] = ACTIONS(2777), - [anon_sym_default] = ACTIONS(2777), - [anon_sym_while] = ACTIONS(2777), - [anon_sym_do] = ACTIONS(2777), - [anon_sym_for] = ACTIONS(2777), - [anon_sym_return] = ACTIONS(2777), - [anon_sym_break] = ACTIONS(2777), - [anon_sym_continue] = ACTIONS(2777), - [anon_sym_goto] = ACTIONS(2777), - [anon_sym_DASH_DASH] = ACTIONS(2779), - [anon_sym_PLUS_PLUS] = ACTIONS(2779), - [anon_sym_sizeof] = ACTIONS(2777), - [sym_number_literal] = ACTIONS(2779), - [anon_sym_L_SQUOTE] = ACTIONS(2779), - [anon_sym_u_SQUOTE] = ACTIONS(2779), - [anon_sym_U_SQUOTE] = ACTIONS(2779), - [anon_sym_u8_SQUOTE] = ACTIONS(2779), - [anon_sym_SQUOTE] = ACTIONS(2779), - [anon_sym_L_DQUOTE] = ACTIONS(2779), - [anon_sym_u_DQUOTE] = ACTIONS(2779), - [anon_sym_U_DQUOTE] = ACTIONS(2779), - [anon_sym_u8_DQUOTE] = ACTIONS(2779), - [anon_sym_DQUOTE] = ACTIONS(2779), - [sym_true] = ACTIONS(2777), - [sym_false] = ACTIONS(2777), - [sym_null] = ACTIONS(2777), + [441] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token2] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [aux_sym_preproc_else_token1] = ACTIONS(2595), + [aux_sym_preproc_elif_token1] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2777), - [anon_sym_decltype] = ACTIONS(2777), - [anon_sym_virtual] = ACTIONS(2777), - [anon_sym_explicit] = ACTIONS(2777), - [anon_sym_typename] = ACTIONS(2777), - [anon_sym_template] = ACTIONS(2777), - [anon_sym_operator] = ACTIONS(2777), - [anon_sym_try] = ACTIONS(2777), - [anon_sym_delete] = ACTIONS(2777), - [anon_sym_throw] = ACTIONS(2777), - [anon_sym_namespace] = ACTIONS(2777), - [anon_sym_using] = ACTIONS(2777), - [anon_sym_static_assert] = ACTIONS(2777), - [anon_sym_concept] = ACTIONS(2777), - [anon_sym_co_return] = ACTIONS(2777), - [anon_sym_co_yield] = ACTIONS(2777), - [anon_sym_co_await] = ACTIONS(2777), - [anon_sym_new] = ACTIONS(2777), - [anon_sym_requires] = ACTIONS(2777), - [sym_this] = ACTIONS(2777), - [sym_nullptr] = ACTIONS(2777), - [sym_raw_string_literal] = ACTIONS(2779), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [524] = { - [sym_type_qualifier] = STATE(2979), - [sym__type_specifier] = STATE(3924), - [sym_sized_type_specifier] = STATE(2872), - [sym_enum_specifier] = STATE(2872), - [sym_struct_specifier] = STATE(2872), - [sym_union_specifier] = STATE(2872), - [sym__expression] = STATE(3522), - [sym_conditional_expression] = STATE(3881), - [sym_assignment_expression] = STATE(3881), - [sym_pointer_expression] = STATE(2977), - [sym_unary_expression] = STATE(3881), - [sym_binary_expression] = STATE(3881), - [sym_update_expression] = STATE(3881), - [sym_cast_expression] = STATE(3881), - [sym_type_descriptor] = STATE(5435), - [sym_sizeof_expression] = STATE(3881), - [sym_subscript_expression] = STATE(2977), - [sym_call_expression] = STATE(2977), - [sym_field_expression] = STATE(2977), - [sym_compound_literal_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(2977), - [sym_char_literal] = STATE(3701), - [sym_concatenated_string] = STATE(3701), - [sym_string_literal] = STATE(3219), - [sym_placeholder_type_specifier] = STATE(2872), - [sym_decltype_auto] = STATE(2878), - [sym_decltype] = STATE(2872), - [sym_class_specifier] = STATE(2872), - [sym__class_name] = STATE(6063), - [sym_dependent_type] = STATE(2872), - [sym_template_type] = STATE(4194), - [sym_template_function] = STATE(3881), - [sym_co_await_expression] = STATE(3881), - [sym_new_expression] = STATE(3881), - [sym_delete_expression] = STATE(3881), - [sym_requires_clause] = STATE(3881), - [sym_requires_expression] = STATE(3881), - [sym_lambda_expression] = STATE(3881), - [sym_lambda_capture_specifier] = STATE(4519), - [sym_fold_expression] = STATE(3881), - [sym_parameter_pack_expansion] = STATE(3881), - [sym_type_parameter_pack_expansion] = STATE(5735), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4633), - [sym_qualified_identifier] = STATE(2977), - [sym_qualified_type_identifier] = STATE(4305), - [sym_user_defined_literal] = STATE(3881), - [aux_sym_type_definition_repeat1] = STATE(2979), - [aux_sym_sized_type_specifier_repeat1] = STATE(2182), - [sym_identifier] = ACTIONS(2529), - [anon_sym_LPAREN2] = ACTIONS(2531), - [anon_sym_BANG] = ACTIONS(2533), - [anon_sym_TILDE] = ACTIONS(2533), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_STAR] = ACTIONS(2537), - [anon_sym_AMP] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(2539), - [anon_sym_LBRACK] = ACTIONS(2272), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(2541), - [anon_sym_unsigned] = ACTIONS(2541), - [anon_sym_long] = ACTIONS(2541), - [anon_sym_short] = ACTIONS(2541), - [sym_primitive_type] = ACTIONS(2543), - [anon_sym_enum] = ACTIONS(2545), - [anon_sym_class] = ACTIONS(2547), - [anon_sym_struct] = ACTIONS(2549), - [anon_sym_union] = ACTIONS(2551), - [anon_sym_DASH_DASH] = ACTIONS(2553), - [anon_sym_PLUS_PLUS] = ACTIONS(2553), - [anon_sym_sizeof] = ACTIONS(2555), - [sym_number_literal] = ACTIONS(2557), - [anon_sym_L_SQUOTE] = ACTIONS(2559), - [anon_sym_u_SQUOTE] = ACTIONS(2559), - [anon_sym_U_SQUOTE] = ACTIONS(2559), - [anon_sym_u8_SQUOTE] = ACTIONS(2559), - [anon_sym_SQUOTE] = ACTIONS(2559), - [anon_sym_L_DQUOTE] = ACTIONS(2561), - [anon_sym_u_DQUOTE] = ACTIONS(2561), - [anon_sym_U_DQUOTE] = ACTIONS(2561), - [anon_sym_u8_DQUOTE] = ACTIONS(2561), - [anon_sym_DQUOTE] = ACTIONS(2561), - [sym_true] = ACTIONS(2563), - [sym_false] = ACTIONS(2563), - [sym_null] = ACTIONS(2563), + [442] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token2] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [aux_sym_preproc_else_token1] = ACTIONS(2595), + [aux_sym_preproc_elif_token1] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2565), - [anon_sym_decltype] = ACTIONS(2567), - [anon_sym_typename] = ACTIONS(2569), - [anon_sym_template] = ACTIONS(972), - [anon_sym_GT2] = ACTIONS(2781), - [anon_sym_delete] = ACTIONS(2573), - [anon_sym_co_await] = ACTIONS(2575), - [anon_sym_new] = ACTIONS(2577), - [anon_sym_requires] = ACTIONS(2579), - [sym_this] = ACTIONS(2563), - [sym_nullptr] = ACTIONS(2563), - [sym_raw_string_literal] = ACTIONS(2581), - }, - [525] = { - [sym_identifier] = ACTIONS(2783), - [aux_sym_preproc_include_token1] = ACTIONS(2783), - [aux_sym_preproc_def_token1] = ACTIONS(2783), - [aux_sym_preproc_if_token1] = ACTIONS(2783), - [aux_sym_preproc_if_token2] = ACTIONS(2783), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2783), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2783), - [aux_sym_preproc_else_token1] = ACTIONS(2783), - [aux_sym_preproc_elif_token1] = ACTIONS(2783), - [sym_preproc_directive] = ACTIONS(2783), - [anon_sym_LPAREN2] = ACTIONS(2785), - [anon_sym_BANG] = ACTIONS(2785), - [anon_sym_TILDE] = ACTIONS(2785), - [anon_sym_DASH] = ACTIONS(2783), - [anon_sym_PLUS] = ACTIONS(2783), - [anon_sym_STAR] = ACTIONS(2785), - [anon_sym_AMP_AMP] = ACTIONS(2785), - [anon_sym_AMP] = ACTIONS(2783), - [anon_sym_SEMI] = ACTIONS(2785), - [anon_sym_typedef] = ACTIONS(2783), - [anon_sym_extern] = ACTIONS(2783), - [anon_sym___attribute__] = ACTIONS(2783), - [anon_sym_COLON_COLON] = ACTIONS(2785), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2785), - [anon_sym___declspec] = ACTIONS(2783), - [anon_sym___based] = ACTIONS(2783), - [anon_sym___cdecl] = ACTIONS(2783), - [anon_sym___clrcall] = ACTIONS(2783), - [anon_sym___stdcall] = ACTIONS(2783), - [anon_sym___fastcall] = ACTIONS(2783), - [anon_sym___thiscall] = ACTIONS(2783), - [anon_sym___vectorcall] = ACTIONS(2783), - [anon_sym_LBRACE] = ACTIONS(2785), - [anon_sym_LBRACK] = ACTIONS(2783), - [anon_sym_static] = ACTIONS(2783), - [anon_sym_register] = ACTIONS(2783), - [anon_sym_inline] = ACTIONS(2783), - [anon_sym_thread_local] = ACTIONS(2783), - [anon_sym_const] = ACTIONS(2783), - [anon_sym_volatile] = ACTIONS(2783), - [anon_sym_restrict] = ACTIONS(2783), - [anon_sym__Atomic] = ACTIONS(2783), - [anon_sym_mutable] = ACTIONS(2783), - [anon_sym_constexpr] = ACTIONS(2783), - [anon_sym_constinit] = ACTIONS(2783), - [anon_sym_consteval] = ACTIONS(2783), - [anon_sym_signed] = ACTIONS(2783), - [anon_sym_unsigned] = ACTIONS(2783), - [anon_sym_long] = ACTIONS(2783), - [anon_sym_short] = ACTIONS(2783), - [sym_primitive_type] = ACTIONS(2783), - [anon_sym_enum] = ACTIONS(2783), - [anon_sym_class] = ACTIONS(2783), - [anon_sym_struct] = ACTIONS(2783), - [anon_sym_union] = ACTIONS(2783), - [anon_sym_if] = ACTIONS(2783), - [anon_sym_switch] = ACTIONS(2783), - [anon_sym_case] = ACTIONS(2783), - [anon_sym_default] = ACTIONS(2783), - [anon_sym_while] = ACTIONS(2783), - [anon_sym_do] = ACTIONS(2783), - [anon_sym_for] = ACTIONS(2783), - [anon_sym_return] = ACTIONS(2783), - [anon_sym_break] = ACTIONS(2783), - [anon_sym_continue] = ACTIONS(2783), - [anon_sym_goto] = ACTIONS(2783), - [anon_sym_DASH_DASH] = ACTIONS(2785), - [anon_sym_PLUS_PLUS] = ACTIONS(2785), - [anon_sym_sizeof] = ACTIONS(2783), - [sym_number_literal] = ACTIONS(2785), - [anon_sym_L_SQUOTE] = ACTIONS(2785), - [anon_sym_u_SQUOTE] = ACTIONS(2785), - [anon_sym_U_SQUOTE] = ACTIONS(2785), - [anon_sym_u8_SQUOTE] = ACTIONS(2785), - [anon_sym_SQUOTE] = ACTIONS(2785), - [anon_sym_L_DQUOTE] = ACTIONS(2785), - [anon_sym_u_DQUOTE] = ACTIONS(2785), - [anon_sym_U_DQUOTE] = ACTIONS(2785), - [anon_sym_u8_DQUOTE] = ACTIONS(2785), - [anon_sym_DQUOTE] = ACTIONS(2785), - [sym_true] = ACTIONS(2783), - [sym_false] = ACTIONS(2783), - [sym_null] = ACTIONS(2783), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2783), - [anon_sym_decltype] = ACTIONS(2783), - [anon_sym_virtual] = ACTIONS(2783), - [anon_sym_explicit] = ACTIONS(2783), - [anon_sym_typename] = ACTIONS(2783), - [anon_sym_template] = ACTIONS(2783), - [anon_sym_operator] = ACTIONS(2783), - [anon_sym_try] = ACTIONS(2783), - [anon_sym_delete] = ACTIONS(2783), - [anon_sym_throw] = ACTIONS(2783), - [anon_sym_namespace] = ACTIONS(2783), - [anon_sym_using] = ACTIONS(2783), - [anon_sym_static_assert] = ACTIONS(2783), - [anon_sym_concept] = ACTIONS(2783), - [anon_sym_co_return] = ACTIONS(2783), - [anon_sym_co_yield] = ACTIONS(2783), - [anon_sym_co_await] = ACTIONS(2783), - [anon_sym_new] = ACTIONS(2783), - [anon_sym_requires] = ACTIONS(2783), - [sym_this] = ACTIONS(2783), - [sym_nullptr] = ACTIONS(2783), - [sym_raw_string_literal] = ACTIONS(2785), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [526] = { - [sym_type_qualifier] = STATE(2979), - [sym__type_specifier] = STATE(3924), - [sym_sized_type_specifier] = STATE(2872), - [sym_enum_specifier] = STATE(2872), - [sym_struct_specifier] = STATE(2872), - [sym_union_specifier] = STATE(2872), - [sym__expression] = STATE(3520), - [sym_conditional_expression] = STATE(3881), - [sym_assignment_expression] = STATE(3881), - [sym_pointer_expression] = STATE(2977), - [sym_unary_expression] = STATE(3881), - [sym_binary_expression] = STATE(3881), - [sym_update_expression] = STATE(3881), - [sym_cast_expression] = STATE(3881), - [sym_type_descriptor] = STATE(5410), - [sym_sizeof_expression] = STATE(3881), - [sym_subscript_expression] = STATE(2977), - [sym_call_expression] = STATE(2977), - [sym_field_expression] = STATE(2977), - [sym_compound_literal_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(2977), - [sym_char_literal] = STATE(3701), - [sym_concatenated_string] = STATE(3701), - [sym_string_literal] = STATE(3219), - [sym_placeholder_type_specifier] = STATE(2872), - [sym_decltype_auto] = STATE(2878), - [sym_decltype] = STATE(2872), - [sym_class_specifier] = STATE(2872), - [sym__class_name] = STATE(6063), - [sym_dependent_type] = STATE(2872), - [sym_template_type] = STATE(4194), - [sym_template_function] = STATE(3881), - [sym_co_await_expression] = STATE(3881), - [sym_new_expression] = STATE(3881), - [sym_delete_expression] = STATE(3881), - [sym_requires_clause] = STATE(3881), - [sym_requires_expression] = STATE(3881), - [sym_lambda_expression] = STATE(3881), - [sym_lambda_capture_specifier] = STATE(4519), - [sym_fold_expression] = STATE(3881), - [sym_parameter_pack_expansion] = STATE(3881), - [sym_type_parameter_pack_expansion] = STATE(5727), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4633), - [sym_qualified_identifier] = STATE(2977), - [sym_qualified_type_identifier] = STATE(4305), - [sym_user_defined_literal] = STATE(3881), - [aux_sym_type_definition_repeat1] = STATE(2979), - [aux_sym_sized_type_specifier_repeat1] = STATE(2182), - [sym_identifier] = ACTIONS(2529), - [anon_sym_LPAREN2] = ACTIONS(2531), - [anon_sym_BANG] = ACTIONS(2533), - [anon_sym_TILDE] = ACTIONS(2533), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_STAR] = ACTIONS(2537), - [anon_sym_AMP] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(2539), - [anon_sym_LBRACK] = ACTIONS(2272), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(2541), - [anon_sym_unsigned] = ACTIONS(2541), - [anon_sym_long] = ACTIONS(2541), - [anon_sym_short] = ACTIONS(2541), - [sym_primitive_type] = ACTIONS(2543), - [anon_sym_enum] = ACTIONS(2545), - [anon_sym_class] = ACTIONS(2547), - [anon_sym_struct] = ACTIONS(2549), - [anon_sym_union] = ACTIONS(2551), - [anon_sym_DASH_DASH] = ACTIONS(2553), - [anon_sym_PLUS_PLUS] = ACTIONS(2553), - [anon_sym_sizeof] = ACTIONS(2555), - [sym_number_literal] = ACTIONS(2557), - [anon_sym_L_SQUOTE] = ACTIONS(2559), - [anon_sym_u_SQUOTE] = ACTIONS(2559), - [anon_sym_U_SQUOTE] = ACTIONS(2559), - [anon_sym_u8_SQUOTE] = ACTIONS(2559), - [anon_sym_SQUOTE] = ACTIONS(2559), - [anon_sym_L_DQUOTE] = ACTIONS(2561), - [anon_sym_u_DQUOTE] = ACTIONS(2561), - [anon_sym_U_DQUOTE] = ACTIONS(2561), - [anon_sym_u8_DQUOTE] = ACTIONS(2561), - [anon_sym_DQUOTE] = ACTIONS(2561), - [sym_true] = ACTIONS(2563), - [sym_false] = ACTIONS(2563), - [sym_null] = ACTIONS(2563), + [443] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token2] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [aux_sym_preproc_else_token1] = ACTIONS(2595), + [aux_sym_preproc_elif_token1] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2565), - [anon_sym_decltype] = ACTIONS(2567), - [anon_sym_typename] = ACTIONS(2569), - [anon_sym_template] = ACTIONS(972), - [anon_sym_GT2] = ACTIONS(2787), - [anon_sym_delete] = ACTIONS(2573), - [anon_sym_co_await] = ACTIONS(2575), - [anon_sym_new] = ACTIONS(2577), - [anon_sym_requires] = ACTIONS(2579), - [sym_this] = ACTIONS(2563), - [sym_nullptr] = ACTIONS(2563), - [sym_raw_string_literal] = ACTIONS(2581), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [527] = { - [sym_identifier] = ACTIONS(2789), - [aux_sym_preproc_include_token1] = ACTIONS(2789), - [aux_sym_preproc_def_token1] = ACTIONS(2789), - [aux_sym_preproc_if_token1] = ACTIONS(2789), - [aux_sym_preproc_if_token2] = ACTIONS(2789), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2789), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2789), - [aux_sym_preproc_else_token1] = ACTIONS(2789), - [aux_sym_preproc_elif_token1] = ACTIONS(2789), - [sym_preproc_directive] = ACTIONS(2789), - [anon_sym_LPAREN2] = ACTIONS(2791), - [anon_sym_BANG] = ACTIONS(2791), - [anon_sym_TILDE] = ACTIONS(2791), - [anon_sym_DASH] = ACTIONS(2789), - [anon_sym_PLUS] = ACTIONS(2789), - [anon_sym_STAR] = ACTIONS(2791), - [anon_sym_AMP_AMP] = ACTIONS(2791), - [anon_sym_AMP] = ACTIONS(2789), - [anon_sym_SEMI] = ACTIONS(2791), - [anon_sym_typedef] = ACTIONS(2789), - [anon_sym_extern] = ACTIONS(2789), - [anon_sym___attribute__] = ACTIONS(2789), - [anon_sym_COLON_COLON] = ACTIONS(2791), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2791), - [anon_sym___declspec] = ACTIONS(2789), - [anon_sym___based] = ACTIONS(2789), - [anon_sym___cdecl] = ACTIONS(2789), - [anon_sym___clrcall] = ACTIONS(2789), - [anon_sym___stdcall] = ACTIONS(2789), - [anon_sym___fastcall] = ACTIONS(2789), - [anon_sym___thiscall] = ACTIONS(2789), - [anon_sym___vectorcall] = ACTIONS(2789), - [anon_sym_LBRACE] = ACTIONS(2791), - [anon_sym_LBRACK] = ACTIONS(2789), - [anon_sym_static] = ACTIONS(2789), - [anon_sym_register] = ACTIONS(2789), - [anon_sym_inline] = ACTIONS(2789), - [anon_sym_thread_local] = ACTIONS(2789), - [anon_sym_const] = ACTIONS(2789), - [anon_sym_volatile] = ACTIONS(2789), - [anon_sym_restrict] = ACTIONS(2789), - [anon_sym__Atomic] = ACTIONS(2789), - [anon_sym_mutable] = ACTIONS(2789), - [anon_sym_constexpr] = ACTIONS(2789), - [anon_sym_constinit] = ACTIONS(2789), - [anon_sym_consteval] = ACTIONS(2789), - [anon_sym_signed] = ACTIONS(2789), - [anon_sym_unsigned] = ACTIONS(2789), - [anon_sym_long] = ACTIONS(2789), - [anon_sym_short] = ACTIONS(2789), - [sym_primitive_type] = ACTIONS(2789), - [anon_sym_enum] = ACTIONS(2789), - [anon_sym_class] = ACTIONS(2789), - [anon_sym_struct] = ACTIONS(2789), - [anon_sym_union] = ACTIONS(2789), - [anon_sym_if] = ACTIONS(2789), - [anon_sym_switch] = ACTIONS(2789), - [anon_sym_case] = ACTIONS(2789), - [anon_sym_default] = ACTIONS(2789), - [anon_sym_while] = ACTIONS(2789), - [anon_sym_do] = ACTIONS(2789), - [anon_sym_for] = ACTIONS(2789), - [anon_sym_return] = ACTIONS(2789), - [anon_sym_break] = ACTIONS(2789), - [anon_sym_continue] = ACTIONS(2789), - [anon_sym_goto] = ACTIONS(2789), - [anon_sym_DASH_DASH] = ACTIONS(2791), - [anon_sym_PLUS_PLUS] = ACTIONS(2791), - [anon_sym_sizeof] = ACTIONS(2789), - [sym_number_literal] = ACTIONS(2791), - [anon_sym_L_SQUOTE] = ACTIONS(2791), - [anon_sym_u_SQUOTE] = ACTIONS(2791), - [anon_sym_U_SQUOTE] = ACTIONS(2791), - [anon_sym_u8_SQUOTE] = ACTIONS(2791), - [anon_sym_SQUOTE] = ACTIONS(2791), - [anon_sym_L_DQUOTE] = ACTIONS(2791), - [anon_sym_u_DQUOTE] = ACTIONS(2791), - [anon_sym_U_DQUOTE] = ACTIONS(2791), - [anon_sym_u8_DQUOTE] = ACTIONS(2791), - [anon_sym_DQUOTE] = ACTIONS(2791), - [sym_true] = ACTIONS(2789), - [sym_false] = ACTIONS(2789), - [sym_null] = ACTIONS(2789), + [444] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token2] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [aux_sym_preproc_else_token1] = ACTIONS(2595), + [aux_sym_preproc_elif_token1] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2789), - [anon_sym_decltype] = ACTIONS(2789), - [anon_sym_virtual] = ACTIONS(2789), - [anon_sym_explicit] = ACTIONS(2789), - [anon_sym_typename] = ACTIONS(2789), - [anon_sym_template] = ACTIONS(2789), - [anon_sym_operator] = ACTIONS(2789), - [anon_sym_try] = ACTIONS(2789), - [anon_sym_delete] = ACTIONS(2789), - [anon_sym_throw] = ACTIONS(2789), - [anon_sym_namespace] = ACTIONS(2789), - [anon_sym_using] = ACTIONS(2789), - [anon_sym_static_assert] = ACTIONS(2789), - [anon_sym_concept] = ACTIONS(2789), - [anon_sym_co_return] = ACTIONS(2789), - [anon_sym_co_yield] = ACTIONS(2789), - [anon_sym_co_await] = ACTIONS(2789), - [anon_sym_new] = ACTIONS(2789), - [anon_sym_requires] = ACTIONS(2789), - [sym_this] = ACTIONS(2789), - [sym_nullptr] = ACTIONS(2789), - [sym_raw_string_literal] = ACTIONS(2791), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [528] = { - [sym_identifier] = ACTIONS(2793), - [aux_sym_preproc_include_token1] = ACTIONS(2793), - [aux_sym_preproc_def_token1] = ACTIONS(2793), - [aux_sym_preproc_if_token1] = ACTIONS(2793), - [aux_sym_preproc_if_token2] = ACTIONS(2793), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2793), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2793), - [aux_sym_preproc_else_token1] = ACTIONS(2793), - [aux_sym_preproc_elif_token1] = ACTIONS(2793), - [sym_preproc_directive] = ACTIONS(2793), - [anon_sym_LPAREN2] = ACTIONS(2795), - [anon_sym_BANG] = ACTIONS(2795), - [anon_sym_TILDE] = ACTIONS(2795), - [anon_sym_DASH] = ACTIONS(2793), - [anon_sym_PLUS] = ACTIONS(2793), - [anon_sym_STAR] = ACTIONS(2795), - [anon_sym_AMP_AMP] = ACTIONS(2795), - [anon_sym_AMP] = ACTIONS(2793), - [anon_sym_SEMI] = ACTIONS(2795), - [anon_sym_typedef] = ACTIONS(2793), - [anon_sym_extern] = ACTIONS(2793), - [anon_sym___attribute__] = ACTIONS(2793), - [anon_sym_COLON_COLON] = ACTIONS(2795), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2795), - [anon_sym___declspec] = ACTIONS(2793), - [anon_sym___based] = ACTIONS(2793), - [anon_sym___cdecl] = ACTIONS(2793), - [anon_sym___clrcall] = ACTIONS(2793), - [anon_sym___stdcall] = ACTIONS(2793), - [anon_sym___fastcall] = ACTIONS(2793), - [anon_sym___thiscall] = ACTIONS(2793), - [anon_sym___vectorcall] = ACTIONS(2793), - [anon_sym_LBRACE] = ACTIONS(2795), - [anon_sym_LBRACK] = ACTIONS(2793), - [anon_sym_static] = ACTIONS(2793), - [anon_sym_register] = ACTIONS(2793), - [anon_sym_inline] = ACTIONS(2793), - [anon_sym_thread_local] = ACTIONS(2793), - [anon_sym_const] = ACTIONS(2793), - [anon_sym_volatile] = ACTIONS(2793), - [anon_sym_restrict] = ACTIONS(2793), - [anon_sym__Atomic] = ACTIONS(2793), - [anon_sym_mutable] = ACTIONS(2793), - [anon_sym_constexpr] = ACTIONS(2793), - [anon_sym_constinit] = ACTIONS(2793), - [anon_sym_consteval] = ACTIONS(2793), - [anon_sym_signed] = ACTIONS(2793), - [anon_sym_unsigned] = ACTIONS(2793), - [anon_sym_long] = ACTIONS(2793), - [anon_sym_short] = ACTIONS(2793), - [sym_primitive_type] = ACTIONS(2793), - [anon_sym_enum] = ACTIONS(2793), - [anon_sym_class] = ACTIONS(2793), - [anon_sym_struct] = ACTIONS(2793), - [anon_sym_union] = ACTIONS(2793), - [anon_sym_if] = ACTIONS(2793), - [anon_sym_switch] = ACTIONS(2793), - [anon_sym_case] = ACTIONS(2793), - [anon_sym_default] = ACTIONS(2793), - [anon_sym_while] = ACTIONS(2793), - [anon_sym_do] = ACTIONS(2793), - [anon_sym_for] = ACTIONS(2793), - [anon_sym_return] = ACTIONS(2793), - [anon_sym_break] = ACTIONS(2793), - [anon_sym_continue] = ACTIONS(2793), - [anon_sym_goto] = ACTIONS(2793), - [anon_sym_DASH_DASH] = ACTIONS(2795), - [anon_sym_PLUS_PLUS] = ACTIONS(2795), - [anon_sym_sizeof] = ACTIONS(2793), - [sym_number_literal] = ACTIONS(2795), - [anon_sym_L_SQUOTE] = ACTIONS(2795), - [anon_sym_u_SQUOTE] = ACTIONS(2795), - [anon_sym_U_SQUOTE] = ACTIONS(2795), - [anon_sym_u8_SQUOTE] = ACTIONS(2795), - [anon_sym_SQUOTE] = ACTIONS(2795), - [anon_sym_L_DQUOTE] = ACTIONS(2795), - [anon_sym_u_DQUOTE] = ACTIONS(2795), - [anon_sym_U_DQUOTE] = ACTIONS(2795), - [anon_sym_u8_DQUOTE] = ACTIONS(2795), - [anon_sym_DQUOTE] = ACTIONS(2795), - [sym_true] = ACTIONS(2793), - [sym_false] = ACTIONS(2793), - [sym_null] = ACTIONS(2793), + [445] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token2] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [aux_sym_preproc_else_token1] = ACTIONS(2595), + [aux_sym_preproc_elif_token1] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2793), - [anon_sym_decltype] = ACTIONS(2793), - [anon_sym_virtual] = ACTIONS(2793), - [anon_sym_explicit] = ACTIONS(2793), - [anon_sym_typename] = ACTIONS(2793), - [anon_sym_template] = ACTIONS(2793), - [anon_sym_operator] = ACTIONS(2793), - [anon_sym_try] = ACTIONS(2793), - [anon_sym_delete] = ACTIONS(2793), - [anon_sym_throw] = ACTIONS(2793), - [anon_sym_namespace] = ACTIONS(2793), - [anon_sym_using] = ACTIONS(2793), - [anon_sym_static_assert] = ACTIONS(2793), - [anon_sym_concept] = ACTIONS(2793), - [anon_sym_co_return] = ACTIONS(2793), - [anon_sym_co_yield] = ACTIONS(2793), - [anon_sym_co_await] = ACTIONS(2793), - [anon_sym_new] = ACTIONS(2793), - [anon_sym_requires] = ACTIONS(2793), - [sym_this] = ACTIONS(2793), - [sym_nullptr] = ACTIONS(2793), - [sym_raw_string_literal] = ACTIONS(2795), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [529] = { - [sym_identifier] = ACTIONS(2797), - [aux_sym_preproc_include_token1] = ACTIONS(2797), - [aux_sym_preproc_def_token1] = ACTIONS(2797), - [aux_sym_preproc_if_token1] = ACTIONS(2797), - [aux_sym_preproc_if_token2] = ACTIONS(2797), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2797), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2797), - [aux_sym_preproc_else_token1] = ACTIONS(2797), - [aux_sym_preproc_elif_token1] = ACTIONS(2797), - [sym_preproc_directive] = ACTIONS(2797), - [anon_sym_LPAREN2] = ACTIONS(2799), - [anon_sym_BANG] = ACTIONS(2799), - [anon_sym_TILDE] = ACTIONS(2799), - [anon_sym_DASH] = ACTIONS(2797), - [anon_sym_PLUS] = ACTIONS(2797), - [anon_sym_STAR] = ACTIONS(2799), - [anon_sym_AMP_AMP] = ACTIONS(2799), - [anon_sym_AMP] = ACTIONS(2797), - [anon_sym_SEMI] = ACTIONS(2799), - [anon_sym_typedef] = ACTIONS(2797), - [anon_sym_extern] = ACTIONS(2797), - [anon_sym___attribute__] = ACTIONS(2797), - [anon_sym_COLON_COLON] = ACTIONS(2799), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2799), - [anon_sym___declspec] = ACTIONS(2797), - [anon_sym___based] = ACTIONS(2797), - [anon_sym___cdecl] = ACTIONS(2797), - [anon_sym___clrcall] = ACTIONS(2797), - [anon_sym___stdcall] = ACTIONS(2797), - [anon_sym___fastcall] = ACTIONS(2797), - [anon_sym___thiscall] = ACTIONS(2797), - [anon_sym___vectorcall] = ACTIONS(2797), - [anon_sym_LBRACE] = ACTIONS(2799), - [anon_sym_LBRACK] = ACTIONS(2797), - [anon_sym_static] = ACTIONS(2797), - [anon_sym_register] = ACTIONS(2797), - [anon_sym_inline] = ACTIONS(2797), - [anon_sym_thread_local] = ACTIONS(2797), - [anon_sym_const] = ACTIONS(2797), - [anon_sym_volatile] = ACTIONS(2797), - [anon_sym_restrict] = ACTIONS(2797), - [anon_sym__Atomic] = ACTIONS(2797), - [anon_sym_mutable] = ACTIONS(2797), - [anon_sym_constexpr] = ACTIONS(2797), - [anon_sym_constinit] = ACTIONS(2797), - [anon_sym_consteval] = ACTIONS(2797), - [anon_sym_signed] = ACTIONS(2797), - [anon_sym_unsigned] = ACTIONS(2797), - [anon_sym_long] = ACTIONS(2797), - [anon_sym_short] = ACTIONS(2797), - [sym_primitive_type] = ACTIONS(2797), - [anon_sym_enum] = ACTIONS(2797), - [anon_sym_class] = ACTIONS(2797), - [anon_sym_struct] = ACTIONS(2797), - [anon_sym_union] = ACTIONS(2797), - [anon_sym_if] = ACTIONS(2797), - [anon_sym_switch] = ACTIONS(2797), - [anon_sym_case] = ACTIONS(2797), - [anon_sym_default] = ACTIONS(2797), - [anon_sym_while] = ACTIONS(2797), - [anon_sym_do] = ACTIONS(2797), - [anon_sym_for] = ACTIONS(2797), - [anon_sym_return] = ACTIONS(2797), - [anon_sym_break] = ACTIONS(2797), - [anon_sym_continue] = ACTIONS(2797), - [anon_sym_goto] = ACTIONS(2797), - [anon_sym_DASH_DASH] = ACTIONS(2799), - [anon_sym_PLUS_PLUS] = ACTIONS(2799), - [anon_sym_sizeof] = ACTIONS(2797), - [sym_number_literal] = ACTIONS(2799), - [anon_sym_L_SQUOTE] = ACTIONS(2799), - [anon_sym_u_SQUOTE] = ACTIONS(2799), - [anon_sym_U_SQUOTE] = ACTIONS(2799), - [anon_sym_u8_SQUOTE] = ACTIONS(2799), - [anon_sym_SQUOTE] = ACTIONS(2799), - [anon_sym_L_DQUOTE] = ACTIONS(2799), - [anon_sym_u_DQUOTE] = ACTIONS(2799), - [anon_sym_U_DQUOTE] = ACTIONS(2799), - [anon_sym_u8_DQUOTE] = ACTIONS(2799), - [anon_sym_DQUOTE] = ACTIONS(2799), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [sym_null] = ACTIONS(2797), + [446] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token2] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [aux_sym_preproc_else_token1] = ACTIONS(2595), + [aux_sym_preproc_elif_token1] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2797), - [anon_sym_decltype] = ACTIONS(2797), - [anon_sym_virtual] = ACTIONS(2797), - [anon_sym_explicit] = ACTIONS(2797), - [anon_sym_typename] = ACTIONS(2797), - [anon_sym_template] = ACTIONS(2797), - [anon_sym_operator] = ACTIONS(2797), - [anon_sym_try] = ACTIONS(2797), - [anon_sym_delete] = ACTIONS(2797), - [anon_sym_throw] = ACTIONS(2797), - [anon_sym_namespace] = ACTIONS(2797), - [anon_sym_using] = ACTIONS(2797), - [anon_sym_static_assert] = ACTIONS(2797), - [anon_sym_concept] = ACTIONS(2797), - [anon_sym_co_return] = ACTIONS(2797), - [anon_sym_co_yield] = ACTIONS(2797), - [anon_sym_co_await] = ACTIONS(2797), - [anon_sym_new] = ACTIONS(2797), - [anon_sym_requires] = ACTIONS(2797), - [sym_this] = ACTIONS(2797), - [sym_nullptr] = ACTIONS(2797), - [sym_raw_string_literal] = ACTIONS(2799), - }, - [530] = { - [sym_identifier] = ACTIONS(2287), - [aux_sym_preproc_include_token1] = ACTIONS(2287), - [aux_sym_preproc_def_token1] = ACTIONS(2287), - [aux_sym_preproc_if_token1] = ACTIONS(2287), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2287), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2287), - [sym_preproc_directive] = ACTIONS(2287), - [anon_sym_LPAREN2] = ACTIONS(2289), - [anon_sym_BANG] = ACTIONS(2289), - [anon_sym_TILDE] = ACTIONS(2289), - [anon_sym_DASH] = ACTIONS(2287), - [anon_sym_PLUS] = ACTIONS(2287), - [anon_sym_STAR] = ACTIONS(2289), - [anon_sym_AMP_AMP] = ACTIONS(2289), - [anon_sym_AMP] = ACTIONS(2287), - [anon_sym_SEMI] = ACTIONS(2289), - [anon_sym_typedef] = ACTIONS(2287), - [anon_sym_extern] = ACTIONS(2287), - [anon_sym___attribute__] = ACTIONS(2287), - [anon_sym_COLON_COLON] = ACTIONS(2289), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2289), - [anon_sym___declspec] = ACTIONS(2287), - [anon_sym___based] = ACTIONS(2287), - [anon_sym___cdecl] = ACTIONS(2287), - [anon_sym___clrcall] = ACTIONS(2287), - [anon_sym___stdcall] = ACTIONS(2287), - [anon_sym___fastcall] = ACTIONS(2287), - [anon_sym___thiscall] = ACTIONS(2287), - [anon_sym___vectorcall] = ACTIONS(2287), - [anon_sym_LBRACE] = ACTIONS(2289), - [anon_sym_RBRACE] = ACTIONS(2289), - [anon_sym_LBRACK] = ACTIONS(2287), - [anon_sym_static] = ACTIONS(2287), - [anon_sym_register] = ACTIONS(2287), - [anon_sym_inline] = ACTIONS(2287), - [anon_sym_thread_local] = ACTIONS(2287), - [anon_sym_const] = ACTIONS(2287), - [anon_sym_volatile] = ACTIONS(2287), - [anon_sym_restrict] = ACTIONS(2287), - [anon_sym__Atomic] = ACTIONS(2287), - [anon_sym_mutable] = ACTIONS(2287), - [anon_sym_constexpr] = ACTIONS(2287), - [anon_sym_constinit] = ACTIONS(2287), - [anon_sym_consteval] = ACTIONS(2287), - [anon_sym_signed] = ACTIONS(2287), - [anon_sym_unsigned] = ACTIONS(2287), - [anon_sym_long] = ACTIONS(2287), - [anon_sym_short] = ACTIONS(2287), - [sym_primitive_type] = ACTIONS(2287), - [anon_sym_enum] = ACTIONS(2287), - [anon_sym_class] = ACTIONS(2287), - [anon_sym_struct] = ACTIONS(2287), - [anon_sym_union] = ACTIONS(2287), - [anon_sym_if] = ACTIONS(2287), - [anon_sym_else] = ACTIONS(2287), - [anon_sym_switch] = ACTIONS(2287), - [anon_sym_case] = ACTIONS(2287), - [anon_sym_default] = ACTIONS(2287), - [anon_sym_while] = ACTIONS(2287), - [anon_sym_do] = ACTIONS(2287), - [anon_sym_for] = ACTIONS(2287), - [anon_sym_return] = ACTIONS(2287), - [anon_sym_break] = ACTIONS(2287), - [anon_sym_continue] = ACTIONS(2287), - [anon_sym_goto] = ACTIONS(2287), - [anon_sym_DASH_DASH] = ACTIONS(2289), - [anon_sym_PLUS_PLUS] = ACTIONS(2289), - [anon_sym_sizeof] = ACTIONS(2287), - [sym_number_literal] = ACTIONS(2289), - [anon_sym_L_SQUOTE] = ACTIONS(2289), - [anon_sym_u_SQUOTE] = ACTIONS(2289), - [anon_sym_U_SQUOTE] = ACTIONS(2289), - [anon_sym_u8_SQUOTE] = ACTIONS(2289), - [anon_sym_SQUOTE] = ACTIONS(2289), - [anon_sym_L_DQUOTE] = ACTIONS(2289), - [anon_sym_u_DQUOTE] = ACTIONS(2289), - [anon_sym_U_DQUOTE] = ACTIONS(2289), - [anon_sym_u8_DQUOTE] = ACTIONS(2289), - [anon_sym_DQUOTE] = ACTIONS(2289), - [sym_true] = ACTIONS(2287), - [sym_false] = ACTIONS(2287), - [sym_null] = ACTIONS(2287), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2287), - [anon_sym_decltype] = ACTIONS(2287), - [anon_sym_virtual] = ACTIONS(2287), - [anon_sym_explicit] = ACTIONS(2287), - [anon_sym_typename] = ACTIONS(2287), - [anon_sym_template] = ACTIONS(2287), - [anon_sym_operator] = ACTIONS(2287), - [anon_sym_try] = ACTIONS(2287), - [anon_sym_delete] = ACTIONS(2287), - [anon_sym_throw] = ACTIONS(2287), - [anon_sym_namespace] = ACTIONS(2287), - [anon_sym_using] = ACTIONS(2287), - [anon_sym_static_assert] = ACTIONS(2287), - [anon_sym_concept] = ACTIONS(2287), - [anon_sym_co_return] = ACTIONS(2287), - [anon_sym_co_yield] = ACTIONS(2287), - [anon_sym_catch] = ACTIONS(2287), - [anon_sym_co_await] = ACTIONS(2287), - [anon_sym_new] = ACTIONS(2287), - [anon_sym_requires] = ACTIONS(2287), - [sym_this] = ACTIONS(2287), - [sym_nullptr] = ACTIONS(2287), - [sym_raw_string_literal] = ACTIONS(2289), - }, - [531] = { - [sym_identifier] = ACTIONS(2287), - [aux_sym_preproc_include_token1] = ACTIONS(2287), - [aux_sym_preproc_def_token1] = ACTIONS(2287), - [aux_sym_preproc_if_token1] = ACTIONS(2287), - [aux_sym_preproc_if_token2] = ACTIONS(2287), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2287), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2287), - [sym_preproc_directive] = ACTIONS(2287), - [anon_sym_LPAREN2] = ACTIONS(2289), - [anon_sym_BANG] = ACTIONS(2289), - [anon_sym_TILDE] = ACTIONS(2289), - [anon_sym_DASH] = ACTIONS(2287), - [anon_sym_PLUS] = ACTIONS(2287), - [anon_sym_STAR] = ACTIONS(2289), - [anon_sym_AMP_AMP] = ACTIONS(2289), - [anon_sym_AMP] = ACTIONS(2287), - [anon_sym_SEMI] = ACTIONS(2289), - [anon_sym_typedef] = ACTIONS(2287), - [anon_sym_extern] = ACTIONS(2287), - [anon_sym___attribute__] = ACTIONS(2287), - [anon_sym_COLON_COLON] = ACTIONS(2289), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2289), - [anon_sym___declspec] = ACTIONS(2287), - [anon_sym___based] = ACTIONS(2287), - [anon_sym___cdecl] = ACTIONS(2287), - [anon_sym___clrcall] = ACTIONS(2287), - [anon_sym___stdcall] = ACTIONS(2287), - [anon_sym___fastcall] = ACTIONS(2287), - [anon_sym___thiscall] = ACTIONS(2287), - [anon_sym___vectorcall] = ACTIONS(2287), - [anon_sym_LBRACE] = ACTIONS(2289), - [anon_sym_LBRACK] = ACTIONS(2287), - [anon_sym_static] = ACTIONS(2287), - [anon_sym_register] = ACTIONS(2287), - [anon_sym_inline] = ACTIONS(2287), - [anon_sym_thread_local] = ACTIONS(2287), - [anon_sym_const] = ACTIONS(2287), - [anon_sym_volatile] = ACTIONS(2287), - [anon_sym_restrict] = ACTIONS(2287), - [anon_sym__Atomic] = ACTIONS(2287), - [anon_sym_mutable] = ACTIONS(2287), - [anon_sym_constexpr] = ACTIONS(2287), - [anon_sym_constinit] = ACTIONS(2287), - [anon_sym_consteval] = ACTIONS(2287), - [anon_sym_signed] = ACTIONS(2287), - [anon_sym_unsigned] = ACTIONS(2287), - [anon_sym_long] = ACTIONS(2287), - [anon_sym_short] = ACTIONS(2287), - [sym_primitive_type] = ACTIONS(2287), - [anon_sym_enum] = ACTIONS(2287), - [anon_sym_class] = ACTIONS(2287), - [anon_sym_struct] = ACTIONS(2287), - [anon_sym_union] = ACTIONS(2287), - [anon_sym_if] = ACTIONS(2287), - [anon_sym_else] = ACTIONS(2287), - [anon_sym_switch] = ACTIONS(2287), - [anon_sym_case] = ACTIONS(2287), - [anon_sym_default] = ACTIONS(2287), - [anon_sym_while] = ACTIONS(2287), - [anon_sym_do] = ACTIONS(2287), - [anon_sym_for] = ACTIONS(2287), - [anon_sym_return] = ACTIONS(2287), - [anon_sym_break] = ACTIONS(2287), - [anon_sym_continue] = ACTIONS(2287), - [anon_sym_goto] = ACTIONS(2287), - [anon_sym_DASH_DASH] = ACTIONS(2289), - [anon_sym_PLUS_PLUS] = ACTIONS(2289), - [anon_sym_sizeof] = ACTIONS(2287), - [sym_number_literal] = ACTIONS(2289), - [anon_sym_L_SQUOTE] = ACTIONS(2289), - [anon_sym_u_SQUOTE] = ACTIONS(2289), - [anon_sym_U_SQUOTE] = ACTIONS(2289), - [anon_sym_u8_SQUOTE] = ACTIONS(2289), - [anon_sym_SQUOTE] = ACTIONS(2289), - [anon_sym_L_DQUOTE] = ACTIONS(2289), - [anon_sym_u_DQUOTE] = ACTIONS(2289), - [anon_sym_U_DQUOTE] = ACTIONS(2289), - [anon_sym_u8_DQUOTE] = ACTIONS(2289), - [anon_sym_DQUOTE] = ACTIONS(2289), - [sym_true] = ACTIONS(2287), - [sym_false] = ACTIONS(2287), - [sym_null] = ACTIONS(2287), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2287), - [anon_sym_decltype] = ACTIONS(2287), - [anon_sym_virtual] = ACTIONS(2287), - [anon_sym_explicit] = ACTIONS(2287), - [anon_sym_typename] = ACTIONS(2287), - [anon_sym_template] = ACTIONS(2287), - [anon_sym_operator] = ACTIONS(2287), - [anon_sym_try] = ACTIONS(2287), - [anon_sym_delete] = ACTIONS(2287), - [anon_sym_throw] = ACTIONS(2287), - [anon_sym_namespace] = ACTIONS(2287), - [anon_sym_using] = ACTIONS(2287), - [anon_sym_static_assert] = ACTIONS(2287), - [anon_sym_concept] = ACTIONS(2287), - [anon_sym_co_return] = ACTIONS(2287), - [anon_sym_co_yield] = ACTIONS(2287), - [anon_sym_catch] = ACTIONS(2287), - [anon_sym_co_await] = ACTIONS(2287), - [anon_sym_new] = ACTIONS(2287), - [anon_sym_requires] = ACTIONS(2287), - [sym_this] = ACTIONS(2287), - [sym_nullptr] = ACTIONS(2287), - [sym_raw_string_literal] = ACTIONS(2289), - }, - [532] = { - [sym_identifier] = ACTIONS(2291), - [aux_sym_preproc_include_token1] = ACTIONS(2291), - [aux_sym_preproc_def_token1] = ACTIONS(2291), - [aux_sym_preproc_if_token1] = ACTIONS(2291), - [aux_sym_preproc_if_token2] = ACTIONS(2291), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2291), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2291), - [sym_preproc_directive] = ACTIONS(2291), - [anon_sym_LPAREN2] = ACTIONS(2293), - [anon_sym_BANG] = ACTIONS(2293), - [anon_sym_TILDE] = ACTIONS(2293), - [anon_sym_DASH] = ACTIONS(2291), - [anon_sym_PLUS] = ACTIONS(2291), - [anon_sym_STAR] = ACTIONS(2293), - [anon_sym_AMP_AMP] = ACTIONS(2293), - [anon_sym_AMP] = ACTIONS(2291), - [anon_sym_SEMI] = ACTIONS(2293), - [anon_sym_typedef] = ACTIONS(2291), - [anon_sym_extern] = ACTIONS(2291), - [anon_sym___attribute__] = ACTIONS(2291), - [anon_sym_COLON_COLON] = ACTIONS(2293), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2293), - [anon_sym___declspec] = ACTIONS(2291), - [anon_sym___based] = ACTIONS(2291), - [anon_sym___cdecl] = ACTIONS(2291), - [anon_sym___clrcall] = ACTIONS(2291), - [anon_sym___stdcall] = ACTIONS(2291), - [anon_sym___fastcall] = ACTIONS(2291), - [anon_sym___thiscall] = ACTIONS(2291), - [anon_sym___vectorcall] = ACTIONS(2291), - [anon_sym_LBRACE] = ACTIONS(2293), - [anon_sym_LBRACK] = ACTIONS(2291), - [anon_sym_static] = ACTIONS(2291), - [anon_sym_register] = ACTIONS(2291), - [anon_sym_inline] = ACTIONS(2291), - [anon_sym_thread_local] = ACTIONS(2291), - [anon_sym_const] = ACTIONS(2291), - [anon_sym_volatile] = ACTIONS(2291), - [anon_sym_restrict] = ACTIONS(2291), - [anon_sym__Atomic] = ACTIONS(2291), - [anon_sym_mutable] = ACTIONS(2291), - [anon_sym_constexpr] = ACTIONS(2291), - [anon_sym_constinit] = ACTIONS(2291), - [anon_sym_consteval] = ACTIONS(2291), - [anon_sym_signed] = ACTIONS(2291), - [anon_sym_unsigned] = ACTIONS(2291), - [anon_sym_long] = ACTIONS(2291), - [anon_sym_short] = ACTIONS(2291), - [sym_primitive_type] = ACTIONS(2291), - [anon_sym_enum] = ACTIONS(2291), - [anon_sym_class] = ACTIONS(2291), - [anon_sym_struct] = ACTIONS(2291), - [anon_sym_union] = ACTIONS(2291), - [anon_sym_if] = ACTIONS(2291), - [anon_sym_else] = ACTIONS(2291), - [anon_sym_switch] = ACTIONS(2291), - [anon_sym_case] = ACTIONS(2291), - [anon_sym_default] = ACTIONS(2291), - [anon_sym_while] = ACTIONS(2291), - [anon_sym_do] = ACTIONS(2291), - [anon_sym_for] = ACTIONS(2291), - [anon_sym_return] = ACTIONS(2291), - [anon_sym_break] = ACTIONS(2291), - [anon_sym_continue] = ACTIONS(2291), - [anon_sym_goto] = ACTIONS(2291), - [anon_sym_DASH_DASH] = ACTIONS(2293), - [anon_sym_PLUS_PLUS] = ACTIONS(2293), - [anon_sym_sizeof] = ACTIONS(2291), - [sym_number_literal] = ACTIONS(2293), - [anon_sym_L_SQUOTE] = ACTIONS(2293), - [anon_sym_u_SQUOTE] = ACTIONS(2293), - [anon_sym_U_SQUOTE] = ACTIONS(2293), - [anon_sym_u8_SQUOTE] = ACTIONS(2293), - [anon_sym_SQUOTE] = ACTIONS(2293), - [anon_sym_L_DQUOTE] = ACTIONS(2293), - [anon_sym_u_DQUOTE] = ACTIONS(2293), - [anon_sym_U_DQUOTE] = ACTIONS(2293), - [anon_sym_u8_DQUOTE] = ACTIONS(2293), - [anon_sym_DQUOTE] = ACTIONS(2293), - [sym_true] = ACTIONS(2291), - [sym_false] = ACTIONS(2291), - [sym_null] = ACTIONS(2291), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2291), - [anon_sym_decltype] = ACTIONS(2291), - [anon_sym_virtual] = ACTIONS(2291), - [anon_sym_explicit] = ACTIONS(2291), - [anon_sym_typename] = ACTIONS(2291), - [anon_sym_template] = ACTIONS(2291), - [anon_sym_operator] = ACTIONS(2291), - [anon_sym_try] = ACTIONS(2291), - [anon_sym_delete] = ACTIONS(2291), - [anon_sym_throw] = ACTIONS(2291), - [anon_sym_namespace] = ACTIONS(2291), - [anon_sym_using] = ACTIONS(2291), - [anon_sym_static_assert] = ACTIONS(2291), - [anon_sym_concept] = ACTIONS(2291), - [anon_sym_co_return] = ACTIONS(2291), - [anon_sym_co_yield] = ACTIONS(2291), - [anon_sym_catch] = ACTIONS(2291), - [anon_sym_co_await] = ACTIONS(2291), - [anon_sym_new] = ACTIONS(2291), - [anon_sym_requires] = ACTIONS(2291), - [sym_this] = ACTIONS(2291), - [sym_nullptr] = ACTIONS(2291), - [sym_raw_string_literal] = ACTIONS(2293), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [533] = { - [sym_identifier] = ACTIONS(2801), - [aux_sym_preproc_include_token1] = ACTIONS(2801), - [aux_sym_preproc_def_token1] = ACTIONS(2801), - [aux_sym_preproc_if_token1] = ACTIONS(2801), - [aux_sym_preproc_if_token2] = ACTIONS(2801), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2801), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2801), - [aux_sym_preproc_else_token1] = ACTIONS(2801), - [aux_sym_preproc_elif_token1] = ACTIONS(2801), - [sym_preproc_directive] = ACTIONS(2801), - [anon_sym_LPAREN2] = ACTIONS(2803), - [anon_sym_BANG] = ACTIONS(2803), - [anon_sym_TILDE] = ACTIONS(2803), - [anon_sym_DASH] = ACTIONS(2801), - [anon_sym_PLUS] = ACTIONS(2801), - [anon_sym_STAR] = ACTIONS(2803), - [anon_sym_AMP_AMP] = ACTIONS(2803), - [anon_sym_AMP] = ACTIONS(2801), - [anon_sym_SEMI] = ACTIONS(2803), - [anon_sym_typedef] = ACTIONS(2801), - [anon_sym_extern] = ACTIONS(2801), - [anon_sym___attribute__] = ACTIONS(2801), - [anon_sym_COLON_COLON] = ACTIONS(2803), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2803), - [anon_sym___declspec] = ACTIONS(2801), - [anon_sym___based] = ACTIONS(2801), - [anon_sym___cdecl] = ACTIONS(2801), - [anon_sym___clrcall] = ACTIONS(2801), - [anon_sym___stdcall] = ACTIONS(2801), - [anon_sym___fastcall] = ACTIONS(2801), - [anon_sym___thiscall] = ACTIONS(2801), - [anon_sym___vectorcall] = ACTIONS(2801), - [anon_sym_LBRACE] = ACTIONS(2803), - [anon_sym_LBRACK] = ACTIONS(2801), - [anon_sym_static] = ACTIONS(2801), - [anon_sym_register] = ACTIONS(2801), - [anon_sym_inline] = ACTIONS(2801), - [anon_sym_thread_local] = ACTIONS(2801), - [anon_sym_const] = ACTIONS(2801), - [anon_sym_volatile] = ACTIONS(2801), - [anon_sym_restrict] = ACTIONS(2801), - [anon_sym__Atomic] = ACTIONS(2801), - [anon_sym_mutable] = ACTIONS(2801), - [anon_sym_constexpr] = ACTIONS(2801), - [anon_sym_constinit] = ACTIONS(2801), - [anon_sym_consteval] = ACTIONS(2801), - [anon_sym_signed] = ACTIONS(2801), - [anon_sym_unsigned] = ACTIONS(2801), - [anon_sym_long] = ACTIONS(2801), - [anon_sym_short] = ACTIONS(2801), - [sym_primitive_type] = ACTIONS(2801), - [anon_sym_enum] = ACTIONS(2801), - [anon_sym_class] = ACTIONS(2801), - [anon_sym_struct] = ACTIONS(2801), - [anon_sym_union] = ACTIONS(2801), - [anon_sym_if] = ACTIONS(2801), - [anon_sym_switch] = ACTIONS(2801), - [anon_sym_case] = ACTIONS(2801), - [anon_sym_default] = ACTIONS(2801), - [anon_sym_while] = ACTIONS(2801), - [anon_sym_do] = ACTIONS(2801), - [anon_sym_for] = ACTIONS(2801), - [anon_sym_return] = ACTIONS(2801), - [anon_sym_break] = ACTIONS(2801), - [anon_sym_continue] = ACTIONS(2801), - [anon_sym_goto] = ACTIONS(2801), - [anon_sym_DASH_DASH] = ACTIONS(2803), - [anon_sym_PLUS_PLUS] = ACTIONS(2803), - [anon_sym_sizeof] = ACTIONS(2801), - [sym_number_literal] = ACTIONS(2803), - [anon_sym_L_SQUOTE] = ACTIONS(2803), - [anon_sym_u_SQUOTE] = ACTIONS(2803), - [anon_sym_U_SQUOTE] = ACTIONS(2803), - [anon_sym_u8_SQUOTE] = ACTIONS(2803), - [anon_sym_SQUOTE] = ACTIONS(2803), - [anon_sym_L_DQUOTE] = ACTIONS(2803), - [anon_sym_u_DQUOTE] = ACTIONS(2803), - [anon_sym_U_DQUOTE] = ACTIONS(2803), - [anon_sym_u8_DQUOTE] = ACTIONS(2803), - [anon_sym_DQUOTE] = ACTIONS(2803), - [sym_true] = ACTIONS(2801), - [sym_false] = ACTIONS(2801), - [sym_null] = ACTIONS(2801), + [447] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token2] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [aux_sym_preproc_else_token1] = ACTIONS(2595), + [aux_sym_preproc_elif_token1] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2801), - [anon_sym_decltype] = ACTIONS(2801), - [anon_sym_virtual] = ACTIONS(2801), - [anon_sym_explicit] = ACTIONS(2801), - [anon_sym_typename] = ACTIONS(2801), - [anon_sym_template] = ACTIONS(2801), - [anon_sym_operator] = ACTIONS(2801), - [anon_sym_try] = ACTIONS(2801), - [anon_sym_delete] = ACTIONS(2801), - [anon_sym_throw] = ACTIONS(2801), - [anon_sym_namespace] = ACTIONS(2801), - [anon_sym_using] = ACTIONS(2801), - [anon_sym_static_assert] = ACTIONS(2801), - [anon_sym_concept] = ACTIONS(2801), - [anon_sym_co_return] = ACTIONS(2801), - [anon_sym_co_yield] = ACTIONS(2801), - [anon_sym_co_await] = ACTIONS(2801), - [anon_sym_new] = ACTIONS(2801), - [anon_sym_requires] = ACTIONS(2801), - [sym_this] = ACTIONS(2801), - [sym_nullptr] = ACTIONS(2801), - [sym_raw_string_literal] = ACTIONS(2803), - }, - [534] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token2] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [535] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token2] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [536] = { - [ts_builtin_sym_end] = ACTIONS(2465), - [sym_identifier] = ACTIONS(2463), - [aux_sym_preproc_include_token1] = ACTIONS(2463), - [aux_sym_preproc_def_token1] = ACTIONS(2463), - [aux_sym_preproc_if_token1] = ACTIONS(2463), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2463), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2463), - [sym_preproc_directive] = ACTIONS(2463), - [anon_sym_LPAREN2] = ACTIONS(2465), - [anon_sym_BANG] = ACTIONS(2465), - [anon_sym_TILDE] = ACTIONS(2465), - [anon_sym_DASH] = ACTIONS(2463), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_STAR] = ACTIONS(2465), - [anon_sym_AMP_AMP] = ACTIONS(2465), - [anon_sym_AMP] = ACTIONS(2463), - [anon_sym_SEMI] = ACTIONS(2465), - [anon_sym_typedef] = ACTIONS(2463), - [anon_sym_extern] = ACTIONS(2463), - [anon_sym___attribute__] = ACTIONS(2463), - [anon_sym_COLON_COLON] = ACTIONS(2465), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2465), - [anon_sym___declspec] = ACTIONS(2463), - [anon_sym___based] = ACTIONS(2463), - [anon_sym___cdecl] = ACTIONS(2463), - [anon_sym___clrcall] = ACTIONS(2463), - [anon_sym___stdcall] = ACTIONS(2463), - [anon_sym___fastcall] = ACTIONS(2463), - [anon_sym___thiscall] = ACTIONS(2463), - [anon_sym___vectorcall] = ACTIONS(2463), - [anon_sym_LBRACE] = ACTIONS(2465), - [anon_sym_LBRACK] = ACTIONS(2463), - [anon_sym_static] = ACTIONS(2463), - [anon_sym_register] = ACTIONS(2463), - [anon_sym_inline] = ACTIONS(2463), - [anon_sym_thread_local] = ACTIONS(2463), - [anon_sym_const] = ACTIONS(2463), - [anon_sym_volatile] = ACTIONS(2463), - [anon_sym_restrict] = ACTIONS(2463), - [anon_sym__Atomic] = ACTIONS(2463), - [anon_sym_mutable] = ACTIONS(2463), - [anon_sym_constexpr] = ACTIONS(2463), - [anon_sym_constinit] = ACTIONS(2463), - [anon_sym_consteval] = ACTIONS(2463), - [anon_sym_signed] = ACTIONS(2463), - [anon_sym_unsigned] = ACTIONS(2463), - [anon_sym_long] = ACTIONS(2463), - [anon_sym_short] = ACTIONS(2463), - [sym_primitive_type] = ACTIONS(2463), - [anon_sym_enum] = ACTIONS(2463), - [anon_sym_class] = ACTIONS(2463), - [anon_sym_struct] = ACTIONS(2463), - [anon_sym_union] = ACTIONS(2463), - [anon_sym_if] = ACTIONS(2463), - [anon_sym_else] = ACTIONS(2463), - [anon_sym_switch] = ACTIONS(2463), - [anon_sym_case] = ACTIONS(2463), - [anon_sym_default] = ACTIONS(2463), - [anon_sym_while] = ACTIONS(2463), - [anon_sym_do] = ACTIONS(2463), - [anon_sym_for] = ACTIONS(2463), - [anon_sym_return] = ACTIONS(2463), - [anon_sym_break] = ACTIONS(2463), - [anon_sym_continue] = ACTIONS(2463), - [anon_sym_goto] = ACTIONS(2463), - [anon_sym_DASH_DASH] = ACTIONS(2465), - [anon_sym_PLUS_PLUS] = ACTIONS(2465), - [anon_sym_sizeof] = ACTIONS(2463), - [sym_number_literal] = ACTIONS(2465), - [anon_sym_L_SQUOTE] = ACTIONS(2465), - [anon_sym_u_SQUOTE] = ACTIONS(2465), - [anon_sym_U_SQUOTE] = ACTIONS(2465), - [anon_sym_u8_SQUOTE] = ACTIONS(2465), - [anon_sym_SQUOTE] = ACTIONS(2465), - [anon_sym_L_DQUOTE] = ACTIONS(2465), - [anon_sym_u_DQUOTE] = ACTIONS(2465), - [anon_sym_U_DQUOTE] = ACTIONS(2465), - [anon_sym_u8_DQUOTE] = ACTIONS(2465), - [anon_sym_DQUOTE] = ACTIONS(2465), - [sym_true] = ACTIONS(2463), - [sym_false] = ACTIONS(2463), - [sym_null] = ACTIONS(2463), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2463), - [anon_sym_decltype] = ACTIONS(2463), - [anon_sym_virtual] = ACTIONS(2463), - [anon_sym_explicit] = ACTIONS(2463), - [anon_sym_typename] = ACTIONS(2463), - [anon_sym_template] = ACTIONS(2463), - [anon_sym_operator] = ACTIONS(2463), - [anon_sym_try] = ACTIONS(2463), - [anon_sym_delete] = ACTIONS(2463), - [anon_sym_throw] = ACTIONS(2463), - [anon_sym_namespace] = ACTIONS(2463), - [anon_sym_using] = ACTIONS(2463), - [anon_sym_static_assert] = ACTIONS(2463), - [anon_sym_concept] = ACTIONS(2463), - [anon_sym_co_return] = ACTIONS(2463), - [anon_sym_co_yield] = ACTIONS(2463), - [anon_sym_co_await] = ACTIONS(2463), - [anon_sym_new] = ACTIONS(2463), - [anon_sym_requires] = ACTIONS(2463), - [sym_this] = ACTIONS(2463), - [sym_nullptr] = ACTIONS(2463), - [sym_raw_string_literal] = ACTIONS(2465), - }, - [537] = { - [ts_builtin_sym_end] = ACTIONS(2489), - [sym_identifier] = ACTIONS(2487), - [aux_sym_preproc_include_token1] = ACTIONS(2487), - [aux_sym_preproc_def_token1] = ACTIONS(2487), - [aux_sym_preproc_if_token1] = ACTIONS(2487), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2487), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2487), - [sym_preproc_directive] = ACTIONS(2487), - [anon_sym_LPAREN2] = ACTIONS(2489), - [anon_sym_BANG] = ACTIONS(2489), - [anon_sym_TILDE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_STAR] = ACTIONS(2489), - [anon_sym_AMP_AMP] = ACTIONS(2489), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_SEMI] = ACTIONS(2489), - [anon_sym_typedef] = ACTIONS(2487), - [anon_sym_extern] = ACTIONS(2487), - [anon_sym___attribute__] = ACTIONS(2487), - [anon_sym_COLON_COLON] = ACTIONS(2489), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2489), - [anon_sym___declspec] = ACTIONS(2487), - [anon_sym___based] = ACTIONS(2487), - [anon_sym___cdecl] = ACTIONS(2487), - [anon_sym___clrcall] = ACTIONS(2487), - [anon_sym___stdcall] = ACTIONS(2487), - [anon_sym___fastcall] = ACTIONS(2487), - [anon_sym___thiscall] = ACTIONS(2487), - [anon_sym___vectorcall] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_LBRACK] = ACTIONS(2487), - [anon_sym_static] = ACTIONS(2487), - [anon_sym_register] = ACTIONS(2487), - [anon_sym_inline] = ACTIONS(2487), - [anon_sym_thread_local] = ACTIONS(2487), - [anon_sym_const] = ACTIONS(2487), - [anon_sym_volatile] = ACTIONS(2487), - [anon_sym_restrict] = ACTIONS(2487), - [anon_sym__Atomic] = ACTIONS(2487), - [anon_sym_mutable] = ACTIONS(2487), - [anon_sym_constexpr] = ACTIONS(2487), - [anon_sym_constinit] = ACTIONS(2487), - [anon_sym_consteval] = ACTIONS(2487), - [anon_sym_signed] = ACTIONS(2487), - [anon_sym_unsigned] = ACTIONS(2487), - [anon_sym_long] = ACTIONS(2487), - [anon_sym_short] = ACTIONS(2487), - [sym_primitive_type] = ACTIONS(2487), - [anon_sym_enum] = ACTIONS(2487), - [anon_sym_class] = ACTIONS(2487), - [anon_sym_struct] = ACTIONS(2487), - [anon_sym_union] = ACTIONS(2487), - [anon_sym_if] = ACTIONS(2487), - [anon_sym_else] = ACTIONS(2487), - [anon_sym_switch] = ACTIONS(2487), - [anon_sym_case] = ACTIONS(2487), - [anon_sym_default] = ACTIONS(2487), - [anon_sym_while] = ACTIONS(2487), - [anon_sym_do] = ACTIONS(2487), - [anon_sym_for] = ACTIONS(2487), - [anon_sym_return] = ACTIONS(2487), - [anon_sym_break] = ACTIONS(2487), - [anon_sym_continue] = ACTIONS(2487), - [anon_sym_goto] = ACTIONS(2487), - [anon_sym_DASH_DASH] = ACTIONS(2489), - [anon_sym_PLUS_PLUS] = ACTIONS(2489), - [anon_sym_sizeof] = ACTIONS(2487), - [sym_number_literal] = ACTIONS(2489), - [anon_sym_L_SQUOTE] = ACTIONS(2489), - [anon_sym_u_SQUOTE] = ACTIONS(2489), - [anon_sym_U_SQUOTE] = ACTIONS(2489), - [anon_sym_u8_SQUOTE] = ACTIONS(2489), - [anon_sym_SQUOTE] = ACTIONS(2489), - [anon_sym_L_DQUOTE] = ACTIONS(2489), - [anon_sym_u_DQUOTE] = ACTIONS(2489), - [anon_sym_U_DQUOTE] = ACTIONS(2489), - [anon_sym_u8_DQUOTE] = ACTIONS(2489), - [anon_sym_DQUOTE] = ACTIONS(2489), - [sym_true] = ACTIONS(2487), - [sym_false] = ACTIONS(2487), - [sym_null] = ACTIONS(2487), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2487), - [anon_sym_decltype] = ACTIONS(2487), - [anon_sym_virtual] = ACTIONS(2487), - [anon_sym_explicit] = ACTIONS(2487), - [anon_sym_typename] = ACTIONS(2487), - [anon_sym_template] = ACTIONS(2487), - [anon_sym_operator] = ACTIONS(2487), - [anon_sym_try] = ACTIONS(2487), - [anon_sym_delete] = ACTIONS(2487), - [anon_sym_throw] = ACTIONS(2487), - [anon_sym_namespace] = ACTIONS(2487), - [anon_sym_using] = ACTIONS(2487), - [anon_sym_static_assert] = ACTIONS(2487), - [anon_sym_concept] = ACTIONS(2487), - [anon_sym_co_return] = ACTIONS(2487), - [anon_sym_co_yield] = ACTIONS(2487), - [anon_sym_co_await] = ACTIONS(2487), - [anon_sym_new] = ACTIONS(2487), - [anon_sym_requires] = ACTIONS(2487), - [sym_this] = ACTIONS(2487), - [sym_nullptr] = ACTIONS(2487), - [sym_raw_string_literal] = ACTIONS(2489), - }, - [538] = { - [sym_identifier] = ACTIONS(2409), - [aux_sym_preproc_include_token1] = ACTIONS(2409), - [aux_sym_preproc_def_token1] = ACTIONS(2409), - [aux_sym_preproc_if_token1] = ACTIONS(2409), - [aux_sym_preproc_if_token2] = ACTIONS(2409), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2409), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2409), - [sym_preproc_directive] = ACTIONS(2409), - [anon_sym_LPAREN2] = ACTIONS(2411), - [anon_sym_BANG] = ACTIONS(2411), - [anon_sym_TILDE] = ACTIONS(2411), - [anon_sym_DASH] = ACTIONS(2409), - [anon_sym_PLUS] = ACTIONS(2409), - [anon_sym_STAR] = ACTIONS(2411), - [anon_sym_AMP_AMP] = ACTIONS(2411), - [anon_sym_AMP] = ACTIONS(2409), - [anon_sym_SEMI] = ACTIONS(2411), - [anon_sym_typedef] = ACTIONS(2409), - [anon_sym_extern] = ACTIONS(2409), - [anon_sym___attribute__] = ACTIONS(2409), - [anon_sym_COLON_COLON] = ACTIONS(2411), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2411), - [anon_sym___declspec] = ACTIONS(2409), - [anon_sym___based] = ACTIONS(2409), - [anon_sym___cdecl] = ACTIONS(2409), - [anon_sym___clrcall] = ACTIONS(2409), - [anon_sym___stdcall] = ACTIONS(2409), - [anon_sym___fastcall] = ACTIONS(2409), - [anon_sym___thiscall] = ACTIONS(2409), - [anon_sym___vectorcall] = ACTIONS(2409), - [anon_sym_LBRACE] = ACTIONS(2411), - [anon_sym_LBRACK] = ACTIONS(2409), - [anon_sym_static] = ACTIONS(2409), - [anon_sym_register] = ACTIONS(2409), - [anon_sym_inline] = ACTIONS(2409), - [anon_sym_thread_local] = ACTIONS(2409), - [anon_sym_const] = ACTIONS(2409), - [anon_sym_volatile] = ACTIONS(2409), - [anon_sym_restrict] = ACTIONS(2409), - [anon_sym__Atomic] = ACTIONS(2409), - [anon_sym_mutable] = ACTIONS(2409), - [anon_sym_constexpr] = ACTIONS(2409), - [anon_sym_constinit] = ACTIONS(2409), - [anon_sym_consteval] = ACTIONS(2409), - [anon_sym_signed] = ACTIONS(2409), - [anon_sym_unsigned] = ACTIONS(2409), - [anon_sym_long] = ACTIONS(2409), - [anon_sym_short] = ACTIONS(2409), - [sym_primitive_type] = ACTIONS(2409), - [anon_sym_enum] = ACTIONS(2409), - [anon_sym_class] = ACTIONS(2409), - [anon_sym_struct] = ACTIONS(2409), - [anon_sym_union] = ACTIONS(2409), - [anon_sym_if] = ACTIONS(2409), - [anon_sym_else] = ACTIONS(2409), - [anon_sym_switch] = ACTIONS(2409), - [anon_sym_case] = ACTIONS(2409), - [anon_sym_default] = ACTIONS(2409), - [anon_sym_while] = ACTIONS(2409), - [anon_sym_do] = ACTIONS(2409), - [anon_sym_for] = ACTIONS(2409), - [anon_sym_return] = ACTIONS(2409), - [anon_sym_break] = ACTIONS(2409), - [anon_sym_continue] = ACTIONS(2409), - [anon_sym_goto] = ACTIONS(2409), - [anon_sym_DASH_DASH] = ACTIONS(2411), - [anon_sym_PLUS_PLUS] = ACTIONS(2411), - [anon_sym_sizeof] = ACTIONS(2409), - [sym_number_literal] = ACTIONS(2411), - [anon_sym_L_SQUOTE] = ACTIONS(2411), - [anon_sym_u_SQUOTE] = ACTIONS(2411), - [anon_sym_U_SQUOTE] = ACTIONS(2411), - [anon_sym_u8_SQUOTE] = ACTIONS(2411), - [anon_sym_SQUOTE] = ACTIONS(2411), - [anon_sym_L_DQUOTE] = ACTIONS(2411), - [anon_sym_u_DQUOTE] = ACTIONS(2411), - [anon_sym_U_DQUOTE] = ACTIONS(2411), - [anon_sym_u8_DQUOTE] = ACTIONS(2411), - [anon_sym_DQUOTE] = ACTIONS(2411), - [sym_true] = ACTIONS(2409), - [sym_false] = ACTIONS(2409), - [sym_null] = ACTIONS(2409), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2409), - [anon_sym_decltype] = ACTIONS(2409), - [anon_sym_virtual] = ACTIONS(2409), - [anon_sym_explicit] = ACTIONS(2409), - [anon_sym_typename] = ACTIONS(2409), - [anon_sym_template] = ACTIONS(2409), - [anon_sym_operator] = ACTIONS(2409), - [anon_sym_try] = ACTIONS(2409), - [anon_sym_delete] = ACTIONS(2409), - [anon_sym_throw] = ACTIONS(2409), - [anon_sym_namespace] = ACTIONS(2409), - [anon_sym_using] = ACTIONS(2409), - [anon_sym_static_assert] = ACTIONS(2409), - [anon_sym_concept] = ACTIONS(2409), - [anon_sym_co_return] = ACTIONS(2409), - [anon_sym_co_yield] = ACTIONS(2409), - [anon_sym_co_await] = ACTIONS(2409), - [anon_sym_new] = ACTIONS(2409), - [anon_sym_requires] = ACTIONS(2409), - [sym_this] = ACTIONS(2409), - [sym_nullptr] = ACTIONS(2409), - [sym_raw_string_literal] = ACTIONS(2411), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [539] = { - [sym_identifier] = ACTIONS(2413), - [aux_sym_preproc_include_token1] = ACTIONS(2413), - [aux_sym_preproc_def_token1] = ACTIONS(2413), - [aux_sym_preproc_if_token1] = ACTIONS(2413), - [aux_sym_preproc_if_token2] = ACTIONS(2413), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2413), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2413), - [sym_preproc_directive] = ACTIONS(2413), - [anon_sym_LPAREN2] = ACTIONS(2415), - [anon_sym_BANG] = ACTIONS(2415), - [anon_sym_TILDE] = ACTIONS(2415), - [anon_sym_DASH] = ACTIONS(2413), - [anon_sym_PLUS] = ACTIONS(2413), - [anon_sym_STAR] = ACTIONS(2415), - [anon_sym_AMP_AMP] = ACTIONS(2415), - [anon_sym_AMP] = ACTIONS(2413), - [anon_sym_SEMI] = ACTIONS(2415), - [anon_sym_typedef] = ACTIONS(2413), - [anon_sym_extern] = ACTIONS(2413), - [anon_sym___attribute__] = ACTIONS(2413), - [anon_sym_COLON_COLON] = ACTIONS(2415), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2415), - [anon_sym___declspec] = ACTIONS(2413), - [anon_sym___based] = ACTIONS(2413), - [anon_sym___cdecl] = ACTIONS(2413), - [anon_sym___clrcall] = ACTIONS(2413), - [anon_sym___stdcall] = ACTIONS(2413), - [anon_sym___fastcall] = ACTIONS(2413), - [anon_sym___thiscall] = ACTIONS(2413), - [anon_sym___vectorcall] = ACTIONS(2413), - [anon_sym_LBRACE] = ACTIONS(2415), - [anon_sym_LBRACK] = ACTIONS(2413), - [anon_sym_static] = ACTIONS(2413), - [anon_sym_register] = ACTIONS(2413), - [anon_sym_inline] = ACTIONS(2413), - [anon_sym_thread_local] = ACTIONS(2413), - [anon_sym_const] = ACTIONS(2413), - [anon_sym_volatile] = ACTIONS(2413), - [anon_sym_restrict] = ACTIONS(2413), - [anon_sym__Atomic] = ACTIONS(2413), - [anon_sym_mutable] = ACTIONS(2413), - [anon_sym_constexpr] = ACTIONS(2413), - [anon_sym_constinit] = ACTIONS(2413), - [anon_sym_consteval] = ACTIONS(2413), - [anon_sym_signed] = ACTIONS(2413), - [anon_sym_unsigned] = ACTIONS(2413), - [anon_sym_long] = ACTIONS(2413), - [anon_sym_short] = ACTIONS(2413), - [sym_primitive_type] = ACTIONS(2413), - [anon_sym_enum] = ACTIONS(2413), - [anon_sym_class] = ACTIONS(2413), - [anon_sym_struct] = ACTIONS(2413), - [anon_sym_union] = ACTIONS(2413), - [anon_sym_if] = ACTIONS(2413), - [anon_sym_else] = ACTIONS(2413), - [anon_sym_switch] = ACTIONS(2413), - [anon_sym_case] = ACTIONS(2413), - [anon_sym_default] = ACTIONS(2413), - [anon_sym_while] = ACTIONS(2413), - [anon_sym_do] = ACTIONS(2413), - [anon_sym_for] = ACTIONS(2413), - [anon_sym_return] = ACTIONS(2413), - [anon_sym_break] = ACTIONS(2413), - [anon_sym_continue] = ACTIONS(2413), - [anon_sym_goto] = ACTIONS(2413), - [anon_sym_DASH_DASH] = ACTIONS(2415), - [anon_sym_PLUS_PLUS] = ACTIONS(2415), - [anon_sym_sizeof] = ACTIONS(2413), - [sym_number_literal] = ACTIONS(2415), - [anon_sym_L_SQUOTE] = ACTIONS(2415), - [anon_sym_u_SQUOTE] = ACTIONS(2415), - [anon_sym_U_SQUOTE] = ACTIONS(2415), - [anon_sym_u8_SQUOTE] = ACTIONS(2415), - [anon_sym_SQUOTE] = ACTIONS(2415), - [anon_sym_L_DQUOTE] = ACTIONS(2415), - [anon_sym_u_DQUOTE] = ACTIONS(2415), - [anon_sym_U_DQUOTE] = ACTIONS(2415), - [anon_sym_u8_DQUOTE] = ACTIONS(2415), - [anon_sym_DQUOTE] = ACTIONS(2415), - [sym_true] = ACTIONS(2413), - [sym_false] = ACTIONS(2413), - [sym_null] = ACTIONS(2413), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2413), - [anon_sym_decltype] = ACTIONS(2413), - [anon_sym_virtual] = ACTIONS(2413), - [anon_sym_explicit] = ACTIONS(2413), - [anon_sym_typename] = ACTIONS(2413), - [anon_sym_template] = ACTIONS(2413), - [anon_sym_operator] = ACTIONS(2413), - [anon_sym_try] = ACTIONS(2413), - [anon_sym_delete] = ACTIONS(2413), - [anon_sym_throw] = ACTIONS(2413), - [anon_sym_namespace] = ACTIONS(2413), - [anon_sym_using] = ACTIONS(2413), - [anon_sym_static_assert] = ACTIONS(2413), - [anon_sym_concept] = ACTIONS(2413), - [anon_sym_co_return] = ACTIONS(2413), - [anon_sym_co_yield] = ACTIONS(2413), - [anon_sym_co_await] = ACTIONS(2413), - [anon_sym_new] = ACTIONS(2413), - [anon_sym_requires] = ACTIONS(2413), - [sym_this] = ACTIONS(2413), - [sym_nullptr] = ACTIONS(2413), - [sym_raw_string_literal] = ACTIONS(2415), + [448] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token2] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [aux_sym_preproc_else_token1] = ACTIONS(2595), + [aux_sym_preproc_elif_token1] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [540] = { - [sym_identifier] = ACTIONS(2417), - [aux_sym_preproc_include_token1] = ACTIONS(2417), - [aux_sym_preproc_def_token1] = ACTIONS(2417), - [aux_sym_preproc_if_token1] = ACTIONS(2417), - [aux_sym_preproc_if_token2] = ACTIONS(2417), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2417), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2417), - [sym_preproc_directive] = ACTIONS(2417), - [anon_sym_LPAREN2] = ACTIONS(2419), - [anon_sym_BANG] = ACTIONS(2419), - [anon_sym_TILDE] = ACTIONS(2419), - [anon_sym_DASH] = ACTIONS(2417), - [anon_sym_PLUS] = ACTIONS(2417), - [anon_sym_STAR] = ACTIONS(2419), - [anon_sym_AMP_AMP] = ACTIONS(2419), - [anon_sym_AMP] = ACTIONS(2417), - [anon_sym_SEMI] = ACTIONS(2419), - [anon_sym_typedef] = ACTIONS(2417), - [anon_sym_extern] = ACTIONS(2417), - [anon_sym___attribute__] = ACTIONS(2417), - [anon_sym_COLON_COLON] = ACTIONS(2419), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2419), - [anon_sym___declspec] = ACTIONS(2417), - [anon_sym___based] = ACTIONS(2417), - [anon_sym___cdecl] = ACTIONS(2417), - [anon_sym___clrcall] = ACTIONS(2417), - [anon_sym___stdcall] = ACTIONS(2417), - [anon_sym___fastcall] = ACTIONS(2417), - [anon_sym___thiscall] = ACTIONS(2417), - [anon_sym___vectorcall] = ACTIONS(2417), - [anon_sym_LBRACE] = ACTIONS(2419), - [anon_sym_LBRACK] = ACTIONS(2417), - [anon_sym_static] = ACTIONS(2417), - [anon_sym_register] = ACTIONS(2417), - [anon_sym_inline] = ACTIONS(2417), - [anon_sym_thread_local] = ACTIONS(2417), - [anon_sym_const] = ACTIONS(2417), - [anon_sym_volatile] = ACTIONS(2417), - [anon_sym_restrict] = ACTIONS(2417), - [anon_sym__Atomic] = ACTIONS(2417), - [anon_sym_mutable] = ACTIONS(2417), - [anon_sym_constexpr] = ACTIONS(2417), - [anon_sym_constinit] = ACTIONS(2417), - [anon_sym_consteval] = ACTIONS(2417), - [anon_sym_signed] = ACTIONS(2417), - [anon_sym_unsigned] = ACTIONS(2417), - [anon_sym_long] = ACTIONS(2417), - [anon_sym_short] = ACTIONS(2417), - [sym_primitive_type] = ACTIONS(2417), - [anon_sym_enum] = ACTIONS(2417), - [anon_sym_class] = ACTIONS(2417), - [anon_sym_struct] = ACTIONS(2417), - [anon_sym_union] = ACTIONS(2417), - [anon_sym_if] = ACTIONS(2417), - [anon_sym_else] = ACTIONS(2417), - [anon_sym_switch] = ACTIONS(2417), - [anon_sym_case] = ACTIONS(2417), - [anon_sym_default] = ACTIONS(2417), - [anon_sym_while] = ACTIONS(2417), - [anon_sym_do] = ACTIONS(2417), - [anon_sym_for] = ACTIONS(2417), - [anon_sym_return] = ACTIONS(2417), - [anon_sym_break] = ACTIONS(2417), - [anon_sym_continue] = ACTIONS(2417), - [anon_sym_goto] = ACTIONS(2417), - [anon_sym_DASH_DASH] = ACTIONS(2419), - [anon_sym_PLUS_PLUS] = ACTIONS(2419), - [anon_sym_sizeof] = ACTIONS(2417), - [sym_number_literal] = ACTIONS(2419), - [anon_sym_L_SQUOTE] = ACTIONS(2419), - [anon_sym_u_SQUOTE] = ACTIONS(2419), - [anon_sym_U_SQUOTE] = ACTIONS(2419), - [anon_sym_u8_SQUOTE] = ACTIONS(2419), - [anon_sym_SQUOTE] = ACTIONS(2419), - [anon_sym_L_DQUOTE] = ACTIONS(2419), - [anon_sym_u_DQUOTE] = ACTIONS(2419), - [anon_sym_U_DQUOTE] = ACTIONS(2419), - [anon_sym_u8_DQUOTE] = ACTIONS(2419), - [anon_sym_DQUOTE] = ACTIONS(2419), - [sym_true] = ACTIONS(2417), - [sym_false] = ACTIONS(2417), - [sym_null] = ACTIONS(2417), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2417), - [anon_sym_decltype] = ACTIONS(2417), - [anon_sym_virtual] = ACTIONS(2417), - [anon_sym_explicit] = ACTIONS(2417), - [anon_sym_typename] = ACTIONS(2417), - [anon_sym_template] = ACTIONS(2417), - [anon_sym_operator] = ACTIONS(2417), - [anon_sym_try] = ACTIONS(2417), - [anon_sym_delete] = ACTIONS(2417), - [anon_sym_throw] = ACTIONS(2417), - [anon_sym_namespace] = ACTIONS(2417), - [anon_sym_using] = ACTIONS(2417), - [anon_sym_static_assert] = ACTIONS(2417), - [anon_sym_concept] = ACTIONS(2417), - [anon_sym_co_return] = ACTIONS(2417), - [anon_sym_co_yield] = ACTIONS(2417), - [anon_sym_co_await] = ACTIONS(2417), - [anon_sym_new] = ACTIONS(2417), - [anon_sym_requires] = ACTIONS(2417), - [sym_this] = ACTIONS(2417), - [sym_nullptr] = ACTIONS(2417), - [sym_raw_string_literal] = ACTIONS(2419), + [449] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token2] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [aux_sym_preproc_else_token1] = ACTIONS(2595), + [aux_sym_preproc_elif_token1] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [541] = { - [sym_identifier] = ACTIONS(2425), - [aux_sym_preproc_include_token1] = ACTIONS(2425), - [aux_sym_preproc_def_token1] = ACTIONS(2425), - [aux_sym_preproc_if_token1] = ACTIONS(2425), - [aux_sym_preproc_if_token2] = ACTIONS(2425), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2425), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2425), - [sym_preproc_directive] = ACTIONS(2425), - [anon_sym_LPAREN2] = ACTIONS(2427), - [anon_sym_BANG] = ACTIONS(2427), - [anon_sym_TILDE] = ACTIONS(2427), - [anon_sym_DASH] = ACTIONS(2425), - [anon_sym_PLUS] = ACTIONS(2425), - [anon_sym_STAR] = ACTIONS(2427), - [anon_sym_AMP_AMP] = ACTIONS(2427), - [anon_sym_AMP] = ACTIONS(2425), - [anon_sym_SEMI] = ACTIONS(2427), - [anon_sym_typedef] = ACTIONS(2425), - [anon_sym_extern] = ACTIONS(2425), - [anon_sym___attribute__] = ACTIONS(2425), - [anon_sym_COLON_COLON] = ACTIONS(2427), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2427), - [anon_sym___declspec] = ACTIONS(2425), - [anon_sym___based] = ACTIONS(2425), - [anon_sym___cdecl] = ACTIONS(2425), - [anon_sym___clrcall] = ACTIONS(2425), - [anon_sym___stdcall] = ACTIONS(2425), - [anon_sym___fastcall] = ACTIONS(2425), - [anon_sym___thiscall] = ACTIONS(2425), - [anon_sym___vectorcall] = ACTIONS(2425), - [anon_sym_LBRACE] = ACTIONS(2427), - [anon_sym_LBRACK] = ACTIONS(2425), - [anon_sym_static] = ACTIONS(2425), - [anon_sym_register] = ACTIONS(2425), - [anon_sym_inline] = ACTIONS(2425), - [anon_sym_thread_local] = ACTIONS(2425), - [anon_sym_const] = ACTIONS(2425), - [anon_sym_volatile] = ACTIONS(2425), - [anon_sym_restrict] = ACTIONS(2425), - [anon_sym__Atomic] = ACTIONS(2425), - [anon_sym_mutable] = ACTIONS(2425), - [anon_sym_constexpr] = ACTIONS(2425), - [anon_sym_constinit] = ACTIONS(2425), - [anon_sym_consteval] = ACTIONS(2425), - [anon_sym_signed] = ACTIONS(2425), - [anon_sym_unsigned] = ACTIONS(2425), - [anon_sym_long] = ACTIONS(2425), - [anon_sym_short] = ACTIONS(2425), - [sym_primitive_type] = ACTIONS(2425), - [anon_sym_enum] = ACTIONS(2425), - [anon_sym_class] = ACTIONS(2425), - [anon_sym_struct] = ACTIONS(2425), - [anon_sym_union] = ACTIONS(2425), - [anon_sym_if] = ACTIONS(2425), - [anon_sym_else] = ACTIONS(2425), - [anon_sym_switch] = ACTIONS(2425), - [anon_sym_case] = ACTIONS(2425), - [anon_sym_default] = ACTIONS(2425), - [anon_sym_while] = ACTIONS(2425), - [anon_sym_do] = ACTIONS(2425), - [anon_sym_for] = ACTIONS(2425), - [anon_sym_return] = ACTIONS(2425), - [anon_sym_break] = ACTIONS(2425), - [anon_sym_continue] = ACTIONS(2425), - [anon_sym_goto] = ACTIONS(2425), - [anon_sym_DASH_DASH] = ACTIONS(2427), - [anon_sym_PLUS_PLUS] = ACTIONS(2427), - [anon_sym_sizeof] = ACTIONS(2425), - [sym_number_literal] = ACTIONS(2427), - [anon_sym_L_SQUOTE] = ACTIONS(2427), - [anon_sym_u_SQUOTE] = ACTIONS(2427), - [anon_sym_U_SQUOTE] = ACTIONS(2427), - [anon_sym_u8_SQUOTE] = ACTIONS(2427), - [anon_sym_SQUOTE] = ACTIONS(2427), - [anon_sym_L_DQUOTE] = ACTIONS(2427), - [anon_sym_u_DQUOTE] = ACTIONS(2427), - [anon_sym_U_DQUOTE] = ACTIONS(2427), - [anon_sym_u8_DQUOTE] = ACTIONS(2427), - [anon_sym_DQUOTE] = ACTIONS(2427), - [sym_true] = ACTIONS(2425), - [sym_false] = ACTIONS(2425), - [sym_null] = ACTIONS(2425), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2425), - [anon_sym_decltype] = ACTIONS(2425), - [anon_sym_virtual] = ACTIONS(2425), - [anon_sym_explicit] = ACTIONS(2425), - [anon_sym_typename] = ACTIONS(2425), - [anon_sym_template] = ACTIONS(2425), - [anon_sym_operator] = ACTIONS(2425), - [anon_sym_try] = ACTIONS(2425), - [anon_sym_delete] = ACTIONS(2425), - [anon_sym_throw] = ACTIONS(2425), - [anon_sym_namespace] = ACTIONS(2425), - [anon_sym_using] = ACTIONS(2425), - [anon_sym_static_assert] = ACTIONS(2425), - [anon_sym_concept] = ACTIONS(2425), - [anon_sym_co_return] = ACTIONS(2425), - [anon_sym_co_yield] = ACTIONS(2425), - [anon_sym_co_await] = ACTIONS(2425), - [anon_sym_new] = ACTIONS(2425), - [anon_sym_requires] = ACTIONS(2425), - [sym_this] = ACTIONS(2425), - [sym_nullptr] = ACTIONS(2425), - [sym_raw_string_literal] = ACTIONS(2427), - }, - [542] = { - [sym_identifier] = ACTIONS(2421), - [aux_sym_preproc_include_token1] = ACTIONS(2421), - [aux_sym_preproc_def_token1] = ACTIONS(2421), - [aux_sym_preproc_if_token1] = ACTIONS(2421), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2421), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2421), - [sym_preproc_directive] = ACTIONS(2421), - [anon_sym_LPAREN2] = ACTIONS(2423), - [anon_sym_BANG] = ACTIONS(2423), - [anon_sym_TILDE] = ACTIONS(2423), - [anon_sym_DASH] = ACTIONS(2421), - [anon_sym_PLUS] = ACTIONS(2421), - [anon_sym_STAR] = ACTIONS(2423), - [anon_sym_AMP_AMP] = ACTIONS(2423), - [anon_sym_AMP] = ACTIONS(2421), - [anon_sym_SEMI] = ACTIONS(2423), - [anon_sym_typedef] = ACTIONS(2421), - [anon_sym_extern] = ACTIONS(2421), - [anon_sym___attribute__] = ACTIONS(2421), - [anon_sym_COLON_COLON] = ACTIONS(2423), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2423), - [anon_sym___declspec] = ACTIONS(2421), - [anon_sym___based] = ACTIONS(2421), - [anon_sym___cdecl] = ACTIONS(2421), - [anon_sym___clrcall] = ACTIONS(2421), - [anon_sym___stdcall] = ACTIONS(2421), - [anon_sym___fastcall] = ACTIONS(2421), - [anon_sym___thiscall] = ACTIONS(2421), - [anon_sym___vectorcall] = ACTIONS(2421), - [anon_sym_LBRACE] = ACTIONS(2423), - [anon_sym_RBRACE] = ACTIONS(2423), - [anon_sym_LBRACK] = ACTIONS(2421), - [anon_sym_static] = ACTIONS(2421), - [anon_sym_register] = ACTIONS(2421), - [anon_sym_inline] = ACTIONS(2421), - [anon_sym_thread_local] = ACTIONS(2421), - [anon_sym_const] = ACTIONS(2421), - [anon_sym_volatile] = ACTIONS(2421), - [anon_sym_restrict] = ACTIONS(2421), - [anon_sym__Atomic] = ACTIONS(2421), - [anon_sym_mutable] = ACTIONS(2421), - [anon_sym_constexpr] = ACTIONS(2421), - [anon_sym_constinit] = ACTIONS(2421), - [anon_sym_consteval] = ACTIONS(2421), - [anon_sym_signed] = ACTIONS(2421), - [anon_sym_unsigned] = ACTIONS(2421), - [anon_sym_long] = ACTIONS(2421), - [anon_sym_short] = ACTIONS(2421), - [sym_primitive_type] = ACTIONS(2421), - [anon_sym_enum] = ACTIONS(2421), - [anon_sym_class] = ACTIONS(2421), - [anon_sym_struct] = ACTIONS(2421), - [anon_sym_union] = ACTIONS(2421), - [anon_sym_if] = ACTIONS(2421), - [anon_sym_else] = ACTIONS(2421), - [anon_sym_switch] = ACTIONS(2421), - [anon_sym_case] = ACTIONS(2421), - [anon_sym_default] = ACTIONS(2421), - [anon_sym_while] = ACTIONS(2421), - [anon_sym_do] = ACTIONS(2421), - [anon_sym_for] = ACTIONS(2421), - [anon_sym_return] = ACTIONS(2421), - [anon_sym_break] = ACTIONS(2421), - [anon_sym_continue] = ACTIONS(2421), - [anon_sym_goto] = ACTIONS(2421), - [anon_sym_DASH_DASH] = ACTIONS(2423), - [anon_sym_PLUS_PLUS] = ACTIONS(2423), - [anon_sym_sizeof] = ACTIONS(2421), - [sym_number_literal] = ACTIONS(2423), - [anon_sym_L_SQUOTE] = ACTIONS(2423), - [anon_sym_u_SQUOTE] = ACTIONS(2423), - [anon_sym_U_SQUOTE] = ACTIONS(2423), - [anon_sym_u8_SQUOTE] = ACTIONS(2423), - [anon_sym_SQUOTE] = ACTIONS(2423), - [anon_sym_L_DQUOTE] = ACTIONS(2423), - [anon_sym_u_DQUOTE] = ACTIONS(2423), - [anon_sym_U_DQUOTE] = ACTIONS(2423), - [anon_sym_u8_DQUOTE] = ACTIONS(2423), - [anon_sym_DQUOTE] = ACTIONS(2423), - [sym_true] = ACTIONS(2421), - [sym_false] = ACTIONS(2421), - [sym_null] = ACTIONS(2421), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2421), - [anon_sym_decltype] = ACTIONS(2421), - [anon_sym_virtual] = ACTIONS(2421), - [anon_sym_explicit] = ACTIONS(2421), - [anon_sym_typename] = ACTIONS(2421), - [anon_sym_template] = ACTIONS(2421), - [anon_sym_operator] = ACTIONS(2421), - [anon_sym_try] = ACTIONS(2421), - [anon_sym_delete] = ACTIONS(2421), - [anon_sym_throw] = ACTIONS(2421), - [anon_sym_namespace] = ACTIONS(2421), - [anon_sym_using] = ACTIONS(2421), - [anon_sym_static_assert] = ACTIONS(2421), - [anon_sym_concept] = ACTIONS(2421), - [anon_sym_co_return] = ACTIONS(2421), - [anon_sym_co_yield] = ACTIONS(2421), - [anon_sym_co_await] = ACTIONS(2421), - [anon_sym_new] = ACTIONS(2421), - [anon_sym_requires] = ACTIONS(2421), - [sym_this] = ACTIONS(2421), - [sym_nullptr] = ACTIONS(2421), - [sym_raw_string_literal] = ACTIONS(2423), - }, - [543] = { - [ts_builtin_sym_end] = ACTIONS(2423), - [sym_identifier] = ACTIONS(2421), - [aux_sym_preproc_include_token1] = ACTIONS(2421), - [aux_sym_preproc_def_token1] = ACTIONS(2421), - [aux_sym_preproc_if_token1] = ACTIONS(2421), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2421), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2421), - [sym_preproc_directive] = ACTIONS(2421), - [anon_sym_LPAREN2] = ACTIONS(2423), - [anon_sym_BANG] = ACTIONS(2423), - [anon_sym_TILDE] = ACTIONS(2423), - [anon_sym_DASH] = ACTIONS(2421), - [anon_sym_PLUS] = ACTIONS(2421), - [anon_sym_STAR] = ACTIONS(2423), - [anon_sym_AMP_AMP] = ACTIONS(2423), - [anon_sym_AMP] = ACTIONS(2421), - [anon_sym_SEMI] = ACTIONS(2423), - [anon_sym_typedef] = ACTIONS(2421), - [anon_sym_extern] = ACTIONS(2421), - [anon_sym___attribute__] = ACTIONS(2421), - [anon_sym_COLON_COLON] = ACTIONS(2423), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2423), - [anon_sym___declspec] = ACTIONS(2421), - [anon_sym___based] = ACTIONS(2421), - [anon_sym___cdecl] = ACTIONS(2421), - [anon_sym___clrcall] = ACTIONS(2421), - [anon_sym___stdcall] = ACTIONS(2421), - [anon_sym___fastcall] = ACTIONS(2421), - [anon_sym___thiscall] = ACTIONS(2421), - [anon_sym___vectorcall] = ACTIONS(2421), - [anon_sym_LBRACE] = ACTIONS(2423), - [anon_sym_LBRACK] = ACTIONS(2421), - [anon_sym_static] = ACTIONS(2421), - [anon_sym_register] = ACTIONS(2421), - [anon_sym_inline] = ACTIONS(2421), - [anon_sym_thread_local] = ACTIONS(2421), - [anon_sym_const] = ACTIONS(2421), - [anon_sym_volatile] = ACTIONS(2421), - [anon_sym_restrict] = ACTIONS(2421), - [anon_sym__Atomic] = ACTIONS(2421), - [anon_sym_mutable] = ACTIONS(2421), - [anon_sym_constexpr] = ACTIONS(2421), - [anon_sym_constinit] = ACTIONS(2421), - [anon_sym_consteval] = ACTIONS(2421), - [anon_sym_signed] = ACTIONS(2421), - [anon_sym_unsigned] = ACTIONS(2421), - [anon_sym_long] = ACTIONS(2421), - [anon_sym_short] = ACTIONS(2421), - [sym_primitive_type] = ACTIONS(2421), - [anon_sym_enum] = ACTIONS(2421), - [anon_sym_class] = ACTIONS(2421), - [anon_sym_struct] = ACTIONS(2421), - [anon_sym_union] = ACTIONS(2421), - [anon_sym_if] = ACTIONS(2421), - [anon_sym_else] = ACTIONS(2421), - [anon_sym_switch] = ACTIONS(2421), - [anon_sym_case] = ACTIONS(2421), - [anon_sym_default] = ACTIONS(2421), - [anon_sym_while] = ACTIONS(2421), - [anon_sym_do] = ACTIONS(2421), - [anon_sym_for] = ACTIONS(2421), - [anon_sym_return] = ACTIONS(2421), - [anon_sym_break] = ACTIONS(2421), - [anon_sym_continue] = ACTIONS(2421), - [anon_sym_goto] = ACTIONS(2421), - [anon_sym_DASH_DASH] = ACTIONS(2423), - [anon_sym_PLUS_PLUS] = ACTIONS(2423), - [anon_sym_sizeof] = ACTIONS(2421), - [sym_number_literal] = ACTIONS(2423), - [anon_sym_L_SQUOTE] = ACTIONS(2423), - [anon_sym_u_SQUOTE] = ACTIONS(2423), - [anon_sym_U_SQUOTE] = ACTIONS(2423), - [anon_sym_u8_SQUOTE] = ACTIONS(2423), - [anon_sym_SQUOTE] = ACTIONS(2423), - [anon_sym_L_DQUOTE] = ACTIONS(2423), - [anon_sym_u_DQUOTE] = ACTIONS(2423), - [anon_sym_U_DQUOTE] = ACTIONS(2423), - [anon_sym_u8_DQUOTE] = ACTIONS(2423), - [anon_sym_DQUOTE] = ACTIONS(2423), - [sym_true] = ACTIONS(2421), - [sym_false] = ACTIONS(2421), - [sym_null] = ACTIONS(2421), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2421), - [anon_sym_decltype] = ACTIONS(2421), - [anon_sym_virtual] = ACTIONS(2421), - [anon_sym_explicit] = ACTIONS(2421), - [anon_sym_typename] = ACTIONS(2421), - [anon_sym_template] = ACTIONS(2421), - [anon_sym_operator] = ACTIONS(2421), - [anon_sym_try] = ACTIONS(2421), - [anon_sym_delete] = ACTIONS(2421), - [anon_sym_throw] = ACTIONS(2421), - [anon_sym_namespace] = ACTIONS(2421), - [anon_sym_using] = ACTIONS(2421), - [anon_sym_static_assert] = ACTIONS(2421), - [anon_sym_concept] = ACTIONS(2421), - [anon_sym_co_return] = ACTIONS(2421), - [anon_sym_co_yield] = ACTIONS(2421), - [anon_sym_co_await] = ACTIONS(2421), - [anon_sym_new] = ACTIONS(2421), - [anon_sym_requires] = ACTIONS(2421), - [sym_this] = ACTIONS(2421), - [sym_nullptr] = ACTIONS(2421), - [sym_raw_string_literal] = ACTIONS(2423), - }, - [544] = { - [sym_identifier] = ACTIONS(2387), - [aux_sym_preproc_include_token1] = ACTIONS(2387), - [aux_sym_preproc_def_token1] = ACTIONS(2387), - [aux_sym_preproc_if_token1] = ACTIONS(2387), - [aux_sym_preproc_if_token2] = ACTIONS(2387), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2387), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2387), - [sym_preproc_directive] = ACTIONS(2387), - [anon_sym_LPAREN2] = ACTIONS(2389), - [anon_sym_BANG] = ACTIONS(2389), - [anon_sym_TILDE] = ACTIONS(2389), - [anon_sym_DASH] = ACTIONS(2387), - [anon_sym_PLUS] = ACTIONS(2387), - [anon_sym_STAR] = ACTIONS(2389), - [anon_sym_AMP_AMP] = ACTIONS(2389), - [anon_sym_AMP] = ACTIONS(2387), - [anon_sym_SEMI] = ACTIONS(2389), - [anon_sym_typedef] = ACTIONS(2387), - [anon_sym_extern] = ACTIONS(2387), - [anon_sym___attribute__] = ACTIONS(2387), - [anon_sym_COLON_COLON] = ACTIONS(2389), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2389), - [anon_sym___declspec] = ACTIONS(2387), - [anon_sym___based] = ACTIONS(2387), - [anon_sym___cdecl] = ACTIONS(2387), - [anon_sym___clrcall] = ACTIONS(2387), - [anon_sym___stdcall] = ACTIONS(2387), - [anon_sym___fastcall] = ACTIONS(2387), - [anon_sym___thiscall] = ACTIONS(2387), - [anon_sym___vectorcall] = ACTIONS(2387), - [anon_sym_LBRACE] = ACTIONS(2389), - [anon_sym_LBRACK] = ACTIONS(2387), - [anon_sym_static] = ACTIONS(2387), - [anon_sym_register] = ACTIONS(2387), - [anon_sym_inline] = ACTIONS(2387), - [anon_sym_thread_local] = ACTIONS(2387), - [anon_sym_const] = ACTIONS(2387), - [anon_sym_volatile] = ACTIONS(2387), - [anon_sym_restrict] = ACTIONS(2387), - [anon_sym__Atomic] = ACTIONS(2387), - [anon_sym_mutable] = ACTIONS(2387), - [anon_sym_constexpr] = ACTIONS(2387), - [anon_sym_constinit] = ACTIONS(2387), - [anon_sym_consteval] = ACTIONS(2387), - [anon_sym_signed] = ACTIONS(2387), - [anon_sym_unsigned] = ACTIONS(2387), - [anon_sym_long] = ACTIONS(2387), - [anon_sym_short] = ACTIONS(2387), - [sym_primitive_type] = ACTIONS(2387), - [anon_sym_enum] = ACTIONS(2387), - [anon_sym_class] = ACTIONS(2387), - [anon_sym_struct] = ACTIONS(2387), - [anon_sym_union] = ACTIONS(2387), - [anon_sym_if] = ACTIONS(2387), - [anon_sym_else] = ACTIONS(2387), - [anon_sym_switch] = ACTIONS(2387), - [anon_sym_case] = ACTIONS(2387), - [anon_sym_default] = ACTIONS(2387), - [anon_sym_while] = ACTIONS(2387), - [anon_sym_do] = ACTIONS(2387), - [anon_sym_for] = ACTIONS(2387), - [anon_sym_return] = ACTIONS(2387), - [anon_sym_break] = ACTIONS(2387), - [anon_sym_continue] = ACTIONS(2387), - [anon_sym_goto] = ACTIONS(2387), - [anon_sym_DASH_DASH] = ACTIONS(2389), - [anon_sym_PLUS_PLUS] = ACTIONS(2389), - [anon_sym_sizeof] = ACTIONS(2387), - [sym_number_literal] = ACTIONS(2389), - [anon_sym_L_SQUOTE] = ACTIONS(2389), - [anon_sym_u_SQUOTE] = ACTIONS(2389), - [anon_sym_U_SQUOTE] = ACTIONS(2389), - [anon_sym_u8_SQUOTE] = ACTIONS(2389), - [anon_sym_SQUOTE] = ACTIONS(2389), - [anon_sym_L_DQUOTE] = ACTIONS(2389), - [anon_sym_u_DQUOTE] = ACTIONS(2389), - [anon_sym_U_DQUOTE] = ACTIONS(2389), - [anon_sym_u8_DQUOTE] = ACTIONS(2389), - [anon_sym_DQUOTE] = ACTIONS(2389), - [sym_true] = ACTIONS(2387), - [sym_false] = ACTIONS(2387), - [sym_null] = ACTIONS(2387), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2387), - [anon_sym_decltype] = ACTIONS(2387), - [anon_sym_virtual] = ACTIONS(2387), - [anon_sym_explicit] = ACTIONS(2387), - [anon_sym_typename] = ACTIONS(2387), - [anon_sym_template] = ACTIONS(2387), - [anon_sym_operator] = ACTIONS(2387), - [anon_sym_try] = ACTIONS(2387), - [anon_sym_delete] = ACTIONS(2387), - [anon_sym_throw] = ACTIONS(2387), - [anon_sym_namespace] = ACTIONS(2387), - [anon_sym_using] = ACTIONS(2387), - [anon_sym_static_assert] = ACTIONS(2387), - [anon_sym_concept] = ACTIONS(2387), - [anon_sym_co_return] = ACTIONS(2387), - [anon_sym_co_yield] = ACTIONS(2387), - [anon_sym_co_await] = ACTIONS(2387), - [anon_sym_new] = ACTIONS(2387), - [anon_sym_requires] = ACTIONS(2387), - [sym_this] = ACTIONS(2387), - [sym_nullptr] = ACTIONS(2387), - [sym_raw_string_literal] = ACTIONS(2389), - }, - [545] = { - [sym_identifier] = ACTIONS(2371), - [aux_sym_preproc_include_token1] = ACTIONS(2371), - [aux_sym_preproc_def_token1] = ACTIONS(2371), - [aux_sym_preproc_if_token1] = ACTIONS(2371), - [aux_sym_preproc_if_token2] = ACTIONS(2371), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2371), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2371), - [sym_preproc_directive] = ACTIONS(2371), - [anon_sym_LPAREN2] = ACTIONS(2373), - [anon_sym_BANG] = ACTIONS(2373), - [anon_sym_TILDE] = ACTIONS(2373), - [anon_sym_DASH] = ACTIONS(2371), - [anon_sym_PLUS] = ACTIONS(2371), - [anon_sym_STAR] = ACTIONS(2373), - [anon_sym_AMP_AMP] = ACTIONS(2373), - [anon_sym_AMP] = ACTIONS(2371), - [anon_sym_SEMI] = ACTIONS(2373), - [anon_sym_typedef] = ACTIONS(2371), - [anon_sym_extern] = ACTIONS(2371), - [anon_sym___attribute__] = ACTIONS(2371), - [anon_sym_COLON_COLON] = ACTIONS(2373), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2373), - [anon_sym___declspec] = ACTIONS(2371), - [anon_sym___based] = ACTIONS(2371), - [anon_sym___cdecl] = ACTIONS(2371), - [anon_sym___clrcall] = ACTIONS(2371), - [anon_sym___stdcall] = ACTIONS(2371), - [anon_sym___fastcall] = ACTIONS(2371), - [anon_sym___thiscall] = ACTIONS(2371), - [anon_sym___vectorcall] = ACTIONS(2371), - [anon_sym_LBRACE] = ACTIONS(2373), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_static] = ACTIONS(2371), - [anon_sym_register] = ACTIONS(2371), - [anon_sym_inline] = ACTIONS(2371), - [anon_sym_thread_local] = ACTIONS(2371), - [anon_sym_const] = ACTIONS(2371), - [anon_sym_volatile] = ACTIONS(2371), - [anon_sym_restrict] = ACTIONS(2371), - [anon_sym__Atomic] = ACTIONS(2371), - [anon_sym_mutable] = ACTIONS(2371), - [anon_sym_constexpr] = ACTIONS(2371), - [anon_sym_constinit] = ACTIONS(2371), - [anon_sym_consteval] = ACTIONS(2371), - [anon_sym_signed] = ACTIONS(2371), - [anon_sym_unsigned] = ACTIONS(2371), - [anon_sym_long] = ACTIONS(2371), - [anon_sym_short] = ACTIONS(2371), - [sym_primitive_type] = ACTIONS(2371), - [anon_sym_enum] = ACTIONS(2371), - [anon_sym_class] = ACTIONS(2371), - [anon_sym_struct] = ACTIONS(2371), - [anon_sym_union] = ACTIONS(2371), - [anon_sym_if] = ACTIONS(2371), - [anon_sym_else] = ACTIONS(2371), - [anon_sym_switch] = ACTIONS(2371), - [anon_sym_case] = ACTIONS(2371), - [anon_sym_default] = ACTIONS(2371), - [anon_sym_while] = ACTIONS(2371), - [anon_sym_do] = ACTIONS(2371), - [anon_sym_for] = ACTIONS(2371), - [anon_sym_return] = ACTIONS(2371), - [anon_sym_break] = ACTIONS(2371), - [anon_sym_continue] = ACTIONS(2371), - [anon_sym_goto] = ACTIONS(2371), - [anon_sym_DASH_DASH] = ACTIONS(2373), - [anon_sym_PLUS_PLUS] = ACTIONS(2373), - [anon_sym_sizeof] = ACTIONS(2371), - [sym_number_literal] = ACTIONS(2373), - [anon_sym_L_SQUOTE] = ACTIONS(2373), - [anon_sym_u_SQUOTE] = ACTIONS(2373), - [anon_sym_U_SQUOTE] = ACTIONS(2373), - [anon_sym_u8_SQUOTE] = ACTIONS(2373), - [anon_sym_SQUOTE] = ACTIONS(2373), - [anon_sym_L_DQUOTE] = ACTIONS(2373), - [anon_sym_u_DQUOTE] = ACTIONS(2373), - [anon_sym_U_DQUOTE] = ACTIONS(2373), - [anon_sym_u8_DQUOTE] = ACTIONS(2373), - [anon_sym_DQUOTE] = ACTIONS(2373), - [sym_true] = ACTIONS(2371), - [sym_false] = ACTIONS(2371), - [sym_null] = ACTIONS(2371), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2371), - [anon_sym_decltype] = ACTIONS(2371), - [anon_sym_virtual] = ACTIONS(2371), - [anon_sym_explicit] = ACTIONS(2371), - [anon_sym_typename] = ACTIONS(2371), - [anon_sym_template] = ACTIONS(2371), - [anon_sym_operator] = ACTIONS(2371), - [anon_sym_try] = ACTIONS(2371), - [anon_sym_delete] = ACTIONS(2371), - [anon_sym_throw] = ACTIONS(2371), - [anon_sym_namespace] = ACTIONS(2371), - [anon_sym_using] = ACTIONS(2371), - [anon_sym_static_assert] = ACTIONS(2371), - [anon_sym_concept] = ACTIONS(2371), - [anon_sym_co_return] = ACTIONS(2371), - [anon_sym_co_yield] = ACTIONS(2371), - [anon_sym_co_await] = ACTIONS(2371), - [anon_sym_new] = ACTIONS(2371), - [anon_sym_requires] = ACTIONS(2371), - [sym_this] = ACTIONS(2371), - [sym_nullptr] = ACTIONS(2371), - [sym_raw_string_literal] = ACTIONS(2373), - }, - [546] = { - [ts_builtin_sym_end] = ACTIONS(2349), - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [547] = { - [ts_builtin_sym_end] = ACTIONS(2493), - [sym_identifier] = ACTIONS(2491), - [aux_sym_preproc_include_token1] = ACTIONS(2491), - [aux_sym_preproc_def_token1] = ACTIONS(2491), - [aux_sym_preproc_if_token1] = ACTIONS(2491), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2491), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2491), - [sym_preproc_directive] = ACTIONS(2491), - [anon_sym_LPAREN2] = ACTIONS(2493), - [anon_sym_BANG] = ACTIONS(2493), - [anon_sym_TILDE] = ACTIONS(2493), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_STAR] = ACTIONS(2493), - [anon_sym_AMP_AMP] = ACTIONS(2493), - [anon_sym_AMP] = ACTIONS(2491), - [anon_sym_SEMI] = ACTIONS(2493), - [anon_sym_typedef] = ACTIONS(2491), - [anon_sym_extern] = ACTIONS(2491), - [anon_sym___attribute__] = ACTIONS(2491), - [anon_sym_COLON_COLON] = ACTIONS(2493), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2493), - [anon_sym___declspec] = ACTIONS(2491), - [anon_sym___based] = ACTIONS(2491), - [anon_sym___cdecl] = ACTIONS(2491), - [anon_sym___clrcall] = ACTIONS(2491), - [anon_sym___stdcall] = ACTIONS(2491), - [anon_sym___fastcall] = ACTIONS(2491), - [anon_sym___thiscall] = ACTIONS(2491), - [anon_sym___vectorcall] = ACTIONS(2491), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_LBRACK] = ACTIONS(2491), - [anon_sym_static] = ACTIONS(2491), - [anon_sym_register] = ACTIONS(2491), - [anon_sym_inline] = ACTIONS(2491), - [anon_sym_thread_local] = ACTIONS(2491), - [anon_sym_const] = ACTIONS(2491), - [anon_sym_volatile] = ACTIONS(2491), - [anon_sym_restrict] = ACTIONS(2491), - [anon_sym__Atomic] = ACTIONS(2491), - [anon_sym_mutable] = ACTIONS(2491), - [anon_sym_constexpr] = ACTIONS(2491), - [anon_sym_constinit] = ACTIONS(2491), - [anon_sym_consteval] = ACTIONS(2491), - [anon_sym_signed] = ACTIONS(2491), - [anon_sym_unsigned] = ACTIONS(2491), - [anon_sym_long] = ACTIONS(2491), - [anon_sym_short] = ACTIONS(2491), - [sym_primitive_type] = ACTIONS(2491), - [anon_sym_enum] = ACTIONS(2491), - [anon_sym_class] = ACTIONS(2491), - [anon_sym_struct] = ACTIONS(2491), - [anon_sym_union] = ACTIONS(2491), - [anon_sym_if] = ACTIONS(2491), - [anon_sym_else] = ACTIONS(2491), - [anon_sym_switch] = ACTIONS(2491), - [anon_sym_case] = ACTIONS(2491), - [anon_sym_default] = ACTIONS(2491), - [anon_sym_while] = ACTIONS(2491), - [anon_sym_do] = ACTIONS(2491), - [anon_sym_for] = ACTIONS(2491), - [anon_sym_return] = ACTIONS(2491), - [anon_sym_break] = ACTIONS(2491), - [anon_sym_continue] = ACTIONS(2491), - [anon_sym_goto] = ACTIONS(2491), - [anon_sym_DASH_DASH] = ACTIONS(2493), - [anon_sym_PLUS_PLUS] = ACTIONS(2493), - [anon_sym_sizeof] = ACTIONS(2491), - [sym_number_literal] = ACTIONS(2493), - [anon_sym_L_SQUOTE] = ACTIONS(2493), - [anon_sym_u_SQUOTE] = ACTIONS(2493), - [anon_sym_U_SQUOTE] = ACTIONS(2493), - [anon_sym_u8_SQUOTE] = ACTIONS(2493), - [anon_sym_SQUOTE] = ACTIONS(2493), - [anon_sym_L_DQUOTE] = ACTIONS(2493), - [anon_sym_u_DQUOTE] = ACTIONS(2493), - [anon_sym_U_DQUOTE] = ACTIONS(2493), - [anon_sym_u8_DQUOTE] = ACTIONS(2493), - [anon_sym_DQUOTE] = ACTIONS(2493), - [sym_true] = ACTIONS(2491), - [sym_false] = ACTIONS(2491), - [sym_null] = ACTIONS(2491), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2491), - [anon_sym_decltype] = ACTIONS(2491), - [anon_sym_virtual] = ACTIONS(2491), - [anon_sym_explicit] = ACTIONS(2491), - [anon_sym_typename] = ACTIONS(2491), - [anon_sym_template] = ACTIONS(2491), - [anon_sym_operator] = ACTIONS(2491), - [anon_sym_try] = ACTIONS(2491), - [anon_sym_delete] = ACTIONS(2491), - [anon_sym_throw] = ACTIONS(2491), - [anon_sym_namespace] = ACTIONS(2491), - [anon_sym_using] = ACTIONS(2491), - [anon_sym_static_assert] = ACTIONS(2491), - [anon_sym_concept] = ACTIONS(2491), - [anon_sym_co_return] = ACTIONS(2491), - [anon_sym_co_yield] = ACTIONS(2491), - [anon_sym_co_await] = ACTIONS(2491), - [anon_sym_new] = ACTIONS(2491), - [anon_sym_requires] = ACTIONS(2491), - [sym_this] = ACTIONS(2491), - [sym_nullptr] = ACTIONS(2491), - [sym_raw_string_literal] = ACTIONS(2493), - }, - [548] = { - [ts_builtin_sym_end] = ACTIONS(2349), - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [549] = { - [ts_builtin_sym_end] = ACTIONS(2349), - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [550] = { - [ts_builtin_sym_end] = ACTIONS(2349), - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [551] = { - [ts_builtin_sym_end] = ACTIONS(2349), - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), + [450] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token2] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [aux_sym_preproc_else_token1] = ACTIONS(2595), + [aux_sym_preproc_elif_token1] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [552] = { - [ts_builtin_sym_end] = ACTIONS(2349), - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), + [451] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token2] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [aux_sym_preproc_else_token1] = ACTIONS(2595), + [aux_sym_preproc_elif_token1] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [553] = { - [ts_builtin_sym_end] = ACTIONS(2349), - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), + [452] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token2] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [aux_sym_preproc_else_token1] = ACTIONS(2595), + [aux_sym_preproc_elif_token1] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [554] = { - [ts_builtin_sym_end] = ACTIONS(2349), - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), + [453] = { + [sym_identifier] = ACTIONS(2599), + [aux_sym_preproc_include_token1] = ACTIONS(2599), + [aux_sym_preproc_def_token1] = ACTIONS(2599), + [aux_sym_preproc_if_token1] = ACTIONS(2599), + [aux_sym_preproc_if_token2] = ACTIONS(2599), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2599), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2599), + [aux_sym_preproc_else_token1] = ACTIONS(2599), + [aux_sym_preproc_elif_token1] = ACTIONS(2599), + [sym_preproc_directive] = ACTIONS(2599), + [anon_sym_LPAREN2] = ACTIONS(2601), + [anon_sym_BANG] = ACTIONS(2601), + [anon_sym_TILDE] = ACTIONS(2601), + [anon_sym_DASH] = ACTIONS(2599), + [anon_sym_PLUS] = ACTIONS(2599), + [anon_sym_STAR] = ACTIONS(2601), + [anon_sym_AMP_AMP] = ACTIONS(2601), + [anon_sym_AMP] = ACTIONS(2599), + [anon_sym_SEMI] = ACTIONS(2601), + [anon_sym_typedef] = ACTIONS(2599), + [anon_sym_extern] = ACTIONS(2599), + [anon_sym___attribute__] = ACTIONS(2599), + [anon_sym_COLON_COLON] = ACTIONS(2601), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2601), + [anon_sym___declspec] = ACTIONS(2599), + [anon_sym___based] = ACTIONS(2599), + [anon_sym___cdecl] = ACTIONS(2599), + [anon_sym___clrcall] = ACTIONS(2599), + [anon_sym___stdcall] = ACTIONS(2599), + [anon_sym___fastcall] = ACTIONS(2599), + [anon_sym___thiscall] = ACTIONS(2599), + [anon_sym___vectorcall] = ACTIONS(2599), + [anon_sym_LBRACE] = ACTIONS(2601), + [anon_sym_LBRACK] = ACTIONS(2599), + [anon_sym_static] = ACTIONS(2599), + [anon_sym_register] = ACTIONS(2599), + [anon_sym_inline] = ACTIONS(2599), + [anon_sym_thread_local] = ACTIONS(2599), + [anon_sym_const] = ACTIONS(2599), + [anon_sym_volatile] = ACTIONS(2599), + [anon_sym_restrict] = ACTIONS(2599), + [anon_sym__Atomic] = ACTIONS(2599), + [anon_sym_mutable] = ACTIONS(2599), + [anon_sym_constexpr] = ACTIONS(2599), + [anon_sym_constinit] = ACTIONS(2599), + [anon_sym_consteval] = ACTIONS(2599), + [anon_sym_signed] = ACTIONS(2599), + [anon_sym_unsigned] = ACTIONS(2599), + [anon_sym_long] = ACTIONS(2599), + [anon_sym_short] = ACTIONS(2599), + [sym_primitive_type] = ACTIONS(2599), + [anon_sym_enum] = ACTIONS(2599), + [anon_sym_class] = ACTIONS(2599), + [anon_sym_struct] = ACTIONS(2599), + [anon_sym_union] = ACTIONS(2599), + [anon_sym_if] = ACTIONS(2599), + [anon_sym_else] = ACTIONS(2599), + [anon_sym_switch] = ACTIONS(2599), + [anon_sym_case] = ACTIONS(2599), + [anon_sym_default] = ACTIONS(2599), + [anon_sym_while] = ACTIONS(2599), + [anon_sym_do] = ACTIONS(2599), + [anon_sym_for] = ACTIONS(2599), + [anon_sym_return] = ACTIONS(2599), + [anon_sym_break] = ACTIONS(2599), + [anon_sym_continue] = ACTIONS(2599), + [anon_sym_goto] = ACTIONS(2599), + [anon_sym_not] = ACTIONS(2599), + [anon_sym_compl] = ACTIONS(2599), + [anon_sym_DASH_DASH] = ACTIONS(2601), + [anon_sym_PLUS_PLUS] = ACTIONS(2601), + [anon_sym_sizeof] = ACTIONS(2599), + [sym_number_literal] = ACTIONS(2601), + [anon_sym_L_SQUOTE] = ACTIONS(2601), + [anon_sym_u_SQUOTE] = ACTIONS(2601), + [anon_sym_U_SQUOTE] = ACTIONS(2601), + [anon_sym_u8_SQUOTE] = ACTIONS(2601), + [anon_sym_SQUOTE] = ACTIONS(2601), + [anon_sym_L_DQUOTE] = ACTIONS(2601), + [anon_sym_u_DQUOTE] = ACTIONS(2601), + [anon_sym_U_DQUOTE] = ACTIONS(2601), + [anon_sym_u8_DQUOTE] = ACTIONS(2601), + [anon_sym_DQUOTE] = ACTIONS(2601), + [sym_true] = ACTIONS(2599), + [sym_false] = ACTIONS(2599), + [sym_null] = ACTIONS(2599), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2599), + [anon_sym_decltype] = ACTIONS(2599), + [anon_sym_virtual] = ACTIONS(2599), + [anon_sym_explicit] = ACTIONS(2599), + [anon_sym_typename] = ACTIONS(2599), + [anon_sym_template] = ACTIONS(2599), + [anon_sym_operator] = ACTIONS(2599), + [anon_sym_try] = ACTIONS(2599), + [anon_sym_delete] = ACTIONS(2599), + [anon_sym_throw] = ACTIONS(2599), + [anon_sym_namespace] = ACTIONS(2599), + [anon_sym_using] = ACTIONS(2599), + [anon_sym_static_assert] = ACTIONS(2599), + [anon_sym_concept] = ACTIONS(2599), + [anon_sym_co_return] = ACTIONS(2599), + [anon_sym_co_yield] = ACTIONS(2599), + [anon_sym_co_await] = ACTIONS(2599), + [anon_sym_new] = ACTIONS(2599), + [anon_sym_requires] = ACTIONS(2599), + [sym_this] = ACTIONS(2599), + [sym_nullptr] = ACTIONS(2599), + [sym_raw_string_literal] = ACTIONS(2601), }, - [555] = { - [ts_builtin_sym_end] = ACTIONS(2349), - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), + [454] = { + [sym_identifier] = ACTIONS(2603), + [aux_sym_preproc_include_token1] = ACTIONS(2603), + [aux_sym_preproc_def_token1] = ACTIONS(2603), + [aux_sym_preproc_if_token1] = ACTIONS(2603), + [aux_sym_preproc_if_token2] = ACTIONS(2603), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2603), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2603), + [aux_sym_preproc_else_token1] = ACTIONS(2603), + [aux_sym_preproc_elif_token1] = ACTIONS(2603), + [sym_preproc_directive] = ACTIONS(2603), + [anon_sym_LPAREN2] = ACTIONS(2605), + [anon_sym_BANG] = ACTIONS(2605), + [anon_sym_TILDE] = ACTIONS(2605), + [anon_sym_DASH] = ACTIONS(2603), + [anon_sym_PLUS] = ACTIONS(2603), + [anon_sym_STAR] = ACTIONS(2605), + [anon_sym_AMP_AMP] = ACTIONS(2605), + [anon_sym_AMP] = ACTIONS(2603), + [anon_sym_SEMI] = ACTIONS(2605), + [anon_sym_typedef] = ACTIONS(2603), + [anon_sym_extern] = ACTIONS(2603), + [anon_sym___attribute__] = ACTIONS(2603), + [anon_sym_COLON_COLON] = ACTIONS(2605), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2605), + [anon_sym___declspec] = ACTIONS(2603), + [anon_sym___based] = ACTIONS(2603), + [anon_sym___cdecl] = ACTIONS(2603), + [anon_sym___clrcall] = ACTIONS(2603), + [anon_sym___stdcall] = ACTIONS(2603), + [anon_sym___fastcall] = ACTIONS(2603), + [anon_sym___thiscall] = ACTIONS(2603), + [anon_sym___vectorcall] = ACTIONS(2603), + [anon_sym_LBRACE] = ACTIONS(2605), + [anon_sym_LBRACK] = ACTIONS(2603), + [anon_sym_static] = ACTIONS(2603), + [anon_sym_register] = ACTIONS(2603), + [anon_sym_inline] = ACTIONS(2603), + [anon_sym_thread_local] = ACTIONS(2603), + [anon_sym_const] = ACTIONS(2603), + [anon_sym_volatile] = ACTIONS(2603), + [anon_sym_restrict] = ACTIONS(2603), + [anon_sym__Atomic] = ACTIONS(2603), + [anon_sym_mutable] = ACTIONS(2603), + [anon_sym_constexpr] = ACTIONS(2603), + [anon_sym_constinit] = ACTIONS(2603), + [anon_sym_consteval] = ACTIONS(2603), + [anon_sym_signed] = ACTIONS(2603), + [anon_sym_unsigned] = ACTIONS(2603), + [anon_sym_long] = ACTIONS(2603), + [anon_sym_short] = ACTIONS(2603), + [sym_primitive_type] = ACTIONS(2603), + [anon_sym_enum] = ACTIONS(2603), + [anon_sym_class] = ACTIONS(2603), + [anon_sym_struct] = ACTIONS(2603), + [anon_sym_union] = ACTIONS(2603), + [anon_sym_if] = ACTIONS(2603), + [anon_sym_else] = ACTIONS(2603), + [anon_sym_switch] = ACTIONS(2603), + [anon_sym_case] = ACTIONS(2603), + [anon_sym_default] = ACTIONS(2603), + [anon_sym_while] = ACTIONS(2603), + [anon_sym_do] = ACTIONS(2603), + [anon_sym_for] = ACTIONS(2603), + [anon_sym_return] = ACTIONS(2603), + [anon_sym_break] = ACTIONS(2603), + [anon_sym_continue] = ACTIONS(2603), + [anon_sym_goto] = ACTIONS(2603), + [anon_sym_not] = ACTIONS(2603), + [anon_sym_compl] = ACTIONS(2603), + [anon_sym_DASH_DASH] = ACTIONS(2605), + [anon_sym_PLUS_PLUS] = ACTIONS(2605), + [anon_sym_sizeof] = ACTIONS(2603), + [sym_number_literal] = ACTIONS(2605), + [anon_sym_L_SQUOTE] = ACTIONS(2605), + [anon_sym_u_SQUOTE] = ACTIONS(2605), + [anon_sym_U_SQUOTE] = ACTIONS(2605), + [anon_sym_u8_SQUOTE] = ACTIONS(2605), + [anon_sym_SQUOTE] = ACTIONS(2605), + [anon_sym_L_DQUOTE] = ACTIONS(2605), + [anon_sym_u_DQUOTE] = ACTIONS(2605), + [anon_sym_U_DQUOTE] = ACTIONS(2605), + [anon_sym_u8_DQUOTE] = ACTIONS(2605), + [anon_sym_DQUOTE] = ACTIONS(2605), + [sym_true] = ACTIONS(2603), + [sym_false] = ACTIONS(2603), + [sym_null] = ACTIONS(2603), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2603), + [anon_sym_decltype] = ACTIONS(2603), + [anon_sym_virtual] = ACTIONS(2603), + [anon_sym_explicit] = ACTIONS(2603), + [anon_sym_typename] = ACTIONS(2603), + [anon_sym_template] = ACTIONS(2603), + [anon_sym_operator] = ACTIONS(2603), + [anon_sym_try] = ACTIONS(2603), + [anon_sym_delete] = ACTIONS(2603), + [anon_sym_throw] = ACTIONS(2603), + [anon_sym_namespace] = ACTIONS(2603), + [anon_sym_using] = ACTIONS(2603), + [anon_sym_static_assert] = ACTIONS(2603), + [anon_sym_concept] = ACTIONS(2603), + [anon_sym_co_return] = ACTIONS(2603), + [anon_sym_co_yield] = ACTIONS(2603), + [anon_sym_co_await] = ACTIONS(2603), + [anon_sym_new] = ACTIONS(2603), + [anon_sym_requires] = ACTIONS(2603), + [sym_this] = ACTIONS(2603), + [sym_nullptr] = ACTIONS(2603), + [sym_raw_string_literal] = ACTIONS(2605), }, - [556] = { - [ts_builtin_sym_end] = ACTIONS(2349), - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), + [455] = { + [sym_identifier] = ACTIONS(2607), + [aux_sym_preproc_include_token1] = ACTIONS(2607), + [aux_sym_preproc_def_token1] = ACTIONS(2607), + [aux_sym_preproc_if_token1] = ACTIONS(2607), + [aux_sym_preproc_if_token2] = ACTIONS(2607), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2607), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2607), + [aux_sym_preproc_else_token1] = ACTIONS(2607), + [aux_sym_preproc_elif_token1] = ACTIONS(2607), + [sym_preproc_directive] = ACTIONS(2607), + [anon_sym_LPAREN2] = ACTIONS(2609), + [anon_sym_BANG] = ACTIONS(2609), + [anon_sym_TILDE] = ACTIONS(2609), + [anon_sym_DASH] = ACTIONS(2607), + [anon_sym_PLUS] = ACTIONS(2607), + [anon_sym_STAR] = ACTIONS(2609), + [anon_sym_AMP_AMP] = ACTIONS(2609), + [anon_sym_AMP] = ACTIONS(2607), + [anon_sym_SEMI] = ACTIONS(2609), + [anon_sym_typedef] = ACTIONS(2607), + [anon_sym_extern] = ACTIONS(2607), + [anon_sym___attribute__] = ACTIONS(2607), + [anon_sym_COLON_COLON] = ACTIONS(2609), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2609), + [anon_sym___declspec] = ACTIONS(2607), + [anon_sym___based] = ACTIONS(2607), + [anon_sym___cdecl] = ACTIONS(2607), + [anon_sym___clrcall] = ACTIONS(2607), + [anon_sym___stdcall] = ACTIONS(2607), + [anon_sym___fastcall] = ACTIONS(2607), + [anon_sym___thiscall] = ACTIONS(2607), + [anon_sym___vectorcall] = ACTIONS(2607), + [anon_sym_LBRACE] = ACTIONS(2609), + [anon_sym_LBRACK] = ACTIONS(2607), + [anon_sym_static] = ACTIONS(2607), + [anon_sym_register] = ACTIONS(2607), + [anon_sym_inline] = ACTIONS(2607), + [anon_sym_thread_local] = ACTIONS(2607), + [anon_sym_const] = ACTIONS(2607), + [anon_sym_volatile] = ACTIONS(2607), + [anon_sym_restrict] = ACTIONS(2607), + [anon_sym__Atomic] = ACTIONS(2607), + [anon_sym_mutable] = ACTIONS(2607), + [anon_sym_constexpr] = ACTIONS(2607), + [anon_sym_constinit] = ACTIONS(2607), + [anon_sym_consteval] = ACTIONS(2607), + [anon_sym_signed] = ACTIONS(2607), + [anon_sym_unsigned] = ACTIONS(2607), + [anon_sym_long] = ACTIONS(2607), + [anon_sym_short] = ACTIONS(2607), + [sym_primitive_type] = ACTIONS(2607), + [anon_sym_enum] = ACTIONS(2607), + [anon_sym_class] = ACTIONS(2607), + [anon_sym_struct] = ACTIONS(2607), + [anon_sym_union] = ACTIONS(2607), + [anon_sym_if] = ACTIONS(2607), + [anon_sym_else] = ACTIONS(2607), + [anon_sym_switch] = ACTIONS(2607), + [anon_sym_case] = ACTIONS(2607), + [anon_sym_default] = ACTIONS(2607), + [anon_sym_while] = ACTIONS(2607), + [anon_sym_do] = ACTIONS(2607), + [anon_sym_for] = ACTIONS(2607), + [anon_sym_return] = ACTIONS(2607), + [anon_sym_break] = ACTIONS(2607), + [anon_sym_continue] = ACTIONS(2607), + [anon_sym_goto] = ACTIONS(2607), + [anon_sym_not] = ACTIONS(2607), + [anon_sym_compl] = ACTIONS(2607), + [anon_sym_DASH_DASH] = ACTIONS(2609), + [anon_sym_PLUS_PLUS] = ACTIONS(2609), + [anon_sym_sizeof] = ACTIONS(2607), + [sym_number_literal] = ACTIONS(2609), + [anon_sym_L_SQUOTE] = ACTIONS(2609), + [anon_sym_u_SQUOTE] = ACTIONS(2609), + [anon_sym_U_SQUOTE] = ACTIONS(2609), + [anon_sym_u8_SQUOTE] = ACTIONS(2609), + [anon_sym_SQUOTE] = ACTIONS(2609), + [anon_sym_L_DQUOTE] = ACTIONS(2609), + [anon_sym_u_DQUOTE] = ACTIONS(2609), + [anon_sym_U_DQUOTE] = ACTIONS(2609), + [anon_sym_u8_DQUOTE] = ACTIONS(2609), + [anon_sym_DQUOTE] = ACTIONS(2609), + [sym_true] = ACTIONS(2607), + [sym_false] = ACTIONS(2607), + [sym_null] = ACTIONS(2607), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2607), + [anon_sym_decltype] = ACTIONS(2607), + [anon_sym_virtual] = ACTIONS(2607), + [anon_sym_explicit] = ACTIONS(2607), + [anon_sym_typename] = ACTIONS(2607), + [anon_sym_template] = ACTIONS(2607), + [anon_sym_operator] = ACTIONS(2607), + [anon_sym_try] = ACTIONS(2607), + [anon_sym_delete] = ACTIONS(2607), + [anon_sym_throw] = ACTIONS(2607), + [anon_sym_namespace] = ACTIONS(2607), + [anon_sym_using] = ACTIONS(2607), + [anon_sym_static_assert] = ACTIONS(2607), + [anon_sym_concept] = ACTIONS(2607), + [anon_sym_co_return] = ACTIONS(2607), + [anon_sym_co_yield] = ACTIONS(2607), + [anon_sym_co_await] = ACTIONS(2607), + [anon_sym_new] = ACTIONS(2607), + [anon_sym_requires] = ACTIONS(2607), + [sym_this] = ACTIONS(2607), + [sym_nullptr] = ACTIONS(2607), + [sym_raw_string_literal] = ACTIONS(2609), }, - [557] = { - [ts_builtin_sym_end] = ACTIONS(2349), - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), + [456] = { + [sym_catch_clause] = STATE(340), + [aux_sym_constructor_try_statement_repeat1] = STATE(340), + [sym_identifier] = ACTIONS(2420), + [aux_sym_preproc_include_token1] = ACTIONS(2420), + [aux_sym_preproc_def_token1] = ACTIONS(2420), + [aux_sym_preproc_if_token1] = ACTIONS(2420), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2420), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2420), + [sym_preproc_directive] = ACTIONS(2420), + [anon_sym_LPAREN2] = ACTIONS(2422), + [anon_sym_BANG] = ACTIONS(2422), + [anon_sym_TILDE] = ACTIONS(2422), + [anon_sym_DASH] = ACTIONS(2420), + [anon_sym_PLUS] = ACTIONS(2420), + [anon_sym_STAR] = ACTIONS(2422), + [anon_sym_AMP_AMP] = ACTIONS(2422), + [anon_sym_AMP] = ACTIONS(2420), + [anon_sym_SEMI] = ACTIONS(2422), + [anon_sym_typedef] = ACTIONS(2420), + [anon_sym_extern] = ACTIONS(2420), + [anon_sym___attribute__] = ACTIONS(2420), + [anon_sym_COLON_COLON] = ACTIONS(2422), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2422), + [anon_sym___declspec] = ACTIONS(2420), + [anon_sym___based] = ACTIONS(2420), + [anon_sym___cdecl] = ACTIONS(2420), + [anon_sym___clrcall] = ACTIONS(2420), + [anon_sym___stdcall] = ACTIONS(2420), + [anon_sym___fastcall] = ACTIONS(2420), + [anon_sym___thiscall] = ACTIONS(2420), + [anon_sym___vectorcall] = ACTIONS(2420), + [anon_sym_LBRACE] = ACTIONS(2422), + [anon_sym_RBRACE] = ACTIONS(2422), + [anon_sym_LBRACK] = ACTIONS(2420), + [anon_sym_static] = ACTIONS(2420), + [anon_sym_register] = ACTIONS(2420), + [anon_sym_inline] = ACTIONS(2420), + [anon_sym_thread_local] = ACTIONS(2420), + [anon_sym_const] = ACTIONS(2420), + [anon_sym_volatile] = ACTIONS(2420), + [anon_sym_restrict] = ACTIONS(2420), + [anon_sym__Atomic] = ACTIONS(2420), + [anon_sym_mutable] = ACTIONS(2420), + [anon_sym_constexpr] = ACTIONS(2420), + [anon_sym_constinit] = ACTIONS(2420), + [anon_sym_consteval] = ACTIONS(2420), + [anon_sym_signed] = ACTIONS(2420), + [anon_sym_unsigned] = ACTIONS(2420), + [anon_sym_long] = ACTIONS(2420), + [anon_sym_short] = ACTIONS(2420), + [sym_primitive_type] = ACTIONS(2420), + [anon_sym_enum] = ACTIONS(2420), + [anon_sym_class] = ACTIONS(2420), + [anon_sym_struct] = ACTIONS(2420), + [anon_sym_union] = ACTIONS(2420), + [anon_sym_if] = ACTIONS(2420), + [anon_sym_switch] = ACTIONS(2420), + [anon_sym_case] = ACTIONS(2420), + [anon_sym_default] = ACTIONS(2420), + [anon_sym_while] = ACTIONS(2420), + [anon_sym_do] = ACTIONS(2420), + [anon_sym_for] = ACTIONS(2420), + [anon_sym_return] = ACTIONS(2420), + [anon_sym_break] = ACTIONS(2420), + [anon_sym_continue] = ACTIONS(2420), + [anon_sym_goto] = ACTIONS(2420), + [anon_sym_not] = ACTIONS(2420), + [anon_sym_compl] = ACTIONS(2420), + [anon_sym_DASH_DASH] = ACTIONS(2422), + [anon_sym_PLUS_PLUS] = ACTIONS(2422), + [anon_sym_sizeof] = ACTIONS(2420), + [sym_number_literal] = ACTIONS(2422), + [anon_sym_L_SQUOTE] = ACTIONS(2422), + [anon_sym_u_SQUOTE] = ACTIONS(2422), + [anon_sym_U_SQUOTE] = ACTIONS(2422), + [anon_sym_u8_SQUOTE] = ACTIONS(2422), + [anon_sym_SQUOTE] = ACTIONS(2422), + [anon_sym_L_DQUOTE] = ACTIONS(2422), + [anon_sym_u_DQUOTE] = ACTIONS(2422), + [anon_sym_U_DQUOTE] = ACTIONS(2422), + [anon_sym_u8_DQUOTE] = ACTIONS(2422), + [anon_sym_DQUOTE] = ACTIONS(2422), + [sym_true] = ACTIONS(2420), + [sym_false] = ACTIONS(2420), + [sym_null] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2420), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_virtual] = ACTIONS(2420), + [anon_sym_explicit] = ACTIONS(2420), + [anon_sym_typename] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2420), + [anon_sym_operator] = ACTIONS(2420), + [anon_sym_try] = ACTIONS(2420), + [anon_sym_delete] = ACTIONS(2420), + [anon_sym_throw] = ACTIONS(2420), + [anon_sym_namespace] = ACTIONS(2420), + [anon_sym_using] = ACTIONS(2420), + [anon_sym_static_assert] = ACTIONS(2420), + [anon_sym_concept] = ACTIONS(2420), + [anon_sym_co_return] = ACTIONS(2420), + [anon_sym_co_yield] = ACTIONS(2420), + [anon_sym_catch] = ACTIONS(2472), + [anon_sym_co_await] = ACTIONS(2420), + [anon_sym_new] = ACTIONS(2420), + [anon_sym_requires] = ACTIONS(2420), + [sym_this] = ACTIONS(2420), + [sym_nullptr] = ACTIONS(2420), + [sym_raw_string_literal] = ACTIONS(2422), }, - [558] = { - [ts_builtin_sym_end] = ACTIONS(2349), - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), + [457] = { + [sym_identifier] = ACTIONS(2611), + [aux_sym_preproc_include_token1] = ACTIONS(2611), + [aux_sym_preproc_def_token1] = ACTIONS(2611), + [aux_sym_preproc_if_token1] = ACTIONS(2611), + [aux_sym_preproc_if_token2] = ACTIONS(2611), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2611), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2611), + [aux_sym_preproc_else_token1] = ACTIONS(2611), + [aux_sym_preproc_elif_token1] = ACTIONS(2611), + [sym_preproc_directive] = ACTIONS(2611), + [anon_sym_LPAREN2] = ACTIONS(2613), + [anon_sym_BANG] = ACTIONS(2613), + [anon_sym_TILDE] = ACTIONS(2613), + [anon_sym_DASH] = ACTIONS(2611), + [anon_sym_PLUS] = ACTIONS(2611), + [anon_sym_STAR] = ACTIONS(2613), + [anon_sym_AMP_AMP] = ACTIONS(2613), + [anon_sym_AMP] = ACTIONS(2611), + [anon_sym_SEMI] = ACTIONS(2613), + [anon_sym_typedef] = ACTIONS(2611), + [anon_sym_extern] = ACTIONS(2611), + [anon_sym___attribute__] = ACTIONS(2611), + [anon_sym_COLON_COLON] = ACTIONS(2613), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2613), + [anon_sym___declspec] = ACTIONS(2611), + [anon_sym___based] = ACTIONS(2611), + [anon_sym___cdecl] = ACTIONS(2611), + [anon_sym___clrcall] = ACTIONS(2611), + [anon_sym___stdcall] = ACTIONS(2611), + [anon_sym___fastcall] = ACTIONS(2611), + [anon_sym___thiscall] = ACTIONS(2611), + [anon_sym___vectorcall] = ACTIONS(2611), + [anon_sym_LBRACE] = ACTIONS(2613), + [anon_sym_LBRACK] = ACTIONS(2611), + [anon_sym_static] = ACTIONS(2611), + [anon_sym_register] = ACTIONS(2611), + [anon_sym_inline] = ACTIONS(2611), + [anon_sym_thread_local] = ACTIONS(2611), + [anon_sym_const] = ACTIONS(2611), + [anon_sym_volatile] = ACTIONS(2611), + [anon_sym_restrict] = ACTIONS(2611), + [anon_sym__Atomic] = ACTIONS(2611), + [anon_sym_mutable] = ACTIONS(2611), + [anon_sym_constexpr] = ACTIONS(2611), + [anon_sym_constinit] = ACTIONS(2611), + [anon_sym_consteval] = ACTIONS(2611), + [anon_sym_signed] = ACTIONS(2611), + [anon_sym_unsigned] = ACTIONS(2611), + [anon_sym_long] = ACTIONS(2611), + [anon_sym_short] = ACTIONS(2611), + [sym_primitive_type] = ACTIONS(2611), + [anon_sym_enum] = ACTIONS(2611), + [anon_sym_class] = ACTIONS(2611), + [anon_sym_struct] = ACTIONS(2611), + [anon_sym_union] = ACTIONS(2611), + [anon_sym_if] = ACTIONS(2611), + [anon_sym_else] = ACTIONS(2611), + [anon_sym_switch] = ACTIONS(2611), + [anon_sym_case] = ACTIONS(2611), + [anon_sym_default] = ACTIONS(2611), + [anon_sym_while] = ACTIONS(2611), + [anon_sym_do] = ACTIONS(2611), + [anon_sym_for] = ACTIONS(2611), + [anon_sym_return] = ACTIONS(2611), + [anon_sym_break] = ACTIONS(2611), + [anon_sym_continue] = ACTIONS(2611), + [anon_sym_goto] = ACTIONS(2611), + [anon_sym_not] = ACTIONS(2611), + [anon_sym_compl] = ACTIONS(2611), + [anon_sym_DASH_DASH] = ACTIONS(2613), + [anon_sym_PLUS_PLUS] = ACTIONS(2613), + [anon_sym_sizeof] = ACTIONS(2611), + [sym_number_literal] = ACTIONS(2613), + [anon_sym_L_SQUOTE] = ACTIONS(2613), + [anon_sym_u_SQUOTE] = ACTIONS(2613), + [anon_sym_U_SQUOTE] = ACTIONS(2613), + [anon_sym_u8_SQUOTE] = ACTIONS(2613), + [anon_sym_SQUOTE] = ACTIONS(2613), + [anon_sym_L_DQUOTE] = ACTIONS(2613), + [anon_sym_u_DQUOTE] = ACTIONS(2613), + [anon_sym_U_DQUOTE] = ACTIONS(2613), + [anon_sym_u8_DQUOTE] = ACTIONS(2613), + [anon_sym_DQUOTE] = ACTIONS(2613), + [sym_true] = ACTIONS(2611), + [sym_false] = ACTIONS(2611), + [sym_null] = ACTIONS(2611), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2611), + [anon_sym_decltype] = ACTIONS(2611), + [anon_sym_virtual] = ACTIONS(2611), + [anon_sym_explicit] = ACTIONS(2611), + [anon_sym_typename] = ACTIONS(2611), + [anon_sym_template] = ACTIONS(2611), + [anon_sym_operator] = ACTIONS(2611), + [anon_sym_try] = ACTIONS(2611), + [anon_sym_delete] = ACTIONS(2611), + [anon_sym_throw] = ACTIONS(2611), + [anon_sym_namespace] = ACTIONS(2611), + [anon_sym_using] = ACTIONS(2611), + [anon_sym_static_assert] = ACTIONS(2611), + [anon_sym_concept] = ACTIONS(2611), + [anon_sym_co_return] = ACTIONS(2611), + [anon_sym_co_yield] = ACTIONS(2611), + [anon_sym_co_await] = ACTIONS(2611), + [anon_sym_new] = ACTIONS(2611), + [anon_sym_requires] = ACTIONS(2611), + [sym_this] = ACTIONS(2611), + [sym_nullptr] = ACTIONS(2611), + [sym_raw_string_literal] = ACTIONS(2613), }, - [559] = { - [ts_builtin_sym_end] = ACTIONS(2349), - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), + [458] = { + [sym_identifier] = ACTIONS(2615), + [aux_sym_preproc_include_token1] = ACTIONS(2615), + [aux_sym_preproc_def_token1] = ACTIONS(2615), + [aux_sym_preproc_if_token1] = ACTIONS(2615), + [aux_sym_preproc_if_token2] = ACTIONS(2615), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2615), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2615), + [aux_sym_preproc_else_token1] = ACTIONS(2615), + [aux_sym_preproc_elif_token1] = ACTIONS(2615), + [sym_preproc_directive] = ACTIONS(2615), + [anon_sym_LPAREN2] = ACTIONS(2617), + [anon_sym_BANG] = ACTIONS(2617), + [anon_sym_TILDE] = ACTIONS(2617), + [anon_sym_DASH] = ACTIONS(2615), + [anon_sym_PLUS] = ACTIONS(2615), + [anon_sym_STAR] = ACTIONS(2617), + [anon_sym_AMP_AMP] = ACTIONS(2617), + [anon_sym_AMP] = ACTIONS(2615), + [anon_sym_SEMI] = ACTIONS(2617), + [anon_sym_typedef] = ACTIONS(2615), + [anon_sym_extern] = ACTIONS(2615), + [anon_sym___attribute__] = ACTIONS(2615), + [anon_sym_COLON_COLON] = ACTIONS(2617), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2617), + [anon_sym___declspec] = ACTIONS(2615), + [anon_sym___based] = ACTIONS(2615), + [anon_sym___cdecl] = ACTIONS(2615), + [anon_sym___clrcall] = ACTIONS(2615), + [anon_sym___stdcall] = ACTIONS(2615), + [anon_sym___fastcall] = ACTIONS(2615), + [anon_sym___thiscall] = ACTIONS(2615), + [anon_sym___vectorcall] = ACTIONS(2615), + [anon_sym_LBRACE] = ACTIONS(2617), + [anon_sym_LBRACK] = ACTIONS(2615), + [anon_sym_static] = ACTIONS(2615), + [anon_sym_register] = ACTIONS(2615), + [anon_sym_inline] = ACTIONS(2615), + [anon_sym_thread_local] = ACTIONS(2615), + [anon_sym_const] = ACTIONS(2615), + [anon_sym_volatile] = ACTIONS(2615), + [anon_sym_restrict] = ACTIONS(2615), + [anon_sym__Atomic] = ACTIONS(2615), + [anon_sym_mutable] = ACTIONS(2615), + [anon_sym_constexpr] = ACTIONS(2615), + [anon_sym_constinit] = ACTIONS(2615), + [anon_sym_consteval] = ACTIONS(2615), + [anon_sym_signed] = ACTIONS(2615), + [anon_sym_unsigned] = ACTIONS(2615), + [anon_sym_long] = ACTIONS(2615), + [anon_sym_short] = ACTIONS(2615), + [sym_primitive_type] = ACTIONS(2615), + [anon_sym_enum] = ACTIONS(2615), + [anon_sym_class] = ACTIONS(2615), + [anon_sym_struct] = ACTIONS(2615), + [anon_sym_union] = ACTIONS(2615), + [anon_sym_if] = ACTIONS(2615), + [anon_sym_else] = ACTIONS(2615), + [anon_sym_switch] = ACTIONS(2615), + [anon_sym_case] = ACTIONS(2615), + [anon_sym_default] = ACTIONS(2615), + [anon_sym_while] = ACTIONS(2615), + [anon_sym_do] = ACTIONS(2615), + [anon_sym_for] = ACTIONS(2615), + [anon_sym_return] = ACTIONS(2615), + [anon_sym_break] = ACTIONS(2615), + [anon_sym_continue] = ACTIONS(2615), + [anon_sym_goto] = ACTIONS(2615), + [anon_sym_not] = ACTIONS(2615), + [anon_sym_compl] = ACTIONS(2615), + [anon_sym_DASH_DASH] = ACTIONS(2617), + [anon_sym_PLUS_PLUS] = ACTIONS(2617), + [anon_sym_sizeof] = ACTIONS(2615), + [sym_number_literal] = ACTIONS(2617), + [anon_sym_L_SQUOTE] = ACTIONS(2617), + [anon_sym_u_SQUOTE] = ACTIONS(2617), + [anon_sym_U_SQUOTE] = ACTIONS(2617), + [anon_sym_u8_SQUOTE] = ACTIONS(2617), + [anon_sym_SQUOTE] = ACTIONS(2617), + [anon_sym_L_DQUOTE] = ACTIONS(2617), + [anon_sym_u_DQUOTE] = ACTIONS(2617), + [anon_sym_U_DQUOTE] = ACTIONS(2617), + [anon_sym_u8_DQUOTE] = ACTIONS(2617), + [anon_sym_DQUOTE] = ACTIONS(2617), + [sym_true] = ACTIONS(2615), + [sym_false] = ACTIONS(2615), + [sym_null] = ACTIONS(2615), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2615), + [anon_sym_decltype] = ACTIONS(2615), + [anon_sym_virtual] = ACTIONS(2615), + [anon_sym_explicit] = ACTIONS(2615), + [anon_sym_typename] = ACTIONS(2615), + [anon_sym_template] = ACTIONS(2615), + [anon_sym_operator] = ACTIONS(2615), + [anon_sym_try] = ACTIONS(2615), + [anon_sym_delete] = ACTIONS(2615), + [anon_sym_throw] = ACTIONS(2615), + [anon_sym_namespace] = ACTIONS(2615), + [anon_sym_using] = ACTIONS(2615), + [anon_sym_static_assert] = ACTIONS(2615), + [anon_sym_concept] = ACTIONS(2615), + [anon_sym_co_return] = ACTIONS(2615), + [anon_sym_co_yield] = ACTIONS(2615), + [anon_sym_co_await] = ACTIONS(2615), + [anon_sym_new] = ACTIONS(2615), + [anon_sym_requires] = ACTIONS(2615), + [sym_this] = ACTIONS(2615), + [sym_nullptr] = ACTIONS(2615), + [sym_raw_string_literal] = ACTIONS(2617), }, - [560] = { - [ts_builtin_sym_end] = ACTIONS(2349), - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), + [459] = { + [sym_identifier] = ACTIONS(2619), + [aux_sym_preproc_include_token1] = ACTIONS(2619), + [aux_sym_preproc_def_token1] = ACTIONS(2619), + [aux_sym_preproc_if_token1] = ACTIONS(2619), + [aux_sym_preproc_if_token2] = ACTIONS(2619), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2619), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2619), + [aux_sym_preproc_else_token1] = ACTIONS(2619), + [aux_sym_preproc_elif_token1] = ACTIONS(2619), + [sym_preproc_directive] = ACTIONS(2619), + [anon_sym_LPAREN2] = ACTIONS(2621), + [anon_sym_BANG] = ACTIONS(2621), + [anon_sym_TILDE] = ACTIONS(2621), + [anon_sym_DASH] = ACTIONS(2619), + [anon_sym_PLUS] = ACTIONS(2619), + [anon_sym_STAR] = ACTIONS(2621), + [anon_sym_AMP_AMP] = ACTIONS(2621), + [anon_sym_AMP] = ACTIONS(2619), + [anon_sym_SEMI] = ACTIONS(2621), + [anon_sym_typedef] = ACTIONS(2619), + [anon_sym_extern] = ACTIONS(2619), + [anon_sym___attribute__] = ACTIONS(2619), + [anon_sym_COLON_COLON] = ACTIONS(2621), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2621), + [anon_sym___declspec] = ACTIONS(2619), + [anon_sym___based] = ACTIONS(2619), + [anon_sym___cdecl] = ACTIONS(2619), + [anon_sym___clrcall] = ACTIONS(2619), + [anon_sym___stdcall] = ACTIONS(2619), + [anon_sym___fastcall] = ACTIONS(2619), + [anon_sym___thiscall] = ACTIONS(2619), + [anon_sym___vectorcall] = ACTIONS(2619), + [anon_sym_LBRACE] = ACTIONS(2621), + [anon_sym_LBRACK] = ACTIONS(2619), + [anon_sym_static] = ACTIONS(2619), + [anon_sym_register] = ACTIONS(2619), + [anon_sym_inline] = ACTIONS(2619), + [anon_sym_thread_local] = ACTIONS(2619), + [anon_sym_const] = ACTIONS(2619), + [anon_sym_volatile] = ACTIONS(2619), + [anon_sym_restrict] = ACTIONS(2619), + [anon_sym__Atomic] = ACTIONS(2619), + [anon_sym_mutable] = ACTIONS(2619), + [anon_sym_constexpr] = ACTIONS(2619), + [anon_sym_constinit] = ACTIONS(2619), + [anon_sym_consteval] = ACTIONS(2619), + [anon_sym_signed] = ACTIONS(2619), + [anon_sym_unsigned] = ACTIONS(2619), + [anon_sym_long] = ACTIONS(2619), + [anon_sym_short] = ACTIONS(2619), + [sym_primitive_type] = ACTIONS(2619), + [anon_sym_enum] = ACTIONS(2619), + [anon_sym_class] = ACTIONS(2619), + [anon_sym_struct] = ACTIONS(2619), + [anon_sym_union] = ACTIONS(2619), + [anon_sym_if] = ACTIONS(2619), + [anon_sym_else] = ACTIONS(2619), + [anon_sym_switch] = ACTIONS(2619), + [anon_sym_case] = ACTIONS(2619), + [anon_sym_default] = ACTIONS(2619), + [anon_sym_while] = ACTIONS(2619), + [anon_sym_do] = ACTIONS(2619), + [anon_sym_for] = ACTIONS(2619), + [anon_sym_return] = ACTIONS(2619), + [anon_sym_break] = ACTIONS(2619), + [anon_sym_continue] = ACTIONS(2619), + [anon_sym_goto] = ACTIONS(2619), + [anon_sym_not] = ACTIONS(2619), + [anon_sym_compl] = ACTIONS(2619), + [anon_sym_DASH_DASH] = ACTIONS(2621), + [anon_sym_PLUS_PLUS] = ACTIONS(2621), + [anon_sym_sizeof] = ACTIONS(2619), + [sym_number_literal] = ACTIONS(2621), + [anon_sym_L_SQUOTE] = ACTIONS(2621), + [anon_sym_u_SQUOTE] = ACTIONS(2621), + [anon_sym_U_SQUOTE] = ACTIONS(2621), + [anon_sym_u8_SQUOTE] = ACTIONS(2621), + [anon_sym_SQUOTE] = ACTIONS(2621), + [anon_sym_L_DQUOTE] = ACTIONS(2621), + [anon_sym_u_DQUOTE] = ACTIONS(2621), + [anon_sym_U_DQUOTE] = ACTIONS(2621), + [anon_sym_u8_DQUOTE] = ACTIONS(2621), + [anon_sym_DQUOTE] = ACTIONS(2621), + [sym_true] = ACTIONS(2619), + [sym_false] = ACTIONS(2619), + [sym_null] = ACTIONS(2619), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2619), + [anon_sym_decltype] = ACTIONS(2619), + [anon_sym_virtual] = ACTIONS(2619), + [anon_sym_explicit] = ACTIONS(2619), + [anon_sym_typename] = ACTIONS(2619), + [anon_sym_template] = ACTIONS(2619), + [anon_sym_operator] = ACTIONS(2619), + [anon_sym_try] = ACTIONS(2619), + [anon_sym_delete] = ACTIONS(2619), + [anon_sym_throw] = ACTIONS(2619), + [anon_sym_namespace] = ACTIONS(2619), + [anon_sym_using] = ACTIONS(2619), + [anon_sym_static_assert] = ACTIONS(2619), + [anon_sym_concept] = ACTIONS(2619), + [anon_sym_co_return] = ACTIONS(2619), + [anon_sym_co_yield] = ACTIONS(2619), + [anon_sym_co_await] = ACTIONS(2619), + [anon_sym_new] = ACTIONS(2619), + [anon_sym_requires] = ACTIONS(2619), + [sym_this] = ACTIONS(2619), + [sym_nullptr] = ACTIONS(2619), + [sym_raw_string_literal] = ACTIONS(2621), }, - [561] = { - [ts_builtin_sym_end] = ACTIONS(2349), - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), + [460] = { + [sym_identifier] = ACTIONS(2623), + [aux_sym_preproc_include_token1] = ACTIONS(2623), + [aux_sym_preproc_def_token1] = ACTIONS(2623), + [aux_sym_preproc_if_token1] = ACTIONS(2623), + [aux_sym_preproc_if_token2] = ACTIONS(2623), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2623), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2623), + [aux_sym_preproc_else_token1] = ACTIONS(2623), + [aux_sym_preproc_elif_token1] = ACTIONS(2623), + [sym_preproc_directive] = ACTIONS(2623), + [anon_sym_LPAREN2] = ACTIONS(2625), + [anon_sym_BANG] = ACTIONS(2625), + [anon_sym_TILDE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(2623), + [anon_sym_PLUS] = ACTIONS(2623), + [anon_sym_STAR] = ACTIONS(2625), + [anon_sym_AMP_AMP] = ACTIONS(2625), + [anon_sym_AMP] = ACTIONS(2623), + [anon_sym_SEMI] = ACTIONS(2625), + [anon_sym_typedef] = ACTIONS(2623), + [anon_sym_extern] = ACTIONS(2623), + [anon_sym___attribute__] = ACTIONS(2623), + [anon_sym_COLON_COLON] = ACTIONS(2625), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2625), + [anon_sym___declspec] = ACTIONS(2623), + [anon_sym___based] = ACTIONS(2623), + [anon_sym___cdecl] = ACTIONS(2623), + [anon_sym___clrcall] = ACTIONS(2623), + [anon_sym___stdcall] = ACTIONS(2623), + [anon_sym___fastcall] = ACTIONS(2623), + [anon_sym___thiscall] = ACTIONS(2623), + [anon_sym___vectorcall] = ACTIONS(2623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_LBRACK] = ACTIONS(2623), + [anon_sym_static] = ACTIONS(2623), + [anon_sym_register] = ACTIONS(2623), + [anon_sym_inline] = ACTIONS(2623), + [anon_sym_thread_local] = ACTIONS(2623), + [anon_sym_const] = ACTIONS(2623), + [anon_sym_volatile] = ACTIONS(2623), + [anon_sym_restrict] = ACTIONS(2623), + [anon_sym__Atomic] = ACTIONS(2623), + [anon_sym_mutable] = ACTIONS(2623), + [anon_sym_constexpr] = ACTIONS(2623), + [anon_sym_constinit] = ACTIONS(2623), + [anon_sym_consteval] = ACTIONS(2623), + [anon_sym_signed] = ACTIONS(2623), + [anon_sym_unsigned] = ACTIONS(2623), + [anon_sym_long] = ACTIONS(2623), + [anon_sym_short] = ACTIONS(2623), + [sym_primitive_type] = ACTIONS(2623), + [anon_sym_enum] = ACTIONS(2623), + [anon_sym_class] = ACTIONS(2623), + [anon_sym_struct] = ACTIONS(2623), + [anon_sym_union] = ACTIONS(2623), + [anon_sym_if] = ACTIONS(2623), + [anon_sym_else] = ACTIONS(2623), + [anon_sym_switch] = ACTIONS(2623), + [anon_sym_case] = ACTIONS(2623), + [anon_sym_default] = ACTIONS(2623), + [anon_sym_while] = ACTIONS(2623), + [anon_sym_do] = ACTIONS(2623), + [anon_sym_for] = ACTIONS(2623), + [anon_sym_return] = ACTIONS(2623), + [anon_sym_break] = ACTIONS(2623), + [anon_sym_continue] = ACTIONS(2623), + [anon_sym_goto] = ACTIONS(2623), + [anon_sym_not] = ACTIONS(2623), + [anon_sym_compl] = ACTIONS(2623), + [anon_sym_DASH_DASH] = ACTIONS(2625), + [anon_sym_PLUS_PLUS] = ACTIONS(2625), + [anon_sym_sizeof] = ACTIONS(2623), + [sym_number_literal] = ACTIONS(2625), + [anon_sym_L_SQUOTE] = ACTIONS(2625), + [anon_sym_u_SQUOTE] = ACTIONS(2625), + [anon_sym_U_SQUOTE] = ACTIONS(2625), + [anon_sym_u8_SQUOTE] = ACTIONS(2625), + [anon_sym_SQUOTE] = ACTIONS(2625), + [anon_sym_L_DQUOTE] = ACTIONS(2625), + [anon_sym_u_DQUOTE] = ACTIONS(2625), + [anon_sym_U_DQUOTE] = ACTIONS(2625), + [anon_sym_u8_DQUOTE] = ACTIONS(2625), + [anon_sym_DQUOTE] = ACTIONS(2625), + [sym_true] = ACTIONS(2623), + [sym_false] = ACTIONS(2623), + [sym_null] = ACTIONS(2623), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2623), + [anon_sym_decltype] = ACTIONS(2623), + [anon_sym_virtual] = ACTIONS(2623), + [anon_sym_explicit] = ACTIONS(2623), + [anon_sym_typename] = ACTIONS(2623), + [anon_sym_template] = ACTIONS(2623), + [anon_sym_operator] = ACTIONS(2623), + [anon_sym_try] = ACTIONS(2623), + [anon_sym_delete] = ACTIONS(2623), + [anon_sym_throw] = ACTIONS(2623), + [anon_sym_namespace] = ACTIONS(2623), + [anon_sym_using] = ACTIONS(2623), + [anon_sym_static_assert] = ACTIONS(2623), + [anon_sym_concept] = ACTIONS(2623), + [anon_sym_co_return] = ACTIONS(2623), + [anon_sym_co_yield] = ACTIONS(2623), + [anon_sym_co_await] = ACTIONS(2623), + [anon_sym_new] = ACTIONS(2623), + [anon_sym_requires] = ACTIONS(2623), + [sym_this] = ACTIONS(2623), + [sym_nullptr] = ACTIONS(2623), + [sym_raw_string_literal] = ACTIONS(2625), }, - [562] = { - [ts_builtin_sym_end] = ACTIONS(2349), - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), + [461] = { + [sym_identifier] = ACTIONS(2627), + [aux_sym_preproc_include_token1] = ACTIONS(2627), + [aux_sym_preproc_def_token1] = ACTIONS(2627), + [aux_sym_preproc_if_token1] = ACTIONS(2627), + [aux_sym_preproc_if_token2] = ACTIONS(2627), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2627), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2627), + [aux_sym_preproc_else_token1] = ACTIONS(2627), + [aux_sym_preproc_elif_token1] = ACTIONS(2627), + [sym_preproc_directive] = ACTIONS(2627), + [anon_sym_LPAREN2] = ACTIONS(2629), + [anon_sym_BANG] = ACTIONS(2629), + [anon_sym_TILDE] = ACTIONS(2629), + [anon_sym_DASH] = ACTIONS(2627), + [anon_sym_PLUS] = ACTIONS(2627), + [anon_sym_STAR] = ACTIONS(2629), + [anon_sym_AMP_AMP] = ACTIONS(2629), + [anon_sym_AMP] = ACTIONS(2627), + [anon_sym_SEMI] = ACTIONS(2629), + [anon_sym_typedef] = ACTIONS(2627), + [anon_sym_extern] = ACTIONS(2627), + [anon_sym___attribute__] = ACTIONS(2627), + [anon_sym_COLON_COLON] = ACTIONS(2629), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2629), + [anon_sym___declspec] = ACTIONS(2627), + [anon_sym___based] = ACTIONS(2627), + [anon_sym___cdecl] = ACTIONS(2627), + [anon_sym___clrcall] = ACTIONS(2627), + [anon_sym___stdcall] = ACTIONS(2627), + [anon_sym___fastcall] = ACTIONS(2627), + [anon_sym___thiscall] = ACTIONS(2627), + [anon_sym___vectorcall] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(2629), + [anon_sym_LBRACK] = ACTIONS(2627), + [anon_sym_static] = ACTIONS(2627), + [anon_sym_register] = ACTIONS(2627), + [anon_sym_inline] = ACTIONS(2627), + [anon_sym_thread_local] = ACTIONS(2627), + [anon_sym_const] = ACTIONS(2627), + [anon_sym_volatile] = ACTIONS(2627), + [anon_sym_restrict] = ACTIONS(2627), + [anon_sym__Atomic] = ACTIONS(2627), + [anon_sym_mutable] = ACTIONS(2627), + [anon_sym_constexpr] = ACTIONS(2627), + [anon_sym_constinit] = ACTIONS(2627), + [anon_sym_consteval] = ACTIONS(2627), + [anon_sym_signed] = ACTIONS(2627), + [anon_sym_unsigned] = ACTIONS(2627), + [anon_sym_long] = ACTIONS(2627), + [anon_sym_short] = ACTIONS(2627), + [sym_primitive_type] = ACTIONS(2627), + [anon_sym_enum] = ACTIONS(2627), + [anon_sym_class] = ACTIONS(2627), + [anon_sym_struct] = ACTIONS(2627), + [anon_sym_union] = ACTIONS(2627), + [anon_sym_if] = ACTIONS(2627), + [anon_sym_else] = ACTIONS(2627), + [anon_sym_switch] = ACTIONS(2627), + [anon_sym_case] = ACTIONS(2627), + [anon_sym_default] = ACTIONS(2627), + [anon_sym_while] = ACTIONS(2627), + [anon_sym_do] = ACTIONS(2627), + [anon_sym_for] = ACTIONS(2627), + [anon_sym_return] = ACTIONS(2627), + [anon_sym_break] = ACTIONS(2627), + [anon_sym_continue] = ACTIONS(2627), + [anon_sym_goto] = ACTIONS(2627), + [anon_sym_not] = ACTIONS(2627), + [anon_sym_compl] = ACTIONS(2627), + [anon_sym_DASH_DASH] = ACTIONS(2629), + [anon_sym_PLUS_PLUS] = ACTIONS(2629), + [anon_sym_sizeof] = ACTIONS(2627), + [sym_number_literal] = ACTIONS(2629), + [anon_sym_L_SQUOTE] = ACTIONS(2629), + [anon_sym_u_SQUOTE] = ACTIONS(2629), + [anon_sym_U_SQUOTE] = ACTIONS(2629), + [anon_sym_u8_SQUOTE] = ACTIONS(2629), + [anon_sym_SQUOTE] = ACTIONS(2629), + [anon_sym_L_DQUOTE] = ACTIONS(2629), + [anon_sym_u_DQUOTE] = ACTIONS(2629), + [anon_sym_U_DQUOTE] = ACTIONS(2629), + [anon_sym_u8_DQUOTE] = ACTIONS(2629), + [anon_sym_DQUOTE] = ACTIONS(2629), + [sym_true] = ACTIONS(2627), + [sym_false] = ACTIONS(2627), + [sym_null] = ACTIONS(2627), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2627), + [anon_sym_decltype] = ACTIONS(2627), + [anon_sym_virtual] = ACTIONS(2627), + [anon_sym_explicit] = ACTIONS(2627), + [anon_sym_typename] = ACTIONS(2627), + [anon_sym_template] = ACTIONS(2627), + [anon_sym_operator] = ACTIONS(2627), + [anon_sym_try] = ACTIONS(2627), + [anon_sym_delete] = ACTIONS(2627), + [anon_sym_throw] = ACTIONS(2627), + [anon_sym_namespace] = ACTIONS(2627), + [anon_sym_using] = ACTIONS(2627), + [anon_sym_static_assert] = ACTIONS(2627), + [anon_sym_concept] = ACTIONS(2627), + [anon_sym_co_return] = ACTIONS(2627), + [anon_sym_co_yield] = ACTIONS(2627), + [anon_sym_co_await] = ACTIONS(2627), + [anon_sym_new] = ACTIONS(2627), + [anon_sym_requires] = ACTIONS(2627), + [sym_this] = ACTIONS(2627), + [sym_nullptr] = ACTIONS(2627), + [sym_raw_string_literal] = ACTIONS(2629), }, - [563] = { - [ts_builtin_sym_end] = ACTIONS(2349), - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), + [462] = { + [sym_identifier] = ACTIONS(2631), + [aux_sym_preproc_include_token1] = ACTIONS(2631), + [aux_sym_preproc_def_token1] = ACTIONS(2631), + [aux_sym_preproc_if_token1] = ACTIONS(2631), + [aux_sym_preproc_if_token2] = ACTIONS(2631), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2631), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2631), + [aux_sym_preproc_else_token1] = ACTIONS(2631), + [aux_sym_preproc_elif_token1] = ACTIONS(2631), + [sym_preproc_directive] = ACTIONS(2631), + [anon_sym_LPAREN2] = ACTIONS(2633), + [anon_sym_BANG] = ACTIONS(2633), + [anon_sym_TILDE] = ACTIONS(2633), + [anon_sym_DASH] = ACTIONS(2631), + [anon_sym_PLUS] = ACTIONS(2631), + [anon_sym_STAR] = ACTIONS(2633), + [anon_sym_AMP_AMP] = ACTIONS(2633), + [anon_sym_AMP] = ACTIONS(2631), + [anon_sym_SEMI] = ACTIONS(2633), + [anon_sym_typedef] = ACTIONS(2631), + [anon_sym_extern] = ACTIONS(2631), + [anon_sym___attribute__] = ACTIONS(2631), + [anon_sym_COLON_COLON] = ACTIONS(2633), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2633), + [anon_sym___declspec] = ACTIONS(2631), + [anon_sym___based] = ACTIONS(2631), + [anon_sym___cdecl] = ACTIONS(2631), + [anon_sym___clrcall] = ACTIONS(2631), + [anon_sym___stdcall] = ACTIONS(2631), + [anon_sym___fastcall] = ACTIONS(2631), + [anon_sym___thiscall] = ACTIONS(2631), + [anon_sym___vectorcall] = ACTIONS(2631), + [anon_sym_LBRACE] = ACTIONS(2633), + [anon_sym_LBRACK] = ACTIONS(2631), + [anon_sym_static] = ACTIONS(2631), + [anon_sym_register] = ACTIONS(2631), + [anon_sym_inline] = ACTIONS(2631), + [anon_sym_thread_local] = ACTIONS(2631), + [anon_sym_const] = ACTIONS(2631), + [anon_sym_volatile] = ACTIONS(2631), + [anon_sym_restrict] = ACTIONS(2631), + [anon_sym__Atomic] = ACTIONS(2631), + [anon_sym_mutable] = ACTIONS(2631), + [anon_sym_constexpr] = ACTIONS(2631), + [anon_sym_constinit] = ACTIONS(2631), + [anon_sym_consteval] = ACTIONS(2631), + [anon_sym_signed] = ACTIONS(2631), + [anon_sym_unsigned] = ACTIONS(2631), + [anon_sym_long] = ACTIONS(2631), + [anon_sym_short] = ACTIONS(2631), + [sym_primitive_type] = ACTIONS(2631), + [anon_sym_enum] = ACTIONS(2631), + [anon_sym_class] = ACTIONS(2631), + [anon_sym_struct] = ACTIONS(2631), + [anon_sym_union] = ACTIONS(2631), + [anon_sym_if] = ACTIONS(2631), + [anon_sym_else] = ACTIONS(2631), + [anon_sym_switch] = ACTIONS(2631), + [anon_sym_case] = ACTIONS(2631), + [anon_sym_default] = ACTIONS(2631), + [anon_sym_while] = ACTIONS(2631), + [anon_sym_do] = ACTIONS(2631), + [anon_sym_for] = ACTIONS(2631), + [anon_sym_return] = ACTIONS(2631), + [anon_sym_break] = ACTIONS(2631), + [anon_sym_continue] = ACTIONS(2631), + [anon_sym_goto] = ACTIONS(2631), + [anon_sym_not] = ACTIONS(2631), + [anon_sym_compl] = ACTIONS(2631), + [anon_sym_DASH_DASH] = ACTIONS(2633), + [anon_sym_PLUS_PLUS] = ACTIONS(2633), + [anon_sym_sizeof] = ACTIONS(2631), + [sym_number_literal] = ACTIONS(2633), + [anon_sym_L_SQUOTE] = ACTIONS(2633), + [anon_sym_u_SQUOTE] = ACTIONS(2633), + [anon_sym_U_SQUOTE] = ACTIONS(2633), + [anon_sym_u8_SQUOTE] = ACTIONS(2633), + [anon_sym_SQUOTE] = ACTIONS(2633), + [anon_sym_L_DQUOTE] = ACTIONS(2633), + [anon_sym_u_DQUOTE] = ACTIONS(2633), + [anon_sym_U_DQUOTE] = ACTIONS(2633), + [anon_sym_u8_DQUOTE] = ACTIONS(2633), + [anon_sym_DQUOTE] = ACTIONS(2633), + [sym_true] = ACTIONS(2631), + [sym_false] = ACTIONS(2631), + [sym_null] = ACTIONS(2631), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2631), + [anon_sym_decltype] = ACTIONS(2631), + [anon_sym_virtual] = ACTIONS(2631), + [anon_sym_explicit] = ACTIONS(2631), + [anon_sym_typename] = ACTIONS(2631), + [anon_sym_template] = ACTIONS(2631), + [anon_sym_operator] = ACTIONS(2631), + [anon_sym_try] = ACTIONS(2631), + [anon_sym_delete] = ACTIONS(2631), + [anon_sym_throw] = ACTIONS(2631), + [anon_sym_namespace] = ACTIONS(2631), + [anon_sym_using] = ACTIONS(2631), + [anon_sym_static_assert] = ACTIONS(2631), + [anon_sym_concept] = ACTIONS(2631), + [anon_sym_co_return] = ACTIONS(2631), + [anon_sym_co_yield] = ACTIONS(2631), + [anon_sym_co_await] = ACTIONS(2631), + [anon_sym_new] = ACTIONS(2631), + [anon_sym_requires] = ACTIONS(2631), + [sym_this] = ACTIONS(2631), + [sym_nullptr] = ACTIONS(2631), + [sym_raw_string_literal] = ACTIONS(2633), }, - [564] = { - [ts_builtin_sym_end] = ACTIONS(2349), - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), + [463] = { + [sym_identifier] = ACTIONS(2635), + [aux_sym_preproc_include_token1] = ACTIONS(2635), + [aux_sym_preproc_def_token1] = ACTIONS(2635), + [aux_sym_preproc_if_token1] = ACTIONS(2635), + [aux_sym_preproc_if_token2] = ACTIONS(2635), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2635), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2635), + [aux_sym_preproc_else_token1] = ACTIONS(2635), + [aux_sym_preproc_elif_token1] = ACTIONS(2635), + [sym_preproc_directive] = ACTIONS(2635), + [anon_sym_LPAREN2] = ACTIONS(2637), + [anon_sym_BANG] = ACTIONS(2637), + [anon_sym_TILDE] = ACTIONS(2637), + [anon_sym_DASH] = ACTIONS(2635), + [anon_sym_PLUS] = ACTIONS(2635), + [anon_sym_STAR] = ACTIONS(2637), + [anon_sym_AMP_AMP] = ACTIONS(2637), + [anon_sym_AMP] = ACTIONS(2635), + [anon_sym_SEMI] = ACTIONS(2637), + [anon_sym_typedef] = ACTIONS(2635), + [anon_sym_extern] = ACTIONS(2635), + [anon_sym___attribute__] = ACTIONS(2635), + [anon_sym_COLON_COLON] = ACTIONS(2637), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2637), + [anon_sym___declspec] = ACTIONS(2635), + [anon_sym___based] = ACTIONS(2635), + [anon_sym___cdecl] = ACTIONS(2635), + [anon_sym___clrcall] = ACTIONS(2635), + [anon_sym___stdcall] = ACTIONS(2635), + [anon_sym___fastcall] = ACTIONS(2635), + [anon_sym___thiscall] = ACTIONS(2635), + [anon_sym___vectorcall] = ACTIONS(2635), + [anon_sym_LBRACE] = ACTIONS(2637), + [anon_sym_LBRACK] = ACTIONS(2635), + [anon_sym_static] = ACTIONS(2635), + [anon_sym_register] = ACTIONS(2635), + [anon_sym_inline] = ACTIONS(2635), + [anon_sym_thread_local] = ACTIONS(2635), + [anon_sym_const] = ACTIONS(2635), + [anon_sym_volatile] = ACTIONS(2635), + [anon_sym_restrict] = ACTIONS(2635), + [anon_sym__Atomic] = ACTIONS(2635), + [anon_sym_mutable] = ACTIONS(2635), + [anon_sym_constexpr] = ACTIONS(2635), + [anon_sym_constinit] = ACTIONS(2635), + [anon_sym_consteval] = ACTIONS(2635), + [anon_sym_signed] = ACTIONS(2635), + [anon_sym_unsigned] = ACTIONS(2635), + [anon_sym_long] = ACTIONS(2635), + [anon_sym_short] = ACTIONS(2635), + [sym_primitive_type] = ACTIONS(2635), + [anon_sym_enum] = ACTIONS(2635), + [anon_sym_class] = ACTIONS(2635), + [anon_sym_struct] = ACTIONS(2635), + [anon_sym_union] = ACTIONS(2635), + [anon_sym_if] = ACTIONS(2635), + [anon_sym_else] = ACTIONS(2635), + [anon_sym_switch] = ACTIONS(2635), + [anon_sym_case] = ACTIONS(2635), + [anon_sym_default] = ACTIONS(2635), + [anon_sym_while] = ACTIONS(2635), + [anon_sym_do] = ACTIONS(2635), + [anon_sym_for] = ACTIONS(2635), + [anon_sym_return] = ACTIONS(2635), + [anon_sym_break] = ACTIONS(2635), + [anon_sym_continue] = ACTIONS(2635), + [anon_sym_goto] = ACTIONS(2635), + [anon_sym_not] = ACTIONS(2635), + [anon_sym_compl] = ACTIONS(2635), + [anon_sym_DASH_DASH] = ACTIONS(2637), + [anon_sym_PLUS_PLUS] = ACTIONS(2637), + [anon_sym_sizeof] = ACTIONS(2635), + [sym_number_literal] = ACTIONS(2637), + [anon_sym_L_SQUOTE] = ACTIONS(2637), + [anon_sym_u_SQUOTE] = ACTIONS(2637), + [anon_sym_U_SQUOTE] = ACTIONS(2637), + [anon_sym_u8_SQUOTE] = ACTIONS(2637), + [anon_sym_SQUOTE] = ACTIONS(2637), + [anon_sym_L_DQUOTE] = ACTIONS(2637), + [anon_sym_u_DQUOTE] = ACTIONS(2637), + [anon_sym_U_DQUOTE] = ACTIONS(2637), + [anon_sym_u8_DQUOTE] = ACTIONS(2637), + [anon_sym_DQUOTE] = ACTIONS(2637), + [sym_true] = ACTIONS(2635), + [sym_false] = ACTIONS(2635), + [sym_null] = ACTIONS(2635), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2635), + [anon_sym_decltype] = ACTIONS(2635), + [anon_sym_virtual] = ACTIONS(2635), + [anon_sym_explicit] = ACTIONS(2635), + [anon_sym_typename] = ACTIONS(2635), + [anon_sym_template] = ACTIONS(2635), + [anon_sym_operator] = ACTIONS(2635), + [anon_sym_try] = ACTIONS(2635), + [anon_sym_delete] = ACTIONS(2635), + [anon_sym_throw] = ACTIONS(2635), + [anon_sym_namespace] = ACTIONS(2635), + [anon_sym_using] = ACTIONS(2635), + [anon_sym_static_assert] = ACTIONS(2635), + [anon_sym_concept] = ACTIONS(2635), + [anon_sym_co_return] = ACTIONS(2635), + [anon_sym_co_yield] = ACTIONS(2635), + [anon_sym_co_await] = ACTIONS(2635), + [anon_sym_new] = ACTIONS(2635), + [anon_sym_requires] = ACTIONS(2635), + [sym_this] = ACTIONS(2635), + [sym_nullptr] = ACTIONS(2635), + [sym_raw_string_literal] = ACTIONS(2637), }, - [565] = { - [ts_builtin_sym_end] = ACTIONS(2501), - [sym_identifier] = ACTIONS(2499), - [aux_sym_preproc_include_token1] = ACTIONS(2499), - [aux_sym_preproc_def_token1] = ACTIONS(2499), - [aux_sym_preproc_if_token1] = ACTIONS(2499), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2499), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2499), - [sym_preproc_directive] = ACTIONS(2499), - [anon_sym_LPAREN2] = ACTIONS(2501), - [anon_sym_BANG] = ACTIONS(2501), - [anon_sym_TILDE] = ACTIONS(2501), - [anon_sym_DASH] = ACTIONS(2499), - [anon_sym_PLUS] = ACTIONS(2499), - [anon_sym_STAR] = ACTIONS(2501), - [anon_sym_AMP_AMP] = ACTIONS(2501), - [anon_sym_AMP] = ACTIONS(2499), - [anon_sym_SEMI] = ACTIONS(2501), - [anon_sym_typedef] = ACTIONS(2499), - [anon_sym_extern] = ACTIONS(2499), - [anon_sym___attribute__] = ACTIONS(2499), - [anon_sym_COLON_COLON] = ACTIONS(2501), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2501), - [anon_sym___declspec] = ACTIONS(2499), - [anon_sym___based] = ACTIONS(2499), - [anon_sym___cdecl] = ACTIONS(2499), - [anon_sym___clrcall] = ACTIONS(2499), - [anon_sym___stdcall] = ACTIONS(2499), - [anon_sym___fastcall] = ACTIONS(2499), - [anon_sym___thiscall] = ACTIONS(2499), - [anon_sym___vectorcall] = ACTIONS(2499), - [anon_sym_LBRACE] = ACTIONS(2501), - [anon_sym_LBRACK] = ACTIONS(2499), - [anon_sym_static] = ACTIONS(2499), - [anon_sym_register] = ACTIONS(2499), - [anon_sym_inline] = ACTIONS(2499), - [anon_sym_thread_local] = ACTIONS(2499), - [anon_sym_const] = ACTIONS(2499), - [anon_sym_volatile] = ACTIONS(2499), - [anon_sym_restrict] = ACTIONS(2499), - [anon_sym__Atomic] = ACTIONS(2499), - [anon_sym_mutable] = ACTIONS(2499), - [anon_sym_constexpr] = ACTIONS(2499), - [anon_sym_constinit] = ACTIONS(2499), - [anon_sym_consteval] = ACTIONS(2499), - [anon_sym_signed] = ACTIONS(2499), - [anon_sym_unsigned] = ACTIONS(2499), - [anon_sym_long] = ACTIONS(2499), - [anon_sym_short] = ACTIONS(2499), - [sym_primitive_type] = ACTIONS(2499), - [anon_sym_enum] = ACTIONS(2499), - [anon_sym_class] = ACTIONS(2499), - [anon_sym_struct] = ACTIONS(2499), - [anon_sym_union] = ACTIONS(2499), - [anon_sym_if] = ACTIONS(2499), - [anon_sym_else] = ACTIONS(2499), - [anon_sym_switch] = ACTIONS(2499), - [anon_sym_case] = ACTIONS(2499), - [anon_sym_default] = ACTIONS(2499), - [anon_sym_while] = ACTIONS(2499), - [anon_sym_do] = ACTIONS(2499), - [anon_sym_for] = ACTIONS(2499), - [anon_sym_return] = ACTIONS(2499), - [anon_sym_break] = ACTIONS(2499), - [anon_sym_continue] = ACTIONS(2499), - [anon_sym_goto] = ACTIONS(2499), - [anon_sym_DASH_DASH] = ACTIONS(2501), - [anon_sym_PLUS_PLUS] = ACTIONS(2501), - [anon_sym_sizeof] = ACTIONS(2499), - [sym_number_literal] = ACTIONS(2501), - [anon_sym_L_SQUOTE] = ACTIONS(2501), - [anon_sym_u_SQUOTE] = ACTIONS(2501), - [anon_sym_U_SQUOTE] = ACTIONS(2501), - [anon_sym_u8_SQUOTE] = ACTIONS(2501), - [anon_sym_SQUOTE] = ACTIONS(2501), - [anon_sym_L_DQUOTE] = ACTIONS(2501), - [anon_sym_u_DQUOTE] = ACTIONS(2501), - [anon_sym_U_DQUOTE] = ACTIONS(2501), - [anon_sym_u8_DQUOTE] = ACTIONS(2501), - [anon_sym_DQUOTE] = ACTIONS(2501), - [sym_true] = ACTIONS(2499), - [sym_false] = ACTIONS(2499), - [sym_null] = ACTIONS(2499), + [464] = { + [sym_identifier] = ACTIONS(2639), + [aux_sym_preproc_include_token1] = ACTIONS(2639), + [aux_sym_preproc_def_token1] = ACTIONS(2639), + [aux_sym_preproc_if_token1] = ACTIONS(2639), + [aux_sym_preproc_if_token2] = ACTIONS(2639), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2639), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2639), + [aux_sym_preproc_else_token1] = ACTIONS(2639), + [aux_sym_preproc_elif_token1] = ACTIONS(2639), + [sym_preproc_directive] = ACTIONS(2639), + [anon_sym_LPAREN2] = ACTIONS(2641), + [anon_sym_BANG] = ACTIONS(2641), + [anon_sym_TILDE] = ACTIONS(2641), + [anon_sym_DASH] = ACTIONS(2639), + [anon_sym_PLUS] = ACTIONS(2639), + [anon_sym_STAR] = ACTIONS(2641), + [anon_sym_AMP_AMP] = ACTIONS(2641), + [anon_sym_AMP] = ACTIONS(2639), + [anon_sym_SEMI] = ACTIONS(2641), + [anon_sym_typedef] = ACTIONS(2639), + [anon_sym_extern] = ACTIONS(2639), + [anon_sym___attribute__] = ACTIONS(2639), + [anon_sym_COLON_COLON] = ACTIONS(2641), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2641), + [anon_sym___declspec] = ACTIONS(2639), + [anon_sym___based] = ACTIONS(2639), + [anon_sym___cdecl] = ACTIONS(2639), + [anon_sym___clrcall] = ACTIONS(2639), + [anon_sym___stdcall] = ACTIONS(2639), + [anon_sym___fastcall] = ACTIONS(2639), + [anon_sym___thiscall] = ACTIONS(2639), + [anon_sym___vectorcall] = ACTIONS(2639), + [anon_sym_LBRACE] = ACTIONS(2641), + [anon_sym_LBRACK] = ACTIONS(2639), + [anon_sym_static] = ACTIONS(2639), + [anon_sym_register] = ACTIONS(2639), + [anon_sym_inline] = ACTIONS(2639), + [anon_sym_thread_local] = ACTIONS(2639), + [anon_sym_const] = ACTIONS(2639), + [anon_sym_volatile] = ACTIONS(2639), + [anon_sym_restrict] = ACTIONS(2639), + [anon_sym__Atomic] = ACTIONS(2639), + [anon_sym_mutable] = ACTIONS(2639), + [anon_sym_constexpr] = ACTIONS(2639), + [anon_sym_constinit] = ACTIONS(2639), + [anon_sym_consteval] = ACTIONS(2639), + [anon_sym_signed] = ACTIONS(2639), + [anon_sym_unsigned] = ACTIONS(2639), + [anon_sym_long] = ACTIONS(2639), + [anon_sym_short] = ACTIONS(2639), + [sym_primitive_type] = ACTIONS(2639), + [anon_sym_enum] = ACTIONS(2639), + [anon_sym_class] = ACTIONS(2639), + [anon_sym_struct] = ACTIONS(2639), + [anon_sym_union] = ACTIONS(2639), + [anon_sym_if] = ACTIONS(2639), + [anon_sym_else] = ACTIONS(2639), + [anon_sym_switch] = ACTIONS(2639), + [anon_sym_case] = ACTIONS(2639), + [anon_sym_default] = ACTIONS(2639), + [anon_sym_while] = ACTIONS(2639), + [anon_sym_do] = ACTIONS(2639), + [anon_sym_for] = ACTIONS(2639), + [anon_sym_return] = ACTIONS(2639), + [anon_sym_break] = ACTIONS(2639), + [anon_sym_continue] = ACTIONS(2639), + [anon_sym_goto] = ACTIONS(2639), + [anon_sym_not] = ACTIONS(2639), + [anon_sym_compl] = ACTIONS(2639), + [anon_sym_DASH_DASH] = ACTIONS(2641), + [anon_sym_PLUS_PLUS] = ACTIONS(2641), + [anon_sym_sizeof] = ACTIONS(2639), + [sym_number_literal] = ACTIONS(2641), + [anon_sym_L_SQUOTE] = ACTIONS(2641), + [anon_sym_u_SQUOTE] = ACTIONS(2641), + [anon_sym_U_SQUOTE] = ACTIONS(2641), + [anon_sym_u8_SQUOTE] = ACTIONS(2641), + [anon_sym_SQUOTE] = ACTIONS(2641), + [anon_sym_L_DQUOTE] = ACTIONS(2641), + [anon_sym_u_DQUOTE] = ACTIONS(2641), + [anon_sym_U_DQUOTE] = ACTIONS(2641), + [anon_sym_u8_DQUOTE] = ACTIONS(2641), + [anon_sym_DQUOTE] = ACTIONS(2641), + [sym_true] = ACTIONS(2639), + [sym_false] = ACTIONS(2639), + [sym_null] = ACTIONS(2639), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2499), - [anon_sym_decltype] = ACTIONS(2499), - [anon_sym_virtual] = ACTIONS(2499), - [anon_sym_explicit] = ACTIONS(2499), - [anon_sym_typename] = ACTIONS(2499), - [anon_sym_template] = ACTIONS(2499), - [anon_sym_operator] = ACTIONS(2499), - [anon_sym_try] = ACTIONS(2499), - [anon_sym_delete] = ACTIONS(2499), - [anon_sym_throw] = ACTIONS(2499), - [anon_sym_namespace] = ACTIONS(2499), - [anon_sym_using] = ACTIONS(2499), - [anon_sym_static_assert] = ACTIONS(2499), - [anon_sym_concept] = ACTIONS(2499), - [anon_sym_co_return] = ACTIONS(2499), - [anon_sym_co_yield] = ACTIONS(2499), - [anon_sym_co_await] = ACTIONS(2499), - [anon_sym_new] = ACTIONS(2499), - [anon_sym_requires] = ACTIONS(2499), - [sym_this] = ACTIONS(2499), - [sym_nullptr] = ACTIONS(2499), - [sym_raw_string_literal] = ACTIONS(2501), - }, - [566] = { - [ts_builtin_sym_end] = ACTIONS(2349), - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [567] = { - [ts_builtin_sym_end] = ACTIONS(2349), - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [568] = { - [ts_builtin_sym_end] = ACTIONS(2349), - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [569] = { - [ts_builtin_sym_end] = ACTIONS(2349), - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [570] = { - [ts_builtin_sym_end] = ACTIONS(2349), - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [571] = { - [ts_builtin_sym_end] = ACTIONS(2349), - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), + [sym_auto] = ACTIONS(2639), + [anon_sym_decltype] = ACTIONS(2639), + [anon_sym_virtual] = ACTIONS(2639), + [anon_sym_explicit] = ACTIONS(2639), + [anon_sym_typename] = ACTIONS(2639), + [anon_sym_template] = ACTIONS(2639), + [anon_sym_operator] = ACTIONS(2639), + [anon_sym_try] = ACTIONS(2639), + [anon_sym_delete] = ACTIONS(2639), + [anon_sym_throw] = ACTIONS(2639), + [anon_sym_namespace] = ACTIONS(2639), + [anon_sym_using] = ACTIONS(2639), + [anon_sym_static_assert] = ACTIONS(2639), + [anon_sym_concept] = ACTIONS(2639), + [anon_sym_co_return] = ACTIONS(2639), + [anon_sym_co_yield] = ACTIONS(2639), + [anon_sym_co_await] = ACTIONS(2639), + [anon_sym_new] = ACTIONS(2639), + [anon_sym_requires] = ACTIONS(2639), + [sym_this] = ACTIONS(2639), + [sym_nullptr] = ACTIONS(2639), + [sym_raw_string_literal] = ACTIONS(2641), }, - [572] = { - [ts_builtin_sym_end] = ACTIONS(2349), - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), + [465] = { + [sym_identifier] = ACTIONS(2643), + [aux_sym_preproc_include_token1] = ACTIONS(2643), + [aux_sym_preproc_def_token1] = ACTIONS(2643), + [aux_sym_preproc_if_token1] = ACTIONS(2643), + [aux_sym_preproc_if_token2] = ACTIONS(2643), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2643), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2643), + [aux_sym_preproc_else_token1] = ACTIONS(2643), + [aux_sym_preproc_elif_token1] = ACTIONS(2643), + [sym_preproc_directive] = ACTIONS(2643), + [anon_sym_LPAREN2] = ACTIONS(2645), + [anon_sym_BANG] = ACTIONS(2645), + [anon_sym_TILDE] = ACTIONS(2645), + [anon_sym_DASH] = ACTIONS(2643), + [anon_sym_PLUS] = ACTIONS(2643), + [anon_sym_STAR] = ACTIONS(2645), + [anon_sym_AMP_AMP] = ACTIONS(2645), + [anon_sym_AMP] = ACTIONS(2643), + [anon_sym_SEMI] = ACTIONS(2645), + [anon_sym_typedef] = ACTIONS(2643), + [anon_sym_extern] = ACTIONS(2643), + [anon_sym___attribute__] = ACTIONS(2643), + [anon_sym_COLON_COLON] = ACTIONS(2645), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2645), + [anon_sym___declspec] = ACTIONS(2643), + [anon_sym___based] = ACTIONS(2643), + [anon_sym___cdecl] = ACTIONS(2643), + [anon_sym___clrcall] = ACTIONS(2643), + [anon_sym___stdcall] = ACTIONS(2643), + [anon_sym___fastcall] = ACTIONS(2643), + [anon_sym___thiscall] = ACTIONS(2643), + [anon_sym___vectorcall] = ACTIONS(2643), + [anon_sym_LBRACE] = ACTIONS(2645), + [anon_sym_LBRACK] = ACTIONS(2643), + [anon_sym_static] = ACTIONS(2643), + [anon_sym_register] = ACTIONS(2643), + [anon_sym_inline] = ACTIONS(2643), + [anon_sym_thread_local] = ACTIONS(2643), + [anon_sym_const] = ACTIONS(2643), + [anon_sym_volatile] = ACTIONS(2643), + [anon_sym_restrict] = ACTIONS(2643), + [anon_sym__Atomic] = ACTIONS(2643), + [anon_sym_mutable] = ACTIONS(2643), + [anon_sym_constexpr] = ACTIONS(2643), + [anon_sym_constinit] = ACTIONS(2643), + [anon_sym_consteval] = ACTIONS(2643), + [anon_sym_signed] = ACTIONS(2643), + [anon_sym_unsigned] = ACTIONS(2643), + [anon_sym_long] = ACTIONS(2643), + [anon_sym_short] = ACTIONS(2643), + [sym_primitive_type] = ACTIONS(2643), + [anon_sym_enum] = ACTIONS(2643), + [anon_sym_class] = ACTIONS(2643), + [anon_sym_struct] = ACTIONS(2643), + [anon_sym_union] = ACTIONS(2643), + [anon_sym_if] = ACTIONS(2643), + [anon_sym_else] = ACTIONS(2643), + [anon_sym_switch] = ACTIONS(2643), + [anon_sym_case] = ACTIONS(2643), + [anon_sym_default] = ACTIONS(2643), + [anon_sym_while] = ACTIONS(2643), + [anon_sym_do] = ACTIONS(2643), + [anon_sym_for] = ACTIONS(2643), + [anon_sym_return] = ACTIONS(2643), + [anon_sym_break] = ACTIONS(2643), + [anon_sym_continue] = ACTIONS(2643), + [anon_sym_goto] = ACTIONS(2643), + [anon_sym_not] = ACTIONS(2643), + [anon_sym_compl] = ACTIONS(2643), + [anon_sym_DASH_DASH] = ACTIONS(2645), + [anon_sym_PLUS_PLUS] = ACTIONS(2645), + [anon_sym_sizeof] = ACTIONS(2643), + [sym_number_literal] = ACTIONS(2645), + [anon_sym_L_SQUOTE] = ACTIONS(2645), + [anon_sym_u_SQUOTE] = ACTIONS(2645), + [anon_sym_U_SQUOTE] = ACTIONS(2645), + [anon_sym_u8_SQUOTE] = ACTIONS(2645), + [anon_sym_SQUOTE] = ACTIONS(2645), + [anon_sym_L_DQUOTE] = ACTIONS(2645), + [anon_sym_u_DQUOTE] = ACTIONS(2645), + [anon_sym_U_DQUOTE] = ACTIONS(2645), + [anon_sym_u8_DQUOTE] = ACTIONS(2645), + [anon_sym_DQUOTE] = ACTIONS(2645), + [sym_true] = ACTIONS(2643), + [sym_false] = ACTIONS(2643), + [sym_null] = ACTIONS(2643), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2643), + [anon_sym_decltype] = ACTIONS(2643), + [anon_sym_virtual] = ACTIONS(2643), + [anon_sym_explicit] = ACTIONS(2643), + [anon_sym_typename] = ACTIONS(2643), + [anon_sym_template] = ACTIONS(2643), + [anon_sym_operator] = ACTIONS(2643), + [anon_sym_try] = ACTIONS(2643), + [anon_sym_delete] = ACTIONS(2643), + [anon_sym_throw] = ACTIONS(2643), + [anon_sym_namespace] = ACTIONS(2643), + [anon_sym_using] = ACTIONS(2643), + [anon_sym_static_assert] = ACTIONS(2643), + [anon_sym_concept] = ACTIONS(2643), + [anon_sym_co_return] = ACTIONS(2643), + [anon_sym_co_yield] = ACTIONS(2643), + [anon_sym_co_await] = ACTIONS(2643), + [anon_sym_new] = ACTIONS(2643), + [anon_sym_requires] = ACTIONS(2643), + [sym_this] = ACTIONS(2643), + [sym_nullptr] = ACTIONS(2643), + [sym_raw_string_literal] = ACTIONS(2645), }, - [573] = { - [ts_builtin_sym_end] = ACTIONS(2349), - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), + [466] = { + [sym_identifier] = ACTIONS(2635), + [aux_sym_preproc_include_token1] = ACTIONS(2635), + [aux_sym_preproc_def_token1] = ACTIONS(2635), + [aux_sym_preproc_if_token1] = ACTIONS(2635), + [aux_sym_preproc_if_token2] = ACTIONS(2635), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2635), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2635), + [aux_sym_preproc_else_token1] = ACTIONS(2635), + [aux_sym_preproc_elif_token1] = ACTIONS(2635), + [sym_preproc_directive] = ACTIONS(2635), + [anon_sym_LPAREN2] = ACTIONS(2637), + [anon_sym_BANG] = ACTIONS(2637), + [anon_sym_TILDE] = ACTIONS(2637), + [anon_sym_DASH] = ACTIONS(2635), + [anon_sym_PLUS] = ACTIONS(2635), + [anon_sym_STAR] = ACTIONS(2637), + [anon_sym_AMP_AMP] = ACTIONS(2637), + [anon_sym_AMP] = ACTIONS(2635), + [anon_sym_SEMI] = ACTIONS(2637), + [anon_sym_typedef] = ACTIONS(2635), + [anon_sym_extern] = ACTIONS(2635), + [anon_sym___attribute__] = ACTIONS(2635), + [anon_sym_COLON_COLON] = ACTIONS(2637), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2637), + [anon_sym___declspec] = ACTIONS(2635), + [anon_sym___based] = ACTIONS(2635), + [anon_sym___cdecl] = ACTIONS(2635), + [anon_sym___clrcall] = ACTIONS(2635), + [anon_sym___stdcall] = ACTIONS(2635), + [anon_sym___fastcall] = ACTIONS(2635), + [anon_sym___thiscall] = ACTIONS(2635), + [anon_sym___vectorcall] = ACTIONS(2635), + [anon_sym_LBRACE] = ACTIONS(2637), + [anon_sym_LBRACK] = ACTIONS(2635), + [anon_sym_static] = ACTIONS(2635), + [anon_sym_register] = ACTIONS(2635), + [anon_sym_inline] = ACTIONS(2635), + [anon_sym_thread_local] = ACTIONS(2635), + [anon_sym_const] = ACTIONS(2635), + [anon_sym_volatile] = ACTIONS(2635), + [anon_sym_restrict] = ACTIONS(2635), + [anon_sym__Atomic] = ACTIONS(2635), + [anon_sym_mutable] = ACTIONS(2635), + [anon_sym_constexpr] = ACTIONS(2635), + [anon_sym_constinit] = ACTIONS(2635), + [anon_sym_consteval] = ACTIONS(2635), + [anon_sym_signed] = ACTIONS(2635), + [anon_sym_unsigned] = ACTIONS(2635), + [anon_sym_long] = ACTIONS(2635), + [anon_sym_short] = ACTIONS(2635), + [sym_primitive_type] = ACTIONS(2635), + [anon_sym_enum] = ACTIONS(2635), + [anon_sym_class] = ACTIONS(2635), + [anon_sym_struct] = ACTIONS(2635), + [anon_sym_union] = ACTIONS(2635), + [anon_sym_if] = ACTIONS(2635), + [anon_sym_else] = ACTIONS(2635), + [anon_sym_switch] = ACTIONS(2635), + [anon_sym_case] = ACTIONS(2635), + [anon_sym_default] = ACTIONS(2635), + [anon_sym_while] = ACTIONS(2635), + [anon_sym_do] = ACTIONS(2635), + [anon_sym_for] = ACTIONS(2635), + [anon_sym_return] = ACTIONS(2635), + [anon_sym_break] = ACTIONS(2635), + [anon_sym_continue] = ACTIONS(2635), + [anon_sym_goto] = ACTIONS(2635), + [anon_sym_not] = ACTIONS(2635), + [anon_sym_compl] = ACTIONS(2635), + [anon_sym_DASH_DASH] = ACTIONS(2637), + [anon_sym_PLUS_PLUS] = ACTIONS(2637), + [anon_sym_sizeof] = ACTIONS(2635), + [sym_number_literal] = ACTIONS(2637), + [anon_sym_L_SQUOTE] = ACTIONS(2637), + [anon_sym_u_SQUOTE] = ACTIONS(2637), + [anon_sym_U_SQUOTE] = ACTIONS(2637), + [anon_sym_u8_SQUOTE] = ACTIONS(2637), + [anon_sym_SQUOTE] = ACTIONS(2637), + [anon_sym_L_DQUOTE] = ACTIONS(2637), + [anon_sym_u_DQUOTE] = ACTIONS(2637), + [anon_sym_U_DQUOTE] = ACTIONS(2637), + [anon_sym_u8_DQUOTE] = ACTIONS(2637), + [anon_sym_DQUOTE] = ACTIONS(2637), + [sym_true] = ACTIONS(2635), + [sym_false] = ACTIONS(2635), + [sym_null] = ACTIONS(2635), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2635), + [anon_sym_decltype] = ACTIONS(2635), + [anon_sym_virtual] = ACTIONS(2635), + [anon_sym_explicit] = ACTIONS(2635), + [anon_sym_typename] = ACTIONS(2635), + [anon_sym_template] = ACTIONS(2635), + [anon_sym_operator] = ACTIONS(2635), + [anon_sym_try] = ACTIONS(2635), + [anon_sym_delete] = ACTIONS(2635), + [anon_sym_throw] = ACTIONS(2635), + [anon_sym_namespace] = ACTIONS(2635), + [anon_sym_using] = ACTIONS(2635), + [anon_sym_static_assert] = ACTIONS(2635), + [anon_sym_concept] = ACTIONS(2635), + [anon_sym_co_return] = ACTIONS(2635), + [anon_sym_co_yield] = ACTIONS(2635), + [anon_sym_co_await] = ACTIONS(2635), + [anon_sym_new] = ACTIONS(2635), + [anon_sym_requires] = ACTIONS(2635), + [sym_this] = ACTIONS(2635), + [sym_nullptr] = ACTIONS(2635), + [sym_raw_string_literal] = ACTIONS(2637), }, - [574] = { - [ts_builtin_sym_end] = ACTIONS(2505), - [sym_identifier] = ACTIONS(2503), - [aux_sym_preproc_include_token1] = ACTIONS(2503), - [aux_sym_preproc_def_token1] = ACTIONS(2503), - [aux_sym_preproc_if_token1] = ACTIONS(2503), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2503), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2503), - [sym_preproc_directive] = ACTIONS(2503), - [anon_sym_LPAREN2] = ACTIONS(2505), - [anon_sym_BANG] = ACTIONS(2505), - [anon_sym_TILDE] = ACTIONS(2505), - [anon_sym_DASH] = ACTIONS(2503), - [anon_sym_PLUS] = ACTIONS(2503), - [anon_sym_STAR] = ACTIONS(2505), - [anon_sym_AMP_AMP] = ACTIONS(2505), - [anon_sym_AMP] = ACTIONS(2503), - [anon_sym_SEMI] = ACTIONS(2505), - [anon_sym_typedef] = ACTIONS(2503), - [anon_sym_extern] = ACTIONS(2503), - [anon_sym___attribute__] = ACTIONS(2503), - [anon_sym_COLON_COLON] = ACTIONS(2505), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2505), - [anon_sym___declspec] = ACTIONS(2503), - [anon_sym___based] = ACTIONS(2503), - [anon_sym___cdecl] = ACTIONS(2503), - [anon_sym___clrcall] = ACTIONS(2503), - [anon_sym___stdcall] = ACTIONS(2503), - [anon_sym___fastcall] = ACTIONS(2503), - [anon_sym___thiscall] = ACTIONS(2503), - [anon_sym___vectorcall] = ACTIONS(2503), - [anon_sym_LBRACE] = ACTIONS(2505), - [anon_sym_LBRACK] = ACTIONS(2503), - [anon_sym_static] = ACTIONS(2503), - [anon_sym_register] = ACTIONS(2503), - [anon_sym_inline] = ACTIONS(2503), - [anon_sym_thread_local] = ACTIONS(2503), - [anon_sym_const] = ACTIONS(2503), - [anon_sym_volatile] = ACTIONS(2503), - [anon_sym_restrict] = ACTIONS(2503), - [anon_sym__Atomic] = ACTIONS(2503), - [anon_sym_mutable] = ACTIONS(2503), - [anon_sym_constexpr] = ACTIONS(2503), - [anon_sym_constinit] = ACTIONS(2503), - [anon_sym_consteval] = ACTIONS(2503), - [anon_sym_signed] = ACTIONS(2503), - [anon_sym_unsigned] = ACTIONS(2503), - [anon_sym_long] = ACTIONS(2503), - [anon_sym_short] = ACTIONS(2503), - [sym_primitive_type] = ACTIONS(2503), - [anon_sym_enum] = ACTIONS(2503), - [anon_sym_class] = ACTIONS(2503), - [anon_sym_struct] = ACTIONS(2503), - [anon_sym_union] = ACTIONS(2503), - [anon_sym_if] = ACTIONS(2503), - [anon_sym_else] = ACTIONS(2503), - [anon_sym_switch] = ACTIONS(2503), - [anon_sym_case] = ACTIONS(2503), - [anon_sym_default] = ACTIONS(2503), - [anon_sym_while] = ACTIONS(2503), - [anon_sym_do] = ACTIONS(2503), - [anon_sym_for] = ACTIONS(2503), - [anon_sym_return] = ACTIONS(2503), - [anon_sym_break] = ACTIONS(2503), - [anon_sym_continue] = ACTIONS(2503), - [anon_sym_goto] = ACTIONS(2503), - [anon_sym_DASH_DASH] = ACTIONS(2505), - [anon_sym_PLUS_PLUS] = ACTIONS(2505), - [anon_sym_sizeof] = ACTIONS(2503), - [sym_number_literal] = ACTIONS(2505), - [anon_sym_L_SQUOTE] = ACTIONS(2505), - [anon_sym_u_SQUOTE] = ACTIONS(2505), - [anon_sym_U_SQUOTE] = ACTIONS(2505), - [anon_sym_u8_SQUOTE] = ACTIONS(2505), - [anon_sym_SQUOTE] = ACTIONS(2505), - [anon_sym_L_DQUOTE] = ACTIONS(2505), - [anon_sym_u_DQUOTE] = ACTIONS(2505), - [anon_sym_U_DQUOTE] = ACTIONS(2505), - [anon_sym_u8_DQUOTE] = ACTIONS(2505), - [anon_sym_DQUOTE] = ACTIONS(2505), - [sym_true] = ACTIONS(2503), - [sym_false] = ACTIONS(2503), - [sym_null] = ACTIONS(2503), + [467] = { + [sym_identifier] = ACTIONS(2647), + [aux_sym_preproc_include_token1] = ACTIONS(2647), + [aux_sym_preproc_def_token1] = ACTIONS(2647), + [aux_sym_preproc_if_token1] = ACTIONS(2647), + [aux_sym_preproc_if_token2] = ACTIONS(2647), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2647), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2647), + [aux_sym_preproc_else_token1] = ACTIONS(2647), + [aux_sym_preproc_elif_token1] = ACTIONS(2647), + [sym_preproc_directive] = ACTIONS(2647), + [anon_sym_LPAREN2] = ACTIONS(2649), + [anon_sym_BANG] = ACTIONS(2649), + [anon_sym_TILDE] = ACTIONS(2649), + [anon_sym_DASH] = ACTIONS(2647), + [anon_sym_PLUS] = ACTIONS(2647), + [anon_sym_STAR] = ACTIONS(2649), + [anon_sym_AMP_AMP] = ACTIONS(2649), + [anon_sym_AMP] = ACTIONS(2647), + [anon_sym_SEMI] = ACTIONS(2649), + [anon_sym_typedef] = ACTIONS(2647), + [anon_sym_extern] = ACTIONS(2647), + [anon_sym___attribute__] = ACTIONS(2647), + [anon_sym_COLON_COLON] = ACTIONS(2649), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2649), + [anon_sym___declspec] = ACTIONS(2647), + [anon_sym___based] = ACTIONS(2647), + [anon_sym___cdecl] = ACTIONS(2647), + [anon_sym___clrcall] = ACTIONS(2647), + [anon_sym___stdcall] = ACTIONS(2647), + [anon_sym___fastcall] = ACTIONS(2647), + [anon_sym___thiscall] = ACTIONS(2647), + [anon_sym___vectorcall] = ACTIONS(2647), + [anon_sym_LBRACE] = ACTIONS(2649), + [anon_sym_LBRACK] = ACTIONS(2647), + [anon_sym_static] = ACTIONS(2647), + [anon_sym_register] = ACTIONS(2647), + [anon_sym_inline] = ACTIONS(2647), + [anon_sym_thread_local] = ACTIONS(2647), + [anon_sym_const] = ACTIONS(2647), + [anon_sym_volatile] = ACTIONS(2647), + [anon_sym_restrict] = ACTIONS(2647), + [anon_sym__Atomic] = ACTIONS(2647), + [anon_sym_mutable] = ACTIONS(2647), + [anon_sym_constexpr] = ACTIONS(2647), + [anon_sym_constinit] = ACTIONS(2647), + [anon_sym_consteval] = ACTIONS(2647), + [anon_sym_signed] = ACTIONS(2647), + [anon_sym_unsigned] = ACTIONS(2647), + [anon_sym_long] = ACTIONS(2647), + [anon_sym_short] = ACTIONS(2647), + [sym_primitive_type] = ACTIONS(2647), + [anon_sym_enum] = ACTIONS(2647), + [anon_sym_class] = ACTIONS(2647), + [anon_sym_struct] = ACTIONS(2647), + [anon_sym_union] = ACTIONS(2647), + [anon_sym_if] = ACTIONS(2647), + [anon_sym_else] = ACTIONS(2647), + [anon_sym_switch] = ACTIONS(2647), + [anon_sym_case] = ACTIONS(2647), + [anon_sym_default] = ACTIONS(2647), + [anon_sym_while] = ACTIONS(2647), + [anon_sym_do] = ACTIONS(2647), + [anon_sym_for] = ACTIONS(2647), + [anon_sym_return] = ACTIONS(2647), + [anon_sym_break] = ACTIONS(2647), + [anon_sym_continue] = ACTIONS(2647), + [anon_sym_goto] = ACTIONS(2647), + [anon_sym_not] = ACTIONS(2647), + [anon_sym_compl] = ACTIONS(2647), + [anon_sym_DASH_DASH] = ACTIONS(2649), + [anon_sym_PLUS_PLUS] = ACTIONS(2649), + [anon_sym_sizeof] = ACTIONS(2647), + [sym_number_literal] = ACTIONS(2649), + [anon_sym_L_SQUOTE] = ACTIONS(2649), + [anon_sym_u_SQUOTE] = ACTIONS(2649), + [anon_sym_U_SQUOTE] = ACTIONS(2649), + [anon_sym_u8_SQUOTE] = ACTIONS(2649), + [anon_sym_SQUOTE] = ACTIONS(2649), + [anon_sym_L_DQUOTE] = ACTIONS(2649), + [anon_sym_u_DQUOTE] = ACTIONS(2649), + [anon_sym_U_DQUOTE] = ACTIONS(2649), + [anon_sym_u8_DQUOTE] = ACTIONS(2649), + [anon_sym_DQUOTE] = ACTIONS(2649), + [sym_true] = ACTIONS(2647), + [sym_false] = ACTIONS(2647), + [sym_null] = ACTIONS(2647), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2503), - [anon_sym_decltype] = ACTIONS(2503), - [anon_sym_virtual] = ACTIONS(2503), - [anon_sym_explicit] = ACTIONS(2503), - [anon_sym_typename] = ACTIONS(2503), - [anon_sym_template] = ACTIONS(2503), - [anon_sym_operator] = ACTIONS(2503), - [anon_sym_try] = ACTIONS(2503), - [anon_sym_delete] = ACTIONS(2503), - [anon_sym_throw] = ACTIONS(2503), - [anon_sym_namespace] = ACTIONS(2503), - [anon_sym_using] = ACTIONS(2503), - [anon_sym_static_assert] = ACTIONS(2503), - [anon_sym_concept] = ACTIONS(2503), - [anon_sym_co_return] = ACTIONS(2503), - [anon_sym_co_yield] = ACTIONS(2503), - [anon_sym_co_await] = ACTIONS(2503), - [anon_sym_new] = ACTIONS(2503), - [anon_sym_requires] = ACTIONS(2503), - [sym_this] = ACTIONS(2503), - [sym_nullptr] = ACTIONS(2503), - [sym_raw_string_literal] = ACTIONS(2505), - }, - [575] = { - [ts_builtin_sym_end] = ACTIONS(2509), - [sym_identifier] = ACTIONS(2507), - [aux_sym_preproc_include_token1] = ACTIONS(2507), - [aux_sym_preproc_def_token1] = ACTIONS(2507), - [aux_sym_preproc_if_token1] = ACTIONS(2507), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2507), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2507), - [sym_preproc_directive] = ACTIONS(2507), - [anon_sym_LPAREN2] = ACTIONS(2509), - [anon_sym_BANG] = ACTIONS(2509), - [anon_sym_TILDE] = ACTIONS(2509), - [anon_sym_DASH] = ACTIONS(2507), - [anon_sym_PLUS] = ACTIONS(2507), - [anon_sym_STAR] = ACTIONS(2509), - [anon_sym_AMP_AMP] = ACTIONS(2509), - [anon_sym_AMP] = ACTIONS(2507), - [anon_sym_SEMI] = ACTIONS(2509), - [anon_sym_typedef] = ACTIONS(2507), - [anon_sym_extern] = ACTIONS(2507), - [anon_sym___attribute__] = ACTIONS(2507), - [anon_sym_COLON_COLON] = ACTIONS(2509), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2509), - [anon_sym___declspec] = ACTIONS(2507), - [anon_sym___based] = ACTIONS(2507), - [anon_sym___cdecl] = ACTIONS(2507), - [anon_sym___clrcall] = ACTIONS(2507), - [anon_sym___stdcall] = ACTIONS(2507), - [anon_sym___fastcall] = ACTIONS(2507), - [anon_sym___thiscall] = ACTIONS(2507), - [anon_sym___vectorcall] = ACTIONS(2507), - [anon_sym_LBRACE] = ACTIONS(2509), - [anon_sym_LBRACK] = ACTIONS(2507), - [anon_sym_static] = ACTIONS(2507), - [anon_sym_register] = ACTIONS(2507), - [anon_sym_inline] = ACTIONS(2507), - [anon_sym_thread_local] = ACTIONS(2507), - [anon_sym_const] = ACTIONS(2507), - [anon_sym_volatile] = ACTIONS(2507), - [anon_sym_restrict] = ACTIONS(2507), - [anon_sym__Atomic] = ACTIONS(2507), - [anon_sym_mutable] = ACTIONS(2507), - [anon_sym_constexpr] = ACTIONS(2507), - [anon_sym_constinit] = ACTIONS(2507), - [anon_sym_consteval] = ACTIONS(2507), - [anon_sym_signed] = ACTIONS(2507), - [anon_sym_unsigned] = ACTIONS(2507), - [anon_sym_long] = ACTIONS(2507), - [anon_sym_short] = ACTIONS(2507), - [sym_primitive_type] = ACTIONS(2507), - [anon_sym_enum] = ACTIONS(2507), - [anon_sym_class] = ACTIONS(2507), - [anon_sym_struct] = ACTIONS(2507), - [anon_sym_union] = ACTIONS(2507), - [anon_sym_if] = ACTIONS(2507), - [anon_sym_else] = ACTIONS(2507), - [anon_sym_switch] = ACTIONS(2507), - [anon_sym_case] = ACTIONS(2507), - [anon_sym_default] = ACTIONS(2507), - [anon_sym_while] = ACTIONS(2507), - [anon_sym_do] = ACTIONS(2507), - [anon_sym_for] = ACTIONS(2507), - [anon_sym_return] = ACTIONS(2507), - [anon_sym_break] = ACTIONS(2507), - [anon_sym_continue] = ACTIONS(2507), - [anon_sym_goto] = ACTIONS(2507), - [anon_sym_DASH_DASH] = ACTIONS(2509), - [anon_sym_PLUS_PLUS] = ACTIONS(2509), - [anon_sym_sizeof] = ACTIONS(2507), - [sym_number_literal] = ACTIONS(2509), - [anon_sym_L_SQUOTE] = ACTIONS(2509), - [anon_sym_u_SQUOTE] = ACTIONS(2509), - [anon_sym_U_SQUOTE] = ACTIONS(2509), - [anon_sym_u8_SQUOTE] = ACTIONS(2509), - [anon_sym_SQUOTE] = ACTIONS(2509), - [anon_sym_L_DQUOTE] = ACTIONS(2509), - [anon_sym_u_DQUOTE] = ACTIONS(2509), - [anon_sym_U_DQUOTE] = ACTIONS(2509), - [anon_sym_u8_DQUOTE] = ACTIONS(2509), - [anon_sym_DQUOTE] = ACTIONS(2509), - [sym_true] = ACTIONS(2507), - [sym_false] = ACTIONS(2507), - [sym_null] = ACTIONS(2507), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2507), - [anon_sym_decltype] = ACTIONS(2507), - [anon_sym_virtual] = ACTIONS(2507), - [anon_sym_explicit] = ACTIONS(2507), - [anon_sym_typename] = ACTIONS(2507), - [anon_sym_template] = ACTIONS(2507), - [anon_sym_operator] = ACTIONS(2507), - [anon_sym_try] = ACTIONS(2507), - [anon_sym_delete] = ACTIONS(2507), - [anon_sym_throw] = ACTIONS(2507), - [anon_sym_namespace] = ACTIONS(2507), - [anon_sym_using] = ACTIONS(2507), - [anon_sym_static_assert] = ACTIONS(2507), - [anon_sym_concept] = ACTIONS(2507), - [anon_sym_co_return] = ACTIONS(2507), - [anon_sym_co_yield] = ACTIONS(2507), - [anon_sym_co_await] = ACTIONS(2507), - [anon_sym_new] = ACTIONS(2507), - [anon_sym_requires] = ACTIONS(2507), - [sym_this] = ACTIONS(2507), - [sym_nullptr] = ACTIONS(2507), - [sym_raw_string_literal] = ACTIONS(2509), + [sym_auto] = ACTIONS(2647), + [anon_sym_decltype] = ACTIONS(2647), + [anon_sym_virtual] = ACTIONS(2647), + [anon_sym_explicit] = ACTIONS(2647), + [anon_sym_typename] = ACTIONS(2647), + [anon_sym_template] = ACTIONS(2647), + [anon_sym_operator] = ACTIONS(2647), + [anon_sym_try] = ACTIONS(2647), + [anon_sym_delete] = ACTIONS(2647), + [anon_sym_throw] = ACTIONS(2647), + [anon_sym_namespace] = ACTIONS(2647), + [anon_sym_using] = ACTIONS(2647), + [anon_sym_static_assert] = ACTIONS(2647), + [anon_sym_concept] = ACTIONS(2647), + [anon_sym_co_return] = ACTIONS(2647), + [anon_sym_co_yield] = ACTIONS(2647), + [anon_sym_co_await] = ACTIONS(2647), + [anon_sym_new] = ACTIONS(2647), + [anon_sym_requires] = ACTIONS(2647), + [sym_this] = ACTIONS(2647), + [sym_nullptr] = ACTIONS(2647), + [sym_raw_string_literal] = ACTIONS(2649), }, - [576] = { - [ts_builtin_sym_end] = ACTIONS(2349), - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), + [468] = { + [sym_catch_clause] = STATE(340), + [aux_sym_constructor_try_statement_repeat1] = STATE(340), + [sym_identifier] = ACTIONS(2424), + [aux_sym_preproc_include_token1] = ACTIONS(2424), + [aux_sym_preproc_def_token1] = ACTIONS(2424), + [aux_sym_preproc_if_token1] = ACTIONS(2424), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2424), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2424), + [sym_preproc_directive] = ACTIONS(2424), + [anon_sym_LPAREN2] = ACTIONS(2426), + [anon_sym_BANG] = ACTIONS(2426), + [anon_sym_TILDE] = ACTIONS(2426), + [anon_sym_DASH] = ACTIONS(2424), + [anon_sym_PLUS] = ACTIONS(2424), + [anon_sym_STAR] = ACTIONS(2426), + [anon_sym_AMP_AMP] = ACTIONS(2426), + [anon_sym_AMP] = ACTIONS(2424), + [anon_sym_SEMI] = ACTIONS(2426), + [anon_sym_typedef] = ACTIONS(2424), + [anon_sym_extern] = ACTIONS(2424), + [anon_sym___attribute__] = ACTIONS(2424), + [anon_sym_COLON_COLON] = ACTIONS(2426), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2426), + [anon_sym___declspec] = ACTIONS(2424), + [anon_sym___based] = ACTIONS(2424), + [anon_sym___cdecl] = ACTIONS(2424), + [anon_sym___clrcall] = ACTIONS(2424), + [anon_sym___stdcall] = ACTIONS(2424), + [anon_sym___fastcall] = ACTIONS(2424), + [anon_sym___thiscall] = ACTIONS(2424), + [anon_sym___vectorcall] = ACTIONS(2424), + [anon_sym_LBRACE] = ACTIONS(2426), + [anon_sym_RBRACE] = ACTIONS(2426), + [anon_sym_LBRACK] = ACTIONS(2424), + [anon_sym_static] = ACTIONS(2424), + [anon_sym_register] = ACTIONS(2424), + [anon_sym_inline] = ACTIONS(2424), + [anon_sym_thread_local] = ACTIONS(2424), + [anon_sym_const] = ACTIONS(2424), + [anon_sym_volatile] = ACTIONS(2424), + [anon_sym_restrict] = ACTIONS(2424), + [anon_sym__Atomic] = ACTIONS(2424), + [anon_sym_mutable] = ACTIONS(2424), + [anon_sym_constexpr] = ACTIONS(2424), + [anon_sym_constinit] = ACTIONS(2424), + [anon_sym_consteval] = ACTIONS(2424), + [anon_sym_signed] = ACTIONS(2424), + [anon_sym_unsigned] = ACTIONS(2424), + [anon_sym_long] = ACTIONS(2424), + [anon_sym_short] = ACTIONS(2424), + [sym_primitive_type] = ACTIONS(2424), + [anon_sym_enum] = ACTIONS(2424), + [anon_sym_class] = ACTIONS(2424), + [anon_sym_struct] = ACTIONS(2424), + [anon_sym_union] = ACTIONS(2424), + [anon_sym_if] = ACTIONS(2424), + [anon_sym_switch] = ACTIONS(2424), + [anon_sym_case] = ACTIONS(2424), + [anon_sym_default] = ACTIONS(2424), + [anon_sym_while] = ACTIONS(2424), + [anon_sym_do] = ACTIONS(2424), + [anon_sym_for] = ACTIONS(2424), + [anon_sym_return] = ACTIONS(2424), + [anon_sym_break] = ACTIONS(2424), + [anon_sym_continue] = ACTIONS(2424), + [anon_sym_goto] = ACTIONS(2424), + [anon_sym_not] = ACTIONS(2424), + [anon_sym_compl] = ACTIONS(2424), + [anon_sym_DASH_DASH] = ACTIONS(2426), + [anon_sym_PLUS_PLUS] = ACTIONS(2426), + [anon_sym_sizeof] = ACTIONS(2424), + [sym_number_literal] = ACTIONS(2426), + [anon_sym_L_SQUOTE] = ACTIONS(2426), + [anon_sym_u_SQUOTE] = ACTIONS(2426), + [anon_sym_U_SQUOTE] = ACTIONS(2426), + [anon_sym_u8_SQUOTE] = ACTIONS(2426), + [anon_sym_SQUOTE] = ACTIONS(2426), + [anon_sym_L_DQUOTE] = ACTIONS(2426), + [anon_sym_u_DQUOTE] = ACTIONS(2426), + [anon_sym_U_DQUOTE] = ACTIONS(2426), + [anon_sym_u8_DQUOTE] = ACTIONS(2426), + [anon_sym_DQUOTE] = ACTIONS(2426), + [sym_true] = ACTIONS(2424), + [sym_false] = ACTIONS(2424), + [sym_null] = ACTIONS(2424), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2424), + [anon_sym_decltype] = ACTIONS(2424), + [anon_sym_virtual] = ACTIONS(2424), + [anon_sym_explicit] = ACTIONS(2424), + [anon_sym_typename] = ACTIONS(2424), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_operator] = ACTIONS(2424), + [anon_sym_try] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2424), + [anon_sym_throw] = ACTIONS(2424), + [anon_sym_namespace] = ACTIONS(2424), + [anon_sym_using] = ACTIONS(2424), + [anon_sym_static_assert] = ACTIONS(2424), + [anon_sym_concept] = ACTIONS(2424), + [anon_sym_co_return] = ACTIONS(2424), + [anon_sym_co_yield] = ACTIONS(2424), + [anon_sym_catch] = ACTIONS(2472), + [anon_sym_co_await] = ACTIONS(2424), + [anon_sym_new] = ACTIONS(2424), + [anon_sym_requires] = ACTIONS(2424), + [sym_this] = ACTIONS(2424), + [sym_nullptr] = ACTIONS(2424), + [sym_raw_string_literal] = ACTIONS(2426), }, - [577] = { - [ts_builtin_sym_end] = ACTIONS(2453), - [sym_identifier] = ACTIONS(2451), - [aux_sym_preproc_include_token1] = ACTIONS(2451), - [aux_sym_preproc_def_token1] = ACTIONS(2451), - [aux_sym_preproc_if_token1] = ACTIONS(2451), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2451), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2451), - [sym_preproc_directive] = ACTIONS(2451), - [anon_sym_LPAREN2] = ACTIONS(2453), - [anon_sym_BANG] = ACTIONS(2453), - [anon_sym_TILDE] = ACTIONS(2453), - [anon_sym_DASH] = ACTIONS(2451), - [anon_sym_PLUS] = ACTIONS(2451), - [anon_sym_STAR] = ACTIONS(2453), - [anon_sym_AMP_AMP] = ACTIONS(2453), - [anon_sym_AMP] = ACTIONS(2451), - [anon_sym_SEMI] = ACTIONS(2453), - [anon_sym_typedef] = ACTIONS(2451), - [anon_sym_extern] = ACTIONS(2451), - [anon_sym___attribute__] = ACTIONS(2451), - [anon_sym_COLON_COLON] = ACTIONS(2453), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2453), - [anon_sym___declspec] = ACTIONS(2451), - [anon_sym___based] = ACTIONS(2451), - [anon_sym___cdecl] = ACTIONS(2451), - [anon_sym___clrcall] = ACTIONS(2451), - [anon_sym___stdcall] = ACTIONS(2451), - [anon_sym___fastcall] = ACTIONS(2451), - [anon_sym___thiscall] = ACTIONS(2451), - [anon_sym___vectorcall] = ACTIONS(2451), - [anon_sym_LBRACE] = ACTIONS(2453), - [anon_sym_LBRACK] = ACTIONS(2451), - [anon_sym_static] = ACTIONS(2451), - [anon_sym_register] = ACTIONS(2451), - [anon_sym_inline] = ACTIONS(2451), - [anon_sym_thread_local] = ACTIONS(2451), - [anon_sym_const] = ACTIONS(2451), - [anon_sym_volatile] = ACTIONS(2451), - [anon_sym_restrict] = ACTIONS(2451), - [anon_sym__Atomic] = ACTIONS(2451), - [anon_sym_mutable] = ACTIONS(2451), - [anon_sym_constexpr] = ACTIONS(2451), - [anon_sym_constinit] = ACTIONS(2451), - [anon_sym_consteval] = ACTIONS(2451), - [anon_sym_signed] = ACTIONS(2451), - [anon_sym_unsigned] = ACTIONS(2451), - [anon_sym_long] = ACTIONS(2451), - [anon_sym_short] = ACTIONS(2451), - [sym_primitive_type] = ACTIONS(2451), - [anon_sym_enum] = ACTIONS(2451), - [anon_sym_class] = ACTIONS(2451), - [anon_sym_struct] = ACTIONS(2451), - [anon_sym_union] = ACTIONS(2451), - [anon_sym_if] = ACTIONS(2451), - [anon_sym_else] = ACTIONS(2451), - [anon_sym_switch] = ACTIONS(2451), - [anon_sym_case] = ACTIONS(2451), - [anon_sym_default] = ACTIONS(2451), - [anon_sym_while] = ACTIONS(2451), - [anon_sym_do] = ACTIONS(2451), - [anon_sym_for] = ACTIONS(2451), - [anon_sym_return] = ACTIONS(2451), - [anon_sym_break] = ACTIONS(2451), - [anon_sym_continue] = ACTIONS(2451), - [anon_sym_goto] = ACTIONS(2451), - [anon_sym_DASH_DASH] = ACTIONS(2453), - [anon_sym_PLUS_PLUS] = ACTIONS(2453), - [anon_sym_sizeof] = ACTIONS(2451), - [sym_number_literal] = ACTIONS(2453), - [anon_sym_L_SQUOTE] = ACTIONS(2453), - [anon_sym_u_SQUOTE] = ACTIONS(2453), - [anon_sym_U_SQUOTE] = ACTIONS(2453), - [anon_sym_u8_SQUOTE] = ACTIONS(2453), - [anon_sym_SQUOTE] = ACTIONS(2453), - [anon_sym_L_DQUOTE] = ACTIONS(2453), - [anon_sym_u_DQUOTE] = ACTIONS(2453), - [anon_sym_U_DQUOTE] = ACTIONS(2453), - [anon_sym_u8_DQUOTE] = ACTIONS(2453), - [anon_sym_DQUOTE] = ACTIONS(2453), - [sym_true] = ACTIONS(2451), - [sym_false] = ACTIONS(2451), - [sym_null] = ACTIONS(2451), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2451), - [anon_sym_decltype] = ACTIONS(2451), - [anon_sym_virtual] = ACTIONS(2451), - [anon_sym_explicit] = ACTIONS(2451), - [anon_sym_typename] = ACTIONS(2451), - [anon_sym_template] = ACTIONS(2451), - [anon_sym_operator] = ACTIONS(2451), - [anon_sym_try] = ACTIONS(2451), - [anon_sym_delete] = ACTIONS(2451), - [anon_sym_throw] = ACTIONS(2451), - [anon_sym_namespace] = ACTIONS(2451), - [anon_sym_using] = ACTIONS(2451), - [anon_sym_static_assert] = ACTIONS(2451), - [anon_sym_concept] = ACTIONS(2451), - [anon_sym_co_return] = ACTIONS(2451), - [anon_sym_co_yield] = ACTIONS(2451), - [anon_sym_co_await] = ACTIONS(2451), - [anon_sym_new] = ACTIONS(2451), - [anon_sym_requires] = ACTIONS(2451), - [sym_this] = ACTIONS(2451), - [sym_nullptr] = ACTIONS(2451), - [sym_raw_string_literal] = ACTIONS(2453), + [469] = { + [sym_identifier] = ACTIONS(2651), + [aux_sym_preproc_include_token1] = ACTIONS(2651), + [aux_sym_preproc_def_token1] = ACTIONS(2651), + [aux_sym_preproc_if_token1] = ACTIONS(2651), + [aux_sym_preproc_if_token2] = ACTIONS(2651), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2651), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2651), + [aux_sym_preproc_else_token1] = ACTIONS(2651), + [aux_sym_preproc_elif_token1] = ACTIONS(2651), + [sym_preproc_directive] = ACTIONS(2651), + [anon_sym_LPAREN2] = ACTIONS(2653), + [anon_sym_BANG] = ACTIONS(2653), + [anon_sym_TILDE] = ACTIONS(2653), + [anon_sym_DASH] = ACTIONS(2651), + [anon_sym_PLUS] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2653), + [anon_sym_AMP_AMP] = ACTIONS(2653), + [anon_sym_AMP] = ACTIONS(2651), + [anon_sym_SEMI] = ACTIONS(2653), + [anon_sym_typedef] = ACTIONS(2651), + [anon_sym_extern] = ACTIONS(2651), + [anon_sym___attribute__] = ACTIONS(2651), + [anon_sym_COLON_COLON] = ACTIONS(2653), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2653), + [anon_sym___declspec] = ACTIONS(2651), + [anon_sym___based] = ACTIONS(2651), + [anon_sym___cdecl] = ACTIONS(2651), + [anon_sym___clrcall] = ACTIONS(2651), + [anon_sym___stdcall] = ACTIONS(2651), + [anon_sym___fastcall] = ACTIONS(2651), + [anon_sym___thiscall] = ACTIONS(2651), + [anon_sym___vectorcall] = ACTIONS(2651), + [anon_sym_LBRACE] = ACTIONS(2653), + [anon_sym_LBRACK] = ACTIONS(2651), + [anon_sym_static] = ACTIONS(2651), + [anon_sym_register] = ACTIONS(2651), + [anon_sym_inline] = ACTIONS(2651), + [anon_sym_thread_local] = ACTIONS(2651), + [anon_sym_const] = ACTIONS(2651), + [anon_sym_volatile] = ACTIONS(2651), + [anon_sym_restrict] = ACTIONS(2651), + [anon_sym__Atomic] = ACTIONS(2651), + [anon_sym_mutable] = ACTIONS(2651), + [anon_sym_constexpr] = ACTIONS(2651), + [anon_sym_constinit] = ACTIONS(2651), + [anon_sym_consteval] = ACTIONS(2651), + [anon_sym_signed] = ACTIONS(2651), + [anon_sym_unsigned] = ACTIONS(2651), + [anon_sym_long] = ACTIONS(2651), + [anon_sym_short] = ACTIONS(2651), + [sym_primitive_type] = ACTIONS(2651), + [anon_sym_enum] = ACTIONS(2651), + [anon_sym_class] = ACTIONS(2651), + [anon_sym_struct] = ACTIONS(2651), + [anon_sym_union] = ACTIONS(2651), + [anon_sym_if] = ACTIONS(2651), + [anon_sym_else] = ACTIONS(2651), + [anon_sym_switch] = ACTIONS(2651), + [anon_sym_case] = ACTIONS(2651), + [anon_sym_default] = ACTIONS(2651), + [anon_sym_while] = ACTIONS(2651), + [anon_sym_do] = ACTIONS(2651), + [anon_sym_for] = ACTIONS(2651), + [anon_sym_return] = ACTIONS(2651), + [anon_sym_break] = ACTIONS(2651), + [anon_sym_continue] = ACTIONS(2651), + [anon_sym_goto] = ACTIONS(2651), + [anon_sym_not] = ACTIONS(2651), + [anon_sym_compl] = ACTIONS(2651), + [anon_sym_DASH_DASH] = ACTIONS(2653), + [anon_sym_PLUS_PLUS] = ACTIONS(2653), + [anon_sym_sizeof] = ACTIONS(2651), + [sym_number_literal] = ACTIONS(2653), + [anon_sym_L_SQUOTE] = ACTIONS(2653), + [anon_sym_u_SQUOTE] = ACTIONS(2653), + [anon_sym_U_SQUOTE] = ACTIONS(2653), + [anon_sym_u8_SQUOTE] = ACTIONS(2653), + [anon_sym_SQUOTE] = ACTIONS(2653), + [anon_sym_L_DQUOTE] = ACTIONS(2653), + [anon_sym_u_DQUOTE] = ACTIONS(2653), + [anon_sym_U_DQUOTE] = ACTIONS(2653), + [anon_sym_u8_DQUOTE] = ACTIONS(2653), + [anon_sym_DQUOTE] = ACTIONS(2653), + [sym_true] = ACTIONS(2651), + [sym_false] = ACTIONS(2651), + [sym_null] = ACTIONS(2651), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2651), + [anon_sym_decltype] = ACTIONS(2651), + [anon_sym_virtual] = ACTIONS(2651), + [anon_sym_explicit] = ACTIONS(2651), + [anon_sym_typename] = ACTIONS(2651), + [anon_sym_template] = ACTIONS(2651), + [anon_sym_operator] = ACTIONS(2651), + [anon_sym_try] = ACTIONS(2651), + [anon_sym_delete] = ACTIONS(2651), + [anon_sym_throw] = ACTIONS(2651), + [anon_sym_namespace] = ACTIONS(2651), + [anon_sym_using] = ACTIONS(2651), + [anon_sym_static_assert] = ACTIONS(2651), + [anon_sym_concept] = ACTIONS(2651), + [anon_sym_co_return] = ACTIONS(2651), + [anon_sym_co_yield] = ACTIONS(2651), + [anon_sym_co_await] = ACTIONS(2651), + [anon_sym_new] = ACTIONS(2651), + [anon_sym_requires] = ACTIONS(2651), + [sym_this] = ACTIONS(2651), + [sym_nullptr] = ACTIONS(2651), + [sym_raw_string_literal] = ACTIONS(2653), }, - [578] = { - [ts_builtin_sym_end] = ACTIONS(2349), - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [579] = { - [ts_builtin_sym_end] = ACTIONS(2349), - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [580] = { - [ts_builtin_sym_end] = ACTIONS(2349), - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [581] = { - [ts_builtin_sym_end] = ACTIONS(2349), - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [582] = { - [ts_builtin_sym_end] = ACTIONS(2349), - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [583] = { - [ts_builtin_sym_end] = ACTIONS(2349), - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [584] = { - [ts_builtin_sym_end] = ACTIONS(2349), - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [585] = { - [ts_builtin_sym_end] = ACTIONS(2349), - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [586] = { - [ts_builtin_sym_end] = ACTIONS(2349), - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [587] = { - [ts_builtin_sym_end] = ACTIONS(2349), - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [588] = { - [ts_builtin_sym_end] = ACTIONS(2349), - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [589] = { - [ts_builtin_sym_end] = ACTIONS(2457), - [sym_identifier] = ACTIONS(2455), - [aux_sym_preproc_include_token1] = ACTIONS(2455), - [aux_sym_preproc_def_token1] = ACTIONS(2455), - [aux_sym_preproc_if_token1] = ACTIONS(2455), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2455), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2455), - [sym_preproc_directive] = ACTIONS(2455), - [anon_sym_LPAREN2] = ACTIONS(2457), - [anon_sym_BANG] = ACTIONS(2457), - [anon_sym_TILDE] = ACTIONS(2457), - [anon_sym_DASH] = ACTIONS(2455), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_STAR] = ACTIONS(2457), - [anon_sym_AMP_AMP] = ACTIONS(2457), - [anon_sym_AMP] = ACTIONS(2455), - [anon_sym_SEMI] = ACTIONS(2457), - [anon_sym_typedef] = ACTIONS(2455), - [anon_sym_extern] = ACTIONS(2455), - [anon_sym___attribute__] = ACTIONS(2455), - [anon_sym_COLON_COLON] = ACTIONS(2457), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2457), - [anon_sym___declspec] = ACTIONS(2455), - [anon_sym___based] = ACTIONS(2455), - [anon_sym___cdecl] = ACTIONS(2455), - [anon_sym___clrcall] = ACTIONS(2455), - [anon_sym___stdcall] = ACTIONS(2455), - [anon_sym___fastcall] = ACTIONS(2455), - [anon_sym___thiscall] = ACTIONS(2455), - [anon_sym___vectorcall] = ACTIONS(2455), - [anon_sym_LBRACE] = ACTIONS(2457), - [anon_sym_LBRACK] = ACTIONS(2455), - [anon_sym_static] = ACTIONS(2455), - [anon_sym_register] = ACTIONS(2455), - [anon_sym_inline] = ACTIONS(2455), - [anon_sym_thread_local] = ACTIONS(2455), - [anon_sym_const] = ACTIONS(2455), - [anon_sym_volatile] = ACTIONS(2455), - [anon_sym_restrict] = ACTIONS(2455), - [anon_sym__Atomic] = ACTIONS(2455), - [anon_sym_mutable] = ACTIONS(2455), - [anon_sym_constexpr] = ACTIONS(2455), - [anon_sym_constinit] = ACTIONS(2455), - [anon_sym_consteval] = ACTIONS(2455), - [anon_sym_signed] = ACTIONS(2455), - [anon_sym_unsigned] = ACTIONS(2455), - [anon_sym_long] = ACTIONS(2455), - [anon_sym_short] = ACTIONS(2455), - [sym_primitive_type] = ACTIONS(2455), - [anon_sym_enum] = ACTIONS(2455), - [anon_sym_class] = ACTIONS(2455), - [anon_sym_struct] = ACTIONS(2455), - [anon_sym_union] = ACTIONS(2455), - [anon_sym_if] = ACTIONS(2455), - [anon_sym_else] = ACTIONS(2455), - [anon_sym_switch] = ACTIONS(2455), - [anon_sym_case] = ACTIONS(2455), - [anon_sym_default] = ACTIONS(2455), - [anon_sym_while] = ACTIONS(2455), - [anon_sym_do] = ACTIONS(2455), - [anon_sym_for] = ACTIONS(2455), - [anon_sym_return] = ACTIONS(2455), - [anon_sym_break] = ACTIONS(2455), - [anon_sym_continue] = ACTIONS(2455), - [anon_sym_goto] = ACTIONS(2455), - [anon_sym_DASH_DASH] = ACTIONS(2457), - [anon_sym_PLUS_PLUS] = ACTIONS(2457), - [anon_sym_sizeof] = ACTIONS(2455), - [sym_number_literal] = ACTIONS(2457), - [anon_sym_L_SQUOTE] = ACTIONS(2457), - [anon_sym_u_SQUOTE] = ACTIONS(2457), - [anon_sym_U_SQUOTE] = ACTIONS(2457), - [anon_sym_u8_SQUOTE] = ACTIONS(2457), - [anon_sym_SQUOTE] = ACTIONS(2457), - [anon_sym_L_DQUOTE] = ACTIONS(2457), - [anon_sym_u_DQUOTE] = ACTIONS(2457), - [anon_sym_U_DQUOTE] = ACTIONS(2457), - [anon_sym_u8_DQUOTE] = ACTIONS(2457), - [anon_sym_DQUOTE] = ACTIONS(2457), - [sym_true] = ACTIONS(2455), - [sym_false] = ACTIONS(2455), - [sym_null] = ACTIONS(2455), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2455), - [anon_sym_decltype] = ACTIONS(2455), - [anon_sym_virtual] = ACTIONS(2455), - [anon_sym_explicit] = ACTIONS(2455), - [anon_sym_typename] = ACTIONS(2455), - [anon_sym_template] = ACTIONS(2455), - [anon_sym_operator] = ACTIONS(2455), - [anon_sym_try] = ACTIONS(2455), - [anon_sym_delete] = ACTIONS(2455), - [anon_sym_throw] = ACTIONS(2455), - [anon_sym_namespace] = ACTIONS(2455), - [anon_sym_using] = ACTIONS(2455), - [anon_sym_static_assert] = ACTIONS(2455), - [anon_sym_concept] = ACTIONS(2455), - [anon_sym_co_return] = ACTIONS(2455), - [anon_sym_co_yield] = ACTIONS(2455), - [anon_sym_co_await] = ACTIONS(2455), - [anon_sym_new] = ACTIONS(2455), - [anon_sym_requires] = ACTIONS(2455), - [sym_this] = ACTIONS(2455), - [sym_nullptr] = ACTIONS(2455), - [sym_raw_string_literal] = ACTIONS(2457), - }, - [590] = { - [ts_builtin_sym_end] = ACTIONS(2477), - [sym_identifier] = ACTIONS(2475), - [aux_sym_preproc_include_token1] = ACTIONS(2475), - [aux_sym_preproc_def_token1] = ACTIONS(2475), - [aux_sym_preproc_if_token1] = ACTIONS(2475), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2475), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2475), - [sym_preproc_directive] = ACTIONS(2475), - [anon_sym_LPAREN2] = ACTIONS(2477), - [anon_sym_BANG] = ACTIONS(2477), - [anon_sym_TILDE] = ACTIONS(2477), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_PLUS] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2477), - [anon_sym_AMP_AMP] = ACTIONS(2477), - [anon_sym_AMP] = ACTIONS(2475), - [anon_sym_SEMI] = ACTIONS(2477), - [anon_sym_typedef] = ACTIONS(2475), - [anon_sym_extern] = ACTIONS(2475), - [anon_sym___attribute__] = ACTIONS(2475), - [anon_sym_COLON_COLON] = ACTIONS(2477), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2477), - [anon_sym___declspec] = ACTIONS(2475), - [anon_sym___based] = ACTIONS(2475), - [anon_sym___cdecl] = ACTIONS(2475), - [anon_sym___clrcall] = ACTIONS(2475), - [anon_sym___stdcall] = ACTIONS(2475), - [anon_sym___fastcall] = ACTIONS(2475), - [anon_sym___thiscall] = ACTIONS(2475), - [anon_sym___vectorcall] = ACTIONS(2475), - [anon_sym_LBRACE] = ACTIONS(2477), - [anon_sym_LBRACK] = ACTIONS(2475), - [anon_sym_static] = ACTIONS(2475), - [anon_sym_register] = ACTIONS(2475), - [anon_sym_inline] = ACTIONS(2475), - [anon_sym_thread_local] = ACTIONS(2475), - [anon_sym_const] = ACTIONS(2475), - [anon_sym_volatile] = ACTIONS(2475), - [anon_sym_restrict] = ACTIONS(2475), - [anon_sym__Atomic] = ACTIONS(2475), - [anon_sym_mutable] = ACTIONS(2475), - [anon_sym_constexpr] = ACTIONS(2475), - [anon_sym_constinit] = ACTIONS(2475), - [anon_sym_consteval] = ACTIONS(2475), - [anon_sym_signed] = ACTIONS(2475), - [anon_sym_unsigned] = ACTIONS(2475), - [anon_sym_long] = ACTIONS(2475), - [anon_sym_short] = ACTIONS(2475), - [sym_primitive_type] = ACTIONS(2475), - [anon_sym_enum] = ACTIONS(2475), - [anon_sym_class] = ACTIONS(2475), - [anon_sym_struct] = ACTIONS(2475), - [anon_sym_union] = ACTIONS(2475), - [anon_sym_if] = ACTIONS(2475), - [anon_sym_else] = ACTIONS(2475), - [anon_sym_switch] = ACTIONS(2475), - [anon_sym_case] = ACTIONS(2475), - [anon_sym_default] = ACTIONS(2475), - [anon_sym_while] = ACTIONS(2475), - [anon_sym_do] = ACTIONS(2475), - [anon_sym_for] = ACTIONS(2475), - [anon_sym_return] = ACTIONS(2475), - [anon_sym_break] = ACTIONS(2475), - [anon_sym_continue] = ACTIONS(2475), - [anon_sym_goto] = ACTIONS(2475), - [anon_sym_DASH_DASH] = ACTIONS(2477), - [anon_sym_PLUS_PLUS] = ACTIONS(2477), - [anon_sym_sizeof] = ACTIONS(2475), - [sym_number_literal] = ACTIONS(2477), - [anon_sym_L_SQUOTE] = ACTIONS(2477), - [anon_sym_u_SQUOTE] = ACTIONS(2477), - [anon_sym_U_SQUOTE] = ACTIONS(2477), - [anon_sym_u8_SQUOTE] = ACTIONS(2477), - [anon_sym_SQUOTE] = ACTIONS(2477), - [anon_sym_L_DQUOTE] = ACTIONS(2477), - [anon_sym_u_DQUOTE] = ACTIONS(2477), - [anon_sym_U_DQUOTE] = ACTIONS(2477), - [anon_sym_u8_DQUOTE] = ACTIONS(2477), - [anon_sym_DQUOTE] = ACTIONS(2477), - [sym_true] = ACTIONS(2475), - [sym_false] = ACTIONS(2475), - [sym_null] = ACTIONS(2475), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2475), - [anon_sym_decltype] = ACTIONS(2475), - [anon_sym_virtual] = ACTIONS(2475), - [anon_sym_explicit] = ACTIONS(2475), - [anon_sym_typename] = ACTIONS(2475), - [anon_sym_template] = ACTIONS(2475), - [anon_sym_operator] = ACTIONS(2475), - [anon_sym_try] = ACTIONS(2475), - [anon_sym_delete] = ACTIONS(2475), - [anon_sym_throw] = ACTIONS(2475), - [anon_sym_namespace] = ACTIONS(2475), - [anon_sym_using] = ACTIONS(2475), - [anon_sym_static_assert] = ACTIONS(2475), - [anon_sym_concept] = ACTIONS(2475), - [anon_sym_co_return] = ACTIONS(2475), - [anon_sym_co_yield] = ACTIONS(2475), - [anon_sym_co_await] = ACTIONS(2475), - [anon_sym_new] = ACTIONS(2475), - [anon_sym_requires] = ACTIONS(2475), - [sym_this] = ACTIONS(2475), - [sym_nullptr] = ACTIONS(2475), - [sym_raw_string_literal] = ACTIONS(2477), - }, - [591] = { - [ts_builtin_sym_end] = ACTIONS(2481), - [sym_identifier] = ACTIONS(2479), - [aux_sym_preproc_include_token1] = ACTIONS(2479), - [aux_sym_preproc_def_token1] = ACTIONS(2479), - [aux_sym_preproc_if_token1] = ACTIONS(2479), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2479), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2479), - [sym_preproc_directive] = ACTIONS(2479), - [anon_sym_LPAREN2] = ACTIONS(2481), - [anon_sym_BANG] = ACTIONS(2481), - [anon_sym_TILDE] = ACTIONS(2481), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_AMP_AMP] = ACTIONS(2481), - [anon_sym_AMP] = ACTIONS(2479), - [anon_sym_SEMI] = ACTIONS(2481), - [anon_sym_typedef] = ACTIONS(2479), - [anon_sym_extern] = ACTIONS(2479), - [anon_sym___attribute__] = ACTIONS(2479), - [anon_sym_COLON_COLON] = ACTIONS(2481), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2481), - [anon_sym___declspec] = ACTIONS(2479), - [anon_sym___based] = ACTIONS(2479), - [anon_sym___cdecl] = ACTIONS(2479), - [anon_sym___clrcall] = ACTIONS(2479), - [anon_sym___stdcall] = ACTIONS(2479), - [anon_sym___fastcall] = ACTIONS(2479), - [anon_sym___thiscall] = ACTIONS(2479), - [anon_sym___vectorcall] = ACTIONS(2479), - [anon_sym_LBRACE] = ACTIONS(2481), - [anon_sym_LBRACK] = ACTIONS(2479), - [anon_sym_static] = ACTIONS(2479), - [anon_sym_register] = ACTIONS(2479), - [anon_sym_inline] = ACTIONS(2479), - [anon_sym_thread_local] = ACTIONS(2479), - [anon_sym_const] = ACTIONS(2479), - [anon_sym_volatile] = ACTIONS(2479), - [anon_sym_restrict] = ACTIONS(2479), - [anon_sym__Atomic] = ACTIONS(2479), - [anon_sym_mutable] = ACTIONS(2479), - [anon_sym_constexpr] = ACTIONS(2479), - [anon_sym_constinit] = ACTIONS(2479), - [anon_sym_consteval] = ACTIONS(2479), - [anon_sym_signed] = ACTIONS(2479), - [anon_sym_unsigned] = ACTIONS(2479), - [anon_sym_long] = ACTIONS(2479), - [anon_sym_short] = ACTIONS(2479), - [sym_primitive_type] = ACTIONS(2479), - [anon_sym_enum] = ACTIONS(2479), - [anon_sym_class] = ACTIONS(2479), - [anon_sym_struct] = ACTIONS(2479), - [anon_sym_union] = ACTIONS(2479), - [anon_sym_if] = ACTIONS(2479), - [anon_sym_else] = ACTIONS(2479), - [anon_sym_switch] = ACTIONS(2479), - [anon_sym_case] = ACTIONS(2479), - [anon_sym_default] = ACTIONS(2479), - [anon_sym_while] = ACTIONS(2479), - [anon_sym_do] = ACTIONS(2479), - [anon_sym_for] = ACTIONS(2479), - [anon_sym_return] = ACTIONS(2479), - [anon_sym_break] = ACTIONS(2479), - [anon_sym_continue] = ACTIONS(2479), - [anon_sym_goto] = ACTIONS(2479), - [anon_sym_DASH_DASH] = ACTIONS(2481), - [anon_sym_PLUS_PLUS] = ACTIONS(2481), - [anon_sym_sizeof] = ACTIONS(2479), - [sym_number_literal] = ACTIONS(2481), - [anon_sym_L_SQUOTE] = ACTIONS(2481), - [anon_sym_u_SQUOTE] = ACTIONS(2481), - [anon_sym_U_SQUOTE] = ACTIONS(2481), - [anon_sym_u8_SQUOTE] = ACTIONS(2481), - [anon_sym_SQUOTE] = ACTIONS(2481), - [anon_sym_L_DQUOTE] = ACTIONS(2481), - [anon_sym_u_DQUOTE] = ACTIONS(2481), - [anon_sym_U_DQUOTE] = ACTIONS(2481), - [anon_sym_u8_DQUOTE] = ACTIONS(2481), - [anon_sym_DQUOTE] = ACTIONS(2481), - [sym_true] = ACTIONS(2479), - [sym_false] = ACTIONS(2479), - [sym_null] = ACTIONS(2479), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2479), - [anon_sym_decltype] = ACTIONS(2479), - [anon_sym_virtual] = ACTIONS(2479), - [anon_sym_explicit] = ACTIONS(2479), - [anon_sym_typename] = ACTIONS(2479), - [anon_sym_template] = ACTIONS(2479), - [anon_sym_operator] = ACTIONS(2479), - [anon_sym_try] = ACTIONS(2479), - [anon_sym_delete] = ACTIONS(2479), - [anon_sym_throw] = ACTIONS(2479), - [anon_sym_namespace] = ACTIONS(2479), - [anon_sym_using] = ACTIONS(2479), - [anon_sym_static_assert] = ACTIONS(2479), - [anon_sym_concept] = ACTIONS(2479), - [anon_sym_co_return] = ACTIONS(2479), - [anon_sym_co_yield] = ACTIONS(2479), - [anon_sym_co_await] = ACTIONS(2479), - [anon_sym_new] = ACTIONS(2479), - [anon_sym_requires] = ACTIONS(2479), - [sym_this] = ACTIONS(2479), - [sym_nullptr] = ACTIONS(2479), - [sym_raw_string_literal] = ACTIONS(2481), - }, - [592] = { - [ts_builtin_sym_end] = ACTIONS(2461), - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [593] = { - [ts_builtin_sym_end] = ACTIONS(2461), - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [594] = { - [ts_builtin_sym_end] = ACTIONS(2353), - [sym_identifier] = ACTIONS(2351), - [aux_sym_preproc_include_token1] = ACTIONS(2351), - [aux_sym_preproc_def_token1] = ACTIONS(2351), - [aux_sym_preproc_if_token1] = ACTIONS(2351), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2351), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2351), - [sym_preproc_directive] = ACTIONS(2351), - [anon_sym_LPAREN2] = ACTIONS(2353), - [anon_sym_BANG] = ACTIONS(2353), - [anon_sym_TILDE] = ACTIONS(2353), - [anon_sym_DASH] = ACTIONS(2351), - [anon_sym_PLUS] = ACTIONS(2351), - [anon_sym_STAR] = ACTIONS(2353), - [anon_sym_AMP_AMP] = ACTIONS(2353), - [anon_sym_AMP] = ACTIONS(2351), - [anon_sym_SEMI] = ACTIONS(2353), - [anon_sym_typedef] = ACTIONS(2351), - [anon_sym_extern] = ACTIONS(2351), - [anon_sym___attribute__] = ACTIONS(2351), - [anon_sym_COLON_COLON] = ACTIONS(2353), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2353), - [anon_sym___declspec] = ACTIONS(2351), - [anon_sym___based] = ACTIONS(2351), - [anon_sym___cdecl] = ACTIONS(2351), - [anon_sym___clrcall] = ACTIONS(2351), - [anon_sym___stdcall] = ACTIONS(2351), - [anon_sym___fastcall] = ACTIONS(2351), - [anon_sym___thiscall] = ACTIONS(2351), - [anon_sym___vectorcall] = ACTIONS(2351), - [anon_sym_LBRACE] = ACTIONS(2353), - [anon_sym_LBRACK] = ACTIONS(2351), - [anon_sym_static] = ACTIONS(2351), - [anon_sym_register] = ACTIONS(2351), - [anon_sym_inline] = ACTIONS(2351), - [anon_sym_thread_local] = ACTIONS(2351), - [anon_sym_const] = ACTIONS(2351), - [anon_sym_volatile] = ACTIONS(2351), - [anon_sym_restrict] = ACTIONS(2351), - [anon_sym__Atomic] = ACTIONS(2351), - [anon_sym_mutable] = ACTIONS(2351), - [anon_sym_constexpr] = ACTIONS(2351), - [anon_sym_constinit] = ACTIONS(2351), - [anon_sym_consteval] = ACTIONS(2351), - [anon_sym_signed] = ACTIONS(2351), - [anon_sym_unsigned] = ACTIONS(2351), - [anon_sym_long] = ACTIONS(2351), - [anon_sym_short] = ACTIONS(2351), - [sym_primitive_type] = ACTIONS(2351), - [anon_sym_enum] = ACTIONS(2351), - [anon_sym_class] = ACTIONS(2351), - [anon_sym_struct] = ACTIONS(2351), - [anon_sym_union] = ACTIONS(2351), - [anon_sym_if] = ACTIONS(2351), - [anon_sym_else] = ACTIONS(2351), - [anon_sym_switch] = ACTIONS(2351), - [anon_sym_case] = ACTIONS(2351), - [anon_sym_default] = ACTIONS(2351), - [anon_sym_while] = ACTIONS(2351), - [anon_sym_do] = ACTIONS(2351), - [anon_sym_for] = ACTIONS(2351), - [anon_sym_return] = ACTIONS(2351), - [anon_sym_break] = ACTIONS(2351), - [anon_sym_continue] = ACTIONS(2351), - [anon_sym_goto] = ACTIONS(2351), - [anon_sym_DASH_DASH] = ACTIONS(2353), - [anon_sym_PLUS_PLUS] = ACTIONS(2353), - [anon_sym_sizeof] = ACTIONS(2351), - [sym_number_literal] = ACTIONS(2353), - [anon_sym_L_SQUOTE] = ACTIONS(2353), - [anon_sym_u_SQUOTE] = ACTIONS(2353), - [anon_sym_U_SQUOTE] = ACTIONS(2353), - [anon_sym_u8_SQUOTE] = ACTIONS(2353), - [anon_sym_SQUOTE] = ACTIONS(2353), - [anon_sym_L_DQUOTE] = ACTIONS(2353), - [anon_sym_u_DQUOTE] = ACTIONS(2353), - [anon_sym_U_DQUOTE] = ACTIONS(2353), - [anon_sym_u8_DQUOTE] = ACTIONS(2353), - [anon_sym_DQUOTE] = ACTIONS(2353), - [sym_true] = ACTIONS(2351), - [sym_false] = ACTIONS(2351), - [sym_null] = ACTIONS(2351), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2351), - [anon_sym_decltype] = ACTIONS(2351), - [anon_sym_virtual] = ACTIONS(2351), - [anon_sym_explicit] = ACTIONS(2351), - [anon_sym_typename] = ACTIONS(2351), - [anon_sym_template] = ACTIONS(2351), - [anon_sym_operator] = ACTIONS(2351), - [anon_sym_try] = ACTIONS(2351), - [anon_sym_delete] = ACTIONS(2351), - [anon_sym_throw] = ACTIONS(2351), - [anon_sym_namespace] = ACTIONS(2351), - [anon_sym_using] = ACTIONS(2351), - [anon_sym_static_assert] = ACTIONS(2351), - [anon_sym_concept] = ACTIONS(2351), - [anon_sym_co_return] = ACTIONS(2351), - [anon_sym_co_yield] = ACTIONS(2351), - [anon_sym_co_await] = ACTIONS(2351), - [anon_sym_new] = ACTIONS(2351), - [anon_sym_requires] = ACTIONS(2351), - [sym_this] = ACTIONS(2351), - [sym_nullptr] = ACTIONS(2351), - [sym_raw_string_literal] = ACTIONS(2353), - }, - [595] = { - [ts_builtin_sym_end] = ACTIONS(2461), - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [596] = { - [ts_builtin_sym_end] = ACTIONS(2461), - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [597] = { - [ts_builtin_sym_end] = ACTIONS(2461), - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [598] = { - [ts_builtin_sym_end] = ACTIONS(2461), - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [599] = { - [ts_builtin_sym_end] = ACTIONS(2461), - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [600] = { - [ts_builtin_sym_end] = ACTIONS(2461), - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [601] = { - [ts_builtin_sym_end] = ACTIONS(2353), - [sym_identifier] = ACTIONS(2351), - [aux_sym_preproc_include_token1] = ACTIONS(2351), - [aux_sym_preproc_def_token1] = ACTIONS(2351), - [aux_sym_preproc_if_token1] = ACTIONS(2351), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2351), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2351), - [sym_preproc_directive] = ACTIONS(2351), - [anon_sym_LPAREN2] = ACTIONS(2353), - [anon_sym_BANG] = ACTIONS(2353), - [anon_sym_TILDE] = ACTIONS(2353), - [anon_sym_DASH] = ACTIONS(2351), - [anon_sym_PLUS] = ACTIONS(2351), - [anon_sym_STAR] = ACTIONS(2353), - [anon_sym_AMP_AMP] = ACTIONS(2353), - [anon_sym_AMP] = ACTIONS(2351), - [anon_sym_SEMI] = ACTIONS(2353), - [anon_sym_typedef] = ACTIONS(2351), - [anon_sym_extern] = ACTIONS(2351), - [anon_sym___attribute__] = ACTIONS(2351), - [anon_sym_COLON_COLON] = ACTIONS(2353), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2353), - [anon_sym___declspec] = ACTIONS(2351), - [anon_sym___based] = ACTIONS(2351), - [anon_sym___cdecl] = ACTIONS(2351), - [anon_sym___clrcall] = ACTIONS(2351), - [anon_sym___stdcall] = ACTIONS(2351), - [anon_sym___fastcall] = ACTIONS(2351), - [anon_sym___thiscall] = ACTIONS(2351), - [anon_sym___vectorcall] = ACTIONS(2351), - [anon_sym_LBRACE] = ACTIONS(2353), - [anon_sym_LBRACK] = ACTIONS(2351), - [anon_sym_static] = ACTIONS(2351), - [anon_sym_register] = ACTIONS(2351), - [anon_sym_inline] = ACTIONS(2351), - [anon_sym_thread_local] = ACTIONS(2351), - [anon_sym_const] = ACTIONS(2351), - [anon_sym_volatile] = ACTIONS(2351), - [anon_sym_restrict] = ACTIONS(2351), - [anon_sym__Atomic] = ACTIONS(2351), - [anon_sym_mutable] = ACTIONS(2351), - [anon_sym_constexpr] = ACTIONS(2351), - [anon_sym_constinit] = ACTIONS(2351), - [anon_sym_consteval] = ACTIONS(2351), - [anon_sym_signed] = ACTIONS(2351), - [anon_sym_unsigned] = ACTIONS(2351), - [anon_sym_long] = ACTIONS(2351), - [anon_sym_short] = ACTIONS(2351), - [sym_primitive_type] = ACTIONS(2351), - [anon_sym_enum] = ACTIONS(2351), - [anon_sym_class] = ACTIONS(2351), - [anon_sym_struct] = ACTIONS(2351), - [anon_sym_union] = ACTIONS(2351), - [anon_sym_if] = ACTIONS(2351), - [anon_sym_else] = ACTIONS(2351), - [anon_sym_switch] = ACTIONS(2351), - [anon_sym_case] = ACTIONS(2351), - [anon_sym_default] = ACTIONS(2351), - [anon_sym_while] = ACTIONS(2351), - [anon_sym_do] = ACTIONS(2351), - [anon_sym_for] = ACTIONS(2351), - [anon_sym_return] = ACTIONS(2351), - [anon_sym_break] = ACTIONS(2351), - [anon_sym_continue] = ACTIONS(2351), - [anon_sym_goto] = ACTIONS(2351), - [anon_sym_DASH_DASH] = ACTIONS(2353), - [anon_sym_PLUS_PLUS] = ACTIONS(2353), - [anon_sym_sizeof] = ACTIONS(2351), - [sym_number_literal] = ACTIONS(2353), - [anon_sym_L_SQUOTE] = ACTIONS(2353), - [anon_sym_u_SQUOTE] = ACTIONS(2353), - [anon_sym_U_SQUOTE] = ACTIONS(2353), - [anon_sym_u8_SQUOTE] = ACTIONS(2353), - [anon_sym_SQUOTE] = ACTIONS(2353), - [anon_sym_L_DQUOTE] = ACTIONS(2353), - [anon_sym_u_DQUOTE] = ACTIONS(2353), - [anon_sym_U_DQUOTE] = ACTIONS(2353), - [anon_sym_u8_DQUOTE] = ACTIONS(2353), - [anon_sym_DQUOTE] = ACTIONS(2353), - [sym_true] = ACTIONS(2351), - [sym_false] = ACTIONS(2351), - [sym_null] = ACTIONS(2351), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2351), - [anon_sym_decltype] = ACTIONS(2351), - [anon_sym_virtual] = ACTIONS(2351), - [anon_sym_explicit] = ACTIONS(2351), - [anon_sym_typename] = ACTIONS(2351), - [anon_sym_template] = ACTIONS(2351), - [anon_sym_operator] = ACTIONS(2351), - [anon_sym_try] = ACTIONS(2351), - [anon_sym_delete] = ACTIONS(2351), - [anon_sym_throw] = ACTIONS(2351), - [anon_sym_namespace] = ACTIONS(2351), - [anon_sym_using] = ACTIONS(2351), - [anon_sym_static_assert] = ACTIONS(2351), - [anon_sym_concept] = ACTIONS(2351), - [anon_sym_co_return] = ACTIONS(2351), - [anon_sym_co_yield] = ACTIONS(2351), - [anon_sym_co_await] = ACTIONS(2351), - [anon_sym_new] = ACTIONS(2351), - [anon_sym_requires] = ACTIONS(2351), - [sym_this] = ACTIONS(2351), - [sym_nullptr] = ACTIONS(2351), - [sym_raw_string_literal] = ACTIONS(2353), - }, - [602] = { - [ts_builtin_sym_end] = ACTIONS(2461), - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [603] = { - [ts_builtin_sym_end] = ACTIONS(2461), - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [604] = { - [ts_builtin_sym_end] = ACTIONS(2461), - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [605] = { - [ts_builtin_sym_end] = ACTIONS(2461), - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), + [470] = { + [sym_identifier] = ACTIONS(2655), + [aux_sym_preproc_include_token1] = ACTIONS(2655), + [aux_sym_preproc_def_token1] = ACTIONS(2655), + [aux_sym_preproc_if_token1] = ACTIONS(2655), + [aux_sym_preproc_if_token2] = ACTIONS(2655), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2655), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2655), + [aux_sym_preproc_else_token1] = ACTIONS(2655), + [aux_sym_preproc_elif_token1] = ACTIONS(2655), + [sym_preproc_directive] = ACTIONS(2655), + [anon_sym_LPAREN2] = ACTIONS(2657), + [anon_sym_BANG] = ACTIONS(2657), + [anon_sym_TILDE] = ACTIONS(2657), + [anon_sym_DASH] = ACTIONS(2655), + [anon_sym_PLUS] = ACTIONS(2655), + [anon_sym_STAR] = ACTIONS(2657), + [anon_sym_AMP_AMP] = ACTIONS(2657), + [anon_sym_AMP] = ACTIONS(2655), + [anon_sym_SEMI] = ACTIONS(2657), + [anon_sym_typedef] = ACTIONS(2655), + [anon_sym_extern] = ACTIONS(2655), + [anon_sym___attribute__] = ACTIONS(2655), + [anon_sym_COLON_COLON] = ACTIONS(2657), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2657), + [anon_sym___declspec] = ACTIONS(2655), + [anon_sym___based] = ACTIONS(2655), + [anon_sym___cdecl] = ACTIONS(2655), + [anon_sym___clrcall] = ACTIONS(2655), + [anon_sym___stdcall] = ACTIONS(2655), + [anon_sym___fastcall] = ACTIONS(2655), + [anon_sym___thiscall] = ACTIONS(2655), + [anon_sym___vectorcall] = ACTIONS(2655), + [anon_sym_LBRACE] = ACTIONS(2657), + [anon_sym_LBRACK] = ACTIONS(2655), + [anon_sym_static] = ACTIONS(2655), + [anon_sym_register] = ACTIONS(2655), + [anon_sym_inline] = ACTIONS(2655), + [anon_sym_thread_local] = ACTIONS(2655), + [anon_sym_const] = ACTIONS(2655), + [anon_sym_volatile] = ACTIONS(2655), + [anon_sym_restrict] = ACTIONS(2655), + [anon_sym__Atomic] = ACTIONS(2655), + [anon_sym_mutable] = ACTIONS(2655), + [anon_sym_constexpr] = ACTIONS(2655), + [anon_sym_constinit] = ACTIONS(2655), + [anon_sym_consteval] = ACTIONS(2655), + [anon_sym_signed] = ACTIONS(2655), + [anon_sym_unsigned] = ACTIONS(2655), + [anon_sym_long] = ACTIONS(2655), + [anon_sym_short] = ACTIONS(2655), + [sym_primitive_type] = ACTIONS(2655), + [anon_sym_enum] = ACTIONS(2655), + [anon_sym_class] = ACTIONS(2655), + [anon_sym_struct] = ACTIONS(2655), + [anon_sym_union] = ACTIONS(2655), + [anon_sym_if] = ACTIONS(2655), + [anon_sym_else] = ACTIONS(2655), + [anon_sym_switch] = ACTIONS(2655), + [anon_sym_case] = ACTIONS(2655), + [anon_sym_default] = ACTIONS(2655), + [anon_sym_while] = ACTIONS(2655), + [anon_sym_do] = ACTIONS(2655), + [anon_sym_for] = ACTIONS(2655), + [anon_sym_return] = ACTIONS(2655), + [anon_sym_break] = ACTIONS(2655), + [anon_sym_continue] = ACTIONS(2655), + [anon_sym_goto] = ACTIONS(2655), + [anon_sym_not] = ACTIONS(2655), + [anon_sym_compl] = ACTIONS(2655), + [anon_sym_DASH_DASH] = ACTIONS(2657), + [anon_sym_PLUS_PLUS] = ACTIONS(2657), + [anon_sym_sizeof] = ACTIONS(2655), + [sym_number_literal] = ACTIONS(2657), + [anon_sym_L_SQUOTE] = ACTIONS(2657), + [anon_sym_u_SQUOTE] = ACTIONS(2657), + [anon_sym_U_SQUOTE] = ACTIONS(2657), + [anon_sym_u8_SQUOTE] = ACTIONS(2657), + [anon_sym_SQUOTE] = ACTIONS(2657), + [anon_sym_L_DQUOTE] = ACTIONS(2657), + [anon_sym_u_DQUOTE] = ACTIONS(2657), + [anon_sym_U_DQUOTE] = ACTIONS(2657), + [anon_sym_u8_DQUOTE] = ACTIONS(2657), + [anon_sym_DQUOTE] = ACTIONS(2657), + [sym_true] = ACTIONS(2655), + [sym_false] = ACTIONS(2655), + [sym_null] = ACTIONS(2655), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2655), + [anon_sym_decltype] = ACTIONS(2655), + [anon_sym_virtual] = ACTIONS(2655), + [anon_sym_explicit] = ACTIONS(2655), + [anon_sym_typename] = ACTIONS(2655), + [anon_sym_template] = ACTIONS(2655), + [anon_sym_operator] = ACTIONS(2655), + [anon_sym_try] = ACTIONS(2655), + [anon_sym_delete] = ACTIONS(2655), + [anon_sym_throw] = ACTIONS(2655), + [anon_sym_namespace] = ACTIONS(2655), + [anon_sym_using] = ACTIONS(2655), + [anon_sym_static_assert] = ACTIONS(2655), + [anon_sym_concept] = ACTIONS(2655), + [anon_sym_co_return] = ACTIONS(2655), + [anon_sym_co_yield] = ACTIONS(2655), + [anon_sym_co_await] = ACTIONS(2655), + [anon_sym_new] = ACTIONS(2655), + [anon_sym_requires] = ACTIONS(2655), + [sym_this] = ACTIONS(2655), + [sym_nullptr] = ACTIONS(2655), + [sym_raw_string_literal] = ACTIONS(2657), }, - [606] = { - [ts_builtin_sym_end] = ACTIONS(2461), - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), + [471] = { + [sym_identifier] = ACTIONS(2655), + [aux_sym_preproc_include_token1] = ACTIONS(2655), + [aux_sym_preproc_def_token1] = ACTIONS(2655), + [aux_sym_preproc_if_token1] = ACTIONS(2655), + [aux_sym_preproc_if_token2] = ACTIONS(2655), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2655), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2655), + [aux_sym_preproc_else_token1] = ACTIONS(2655), + [aux_sym_preproc_elif_token1] = ACTIONS(2655), + [sym_preproc_directive] = ACTIONS(2655), + [anon_sym_LPAREN2] = ACTIONS(2657), + [anon_sym_BANG] = ACTIONS(2657), + [anon_sym_TILDE] = ACTIONS(2657), + [anon_sym_DASH] = ACTIONS(2655), + [anon_sym_PLUS] = ACTIONS(2655), + [anon_sym_STAR] = ACTIONS(2657), + [anon_sym_AMP_AMP] = ACTIONS(2657), + [anon_sym_AMP] = ACTIONS(2655), + [anon_sym_SEMI] = ACTIONS(2657), + [anon_sym_typedef] = ACTIONS(2655), + [anon_sym_extern] = ACTIONS(2655), + [anon_sym___attribute__] = ACTIONS(2655), + [anon_sym_COLON_COLON] = ACTIONS(2657), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2657), + [anon_sym___declspec] = ACTIONS(2655), + [anon_sym___based] = ACTIONS(2655), + [anon_sym___cdecl] = ACTIONS(2655), + [anon_sym___clrcall] = ACTIONS(2655), + [anon_sym___stdcall] = ACTIONS(2655), + [anon_sym___fastcall] = ACTIONS(2655), + [anon_sym___thiscall] = ACTIONS(2655), + [anon_sym___vectorcall] = ACTIONS(2655), + [anon_sym_LBRACE] = ACTIONS(2657), + [anon_sym_LBRACK] = ACTIONS(2655), + [anon_sym_static] = ACTIONS(2655), + [anon_sym_register] = ACTIONS(2655), + [anon_sym_inline] = ACTIONS(2655), + [anon_sym_thread_local] = ACTIONS(2655), + [anon_sym_const] = ACTIONS(2655), + [anon_sym_volatile] = ACTIONS(2655), + [anon_sym_restrict] = ACTIONS(2655), + [anon_sym__Atomic] = ACTIONS(2655), + [anon_sym_mutable] = ACTIONS(2655), + [anon_sym_constexpr] = ACTIONS(2655), + [anon_sym_constinit] = ACTIONS(2655), + [anon_sym_consteval] = ACTIONS(2655), + [anon_sym_signed] = ACTIONS(2655), + [anon_sym_unsigned] = ACTIONS(2655), + [anon_sym_long] = ACTIONS(2655), + [anon_sym_short] = ACTIONS(2655), + [sym_primitive_type] = ACTIONS(2655), + [anon_sym_enum] = ACTIONS(2655), + [anon_sym_class] = ACTIONS(2655), + [anon_sym_struct] = ACTIONS(2655), + [anon_sym_union] = ACTIONS(2655), + [anon_sym_if] = ACTIONS(2655), + [anon_sym_else] = ACTIONS(2655), + [anon_sym_switch] = ACTIONS(2655), + [anon_sym_case] = ACTIONS(2655), + [anon_sym_default] = ACTIONS(2655), + [anon_sym_while] = ACTIONS(2655), + [anon_sym_do] = ACTIONS(2655), + [anon_sym_for] = ACTIONS(2655), + [anon_sym_return] = ACTIONS(2655), + [anon_sym_break] = ACTIONS(2655), + [anon_sym_continue] = ACTIONS(2655), + [anon_sym_goto] = ACTIONS(2655), + [anon_sym_not] = ACTIONS(2655), + [anon_sym_compl] = ACTIONS(2655), + [anon_sym_DASH_DASH] = ACTIONS(2657), + [anon_sym_PLUS_PLUS] = ACTIONS(2657), + [anon_sym_sizeof] = ACTIONS(2655), + [sym_number_literal] = ACTIONS(2657), + [anon_sym_L_SQUOTE] = ACTIONS(2657), + [anon_sym_u_SQUOTE] = ACTIONS(2657), + [anon_sym_U_SQUOTE] = ACTIONS(2657), + [anon_sym_u8_SQUOTE] = ACTIONS(2657), + [anon_sym_SQUOTE] = ACTIONS(2657), + [anon_sym_L_DQUOTE] = ACTIONS(2657), + [anon_sym_u_DQUOTE] = ACTIONS(2657), + [anon_sym_U_DQUOTE] = ACTIONS(2657), + [anon_sym_u8_DQUOTE] = ACTIONS(2657), + [anon_sym_DQUOTE] = ACTIONS(2657), + [sym_true] = ACTIONS(2655), + [sym_false] = ACTIONS(2655), + [sym_null] = ACTIONS(2655), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2655), + [anon_sym_decltype] = ACTIONS(2655), + [anon_sym_virtual] = ACTIONS(2655), + [anon_sym_explicit] = ACTIONS(2655), + [anon_sym_typename] = ACTIONS(2655), + [anon_sym_template] = ACTIONS(2655), + [anon_sym_operator] = ACTIONS(2655), + [anon_sym_try] = ACTIONS(2655), + [anon_sym_delete] = ACTIONS(2655), + [anon_sym_throw] = ACTIONS(2655), + [anon_sym_namespace] = ACTIONS(2655), + [anon_sym_using] = ACTIONS(2655), + [anon_sym_static_assert] = ACTIONS(2655), + [anon_sym_concept] = ACTIONS(2655), + [anon_sym_co_return] = ACTIONS(2655), + [anon_sym_co_yield] = ACTIONS(2655), + [anon_sym_co_await] = ACTIONS(2655), + [anon_sym_new] = ACTIONS(2655), + [anon_sym_requires] = ACTIONS(2655), + [sym_this] = ACTIONS(2655), + [sym_nullptr] = ACTIONS(2655), + [sym_raw_string_literal] = ACTIONS(2657), }, - [607] = { - [ts_builtin_sym_end] = ACTIONS(2461), - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), + [472] = { + [sym_identifier] = ACTIONS(2659), + [aux_sym_preproc_include_token1] = ACTIONS(2659), + [aux_sym_preproc_def_token1] = ACTIONS(2659), + [aux_sym_preproc_if_token1] = ACTIONS(2659), + [aux_sym_preproc_if_token2] = ACTIONS(2659), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2659), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2659), + [aux_sym_preproc_else_token1] = ACTIONS(2659), + [aux_sym_preproc_elif_token1] = ACTIONS(2659), + [sym_preproc_directive] = ACTIONS(2659), + [anon_sym_LPAREN2] = ACTIONS(2661), + [anon_sym_BANG] = ACTIONS(2661), + [anon_sym_TILDE] = ACTIONS(2661), + [anon_sym_DASH] = ACTIONS(2659), + [anon_sym_PLUS] = ACTIONS(2659), + [anon_sym_STAR] = ACTIONS(2661), + [anon_sym_AMP_AMP] = ACTIONS(2661), + [anon_sym_AMP] = ACTIONS(2659), + [anon_sym_SEMI] = ACTIONS(2661), + [anon_sym_typedef] = ACTIONS(2659), + [anon_sym_extern] = ACTIONS(2659), + [anon_sym___attribute__] = ACTIONS(2659), + [anon_sym_COLON_COLON] = ACTIONS(2661), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2661), + [anon_sym___declspec] = ACTIONS(2659), + [anon_sym___based] = ACTIONS(2659), + [anon_sym___cdecl] = ACTIONS(2659), + [anon_sym___clrcall] = ACTIONS(2659), + [anon_sym___stdcall] = ACTIONS(2659), + [anon_sym___fastcall] = ACTIONS(2659), + [anon_sym___thiscall] = ACTIONS(2659), + [anon_sym___vectorcall] = ACTIONS(2659), + [anon_sym_LBRACE] = ACTIONS(2661), + [anon_sym_LBRACK] = ACTIONS(2659), + [anon_sym_static] = ACTIONS(2659), + [anon_sym_register] = ACTIONS(2659), + [anon_sym_inline] = ACTIONS(2659), + [anon_sym_thread_local] = ACTIONS(2659), + [anon_sym_const] = ACTIONS(2659), + [anon_sym_volatile] = ACTIONS(2659), + [anon_sym_restrict] = ACTIONS(2659), + [anon_sym__Atomic] = ACTIONS(2659), + [anon_sym_mutable] = ACTIONS(2659), + [anon_sym_constexpr] = ACTIONS(2659), + [anon_sym_constinit] = ACTIONS(2659), + [anon_sym_consteval] = ACTIONS(2659), + [anon_sym_signed] = ACTIONS(2659), + [anon_sym_unsigned] = ACTIONS(2659), + [anon_sym_long] = ACTIONS(2659), + [anon_sym_short] = ACTIONS(2659), + [sym_primitive_type] = ACTIONS(2659), + [anon_sym_enum] = ACTIONS(2659), + [anon_sym_class] = ACTIONS(2659), + [anon_sym_struct] = ACTIONS(2659), + [anon_sym_union] = ACTIONS(2659), + [anon_sym_if] = ACTIONS(2659), + [anon_sym_switch] = ACTIONS(2659), + [anon_sym_case] = ACTIONS(2659), + [anon_sym_default] = ACTIONS(2659), + [anon_sym_while] = ACTIONS(2659), + [anon_sym_do] = ACTIONS(2659), + [anon_sym_for] = ACTIONS(2659), + [anon_sym_return] = ACTIONS(2659), + [anon_sym_break] = ACTIONS(2659), + [anon_sym_continue] = ACTIONS(2659), + [anon_sym_goto] = ACTIONS(2659), + [anon_sym_not] = ACTIONS(2659), + [anon_sym_compl] = ACTIONS(2659), + [anon_sym_DASH_DASH] = ACTIONS(2661), + [anon_sym_PLUS_PLUS] = ACTIONS(2661), + [anon_sym_sizeof] = ACTIONS(2659), + [sym_number_literal] = ACTIONS(2661), + [anon_sym_L_SQUOTE] = ACTIONS(2661), + [anon_sym_u_SQUOTE] = ACTIONS(2661), + [anon_sym_U_SQUOTE] = ACTIONS(2661), + [anon_sym_u8_SQUOTE] = ACTIONS(2661), + [anon_sym_SQUOTE] = ACTIONS(2661), + [anon_sym_L_DQUOTE] = ACTIONS(2661), + [anon_sym_u_DQUOTE] = ACTIONS(2661), + [anon_sym_U_DQUOTE] = ACTIONS(2661), + [anon_sym_u8_DQUOTE] = ACTIONS(2661), + [anon_sym_DQUOTE] = ACTIONS(2661), + [sym_true] = ACTIONS(2659), + [sym_false] = ACTIONS(2659), + [sym_null] = ACTIONS(2659), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2659), + [anon_sym_decltype] = ACTIONS(2659), + [anon_sym_virtual] = ACTIONS(2659), + [anon_sym_explicit] = ACTIONS(2659), + [anon_sym_typename] = ACTIONS(2659), + [anon_sym_template] = ACTIONS(2659), + [anon_sym_operator] = ACTIONS(2659), + [anon_sym_try] = ACTIONS(2659), + [anon_sym_delete] = ACTIONS(2659), + [anon_sym_throw] = ACTIONS(2659), + [anon_sym_namespace] = ACTIONS(2659), + [anon_sym_using] = ACTIONS(2659), + [anon_sym_static_assert] = ACTIONS(2659), + [anon_sym_concept] = ACTIONS(2659), + [anon_sym_co_return] = ACTIONS(2659), + [anon_sym_co_yield] = ACTIONS(2659), + [anon_sym_co_await] = ACTIONS(2659), + [anon_sym_new] = ACTIONS(2659), + [anon_sym_requires] = ACTIONS(2659), + [sym_this] = ACTIONS(2659), + [sym_nullptr] = ACTIONS(2659), + [sym_raw_string_literal] = ACTIONS(2661), }, - [608] = { - [sym_function_definition] = STATE(518), - [sym_declaration] = STATE(518), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(3964), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(2900), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym_ms_call_modifier] = STATE(1828), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4684), - [sym_array_declarator] = STATE(4825), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(3090), + [473] = { + [sym_type_qualifier] = STATE(3373), + [sym__type_specifier] = STATE(4189), [sym_sized_type_specifier] = STATE(3139), [sym_enum_specifier] = STATE(3139), [sym_struct_specifier] = STATE(3139), [sym_union_specifier] = STATE(3139), - [sym__empty_declaration] = STATE(518), + [sym__expression] = STATE(3611), + [sym_conditional_expression] = STATE(3865), + [sym_assignment_expression] = STATE(3865), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3865), + [sym_binary_expression] = STATE(3865), + [sym_update_expression] = STATE(3865), + [sym_cast_expression] = STATE(3865), + [sym_type_descriptor] = STATE(5782), + [sym_sizeof_expression] = STATE(3865), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3865), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3707), + [sym_concatenated_string] = STATE(3707), + [sym_string_literal] = STATE(3250), [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), + [sym_decltype_auto] = STATE(3138), [sym_decltype] = STATE(3139), [sym_class_specifier] = STATE(3139), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1792), + [sym__class_name] = STATE(6539), [sym_dependent_type] = STATE(3139), - [sym_template_declaration] = STATE(518), - [sym_operator_cast] = STATE(5198), - [sym__constructor_specifiers] = STATE(1792), - [sym_operator_cast_definition] = STATE(518), - [sym_operator_cast_declaration] = STATE(518), - [sym_constructor_or_destructor_definition] = STATE(518), - [sym_constructor_or_destructor_declaration] = STATE(518), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(2976), - [sym_template_function] = STATE(4825), - [sym_alias_declaration] = STATE(518), - [sym_concept_definition] = STATE(518), - [sym_requires_clause] = STATE(1058), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4520), - [sym_qualified_identifier] = STATE(4825), - [sym_qualified_type_identifier] = STATE(3198), - [sym_qualified_operator_cast_identifier] = STATE(5198), - [sym_operator_name] = STATE(4825), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_operator_cast_definition_repeat1] = STATE(1792), - [sym_identifier] = ACTIONS(2805), - [anon_sym_LPAREN2] = ACTIONS(1515), - [anon_sym_TILDE] = ACTIONS(1517), - [anon_sym_STAR] = ACTIONS(1519), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1521), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2807), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1389), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACK] = ACTIONS(1527), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), + [sym_template_type] = STATE(4443), + [sym_template_function] = STATE(3865), + [sym_co_await_expression] = STATE(3865), + [sym_new_expression] = STATE(3865), + [sym_delete_expression] = STATE(3865), + [sym_requires_clause] = STATE(3865), + [sym_requires_expression] = STATE(3865), + [sym_lambda_expression] = STATE(3865), + [sym_lambda_capture_specifier] = STATE(4789), + [sym_fold_expression] = STATE(3865), + [sym_parameter_pack_expansion] = STATE(3865), + [sym_type_parameter_pack_expansion] = STATE(5964), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4919), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(4514), + [sym_user_defined_literal] = STATE(3865), + [aux_sym_type_definition_repeat1] = STATE(3373), + [aux_sym_sized_type_specifier_repeat1] = STATE(2300), + [sym_identifier] = ACTIONS(2663), + [anon_sym_LPAREN2] = ACTIONS(2665), + [anon_sym_BANG] = ACTIONS(2667), + [anon_sym_TILDE] = ACTIONS(2667), + [anon_sym_DASH] = ACTIONS(2669), + [anon_sym_PLUS] = ACTIONS(2669), + [anon_sym_STAR] = ACTIONS(2671), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_COLON_COLON] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(1713), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -101635,747 +89566,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_constexpr] = ACTIONS(57), [anon_sym_constinit] = ACTIONS(57), [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(2809), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), + [anon_sym_signed] = ACTIONS(2675), + [anon_sym_unsigned] = ACTIONS(2675), + [anon_sym_long] = ACTIONS(2675), + [anon_sym_short] = ACTIONS(2675), + [sym_primitive_type] = ACTIONS(2677), + [anon_sym_enum] = ACTIONS(2679), + [anon_sym_class] = ACTIONS(2681), + [anon_sym_struct] = ACTIONS(2683), + [anon_sym_union] = ACTIONS(2685), + [anon_sym_not] = ACTIONS(2669), + [anon_sym_compl] = ACTIONS(2669), + [anon_sym_DASH_DASH] = ACTIONS(2687), + [anon_sym_PLUS_PLUS] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2689), + [sym_number_literal] = ACTIONS(2691), + [anon_sym_L_SQUOTE] = ACTIONS(2693), + [anon_sym_u_SQUOTE] = ACTIONS(2693), + [anon_sym_U_SQUOTE] = ACTIONS(2693), + [anon_sym_u8_SQUOTE] = ACTIONS(2693), + [anon_sym_SQUOTE] = ACTIONS(2693), + [anon_sym_L_DQUOTE] = ACTIONS(2695), + [anon_sym_u_DQUOTE] = ACTIONS(2695), + [anon_sym_U_DQUOTE] = ACTIONS(2695), + [anon_sym_u8_DQUOTE] = ACTIONS(2695), + [anon_sym_DQUOTE] = ACTIONS(2695), + [sym_true] = ACTIONS(2697), + [sym_false] = ACTIONS(2697), + [sym_null] = ACTIONS(2697), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(105), - [anon_sym_decltype] = ACTIONS(107), - [anon_sym_virtual] = ACTIONS(109), - [anon_sym_explicit] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(2811), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_using] = ACTIONS(2813), - [anon_sym_concept] = ACTIONS(287), - [anon_sym_requires] = ACTIONS(2815), - }, - [609] = { - [ts_builtin_sym_end] = ACTIONS(2461), - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [610] = { - [ts_builtin_sym_end] = ACTIONS(2461), - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [611] = { - [ts_builtin_sym_end] = ACTIONS(2449), - [sym_identifier] = ACTIONS(2447), - [aux_sym_preproc_include_token1] = ACTIONS(2447), - [aux_sym_preproc_def_token1] = ACTIONS(2447), - [aux_sym_preproc_if_token1] = ACTIONS(2447), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2447), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2447), - [sym_preproc_directive] = ACTIONS(2447), - [anon_sym_LPAREN2] = ACTIONS(2449), - [anon_sym_BANG] = ACTIONS(2449), - [anon_sym_TILDE] = ACTIONS(2449), - [anon_sym_DASH] = ACTIONS(2447), - [anon_sym_PLUS] = ACTIONS(2447), - [anon_sym_STAR] = ACTIONS(2449), - [anon_sym_AMP_AMP] = ACTIONS(2449), - [anon_sym_AMP] = ACTIONS(2447), - [anon_sym_SEMI] = ACTIONS(2449), - [anon_sym_typedef] = ACTIONS(2447), - [anon_sym_extern] = ACTIONS(2447), - [anon_sym___attribute__] = ACTIONS(2447), - [anon_sym_COLON_COLON] = ACTIONS(2449), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2449), - [anon_sym___declspec] = ACTIONS(2447), - [anon_sym___based] = ACTIONS(2447), - [anon_sym___cdecl] = ACTIONS(2447), - [anon_sym___clrcall] = ACTIONS(2447), - [anon_sym___stdcall] = ACTIONS(2447), - [anon_sym___fastcall] = ACTIONS(2447), - [anon_sym___thiscall] = ACTIONS(2447), - [anon_sym___vectorcall] = ACTIONS(2447), - [anon_sym_LBRACE] = ACTIONS(2449), - [anon_sym_LBRACK] = ACTIONS(2447), - [anon_sym_static] = ACTIONS(2447), - [anon_sym_register] = ACTIONS(2447), - [anon_sym_inline] = ACTIONS(2447), - [anon_sym_thread_local] = ACTIONS(2447), - [anon_sym_const] = ACTIONS(2447), - [anon_sym_volatile] = ACTIONS(2447), - [anon_sym_restrict] = ACTIONS(2447), - [anon_sym__Atomic] = ACTIONS(2447), - [anon_sym_mutable] = ACTIONS(2447), - [anon_sym_constexpr] = ACTIONS(2447), - [anon_sym_constinit] = ACTIONS(2447), - [anon_sym_consteval] = ACTIONS(2447), - [anon_sym_signed] = ACTIONS(2447), - [anon_sym_unsigned] = ACTIONS(2447), - [anon_sym_long] = ACTIONS(2447), - [anon_sym_short] = ACTIONS(2447), - [sym_primitive_type] = ACTIONS(2447), - [anon_sym_enum] = ACTIONS(2447), - [anon_sym_class] = ACTIONS(2447), - [anon_sym_struct] = ACTIONS(2447), - [anon_sym_union] = ACTIONS(2447), - [anon_sym_if] = ACTIONS(2447), - [anon_sym_else] = ACTIONS(2447), - [anon_sym_switch] = ACTIONS(2447), - [anon_sym_case] = ACTIONS(2447), - [anon_sym_default] = ACTIONS(2447), - [anon_sym_while] = ACTIONS(2447), - [anon_sym_do] = ACTIONS(2447), - [anon_sym_for] = ACTIONS(2447), - [anon_sym_return] = ACTIONS(2447), - [anon_sym_break] = ACTIONS(2447), - [anon_sym_continue] = ACTIONS(2447), - [anon_sym_goto] = ACTIONS(2447), - [anon_sym_DASH_DASH] = ACTIONS(2449), - [anon_sym_PLUS_PLUS] = ACTIONS(2449), - [anon_sym_sizeof] = ACTIONS(2447), - [sym_number_literal] = ACTIONS(2449), - [anon_sym_L_SQUOTE] = ACTIONS(2449), - [anon_sym_u_SQUOTE] = ACTIONS(2449), - [anon_sym_U_SQUOTE] = ACTIONS(2449), - [anon_sym_u8_SQUOTE] = ACTIONS(2449), - [anon_sym_SQUOTE] = ACTIONS(2449), - [anon_sym_L_DQUOTE] = ACTIONS(2449), - [anon_sym_u_DQUOTE] = ACTIONS(2449), - [anon_sym_U_DQUOTE] = ACTIONS(2449), - [anon_sym_u8_DQUOTE] = ACTIONS(2449), - [anon_sym_DQUOTE] = ACTIONS(2449), - [sym_true] = ACTIONS(2447), - [sym_false] = ACTIONS(2447), - [sym_null] = ACTIONS(2447), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2447), - [anon_sym_decltype] = ACTIONS(2447), - [anon_sym_virtual] = ACTIONS(2447), - [anon_sym_explicit] = ACTIONS(2447), - [anon_sym_typename] = ACTIONS(2447), - [anon_sym_template] = ACTIONS(2447), - [anon_sym_operator] = ACTIONS(2447), - [anon_sym_try] = ACTIONS(2447), - [anon_sym_delete] = ACTIONS(2447), - [anon_sym_throw] = ACTIONS(2447), - [anon_sym_namespace] = ACTIONS(2447), - [anon_sym_using] = ACTIONS(2447), - [anon_sym_static_assert] = ACTIONS(2447), - [anon_sym_concept] = ACTIONS(2447), - [anon_sym_co_return] = ACTIONS(2447), - [anon_sym_co_yield] = ACTIONS(2447), - [anon_sym_co_await] = ACTIONS(2447), - [anon_sym_new] = ACTIONS(2447), - [anon_sym_requires] = ACTIONS(2447), - [sym_this] = ACTIONS(2447), - [sym_nullptr] = ACTIONS(2447), - [sym_raw_string_literal] = ACTIONS(2449), - }, - [612] = { - [ts_builtin_sym_end] = ACTIONS(2461), - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [613] = { - [ts_builtin_sym_end] = ACTIONS(2461), - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [614] = { - [ts_builtin_sym_end] = ACTIONS(2439), - [sym_identifier] = ACTIONS(2437), - [aux_sym_preproc_include_token1] = ACTIONS(2437), - [aux_sym_preproc_def_token1] = ACTIONS(2437), - [aux_sym_preproc_if_token1] = ACTIONS(2437), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2437), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2437), - [sym_preproc_directive] = ACTIONS(2437), - [anon_sym_LPAREN2] = ACTIONS(2439), - [anon_sym_BANG] = ACTIONS(2439), - [anon_sym_TILDE] = ACTIONS(2439), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2439), - [anon_sym_AMP_AMP] = ACTIONS(2439), - [anon_sym_AMP] = ACTIONS(2437), - [anon_sym_SEMI] = ACTIONS(2439), - [anon_sym_typedef] = ACTIONS(2437), - [anon_sym_extern] = ACTIONS(2437), - [anon_sym___attribute__] = ACTIONS(2437), - [anon_sym_COLON_COLON] = ACTIONS(2439), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2439), - [anon_sym___declspec] = ACTIONS(2437), - [anon_sym___based] = ACTIONS(2437), - [anon_sym___cdecl] = ACTIONS(2437), - [anon_sym___clrcall] = ACTIONS(2437), - [anon_sym___stdcall] = ACTIONS(2437), - [anon_sym___fastcall] = ACTIONS(2437), - [anon_sym___thiscall] = ACTIONS(2437), - [anon_sym___vectorcall] = ACTIONS(2437), - [anon_sym_LBRACE] = ACTIONS(2439), - [anon_sym_LBRACK] = ACTIONS(2437), - [anon_sym_static] = ACTIONS(2437), - [anon_sym_register] = ACTIONS(2437), - [anon_sym_inline] = ACTIONS(2437), - [anon_sym_thread_local] = ACTIONS(2437), - [anon_sym_const] = ACTIONS(2437), - [anon_sym_volatile] = ACTIONS(2437), - [anon_sym_restrict] = ACTIONS(2437), - [anon_sym__Atomic] = ACTIONS(2437), - [anon_sym_mutable] = ACTIONS(2437), - [anon_sym_constexpr] = ACTIONS(2437), - [anon_sym_constinit] = ACTIONS(2437), - [anon_sym_consteval] = ACTIONS(2437), - [anon_sym_signed] = ACTIONS(2437), - [anon_sym_unsigned] = ACTIONS(2437), - [anon_sym_long] = ACTIONS(2437), - [anon_sym_short] = ACTIONS(2437), - [sym_primitive_type] = ACTIONS(2437), - [anon_sym_enum] = ACTIONS(2437), - [anon_sym_class] = ACTIONS(2437), - [anon_sym_struct] = ACTIONS(2437), - [anon_sym_union] = ACTIONS(2437), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_else] = ACTIONS(2817), - [anon_sym_switch] = ACTIONS(2437), - [anon_sym_case] = ACTIONS(2437), - [anon_sym_default] = ACTIONS(2437), - [anon_sym_while] = ACTIONS(2437), - [anon_sym_do] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_return] = ACTIONS(2437), - [anon_sym_break] = ACTIONS(2437), - [anon_sym_continue] = ACTIONS(2437), - [anon_sym_goto] = ACTIONS(2437), - [anon_sym_DASH_DASH] = ACTIONS(2439), - [anon_sym_PLUS_PLUS] = ACTIONS(2439), - [anon_sym_sizeof] = ACTIONS(2437), - [sym_number_literal] = ACTIONS(2439), - [anon_sym_L_SQUOTE] = ACTIONS(2439), - [anon_sym_u_SQUOTE] = ACTIONS(2439), - [anon_sym_U_SQUOTE] = ACTIONS(2439), - [anon_sym_u8_SQUOTE] = ACTIONS(2439), - [anon_sym_SQUOTE] = ACTIONS(2439), - [anon_sym_L_DQUOTE] = ACTIONS(2439), - [anon_sym_u_DQUOTE] = ACTIONS(2439), - [anon_sym_U_DQUOTE] = ACTIONS(2439), - [anon_sym_u8_DQUOTE] = ACTIONS(2439), - [anon_sym_DQUOTE] = ACTIONS(2439), - [sym_true] = ACTIONS(2437), - [sym_false] = ACTIONS(2437), - [sym_null] = ACTIONS(2437), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2437), - [anon_sym_decltype] = ACTIONS(2437), - [anon_sym_virtual] = ACTIONS(2437), - [anon_sym_explicit] = ACTIONS(2437), - [anon_sym_typename] = ACTIONS(2437), - [anon_sym_template] = ACTIONS(2437), - [anon_sym_operator] = ACTIONS(2437), - [anon_sym_try] = ACTIONS(2437), - [anon_sym_delete] = ACTIONS(2437), - [anon_sym_throw] = ACTIONS(2437), - [anon_sym_namespace] = ACTIONS(2437), - [anon_sym_using] = ACTIONS(2437), - [anon_sym_static_assert] = ACTIONS(2437), - [anon_sym_concept] = ACTIONS(2437), - [anon_sym_co_return] = ACTIONS(2437), - [anon_sym_co_yield] = ACTIONS(2437), - [anon_sym_co_await] = ACTIONS(2437), - [anon_sym_new] = ACTIONS(2437), - [anon_sym_requires] = ACTIONS(2437), - [sym_this] = ACTIONS(2437), - [sym_nullptr] = ACTIONS(2437), - [sym_raw_string_literal] = ACTIONS(2439), + [sym_auto] = ACTIONS(2699), + [anon_sym_decltype] = ACTIONS(2701), + [anon_sym_typename] = ACTIONS(2703), + [anon_sym_template] = ACTIONS(976), + [anon_sym_GT2] = ACTIONS(2705), + [anon_sym_delete] = ACTIONS(2707), + [anon_sym_co_await] = ACTIONS(2709), + [anon_sym_new] = ACTIONS(2711), + [anon_sym_requires] = ACTIONS(2713), + [sym_this] = ACTIONS(2697), + [sym_nullptr] = ACTIONS(2697), + [sym_raw_string_literal] = ACTIONS(2715), }, - [615] = { - [sym_function_definition] = STATE(2052), - [sym_declaration] = STATE(2052), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(3973), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(2900), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym_ms_call_modifier] = STATE(1872), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4709), - [sym_array_declarator] = STATE(4825), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(2995), + [474] = { + [sym_type_qualifier] = STATE(3373), + [sym__type_specifier] = STATE(4189), [sym_sized_type_specifier] = STATE(3139), [sym_enum_specifier] = STATE(3139), [sym_struct_specifier] = STATE(3139), [sym_union_specifier] = STATE(3139), - [sym__empty_declaration] = STATE(2052), + [sym__expression] = STATE(3593), + [sym_conditional_expression] = STATE(3865), + [sym_assignment_expression] = STATE(3865), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3865), + [sym_binary_expression] = STATE(3865), + [sym_update_expression] = STATE(3865), + [sym_cast_expression] = STATE(3865), + [sym_type_descriptor] = STATE(5692), + [sym_sizeof_expression] = STATE(3865), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3865), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3707), + [sym_concatenated_string] = STATE(3707), + [sym_string_literal] = STATE(3250), [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), + [sym_decltype_auto] = STATE(3138), [sym_decltype] = STATE(3139), [sym_class_specifier] = STATE(3139), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1777), + [sym__class_name] = STATE(6539), [sym_dependent_type] = STATE(3139), - [sym_template_declaration] = STATE(2052), - [sym_operator_cast] = STATE(5177), - [sym__constructor_specifiers] = STATE(1777), - [sym_operator_cast_definition] = STATE(2052), - [sym_operator_cast_declaration] = STATE(2052), - [sym_constructor_or_destructor_definition] = STATE(2052), - [sym_constructor_or_destructor_declaration] = STATE(2052), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(2976), - [sym_template_function] = STATE(4825), - [sym_alias_declaration] = STATE(2052), - [sym_concept_definition] = STATE(2052), - [sym_requires_clause] = STATE(1057), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4520), - [sym_qualified_identifier] = STATE(4825), - [sym_qualified_type_identifier] = STATE(3198), - [sym_qualified_operator_cast_identifier] = STATE(5177), - [sym_operator_name] = STATE(4825), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_operator_cast_definition_repeat1] = STATE(1777), - [sym_identifier] = ACTIONS(2805), - [anon_sym_LPAREN2] = ACTIONS(1515), - [anon_sym_TILDE] = ACTIONS(1517), - [anon_sym_STAR] = ACTIONS(1519), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1521), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2807), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1389), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACK] = ACTIONS(1527), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), + [sym_template_type] = STATE(4443), + [sym_template_function] = STATE(3865), + [sym_co_await_expression] = STATE(3865), + [sym_new_expression] = STATE(3865), + [sym_delete_expression] = STATE(3865), + [sym_requires_clause] = STATE(3865), + [sym_requires_expression] = STATE(3865), + [sym_lambda_expression] = STATE(3865), + [sym_lambda_capture_specifier] = STATE(4789), + [sym_fold_expression] = STATE(3865), + [sym_parameter_pack_expansion] = STATE(3865), + [sym_type_parameter_pack_expansion] = STATE(6066), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4919), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(4514), + [sym_user_defined_literal] = STATE(3865), + [aux_sym_type_definition_repeat1] = STATE(3373), + [aux_sym_sized_type_specifier_repeat1] = STATE(2300), + [sym_identifier] = ACTIONS(2663), + [anon_sym_LPAREN2] = ACTIONS(2665), + [anon_sym_BANG] = ACTIONS(2667), + [anon_sym_TILDE] = ACTIONS(2667), + [anon_sym_DASH] = ACTIONS(2669), + [anon_sym_PLUS] = ACTIONS(2669), + [anon_sym_STAR] = ACTIONS(2671), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_COLON_COLON] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(1713), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -102384,9521 +89676,218 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_constexpr] = ACTIONS(57), [anon_sym_constinit] = ACTIONS(57), [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(2809), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), + [anon_sym_signed] = ACTIONS(2675), + [anon_sym_unsigned] = ACTIONS(2675), + [anon_sym_long] = ACTIONS(2675), + [anon_sym_short] = ACTIONS(2675), + [sym_primitive_type] = ACTIONS(2677), + [anon_sym_enum] = ACTIONS(2679), + [anon_sym_class] = ACTIONS(2681), + [anon_sym_struct] = ACTIONS(2683), + [anon_sym_union] = ACTIONS(2685), + [anon_sym_not] = ACTIONS(2669), + [anon_sym_compl] = ACTIONS(2669), + [anon_sym_DASH_DASH] = ACTIONS(2687), + [anon_sym_PLUS_PLUS] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2689), + [sym_number_literal] = ACTIONS(2691), + [anon_sym_L_SQUOTE] = ACTIONS(2693), + [anon_sym_u_SQUOTE] = ACTIONS(2693), + [anon_sym_U_SQUOTE] = ACTIONS(2693), + [anon_sym_u8_SQUOTE] = ACTIONS(2693), + [anon_sym_SQUOTE] = ACTIONS(2693), + [anon_sym_L_DQUOTE] = ACTIONS(2695), + [anon_sym_u_DQUOTE] = ACTIONS(2695), + [anon_sym_U_DQUOTE] = ACTIONS(2695), + [anon_sym_u8_DQUOTE] = ACTIONS(2695), + [anon_sym_DQUOTE] = ACTIONS(2695), + [sym_true] = ACTIONS(2697), + [sym_false] = ACTIONS(2697), + [sym_null] = ACTIONS(2697), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(105), - [anon_sym_decltype] = ACTIONS(107), - [anon_sym_virtual] = ACTIONS(109), - [anon_sym_explicit] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(1707), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_using] = ACTIONS(2819), - [anon_sym_concept] = ACTIONS(2821), - [anon_sym_requires] = ACTIONS(2815), - }, - [616] = { - [ts_builtin_sym_end] = ACTIONS(2461), - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [617] = { - [ts_builtin_sym_end] = ACTIONS(2461), - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [618] = { - [ts_builtin_sym_end] = ACTIONS(2461), - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [619] = { - [ts_builtin_sym_end] = ACTIONS(2461), - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [620] = { - [ts_builtin_sym_end] = ACTIONS(2461), - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [621] = { - [ts_builtin_sym_end] = ACTIONS(2461), - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [622] = { - [ts_builtin_sym_end] = ACTIONS(2461), - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [623] = { - [ts_builtin_sym_end] = ACTIONS(2461), - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [624] = { - [ts_builtin_sym_end] = ACTIONS(2461), - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [625] = { - [ts_builtin_sym_end] = ACTIONS(2461), - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [626] = { - [ts_builtin_sym_end] = ACTIONS(2461), - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [627] = { - [ts_builtin_sym_end] = ACTIONS(2461), - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [628] = { - [ts_builtin_sym_end] = ACTIONS(2461), - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [629] = { - [ts_builtin_sym_end] = ACTIONS(2461), - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [630] = { - [ts_builtin_sym_end] = ACTIONS(2461), - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [631] = { - [ts_builtin_sym_end] = ACTIONS(2461), - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [632] = { - [ts_builtin_sym_end] = ACTIONS(2461), - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [633] = { - [ts_builtin_sym_end] = ACTIONS(2461), - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [634] = { - [ts_builtin_sym_end] = ACTIONS(2461), - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [635] = { - [ts_builtin_sym_end] = ACTIONS(2461), - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [636] = { - [sym_identifier] = ACTIONS(2287), - [aux_sym_preproc_include_token1] = ACTIONS(2287), - [aux_sym_preproc_def_token1] = ACTIONS(2287), - [anon_sym_COMMA] = ACTIONS(2391), - [aux_sym_preproc_if_token1] = ACTIONS(2287), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2287), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2287), - [sym_preproc_directive] = ACTIONS(2287), - [anon_sym_LPAREN2] = ACTIONS(2289), - [anon_sym_BANG] = ACTIONS(2289), - [anon_sym_TILDE] = ACTIONS(2289), - [anon_sym_DASH] = ACTIONS(2287), - [anon_sym_PLUS] = ACTIONS(2287), - [anon_sym_STAR] = ACTIONS(2289), - [anon_sym_AMP_AMP] = ACTIONS(2289), - [anon_sym_AMP] = ACTIONS(2287), - [anon_sym_SEMI] = ACTIONS(2289), - [anon_sym_typedef] = ACTIONS(2287), - [anon_sym_extern] = ACTIONS(2287), - [anon_sym___attribute__] = ACTIONS(2287), - [anon_sym_COLON_COLON] = ACTIONS(2289), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2289), - [anon_sym___declspec] = ACTIONS(2287), - [anon_sym___based] = ACTIONS(2287), - [anon_sym___cdecl] = ACTIONS(2287), - [anon_sym___clrcall] = ACTIONS(2287), - [anon_sym___stdcall] = ACTIONS(2287), - [anon_sym___fastcall] = ACTIONS(2287), - [anon_sym___thiscall] = ACTIONS(2287), - [anon_sym___vectorcall] = ACTIONS(2287), - [anon_sym_LBRACE] = ACTIONS(2289), - [anon_sym_RBRACE] = ACTIONS(2391), - [anon_sym_LBRACK] = ACTIONS(2287), - [anon_sym_static] = ACTIONS(2287), - [anon_sym_register] = ACTIONS(2287), - [anon_sym_inline] = ACTIONS(2287), - [anon_sym_thread_local] = ACTIONS(2287), - [anon_sym_const] = ACTIONS(2287), - [anon_sym_volatile] = ACTIONS(2287), - [anon_sym_restrict] = ACTIONS(2287), - [anon_sym__Atomic] = ACTIONS(2287), - [anon_sym_mutable] = ACTIONS(2287), - [anon_sym_constexpr] = ACTIONS(2287), - [anon_sym_constinit] = ACTIONS(2287), - [anon_sym_consteval] = ACTIONS(2287), - [anon_sym_signed] = ACTIONS(2287), - [anon_sym_unsigned] = ACTIONS(2287), - [anon_sym_long] = ACTIONS(2287), - [anon_sym_short] = ACTIONS(2287), - [sym_primitive_type] = ACTIONS(2287), - [anon_sym_enum] = ACTIONS(2287), - [anon_sym_class] = ACTIONS(2287), - [anon_sym_struct] = ACTIONS(2287), - [anon_sym_union] = ACTIONS(2287), - [anon_sym_if] = ACTIONS(2287), - [anon_sym_switch] = ACTIONS(2287), - [anon_sym_case] = ACTIONS(2287), - [anon_sym_default] = ACTIONS(2287), - [anon_sym_while] = ACTIONS(2287), - [anon_sym_do] = ACTIONS(2287), - [anon_sym_for] = ACTIONS(2287), - [anon_sym_return] = ACTIONS(2287), - [anon_sym_break] = ACTIONS(2287), - [anon_sym_continue] = ACTIONS(2287), - [anon_sym_goto] = ACTIONS(2287), - [anon_sym_DASH_DASH] = ACTIONS(2289), - [anon_sym_PLUS_PLUS] = ACTIONS(2289), - [anon_sym_sizeof] = ACTIONS(2287), - [sym_number_literal] = ACTIONS(2289), - [anon_sym_L_SQUOTE] = ACTIONS(2289), - [anon_sym_u_SQUOTE] = ACTIONS(2289), - [anon_sym_U_SQUOTE] = ACTIONS(2289), - [anon_sym_u8_SQUOTE] = ACTIONS(2289), - [anon_sym_SQUOTE] = ACTIONS(2289), - [anon_sym_L_DQUOTE] = ACTIONS(2289), - [anon_sym_u_DQUOTE] = ACTIONS(2289), - [anon_sym_U_DQUOTE] = ACTIONS(2289), - [anon_sym_u8_DQUOTE] = ACTIONS(2289), - [anon_sym_DQUOTE] = ACTIONS(2289), - [sym_true] = ACTIONS(2287), - [sym_false] = ACTIONS(2287), - [sym_null] = ACTIONS(2287), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2287), - [anon_sym_decltype] = ACTIONS(2287), - [anon_sym_virtual] = ACTIONS(2287), - [anon_sym_explicit] = ACTIONS(2287), - [anon_sym_typename] = ACTIONS(2287), - [anon_sym_template] = ACTIONS(2287), - [anon_sym_operator] = ACTIONS(2287), - [anon_sym_try] = ACTIONS(2287), - [anon_sym_delete] = ACTIONS(2287), - [anon_sym_throw] = ACTIONS(2287), - [anon_sym_namespace] = ACTIONS(2287), - [anon_sym_using] = ACTIONS(2287), - [anon_sym_static_assert] = ACTIONS(2287), - [anon_sym_concept] = ACTIONS(2287), - [anon_sym_co_return] = ACTIONS(2287), - [anon_sym_co_yield] = ACTIONS(2287), - [anon_sym_co_await] = ACTIONS(2287), - [anon_sym_new] = ACTIONS(2287), - [anon_sym_requires] = ACTIONS(2287), - [sym_this] = ACTIONS(2287), - [sym_nullptr] = ACTIONS(2287), - [sym_raw_string_literal] = ACTIONS(2289), - }, - [637] = { - [ts_builtin_sym_end] = ACTIONS(2485), - [sym_identifier] = ACTIONS(2483), - [aux_sym_preproc_include_token1] = ACTIONS(2483), - [aux_sym_preproc_def_token1] = ACTIONS(2483), - [aux_sym_preproc_if_token1] = ACTIONS(2483), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2483), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2483), - [sym_preproc_directive] = ACTIONS(2483), - [anon_sym_LPAREN2] = ACTIONS(2485), - [anon_sym_BANG] = ACTIONS(2485), - [anon_sym_TILDE] = ACTIONS(2485), - [anon_sym_DASH] = ACTIONS(2483), - [anon_sym_PLUS] = ACTIONS(2483), - [anon_sym_STAR] = ACTIONS(2485), - [anon_sym_AMP_AMP] = ACTIONS(2485), - [anon_sym_AMP] = ACTIONS(2483), - [anon_sym_SEMI] = ACTIONS(2485), - [anon_sym_typedef] = ACTIONS(2483), - [anon_sym_extern] = ACTIONS(2483), - [anon_sym___attribute__] = ACTIONS(2483), - [anon_sym_COLON_COLON] = ACTIONS(2485), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2485), - [anon_sym___declspec] = ACTIONS(2483), - [anon_sym___based] = ACTIONS(2483), - [anon_sym___cdecl] = ACTIONS(2483), - [anon_sym___clrcall] = ACTIONS(2483), - [anon_sym___stdcall] = ACTIONS(2483), - [anon_sym___fastcall] = ACTIONS(2483), - [anon_sym___thiscall] = ACTIONS(2483), - [anon_sym___vectorcall] = ACTIONS(2483), - [anon_sym_LBRACE] = ACTIONS(2485), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_static] = ACTIONS(2483), - [anon_sym_register] = ACTIONS(2483), - [anon_sym_inline] = ACTIONS(2483), - [anon_sym_thread_local] = ACTIONS(2483), - [anon_sym_const] = ACTIONS(2483), - [anon_sym_volatile] = ACTIONS(2483), - [anon_sym_restrict] = ACTIONS(2483), - [anon_sym__Atomic] = ACTIONS(2483), - [anon_sym_mutable] = ACTIONS(2483), - [anon_sym_constexpr] = ACTIONS(2483), - [anon_sym_constinit] = ACTIONS(2483), - [anon_sym_consteval] = ACTIONS(2483), - [anon_sym_signed] = ACTIONS(2483), - [anon_sym_unsigned] = ACTIONS(2483), - [anon_sym_long] = ACTIONS(2483), - [anon_sym_short] = ACTIONS(2483), - [sym_primitive_type] = ACTIONS(2483), - [anon_sym_enum] = ACTIONS(2483), - [anon_sym_class] = ACTIONS(2483), - [anon_sym_struct] = ACTIONS(2483), - [anon_sym_union] = ACTIONS(2483), - [anon_sym_if] = ACTIONS(2483), - [anon_sym_else] = ACTIONS(2483), - [anon_sym_switch] = ACTIONS(2483), - [anon_sym_case] = ACTIONS(2483), - [anon_sym_default] = ACTIONS(2483), - [anon_sym_while] = ACTIONS(2483), - [anon_sym_do] = ACTIONS(2483), - [anon_sym_for] = ACTIONS(2483), - [anon_sym_return] = ACTIONS(2483), - [anon_sym_break] = ACTIONS(2483), - [anon_sym_continue] = ACTIONS(2483), - [anon_sym_goto] = ACTIONS(2483), - [anon_sym_DASH_DASH] = ACTIONS(2485), - [anon_sym_PLUS_PLUS] = ACTIONS(2485), - [anon_sym_sizeof] = ACTIONS(2483), - [sym_number_literal] = ACTIONS(2485), - [anon_sym_L_SQUOTE] = ACTIONS(2485), - [anon_sym_u_SQUOTE] = ACTIONS(2485), - [anon_sym_U_SQUOTE] = ACTIONS(2485), - [anon_sym_u8_SQUOTE] = ACTIONS(2485), - [anon_sym_SQUOTE] = ACTIONS(2485), - [anon_sym_L_DQUOTE] = ACTIONS(2485), - [anon_sym_u_DQUOTE] = ACTIONS(2485), - [anon_sym_U_DQUOTE] = ACTIONS(2485), - [anon_sym_u8_DQUOTE] = ACTIONS(2485), - [anon_sym_DQUOTE] = ACTIONS(2485), - [sym_true] = ACTIONS(2483), - [sym_false] = ACTIONS(2483), - [sym_null] = ACTIONS(2483), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2483), - [anon_sym_decltype] = ACTIONS(2483), - [anon_sym_virtual] = ACTIONS(2483), - [anon_sym_explicit] = ACTIONS(2483), - [anon_sym_typename] = ACTIONS(2483), - [anon_sym_template] = ACTIONS(2483), - [anon_sym_operator] = ACTIONS(2483), - [anon_sym_try] = ACTIONS(2483), - [anon_sym_delete] = ACTIONS(2483), - [anon_sym_throw] = ACTIONS(2483), - [anon_sym_namespace] = ACTIONS(2483), - [anon_sym_using] = ACTIONS(2483), - [anon_sym_static_assert] = ACTIONS(2483), - [anon_sym_concept] = ACTIONS(2483), - [anon_sym_co_return] = ACTIONS(2483), - [anon_sym_co_yield] = ACTIONS(2483), - [anon_sym_co_await] = ACTIONS(2483), - [anon_sym_new] = ACTIONS(2483), - [anon_sym_requires] = ACTIONS(2483), - [sym_this] = ACTIONS(2483), - [sym_nullptr] = ACTIONS(2483), - [sym_raw_string_literal] = ACTIONS(2485), - }, - [638] = { - [ts_builtin_sym_end] = ACTIONS(2445), - [sym_identifier] = ACTIONS(2443), - [aux_sym_preproc_include_token1] = ACTIONS(2443), - [aux_sym_preproc_def_token1] = ACTIONS(2443), - [aux_sym_preproc_if_token1] = ACTIONS(2443), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2443), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2443), - [sym_preproc_directive] = ACTIONS(2443), - [anon_sym_LPAREN2] = ACTIONS(2445), - [anon_sym_BANG] = ACTIONS(2445), - [anon_sym_TILDE] = ACTIONS(2445), - [anon_sym_DASH] = ACTIONS(2443), - [anon_sym_PLUS] = ACTIONS(2443), - [anon_sym_STAR] = ACTIONS(2445), - [anon_sym_AMP_AMP] = ACTIONS(2445), - [anon_sym_AMP] = ACTIONS(2443), - [anon_sym_SEMI] = ACTIONS(2445), - [anon_sym_typedef] = ACTIONS(2443), - [anon_sym_extern] = ACTIONS(2443), - [anon_sym___attribute__] = ACTIONS(2443), - [anon_sym_COLON_COLON] = ACTIONS(2445), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2445), - [anon_sym___declspec] = ACTIONS(2443), - [anon_sym___based] = ACTIONS(2443), - [anon_sym___cdecl] = ACTIONS(2443), - [anon_sym___clrcall] = ACTIONS(2443), - [anon_sym___stdcall] = ACTIONS(2443), - [anon_sym___fastcall] = ACTIONS(2443), - [anon_sym___thiscall] = ACTIONS(2443), - [anon_sym___vectorcall] = ACTIONS(2443), - [anon_sym_LBRACE] = ACTIONS(2445), - [anon_sym_LBRACK] = ACTIONS(2443), - [anon_sym_static] = ACTIONS(2443), - [anon_sym_register] = ACTIONS(2443), - [anon_sym_inline] = ACTIONS(2443), - [anon_sym_thread_local] = ACTIONS(2443), - [anon_sym_const] = ACTIONS(2443), - [anon_sym_volatile] = ACTIONS(2443), - [anon_sym_restrict] = ACTIONS(2443), - [anon_sym__Atomic] = ACTIONS(2443), - [anon_sym_mutable] = ACTIONS(2443), - [anon_sym_constexpr] = ACTIONS(2443), - [anon_sym_constinit] = ACTIONS(2443), - [anon_sym_consteval] = ACTIONS(2443), - [anon_sym_signed] = ACTIONS(2443), - [anon_sym_unsigned] = ACTIONS(2443), - [anon_sym_long] = ACTIONS(2443), - [anon_sym_short] = ACTIONS(2443), - [sym_primitive_type] = ACTIONS(2443), - [anon_sym_enum] = ACTIONS(2443), - [anon_sym_class] = ACTIONS(2443), - [anon_sym_struct] = ACTIONS(2443), - [anon_sym_union] = ACTIONS(2443), - [anon_sym_if] = ACTIONS(2443), - [anon_sym_else] = ACTIONS(2443), - [anon_sym_switch] = ACTIONS(2443), - [anon_sym_case] = ACTIONS(2443), - [anon_sym_default] = ACTIONS(2443), - [anon_sym_while] = ACTIONS(2443), - [anon_sym_do] = ACTIONS(2443), - [anon_sym_for] = ACTIONS(2443), - [anon_sym_return] = ACTIONS(2443), - [anon_sym_break] = ACTIONS(2443), - [anon_sym_continue] = ACTIONS(2443), - [anon_sym_goto] = ACTIONS(2443), - [anon_sym_DASH_DASH] = ACTIONS(2445), - [anon_sym_PLUS_PLUS] = ACTIONS(2445), - [anon_sym_sizeof] = ACTIONS(2443), - [sym_number_literal] = ACTIONS(2445), - [anon_sym_L_SQUOTE] = ACTIONS(2445), - [anon_sym_u_SQUOTE] = ACTIONS(2445), - [anon_sym_U_SQUOTE] = ACTIONS(2445), - [anon_sym_u8_SQUOTE] = ACTIONS(2445), - [anon_sym_SQUOTE] = ACTIONS(2445), - [anon_sym_L_DQUOTE] = ACTIONS(2445), - [anon_sym_u_DQUOTE] = ACTIONS(2445), - [anon_sym_U_DQUOTE] = ACTIONS(2445), - [anon_sym_u8_DQUOTE] = ACTIONS(2445), - [anon_sym_DQUOTE] = ACTIONS(2445), - [sym_true] = ACTIONS(2443), - [sym_false] = ACTIONS(2443), - [sym_null] = ACTIONS(2443), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2443), - [anon_sym_decltype] = ACTIONS(2443), - [anon_sym_virtual] = ACTIONS(2443), - [anon_sym_explicit] = ACTIONS(2443), - [anon_sym_typename] = ACTIONS(2443), - [anon_sym_template] = ACTIONS(2443), - [anon_sym_operator] = ACTIONS(2443), - [anon_sym_try] = ACTIONS(2443), - [anon_sym_delete] = ACTIONS(2443), - [anon_sym_throw] = ACTIONS(2443), - [anon_sym_namespace] = ACTIONS(2443), - [anon_sym_using] = ACTIONS(2443), - [anon_sym_static_assert] = ACTIONS(2443), - [anon_sym_concept] = ACTIONS(2443), - [anon_sym_co_return] = ACTIONS(2443), - [anon_sym_co_yield] = ACTIONS(2443), - [anon_sym_co_await] = ACTIONS(2443), - [anon_sym_new] = ACTIONS(2443), - [anon_sym_requires] = ACTIONS(2443), - [sym_this] = ACTIONS(2443), - [sym_nullptr] = ACTIONS(2443), - [sym_raw_string_literal] = ACTIONS(2445), - }, - [639] = { - [sym_identifier] = ACTIONS(2429), - [aux_sym_preproc_include_token1] = ACTIONS(2429), - [aux_sym_preproc_def_token1] = ACTIONS(2429), - [aux_sym_preproc_if_token1] = ACTIONS(2429), - [aux_sym_preproc_if_token2] = ACTIONS(2429), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2429), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2429), - [sym_preproc_directive] = ACTIONS(2429), - [anon_sym_LPAREN2] = ACTIONS(2431), - [anon_sym_BANG] = ACTIONS(2431), - [anon_sym_TILDE] = ACTIONS(2431), - [anon_sym_DASH] = ACTIONS(2429), - [anon_sym_PLUS] = ACTIONS(2429), - [anon_sym_STAR] = ACTIONS(2431), - [anon_sym_AMP_AMP] = ACTIONS(2431), - [anon_sym_AMP] = ACTIONS(2429), - [anon_sym_SEMI] = ACTIONS(2431), - [anon_sym_typedef] = ACTIONS(2429), - [anon_sym_extern] = ACTIONS(2429), - [anon_sym___attribute__] = ACTIONS(2429), - [anon_sym_COLON_COLON] = ACTIONS(2431), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2431), - [anon_sym___declspec] = ACTIONS(2429), - [anon_sym___based] = ACTIONS(2429), - [anon_sym___cdecl] = ACTIONS(2429), - [anon_sym___clrcall] = ACTIONS(2429), - [anon_sym___stdcall] = ACTIONS(2429), - [anon_sym___fastcall] = ACTIONS(2429), - [anon_sym___thiscall] = ACTIONS(2429), - [anon_sym___vectorcall] = ACTIONS(2429), - [anon_sym_LBRACE] = ACTIONS(2431), - [anon_sym_LBRACK] = ACTIONS(2429), - [anon_sym_static] = ACTIONS(2429), - [anon_sym_register] = ACTIONS(2429), - [anon_sym_inline] = ACTIONS(2429), - [anon_sym_thread_local] = ACTIONS(2429), - [anon_sym_const] = ACTIONS(2429), - [anon_sym_volatile] = ACTIONS(2429), - [anon_sym_restrict] = ACTIONS(2429), - [anon_sym__Atomic] = ACTIONS(2429), - [anon_sym_mutable] = ACTIONS(2429), - [anon_sym_constexpr] = ACTIONS(2429), - [anon_sym_constinit] = ACTIONS(2429), - [anon_sym_consteval] = ACTIONS(2429), - [anon_sym_signed] = ACTIONS(2429), - [anon_sym_unsigned] = ACTIONS(2429), - [anon_sym_long] = ACTIONS(2429), - [anon_sym_short] = ACTIONS(2429), - [sym_primitive_type] = ACTIONS(2429), - [anon_sym_enum] = ACTIONS(2429), - [anon_sym_class] = ACTIONS(2429), - [anon_sym_struct] = ACTIONS(2429), - [anon_sym_union] = ACTIONS(2429), - [anon_sym_if] = ACTIONS(2429), - [anon_sym_else] = ACTIONS(2429), - [anon_sym_switch] = ACTIONS(2429), - [anon_sym_case] = ACTIONS(2429), - [anon_sym_default] = ACTIONS(2429), - [anon_sym_while] = ACTIONS(2429), - [anon_sym_do] = ACTIONS(2429), - [anon_sym_for] = ACTIONS(2429), - [anon_sym_return] = ACTIONS(2429), - [anon_sym_break] = ACTIONS(2429), - [anon_sym_continue] = ACTIONS(2429), - [anon_sym_goto] = ACTIONS(2429), - [anon_sym_DASH_DASH] = ACTIONS(2431), - [anon_sym_PLUS_PLUS] = ACTIONS(2431), - [anon_sym_sizeof] = ACTIONS(2429), - [sym_number_literal] = ACTIONS(2431), - [anon_sym_L_SQUOTE] = ACTIONS(2431), - [anon_sym_u_SQUOTE] = ACTIONS(2431), - [anon_sym_U_SQUOTE] = ACTIONS(2431), - [anon_sym_u8_SQUOTE] = ACTIONS(2431), - [anon_sym_SQUOTE] = ACTIONS(2431), - [anon_sym_L_DQUOTE] = ACTIONS(2431), - [anon_sym_u_DQUOTE] = ACTIONS(2431), - [anon_sym_U_DQUOTE] = ACTIONS(2431), - [anon_sym_u8_DQUOTE] = ACTIONS(2431), - [anon_sym_DQUOTE] = ACTIONS(2431), - [sym_true] = ACTIONS(2429), - [sym_false] = ACTIONS(2429), - [sym_null] = ACTIONS(2429), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2429), - [anon_sym_decltype] = ACTIONS(2429), - [anon_sym_virtual] = ACTIONS(2429), - [anon_sym_explicit] = ACTIONS(2429), - [anon_sym_typename] = ACTIONS(2429), - [anon_sym_template] = ACTIONS(2429), - [anon_sym_operator] = ACTIONS(2429), - [anon_sym_try] = ACTIONS(2429), - [anon_sym_delete] = ACTIONS(2429), - [anon_sym_throw] = ACTIONS(2429), - [anon_sym_namespace] = ACTIONS(2429), - [anon_sym_using] = ACTIONS(2429), - [anon_sym_static_assert] = ACTIONS(2429), - [anon_sym_concept] = ACTIONS(2429), - [anon_sym_co_return] = ACTIONS(2429), - [anon_sym_co_yield] = ACTIONS(2429), - [anon_sym_co_await] = ACTIONS(2429), - [anon_sym_new] = ACTIONS(2429), - [anon_sym_requires] = ACTIONS(2429), - [sym_this] = ACTIONS(2429), - [sym_nullptr] = ACTIONS(2429), - [sym_raw_string_literal] = ACTIONS(2431), - }, - [640] = { - [sym_identifier] = ACTIONS(2443), - [aux_sym_preproc_include_token1] = ACTIONS(2443), - [aux_sym_preproc_def_token1] = ACTIONS(2443), - [aux_sym_preproc_if_token1] = ACTIONS(2443), - [aux_sym_preproc_if_token2] = ACTIONS(2443), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2443), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2443), - [sym_preproc_directive] = ACTIONS(2443), - [anon_sym_LPAREN2] = ACTIONS(2445), - [anon_sym_BANG] = ACTIONS(2445), - [anon_sym_TILDE] = ACTIONS(2445), - [anon_sym_DASH] = ACTIONS(2443), - [anon_sym_PLUS] = ACTIONS(2443), - [anon_sym_STAR] = ACTIONS(2445), - [anon_sym_AMP_AMP] = ACTIONS(2445), - [anon_sym_AMP] = ACTIONS(2443), - [anon_sym_SEMI] = ACTIONS(2445), - [anon_sym_typedef] = ACTIONS(2443), - [anon_sym_extern] = ACTIONS(2443), - [anon_sym___attribute__] = ACTIONS(2443), - [anon_sym_COLON_COLON] = ACTIONS(2445), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2445), - [anon_sym___declspec] = ACTIONS(2443), - [anon_sym___based] = ACTIONS(2443), - [anon_sym___cdecl] = ACTIONS(2443), - [anon_sym___clrcall] = ACTIONS(2443), - [anon_sym___stdcall] = ACTIONS(2443), - [anon_sym___fastcall] = ACTIONS(2443), - [anon_sym___thiscall] = ACTIONS(2443), - [anon_sym___vectorcall] = ACTIONS(2443), - [anon_sym_LBRACE] = ACTIONS(2445), - [anon_sym_LBRACK] = ACTIONS(2443), - [anon_sym_static] = ACTIONS(2443), - [anon_sym_register] = ACTIONS(2443), - [anon_sym_inline] = ACTIONS(2443), - [anon_sym_thread_local] = ACTIONS(2443), - [anon_sym_const] = ACTIONS(2443), - [anon_sym_volatile] = ACTIONS(2443), - [anon_sym_restrict] = ACTIONS(2443), - [anon_sym__Atomic] = ACTIONS(2443), - [anon_sym_mutable] = ACTIONS(2443), - [anon_sym_constexpr] = ACTIONS(2443), - [anon_sym_constinit] = ACTIONS(2443), - [anon_sym_consteval] = ACTIONS(2443), - [anon_sym_signed] = ACTIONS(2443), - [anon_sym_unsigned] = ACTIONS(2443), - [anon_sym_long] = ACTIONS(2443), - [anon_sym_short] = ACTIONS(2443), - [sym_primitive_type] = ACTIONS(2443), - [anon_sym_enum] = ACTIONS(2443), - [anon_sym_class] = ACTIONS(2443), - [anon_sym_struct] = ACTIONS(2443), - [anon_sym_union] = ACTIONS(2443), - [anon_sym_if] = ACTIONS(2443), - [anon_sym_else] = ACTIONS(2443), - [anon_sym_switch] = ACTIONS(2443), - [anon_sym_case] = ACTIONS(2443), - [anon_sym_default] = ACTIONS(2443), - [anon_sym_while] = ACTIONS(2443), - [anon_sym_do] = ACTIONS(2443), - [anon_sym_for] = ACTIONS(2443), - [anon_sym_return] = ACTIONS(2443), - [anon_sym_break] = ACTIONS(2443), - [anon_sym_continue] = ACTIONS(2443), - [anon_sym_goto] = ACTIONS(2443), - [anon_sym_DASH_DASH] = ACTIONS(2445), - [anon_sym_PLUS_PLUS] = ACTIONS(2445), - [anon_sym_sizeof] = ACTIONS(2443), - [sym_number_literal] = ACTIONS(2445), - [anon_sym_L_SQUOTE] = ACTIONS(2445), - [anon_sym_u_SQUOTE] = ACTIONS(2445), - [anon_sym_U_SQUOTE] = ACTIONS(2445), - [anon_sym_u8_SQUOTE] = ACTIONS(2445), - [anon_sym_SQUOTE] = ACTIONS(2445), - [anon_sym_L_DQUOTE] = ACTIONS(2445), - [anon_sym_u_DQUOTE] = ACTIONS(2445), - [anon_sym_U_DQUOTE] = ACTIONS(2445), - [anon_sym_u8_DQUOTE] = ACTIONS(2445), - [anon_sym_DQUOTE] = ACTIONS(2445), - [sym_true] = ACTIONS(2443), - [sym_false] = ACTIONS(2443), - [sym_null] = ACTIONS(2443), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2443), - [anon_sym_decltype] = ACTIONS(2443), - [anon_sym_virtual] = ACTIONS(2443), - [anon_sym_explicit] = ACTIONS(2443), - [anon_sym_typename] = ACTIONS(2443), - [anon_sym_template] = ACTIONS(2443), - [anon_sym_operator] = ACTIONS(2443), - [anon_sym_try] = ACTIONS(2443), - [anon_sym_delete] = ACTIONS(2443), - [anon_sym_throw] = ACTIONS(2443), - [anon_sym_namespace] = ACTIONS(2443), - [anon_sym_using] = ACTIONS(2443), - [anon_sym_static_assert] = ACTIONS(2443), - [anon_sym_concept] = ACTIONS(2443), - [anon_sym_co_return] = ACTIONS(2443), - [anon_sym_co_yield] = ACTIONS(2443), - [anon_sym_co_await] = ACTIONS(2443), - [anon_sym_new] = ACTIONS(2443), - [anon_sym_requires] = ACTIONS(2443), - [sym_this] = ACTIONS(2443), - [sym_nullptr] = ACTIONS(2443), - [sym_raw_string_literal] = ACTIONS(2445), - }, - [641] = { - [sym_identifier] = ACTIONS(2483), - [aux_sym_preproc_include_token1] = ACTIONS(2483), - [aux_sym_preproc_def_token1] = ACTIONS(2483), - [aux_sym_preproc_if_token1] = ACTIONS(2483), - [aux_sym_preproc_if_token2] = ACTIONS(2483), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2483), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2483), - [sym_preproc_directive] = ACTIONS(2483), - [anon_sym_LPAREN2] = ACTIONS(2485), - [anon_sym_BANG] = ACTIONS(2485), - [anon_sym_TILDE] = ACTIONS(2485), - [anon_sym_DASH] = ACTIONS(2483), - [anon_sym_PLUS] = ACTIONS(2483), - [anon_sym_STAR] = ACTIONS(2485), - [anon_sym_AMP_AMP] = ACTIONS(2485), - [anon_sym_AMP] = ACTIONS(2483), - [anon_sym_SEMI] = ACTIONS(2485), - [anon_sym_typedef] = ACTIONS(2483), - [anon_sym_extern] = ACTIONS(2483), - [anon_sym___attribute__] = ACTIONS(2483), - [anon_sym_COLON_COLON] = ACTIONS(2485), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2485), - [anon_sym___declspec] = ACTIONS(2483), - [anon_sym___based] = ACTIONS(2483), - [anon_sym___cdecl] = ACTIONS(2483), - [anon_sym___clrcall] = ACTIONS(2483), - [anon_sym___stdcall] = ACTIONS(2483), - [anon_sym___fastcall] = ACTIONS(2483), - [anon_sym___thiscall] = ACTIONS(2483), - [anon_sym___vectorcall] = ACTIONS(2483), - [anon_sym_LBRACE] = ACTIONS(2485), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_static] = ACTIONS(2483), - [anon_sym_register] = ACTIONS(2483), - [anon_sym_inline] = ACTIONS(2483), - [anon_sym_thread_local] = ACTIONS(2483), - [anon_sym_const] = ACTIONS(2483), - [anon_sym_volatile] = ACTIONS(2483), - [anon_sym_restrict] = ACTIONS(2483), - [anon_sym__Atomic] = ACTIONS(2483), - [anon_sym_mutable] = ACTIONS(2483), - [anon_sym_constexpr] = ACTIONS(2483), - [anon_sym_constinit] = ACTIONS(2483), - [anon_sym_consteval] = ACTIONS(2483), - [anon_sym_signed] = ACTIONS(2483), - [anon_sym_unsigned] = ACTIONS(2483), - [anon_sym_long] = ACTIONS(2483), - [anon_sym_short] = ACTIONS(2483), - [sym_primitive_type] = ACTIONS(2483), - [anon_sym_enum] = ACTIONS(2483), - [anon_sym_class] = ACTIONS(2483), - [anon_sym_struct] = ACTIONS(2483), - [anon_sym_union] = ACTIONS(2483), - [anon_sym_if] = ACTIONS(2483), - [anon_sym_else] = ACTIONS(2483), - [anon_sym_switch] = ACTIONS(2483), - [anon_sym_case] = ACTIONS(2483), - [anon_sym_default] = ACTIONS(2483), - [anon_sym_while] = ACTIONS(2483), - [anon_sym_do] = ACTIONS(2483), - [anon_sym_for] = ACTIONS(2483), - [anon_sym_return] = ACTIONS(2483), - [anon_sym_break] = ACTIONS(2483), - [anon_sym_continue] = ACTIONS(2483), - [anon_sym_goto] = ACTIONS(2483), - [anon_sym_DASH_DASH] = ACTIONS(2485), - [anon_sym_PLUS_PLUS] = ACTIONS(2485), - [anon_sym_sizeof] = ACTIONS(2483), - [sym_number_literal] = ACTIONS(2485), - [anon_sym_L_SQUOTE] = ACTIONS(2485), - [anon_sym_u_SQUOTE] = ACTIONS(2485), - [anon_sym_U_SQUOTE] = ACTIONS(2485), - [anon_sym_u8_SQUOTE] = ACTIONS(2485), - [anon_sym_SQUOTE] = ACTIONS(2485), - [anon_sym_L_DQUOTE] = ACTIONS(2485), - [anon_sym_u_DQUOTE] = ACTIONS(2485), - [anon_sym_U_DQUOTE] = ACTIONS(2485), - [anon_sym_u8_DQUOTE] = ACTIONS(2485), - [anon_sym_DQUOTE] = ACTIONS(2485), - [sym_true] = ACTIONS(2483), - [sym_false] = ACTIONS(2483), - [sym_null] = ACTIONS(2483), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2483), - [anon_sym_decltype] = ACTIONS(2483), - [anon_sym_virtual] = ACTIONS(2483), - [anon_sym_explicit] = ACTIONS(2483), - [anon_sym_typename] = ACTIONS(2483), - [anon_sym_template] = ACTIONS(2483), - [anon_sym_operator] = ACTIONS(2483), - [anon_sym_try] = ACTIONS(2483), - [anon_sym_delete] = ACTIONS(2483), - [anon_sym_throw] = ACTIONS(2483), - [anon_sym_namespace] = ACTIONS(2483), - [anon_sym_using] = ACTIONS(2483), - [anon_sym_static_assert] = ACTIONS(2483), - [anon_sym_concept] = ACTIONS(2483), - [anon_sym_co_return] = ACTIONS(2483), - [anon_sym_co_yield] = ACTIONS(2483), - [anon_sym_co_await] = ACTIONS(2483), - [anon_sym_new] = ACTIONS(2483), - [anon_sym_requires] = ACTIONS(2483), - [sym_this] = ACTIONS(2483), - [sym_nullptr] = ACTIONS(2483), - [sym_raw_string_literal] = ACTIONS(2485), - }, - [642] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token2] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [643] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token2] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [644] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token2] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [645] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token2] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [646] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token2] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [647] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token2] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [648] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token2] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [649] = { - [ts_builtin_sym_end] = ACTIONS(2431), - [sym_identifier] = ACTIONS(2429), - [aux_sym_preproc_include_token1] = ACTIONS(2429), - [aux_sym_preproc_def_token1] = ACTIONS(2429), - [aux_sym_preproc_if_token1] = ACTIONS(2429), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2429), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2429), - [sym_preproc_directive] = ACTIONS(2429), - [anon_sym_LPAREN2] = ACTIONS(2431), - [anon_sym_BANG] = ACTIONS(2431), - [anon_sym_TILDE] = ACTIONS(2431), - [anon_sym_DASH] = ACTIONS(2429), - [anon_sym_PLUS] = ACTIONS(2429), - [anon_sym_STAR] = ACTIONS(2431), - [anon_sym_AMP_AMP] = ACTIONS(2431), - [anon_sym_AMP] = ACTIONS(2429), - [anon_sym_SEMI] = ACTIONS(2431), - [anon_sym_typedef] = ACTIONS(2429), - [anon_sym_extern] = ACTIONS(2429), - [anon_sym___attribute__] = ACTIONS(2429), - [anon_sym_COLON_COLON] = ACTIONS(2431), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2431), - [anon_sym___declspec] = ACTIONS(2429), - [anon_sym___based] = ACTIONS(2429), - [anon_sym___cdecl] = ACTIONS(2429), - [anon_sym___clrcall] = ACTIONS(2429), - [anon_sym___stdcall] = ACTIONS(2429), - [anon_sym___fastcall] = ACTIONS(2429), - [anon_sym___thiscall] = ACTIONS(2429), - [anon_sym___vectorcall] = ACTIONS(2429), - [anon_sym_LBRACE] = ACTIONS(2431), - [anon_sym_LBRACK] = ACTIONS(2429), - [anon_sym_static] = ACTIONS(2429), - [anon_sym_register] = ACTIONS(2429), - [anon_sym_inline] = ACTIONS(2429), - [anon_sym_thread_local] = ACTIONS(2429), - [anon_sym_const] = ACTIONS(2429), - [anon_sym_volatile] = ACTIONS(2429), - [anon_sym_restrict] = ACTIONS(2429), - [anon_sym__Atomic] = ACTIONS(2429), - [anon_sym_mutable] = ACTIONS(2429), - [anon_sym_constexpr] = ACTIONS(2429), - [anon_sym_constinit] = ACTIONS(2429), - [anon_sym_consteval] = ACTIONS(2429), - [anon_sym_signed] = ACTIONS(2429), - [anon_sym_unsigned] = ACTIONS(2429), - [anon_sym_long] = ACTIONS(2429), - [anon_sym_short] = ACTIONS(2429), - [sym_primitive_type] = ACTIONS(2429), - [anon_sym_enum] = ACTIONS(2429), - [anon_sym_class] = ACTIONS(2429), - [anon_sym_struct] = ACTIONS(2429), - [anon_sym_union] = ACTIONS(2429), - [anon_sym_if] = ACTIONS(2429), - [anon_sym_else] = ACTIONS(2429), - [anon_sym_switch] = ACTIONS(2429), - [anon_sym_case] = ACTIONS(2429), - [anon_sym_default] = ACTIONS(2429), - [anon_sym_while] = ACTIONS(2429), - [anon_sym_do] = ACTIONS(2429), - [anon_sym_for] = ACTIONS(2429), - [anon_sym_return] = ACTIONS(2429), - [anon_sym_break] = ACTIONS(2429), - [anon_sym_continue] = ACTIONS(2429), - [anon_sym_goto] = ACTIONS(2429), - [anon_sym_DASH_DASH] = ACTIONS(2431), - [anon_sym_PLUS_PLUS] = ACTIONS(2431), - [anon_sym_sizeof] = ACTIONS(2429), - [sym_number_literal] = ACTIONS(2431), - [anon_sym_L_SQUOTE] = ACTIONS(2431), - [anon_sym_u_SQUOTE] = ACTIONS(2431), - [anon_sym_U_SQUOTE] = ACTIONS(2431), - [anon_sym_u8_SQUOTE] = ACTIONS(2431), - [anon_sym_SQUOTE] = ACTIONS(2431), - [anon_sym_L_DQUOTE] = ACTIONS(2431), - [anon_sym_u_DQUOTE] = ACTIONS(2431), - [anon_sym_U_DQUOTE] = ACTIONS(2431), - [anon_sym_u8_DQUOTE] = ACTIONS(2431), - [anon_sym_DQUOTE] = ACTIONS(2431), - [sym_true] = ACTIONS(2429), - [sym_false] = ACTIONS(2429), - [sym_null] = ACTIONS(2429), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2429), - [anon_sym_decltype] = ACTIONS(2429), - [anon_sym_virtual] = ACTIONS(2429), - [anon_sym_explicit] = ACTIONS(2429), - [anon_sym_typename] = ACTIONS(2429), - [anon_sym_template] = ACTIONS(2429), - [anon_sym_operator] = ACTIONS(2429), - [anon_sym_try] = ACTIONS(2429), - [anon_sym_delete] = ACTIONS(2429), - [anon_sym_throw] = ACTIONS(2429), - [anon_sym_namespace] = ACTIONS(2429), - [anon_sym_using] = ACTIONS(2429), - [anon_sym_static_assert] = ACTIONS(2429), - [anon_sym_concept] = ACTIONS(2429), - [anon_sym_co_return] = ACTIONS(2429), - [anon_sym_co_yield] = ACTIONS(2429), - [anon_sym_co_await] = ACTIONS(2429), - [anon_sym_new] = ACTIONS(2429), - [anon_sym_requires] = ACTIONS(2429), - [sym_this] = ACTIONS(2429), - [sym_nullptr] = ACTIONS(2429), - [sym_raw_string_literal] = ACTIONS(2431), - }, - [650] = { - [ts_builtin_sym_end] = ACTIONS(2427), - [sym_identifier] = ACTIONS(2425), - [aux_sym_preproc_include_token1] = ACTIONS(2425), - [aux_sym_preproc_def_token1] = ACTIONS(2425), - [aux_sym_preproc_if_token1] = ACTIONS(2425), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2425), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2425), - [sym_preproc_directive] = ACTIONS(2425), - [anon_sym_LPAREN2] = ACTIONS(2427), - [anon_sym_BANG] = ACTIONS(2427), - [anon_sym_TILDE] = ACTIONS(2427), - [anon_sym_DASH] = ACTIONS(2425), - [anon_sym_PLUS] = ACTIONS(2425), - [anon_sym_STAR] = ACTIONS(2427), - [anon_sym_AMP_AMP] = ACTIONS(2427), - [anon_sym_AMP] = ACTIONS(2425), - [anon_sym_SEMI] = ACTIONS(2427), - [anon_sym_typedef] = ACTIONS(2425), - [anon_sym_extern] = ACTIONS(2425), - [anon_sym___attribute__] = ACTIONS(2425), - [anon_sym_COLON_COLON] = ACTIONS(2427), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2427), - [anon_sym___declspec] = ACTIONS(2425), - [anon_sym___based] = ACTIONS(2425), - [anon_sym___cdecl] = ACTIONS(2425), - [anon_sym___clrcall] = ACTIONS(2425), - [anon_sym___stdcall] = ACTIONS(2425), - [anon_sym___fastcall] = ACTIONS(2425), - [anon_sym___thiscall] = ACTIONS(2425), - [anon_sym___vectorcall] = ACTIONS(2425), - [anon_sym_LBRACE] = ACTIONS(2427), - [anon_sym_LBRACK] = ACTIONS(2425), - [anon_sym_static] = ACTIONS(2425), - [anon_sym_register] = ACTIONS(2425), - [anon_sym_inline] = ACTIONS(2425), - [anon_sym_thread_local] = ACTIONS(2425), - [anon_sym_const] = ACTIONS(2425), - [anon_sym_volatile] = ACTIONS(2425), - [anon_sym_restrict] = ACTIONS(2425), - [anon_sym__Atomic] = ACTIONS(2425), - [anon_sym_mutable] = ACTIONS(2425), - [anon_sym_constexpr] = ACTIONS(2425), - [anon_sym_constinit] = ACTIONS(2425), - [anon_sym_consteval] = ACTIONS(2425), - [anon_sym_signed] = ACTIONS(2425), - [anon_sym_unsigned] = ACTIONS(2425), - [anon_sym_long] = ACTIONS(2425), - [anon_sym_short] = ACTIONS(2425), - [sym_primitive_type] = ACTIONS(2425), - [anon_sym_enum] = ACTIONS(2425), - [anon_sym_class] = ACTIONS(2425), - [anon_sym_struct] = ACTIONS(2425), - [anon_sym_union] = ACTIONS(2425), - [anon_sym_if] = ACTIONS(2425), - [anon_sym_else] = ACTIONS(2425), - [anon_sym_switch] = ACTIONS(2425), - [anon_sym_case] = ACTIONS(2425), - [anon_sym_default] = ACTIONS(2425), - [anon_sym_while] = ACTIONS(2425), - [anon_sym_do] = ACTIONS(2425), - [anon_sym_for] = ACTIONS(2425), - [anon_sym_return] = ACTIONS(2425), - [anon_sym_break] = ACTIONS(2425), - [anon_sym_continue] = ACTIONS(2425), - [anon_sym_goto] = ACTIONS(2425), - [anon_sym_DASH_DASH] = ACTIONS(2427), - [anon_sym_PLUS_PLUS] = ACTIONS(2427), - [anon_sym_sizeof] = ACTIONS(2425), - [sym_number_literal] = ACTIONS(2427), - [anon_sym_L_SQUOTE] = ACTIONS(2427), - [anon_sym_u_SQUOTE] = ACTIONS(2427), - [anon_sym_U_SQUOTE] = ACTIONS(2427), - [anon_sym_u8_SQUOTE] = ACTIONS(2427), - [anon_sym_SQUOTE] = ACTIONS(2427), - [anon_sym_L_DQUOTE] = ACTIONS(2427), - [anon_sym_u_DQUOTE] = ACTIONS(2427), - [anon_sym_U_DQUOTE] = ACTIONS(2427), - [anon_sym_u8_DQUOTE] = ACTIONS(2427), - [anon_sym_DQUOTE] = ACTIONS(2427), - [sym_true] = ACTIONS(2425), - [sym_false] = ACTIONS(2425), - [sym_null] = ACTIONS(2425), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2425), - [anon_sym_decltype] = ACTIONS(2425), - [anon_sym_virtual] = ACTIONS(2425), - [anon_sym_explicit] = ACTIONS(2425), - [anon_sym_typename] = ACTIONS(2425), - [anon_sym_template] = ACTIONS(2425), - [anon_sym_operator] = ACTIONS(2425), - [anon_sym_try] = ACTIONS(2425), - [anon_sym_delete] = ACTIONS(2425), - [anon_sym_throw] = ACTIONS(2425), - [anon_sym_namespace] = ACTIONS(2425), - [anon_sym_using] = ACTIONS(2425), - [anon_sym_static_assert] = ACTIONS(2425), - [anon_sym_concept] = ACTIONS(2425), - [anon_sym_co_return] = ACTIONS(2425), - [anon_sym_co_yield] = ACTIONS(2425), - [anon_sym_co_await] = ACTIONS(2425), - [anon_sym_new] = ACTIONS(2425), - [anon_sym_requires] = ACTIONS(2425), - [sym_this] = ACTIONS(2425), - [sym_nullptr] = ACTIONS(2425), - [sym_raw_string_literal] = ACTIONS(2427), - }, - [651] = { - [ts_builtin_sym_end] = ACTIONS(2419), - [sym_identifier] = ACTIONS(2417), - [aux_sym_preproc_include_token1] = ACTIONS(2417), - [aux_sym_preproc_def_token1] = ACTIONS(2417), - [aux_sym_preproc_if_token1] = ACTIONS(2417), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2417), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2417), - [sym_preproc_directive] = ACTIONS(2417), - [anon_sym_LPAREN2] = ACTIONS(2419), - [anon_sym_BANG] = ACTIONS(2419), - [anon_sym_TILDE] = ACTIONS(2419), - [anon_sym_DASH] = ACTIONS(2417), - [anon_sym_PLUS] = ACTIONS(2417), - [anon_sym_STAR] = ACTIONS(2419), - [anon_sym_AMP_AMP] = ACTIONS(2419), - [anon_sym_AMP] = ACTIONS(2417), - [anon_sym_SEMI] = ACTIONS(2419), - [anon_sym_typedef] = ACTIONS(2417), - [anon_sym_extern] = ACTIONS(2417), - [anon_sym___attribute__] = ACTIONS(2417), - [anon_sym_COLON_COLON] = ACTIONS(2419), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2419), - [anon_sym___declspec] = ACTIONS(2417), - [anon_sym___based] = ACTIONS(2417), - [anon_sym___cdecl] = ACTIONS(2417), - [anon_sym___clrcall] = ACTIONS(2417), - [anon_sym___stdcall] = ACTIONS(2417), - [anon_sym___fastcall] = ACTIONS(2417), - [anon_sym___thiscall] = ACTIONS(2417), - [anon_sym___vectorcall] = ACTIONS(2417), - [anon_sym_LBRACE] = ACTIONS(2419), - [anon_sym_LBRACK] = ACTIONS(2417), - [anon_sym_static] = ACTIONS(2417), - [anon_sym_register] = ACTIONS(2417), - [anon_sym_inline] = ACTIONS(2417), - [anon_sym_thread_local] = ACTIONS(2417), - [anon_sym_const] = ACTIONS(2417), - [anon_sym_volatile] = ACTIONS(2417), - [anon_sym_restrict] = ACTIONS(2417), - [anon_sym__Atomic] = ACTIONS(2417), - [anon_sym_mutable] = ACTIONS(2417), - [anon_sym_constexpr] = ACTIONS(2417), - [anon_sym_constinit] = ACTIONS(2417), - [anon_sym_consteval] = ACTIONS(2417), - [anon_sym_signed] = ACTIONS(2417), - [anon_sym_unsigned] = ACTIONS(2417), - [anon_sym_long] = ACTIONS(2417), - [anon_sym_short] = ACTIONS(2417), - [sym_primitive_type] = ACTIONS(2417), - [anon_sym_enum] = ACTIONS(2417), - [anon_sym_class] = ACTIONS(2417), - [anon_sym_struct] = ACTIONS(2417), - [anon_sym_union] = ACTIONS(2417), - [anon_sym_if] = ACTIONS(2417), - [anon_sym_else] = ACTIONS(2417), - [anon_sym_switch] = ACTIONS(2417), - [anon_sym_case] = ACTIONS(2417), - [anon_sym_default] = ACTIONS(2417), - [anon_sym_while] = ACTIONS(2417), - [anon_sym_do] = ACTIONS(2417), - [anon_sym_for] = ACTIONS(2417), - [anon_sym_return] = ACTIONS(2417), - [anon_sym_break] = ACTIONS(2417), - [anon_sym_continue] = ACTIONS(2417), - [anon_sym_goto] = ACTIONS(2417), - [anon_sym_DASH_DASH] = ACTIONS(2419), - [anon_sym_PLUS_PLUS] = ACTIONS(2419), - [anon_sym_sizeof] = ACTIONS(2417), - [sym_number_literal] = ACTIONS(2419), - [anon_sym_L_SQUOTE] = ACTIONS(2419), - [anon_sym_u_SQUOTE] = ACTIONS(2419), - [anon_sym_U_SQUOTE] = ACTIONS(2419), - [anon_sym_u8_SQUOTE] = ACTIONS(2419), - [anon_sym_SQUOTE] = ACTIONS(2419), - [anon_sym_L_DQUOTE] = ACTIONS(2419), - [anon_sym_u_DQUOTE] = ACTIONS(2419), - [anon_sym_U_DQUOTE] = ACTIONS(2419), - [anon_sym_u8_DQUOTE] = ACTIONS(2419), - [anon_sym_DQUOTE] = ACTIONS(2419), - [sym_true] = ACTIONS(2417), - [sym_false] = ACTIONS(2417), - [sym_null] = ACTIONS(2417), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2417), - [anon_sym_decltype] = ACTIONS(2417), - [anon_sym_virtual] = ACTIONS(2417), - [anon_sym_explicit] = ACTIONS(2417), - [anon_sym_typename] = ACTIONS(2417), - [anon_sym_template] = ACTIONS(2417), - [anon_sym_operator] = ACTIONS(2417), - [anon_sym_try] = ACTIONS(2417), - [anon_sym_delete] = ACTIONS(2417), - [anon_sym_throw] = ACTIONS(2417), - [anon_sym_namespace] = ACTIONS(2417), - [anon_sym_using] = ACTIONS(2417), - [anon_sym_static_assert] = ACTIONS(2417), - [anon_sym_concept] = ACTIONS(2417), - [anon_sym_co_return] = ACTIONS(2417), - [anon_sym_co_yield] = ACTIONS(2417), - [anon_sym_co_await] = ACTIONS(2417), - [anon_sym_new] = ACTIONS(2417), - [anon_sym_requires] = ACTIONS(2417), - [sym_this] = ACTIONS(2417), - [sym_nullptr] = ACTIONS(2417), - [sym_raw_string_literal] = ACTIONS(2419), - }, - [652] = { - [ts_builtin_sym_end] = ACTIONS(2415), - [sym_identifier] = ACTIONS(2413), - [aux_sym_preproc_include_token1] = ACTIONS(2413), - [aux_sym_preproc_def_token1] = ACTIONS(2413), - [aux_sym_preproc_if_token1] = ACTIONS(2413), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2413), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2413), - [sym_preproc_directive] = ACTIONS(2413), - [anon_sym_LPAREN2] = ACTIONS(2415), - [anon_sym_BANG] = ACTIONS(2415), - [anon_sym_TILDE] = ACTIONS(2415), - [anon_sym_DASH] = ACTIONS(2413), - [anon_sym_PLUS] = ACTIONS(2413), - [anon_sym_STAR] = ACTIONS(2415), - [anon_sym_AMP_AMP] = ACTIONS(2415), - [anon_sym_AMP] = ACTIONS(2413), - [anon_sym_SEMI] = ACTIONS(2415), - [anon_sym_typedef] = ACTIONS(2413), - [anon_sym_extern] = ACTIONS(2413), - [anon_sym___attribute__] = ACTIONS(2413), - [anon_sym_COLON_COLON] = ACTIONS(2415), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2415), - [anon_sym___declspec] = ACTIONS(2413), - [anon_sym___based] = ACTIONS(2413), - [anon_sym___cdecl] = ACTIONS(2413), - [anon_sym___clrcall] = ACTIONS(2413), - [anon_sym___stdcall] = ACTIONS(2413), - [anon_sym___fastcall] = ACTIONS(2413), - [anon_sym___thiscall] = ACTIONS(2413), - [anon_sym___vectorcall] = ACTIONS(2413), - [anon_sym_LBRACE] = ACTIONS(2415), - [anon_sym_LBRACK] = ACTIONS(2413), - [anon_sym_static] = ACTIONS(2413), - [anon_sym_register] = ACTIONS(2413), - [anon_sym_inline] = ACTIONS(2413), - [anon_sym_thread_local] = ACTIONS(2413), - [anon_sym_const] = ACTIONS(2413), - [anon_sym_volatile] = ACTIONS(2413), - [anon_sym_restrict] = ACTIONS(2413), - [anon_sym__Atomic] = ACTIONS(2413), - [anon_sym_mutable] = ACTIONS(2413), - [anon_sym_constexpr] = ACTIONS(2413), - [anon_sym_constinit] = ACTIONS(2413), - [anon_sym_consteval] = ACTIONS(2413), - [anon_sym_signed] = ACTIONS(2413), - [anon_sym_unsigned] = ACTIONS(2413), - [anon_sym_long] = ACTIONS(2413), - [anon_sym_short] = ACTIONS(2413), - [sym_primitive_type] = ACTIONS(2413), - [anon_sym_enum] = ACTIONS(2413), - [anon_sym_class] = ACTIONS(2413), - [anon_sym_struct] = ACTIONS(2413), - [anon_sym_union] = ACTIONS(2413), - [anon_sym_if] = ACTIONS(2413), - [anon_sym_else] = ACTIONS(2413), - [anon_sym_switch] = ACTIONS(2413), - [anon_sym_case] = ACTIONS(2413), - [anon_sym_default] = ACTIONS(2413), - [anon_sym_while] = ACTIONS(2413), - [anon_sym_do] = ACTIONS(2413), - [anon_sym_for] = ACTIONS(2413), - [anon_sym_return] = ACTIONS(2413), - [anon_sym_break] = ACTIONS(2413), - [anon_sym_continue] = ACTIONS(2413), - [anon_sym_goto] = ACTIONS(2413), - [anon_sym_DASH_DASH] = ACTIONS(2415), - [anon_sym_PLUS_PLUS] = ACTIONS(2415), - [anon_sym_sizeof] = ACTIONS(2413), - [sym_number_literal] = ACTIONS(2415), - [anon_sym_L_SQUOTE] = ACTIONS(2415), - [anon_sym_u_SQUOTE] = ACTIONS(2415), - [anon_sym_U_SQUOTE] = ACTIONS(2415), - [anon_sym_u8_SQUOTE] = ACTIONS(2415), - [anon_sym_SQUOTE] = ACTIONS(2415), - [anon_sym_L_DQUOTE] = ACTIONS(2415), - [anon_sym_u_DQUOTE] = ACTIONS(2415), - [anon_sym_U_DQUOTE] = ACTIONS(2415), - [anon_sym_u8_DQUOTE] = ACTIONS(2415), - [anon_sym_DQUOTE] = ACTIONS(2415), - [sym_true] = ACTIONS(2413), - [sym_false] = ACTIONS(2413), - [sym_null] = ACTIONS(2413), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2413), - [anon_sym_decltype] = ACTIONS(2413), - [anon_sym_virtual] = ACTIONS(2413), - [anon_sym_explicit] = ACTIONS(2413), - [anon_sym_typename] = ACTIONS(2413), - [anon_sym_template] = ACTIONS(2413), - [anon_sym_operator] = ACTIONS(2413), - [anon_sym_try] = ACTIONS(2413), - [anon_sym_delete] = ACTIONS(2413), - [anon_sym_throw] = ACTIONS(2413), - [anon_sym_namespace] = ACTIONS(2413), - [anon_sym_using] = ACTIONS(2413), - [anon_sym_static_assert] = ACTIONS(2413), - [anon_sym_concept] = ACTIONS(2413), - [anon_sym_co_return] = ACTIONS(2413), - [anon_sym_co_yield] = ACTIONS(2413), - [anon_sym_co_await] = ACTIONS(2413), - [anon_sym_new] = ACTIONS(2413), - [anon_sym_requires] = ACTIONS(2413), - [sym_this] = ACTIONS(2413), - [sym_nullptr] = ACTIONS(2413), - [sym_raw_string_literal] = ACTIONS(2415), - }, - [653] = { - [ts_builtin_sym_end] = ACTIONS(2411), - [sym_identifier] = ACTIONS(2409), - [aux_sym_preproc_include_token1] = ACTIONS(2409), - [aux_sym_preproc_def_token1] = ACTIONS(2409), - [aux_sym_preproc_if_token1] = ACTIONS(2409), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2409), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2409), - [sym_preproc_directive] = ACTIONS(2409), - [anon_sym_LPAREN2] = ACTIONS(2411), - [anon_sym_BANG] = ACTIONS(2411), - [anon_sym_TILDE] = ACTIONS(2411), - [anon_sym_DASH] = ACTIONS(2409), - [anon_sym_PLUS] = ACTIONS(2409), - [anon_sym_STAR] = ACTIONS(2411), - [anon_sym_AMP_AMP] = ACTIONS(2411), - [anon_sym_AMP] = ACTIONS(2409), - [anon_sym_SEMI] = ACTIONS(2411), - [anon_sym_typedef] = ACTIONS(2409), - [anon_sym_extern] = ACTIONS(2409), - [anon_sym___attribute__] = ACTIONS(2409), - [anon_sym_COLON_COLON] = ACTIONS(2411), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2411), - [anon_sym___declspec] = ACTIONS(2409), - [anon_sym___based] = ACTIONS(2409), - [anon_sym___cdecl] = ACTIONS(2409), - [anon_sym___clrcall] = ACTIONS(2409), - [anon_sym___stdcall] = ACTIONS(2409), - [anon_sym___fastcall] = ACTIONS(2409), - [anon_sym___thiscall] = ACTIONS(2409), - [anon_sym___vectorcall] = ACTIONS(2409), - [anon_sym_LBRACE] = ACTIONS(2411), - [anon_sym_LBRACK] = ACTIONS(2409), - [anon_sym_static] = ACTIONS(2409), - [anon_sym_register] = ACTIONS(2409), - [anon_sym_inline] = ACTIONS(2409), - [anon_sym_thread_local] = ACTIONS(2409), - [anon_sym_const] = ACTIONS(2409), - [anon_sym_volatile] = ACTIONS(2409), - [anon_sym_restrict] = ACTIONS(2409), - [anon_sym__Atomic] = ACTIONS(2409), - [anon_sym_mutable] = ACTIONS(2409), - [anon_sym_constexpr] = ACTIONS(2409), - [anon_sym_constinit] = ACTIONS(2409), - [anon_sym_consteval] = ACTIONS(2409), - [anon_sym_signed] = ACTIONS(2409), - [anon_sym_unsigned] = ACTIONS(2409), - [anon_sym_long] = ACTIONS(2409), - [anon_sym_short] = ACTIONS(2409), - [sym_primitive_type] = ACTIONS(2409), - [anon_sym_enum] = ACTIONS(2409), - [anon_sym_class] = ACTIONS(2409), - [anon_sym_struct] = ACTIONS(2409), - [anon_sym_union] = ACTIONS(2409), - [anon_sym_if] = ACTIONS(2409), - [anon_sym_else] = ACTIONS(2409), - [anon_sym_switch] = ACTIONS(2409), - [anon_sym_case] = ACTIONS(2409), - [anon_sym_default] = ACTIONS(2409), - [anon_sym_while] = ACTIONS(2409), - [anon_sym_do] = ACTIONS(2409), - [anon_sym_for] = ACTIONS(2409), - [anon_sym_return] = ACTIONS(2409), - [anon_sym_break] = ACTIONS(2409), - [anon_sym_continue] = ACTIONS(2409), - [anon_sym_goto] = ACTIONS(2409), - [anon_sym_DASH_DASH] = ACTIONS(2411), - [anon_sym_PLUS_PLUS] = ACTIONS(2411), - [anon_sym_sizeof] = ACTIONS(2409), - [sym_number_literal] = ACTIONS(2411), - [anon_sym_L_SQUOTE] = ACTIONS(2411), - [anon_sym_u_SQUOTE] = ACTIONS(2411), - [anon_sym_U_SQUOTE] = ACTIONS(2411), - [anon_sym_u8_SQUOTE] = ACTIONS(2411), - [anon_sym_SQUOTE] = ACTIONS(2411), - [anon_sym_L_DQUOTE] = ACTIONS(2411), - [anon_sym_u_DQUOTE] = ACTIONS(2411), - [anon_sym_U_DQUOTE] = ACTIONS(2411), - [anon_sym_u8_DQUOTE] = ACTIONS(2411), - [anon_sym_DQUOTE] = ACTIONS(2411), - [sym_true] = ACTIONS(2409), - [sym_false] = ACTIONS(2409), - [sym_null] = ACTIONS(2409), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2409), - [anon_sym_decltype] = ACTIONS(2409), - [anon_sym_virtual] = ACTIONS(2409), - [anon_sym_explicit] = ACTIONS(2409), - [anon_sym_typename] = ACTIONS(2409), - [anon_sym_template] = ACTIONS(2409), - [anon_sym_operator] = ACTIONS(2409), - [anon_sym_try] = ACTIONS(2409), - [anon_sym_delete] = ACTIONS(2409), - [anon_sym_throw] = ACTIONS(2409), - [anon_sym_namespace] = ACTIONS(2409), - [anon_sym_using] = ACTIONS(2409), - [anon_sym_static_assert] = ACTIONS(2409), - [anon_sym_concept] = ACTIONS(2409), - [anon_sym_co_return] = ACTIONS(2409), - [anon_sym_co_yield] = ACTIONS(2409), - [anon_sym_co_await] = ACTIONS(2409), - [anon_sym_new] = ACTIONS(2409), - [anon_sym_requires] = ACTIONS(2409), - [sym_this] = ACTIONS(2409), - [sym_nullptr] = ACTIONS(2409), - [sym_raw_string_literal] = ACTIONS(2411), - }, - [654] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token2] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [655] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token2] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [656] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token2] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [657] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token2] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [658] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token2] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [659] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token2] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [660] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token2] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [661] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token2] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [662] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token2] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [663] = { - [sym_identifier] = ACTIONS(2433), - [aux_sym_preproc_include_token1] = ACTIONS(2433), - [aux_sym_preproc_def_token1] = ACTIONS(2433), - [aux_sym_preproc_if_token1] = ACTIONS(2433), - [aux_sym_preproc_if_token2] = ACTIONS(2433), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2433), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2433), - [sym_preproc_directive] = ACTIONS(2433), - [anon_sym_LPAREN2] = ACTIONS(2435), - [anon_sym_BANG] = ACTIONS(2435), - [anon_sym_TILDE] = ACTIONS(2435), - [anon_sym_DASH] = ACTIONS(2433), - [anon_sym_PLUS] = ACTIONS(2433), - [anon_sym_STAR] = ACTIONS(2435), - [anon_sym_AMP_AMP] = ACTIONS(2435), - [anon_sym_AMP] = ACTIONS(2433), - [anon_sym_SEMI] = ACTIONS(2435), - [anon_sym_typedef] = ACTIONS(2433), - [anon_sym_extern] = ACTIONS(2433), - [anon_sym___attribute__] = ACTIONS(2433), - [anon_sym_COLON_COLON] = ACTIONS(2435), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2435), - [anon_sym___declspec] = ACTIONS(2433), - [anon_sym___based] = ACTIONS(2433), - [anon_sym___cdecl] = ACTIONS(2433), - [anon_sym___clrcall] = ACTIONS(2433), - [anon_sym___stdcall] = ACTIONS(2433), - [anon_sym___fastcall] = ACTIONS(2433), - [anon_sym___thiscall] = ACTIONS(2433), - [anon_sym___vectorcall] = ACTIONS(2433), - [anon_sym_LBRACE] = ACTIONS(2435), - [anon_sym_LBRACK] = ACTIONS(2433), - [anon_sym_static] = ACTIONS(2433), - [anon_sym_register] = ACTIONS(2433), - [anon_sym_inline] = ACTIONS(2433), - [anon_sym_thread_local] = ACTIONS(2433), - [anon_sym_const] = ACTIONS(2433), - [anon_sym_volatile] = ACTIONS(2433), - [anon_sym_restrict] = ACTIONS(2433), - [anon_sym__Atomic] = ACTIONS(2433), - [anon_sym_mutable] = ACTIONS(2433), - [anon_sym_constexpr] = ACTIONS(2433), - [anon_sym_constinit] = ACTIONS(2433), - [anon_sym_consteval] = ACTIONS(2433), - [anon_sym_signed] = ACTIONS(2433), - [anon_sym_unsigned] = ACTIONS(2433), - [anon_sym_long] = ACTIONS(2433), - [anon_sym_short] = ACTIONS(2433), - [sym_primitive_type] = ACTIONS(2433), - [anon_sym_enum] = ACTIONS(2433), - [anon_sym_class] = ACTIONS(2433), - [anon_sym_struct] = ACTIONS(2433), - [anon_sym_union] = ACTIONS(2433), - [anon_sym_if] = ACTIONS(2433), - [anon_sym_else] = ACTIONS(2433), - [anon_sym_switch] = ACTIONS(2433), - [anon_sym_case] = ACTIONS(2433), - [anon_sym_default] = ACTIONS(2433), - [anon_sym_while] = ACTIONS(2433), - [anon_sym_do] = ACTIONS(2433), - [anon_sym_for] = ACTIONS(2433), - [anon_sym_return] = ACTIONS(2433), - [anon_sym_break] = ACTIONS(2433), - [anon_sym_continue] = ACTIONS(2433), - [anon_sym_goto] = ACTIONS(2433), - [anon_sym_DASH_DASH] = ACTIONS(2435), - [anon_sym_PLUS_PLUS] = ACTIONS(2435), - [anon_sym_sizeof] = ACTIONS(2433), - [sym_number_literal] = ACTIONS(2435), - [anon_sym_L_SQUOTE] = ACTIONS(2435), - [anon_sym_u_SQUOTE] = ACTIONS(2435), - [anon_sym_U_SQUOTE] = ACTIONS(2435), - [anon_sym_u8_SQUOTE] = ACTIONS(2435), - [anon_sym_SQUOTE] = ACTIONS(2435), - [anon_sym_L_DQUOTE] = ACTIONS(2435), - [anon_sym_u_DQUOTE] = ACTIONS(2435), - [anon_sym_U_DQUOTE] = ACTIONS(2435), - [anon_sym_u8_DQUOTE] = ACTIONS(2435), - [anon_sym_DQUOTE] = ACTIONS(2435), - [sym_true] = ACTIONS(2433), - [sym_false] = ACTIONS(2433), - [sym_null] = ACTIONS(2433), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2433), - [anon_sym_decltype] = ACTIONS(2433), - [anon_sym_virtual] = ACTIONS(2433), - [anon_sym_explicit] = ACTIONS(2433), - [anon_sym_typename] = ACTIONS(2433), - [anon_sym_template] = ACTIONS(2433), - [anon_sym_operator] = ACTIONS(2433), - [anon_sym_try] = ACTIONS(2433), - [anon_sym_delete] = ACTIONS(2433), - [anon_sym_throw] = ACTIONS(2433), - [anon_sym_namespace] = ACTIONS(2433), - [anon_sym_using] = ACTIONS(2433), - [anon_sym_static_assert] = ACTIONS(2433), - [anon_sym_concept] = ACTIONS(2433), - [anon_sym_co_return] = ACTIONS(2433), - [anon_sym_co_yield] = ACTIONS(2433), - [anon_sym_co_await] = ACTIONS(2433), - [anon_sym_new] = ACTIONS(2433), - [anon_sym_requires] = ACTIONS(2433), - [sym_this] = ACTIONS(2433), - [sym_nullptr] = ACTIONS(2433), - [sym_raw_string_literal] = ACTIONS(2435), - }, - [664] = { - [sym_identifier] = ACTIONS(2397), - [aux_sym_preproc_include_token1] = ACTIONS(2397), - [aux_sym_preproc_def_token1] = ACTIONS(2397), - [aux_sym_preproc_if_token1] = ACTIONS(2397), - [aux_sym_preproc_if_token2] = ACTIONS(2397), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2397), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2397), - [sym_preproc_directive] = ACTIONS(2397), - [anon_sym_LPAREN2] = ACTIONS(2399), - [anon_sym_BANG] = ACTIONS(2399), - [anon_sym_TILDE] = ACTIONS(2399), - [anon_sym_DASH] = ACTIONS(2397), - [anon_sym_PLUS] = ACTIONS(2397), - [anon_sym_STAR] = ACTIONS(2399), - [anon_sym_AMP_AMP] = ACTIONS(2399), - [anon_sym_AMP] = ACTIONS(2397), - [anon_sym_SEMI] = ACTIONS(2399), - [anon_sym_typedef] = ACTIONS(2397), - [anon_sym_extern] = ACTIONS(2397), - [anon_sym___attribute__] = ACTIONS(2397), - [anon_sym_COLON_COLON] = ACTIONS(2399), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2399), - [anon_sym___declspec] = ACTIONS(2397), - [anon_sym___based] = ACTIONS(2397), - [anon_sym___cdecl] = ACTIONS(2397), - [anon_sym___clrcall] = ACTIONS(2397), - [anon_sym___stdcall] = ACTIONS(2397), - [anon_sym___fastcall] = ACTIONS(2397), - [anon_sym___thiscall] = ACTIONS(2397), - [anon_sym___vectorcall] = ACTIONS(2397), - [anon_sym_LBRACE] = ACTIONS(2399), - [anon_sym_LBRACK] = ACTIONS(2397), - [anon_sym_static] = ACTIONS(2397), - [anon_sym_register] = ACTIONS(2397), - [anon_sym_inline] = ACTIONS(2397), - [anon_sym_thread_local] = ACTIONS(2397), - [anon_sym_const] = ACTIONS(2397), - [anon_sym_volatile] = ACTIONS(2397), - [anon_sym_restrict] = ACTIONS(2397), - [anon_sym__Atomic] = ACTIONS(2397), - [anon_sym_mutable] = ACTIONS(2397), - [anon_sym_constexpr] = ACTIONS(2397), - [anon_sym_constinit] = ACTIONS(2397), - [anon_sym_consteval] = ACTIONS(2397), - [anon_sym_signed] = ACTIONS(2397), - [anon_sym_unsigned] = ACTIONS(2397), - [anon_sym_long] = ACTIONS(2397), - [anon_sym_short] = ACTIONS(2397), - [sym_primitive_type] = ACTIONS(2397), - [anon_sym_enum] = ACTIONS(2397), - [anon_sym_class] = ACTIONS(2397), - [anon_sym_struct] = ACTIONS(2397), - [anon_sym_union] = ACTIONS(2397), - [anon_sym_if] = ACTIONS(2397), - [anon_sym_else] = ACTIONS(2397), - [anon_sym_switch] = ACTIONS(2397), - [anon_sym_case] = ACTIONS(2397), - [anon_sym_default] = ACTIONS(2397), - [anon_sym_while] = ACTIONS(2397), - [anon_sym_do] = ACTIONS(2397), - [anon_sym_for] = ACTIONS(2397), - [anon_sym_return] = ACTIONS(2397), - [anon_sym_break] = ACTIONS(2397), - [anon_sym_continue] = ACTIONS(2397), - [anon_sym_goto] = ACTIONS(2397), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_sizeof] = ACTIONS(2397), - [sym_number_literal] = ACTIONS(2399), - [anon_sym_L_SQUOTE] = ACTIONS(2399), - [anon_sym_u_SQUOTE] = ACTIONS(2399), - [anon_sym_U_SQUOTE] = ACTIONS(2399), - [anon_sym_u8_SQUOTE] = ACTIONS(2399), - [anon_sym_SQUOTE] = ACTIONS(2399), - [anon_sym_L_DQUOTE] = ACTIONS(2399), - [anon_sym_u_DQUOTE] = ACTIONS(2399), - [anon_sym_U_DQUOTE] = ACTIONS(2399), - [anon_sym_u8_DQUOTE] = ACTIONS(2399), - [anon_sym_DQUOTE] = ACTIONS(2399), - [sym_true] = ACTIONS(2397), - [sym_false] = ACTIONS(2397), - [sym_null] = ACTIONS(2397), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2397), - [anon_sym_decltype] = ACTIONS(2397), - [anon_sym_virtual] = ACTIONS(2397), - [anon_sym_explicit] = ACTIONS(2397), - [anon_sym_typename] = ACTIONS(2397), - [anon_sym_template] = ACTIONS(2397), - [anon_sym_operator] = ACTIONS(2397), - [anon_sym_try] = ACTIONS(2397), - [anon_sym_delete] = ACTIONS(2397), - [anon_sym_throw] = ACTIONS(2397), - [anon_sym_namespace] = ACTIONS(2397), - [anon_sym_using] = ACTIONS(2397), - [anon_sym_static_assert] = ACTIONS(2397), - [anon_sym_concept] = ACTIONS(2397), - [anon_sym_co_return] = ACTIONS(2397), - [anon_sym_co_yield] = ACTIONS(2397), - [anon_sym_co_await] = ACTIONS(2397), - [anon_sym_new] = ACTIONS(2397), - [anon_sym_requires] = ACTIONS(2397), - [sym_this] = ACTIONS(2397), - [sym_nullptr] = ACTIONS(2397), - [sym_raw_string_literal] = ACTIONS(2399), - }, - [665] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token2] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [666] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token2] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [667] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token2] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [668] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token2] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [669] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token2] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [670] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token2] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [671] = { - [sym_identifier] = ACTIONS(2383), - [aux_sym_preproc_include_token1] = ACTIONS(2383), - [aux_sym_preproc_def_token1] = ACTIONS(2383), - [aux_sym_preproc_if_token1] = ACTIONS(2383), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2383), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2383), - [sym_preproc_directive] = ACTIONS(2383), - [anon_sym_LPAREN2] = ACTIONS(2385), - [anon_sym_BANG] = ACTIONS(2385), - [anon_sym_TILDE] = ACTIONS(2385), - [anon_sym_DASH] = ACTIONS(2383), - [anon_sym_PLUS] = ACTIONS(2383), - [anon_sym_STAR] = ACTIONS(2385), - [anon_sym_AMP_AMP] = ACTIONS(2385), - [anon_sym_AMP] = ACTIONS(2383), - [anon_sym_SEMI] = ACTIONS(2385), - [anon_sym_typedef] = ACTIONS(2383), - [anon_sym_extern] = ACTIONS(2383), - [anon_sym___attribute__] = ACTIONS(2383), - [anon_sym_COLON_COLON] = ACTIONS(2385), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2385), - [anon_sym___declspec] = ACTIONS(2383), - [anon_sym___based] = ACTIONS(2383), - [anon_sym___cdecl] = ACTIONS(2383), - [anon_sym___clrcall] = ACTIONS(2383), - [anon_sym___stdcall] = ACTIONS(2383), - [anon_sym___fastcall] = ACTIONS(2383), - [anon_sym___thiscall] = ACTIONS(2383), - [anon_sym___vectorcall] = ACTIONS(2383), - [anon_sym_LBRACE] = ACTIONS(2385), - [anon_sym_RBRACE] = ACTIONS(2385), - [anon_sym_LBRACK] = ACTIONS(2383), - [anon_sym_static] = ACTIONS(2383), - [anon_sym_register] = ACTIONS(2383), - [anon_sym_inline] = ACTIONS(2383), - [anon_sym_thread_local] = ACTIONS(2383), - [anon_sym_const] = ACTIONS(2383), - [anon_sym_volatile] = ACTIONS(2383), - [anon_sym_restrict] = ACTIONS(2383), - [anon_sym__Atomic] = ACTIONS(2383), - [anon_sym_mutable] = ACTIONS(2383), - [anon_sym_constexpr] = ACTIONS(2383), - [anon_sym_constinit] = ACTIONS(2383), - [anon_sym_consteval] = ACTIONS(2383), - [anon_sym_signed] = ACTIONS(2383), - [anon_sym_unsigned] = ACTIONS(2383), - [anon_sym_long] = ACTIONS(2383), - [anon_sym_short] = ACTIONS(2383), - [sym_primitive_type] = ACTIONS(2383), - [anon_sym_enum] = ACTIONS(2383), - [anon_sym_class] = ACTIONS(2383), - [anon_sym_struct] = ACTIONS(2383), - [anon_sym_union] = ACTIONS(2383), - [anon_sym_if] = ACTIONS(2383), - [anon_sym_else] = ACTIONS(2383), - [anon_sym_switch] = ACTIONS(2383), - [anon_sym_case] = ACTIONS(2383), - [anon_sym_default] = ACTIONS(2383), - [anon_sym_while] = ACTIONS(2383), - [anon_sym_do] = ACTIONS(2383), - [anon_sym_for] = ACTIONS(2383), - [anon_sym_return] = ACTIONS(2383), - [anon_sym_break] = ACTIONS(2383), - [anon_sym_continue] = ACTIONS(2383), - [anon_sym_goto] = ACTIONS(2383), - [anon_sym_DASH_DASH] = ACTIONS(2385), - [anon_sym_PLUS_PLUS] = ACTIONS(2385), - [anon_sym_sizeof] = ACTIONS(2383), - [sym_number_literal] = ACTIONS(2385), - [anon_sym_L_SQUOTE] = ACTIONS(2385), - [anon_sym_u_SQUOTE] = ACTIONS(2385), - [anon_sym_U_SQUOTE] = ACTIONS(2385), - [anon_sym_u8_SQUOTE] = ACTIONS(2385), - [anon_sym_SQUOTE] = ACTIONS(2385), - [anon_sym_L_DQUOTE] = ACTIONS(2385), - [anon_sym_u_DQUOTE] = ACTIONS(2385), - [anon_sym_U_DQUOTE] = ACTIONS(2385), - [anon_sym_u8_DQUOTE] = ACTIONS(2385), - [anon_sym_DQUOTE] = ACTIONS(2385), - [sym_true] = ACTIONS(2383), - [sym_false] = ACTIONS(2383), - [sym_null] = ACTIONS(2383), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2383), - [anon_sym_decltype] = ACTIONS(2383), - [anon_sym_virtual] = ACTIONS(2383), - [anon_sym_explicit] = ACTIONS(2383), - [anon_sym_typename] = ACTIONS(2383), - [anon_sym_template] = ACTIONS(2383), - [anon_sym_operator] = ACTIONS(2383), - [anon_sym_try] = ACTIONS(2383), - [anon_sym_delete] = ACTIONS(2383), - [anon_sym_throw] = ACTIONS(2383), - [anon_sym_namespace] = ACTIONS(2383), - [anon_sym_using] = ACTIONS(2383), - [anon_sym_static_assert] = ACTIONS(2383), - [anon_sym_concept] = ACTIONS(2383), - [anon_sym_co_return] = ACTIONS(2383), - [anon_sym_co_yield] = ACTIONS(2383), - [anon_sym_co_await] = ACTIONS(2383), - [anon_sym_new] = ACTIONS(2383), - [anon_sym_requires] = ACTIONS(2383), - [sym_this] = ACTIONS(2383), - [sym_nullptr] = ACTIONS(2383), - [sym_raw_string_literal] = ACTIONS(2385), - }, - [672] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token2] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [673] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token2] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [674] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token2] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [675] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token2] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [676] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token2] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [677] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token2] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [678] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token2] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [679] = { - [sym_identifier] = ACTIONS(2379), - [aux_sym_preproc_include_token1] = ACTIONS(2379), - [aux_sym_preproc_def_token1] = ACTIONS(2379), - [aux_sym_preproc_if_token1] = ACTIONS(2379), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2379), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2379), - [sym_preproc_directive] = ACTIONS(2379), - [anon_sym_LPAREN2] = ACTIONS(2381), - [anon_sym_BANG] = ACTIONS(2381), - [anon_sym_TILDE] = ACTIONS(2381), - [anon_sym_DASH] = ACTIONS(2379), - [anon_sym_PLUS] = ACTIONS(2379), - [anon_sym_STAR] = ACTIONS(2381), - [anon_sym_AMP_AMP] = ACTIONS(2381), - [anon_sym_AMP] = ACTIONS(2379), - [anon_sym_SEMI] = ACTIONS(2381), - [anon_sym_typedef] = ACTIONS(2379), - [anon_sym_extern] = ACTIONS(2379), - [anon_sym___attribute__] = ACTIONS(2379), - [anon_sym_COLON_COLON] = ACTIONS(2381), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2381), - [anon_sym___declspec] = ACTIONS(2379), - [anon_sym___based] = ACTIONS(2379), - [anon_sym___cdecl] = ACTIONS(2379), - [anon_sym___clrcall] = ACTIONS(2379), - [anon_sym___stdcall] = ACTIONS(2379), - [anon_sym___fastcall] = ACTIONS(2379), - [anon_sym___thiscall] = ACTIONS(2379), - [anon_sym___vectorcall] = ACTIONS(2379), - [anon_sym_LBRACE] = ACTIONS(2381), - [anon_sym_RBRACE] = ACTIONS(2381), - [anon_sym_LBRACK] = ACTIONS(2379), - [anon_sym_static] = ACTIONS(2379), - [anon_sym_register] = ACTIONS(2379), - [anon_sym_inline] = ACTIONS(2379), - [anon_sym_thread_local] = ACTIONS(2379), - [anon_sym_const] = ACTIONS(2379), - [anon_sym_volatile] = ACTIONS(2379), - [anon_sym_restrict] = ACTIONS(2379), - [anon_sym__Atomic] = ACTIONS(2379), - [anon_sym_mutable] = ACTIONS(2379), - [anon_sym_constexpr] = ACTIONS(2379), - [anon_sym_constinit] = ACTIONS(2379), - [anon_sym_consteval] = ACTIONS(2379), - [anon_sym_signed] = ACTIONS(2379), - [anon_sym_unsigned] = ACTIONS(2379), - [anon_sym_long] = ACTIONS(2379), - [anon_sym_short] = ACTIONS(2379), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_enum] = ACTIONS(2379), - [anon_sym_class] = ACTIONS(2379), - [anon_sym_struct] = ACTIONS(2379), - [anon_sym_union] = ACTIONS(2379), - [anon_sym_if] = ACTIONS(2379), - [anon_sym_else] = ACTIONS(2379), - [anon_sym_switch] = ACTIONS(2379), - [anon_sym_case] = ACTIONS(2379), - [anon_sym_default] = ACTIONS(2379), - [anon_sym_while] = ACTIONS(2379), - [anon_sym_do] = ACTIONS(2379), - [anon_sym_for] = ACTIONS(2379), - [anon_sym_return] = ACTIONS(2379), - [anon_sym_break] = ACTIONS(2379), - [anon_sym_continue] = ACTIONS(2379), - [anon_sym_goto] = ACTIONS(2379), - [anon_sym_DASH_DASH] = ACTIONS(2381), - [anon_sym_PLUS_PLUS] = ACTIONS(2381), - [anon_sym_sizeof] = ACTIONS(2379), - [sym_number_literal] = ACTIONS(2381), - [anon_sym_L_SQUOTE] = ACTIONS(2381), - [anon_sym_u_SQUOTE] = ACTIONS(2381), - [anon_sym_U_SQUOTE] = ACTIONS(2381), - [anon_sym_u8_SQUOTE] = ACTIONS(2381), - [anon_sym_SQUOTE] = ACTIONS(2381), - [anon_sym_L_DQUOTE] = ACTIONS(2381), - [anon_sym_u_DQUOTE] = ACTIONS(2381), - [anon_sym_U_DQUOTE] = ACTIONS(2381), - [anon_sym_u8_DQUOTE] = ACTIONS(2381), - [anon_sym_DQUOTE] = ACTIONS(2381), - [sym_true] = ACTIONS(2379), - [sym_false] = ACTIONS(2379), - [sym_null] = ACTIONS(2379), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2379), - [anon_sym_decltype] = ACTIONS(2379), - [anon_sym_virtual] = ACTIONS(2379), - [anon_sym_explicit] = ACTIONS(2379), - [anon_sym_typename] = ACTIONS(2379), - [anon_sym_template] = ACTIONS(2379), - [anon_sym_operator] = ACTIONS(2379), - [anon_sym_try] = ACTIONS(2379), - [anon_sym_delete] = ACTIONS(2379), - [anon_sym_throw] = ACTIONS(2379), - [anon_sym_namespace] = ACTIONS(2379), - [anon_sym_using] = ACTIONS(2379), - [anon_sym_static_assert] = ACTIONS(2379), - [anon_sym_concept] = ACTIONS(2379), - [anon_sym_co_return] = ACTIONS(2379), - [anon_sym_co_yield] = ACTIONS(2379), - [anon_sym_co_await] = ACTIONS(2379), - [anon_sym_new] = ACTIONS(2379), - [anon_sym_requires] = ACTIONS(2379), - [sym_this] = ACTIONS(2379), - [sym_nullptr] = ACTIONS(2379), - [sym_raw_string_literal] = ACTIONS(2381), - }, - [680] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token2] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [681] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token2] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [682] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token2] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [683] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token2] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [684] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token2] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [685] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token2] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [686] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token2] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [687] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token2] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [688] = { - [sym_identifier] = ACTIONS(2479), - [aux_sym_preproc_include_token1] = ACTIONS(2479), - [aux_sym_preproc_def_token1] = ACTIONS(2479), - [aux_sym_preproc_if_token1] = ACTIONS(2479), - [aux_sym_preproc_if_token2] = ACTIONS(2479), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2479), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2479), - [sym_preproc_directive] = ACTIONS(2479), - [anon_sym_LPAREN2] = ACTIONS(2481), - [anon_sym_BANG] = ACTIONS(2481), - [anon_sym_TILDE] = ACTIONS(2481), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_AMP_AMP] = ACTIONS(2481), - [anon_sym_AMP] = ACTIONS(2479), - [anon_sym_SEMI] = ACTIONS(2481), - [anon_sym_typedef] = ACTIONS(2479), - [anon_sym_extern] = ACTIONS(2479), - [anon_sym___attribute__] = ACTIONS(2479), - [anon_sym_COLON_COLON] = ACTIONS(2481), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2481), - [anon_sym___declspec] = ACTIONS(2479), - [anon_sym___based] = ACTIONS(2479), - [anon_sym___cdecl] = ACTIONS(2479), - [anon_sym___clrcall] = ACTIONS(2479), - [anon_sym___stdcall] = ACTIONS(2479), - [anon_sym___fastcall] = ACTIONS(2479), - [anon_sym___thiscall] = ACTIONS(2479), - [anon_sym___vectorcall] = ACTIONS(2479), - [anon_sym_LBRACE] = ACTIONS(2481), - [anon_sym_LBRACK] = ACTIONS(2479), - [anon_sym_static] = ACTIONS(2479), - [anon_sym_register] = ACTIONS(2479), - [anon_sym_inline] = ACTIONS(2479), - [anon_sym_thread_local] = ACTIONS(2479), - [anon_sym_const] = ACTIONS(2479), - [anon_sym_volatile] = ACTIONS(2479), - [anon_sym_restrict] = ACTIONS(2479), - [anon_sym__Atomic] = ACTIONS(2479), - [anon_sym_mutable] = ACTIONS(2479), - [anon_sym_constexpr] = ACTIONS(2479), - [anon_sym_constinit] = ACTIONS(2479), - [anon_sym_consteval] = ACTIONS(2479), - [anon_sym_signed] = ACTIONS(2479), - [anon_sym_unsigned] = ACTIONS(2479), - [anon_sym_long] = ACTIONS(2479), - [anon_sym_short] = ACTIONS(2479), - [sym_primitive_type] = ACTIONS(2479), - [anon_sym_enum] = ACTIONS(2479), - [anon_sym_class] = ACTIONS(2479), - [anon_sym_struct] = ACTIONS(2479), - [anon_sym_union] = ACTIONS(2479), - [anon_sym_if] = ACTIONS(2479), - [anon_sym_else] = ACTIONS(2479), - [anon_sym_switch] = ACTIONS(2479), - [anon_sym_case] = ACTIONS(2479), - [anon_sym_default] = ACTIONS(2479), - [anon_sym_while] = ACTIONS(2479), - [anon_sym_do] = ACTIONS(2479), - [anon_sym_for] = ACTIONS(2479), - [anon_sym_return] = ACTIONS(2479), - [anon_sym_break] = ACTIONS(2479), - [anon_sym_continue] = ACTIONS(2479), - [anon_sym_goto] = ACTIONS(2479), - [anon_sym_DASH_DASH] = ACTIONS(2481), - [anon_sym_PLUS_PLUS] = ACTIONS(2481), - [anon_sym_sizeof] = ACTIONS(2479), - [sym_number_literal] = ACTIONS(2481), - [anon_sym_L_SQUOTE] = ACTIONS(2481), - [anon_sym_u_SQUOTE] = ACTIONS(2481), - [anon_sym_U_SQUOTE] = ACTIONS(2481), - [anon_sym_u8_SQUOTE] = ACTIONS(2481), - [anon_sym_SQUOTE] = ACTIONS(2481), - [anon_sym_L_DQUOTE] = ACTIONS(2481), - [anon_sym_u_DQUOTE] = ACTIONS(2481), - [anon_sym_U_DQUOTE] = ACTIONS(2481), - [anon_sym_u8_DQUOTE] = ACTIONS(2481), - [anon_sym_DQUOTE] = ACTIONS(2481), - [sym_true] = ACTIONS(2479), - [sym_false] = ACTIONS(2479), - [sym_null] = ACTIONS(2479), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2479), - [anon_sym_decltype] = ACTIONS(2479), - [anon_sym_virtual] = ACTIONS(2479), - [anon_sym_explicit] = ACTIONS(2479), - [anon_sym_typename] = ACTIONS(2479), - [anon_sym_template] = ACTIONS(2479), - [anon_sym_operator] = ACTIONS(2479), - [anon_sym_try] = ACTIONS(2479), - [anon_sym_delete] = ACTIONS(2479), - [anon_sym_throw] = ACTIONS(2479), - [anon_sym_namespace] = ACTIONS(2479), - [anon_sym_using] = ACTIONS(2479), - [anon_sym_static_assert] = ACTIONS(2479), - [anon_sym_concept] = ACTIONS(2479), - [anon_sym_co_return] = ACTIONS(2479), - [anon_sym_co_yield] = ACTIONS(2479), - [anon_sym_co_await] = ACTIONS(2479), - [anon_sym_new] = ACTIONS(2479), - [anon_sym_requires] = ACTIONS(2479), - [sym_this] = ACTIONS(2479), - [sym_nullptr] = ACTIONS(2479), - [sym_raw_string_literal] = ACTIONS(2481), - }, - [689] = { - [sym_identifier] = ACTIONS(2475), - [aux_sym_preproc_include_token1] = ACTIONS(2475), - [aux_sym_preproc_def_token1] = ACTIONS(2475), - [aux_sym_preproc_if_token1] = ACTIONS(2475), - [aux_sym_preproc_if_token2] = ACTIONS(2475), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2475), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2475), - [sym_preproc_directive] = ACTIONS(2475), - [anon_sym_LPAREN2] = ACTIONS(2477), - [anon_sym_BANG] = ACTIONS(2477), - [anon_sym_TILDE] = ACTIONS(2477), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_PLUS] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2477), - [anon_sym_AMP_AMP] = ACTIONS(2477), - [anon_sym_AMP] = ACTIONS(2475), - [anon_sym_SEMI] = ACTIONS(2477), - [anon_sym_typedef] = ACTIONS(2475), - [anon_sym_extern] = ACTIONS(2475), - [anon_sym___attribute__] = ACTIONS(2475), - [anon_sym_COLON_COLON] = ACTIONS(2477), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2477), - [anon_sym___declspec] = ACTIONS(2475), - [anon_sym___based] = ACTIONS(2475), - [anon_sym___cdecl] = ACTIONS(2475), - [anon_sym___clrcall] = ACTIONS(2475), - [anon_sym___stdcall] = ACTIONS(2475), - [anon_sym___fastcall] = ACTIONS(2475), - [anon_sym___thiscall] = ACTIONS(2475), - [anon_sym___vectorcall] = ACTIONS(2475), - [anon_sym_LBRACE] = ACTIONS(2477), - [anon_sym_LBRACK] = ACTIONS(2475), - [anon_sym_static] = ACTIONS(2475), - [anon_sym_register] = ACTIONS(2475), - [anon_sym_inline] = ACTIONS(2475), - [anon_sym_thread_local] = ACTIONS(2475), - [anon_sym_const] = ACTIONS(2475), - [anon_sym_volatile] = ACTIONS(2475), - [anon_sym_restrict] = ACTIONS(2475), - [anon_sym__Atomic] = ACTIONS(2475), - [anon_sym_mutable] = ACTIONS(2475), - [anon_sym_constexpr] = ACTIONS(2475), - [anon_sym_constinit] = ACTIONS(2475), - [anon_sym_consteval] = ACTIONS(2475), - [anon_sym_signed] = ACTIONS(2475), - [anon_sym_unsigned] = ACTIONS(2475), - [anon_sym_long] = ACTIONS(2475), - [anon_sym_short] = ACTIONS(2475), - [sym_primitive_type] = ACTIONS(2475), - [anon_sym_enum] = ACTIONS(2475), - [anon_sym_class] = ACTIONS(2475), - [anon_sym_struct] = ACTIONS(2475), - [anon_sym_union] = ACTIONS(2475), - [anon_sym_if] = ACTIONS(2475), - [anon_sym_else] = ACTIONS(2475), - [anon_sym_switch] = ACTIONS(2475), - [anon_sym_case] = ACTIONS(2475), - [anon_sym_default] = ACTIONS(2475), - [anon_sym_while] = ACTIONS(2475), - [anon_sym_do] = ACTIONS(2475), - [anon_sym_for] = ACTIONS(2475), - [anon_sym_return] = ACTIONS(2475), - [anon_sym_break] = ACTIONS(2475), - [anon_sym_continue] = ACTIONS(2475), - [anon_sym_goto] = ACTIONS(2475), - [anon_sym_DASH_DASH] = ACTIONS(2477), - [anon_sym_PLUS_PLUS] = ACTIONS(2477), - [anon_sym_sizeof] = ACTIONS(2475), - [sym_number_literal] = ACTIONS(2477), - [anon_sym_L_SQUOTE] = ACTIONS(2477), - [anon_sym_u_SQUOTE] = ACTIONS(2477), - [anon_sym_U_SQUOTE] = ACTIONS(2477), - [anon_sym_u8_SQUOTE] = ACTIONS(2477), - [anon_sym_SQUOTE] = ACTIONS(2477), - [anon_sym_L_DQUOTE] = ACTIONS(2477), - [anon_sym_u_DQUOTE] = ACTIONS(2477), - [anon_sym_U_DQUOTE] = ACTIONS(2477), - [anon_sym_u8_DQUOTE] = ACTIONS(2477), - [anon_sym_DQUOTE] = ACTIONS(2477), - [sym_true] = ACTIONS(2475), - [sym_false] = ACTIONS(2475), - [sym_null] = ACTIONS(2475), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2475), - [anon_sym_decltype] = ACTIONS(2475), - [anon_sym_virtual] = ACTIONS(2475), - [anon_sym_explicit] = ACTIONS(2475), - [anon_sym_typename] = ACTIONS(2475), - [anon_sym_template] = ACTIONS(2475), - [anon_sym_operator] = ACTIONS(2475), - [anon_sym_try] = ACTIONS(2475), - [anon_sym_delete] = ACTIONS(2475), - [anon_sym_throw] = ACTIONS(2475), - [anon_sym_namespace] = ACTIONS(2475), - [anon_sym_using] = ACTIONS(2475), - [anon_sym_static_assert] = ACTIONS(2475), - [anon_sym_concept] = ACTIONS(2475), - [anon_sym_co_return] = ACTIONS(2475), - [anon_sym_co_yield] = ACTIONS(2475), - [anon_sym_co_await] = ACTIONS(2475), - [anon_sym_new] = ACTIONS(2475), - [anon_sym_requires] = ACTIONS(2475), - [sym_this] = ACTIONS(2475), - [sym_nullptr] = ACTIONS(2475), - [sym_raw_string_literal] = ACTIONS(2477), - }, - [690] = { - [sym_identifier] = ACTIONS(2455), - [aux_sym_preproc_include_token1] = ACTIONS(2455), - [aux_sym_preproc_def_token1] = ACTIONS(2455), - [aux_sym_preproc_if_token1] = ACTIONS(2455), - [aux_sym_preproc_if_token2] = ACTIONS(2455), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2455), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2455), - [sym_preproc_directive] = ACTIONS(2455), - [anon_sym_LPAREN2] = ACTIONS(2457), - [anon_sym_BANG] = ACTIONS(2457), - [anon_sym_TILDE] = ACTIONS(2457), - [anon_sym_DASH] = ACTIONS(2455), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_STAR] = ACTIONS(2457), - [anon_sym_AMP_AMP] = ACTIONS(2457), - [anon_sym_AMP] = ACTIONS(2455), - [anon_sym_SEMI] = ACTIONS(2457), - [anon_sym_typedef] = ACTIONS(2455), - [anon_sym_extern] = ACTIONS(2455), - [anon_sym___attribute__] = ACTIONS(2455), - [anon_sym_COLON_COLON] = ACTIONS(2457), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2457), - [anon_sym___declspec] = ACTIONS(2455), - [anon_sym___based] = ACTIONS(2455), - [anon_sym___cdecl] = ACTIONS(2455), - [anon_sym___clrcall] = ACTIONS(2455), - [anon_sym___stdcall] = ACTIONS(2455), - [anon_sym___fastcall] = ACTIONS(2455), - [anon_sym___thiscall] = ACTIONS(2455), - [anon_sym___vectorcall] = ACTIONS(2455), - [anon_sym_LBRACE] = ACTIONS(2457), - [anon_sym_LBRACK] = ACTIONS(2455), - [anon_sym_static] = ACTIONS(2455), - [anon_sym_register] = ACTIONS(2455), - [anon_sym_inline] = ACTIONS(2455), - [anon_sym_thread_local] = ACTIONS(2455), - [anon_sym_const] = ACTIONS(2455), - [anon_sym_volatile] = ACTIONS(2455), - [anon_sym_restrict] = ACTIONS(2455), - [anon_sym__Atomic] = ACTIONS(2455), - [anon_sym_mutable] = ACTIONS(2455), - [anon_sym_constexpr] = ACTIONS(2455), - [anon_sym_constinit] = ACTIONS(2455), - [anon_sym_consteval] = ACTIONS(2455), - [anon_sym_signed] = ACTIONS(2455), - [anon_sym_unsigned] = ACTIONS(2455), - [anon_sym_long] = ACTIONS(2455), - [anon_sym_short] = ACTIONS(2455), - [sym_primitive_type] = ACTIONS(2455), - [anon_sym_enum] = ACTIONS(2455), - [anon_sym_class] = ACTIONS(2455), - [anon_sym_struct] = ACTIONS(2455), - [anon_sym_union] = ACTIONS(2455), - [anon_sym_if] = ACTIONS(2455), - [anon_sym_else] = ACTIONS(2455), - [anon_sym_switch] = ACTIONS(2455), - [anon_sym_case] = ACTIONS(2455), - [anon_sym_default] = ACTIONS(2455), - [anon_sym_while] = ACTIONS(2455), - [anon_sym_do] = ACTIONS(2455), - [anon_sym_for] = ACTIONS(2455), - [anon_sym_return] = ACTIONS(2455), - [anon_sym_break] = ACTIONS(2455), - [anon_sym_continue] = ACTIONS(2455), - [anon_sym_goto] = ACTIONS(2455), - [anon_sym_DASH_DASH] = ACTIONS(2457), - [anon_sym_PLUS_PLUS] = ACTIONS(2457), - [anon_sym_sizeof] = ACTIONS(2455), - [sym_number_literal] = ACTIONS(2457), - [anon_sym_L_SQUOTE] = ACTIONS(2457), - [anon_sym_u_SQUOTE] = ACTIONS(2457), - [anon_sym_U_SQUOTE] = ACTIONS(2457), - [anon_sym_u8_SQUOTE] = ACTIONS(2457), - [anon_sym_SQUOTE] = ACTIONS(2457), - [anon_sym_L_DQUOTE] = ACTIONS(2457), - [anon_sym_u_DQUOTE] = ACTIONS(2457), - [anon_sym_U_DQUOTE] = ACTIONS(2457), - [anon_sym_u8_DQUOTE] = ACTIONS(2457), - [anon_sym_DQUOTE] = ACTIONS(2457), - [sym_true] = ACTIONS(2455), - [sym_false] = ACTIONS(2455), - [sym_null] = ACTIONS(2455), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2455), - [anon_sym_decltype] = ACTIONS(2455), - [anon_sym_virtual] = ACTIONS(2455), - [anon_sym_explicit] = ACTIONS(2455), - [anon_sym_typename] = ACTIONS(2455), - [anon_sym_template] = ACTIONS(2455), - [anon_sym_operator] = ACTIONS(2455), - [anon_sym_try] = ACTIONS(2455), - [anon_sym_delete] = ACTIONS(2455), - [anon_sym_throw] = ACTIONS(2455), - [anon_sym_namespace] = ACTIONS(2455), - [anon_sym_using] = ACTIONS(2455), - [anon_sym_static_assert] = ACTIONS(2455), - [anon_sym_concept] = ACTIONS(2455), - [anon_sym_co_return] = ACTIONS(2455), - [anon_sym_co_yield] = ACTIONS(2455), - [anon_sym_co_await] = ACTIONS(2455), - [anon_sym_new] = ACTIONS(2455), - [anon_sym_requires] = ACTIONS(2455), - [sym_this] = ACTIONS(2455), - [sym_nullptr] = ACTIONS(2455), - [sym_raw_string_literal] = ACTIONS(2457), - }, - [691] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token2] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [692] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token2] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [693] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token2] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [694] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token2] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [695] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token2] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [696] = { - [sym_identifier] = ACTIONS(2375), - [aux_sym_preproc_include_token1] = ACTIONS(2375), - [aux_sym_preproc_def_token1] = ACTIONS(2375), - [aux_sym_preproc_if_token1] = ACTIONS(2375), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2375), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2375), - [sym_preproc_directive] = ACTIONS(2375), - [anon_sym_LPAREN2] = ACTIONS(2377), - [anon_sym_BANG] = ACTIONS(2377), - [anon_sym_TILDE] = ACTIONS(2377), - [anon_sym_DASH] = ACTIONS(2375), - [anon_sym_PLUS] = ACTIONS(2375), - [anon_sym_STAR] = ACTIONS(2377), - [anon_sym_AMP_AMP] = ACTIONS(2377), - [anon_sym_AMP] = ACTIONS(2375), - [anon_sym_SEMI] = ACTIONS(2377), - [anon_sym_typedef] = ACTIONS(2375), - [anon_sym_extern] = ACTIONS(2375), - [anon_sym___attribute__] = ACTIONS(2375), - [anon_sym_COLON_COLON] = ACTIONS(2377), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2377), - [anon_sym___declspec] = ACTIONS(2375), - [anon_sym___based] = ACTIONS(2375), - [anon_sym___cdecl] = ACTIONS(2375), - [anon_sym___clrcall] = ACTIONS(2375), - [anon_sym___stdcall] = ACTIONS(2375), - [anon_sym___fastcall] = ACTIONS(2375), - [anon_sym___thiscall] = ACTIONS(2375), - [anon_sym___vectorcall] = ACTIONS(2375), - [anon_sym_LBRACE] = ACTIONS(2377), - [anon_sym_RBRACE] = ACTIONS(2377), - [anon_sym_LBRACK] = ACTIONS(2375), - [anon_sym_static] = ACTIONS(2375), - [anon_sym_register] = ACTIONS(2375), - [anon_sym_inline] = ACTIONS(2375), - [anon_sym_thread_local] = ACTIONS(2375), - [anon_sym_const] = ACTIONS(2375), - [anon_sym_volatile] = ACTIONS(2375), - [anon_sym_restrict] = ACTIONS(2375), - [anon_sym__Atomic] = ACTIONS(2375), - [anon_sym_mutable] = ACTIONS(2375), - [anon_sym_constexpr] = ACTIONS(2375), - [anon_sym_constinit] = ACTIONS(2375), - [anon_sym_consteval] = ACTIONS(2375), - [anon_sym_signed] = ACTIONS(2375), - [anon_sym_unsigned] = ACTIONS(2375), - [anon_sym_long] = ACTIONS(2375), - [anon_sym_short] = ACTIONS(2375), - [sym_primitive_type] = ACTIONS(2375), - [anon_sym_enum] = ACTIONS(2375), - [anon_sym_class] = ACTIONS(2375), - [anon_sym_struct] = ACTIONS(2375), - [anon_sym_union] = ACTIONS(2375), - [anon_sym_if] = ACTIONS(2375), - [anon_sym_else] = ACTIONS(2375), - [anon_sym_switch] = ACTIONS(2375), - [anon_sym_case] = ACTIONS(2375), - [anon_sym_default] = ACTIONS(2375), - [anon_sym_while] = ACTIONS(2375), - [anon_sym_do] = ACTIONS(2375), - [anon_sym_for] = ACTIONS(2375), - [anon_sym_return] = ACTIONS(2375), - [anon_sym_break] = ACTIONS(2375), - [anon_sym_continue] = ACTIONS(2375), - [anon_sym_goto] = ACTIONS(2375), - [anon_sym_DASH_DASH] = ACTIONS(2377), - [anon_sym_PLUS_PLUS] = ACTIONS(2377), - [anon_sym_sizeof] = ACTIONS(2375), - [sym_number_literal] = ACTIONS(2377), - [anon_sym_L_SQUOTE] = ACTIONS(2377), - [anon_sym_u_SQUOTE] = ACTIONS(2377), - [anon_sym_U_SQUOTE] = ACTIONS(2377), - [anon_sym_u8_SQUOTE] = ACTIONS(2377), - [anon_sym_SQUOTE] = ACTIONS(2377), - [anon_sym_L_DQUOTE] = ACTIONS(2377), - [anon_sym_u_DQUOTE] = ACTIONS(2377), - [anon_sym_U_DQUOTE] = ACTIONS(2377), - [anon_sym_u8_DQUOTE] = ACTIONS(2377), - [anon_sym_DQUOTE] = ACTIONS(2377), - [sym_true] = ACTIONS(2375), - [sym_false] = ACTIONS(2375), - [sym_null] = ACTIONS(2375), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2375), - [anon_sym_decltype] = ACTIONS(2375), - [anon_sym_virtual] = ACTIONS(2375), - [anon_sym_explicit] = ACTIONS(2375), - [anon_sym_typename] = ACTIONS(2375), - [anon_sym_template] = ACTIONS(2375), - [anon_sym_operator] = ACTIONS(2375), - [anon_sym_try] = ACTIONS(2375), - [anon_sym_delete] = ACTIONS(2375), - [anon_sym_throw] = ACTIONS(2375), - [anon_sym_namespace] = ACTIONS(2375), - [anon_sym_using] = ACTIONS(2375), - [anon_sym_static_assert] = ACTIONS(2375), - [anon_sym_concept] = ACTIONS(2375), - [anon_sym_co_return] = ACTIONS(2375), - [anon_sym_co_yield] = ACTIONS(2375), - [anon_sym_co_await] = ACTIONS(2375), - [anon_sym_new] = ACTIONS(2375), - [anon_sym_requires] = ACTIONS(2375), - [sym_this] = ACTIONS(2375), - [sym_nullptr] = ACTIONS(2375), - [sym_raw_string_literal] = ACTIONS(2377), - }, - [697] = { - [ts_builtin_sym_end] = ACTIONS(2395), - [sym_identifier] = ACTIONS(2393), - [aux_sym_preproc_include_token1] = ACTIONS(2393), - [aux_sym_preproc_def_token1] = ACTIONS(2393), - [aux_sym_preproc_if_token1] = ACTIONS(2393), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2393), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2393), - [sym_preproc_directive] = ACTIONS(2393), - [anon_sym_LPAREN2] = ACTIONS(2395), - [anon_sym_BANG] = ACTIONS(2395), - [anon_sym_TILDE] = ACTIONS(2395), - [anon_sym_DASH] = ACTIONS(2393), - [anon_sym_PLUS] = ACTIONS(2393), - [anon_sym_STAR] = ACTIONS(2395), - [anon_sym_AMP_AMP] = ACTIONS(2395), - [anon_sym_AMP] = ACTIONS(2393), - [anon_sym_SEMI] = ACTIONS(2395), - [anon_sym_typedef] = ACTIONS(2393), - [anon_sym_extern] = ACTIONS(2393), - [anon_sym___attribute__] = ACTIONS(2393), - [anon_sym_COLON_COLON] = ACTIONS(2395), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2395), - [anon_sym___declspec] = ACTIONS(2393), - [anon_sym___based] = ACTIONS(2393), - [anon_sym___cdecl] = ACTIONS(2393), - [anon_sym___clrcall] = ACTIONS(2393), - [anon_sym___stdcall] = ACTIONS(2393), - [anon_sym___fastcall] = ACTIONS(2393), - [anon_sym___thiscall] = ACTIONS(2393), - [anon_sym___vectorcall] = ACTIONS(2393), - [anon_sym_LBRACE] = ACTIONS(2395), - [anon_sym_LBRACK] = ACTIONS(2393), - [anon_sym_static] = ACTIONS(2393), - [anon_sym_register] = ACTIONS(2393), - [anon_sym_inline] = ACTIONS(2393), - [anon_sym_thread_local] = ACTIONS(2393), - [anon_sym_const] = ACTIONS(2393), - [anon_sym_volatile] = ACTIONS(2393), - [anon_sym_restrict] = ACTIONS(2393), - [anon_sym__Atomic] = ACTIONS(2393), - [anon_sym_mutable] = ACTIONS(2393), - [anon_sym_constexpr] = ACTIONS(2393), - [anon_sym_constinit] = ACTIONS(2393), - [anon_sym_consteval] = ACTIONS(2393), - [anon_sym_signed] = ACTIONS(2393), - [anon_sym_unsigned] = ACTIONS(2393), - [anon_sym_long] = ACTIONS(2393), - [anon_sym_short] = ACTIONS(2393), - [sym_primitive_type] = ACTIONS(2393), - [anon_sym_enum] = ACTIONS(2393), - [anon_sym_class] = ACTIONS(2393), - [anon_sym_struct] = ACTIONS(2393), - [anon_sym_union] = ACTIONS(2393), - [anon_sym_if] = ACTIONS(2393), - [anon_sym_else] = ACTIONS(2393), - [anon_sym_switch] = ACTIONS(2393), - [anon_sym_case] = ACTIONS(2393), - [anon_sym_default] = ACTIONS(2393), - [anon_sym_while] = ACTIONS(2393), - [anon_sym_do] = ACTIONS(2393), - [anon_sym_for] = ACTIONS(2393), - [anon_sym_return] = ACTIONS(2393), - [anon_sym_break] = ACTIONS(2393), - [anon_sym_continue] = ACTIONS(2393), - [anon_sym_goto] = ACTIONS(2393), - [anon_sym_DASH_DASH] = ACTIONS(2395), - [anon_sym_PLUS_PLUS] = ACTIONS(2395), - [anon_sym_sizeof] = ACTIONS(2393), - [sym_number_literal] = ACTIONS(2395), - [anon_sym_L_SQUOTE] = ACTIONS(2395), - [anon_sym_u_SQUOTE] = ACTIONS(2395), - [anon_sym_U_SQUOTE] = ACTIONS(2395), - [anon_sym_u8_SQUOTE] = ACTIONS(2395), - [anon_sym_SQUOTE] = ACTIONS(2395), - [anon_sym_L_DQUOTE] = ACTIONS(2395), - [anon_sym_u_DQUOTE] = ACTIONS(2395), - [anon_sym_U_DQUOTE] = ACTIONS(2395), - [anon_sym_u8_DQUOTE] = ACTIONS(2395), - [anon_sym_DQUOTE] = ACTIONS(2395), - [sym_true] = ACTIONS(2393), - [sym_false] = ACTIONS(2393), - [sym_null] = ACTIONS(2393), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2393), - [anon_sym_decltype] = ACTIONS(2393), - [anon_sym_virtual] = ACTIONS(2393), - [anon_sym_explicit] = ACTIONS(2393), - [anon_sym_typename] = ACTIONS(2393), - [anon_sym_template] = ACTIONS(2393), - [anon_sym_operator] = ACTIONS(2393), - [anon_sym_try] = ACTIONS(2393), - [anon_sym_delete] = ACTIONS(2393), - [anon_sym_throw] = ACTIONS(2393), - [anon_sym_namespace] = ACTIONS(2393), - [anon_sym_using] = ACTIONS(2393), - [anon_sym_static_assert] = ACTIONS(2393), - [anon_sym_concept] = ACTIONS(2393), - [anon_sym_co_return] = ACTIONS(2393), - [anon_sym_co_yield] = ACTIONS(2393), - [anon_sym_co_await] = ACTIONS(2393), - [anon_sym_new] = ACTIONS(2393), - [anon_sym_requires] = ACTIONS(2393), - [sym_this] = ACTIONS(2393), - [sym_nullptr] = ACTIONS(2393), - [sym_raw_string_literal] = ACTIONS(2395), - }, - [698] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token2] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [699] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token2] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [700] = { - [ts_builtin_sym_end] = ACTIONS(2389), - [sym_identifier] = ACTIONS(2387), - [aux_sym_preproc_include_token1] = ACTIONS(2387), - [aux_sym_preproc_def_token1] = ACTIONS(2387), - [aux_sym_preproc_if_token1] = ACTIONS(2387), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2387), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2387), - [sym_preproc_directive] = ACTIONS(2387), - [anon_sym_LPAREN2] = ACTIONS(2389), - [anon_sym_BANG] = ACTIONS(2389), - [anon_sym_TILDE] = ACTIONS(2389), - [anon_sym_DASH] = ACTIONS(2387), - [anon_sym_PLUS] = ACTIONS(2387), - [anon_sym_STAR] = ACTIONS(2389), - [anon_sym_AMP_AMP] = ACTIONS(2389), - [anon_sym_AMP] = ACTIONS(2387), - [anon_sym_SEMI] = ACTIONS(2389), - [anon_sym_typedef] = ACTIONS(2387), - [anon_sym_extern] = ACTIONS(2387), - [anon_sym___attribute__] = ACTIONS(2387), - [anon_sym_COLON_COLON] = ACTIONS(2389), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2389), - [anon_sym___declspec] = ACTIONS(2387), - [anon_sym___based] = ACTIONS(2387), - [anon_sym___cdecl] = ACTIONS(2387), - [anon_sym___clrcall] = ACTIONS(2387), - [anon_sym___stdcall] = ACTIONS(2387), - [anon_sym___fastcall] = ACTIONS(2387), - [anon_sym___thiscall] = ACTIONS(2387), - [anon_sym___vectorcall] = ACTIONS(2387), - [anon_sym_LBRACE] = ACTIONS(2389), - [anon_sym_LBRACK] = ACTIONS(2387), - [anon_sym_static] = ACTIONS(2387), - [anon_sym_register] = ACTIONS(2387), - [anon_sym_inline] = ACTIONS(2387), - [anon_sym_thread_local] = ACTIONS(2387), - [anon_sym_const] = ACTIONS(2387), - [anon_sym_volatile] = ACTIONS(2387), - [anon_sym_restrict] = ACTIONS(2387), - [anon_sym__Atomic] = ACTIONS(2387), - [anon_sym_mutable] = ACTIONS(2387), - [anon_sym_constexpr] = ACTIONS(2387), - [anon_sym_constinit] = ACTIONS(2387), - [anon_sym_consteval] = ACTIONS(2387), - [anon_sym_signed] = ACTIONS(2387), - [anon_sym_unsigned] = ACTIONS(2387), - [anon_sym_long] = ACTIONS(2387), - [anon_sym_short] = ACTIONS(2387), - [sym_primitive_type] = ACTIONS(2387), - [anon_sym_enum] = ACTIONS(2387), - [anon_sym_class] = ACTIONS(2387), - [anon_sym_struct] = ACTIONS(2387), - [anon_sym_union] = ACTIONS(2387), - [anon_sym_if] = ACTIONS(2387), - [anon_sym_else] = ACTIONS(2387), - [anon_sym_switch] = ACTIONS(2387), - [anon_sym_case] = ACTIONS(2387), - [anon_sym_default] = ACTIONS(2387), - [anon_sym_while] = ACTIONS(2387), - [anon_sym_do] = ACTIONS(2387), - [anon_sym_for] = ACTIONS(2387), - [anon_sym_return] = ACTIONS(2387), - [anon_sym_break] = ACTIONS(2387), - [anon_sym_continue] = ACTIONS(2387), - [anon_sym_goto] = ACTIONS(2387), - [anon_sym_DASH_DASH] = ACTIONS(2389), - [anon_sym_PLUS_PLUS] = ACTIONS(2389), - [anon_sym_sizeof] = ACTIONS(2387), - [sym_number_literal] = ACTIONS(2389), - [anon_sym_L_SQUOTE] = ACTIONS(2389), - [anon_sym_u_SQUOTE] = ACTIONS(2389), - [anon_sym_U_SQUOTE] = ACTIONS(2389), - [anon_sym_u8_SQUOTE] = ACTIONS(2389), - [anon_sym_SQUOTE] = ACTIONS(2389), - [anon_sym_L_DQUOTE] = ACTIONS(2389), - [anon_sym_u_DQUOTE] = ACTIONS(2389), - [anon_sym_U_DQUOTE] = ACTIONS(2389), - [anon_sym_u8_DQUOTE] = ACTIONS(2389), - [anon_sym_DQUOTE] = ACTIONS(2389), - [sym_true] = ACTIONS(2387), - [sym_false] = ACTIONS(2387), - [sym_null] = ACTIONS(2387), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2387), - [anon_sym_decltype] = ACTIONS(2387), - [anon_sym_virtual] = ACTIONS(2387), - [anon_sym_explicit] = ACTIONS(2387), - [anon_sym_typename] = ACTIONS(2387), - [anon_sym_template] = ACTIONS(2387), - [anon_sym_operator] = ACTIONS(2387), - [anon_sym_try] = ACTIONS(2387), - [anon_sym_delete] = ACTIONS(2387), - [anon_sym_throw] = ACTIONS(2387), - [anon_sym_namespace] = ACTIONS(2387), - [anon_sym_using] = ACTIONS(2387), - [anon_sym_static_assert] = ACTIONS(2387), - [anon_sym_concept] = ACTIONS(2387), - [anon_sym_co_return] = ACTIONS(2387), - [anon_sym_co_yield] = ACTIONS(2387), - [anon_sym_co_await] = ACTIONS(2387), - [anon_sym_new] = ACTIONS(2387), - [anon_sym_requires] = ACTIONS(2387), - [sym_this] = ACTIONS(2387), - [sym_nullptr] = ACTIONS(2387), - [sym_raw_string_literal] = ACTIONS(2389), - }, - [701] = { - [ts_builtin_sym_end] = ACTIONS(2373), - [sym_identifier] = ACTIONS(2371), - [aux_sym_preproc_include_token1] = ACTIONS(2371), - [aux_sym_preproc_def_token1] = ACTIONS(2371), - [aux_sym_preproc_if_token1] = ACTIONS(2371), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2371), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2371), - [sym_preproc_directive] = ACTIONS(2371), - [anon_sym_LPAREN2] = ACTIONS(2373), - [anon_sym_BANG] = ACTIONS(2373), - [anon_sym_TILDE] = ACTIONS(2373), - [anon_sym_DASH] = ACTIONS(2371), - [anon_sym_PLUS] = ACTIONS(2371), - [anon_sym_STAR] = ACTIONS(2373), - [anon_sym_AMP_AMP] = ACTIONS(2373), - [anon_sym_AMP] = ACTIONS(2371), - [anon_sym_SEMI] = ACTIONS(2373), - [anon_sym_typedef] = ACTIONS(2371), - [anon_sym_extern] = ACTIONS(2371), - [anon_sym___attribute__] = ACTIONS(2371), - [anon_sym_COLON_COLON] = ACTIONS(2373), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2373), - [anon_sym___declspec] = ACTIONS(2371), - [anon_sym___based] = ACTIONS(2371), - [anon_sym___cdecl] = ACTIONS(2371), - [anon_sym___clrcall] = ACTIONS(2371), - [anon_sym___stdcall] = ACTIONS(2371), - [anon_sym___fastcall] = ACTIONS(2371), - [anon_sym___thiscall] = ACTIONS(2371), - [anon_sym___vectorcall] = ACTIONS(2371), - [anon_sym_LBRACE] = ACTIONS(2373), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_static] = ACTIONS(2371), - [anon_sym_register] = ACTIONS(2371), - [anon_sym_inline] = ACTIONS(2371), - [anon_sym_thread_local] = ACTIONS(2371), - [anon_sym_const] = ACTIONS(2371), - [anon_sym_volatile] = ACTIONS(2371), - [anon_sym_restrict] = ACTIONS(2371), - [anon_sym__Atomic] = ACTIONS(2371), - [anon_sym_mutable] = ACTIONS(2371), - [anon_sym_constexpr] = ACTIONS(2371), - [anon_sym_constinit] = ACTIONS(2371), - [anon_sym_consteval] = ACTIONS(2371), - [anon_sym_signed] = ACTIONS(2371), - [anon_sym_unsigned] = ACTIONS(2371), - [anon_sym_long] = ACTIONS(2371), - [anon_sym_short] = ACTIONS(2371), - [sym_primitive_type] = ACTIONS(2371), - [anon_sym_enum] = ACTIONS(2371), - [anon_sym_class] = ACTIONS(2371), - [anon_sym_struct] = ACTIONS(2371), - [anon_sym_union] = ACTIONS(2371), - [anon_sym_if] = ACTIONS(2371), - [anon_sym_else] = ACTIONS(2371), - [anon_sym_switch] = ACTIONS(2371), - [anon_sym_case] = ACTIONS(2371), - [anon_sym_default] = ACTIONS(2371), - [anon_sym_while] = ACTIONS(2371), - [anon_sym_do] = ACTIONS(2371), - [anon_sym_for] = ACTIONS(2371), - [anon_sym_return] = ACTIONS(2371), - [anon_sym_break] = ACTIONS(2371), - [anon_sym_continue] = ACTIONS(2371), - [anon_sym_goto] = ACTIONS(2371), - [anon_sym_DASH_DASH] = ACTIONS(2373), - [anon_sym_PLUS_PLUS] = ACTIONS(2373), - [anon_sym_sizeof] = ACTIONS(2371), - [sym_number_literal] = ACTIONS(2373), - [anon_sym_L_SQUOTE] = ACTIONS(2373), - [anon_sym_u_SQUOTE] = ACTIONS(2373), - [anon_sym_U_SQUOTE] = ACTIONS(2373), - [anon_sym_u8_SQUOTE] = ACTIONS(2373), - [anon_sym_SQUOTE] = ACTIONS(2373), - [anon_sym_L_DQUOTE] = ACTIONS(2373), - [anon_sym_u_DQUOTE] = ACTIONS(2373), - [anon_sym_U_DQUOTE] = ACTIONS(2373), - [anon_sym_u8_DQUOTE] = ACTIONS(2373), - [anon_sym_DQUOTE] = ACTIONS(2373), - [sym_true] = ACTIONS(2371), - [sym_false] = ACTIONS(2371), - [sym_null] = ACTIONS(2371), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2371), - [anon_sym_decltype] = ACTIONS(2371), - [anon_sym_virtual] = ACTIONS(2371), - [anon_sym_explicit] = ACTIONS(2371), - [anon_sym_typename] = ACTIONS(2371), - [anon_sym_template] = ACTIONS(2371), - [anon_sym_operator] = ACTIONS(2371), - [anon_sym_try] = ACTIONS(2371), - [anon_sym_delete] = ACTIONS(2371), - [anon_sym_throw] = ACTIONS(2371), - [anon_sym_namespace] = ACTIONS(2371), - [anon_sym_using] = ACTIONS(2371), - [anon_sym_static_assert] = ACTIONS(2371), - [anon_sym_concept] = ACTIONS(2371), - [anon_sym_co_return] = ACTIONS(2371), - [anon_sym_co_yield] = ACTIONS(2371), - [anon_sym_co_await] = ACTIONS(2371), - [anon_sym_new] = ACTIONS(2371), - [anon_sym_requires] = ACTIONS(2371), - [sym_this] = ACTIONS(2371), - [sym_nullptr] = ACTIONS(2371), - [sym_raw_string_literal] = ACTIONS(2373), - }, - [702] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token2] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), + [sym_auto] = ACTIONS(2699), + [anon_sym_decltype] = ACTIONS(2701), + [anon_sym_typename] = ACTIONS(2703), + [anon_sym_template] = ACTIONS(976), + [anon_sym_GT2] = ACTIONS(2717), + [anon_sym_delete] = ACTIONS(2707), + [anon_sym_co_await] = ACTIONS(2709), + [anon_sym_new] = ACTIONS(2711), + [anon_sym_requires] = ACTIONS(2713), + [sym_this] = ACTIONS(2697), + [sym_nullptr] = ACTIONS(2697), + [sym_raw_string_literal] = ACTIONS(2715), }, - [703] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token2] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), + [475] = { + [ts_builtin_sym_end] = ACTIONS(2487), + [sym_identifier] = ACTIONS(2485), + [aux_sym_preproc_include_token1] = ACTIONS(2485), + [aux_sym_preproc_def_token1] = ACTIONS(2485), + [aux_sym_preproc_if_token1] = ACTIONS(2485), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2485), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2485), + [sym_preproc_directive] = ACTIONS(2485), + [anon_sym_LPAREN2] = ACTIONS(2487), + [anon_sym_BANG] = ACTIONS(2487), + [anon_sym_TILDE] = ACTIONS(2487), + [anon_sym_DASH] = ACTIONS(2485), + [anon_sym_PLUS] = ACTIONS(2485), + [anon_sym_STAR] = ACTIONS(2487), + [anon_sym_AMP_AMP] = ACTIONS(2487), + [anon_sym_AMP] = ACTIONS(2485), + [anon_sym_SEMI] = ACTIONS(2487), + [anon_sym_typedef] = ACTIONS(2485), + [anon_sym_extern] = ACTIONS(2485), + [anon_sym___attribute__] = ACTIONS(2485), + [anon_sym_COLON_COLON] = ACTIONS(2487), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2487), + [anon_sym___declspec] = ACTIONS(2485), + [anon_sym___based] = ACTIONS(2485), + [anon_sym___cdecl] = ACTIONS(2485), + [anon_sym___clrcall] = ACTIONS(2485), + [anon_sym___stdcall] = ACTIONS(2485), + [anon_sym___fastcall] = ACTIONS(2485), + [anon_sym___thiscall] = ACTIONS(2485), + [anon_sym___vectorcall] = ACTIONS(2485), + [anon_sym_LBRACE] = ACTIONS(2487), + [anon_sym_LBRACK] = ACTIONS(2485), + [anon_sym_static] = ACTIONS(2485), + [anon_sym_register] = ACTIONS(2485), + [anon_sym_inline] = ACTIONS(2485), + [anon_sym_thread_local] = ACTIONS(2485), + [anon_sym_const] = ACTIONS(2485), + [anon_sym_volatile] = ACTIONS(2485), + [anon_sym_restrict] = ACTIONS(2485), + [anon_sym__Atomic] = ACTIONS(2485), + [anon_sym_mutable] = ACTIONS(2485), + [anon_sym_constexpr] = ACTIONS(2485), + [anon_sym_constinit] = ACTIONS(2485), + [anon_sym_consteval] = ACTIONS(2485), + [anon_sym_signed] = ACTIONS(2485), + [anon_sym_unsigned] = ACTIONS(2485), + [anon_sym_long] = ACTIONS(2485), + [anon_sym_short] = ACTIONS(2485), + [sym_primitive_type] = ACTIONS(2485), + [anon_sym_enum] = ACTIONS(2485), + [anon_sym_class] = ACTIONS(2485), + [anon_sym_struct] = ACTIONS(2485), + [anon_sym_union] = ACTIONS(2485), + [anon_sym_if] = ACTIONS(2485), + [anon_sym_else] = ACTIONS(2485), + [anon_sym_switch] = ACTIONS(2485), + [anon_sym_case] = ACTIONS(2485), + [anon_sym_default] = ACTIONS(2485), + [anon_sym_while] = ACTIONS(2485), + [anon_sym_do] = ACTIONS(2485), + [anon_sym_for] = ACTIONS(2485), + [anon_sym_return] = ACTIONS(2485), + [anon_sym_break] = ACTIONS(2485), + [anon_sym_continue] = ACTIONS(2485), + [anon_sym_goto] = ACTIONS(2485), + [anon_sym_not] = ACTIONS(2485), + [anon_sym_compl] = ACTIONS(2485), + [anon_sym_DASH_DASH] = ACTIONS(2487), + [anon_sym_PLUS_PLUS] = ACTIONS(2487), + [anon_sym_sizeof] = ACTIONS(2485), + [sym_number_literal] = ACTIONS(2487), + [anon_sym_L_SQUOTE] = ACTIONS(2487), + [anon_sym_u_SQUOTE] = ACTIONS(2487), + [anon_sym_U_SQUOTE] = ACTIONS(2487), + [anon_sym_u8_SQUOTE] = ACTIONS(2487), + [anon_sym_SQUOTE] = ACTIONS(2487), + [anon_sym_L_DQUOTE] = ACTIONS(2487), + [anon_sym_u_DQUOTE] = ACTIONS(2487), + [anon_sym_U_DQUOTE] = ACTIONS(2487), + [anon_sym_u8_DQUOTE] = ACTIONS(2487), + [anon_sym_DQUOTE] = ACTIONS(2487), + [sym_true] = ACTIONS(2485), + [sym_false] = ACTIONS(2485), + [sym_null] = ACTIONS(2485), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2485), + [anon_sym_decltype] = ACTIONS(2485), + [anon_sym_virtual] = ACTIONS(2485), + [anon_sym_explicit] = ACTIONS(2485), + [anon_sym_typename] = ACTIONS(2485), + [anon_sym_template] = ACTIONS(2485), + [anon_sym_operator] = ACTIONS(2485), + [anon_sym_try] = ACTIONS(2485), + [anon_sym_delete] = ACTIONS(2485), + [anon_sym_throw] = ACTIONS(2485), + [anon_sym_namespace] = ACTIONS(2485), + [anon_sym_using] = ACTIONS(2485), + [anon_sym_static_assert] = ACTIONS(2485), + [anon_sym_concept] = ACTIONS(2485), + [anon_sym_co_return] = ACTIONS(2485), + [anon_sym_co_yield] = ACTIONS(2485), + [anon_sym_catch] = ACTIONS(2485), + [anon_sym_co_await] = ACTIONS(2485), + [anon_sym_new] = ACTIONS(2485), + [anon_sym_requires] = ACTIONS(2485), + [sym_this] = ACTIONS(2485), + [sym_nullptr] = ACTIONS(2485), + [sym_raw_string_literal] = ACTIONS(2487), }, - [704] = { - [sym_function_definition] = STATE(1030), - [sym_declaration] = STATE(1030), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(3967), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(2900), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym_ms_call_modifier] = STATE(1829), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4689), - [sym_array_declarator] = STATE(4825), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(2975), + [476] = { + [sym_type_qualifier] = STATE(3373), + [sym__type_specifier] = STATE(4189), [sym_sized_type_specifier] = STATE(3139), [sym_enum_specifier] = STATE(3139), [sym_struct_specifier] = STATE(3139), [sym_union_specifier] = STATE(3139), - [sym__empty_declaration] = STATE(1030), + [sym__expression] = STATE(3617), + [sym_conditional_expression] = STATE(3865), + [sym_assignment_expression] = STATE(3865), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3865), + [sym_binary_expression] = STATE(3865), + [sym_update_expression] = STATE(3865), + [sym_cast_expression] = STATE(3865), + [sym_type_descriptor] = STATE(5659), + [sym_sizeof_expression] = STATE(3865), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3865), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3707), + [sym_concatenated_string] = STATE(3707), + [sym_string_literal] = STATE(3250), [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), + [sym_decltype_auto] = STATE(3138), [sym_decltype] = STATE(3139), [sym_class_specifier] = STATE(3139), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1782), + [sym__class_name] = STATE(6539), [sym_dependent_type] = STATE(3139), - [sym_template_declaration] = STATE(1030), - [sym_operator_cast] = STATE(5178), - [sym__constructor_specifiers] = STATE(1782), - [sym_operator_cast_definition] = STATE(1030), - [sym_operator_cast_declaration] = STATE(1030), - [sym_constructor_or_destructor_definition] = STATE(1030), - [sym_constructor_or_destructor_declaration] = STATE(1030), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(2976), - [sym_template_function] = STATE(4825), - [sym_alias_declaration] = STATE(1030), - [sym_concept_definition] = STATE(1030), - [sym_requires_clause] = STATE(1055), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4520), - [sym_qualified_identifier] = STATE(4825), - [sym_qualified_type_identifier] = STATE(3198), - [sym_qualified_operator_cast_identifier] = STATE(5178), - [sym_operator_name] = STATE(4825), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_operator_cast_definition_repeat1] = STATE(1782), - [sym_identifier] = ACTIONS(2805), - [anon_sym_LPAREN2] = ACTIONS(1515), - [anon_sym_TILDE] = ACTIONS(1517), - [anon_sym_STAR] = ACTIONS(1519), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1521), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2807), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1389), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACK] = ACTIONS(1527), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), + [sym_template_type] = STATE(4443), + [sym_template_function] = STATE(3865), + [sym_co_await_expression] = STATE(3865), + [sym_new_expression] = STATE(3865), + [sym_delete_expression] = STATE(3865), + [sym_requires_clause] = STATE(3865), + [sym_requires_expression] = STATE(3865), + [sym_lambda_expression] = STATE(3865), + [sym_lambda_capture_specifier] = STATE(4789), + [sym_fold_expression] = STATE(3865), + [sym_parameter_pack_expansion] = STATE(3865), + [sym_type_parameter_pack_expansion] = STATE(6013), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4919), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(4514), + [sym_user_defined_literal] = STATE(3865), + [aux_sym_type_definition_repeat1] = STATE(3373), + [aux_sym_sized_type_specifier_repeat1] = STATE(2300), + [sym_identifier] = ACTIONS(2663), + [anon_sym_LPAREN2] = ACTIONS(2665), + [anon_sym_BANG] = ACTIONS(2667), + [anon_sym_TILDE] = ACTIONS(2667), + [anon_sym_DASH] = ACTIONS(2669), + [anon_sym_PLUS] = ACTIONS(2669), + [anon_sym_STAR] = ACTIONS(2671), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_COLON_COLON] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(1713), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -111907,3422 +89896,658 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_constexpr] = ACTIONS(57), [anon_sym_constinit] = ACTIONS(57), [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(2809), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), + [anon_sym_signed] = ACTIONS(2675), + [anon_sym_unsigned] = ACTIONS(2675), + [anon_sym_long] = ACTIONS(2675), + [anon_sym_short] = ACTIONS(2675), + [sym_primitive_type] = ACTIONS(2677), + [anon_sym_enum] = ACTIONS(2679), + [anon_sym_class] = ACTIONS(2681), + [anon_sym_struct] = ACTIONS(2683), + [anon_sym_union] = ACTIONS(2685), + [anon_sym_not] = ACTIONS(2669), + [anon_sym_compl] = ACTIONS(2669), + [anon_sym_DASH_DASH] = ACTIONS(2687), + [anon_sym_PLUS_PLUS] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2689), + [sym_number_literal] = ACTIONS(2691), + [anon_sym_L_SQUOTE] = ACTIONS(2693), + [anon_sym_u_SQUOTE] = ACTIONS(2693), + [anon_sym_U_SQUOTE] = ACTIONS(2693), + [anon_sym_u8_SQUOTE] = ACTIONS(2693), + [anon_sym_SQUOTE] = ACTIONS(2693), + [anon_sym_L_DQUOTE] = ACTIONS(2695), + [anon_sym_u_DQUOTE] = ACTIONS(2695), + [anon_sym_U_DQUOTE] = ACTIONS(2695), + [anon_sym_u8_DQUOTE] = ACTIONS(2695), + [anon_sym_DQUOTE] = ACTIONS(2695), + [sym_true] = ACTIONS(2697), + [sym_false] = ACTIONS(2697), + [sym_null] = ACTIONS(2697), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(105), - [anon_sym_decltype] = ACTIONS(107), - [anon_sym_virtual] = ACTIONS(109), - [anon_sym_explicit] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(2823), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_using] = ACTIONS(2825), - [anon_sym_concept] = ACTIONS(207), - [anon_sym_requires] = ACTIONS(2815), - }, - [705] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token2] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [706] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token2] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [707] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token2] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [708] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token2] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [709] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token2] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [710] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token2] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [711] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token2] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [712] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token2] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [713] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token2] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [714] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token2] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [715] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token2] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [716] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token2] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [717] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token2] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [718] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token2] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [719] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token2] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [720] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token2] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [721] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token2] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [722] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token2] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [723] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token2] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [724] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token2] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [725] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token2] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [726] = { - [ts_builtin_sym_end] = ACTIONS(2403), - [sym_identifier] = ACTIONS(2401), - [aux_sym_preproc_include_token1] = ACTIONS(2401), - [aux_sym_preproc_def_token1] = ACTIONS(2401), - [aux_sym_preproc_if_token1] = ACTIONS(2401), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2401), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2401), - [sym_preproc_directive] = ACTIONS(2401), - [anon_sym_LPAREN2] = ACTIONS(2403), - [anon_sym_BANG] = ACTIONS(2403), - [anon_sym_TILDE] = ACTIONS(2403), - [anon_sym_DASH] = ACTIONS(2401), - [anon_sym_PLUS] = ACTIONS(2401), - [anon_sym_STAR] = ACTIONS(2403), - [anon_sym_AMP_AMP] = ACTIONS(2403), - [anon_sym_AMP] = ACTIONS(2401), - [anon_sym_SEMI] = ACTIONS(2403), - [anon_sym_typedef] = ACTIONS(2401), - [anon_sym_extern] = ACTIONS(2401), - [anon_sym___attribute__] = ACTIONS(2401), - [anon_sym_COLON_COLON] = ACTIONS(2403), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2403), - [anon_sym___declspec] = ACTIONS(2401), - [anon_sym___based] = ACTIONS(2401), - [anon_sym___cdecl] = ACTIONS(2401), - [anon_sym___clrcall] = ACTIONS(2401), - [anon_sym___stdcall] = ACTIONS(2401), - [anon_sym___fastcall] = ACTIONS(2401), - [anon_sym___thiscall] = ACTIONS(2401), - [anon_sym___vectorcall] = ACTIONS(2401), - [anon_sym_LBRACE] = ACTIONS(2403), - [anon_sym_LBRACK] = ACTIONS(2401), - [anon_sym_static] = ACTIONS(2401), - [anon_sym_register] = ACTIONS(2401), - [anon_sym_inline] = ACTIONS(2401), - [anon_sym_thread_local] = ACTIONS(2401), - [anon_sym_const] = ACTIONS(2401), - [anon_sym_volatile] = ACTIONS(2401), - [anon_sym_restrict] = ACTIONS(2401), - [anon_sym__Atomic] = ACTIONS(2401), - [anon_sym_mutable] = ACTIONS(2401), - [anon_sym_constexpr] = ACTIONS(2401), - [anon_sym_constinit] = ACTIONS(2401), - [anon_sym_consteval] = ACTIONS(2401), - [anon_sym_signed] = ACTIONS(2401), - [anon_sym_unsigned] = ACTIONS(2401), - [anon_sym_long] = ACTIONS(2401), - [anon_sym_short] = ACTIONS(2401), - [sym_primitive_type] = ACTIONS(2401), - [anon_sym_enum] = ACTIONS(2401), - [anon_sym_class] = ACTIONS(2401), - [anon_sym_struct] = ACTIONS(2401), - [anon_sym_union] = ACTIONS(2401), - [anon_sym_if] = ACTIONS(2401), - [anon_sym_else] = ACTIONS(2401), - [anon_sym_switch] = ACTIONS(2401), - [anon_sym_case] = ACTIONS(2401), - [anon_sym_default] = ACTIONS(2401), - [anon_sym_while] = ACTIONS(2401), - [anon_sym_do] = ACTIONS(2401), - [anon_sym_for] = ACTIONS(2401), - [anon_sym_return] = ACTIONS(2401), - [anon_sym_break] = ACTIONS(2401), - [anon_sym_continue] = ACTIONS(2401), - [anon_sym_goto] = ACTIONS(2401), - [anon_sym_DASH_DASH] = ACTIONS(2403), - [anon_sym_PLUS_PLUS] = ACTIONS(2403), - [anon_sym_sizeof] = ACTIONS(2401), - [sym_number_literal] = ACTIONS(2403), - [anon_sym_L_SQUOTE] = ACTIONS(2403), - [anon_sym_u_SQUOTE] = ACTIONS(2403), - [anon_sym_U_SQUOTE] = ACTIONS(2403), - [anon_sym_u8_SQUOTE] = ACTIONS(2403), - [anon_sym_SQUOTE] = ACTIONS(2403), - [anon_sym_L_DQUOTE] = ACTIONS(2403), - [anon_sym_u_DQUOTE] = ACTIONS(2403), - [anon_sym_U_DQUOTE] = ACTIONS(2403), - [anon_sym_u8_DQUOTE] = ACTIONS(2403), - [anon_sym_DQUOTE] = ACTIONS(2403), - [sym_true] = ACTIONS(2401), - [sym_false] = ACTIONS(2401), - [sym_null] = ACTIONS(2401), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2401), - [anon_sym_decltype] = ACTIONS(2401), - [anon_sym_virtual] = ACTIONS(2401), - [anon_sym_explicit] = ACTIONS(2401), - [anon_sym_typename] = ACTIONS(2401), - [anon_sym_template] = ACTIONS(2401), - [anon_sym_operator] = ACTIONS(2401), - [anon_sym_try] = ACTIONS(2401), - [anon_sym_delete] = ACTIONS(2401), - [anon_sym_throw] = ACTIONS(2401), - [anon_sym_namespace] = ACTIONS(2401), - [anon_sym_using] = ACTIONS(2401), - [anon_sym_static_assert] = ACTIONS(2401), - [anon_sym_concept] = ACTIONS(2401), - [anon_sym_co_return] = ACTIONS(2401), - [anon_sym_co_yield] = ACTIONS(2401), - [anon_sym_co_await] = ACTIONS(2401), - [anon_sym_new] = ACTIONS(2401), - [anon_sym_requires] = ACTIONS(2401), - [sym_this] = ACTIONS(2401), - [sym_nullptr] = ACTIONS(2401), - [sym_raw_string_literal] = ACTIONS(2403), - }, - [727] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token2] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [728] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token2] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [729] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token2] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [730] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token2] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), + [sym_auto] = ACTIONS(2699), + [anon_sym_decltype] = ACTIONS(2701), + [anon_sym_typename] = ACTIONS(2703), + [anon_sym_template] = ACTIONS(976), + [anon_sym_GT2] = ACTIONS(2719), + [anon_sym_delete] = ACTIONS(2707), + [anon_sym_co_await] = ACTIONS(2709), + [anon_sym_new] = ACTIONS(2711), + [anon_sym_requires] = ACTIONS(2713), + [sym_this] = ACTIONS(2697), + [sym_nullptr] = ACTIONS(2697), + [sym_raw_string_literal] = ACTIONS(2715), }, - [731] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token2] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), + [477] = { + [sym_type_qualifier] = STATE(3373), + [sym__type_specifier] = STATE(4189), + [sym_sized_type_specifier] = STATE(3139), + [sym_enum_specifier] = STATE(3139), + [sym_struct_specifier] = STATE(3139), + [sym_union_specifier] = STATE(3139), + [sym__expression] = STATE(3600), + [sym_conditional_expression] = STATE(3865), + [sym_assignment_expression] = STATE(3865), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3865), + [sym_binary_expression] = STATE(3865), + [sym_update_expression] = STATE(3865), + [sym_cast_expression] = STATE(3865), + [sym_type_descriptor] = STATE(5546), + [sym_sizeof_expression] = STATE(3865), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3865), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3707), + [sym_concatenated_string] = STATE(3707), + [sym_string_literal] = STATE(3250), + [sym_placeholder_type_specifier] = STATE(3139), + [sym_decltype_auto] = STATE(3138), + [sym_decltype] = STATE(3139), + [sym_class_specifier] = STATE(3139), + [sym__class_name] = STATE(6539), + [sym_dependent_type] = STATE(3139), + [sym_template_type] = STATE(4443), + [sym_template_function] = STATE(3865), + [sym_co_await_expression] = STATE(3865), + [sym_new_expression] = STATE(3865), + [sym_delete_expression] = STATE(3865), + [sym_requires_clause] = STATE(3865), + [sym_requires_expression] = STATE(3865), + [sym_lambda_expression] = STATE(3865), + [sym_lambda_capture_specifier] = STATE(4789), + [sym_fold_expression] = STATE(3865), + [sym_parameter_pack_expansion] = STATE(3865), + [sym_type_parameter_pack_expansion] = STATE(5901), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4919), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(4514), + [sym_user_defined_literal] = STATE(3865), + [aux_sym_type_definition_repeat1] = STATE(3373), + [aux_sym_sized_type_specifier_repeat1] = STATE(2300), + [sym_identifier] = ACTIONS(2663), + [anon_sym_LPAREN2] = ACTIONS(2665), + [anon_sym_BANG] = ACTIONS(2667), + [anon_sym_TILDE] = ACTIONS(2667), + [anon_sym_DASH] = ACTIONS(2669), + [anon_sym_PLUS] = ACTIONS(2669), + [anon_sym_STAR] = ACTIONS(2671), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_COLON_COLON] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2675), + [anon_sym_unsigned] = ACTIONS(2675), + [anon_sym_long] = ACTIONS(2675), + [anon_sym_short] = ACTIONS(2675), + [sym_primitive_type] = ACTIONS(2677), + [anon_sym_enum] = ACTIONS(2679), + [anon_sym_class] = ACTIONS(2681), + [anon_sym_struct] = ACTIONS(2683), + [anon_sym_union] = ACTIONS(2685), + [anon_sym_not] = ACTIONS(2669), + [anon_sym_compl] = ACTIONS(2669), + [anon_sym_DASH_DASH] = ACTIONS(2687), + [anon_sym_PLUS_PLUS] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2689), + [sym_number_literal] = ACTIONS(2691), + [anon_sym_L_SQUOTE] = ACTIONS(2693), + [anon_sym_u_SQUOTE] = ACTIONS(2693), + [anon_sym_U_SQUOTE] = ACTIONS(2693), + [anon_sym_u8_SQUOTE] = ACTIONS(2693), + [anon_sym_SQUOTE] = ACTIONS(2693), + [anon_sym_L_DQUOTE] = ACTIONS(2695), + [anon_sym_u_DQUOTE] = ACTIONS(2695), + [anon_sym_U_DQUOTE] = ACTIONS(2695), + [anon_sym_u8_DQUOTE] = ACTIONS(2695), + [anon_sym_DQUOTE] = ACTIONS(2695), + [sym_true] = ACTIONS(2697), + [sym_false] = ACTIONS(2697), + [sym_null] = ACTIONS(2697), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2699), + [anon_sym_decltype] = ACTIONS(2701), + [anon_sym_typename] = ACTIONS(2703), + [anon_sym_template] = ACTIONS(976), + [anon_sym_GT2] = ACTIONS(2721), + [anon_sym_delete] = ACTIONS(2707), + [anon_sym_co_await] = ACTIONS(2709), + [anon_sym_new] = ACTIONS(2711), + [anon_sym_requires] = ACTIONS(2713), + [sym_this] = ACTIONS(2697), + [sym_nullptr] = ACTIONS(2697), + [sym_raw_string_literal] = ACTIONS(2715), }, - [732] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token2] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), + [478] = { + [ts_builtin_sym_end] = ACTIONS(2464), + [sym_identifier] = ACTIONS(2462), + [aux_sym_preproc_include_token1] = ACTIONS(2462), + [aux_sym_preproc_def_token1] = ACTIONS(2462), + [aux_sym_preproc_if_token1] = ACTIONS(2462), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2462), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2462), + [sym_preproc_directive] = ACTIONS(2462), + [anon_sym_LPAREN2] = ACTIONS(2464), + [anon_sym_BANG] = ACTIONS(2464), + [anon_sym_TILDE] = ACTIONS(2464), + [anon_sym_DASH] = ACTIONS(2462), + [anon_sym_PLUS] = ACTIONS(2462), + [anon_sym_STAR] = ACTIONS(2464), + [anon_sym_AMP_AMP] = ACTIONS(2464), + [anon_sym_AMP] = ACTIONS(2462), + [anon_sym_SEMI] = ACTIONS(2464), + [anon_sym_typedef] = ACTIONS(2462), + [anon_sym_extern] = ACTIONS(2462), + [anon_sym___attribute__] = ACTIONS(2462), + [anon_sym_COLON_COLON] = ACTIONS(2464), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), + [anon_sym___declspec] = ACTIONS(2462), + [anon_sym___based] = ACTIONS(2462), + [anon_sym___cdecl] = ACTIONS(2462), + [anon_sym___clrcall] = ACTIONS(2462), + [anon_sym___stdcall] = ACTIONS(2462), + [anon_sym___fastcall] = ACTIONS(2462), + [anon_sym___thiscall] = ACTIONS(2462), + [anon_sym___vectorcall] = ACTIONS(2462), + [anon_sym_LBRACE] = ACTIONS(2464), + [anon_sym_LBRACK] = ACTIONS(2462), + [anon_sym_static] = ACTIONS(2462), + [anon_sym_register] = ACTIONS(2462), + [anon_sym_inline] = ACTIONS(2462), + [anon_sym_thread_local] = ACTIONS(2462), + [anon_sym_const] = ACTIONS(2462), + [anon_sym_volatile] = ACTIONS(2462), + [anon_sym_restrict] = ACTIONS(2462), + [anon_sym__Atomic] = ACTIONS(2462), + [anon_sym_mutable] = ACTIONS(2462), + [anon_sym_constexpr] = ACTIONS(2462), + [anon_sym_constinit] = ACTIONS(2462), + [anon_sym_consteval] = ACTIONS(2462), + [anon_sym_signed] = ACTIONS(2462), + [anon_sym_unsigned] = ACTIONS(2462), + [anon_sym_long] = ACTIONS(2462), + [anon_sym_short] = ACTIONS(2462), + [sym_primitive_type] = ACTIONS(2462), + [anon_sym_enum] = ACTIONS(2462), + [anon_sym_class] = ACTIONS(2462), + [anon_sym_struct] = ACTIONS(2462), + [anon_sym_union] = ACTIONS(2462), + [anon_sym_if] = ACTIONS(2462), + [anon_sym_else] = ACTIONS(2462), + [anon_sym_switch] = ACTIONS(2462), + [anon_sym_case] = ACTIONS(2462), + [anon_sym_default] = ACTIONS(2462), + [anon_sym_while] = ACTIONS(2462), + [anon_sym_do] = ACTIONS(2462), + [anon_sym_for] = ACTIONS(2462), + [anon_sym_return] = ACTIONS(2462), + [anon_sym_break] = ACTIONS(2462), + [anon_sym_continue] = ACTIONS(2462), + [anon_sym_goto] = ACTIONS(2462), + [anon_sym_not] = ACTIONS(2462), + [anon_sym_compl] = ACTIONS(2462), + [anon_sym_DASH_DASH] = ACTIONS(2464), + [anon_sym_PLUS_PLUS] = ACTIONS(2464), + [anon_sym_sizeof] = ACTIONS(2462), + [sym_number_literal] = ACTIONS(2464), + [anon_sym_L_SQUOTE] = ACTIONS(2464), + [anon_sym_u_SQUOTE] = ACTIONS(2464), + [anon_sym_U_SQUOTE] = ACTIONS(2464), + [anon_sym_u8_SQUOTE] = ACTIONS(2464), + [anon_sym_SQUOTE] = ACTIONS(2464), + [anon_sym_L_DQUOTE] = ACTIONS(2464), + [anon_sym_u_DQUOTE] = ACTIONS(2464), + [anon_sym_U_DQUOTE] = ACTIONS(2464), + [anon_sym_u8_DQUOTE] = ACTIONS(2464), + [anon_sym_DQUOTE] = ACTIONS(2464), + [sym_true] = ACTIONS(2462), + [sym_false] = ACTIONS(2462), + [sym_null] = ACTIONS(2462), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2462), + [anon_sym_decltype] = ACTIONS(2462), + [anon_sym_virtual] = ACTIONS(2462), + [anon_sym_explicit] = ACTIONS(2462), + [anon_sym_typename] = ACTIONS(2462), + [anon_sym_template] = ACTIONS(2462), + [anon_sym_operator] = ACTIONS(2462), + [anon_sym_try] = ACTIONS(2462), + [anon_sym_delete] = ACTIONS(2462), + [anon_sym_throw] = ACTIONS(2462), + [anon_sym_namespace] = ACTIONS(2462), + [anon_sym_using] = ACTIONS(2462), + [anon_sym_static_assert] = ACTIONS(2462), + [anon_sym_concept] = ACTIONS(2462), + [anon_sym_co_return] = ACTIONS(2462), + [anon_sym_co_yield] = ACTIONS(2462), + [anon_sym_catch] = ACTIONS(2462), + [anon_sym_co_await] = ACTIONS(2462), + [anon_sym_new] = ACTIONS(2462), + [anon_sym_requires] = ACTIONS(2462), + [sym_this] = ACTIONS(2462), + [sym_nullptr] = ACTIONS(2462), + [sym_raw_string_literal] = ACTIONS(2464), }, - [733] = { - [sym_identifier] = ACTIONS(2359), - [aux_sym_preproc_include_token1] = ACTIONS(2359), - [aux_sym_preproc_def_token1] = ACTIONS(2359), - [aux_sym_preproc_if_token1] = ACTIONS(2359), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2359), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2359), - [sym_preproc_directive] = ACTIONS(2359), - [anon_sym_LPAREN2] = ACTIONS(2361), - [anon_sym_BANG] = ACTIONS(2361), - [anon_sym_TILDE] = ACTIONS(2361), - [anon_sym_DASH] = ACTIONS(2359), - [anon_sym_PLUS] = ACTIONS(2359), - [anon_sym_STAR] = ACTIONS(2361), - [anon_sym_AMP_AMP] = ACTIONS(2361), - [anon_sym_AMP] = ACTIONS(2359), - [anon_sym_SEMI] = ACTIONS(2361), - [anon_sym_typedef] = ACTIONS(2359), - [anon_sym_extern] = ACTIONS(2359), - [anon_sym___attribute__] = ACTIONS(2359), - [anon_sym_COLON_COLON] = ACTIONS(2361), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2361), - [anon_sym___declspec] = ACTIONS(2359), - [anon_sym___based] = ACTIONS(2359), - [anon_sym___cdecl] = ACTIONS(2359), - [anon_sym___clrcall] = ACTIONS(2359), - [anon_sym___stdcall] = ACTIONS(2359), - [anon_sym___fastcall] = ACTIONS(2359), - [anon_sym___thiscall] = ACTIONS(2359), - [anon_sym___vectorcall] = ACTIONS(2359), - [anon_sym_LBRACE] = ACTIONS(2361), - [anon_sym_RBRACE] = ACTIONS(2361), - [anon_sym_LBRACK] = ACTIONS(2359), - [anon_sym_static] = ACTIONS(2359), - [anon_sym_register] = ACTIONS(2359), - [anon_sym_inline] = ACTIONS(2359), - [anon_sym_thread_local] = ACTIONS(2359), - [anon_sym_const] = ACTIONS(2359), - [anon_sym_volatile] = ACTIONS(2359), - [anon_sym_restrict] = ACTIONS(2359), - [anon_sym__Atomic] = ACTIONS(2359), - [anon_sym_mutable] = ACTIONS(2359), - [anon_sym_constexpr] = ACTIONS(2359), - [anon_sym_constinit] = ACTIONS(2359), - [anon_sym_consteval] = ACTIONS(2359), - [anon_sym_signed] = ACTIONS(2359), - [anon_sym_unsigned] = ACTIONS(2359), - [anon_sym_long] = ACTIONS(2359), - [anon_sym_short] = ACTIONS(2359), - [sym_primitive_type] = ACTIONS(2359), - [anon_sym_enum] = ACTIONS(2359), - [anon_sym_class] = ACTIONS(2359), - [anon_sym_struct] = ACTIONS(2359), - [anon_sym_union] = ACTIONS(2359), - [anon_sym_if] = ACTIONS(2359), - [anon_sym_else] = ACTIONS(2359), - [anon_sym_switch] = ACTIONS(2359), - [anon_sym_case] = ACTIONS(2359), - [anon_sym_default] = ACTIONS(2359), - [anon_sym_while] = ACTIONS(2359), - [anon_sym_do] = ACTIONS(2359), - [anon_sym_for] = ACTIONS(2359), - [anon_sym_return] = ACTIONS(2359), - [anon_sym_break] = ACTIONS(2359), - [anon_sym_continue] = ACTIONS(2359), - [anon_sym_goto] = ACTIONS(2359), - [anon_sym_DASH_DASH] = ACTIONS(2361), - [anon_sym_PLUS_PLUS] = ACTIONS(2361), - [anon_sym_sizeof] = ACTIONS(2359), - [sym_number_literal] = ACTIONS(2361), - [anon_sym_L_SQUOTE] = ACTIONS(2361), - [anon_sym_u_SQUOTE] = ACTIONS(2361), - [anon_sym_U_SQUOTE] = ACTIONS(2361), - [anon_sym_u8_SQUOTE] = ACTIONS(2361), - [anon_sym_SQUOTE] = ACTIONS(2361), - [anon_sym_L_DQUOTE] = ACTIONS(2361), - [anon_sym_u_DQUOTE] = ACTIONS(2361), - [anon_sym_U_DQUOTE] = ACTIONS(2361), - [anon_sym_u8_DQUOTE] = ACTIONS(2361), - [anon_sym_DQUOTE] = ACTIONS(2361), - [sym_true] = ACTIONS(2359), - [sym_false] = ACTIONS(2359), - [sym_null] = ACTIONS(2359), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2359), - [anon_sym_decltype] = ACTIONS(2359), - [anon_sym_virtual] = ACTIONS(2359), - [anon_sym_explicit] = ACTIONS(2359), - [anon_sym_typename] = ACTIONS(2359), - [anon_sym_template] = ACTIONS(2359), - [anon_sym_operator] = ACTIONS(2359), - [anon_sym_try] = ACTIONS(2359), - [anon_sym_delete] = ACTIONS(2359), - [anon_sym_throw] = ACTIONS(2359), - [anon_sym_namespace] = ACTIONS(2359), - [anon_sym_using] = ACTIONS(2359), - [anon_sym_static_assert] = ACTIONS(2359), - [anon_sym_concept] = ACTIONS(2359), - [anon_sym_co_return] = ACTIONS(2359), - [anon_sym_co_yield] = ACTIONS(2359), - [anon_sym_co_await] = ACTIONS(2359), - [anon_sym_new] = ACTIONS(2359), - [anon_sym_requires] = ACTIONS(2359), - [sym_this] = ACTIONS(2359), - [sym_nullptr] = ACTIONS(2359), - [sym_raw_string_literal] = ACTIONS(2361), + [479] = { + [sym_identifier] = ACTIONS(2485), + [aux_sym_preproc_include_token1] = ACTIONS(2485), + [aux_sym_preproc_def_token1] = ACTIONS(2485), + [aux_sym_preproc_if_token1] = ACTIONS(2485), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2485), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2485), + [sym_preproc_directive] = ACTIONS(2485), + [anon_sym_LPAREN2] = ACTIONS(2487), + [anon_sym_BANG] = ACTIONS(2487), + [anon_sym_TILDE] = ACTIONS(2487), + [anon_sym_DASH] = ACTIONS(2485), + [anon_sym_PLUS] = ACTIONS(2485), + [anon_sym_STAR] = ACTIONS(2487), + [anon_sym_AMP_AMP] = ACTIONS(2487), + [anon_sym_AMP] = ACTIONS(2485), + [anon_sym_SEMI] = ACTIONS(2487), + [anon_sym_typedef] = ACTIONS(2485), + [anon_sym_extern] = ACTIONS(2485), + [anon_sym___attribute__] = ACTIONS(2485), + [anon_sym_COLON_COLON] = ACTIONS(2487), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2487), + [anon_sym___declspec] = ACTIONS(2485), + [anon_sym___based] = ACTIONS(2485), + [anon_sym___cdecl] = ACTIONS(2485), + [anon_sym___clrcall] = ACTIONS(2485), + [anon_sym___stdcall] = ACTIONS(2485), + [anon_sym___fastcall] = ACTIONS(2485), + [anon_sym___thiscall] = ACTIONS(2485), + [anon_sym___vectorcall] = ACTIONS(2485), + [anon_sym_LBRACE] = ACTIONS(2487), + [anon_sym_RBRACE] = ACTIONS(2487), + [anon_sym_LBRACK] = ACTIONS(2485), + [anon_sym_static] = ACTIONS(2485), + [anon_sym_register] = ACTIONS(2485), + [anon_sym_inline] = ACTIONS(2485), + [anon_sym_thread_local] = ACTIONS(2485), + [anon_sym_const] = ACTIONS(2485), + [anon_sym_volatile] = ACTIONS(2485), + [anon_sym_restrict] = ACTIONS(2485), + [anon_sym__Atomic] = ACTIONS(2485), + [anon_sym_mutable] = ACTIONS(2485), + [anon_sym_constexpr] = ACTIONS(2485), + [anon_sym_constinit] = ACTIONS(2485), + [anon_sym_consteval] = ACTIONS(2485), + [anon_sym_signed] = ACTIONS(2485), + [anon_sym_unsigned] = ACTIONS(2485), + [anon_sym_long] = ACTIONS(2485), + [anon_sym_short] = ACTIONS(2485), + [sym_primitive_type] = ACTIONS(2485), + [anon_sym_enum] = ACTIONS(2485), + [anon_sym_class] = ACTIONS(2485), + [anon_sym_struct] = ACTIONS(2485), + [anon_sym_union] = ACTIONS(2485), + [anon_sym_if] = ACTIONS(2485), + [anon_sym_else] = ACTIONS(2485), + [anon_sym_switch] = ACTIONS(2485), + [anon_sym_case] = ACTIONS(2485), + [anon_sym_default] = ACTIONS(2485), + [anon_sym_while] = ACTIONS(2485), + [anon_sym_do] = ACTIONS(2485), + [anon_sym_for] = ACTIONS(2485), + [anon_sym_return] = ACTIONS(2485), + [anon_sym_break] = ACTIONS(2485), + [anon_sym_continue] = ACTIONS(2485), + [anon_sym_goto] = ACTIONS(2485), + [anon_sym_not] = ACTIONS(2485), + [anon_sym_compl] = ACTIONS(2485), + [anon_sym_DASH_DASH] = ACTIONS(2487), + [anon_sym_PLUS_PLUS] = ACTIONS(2487), + [anon_sym_sizeof] = ACTIONS(2485), + [sym_number_literal] = ACTIONS(2487), + [anon_sym_L_SQUOTE] = ACTIONS(2487), + [anon_sym_u_SQUOTE] = ACTIONS(2487), + [anon_sym_U_SQUOTE] = ACTIONS(2487), + [anon_sym_u8_SQUOTE] = ACTIONS(2487), + [anon_sym_SQUOTE] = ACTIONS(2487), + [anon_sym_L_DQUOTE] = ACTIONS(2487), + [anon_sym_u_DQUOTE] = ACTIONS(2487), + [anon_sym_U_DQUOTE] = ACTIONS(2487), + [anon_sym_u8_DQUOTE] = ACTIONS(2487), + [anon_sym_DQUOTE] = ACTIONS(2487), + [sym_true] = ACTIONS(2485), + [sym_false] = ACTIONS(2485), + [sym_null] = ACTIONS(2485), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2485), + [anon_sym_decltype] = ACTIONS(2485), + [anon_sym_virtual] = ACTIONS(2485), + [anon_sym_explicit] = ACTIONS(2485), + [anon_sym_typename] = ACTIONS(2485), + [anon_sym_template] = ACTIONS(2485), + [anon_sym_operator] = ACTIONS(2485), + [anon_sym_try] = ACTIONS(2485), + [anon_sym_delete] = ACTIONS(2485), + [anon_sym_throw] = ACTIONS(2485), + [anon_sym_namespace] = ACTIONS(2485), + [anon_sym_using] = ACTIONS(2485), + [anon_sym_static_assert] = ACTIONS(2485), + [anon_sym_concept] = ACTIONS(2485), + [anon_sym_co_return] = ACTIONS(2485), + [anon_sym_co_yield] = ACTIONS(2485), + [anon_sym_catch] = ACTIONS(2485), + [anon_sym_co_await] = ACTIONS(2485), + [anon_sym_new] = ACTIONS(2485), + [anon_sym_requires] = ACTIONS(2485), + [sym_this] = ACTIONS(2485), + [sym_nullptr] = ACTIONS(2485), + [sym_raw_string_literal] = ACTIONS(2487), }, - [734] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token2] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), + [480] = { + [sym_type_qualifier] = STATE(3373), + [sym__type_specifier] = STATE(4189), + [sym_sized_type_specifier] = STATE(3139), + [sym_enum_specifier] = STATE(3139), + [sym_struct_specifier] = STATE(3139), + [sym_union_specifier] = STATE(3139), + [sym__expression] = STATE(3599), + [sym_conditional_expression] = STATE(3865), + [sym_assignment_expression] = STATE(3865), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3865), + [sym_binary_expression] = STATE(3865), + [sym_update_expression] = STATE(3865), + [sym_cast_expression] = STATE(3865), + [sym_type_descriptor] = STATE(5552), + [sym_sizeof_expression] = STATE(3865), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3865), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3707), + [sym_concatenated_string] = STATE(3707), + [sym_string_literal] = STATE(3250), + [sym_placeholder_type_specifier] = STATE(3139), + [sym_decltype_auto] = STATE(3138), + [sym_decltype] = STATE(3139), + [sym_class_specifier] = STATE(3139), + [sym__class_name] = STATE(6539), + [sym_dependent_type] = STATE(3139), + [sym_template_type] = STATE(4443), + [sym_template_function] = STATE(3865), + [sym_co_await_expression] = STATE(3865), + [sym_new_expression] = STATE(3865), + [sym_delete_expression] = STATE(3865), + [sym_requires_clause] = STATE(3865), + [sym_requires_expression] = STATE(3865), + [sym_lambda_expression] = STATE(3865), + [sym_lambda_capture_specifier] = STATE(4789), + [sym_fold_expression] = STATE(3865), + [sym_parameter_pack_expansion] = STATE(3865), + [sym_type_parameter_pack_expansion] = STATE(5900), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4919), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(4514), + [sym_user_defined_literal] = STATE(3865), + [aux_sym_type_definition_repeat1] = STATE(3373), + [aux_sym_sized_type_specifier_repeat1] = STATE(2300), + [sym_identifier] = ACTIONS(2663), + [anon_sym_LPAREN2] = ACTIONS(2665), + [anon_sym_BANG] = ACTIONS(2667), + [anon_sym_TILDE] = ACTIONS(2667), + [anon_sym_DASH] = ACTIONS(2669), + [anon_sym_PLUS] = ACTIONS(2669), + [anon_sym_STAR] = ACTIONS(2671), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_COLON_COLON] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2675), + [anon_sym_unsigned] = ACTIONS(2675), + [anon_sym_long] = ACTIONS(2675), + [anon_sym_short] = ACTIONS(2675), + [sym_primitive_type] = ACTIONS(2677), + [anon_sym_enum] = ACTIONS(2679), + [anon_sym_class] = ACTIONS(2681), + [anon_sym_struct] = ACTIONS(2683), + [anon_sym_union] = ACTIONS(2685), + [anon_sym_not] = ACTIONS(2669), + [anon_sym_compl] = ACTIONS(2669), + [anon_sym_DASH_DASH] = ACTIONS(2687), + [anon_sym_PLUS_PLUS] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2689), + [sym_number_literal] = ACTIONS(2691), + [anon_sym_L_SQUOTE] = ACTIONS(2693), + [anon_sym_u_SQUOTE] = ACTIONS(2693), + [anon_sym_U_SQUOTE] = ACTIONS(2693), + [anon_sym_u8_SQUOTE] = ACTIONS(2693), + [anon_sym_SQUOTE] = ACTIONS(2693), + [anon_sym_L_DQUOTE] = ACTIONS(2695), + [anon_sym_u_DQUOTE] = ACTIONS(2695), + [anon_sym_U_DQUOTE] = ACTIONS(2695), + [anon_sym_u8_DQUOTE] = ACTIONS(2695), + [anon_sym_DQUOTE] = ACTIONS(2695), + [sym_true] = ACTIONS(2697), + [sym_false] = ACTIONS(2697), + [sym_null] = ACTIONS(2697), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2699), + [anon_sym_decltype] = ACTIONS(2701), + [anon_sym_typename] = ACTIONS(2703), + [anon_sym_template] = ACTIONS(976), + [anon_sym_GT2] = ACTIONS(2723), + [anon_sym_delete] = ACTIONS(2707), + [anon_sym_co_await] = ACTIONS(2709), + [anon_sym_new] = ACTIONS(2711), + [anon_sym_requires] = ACTIONS(2713), + [sym_this] = ACTIONS(2697), + [sym_nullptr] = ACTIONS(2697), + [sym_raw_string_literal] = ACTIONS(2715), }, - [735] = { - [sym_identifier] = ACTIONS(2393), - [aux_sym_preproc_include_token1] = ACTIONS(2393), - [aux_sym_preproc_def_token1] = ACTIONS(2393), - [aux_sym_preproc_if_token1] = ACTIONS(2393), - [aux_sym_preproc_if_token2] = ACTIONS(2393), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2393), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2393), - [sym_preproc_directive] = ACTIONS(2393), - [anon_sym_LPAREN2] = ACTIONS(2395), - [anon_sym_BANG] = ACTIONS(2395), - [anon_sym_TILDE] = ACTIONS(2395), - [anon_sym_DASH] = ACTIONS(2393), - [anon_sym_PLUS] = ACTIONS(2393), - [anon_sym_STAR] = ACTIONS(2395), - [anon_sym_AMP_AMP] = ACTIONS(2395), - [anon_sym_AMP] = ACTIONS(2393), - [anon_sym_SEMI] = ACTIONS(2395), - [anon_sym_typedef] = ACTIONS(2393), - [anon_sym_extern] = ACTIONS(2393), - [anon_sym___attribute__] = ACTIONS(2393), - [anon_sym_COLON_COLON] = ACTIONS(2395), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2395), - [anon_sym___declspec] = ACTIONS(2393), - [anon_sym___based] = ACTIONS(2393), - [anon_sym___cdecl] = ACTIONS(2393), - [anon_sym___clrcall] = ACTIONS(2393), - [anon_sym___stdcall] = ACTIONS(2393), - [anon_sym___fastcall] = ACTIONS(2393), - [anon_sym___thiscall] = ACTIONS(2393), - [anon_sym___vectorcall] = ACTIONS(2393), - [anon_sym_LBRACE] = ACTIONS(2395), - [anon_sym_LBRACK] = ACTIONS(2393), - [anon_sym_static] = ACTIONS(2393), - [anon_sym_register] = ACTIONS(2393), - [anon_sym_inline] = ACTIONS(2393), - [anon_sym_thread_local] = ACTIONS(2393), - [anon_sym_const] = ACTIONS(2393), - [anon_sym_volatile] = ACTIONS(2393), - [anon_sym_restrict] = ACTIONS(2393), - [anon_sym__Atomic] = ACTIONS(2393), - [anon_sym_mutable] = ACTIONS(2393), - [anon_sym_constexpr] = ACTIONS(2393), - [anon_sym_constinit] = ACTIONS(2393), - [anon_sym_consteval] = ACTIONS(2393), - [anon_sym_signed] = ACTIONS(2393), - [anon_sym_unsigned] = ACTIONS(2393), - [anon_sym_long] = ACTIONS(2393), - [anon_sym_short] = ACTIONS(2393), - [sym_primitive_type] = ACTIONS(2393), - [anon_sym_enum] = ACTIONS(2393), - [anon_sym_class] = ACTIONS(2393), - [anon_sym_struct] = ACTIONS(2393), - [anon_sym_union] = ACTIONS(2393), - [anon_sym_if] = ACTIONS(2393), - [anon_sym_else] = ACTIONS(2393), - [anon_sym_switch] = ACTIONS(2393), - [anon_sym_case] = ACTIONS(2393), - [anon_sym_default] = ACTIONS(2393), - [anon_sym_while] = ACTIONS(2393), - [anon_sym_do] = ACTIONS(2393), - [anon_sym_for] = ACTIONS(2393), - [anon_sym_return] = ACTIONS(2393), - [anon_sym_break] = ACTIONS(2393), - [anon_sym_continue] = ACTIONS(2393), - [anon_sym_goto] = ACTIONS(2393), - [anon_sym_DASH_DASH] = ACTIONS(2395), - [anon_sym_PLUS_PLUS] = ACTIONS(2395), - [anon_sym_sizeof] = ACTIONS(2393), - [sym_number_literal] = ACTIONS(2395), - [anon_sym_L_SQUOTE] = ACTIONS(2395), - [anon_sym_u_SQUOTE] = ACTIONS(2395), - [anon_sym_U_SQUOTE] = ACTIONS(2395), - [anon_sym_u8_SQUOTE] = ACTIONS(2395), - [anon_sym_SQUOTE] = ACTIONS(2395), - [anon_sym_L_DQUOTE] = ACTIONS(2395), - [anon_sym_u_DQUOTE] = ACTIONS(2395), - [anon_sym_U_DQUOTE] = ACTIONS(2395), - [anon_sym_u8_DQUOTE] = ACTIONS(2395), - [anon_sym_DQUOTE] = ACTIONS(2395), - [sym_true] = ACTIONS(2393), - [sym_false] = ACTIONS(2393), - [sym_null] = ACTIONS(2393), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2393), - [anon_sym_decltype] = ACTIONS(2393), - [anon_sym_virtual] = ACTIONS(2393), - [anon_sym_explicit] = ACTIONS(2393), - [anon_sym_typename] = ACTIONS(2393), - [anon_sym_template] = ACTIONS(2393), - [anon_sym_operator] = ACTIONS(2393), - [anon_sym_try] = ACTIONS(2393), - [anon_sym_delete] = ACTIONS(2393), - [anon_sym_throw] = ACTIONS(2393), - [anon_sym_namespace] = ACTIONS(2393), - [anon_sym_using] = ACTIONS(2393), - [anon_sym_static_assert] = ACTIONS(2393), - [anon_sym_concept] = ACTIONS(2393), - [anon_sym_co_return] = ACTIONS(2393), - [anon_sym_co_yield] = ACTIONS(2393), - [anon_sym_co_await] = ACTIONS(2393), - [anon_sym_new] = ACTIONS(2393), - [anon_sym_requires] = ACTIONS(2393), - [sym_this] = ACTIONS(2393), - [sym_nullptr] = ACTIONS(2393), - [sym_raw_string_literal] = ACTIONS(2395), + [481] = { + [sym_type_qualifier] = STATE(3373), + [sym__type_specifier] = STATE(4189), + [sym_sized_type_specifier] = STATE(3139), + [sym_enum_specifier] = STATE(3139), + [sym_struct_specifier] = STATE(3139), + [sym_union_specifier] = STATE(3139), + [sym__expression] = STATE(3619), + [sym_conditional_expression] = STATE(3865), + [sym_assignment_expression] = STATE(3865), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3865), + [sym_binary_expression] = STATE(3865), + [sym_update_expression] = STATE(3865), + [sym_cast_expression] = STATE(3865), + [sym_type_descriptor] = STATE(5760), + [sym_sizeof_expression] = STATE(3865), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3865), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3707), + [sym_concatenated_string] = STATE(3707), + [sym_string_literal] = STATE(3250), + [sym_placeholder_type_specifier] = STATE(3139), + [sym_decltype_auto] = STATE(3138), + [sym_decltype] = STATE(3139), + [sym_class_specifier] = STATE(3139), + [sym__class_name] = STATE(6539), + [sym_dependent_type] = STATE(3139), + [sym_template_type] = STATE(4443), + [sym_template_function] = STATE(3865), + [sym_co_await_expression] = STATE(3865), + [sym_new_expression] = STATE(3865), + [sym_delete_expression] = STATE(3865), + [sym_requires_clause] = STATE(3865), + [sym_requires_expression] = STATE(3865), + [sym_lambda_expression] = STATE(3865), + [sym_lambda_capture_specifier] = STATE(4789), + [sym_fold_expression] = STATE(3865), + [sym_parameter_pack_expansion] = STATE(3865), + [sym_type_parameter_pack_expansion] = STATE(5841), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4919), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(4514), + [sym_user_defined_literal] = STATE(3865), + [aux_sym_type_definition_repeat1] = STATE(3373), + [aux_sym_sized_type_specifier_repeat1] = STATE(2300), + [sym_identifier] = ACTIONS(2663), + [anon_sym_LPAREN2] = ACTIONS(2665), + [anon_sym_BANG] = ACTIONS(2667), + [anon_sym_TILDE] = ACTIONS(2667), + [anon_sym_DASH] = ACTIONS(2669), + [anon_sym_PLUS] = ACTIONS(2669), + [anon_sym_STAR] = ACTIONS(2671), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_COLON_COLON] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2675), + [anon_sym_unsigned] = ACTIONS(2675), + [anon_sym_long] = ACTIONS(2675), + [anon_sym_short] = ACTIONS(2675), + [sym_primitive_type] = ACTIONS(2677), + [anon_sym_enum] = ACTIONS(2679), + [anon_sym_class] = ACTIONS(2681), + [anon_sym_struct] = ACTIONS(2683), + [anon_sym_union] = ACTIONS(2685), + [anon_sym_not] = ACTIONS(2669), + [anon_sym_compl] = ACTIONS(2669), + [anon_sym_DASH_DASH] = ACTIONS(2687), + [anon_sym_PLUS_PLUS] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2689), + [sym_number_literal] = ACTIONS(2691), + [anon_sym_L_SQUOTE] = ACTIONS(2693), + [anon_sym_u_SQUOTE] = ACTIONS(2693), + [anon_sym_U_SQUOTE] = ACTIONS(2693), + [anon_sym_u8_SQUOTE] = ACTIONS(2693), + [anon_sym_SQUOTE] = ACTIONS(2693), + [anon_sym_L_DQUOTE] = ACTIONS(2695), + [anon_sym_u_DQUOTE] = ACTIONS(2695), + [anon_sym_U_DQUOTE] = ACTIONS(2695), + [anon_sym_u8_DQUOTE] = ACTIONS(2695), + [anon_sym_DQUOTE] = ACTIONS(2695), + [sym_true] = ACTIONS(2697), + [sym_false] = ACTIONS(2697), + [sym_null] = ACTIONS(2697), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2699), + [anon_sym_decltype] = ACTIONS(2701), + [anon_sym_typename] = ACTIONS(2703), + [anon_sym_template] = ACTIONS(976), + [anon_sym_GT2] = ACTIONS(2725), + [anon_sym_delete] = ACTIONS(2707), + [anon_sym_co_await] = ACTIONS(2709), + [anon_sym_new] = ACTIONS(2711), + [anon_sym_requires] = ACTIONS(2713), + [sym_this] = ACTIONS(2697), + [sym_nullptr] = ACTIONS(2697), + [sym_raw_string_literal] = ACTIONS(2715), }, - [736] = { - [sym_function_definition] = STATE(1938), - [sym_declaration] = STATE(1938), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(3993), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(2900), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym_ms_call_modifier] = STATE(1875), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4683), - [sym_array_declarator] = STATE(4825), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(2970), + [482] = { + [sym_type_qualifier] = STATE(3373), + [sym__type_specifier] = STATE(4189), [sym_sized_type_specifier] = STATE(3139), [sym_enum_specifier] = STATE(3139), [sym_struct_specifier] = STATE(3139), [sym_union_specifier] = STATE(3139), - [sym__empty_declaration] = STATE(1938), + [sym__expression] = STATE(3582), + [sym_conditional_expression] = STATE(3865), + [sym_assignment_expression] = STATE(3865), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3865), + [sym_binary_expression] = STATE(3865), + [sym_update_expression] = STATE(3865), + [sym_cast_expression] = STATE(3865), + [sym_type_descriptor] = STATE(5594), + [sym_sizeof_expression] = STATE(3865), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3865), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3707), + [sym_concatenated_string] = STATE(3707), + [sym_string_literal] = STATE(3250), [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), + [sym_decltype_auto] = STATE(3138), [sym_decltype] = STATE(3139), [sym_class_specifier] = STATE(3139), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1764), + [sym__class_name] = STATE(6539), [sym_dependent_type] = STATE(3139), - [sym_template_declaration] = STATE(1938), - [sym_operator_cast] = STATE(5215), - [sym__constructor_specifiers] = STATE(1764), - [sym_operator_cast_definition] = STATE(1938), - [sym_operator_cast_declaration] = STATE(1938), - [sym_constructor_or_destructor_definition] = STATE(1938), - [sym_constructor_or_destructor_declaration] = STATE(1938), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(2976), - [sym_template_function] = STATE(4825), - [sym_alias_declaration] = STATE(1938), - [sym_concept_definition] = STATE(1938), - [sym_requires_clause] = STATE(1056), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4520), - [sym_qualified_identifier] = STATE(4825), - [sym_qualified_type_identifier] = STATE(3198), - [sym_qualified_operator_cast_identifier] = STATE(5215), - [sym_operator_name] = STATE(4825), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_operator_cast_definition_repeat1] = STATE(1764), - [sym_identifier] = ACTIONS(2805), - [anon_sym_LPAREN2] = ACTIONS(1515), - [anon_sym_TILDE] = ACTIONS(1517), - [anon_sym_STAR] = ACTIONS(1519), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1521), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2807), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1389), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACK] = ACTIONS(1527), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), + [sym_template_type] = STATE(4443), + [sym_template_function] = STATE(3865), + [sym_co_await_expression] = STATE(3865), + [sym_new_expression] = STATE(3865), + [sym_delete_expression] = STATE(3865), + [sym_requires_clause] = STATE(3865), + [sym_requires_expression] = STATE(3865), + [sym_lambda_expression] = STATE(3865), + [sym_lambda_capture_specifier] = STATE(4789), + [sym_fold_expression] = STATE(3865), + [sym_parameter_pack_expansion] = STATE(3865), + [sym_type_parameter_pack_expansion] = STATE(5943), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4919), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(4514), + [sym_user_defined_literal] = STATE(3865), + [aux_sym_type_definition_repeat1] = STATE(3373), + [aux_sym_sized_type_specifier_repeat1] = STATE(2300), + [sym_identifier] = ACTIONS(2663), + [anon_sym_LPAREN2] = ACTIONS(2665), + [anon_sym_BANG] = ACTIONS(2667), + [anon_sym_TILDE] = ACTIONS(2667), + [anon_sym_DASH] = ACTIONS(2669), + [anon_sym_PLUS] = ACTIONS(2669), + [anon_sym_STAR] = ACTIONS(2671), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_COLON_COLON] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(1713), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -115331,7702 +90556,4838 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_constexpr] = ACTIONS(57), [anon_sym_constinit] = ACTIONS(57), [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(2809), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), + [anon_sym_signed] = ACTIONS(2675), + [anon_sym_unsigned] = ACTIONS(2675), + [anon_sym_long] = ACTIONS(2675), + [anon_sym_short] = ACTIONS(2675), + [sym_primitive_type] = ACTIONS(2677), + [anon_sym_enum] = ACTIONS(2679), + [anon_sym_class] = ACTIONS(2681), + [anon_sym_struct] = ACTIONS(2683), + [anon_sym_union] = ACTIONS(2685), + [anon_sym_not] = ACTIONS(2669), + [anon_sym_compl] = ACTIONS(2669), + [anon_sym_DASH_DASH] = ACTIONS(2687), + [anon_sym_PLUS_PLUS] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2689), + [sym_number_literal] = ACTIONS(2691), + [anon_sym_L_SQUOTE] = ACTIONS(2693), + [anon_sym_u_SQUOTE] = ACTIONS(2693), + [anon_sym_U_SQUOTE] = ACTIONS(2693), + [anon_sym_u8_SQUOTE] = ACTIONS(2693), + [anon_sym_SQUOTE] = ACTIONS(2693), + [anon_sym_L_DQUOTE] = ACTIONS(2695), + [anon_sym_u_DQUOTE] = ACTIONS(2695), + [anon_sym_U_DQUOTE] = ACTIONS(2695), + [anon_sym_u8_DQUOTE] = ACTIONS(2695), + [anon_sym_DQUOTE] = ACTIONS(2695), + [sym_true] = ACTIONS(2697), + [sym_false] = ACTIONS(2697), + [sym_null] = ACTIONS(2697), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(105), - [anon_sym_decltype] = ACTIONS(107), - [anon_sym_virtual] = ACTIONS(109), - [anon_sym_explicit] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(1781), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_using] = ACTIONS(2827), - [anon_sym_concept] = ACTIONS(2829), - [anon_sym_requires] = ACTIONS(2815), + [sym_auto] = ACTIONS(2699), + [anon_sym_decltype] = ACTIONS(2701), + [anon_sym_typename] = ACTIONS(2703), + [anon_sym_template] = ACTIONS(976), + [anon_sym_GT2] = ACTIONS(2727), + [anon_sym_delete] = ACTIONS(2707), + [anon_sym_co_await] = ACTIONS(2709), + [anon_sym_new] = ACTIONS(2711), + [anon_sym_requires] = ACTIONS(2713), + [sym_this] = ACTIONS(2697), + [sym_nullptr] = ACTIONS(2697), + [sym_raw_string_literal] = ACTIONS(2715), }, - [737] = { - [sym_identifier] = ACTIONS(2355), - [aux_sym_preproc_include_token1] = ACTIONS(2355), - [aux_sym_preproc_def_token1] = ACTIONS(2355), - [aux_sym_preproc_if_token1] = ACTIONS(2355), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2355), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2355), - [sym_preproc_directive] = ACTIONS(2355), - [anon_sym_LPAREN2] = ACTIONS(2357), - [anon_sym_BANG] = ACTIONS(2357), - [anon_sym_TILDE] = ACTIONS(2357), - [anon_sym_DASH] = ACTIONS(2355), - [anon_sym_PLUS] = ACTIONS(2355), - [anon_sym_STAR] = ACTIONS(2357), - [anon_sym_AMP_AMP] = ACTIONS(2357), - [anon_sym_AMP] = ACTIONS(2355), - [anon_sym_SEMI] = ACTIONS(2357), - [anon_sym_typedef] = ACTIONS(2355), - [anon_sym_extern] = ACTIONS(2355), - [anon_sym___attribute__] = ACTIONS(2355), - [anon_sym_COLON_COLON] = ACTIONS(2357), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2357), - [anon_sym___declspec] = ACTIONS(2355), - [anon_sym___based] = ACTIONS(2355), - [anon_sym___cdecl] = ACTIONS(2355), - [anon_sym___clrcall] = ACTIONS(2355), - [anon_sym___stdcall] = ACTIONS(2355), - [anon_sym___fastcall] = ACTIONS(2355), - [anon_sym___thiscall] = ACTIONS(2355), - [anon_sym___vectorcall] = ACTIONS(2355), - [anon_sym_LBRACE] = ACTIONS(2357), - [anon_sym_RBRACE] = ACTIONS(2357), - [anon_sym_LBRACK] = ACTIONS(2355), - [anon_sym_static] = ACTIONS(2355), - [anon_sym_register] = ACTIONS(2355), - [anon_sym_inline] = ACTIONS(2355), - [anon_sym_thread_local] = ACTIONS(2355), - [anon_sym_const] = ACTIONS(2355), - [anon_sym_volatile] = ACTIONS(2355), - [anon_sym_restrict] = ACTIONS(2355), - [anon_sym__Atomic] = ACTIONS(2355), - [anon_sym_mutable] = ACTIONS(2355), - [anon_sym_constexpr] = ACTIONS(2355), - [anon_sym_constinit] = ACTIONS(2355), - [anon_sym_consteval] = ACTIONS(2355), - [anon_sym_signed] = ACTIONS(2355), - [anon_sym_unsigned] = ACTIONS(2355), - [anon_sym_long] = ACTIONS(2355), - [anon_sym_short] = ACTIONS(2355), - [sym_primitive_type] = ACTIONS(2355), - [anon_sym_enum] = ACTIONS(2355), - [anon_sym_class] = ACTIONS(2355), - [anon_sym_struct] = ACTIONS(2355), - [anon_sym_union] = ACTIONS(2355), - [anon_sym_if] = ACTIONS(2355), - [anon_sym_else] = ACTIONS(2355), - [anon_sym_switch] = ACTIONS(2355), - [anon_sym_case] = ACTIONS(2355), - [anon_sym_default] = ACTIONS(2355), - [anon_sym_while] = ACTIONS(2355), - [anon_sym_do] = ACTIONS(2355), - [anon_sym_for] = ACTIONS(2355), - [anon_sym_return] = ACTIONS(2355), - [anon_sym_break] = ACTIONS(2355), - [anon_sym_continue] = ACTIONS(2355), - [anon_sym_goto] = ACTIONS(2355), - [anon_sym_DASH_DASH] = ACTIONS(2357), - [anon_sym_PLUS_PLUS] = ACTIONS(2357), - [anon_sym_sizeof] = ACTIONS(2355), - [sym_number_literal] = ACTIONS(2357), - [anon_sym_L_SQUOTE] = ACTIONS(2357), - [anon_sym_u_SQUOTE] = ACTIONS(2357), - [anon_sym_U_SQUOTE] = ACTIONS(2357), - [anon_sym_u8_SQUOTE] = ACTIONS(2357), - [anon_sym_SQUOTE] = ACTIONS(2357), - [anon_sym_L_DQUOTE] = ACTIONS(2357), - [anon_sym_u_DQUOTE] = ACTIONS(2357), - [anon_sym_U_DQUOTE] = ACTIONS(2357), - [anon_sym_u8_DQUOTE] = ACTIONS(2357), - [anon_sym_DQUOTE] = ACTIONS(2357), - [sym_true] = ACTIONS(2355), - [sym_false] = ACTIONS(2355), - [sym_null] = ACTIONS(2355), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2355), - [anon_sym_decltype] = ACTIONS(2355), - [anon_sym_virtual] = ACTIONS(2355), - [anon_sym_explicit] = ACTIONS(2355), - [anon_sym_typename] = ACTIONS(2355), - [anon_sym_template] = ACTIONS(2355), - [anon_sym_operator] = ACTIONS(2355), - [anon_sym_try] = ACTIONS(2355), - [anon_sym_delete] = ACTIONS(2355), - [anon_sym_throw] = ACTIONS(2355), - [anon_sym_namespace] = ACTIONS(2355), - [anon_sym_using] = ACTIONS(2355), - [anon_sym_static_assert] = ACTIONS(2355), - [anon_sym_concept] = ACTIONS(2355), - [anon_sym_co_return] = ACTIONS(2355), - [anon_sym_co_yield] = ACTIONS(2355), - [anon_sym_co_await] = ACTIONS(2355), - [anon_sym_new] = ACTIONS(2355), - [anon_sym_requires] = ACTIONS(2355), - [sym_this] = ACTIONS(2355), - [sym_nullptr] = ACTIONS(2355), - [sym_raw_string_literal] = ACTIONS(2357), + [483] = { + [sym_identifier] = ACTIONS(2476), + [aux_sym_preproc_include_token1] = ACTIONS(2476), + [aux_sym_preproc_def_token1] = ACTIONS(2476), + [aux_sym_preproc_if_token1] = ACTIONS(2476), + [aux_sym_preproc_if_token2] = ACTIONS(2476), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2476), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2476), + [sym_preproc_directive] = ACTIONS(2476), + [anon_sym_LPAREN2] = ACTIONS(2478), + [anon_sym_BANG] = ACTIONS(2478), + [anon_sym_TILDE] = ACTIONS(2478), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_STAR] = ACTIONS(2478), + [anon_sym_AMP_AMP] = ACTIONS(2478), + [anon_sym_AMP] = ACTIONS(2476), + [anon_sym_SEMI] = ACTIONS(2478), + [anon_sym_typedef] = ACTIONS(2476), + [anon_sym_extern] = ACTIONS(2476), + [anon_sym___attribute__] = ACTIONS(2476), + [anon_sym_COLON_COLON] = ACTIONS(2478), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2478), + [anon_sym___declspec] = ACTIONS(2476), + [anon_sym___based] = ACTIONS(2476), + [anon_sym___cdecl] = ACTIONS(2476), + [anon_sym___clrcall] = ACTIONS(2476), + [anon_sym___stdcall] = ACTIONS(2476), + [anon_sym___fastcall] = ACTIONS(2476), + [anon_sym___thiscall] = ACTIONS(2476), + [anon_sym___vectorcall] = ACTIONS(2476), + [anon_sym_LBRACE] = ACTIONS(2478), + [anon_sym_LBRACK] = ACTIONS(2476), + [anon_sym_static] = ACTIONS(2476), + [anon_sym_register] = ACTIONS(2476), + [anon_sym_inline] = ACTIONS(2476), + [anon_sym_thread_local] = ACTIONS(2476), + [anon_sym_const] = ACTIONS(2476), + [anon_sym_volatile] = ACTIONS(2476), + [anon_sym_restrict] = ACTIONS(2476), + [anon_sym__Atomic] = ACTIONS(2476), + [anon_sym_mutable] = ACTIONS(2476), + [anon_sym_constexpr] = ACTIONS(2476), + [anon_sym_constinit] = ACTIONS(2476), + [anon_sym_consteval] = ACTIONS(2476), + [anon_sym_signed] = ACTIONS(2476), + [anon_sym_unsigned] = ACTIONS(2476), + [anon_sym_long] = ACTIONS(2476), + [anon_sym_short] = ACTIONS(2476), + [sym_primitive_type] = ACTIONS(2476), + [anon_sym_enum] = ACTIONS(2476), + [anon_sym_class] = ACTIONS(2476), + [anon_sym_struct] = ACTIONS(2476), + [anon_sym_union] = ACTIONS(2476), + [anon_sym_if] = ACTIONS(2476), + [anon_sym_else] = ACTIONS(2476), + [anon_sym_switch] = ACTIONS(2476), + [anon_sym_case] = ACTIONS(2476), + [anon_sym_default] = ACTIONS(2476), + [anon_sym_while] = ACTIONS(2476), + [anon_sym_do] = ACTIONS(2476), + [anon_sym_for] = ACTIONS(2476), + [anon_sym_return] = ACTIONS(2476), + [anon_sym_break] = ACTIONS(2476), + [anon_sym_continue] = ACTIONS(2476), + [anon_sym_goto] = ACTIONS(2476), + [anon_sym_not] = ACTIONS(2476), + [anon_sym_compl] = ACTIONS(2476), + [anon_sym_DASH_DASH] = ACTIONS(2478), + [anon_sym_PLUS_PLUS] = ACTIONS(2478), + [anon_sym_sizeof] = ACTIONS(2476), + [sym_number_literal] = ACTIONS(2478), + [anon_sym_L_SQUOTE] = ACTIONS(2478), + [anon_sym_u_SQUOTE] = ACTIONS(2478), + [anon_sym_U_SQUOTE] = ACTIONS(2478), + [anon_sym_u8_SQUOTE] = ACTIONS(2478), + [anon_sym_SQUOTE] = ACTIONS(2478), + [anon_sym_L_DQUOTE] = ACTIONS(2478), + [anon_sym_u_DQUOTE] = ACTIONS(2478), + [anon_sym_U_DQUOTE] = ACTIONS(2478), + [anon_sym_u8_DQUOTE] = ACTIONS(2478), + [anon_sym_DQUOTE] = ACTIONS(2478), + [sym_true] = ACTIONS(2476), + [sym_false] = ACTIONS(2476), + [sym_null] = ACTIONS(2476), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2476), + [anon_sym_decltype] = ACTIONS(2476), + [anon_sym_virtual] = ACTIONS(2476), + [anon_sym_explicit] = ACTIONS(2476), + [anon_sym_typename] = ACTIONS(2476), + [anon_sym_template] = ACTIONS(2476), + [anon_sym_operator] = ACTIONS(2476), + [anon_sym_try] = ACTIONS(2476), + [anon_sym_delete] = ACTIONS(2476), + [anon_sym_throw] = ACTIONS(2476), + [anon_sym_namespace] = ACTIONS(2476), + [anon_sym_using] = ACTIONS(2476), + [anon_sym_static_assert] = ACTIONS(2476), + [anon_sym_concept] = ACTIONS(2476), + [anon_sym_co_return] = ACTIONS(2476), + [anon_sym_co_yield] = ACTIONS(2476), + [anon_sym_catch] = ACTIONS(2476), + [anon_sym_co_await] = ACTIONS(2476), + [anon_sym_new] = ACTIONS(2476), + [anon_sym_requires] = ACTIONS(2476), + [sym_this] = ACTIONS(2476), + [sym_nullptr] = ACTIONS(2476), + [sym_raw_string_literal] = ACTIONS(2478), }, - [738] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token2] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - [sym_raw_string_literal] = ACTIONS(2407), - }, - [739] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token2] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - [sym_raw_string_literal] = ACTIONS(2407), - }, - [740] = { - [sym_identifier] = ACTIONS(2495), - [aux_sym_preproc_include_token1] = ACTIONS(2495), - [aux_sym_preproc_def_token1] = ACTIONS(2495), - [aux_sym_preproc_if_token1] = ACTIONS(2495), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2495), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2495), - [sym_preproc_directive] = ACTIONS(2495), - [anon_sym_LPAREN2] = ACTIONS(2497), - [anon_sym_BANG] = ACTIONS(2497), - [anon_sym_TILDE] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2495), - [anon_sym_PLUS] = ACTIONS(2495), - [anon_sym_STAR] = ACTIONS(2497), - [anon_sym_AMP_AMP] = ACTIONS(2497), - [anon_sym_AMP] = ACTIONS(2495), - [anon_sym_SEMI] = ACTIONS(2497), - [anon_sym_typedef] = ACTIONS(2495), - [anon_sym_extern] = ACTIONS(2495), - [anon_sym___attribute__] = ACTIONS(2495), - [anon_sym_COLON_COLON] = ACTIONS(2497), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2497), - [anon_sym___declspec] = ACTIONS(2495), - [anon_sym___based] = ACTIONS(2495), - [anon_sym___cdecl] = ACTIONS(2495), - [anon_sym___clrcall] = ACTIONS(2495), - [anon_sym___stdcall] = ACTIONS(2495), - [anon_sym___fastcall] = ACTIONS(2495), - [anon_sym___thiscall] = ACTIONS(2495), - [anon_sym___vectorcall] = ACTIONS(2495), - [anon_sym_LBRACE] = ACTIONS(2497), - [anon_sym_RBRACE] = ACTIONS(2497), - [anon_sym_LBRACK] = ACTIONS(2495), - [anon_sym_static] = ACTIONS(2495), - [anon_sym_register] = ACTIONS(2495), - [anon_sym_inline] = ACTIONS(2495), - [anon_sym_thread_local] = ACTIONS(2495), - [anon_sym_const] = ACTIONS(2495), - [anon_sym_volatile] = ACTIONS(2495), - [anon_sym_restrict] = ACTIONS(2495), - [anon_sym__Atomic] = ACTIONS(2495), - [anon_sym_mutable] = ACTIONS(2495), - [anon_sym_constexpr] = ACTIONS(2495), - [anon_sym_constinit] = ACTIONS(2495), - [anon_sym_consteval] = ACTIONS(2495), - [anon_sym_signed] = ACTIONS(2495), - [anon_sym_unsigned] = ACTIONS(2495), - [anon_sym_long] = ACTIONS(2495), - [anon_sym_short] = ACTIONS(2495), - [sym_primitive_type] = ACTIONS(2495), - [anon_sym_enum] = ACTIONS(2495), - [anon_sym_class] = ACTIONS(2495), - [anon_sym_struct] = ACTIONS(2495), - [anon_sym_union] = ACTIONS(2495), - [anon_sym_if] = ACTIONS(2495), - [anon_sym_else] = ACTIONS(2495), - [anon_sym_switch] = ACTIONS(2495), - [anon_sym_case] = ACTIONS(2495), - [anon_sym_default] = ACTIONS(2495), - [anon_sym_while] = ACTIONS(2495), - [anon_sym_do] = ACTIONS(2495), - [anon_sym_for] = ACTIONS(2495), - [anon_sym_return] = ACTIONS(2495), - [anon_sym_break] = ACTIONS(2495), - [anon_sym_continue] = ACTIONS(2495), - [anon_sym_goto] = ACTIONS(2495), - [anon_sym_DASH_DASH] = ACTIONS(2497), - [anon_sym_PLUS_PLUS] = ACTIONS(2497), - [anon_sym_sizeof] = ACTIONS(2495), - [sym_number_literal] = ACTIONS(2497), - [anon_sym_L_SQUOTE] = ACTIONS(2497), - [anon_sym_u_SQUOTE] = ACTIONS(2497), - [anon_sym_U_SQUOTE] = ACTIONS(2497), - [anon_sym_u8_SQUOTE] = ACTIONS(2497), - [anon_sym_SQUOTE] = ACTIONS(2497), - [anon_sym_L_DQUOTE] = ACTIONS(2497), - [anon_sym_u_DQUOTE] = ACTIONS(2497), - [anon_sym_U_DQUOTE] = ACTIONS(2497), - [anon_sym_u8_DQUOTE] = ACTIONS(2497), - [anon_sym_DQUOTE] = ACTIONS(2497), - [sym_true] = ACTIONS(2495), - [sym_false] = ACTIONS(2495), - [sym_null] = ACTIONS(2495), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2495), - [anon_sym_decltype] = ACTIONS(2495), - [anon_sym_virtual] = ACTIONS(2495), - [anon_sym_explicit] = ACTIONS(2495), - [anon_sym_typename] = ACTIONS(2495), - [anon_sym_template] = ACTIONS(2495), - [anon_sym_operator] = ACTIONS(2495), - [anon_sym_try] = ACTIONS(2495), - [anon_sym_delete] = ACTIONS(2495), - [anon_sym_throw] = ACTIONS(2495), - [anon_sym_namespace] = ACTIONS(2495), - [anon_sym_using] = ACTIONS(2495), - [anon_sym_static_assert] = ACTIONS(2495), - [anon_sym_concept] = ACTIONS(2495), - [anon_sym_co_return] = ACTIONS(2495), - [anon_sym_co_yield] = ACTIONS(2495), - [anon_sym_co_await] = ACTIONS(2495), - [anon_sym_new] = ACTIONS(2495), - [anon_sym_requires] = ACTIONS(2495), - [sym_this] = ACTIONS(2495), - [sym_nullptr] = ACTIONS(2495), - [sym_raw_string_literal] = ACTIONS(2497), + [484] = { + [sym_identifier] = ACTIONS(2462), + [aux_sym_preproc_include_token1] = ACTIONS(2462), + [aux_sym_preproc_def_token1] = ACTIONS(2462), + [aux_sym_preproc_if_token1] = ACTIONS(2462), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2462), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2462), + [sym_preproc_directive] = ACTIONS(2462), + [anon_sym_LPAREN2] = ACTIONS(2464), + [anon_sym_BANG] = ACTIONS(2464), + [anon_sym_TILDE] = ACTIONS(2464), + [anon_sym_DASH] = ACTIONS(2462), + [anon_sym_PLUS] = ACTIONS(2462), + [anon_sym_STAR] = ACTIONS(2464), + [anon_sym_AMP_AMP] = ACTIONS(2464), + [anon_sym_AMP] = ACTIONS(2462), + [anon_sym_SEMI] = ACTIONS(2464), + [anon_sym_typedef] = ACTIONS(2462), + [anon_sym_extern] = ACTIONS(2462), + [anon_sym___attribute__] = ACTIONS(2462), + [anon_sym_COLON_COLON] = ACTIONS(2464), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), + [anon_sym___declspec] = ACTIONS(2462), + [anon_sym___based] = ACTIONS(2462), + [anon_sym___cdecl] = ACTIONS(2462), + [anon_sym___clrcall] = ACTIONS(2462), + [anon_sym___stdcall] = ACTIONS(2462), + [anon_sym___fastcall] = ACTIONS(2462), + [anon_sym___thiscall] = ACTIONS(2462), + [anon_sym___vectorcall] = ACTIONS(2462), + [anon_sym_LBRACE] = ACTIONS(2464), + [anon_sym_RBRACE] = ACTIONS(2464), + [anon_sym_LBRACK] = ACTIONS(2462), + [anon_sym_static] = ACTIONS(2462), + [anon_sym_register] = ACTIONS(2462), + [anon_sym_inline] = ACTIONS(2462), + [anon_sym_thread_local] = ACTIONS(2462), + [anon_sym_const] = ACTIONS(2462), + [anon_sym_volatile] = ACTIONS(2462), + [anon_sym_restrict] = ACTIONS(2462), + [anon_sym__Atomic] = ACTIONS(2462), + [anon_sym_mutable] = ACTIONS(2462), + [anon_sym_constexpr] = ACTIONS(2462), + [anon_sym_constinit] = ACTIONS(2462), + [anon_sym_consteval] = ACTIONS(2462), + [anon_sym_signed] = ACTIONS(2462), + [anon_sym_unsigned] = ACTIONS(2462), + [anon_sym_long] = ACTIONS(2462), + [anon_sym_short] = ACTIONS(2462), + [sym_primitive_type] = ACTIONS(2462), + [anon_sym_enum] = ACTIONS(2462), + [anon_sym_class] = ACTIONS(2462), + [anon_sym_struct] = ACTIONS(2462), + [anon_sym_union] = ACTIONS(2462), + [anon_sym_if] = ACTIONS(2462), + [anon_sym_else] = ACTIONS(2462), + [anon_sym_switch] = ACTIONS(2462), + [anon_sym_case] = ACTIONS(2462), + [anon_sym_default] = ACTIONS(2462), + [anon_sym_while] = ACTIONS(2462), + [anon_sym_do] = ACTIONS(2462), + [anon_sym_for] = ACTIONS(2462), + [anon_sym_return] = ACTIONS(2462), + [anon_sym_break] = ACTIONS(2462), + [anon_sym_continue] = ACTIONS(2462), + [anon_sym_goto] = ACTIONS(2462), + [anon_sym_not] = ACTIONS(2462), + [anon_sym_compl] = ACTIONS(2462), + [anon_sym_DASH_DASH] = ACTIONS(2464), + [anon_sym_PLUS_PLUS] = ACTIONS(2464), + [anon_sym_sizeof] = ACTIONS(2462), + [sym_number_literal] = ACTIONS(2464), + [anon_sym_L_SQUOTE] = ACTIONS(2464), + [anon_sym_u_SQUOTE] = ACTIONS(2464), + [anon_sym_U_SQUOTE] = ACTIONS(2464), + [anon_sym_u8_SQUOTE] = ACTIONS(2464), + [anon_sym_SQUOTE] = ACTIONS(2464), + [anon_sym_L_DQUOTE] = ACTIONS(2464), + [anon_sym_u_DQUOTE] = ACTIONS(2464), + [anon_sym_U_DQUOTE] = ACTIONS(2464), + [anon_sym_u8_DQUOTE] = ACTIONS(2464), + [anon_sym_DQUOTE] = ACTIONS(2464), + [sym_true] = ACTIONS(2462), + [sym_false] = ACTIONS(2462), + [sym_null] = ACTIONS(2462), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2462), + [anon_sym_decltype] = ACTIONS(2462), + [anon_sym_virtual] = ACTIONS(2462), + [anon_sym_explicit] = ACTIONS(2462), + [anon_sym_typename] = ACTIONS(2462), + [anon_sym_template] = ACTIONS(2462), + [anon_sym_operator] = ACTIONS(2462), + [anon_sym_try] = ACTIONS(2462), + [anon_sym_delete] = ACTIONS(2462), + [anon_sym_throw] = ACTIONS(2462), + [anon_sym_namespace] = ACTIONS(2462), + [anon_sym_using] = ACTIONS(2462), + [anon_sym_static_assert] = ACTIONS(2462), + [anon_sym_concept] = ACTIONS(2462), + [anon_sym_co_return] = ACTIONS(2462), + [anon_sym_co_yield] = ACTIONS(2462), + [anon_sym_catch] = ACTIONS(2462), + [anon_sym_co_await] = ACTIONS(2462), + [anon_sym_new] = ACTIONS(2462), + [anon_sym_requires] = ACTIONS(2462), + [sym_this] = ACTIONS(2462), + [sym_nullptr] = ACTIONS(2462), + [sym_raw_string_literal] = ACTIONS(2464), }, - [741] = { - [ts_builtin_sym_end] = ACTIONS(2517), - [sym_identifier] = ACTIONS(2515), - [aux_sym_preproc_include_token1] = ACTIONS(2515), - [aux_sym_preproc_def_token1] = ACTIONS(2515), - [aux_sym_preproc_if_token1] = ACTIONS(2515), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2515), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2515), - [sym_preproc_directive] = ACTIONS(2515), - [anon_sym_LPAREN2] = ACTIONS(2517), - [anon_sym_BANG] = ACTIONS(2517), - [anon_sym_TILDE] = ACTIONS(2517), - [anon_sym_DASH] = ACTIONS(2515), - [anon_sym_PLUS] = ACTIONS(2515), - [anon_sym_STAR] = ACTIONS(2517), - [anon_sym_AMP_AMP] = ACTIONS(2517), - [anon_sym_AMP] = ACTIONS(2515), - [anon_sym_SEMI] = ACTIONS(2517), - [anon_sym_typedef] = ACTIONS(2515), - [anon_sym_extern] = ACTIONS(2515), - [anon_sym___attribute__] = ACTIONS(2515), - [anon_sym_COLON_COLON] = ACTIONS(2517), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2517), - [anon_sym___declspec] = ACTIONS(2515), - [anon_sym___based] = ACTIONS(2515), - [anon_sym___cdecl] = ACTIONS(2515), - [anon_sym___clrcall] = ACTIONS(2515), - [anon_sym___stdcall] = ACTIONS(2515), - [anon_sym___fastcall] = ACTIONS(2515), - [anon_sym___thiscall] = ACTIONS(2515), - [anon_sym___vectorcall] = ACTIONS(2515), - [anon_sym_LBRACE] = ACTIONS(2517), - [anon_sym_LBRACK] = ACTIONS(2515), - [anon_sym_static] = ACTIONS(2515), - [anon_sym_register] = ACTIONS(2515), - [anon_sym_inline] = ACTIONS(2515), - [anon_sym_thread_local] = ACTIONS(2515), - [anon_sym_const] = ACTIONS(2515), - [anon_sym_volatile] = ACTIONS(2515), - [anon_sym_restrict] = ACTIONS(2515), - [anon_sym__Atomic] = ACTIONS(2515), - [anon_sym_mutable] = ACTIONS(2515), - [anon_sym_constexpr] = ACTIONS(2515), - [anon_sym_constinit] = ACTIONS(2515), - [anon_sym_consteval] = ACTIONS(2515), - [anon_sym_signed] = ACTIONS(2515), - [anon_sym_unsigned] = ACTIONS(2515), - [anon_sym_long] = ACTIONS(2515), - [anon_sym_short] = ACTIONS(2515), - [sym_primitive_type] = ACTIONS(2515), - [anon_sym_enum] = ACTIONS(2515), - [anon_sym_class] = ACTIONS(2515), - [anon_sym_struct] = ACTIONS(2515), - [anon_sym_union] = ACTIONS(2515), - [anon_sym_if] = ACTIONS(2515), - [anon_sym_else] = ACTIONS(2515), - [anon_sym_switch] = ACTIONS(2515), - [anon_sym_case] = ACTIONS(2515), - [anon_sym_default] = ACTIONS(2515), - [anon_sym_while] = ACTIONS(2515), - [anon_sym_do] = ACTIONS(2515), - [anon_sym_for] = ACTIONS(2515), - [anon_sym_return] = ACTIONS(2515), - [anon_sym_break] = ACTIONS(2515), - [anon_sym_continue] = ACTIONS(2515), - [anon_sym_goto] = ACTIONS(2515), - [anon_sym_DASH_DASH] = ACTIONS(2517), - [anon_sym_PLUS_PLUS] = ACTIONS(2517), - [anon_sym_sizeof] = ACTIONS(2515), - [sym_number_literal] = ACTIONS(2517), - [anon_sym_L_SQUOTE] = ACTIONS(2517), - [anon_sym_u_SQUOTE] = ACTIONS(2517), - [anon_sym_U_SQUOTE] = ACTIONS(2517), - [anon_sym_u8_SQUOTE] = ACTIONS(2517), - [anon_sym_SQUOTE] = ACTIONS(2517), - [anon_sym_L_DQUOTE] = ACTIONS(2517), - [anon_sym_u_DQUOTE] = ACTIONS(2517), - [anon_sym_U_DQUOTE] = ACTIONS(2517), - [anon_sym_u8_DQUOTE] = ACTIONS(2517), - [anon_sym_DQUOTE] = ACTIONS(2517), - [sym_true] = ACTIONS(2515), - [sym_false] = ACTIONS(2515), - [sym_null] = ACTIONS(2515), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2515), - [anon_sym_decltype] = ACTIONS(2515), - [anon_sym_virtual] = ACTIONS(2515), - [anon_sym_explicit] = ACTIONS(2515), - [anon_sym_typename] = ACTIONS(2515), - [anon_sym_template] = ACTIONS(2515), - [anon_sym_operator] = ACTIONS(2515), - [anon_sym_try] = ACTIONS(2515), - [anon_sym_delete] = ACTIONS(2515), - [anon_sym_throw] = ACTIONS(2515), - [anon_sym_namespace] = ACTIONS(2515), - [anon_sym_using] = ACTIONS(2515), - [anon_sym_static_assert] = ACTIONS(2515), - [anon_sym_concept] = ACTIONS(2515), - [anon_sym_co_return] = ACTIONS(2515), - [anon_sym_co_yield] = ACTIONS(2515), - [anon_sym_co_await] = ACTIONS(2515), - [anon_sym_new] = ACTIONS(2515), - [anon_sym_requires] = ACTIONS(2515), - [sym_this] = ACTIONS(2515), - [sym_nullptr] = ACTIONS(2515), - [sym_raw_string_literal] = ACTIONS(2517), + [485] = { + [ts_builtin_sym_end] = ACTIONS(2478), + [sym_identifier] = ACTIONS(2476), + [aux_sym_preproc_include_token1] = ACTIONS(2476), + [aux_sym_preproc_def_token1] = ACTIONS(2476), + [aux_sym_preproc_if_token1] = ACTIONS(2476), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2476), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2476), + [sym_preproc_directive] = ACTIONS(2476), + [anon_sym_LPAREN2] = ACTIONS(2478), + [anon_sym_BANG] = ACTIONS(2478), + [anon_sym_TILDE] = ACTIONS(2478), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_STAR] = ACTIONS(2478), + [anon_sym_AMP_AMP] = ACTIONS(2478), + [anon_sym_AMP] = ACTIONS(2476), + [anon_sym_SEMI] = ACTIONS(2478), + [anon_sym_typedef] = ACTIONS(2476), + [anon_sym_extern] = ACTIONS(2476), + [anon_sym___attribute__] = ACTIONS(2476), + [anon_sym_COLON_COLON] = ACTIONS(2478), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2478), + [anon_sym___declspec] = ACTIONS(2476), + [anon_sym___based] = ACTIONS(2476), + [anon_sym___cdecl] = ACTIONS(2476), + [anon_sym___clrcall] = ACTIONS(2476), + [anon_sym___stdcall] = ACTIONS(2476), + [anon_sym___fastcall] = ACTIONS(2476), + [anon_sym___thiscall] = ACTIONS(2476), + [anon_sym___vectorcall] = ACTIONS(2476), + [anon_sym_LBRACE] = ACTIONS(2478), + [anon_sym_LBRACK] = ACTIONS(2476), + [anon_sym_static] = ACTIONS(2476), + [anon_sym_register] = ACTIONS(2476), + [anon_sym_inline] = ACTIONS(2476), + [anon_sym_thread_local] = ACTIONS(2476), + [anon_sym_const] = ACTIONS(2476), + [anon_sym_volatile] = ACTIONS(2476), + [anon_sym_restrict] = ACTIONS(2476), + [anon_sym__Atomic] = ACTIONS(2476), + [anon_sym_mutable] = ACTIONS(2476), + [anon_sym_constexpr] = ACTIONS(2476), + [anon_sym_constinit] = ACTIONS(2476), + [anon_sym_consteval] = ACTIONS(2476), + [anon_sym_signed] = ACTIONS(2476), + [anon_sym_unsigned] = ACTIONS(2476), + [anon_sym_long] = ACTIONS(2476), + [anon_sym_short] = ACTIONS(2476), + [sym_primitive_type] = ACTIONS(2476), + [anon_sym_enum] = ACTIONS(2476), + [anon_sym_class] = ACTIONS(2476), + [anon_sym_struct] = ACTIONS(2476), + [anon_sym_union] = ACTIONS(2476), + [anon_sym_if] = ACTIONS(2476), + [anon_sym_else] = ACTIONS(2476), + [anon_sym_switch] = ACTIONS(2476), + [anon_sym_case] = ACTIONS(2476), + [anon_sym_default] = ACTIONS(2476), + [anon_sym_while] = ACTIONS(2476), + [anon_sym_do] = ACTIONS(2476), + [anon_sym_for] = ACTIONS(2476), + [anon_sym_return] = ACTIONS(2476), + [anon_sym_break] = ACTIONS(2476), + [anon_sym_continue] = ACTIONS(2476), + [anon_sym_goto] = ACTIONS(2476), + [anon_sym_not] = ACTIONS(2476), + [anon_sym_compl] = ACTIONS(2476), + [anon_sym_DASH_DASH] = ACTIONS(2478), + [anon_sym_PLUS_PLUS] = ACTIONS(2478), + [anon_sym_sizeof] = ACTIONS(2476), + [sym_number_literal] = ACTIONS(2478), + [anon_sym_L_SQUOTE] = ACTIONS(2478), + [anon_sym_u_SQUOTE] = ACTIONS(2478), + [anon_sym_U_SQUOTE] = ACTIONS(2478), + [anon_sym_u8_SQUOTE] = ACTIONS(2478), + [anon_sym_SQUOTE] = ACTIONS(2478), + [anon_sym_L_DQUOTE] = ACTIONS(2478), + [anon_sym_u_DQUOTE] = ACTIONS(2478), + [anon_sym_U_DQUOTE] = ACTIONS(2478), + [anon_sym_u8_DQUOTE] = ACTIONS(2478), + [anon_sym_DQUOTE] = ACTIONS(2478), + [sym_true] = ACTIONS(2476), + [sym_false] = ACTIONS(2476), + [sym_null] = ACTIONS(2476), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2476), + [anon_sym_decltype] = ACTIONS(2476), + [anon_sym_virtual] = ACTIONS(2476), + [anon_sym_explicit] = ACTIONS(2476), + [anon_sym_typename] = ACTIONS(2476), + [anon_sym_template] = ACTIONS(2476), + [anon_sym_operator] = ACTIONS(2476), + [anon_sym_try] = ACTIONS(2476), + [anon_sym_delete] = ACTIONS(2476), + [anon_sym_throw] = ACTIONS(2476), + [anon_sym_namespace] = ACTIONS(2476), + [anon_sym_using] = ACTIONS(2476), + [anon_sym_static_assert] = ACTIONS(2476), + [anon_sym_concept] = ACTIONS(2476), + [anon_sym_co_return] = ACTIONS(2476), + [anon_sym_co_yield] = ACTIONS(2476), + [anon_sym_catch] = ACTIONS(2476), + [anon_sym_co_await] = ACTIONS(2476), + [anon_sym_new] = ACTIONS(2476), + [anon_sym_requires] = ACTIONS(2476), + [sym_this] = ACTIONS(2476), + [sym_nullptr] = ACTIONS(2476), + [sym_raw_string_literal] = ACTIONS(2478), }, - [742] = { - [sym__expression] = STATE(2852), - [sym_conditional_expression] = STATE(3000), - [sym_assignment_expression] = STATE(3000), - [sym_pointer_expression] = STATE(3006), - [sym_unary_expression] = STATE(3000), - [sym_binary_expression] = STATE(3000), - [sym_update_expression] = STATE(3000), - [sym_cast_expression] = STATE(3000), - [sym_sizeof_expression] = STATE(3000), - [sym_subscript_expression] = STATE(3006), - [sym_call_expression] = STATE(3006), - [sym_field_expression] = STATE(3006), - [sym_compound_literal_expression] = STATE(3000), - [sym_parenthesized_expression] = STATE(3006), - [sym_initializer_list] = STATE(3015), - [sym_char_literal] = STATE(2896), - [sym_concatenated_string] = STATE(2896), - [sym_string_literal] = STATE(2154), - [sym__class_name] = STATE(5849), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3000), - [sym_co_await_expression] = STATE(3000), - [sym_new_expression] = STATE(3000), - [sym_delete_expression] = STATE(3000), - [sym_requires_clause] = STATE(3000), - [sym_requires_expression] = STATE(3000), - [sym_lambda_expression] = STATE(3000), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3000), - [sym_parameter_pack_expansion] = STATE(3000), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4642), - [sym_qualified_identifier] = STATE(3006), - [sym_qualified_type_identifier] = STATE(5849), - [sym_user_defined_literal] = STATE(3000), - [sym_identifier] = ACTIONS(2831), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2308), - [anon_sym_COMMA] = ACTIONS(2308), - [anon_sym_LPAREN2] = ACTIONS(2833), - [anon_sym_BANG] = ACTIONS(2835), - [anon_sym_TILDE] = ACTIONS(2837), - [anon_sym_DASH] = ACTIONS(2835), - [anon_sym_PLUS] = ACTIONS(2835), - [anon_sym_STAR] = ACTIONS(2839), - [anon_sym_SLASH] = ACTIONS(2316), - [anon_sym_PERCENT] = ACTIONS(2316), - [anon_sym_PIPE_PIPE] = ACTIONS(2308), - [anon_sym_AMP_AMP] = ACTIONS(2308), - [anon_sym_PIPE] = ACTIONS(2316), - [anon_sym_CARET] = ACTIONS(2316), - [anon_sym_AMP] = ACTIONS(2839), - [anon_sym_EQ_EQ] = ACTIONS(2308), - [anon_sym_BANG_EQ] = ACTIONS(2308), - [anon_sym_GT] = ACTIONS(2316), - [anon_sym_GT_EQ] = ACTIONS(2316), - [anon_sym_LT_EQ] = ACTIONS(2316), - [anon_sym_LT] = ACTIONS(2316), - [anon_sym_LT_LT] = ACTIONS(2316), - [anon_sym_GT_GT] = ACTIONS(2316), - [anon_sym_COLON_COLON] = ACTIONS(2841), - [anon_sym_LBRACE] = ACTIONS(2843), - [anon_sym_LBRACK] = ACTIONS(2272), - [anon_sym_EQ] = ACTIONS(2316), - [sym_primitive_type] = ACTIONS(2845), - [anon_sym_QMARK] = ACTIONS(2308), - [anon_sym_STAR_EQ] = ACTIONS(2308), - [anon_sym_SLASH_EQ] = ACTIONS(2308), - [anon_sym_PERCENT_EQ] = ACTIONS(2308), - [anon_sym_PLUS_EQ] = ACTIONS(2308), - [anon_sym_DASH_EQ] = ACTIONS(2308), - [anon_sym_LT_LT_EQ] = ACTIONS(2308), - [anon_sym_GT_GT_EQ] = ACTIONS(2316), - [anon_sym_AMP_EQ] = ACTIONS(2308), - [anon_sym_CARET_EQ] = ACTIONS(2308), - [anon_sym_PIPE_EQ] = ACTIONS(2308), - [anon_sym_LT_EQ_GT] = ACTIONS(2308), - [anon_sym_DASH_DASH] = ACTIONS(2847), - [anon_sym_PLUS_PLUS] = ACTIONS(2847), - [anon_sym_sizeof] = ACTIONS(2849), - [anon_sym_DOT] = ACTIONS(2316), - [anon_sym_DASH_GT] = ACTIONS(2308), - [sym_number_literal] = ACTIONS(2851), - [anon_sym_L_SQUOTE] = ACTIONS(2853), - [anon_sym_u_SQUOTE] = ACTIONS(2853), - [anon_sym_U_SQUOTE] = ACTIONS(2853), - [anon_sym_u8_SQUOTE] = ACTIONS(2853), - [anon_sym_SQUOTE] = ACTIONS(2853), - [anon_sym_L_DQUOTE] = ACTIONS(2855), - [anon_sym_u_DQUOTE] = ACTIONS(2855), - [anon_sym_U_DQUOTE] = ACTIONS(2855), - [anon_sym_u8_DQUOTE] = ACTIONS(2855), - [anon_sym_DQUOTE] = ACTIONS(2855), - [sym_true] = ACTIONS(2857), - [sym_false] = ACTIONS(2857), - [sym_null] = ACTIONS(2857), + [486] = { + [sym_identifier] = ACTIONS(2729), + [aux_sym_preproc_include_token1] = ACTIONS(2729), + [aux_sym_preproc_def_token1] = ACTIONS(2729), + [aux_sym_preproc_if_token1] = ACTIONS(2729), + [aux_sym_preproc_if_token2] = ACTIONS(2729), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2729), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2729), + [aux_sym_preproc_else_token1] = ACTIONS(2729), + [aux_sym_preproc_elif_token1] = ACTIONS(2729), + [sym_preproc_directive] = ACTIONS(2729), + [anon_sym_LPAREN2] = ACTIONS(2731), + [anon_sym_BANG] = ACTIONS(2731), + [anon_sym_TILDE] = ACTIONS(2731), + [anon_sym_DASH] = ACTIONS(2729), + [anon_sym_PLUS] = ACTIONS(2729), + [anon_sym_STAR] = ACTIONS(2731), + [anon_sym_AMP_AMP] = ACTIONS(2731), + [anon_sym_AMP] = ACTIONS(2729), + [anon_sym_SEMI] = ACTIONS(2731), + [anon_sym_typedef] = ACTIONS(2729), + [anon_sym_extern] = ACTIONS(2729), + [anon_sym___attribute__] = ACTIONS(2729), + [anon_sym_COLON_COLON] = ACTIONS(2731), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2731), + [anon_sym___declspec] = ACTIONS(2729), + [anon_sym___based] = ACTIONS(2729), + [anon_sym___cdecl] = ACTIONS(2729), + [anon_sym___clrcall] = ACTIONS(2729), + [anon_sym___stdcall] = ACTIONS(2729), + [anon_sym___fastcall] = ACTIONS(2729), + [anon_sym___thiscall] = ACTIONS(2729), + [anon_sym___vectorcall] = ACTIONS(2729), + [anon_sym_LBRACE] = ACTIONS(2731), + [anon_sym_LBRACK] = ACTIONS(2729), + [anon_sym_static] = ACTIONS(2729), + [anon_sym_register] = ACTIONS(2729), + [anon_sym_inline] = ACTIONS(2729), + [anon_sym_thread_local] = ACTIONS(2729), + [anon_sym_const] = ACTIONS(2729), + [anon_sym_volatile] = ACTIONS(2729), + [anon_sym_restrict] = ACTIONS(2729), + [anon_sym__Atomic] = ACTIONS(2729), + [anon_sym_mutable] = ACTIONS(2729), + [anon_sym_constexpr] = ACTIONS(2729), + [anon_sym_constinit] = ACTIONS(2729), + [anon_sym_consteval] = ACTIONS(2729), + [anon_sym_signed] = ACTIONS(2729), + [anon_sym_unsigned] = ACTIONS(2729), + [anon_sym_long] = ACTIONS(2729), + [anon_sym_short] = ACTIONS(2729), + [sym_primitive_type] = ACTIONS(2729), + [anon_sym_enum] = ACTIONS(2729), + [anon_sym_class] = ACTIONS(2729), + [anon_sym_struct] = ACTIONS(2729), + [anon_sym_union] = ACTIONS(2729), + [anon_sym_if] = ACTIONS(2729), + [anon_sym_switch] = ACTIONS(2729), + [anon_sym_case] = ACTIONS(2729), + [anon_sym_default] = ACTIONS(2729), + [anon_sym_while] = ACTIONS(2729), + [anon_sym_do] = ACTIONS(2729), + [anon_sym_for] = ACTIONS(2729), + [anon_sym_return] = ACTIONS(2729), + [anon_sym_break] = ACTIONS(2729), + [anon_sym_continue] = ACTIONS(2729), + [anon_sym_goto] = ACTIONS(2729), + [anon_sym_not] = ACTIONS(2729), + [anon_sym_compl] = ACTIONS(2729), + [anon_sym_DASH_DASH] = ACTIONS(2731), + [anon_sym_PLUS_PLUS] = ACTIONS(2731), + [anon_sym_sizeof] = ACTIONS(2729), + [sym_number_literal] = ACTIONS(2731), + [anon_sym_L_SQUOTE] = ACTIONS(2731), + [anon_sym_u_SQUOTE] = ACTIONS(2731), + [anon_sym_U_SQUOTE] = ACTIONS(2731), + [anon_sym_u8_SQUOTE] = ACTIONS(2731), + [anon_sym_SQUOTE] = ACTIONS(2731), + [anon_sym_L_DQUOTE] = ACTIONS(2731), + [anon_sym_u_DQUOTE] = ACTIONS(2731), + [anon_sym_U_DQUOTE] = ACTIONS(2731), + [anon_sym_u8_DQUOTE] = ACTIONS(2731), + [anon_sym_DQUOTE] = ACTIONS(2731), + [sym_true] = ACTIONS(2729), + [sym_false] = ACTIONS(2729), + [sym_null] = ACTIONS(2729), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_GT2] = ACTIONS(2308), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_co_await] = ACTIONS(2861), - [anon_sym_new] = ACTIONS(2863), - [anon_sym_requires] = ACTIONS(2865), - [sym_this] = ACTIONS(2857), - [sym_nullptr] = ACTIONS(2857), - [sym_raw_string_literal] = ACTIONS(2867), + [sym_auto] = ACTIONS(2729), + [anon_sym_decltype] = ACTIONS(2729), + [anon_sym_virtual] = ACTIONS(2729), + [anon_sym_explicit] = ACTIONS(2729), + [anon_sym_typename] = ACTIONS(2729), + [anon_sym_template] = ACTIONS(2729), + [anon_sym_operator] = ACTIONS(2729), + [anon_sym_try] = ACTIONS(2729), + [anon_sym_delete] = ACTIONS(2729), + [anon_sym_throw] = ACTIONS(2729), + [anon_sym_namespace] = ACTIONS(2729), + [anon_sym_using] = ACTIONS(2729), + [anon_sym_static_assert] = ACTIONS(2729), + [anon_sym_concept] = ACTIONS(2729), + [anon_sym_co_return] = ACTIONS(2729), + [anon_sym_co_yield] = ACTIONS(2729), + [anon_sym_co_await] = ACTIONS(2729), + [anon_sym_new] = ACTIONS(2729), + [anon_sym_requires] = ACTIONS(2729), + [sym_this] = ACTIONS(2729), + [sym_nullptr] = ACTIONS(2729), + [sym_raw_string_literal] = ACTIONS(2731), }, - [743] = { - [sym_identifier] = ACTIONS(2519), - [aux_sym_preproc_include_token1] = ACTIONS(2519), - [aux_sym_preproc_def_token1] = ACTIONS(2519), - [aux_sym_preproc_if_token1] = ACTIONS(2519), - [aux_sym_preproc_if_token2] = ACTIONS(2519), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2519), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2519), - [sym_preproc_directive] = ACTIONS(2519), - [anon_sym_LPAREN2] = ACTIONS(2521), - [anon_sym_BANG] = ACTIONS(2521), - [anon_sym_TILDE] = ACTIONS(2521), - [anon_sym_DASH] = ACTIONS(2519), - [anon_sym_PLUS] = ACTIONS(2519), - [anon_sym_STAR] = ACTIONS(2521), - [anon_sym_AMP_AMP] = ACTIONS(2521), - [anon_sym_AMP] = ACTIONS(2519), - [anon_sym_SEMI] = ACTIONS(2521), - [anon_sym_typedef] = ACTIONS(2519), - [anon_sym_extern] = ACTIONS(2519), - [anon_sym___attribute__] = ACTIONS(2519), - [anon_sym_COLON_COLON] = ACTIONS(2521), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2521), - [anon_sym___declspec] = ACTIONS(2519), - [anon_sym___based] = ACTIONS(2519), - [anon_sym___cdecl] = ACTIONS(2519), - [anon_sym___clrcall] = ACTIONS(2519), - [anon_sym___stdcall] = ACTIONS(2519), - [anon_sym___fastcall] = ACTIONS(2519), - [anon_sym___thiscall] = ACTIONS(2519), - [anon_sym___vectorcall] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(2521), - [anon_sym_LBRACK] = ACTIONS(2519), - [anon_sym_static] = ACTIONS(2519), - [anon_sym_register] = ACTIONS(2519), - [anon_sym_inline] = ACTIONS(2519), - [anon_sym_thread_local] = ACTIONS(2519), - [anon_sym_const] = ACTIONS(2519), - [anon_sym_volatile] = ACTIONS(2519), - [anon_sym_restrict] = ACTIONS(2519), - [anon_sym__Atomic] = ACTIONS(2519), - [anon_sym_mutable] = ACTIONS(2519), - [anon_sym_constexpr] = ACTIONS(2519), - [anon_sym_constinit] = ACTIONS(2519), - [anon_sym_consteval] = ACTIONS(2519), - [anon_sym_signed] = ACTIONS(2519), - [anon_sym_unsigned] = ACTIONS(2519), - [anon_sym_long] = ACTIONS(2519), - [anon_sym_short] = ACTIONS(2519), - [sym_primitive_type] = ACTIONS(2519), - [anon_sym_enum] = ACTIONS(2519), - [anon_sym_class] = ACTIONS(2519), - [anon_sym_struct] = ACTIONS(2519), - [anon_sym_union] = ACTIONS(2519), - [anon_sym_if] = ACTIONS(2519), - [anon_sym_else] = ACTIONS(2869), - [anon_sym_switch] = ACTIONS(2519), - [anon_sym_case] = ACTIONS(2519), - [anon_sym_default] = ACTIONS(2519), - [anon_sym_while] = ACTIONS(2519), - [anon_sym_do] = ACTIONS(2519), - [anon_sym_for] = ACTIONS(2519), - [anon_sym_return] = ACTIONS(2519), - [anon_sym_break] = ACTIONS(2519), - [anon_sym_continue] = ACTIONS(2519), - [anon_sym_goto] = ACTIONS(2519), - [anon_sym_DASH_DASH] = ACTIONS(2521), - [anon_sym_PLUS_PLUS] = ACTIONS(2521), - [anon_sym_sizeof] = ACTIONS(2519), - [sym_number_literal] = ACTIONS(2521), - [anon_sym_L_SQUOTE] = ACTIONS(2521), - [anon_sym_u_SQUOTE] = ACTIONS(2521), - [anon_sym_U_SQUOTE] = ACTIONS(2521), - [anon_sym_u8_SQUOTE] = ACTIONS(2521), - [anon_sym_SQUOTE] = ACTIONS(2521), - [anon_sym_L_DQUOTE] = ACTIONS(2521), - [anon_sym_u_DQUOTE] = ACTIONS(2521), - [anon_sym_U_DQUOTE] = ACTIONS(2521), - [anon_sym_u8_DQUOTE] = ACTIONS(2521), - [anon_sym_DQUOTE] = ACTIONS(2521), - [sym_true] = ACTIONS(2519), - [sym_false] = ACTIONS(2519), - [sym_null] = ACTIONS(2519), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2519), - [anon_sym_decltype] = ACTIONS(2519), - [anon_sym_virtual] = ACTIONS(2519), - [anon_sym_explicit] = ACTIONS(2519), - [anon_sym_typename] = ACTIONS(2519), - [anon_sym_template] = ACTIONS(2519), - [anon_sym_operator] = ACTIONS(2519), - [anon_sym_try] = ACTIONS(2519), - [anon_sym_delete] = ACTIONS(2519), - [anon_sym_throw] = ACTIONS(2519), - [anon_sym_namespace] = ACTIONS(2519), - [anon_sym_using] = ACTIONS(2519), - [anon_sym_static_assert] = ACTIONS(2519), - [anon_sym_concept] = ACTIONS(2519), - [anon_sym_co_return] = ACTIONS(2519), - [anon_sym_co_yield] = ACTIONS(2519), - [anon_sym_co_await] = ACTIONS(2519), - [anon_sym_new] = ACTIONS(2519), - [anon_sym_requires] = ACTIONS(2519), - [sym_this] = ACTIONS(2519), - [sym_nullptr] = ACTIONS(2519), - [sym_raw_string_literal] = ACTIONS(2521), + [487] = { + [sym_identifier] = ACTIONS(2733), + [aux_sym_preproc_include_token1] = ACTIONS(2733), + [aux_sym_preproc_def_token1] = ACTIONS(2733), + [aux_sym_preproc_if_token1] = ACTIONS(2733), + [aux_sym_preproc_if_token2] = ACTIONS(2733), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2733), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2733), + [aux_sym_preproc_else_token1] = ACTIONS(2733), + [aux_sym_preproc_elif_token1] = ACTIONS(2733), + [sym_preproc_directive] = ACTIONS(2733), + [anon_sym_LPAREN2] = ACTIONS(2735), + [anon_sym_BANG] = ACTIONS(2735), + [anon_sym_TILDE] = ACTIONS(2735), + [anon_sym_DASH] = ACTIONS(2733), + [anon_sym_PLUS] = ACTIONS(2733), + [anon_sym_STAR] = ACTIONS(2735), + [anon_sym_AMP_AMP] = ACTIONS(2735), + [anon_sym_AMP] = ACTIONS(2733), + [anon_sym_SEMI] = ACTIONS(2735), + [anon_sym_typedef] = ACTIONS(2733), + [anon_sym_extern] = ACTIONS(2733), + [anon_sym___attribute__] = ACTIONS(2733), + [anon_sym_COLON_COLON] = ACTIONS(2735), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2735), + [anon_sym___declspec] = ACTIONS(2733), + [anon_sym___based] = ACTIONS(2733), + [anon_sym___cdecl] = ACTIONS(2733), + [anon_sym___clrcall] = ACTIONS(2733), + [anon_sym___stdcall] = ACTIONS(2733), + [anon_sym___fastcall] = ACTIONS(2733), + [anon_sym___thiscall] = ACTIONS(2733), + [anon_sym___vectorcall] = ACTIONS(2733), + [anon_sym_LBRACE] = ACTIONS(2735), + [anon_sym_LBRACK] = ACTIONS(2733), + [anon_sym_static] = ACTIONS(2733), + [anon_sym_register] = ACTIONS(2733), + [anon_sym_inline] = ACTIONS(2733), + [anon_sym_thread_local] = ACTIONS(2733), + [anon_sym_const] = ACTIONS(2733), + [anon_sym_volatile] = ACTIONS(2733), + [anon_sym_restrict] = ACTIONS(2733), + [anon_sym__Atomic] = ACTIONS(2733), + [anon_sym_mutable] = ACTIONS(2733), + [anon_sym_constexpr] = ACTIONS(2733), + [anon_sym_constinit] = ACTIONS(2733), + [anon_sym_consteval] = ACTIONS(2733), + [anon_sym_signed] = ACTIONS(2733), + [anon_sym_unsigned] = ACTIONS(2733), + [anon_sym_long] = ACTIONS(2733), + [anon_sym_short] = ACTIONS(2733), + [sym_primitive_type] = ACTIONS(2733), + [anon_sym_enum] = ACTIONS(2733), + [anon_sym_class] = ACTIONS(2733), + [anon_sym_struct] = ACTIONS(2733), + [anon_sym_union] = ACTIONS(2733), + [anon_sym_if] = ACTIONS(2733), + [anon_sym_switch] = ACTIONS(2733), + [anon_sym_case] = ACTIONS(2733), + [anon_sym_default] = ACTIONS(2733), + [anon_sym_while] = ACTIONS(2733), + [anon_sym_do] = ACTIONS(2733), + [anon_sym_for] = ACTIONS(2733), + [anon_sym_return] = ACTIONS(2733), + [anon_sym_break] = ACTIONS(2733), + [anon_sym_continue] = ACTIONS(2733), + [anon_sym_goto] = ACTIONS(2733), + [anon_sym_not] = ACTIONS(2733), + [anon_sym_compl] = ACTIONS(2733), + [anon_sym_DASH_DASH] = ACTIONS(2735), + [anon_sym_PLUS_PLUS] = ACTIONS(2735), + [anon_sym_sizeof] = ACTIONS(2733), + [sym_number_literal] = ACTIONS(2735), + [anon_sym_L_SQUOTE] = ACTIONS(2735), + [anon_sym_u_SQUOTE] = ACTIONS(2735), + [anon_sym_U_SQUOTE] = ACTIONS(2735), + [anon_sym_u8_SQUOTE] = ACTIONS(2735), + [anon_sym_SQUOTE] = ACTIONS(2735), + [anon_sym_L_DQUOTE] = ACTIONS(2735), + [anon_sym_u_DQUOTE] = ACTIONS(2735), + [anon_sym_U_DQUOTE] = ACTIONS(2735), + [anon_sym_u8_DQUOTE] = ACTIONS(2735), + [anon_sym_DQUOTE] = ACTIONS(2735), + [sym_true] = ACTIONS(2733), + [sym_false] = ACTIONS(2733), + [sym_null] = ACTIONS(2733), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2733), + [anon_sym_decltype] = ACTIONS(2733), + [anon_sym_virtual] = ACTIONS(2733), + [anon_sym_explicit] = ACTIONS(2733), + [anon_sym_typename] = ACTIONS(2733), + [anon_sym_template] = ACTIONS(2733), + [anon_sym_operator] = ACTIONS(2733), + [anon_sym_try] = ACTIONS(2733), + [anon_sym_delete] = ACTIONS(2733), + [anon_sym_throw] = ACTIONS(2733), + [anon_sym_namespace] = ACTIONS(2733), + [anon_sym_using] = ACTIONS(2733), + [anon_sym_static_assert] = ACTIONS(2733), + [anon_sym_concept] = ACTIONS(2733), + [anon_sym_co_return] = ACTIONS(2733), + [anon_sym_co_yield] = ACTIONS(2733), + [anon_sym_co_await] = ACTIONS(2733), + [anon_sym_new] = ACTIONS(2733), + [anon_sym_requires] = ACTIONS(2733), + [sym_this] = ACTIONS(2733), + [sym_nullptr] = ACTIONS(2733), + [sym_raw_string_literal] = ACTIONS(2735), }, - [744] = { - [sym_identifier] = ACTIONS(2401), - [aux_sym_preproc_include_token1] = ACTIONS(2401), - [aux_sym_preproc_def_token1] = ACTIONS(2401), - [aux_sym_preproc_if_token1] = ACTIONS(2401), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2401), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2401), - [sym_preproc_directive] = ACTIONS(2401), - [anon_sym_LPAREN2] = ACTIONS(2403), - [anon_sym_BANG] = ACTIONS(2403), - [anon_sym_TILDE] = ACTIONS(2403), - [anon_sym_DASH] = ACTIONS(2401), - [anon_sym_PLUS] = ACTIONS(2401), - [anon_sym_STAR] = ACTIONS(2403), - [anon_sym_AMP_AMP] = ACTIONS(2403), - [anon_sym_AMP] = ACTIONS(2401), - [anon_sym_SEMI] = ACTIONS(2403), - [anon_sym_typedef] = ACTIONS(2401), - [anon_sym_extern] = ACTIONS(2401), - [anon_sym___attribute__] = ACTIONS(2401), - [anon_sym_COLON_COLON] = ACTIONS(2403), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2403), - [anon_sym___declspec] = ACTIONS(2401), - [anon_sym___based] = ACTIONS(2401), - [anon_sym___cdecl] = ACTIONS(2401), - [anon_sym___clrcall] = ACTIONS(2401), - [anon_sym___stdcall] = ACTIONS(2401), - [anon_sym___fastcall] = ACTIONS(2401), - [anon_sym___thiscall] = ACTIONS(2401), - [anon_sym___vectorcall] = ACTIONS(2401), - [anon_sym_LBRACE] = ACTIONS(2403), - [anon_sym_RBRACE] = ACTIONS(2403), - [anon_sym_LBRACK] = ACTIONS(2401), - [anon_sym_static] = ACTIONS(2401), - [anon_sym_register] = ACTIONS(2401), - [anon_sym_inline] = ACTIONS(2401), - [anon_sym_thread_local] = ACTIONS(2401), - [anon_sym_const] = ACTIONS(2401), - [anon_sym_volatile] = ACTIONS(2401), - [anon_sym_restrict] = ACTIONS(2401), - [anon_sym__Atomic] = ACTIONS(2401), - [anon_sym_mutable] = ACTIONS(2401), - [anon_sym_constexpr] = ACTIONS(2401), - [anon_sym_constinit] = ACTIONS(2401), - [anon_sym_consteval] = ACTIONS(2401), - [anon_sym_signed] = ACTIONS(2401), - [anon_sym_unsigned] = ACTIONS(2401), - [anon_sym_long] = ACTIONS(2401), - [anon_sym_short] = ACTIONS(2401), - [sym_primitive_type] = ACTIONS(2401), - [anon_sym_enum] = ACTIONS(2401), - [anon_sym_class] = ACTIONS(2401), - [anon_sym_struct] = ACTIONS(2401), - [anon_sym_union] = ACTIONS(2401), - [anon_sym_if] = ACTIONS(2401), - [anon_sym_else] = ACTIONS(2401), - [anon_sym_switch] = ACTIONS(2401), - [anon_sym_case] = ACTIONS(2401), - [anon_sym_default] = ACTIONS(2401), - [anon_sym_while] = ACTIONS(2401), - [anon_sym_do] = ACTIONS(2401), - [anon_sym_for] = ACTIONS(2401), - [anon_sym_return] = ACTIONS(2401), - [anon_sym_break] = ACTIONS(2401), - [anon_sym_continue] = ACTIONS(2401), - [anon_sym_goto] = ACTIONS(2401), - [anon_sym_DASH_DASH] = ACTIONS(2403), - [anon_sym_PLUS_PLUS] = ACTIONS(2403), - [anon_sym_sizeof] = ACTIONS(2401), - [sym_number_literal] = ACTIONS(2403), - [anon_sym_L_SQUOTE] = ACTIONS(2403), - [anon_sym_u_SQUOTE] = ACTIONS(2403), - [anon_sym_U_SQUOTE] = ACTIONS(2403), - [anon_sym_u8_SQUOTE] = ACTIONS(2403), - [anon_sym_SQUOTE] = ACTIONS(2403), - [anon_sym_L_DQUOTE] = ACTIONS(2403), - [anon_sym_u_DQUOTE] = ACTIONS(2403), - [anon_sym_U_DQUOTE] = ACTIONS(2403), - [anon_sym_u8_DQUOTE] = ACTIONS(2403), - [anon_sym_DQUOTE] = ACTIONS(2403), - [sym_true] = ACTIONS(2401), - [sym_false] = ACTIONS(2401), - [sym_null] = ACTIONS(2401), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2401), - [anon_sym_decltype] = ACTIONS(2401), - [anon_sym_virtual] = ACTIONS(2401), - [anon_sym_explicit] = ACTIONS(2401), - [anon_sym_typename] = ACTIONS(2401), - [anon_sym_template] = ACTIONS(2401), - [anon_sym_operator] = ACTIONS(2401), - [anon_sym_try] = ACTIONS(2401), - [anon_sym_delete] = ACTIONS(2401), - [anon_sym_throw] = ACTIONS(2401), - [anon_sym_namespace] = ACTIONS(2401), - [anon_sym_using] = ACTIONS(2401), - [anon_sym_static_assert] = ACTIONS(2401), - [anon_sym_concept] = ACTIONS(2401), - [anon_sym_co_return] = ACTIONS(2401), - [anon_sym_co_yield] = ACTIONS(2401), - [anon_sym_co_await] = ACTIONS(2401), - [anon_sym_new] = ACTIONS(2401), - [anon_sym_requires] = ACTIONS(2401), - [sym_this] = ACTIONS(2401), - [sym_nullptr] = ACTIONS(2401), - [sym_raw_string_literal] = ACTIONS(2403), + [488] = { + [sym_identifier] = ACTIONS(2737), + [aux_sym_preproc_include_token1] = ACTIONS(2737), + [aux_sym_preproc_def_token1] = ACTIONS(2737), + [aux_sym_preproc_if_token1] = ACTIONS(2737), + [aux_sym_preproc_if_token2] = ACTIONS(2737), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2737), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2737), + [aux_sym_preproc_else_token1] = ACTIONS(2737), + [aux_sym_preproc_elif_token1] = ACTIONS(2737), + [sym_preproc_directive] = ACTIONS(2737), + [anon_sym_LPAREN2] = ACTIONS(2739), + [anon_sym_BANG] = ACTIONS(2739), + [anon_sym_TILDE] = ACTIONS(2739), + [anon_sym_DASH] = ACTIONS(2737), + [anon_sym_PLUS] = ACTIONS(2737), + [anon_sym_STAR] = ACTIONS(2739), + [anon_sym_AMP_AMP] = ACTIONS(2739), + [anon_sym_AMP] = ACTIONS(2737), + [anon_sym_SEMI] = ACTIONS(2739), + [anon_sym_typedef] = ACTIONS(2737), + [anon_sym_extern] = ACTIONS(2737), + [anon_sym___attribute__] = ACTIONS(2737), + [anon_sym_COLON_COLON] = ACTIONS(2739), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2739), + [anon_sym___declspec] = ACTIONS(2737), + [anon_sym___based] = ACTIONS(2737), + [anon_sym___cdecl] = ACTIONS(2737), + [anon_sym___clrcall] = ACTIONS(2737), + [anon_sym___stdcall] = ACTIONS(2737), + [anon_sym___fastcall] = ACTIONS(2737), + [anon_sym___thiscall] = ACTIONS(2737), + [anon_sym___vectorcall] = ACTIONS(2737), + [anon_sym_LBRACE] = ACTIONS(2739), + [anon_sym_LBRACK] = ACTIONS(2737), + [anon_sym_static] = ACTIONS(2737), + [anon_sym_register] = ACTIONS(2737), + [anon_sym_inline] = ACTIONS(2737), + [anon_sym_thread_local] = ACTIONS(2737), + [anon_sym_const] = ACTIONS(2737), + [anon_sym_volatile] = ACTIONS(2737), + [anon_sym_restrict] = ACTIONS(2737), + [anon_sym__Atomic] = ACTIONS(2737), + [anon_sym_mutable] = ACTIONS(2737), + [anon_sym_constexpr] = ACTIONS(2737), + [anon_sym_constinit] = ACTIONS(2737), + [anon_sym_consteval] = ACTIONS(2737), + [anon_sym_signed] = ACTIONS(2737), + [anon_sym_unsigned] = ACTIONS(2737), + [anon_sym_long] = ACTIONS(2737), + [anon_sym_short] = ACTIONS(2737), + [sym_primitive_type] = ACTIONS(2737), + [anon_sym_enum] = ACTIONS(2737), + [anon_sym_class] = ACTIONS(2737), + [anon_sym_struct] = ACTIONS(2737), + [anon_sym_union] = ACTIONS(2737), + [anon_sym_if] = ACTIONS(2737), + [anon_sym_switch] = ACTIONS(2737), + [anon_sym_case] = ACTIONS(2737), + [anon_sym_default] = ACTIONS(2737), + [anon_sym_while] = ACTIONS(2737), + [anon_sym_do] = ACTIONS(2737), + [anon_sym_for] = ACTIONS(2737), + [anon_sym_return] = ACTIONS(2737), + [anon_sym_break] = ACTIONS(2737), + [anon_sym_continue] = ACTIONS(2737), + [anon_sym_goto] = ACTIONS(2737), + [anon_sym_not] = ACTIONS(2737), + [anon_sym_compl] = ACTIONS(2737), + [anon_sym_DASH_DASH] = ACTIONS(2739), + [anon_sym_PLUS_PLUS] = ACTIONS(2739), + [anon_sym_sizeof] = ACTIONS(2737), + [sym_number_literal] = ACTIONS(2739), + [anon_sym_L_SQUOTE] = ACTIONS(2739), + [anon_sym_u_SQUOTE] = ACTIONS(2739), + [anon_sym_U_SQUOTE] = ACTIONS(2739), + [anon_sym_u8_SQUOTE] = ACTIONS(2739), + [anon_sym_SQUOTE] = ACTIONS(2739), + [anon_sym_L_DQUOTE] = ACTIONS(2739), + [anon_sym_u_DQUOTE] = ACTIONS(2739), + [anon_sym_U_DQUOTE] = ACTIONS(2739), + [anon_sym_u8_DQUOTE] = ACTIONS(2739), + [anon_sym_DQUOTE] = ACTIONS(2739), + [sym_true] = ACTIONS(2737), + [sym_false] = ACTIONS(2737), + [sym_null] = ACTIONS(2737), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2737), + [anon_sym_decltype] = ACTIONS(2737), + [anon_sym_virtual] = ACTIONS(2737), + [anon_sym_explicit] = ACTIONS(2737), + [anon_sym_typename] = ACTIONS(2737), + [anon_sym_template] = ACTIONS(2737), + [anon_sym_operator] = ACTIONS(2737), + [anon_sym_try] = ACTIONS(2737), + [anon_sym_delete] = ACTIONS(2737), + [anon_sym_throw] = ACTIONS(2737), + [anon_sym_namespace] = ACTIONS(2737), + [anon_sym_using] = ACTIONS(2737), + [anon_sym_static_assert] = ACTIONS(2737), + [anon_sym_concept] = ACTIONS(2737), + [anon_sym_co_return] = ACTIONS(2737), + [anon_sym_co_yield] = ACTIONS(2737), + [anon_sym_co_await] = ACTIONS(2737), + [anon_sym_new] = ACTIONS(2737), + [anon_sym_requires] = ACTIONS(2737), + [sym_this] = ACTIONS(2737), + [sym_nullptr] = ACTIONS(2737), + [sym_raw_string_literal] = ACTIONS(2739), }, - [745] = { - [sym_identifier] = ACTIONS(2351), - [aux_sym_preproc_include_token1] = ACTIONS(2351), - [aux_sym_preproc_def_token1] = ACTIONS(2351), - [aux_sym_preproc_if_token1] = ACTIONS(2351), - [aux_sym_preproc_if_token2] = ACTIONS(2351), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2351), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2351), - [sym_preproc_directive] = ACTIONS(2351), - [anon_sym_LPAREN2] = ACTIONS(2353), - [anon_sym_BANG] = ACTIONS(2353), - [anon_sym_TILDE] = ACTIONS(2353), - [anon_sym_DASH] = ACTIONS(2351), - [anon_sym_PLUS] = ACTIONS(2351), - [anon_sym_STAR] = ACTIONS(2353), - [anon_sym_AMP_AMP] = ACTIONS(2353), - [anon_sym_AMP] = ACTIONS(2351), - [anon_sym_SEMI] = ACTIONS(2353), - [anon_sym_typedef] = ACTIONS(2351), - [anon_sym_extern] = ACTIONS(2351), - [anon_sym___attribute__] = ACTIONS(2351), - [anon_sym_COLON_COLON] = ACTIONS(2353), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2353), - [anon_sym___declspec] = ACTIONS(2351), - [anon_sym___based] = ACTIONS(2351), - [anon_sym___cdecl] = ACTIONS(2351), - [anon_sym___clrcall] = ACTIONS(2351), - [anon_sym___stdcall] = ACTIONS(2351), - [anon_sym___fastcall] = ACTIONS(2351), - [anon_sym___thiscall] = ACTIONS(2351), - [anon_sym___vectorcall] = ACTIONS(2351), - [anon_sym_LBRACE] = ACTIONS(2353), - [anon_sym_LBRACK] = ACTIONS(2351), - [anon_sym_static] = ACTIONS(2351), - [anon_sym_register] = ACTIONS(2351), - [anon_sym_inline] = ACTIONS(2351), - [anon_sym_thread_local] = ACTIONS(2351), - [anon_sym_const] = ACTIONS(2351), - [anon_sym_volatile] = ACTIONS(2351), - [anon_sym_restrict] = ACTIONS(2351), - [anon_sym__Atomic] = ACTIONS(2351), - [anon_sym_mutable] = ACTIONS(2351), - [anon_sym_constexpr] = ACTIONS(2351), - [anon_sym_constinit] = ACTIONS(2351), - [anon_sym_consteval] = ACTIONS(2351), - [anon_sym_signed] = ACTIONS(2351), - [anon_sym_unsigned] = ACTIONS(2351), - [anon_sym_long] = ACTIONS(2351), - [anon_sym_short] = ACTIONS(2351), - [sym_primitive_type] = ACTIONS(2351), - [anon_sym_enum] = ACTIONS(2351), - [anon_sym_class] = ACTIONS(2351), - [anon_sym_struct] = ACTIONS(2351), - [anon_sym_union] = ACTIONS(2351), - [anon_sym_if] = ACTIONS(2351), - [anon_sym_else] = ACTIONS(2351), - [anon_sym_switch] = ACTIONS(2351), - [anon_sym_case] = ACTIONS(2351), - [anon_sym_default] = ACTIONS(2351), - [anon_sym_while] = ACTIONS(2351), - [anon_sym_do] = ACTIONS(2351), - [anon_sym_for] = ACTIONS(2351), - [anon_sym_return] = ACTIONS(2351), - [anon_sym_break] = ACTIONS(2351), - [anon_sym_continue] = ACTIONS(2351), - [anon_sym_goto] = ACTIONS(2351), - [anon_sym_DASH_DASH] = ACTIONS(2353), - [anon_sym_PLUS_PLUS] = ACTIONS(2353), - [anon_sym_sizeof] = ACTIONS(2351), - [sym_number_literal] = ACTIONS(2353), - [anon_sym_L_SQUOTE] = ACTIONS(2353), - [anon_sym_u_SQUOTE] = ACTIONS(2353), - [anon_sym_U_SQUOTE] = ACTIONS(2353), - [anon_sym_u8_SQUOTE] = ACTIONS(2353), - [anon_sym_SQUOTE] = ACTIONS(2353), - [anon_sym_L_DQUOTE] = ACTIONS(2353), - [anon_sym_u_DQUOTE] = ACTIONS(2353), - [anon_sym_U_DQUOTE] = ACTIONS(2353), - [anon_sym_u8_DQUOTE] = ACTIONS(2353), - [anon_sym_DQUOTE] = ACTIONS(2353), - [sym_true] = ACTIONS(2351), - [sym_false] = ACTIONS(2351), - [sym_null] = ACTIONS(2351), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2351), - [anon_sym_decltype] = ACTIONS(2351), - [anon_sym_virtual] = ACTIONS(2351), - [anon_sym_explicit] = ACTIONS(2351), - [anon_sym_typename] = ACTIONS(2351), - [anon_sym_template] = ACTIONS(2351), - [anon_sym_operator] = ACTIONS(2351), - [anon_sym_try] = ACTIONS(2351), - [anon_sym_delete] = ACTIONS(2351), - [anon_sym_throw] = ACTIONS(2351), - [anon_sym_namespace] = ACTIONS(2351), - [anon_sym_using] = ACTIONS(2351), - [anon_sym_static_assert] = ACTIONS(2351), - [anon_sym_concept] = ACTIONS(2351), - [anon_sym_co_return] = ACTIONS(2351), - [anon_sym_co_yield] = ACTIONS(2351), - [anon_sym_co_await] = ACTIONS(2351), - [anon_sym_new] = ACTIONS(2351), - [anon_sym_requires] = ACTIONS(2351), - [sym_this] = ACTIONS(2351), - [sym_nullptr] = ACTIONS(2351), - [sym_raw_string_literal] = ACTIONS(2353), + [489] = { + [sym_identifier] = ACTIONS(2741), + [aux_sym_preproc_include_token1] = ACTIONS(2741), + [aux_sym_preproc_def_token1] = ACTIONS(2741), + [aux_sym_preproc_if_token1] = ACTIONS(2741), + [aux_sym_preproc_if_token2] = ACTIONS(2741), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2741), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2741), + [aux_sym_preproc_else_token1] = ACTIONS(2741), + [aux_sym_preproc_elif_token1] = ACTIONS(2741), + [sym_preproc_directive] = ACTIONS(2741), + [anon_sym_LPAREN2] = ACTIONS(2743), + [anon_sym_BANG] = ACTIONS(2743), + [anon_sym_TILDE] = ACTIONS(2743), + [anon_sym_DASH] = ACTIONS(2741), + [anon_sym_PLUS] = ACTIONS(2741), + [anon_sym_STAR] = ACTIONS(2743), + [anon_sym_AMP_AMP] = ACTIONS(2743), + [anon_sym_AMP] = ACTIONS(2741), + [anon_sym_SEMI] = ACTIONS(2743), + [anon_sym_typedef] = ACTIONS(2741), + [anon_sym_extern] = ACTIONS(2741), + [anon_sym___attribute__] = ACTIONS(2741), + [anon_sym_COLON_COLON] = ACTIONS(2743), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2743), + [anon_sym___declspec] = ACTIONS(2741), + [anon_sym___based] = ACTIONS(2741), + [anon_sym___cdecl] = ACTIONS(2741), + [anon_sym___clrcall] = ACTIONS(2741), + [anon_sym___stdcall] = ACTIONS(2741), + [anon_sym___fastcall] = ACTIONS(2741), + [anon_sym___thiscall] = ACTIONS(2741), + [anon_sym___vectorcall] = ACTIONS(2741), + [anon_sym_LBRACE] = ACTIONS(2743), + [anon_sym_LBRACK] = ACTIONS(2741), + [anon_sym_static] = ACTIONS(2741), + [anon_sym_register] = ACTIONS(2741), + [anon_sym_inline] = ACTIONS(2741), + [anon_sym_thread_local] = ACTIONS(2741), + [anon_sym_const] = ACTIONS(2741), + [anon_sym_volatile] = ACTIONS(2741), + [anon_sym_restrict] = ACTIONS(2741), + [anon_sym__Atomic] = ACTIONS(2741), + [anon_sym_mutable] = ACTIONS(2741), + [anon_sym_constexpr] = ACTIONS(2741), + [anon_sym_constinit] = ACTIONS(2741), + [anon_sym_consteval] = ACTIONS(2741), + [anon_sym_signed] = ACTIONS(2741), + [anon_sym_unsigned] = ACTIONS(2741), + [anon_sym_long] = ACTIONS(2741), + [anon_sym_short] = ACTIONS(2741), + [sym_primitive_type] = ACTIONS(2741), + [anon_sym_enum] = ACTIONS(2741), + [anon_sym_class] = ACTIONS(2741), + [anon_sym_struct] = ACTIONS(2741), + [anon_sym_union] = ACTIONS(2741), + [anon_sym_if] = ACTIONS(2741), + [anon_sym_switch] = ACTIONS(2741), + [anon_sym_case] = ACTIONS(2741), + [anon_sym_default] = ACTIONS(2741), + [anon_sym_while] = ACTIONS(2741), + [anon_sym_do] = ACTIONS(2741), + [anon_sym_for] = ACTIONS(2741), + [anon_sym_return] = ACTIONS(2741), + [anon_sym_break] = ACTIONS(2741), + [anon_sym_continue] = ACTIONS(2741), + [anon_sym_goto] = ACTIONS(2741), + [anon_sym_not] = ACTIONS(2741), + [anon_sym_compl] = ACTIONS(2741), + [anon_sym_DASH_DASH] = ACTIONS(2743), + [anon_sym_PLUS_PLUS] = ACTIONS(2743), + [anon_sym_sizeof] = ACTIONS(2741), + [sym_number_literal] = ACTIONS(2743), + [anon_sym_L_SQUOTE] = ACTIONS(2743), + [anon_sym_u_SQUOTE] = ACTIONS(2743), + [anon_sym_U_SQUOTE] = ACTIONS(2743), + [anon_sym_u8_SQUOTE] = ACTIONS(2743), + [anon_sym_SQUOTE] = ACTIONS(2743), + [anon_sym_L_DQUOTE] = ACTIONS(2743), + [anon_sym_u_DQUOTE] = ACTIONS(2743), + [anon_sym_U_DQUOTE] = ACTIONS(2743), + [anon_sym_u8_DQUOTE] = ACTIONS(2743), + [anon_sym_DQUOTE] = ACTIONS(2743), + [sym_true] = ACTIONS(2741), + [sym_false] = ACTIONS(2741), + [sym_null] = ACTIONS(2741), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2741), + [anon_sym_decltype] = ACTIONS(2741), + [anon_sym_virtual] = ACTIONS(2741), + [anon_sym_explicit] = ACTIONS(2741), + [anon_sym_typename] = ACTIONS(2741), + [anon_sym_template] = ACTIONS(2741), + [anon_sym_operator] = ACTIONS(2741), + [anon_sym_try] = ACTIONS(2741), + [anon_sym_delete] = ACTIONS(2741), + [anon_sym_throw] = ACTIONS(2741), + [anon_sym_namespace] = ACTIONS(2741), + [anon_sym_using] = ACTIONS(2741), + [anon_sym_static_assert] = ACTIONS(2741), + [anon_sym_concept] = ACTIONS(2741), + [anon_sym_co_return] = ACTIONS(2741), + [anon_sym_co_yield] = ACTIONS(2741), + [anon_sym_co_await] = ACTIONS(2741), + [anon_sym_new] = ACTIONS(2741), + [anon_sym_requires] = ACTIONS(2741), + [sym_this] = ACTIONS(2741), + [sym_nullptr] = ACTIONS(2741), + [sym_raw_string_literal] = ACTIONS(2743), }, - [746] = { - [sym_identifier] = ACTIONS(2351), - [aux_sym_preproc_include_token1] = ACTIONS(2351), - [aux_sym_preproc_def_token1] = ACTIONS(2351), - [aux_sym_preproc_if_token1] = ACTIONS(2351), - [aux_sym_preproc_if_token2] = ACTIONS(2351), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2351), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2351), - [sym_preproc_directive] = ACTIONS(2351), - [anon_sym_LPAREN2] = ACTIONS(2353), - [anon_sym_BANG] = ACTIONS(2353), - [anon_sym_TILDE] = ACTIONS(2353), - [anon_sym_DASH] = ACTIONS(2351), - [anon_sym_PLUS] = ACTIONS(2351), - [anon_sym_STAR] = ACTIONS(2353), - [anon_sym_AMP_AMP] = ACTIONS(2353), - [anon_sym_AMP] = ACTIONS(2351), - [anon_sym_SEMI] = ACTIONS(2353), - [anon_sym_typedef] = ACTIONS(2351), - [anon_sym_extern] = ACTIONS(2351), - [anon_sym___attribute__] = ACTIONS(2351), - [anon_sym_COLON_COLON] = ACTIONS(2353), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2353), - [anon_sym___declspec] = ACTIONS(2351), - [anon_sym___based] = ACTIONS(2351), - [anon_sym___cdecl] = ACTIONS(2351), - [anon_sym___clrcall] = ACTIONS(2351), - [anon_sym___stdcall] = ACTIONS(2351), - [anon_sym___fastcall] = ACTIONS(2351), - [anon_sym___thiscall] = ACTIONS(2351), - [anon_sym___vectorcall] = ACTIONS(2351), - [anon_sym_LBRACE] = ACTIONS(2353), - [anon_sym_LBRACK] = ACTIONS(2351), - [anon_sym_static] = ACTIONS(2351), - [anon_sym_register] = ACTIONS(2351), - [anon_sym_inline] = ACTIONS(2351), - [anon_sym_thread_local] = ACTIONS(2351), - [anon_sym_const] = ACTIONS(2351), - [anon_sym_volatile] = ACTIONS(2351), - [anon_sym_restrict] = ACTIONS(2351), - [anon_sym__Atomic] = ACTIONS(2351), - [anon_sym_mutable] = ACTIONS(2351), - [anon_sym_constexpr] = ACTIONS(2351), - [anon_sym_constinit] = ACTIONS(2351), - [anon_sym_consteval] = ACTIONS(2351), - [anon_sym_signed] = ACTIONS(2351), - [anon_sym_unsigned] = ACTIONS(2351), - [anon_sym_long] = ACTIONS(2351), - [anon_sym_short] = ACTIONS(2351), - [sym_primitive_type] = ACTIONS(2351), - [anon_sym_enum] = ACTIONS(2351), - [anon_sym_class] = ACTIONS(2351), - [anon_sym_struct] = ACTIONS(2351), - [anon_sym_union] = ACTIONS(2351), - [anon_sym_if] = ACTIONS(2351), - [anon_sym_else] = ACTIONS(2351), - [anon_sym_switch] = ACTIONS(2351), - [anon_sym_case] = ACTIONS(2351), - [anon_sym_default] = ACTIONS(2351), - [anon_sym_while] = ACTIONS(2351), - [anon_sym_do] = ACTIONS(2351), - [anon_sym_for] = ACTIONS(2351), - [anon_sym_return] = ACTIONS(2351), - [anon_sym_break] = ACTIONS(2351), - [anon_sym_continue] = ACTIONS(2351), - [anon_sym_goto] = ACTIONS(2351), - [anon_sym_DASH_DASH] = ACTIONS(2353), - [anon_sym_PLUS_PLUS] = ACTIONS(2353), - [anon_sym_sizeof] = ACTIONS(2351), - [sym_number_literal] = ACTIONS(2353), - [anon_sym_L_SQUOTE] = ACTIONS(2353), - [anon_sym_u_SQUOTE] = ACTIONS(2353), - [anon_sym_U_SQUOTE] = ACTIONS(2353), - [anon_sym_u8_SQUOTE] = ACTIONS(2353), - [anon_sym_SQUOTE] = ACTIONS(2353), - [anon_sym_L_DQUOTE] = ACTIONS(2353), - [anon_sym_u_DQUOTE] = ACTIONS(2353), - [anon_sym_U_DQUOTE] = ACTIONS(2353), - [anon_sym_u8_DQUOTE] = ACTIONS(2353), - [anon_sym_DQUOTE] = ACTIONS(2353), - [sym_true] = ACTIONS(2351), - [sym_false] = ACTIONS(2351), - [sym_null] = ACTIONS(2351), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2351), - [anon_sym_decltype] = ACTIONS(2351), - [anon_sym_virtual] = ACTIONS(2351), - [anon_sym_explicit] = ACTIONS(2351), - [anon_sym_typename] = ACTIONS(2351), - [anon_sym_template] = ACTIONS(2351), - [anon_sym_operator] = ACTIONS(2351), - [anon_sym_try] = ACTIONS(2351), - [anon_sym_delete] = ACTIONS(2351), - [anon_sym_throw] = ACTIONS(2351), - [anon_sym_namespace] = ACTIONS(2351), - [anon_sym_using] = ACTIONS(2351), - [anon_sym_static_assert] = ACTIONS(2351), - [anon_sym_concept] = ACTIONS(2351), - [anon_sym_co_return] = ACTIONS(2351), - [anon_sym_co_yield] = ACTIONS(2351), - [anon_sym_co_await] = ACTIONS(2351), - [anon_sym_new] = ACTIONS(2351), - [anon_sym_requires] = ACTIONS(2351), - [sym_this] = ACTIONS(2351), - [sym_nullptr] = ACTIONS(2351), - [sym_raw_string_literal] = ACTIONS(2353), + [490] = { + [sym_identifier] = ACTIONS(2745), + [aux_sym_preproc_include_token1] = ACTIONS(2745), + [aux_sym_preproc_def_token1] = ACTIONS(2745), + [aux_sym_preproc_if_token1] = ACTIONS(2745), + [aux_sym_preproc_if_token2] = ACTIONS(2745), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2745), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2745), + [aux_sym_preproc_else_token1] = ACTIONS(2745), + [aux_sym_preproc_elif_token1] = ACTIONS(2745), + [sym_preproc_directive] = ACTIONS(2745), + [anon_sym_LPAREN2] = ACTIONS(2747), + [anon_sym_BANG] = ACTIONS(2747), + [anon_sym_TILDE] = ACTIONS(2747), + [anon_sym_DASH] = ACTIONS(2745), + [anon_sym_PLUS] = ACTIONS(2745), + [anon_sym_STAR] = ACTIONS(2747), + [anon_sym_AMP_AMP] = ACTIONS(2747), + [anon_sym_AMP] = ACTIONS(2745), + [anon_sym_SEMI] = ACTIONS(2747), + [anon_sym_typedef] = ACTIONS(2745), + [anon_sym_extern] = ACTIONS(2745), + [anon_sym___attribute__] = ACTIONS(2745), + [anon_sym_COLON_COLON] = ACTIONS(2747), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2747), + [anon_sym___declspec] = ACTIONS(2745), + [anon_sym___based] = ACTIONS(2745), + [anon_sym___cdecl] = ACTIONS(2745), + [anon_sym___clrcall] = ACTIONS(2745), + [anon_sym___stdcall] = ACTIONS(2745), + [anon_sym___fastcall] = ACTIONS(2745), + [anon_sym___thiscall] = ACTIONS(2745), + [anon_sym___vectorcall] = ACTIONS(2745), + [anon_sym_LBRACE] = ACTIONS(2747), + [anon_sym_LBRACK] = ACTIONS(2745), + [anon_sym_static] = ACTIONS(2745), + [anon_sym_register] = ACTIONS(2745), + [anon_sym_inline] = ACTIONS(2745), + [anon_sym_thread_local] = ACTIONS(2745), + [anon_sym_const] = ACTIONS(2745), + [anon_sym_volatile] = ACTIONS(2745), + [anon_sym_restrict] = ACTIONS(2745), + [anon_sym__Atomic] = ACTIONS(2745), + [anon_sym_mutable] = ACTIONS(2745), + [anon_sym_constexpr] = ACTIONS(2745), + [anon_sym_constinit] = ACTIONS(2745), + [anon_sym_consteval] = ACTIONS(2745), + [anon_sym_signed] = ACTIONS(2745), + [anon_sym_unsigned] = ACTIONS(2745), + [anon_sym_long] = ACTIONS(2745), + [anon_sym_short] = ACTIONS(2745), + [sym_primitive_type] = ACTIONS(2745), + [anon_sym_enum] = ACTIONS(2745), + [anon_sym_class] = ACTIONS(2745), + [anon_sym_struct] = ACTIONS(2745), + [anon_sym_union] = ACTIONS(2745), + [anon_sym_if] = ACTIONS(2745), + [anon_sym_switch] = ACTIONS(2745), + [anon_sym_case] = ACTIONS(2745), + [anon_sym_default] = ACTIONS(2745), + [anon_sym_while] = ACTIONS(2745), + [anon_sym_do] = ACTIONS(2745), + [anon_sym_for] = ACTIONS(2745), + [anon_sym_return] = ACTIONS(2745), + [anon_sym_break] = ACTIONS(2745), + [anon_sym_continue] = ACTIONS(2745), + [anon_sym_goto] = ACTIONS(2745), + [anon_sym_not] = ACTIONS(2745), + [anon_sym_compl] = ACTIONS(2745), + [anon_sym_DASH_DASH] = ACTIONS(2747), + [anon_sym_PLUS_PLUS] = ACTIONS(2747), + [anon_sym_sizeof] = ACTIONS(2745), + [sym_number_literal] = ACTIONS(2747), + [anon_sym_L_SQUOTE] = ACTIONS(2747), + [anon_sym_u_SQUOTE] = ACTIONS(2747), + [anon_sym_U_SQUOTE] = ACTIONS(2747), + [anon_sym_u8_SQUOTE] = ACTIONS(2747), + [anon_sym_SQUOTE] = ACTIONS(2747), + [anon_sym_L_DQUOTE] = ACTIONS(2747), + [anon_sym_u_DQUOTE] = ACTIONS(2747), + [anon_sym_U_DQUOTE] = ACTIONS(2747), + [anon_sym_u8_DQUOTE] = ACTIONS(2747), + [anon_sym_DQUOTE] = ACTIONS(2747), + [sym_true] = ACTIONS(2745), + [sym_false] = ACTIONS(2745), + [sym_null] = ACTIONS(2745), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2745), + [anon_sym_decltype] = ACTIONS(2745), + [anon_sym_virtual] = ACTIONS(2745), + [anon_sym_explicit] = ACTIONS(2745), + [anon_sym_typename] = ACTIONS(2745), + [anon_sym_template] = ACTIONS(2745), + [anon_sym_operator] = ACTIONS(2745), + [anon_sym_try] = ACTIONS(2745), + [anon_sym_delete] = ACTIONS(2745), + [anon_sym_throw] = ACTIONS(2745), + [anon_sym_namespace] = ACTIONS(2745), + [anon_sym_using] = ACTIONS(2745), + [anon_sym_static_assert] = ACTIONS(2745), + [anon_sym_concept] = ACTIONS(2745), + [anon_sym_co_return] = ACTIONS(2745), + [anon_sym_co_yield] = ACTIONS(2745), + [anon_sym_co_await] = ACTIONS(2745), + [anon_sym_new] = ACTIONS(2745), + [anon_sym_requires] = ACTIONS(2745), + [sym_this] = ACTIONS(2745), + [sym_nullptr] = ACTIONS(2745), + [sym_raw_string_literal] = ACTIONS(2747), }, - [747] = { - [sym_identifier] = ACTIONS(2507), - [aux_sym_preproc_include_token1] = ACTIONS(2507), - [aux_sym_preproc_def_token1] = ACTIONS(2507), - [aux_sym_preproc_if_token1] = ACTIONS(2507), - [aux_sym_preproc_if_token2] = ACTIONS(2507), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2507), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2507), - [sym_preproc_directive] = ACTIONS(2507), - [anon_sym_LPAREN2] = ACTIONS(2509), - [anon_sym_BANG] = ACTIONS(2509), - [anon_sym_TILDE] = ACTIONS(2509), - [anon_sym_DASH] = ACTIONS(2507), - [anon_sym_PLUS] = ACTIONS(2507), - [anon_sym_STAR] = ACTIONS(2509), - [anon_sym_AMP_AMP] = ACTIONS(2509), - [anon_sym_AMP] = ACTIONS(2507), - [anon_sym_SEMI] = ACTIONS(2509), - [anon_sym_typedef] = ACTIONS(2507), - [anon_sym_extern] = ACTIONS(2507), - [anon_sym___attribute__] = ACTIONS(2507), - [anon_sym_COLON_COLON] = ACTIONS(2509), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2509), - [anon_sym___declspec] = ACTIONS(2507), - [anon_sym___based] = ACTIONS(2507), - [anon_sym___cdecl] = ACTIONS(2507), - [anon_sym___clrcall] = ACTIONS(2507), - [anon_sym___stdcall] = ACTIONS(2507), - [anon_sym___fastcall] = ACTIONS(2507), - [anon_sym___thiscall] = ACTIONS(2507), - [anon_sym___vectorcall] = ACTIONS(2507), - [anon_sym_LBRACE] = ACTIONS(2509), - [anon_sym_LBRACK] = ACTIONS(2507), - [anon_sym_static] = ACTIONS(2507), - [anon_sym_register] = ACTIONS(2507), - [anon_sym_inline] = ACTIONS(2507), - [anon_sym_thread_local] = ACTIONS(2507), - [anon_sym_const] = ACTIONS(2507), - [anon_sym_volatile] = ACTIONS(2507), - [anon_sym_restrict] = ACTIONS(2507), - [anon_sym__Atomic] = ACTIONS(2507), - [anon_sym_mutable] = ACTIONS(2507), - [anon_sym_constexpr] = ACTIONS(2507), - [anon_sym_constinit] = ACTIONS(2507), - [anon_sym_consteval] = ACTIONS(2507), - [anon_sym_signed] = ACTIONS(2507), - [anon_sym_unsigned] = ACTIONS(2507), - [anon_sym_long] = ACTIONS(2507), - [anon_sym_short] = ACTIONS(2507), - [sym_primitive_type] = ACTIONS(2507), - [anon_sym_enum] = ACTIONS(2507), - [anon_sym_class] = ACTIONS(2507), - [anon_sym_struct] = ACTIONS(2507), - [anon_sym_union] = ACTIONS(2507), - [anon_sym_if] = ACTIONS(2507), - [anon_sym_else] = ACTIONS(2507), - [anon_sym_switch] = ACTIONS(2507), - [anon_sym_case] = ACTIONS(2507), - [anon_sym_default] = ACTIONS(2507), - [anon_sym_while] = ACTIONS(2507), - [anon_sym_do] = ACTIONS(2507), - [anon_sym_for] = ACTIONS(2507), - [anon_sym_return] = ACTIONS(2507), - [anon_sym_break] = ACTIONS(2507), - [anon_sym_continue] = ACTIONS(2507), - [anon_sym_goto] = ACTIONS(2507), - [anon_sym_DASH_DASH] = ACTIONS(2509), - [anon_sym_PLUS_PLUS] = ACTIONS(2509), - [anon_sym_sizeof] = ACTIONS(2507), - [sym_number_literal] = ACTIONS(2509), - [anon_sym_L_SQUOTE] = ACTIONS(2509), - [anon_sym_u_SQUOTE] = ACTIONS(2509), - [anon_sym_U_SQUOTE] = ACTIONS(2509), - [anon_sym_u8_SQUOTE] = ACTIONS(2509), - [anon_sym_SQUOTE] = ACTIONS(2509), - [anon_sym_L_DQUOTE] = ACTIONS(2509), - [anon_sym_u_DQUOTE] = ACTIONS(2509), - [anon_sym_U_DQUOTE] = ACTIONS(2509), - [anon_sym_u8_DQUOTE] = ACTIONS(2509), - [anon_sym_DQUOTE] = ACTIONS(2509), - [sym_true] = ACTIONS(2507), - [sym_false] = ACTIONS(2507), - [sym_null] = ACTIONS(2507), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2507), - [anon_sym_decltype] = ACTIONS(2507), - [anon_sym_virtual] = ACTIONS(2507), - [anon_sym_explicit] = ACTIONS(2507), - [anon_sym_typename] = ACTIONS(2507), - [anon_sym_template] = ACTIONS(2507), - [anon_sym_operator] = ACTIONS(2507), - [anon_sym_try] = ACTIONS(2507), - [anon_sym_delete] = ACTIONS(2507), - [anon_sym_throw] = ACTIONS(2507), - [anon_sym_namespace] = ACTIONS(2507), - [anon_sym_using] = ACTIONS(2507), - [anon_sym_static_assert] = ACTIONS(2507), - [anon_sym_concept] = ACTIONS(2507), - [anon_sym_co_return] = ACTIONS(2507), - [anon_sym_co_yield] = ACTIONS(2507), - [anon_sym_co_await] = ACTIONS(2507), - [anon_sym_new] = ACTIONS(2507), - [anon_sym_requires] = ACTIONS(2507), - [sym_this] = ACTIONS(2507), - [sym_nullptr] = ACTIONS(2507), - [sym_raw_string_literal] = ACTIONS(2509), + [491] = { + [sym_identifier] = ACTIONS(2749), + [aux_sym_preproc_include_token1] = ACTIONS(2749), + [aux_sym_preproc_def_token1] = ACTIONS(2749), + [aux_sym_preproc_if_token1] = ACTIONS(2749), + [aux_sym_preproc_if_token2] = ACTIONS(2749), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2749), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2749), + [aux_sym_preproc_else_token1] = ACTIONS(2749), + [aux_sym_preproc_elif_token1] = ACTIONS(2749), + [sym_preproc_directive] = ACTIONS(2749), + [anon_sym_LPAREN2] = ACTIONS(2751), + [anon_sym_BANG] = ACTIONS(2751), + [anon_sym_TILDE] = ACTIONS(2751), + [anon_sym_DASH] = ACTIONS(2749), + [anon_sym_PLUS] = ACTIONS(2749), + [anon_sym_STAR] = ACTIONS(2751), + [anon_sym_AMP_AMP] = ACTIONS(2751), + [anon_sym_AMP] = ACTIONS(2749), + [anon_sym_SEMI] = ACTIONS(2751), + [anon_sym_typedef] = ACTIONS(2749), + [anon_sym_extern] = ACTIONS(2749), + [anon_sym___attribute__] = ACTIONS(2749), + [anon_sym_COLON_COLON] = ACTIONS(2751), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2751), + [anon_sym___declspec] = ACTIONS(2749), + [anon_sym___based] = ACTIONS(2749), + [anon_sym___cdecl] = ACTIONS(2749), + [anon_sym___clrcall] = ACTIONS(2749), + [anon_sym___stdcall] = ACTIONS(2749), + [anon_sym___fastcall] = ACTIONS(2749), + [anon_sym___thiscall] = ACTIONS(2749), + [anon_sym___vectorcall] = ACTIONS(2749), + [anon_sym_LBRACE] = ACTIONS(2751), + [anon_sym_LBRACK] = ACTIONS(2749), + [anon_sym_static] = ACTIONS(2749), + [anon_sym_register] = ACTIONS(2749), + [anon_sym_inline] = ACTIONS(2749), + [anon_sym_thread_local] = ACTIONS(2749), + [anon_sym_const] = ACTIONS(2749), + [anon_sym_volatile] = ACTIONS(2749), + [anon_sym_restrict] = ACTIONS(2749), + [anon_sym__Atomic] = ACTIONS(2749), + [anon_sym_mutable] = ACTIONS(2749), + [anon_sym_constexpr] = ACTIONS(2749), + [anon_sym_constinit] = ACTIONS(2749), + [anon_sym_consteval] = ACTIONS(2749), + [anon_sym_signed] = ACTIONS(2749), + [anon_sym_unsigned] = ACTIONS(2749), + [anon_sym_long] = ACTIONS(2749), + [anon_sym_short] = ACTIONS(2749), + [sym_primitive_type] = ACTIONS(2749), + [anon_sym_enum] = ACTIONS(2749), + [anon_sym_class] = ACTIONS(2749), + [anon_sym_struct] = ACTIONS(2749), + [anon_sym_union] = ACTIONS(2749), + [anon_sym_if] = ACTIONS(2749), + [anon_sym_switch] = ACTIONS(2749), + [anon_sym_case] = ACTIONS(2749), + [anon_sym_default] = ACTIONS(2749), + [anon_sym_while] = ACTIONS(2749), + [anon_sym_do] = ACTIONS(2749), + [anon_sym_for] = ACTIONS(2749), + [anon_sym_return] = ACTIONS(2749), + [anon_sym_break] = ACTIONS(2749), + [anon_sym_continue] = ACTIONS(2749), + [anon_sym_goto] = ACTIONS(2749), + [anon_sym_not] = ACTIONS(2749), + [anon_sym_compl] = ACTIONS(2749), + [anon_sym_DASH_DASH] = ACTIONS(2751), + [anon_sym_PLUS_PLUS] = ACTIONS(2751), + [anon_sym_sizeof] = ACTIONS(2749), + [sym_number_literal] = ACTIONS(2751), + [anon_sym_L_SQUOTE] = ACTIONS(2751), + [anon_sym_u_SQUOTE] = ACTIONS(2751), + [anon_sym_U_SQUOTE] = ACTIONS(2751), + [anon_sym_u8_SQUOTE] = ACTIONS(2751), + [anon_sym_SQUOTE] = ACTIONS(2751), + [anon_sym_L_DQUOTE] = ACTIONS(2751), + [anon_sym_u_DQUOTE] = ACTIONS(2751), + [anon_sym_U_DQUOTE] = ACTIONS(2751), + [anon_sym_u8_DQUOTE] = ACTIONS(2751), + [anon_sym_DQUOTE] = ACTIONS(2751), + [sym_true] = ACTIONS(2749), + [sym_false] = ACTIONS(2749), + [sym_null] = ACTIONS(2749), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2749), + [anon_sym_decltype] = ACTIONS(2749), + [anon_sym_virtual] = ACTIONS(2749), + [anon_sym_explicit] = ACTIONS(2749), + [anon_sym_typename] = ACTIONS(2749), + [anon_sym_template] = ACTIONS(2749), + [anon_sym_operator] = ACTIONS(2749), + [anon_sym_try] = ACTIONS(2749), + [anon_sym_delete] = ACTIONS(2749), + [anon_sym_throw] = ACTIONS(2749), + [anon_sym_namespace] = ACTIONS(2749), + [anon_sym_using] = ACTIONS(2749), + [anon_sym_static_assert] = ACTIONS(2749), + [anon_sym_concept] = ACTIONS(2749), + [anon_sym_co_return] = ACTIONS(2749), + [anon_sym_co_yield] = ACTIONS(2749), + [anon_sym_co_await] = ACTIONS(2749), + [anon_sym_new] = ACTIONS(2749), + [anon_sym_requires] = ACTIONS(2749), + [sym_this] = ACTIONS(2749), + [sym_nullptr] = ACTIONS(2749), + [sym_raw_string_literal] = ACTIONS(2751), }, - [748] = { - [sym_identifier] = ACTIONS(2503), - [aux_sym_preproc_include_token1] = ACTIONS(2503), - [aux_sym_preproc_def_token1] = ACTIONS(2503), - [aux_sym_preproc_if_token1] = ACTIONS(2503), - [aux_sym_preproc_if_token2] = ACTIONS(2503), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2503), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2503), - [sym_preproc_directive] = ACTIONS(2503), - [anon_sym_LPAREN2] = ACTIONS(2505), - [anon_sym_BANG] = ACTIONS(2505), - [anon_sym_TILDE] = ACTIONS(2505), - [anon_sym_DASH] = ACTIONS(2503), - [anon_sym_PLUS] = ACTIONS(2503), - [anon_sym_STAR] = ACTIONS(2505), - [anon_sym_AMP_AMP] = ACTIONS(2505), - [anon_sym_AMP] = ACTIONS(2503), - [anon_sym_SEMI] = ACTIONS(2505), - [anon_sym_typedef] = ACTIONS(2503), - [anon_sym_extern] = ACTIONS(2503), - [anon_sym___attribute__] = ACTIONS(2503), - [anon_sym_COLON_COLON] = ACTIONS(2505), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2505), - [anon_sym___declspec] = ACTIONS(2503), - [anon_sym___based] = ACTIONS(2503), - [anon_sym___cdecl] = ACTIONS(2503), - [anon_sym___clrcall] = ACTIONS(2503), - [anon_sym___stdcall] = ACTIONS(2503), - [anon_sym___fastcall] = ACTIONS(2503), - [anon_sym___thiscall] = ACTIONS(2503), - [anon_sym___vectorcall] = ACTIONS(2503), - [anon_sym_LBRACE] = ACTIONS(2505), - [anon_sym_LBRACK] = ACTIONS(2503), - [anon_sym_static] = ACTIONS(2503), - [anon_sym_register] = ACTIONS(2503), - [anon_sym_inline] = ACTIONS(2503), - [anon_sym_thread_local] = ACTIONS(2503), - [anon_sym_const] = ACTIONS(2503), - [anon_sym_volatile] = ACTIONS(2503), - [anon_sym_restrict] = ACTIONS(2503), - [anon_sym__Atomic] = ACTIONS(2503), - [anon_sym_mutable] = ACTIONS(2503), - [anon_sym_constexpr] = ACTIONS(2503), - [anon_sym_constinit] = ACTIONS(2503), - [anon_sym_consteval] = ACTIONS(2503), - [anon_sym_signed] = ACTIONS(2503), - [anon_sym_unsigned] = ACTIONS(2503), - [anon_sym_long] = ACTIONS(2503), - [anon_sym_short] = ACTIONS(2503), - [sym_primitive_type] = ACTIONS(2503), - [anon_sym_enum] = ACTIONS(2503), - [anon_sym_class] = ACTIONS(2503), - [anon_sym_struct] = ACTIONS(2503), - [anon_sym_union] = ACTIONS(2503), - [anon_sym_if] = ACTIONS(2503), - [anon_sym_else] = ACTIONS(2503), - [anon_sym_switch] = ACTIONS(2503), - [anon_sym_case] = ACTIONS(2503), - [anon_sym_default] = ACTIONS(2503), - [anon_sym_while] = ACTIONS(2503), - [anon_sym_do] = ACTIONS(2503), - [anon_sym_for] = ACTIONS(2503), - [anon_sym_return] = ACTIONS(2503), - [anon_sym_break] = ACTIONS(2503), - [anon_sym_continue] = ACTIONS(2503), - [anon_sym_goto] = ACTIONS(2503), - [anon_sym_DASH_DASH] = ACTIONS(2505), - [anon_sym_PLUS_PLUS] = ACTIONS(2505), - [anon_sym_sizeof] = ACTIONS(2503), - [sym_number_literal] = ACTIONS(2505), - [anon_sym_L_SQUOTE] = ACTIONS(2505), - [anon_sym_u_SQUOTE] = ACTIONS(2505), - [anon_sym_U_SQUOTE] = ACTIONS(2505), - [anon_sym_u8_SQUOTE] = ACTIONS(2505), - [anon_sym_SQUOTE] = ACTIONS(2505), - [anon_sym_L_DQUOTE] = ACTIONS(2505), - [anon_sym_u_DQUOTE] = ACTIONS(2505), - [anon_sym_U_DQUOTE] = ACTIONS(2505), - [anon_sym_u8_DQUOTE] = ACTIONS(2505), - [anon_sym_DQUOTE] = ACTIONS(2505), - [sym_true] = ACTIONS(2503), - [sym_false] = ACTIONS(2503), - [sym_null] = ACTIONS(2503), + [492] = { + [sym_identifier] = ACTIONS(2753), + [aux_sym_preproc_include_token1] = ACTIONS(2753), + [aux_sym_preproc_def_token1] = ACTIONS(2753), + [aux_sym_preproc_if_token1] = ACTIONS(2753), + [aux_sym_preproc_if_token2] = ACTIONS(2753), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2753), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2753), + [aux_sym_preproc_else_token1] = ACTIONS(2753), + [aux_sym_preproc_elif_token1] = ACTIONS(2753), + [sym_preproc_directive] = ACTIONS(2753), + [anon_sym_LPAREN2] = ACTIONS(2755), + [anon_sym_BANG] = ACTIONS(2755), + [anon_sym_TILDE] = ACTIONS(2755), + [anon_sym_DASH] = ACTIONS(2753), + [anon_sym_PLUS] = ACTIONS(2753), + [anon_sym_STAR] = ACTIONS(2755), + [anon_sym_AMP_AMP] = ACTIONS(2755), + [anon_sym_AMP] = ACTIONS(2753), + [anon_sym_SEMI] = ACTIONS(2755), + [anon_sym_typedef] = ACTIONS(2753), + [anon_sym_extern] = ACTIONS(2753), + [anon_sym___attribute__] = ACTIONS(2753), + [anon_sym_COLON_COLON] = ACTIONS(2755), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2755), + [anon_sym___declspec] = ACTIONS(2753), + [anon_sym___based] = ACTIONS(2753), + [anon_sym___cdecl] = ACTIONS(2753), + [anon_sym___clrcall] = ACTIONS(2753), + [anon_sym___stdcall] = ACTIONS(2753), + [anon_sym___fastcall] = ACTIONS(2753), + [anon_sym___thiscall] = ACTIONS(2753), + [anon_sym___vectorcall] = ACTIONS(2753), + [anon_sym_LBRACE] = ACTIONS(2755), + [anon_sym_LBRACK] = ACTIONS(2753), + [anon_sym_static] = ACTIONS(2753), + [anon_sym_register] = ACTIONS(2753), + [anon_sym_inline] = ACTIONS(2753), + [anon_sym_thread_local] = ACTIONS(2753), + [anon_sym_const] = ACTIONS(2753), + [anon_sym_volatile] = ACTIONS(2753), + [anon_sym_restrict] = ACTIONS(2753), + [anon_sym__Atomic] = ACTIONS(2753), + [anon_sym_mutable] = ACTIONS(2753), + [anon_sym_constexpr] = ACTIONS(2753), + [anon_sym_constinit] = ACTIONS(2753), + [anon_sym_consteval] = ACTIONS(2753), + [anon_sym_signed] = ACTIONS(2753), + [anon_sym_unsigned] = ACTIONS(2753), + [anon_sym_long] = ACTIONS(2753), + [anon_sym_short] = ACTIONS(2753), + [sym_primitive_type] = ACTIONS(2753), + [anon_sym_enum] = ACTIONS(2753), + [anon_sym_class] = ACTIONS(2753), + [anon_sym_struct] = ACTIONS(2753), + [anon_sym_union] = ACTIONS(2753), + [anon_sym_if] = ACTIONS(2753), + [anon_sym_switch] = ACTIONS(2753), + [anon_sym_case] = ACTIONS(2753), + [anon_sym_default] = ACTIONS(2753), + [anon_sym_while] = ACTIONS(2753), + [anon_sym_do] = ACTIONS(2753), + [anon_sym_for] = ACTIONS(2753), + [anon_sym_return] = ACTIONS(2753), + [anon_sym_break] = ACTIONS(2753), + [anon_sym_continue] = ACTIONS(2753), + [anon_sym_goto] = ACTIONS(2753), + [anon_sym_not] = ACTIONS(2753), + [anon_sym_compl] = ACTIONS(2753), + [anon_sym_DASH_DASH] = ACTIONS(2755), + [anon_sym_PLUS_PLUS] = ACTIONS(2755), + [anon_sym_sizeof] = ACTIONS(2753), + [sym_number_literal] = ACTIONS(2755), + [anon_sym_L_SQUOTE] = ACTIONS(2755), + [anon_sym_u_SQUOTE] = ACTIONS(2755), + [anon_sym_U_SQUOTE] = ACTIONS(2755), + [anon_sym_u8_SQUOTE] = ACTIONS(2755), + [anon_sym_SQUOTE] = ACTIONS(2755), + [anon_sym_L_DQUOTE] = ACTIONS(2755), + [anon_sym_u_DQUOTE] = ACTIONS(2755), + [anon_sym_U_DQUOTE] = ACTIONS(2755), + [anon_sym_u8_DQUOTE] = ACTIONS(2755), + [anon_sym_DQUOTE] = ACTIONS(2755), + [sym_true] = ACTIONS(2753), + [sym_false] = ACTIONS(2753), + [sym_null] = ACTIONS(2753), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2503), - [anon_sym_decltype] = ACTIONS(2503), - [anon_sym_virtual] = ACTIONS(2503), - [anon_sym_explicit] = ACTIONS(2503), - [anon_sym_typename] = ACTIONS(2503), - [anon_sym_template] = ACTIONS(2503), - [anon_sym_operator] = ACTIONS(2503), - [anon_sym_try] = ACTIONS(2503), - [anon_sym_delete] = ACTIONS(2503), - [anon_sym_throw] = ACTIONS(2503), - [anon_sym_namespace] = ACTIONS(2503), - [anon_sym_using] = ACTIONS(2503), - [anon_sym_static_assert] = ACTIONS(2503), - [anon_sym_concept] = ACTIONS(2503), - [anon_sym_co_return] = ACTIONS(2503), - [anon_sym_co_yield] = ACTIONS(2503), - [anon_sym_co_await] = ACTIONS(2503), - [anon_sym_new] = ACTIONS(2503), - [anon_sym_requires] = ACTIONS(2503), - [sym_this] = ACTIONS(2503), - [sym_nullptr] = ACTIONS(2503), - [sym_raw_string_literal] = ACTIONS(2505), + [sym_auto] = ACTIONS(2753), + [anon_sym_decltype] = ACTIONS(2753), + [anon_sym_virtual] = ACTIONS(2753), + [anon_sym_explicit] = ACTIONS(2753), + [anon_sym_typename] = ACTIONS(2753), + [anon_sym_template] = ACTIONS(2753), + [anon_sym_operator] = ACTIONS(2753), + [anon_sym_try] = ACTIONS(2753), + [anon_sym_delete] = ACTIONS(2753), + [anon_sym_throw] = ACTIONS(2753), + [anon_sym_namespace] = ACTIONS(2753), + [anon_sym_using] = ACTIONS(2753), + [anon_sym_static_assert] = ACTIONS(2753), + [anon_sym_concept] = ACTIONS(2753), + [anon_sym_co_return] = ACTIONS(2753), + [anon_sym_co_yield] = ACTIONS(2753), + [anon_sym_co_await] = ACTIONS(2753), + [anon_sym_new] = ACTIONS(2753), + [anon_sym_requires] = ACTIONS(2753), + [sym_this] = ACTIONS(2753), + [sym_nullptr] = ACTIONS(2753), + [sym_raw_string_literal] = ACTIONS(2755), }, - [749] = { - [sym_identifier] = ACTIONS(2499), - [aux_sym_preproc_include_token1] = ACTIONS(2499), - [aux_sym_preproc_def_token1] = ACTIONS(2499), - [aux_sym_preproc_if_token1] = ACTIONS(2499), - [aux_sym_preproc_if_token2] = ACTIONS(2499), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2499), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2499), - [sym_preproc_directive] = ACTIONS(2499), - [anon_sym_LPAREN2] = ACTIONS(2501), - [anon_sym_BANG] = ACTIONS(2501), - [anon_sym_TILDE] = ACTIONS(2501), - [anon_sym_DASH] = ACTIONS(2499), - [anon_sym_PLUS] = ACTIONS(2499), - [anon_sym_STAR] = ACTIONS(2501), - [anon_sym_AMP_AMP] = ACTIONS(2501), - [anon_sym_AMP] = ACTIONS(2499), - [anon_sym_SEMI] = ACTIONS(2501), - [anon_sym_typedef] = ACTIONS(2499), - [anon_sym_extern] = ACTIONS(2499), - [anon_sym___attribute__] = ACTIONS(2499), - [anon_sym_COLON_COLON] = ACTIONS(2501), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2501), - [anon_sym___declspec] = ACTIONS(2499), - [anon_sym___based] = ACTIONS(2499), - [anon_sym___cdecl] = ACTIONS(2499), - [anon_sym___clrcall] = ACTIONS(2499), - [anon_sym___stdcall] = ACTIONS(2499), - [anon_sym___fastcall] = ACTIONS(2499), - [anon_sym___thiscall] = ACTIONS(2499), - [anon_sym___vectorcall] = ACTIONS(2499), - [anon_sym_LBRACE] = ACTIONS(2501), - [anon_sym_LBRACK] = ACTIONS(2499), - [anon_sym_static] = ACTIONS(2499), - [anon_sym_register] = ACTIONS(2499), - [anon_sym_inline] = ACTIONS(2499), - [anon_sym_thread_local] = ACTIONS(2499), - [anon_sym_const] = ACTIONS(2499), - [anon_sym_volatile] = ACTIONS(2499), - [anon_sym_restrict] = ACTIONS(2499), - [anon_sym__Atomic] = ACTIONS(2499), - [anon_sym_mutable] = ACTIONS(2499), - [anon_sym_constexpr] = ACTIONS(2499), - [anon_sym_constinit] = ACTIONS(2499), - [anon_sym_consteval] = ACTIONS(2499), - [anon_sym_signed] = ACTIONS(2499), - [anon_sym_unsigned] = ACTIONS(2499), - [anon_sym_long] = ACTIONS(2499), - [anon_sym_short] = ACTIONS(2499), - [sym_primitive_type] = ACTIONS(2499), - [anon_sym_enum] = ACTIONS(2499), - [anon_sym_class] = ACTIONS(2499), - [anon_sym_struct] = ACTIONS(2499), - [anon_sym_union] = ACTIONS(2499), - [anon_sym_if] = ACTIONS(2499), - [anon_sym_else] = ACTIONS(2499), - [anon_sym_switch] = ACTIONS(2499), - [anon_sym_case] = ACTIONS(2499), - [anon_sym_default] = ACTIONS(2499), - [anon_sym_while] = ACTIONS(2499), - [anon_sym_do] = ACTIONS(2499), - [anon_sym_for] = ACTIONS(2499), - [anon_sym_return] = ACTIONS(2499), - [anon_sym_break] = ACTIONS(2499), - [anon_sym_continue] = ACTIONS(2499), - [anon_sym_goto] = ACTIONS(2499), - [anon_sym_DASH_DASH] = ACTIONS(2501), - [anon_sym_PLUS_PLUS] = ACTIONS(2501), - [anon_sym_sizeof] = ACTIONS(2499), - [sym_number_literal] = ACTIONS(2501), - [anon_sym_L_SQUOTE] = ACTIONS(2501), - [anon_sym_u_SQUOTE] = ACTIONS(2501), - [anon_sym_U_SQUOTE] = ACTIONS(2501), - [anon_sym_u8_SQUOTE] = ACTIONS(2501), - [anon_sym_SQUOTE] = ACTIONS(2501), - [anon_sym_L_DQUOTE] = ACTIONS(2501), - [anon_sym_u_DQUOTE] = ACTIONS(2501), - [anon_sym_U_DQUOTE] = ACTIONS(2501), - [anon_sym_u8_DQUOTE] = ACTIONS(2501), - [anon_sym_DQUOTE] = ACTIONS(2501), - [sym_true] = ACTIONS(2499), - [sym_false] = ACTIONS(2499), - [sym_null] = ACTIONS(2499), + [493] = { + [sym_identifier] = ACTIONS(2757), + [aux_sym_preproc_include_token1] = ACTIONS(2757), + [aux_sym_preproc_def_token1] = ACTIONS(2757), + [aux_sym_preproc_if_token1] = ACTIONS(2757), + [aux_sym_preproc_if_token2] = ACTIONS(2757), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2757), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2757), + [aux_sym_preproc_else_token1] = ACTIONS(2757), + [aux_sym_preproc_elif_token1] = ACTIONS(2757), + [sym_preproc_directive] = ACTIONS(2757), + [anon_sym_LPAREN2] = ACTIONS(2759), + [anon_sym_BANG] = ACTIONS(2759), + [anon_sym_TILDE] = ACTIONS(2759), + [anon_sym_DASH] = ACTIONS(2757), + [anon_sym_PLUS] = ACTIONS(2757), + [anon_sym_STAR] = ACTIONS(2759), + [anon_sym_AMP_AMP] = ACTIONS(2759), + [anon_sym_AMP] = ACTIONS(2757), + [anon_sym_SEMI] = ACTIONS(2759), + [anon_sym_typedef] = ACTIONS(2757), + [anon_sym_extern] = ACTIONS(2757), + [anon_sym___attribute__] = ACTIONS(2757), + [anon_sym_COLON_COLON] = ACTIONS(2759), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2759), + [anon_sym___declspec] = ACTIONS(2757), + [anon_sym___based] = ACTIONS(2757), + [anon_sym___cdecl] = ACTIONS(2757), + [anon_sym___clrcall] = ACTIONS(2757), + [anon_sym___stdcall] = ACTIONS(2757), + [anon_sym___fastcall] = ACTIONS(2757), + [anon_sym___thiscall] = ACTIONS(2757), + [anon_sym___vectorcall] = ACTIONS(2757), + [anon_sym_LBRACE] = ACTIONS(2759), + [anon_sym_LBRACK] = ACTIONS(2757), + [anon_sym_static] = ACTIONS(2757), + [anon_sym_register] = ACTIONS(2757), + [anon_sym_inline] = ACTIONS(2757), + [anon_sym_thread_local] = ACTIONS(2757), + [anon_sym_const] = ACTIONS(2757), + [anon_sym_volatile] = ACTIONS(2757), + [anon_sym_restrict] = ACTIONS(2757), + [anon_sym__Atomic] = ACTIONS(2757), + [anon_sym_mutable] = ACTIONS(2757), + [anon_sym_constexpr] = ACTIONS(2757), + [anon_sym_constinit] = ACTIONS(2757), + [anon_sym_consteval] = ACTIONS(2757), + [anon_sym_signed] = ACTIONS(2757), + [anon_sym_unsigned] = ACTIONS(2757), + [anon_sym_long] = ACTIONS(2757), + [anon_sym_short] = ACTIONS(2757), + [sym_primitive_type] = ACTIONS(2757), + [anon_sym_enum] = ACTIONS(2757), + [anon_sym_class] = ACTIONS(2757), + [anon_sym_struct] = ACTIONS(2757), + [anon_sym_union] = ACTIONS(2757), + [anon_sym_if] = ACTIONS(2757), + [anon_sym_switch] = ACTIONS(2757), + [anon_sym_case] = ACTIONS(2757), + [anon_sym_default] = ACTIONS(2757), + [anon_sym_while] = ACTIONS(2757), + [anon_sym_do] = ACTIONS(2757), + [anon_sym_for] = ACTIONS(2757), + [anon_sym_return] = ACTIONS(2757), + [anon_sym_break] = ACTIONS(2757), + [anon_sym_continue] = ACTIONS(2757), + [anon_sym_goto] = ACTIONS(2757), + [anon_sym_not] = ACTIONS(2757), + [anon_sym_compl] = ACTIONS(2757), + [anon_sym_DASH_DASH] = ACTIONS(2759), + [anon_sym_PLUS_PLUS] = ACTIONS(2759), + [anon_sym_sizeof] = ACTIONS(2757), + [sym_number_literal] = ACTIONS(2759), + [anon_sym_L_SQUOTE] = ACTIONS(2759), + [anon_sym_u_SQUOTE] = ACTIONS(2759), + [anon_sym_U_SQUOTE] = ACTIONS(2759), + [anon_sym_u8_SQUOTE] = ACTIONS(2759), + [anon_sym_SQUOTE] = ACTIONS(2759), + [anon_sym_L_DQUOTE] = ACTIONS(2759), + [anon_sym_u_DQUOTE] = ACTIONS(2759), + [anon_sym_U_DQUOTE] = ACTIONS(2759), + [anon_sym_u8_DQUOTE] = ACTIONS(2759), + [anon_sym_DQUOTE] = ACTIONS(2759), + [sym_true] = ACTIONS(2757), + [sym_false] = ACTIONS(2757), + [sym_null] = ACTIONS(2757), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2499), - [anon_sym_decltype] = ACTIONS(2499), - [anon_sym_virtual] = ACTIONS(2499), - [anon_sym_explicit] = ACTIONS(2499), - [anon_sym_typename] = ACTIONS(2499), - [anon_sym_template] = ACTIONS(2499), - [anon_sym_operator] = ACTIONS(2499), - [anon_sym_try] = ACTIONS(2499), - [anon_sym_delete] = ACTIONS(2499), - [anon_sym_throw] = ACTIONS(2499), - [anon_sym_namespace] = ACTIONS(2499), - [anon_sym_using] = ACTIONS(2499), - [anon_sym_static_assert] = ACTIONS(2499), - [anon_sym_concept] = ACTIONS(2499), - [anon_sym_co_return] = ACTIONS(2499), - [anon_sym_co_yield] = ACTIONS(2499), - [anon_sym_co_await] = ACTIONS(2499), - [anon_sym_new] = ACTIONS(2499), - [anon_sym_requires] = ACTIONS(2499), - [sym_this] = ACTIONS(2499), - [sym_nullptr] = ACTIONS(2499), - [sym_raw_string_literal] = ACTIONS(2501), - }, - [750] = { - [ts_builtin_sym_end] = ACTIONS(2513), - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - [sym_raw_string_literal] = ACTIONS(2513), - }, - [751] = { - [sym_identifier] = ACTIONS(2491), - [aux_sym_preproc_include_token1] = ACTIONS(2491), - [aux_sym_preproc_def_token1] = ACTIONS(2491), - [aux_sym_preproc_if_token1] = ACTIONS(2491), - [aux_sym_preproc_if_token2] = ACTIONS(2491), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2491), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2491), - [sym_preproc_directive] = ACTIONS(2491), - [anon_sym_LPAREN2] = ACTIONS(2493), - [anon_sym_BANG] = ACTIONS(2493), - [anon_sym_TILDE] = ACTIONS(2493), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_STAR] = ACTIONS(2493), - [anon_sym_AMP_AMP] = ACTIONS(2493), - [anon_sym_AMP] = ACTIONS(2491), - [anon_sym_SEMI] = ACTIONS(2493), - [anon_sym_typedef] = ACTIONS(2491), - [anon_sym_extern] = ACTIONS(2491), - [anon_sym___attribute__] = ACTIONS(2491), - [anon_sym_COLON_COLON] = ACTIONS(2493), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2493), - [anon_sym___declspec] = ACTIONS(2491), - [anon_sym___based] = ACTIONS(2491), - [anon_sym___cdecl] = ACTIONS(2491), - [anon_sym___clrcall] = ACTIONS(2491), - [anon_sym___stdcall] = ACTIONS(2491), - [anon_sym___fastcall] = ACTIONS(2491), - [anon_sym___thiscall] = ACTIONS(2491), - [anon_sym___vectorcall] = ACTIONS(2491), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_LBRACK] = ACTIONS(2491), - [anon_sym_static] = ACTIONS(2491), - [anon_sym_register] = ACTIONS(2491), - [anon_sym_inline] = ACTIONS(2491), - [anon_sym_thread_local] = ACTIONS(2491), - [anon_sym_const] = ACTIONS(2491), - [anon_sym_volatile] = ACTIONS(2491), - [anon_sym_restrict] = ACTIONS(2491), - [anon_sym__Atomic] = ACTIONS(2491), - [anon_sym_mutable] = ACTIONS(2491), - [anon_sym_constexpr] = ACTIONS(2491), - [anon_sym_constinit] = ACTIONS(2491), - [anon_sym_consteval] = ACTIONS(2491), - [anon_sym_signed] = ACTIONS(2491), - [anon_sym_unsigned] = ACTIONS(2491), - [anon_sym_long] = ACTIONS(2491), - [anon_sym_short] = ACTIONS(2491), - [sym_primitive_type] = ACTIONS(2491), - [anon_sym_enum] = ACTIONS(2491), - [anon_sym_class] = ACTIONS(2491), - [anon_sym_struct] = ACTIONS(2491), - [anon_sym_union] = ACTIONS(2491), - [anon_sym_if] = ACTIONS(2491), - [anon_sym_else] = ACTIONS(2491), - [anon_sym_switch] = ACTIONS(2491), - [anon_sym_case] = ACTIONS(2491), - [anon_sym_default] = ACTIONS(2491), - [anon_sym_while] = ACTIONS(2491), - [anon_sym_do] = ACTIONS(2491), - [anon_sym_for] = ACTIONS(2491), - [anon_sym_return] = ACTIONS(2491), - [anon_sym_break] = ACTIONS(2491), - [anon_sym_continue] = ACTIONS(2491), - [anon_sym_goto] = ACTIONS(2491), - [anon_sym_DASH_DASH] = ACTIONS(2493), - [anon_sym_PLUS_PLUS] = ACTIONS(2493), - [anon_sym_sizeof] = ACTIONS(2491), - [sym_number_literal] = ACTIONS(2493), - [anon_sym_L_SQUOTE] = ACTIONS(2493), - [anon_sym_u_SQUOTE] = ACTIONS(2493), - [anon_sym_U_SQUOTE] = ACTIONS(2493), - [anon_sym_u8_SQUOTE] = ACTIONS(2493), - [anon_sym_SQUOTE] = ACTIONS(2493), - [anon_sym_L_DQUOTE] = ACTIONS(2493), - [anon_sym_u_DQUOTE] = ACTIONS(2493), - [anon_sym_U_DQUOTE] = ACTIONS(2493), - [anon_sym_u8_DQUOTE] = ACTIONS(2493), - [anon_sym_DQUOTE] = ACTIONS(2493), - [sym_true] = ACTIONS(2491), - [sym_false] = ACTIONS(2491), - [sym_null] = ACTIONS(2491), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2491), - [anon_sym_decltype] = ACTIONS(2491), - [anon_sym_virtual] = ACTIONS(2491), - [anon_sym_explicit] = ACTIONS(2491), - [anon_sym_typename] = ACTIONS(2491), - [anon_sym_template] = ACTIONS(2491), - [anon_sym_operator] = ACTIONS(2491), - [anon_sym_try] = ACTIONS(2491), - [anon_sym_delete] = ACTIONS(2491), - [anon_sym_throw] = ACTIONS(2491), - [anon_sym_namespace] = ACTIONS(2491), - [anon_sym_using] = ACTIONS(2491), - [anon_sym_static_assert] = ACTIONS(2491), - [anon_sym_concept] = ACTIONS(2491), - [anon_sym_co_return] = ACTIONS(2491), - [anon_sym_co_yield] = ACTIONS(2491), - [anon_sym_co_await] = ACTIONS(2491), - [anon_sym_new] = ACTIONS(2491), - [anon_sym_requires] = ACTIONS(2491), - [sym_this] = ACTIONS(2491), - [sym_nullptr] = ACTIONS(2491), - [sym_raw_string_literal] = ACTIONS(2493), - }, - [752] = { - [sym_identifier] = ACTIONS(2487), - [aux_sym_preproc_include_token1] = ACTIONS(2487), - [aux_sym_preproc_def_token1] = ACTIONS(2487), - [aux_sym_preproc_if_token1] = ACTIONS(2487), - [aux_sym_preproc_if_token2] = ACTIONS(2487), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2487), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2487), - [sym_preproc_directive] = ACTIONS(2487), - [anon_sym_LPAREN2] = ACTIONS(2489), - [anon_sym_BANG] = ACTIONS(2489), - [anon_sym_TILDE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_STAR] = ACTIONS(2489), - [anon_sym_AMP_AMP] = ACTIONS(2489), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_SEMI] = ACTIONS(2489), - [anon_sym_typedef] = ACTIONS(2487), - [anon_sym_extern] = ACTIONS(2487), - [anon_sym___attribute__] = ACTIONS(2487), - [anon_sym_COLON_COLON] = ACTIONS(2489), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2489), - [anon_sym___declspec] = ACTIONS(2487), - [anon_sym___based] = ACTIONS(2487), - [anon_sym___cdecl] = ACTIONS(2487), - [anon_sym___clrcall] = ACTIONS(2487), - [anon_sym___stdcall] = ACTIONS(2487), - [anon_sym___fastcall] = ACTIONS(2487), - [anon_sym___thiscall] = ACTIONS(2487), - [anon_sym___vectorcall] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_LBRACK] = ACTIONS(2487), - [anon_sym_static] = ACTIONS(2487), - [anon_sym_register] = ACTIONS(2487), - [anon_sym_inline] = ACTIONS(2487), - [anon_sym_thread_local] = ACTIONS(2487), - [anon_sym_const] = ACTIONS(2487), - [anon_sym_volatile] = ACTIONS(2487), - [anon_sym_restrict] = ACTIONS(2487), - [anon_sym__Atomic] = ACTIONS(2487), - [anon_sym_mutable] = ACTIONS(2487), - [anon_sym_constexpr] = ACTIONS(2487), - [anon_sym_constinit] = ACTIONS(2487), - [anon_sym_consteval] = ACTIONS(2487), - [anon_sym_signed] = ACTIONS(2487), - [anon_sym_unsigned] = ACTIONS(2487), - [anon_sym_long] = ACTIONS(2487), - [anon_sym_short] = ACTIONS(2487), - [sym_primitive_type] = ACTIONS(2487), - [anon_sym_enum] = ACTIONS(2487), - [anon_sym_class] = ACTIONS(2487), - [anon_sym_struct] = ACTIONS(2487), - [anon_sym_union] = ACTIONS(2487), - [anon_sym_if] = ACTIONS(2487), - [anon_sym_else] = ACTIONS(2487), - [anon_sym_switch] = ACTIONS(2487), - [anon_sym_case] = ACTIONS(2487), - [anon_sym_default] = ACTIONS(2487), - [anon_sym_while] = ACTIONS(2487), - [anon_sym_do] = ACTIONS(2487), - [anon_sym_for] = ACTIONS(2487), - [anon_sym_return] = ACTIONS(2487), - [anon_sym_break] = ACTIONS(2487), - [anon_sym_continue] = ACTIONS(2487), - [anon_sym_goto] = ACTIONS(2487), - [anon_sym_DASH_DASH] = ACTIONS(2489), - [anon_sym_PLUS_PLUS] = ACTIONS(2489), - [anon_sym_sizeof] = ACTIONS(2487), - [sym_number_literal] = ACTIONS(2489), - [anon_sym_L_SQUOTE] = ACTIONS(2489), - [anon_sym_u_SQUOTE] = ACTIONS(2489), - [anon_sym_U_SQUOTE] = ACTIONS(2489), - [anon_sym_u8_SQUOTE] = ACTIONS(2489), - [anon_sym_SQUOTE] = ACTIONS(2489), - [anon_sym_L_DQUOTE] = ACTIONS(2489), - [anon_sym_u_DQUOTE] = ACTIONS(2489), - [anon_sym_U_DQUOTE] = ACTIONS(2489), - [anon_sym_u8_DQUOTE] = ACTIONS(2489), - [anon_sym_DQUOTE] = ACTIONS(2489), - [sym_true] = ACTIONS(2487), - [sym_false] = ACTIONS(2487), - [sym_null] = ACTIONS(2487), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2487), - [anon_sym_decltype] = ACTIONS(2487), - [anon_sym_virtual] = ACTIONS(2487), - [anon_sym_explicit] = ACTIONS(2487), - [anon_sym_typename] = ACTIONS(2487), - [anon_sym_template] = ACTIONS(2487), - [anon_sym_operator] = ACTIONS(2487), - [anon_sym_try] = ACTIONS(2487), - [anon_sym_delete] = ACTIONS(2487), - [anon_sym_throw] = ACTIONS(2487), - [anon_sym_namespace] = ACTIONS(2487), - [anon_sym_using] = ACTIONS(2487), - [anon_sym_static_assert] = ACTIONS(2487), - [anon_sym_concept] = ACTIONS(2487), - [anon_sym_co_return] = ACTIONS(2487), - [anon_sym_co_yield] = ACTIONS(2487), - [anon_sym_co_await] = ACTIONS(2487), - [anon_sym_new] = ACTIONS(2487), - [anon_sym_requires] = ACTIONS(2487), - [sym_this] = ACTIONS(2487), - [sym_nullptr] = ACTIONS(2487), - [sym_raw_string_literal] = ACTIONS(2489), - }, - [753] = { - [sym_identifier] = ACTIONS(2463), - [aux_sym_preproc_include_token1] = ACTIONS(2463), - [aux_sym_preproc_def_token1] = ACTIONS(2463), - [aux_sym_preproc_if_token1] = ACTIONS(2463), - [aux_sym_preproc_if_token2] = ACTIONS(2463), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2463), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2463), - [sym_preproc_directive] = ACTIONS(2463), - [anon_sym_LPAREN2] = ACTIONS(2465), - [anon_sym_BANG] = ACTIONS(2465), - [anon_sym_TILDE] = ACTIONS(2465), - [anon_sym_DASH] = ACTIONS(2463), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_STAR] = ACTIONS(2465), - [anon_sym_AMP_AMP] = ACTIONS(2465), - [anon_sym_AMP] = ACTIONS(2463), - [anon_sym_SEMI] = ACTIONS(2465), - [anon_sym_typedef] = ACTIONS(2463), - [anon_sym_extern] = ACTIONS(2463), - [anon_sym___attribute__] = ACTIONS(2463), - [anon_sym_COLON_COLON] = ACTIONS(2465), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2465), - [anon_sym___declspec] = ACTIONS(2463), - [anon_sym___based] = ACTIONS(2463), - [anon_sym___cdecl] = ACTIONS(2463), - [anon_sym___clrcall] = ACTIONS(2463), - [anon_sym___stdcall] = ACTIONS(2463), - [anon_sym___fastcall] = ACTIONS(2463), - [anon_sym___thiscall] = ACTIONS(2463), - [anon_sym___vectorcall] = ACTIONS(2463), - [anon_sym_LBRACE] = ACTIONS(2465), - [anon_sym_LBRACK] = ACTIONS(2463), - [anon_sym_static] = ACTIONS(2463), - [anon_sym_register] = ACTIONS(2463), - [anon_sym_inline] = ACTIONS(2463), - [anon_sym_thread_local] = ACTIONS(2463), - [anon_sym_const] = ACTIONS(2463), - [anon_sym_volatile] = ACTIONS(2463), - [anon_sym_restrict] = ACTIONS(2463), - [anon_sym__Atomic] = ACTIONS(2463), - [anon_sym_mutable] = ACTIONS(2463), - [anon_sym_constexpr] = ACTIONS(2463), - [anon_sym_constinit] = ACTIONS(2463), - [anon_sym_consteval] = ACTIONS(2463), - [anon_sym_signed] = ACTIONS(2463), - [anon_sym_unsigned] = ACTIONS(2463), - [anon_sym_long] = ACTIONS(2463), - [anon_sym_short] = ACTIONS(2463), - [sym_primitive_type] = ACTIONS(2463), - [anon_sym_enum] = ACTIONS(2463), - [anon_sym_class] = ACTIONS(2463), - [anon_sym_struct] = ACTIONS(2463), - [anon_sym_union] = ACTIONS(2463), - [anon_sym_if] = ACTIONS(2463), - [anon_sym_else] = ACTIONS(2463), - [anon_sym_switch] = ACTIONS(2463), - [anon_sym_case] = ACTIONS(2463), - [anon_sym_default] = ACTIONS(2463), - [anon_sym_while] = ACTIONS(2463), - [anon_sym_do] = ACTIONS(2463), - [anon_sym_for] = ACTIONS(2463), - [anon_sym_return] = ACTIONS(2463), - [anon_sym_break] = ACTIONS(2463), - [anon_sym_continue] = ACTIONS(2463), - [anon_sym_goto] = ACTIONS(2463), - [anon_sym_DASH_DASH] = ACTIONS(2465), - [anon_sym_PLUS_PLUS] = ACTIONS(2465), - [anon_sym_sizeof] = ACTIONS(2463), - [sym_number_literal] = ACTIONS(2465), - [anon_sym_L_SQUOTE] = ACTIONS(2465), - [anon_sym_u_SQUOTE] = ACTIONS(2465), - [anon_sym_U_SQUOTE] = ACTIONS(2465), - [anon_sym_u8_SQUOTE] = ACTIONS(2465), - [anon_sym_SQUOTE] = ACTIONS(2465), - [anon_sym_L_DQUOTE] = ACTIONS(2465), - [anon_sym_u_DQUOTE] = ACTIONS(2465), - [anon_sym_U_DQUOTE] = ACTIONS(2465), - [anon_sym_u8_DQUOTE] = ACTIONS(2465), - [anon_sym_DQUOTE] = ACTIONS(2465), - [sym_true] = ACTIONS(2463), - [sym_false] = ACTIONS(2463), - [sym_null] = ACTIONS(2463), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2463), - [anon_sym_decltype] = ACTIONS(2463), - [anon_sym_virtual] = ACTIONS(2463), - [anon_sym_explicit] = ACTIONS(2463), - [anon_sym_typename] = ACTIONS(2463), - [anon_sym_template] = ACTIONS(2463), - [anon_sym_operator] = ACTIONS(2463), - [anon_sym_try] = ACTIONS(2463), - [anon_sym_delete] = ACTIONS(2463), - [anon_sym_throw] = ACTIONS(2463), - [anon_sym_namespace] = ACTIONS(2463), - [anon_sym_using] = ACTIONS(2463), - [anon_sym_static_assert] = ACTIONS(2463), - [anon_sym_concept] = ACTIONS(2463), - [anon_sym_co_return] = ACTIONS(2463), - [anon_sym_co_yield] = ACTIONS(2463), - [anon_sym_co_await] = ACTIONS(2463), - [anon_sym_new] = ACTIONS(2463), - [anon_sym_requires] = ACTIONS(2463), - [sym_this] = ACTIONS(2463), - [sym_nullptr] = ACTIONS(2463), - [sym_raw_string_literal] = ACTIONS(2465), - }, - [754] = { - [sym_identifier] = ACTIONS(2451), - [aux_sym_preproc_include_token1] = ACTIONS(2451), - [aux_sym_preproc_def_token1] = ACTIONS(2451), - [aux_sym_preproc_if_token1] = ACTIONS(2451), - [aux_sym_preproc_if_token2] = ACTIONS(2451), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2451), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2451), - [sym_preproc_directive] = ACTIONS(2451), - [anon_sym_LPAREN2] = ACTIONS(2453), - [anon_sym_BANG] = ACTIONS(2453), - [anon_sym_TILDE] = ACTIONS(2453), - [anon_sym_DASH] = ACTIONS(2451), - [anon_sym_PLUS] = ACTIONS(2451), - [anon_sym_STAR] = ACTIONS(2453), - [anon_sym_AMP_AMP] = ACTIONS(2453), - [anon_sym_AMP] = ACTIONS(2451), - [anon_sym_SEMI] = ACTIONS(2453), - [anon_sym_typedef] = ACTIONS(2451), - [anon_sym_extern] = ACTIONS(2451), - [anon_sym___attribute__] = ACTIONS(2451), - [anon_sym_COLON_COLON] = ACTIONS(2453), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2453), - [anon_sym___declspec] = ACTIONS(2451), - [anon_sym___based] = ACTIONS(2451), - [anon_sym___cdecl] = ACTIONS(2451), - [anon_sym___clrcall] = ACTIONS(2451), - [anon_sym___stdcall] = ACTIONS(2451), - [anon_sym___fastcall] = ACTIONS(2451), - [anon_sym___thiscall] = ACTIONS(2451), - [anon_sym___vectorcall] = ACTIONS(2451), - [anon_sym_LBRACE] = ACTIONS(2453), - [anon_sym_LBRACK] = ACTIONS(2451), - [anon_sym_static] = ACTIONS(2451), - [anon_sym_register] = ACTIONS(2451), - [anon_sym_inline] = ACTIONS(2451), - [anon_sym_thread_local] = ACTIONS(2451), - [anon_sym_const] = ACTIONS(2451), - [anon_sym_volatile] = ACTIONS(2451), - [anon_sym_restrict] = ACTIONS(2451), - [anon_sym__Atomic] = ACTIONS(2451), - [anon_sym_mutable] = ACTIONS(2451), - [anon_sym_constexpr] = ACTIONS(2451), - [anon_sym_constinit] = ACTIONS(2451), - [anon_sym_consteval] = ACTIONS(2451), - [anon_sym_signed] = ACTIONS(2451), - [anon_sym_unsigned] = ACTIONS(2451), - [anon_sym_long] = ACTIONS(2451), - [anon_sym_short] = ACTIONS(2451), - [sym_primitive_type] = ACTIONS(2451), - [anon_sym_enum] = ACTIONS(2451), - [anon_sym_class] = ACTIONS(2451), - [anon_sym_struct] = ACTIONS(2451), - [anon_sym_union] = ACTIONS(2451), - [anon_sym_if] = ACTIONS(2451), - [anon_sym_else] = ACTIONS(2451), - [anon_sym_switch] = ACTIONS(2451), - [anon_sym_case] = ACTIONS(2451), - [anon_sym_default] = ACTIONS(2451), - [anon_sym_while] = ACTIONS(2451), - [anon_sym_do] = ACTIONS(2451), - [anon_sym_for] = ACTIONS(2451), - [anon_sym_return] = ACTIONS(2451), - [anon_sym_break] = ACTIONS(2451), - [anon_sym_continue] = ACTIONS(2451), - [anon_sym_goto] = ACTIONS(2451), - [anon_sym_DASH_DASH] = ACTIONS(2453), - [anon_sym_PLUS_PLUS] = ACTIONS(2453), - [anon_sym_sizeof] = ACTIONS(2451), - [sym_number_literal] = ACTIONS(2453), - [anon_sym_L_SQUOTE] = ACTIONS(2453), - [anon_sym_u_SQUOTE] = ACTIONS(2453), - [anon_sym_U_SQUOTE] = ACTIONS(2453), - [anon_sym_u8_SQUOTE] = ACTIONS(2453), - [anon_sym_SQUOTE] = ACTIONS(2453), - [anon_sym_L_DQUOTE] = ACTIONS(2453), - [anon_sym_u_DQUOTE] = ACTIONS(2453), - [anon_sym_U_DQUOTE] = ACTIONS(2453), - [anon_sym_u8_DQUOTE] = ACTIONS(2453), - [anon_sym_DQUOTE] = ACTIONS(2453), - [sym_true] = ACTIONS(2451), - [sym_false] = ACTIONS(2451), - [sym_null] = ACTIONS(2451), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2451), - [anon_sym_decltype] = ACTIONS(2451), - [anon_sym_virtual] = ACTIONS(2451), - [anon_sym_explicit] = ACTIONS(2451), - [anon_sym_typename] = ACTIONS(2451), - [anon_sym_template] = ACTIONS(2451), - [anon_sym_operator] = ACTIONS(2451), - [anon_sym_try] = ACTIONS(2451), - [anon_sym_delete] = ACTIONS(2451), - [anon_sym_throw] = ACTIONS(2451), - [anon_sym_namespace] = ACTIONS(2451), - [anon_sym_using] = ACTIONS(2451), - [anon_sym_static_assert] = ACTIONS(2451), - [anon_sym_concept] = ACTIONS(2451), - [anon_sym_co_return] = ACTIONS(2451), - [anon_sym_co_yield] = ACTIONS(2451), - [anon_sym_co_await] = ACTIONS(2451), - [anon_sym_new] = ACTIONS(2451), - [anon_sym_requires] = ACTIONS(2451), - [sym_this] = ACTIONS(2451), - [sym_nullptr] = ACTIONS(2451), - [sym_raw_string_literal] = ACTIONS(2453), - }, - [755] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_RBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [756] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_RBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [757] = { - [sym_identifier] = ACTIONS(2447), - [aux_sym_preproc_include_token1] = ACTIONS(2447), - [aux_sym_preproc_def_token1] = ACTIONS(2447), - [aux_sym_preproc_if_token1] = ACTIONS(2447), - [aux_sym_preproc_if_token2] = ACTIONS(2447), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2447), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2447), - [sym_preproc_directive] = ACTIONS(2447), - [anon_sym_LPAREN2] = ACTIONS(2449), - [anon_sym_BANG] = ACTIONS(2449), - [anon_sym_TILDE] = ACTIONS(2449), - [anon_sym_DASH] = ACTIONS(2447), - [anon_sym_PLUS] = ACTIONS(2447), - [anon_sym_STAR] = ACTIONS(2449), - [anon_sym_AMP_AMP] = ACTIONS(2449), - [anon_sym_AMP] = ACTIONS(2447), - [anon_sym_SEMI] = ACTIONS(2449), - [anon_sym_typedef] = ACTIONS(2447), - [anon_sym_extern] = ACTIONS(2447), - [anon_sym___attribute__] = ACTIONS(2447), - [anon_sym_COLON_COLON] = ACTIONS(2449), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2449), - [anon_sym___declspec] = ACTIONS(2447), - [anon_sym___based] = ACTIONS(2447), - [anon_sym___cdecl] = ACTIONS(2447), - [anon_sym___clrcall] = ACTIONS(2447), - [anon_sym___stdcall] = ACTIONS(2447), - [anon_sym___fastcall] = ACTIONS(2447), - [anon_sym___thiscall] = ACTIONS(2447), - [anon_sym___vectorcall] = ACTIONS(2447), - [anon_sym_LBRACE] = ACTIONS(2449), - [anon_sym_LBRACK] = ACTIONS(2447), - [anon_sym_static] = ACTIONS(2447), - [anon_sym_register] = ACTIONS(2447), - [anon_sym_inline] = ACTIONS(2447), - [anon_sym_thread_local] = ACTIONS(2447), - [anon_sym_const] = ACTIONS(2447), - [anon_sym_volatile] = ACTIONS(2447), - [anon_sym_restrict] = ACTIONS(2447), - [anon_sym__Atomic] = ACTIONS(2447), - [anon_sym_mutable] = ACTIONS(2447), - [anon_sym_constexpr] = ACTIONS(2447), - [anon_sym_constinit] = ACTIONS(2447), - [anon_sym_consteval] = ACTIONS(2447), - [anon_sym_signed] = ACTIONS(2447), - [anon_sym_unsigned] = ACTIONS(2447), - [anon_sym_long] = ACTIONS(2447), - [anon_sym_short] = ACTIONS(2447), - [sym_primitive_type] = ACTIONS(2447), - [anon_sym_enum] = ACTIONS(2447), - [anon_sym_class] = ACTIONS(2447), - [anon_sym_struct] = ACTIONS(2447), - [anon_sym_union] = ACTIONS(2447), - [anon_sym_if] = ACTIONS(2447), - [anon_sym_else] = ACTIONS(2447), - [anon_sym_switch] = ACTIONS(2447), - [anon_sym_case] = ACTIONS(2447), - [anon_sym_default] = ACTIONS(2447), - [anon_sym_while] = ACTIONS(2447), - [anon_sym_do] = ACTIONS(2447), - [anon_sym_for] = ACTIONS(2447), - [anon_sym_return] = ACTIONS(2447), - [anon_sym_break] = ACTIONS(2447), - [anon_sym_continue] = ACTIONS(2447), - [anon_sym_goto] = ACTIONS(2447), - [anon_sym_DASH_DASH] = ACTIONS(2449), - [anon_sym_PLUS_PLUS] = ACTIONS(2449), - [anon_sym_sizeof] = ACTIONS(2447), - [sym_number_literal] = ACTIONS(2449), - [anon_sym_L_SQUOTE] = ACTIONS(2449), - [anon_sym_u_SQUOTE] = ACTIONS(2449), - [anon_sym_U_SQUOTE] = ACTIONS(2449), - [anon_sym_u8_SQUOTE] = ACTIONS(2449), - [anon_sym_SQUOTE] = ACTIONS(2449), - [anon_sym_L_DQUOTE] = ACTIONS(2449), - [anon_sym_u_DQUOTE] = ACTIONS(2449), - [anon_sym_U_DQUOTE] = ACTIONS(2449), - [anon_sym_u8_DQUOTE] = ACTIONS(2449), - [anon_sym_DQUOTE] = ACTIONS(2449), - [sym_true] = ACTIONS(2447), - [sym_false] = ACTIONS(2447), - [sym_null] = ACTIONS(2447), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2447), - [anon_sym_decltype] = ACTIONS(2447), - [anon_sym_virtual] = ACTIONS(2447), - [anon_sym_explicit] = ACTIONS(2447), - [anon_sym_typename] = ACTIONS(2447), - [anon_sym_template] = ACTIONS(2447), - [anon_sym_operator] = ACTIONS(2447), - [anon_sym_try] = ACTIONS(2447), - [anon_sym_delete] = ACTIONS(2447), - [anon_sym_throw] = ACTIONS(2447), - [anon_sym_namespace] = ACTIONS(2447), - [anon_sym_using] = ACTIONS(2447), - [anon_sym_static_assert] = ACTIONS(2447), - [anon_sym_concept] = ACTIONS(2447), - [anon_sym_co_return] = ACTIONS(2447), - [anon_sym_co_yield] = ACTIONS(2447), - [anon_sym_co_await] = ACTIONS(2447), - [anon_sym_new] = ACTIONS(2447), - [anon_sym_requires] = ACTIONS(2447), - [sym_this] = ACTIONS(2447), - [sym_nullptr] = ACTIONS(2447), - [sym_raw_string_literal] = ACTIONS(2449), - }, - [758] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_RBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [759] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_RBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [760] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_RBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [761] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_RBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [762] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_RBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [763] = { - [sym_identifier] = ACTIONS(2437), - [aux_sym_preproc_include_token1] = ACTIONS(2437), - [aux_sym_preproc_def_token1] = ACTIONS(2437), - [aux_sym_preproc_if_token1] = ACTIONS(2437), - [aux_sym_preproc_if_token2] = ACTIONS(2437), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2437), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2437), - [sym_preproc_directive] = ACTIONS(2437), - [anon_sym_LPAREN2] = ACTIONS(2439), - [anon_sym_BANG] = ACTIONS(2439), - [anon_sym_TILDE] = ACTIONS(2439), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2439), - [anon_sym_AMP_AMP] = ACTIONS(2439), - [anon_sym_AMP] = ACTIONS(2437), - [anon_sym_SEMI] = ACTIONS(2439), - [anon_sym_typedef] = ACTIONS(2437), - [anon_sym_extern] = ACTIONS(2437), - [anon_sym___attribute__] = ACTIONS(2437), - [anon_sym_COLON_COLON] = ACTIONS(2439), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2439), - [anon_sym___declspec] = ACTIONS(2437), - [anon_sym___based] = ACTIONS(2437), - [anon_sym___cdecl] = ACTIONS(2437), - [anon_sym___clrcall] = ACTIONS(2437), - [anon_sym___stdcall] = ACTIONS(2437), - [anon_sym___fastcall] = ACTIONS(2437), - [anon_sym___thiscall] = ACTIONS(2437), - [anon_sym___vectorcall] = ACTIONS(2437), - [anon_sym_LBRACE] = ACTIONS(2439), - [anon_sym_LBRACK] = ACTIONS(2437), - [anon_sym_static] = ACTIONS(2437), - [anon_sym_register] = ACTIONS(2437), - [anon_sym_inline] = ACTIONS(2437), - [anon_sym_thread_local] = ACTIONS(2437), - [anon_sym_const] = ACTIONS(2437), - [anon_sym_volatile] = ACTIONS(2437), - [anon_sym_restrict] = ACTIONS(2437), - [anon_sym__Atomic] = ACTIONS(2437), - [anon_sym_mutable] = ACTIONS(2437), - [anon_sym_constexpr] = ACTIONS(2437), - [anon_sym_constinit] = ACTIONS(2437), - [anon_sym_consteval] = ACTIONS(2437), - [anon_sym_signed] = ACTIONS(2437), - [anon_sym_unsigned] = ACTIONS(2437), - [anon_sym_long] = ACTIONS(2437), - [anon_sym_short] = ACTIONS(2437), - [sym_primitive_type] = ACTIONS(2437), - [anon_sym_enum] = ACTIONS(2437), - [anon_sym_class] = ACTIONS(2437), - [anon_sym_struct] = ACTIONS(2437), - [anon_sym_union] = ACTIONS(2437), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_else] = ACTIONS(2871), - [anon_sym_switch] = ACTIONS(2437), - [anon_sym_case] = ACTIONS(2437), - [anon_sym_default] = ACTIONS(2437), - [anon_sym_while] = ACTIONS(2437), - [anon_sym_do] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_return] = ACTIONS(2437), - [anon_sym_break] = ACTIONS(2437), - [anon_sym_continue] = ACTIONS(2437), - [anon_sym_goto] = ACTIONS(2437), - [anon_sym_DASH_DASH] = ACTIONS(2439), - [anon_sym_PLUS_PLUS] = ACTIONS(2439), - [anon_sym_sizeof] = ACTIONS(2437), - [sym_number_literal] = ACTIONS(2439), - [anon_sym_L_SQUOTE] = ACTIONS(2439), - [anon_sym_u_SQUOTE] = ACTIONS(2439), - [anon_sym_U_SQUOTE] = ACTIONS(2439), - [anon_sym_u8_SQUOTE] = ACTIONS(2439), - [anon_sym_SQUOTE] = ACTIONS(2439), - [anon_sym_L_DQUOTE] = ACTIONS(2439), - [anon_sym_u_DQUOTE] = ACTIONS(2439), - [anon_sym_U_DQUOTE] = ACTIONS(2439), - [anon_sym_u8_DQUOTE] = ACTIONS(2439), - [anon_sym_DQUOTE] = ACTIONS(2439), - [sym_true] = ACTIONS(2437), - [sym_false] = ACTIONS(2437), - [sym_null] = ACTIONS(2437), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2437), - [anon_sym_decltype] = ACTIONS(2437), - [anon_sym_virtual] = ACTIONS(2437), - [anon_sym_explicit] = ACTIONS(2437), - [anon_sym_typename] = ACTIONS(2437), - [anon_sym_template] = ACTIONS(2437), - [anon_sym_operator] = ACTIONS(2437), - [anon_sym_try] = ACTIONS(2437), - [anon_sym_delete] = ACTIONS(2437), - [anon_sym_throw] = ACTIONS(2437), - [anon_sym_namespace] = ACTIONS(2437), - [anon_sym_using] = ACTIONS(2437), - [anon_sym_static_assert] = ACTIONS(2437), - [anon_sym_concept] = ACTIONS(2437), - [anon_sym_co_return] = ACTIONS(2437), - [anon_sym_co_yield] = ACTIONS(2437), - [anon_sym_co_await] = ACTIONS(2437), - [anon_sym_new] = ACTIONS(2437), - [anon_sym_requires] = ACTIONS(2437), - [sym_this] = ACTIONS(2437), - [sym_nullptr] = ACTIONS(2437), - [sym_raw_string_literal] = ACTIONS(2439), - }, - [764] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_RBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [765] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_RBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [766] = { - [sym_identifier] = ACTIONS(2437), - [aux_sym_preproc_include_token1] = ACTIONS(2437), - [aux_sym_preproc_def_token1] = ACTIONS(2437), - [aux_sym_preproc_if_token1] = ACTIONS(2437), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2437), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2437), - [sym_preproc_directive] = ACTIONS(2437), - [anon_sym_LPAREN2] = ACTIONS(2439), - [anon_sym_BANG] = ACTIONS(2439), - [anon_sym_TILDE] = ACTIONS(2439), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2439), - [anon_sym_AMP_AMP] = ACTIONS(2439), - [anon_sym_AMP] = ACTIONS(2437), - [anon_sym_SEMI] = ACTIONS(2439), - [anon_sym_typedef] = ACTIONS(2437), - [anon_sym_extern] = ACTIONS(2437), - [anon_sym___attribute__] = ACTIONS(2437), - [anon_sym_COLON_COLON] = ACTIONS(2439), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2439), - [anon_sym___declspec] = ACTIONS(2437), - [anon_sym___based] = ACTIONS(2437), - [anon_sym___cdecl] = ACTIONS(2437), - [anon_sym___clrcall] = ACTIONS(2437), - [anon_sym___stdcall] = ACTIONS(2437), - [anon_sym___fastcall] = ACTIONS(2437), - [anon_sym___thiscall] = ACTIONS(2437), - [anon_sym___vectorcall] = ACTIONS(2437), - [anon_sym_LBRACE] = ACTIONS(2439), - [anon_sym_RBRACE] = ACTIONS(2439), - [anon_sym_LBRACK] = ACTIONS(2437), - [anon_sym_static] = ACTIONS(2437), - [anon_sym_register] = ACTIONS(2437), - [anon_sym_inline] = ACTIONS(2437), - [anon_sym_thread_local] = ACTIONS(2437), - [anon_sym_const] = ACTIONS(2437), - [anon_sym_volatile] = ACTIONS(2437), - [anon_sym_restrict] = ACTIONS(2437), - [anon_sym__Atomic] = ACTIONS(2437), - [anon_sym_mutable] = ACTIONS(2437), - [anon_sym_constexpr] = ACTIONS(2437), - [anon_sym_constinit] = ACTIONS(2437), - [anon_sym_consteval] = ACTIONS(2437), - [anon_sym_signed] = ACTIONS(2437), - [anon_sym_unsigned] = ACTIONS(2437), - [anon_sym_long] = ACTIONS(2437), - [anon_sym_short] = ACTIONS(2437), - [sym_primitive_type] = ACTIONS(2437), - [anon_sym_enum] = ACTIONS(2437), - [anon_sym_class] = ACTIONS(2437), - [anon_sym_struct] = ACTIONS(2437), - [anon_sym_union] = ACTIONS(2437), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_else] = ACTIONS(2873), - [anon_sym_switch] = ACTIONS(2437), - [anon_sym_case] = ACTIONS(2437), - [anon_sym_default] = ACTIONS(2437), - [anon_sym_while] = ACTIONS(2437), - [anon_sym_do] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_return] = ACTIONS(2437), - [anon_sym_break] = ACTIONS(2437), - [anon_sym_continue] = ACTIONS(2437), - [anon_sym_goto] = ACTIONS(2437), - [anon_sym_DASH_DASH] = ACTIONS(2439), - [anon_sym_PLUS_PLUS] = ACTIONS(2439), - [anon_sym_sizeof] = ACTIONS(2437), - [sym_number_literal] = ACTIONS(2439), - [anon_sym_L_SQUOTE] = ACTIONS(2439), - [anon_sym_u_SQUOTE] = ACTIONS(2439), - [anon_sym_U_SQUOTE] = ACTIONS(2439), - [anon_sym_u8_SQUOTE] = ACTIONS(2439), - [anon_sym_SQUOTE] = ACTIONS(2439), - [anon_sym_L_DQUOTE] = ACTIONS(2439), - [anon_sym_u_DQUOTE] = ACTIONS(2439), - [anon_sym_U_DQUOTE] = ACTIONS(2439), - [anon_sym_u8_DQUOTE] = ACTIONS(2439), - [anon_sym_DQUOTE] = ACTIONS(2439), - [sym_true] = ACTIONS(2437), - [sym_false] = ACTIONS(2437), - [sym_null] = ACTIONS(2437), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2437), - [anon_sym_decltype] = ACTIONS(2437), - [anon_sym_virtual] = ACTIONS(2437), - [anon_sym_explicit] = ACTIONS(2437), - [anon_sym_typename] = ACTIONS(2437), - [anon_sym_template] = ACTIONS(2437), - [anon_sym_operator] = ACTIONS(2437), - [anon_sym_try] = ACTIONS(2437), - [anon_sym_delete] = ACTIONS(2437), - [anon_sym_throw] = ACTIONS(2437), - [anon_sym_namespace] = ACTIONS(2437), - [anon_sym_using] = ACTIONS(2437), - [anon_sym_static_assert] = ACTIONS(2437), - [anon_sym_concept] = ACTIONS(2437), - [anon_sym_co_return] = ACTIONS(2437), - [anon_sym_co_yield] = ACTIONS(2437), - [anon_sym_co_await] = ACTIONS(2437), - [anon_sym_new] = ACTIONS(2437), - [anon_sym_requires] = ACTIONS(2437), - [sym_this] = ACTIONS(2437), - [sym_nullptr] = ACTIONS(2437), - [sym_raw_string_literal] = ACTIONS(2439), - }, - [767] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_RBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [768] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_RBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [769] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_RBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [770] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_RBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [771] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_RBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [772] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_RBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [773] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_RBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [774] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_RBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [775] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_RBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [776] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_RBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [777] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_RBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [778] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_RBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [779] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_RBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [780] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_RBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [781] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_RBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [782] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_RBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [783] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_RBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [784] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_RBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [785] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_RBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [786] = { - [sym_identifier] = ACTIONS(2447), - [aux_sym_preproc_include_token1] = ACTIONS(2447), - [aux_sym_preproc_def_token1] = ACTIONS(2447), - [aux_sym_preproc_if_token1] = ACTIONS(2447), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2447), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2447), - [sym_preproc_directive] = ACTIONS(2447), - [anon_sym_LPAREN2] = ACTIONS(2449), - [anon_sym_BANG] = ACTIONS(2449), - [anon_sym_TILDE] = ACTIONS(2449), - [anon_sym_DASH] = ACTIONS(2447), - [anon_sym_PLUS] = ACTIONS(2447), - [anon_sym_STAR] = ACTIONS(2449), - [anon_sym_AMP_AMP] = ACTIONS(2449), - [anon_sym_AMP] = ACTIONS(2447), - [anon_sym_SEMI] = ACTIONS(2449), - [anon_sym_typedef] = ACTIONS(2447), - [anon_sym_extern] = ACTIONS(2447), - [anon_sym___attribute__] = ACTIONS(2447), - [anon_sym_COLON_COLON] = ACTIONS(2449), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2449), - [anon_sym___declspec] = ACTIONS(2447), - [anon_sym___based] = ACTIONS(2447), - [anon_sym___cdecl] = ACTIONS(2447), - [anon_sym___clrcall] = ACTIONS(2447), - [anon_sym___stdcall] = ACTIONS(2447), - [anon_sym___fastcall] = ACTIONS(2447), - [anon_sym___thiscall] = ACTIONS(2447), - [anon_sym___vectorcall] = ACTIONS(2447), - [anon_sym_LBRACE] = ACTIONS(2449), - [anon_sym_RBRACE] = ACTIONS(2449), - [anon_sym_LBRACK] = ACTIONS(2447), - [anon_sym_static] = ACTIONS(2447), - [anon_sym_register] = ACTIONS(2447), - [anon_sym_inline] = ACTIONS(2447), - [anon_sym_thread_local] = ACTIONS(2447), - [anon_sym_const] = ACTIONS(2447), - [anon_sym_volatile] = ACTIONS(2447), - [anon_sym_restrict] = ACTIONS(2447), - [anon_sym__Atomic] = ACTIONS(2447), - [anon_sym_mutable] = ACTIONS(2447), - [anon_sym_constexpr] = ACTIONS(2447), - [anon_sym_constinit] = ACTIONS(2447), - [anon_sym_consteval] = ACTIONS(2447), - [anon_sym_signed] = ACTIONS(2447), - [anon_sym_unsigned] = ACTIONS(2447), - [anon_sym_long] = ACTIONS(2447), - [anon_sym_short] = ACTIONS(2447), - [sym_primitive_type] = ACTIONS(2447), - [anon_sym_enum] = ACTIONS(2447), - [anon_sym_class] = ACTIONS(2447), - [anon_sym_struct] = ACTIONS(2447), - [anon_sym_union] = ACTIONS(2447), - [anon_sym_if] = ACTIONS(2447), - [anon_sym_else] = ACTIONS(2447), - [anon_sym_switch] = ACTIONS(2447), - [anon_sym_case] = ACTIONS(2447), - [anon_sym_default] = ACTIONS(2447), - [anon_sym_while] = ACTIONS(2447), - [anon_sym_do] = ACTIONS(2447), - [anon_sym_for] = ACTIONS(2447), - [anon_sym_return] = ACTIONS(2447), - [anon_sym_break] = ACTIONS(2447), - [anon_sym_continue] = ACTIONS(2447), - [anon_sym_goto] = ACTIONS(2447), - [anon_sym_DASH_DASH] = ACTIONS(2449), - [anon_sym_PLUS_PLUS] = ACTIONS(2449), - [anon_sym_sizeof] = ACTIONS(2447), - [sym_number_literal] = ACTIONS(2449), - [anon_sym_L_SQUOTE] = ACTIONS(2449), - [anon_sym_u_SQUOTE] = ACTIONS(2449), - [anon_sym_U_SQUOTE] = ACTIONS(2449), - [anon_sym_u8_SQUOTE] = ACTIONS(2449), - [anon_sym_SQUOTE] = ACTIONS(2449), - [anon_sym_L_DQUOTE] = ACTIONS(2449), - [anon_sym_u_DQUOTE] = ACTIONS(2449), - [anon_sym_U_DQUOTE] = ACTIONS(2449), - [anon_sym_u8_DQUOTE] = ACTIONS(2449), - [anon_sym_DQUOTE] = ACTIONS(2449), - [sym_true] = ACTIONS(2447), - [sym_false] = ACTIONS(2447), - [sym_null] = ACTIONS(2447), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2447), - [anon_sym_decltype] = ACTIONS(2447), - [anon_sym_virtual] = ACTIONS(2447), - [anon_sym_explicit] = ACTIONS(2447), - [anon_sym_typename] = ACTIONS(2447), - [anon_sym_template] = ACTIONS(2447), - [anon_sym_operator] = ACTIONS(2447), - [anon_sym_try] = ACTIONS(2447), - [anon_sym_delete] = ACTIONS(2447), - [anon_sym_throw] = ACTIONS(2447), - [anon_sym_namespace] = ACTIONS(2447), - [anon_sym_using] = ACTIONS(2447), - [anon_sym_static_assert] = ACTIONS(2447), - [anon_sym_concept] = ACTIONS(2447), - [anon_sym_co_return] = ACTIONS(2447), - [anon_sym_co_yield] = ACTIONS(2447), - [anon_sym_co_await] = ACTIONS(2447), - [anon_sym_new] = ACTIONS(2447), - [anon_sym_requires] = ACTIONS(2447), - [sym_this] = ACTIONS(2447), - [sym_nullptr] = ACTIONS(2447), - [sym_raw_string_literal] = ACTIONS(2449), + [sym_auto] = ACTIONS(2757), + [anon_sym_decltype] = ACTIONS(2757), + [anon_sym_virtual] = ACTIONS(2757), + [anon_sym_explicit] = ACTIONS(2757), + [anon_sym_typename] = ACTIONS(2757), + [anon_sym_template] = ACTIONS(2757), + [anon_sym_operator] = ACTIONS(2757), + [anon_sym_try] = ACTIONS(2757), + [anon_sym_delete] = ACTIONS(2757), + [anon_sym_throw] = ACTIONS(2757), + [anon_sym_namespace] = ACTIONS(2757), + [anon_sym_using] = ACTIONS(2757), + [anon_sym_static_assert] = ACTIONS(2757), + [anon_sym_concept] = ACTIONS(2757), + [anon_sym_co_return] = ACTIONS(2757), + [anon_sym_co_yield] = ACTIONS(2757), + [anon_sym_co_await] = ACTIONS(2757), + [anon_sym_new] = ACTIONS(2757), + [anon_sym_requires] = ACTIONS(2757), + [sym_this] = ACTIONS(2757), + [sym_nullptr] = ACTIONS(2757), + [sym_raw_string_literal] = ACTIONS(2759), }, - [787] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_RBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), + [494] = { + [sym_identifier] = ACTIONS(2761), + [aux_sym_preproc_include_token1] = ACTIONS(2761), + [aux_sym_preproc_def_token1] = ACTIONS(2761), + [aux_sym_preproc_if_token1] = ACTIONS(2761), + [aux_sym_preproc_if_token2] = ACTIONS(2761), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2761), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2761), + [aux_sym_preproc_else_token1] = ACTIONS(2761), + [aux_sym_preproc_elif_token1] = ACTIONS(2761), + [sym_preproc_directive] = ACTIONS(2761), + [anon_sym_LPAREN2] = ACTIONS(2763), + [anon_sym_BANG] = ACTIONS(2763), + [anon_sym_TILDE] = ACTIONS(2763), + [anon_sym_DASH] = ACTIONS(2761), + [anon_sym_PLUS] = ACTIONS(2761), + [anon_sym_STAR] = ACTIONS(2763), + [anon_sym_AMP_AMP] = ACTIONS(2763), + [anon_sym_AMP] = ACTIONS(2761), + [anon_sym_SEMI] = ACTIONS(2763), + [anon_sym_typedef] = ACTIONS(2761), + [anon_sym_extern] = ACTIONS(2761), + [anon_sym___attribute__] = ACTIONS(2761), + [anon_sym_COLON_COLON] = ACTIONS(2763), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2763), + [anon_sym___declspec] = ACTIONS(2761), + [anon_sym___based] = ACTIONS(2761), + [anon_sym___cdecl] = ACTIONS(2761), + [anon_sym___clrcall] = ACTIONS(2761), + [anon_sym___stdcall] = ACTIONS(2761), + [anon_sym___fastcall] = ACTIONS(2761), + [anon_sym___thiscall] = ACTIONS(2761), + [anon_sym___vectorcall] = ACTIONS(2761), + [anon_sym_LBRACE] = ACTIONS(2763), + [anon_sym_LBRACK] = ACTIONS(2761), + [anon_sym_static] = ACTIONS(2761), + [anon_sym_register] = ACTIONS(2761), + [anon_sym_inline] = ACTIONS(2761), + [anon_sym_thread_local] = ACTIONS(2761), + [anon_sym_const] = ACTIONS(2761), + [anon_sym_volatile] = ACTIONS(2761), + [anon_sym_restrict] = ACTIONS(2761), + [anon_sym__Atomic] = ACTIONS(2761), + [anon_sym_mutable] = ACTIONS(2761), + [anon_sym_constexpr] = ACTIONS(2761), + [anon_sym_constinit] = ACTIONS(2761), + [anon_sym_consteval] = ACTIONS(2761), + [anon_sym_signed] = ACTIONS(2761), + [anon_sym_unsigned] = ACTIONS(2761), + [anon_sym_long] = ACTIONS(2761), + [anon_sym_short] = ACTIONS(2761), + [sym_primitive_type] = ACTIONS(2761), + [anon_sym_enum] = ACTIONS(2761), + [anon_sym_class] = ACTIONS(2761), + [anon_sym_struct] = ACTIONS(2761), + [anon_sym_union] = ACTIONS(2761), + [anon_sym_if] = ACTIONS(2761), + [anon_sym_switch] = ACTIONS(2761), + [anon_sym_case] = ACTIONS(2761), + [anon_sym_default] = ACTIONS(2761), + [anon_sym_while] = ACTIONS(2761), + [anon_sym_do] = ACTIONS(2761), + [anon_sym_for] = ACTIONS(2761), + [anon_sym_return] = ACTIONS(2761), + [anon_sym_break] = ACTIONS(2761), + [anon_sym_continue] = ACTIONS(2761), + [anon_sym_goto] = ACTIONS(2761), + [anon_sym_not] = ACTIONS(2761), + [anon_sym_compl] = ACTIONS(2761), + [anon_sym_DASH_DASH] = ACTIONS(2763), + [anon_sym_PLUS_PLUS] = ACTIONS(2763), + [anon_sym_sizeof] = ACTIONS(2761), + [sym_number_literal] = ACTIONS(2763), + [anon_sym_L_SQUOTE] = ACTIONS(2763), + [anon_sym_u_SQUOTE] = ACTIONS(2763), + [anon_sym_U_SQUOTE] = ACTIONS(2763), + [anon_sym_u8_SQUOTE] = ACTIONS(2763), + [anon_sym_SQUOTE] = ACTIONS(2763), + [anon_sym_L_DQUOTE] = ACTIONS(2763), + [anon_sym_u_DQUOTE] = ACTIONS(2763), + [anon_sym_U_DQUOTE] = ACTIONS(2763), + [anon_sym_u8_DQUOTE] = ACTIONS(2763), + [anon_sym_DQUOTE] = ACTIONS(2763), + [sym_true] = ACTIONS(2761), + [sym_false] = ACTIONS(2761), + [sym_null] = ACTIONS(2761), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2761), + [anon_sym_decltype] = ACTIONS(2761), + [anon_sym_virtual] = ACTIONS(2761), + [anon_sym_explicit] = ACTIONS(2761), + [anon_sym_typename] = ACTIONS(2761), + [anon_sym_template] = ACTIONS(2761), + [anon_sym_operator] = ACTIONS(2761), + [anon_sym_try] = ACTIONS(2761), + [anon_sym_delete] = ACTIONS(2761), + [anon_sym_throw] = ACTIONS(2761), + [anon_sym_namespace] = ACTIONS(2761), + [anon_sym_using] = ACTIONS(2761), + [anon_sym_static_assert] = ACTIONS(2761), + [anon_sym_concept] = ACTIONS(2761), + [anon_sym_co_return] = ACTIONS(2761), + [anon_sym_co_yield] = ACTIONS(2761), + [anon_sym_co_await] = ACTIONS(2761), + [anon_sym_new] = ACTIONS(2761), + [anon_sym_requires] = ACTIONS(2761), + [sym_this] = ACTIONS(2761), + [sym_nullptr] = ACTIONS(2761), + [sym_raw_string_literal] = ACTIONS(2763), }, - [788] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_RBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), + [495] = { + [sym_identifier] = ACTIONS(2765), + [aux_sym_preproc_include_token1] = ACTIONS(2765), + [aux_sym_preproc_def_token1] = ACTIONS(2765), + [aux_sym_preproc_if_token1] = ACTIONS(2765), + [aux_sym_preproc_if_token2] = ACTIONS(2765), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2765), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2765), + [aux_sym_preproc_else_token1] = ACTIONS(2765), + [aux_sym_preproc_elif_token1] = ACTIONS(2765), + [sym_preproc_directive] = ACTIONS(2765), + [anon_sym_LPAREN2] = ACTIONS(2767), + [anon_sym_BANG] = ACTIONS(2767), + [anon_sym_TILDE] = ACTIONS(2767), + [anon_sym_DASH] = ACTIONS(2765), + [anon_sym_PLUS] = ACTIONS(2765), + [anon_sym_STAR] = ACTIONS(2767), + [anon_sym_AMP_AMP] = ACTIONS(2767), + [anon_sym_AMP] = ACTIONS(2765), + [anon_sym_SEMI] = ACTIONS(2767), + [anon_sym_typedef] = ACTIONS(2765), + [anon_sym_extern] = ACTIONS(2765), + [anon_sym___attribute__] = ACTIONS(2765), + [anon_sym_COLON_COLON] = ACTIONS(2767), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2767), + [anon_sym___declspec] = ACTIONS(2765), + [anon_sym___based] = ACTIONS(2765), + [anon_sym___cdecl] = ACTIONS(2765), + [anon_sym___clrcall] = ACTIONS(2765), + [anon_sym___stdcall] = ACTIONS(2765), + [anon_sym___fastcall] = ACTIONS(2765), + [anon_sym___thiscall] = ACTIONS(2765), + [anon_sym___vectorcall] = ACTIONS(2765), + [anon_sym_LBRACE] = ACTIONS(2767), + [anon_sym_LBRACK] = ACTIONS(2765), + [anon_sym_static] = ACTIONS(2765), + [anon_sym_register] = ACTIONS(2765), + [anon_sym_inline] = ACTIONS(2765), + [anon_sym_thread_local] = ACTIONS(2765), + [anon_sym_const] = ACTIONS(2765), + [anon_sym_volatile] = ACTIONS(2765), + [anon_sym_restrict] = ACTIONS(2765), + [anon_sym__Atomic] = ACTIONS(2765), + [anon_sym_mutable] = ACTIONS(2765), + [anon_sym_constexpr] = ACTIONS(2765), + [anon_sym_constinit] = ACTIONS(2765), + [anon_sym_consteval] = ACTIONS(2765), + [anon_sym_signed] = ACTIONS(2765), + [anon_sym_unsigned] = ACTIONS(2765), + [anon_sym_long] = ACTIONS(2765), + [anon_sym_short] = ACTIONS(2765), + [sym_primitive_type] = ACTIONS(2765), + [anon_sym_enum] = ACTIONS(2765), + [anon_sym_class] = ACTIONS(2765), + [anon_sym_struct] = ACTIONS(2765), + [anon_sym_union] = ACTIONS(2765), + [anon_sym_if] = ACTIONS(2765), + [anon_sym_switch] = ACTIONS(2765), + [anon_sym_case] = ACTIONS(2765), + [anon_sym_default] = ACTIONS(2765), + [anon_sym_while] = ACTIONS(2765), + [anon_sym_do] = ACTIONS(2765), + [anon_sym_for] = ACTIONS(2765), + [anon_sym_return] = ACTIONS(2765), + [anon_sym_break] = ACTIONS(2765), + [anon_sym_continue] = ACTIONS(2765), + [anon_sym_goto] = ACTIONS(2765), + [anon_sym_not] = ACTIONS(2765), + [anon_sym_compl] = ACTIONS(2765), + [anon_sym_DASH_DASH] = ACTIONS(2767), + [anon_sym_PLUS_PLUS] = ACTIONS(2767), + [anon_sym_sizeof] = ACTIONS(2765), + [sym_number_literal] = ACTIONS(2767), + [anon_sym_L_SQUOTE] = ACTIONS(2767), + [anon_sym_u_SQUOTE] = ACTIONS(2767), + [anon_sym_U_SQUOTE] = ACTIONS(2767), + [anon_sym_u8_SQUOTE] = ACTIONS(2767), + [anon_sym_SQUOTE] = ACTIONS(2767), + [anon_sym_L_DQUOTE] = ACTIONS(2767), + [anon_sym_u_DQUOTE] = ACTIONS(2767), + [anon_sym_U_DQUOTE] = ACTIONS(2767), + [anon_sym_u8_DQUOTE] = ACTIONS(2767), + [anon_sym_DQUOTE] = ACTIONS(2767), + [sym_true] = ACTIONS(2765), + [sym_false] = ACTIONS(2765), + [sym_null] = ACTIONS(2765), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2765), + [anon_sym_decltype] = ACTIONS(2765), + [anon_sym_virtual] = ACTIONS(2765), + [anon_sym_explicit] = ACTIONS(2765), + [anon_sym_typename] = ACTIONS(2765), + [anon_sym_template] = ACTIONS(2765), + [anon_sym_operator] = ACTIONS(2765), + [anon_sym_try] = ACTIONS(2765), + [anon_sym_delete] = ACTIONS(2765), + [anon_sym_throw] = ACTIONS(2765), + [anon_sym_namespace] = ACTIONS(2765), + [anon_sym_using] = ACTIONS(2765), + [anon_sym_static_assert] = ACTIONS(2765), + [anon_sym_concept] = ACTIONS(2765), + [anon_sym_co_return] = ACTIONS(2765), + [anon_sym_co_yield] = ACTIONS(2765), + [anon_sym_co_await] = ACTIONS(2765), + [anon_sym_new] = ACTIONS(2765), + [anon_sym_requires] = ACTIONS(2765), + [sym_this] = ACTIONS(2765), + [sym_nullptr] = ACTIONS(2765), + [sym_raw_string_literal] = ACTIONS(2767), }, - [789] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_RBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), + [496] = { + [sym_identifier] = ACTIONS(2769), + [aux_sym_preproc_include_token1] = ACTIONS(2769), + [aux_sym_preproc_def_token1] = ACTIONS(2769), + [aux_sym_preproc_if_token1] = ACTIONS(2769), + [aux_sym_preproc_if_token2] = ACTIONS(2769), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2769), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2769), + [aux_sym_preproc_else_token1] = ACTIONS(2769), + [aux_sym_preproc_elif_token1] = ACTIONS(2769), + [sym_preproc_directive] = ACTIONS(2769), + [anon_sym_LPAREN2] = ACTIONS(2771), + [anon_sym_BANG] = ACTIONS(2771), + [anon_sym_TILDE] = ACTIONS(2771), + [anon_sym_DASH] = ACTIONS(2769), + [anon_sym_PLUS] = ACTIONS(2769), + [anon_sym_STAR] = ACTIONS(2771), + [anon_sym_AMP_AMP] = ACTIONS(2771), + [anon_sym_AMP] = ACTIONS(2769), + [anon_sym_SEMI] = ACTIONS(2771), + [anon_sym_typedef] = ACTIONS(2769), + [anon_sym_extern] = ACTIONS(2769), + [anon_sym___attribute__] = ACTIONS(2769), + [anon_sym_COLON_COLON] = ACTIONS(2771), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2771), + [anon_sym___declspec] = ACTIONS(2769), + [anon_sym___based] = ACTIONS(2769), + [anon_sym___cdecl] = ACTIONS(2769), + [anon_sym___clrcall] = ACTIONS(2769), + [anon_sym___stdcall] = ACTIONS(2769), + [anon_sym___fastcall] = ACTIONS(2769), + [anon_sym___thiscall] = ACTIONS(2769), + [anon_sym___vectorcall] = ACTIONS(2769), + [anon_sym_LBRACE] = ACTIONS(2771), + [anon_sym_LBRACK] = ACTIONS(2769), + [anon_sym_static] = ACTIONS(2769), + [anon_sym_register] = ACTIONS(2769), + [anon_sym_inline] = ACTIONS(2769), + [anon_sym_thread_local] = ACTIONS(2769), + [anon_sym_const] = ACTIONS(2769), + [anon_sym_volatile] = ACTIONS(2769), + [anon_sym_restrict] = ACTIONS(2769), + [anon_sym__Atomic] = ACTIONS(2769), + [anon_sym_mutable] = ACTIONS(2769), + [anon_sym_constexpr] = ACTIONS(2769), + [anon_sym_constinit] = ACTIONS(2769), + [anon_sym_consteval] = ACTIONS(2769), + [anon_sym_signed] = ACTIONS(2769), + [anon_sym_unsigned] = ACTIONS(2769), + [anon_sym_long] = ACTIONS(2769), + [anon_sym_short] = ACTIONS(2769), + [sym_primitive_type] = ACTIONS(2769), + [anon_sym_enum] = ACTIONS(2769), + [anon_sym_class] = ACTIONS(2769), + [anon_sym_struct] = ACTIONS(2769), + [anon_sym_union] = ACTIONS(2769), + [anon_sym_if] = ACTIONS(2769), + [anon_sym_switch] = ACTIONS(2769), + [anon_sym_case] = ACTIONS(2769), + [anon_sym_default] = ACTIONS(2769), + [anon_sym_while] = ACTIONS(2769), + [anon_sym_do] = ACTIONS(2769), + [anon_sym_for] = ACTIONS(2769), + [anon_sym_return] = ACTIONS(2769), + [anon_sym_break] = ACTIONS(2769), + [anon_sym_continue] = ACTIONS(2769), + [anon_sym_goto] = ACTIONS(2769), + [anon_sym_not] = ACTIONS(2769), + [anon_sym_compl] = ACTIONS(2769), + [anon_sym_DASH_DASH] = ACTIONS(2771), + [anon_sym_PLUS_PLUS] = ACTIONS(2771), + [anon_sym_sizeof] = ACTIONS(2769), + [sym_number_literal] = ACTIONS(2771), + [anon_sym_L_SQUOTE] = ACTIONS(2771), + [anon_sym_u_SQUOTE] = ACTIONS(2771), + [anon_sym_U_SQUOTE] = ACTIONS(2771), + [anon_sym_u8_SQUOTE] = ACTIONS(2771), + [anon_sym_SQUOTE] = ACTIONS(2771), + [anon_sym_L_DQUOTE] = ACTIONS(2771), + [anon_sym_u_DQUOTE] = ACTIONS(2771), + [anon_sym_U_DQUOTE] = ACTIONS(2771), + [anon_sym_u8_DQUOTE] = ACTIONS(2771), + [anon_sym_DQUOTE] = ACTIONS(2771), + [sym_true] = ACTIONS(2769), + [sym_false] = ACTIONS(2769), + [sym_null] = ACTIONS(2769), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2769), + [anon_sym_decltype] = ACTIONS(2769), + [anon_sym_virtual] = ACTIONS(2769), + [anon_sym_explicit] = ACTIONS(2769), + [anon_sym_typename] = ACTIONS(2769), + [anon_sym_template] = ACTIONS(2769), + [anon_sym_operator] = ACTIONS(2769), + [anon_sym_try] = ACTIONS(2769), + [anon_sym_delete] = ACTIONS(2769), + [anon_sym_throw] = ACTIONS(2769), + [anon_sym_namespace] = ACTIONS(2769), + [anon_sym_using] = ACTIONS(2769), + [anon_sym_static_assert] = ACTIONS(2769), + [anon_sym_concept] = ACTIONS(2769), + [anon_sym_co_return] = ACTIONS(2769), + [anon_sym_co_yield] = ACTIONS(2769), + [anon_sym_co_await] = ACTIONS(2769), + [anon_sym_new] = ACTIONS(2769), + [anon_sym_requires] = ACTIONS(2769), + [sym_this] = ACTIONS(2769), + [sym_nullptr] = ACTIONS(2769), + [sym_raw_string_literal] = ACTIONS(2771), }, - [790] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_RBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), + [497] = { + [sym_identifier] = ACTIONS(2773), + [aux_sym_preproc_include_token1] = ACTIONS(2773), + [aux_sym_preproc_def_token1] = ACTIONS(2773), + [aux_sym_preproc_if_token1] = ACTIONS(2773), + [aux_sym_preproc_if_token2] = ACTIONS(2773), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2773), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2773), + [aux_sym_preproc_else_token1] = ACTIONS(2773), + [aux_sym_preproc_elif_token1] = ACTIONS(2773), + [sym_preproc_directive] = ACTIONS(2773), + [anon_sym_LPAREN2] = ACTIONS(2775), + [anon_sym_BANG] = ACTIONS(2775), + [anon_sym_TILDE] = ACTIONS(2775), + [anon_sym_DASH] = ACTIONS(2773), + [anon_sym_PLUS] = ACTIONS(2773), + [anon_sym_STAR] = ACTIONS(2775), + [anon_sym_AMP_AMP] = ACTIONS(2775), + [anon_sym_AMP] = ACTIONS(2773), + [anon_sym_SEMI] = ACTIONS(2775), + [anon_sym_typedef] = ACTIONS(2773), + [anon_sym_extern] = ACTIONS(2773), + [anon_sym___attribute__] = ACTIONS(2773), + [anon_sym_COLON_COLON] = ACTIONS(2775), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2775), + [anon_sym___declspec] = ACTIONS(2773), + [anon_sym___based] = ACTIONS(2773), + [anon_sym___cdecl] = ACTIONS(2773), + [anon_sym___clrcall] = ACTIONS(2773), + [anon_sym___stdcall] = ACTIONS(2773), + [anon_sym___fastcall] = ACTIONS(2773), + [anon_sym___thiscall] = ACTIONS(2773), + [anon_sym___vectorcall] = ACTIONS(2773), + [anon_sym_LBRACE] = ACTIONS(2775), + [anon_sym_LBRACK] = ACTIONS(2773), + [anon_sym_static] = ACTIONS(2773), + [anon_sym_register] = ACTIONS(2773), + [anon_sym_inline] = ACTIONS(2773), + [anon_sym_thread_local] = ACTIONS(2773), + [anon_sym_const] = ACTIONS(2773), + [anon_sym_volatile] = ACTIONS(2773), + [anon_sym_restrict] = ACTIONS(2773), + [anon_sym__Atomic] = ACTIONS(2773), + [anon_sym_mutable] = ACTIONS(2773), + [anon_sym_constexpr] = ACTIONS(2773), + [anon_sym_constinit] = ACTIONS(2773), + [anon_sym_consteval] = ACTIONS(2773), + [anon_sym_signed] = ACTIONS(2773), + [anon_sym_unsigned] = ACTIONS(2773), + [anon_sym_long] = ACTIONS(2773), + [anon_sym_short] = ACTIONS(2773), + [sym_primitive_type] = ACTIONS(2773), + [anon_sym_enum] = ACTIONS(2773), + [anon_sym_class] = ACTIONS(2773), + [anon_sym_struct] = ACTIONS(2773), + [anon_sym_union] = ACTIONS(2773), + [anon_sym_if] = ACTIONS(2773), + [anon_sym_switch] = ACTIONS(2773), + [anon_sym_case] = ACTIONS(2773), + [anon_sym_default] = ACTIONS(2773), + [anon_sym_while] = ACTIONS(2773), + [anon_sym_do] = ACTIONS(2773), + [anon_sym_for] = ACTIONS(2773), + [anon_sym_return] = ACTIONS(2773), + [anon_sym_break] = ACTIONS(2773), + [anon_sym_continue] = ACTIONS(2773), + [anon_sym_goto] = ACTIONS(2773), + [anon_sym_not] = ACTIONS(2773), + [anon_sym_compl] = ACTIONS(2773), + [anon_sym_DASH_DASH] = ACTIONS(2775), + [anon_sym_PLUS_PLUS] = ACTIONS(2775), + [anon_sym_sizeof] = ACTIONS(2773), + [sym_number_literal] = ACTIONS(2775), + [anon_sym_L_SQUOTE] = ACTIONS(2775), + [anon_sym_u_SQUOTE] = ACTIONS(2775), + [anon_sym_U_SQUOTE] = ACTIONS(2775), + [anon_sym_u8_SQUOTE] = ACTIONS(2775), + [anon_sym_SQUOTE] = ACTIONS(2775), + [anon_sym_L_DQUOTE] = ACTIONS(2775), + [anon_sym_u_DQUOTE] = ACTIONS(2775), + [anon_sym_U_DQUOTE] = ACTIONS(2775), + [anon_sym_u8_DQUOTE] = ACTIONS(2775), + [anon_sym_DQUOTE] = ACTIONS(2775), + [sym_true] = ACTIONS(2773), + [sym_false] = ACTIONS(2773), + [sym_null] = ACTIONS(2773), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2773), + [anon_sym_decltype] = ACTIONS(2773), + [anon_sym_virtual] = ACTIONS(2773), + [anon_sym_explicit] = ACTIONS(2773), + [anon_sym_typename] = ACTIONS(2773), + [anon_sym_template] = ACTIONS(2773), + [anon_sym_operator] = ACTIONS(2773), + [anon_sym_try] = ACTIONS(2773), + [anon_sym_delete] = ACTIONS(2773), + [anon_sym_throw] = ACTIONS(2773), + [anon_sym_namespace] = ACTIONS(2773), + [anon_sym_using] = ACTIONS(2773), + [anon_sym_static_assert] = ACTIONS(2773), + [anon_sym_concept] = ACTIONS(2773), + [anon_sym_co_return] = ACTIONS(2773), + [anon_sym_co_yield] = ACTIONS(2773), + [anon_sym_co_await] = ACTIONS(2773), + [anon_sym_new] = ACTIONS(2773), + [anon_sym_requires] = ACTIONS(2773), + [sym_this] = ACTIONS(2773), + [sym_nullptr] = ACTIONS(2773), + [sym_raw_string_literal] = ACTIONS(2775), }, - [791] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_RBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), + [498] = { + [sym_identifier] = ACTIONS(2777), + [aux_sym_preproc_include_token1] = ACTIONS(2777), + [aux_sym_preproc_def_token1] = ACTIONS(2777), + [aux_sym_preproc_if_token1] = ACTIONS(2777), + [aux_sym_preproc_if_token2] = ACTIONS(2777), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2777), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2777), + [aux_sym_preproc_else_token1] = ACTIONS(2777), + [aux_sym_preproc_elif_token1] = ACTIONS(2777), + [sym_preproc_directive] = ACTIONS(2777), + [anon_sym_LPAREN2] = ACTIONS(2779), + [anon_sym_BANG] = ACTIONS(2779), + [anon_sym_TILDE] = ACTIONS(2779), + [anon_sym_DASH] = ACTIONS(2777), + [anon_sym_PLUS] = ACTIONS(2777), + [anon_sym_STAR] = ACTIONS(2779), + [anon_sym_AMP_AMP] = ACTIONS(2779), + [anon_sym_AMP] = ACTIONS(2777), + [anon_sym_SEMI] = ACTIONS(2779), + [anon_sym_typedef] = ACTIONS(2777), + [anon_sym_extern] = ACTIONS(2777), + [anon_sym___attribute__] = ACTIONS(2777), + [anon_sym_COLON_COLON] = ACTIONS(2779), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2779), + [anon_sym___declspec] = ACTIONS(2777), + [anon_sym___based] = ACTIONS(2777), + [anon_sym___cdecl] = ACTIONS(2777), + [anon_sym___clrcall] = ACTIONS(2777), + [anon_sym___stdcall] = ACTIONS(2777), + [anon_sym___fastcall] = ACTIONS(2777), + [anon_sym___thiscall] = ACTIONS(2777), + [anon_sym___vectorcall] = ACTIONS(2777), + [anon_sym_LBRACE] = ACTIONS(2779), + [anon_sym_LBRACK] = ACTIONS(2777), + [anon_sym_static] = ACTIONS(2777), + [anon_sym_register] = ACTIONS(2777), + [anon_sym_inline] = ACTIONS(2777), + [anon_sym_thread_local] = ACTIONS(2777), + [anon_sym_const] = ACTIONS(2777), + [anon_sym_volatile] = ACTIONS(2777), + [anon_sym_restrict] = ACTIONS(2777), + [anon_sym__Atomic] = ACTIONS(2777), + [anon_sym_mutable] = ACTIONS(2777), + [anon_sym_constexpr] = ACTIONS(2777), + [anon_sym_constinit] = ACTIONS(2777), + [anon_sym_consteval] = ACTIONS(2777), + [anon_sym_signed] = ACTIONS(2777), + [anon_sym_unsigned] = ACTIONS(2777), + [anon_sym_long] = ACTIONS(2777), + [anon_sym_short] = ACTIONS(2777), + [sym_primitive_type] = ACTIONS(2777), + [anon_sym_enum] = ACTIONS(2777), + [anon_sym_class] = ACTIONS(2777), + [anon_sym_struct] = ACTIONS(2777), + [anon_sym_union] = ACTIONS(2777), + [anon_sym_if] = ACTIONS(2777), + [anon_sym_switch] = ACTIONS(2777), + [anon_sym_case] = ACTIONS(2777), + [anon_sym_default] = ACTIONS(2777), + [anon_sym_while] = ACTIONS(2777), + [anon_sym_do] = ACTIONS(2777), + [anon_sym_for] = ACTIONS(2777), + [anon_sym_return] = ACTIONS(2777), + [anon_sym_break] = ACTIONS(2777), + [anon_sym_continue] = ACTIONS(2777), + [anon_sym_goto] = ACTIONS(2777), + [anon_sym_not] = ACTIONS(2777), + [anon_sym_compl] = ACTIONS(2777), + [anon_sym_DASH_DASH] = ACTIONS(2779), + [anon_sym_PLUS_PLUS] = ACTIONS(2779), + [anon_sym_sizeof] = ACTIONS(2777), + [sym_number_literal] = ACTIONS(2779), + [anon_sym_L_SQUOTE] = ACTIONS(2779), + [anon_sym_u_SQUOTE] = ACTIONS(2779), + [anon_sym_U_SQUOTE] = ACTIONS(2779), + [anon_sym_u8_SQUOTE] = ACTIONS(2779), + [anon_sym_SQUOTE] = ACTIONS(2779), + [anon_sym_L_DQUOTE] = ACTIONS(2779), + [anon_sym_u_DQUOTE] = ACTIONS(2779), + [anon_sym_U_DQUOTE] = ACTIONS(2779), + [anon_sym_u8_DQUOTE] = ACTIONS(2779), + [anon_sym_DQUOTE] = ACTIONS(2779), + [sym_true] = ACTIONS(2777), + [sym_false] = ACTIONS(2777), + [sym_null] = ACTIONS(2777), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2777), + [anon_sym_decltype] = ACTIONS(2777), + [anon_sym_virtual] = ACTIONS(2777), + [anon_sym_explicit] = ACTIONS(2777), + [anon_sym_typename] = ACTIONS(2777), + [anon_sym_template] = ACTIONS(2777), + [anon_sym_operator] = ACTIONS(2777), + [anon_sym_try] = ACTIONS(2777), + [anon_sym_delete] = ACTIONS(2777), + [anon_sym_throw] = ACTIONS(2777), + [anon_sym_namespace] = ACTIONS(2777), + [anon_sym_using] = ACTIONS(2777), + [anon_sym_static_assert] = ACTIONS(2777), + [anon_sym_concept] = ACTIONS(2777), + [anon_sym_co_return] = ACTIONS(2777), + [anon_sym_co_yield] = ACTIONS(2777), + [anon_sym_co_await] = ACTIONS(2777), + [anon_sym_new] = ACTIONS(2777), + [anon_sym_requires] = ACTIONS(2777), + [sym_this] = ACTIONS(2777), + [sym_nullptr] = ACTIONS(2777), + [sym_raw_string_literal] = ACTIONS(2779), }, - [792] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_RBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), + [499] = { + [sym_identifier] = ACTIONS(2781), + [aux_sym_preproc_include_token1] = ACTIONS(2781), + [aux_sym_preproc_def_token1] = ACTIONS(2781), + [aux_sym_preproc_if_token1] = ACTIONS(2781), + [aux_sym_preproc_if_token2] = ACTIONS(2781), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2781), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2781), + [aux_sym_preproc_else_token1] = ACTIONS(2781), + [aux_sym_preproc_elif_token1] = ACTIONS(2781), + [sym_preproc_directive] = ACTIONS(2781), + [anon_sym_LPAREN2] = ACTIONS(2783), + [anon_sym_BANG] = ACTIONS(2783), + [anon_sym_TILDE] = ACTIONS(2783), + [anon_sym_DASH] = ACTIONS(2781), + [anon_sym_PLUS] = ACTIONS(2781), + [anon_sym_STAR] = ACTIONS(2783), + [anon_sym_AMP_AMP] = ACTIONS(2783), + [anon_sym_AMP] = ACTIONS(2781), + [anon_sym_SEMI] = ACTIONS(2783), + [anon_sym_typedef] = ACTIONS(2781), + [anon_sym_extern] = ACTIONS(2781), + [anon_sym___attribute__] = ACTIONS(2781), + [anon_sym_COLON_COLON] = ACTIONS(2783), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2783), + [anon_sym___declspec] = ACTIONS(2781), + [anon_sym___based] = ACTIONS(2781), + [anon_sym___cdecl] = ACTIONS(2781), + [anon_sym___clrcall] = ACTIONS(2781), + [anon_sym___stdcall] = ACTIONS(2781), + [anon_sym___fastcall] = ACTIONS(2781), + [anon_sym___thiscall] = ACTIONS(2781), + [anon_sym___vectorcall] = ACTIONS(2781), + [anon_sym_LBRACE] = ACTIONS(2783), + [anon_sym_LBRACK] = ACTIONS(2781), + [anon_sym_static] = ACTIONS(2781), + [anon_sym_register] = ACTIONS(2781), + [anon_sym_inline] = ACTIONS(2781), + [anon_sym_thread_local] = ACTIONS(2781), + [anon_sym_const] = ACTIONS(2781), + [anon_sym_volatile] = ACTIONS(2781), + [anon_sym_restrict] = ACTIONS(2781), + [anon_sym__Atomic] = ACTIONS(2781), + [anon_sym_mutable] = ACTIONS(2781), + [anon_sym_constexpr] = ACTIONS(2781), + [anon_sym_constinit] = ACTIONS(2781), + [anon_sym_consteval] = ACTIONS(2781), + [anon_sym_signed] = ACTIONS(2781), + [anon_sym_unsigned] = ACTIONS(2781), + [anon_sym_long] = ACTIONS(2781), + [anon_sym_short] = ACTIONS(2781), + [sym_primitive_type] = ACTIONS(2781), + [anon_sym_enum] = ACTIONS(2781), + [anon_sym_class] = ACTIONS(2781), + [anon_sym_struct] = ACTIONS(2781), + [anon_sym_union] = ACTIONS(2781), + [anon_sym_if] = ACTIONS(2781), + [anon_sym_switch] = ACTIONS(2781), + [anon_sym_case] = ACTIONS(2781), + [anon_sym_default] = ACTIONS(2781), + [anon_sym_while] = ACTIONS(2781), + [anon_sym_do] = ACTIONS(2781), + [anon_sym_for] = ACTIONS(2781), + [anon_sym_return] = ACTIONS(2781), + [anon_sym_break] = ACTIONS(2781), + [anon_sym_continue] = ACTIONS(2781), + [anon_sym_goto] = ACTIONS(2781), + [anon_sym_not] = ACTIONS(2781), + [anon_sym_compl] = ACTIONS(2781), + [anon_sym_DASH_DASH] = ACTIONS(2783), + [anon_sym_PLUS_PLUS] = ACTIONS(2783), + [anon_sym_sizeof] = ACTIONS(2781), + [sym_number_literal] = ACTIONS(2783), + [anon_sym_L_SQUOTE] = ACTIONS(2783), + [anon_sym_u_SQUOTE] = ACTIONS(2783), + [anon_sym_U_SQUOTE] = ACTIONS(2783), + [anon_sym_u8_SQUOTE] = ACTIONS(2783), + [anon_sym_SQUOTE] = ACTIONS(2783), + [anon_sym_L_DQUOTE] = ACTIONS(2783), + [anon_sym_u_DQUOTE] = ACTIONS(2783), + [anon_sym_U_DQUOTE] = ACTIONS(2783), + [anon_sym_u8_DQUOTE] = ACTIONS(2783), + [anon_sym_DQUOTE] = ACTIONS(2783), + [sym_true] = ACTIONS(2781), + [sym_false] = ACTIONS(2781), + [sym_null] = ACTIONS(2781), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2781), + [anon_sym_decltype] = ACTIONS(2781), + [anon_sym_virtual] = ACTIONS(2781), + [anon_sym_explicit] = ACTIONS(2781), + [anon_sym_typename] = ACTIONS(2781), + [anon_sym_template] = ACTIONS(2781), + [anon_sym_operator] = ACTIONS(2781), + [anon_sym_try] = ACTIONS(2781), + [anon_sym_delete] = ACTIONS(2781), + [anon_sym_throw] = ACTIONS(2781), + [anon_sym_namespace] = ACTIONS(2781), + [anon_sym_using] = ACTIONS(2781), + [anon_sym_static_assert] = ACTIONS(2781), + [anon_sym_concept] = ACTIONS(2781), + [anon_sym_co_return] = ACTIONS(2781), + [anon_sym_co_yield] = ACTIONS(2781), + [anon_sym_co_await] = ACTIONS(2781), + [anon_sym_new] = ACTIONS(2781), + [anon_sym_requires] = ACTIONS(2781), + [sym_this] = ACTIONS(2781), + [sym_nullptr] = ACTIONS(2781), + [sym_raw_string_literal] = ACTIONS(2783), }, - [793] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_RBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), + [500] = { + [sym_identifier] = ACTIONS(2785), + [aux_sym_preproc_include_token1] = ACTIONS(2785), + [aux_sym_preproc_def_token1] = ACTIONS(2785), + [aux_sym_preproc_if_token1] = ACTIONS(2785), + [aux_sym_preproc_if_token2] = ACTIONS(2785), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2785), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2785), + [aux_sym_preproc_else_token1] = ACTIONS(2785), + [aux_sym_preproc_elif_token1] = ACTIONS(2785), + [sym_preproc_directive] = ACTIONS(2785), + [anon_sym_LPAREN2] = ACTIONS(2787), + [anon_sym_BANG] = ACTIONS(2787), + [anon_sym_TILDE] = ACTIONS(2787), + [anon_sym_DASH] = ACTIONS(2785), + [anon_sym_PLUS] = ACTIONS(2785), + [anon_sym_STAR] = ACTIONS(2787), + [anon_sym_AMP_AMP] = ACTIONS(2787), + [anon_sym_AMP] = ACTIONS(2785), + [anon_sym_SEMI] = ACTIONS(2787), + [anon_sym_typedef] = ACTIONS(2785), + [anon_sym_extern] = ACTIONS(2785), + [anon_sym___attribute__] = ACTIONS(2785), + [anon_sym_COLON_COLON] = ACTIONS(2787), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2787), + [anon_sym___declspec] = ACTIONS(2785), + [anon_sym___based] = ACTIONS(2785), + [anon_sym___cdecl] = ACTIONS(2785), + [anon_sym___clrcall] = ACTIONS(2785), + [anon_sym___stdcall] = ACTIONS(2785), + [anon_sym___fastcall] = ACTIONS(2785), + [anon_sym___thiscall] = ACTIONS(2785), + [anon_sym___vectorcall] = ACTIONS(2785), + [anon_sym_LBRACE] = ACTIONS(2787), + [anon_sym_LBRACK] = ACTIONS(2785), + [anon_sym_static] = ACTIONS(2785), + [anon_sym_register] = ACTIONS(2785), + [anon_sym_inline] = ACTIONS(2785), + [anon_sym_thread_local] = ACTIONS(2785), + [anon_sym_const] = ACTIONS(2785), + [anon_sym_volatile] = ACTIONS(2785), + [anon_sym_restrict] = ACTIONS(2785), + [anon_sym__Atomic] = ACTIONS(2785), + [anon_sym_mutable] = ACTIONS(2785), + [anon_sym_constexpr] = ACTIONS(2785), + [anon_sym_constinit] = ACTIONS(2785), + [anon_sym_consteval] = ACTIONS(2785), + [anon_sym_signed] = ACTIONS(2785), + [anon_sym_unsigned] = ACTIONS(2785), + [anon_sym_long] = ACTIONS(2785), + [anon_sym_short] = ACTIONS(2785), + [sym_primitive_type] = ACTIONS(2785), + [anon_sym_enum] = ACTIONS(2785), + [anon_sym_class] = ACTIONS(2785), + [anon_sym_struct] = ACTIONS(2785), + [anon_sym_union] = ACTIONS(2785), + [anon_sym_if] = ACTIONS(2785), + [anon_sym_switch] = ACTIONS(2785), + [anon_sym_case] = ACTIONS(2785), + [anon_sym_default] = ACTIONS(2785), + [anon_sym_while] = ACTIONS(2785), + [anon_sym_do] = ACTIONS(2785), + [anon_sym_for] = ACTIONS(2785), + [anon_sym_return] = ACTIONS(2785), + [anon_sym_break] = ACTIONS(2785), + [anon_sym_continue] = ACTIONS(2785), + [anon_sym_goto] = ACTIONS(2785), + [anon_sym_not] = ACTIONS(2785), + [anon_sym_compl] = ACTIONS(2785), + [anon_sym_DASH_DASH] = ACTIONS(2787), + [anon_sym_PLUS_PLUS] = ACTIONS(2787), + [anon_sym_sizeof] = ACTIONS(2785), + [sym_number_literal] = ACTIONS(2787), + [anon_sym_L_SQUOTE] = ACTIONS(2787), + [anon_sym_u_SQUOTE] = ACTIONS(2787), + [anon_sym_U_SQUOTE] = ACTIONS(2787), + [anon_sym_u8_SQUOTE] = ACTIONS(2787), + [anon_sym_SQUOTE] = ACTIONS(2787), + [anon_sym_L_DQUOTE] = ACTIONS(2787), + [anon_sym_u_DQUOTE] = ACTIONS(2787), + [anon_sym_U_DQUOTE] = ACTIONS(2787), + [anon_sym_u8_DQUOTE] = ACTIONS(2787), + [anon_sym_DQUOTE] = ACTIONS(2787), + [sym_true] = ACTIONS(2785), + [sym_false] = ACTIONS(2785), + [sym_null] = ACTIONS(2785), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2785), + [anon_sym_decltype] = ACTIONS(2785), + [anon_sym_virtual] = ACTIONS(2785), + [anon_sym_explicit] = ACTIONS(2785), + [anon_sym_typename] = ACTIONS(2785), + [anon_sym_template] = ACTIONS(2785), + [anon_sym_operator] = ACTIONS(2785), + [anon_sym_try] = ACTIONS(2785), + [anon_sym_delete] = ACTIONS(2785), + [anon_sym_throw] = ACTIONS(2785), + [anon_sym_namespace] = ACTIONS(2785), + [anon_sym_using] = ACTIONS(2785), + [anon_sym_static_assert] = ACTIONS(2785), + [anon_sym_concept] = ACTIONS(2785), + [anon_sym_co_return] = ACTIONS(2785), + [anon_sym_co_yield] = ACTIONS(2785), + [anon_sym_co_await] = ACTIONS(2785), + [anon_sym_new] = ACTIONS(2785), + [anon_sym_requires] = ACTIONS(2785), + [sym_this] = ACTIONS(2785), + [sym_nullptr] = ACTIONS(2785), + [sym_raw_string_literal] = ACTIONS(2787), }, - [794] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_RBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), + [501] = { + [sym_identifier] = ACTIONS(2789), + [aux_sym_preproc_include_token1] = ACTIONS(2789), + [aux_sym_preproc_def_token1] = ACTIONS(2789), + [aux_sym_preproc_if_token1] = ACTIONS(2789), + [aux_sym_preproc_if_token2] = ACTIONS(2789), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2789), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2789), + [aux_sym_preproc_else_token1] = ACTIONS(2789), + [aux_sym_preproc_elif_token1] = ACTIONS(2789), + [sym_preproc_directive] = ACTIONS(2789), + [anon_sym_LPAREN2] = ACTIONS(2791), + [anon_sym_BANG] = ACTIONS(2791), + [anon_sym_TILDE] = ACTIONS(2791), + [anon_sym_DASH] = ACTIONS(2789), + [anon_sym_PLUS] = ACTIONS(2789), + [anon_sym_STAR] = ACTIONS(2791), + [anon_sym_AMP_AMP] = ACTIONS(2791), + [anon_sym_AMP] = ACTIONS(2789), + [anon_sym_SEMI] = ACTIONS(2791), + [anon_sym_typedef] = ACTIONS(2789), + [anon_sym_extern] = ACTIONS(2789), + [anon_sym___attribute__] = ACTIONS(2789), + [anon_sym_COLON_COLON] = ACTIONS(2791), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2791), + [anon_sym___declspec] = ACTIONS(2789), + [anon_sym___based] = ACTIONS(2789), + [anon_sym___cdecl] = ACTIONS(2789), + [anon_sym___clrcall] = ACTIONS(2789), + [anon_sym___stdcall] = ACTIONS(2789), + [anon_sym___fastcall] = ACTIONS(2789), + [anon_sym___thiscall] = ACTIONS(2789), + [anon_sym___vectorcall] = ACTIONS(2789), + [anon_sym_LBRACE] = ACTIONS(2791), + [anon_sym_LBRACK] = ACTIONS(2789), + [anon_sym_static] = ACTIONS(2789), + [anon_sym_register] = ACTIONS(2789), + [anon_sym_inline] = ACTIONS(2789), + [anon_sym_thread_local] = ACTIONS(2789), + [anon_sym_const] = ACTIONS(2789), + [anon_sym_volatile] = ACTIONS(2789), + [anon_sym_restrict] = ACTIONS(2789), + [anon_sym__Atomic] = ACTIONS(2789), + [anon_sym_mutable] = ACTIONS(2789), + [anon_sym_constexpr] = ACTIONS(2789), + [anon_sym_constinit] = ACTIONS(2789), + [anon_sym_consteval] = ACTIONS(2789), + [anon_sym_signed] = ACTIONS(2789), + [anon_sym_unsigned] = ACTIONS(2789), + [anon_sym_long] = ACTIONS(2789), + [anon_sym_short] = ACTIONS(2789), + [sym_primitive_type] = ACTIONS(2789), + [anon_sym_enum] = ACTIONS(2789), + [anon_sym_class] = ACTIONS(2789), + [anon_sym_struct] = ACTIONS(2789), + [anon_sym_union] = ACTIONS(2789), + [anon_sym_if] = ACTIONS(2789), + [anon_sym_switch] = ACTIONS(2789), + [anon_sym_case] = ACTIONS(2789), + [anon_sym_default] = ACTIONS(2789), + [anon_sym_while] = ACTIONS(2789), + [anon_sym_do] = ACTIONS(2789), + [anon_sym_for] = ACTIONS(2789), + [anon_sym_return] = ACTIONS(2789), + [anon_sym_break] = ACTIONS(2789), + [anon_sym_continue] = ACTIONS(2789), + [anon_sym_goto] = ACTIONS(2789), + [anon_sym_not] = ACTIONS(2789), + [anon_sym_compl] = ACTIONS(2789), + [anon_sym_DASH_DASH] = ACTIONS(2791), + [anon_sym_PLUS_PLUS] = ACTIONS(2791), + [anon_sym_sizeof] = ACTIONS(2789), + [sym_number_literal] = ACTIONS(2791), + [anon_sym_L_SQUOTE] = ACTIONS(2791), + [anon_sym_u_SQUOTE] = ACTIONS(2791), + [anon_sym_U_SQUOTE] = ACTIONS(2791), + [anon_sym_u8_SQUOTE] = ACTIONS(2791), + [anon_sym_SQUOTE] = ACTIONS(2791), + [anon_sym_L_DQUOTE] = ACTIONS(2791), + [anon_sym_u_DQUOTE] = ACTIONS(2791), + [anon_sym_U_DQUOTE] = ACTIONS(2791), + [anon_sym_u8_DQUOTE] = ACTIONS(2791), + [anon_sym_DQUOTE] = ACTIONS(2791), + [sym_true] = ACTIONS(2789), + [sym_false] = ACTIONS(2789), + [sym_null] = ACTIONS(2789), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2789), + [anon_sym_decltype] = ACTIONS(2789), + [anon_sym_virtual] = ACTIONS(2789), + [anon_sym_explicit] = ACTIONS(2789), + [anon_sym_typename] = ACTIONS(2789), + [anon_sym_template] = ACTIONS(2789), + [anon_sym_operator] = ACTIONS(2789), + [anon_sym_try] = ACTIONS(2789), + [anon_sym_delete] = ACTIONS(2789), + [anon_sym_throw] = ACTIONS(2789), + [anon_sym_namespace] = ACTIONS(2789), + [anon_sym_using] = ACTIONS(2789), + [anon_sym_static_assert] = ACTIONS(2789), + [anon_sym_concept] = ACTIONS(2789), + [anon_sym_co_return] = ACTIONS(2789), + [anon_sym_co_yield] = ACTIONS(2789), + [anon_sym_co_await] = ACTIONS(2789), + [anon_sym_new] = ACTIONS(2789), + [anon_sym_requires] = ACTIONS(2789), + [sym_this] = ACTIONS(2789), + [sym_nullptr] = ACTIONS(2789), + [sym_raw_string_literal] = ACTIONS(2791), }, - [795] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_RBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), + [502] = { + [sym_identifier] = ACTIONS(2793), + [aux_sym_preproc_include_token1] = ACTIONS(2793), + [aux_sym_preproc_def_token1] = ACTIONS(2793), + [aux_sym_preproc_if_token1] = ACTIONS(2793), + [aux_sym_preproc_if_token2] = ACTIONS(2793), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2793), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2793), + [aux_sym_preproc_else_token1] = ACTIONS(2793), + [aux_sym_preproc_elif_token1] = ACTIONS(2793), + [sym_preproc_directive] = ACTIONS(2793), + [anon_sym_LPAREN2] = ACTIONS(2795), + [anon_sym_BANG] = ACTIONS(2795), + [anon_sym_TILDE] = ACTIONS(2795), + [anon_sym_DASH] = ACTIONS(2793), + [anon_sym_PLUS] = ACTIONS(2793), + [anon_sym_STAR] = ACTIONS(2795), + [anon_sym_AMP_AMP] = ACTIONS(2795), + [anon_sym_AMP] = ACTIONS(2793), + [anon_sym_SEMI] = ACTIONS(2795), + [anon_sym_typedef] = ACTIONS(2793), + [anon_sym_extern] = ACTIONS(2793), + [anon_sym___attribute__] = ACTIONS(2793), + [anon_sym_COLON_COLON] = ACTIONS(2795), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2795), + [anon_sym___declspec] = ACTIONS(2793), + [anon_sym___based] = ACTIONS(2793), + [anon_sym___cdecl] = ACTIONS(2793), + [anon_sym___clrcall] = ACTIONS(2793), + [anon_sym___stdcall] = ACTIONS(2793), + [anon_sym___fastcall] = ACTIONS(2793), + [anon_sym___thiscall] = ACTIONS(2793), + [anon_sym___vectorcall] = ACTIONS(2793), + [anon_sym_LBRACE] = ACTIONS(2795), + [anon_sym_LBRACK] = ACTIONS(2793), + [anon_sym_static] = ACTIONS(2793), + [anon_sym_register] = ACTIONS(2793), + [anon_sym_inline] = ACTIONS(2793), + [anon_sym_thread_local] = ACTIONS(2793), + [anon_sym_const] = ACTIONS(2793), + [anon_sym_volatile] = ACTIONS(2793), + [anon_sym_restrict] = ACTIONS(2793), + [anon_sym__Atomic] = ACTIONS(2793), + [anon_sym_mutable] = ACTIONS(2793), + [anon_sym_constexpr] = ACTIONS(2793), + [anon_sym_constinit] = ACTIONS(2793), + [anon_sym_consteval] = ACTIONS(2793), + [anon_sym_signed] = ACTIONS(2793), + [anon_sym_unsigned] = ACTIONS(2793), + [anon_sym_long] = ACTIONS(2793), + [anon_sym_short] = ACTIONS(2793), + [sym_primitive_type] = ACTIONS(2793), + [anon_sym_enum] = ACTIONS(2793), + [anon_sym_class] = ACTIONS(2793), + [anon_sym_struct] = ACTIONS(2793), + [anon_sym_union] = ACTIONS(2793), + [anon_sym_if] = ACTIONS(2793), + [anon_sym_switch] = ACTIONS(2793), + [anon_sym_case] = ACTIONS(2793), + [anon_sym_default] = ACTIONS(2793), + [anon_sym_while] = ACTIONS(2793), + [anon_sym_do] = ACTIONS(2793), + [anon_sym_for] = ACTIONS(2793), + [anon_sym_return] = ACTIONS(2793), + [anon_sym_break] = ACTIONS(2793), + [anon_sym_continue] = ACTIONS(2793), + [anon_sym_goto] = ACTIONS(2793), + [anon_sym_not] = ACTIONS(2793), + [anon_sym_compl] = ACTIONS(2793), + [anon_sym_DASH_DASH] = ACTIONS(2795), + [anon_sym_PLUS_PLUS] = ACTIONS(2795), + [anon_sym_sizeof] = ACTIONS(2793), + [sym_number_literal] = ACTIONS(2795), + [anon_sym_L_SQUOTE] = ACTIONS(2795), + [anon_sym_u_SQUOTE] = ACTIONS(2795), + [anon_sym_U_SQUOTE] = ACTIONS(2795), + [anon_sym_u8_SQUOTE] = ACTIONS(2795), + [anon_sym_SQUOTE] = ACTIONS(2795), + [anon_sym_L_DQUOTE] = ACTIONS(2795), + [anon_sym_u_DQUOTE] = ACTIONS(2795), + [anon_sym_U_DQUOTE] = ACTIONS(2795), + [anon_sym_u8_DQUOTE] = ACTIONS(2795), + [anon_sym_DQUOTE] = ACTIONS(2795), + [sym_true] = ACTIONS(2793), + [sym_false] = ACTIONS(2793), + [sym_null] = ACTIONS(2793), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2793), + [anon_sym_decltype] = ACTIONS(2793), + [anon_sym_virtual] = ACTIONS(2793), + [anon_sym_explicit] = ACTIONS(2793), + [anon_sym_typename] = ACTIONS(2793), + [anon_sym_template] = ACTIONS(2793), + [anon_sym_operator] = ACTIONS(2793), + [anon_sym_try] = ACTIONS(2793), + [anon_sym_delete] = ACTIONS(2793), + [anon_sym_throw] = ACTIONS(2793), + [anon_sym_namespace] = ACTIONS(2793), + [anon_sym_using] = ACTIONS(2793), + [anon_sym_static_assert] = ACTIONS(2793), + [anon_sym_concept] = ACTIONS(2793), + [anon_sym_co_return] = ACTIONS(2793), + [anon_sym_co_yield] = ACTIONS(2793), + [anon_sym_co_await] = ACTIONS(2793), + [anon_sym_new] = ACTIONS(2793), + [anon_sym_requires] = ACTIONS(2793), + [sym_this] = ACTIONS(2793), + [sym_nullptr] = ACTIONS(2793), + [sym_raw_string_literal] = ACTIONS(2795), }, - [796] = { - [sym_identifier] = ACTIONS(2347), - [aux_sym_preproc_include_token1] = ACTIONS(2347), - [aux_sym_preproc_def_token1] = ACTIONS(2347), - [aux_sym_preproc_if_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2347), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2347), - [sym_preproc_directive] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP_AMP] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym___based] = ACTIONS(2347), - [anon_sym___cdecl] = ACTIONS(2347), - [anon_sym___clrcall] = ACTIONS(2347), - [anon_sym___stdcall] = ACTIONS(2347), - [anon_sym___fastcall] = ACTIONS(2347), - [anon_sym___thiscall] = ACTIONS(2347), - [anon_sym___vectorcall] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_RBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_case] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_explicit] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_operator] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2347), - [anon_sym_using] = ACTIONS(2347), - [anon_sym_static_assert] = ACTIONS(2347), - [anon_sym_concept] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), + [503] = { + [sym_identifier] = ACTIONS(2797), + [aux_sym_preproc_include_token1] = ACTIONS(2797), + [aux_sym_preproc_def_token1] = ACTIONS(2797), + [aux_sym_preproc_if_token1] = ACTIONS(2797), + [aux_sym_preproc_if_token2] = ACTIONS(2797), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2797), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2797), + [aux_sym_preproc_else_token1] = ACTIONS(2797), + [aux_sym_preproc_elif_token1] = ACTIONS(2797), + [sym_preproc_directive] = ACTIONS(2797), + [anon_sym_LPAREN2] = ACTIONS(2799), + [anon_sym_BANG] = ACTIONS(2799), + [anon_sym_TILDE] = ACTIONS(2799), + [anon_sym_DASH] = ACTIONS(2797), + [anon_sym_PLUS] = ACTIONS(2797), + [anon_sym_STAR] = ACTIONS(2799), + [anon_sym_AMP_AMP] = ACTIONS(2799), + [anon_sym_AMP] = ACTIONS(2797), + [anon_sym_SEMI] = ACTIONS(2799), + [anon_sym_typedef] = ACTIONS(2797), + [anon_sym_extern] = ACTIONS(2797), + [anon_sym___attribute__] = ACTIONS(2797), + [anon_sym_COLON_COLON] = ACTIONS(2799), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2799), + [anon_sym___declspec] = ACTIONS(2797), + [anon_sym___based] = ACTIONS(2797), + [anon_sym___cdecl] = ACTIONS(2797), + [anon_sym___clrcall] = ACTIONS(2797), + [anon_sym___stdcall] = ACTIONS(2797), + [anon_sym___fastcall] = ACTIONS(2797), + [anon_sym___thiscall] = ACTIONS(2797), + [anon_sym___vectorcall] = ACTIONS(2797), + [anon_sym_LBRACE] = ACTIONS(2799), + [anon_sym_LBRACK] = ACTIONS(2797), + [anon_sym_static] = ACTIONS(2797), + [anon_sym_register] = ACTIONS(2797), + [anon_sym_inline] = ACTIONS(2797), + [anon_sym_thread_local] = ACTIONS(2797), + [anon_sym_const] = ACTIONS(2797), + [anon_sym_volatile] = ACTIONS(2797), + [anon_sym_restrict] = ACTIONS(2797), + [anon_sym__Atomic] = ACTIONS(2797), + [anon_sym_mutable] = ACTIONS(2797), + [anon_sym_constexpr] = ACTIONS(2797), + [anon_sym_constinit] = ACTIONS(2797), + [anon_sym_consteval] = ACTIONS(2797), + [anon_sym_signed] = ACTIONS(2797), + [anon_sym_unsigned] = ACTIONS(2797), + [anon_sym_long] = ACTIONS(2797), + [anon_sym_short] = ACTIONS(2797), + [sym_primitive_type] = ACTIONS(2797), + [anon_sym_enum] = ACTIONS(2797), + [anon_sym_class] = ACTIONS(2797), + [anon_sym_struct] = ACTIONS(2797), + [anon_sym_union] = ACTIONS(2797), + [anon_sym_if] = ACTIONS(2797), + [anon_sym_switch] = ACTIONS(2797), + [anon_sym_case] = ACTIONS(2797), + [anon_sym_default] = ACTIONS(2797), + [anon_sym_while] = ACTIONS(2797), + [anon_sym_do] = ACTIONS(2797), + [anon_sym_for] = ACTIONS(2797), + [anon_sym_return] = ACTIONS(2797), + [anon_sym_break] = ACTIONS(2797), + [anon_sym_continue] = ACTIONS(2797), + [anon_sym_goto] = ACTIONS(2797), + [anon_sym_not] = ACTIONS(2797), + [anon_sym_compl] = ACTIONS(2797), + [anon_sym_DASH_DASH] = ACTIONS(2799), + [anon_sym_PLUS_PLUS] = ACTIONS(2799), + [anon_sym_sizeof] = ACTIONS(2797), + [sym_number_literal] = ACTIONS(2799), + [anon_sym_L_SQUOTE] = ACTIONS(2799), + [anon_sym_u_SQUOTE] = ACTIONS(2799), + [anon_sym_U_SQUOTE] = ACTIONS(2799), + [anon_sym_u8_SQUOTE] = ACTIONS(2799), + [anon_sym_SQUOTE] = ACTIONS(2799), + [anon_sym_L_DQUOTE] = ACTIONS(2799), + [anon_sym_u_DQUOTE] = ACTIONS(2799), + [anon_sym_U_DQUOTE] = ACTIONS(2799), + [anon_sym_u8_DQUOTE] = ACTIONS(2799), + [anon_sym_DQUOTE] = ACTIONS(2799), + [sym_true] = ACTIONS(2797), + [sym_false] = ACTIONS(2797), + [sym_null] = ACTIONS(2797), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2797), + [anon_sym_decltype] = ACTIONS(2797), + [anon_sym_virtual] = ACTIONS(2797), + [anon_sym_explicit] = ACTIONS(2797), + [anon_sym_typename] = ACTIONS(2797), + [anon_sym_template] = ACTIONS(2797), + [anon_sym_operator] = ACTIONS(2797), + [anon_sym_try] = ACTIONS(2797), + [anon_sym_delete] = ACTIONS(2797), + [anon_sym_throw] = ACTIONS(2797), + [anon_sym_namespace] = ACTIONS(2797), + [anon_sym_using] = ACTIONS(2797), + [anon_sym_static_assert] = ACTIONS(2797), + [anon_sym_concept] = ACTIONS(2797), + [anon_sym_co_return] = ACTIONS(2797), + [anon_sym_co_yield] = ACTIONS(2797), + [anon_sym_co_await] = ACTIONS(2797), + [anon_sym_new] = ACTIONS(2797), + [anon_sym_requires] = ACTIONS(2797), + [sym_this] = ACTIONS(2797), + [sym_nullptr] = ACTIONS(2797), + [sym_raw_string_literal] = ACTIONS(2799), }, - [797] = { - [sym_identifier] = ACTIONS(2455), - [aux_sym_preproc_include_token1] = ACTIONS(2455), - [aux_sym_preproc_def_token1] = ACTIONS(2455), - [aux_sym_preproc_if_token1] = ACTIONS(2455), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2455), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2455), - [sym_preproc_directive] = ACTIONS(2455), - [anon_sym_LPAREN2] = ACTIONS(2457), - [anon_sym_BANG] = ACTIONS(2457), - [anon_sym_TILDE] = ACTIONS(2457), - [anon_sym_DASH] = ACTIONS(2455), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_STAR] = ACTIONS(2457), - [anon_sym_AMP_AMP] = ACTIONS(2457), - [anon_sym_AMP] = ACTIONS(2455), - [anon_sym_SEMI] = ACTIONS(2457), - [anon_sym_typedef] = ACTIONS(2455), - [anon_sym_extern] = ACTIONS(2455), - [anon_sym___attribute__] = ACTIONS(2455), - [anon_sym_COLON_COLON] = ACTIONS(2457), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2457), - [anon_sym___declspec] = ACTIONS(2455), - [anon_sym___based] = ACTIONS(2455), - [anon_sym___cdecl] = ACTIONS(2455), - [anon_sym___clrcall] = ACTIONS(2455), - [anon_sym___stdcall] = ACTIONS(2455), - [anon_sym___fastcall] = ACTIONS(2455), - [anon_sym___thiscall] = ACTIONS(2455), - [anon_sym___vectorcall] = ACTIONS(2455), - [anon_sym_LBRACE] = ACTIONS(2457), - [anon_sym_RBRACE] = ACTIONS(2457), - [anon_sym_LBRACK] = ACTIONS(2455), - [anon_sym_static] = ACTIONS(2455), - [anon_sym_register] = ACTIONS(2455), - [anon_sym_inline] = ACTIONS(2455), - [anon_sym_thread_local] = ACTIONS(2455), - [anon_sym_const] = ACTIONS(2455), - [anon_sym_volatile] = ACTIONS(2455), - [anon_sym_restrict] = ACTIONS(2455), - [anon_sym__Atomic] = ACTIONS(2455), - [anon_sym_mutable] = ACTIONS(2455), - [anon_sym_constexpr] = ACTIONS(2455), - [anon_sym_constinit] = ACTIONS(2455), - [anon_sym_consteval] = ACTIONS(2455), - [anon_sym_signed] = ACTIONS(2455), - [anon_sym_unsigned] = ACTIONS(2455), - [anon_sym_long] = ACTIONS(2455), - [anon_sym_short] = ACTIONS(2455), - [sym_primitive_type] = ACTIONS(2455), - [anon_sym_enum] = ACTIONS(2455), - [anon_sym_class] = ACTIONS(2455), - [anon_sym_struct] = ACTIONS(2455), - [anon_sym_union] = ACTIONS(2455), - [anon_sym_if] = ACTIONS(2455), - [anon_sym_else] = ACTIONS(2455), - [anon_sym_switch] = ACTIONS(2455), - [anon_sym_case] = ACTIONS(2455), - [anon_sym_default] = ACTIONS(2455), - [anon_sym_while] = ACTIONS(2455), - [anon_sym_do] = ACTIONS(2455), - [anon_sym_for] = ACTIONS(2455), - [anon_sym_return] = ACTIONS(2455), - [anon_sym_break] = ACTIONS(2455), - [anon_sym_continue] = ACTIONS(2455), - [anon_sym_goto] = ACTIONS(2455), - [anon_sym_DASH_DASH] = ACTIONS(2457), - [anon_sym_PLUS_PLUS] = ACTIONS(2457), - [anon_sym_sizeof] = ACTIONS(2455), - [sym_number_literal] = ACTIONS(2457), - [anon_sym_L_SQUOTE] = ACTIONS(2457), - [anon_sym_u_SQUOTE] = ACTIONS(2457), - [anon_sym_U_SQUOTE] = ACTIONS(2457), - [anon_sym_u8_SQUOTE] = ACTIONS(2457), - [anon_sym_SQUOTE] = ACTIONS(2457), - [anon_sym_L_DQUOTE] = ACTIONS(2457), - [anon_sym_u_DQUOTE] = ACTIONS(2457), - [anon_sym_U_DQUOTE] = ACTIONS(2457), - [anon_sym_u8_DQUOTE] = ACTIONS(2457), - [anon_sym_DQUOTE] = ACTIONS(2457), - [sym_true] = ACTIONS(2455), - [sym_false] = ACTIONS(2455), - [sym_null] = ACTIONS(2455), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2455), - [anon_sym_decltype] = ACTIONS(2455), - [anon_sym_virtual] = ACTIONS(2455), - [anon_sym_explicit] = ACTIONS(2455), - [anon_sym_typename] = ACTIONS(2455), - [anon_sym_template] = ACTIONS(2455), - [anon_sym_operator] = ACTIONS(2455), - [anon_sym_try] = ACTIONS(2455), - [anon_sym_delete] = ACTIONS(2455), - [anon_sym_throw] = ACTIONS(2455), - [anon_sym_namespace] = ACTIONS(2455), - [anon_sym_using] = ACTIONS(2455), - [anon_sym_static_assert] = ACTIONS(2455), - [anon_sym_concept] = ACTIONS(2455), - [anon_sym_co_return] = ACTIONS(2455), - [anon_sym_co_yield] = ACTIONS(2455), - [anon_sym_co_await] = ACTIONS(2455), - [anon_sym_new] = ACTIONS(2455), - [anon_sym_requires] = ACTIONS(2455), - [sym_this] = ACTIONS(2455), - [sym_nullptr] = ACTIONS(2455), - [sym_raw_string_literal] = ACTIONS(2457), + [504] = { + [sym_identifier] = ACTIONS(2801), + [aux_sym_preproc_include_token1] = ACTIONS(2801), + [aux_sym_preproc_def_token1] = ACTIONS(2801), + [aux_sym_preproc_if_token1] = ACTIONS(2801), + [aux_sym_preproc_if_token2] = ACTIONS(2801), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2801), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2801), + [aux_sym_preproc_else_token1] = ACTIONS(2801), + [aux_sym_preproc_elif_token1] = ACTIONS(2801), + [sym_preproc_directive] = ACTIONS(2801), + [anon_sym_LPAREN2] = ACTIONS(2803), + [anon_sym_BANG] = ACTIONS(2803), + [anon_sym_TILDE] = ACTIONS(2803), + [anon_sym_DASH] = ACTIONS(2801), + [anon_sym_PLUS] = ACTIONS(2801), + [anon_sym_STAR] = ACTIONS(2803), + [anon_sym_AMP_AMP] = ACTIONS(2803), + [anon_sym_AMP] = ACTIONS(2801), + [anon_sym_SEMI] = ACTIONS(2803), + [anon_sym_typedef] = ACTIONS(2801), + [anon_sym_extern] = ACTIONS(2801), + [anon_sym___attribute__] = ACTIONS(2801), + [anon_sym_COLON_COLON] = ACTIONS(2803), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2803), + [anon_sym___declspec] = ACTIONS(2801), + [anon_sym___based] = ACTIONS(2801), + [anon_sym___cdecl] = ACTIONS(2801), + [anon_sym___clrcall] = ACTIONS(2801), + [anon_sym___stdcall] = ACTIONS(2801), + [anon_sym___fastcall] = ACTIONS(2801), + [anon_sym___thiscall] = ACTIONS(2801), + [anon_sym___vectorcall] = ACTIONS(2801), + [anon_sym_LBRACE] = ACTIONS(2803), + [anon_sym_LBRACK] = ACTIONS(2801), + [anon_sym_static] = ACTIONS(2801), + [anon_sym_register] = ACTIONS(2801), + [anon_sym_inline] = ACTIONS(2801), + [anon_sym_thread_local] = ACTIONS(2801), + [anon_sym_const] = ACTIONS(2801), + [anon_sym_volatile] = ACTIONS(2801), + [anon_sym_restrict] = ACTIONS(2801), + [anon_sym__Atomic] = ACTIONS(2801), + [anon_sym_mutable] = ACTIONS(2801), + [anon_sym_constexpr] = ACTIONS(2801), + [anon_sym_constinit] = ACTIONS(2801), + [anon_sym_consteval] = ACTIONS(2801), + [anon_sym_signed] = ACTIONS(2801), + [anon_sym_unsigned] = ACTIONS(2801), + [anon_sym_long] = ACTIONS(2801), + [anon_sym_short] = ACTIONS(2801), + [sym_primitive_type] = ACTIONS(2801), + [anon_sym_enum] = ACTIONS(2801), + [anon_sym_class] = ACTIONS(2801), + [anon_sym_struct] = ACTIONS(2801), + [anon_sym_union] = ACTIONS(2801), + [anon_sym_if] = ACTIONS(2801), + [anon_sym_switch] = ACTIONS(2801), + [anon_sym_case] = ACTIONS(2801), + [anon_sym_default] = ACTIONS(2801), + [anon_sym_while] = ACTIONS(2801), + [anon_sym_do] = ACTIONS(2801), + [anon_sym_for] = ACTIONS(2801), + [anon_sym_return] = ACTIONS(2801), + [anon_sym_break] = ACTIONS(2801), + [anon_sym_continue] = ACTIONS(2801), + [anon_sym_goto] = ACTIONS(2801), + [anon_sym_not] = ACTIONS(2801), + [anon_sym_compl] = ACTIONS(2801), + [anon_sym_DASH_DASH] = ACTIONS(2803), + [anon_sym_PLUS_PLUS] = ACTIONS(2803), + [anon_sym_sizeof] = ACTIONS(2801), + [sym_number_literal] = ACTIONS(2803), + [anon_sym_L_SQUOTE] = ACTIONS(2803), + [anon_sym_u_SQUOTE] = ACTIONS(2803), + [anon_sym_U_SQUOTE] = ACTIONS(2803), + [anon_sym_u8_SQUOTE] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2803), + [anon_sym_L_DQUOTE] = ACTIONS(2803), + [anon_sym_u_DQUOTE] = ACTIONS(2803), + [anon_sym_U_DQUOTE] = ACTIONS(2803), + [anon_sym_u8_DQUOTE] = ACTIONS(2803), + [anon_sym_DQUOTE] = ACTIONS(2803), + [sym_true] = ACTIONS(2801), + [sym_false] = ACTIONS(2801), + [sym_null] = ACTIONS(2801), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2801), + [anon_sym_decltype] = ACTIONS(2801), + [anon_sym_virtual] = ACTIONS(2801), + [anon_sym_explicit] = ACTIONS(2801), + [anon_sym_typename] = ACTIONS(2801), + [anon_sym_template] = ACTIONS(2801), + [anon_sym_operator] = ACTIONS(2801), + [anon_sym_try] = ACTIONS(2801), + [anon_sym_delete] = ACTIONS(2801), + [anon_sym_throw] = ACTIONS(2801), + [anon_sym_namespace] = ACTIONS(2801), + [anon_sym_using] = ACTIONS(2801), + [anon_sym_static_assert] = ACTIONS(2801), + [anon_sym_concept] = ACTIONS(2801), + [anon_sym_co_return] = ACTIONS(2801), + [anon_sym_co_yield] = ACTIONS(2801), + [anon_sym_co_await] = ACTIONS(2801), + [anon_sym_new] = ACTIONS(2801), + [anon_sym_requires] = ACTIONS(2801), + [sym_this] = ACTIONS(2801), + [sym_nullptr] = ACTIONS(2801), + [sym_raw_string_literal] = ACTIONS(2803), }, - [798] = { - [sym_identifier] = ACTIONS(2451), - [aux_sym_preproc_include_token1] = ACTIONS(2451), - [aux_sym_preproc_def_token1] = ACTIONS(2451), - [aux_sym_preproc_if_token1] = ACTIONS(2451), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2451), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2451), - [sym_preproc_directive] = ACTIONS(2451), - [anon_sym_LPAREN2] = ACTIONS(2453), - [anon_sym_BANG] = ACTIONS(2453), - [anon_sym_TILDE] = ACTIONS(2453), - [anon_sym_DASH] = ACTIONS(2451), - [anon_sym_PLUS] = ACTIONS(2451), - [anon_sym_STAR] = ACTIONS(2453), - [anon_sym_AMP_AMP] = ACTIONS(2453), - [anon_sym_AMP] = ACTIONS(2451), - [anon_sym_SEMI] = ACTIONS(2453), - [anon_sym_typedef] = ACTIONS(2451), - [anon_sym_extern] = ACTIONS(2451), - [anon_sym___attribute__] = ACTIONS(2451), - [anon_sym_COLON_COLON] = ACTIONS(2453), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2453), - [anon_sym___declspec] = ACTIONS(2451), - [anon_sym___based] = ACTIONS(2451), - [anon_sym___cdecl] = ACTIONS(2451), - [anon_sym___clrcall] = ACTIONS(2451), - [anon_sym___stdcall] = ACTIONS(2451), - [anon_sym___fastcall] = ACTIONS(2451), - [anon_sym___thiscall] = ACTIONS(2451), - [anon_sym___vectorcall] = ACTIONS(2451), - [anon_sym_LBRACE] = ACTIONS(2453), - [anon_sym_RBRACE] = ACTIONS(2453), - [anon_sym_LBRACK] = ACTIONS(2451), - [anon_sym_static] = ACTIONS(2451), - [anon_sym_register] = ACTIONS(2451), - [anon_sym_inline] = ACTIONS(2451), - [anon_sym_thread_local] = ACTIONS(2451), - [anon_sym_const] = ACTIONS(2451), - [anon_sym_volatile] = ACTIONS(2451), - [anon_sym_restrict] = ACTIONS(2451), - [anon_sym__Atomic] = ACTIONS(2451), - [anon_sym_mutable] = ACTIONS(2451), - [anon_sym_constexpr] = ACTIONS(2451), - [anon_sym_constinit] = ACTIONS(2451), - [anon_sym_consteval] = ACTIONS(2451), - [anon_sym_signed] = ACTIONS(2451), - [anon_sym_unsigned] = ACTIONS(2451), - [anon_sym_long] = ACTIONS(2451), - [anon_sym_short] = ACTIONS(2451), - [sym_primitive_type] = ACTIONS(2451), - [anon_sym_enum] = ACTIONS(2451), - [anon_sym_class] = ACTIONS(2451), - [anon_sym_struct] = ACTIONS(2451), - [anon_sym_union] = ACTIONS(2451), - [anon_sym_if] = ACTIONS(2451), - [anon_sym_else] = ACTIONS(2451), - [anon_sym_switch] = ACTIONS(2451), - [anon_sym_case] = ACTIONS(2451), - [anon_sym_default] = ACTIONS(2451), - [anon_sym_while] = ACTIONS(2451), - [anon_sym_do] = ACTIONS(2451), - [anon_sym_for] = ACTIONS(2451), - [anon_sym_return] = ACTIONS(2451), - [anon_sym_break] = ACTIONS(2451), - [anon_sym_continue] = ACTIONS(2451), - [anon_sym_goto] = ACTIONS(2451), - [anon_sym_DASH_DASH] = ACTIONS(2453), - [anon_sym_PLUS_PLUS] = ACTIONS(2453), - [anon_sym_sizeof] = ACTIONS(2451), - [sym_number_literal] = ACTIONS(2453), - [anon_sym_L_SQUOTE] = ACTIONS(2453), - [anon_sym_u_SQUOTE] = ACTIONS(2453), - [anon_sym_U_SQUOTE] = ACTIONS(2453), - [anon_sym_u8_SQUOTE] = ACTIONS(2453), - [anon_sym_SQUOTE] = ACTIONS(2453), - [anon_sym_L_DQUOTE] = ACTIONS(2453), - [anon_sym_u_DQUOTE] = ACTIONS(2453), - [anon_sym_U_DQUOTE] = ACTIONS(2453), - [anon_sym_u8_DQUOTE] = ACTIONS(2453), - [anon_sym_DQUOTE] = ACTIONS(2453), - [sym_true] = ACTIONS(2451), - [sym_false] = ACTIONS(2451), - [sym_null] = ACTIONS(2451), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2451), - [anon_sym_decltype] = ACTIONS(2451), - [anon_sym_virtual] = ACTIONS(2451), - [anon_sym_explicit] = ACTIONS(2451), - [anon_sym_typename] = ACTIONS(2451), - [anon_sym_template] = ACTIONS(2451), - [anon_sym_operator] = ACTIONS(2451), - [anon_sym_try] = ACTIONS(2451), - [anon_sym_delete] = ACTIONS(2451), - [anon_sym_throw] = ACTIONS(2451), - [anon_sym_namespace] = ACTIONS(2451), - [anon_sym_using] = ACTIONS(2451), - [anon_sym_static_assert] = ACTIONS(2451), - [anon_sym_concept] = ACTIONS(2451), - [anon_sym_co_return] = ACTIONS(2451), - [anon_sym_co_yield] = ACTIONS(2451), - [anon_sym_co_await] = ACTIONS(2451), - [anon_sym_new] = ACTIONS(2451), - [anon_sym_requires] = ACTIONS(2451), - [sym_this] = ACTIONS(2451), - [sym_nullptr] = ACTIONS(2451), - [sym_raw_string_literal] = ACTIONS(2453), + [505] = { + [sym_identifier] = ACTIONS(2805), + [aux_sym_preproc_include_token1] = ACTIONS(2805), + [aux_sym_preproc_def_token1] = ACTIONS(2805), + [aux_sym_preproc_if_token1] = ACTIONS(2805), + [aux_sym_preproc_if_token2] = ACTIONS(2805), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2805), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2805), + [aux_sym_preproc_else_token1] = ACTIONS(2805), + [aux_sym_preproc_elif_token1] = ACTIONS(2805), + [sym_preproc_directive] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(2807), + [anon_sym_BANG] = ACTIONS(2807), + [anon_sym_TILDE] = ACTIONS(2807), + [anon_sym_DASH] = ACTIONS(2805), + [anon_sym_PLUS] = ACTIONS(2805), + [anon_sym_STAR] = ACTIONS(2807), + [anon_sym_AMP_AMP] = ACTIONS(2807), + [anon_sym_AMP] = ACTIONS(2805), + [anon_sym_SEMI] = ACTIONS(2807), + [anon_sym_typedef] = ACTIONS(2805), + [anon_sym_extern] = ACTIONS(2805), + [anon_sym___attribute__] = ACTIONS(2805), + [anon_sym_COLON_COLON] = ACTIONS(2807), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2807), + [anon_sym___declspec] = ACTIONS(2805), + [anon_sym___based] = ACTIONS(2805), + [anon_sym___cdecl] = ACTIONS(2805), + [anon_sym___clrcall] = ACTIONS(2805), + [anon_sym___stdcall] = ACTIONS(2805), + [anon_sym___fastcall] = ACTIONS(2805), + [anon_sym___thiscall] = ACTIONS(2805), + [anon_sym___vectorcall] = ACTIONS(2805), + [anon_sym_LBRACE] = ACTIONS(2807), + [anon_sym_LBRACK] = ACTIONS(2805), + [anon_sym_static] = ACTIONS(2805), + [anon_sym_register] = ACTIONS(2805), + [anon_sym_inline] = ACTIONS(2805), + [anon_sym_thread_local] = ACTIONS(2805), + [anon_sym_const] = ACTIONS(2805), + [anon_sym_volatile] = ACTIONS(2805), + [anon_sym_restrict] = ACTIONS(2805), + [anon_sym__Atomic] = ACTIONS(2805), + [anon_sym_mutable] = ACTIONS(2805), + [anon_sym_constexpr] = ACTIONS(2805), + [anon_sym_constinit] = ACTIONS(2805), + [anon_sym_consteval] = ACTIONS(2805), + [anon_sym_signed] = ACTIONS(2805), + [anon_sym_unsigned] = ACTIONS(2805), + [anon_sym_long] = ACTIONS(2805), + [anon_sym_short] = ACTIONS(2805), + [sym_primitive_type] = ACTIONS(2805), + [anon_sym_enum] = ACTIONS(2805), + [anon_sym_class] = ACTIONS(2805), + [anon_sym_struct] = ACTIONS(2805), + [anon_sym_union] = ACTIONS(2805), + [anon_sym_if] = ACTIONS(2805), + [anon_sym_switch] = ACTIONS(2805), + [anon_sym_case] = ACTIONS(2805), + [anon_sym_default] = ACTIONS(2805), + [anon_sym_while] = ACTIONS(2805), + [anon_sym_do] = ACTIONS(2805), + [anon_sym_for] = ACTIONS(2805), + [anon_sym_return] = ACTIONS(2805), + [anon_sym_break] = ACTIONS(2805), + [anon_sym_continue] = ACTIONS(2805), + [anon_sym_goto] = ACTIONS(2805), + [anon_sym_not] = ACTIONS(2805), + [anon_sym_compl] = ACTIONS(2805), + [anon_sym_DASH_DASH] = ACTIONS(2807), + [anon_sym_PLUS_PLUS] = ACTIONS(2807), + [anon_sym_sizeof] = ACTIONS(2805), + [sym_number_literal] = ACTIONS(2807), + [anon_sym_L_SQUOTE] = ACTIONS(2807), + [anon_sym_u_SQUOTE] = ACTIONS(2807), + [anon_sym_U_SQUOTE] = ACTIONS(2807), + [anon_sym_u8_SQUOTE] = ACTIONS(2807), + [anon_sym_SQUOTE] = ACTIONS(2807), + [anon_sym_L_DQUOTE] = ACTIONS(2807), + [anon_sym_u_DQUOTE] = ACTIONS(2807), + [anon_sym_U_DQUOTE] = ACTIONS(2807), + [anon_sym_u8_DQUOTE] = ACTIONS(2807), + [anon_sym_DQUOTE] = ACTIONS(2807), + [sym_true] = ACTIONS(2805), + [sym_false] = ACTIONS(2805), + [sym_null] = ACTIONS(2805), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2805), + [anon_sym_decltype] = ACTIONS(2805), + [anon_sym_virtual] = ACTIONS(2805), + [anon_sym_explicit] = ACTIONS(2805), + [anon_sym_typename] = ACTIONS(2805), + [anon_sym_template] = ACTIONS(2805), + [anon_sym_operator] = ACTIONS(2805), + [anon_sym_try] = ACTIONS(2805), + [anon_sym_delete] = ACTIONS(2805), + [anon_sym_throw] = ACTIONS(2805), + [anon_sym_namespace] = ACTIONS(2805), + [anon_sym_using] = ACTIONS(2805), + [anon_sym_static_assert] = ACTIONS(2805), + [anon_sym_concept] = ACTIONS(2805), + [anon_sym_co_return] = ACTIONS(2805), + [anon_sym_co_yield] = ACTIONS(2805), + [anon_sym_co_await] = ACTIONS(2805), + [anon_sym_new] = ACTIONS(2805), + [anon_sym_requires] = ACTIONS(2805), + [sym_this] = ACTIONS(2805), + [sym_nullptr] = ACTIONS(2805), + [sym_raw_string_literal] = ACTIONS(2807), }, - [799] = { - [sym_identifier] = ACTIONS(2463), - [aux_sym_preproc_include_token1] = ACTIONS(2463), - [aux_sym_preproc_def_token1] = ACTIONS(2463), - [aux_sym_preproc_if_token1] = ACTIONS(2463), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2463), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2463), - [sym_preproc_directive] = ACTIONS(2463), - [anon_sym_LPAREN2] = ACTIONS(2465), - [anon_sym_BANG] = ACTIONS(2465), - [anon_sym_TILDE] = ACTIONS(2465), - [anon_sym_DASH] = ACTIONS(2463), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_STAR] = ACTIONS(2465), - [anon_sym_AMP_AMP] = ACTIONS(2465), - [anon_sym_AMP] = ACTIONS(2463), - [anon_sym_SEMI] = ACTIONS(2465), - [anon_sym_typedef] = ACTIONS(2463), - [anon_sym_extern] = ACTIONS(2463), - [anon_sym___attribute__] = ACTIONS(2463), - [anon_sym_COLON_COLON] = ACTIONS(2465), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2465), - [anon_sym___declspec] = ACTIONS(2463), - [anon_sym___based] = ACTIONS(2463), - [anon_sym___cdecl] = ACTIONS(2463), - [anon_sym___clrcall] = ACTIONS(2463), - [anon_sym___stdcall] = ACTIONS(2463), - [anon_sym___fastcall] = ACTIONS(2463), - [anon_sym___thiscall] = ACTIONS(2463), - [anon_sym___vectorcall] = ACTIONS(2463), - [anon_sym_LBRACE] = ACTIONS(2465), - [anon_sym_RBRACE] = ACTIONS(2465), - [anon_sym_LBRACK] = ACTIONS(2463), - [anon_sym_static] = ACTIONS(2463), - [anon_sym_register] = ACTIONS(2463), - [anon_sym_inline] = ACTIONS(2463), - [anon_sym_thread_local] = ACTIONS(2463), - [anon_sym_const] = ACTIONS(2463), - [anon_sym_volatile] = ACTIONS(2463), - [anon_sym_restrict] = ACTIONS(2463), - [anon_sym__Atomic] = ACTIONS(2463), - [anon_sym_mutable] = ACTIONS(2463), - [anon_sym_constexpr] = ACTIONS(2463), - [anon_sym_constinit] = ACTIONS(2463), - [anon_sym_consteval] = ACTIONS(2463), - [anon_sym_signed] = ACTIONS(2463), - [anon_sym_unsigned] = ACTIONS(2463), - [anon_sym_long] = ACTIONS(2463), - [anon_sym_short] = ACTIONS(2463), - [sym_primitive_type] = ACTIONS(2463), - [anon_sym_enum] = ACTIONS(2463), - [anon_sym_class] = ACTIONS(2463), - [anon_sym_struct] = ACTIONS(2463), - [anon_sym_union] = ACTIONS(2463), - [anon_sym_if] = ACTIONS(2463), - [anon_sym_else] = ACTIONS(2463), - [anon_sym_switch] = ACTIONS(2463), - [anon_sym_case] = ACTIONS(2463), - [anon_sym_default] = ACTIONS(2463), - [anon_sym_while] = ACTIONS(2463), - [anon_sym_do] = ACTIONS(2463), - [anon_sym_for] = ACTIONS(2463), - [anon_sym_return] = ACTIONS(2463), - [anon_sym_break] = ACTIONS(2463), - [anon_sym_continue] = ACTIONS(2463), - [anon_sym_goto] = ACTIONS(2463), - [anon_sym_DASH_DASH] = ACTIONS(2465), - [anon_sym_PLUS_PLUS] = ACTIONS(2465), - [anon_sym_sizeof] = ACTIONS(2463), - [sym_number_literal] = ACTIONS(2465), - [anon_sym_L_SQUOTE] = ACTIONS(2465), - [anon_sym_u_SQUOTE] = ACTIONS(2465), - [anon_sym_U_SQUOTE] = ACTIONS(2465), - [anon_sym_u8_SQUOTE] = ACTIONS(2465), - [anon_sym_SQUOTE] = ACTIONS(2465), - [anon_sym_L_DQUOTE] = ACTIONS(2465), - [anon_sym_u_DQUOTE] = ACTIONS(2465), - [anon_sym_U_DQUOTE] = ACTIONS(2465), - [anon_sym_u8_DQUOTE] = ACTIONS(2465), - [anon_sym_DQUOTE] = ACTIONS(2465), - [sym_true] = ACTIONS(2463), - [sym_false] = ACTIONS(2463), - [sym_null] = ACTIONS(2463), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2463), - [anon_sym_decltype] = ACTIONS(2463), - [anon_sym_virtual] = ACTIONS(2463), - [anon_sym_explicit] = ACTIONS(2463), - [anon_sym_typename] = ACTIONS(2463), - [anon_sym_template] = ACTIONS(2463), - [anon_sym_operator] = ACTIONS(2463), - [anon_sym_try] = ACTIONS(2463), - [anon_sym_delete] = ACTIONS(2463), - [anon_sym_throw] = ACTIONS(2463), - [anon_sym_namespace] = ACTIONS(2463), - [anon_sym_using] = ACTIONS(2463), - [anon_sym_static_assert] = ACTIONS(2463), - [anon_sym_concept] = ACTIONS(2463), - [anon_sym_co_return] = ACTIONS(2463), - [anon_sym_co_yield] = ACTIONS(2463), - [anon_sym_co_await] = ACTIONS(2463), - [anon_sym_new] = ACTIONS(2463), - [anon_sym_requires] = ACTIONS(2463), - [sym_this] = ACTIONS(2463), - [sym_nullptr] = ACTIONS(2463), - [sym_raw_string_literal] = ACTIONS(2465), + [506] = { + [sym_identifier] = ACTIONS(2805), + [aux_sym_preproc_include_token1] = ACTIONS(2805), + [aux_sym_preproc_def_token1] = ACTIONS(2805), + [aux_sym_preproc_if_token1] = ACTIONS(2805), + [aux_sym_preproc_if_token2] = ACTIONS(2805), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2805), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2805), + [aux_sym_preproc_else_token1] = ACTIONS(2805), + [aux_sym_preproc_elif_token1] = ACTIONS(2805), + [sym_preproc_directive] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(2807), + [anon_sym_BANG] = ACTIONS(2807), + [anon_sym_TILDE] = ACTIONS(2807), + [anon_sym_DASH] = ACTIONS(2805), + [anon_sym_PLUS] = ACTIONS(2805), + [anon_sym_STAR] = ACTIONS(2807), + [anon_sym_AMP_AMP] = ACTIONS(2807), + [anon_sym_AMP] = ACTIONS(2805), + [anon_sym_SEMI] = ACTIONS(2807), + [anon_sym_typedef] = ACTIONS(2805), + [anon_sym_extern] = ACTIONS(2805), + [anon_sym___attribute__] = ACTIONS(2805), + [anon_sym_COLON_COLON] = ACTIONS(2807), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2807), + [anon_sym___declspec] = ACTIONS(2805), + [anon_sym___based] = ACTIONS(2805), + [anon_sym___cdecl] = ACTIONS(2805), + [anon_sym___clrcall] = ACTIONS(2805), + [anon_sym___stdcall] = ACTIONS(2805), + [anon_sym___fastcall] = ACTIONS(2805), + [anon_sym___thiscall] = ACTIONS(2805), + [anon_sym___vectorcall] = ACTIONS(2805), + [anon_sym_LBRACE] = ACTIONS(2807), + [anon_sym_LBRACK] = ACTIONS(2805), + [anon_sym_static] = ACTIONS(2805), + [anon_sym_register] = ACTIONS(2805), + [anon_sym_inline] = ACTIONS(2805), + [anon_sym_thread_local] = ACTIONS(2805), + [anon_sym_const] = ACTIONS(2805), + [anon_sym_volatile] = ACTIONS(2805), + [anon_sym_restrict] = ACTIONS(2805), + [anon_sym__Atomic] = ACTIONS(2805), + [anon_sym_mutable] = ACTIONS(2805), + [anon_sym_constexpr] = ACTIONS(2805), + [anon_sym_constinit] = ACTIONS(2805), + [anon_sym_consteval] = ACTIONS(2805), + [anon_sym_signed] = ACTIONS(2805), + [anon_sym_unsigned] = ACTIONS(2805), + [anon_sym_long] = ACTIONS(2805), + [anon_sym_short] = ACTIONS(2805), + [sym_primitive_type] = ACTIONS(2805), + [anon_sym_enum] = ACTIONS(2805), + [anon_sym_class] = ACTIONS(2805), + [anon_sym_struct] = ACTIONS(2805), + [anon_sym_union] = ACTIONS(2805), + [anon_sym_if] = ACTIONS(2805), + [anon_sym_switch] = ACTIONS(2805), + [anon_sym_case] = ACTIONS(2805), + [anon_sym_default] = ACTIONS(2805), + [anon_sym_while] = ACTIONS(2805), + [anon_sym_do] = ACTIONS(2805), + [anon_sym_for] = ACTIONS(2805), + [anon_sym_return] = ACTIONS(2805), + [anon_sym_break] = ACTIONS(2805), + [anon_sym_continue] = ACTIONS(2805), + [anon_sym_goto] = ACTIONS(2805), + [anon_sym_not] = ACTIONS(2805), + [anon_sym_compl] = ACTIONS(2805), + [anon_sym_DASH_DASH] = ACTIONS(2807), + [anon_sym_PLUS_PLUS] = ACTIONS(2807), + [anon_sym_sizeof] = ACTIONS(2805), + [sym_number_literal] = ACTIONS(2807), + [anon_sym_L_SQUOTE] = ACTIONS(2807), + [anon_sym_u_SQUOTE] = ACTIONS(2807), + [anon_sym_U_SQUOTE] = ACTIONS(2807), + [anon_sym_u8_SQUOTE] = ACTIONS(2807), + [anon_sym_SQUOTE] = ACTIONS(2807), + [anon_sym_L_DQUOTE] = ACTIONS(2807), + [anon_sym_u_DQUOTE] = ACTIONS(2807), + [anon_sym_U_DQUOTE] = ACTIONS(2807), + [anon_sym_u8_DQUOTE] = ACTIONS(2807), + [anon_sym_DQUOTE] = ACTIONS(2807), + [sym_true] = ACTIONS(2805), + [sym_false] = ACTIONS(2805), + [sym_null] = ACTIONS(2805), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2805), + [anon_sym_decltype] = ACTIONS(2805), + [anon_sym_virtual] = ACTIONS(2805), + [anon_sym_explicit] = ACTIONS(2805), + [anon_sym_typename] = ACTIONS(2805), + [anon_sym_template] = ACTIONS(2805), + [anon_sym_operator] = ACTIONS(2805), + [anon_sym_try] = ACTIONS(2805), + [anon_sym_delete] = ACTIONS(2805), + [anon_sym_throw] = ACTIONS(2805), + [anon_sym_namespace] = ACTIONS(2805), + [anon_sym_using] = ACTIONS(2805), + [anon_sym_static_assert] = ACTIONS(2805), + [anon_sym_concept] = ACTIONS(2805), + [anon_sym_co_return] = ACTIONS(2805), + [anon_sym_co_yield] = ACTIONS(2805), + [anon_sym_co_await] = ACTIONS(2805), + [anon_sym_new] = ACTIONS(2805), + [anon_sym_requires] = ACTIONS(2805), + [sym_this] = ACTIONS(2805), + [sym_nullptr] = ACTIONS(2805), + [sym_raw_string_literal] = ACTIONS(2807), }, - [800] = { - [sym_identifier] = ACTIONS(2487), - [aux_sym_preproc_include_token1] = ACTIONS(2487), - [aux_sym_preproc_def_token1] = ACTIONS(2487), - [aux_sym_preproc_if_token1] = ACTIONS(2487), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2487), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2487), - [sym_preproc_directive] = ACTIONS(2487), - [anon_sym_LPAREN2] = ACTIONS(2489), - [anon_sym_BANG] = ACTIONS(2489), - [anon_sym_TILDE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_STAR] = ACTIONS(2489), - [anon_sym_AMP_AMP] = ACTIONS(2489), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_SEMI] = ACTIONS(2489), - [anon_sym_typedef] = ACTIONS(2487), - [anon_sym_extern] = ACTIONS(2487), - [anon_sym___attribute__] = ACTIONS(2487), - [anon_sym_COLON_COLON] = ACTIONS(2489), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2489), - [anon_sym___declspec] = ACTIONS(2487), - [anon_sym___based] = ACTIONS(2487), - [anon_sym___cdecl] = ACTIONS(2487), - [anon_sym___clrcall] = ACTIONS(2487), - [anon_sym___stdcall] = ACTIONS(2487), - [anon_sym___fastcall] = ACTIONS(2487), - [anon_sym___thiscall] = ACTIONS(2487), - [anon_sym___vectorcall] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_RBRACE] = ACTIONS(2489), - [anon_sym_LBRACK] = ACTIONS(2487), - [anon_sym_static] = ACTIONS(2487), - [anon_sym_register] = ACTIONS(2487), - [anon_sym_inline] = ACTIONS(2487), - [anon_sym_thread_local] = ACTIONS(2487), - [anon_sym_const] = ACTIONS(2487), - [anon_sym_volatile] = ACTIONS(2487), - [anon_sym_restrict] = ACTIONS(2487), - [anon_sym__Atomic] = ACTIONS(2487), - [anon_sym_mutable] = ACTIONS(2487), - [anon_sym_constexpr] = ACTIONS(2487), - [anon_sym_constinit] = ACTIONS(2487), - [anon_sym_consteval] = ACTIONS(2487), - [anon_sym_signed] = ACTIONS(2487), - [anon_sym_unsigned] = ACTIONS(2487), - [anon_sym_long] = ACTIONS(2487), - [anon_sym_short] = ACTIONS(2487), - [sym_primitive_type] = ACTIONS(2487), - [anon_sym_enum] = ACTIONS(2487), - [anon_sym_class] = ACTIONS(2487), - [anon_sym_struct] = ACTIONS(2487), - [anon_sym_union] = ACTIONS(2487), - [anon_sym_if] = ACTIONS(2487), - [anon_sym_else] = ACTIONS(2487), - [anon_sym_switch] = ACTIONS(2487), - [anon_sym_case] = ACTIONS(2487), - [anon_sym_default] = ACTIONS(2487), - [anon_sym_while] = ACTIONS(2487), - [anon_sym_do] = ACTIONS(2487), - [anon_sym_for] = ACTIONS(2487), - [anon_sym_return] = ACTIONS(2487), - [anon_sym_break] = ACTIONS(2487), - [anon_sym_continue] = ACTIONS(2487), - [anon_sym_goto] = ACTIONS(2487), - [anon_sym_DASH_DASH] = ACTIONS(2489), - [anon_sym_PLUS_PLUS] = ACTIONS(2489), - [anon_sym_sizeof] = ACTIONS(2487), - [sym_number_literal] = ACTIONS(2489), - [anon_sym_L_SQUOTE] = ACTIONS(2489), - [anon_sym_u_SQUOTE] = ACTIONS(2489), - [anon_sym_U_SQUOTE] = ACTIONS(2489), - [anon_sym_u8_SQUOTE] = ACTIONS(2489), - [anon_sym_SQUOTE] = ACTIONS(2489), - [anon_sym_L_DQUOTE] = ACTIONS(2489), - [anon_sym_u_DQUOTE] = ACTIONS(2489), - [anon_sym_U_DQUOTE] = ACTIONS(2489), - [anon_sym_u8_DQUOTE] = ACTIONS(2489), - [anon_sym_DQUOTE] = ACTIONS(2489), - [sym_true] = ACTIONS(2487), - [sym_false] = ACTIONS(2487), - [sym_null] = ACTIONS(2487), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2487), - [anon_sym_decltype] = ACTIONS(2487), - [anon_sym_virtual] = ACTIONS(2487), - [anon_sym_explicit] = ACTIONS(2487), - [anon_sym_typename] = ACTIONS(2487), - [anon_sym_template] = ACTIONS(2487), - [anon_sym_operator] = ACTIONS(2487), - [anon_sym_try] = ACTIONS(2487), - [anon_sym_delete] = ACTIONS(2487), - [anon_sym_throw] = ACTIONS(2487), - [anon_sym_namespace] = ACTIONS(2487), - [anon_sym_using] = ACTIONS(2487), - [anon_sym_static_assert] = ACTIONS(2487), - [anon_sym_concept] = ACTIONS(2487), - [anon_sym_co_return] = ACTIONS(2487), - [anon_sym_co_yield] = ACTIONS(2487), - [anon_sym_co_await] = ACTIONS(2487), - [anon_sym_new] = ACTIONS(2487), - [anon_sym_requires] = ACTIONS(2487), - [sym_this] = ACTIONS(2487), - [sym_nullptr] = ACTIONS(2487), - [sym_raw_string_literal] = ACTIONS(2489), + [507] = { + [sym_identifier] = ACTIONS(2809), + [aux_sym_preproc_include_token1] = ACTIONS(2809), + [aux_sym_preproc_def_token1] = ACTIONS(2809), + [aux_sym_preproc_if_token1] = ACTIONS(2809), + [aux_sym_preproc_if_token2] = ACTIONS(2809), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2809), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2809), + [aux_sym_preproc_else_token1] = ACTIONS(2809), + [aux_sym_preproc_elif_token1] = ACTIONS(2809), + [sym_preproc_directive] = ACTIONS(2809), + [anon_sym_LPAREN2] = ACTIONS(2811), + [anon_sym_BANG] = ACTIONS(2811), + [anon_sym_TILDE] = ACTIONS(2811), + [anon_sym_DASH] = ACTIONS(2809), + [anon_sym_PLUS] = ACTIONS(2809), + [anon_sym_STAR] = ACTIONS(2811), + [anon_sym_AMP_AMP] = ACTIONS(2811), + [anon_sym_AMP] = ACTIONS(2809), + [anon_sym_SEMI] = ACTIONS(2811), + [anon_sym_typedef] = ACTIONS(2809), + [anon_sym_extern] = ACTIONS(2809), + [anon_sym___attribute__] = ACTIONS(2809), + [anon_sym_COLON_COLON] = ACTIONS(2811), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2811), + [anon_sym___declspec] = ACTIONS(2809), + [anon_sym___based] = ACTIONS(2809), + [anon_sym___cdecl] = ACTIONS(2809), + [anon_sym___clrcall] = ACTIONS(2809), + [anon_sym___stdcall] = ACTIONS(2809), + [anon_sym___fastcall] = ACTIONS(2809), + [anon_sym___thiscall] = ACTIONS(2809), + [anon_sym___vectorcall] = ACTIONS(2809), + [anon_sym_LBRACE] = ACTIONS(2811), + [anon_sym_LBRACK] = ACTIONS(2809), + [anon_sym_static] = ACTIONS(2809), + [anon_sym_register] = ACTIONS(2809), + [anon_sym_inline] = ACTIONS(2809), + [anon_sym_thread_local] = ACTIONS(2809), + [anon_sym_const] = ACTIONS(2809), + [anon_sym_volatile] = ACTIONS(2809), + [anon_sym_restrict] = ACTIONS(2809), + [anon_sym__Atomic] = ACTIONS(2809), + [anon_sym_mutable] = ACTIONS(2809), + [anon_sym_constexpr] = ACTIONS(2809), + [anon_sym_constinit] = ACTIONS(2809), + [anon_sym_consteval] = ACTIONS(2809), + [anon_sym_signed] = ACTIONS(2809), + [anon_sym_unsigned] = ACTIONS(2809), + [anon_sym_long] = ACTIONS(2809), + [anon_sym_short] = ACTIONS(2809), + [sym_primitive_type] = ACTIONS(2809), + [anon_sym_enum] = ACTIONS(2809), + [anon_sym_class] = ACTIONS(2809), + [anon_sym_struct] = ACTIONS(2809), + [anon_sym_union] = ACTIONS(2809), + [anon_sym_if] = ACTIONS(2809), + [anon_sym_switch] = ACTIONS(2809), + [anon_sym_case] = ACTIONS(2809), + [anon_sym_default] = ACTIONS(2809), + [anon_sym_while] = ACTIONS(2809), + [anon_sym_do] = ACTIONS(2809), + [anon_sym_for] = ACTIONS(2809), + [anon_sym_return] = ACTIONS(2809), + [anon_sym_break] = ACTIONS(2809), + [anon_sym_continue] = ACTIONS(2809), + [anon_sym_goto] = ACTIONS(2809), + [anon_sym_not] = ACTIONS(2809), + [anon_sym_compl] = ACTIONS(2809), + [anon_sym_DASH_DASH] = ACTIONS(2811), + [anon_sym_PLUS_PLUS] = ACTIONS(2811), + [anon_sym_sizeof] = ACTIONS(2809), + [sym_number_literal] = ACTIONS(2811), + [anon_sym_L_SQUOTE] = ACTIONS(2811), + [anon_sym_u_SQUOTE] = ACTIONS(2811), + [anon_sym_U_SQUOTE] = ACTIONS(2811), + [anon_sym_u8_SQUOTE] = ACTIONS(2811), + [anon_sym_SQUOTE] = ACTIONS(2811), + [anon_sym_L_DQUOTE] = ACTIONS(2811), + [anon_sym_u_DQUOTE] = ACTIONS(2811), + [anon_sym_U_DQUOTE] = ACTIONS(2811), + [anon_sym_u8_DQUOTE] = ACTIONS(2811), + [anon_sym_DQUOTE] = ACTIONS(2811), + [sym_true] = ACTIONS(2809), + [sym_false] = ACTIONS(2809), + [sym_null] = ACTIONS(2809), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2809), + [anon_sym_decltype] = ACTIONS(2809), + [anon_sym_virtual] = ACTIONS(2809), + [anon_sym_explicit] = ACTIONS(2809), + [anon_sym_typename] = ACTIONS(2809), + [anon_sym_template] = ACTIONS(2809), + [anon_sym_operator] = ACTIONS(2809), + [anon_sym_try] = ACTIONS(2809), + [anon_sym_delete] = ACTIONS(2809), + [anon_sym_throw] = ACTIONS(2809), + [anon_sym_namespace] = ACTIONS(2809), + [anon_sym_using] = ACTIONS(2809), + [anon_sym_static_assert] = ACTIONS(2809), + [anon_sym_concept] = ACTIONS(2809), + [anon_sym_co_return] = ACTIONS(2809), + [anon_sym_co_yield] = ACTIONS(2809), + [anon_sym_co_await] = ACTIONS(2809), + [anon_sym_new] = ACTIONS(2809), + [anon_sym_requires] = ACTIONS(2809), + [sym_this] = ACTIONS(2809), + [sym_nullptr] = ACTIONS(2809), + [sym_raw_string_literal] = ACTIONS(2811), }, - [801] = { - [sym_identifier] = ACTIONS(2475), - [aux_sym_preproc_include_token1] = ACTIONS(2475), - [aux_sym_preproc_def_token1] = ACTIONS(2475), - [aux_sym_preproc_if_token1] = ACTIONS(2475), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2475), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2475), - [sym_preproc_directive] = ACTIONS(2475), - [anon_sym_LPAREN2] = ACTIONS(2477), - [anon_sym_BANG] = ACTIONS(2477), - [anon_sym_TILDE] = ACTIONS(2477), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_PLUS] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2477), - [anon_sym_AMP_AMP] = ACTIONS(2477), - [anon_sym_AMP] = ACTIONS(2475), - [anon_sym_SEMI] = ACTIONS(2477), - [anon_sym_typedef] = ACTIONS(2475), - [anon_sym_extern] = ACTIONS(2475), - [anon_sym___attribute__] = ACTIONS(2475), - [anon_sym_COLON_COLON] = ACTIONS(2477), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2477), - [anon_sym___declspec] = ACTIONS(2475), - [anon_sym___based] = ACTIONS(2475), - [anon_sym___cdecl] = ACTIONS(2475), - [anon_sym___clrcall] = ACTIONS(2475), - [anon_sym___stdcall] = ACTIONS(2475), - [anon_sym___fastcall] = ACTIONS(2475), - [anon_sym___thiscall] = ACTIONS(2475), - [anon_sym___vectorcall] = ACTIONS(2475), - [anon_sym_LBRACE] = ACTIONS(2477), - [anon_sym_RBRACE] = ACTIONS(2477), - [anon_sym_LBRACK] = ACTIONS(2475), - [anon_sym_static] = ACTIONS(2475), - [anon_sym_register] = ACTIONS(2475), - [anon_sym_inline] = ACTIONS(2475), - [anon_sym_thread_local] = ACTIONS(2475), - [anon_sym_const] = ACTIONS(2475), - [anon_sym_volatile] = ACTIONS(2475), - [anon_sym_restrict] = ACTIONS(2475), - [anon_sym__Atomic] = ACTIONS(2475), - [anon_sym_mutable] = ACTIONS(2475), - [anon_sym_constexpr] = ACTIONS(2475), - [anon_sym_constinit] = ACTIONS(2475), - [anon_sym_consteval] = ACTIONS(2475), - [anon_sym_signed] = ACTIONS(2475), - [anon_sym_unsigned] = ACTIONS(2475), - [anon_sym_long] = ACTIONS(2475), - [anon_sym_short] = ACTIONS(2475), - [sym_primitive_type] = ACTIONS(2475), - [anon_sym_enum] = ACTIONS(2475), - [anon_sym_class] = ACTIONS(2475), - [anon_sym_struct] = ACTIONS(2475), - [anon_sym_union] = ACTIONS(2475), - [anon_sym_if] = ACTIONS(2475), - [anon_sym_else] = ACTIONS(2475), - [anon_sym_switch] = ACTIONS(2475), - [anon_sym_case] = ACTIONS(2475), - [anon_sym_default] = ACTIONS(2475), - [anon_sym_while] = ACTIONS(2475), - [anon_sym_do] = ACTIONS(2475), - [anon_sym_for] = ACTIONS(2475), - [anon_sym_return] = ACTIONS(2475), - [anon_sym_break] = ACTIONS(2475), - [anon_sym_continue] = ACTIONS(2475), - [anon_sym_goto] = ACTIONS(2475), - [anon_sym_DASH_DASH] = ACTIONS(2477), - [anon_sym_PLUS_PLUS] = ACTIONS(2477), - [anon_sym_sizeof] = ACTIONS(2475), - [sym_number_literal] = ACTIONS(2477), - [anon_sym_L_SQUOTE] = ACTIONS(2477), - [anon_sym_u_SQUOTE] = ACTIONS(2477), - [anon_sym_U_SQUOTE] = ACTIONS(2477), - [anon_sym_u8_SQUOTE] = ACTIONS(2477), - [anon_sym_SQUOTE] = ACTIONS(2477), - [anon_sym_L_DQUOTE] = ACTIONS(2477), - [anon_sym_u_DQUOTE] = ACTIONS(2477), - [anon_sym_U_DQUOTE] = ACTIONS(2477), - [anon_sym_u8_DQUOTE] = ACTIONS(2477), - [anon_sym_DQUOTE] = ACTIONS(2477), - [sym_true] = ACTIONS(2475), - [sym_false] = ACTIONS(2475), - [sym_null] = ACTIONS(2475), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2475), - [anon_sym_decltype] = ACTIONS(2475), - [anon_sym_virtual] = ACTIONS(2475), - [anon_sym_explicit] = ACTIONS(2475), - [anon_sym_typename] = ACTIONS(2475), - [anon_sym_template] = ACTIONS(2475), - [anon_sym_operator] = ACTIONS(2475), - [anon_sym_try] = ACTIONS(2475), - [anon_sym_delete] = ACTIONS(2475), - [anon_sym_throw] = ACTIONS(2475), - [anon_sym_namespace] = ACTIONS(2475), - [anon_sym_using] = ACTIONS(2475), - [anon_sym_static_assert] = ACTIONS(2475), - [anon_sym_concept] = ACTIONS(2475), - [anon_sym_co_return] = ACTIONS(2475), - [anon_sym_co_yield] = ACTIONS(2475), - [anon_sym_co_await] = ACTIONS(2475), - [anon_sym_new] = ACTIONS(2475), - [anon_sym_requires] = ACTIONS(2475), - [sym_this] = ACTIONS(2475), - [sym_nullptr] = ACTIONS(2475), - [sym_raw_string_literal] = ACTIONS(2477), + [508] = { + [sym_identifier] = ACTIONS(2476), + [aux_sym_preproc_include_token1] = ACTIONS(2476), + [aux_sym_preproc_def_token1] = ACTIONS(2476), + [aux_sym_preproc_if_token1] = ACTIONS(2476), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2476), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2476), + [sym_preproc_directive] = ACTIONS(2476), + [anon_sym_LPAREN2] = ACTIONS(2478), + [anon_sym_BANG] = ACTIONS(2478), + [anon_sym_TILDE] = ACTIONS(2478), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_STAR] = ACTIONS(2478), + [anon_sym_AMP_AMP] = ACTIONS(2478), + [anon_sym_AMP] = ACTIONS(2476), + [anon_sym_SEMI] = ACTIONS(2478), + [anon_sym_typedef] = ACTIONS(2476), + [anon_sym_extern] = ACTIONS(2476), + [anon_sym___attribute__] = ACTIONS(2476), + [anon_sym_COLON_COLON] = ACTIONS(2478), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2478), + [anon_sym___declspec] = ACTIONS(2476), + [anon_sym___based] = ACTIONS(2476), + [anon_sym___cdecl] = ACTIONS(2476), + [anon_sym___clrcall] = ACTIONS(2476), + [anon_sym___stdcall] = ACTIONS(2476), + [anon_sym___fastcall] = ACTIONS(2476), + [anon_sym___thiscall] = ACTIONS(2476), + [anon_sym___vectorcall] = ACTIONS(2476), + [anon_sym_LBRACE] = ACTIONS(2478), + [anon_sym_RBRACE] = ACTIONS(2478), + [anon_sym_LBRACK] = ACTIONS(2476), + [anon_sym_static] = ACTIONS(2476), + [anon_sym_register] = ACTIONS(2476), + [anon_sym_inline] = ACTIONS(2476), + [anon_sym_thread_local] = ACTIONS(2476), + [anon_sym_const] = ACTIONS(2476), + [anon_sym_volatile] = ACTIONS(2476), + [anon_sym_restrict] = ACTIONS(2476), + [anon_sym__Atomic] = ACTIONS(2476), + [anon_sym_mutable] = ACTIONS(2476), + [anon_sym_constexpr] = ACTIONS(2476), + [anon_sym_constinit] = ACTIONS(2476), + [anon_sym_consteval] = ACTIONS(2476), + [anon_sym_signed] = ACTIONS(2476), + [anon_sym_unsigned] = ACTIONS(2476), + [anon_sym_long] = ACTIONS(2476), + [anon_sym_short] = ACTIONS(2476), + [sym_primitive_type] = ACTIONS(2476), + [anon_sym_enum] = ACTIONS(2476), + [anon_sym_class] = ACTIONS(2476), + [anon_sym_struct] = ACTIONS(2476), + [anon_sym_union] = ACTIONS(2476), + [anon_sym_if] = ACTIONS(2476), + [anon_sym_else] = ACTIONS(2476), + [anon_sym_switch] = ACTIONS(2476), + [anon_sym_case] = ACTIONS(2476), + [anon_sym_default] = ACTIONS(2476), + [anon_sym_while] = ACTIONS(2476), + [anon_sym_do] = ACTIONS(2476), + [anon_sym_for] = ACTIONS(2476), + [anon_sym_return] = ACTIONS(2476), + [anon_sym_break] = ACTIONS(2476), + [anon_sym_continue] = ACTIONS(2476), + [anon_sym_goto] = ACTIONS(2476), + [anon_sym_not] = ACTIONS(2476), + [anon_sym_compl] = ACTIONS(2476), + [anon_sym_DASH_DASH] = ACTIONS(2478), + [anon_sym_PLUS_PLUS] = ACTIONS(2478), + [anon_sym_sizeof] = ACTIONS(2476), + [sym_number_literal] = ACTIONS(2478), + [anon_sym_L_SQUOTE] = ACTIONS(2478), + [anon_sym_u_SQUOTE] = ACTIONS(2478), + [anon_sym_U_SQUOTE] = ACTIONS(2478), + [anon_sym_u8_SQUOTE] = ACTIONS(2478), + [anon_sym_SQUOTE] = ACTIONS(2478), + [anon_sym_L_DQUOTE] = ACTIONS(2478), + [anon_sym_u_DQUOTE] = ACTIONS(2478), + [anon_sym_U_DQUOTE] = ACTIONS(2478), + [anon_sym_u8_DQUOTE] = ACTIONS(2478), + [anon_sym_DQUOTE] = ACTIONS(2478), + [sym_true] = ACTIONS(2476), + [sym_false] = ACTIONS(2476), + [sym_null] = ACTIONS(2476), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2476), + [anon_sym_decltype] = ACTIONS(2476), + [anon_sym_virtual] = ACTIONS(2476), + [anon_sym_explicit] = ACTIONS(2476), + [anon_sym_typename] = ACTIONS(2476), + [anon_sym_template] = ACTIONS(2476), + [anon_sym_operator] = ACTIONS(2476), + [anon_sym_try] = ACTIONS(2476), + [anon_sym_delete] = ACTIONS(2476), + [anon_sym_throw] = ACTIONS(2476), + [anon_sym_namespace] = ACTIONS(2476), + [anon_sym_using] = ACTIONS(2476), + [anon_sym_static_assert] = ACTIONS(2476), + [anon_sym_concept] = ACTIONS(2476), + [anon_sym_co_return] = ACTIONS(2476), + [anon_sym_co_yield] = ACTIONS(2476), + [anon_sym_catch] = ACTIONS(2476), + [anon_sym_co_await] = ACTIONS(2476), + [anon_sym_new] = ACTIONS(2476), + [anon_sym_requires] = ACTIONS(2476), + [sym_this] = ACTIONS(2476), + [sym_nullptr] = ACTIONS(2476), + [sym_raw_string_literal] = ACTIONS(2478), }, - [802] = { - [sym_identifier] = ACTIONS(2479), - [aux_sym_preproc_include_token1] = ACTIONS(2479), - [aux_sym_preproc_def_token1] = ACTIONS(2479), - [aux_sym_preproc_if_token1] = ACTIONS(2479), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2479), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2479), - [sym_preproc_directive] = ACTIONS(2479), - [anon_sym_LPAREN2] = ACTIONS(2481), - [anon_sym_BANG] = ACTIONS(2481), - [anon_sym_TILDE] = ACTIONS(2481), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_AMP_AMP] = ACTIONS(2481), - [anon_sym_AMP] = ACTIONS(2479), - [anon_sym_SEMI] = ACTIONS(2481), - [anon_sym_typedef] = ACTIONS(2479), - [anon_sym_extern] = ACTIONS(2479), - [anon_sym___attribute__] = ACTIONS(2479), - [anon_sym_COLON_COLON] = ACTIONS(2481), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2481), - [anon_sym___declspec] = ACTIONS(2479), - [anon_sym___based] = ACTIONS(2479), - [anon_sym___cdecl] = ACTIONS(2479), - [anon_sym___clrcall] = ACTIONS(2479), - [anon_sym___stdcall] = ACTIONS(2479), - [anon_sym___fastcall] = ACTIONS(2479), - [anon_sym___thiscall] = ACTIONS(2479), - [anon_sym___vectorcall] = ACTIONS(2479), - [anon_sym_LBRACE] = ACTIONS(2481), - [anon_sym_RBRACE] = ACTIONS(2481), - [anon_sym_LBRACK] = ACTIONS(2479), - [anon_sym_static] = ACTIONS(2479), - [anon_sym_register] = ACTIONS(2479), - [anon_sym_inline] = ACTIONS(2479), - [anon_sym_thread_local] = ACTIONS(2479), - [anon_sym_const] = ACTIONS(2479), - [anon_sym_volatile] = ACTIONS(2479), - [anon_sym_restrict] = ACTIONS(2479), - [anon_sym__Atomic] = ACTIONS(2479), - [anon_sym_mutable] = ACTIONS(2479), - [anon_sym_constexpr] = ACTIONS(2479), - [anon_sym_constinit] = ACTIONS(2479), - [anon_sym_consteval] = ACTIONS(2479), - [anon_sym_signed] = ACTIONS(2479), - [anon_sym_unsigned] = ACTIONS(2479), - [anon_sym_long] = ACTIONS(2479), - [anon_sym_short] = ACTIONS(2479), - [sym_primitive_type] = ACTIONS(2479), - [anon_sym_enum] = ACTIONS(2479), - [anon_sym_class] = ACTIONS(2479), - [anon_sym_struct] = ACTIONS(2479), - [anon_sym_union] = ACTIONS(2479), - [anon_sym_if] = ACTIONS(2479), - [anon_sym_else] = ACTIONS(2479), - [anon_sym_switch] = ACTIONS(2479), - [anon_sym_case] = ACTIONS(2479), - [anon_sym_default] = ACTIONS(2479), - [anon_sym_while] = ACTIONS(2479), - [anon_sym_do] = ACTIONS(2479), - [anon_sym_for] = ACTIONS(2479), - [anon_sym_return] = ACTIONS(2479), - [anon_sym_break] = ACTIONS(2479), - [anon_sym_continue] = ACTIONS(2479), - [anon_sym_goto] = ACTIONS(2479), - [anon_sym_DASH_DASH] = ACTIONS(2481), - [anon_sym_PLUS_PLUS] = ACTIONS(2481), - [anon_sym_sizeof] = ACTIONS(2479), - [sym_number_literal] = ACTIONS(2481), - [anon_sym_L_SQUOTE] = ACTIONS(2481), - [anon_sym_u_SQUOTE] = ACTIONS(2481), - [anon_sym_U_SQUOTE] = ACTIONS(2481), - [anon_sym_u8_SQUOTE] = ACTIONS(2481), - [anon_sym_SQUOTE] = ACTIONS(2481), - [anon_sym_L_DQUOTE] = ACTIONS(2481), - [anon_sym_u_DQUOTE] = ACTIONS(2481), - [anon_sym_U_DQUOTE] = ACTIONS(2481), - [anon_sym_u8_DQUOTE] = ACTIONS(2481), - [anon_sym_DQUOTE] = ACTIONS(2481), - [sym_true] = ACTIONS(2479), - [sym_false] = ACTIONS(2479), - [sym_null] = ACTIONS(2479), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2479), - [anon_sym_decltype] = ACTIONS(2479), - [anon_sym_virtual] = ACTIONS(2479), - [anon_sym_explicit] = ACTIONS(2479), - [anon_sym_typename] = ACTIONS(2479), - [anon_sym_template] = ACTIONS(2479), - [anon_sym_operator] = ACTIONS(2479), - [anon_sym_try] = ACTIONS(2479), - [anon_sym_delete] = ACTIONS(2479), - [anon_sym_throw] = ACTIONS(2479), - [anon_sym_namespace] = ACTIONS(2479), - [anon_sym_using] = ACTIONS(2479), - [anon_sym_static_assert] = ACTIONS(2479), - [anon_sym_concept] = ACTIONS(2479), - [anon_sym_co_return] = ACTIONS(2479), - [anon_sym_co_yield] = ACTIONS(2479), - [anon_sym_co_await] = ACTIONS(2479), - [anon_sym_new] = ACTIONS(2479), - [anon_sym_requires] = ACTIONS(2479), - [sym_this] = ACTIONS(2479), - [sym_nullptr] = ACTIONS(2479), - [sym_raw_string_literal] = ACTIONS(2481), + [509] = { + [sym_identifier] = ACTIONS(2813), + [aux_sym_preproc_include_token1] = ACTIONS(2813), + [aux_sym_preproc_def_token1] = ACTIONS(2813), + [aux_sym_preproc_if_token1] = ACTIONS(2813), + [aux_sym_preproc_if_token2] = ACTIONS(2813), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2813), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2813), + [aux_sym_preproc_else_token1] = ACTIONS(2813), + [aux_sym_preproc_elif_token1] = ACTIONS(2813), + [sym_preproc_directive] = ACTIONS(2813), + [anon_sym_LPAREN2] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(2815), + [anon_sym_TILDE] = ACTIONS(2815), + [anon_sym_DASH] = ACTIONS(2813), + [anon_sym_PLUS] = ACTIONS(2813), + [anon_sym_STAR] = ACTIONS(2815), + [anon_sym_AMP_AMP] = ACTIONS(2815), + [anon_sym_AMP] = ACTIONS(2813), + [anon_sym_SEMI] = ACTIONS(2815), + [anon_sym_typedef] = ACTIONS(2813), + [anon_sym_extern] = ACTIONS(2813), + [anon_sym___attribute__] = ACTIONS(2813), + [anon_sym_COLON_COLON] = ACTIONS(2815), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2815), + [anon_sym___declspec] = ACTIONS(2813), + [anon_sym___based] = ACTIONS(2813), + [anon_sym___cdecl] = ACTIONS(2813), + [anon_sym___clrcall] = ACTIONS(2813), + [anon_sym___stdcall] = ACTIONS(2813), + [anon_sym___fastcall] = ACTIONS(2813), + [anon_sym___thiscall] = ACTIONS(2813), + [anon_sym___vectorcall] = ACTIONS(2813), + [anon_sym_LBRACE] = ACTIONS(2815), + [anon_sym_LBRACK] = ACTIONS(2813), + [anon_sym_static] = ACTIONS(2813), + [anon_sym_register] = ACTIONS(2813), + [anon_sym_inline] = ACTIONS(2813), + [anon_sym_thread_local] = ACTIONS(2813), + [anon_sym_const] = ACTIONS(2813), + [anon_sym_volatile] = ACTIONS(2813), + [anon_sym_restrict] = ACTIONS(2813), + [anon_sym__Atomic] = ACTIONS(2813), + [anon_sym_mutable] = ACTIONS(2813), + [anon_sym_constexpr] = ACTIONS(2813), + [anon_sym_constinit] = ACTIONS(2813), + [anon_sym_consteval] = ACTIONS(2813), + [anon_sym_signed] = ACTIONS(2813), + [anon_sym_unsigned] = ACTIONS(2813), + [anon_sym_long] = ACTIONS(2813), + [anon_sym_short] = ACTIONS(2813), + [sym_primitive_type] = ACTIONS(2813), + [anon_sym_enum] = ACTIONS(2813), + [anon_sym_class] = ACTIONS(2813), + [anon_sym_struct] = ACTIONS(2813), + [anon_sym_union] = ACTIONS(2813), + [anon_sym_if] = ACTIONS(2813), + [anon_sym_switch] = ACTIONS(2813), + [anon_sym_case] = ACTIONS(2813), + [anon_sym_default] = ACTIONS(2813), + [anon_sym_while] = ACTIONS(2813), + [anon_sym_do] = ACTIONS(2813), + [anon_sym_for] = ACTIONS(2813), + [anon_sym_return] = ACTIONS(2813), + [anon_sym_break] = ACTIONS(2813), + [anon_sym_continue] = ACTIONS(2813), + [anon_sym_goto] = ACTIONS(2813), + [anon_sym_not] = ACTIONS(2813), + [anon_sym_compl] = ACTIONS(2813), + [anon_sym_DASH_DASH] = ACTIONS(2815), + [anon_sym_PLUS_PLUS] = ACTIONS(2815), + [anon_sym_sizeof] = ACTIONS(2813), + [sym_number_literal] = ACTIONS(2815), + [anon_sym_L_SQUOTE] = ACTIONS(2815), + [anon_sym_u_SQUOTE] = ACTIONS(2815), + [anon_sym_U_SQUOTE] = ACTIONS(2815), + [anon_sym_u8_SQUOTE] = ACTIONS(2815), + [anon_sym_SQUOTE] = ACTIONS(2815), + [anon_sym_L_DQUOTE] = ACTIONS(2815), + [anon_sym_u_DQUOTE] = ACTIONS(2815), + [anon_sym_U_DQUOTE] = ACTIONS(2815), + [anon_sym_u8_DQUOTE] = ACTIONS(2815), + [anon_sym_DQUOTE] = ACTIONS(2815), + [sym_true] = ACTIONS(2813), + [sym_false] = ACTIONS(2813), + [sym_null] = ACTIONS(2813), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2813), + [anon_sym_decltype] = ACTIONS(2813), + [anon_sym_virtual] = ACTIONS(2813), + [anon_sym_explicit] = ACTIONS(2813), + [anon_sym_typename] = ACTIONS(2813), + [anon_sym_template] = ACTIONS(2813), + [anon_sym_operator] = ACTIONS(2813), + [anon_sym_try] = ACTIONS(2813), + [anon_sym_delete] = ACTIONS(2813), + [anon_sym_throw] = ACTIONS(2813), + [anon_sym_namespace] = ACTIONS(2813), + [anon_sym_using] = ACTIONS(2813), + [anon_sym_static_assert] = ACTIONS(2813), + [anon_sym_concept] = ACTIONS(2813), + [anon_sym_co_return] = ACTIONS(2813), + [anon_sym_co_yield] = ACTIONS(2813), + [anon_sym_co_await] = ACTIONS(2813), + [anon_sym_new] = ACTIONS(2813), + [anon_sym_requires] = ACTIONS(2813), + [sym_this] = ACTIONS(2813), + [sym_nullptr] = ACTIONS(2813), + [sym_raw_string_literal] = ACTIONS(2815), }, - [803] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_RBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), + [510] = { + [sym_identifier] = ACTIONS(2817), + [aux_sym_preproc_include_token1] = ACTIONS(2817), + [aux_sym_preproc_def_token1] = ACTIONS(2817), + [aux_sym_preproc_if_token1] = ACTIONS(2817), + [aux_sym_preproc_if_token2] = ACTIONS(2817), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2817), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2817), + [aux_sym_preproc_else_token1] = ACTIONS(2817), + [aux_sym_preproc_elif_token1] = ACTIONS(2817), + [sym_preproc_directive] = ACTIONS(2817), + [anon_sym_LPAREN2] = ACTIONS(2819), + [anon_sym_BANG] = ACTIONS(2819), + [anon_sym_TILDE] = ACTIONS(2819), + [anon_sym_DASH] = ACTIONS(2817), + [anon_sym_PLUS] = ACTIONS(2817), + [anon_sym_STAR] = ACTIONS(2819), + [anon_sym_AMP_AMP] = ACTIONS(2819), + [anon_sym_AMP] = ACTIONS(2817), + [anon_sym_SEMI] = ACTIONS(2819), + [anon_sym_typedef] = ACTIONS(2817), + [anon_sym_extern] = ACTIONS(2817), + [anon_sym___attribute__] = ACTIONS(2817), + [anon_sym_COLON_COLON] = ACTIONS(2819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2819), + [anon_sym___declspec] = ACTIONS(2817), + [anon_sym___based] = ACTIONS(2817), + [anon_sym___cdecl] = ACTIONS(2817), + [anon_sym___clrcall] = ACTIONS(2817), + [anon_sym___stdcall] = ACTIONS(2817), + [anon_sym___fastcall] = ACTIONS(2817), + [anon_sym___thiscall] = ACTIONS(2817), + [anon_sym___vectorcall] = ACTIONS(2817), + [anon_sym_LBRACE] = ACTIONS(2819), + [anon_sym_LBRACK] = ACTIONS(2817), + [anon_sym_static] = ACTIONS(2817), + [anon_sym_register] = ACTIONS(2817), + [anon_sym_inline] = ACTIONS(2817), + [anon_sym_thread_local] = ACTIONS(2817), + [anon_sym_const] = ACTIONS(2817), + [anon_sym_volatile] = ACTIONS(2817), + [anon_sym_restrict] = ACTIONS(2817), + [anon_sym__Atomic] = ACTIONS(2817), + [anon_sym_mutable] = ACTIONS(2817), + [anon_sym_constexpr] = ACTIONS(2817), + [anon_sym_constinit] = ACTIONS(2817), + [anon_sym_consteval] = ACTIONS(2817), + [anon_sym_signed] = ACTIONS(2817), + [anon_sym_unsigned] = ACTIONS(2817), + [anon_sym_long] = ACTIONS(2817), + [anon_sym_short] = ACTIONS(2817), + [sym_primitive_type] = ACTIONS(2817), + [anon_sym_enum] = ACTIONS(2817), + [anon_sym_class] = ACTIONS(2817), + [anon_sym_struct] = ACTIONS(2817), + [anon_sym_union] = ACTIONS(2817), + [anon_sym_if] = ACTIONS(2817), + [anon_sym_switch] = ACTIONS(2817), + [anon_sym_case] = ACTIONS(2817), + [anon_sym_default] = ACTIONS(2817), + [anon_sym_while] = ACTIONS(2817), + [anon_sym_do] = ACTIONS(2817), + [anon_sym_for] = ACTIONS(2817), + [anon_sym_return] = ACTIONS(2817), + [anon_sym_break] = ACTIONS(2817), + [anon_sym_continue] = ACTIONS(2817), + [anon_sym_goto] = ACTIONS(2817), + [anon_sym_not] = ACTIONS(2817), + [anon_sym_compl] = ACTIONS(2817), + [anon_sym_DASH_DASH] = ACTIONS(2819), + [anon_sym_PLUS_PLUS] = ACTIONS(2819), + [anon_sym_sizeof] = ACTIONS(2817), + [sym_number_literal] = ACTIONS(2819), + [anon_sym_L_SQUOTE] = ACTIONS(2819), + [anon_sym_u_SQUOTE] = ACTIONS(2819), + [anon_sym_U_SQUOTE] = ACTIONS(2819), + [anon_sym_u8_SQUOTE] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_L_DQUOTE] = ACTIONS(2819), + [anon_sym_u_DQUOTE] = ACTIONS(2819), + [anon_sym_U_DQUOTE] = ACTIONS(2819), + [anon_sym_u8_DQUOTE] = ACTIONS(2819), + [anon_sym_DQUOTE] = ACTIONS(2819), + [sym_true] = ACTIONS(2817), + [sym_false] = ACTIONS(2817), + [sym_null] = ACTIONS(2817), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2817), + [anon_sym_decltype] = ACTIONS(2817), + [anon_sym_virtual] = ACTIONS(2817), + [anon_sym_explicit] = ACTIONS(2817), + [anon_sym_typename] = ACTIONS(2817), + [anon_sym_template] = ACTIONS(2817), + [anon_sym_operator] = ACTIONS(2817), + [anon_sym_try] = ACTIONS(2817), + [anon_sym_delete] = ACTIONS(2817), + [anon_sym_throw] = ACTIONS(2817), + [anon_sym_namespace] = ACTIONS(2817), + [anon_sym_using] = ACTIONS(2817), + [anon_sym_static_assert] = ACTIONS(2817), + [anon_sym_concept] = ACTIONS(2817), + [anon_sym_co_return] = ACTIONS(2817), + [anon_sym_co_yield] = ACTIONS(2817), + [anon_sym_co_await] = ACTIONS(2817), + [anon_sym_new] = ACTIONS(2817), + [anon_sym_requires] = ACTIONS(2817), + [sym_this] = ACTIONS(2817), + [sym_nullptr] = ACTIONS(2817), + [sym_raw_string_literal] = ACTIONS(2819), }, - [804] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_RBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), + [511] = { + [sym_identifier] = ACTIONS(2821), + [aux_sym_preproc_include_token1] = ACTIONS(2821), + [aux_sym_preproc_def_token1] = ACTIONS(2821), + [aux_sym_preproc_if_token1] = ACTIONS(2821), + [aux_sym_preproc_if_token2] = ACTIONS(2821), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2821), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2821), + [aux_sym_preproc_else_token1] = ACTIONS(2821), + [aux_sym_preproc_elif_token1] = ACTIONS(2821), + [sym_preproc_directive] = ACTIONS(2821), + [anon_sym_LPAREN2] = ACTIONS(2823), + [anon_sym_BANG] = ACTIONS(2823), + [anon_sym_TILDE] = ACTIONS(2823), + [anon_sym_DASH] = ACTIONS(2821), + [anon_sym_PLUS] = ACTIONS(2821), + [anon_sym_STAR] = ACTIONS(2823), + [anon_sym_AMP_AMP] = ACTIONS(2823), + [anon_sym_AMP] = ACTIONS(2821), + [anon_sym_SEMI] = ACTIONS(2823), + [anon_sym_typedef] = ACTIONS(2821), + [anon_sym_extern] = ACTIONS(2821), + [anon_sym___attribute__] = ACTIONS(2821), + [anon_sym_COLON_COLON] = ACTIONS(2823), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2823), + [anon_sym___declspec] = ACTIONS(2821), + [anon_sym___based] = ACTIONS(2821), + [anon_sym___cdecl] = ACTIONS(2821), + [anon_sym___clrcall] = ACTIONS(2821), + [anon_sym___stdcall] = ACTIONS(2821), + [anon_sym___fastcall] = ACTIONS(2821), + [anon_sym___thiscall] = ACTIONS(2821), + [anon_sym___vectorcall] = ACTIONS(2821), + [anon_sym_LBRACE] = ACTIONS(2823), + [anon_sym_LBRACK] = ACTIONS(2821), + [anon_sym_static] = ACTIONS(2821), + [anon_sym_register] = ACTIONS(2821), + [anon_sym_inline] = ACTIONS(2821), + [anon_sym_thread_local] = ACTIONS(2821), + [anon_sym_const] = ACTIONS(2821), + [anon_sym_volatile] = ACTIONS(2821), + [anon_sym_restrict] = ACTIONS(2821), + [anon_sym__Atomic] = ACTIONS(2821), + [anon_sym_mutable] = ACTIONS(2821), + [anon_sym_constexpr] = ACTIONS(2821), + [anon_sym_constinit] = ACTIONS(2821), + [anon_sym_consteval] = ACTIONS(2821), + [anon_sym_signed] = ACTIONS(2821), + [anon_sym_unsigned] = ACTIONS(2821), + [anon_sym_long] = ACTIONS(2821), + [anon_sym_short] = ACTIONS(2821), + [sym_primitive_type] = ACTIONS(2821), + [anon_sym_enum] = ACTIONS(2821), + [anon_sym_class] = ACTIONS(2821), + [anon_sym_struct] = ACTIONS(2821), + [anon_sym_union] = ACTIONS(2821), + [anon_sym_if] = ACTIONS(2821), + [anon_sym_switch] = ACTIONS(2821), + [anon_sym_case] = ACTIONS(2821), + [anon_sym_default] = ACTIONS(2821), + [anon_sym_while] = ACTIONS(2821), + [anon_sym_do] = ACTIONS(2821), + [anon_sym_for] = ACTIONS(2821), + [anon_sym_return] = ACTIONS(2821), + [anon_sym_break] = ACTIONS(2821), + [anon_sym_continue] = ACTIONS(2821), + [anon_sym_goto] = ACTIONS(2821), + [anon_sym_not] = ACTIONS(2821), + [anon_sym_compl] = ACTIONS(2821), + [anon_sym_DASH_DASH] = ACTIONS(2823), + [anon_sym_PLUS_PLUS] = ACTIONS(2823), + [anon_sym_sizeof] = ACTIONS(2821), + [sym_number_literal] = ACTIONS(2823), + [anon_sym_L_SQUOTE] = ACTIONS(2823), + [anon_sym_u_SQUOTE] = ACTIONS(2823), + [anon_sym_U_SQUOTE] = ACTIONS(2823), + [anon_sym_u8_SQUOTE] = ACTIONS(2823), + [anon_sym_SQUOTE] = ACTIONS(2823), + [anon_sym_L_DQUOTE] = ACTIONS(2823), + [anon_sym_u_DQUOTE] = ACTIONS(2823), + [anon_sym_U_DQUOTE] = ACTIONS(2823), + [anon_sym_u8_DQUOTE] = ACTIONS(2823), + [anon_sym_DQUOTE] = ACTIONS(2823), + [sym_true] = ACTIONS(2821), + [sym_false] = ACTIONS(2821), + [sym_null] = ACTIONS(2821), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2821), + [anon_sym_decltype] = ACTIONS(2821), + [anon_sym_virtual] = ACTIONS(2821), + [anon_sym_explicit] = ACTIONS(2821), + [anon_sym_typename] = ACTIONS(2821), + [anon_sym_template] = ACTIONS(2821), + [anon_sym_operator] = ACTIONS(2821), + [anon_sym_try] = ACTIONS(2821), + [anon_sym_delete] = ACTIONS(2821), + [anon_sym_throw] = ACTIONS(2821), + [anon_sym_namespace] = ACTIONS(2821), + [anon_sym_using] = ACTIONS(2821), + [anon_sym_static_assert] = ACTIONS(2821), + [anon_sym_concept] = ACTIONS(2821), + [anon_sym_co_return] = ACTIONS(2821), + [anon_sym_co_yield] = ACTIONS(2821), + [anon_sym_co_await] = ACTIONS(2821), + [anon_sym_new] = ACTIONS(2821), + [anon_sym_requires] = ACTIONS(2821), + [sym_this] = ACTIONS(2821), + [sym_nullptr] = ACTIONS(2821), + [sym_raw_string_literal] = ACTIONS(2823), }, - [805] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_RBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), + [512] = { + [sym_identifier] = ACTIONS(2825), + [aux_sym_preproc_include_token1] = ACTIONS(2825), + [aux_sym_preproc_def_token1] = ACTIONS(2825), + [aux_sym_preproc_if_token1] = ACTIONS(2825), + [aux_sym_preproc_if_token2] = ACTIONS(2825), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2825), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2825), + [aux_sym_preproc_else_token1] = ACTIONS(2825), + [aux_sym_preproc_elif_token1] = ACTIONS(2825), + [sym_preproc_directive] = ACTIONS(2825), + [anon_sym_LPAREN2] = ACTIONS(2827), + [anon_sym_BANG] = ACTIONS(2827), + [anon_sym_TILDE] = ACTIONS(2827), + [anon_sym_DASH] = ACTIONS(2825), + [anon_sym_PLUS] = ACTIONS(2825), + [anon_sym_STAR] = ACTIONS(2827), + [anon_sym_AMP_AMP] = ACTIONS(2827), + [anon_sym_AMP] = ACTIONS(2825), + [anon_sym_SEMI] = ACTIONS(2827), + [anon_sym_typedef] = ACTIONS(2825), + [anon_sym_extern] = ACTIONS(2825), + [anon_sym___attribute__] = ACTIONS(2825), + [anon_sym_COLON_COLON] = ACTIONS(2827), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2827), + [anon_sym___declspec] = ACTIONS(2825), + [anon_sym___based] = ACTIONS(2825), + [anon_sym___cdecl] = ACTIONS(2825), + [anon_sym___clrcall] = ACTIONS(2825), + [anon_sym___stdcall] = ACTIONS(2825), + [anon_sym___fastcall] = ACTIONS(2825), + [anon_sym___thiscall] = ACTIONS(2825), + [anon_sym___vectorcall] = ACTIONS(2825), + [anon_sym_LBRACE] = ACTIONS(2827), + [anon_sym_LBRACK] = ACTIONS(2825), + [anon_sym_static] = ACTIONS(2825), + [anon_sym_register] = ACTIONS(2825), + [anon_sym_inline] = ACTIONS(2825), + [anon_sym_thread_local] = ACTIONS(2825), + [anon_sym_const] = ACTIONS(2825), + [anon_sym_volatile] = ACTIONS(2825), + [anon_sym_restrict] = ACTIONS(2825), + [anon_sym__Atomic] = ACTIONS(2825), + [anon_sym_mutable] = ACTIONS(2825), + [anon_sym_constexpr] = ACTIONS(2825), + [anon_sym_constinit] = ACTIONS(2825), + [anon_sym_consteval] = ACTIONS(2825), + [anon_sym_signed] = ACTIONS(2825), + [anon_sym_unsigned] = ACTIONS(2825), + [anon_sym_long] = ACTIONS(2825), + [anon_sym_short] = ACTIONS(2825), + [sym_primitive_type] = ACTIONS(2825), + [anon_sym_enum] = ACTIONS(2825), + [anon_sym_class] = ACTIONS(2825), + [anon_sym_struct] = ACTIONS(2825), + [anon_sym_union] = ACTIONS(2825), + [anon_sym_if] = ACTIONS(2825), + [anon_sym_switch] = ACTIONS(2825), + [anon_sym_case] = ACTIONS(2825), + [anon_sym_default] = ACTIONS(2825), + [anon_sym_while] = ACTIONS(2825), + [anon_sym_do] = ACTIONS(2825), + [anon_sym_for] = ACTIONS(2825), + [anon_sym_return] = ACTIONS(2825), + [anon_sym_break] = ACTIONS(2825), + [anon_sym_continue] = ACTIONS(2825), + [anon_sym_goto] = ACTIONS(2825), + [anon_sym_not] = ACTIONS(2825), + [anon_sym_compl] = ACTIONS(2825), + [anon_sym_DASH_DASH] = ACTIONS(2827), + [anon_sym_PLUS_PLUS] = ACTIONS(2827), + [anon_sym_sizeof] = ACTIONS(2825), + [sym_number_literal] = ACTIONS(2827), + [anon_sym_L_SQUOTE] = ACTIONS(2827), + [anon_sym_u_SQUOTE] = ACTIONS(2827), + [anon_sym_U_SQUOTE] = ACTIONS(2827), + [anon_sym_u8_SQUOTE] = ACTIONS(2827), + [anon_sym_SQUOTE] = ACTIONS(2827), + [anon_sym_L_DQUOTE] = ACTIONS(2827), + [anon_sym_u_DQUOTE] = ACTIONS(2827), + [anon_sym_U_DQUOTE] = ACTIONS(2827), + [anon_sym_u8_DQUOTE] = ACTIONS(2827), + [anon_sym_DQUOTE] = ACTIONS(2827), + [sym_true] = ACTIONS(2825), + [sym_false] = ACTIONS(2825), + [sym_null] = ACTIONS(2825), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2825), + [anon_sym_decltype] = ACTIONS(2825), + [anon_sym_virtual] = ACTIONS(2825), + [anon_sym_explicit] = ACTIONS(2825), + [anon_sym_typename] = ACTIONS(2825), + [anon_sym_template] = ACTIONS(2825), + [anon_sym_operator] = ACTIONS(2825), + [anon_sym_try] = ACTIONS(2825), + [anon_sym_delete] = ACTIONS(2825), + [anon_sym_throw] = ACTIONS(2825), + [anon_sym_namespace] = ACTIONS(2825), + [anon_sym_using] = ACTIONS(2825), + [anon_sym_static_assert] = ACTIONS(2825), + [anon_sym_concept] = ACTIONS(2825), + [anon_sym_co_return] = ACTIONS(2825), + [anon_sym_co_yield] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(2825), + [anon_sym_new] = ACTIONS(2825), + [anon_sym_requires] = ACTIONS(2825), + [sym_this] = ACTIONS(2825), + [sym_nullptr] = ACTIONS(2825), + [sym_raw_string_literal] = ACTIONS(2827), }, - [806] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_RBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), + [513] = { + [sym_identifier] = ACTIONS(2829), + [aux_sym_preproc_include_token1] = ACTIONS(2829), + [aux_sym_preproc_def_token1] = ACTIONS(2829), + [aux_sym_preproc_if_token1] = ACTIONS(2829), + [aux_sym_preproc_if_token2] = ACTIONS(2829), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2829), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2829), + [aux_sym_preproc_else_token1] = ACTIONS(2829), + [aux_sym_preproc_elif_token1] = ACTIONS(2829), + [sym_preproc_directive] = ACTIONS(2829), + [anon_sym_LPAREN2] = ACTIONS(2831), + [anon_sym_BANG] = ACTIONS(2831), + [anon_sym_TILDE] = ACTIONS(2831), + [anon_sym_DASH] = ACTIONS(2829), + [anon_sym_PLUS] = ACTIONS(2829), + [anon_sym_STAR] = ACTIONS(2831), + [anon_sym_AMP_AMP] = ACTIONS(2831), + [anon_sym_AMP] = ACTIONS(2829), + [anon_sym_SEMI] = ACTIONS(2831), + [anon_sym_typedef] = ACTIONS(2829), + [anon_sym_extern] = ACTIONS(2829), + [anon_sym___attribute__] = ACTIONS(2829), + [anon_sym_COLON_COLON] = ACTIONS(2831), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2831), + [anon_sym___declspec] = ACTIONS(2829), + [anon_sym___based] = ACTIONS(2829), + [anon_sym___cdecl] = ACTIONS(2829), + [anon_sym___clrcall] = ACTIONS(2829), + [anon_sym___stdcall] = ACTIONS(2829), + [anon_sym___fastcall] = ACTIONS(2829), + [anon_sym___thiscall] = ACTIONS(2829), + [anon_sym___vectorcall] = ACTIONS(2829), + [anon_sym_LBRACE] = ACTIONS(2831), + [anon_sym_LBRACK] = ACTIONS(2829), + [anon_sym_static] = ACTIONS(2829), + [anon_sym_register] = ACTIONS(2829), + [anon_sym_inline] = ACTIONS(2829), + [anon_sym_thread_local] = ACTIONS(2829), + [anon_sym_const] = ACTIONS(2829), + [anon_sym_volatile] = ACTIONS(2829), + [anon_sym_restrict] = ACTIONS(2829), + [anon_sym__Atomic] = ACTIONS(2829), + [anon_sym_mutable] = ACTIONS(2829), + [anon_sym_constexpr] = ACTIONS(2829), + [anon_sym_constinit] = ACTIONS(2829), + [anon_sym_consteval] = ACTIONS(2829), + [anon_sym_signed] = ACTIONS(2829), + [anon_sym_unsigned] = ACTIONS(2829), + [anon_sym_long] = ACTIONS(2829), + [anon_sym_short] = ACTIONS(2829), + [sym_primitive_type] = ACTIONS(2829), + [anon_sym_enum] = ACTIONS(2829), + [anon_sym_class] = ACTIONS(2829), + [anon_sym_struct] = ACTIONS(2829), + [anon_sym_union] = ACTIONS(2829), + [anon_sym_if] = ACTIONS(2829), + [anon_sym_switch] = ACTIONS(2829), + [anon_sym_case] = ACTIONS(2829), + [anon_sym_default] = ACTIONS(2829), + [anon_sym_while] = ACTIONS(2829), + [anon_sym_do] = ACTIONS(2829), + [anon_sym_for] = ACTIONS(2829), + [anon_sym_return] = ACTIONS(2829), + [anon_sym_break] = ACTIONS(2829), + [anon_sym_continue] = ACTIONS(2829), + [anon_sym_goto] = ACTIONS(2829), + [anon_sym_not] = ACTIONS(2829), + [anon_sym_compl] = ACTIONS(2829), + [anon_sym_DASH_DASH] = ACTIONS(2831), + [anon_sym_PLUS_PLUS] = ACTIONS(2831), + [anon_sym_sizeof] = ACTIONS(2829), + [sym_number_literal] = ACTIONS(2831), + [anon_sym_L_SQUOTE] = ACTIONS(2831), + [anon_sym_u_SQUOTE] = ACTIONS(2831), + [anon_sym_U_SQUOTE] = ACTIONS(2831), + [anon_sym_u8_SQUOTE] = ACTIONS(2831), + [anon_sym_SQUOTE] = ACTIONS(2831), + [anon_sym_L_DQUOTE] = ACTIONS(2831), + [anon_sym_u_DQUOTE] = ACTIONS(2831), + [anon_sym_U_DQUOTE] = ACTIONS(2831), + [anon_sym_u8_DQUOTE] = ACTIONS(2831), + [anon_sym_DQUOTE] = ACTIONS(2831), + [sym_true] = ACTIONS(2829), + [sym_false] = ACTIONS(2829), + [sym_null] = ACTIONS(2829), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2829), + [anon_sym_decltype] = ACTIONS(2829), + [anon_sym_virtual] = ACTIONS(2829), + [anon_sym_explicit] = ACTIONS(2829), + [anon_sym_typename] = ACTIONS(2829), + [anon_sym_template] = ACTIONS(2829), + [anon_sym_operator] = ACTIONS(2829), + [anon_sym_try] = ACTIONS(2829), + [anon_sym_delete] = ACTIONS(2829), + [anon_sym_throw] = ACTIONS(2829), + [anon_sym_namespace] = ACTIONS(2829), + [anon_sym_using] = ACTIONS(2829), + [anon_sym_static_assert] = ACTIONS(2829), + [anon_sym_concept] = ACTIONS(2829), + [anon_sym_co_return] = ACTIONS(2829), + [anon_sym_co_yield] = ACTIONS(2829), + [anon_sym_co_await] = ACTIONS(2829), + [anon_sym_new] = ACTIONS(2829), + [anon_sym_requires] = ACTIONS(2829), + [sym_this] = ACTIONS(2829), + [sym_nullptr] = ACTIONS(2829), + [sym_raw_string_literal] = ACTIONS(2831), }, - [807] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_RBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), + [514] = { + [sym_identifier] = ACTIONS(2485), + [aux_sym_preproc_include_token1] = ACTIONS(2485), + [aux_sym_preproc_def_token1] = ACTIONS(2485), + [aux_sym_preproc_if_token1] = ACTIONS(2485), + [aux_sym_preproc_if_token2] = ACTIONS(2485), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2485), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2485), + [sym_preproc_directive] = ACTIONS(2485), + [anon_sym_LPAREN2] = ACTIONS(2487), + [anon_sym_BANG] = ACTIONS(2487), + [anon_sym_TILDE] = ACTIONS(2487), + [anon_sym_DASH] = ACTIONS(2485), + [anon_sym_PLUS] = ACTIONS(2485), + [anon_sym_STAR] = ACTIONS(2487), + [anon_sym_AMP_AMP] = ACTIONS(2487), + [anon_sym_AMP] = ACTIONS(2485), + [anon_sym_SEMI] = ACTIONS(2487), + [anon_sym_typedef] = ACTIONS(2485), + [anon_sym_extern] = ACTIONS(2485), + [anon_sym___attribute__] = ACTIONS(2485), + [anon_sym_COLON_COLON] = ACTIONS(2487), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2487), + [anon_sym___declspec] = ACTIONS(2485), + [anon_sym___based] = ACTIONS(2485), + [anon_sym___cdecl] = ACTIONS(2485), + [anon_sym___clrcall] = ACTIONS(2485), + [anon_sym___stdcall] = ACTIONS(2485), + [anon_sym___fastcall] = ACTIONS(2485), + [anon_sym___thiscall] = ACTIONS(2485), + [anon_sym___vectorcall] = ACTIONS(2485), + [anon_sym_LBRACE] = ACTIONS(2487), + [anon_sym_LBRACK] = ACTIONS(2485), + [anon_sym_static] = ACTIONS(2485), + [anon_sym_register] = ACTIONS(2485), + [anon_sym_inline] = ACTIONS(2485), + [anon_sym_thread_local] = ACTIONS(2485), + [anon_sym_const] = ACTIONS(2485), + [anon_sym_volatile] = ACTIONS(2485), + [anon_sym_restrict] = ACTIONS(2485), + [anon_sym__Atomic] = ACTIONS(2485), + [anon_sym_mutable] = ACTIONS(2485), + [anon_sym_constexpr] = ACTIONS(2485), + [anon_sym_constinit] = ACTIONS(2485), + [anon_sym_consteval] = ACTIONS(2485), + [anon_sym_signed] = ACTIONS(2485), + [anon_sym_unsigned] = ACTIONS(2485), + [anon_sym_long] = ACTIONS(2485), + [anon_sym_short] = ACTIONS(2485), + [sym_primitive_type] = ACTIONS(2485), + [anon_sym_enum] = ACTIONS(2485), + [anon_sym_class] = ACTIONS(2485), + [anon_sym_struct] = ACTIONS(2485), + [anon_sym_union] = ACTIONS(2485), + [anon_sym_if] = ACTIONS(2485), + [anon_sym_else] = ACTIONS(2485), + [anon_sym_switch] = ACTIONS(2485), + [anon_sym_case] = ACTIONS(2485), + [anon_sym_default] = ACTIONS(2485), + [anon_sym_while] = ACTIONS(2485), + [anon_sym_do] = ACTIONS(2485), + [anon_sym_for] = ACTIONS(2485), + [anon_sym_return] = ACTIONS(2485), + [anon_sym_break] = ACTIONS(2485), + [anon_sym_continue] = ACTIONS(2485), + [anon_sym_goto] = ACTIONS(2485), + [anon_sym_not] = ACTIONS(2485), + [anon_sym_compl] = ACTIONS(2485), + [anon_sym_DASH_DASH] = ACTIONS(2487), + [anon_sym_PLUS_PLUS] = ACTIONS(2487), + [anon_sym_sizeof] = ACTIONS(2485), + [sym_number_literal] = ACTIONS(2487), + [anon_sym_L_SQUOTE] = ACTIONS(2487), + [anon_sym_u_SQUOTE] = ACTIONS(2487), + [anon_sym_U_SQUOTE] = ACTIONS(2487), + [anon_sym_u8_SQUOTE] = ACTIONS(2487), + [anon_sym_SQUOTE] = ACTIONS(2487), + [anon_sym_L_DQUOTE] = ACTIONS(2487), + [anon_sym_u_DQUOTE] = ACTIONS(2487), + [anon_sym_U_DQUOTE] = ACTIONS(2487), + [anon_sym_u8_DQUOTE] = ACTIONS(2487), + [anon_sym_DQUOTE] = ACTIONS(2487), + [sym_true] = ACTIONS(2485), + [sym_false] = ACTIONS(2485), + [sym_null] = ACTIONS(2485), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2485), + [anon_sym_decltype] = ACTIONS(2485), + [anon_sym_virtual] = ACTIONS(2485), + [anon_sym_explicit] = ACTIONS(2485), + [anon_sym_typename] = ACTIONS(2485), + [anon_sym_template] = ACTIONS(2485), + [anon_sym_operator] = ACTIONS(2485), + [anon_sym_try] = ACTIONS(2485), + [anon_sym_delete] = ACTIONS(2485), + [anon_sym_throw] = ACTIONS(2485), + [anon_sym_namespace] = ACTIONS(2485), + [anon_sym_using] = ACTIONS(2485), + [anon_sym_static_assert] = ACTIONS(2485), + [anon_sym_concept] = ACTIONS(2485), + [anon_sym_co_return] = ACTIONS(2485), + [anon_sym_co_yield] = ACTIONS(2485), + [anon_sym_catch] = ACTIONS(2485), + [anon_sym_co_await] = ACTIONS(2485), + [anon_sym_new] = ACTIONS(2485), + [anon_sym_requires] = ACTIONS(2485), + [sym_this] = ACTIONS(2485), + [sym_nullptr] = ACTIONS(2485), + [sym_raw_string_literal] = ACTIONS(2487), }, - [808] = { - [sym_function_definition] = STATE(1008), - [sym_declaration] = STATE(1008), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(3994), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(2900), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym_ms_call_modifier] = STATE(1868), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4699), - [sym_array_declarator] = STATE(4825), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(3033), + [515] = { + [sym_identifier] = ACTIONS(2833), + [aux_sym_preproc_include_token1] = ACTIONS(2833), + [aux_sym_preproc_def_token1] = ACTIONS(2833), + [aux_sym_preproc_if_token1] = ACTIONS(2833), + [aux_sym_preproc_if_token2] = ACTIONS(2833), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2833), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2833), + [aux_sym_preproc_else_token1] = ACTIONS(2833), + [aux_sym_preproc_elif_token1] = ACTIONS(2833), + [sym_preproc_directive] = ACTIONS(2833), + [anon_sym_LPAREN2] = ACTIONS(2835), + [anon_sym_BANG] = ACTIONS(2835), + [anon_sym_TILDE] = ACTIONS(2835), + [anon_sym_DASH] = ACTIONS(2833), + [anon_sym_PLUS] = ACTIONS(2833), + [anon_sym_STAR] = ACTIONS(2835), + [anon_sym_AMP_AMP] = ACTIONS(2835), + [anon_sym_AMP] = ACTIONS(2833), + [anon_sym_SEMI] = ACTIONS(2835), + [anon_sym_typedef] = ACTIONS(2833), + [anon_sym_extern] = ACTIONS(2833), + [anon_sym___attribute__] = ACTIONS(2833), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2835), + [anon_sym___declspec] = ACTIONS(2833), + [anon_sym___based] = ACTIONS(2833), + [anon_sym___cdecl] = ACTIONS(2833), + [anon_sym___clrcall] = ACTIONS(2833), + [anon_sym___stdcall] = ACTIONS(2833), + [anon_sym___fastcall] = ACTIONS(2833), + [anon_sym___thiscall] = ACTIONS(2833), + [anon_sym___vectorcall] = ACTIONS(2833), + [anon_sym_LBRACE] = ACTIONS(2835), + [anon_sym_LBRACK] = ACTIONS(2833), + [anon_sym_static] = ACTIONS(2833), + [anon_sym_register] = ACTIONS(2833), + [anon_sym_inline] = ACTIONS(2833), + [anon_sym_thread_local] = ACTIONS(2833), + [anon_sym_const] = ACTIONS(2833), + [anon_sym_volatile] = ACTIONS(2833), + [anon_sym_restrict] = ACTIONS(2833), + [anon_sym__Atomic] = ACTIONS(2833), + [anon_sym_mutable] = ACTIONS(2833), + [anon_sym_constexpr] = ACTIONS(2833), + [anon_sym_constinit] = ACTIONS(2833), + [anon_sym_consteval] = ACTIONS(2833), + [anon_sym_signed] = ACTIONS(2833), + [anon_sym_unsigned] = ACTIONS(2833), + [anon_sym_long] = ACTIONS(2833), + [anon_sym_short] = ACTIONS(2833), + [sym_primitive_type] = ACTIONS(2833), + [anon_sym_enum] = ACTIONS(2833), + [anon_sym_class] = ACTIONS(2833), + [anon_sym_struct] = ACTIONS(2833), + [anon_sym_union] = ACTIONS(2833), + [anon_sym_if] = ACTIONS(2833), + [anon_sym_switch] = ACTIONS(2833), + [anon_sym_case] = ACTIONS(2833), + [anon_sym_default] = ACTIONS(2833), + [anon_sym_while] = ACTIONS(2833), + [anon_sym_do] = ACTIONS(2833), + [anon_sym_for] = ACTIONS(2833), + [anon_sym_return] = ACTIONS(2833), + [anon_sym_break] = ACTIONS(2833), + [anon_sym_continue] = ACTIONS(2833), + [anon_sym_goto] = ACTIONS(2833), + [anon_sym_not] = ACTIONS(2833), + [anon_sym_compl] = ACTIONS(2833), + [anon_sym_DASH_DASH] = ACTIONS(2835), + [anon_sym_PLUS_PLUS] = ACTIONS(2835), + [anon_sym_sizeof] = ACTIONS(2833), + [sym_number_literal] = ACTIONS(2835), + [anon_sym_L_SQUOTE] = ACTIONS(2835), + [anon_sym_u_SQUOTE] = ACTIONS(2835), + [anon_sym_U_SQUOTE] = ACTIONS(2835), + [anon_sym_u8_SQUOTE] = ACTIONS(2835), + [anon_sym_SQUOTE] = ACTIONS(2835), + [anon_sym_L_DQUOTE] = ACTIONS(2835), + [anon_sym_u_DQUOTE] = ACTIONS(2835), + [anon_sym_U_DQUOTE] = ACTIONS(2835), + [anon_sym_u8_DQUOTE] = ACTIONS(2835), + [anon_sym_DQUOTE] = ACTIONS(2835), + [sym_true] = ACTIONS(2833), + [sym_false] = ACTIONS(2833), + [sym_null] = ACTIONS(2833), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2833), + [anon_sym_decltype] = ACTIONS(2833), + [anon_sym_virtual] = ACTIONS(2833), + [anon_sym_explicit] = ACTIONS(2833), + [anon_sym_typename] = ACTIONS(2833), + [anon_sym_template] = ACTIONS(2833), + [anon_sym_operator] = ACTIONS(2833), + [anon_sym_try] = ACTIONS(2833), + [anon_sym_delete] = ACTIONS(2833), + [anon_sym_throw] = ACTIONS(2833), + [anon_sym_namespace] = ACTIONS(2833), + [anon_sym_using] = ACTIONS(2833), + [anon_sym_static_assert] = ACTIONS(2833), + [anon_sym_concept] = ACTIONS(2833), + [anon_sym_co_return] = ACTIONS(2833), + [anon_sym_co_yield] = ACTIONS(2833), + [anon_sym_co_await] = ACTIONS(2833), + [anon_sym_new] = ACTIONS(2833), + [anon_sym_requires] = ACTIONS(2833), + [sym_this] = ACTIONS(2833), + [sym_nullptr] = ACTIONS(2833), + [sym_raw_string_literal] = ACTIONS(2835), + }, + [516] = { + [sym_identifier] = ACTIONS(2837), + [aux_sym_preproc_include_token1] = ACTIONS(2837), + [aux_sym_preproc_def_token1] = ACTIONS(2837), + [aux_sym_preproc_if_token1] = ACTIONS(2837), + [aux_sym_preproc_if_token2] = ACTIONS(2837), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2837), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2837), + [aux_sym_preproc_else_token1] = ACTIONS(2837), + [aux_sym_preproc_elif_token1] = ACTIONS(2837), + [sym_preproc_directive] = ACTIONS(2837), + [anon_sym_LPAREN2] = ACTIONS(2839), + [anon_sym_BANG] = ACTIONS(2839), + [anon_sym_TILDE] = ACTIONS(2839), + [anon_sym_DASH] = ACTIONS(2837), + [anon_sym_PLUS] = ACTIONS(2837), + [anon_sym_STAR] = ACTIONS(2839), + [anon_sym_AMP_AMP] = ACTIONS(2839), + [anon_sym_AMP] = ACTIONS(2837), + [anon_sym_SEMI] = ACTIONS(2839), + [anon_sym_typedef] = ACTIONS(2837), + [anon_sym_extern] = ACTIONS(2837), + [anon_sym___attribute__] = ACTIONS(2837), + [anon_sym_COLON_COLON] = ACTIONS(2839), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2839), + [anon_sym___declspec] = ACTIONS(2837), + [anon_sym___based] = ACTIONS(2837), + [anon_sym___cdecl] = ACTIONS(2837), + [anon_sym___clrcall] = ACTIONS(2837), + [anon_sym___stdcall] = ACTIONS(2837), + [anon_sym___fastcall] = ACTIONS(2837), + [anon_sym___thiscall] = ACTIONS(2837), + [anon_sym___vectorcall] = ACTIONS(2837), + [anon_sym_LBRACE] = ACTIONS(2839), + [anon_sym_LBRACK] = ACTIONS(2837), + [anon_sym_static] = ACTIONS(2837), + [anon_sym_register] = ACTIONS(2837), + [anon_sym_inline] = ACTIONS(2837), + [anon_sym_thread_local] = ACTIONS(2837), + [anon_sym_const] = ACTIONS(2837), + [anon_sym_volatile] = ACTIONS(2837), + [anon_sym_restrict] = ACTIONS(2837), + [anon_sym__Atomic] = ACTIONS(2837), + [anon_sym_mutable] = ACTIONS(2837), + [anon_sym_constexpr] = ACTIONS(2837), + [anon_sym_constinit] = ACTIONS(2837), + [anon_sym_consteval] = ACTIONS(2837), + [anon_sym_signed] = ACTIONS(2837), + [anon_sym_unsigned] = ACTIONS(2837), + [anon_sym_long] = ACTIONS(2837), + [anon_sym_short] = ACTIONS(2837), + [sym_primitive_type] = ACTIONS(2837), + [anon_sym_enum] = ACTIONS(2837), + [anon_sym_class] = ACTIONS(2837), + [anon_sym_struct] = ACTIONS(2837), + [anon_sym_union] = ACTIONS(2837), + [anon_sym_if] = ACTIONS(2837), + [anon_sym_switch] = ACTIONS(2837), + [anon_sym_case] = ACTIONS(2837), + [anon_sym_default] = ACTIONS(2837), + [anon_sym_while] = ACTIONS(2837), + [anon_sym_do] = ACTIONS(2837), + [anon_sym_for] = ACTIONS(2837), + [anon_sym_return] = ACTIONS(2837), + [anon_sym_break] = ACTIONS(2837), + [anon_sym_continue] = ACTIONS(2837), + [anon_sym_goto] = ACTIONS(2837), + [anon_sym_not] = ACTIONS(2837), + [anon_sym_compl] = ACTIONS(2837), + [anon_sym_DASH_DASH] = ACTIONS(2839), + [anon_sym_PLUS_PLUS] = ACTIONS(2839), + [anon_sym_sizeof] = ACTIONS(2837), + [sym_number_literal] = ACTIONS(2839), + [anon_sym_L_SQUOTE] = ACTIONS(2839), + [anon_sym_u_SQUOTE] = ACTIONS(2839), + [anon_sym_U_SQUOTE] = ACTIONS(2839), + [anon_sym_u8_SQUOTE] = ACTIONS(2839), + [anon_sym_SQUOTE] = ACTIONS(2839), + [anon_sym_L_DQUOTE] = ACTIONS(2839), + [anon_sym_u_DQUOTE] = ACTIONS(2839), + [anon_sym_U_DQUOTE] = ACTIONS(2839), + [anon_sym_u8_DQUOTE] = ACTIONS(2839), + [anon_sym_DQUOTE] = ACTIONS(2839), + [sym_true] = ACTIONS(2837), + [sym_false] = ACTIONS(2837), + [sym_null] = ACTIONS(2837), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2837), + [anon_sym_decltype] = ACTIONS(2837), + [anon_sym_virtual] = ACTIONS(2837), + [anon_sym_explicit] = ACTIONS(2837), + [anon_sym_typename] = ACTIONS(2837), + [anon_sym_template] = ACTIONS(2837), + [anon_sym_operator] = ACTIONS(2837), + [anon_sym_try] = ACTIONS(2837), + [anon_sym_delete] = ACTIONS(2837), + [anon_sym_throw] = ACTIONS(2837), + [anon_sym_namespace] = ACTIONS(2837), + [anon_sym_using] = ACTIONS(2837), + [anon_sym_static_assert] = ACTIONS(2837), + [anon_sym_concept] = ACTIONS(2837), + [anon_sym_co_return] = ACTIONS(2837), + [anon_sym_co_yield] = ACTIONS(2837), + [anon_sym_co_await] = ACTIONS(2837), + [anon_sym_new] = ACTIONS(2837), + [anon_sym_requires] = ACTIONS(2837), + [sym_this] = ACTIONS(2837), + [sym_nullptr] = ACTIONS(2837), + [sym_raw_string_literal] = ACTIONS(2839), + }, + [517] = { + [sym_identifier] = ACTIONS(2841), + [aux_sym_preproc_include_token1] = ACTIONS(2841), + [aux_sym_preproc_def_token1] = ACTIONS(2841), + [aux_sym_preproc_if_token1] = ACTIONS(2841), + [aux_sym_preproc_if_token2] = ACTIONS(2841), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2841), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2841), + [aux_sym_preproc_else_token1] = ACTIONS(2841), + [aux_sym_preproc_elif_token1] = ACTIONS(2841), + [sym_preproc_directive] = ACTIONS(2841), + [anon_sym_LPAREN2] = ACTIONS(2843), + [anon_sym_BANG] = ACTIONS(2843), + [anon_sym_TILDE] = ACTIONS(2843), + [anon_sym_DASH] = ACTIONS(2841), + [anon_sym_PLUS] = ACTIONS(2841), + [anon_sym_STAR] = ACTIONS(2843), + [anon_sym_AMP_AMP] = ACTIONS(2843), + [anon_sym_AMP] = ACTIONS(2841), + [anon_sym_SEMI] = ACTIONS(2843), + [anon_sym_typedef] = ACTIONS(2841), + [anon_sym_extern] = ACTIONS(2841), + [anon_sym___attribute__] = ACTIONS(2841), + [anon_sym_COLON_COLON] = ACTIONS(2843), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2843), + [anon_sym___declspec] = ACTIONS(2841), + [anon_sym___based] = ACTIONS(2841), + [anon_sym___cdecl] = ACTIONS(2841), + [anon_sym___clrcall] = ACTIONS(2841), + [anon_sym___stdcall] = ACTIONS(2841), + [anon_sym___fastcall] = ACTIONS(2841), + [anon_sym___thiscall] = ACTIONS(2841), + [anon_sym___vectorcall] = ACTIONS(2841), + [anon_sym_LBRACE] = ACTIONS(2843), + [anon_sym_LBRACK] = ACTIONS(2841), + [anon_sym_static] = ACTIONS(2841), + [anon_sym_register] = ACTIONS(2841), + [anon_sym_inline] = ACTIONS(2841), + [anon_sym_thread_local] = ACTIONS(2841), + [anon_sym_const] = ACTIONS(2841), + [anon_sym_volatile] = ACTIONS(2841), + [anon_sym_restrict] = ACTIONS(2841), + [anon_sym__Atomic] = ACTIONS(2841), + [anon_sym_mutable] = ACTIONS(2841), + [anon_sym_constexpr] = ACTIONS(2841), + [anon_sym_constinit] = ACTIONS(2841), + [anon_sym_consteval] = ACTIONS(2841), + [anon_sym_signed] = ACTIONS(2841), + [anon_sym_unsigned] = ACTIONS(2841), + [anon_sym_long] = ACTIONS(2841), + [anon_sym_short] = ACTIONS(2841), + [sym_primitive_type] = ACTIONS(2841), + [anon_sym_enum] = ACTIONS(2841), + [anon_sym_class] = ACTIONS(2841), + [anon_sym_struct] = ACTIONS(2841), + [anon_sym_union] = ACTIONS(2841), + [anon_sym_if] = ACTIONS(2841), + [anon_sym_switch] = ACTIONS(2841), + [anon_sym_case] = ACTIONS(2841), + [anon_sym_default] = ACTIONS(2841), + [anon_sym_while] = ACTIONS(2841), + [anon_sym_do] = ACTIONS(2841), + [anon_sym_for] = ACTIONS(2841), + [anon_sym_return] = ACTIONS(2841), + [anon_sym_break] = ACTIONS(2841), + [anon_sym_continue] = ACTIONS(2841), + [anon_sym_goto] = ACTIONS(2841), + [anon_sym_not] = ACTIONS(2841), + [anon_sym_compl] = ACTIONS(2841), + [anon_sym_DASH_DASH] = ACTIONS(2843), + [anon_sym_PLUS_PLUS] = ACTIONS(2843), + [anon_sym_sizeof] = ACTIONS(2841), + [sym_number_literal] = ACTIONS(2843), + [anon_sym_L_SQUOTE] = ACTIONS(2843), + [anon_sym_u_SQUOTE] = ACTIONS(2843), + [anon_sym_U_SQUOTE] = ACTIONS(2843), + [anon_sym_u8_SQUOTE] = ACTIONS(2843), + [anon_sym_SQUOTE] = ACTIONS(2843), + [anon_sym_L_DQUOTE] = ACTIONS(2843), + [anon_sym_u_DQUOTE] = ACTIONS(2843), + [anon_sym_U_DQUOTE] = ACTIONS(2843), + [anon_sym_u8_DQUOTE] = ACTIONS(2843), + [anon_sym_DQUOTE] = ACTIONS(2843), + [sym_true] = ACTIONS(2841), + [sym_false] = ACTIONS(2841), + [sym_null] = ACTIONS(2841), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2841), + [anon_sym_decltype] = ACTIONS(2841), + [anon_sym_virtual] = ACTIONS(2841), + [anon_sym_explicit] = ACTIONS(2841), + [anon_sym_typename] = ACTIONS(2841), + [anon_sym_template] = ACTIONS(2841), + [anon_sym_operator] = ACTIONS(2841), + [anon_sym_try] = ACTIONS(2841), + [anon_sym_delete] = ACTIONS(2841), + [anon_sym_throw] = ACTIONS(2841), + [anon_sym_namespace] = ACTIONS(2841), + [anon_sym_using] = ACTIONS(2841), + [anon_sym_static_assert] = ACTIONS(2841), + [anon_sym_concept] = ACTIONS(2841), + [anon_sym_co_return] = ACTIONS(2841), + [anon_sym_co_yield] = ACTIONS(2841), + [anon_sym_co_await] = ACTIONS(2841), + [anon_sym_new] = ACTIONS(2841), + [anon_sym_requires] = ACTIONS(2841), + [sym_this] = ACTIONS(2841), + [sym_nullptr] = ACTIONS(2841), + [sym_raw_string_literal] = ACTIONS(2843), + }, + [518] = { + [sym_identifier] = ACTIONS(2845), + [aux_sym_preproc_include_token1] = ACTIONS(2845), + [aux_sym_preproc_def_token1] = ACTIONS(2845), + [aux_sym_preproc_if_token1] = ACTIONS(2845), + [aux_sym_preproc_if_token2] = ACTIONS(2845), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2845), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2845), + [aux_sym_preproc_else_token1] = ACTIONS(2845), + [aux_sym_preproc_elif_token1] = ACTIONS(2845), + [sym_preproc_directive] = ACTIONS(2845), + [anon_sym_LPAREN2] = ACTIONS(2847), + [anon_sym_BANG] = ACTIONS(2847), + [anon_sym_TILDE] = ACTIONS(2847), + [anon_sym_DASH] = ACTIONS(2845), + [anon_sym_PLUS] = ACTIONS(2845), + [anon_sym_STAR] = ACTIONS(2847), + [anon_sym_AMP_AMP] = ACTIONS(2847), + [anon_sym_AMP] = ACTIONS(2845), + [anon_sym_SEMI] = ACTIONS(2847), + [anon_sym_typedef] = ACTIONS(2845), + [anon_sym_extern] = ACTIONS(2845), + [anon_sym___attribute__] = ACTIONS(2845), + [anon_sym_COLON_COLON] = ACTIONS(2847), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2847), + [anon_sym___declspec] = ACTIONS(2845), + [anon_sym___based] = ACTIONS(2845), + [anon_sym___cdecl] = ACTIONS(2845), + [anon_sym___clrcall] = ACTIONS(2845), + [anon_sym___stdcall] = ACTIONS(2845), + [anon_sym___fastcall] = ACTIONS(2845), + [anon_sym___thiscall] = ACTIONS(2845), + [anon_sym___vectorcall] = ACTIONS(2845), + [anon_sym_LBRACE] = ACTIONS(2847), + [anon_sym_LBRACK] = ACTIONS(2845), + [anon_sym_static] = ACTIONS(2845), + [anon_sym_register] = ACTIONS(2845), + [anon_sym_inline] = ACTIONS(2845), + [anon_sym_thread_local] = ACTIONS(2845), + [anon_sym_const] = ACTIONS(2845), + [anon_sym_volatile] = ACTIONS(2845), + [anon_sym_restrict] = ACTIONS(2845), + [anon_sym__Atomic] = ACTIONS(2845), + [anon_sym_mutable] = ACTIONS(2845), + [anon_sym_constexpr] = ACTIONS(2845), + [anon_sym_constinit] = ACTIONS(2845), + [anon_sym_consteval] = ACTIONS(2845), + [anon_sym_signed] = ACTIONS(2845), + [anon_sym_unsigned] = ACTIONS(2845), + [anon_sym_long] = ACTIONS(2845), + [anon_sym_short] = ACTIONS(2845), + [sym_primitive_type] = ACTIONS(2845), + [anon_sym_enum] = ACTIONS(2845), + [anon_sym_class] = ACTIONS(2845), + [anon_sym_struct] = ACTIONS(2845), + [anon_sym_union] = ACTIONS(2845), + [anon_sym_if] = ACTIONS(2845), + [anon_sym_switch] = ACTIONS(2845), + [anon_sym_case] = ACTIONS(2845), + [anon_sym_default] = ACTIONS(2845), + [anon_sym_while] = ACTIONS(2845), + [anon_sym_do] = ACTIONS(2845), + [anon_sym_for] = ACTIONS(2845), + [anon_sym_return] = ACTIONS(2845), + [anon_sym_break] = ACTIONS(2845), + [anon_sym_continue] = ACTIONS(2845), + [anon_sym_goto] = ACTIONS(2845), + [anon_sym_not] = ACTIONS(2845), + [anon_sym_compl] = ACTIONS(2845), + [anon_sym_DASH_DASH] = ACTIONS(2847), + [anon_sym_PLUS_PLUS] = ACTIONS(2847), + [anon_sym_sizeof] = ACTIONS(2845), + [sym_number_literal] = ACTIONS(2847), + [anon_sym_L_SQUOTE] = ACTIONS(2847), + [anon_sym_u_SQUOTE] = ACTIONS(2847), + [anon_sym_U_SQUOTE] = ACTIONS(2847), + [anon_sym_u8_SQUOTE] = ACTIONS(2847), + [anon_sym_SQUOTE] = ACTIONS(2847), + [anon_sym_L_DQUOTE] = ACTIONS(2847), + [anon_sym_u_DQUOTE] = ACTIONS(2847), + [anon_sym_U_DQUOTE] = ACTIONS(2847), + [anon_sym_u8_DQUOTE] = ACTIONS(2847), + [anon_sym_DQUOTE] = ACTIONS(2847), + [sym_true] = ACTIONS(2845), + [sym_false] = ACTIONS(2845), + [sym_null] = ACTIONS(2845), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2845), + [anon_sym_decltype] = ACTIONS(2845), + [anon_sym_virtual] = ACTIONS(2845), + [anon_sym_explicit] = ACTIONS(2845), + [anon_sym_typename] = ACTIONS(2845), + [anon_sym_template] = ACTIONS(2845), + [anon_sym_operator] = ACTIONS(2845), + [anon_sym_try] = ACTIONS(2845), + [anon_sym_delete] = ACTIONS(2845), + [anon_sym_throw] = ACTIONS(2845), + [anon_sym_namespace] = ACTIONS(2845), + [anon_sym_using] = ACTIONS(2845), + [anon_sym_static_assert] = ACTIONS(2845), + [anon_sym_concept] = ACTIONS(2845), + [anon_sym_co_return] = ACTIONS(2845), + [anon_sym_co_yield] = ACTIONS(2845), + [anon_sym_co_await] = ACTIONS(2845), + [anon_sym_new] = ACTIONS(2845), + [anon_sym_requires] = ACTIONS(2845), + [sym_this] = ACTIONS(2845), + [sym_nullptr] = ACTIONS(2845), + [sym_raw_string_literal] = ACTIONS(2847), + }, + [519] = { + [sym_identifier] = ACTIONS(2849), + [aux_sym_preproc_include_token1] = ACTIONS(2849), + [aux_sym_preproc_def_token1] = ACTIONS(2849), + [aux_sym_preproc_if_token1] = ACTIONS(2849), + [aux_sym_preproc_if_token2] = ACTIONS(2849), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2849), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2849), + [aux_sym_preproc_else_token1] = ACTIONS(2849), + [aux_sym_preproc_elif_token1] = ACTIONS(2849), + [sym_preproc_directive] = ACTIONS(2849), + [anon_sym_LPAREN2] = ACTIONS(2851), + [anon_sym_BANG] = ACTIONS(2851), + [anon_sym_TILDE] = ACTIONS(2851), + [anon_sym_DASH] = ACTIONS(2849), + [anon_sym_PLUS] = ACTIONS(2849), + [anon_sym_STAR] = ACTIONS(2851), + [anon_sym_AMP_AMP] = ACTIONS(2851), + [anon_sym_AMP] = ACTIONS(2849), + [anon_sym_SEMI] = ACTIONS(2851), + [anon_sym_typedef] = ACTIONS(2849), + [anon_sym_extern] = ACTIONS(2849), + [anon_sym___attribute__] = ACTIONS(2849), + [anon_sym_COLON_COLON] = ACTIONS(2851), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2851), + [anon_sym___declspec] = ACTIONS(2849), + [anon_sym___based] = ACTIONS(2849), + [anon_sym___cdecl] = ACTIONS(2849), + [anon_sym___clrcall] = ACTIONS(2849), + [anon_sym___stdcall] = ACTIONS(2849), + [anon_sym___fastcall] = ACTIONS(2849), + [anon_sym___thiscall] = ACTIONS(2849), + [anon_sym___vectorcall] = ACTIONS(2849), + [anon_sym_LBRACE] = ACTIONS(2851), + [anon_sym_LBRACK] = ACTIONS(2849), + [anon_sym_static] = ACTIONS(2849), + [anon_sym_register] = ACTIONS(2849), + [anon_sym_inline] = ACTIONS(2849), + [anon_sym_thread_local] = ACTIONS(2849), + [anon_sym_const] = ACTIONS(2849), + [anon_sym_volatile] = ACTIONS(2849), + [anon_sym_restrict] = ACTIONS(2849), + [anon_sym__Atomic] = ACTIONS(2849), + [anon_sym_mutable] = ACTIONS(2849), + [anon_sym_constexpr] = ACTIONS(2849), + [anon_sym_constinit] = ACTIONS(2849), + [anon_sym_consteval] = ACTIONS(2849), + [anon_sym_signed] = ACTIONS(2849), + [anon_sym_unsigned] = ACTIONS(2849), + [anon_sym_long] = ACTIONS(2849), + [anon_sym_short] = ACTIONS(2849), + [sym_primitive_type] = ACTIONS(2849), + [anon_sym_enum] = ACTIONS(2849), + [anon_sym_class] = ACTIONS(2849), + [anon_sym_struct] = ACTIONS(2849), + [anon_sym_union] = ACTIONS(2849), + [anon_sym_if] = ACTIONS(2849), + [anon_sym_switch] = ACTIONS(2849), + [anon_sym_case] = ACTIONS(2849), + [anon_sym_default] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2849), + [anon_sym_do] = ACTIONS(2849), + [anon_sym_for] = ACTIONS(2849), + [anon_sym_return] = ACTIONS(2849), + [anon_sym_break] = ACTIONS(2849), + [anon_sym_continue] = ACTIONS(2849), + [anon_sym_goto] = ACTIONS(2849), + [anon_sym_not] = ACTIONS(2849), + [anon_sym_compl] = ACTIONS(2849), + [anon_sym_DASH_DASH] = ACTIONS(2851), + [anon_sym_PLUS_PLUS] = ACTIONS(2851), + [anon_sym_sizeof] = ACTIONS(2849), + [sym_number_literal] = ACTIONS(2851), + [anon_sym_L_SQUOTE] = ACTIONS(2851), + [anon_sym_u_SQUOTE] = ACTIONS(2851), + [anon_sym_U_SQUOTE] = ACTIONS(2851), + [anon_sym_u8_SQUOTE] = ACTIONS(2851), + [anon_sym_SQUOTE] = ACTIONS(2851), + [anon_sym_L_DQUOTE] = ACTIONS(2851), + [anon_sym_u_DQUOTE] = ACTIONS(2851), + [anon_sym_U_DQUOTE] = ACTIONS(2851), + [anon_sym_u8_DQUOTE] = ACTIONS(2851), + [anon_sym_DQUOTE] = ACTIONS(2851), + [sym_true] = ACTIONS(2849), + [sym_false] = ACTIONS(2849), + [sym_null] = ACTIONS(2849), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2849), + [anon_sym_decltype] = ACTIONS(2849), + [anon_sym_virtual] = ACTIONS(2849), + [anon_sym_explicit] = ACTIONS(2849), + [anon_sym_typename] = ACTIONS(2849), + [anon_sym_template] = ACTIONS(2849), + [anon_sym_operator] = ACTIONS(2849), + [anon_sym_try] = ACTIONS(2849), + [anon_sym_delete] = ACTIONS(2849), + [anon_sym_throw] = ACTIONS(2849), + [anon_sym_namespace] = ACTIONS(2849), + [anon_sym_using] = ACTIONS(2849), + [anon_sym_static_assert] = ACTIONS(2849), + [anon_sym_concept] = ACTIONS(2849), + [anon_sym_co_return] = ACTIONS(2849), + [anon_sym_co_yield] = ACTIONS(2849), + [anon_sym_co_await] = ACTIONS(2849), + [anon_sym_new] = ACTIONS(2849), + [anon_sym_requires] = ACTIONS(2849), + [sym_this] = ACTIONS(2849), + [sym_nullptr] = ACTIONS(2849), + [sym_raw_string_literal] = ACTIONS(2851), + }, + [520] = { + [sym_identifier] = ACTIONS(2853), + [aux_sym_preproc_include_token1] = ACTIONS(2853), + [aux_sym_preproc_def_token1] = ACTIONS(2853), + [aux_sym_preproc_if_token1] = ACTIONS(2853), + [aux_sym_preproc_if_token2] = ACTIONS(2853), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2853), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2853), + [aux_sym_preproc_else_token1] = ACTIONS(2853), + [aux_sym_preproc_elif_token1] = ACTIONS(2853), + [sym_preproc_directive] = ACTIONS(2853), + [anon_sym_LPAREN2] = ACTIONS(2855), + [anon_sym_BANG] = ACTIONS(2855), + [anon_sym_TILDE] = ACTIONS(2855), + [anon_sym_DASH] = ACTIONS(2853), + [anon_sym_PLUS] = ACTIONS(2853), + [anon_sym_STAR] = ACTIONS(2855), + [anon_sym_AMP_AMP] = ACTIONS(2855), + [anon_sym_AMP] = ACTIONS(2853), + [anon_sym_SEMI] = ACTIONS(2855), + [anon_sym_typedef] = ACTIONS(2853), + [anon_sym_extern] = ACTIONS(2853), + [anon_sym___attribute__] = ACTIONS(2853), + [anon_sym_COLON_COLON] = ACTIONS(2855), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2855), + [anon_sym___declspec] = ACTIONS(2853), + [anon_sym___based] = ACTIONS(2853), + [anon_sym___cdecl] = ACTIONS(2853), + [anon_sym___clrcall] = ACTIONS(2853), + [anon_sym___stdcall] = ACTIONS(2853), + [anon_sym___fastcall] = ACTIONS(2853), + [anon_sym___thiscall] = ACTIONS(2853), + [anon_sym___vectorcall] = ACTIONS(2853), + [anon_sym_LBRACE] = ACTIONS(2855), + [anon_sym_LBRACK] = ACTIONS(2853), + [anon_sym_static] = ACTIONS(2853), + [anon_sym_register] = ACTIONS(2853), + [anon_sym_inline] = ACTIONS(2853), + [anon_sym_thread_local] = ACTIONS(2853), + [anon_sym_const] = ACTIONS(2853), + [anon_sym_volatile] = ACTIONS(2853), + [anon_sym_restrict] = ACTIONS(2853), + [anon_sym__Atomic] = ACTIONS(2853), + [anon_sym_mutable] = ACTIONS(2853), + [anon_sym_constexpr] = ACTIONS(2853), + [anon_sym_constinit] = ACTIONS(2853), + [anon_sym_consteval] = ACTIONS(2853), + [anon_sym_signed] = ACTIONS(2853), + [anon_sym_unsigned] = ACTIONS(2853), + [anon_sym_long] = ACTIONS(2853), + [anon_sym_short] = ACTIONS(2853), + [sym_primitive_type] = ACTIONS(2853), + [anon_sym_enum] = ACTIONS(2853), + [anon_sym_class] = ACTIONS(2853), + [anon_sym_struct] = ACTIONS(2853), + [anon_sym_union] = ACTIONS(2853), + [anon_sym_if] = ACTIONS(2853), + [anon_sym_switch] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2853), + [anon_sym_default] = ACTIONS(2853), + [anon_sym_while] = ACTIONS(2853), + [anon_sym_do] = ACTIONS(2853), + [anon_sym_for] = ACTIONS(2853), + [anon_sym_return] = ACTIONS(2853), + [anon_sym_break] = ACTIONS(2853), + [anon_sym_continue] = ACTIONS(2853), + [anon_sym_goto] = ACTIONS(2853), + [anon_sym_not] = ACTIONS(2853), + [anon_sym_compl] = ACTIONS(2853), + [anon_sym_DASH_DASH] = ACTIONS(2855), + [anon_sym_PLUS_PLUS] = ACTIONS(2855), + [anon_sym_sizeof] = ACTIONS(2853), + [sym_number_literal] = ACTIONS(2855), + [anon_sym_L_SQUOTE] = ACTIONS(2855), + [anon_sym_u_SQUOTE] = ACTIONS(2855), + [anon_sym_U_SQUOTE] = ACTIONS(2855), + [anon_sym_u8_SQUOTE] = ACTIONS(2855), + [anon_sym_SQUOTE] = ACTIONS(2855), + [anon_sym_L_DQUOTE] = ACTIONS(2855), + [anon_sym_u_DQUOTE] = ACTIONS(2855), + [anon_sym_U_DQUOTE] = ACTIONS(2855), + [anon_sym_u8_DQUOTE] = ACTIONS(2855), + [anon_sym_DQUOTE] = ACTIONS(2855), + [sym_true] = ACTIONS(2853), + [sym_false] = ACTIONS(2853), + [sym_null] = ACTIONS(2853), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2853), + [anon_sym_decltype] = ACTIONS(2853), + [anon_sym_virtual] = ACTIONS(2853), + [anon_sym_explicit] = ACTIONS(2853), + [anon_sym_typename] = ACTIONS(2853), + [anon_sym_template] = ACTIONS(2853), + [anon_sym_operator] = ACTIONS(2853), + [anon_sym_try] = ACTIONS(2853), + [anon_sym_delete] = ACTIONS(2853), + [anon_sym_throw] = ACTIONS(2853), + [anon_sym_namespace] = ACTIONS(2853), + [anon_sym_using] = ACTIONS(2853), + [anon_sym_static_assert] = ACTIONS(2853), + [anon_sym_concept] = ACTIONS(2853), + [anon_sym_co_return] = ACTIONS(2853), + [anon_sym_co_yield] = ACTIONS(2853), + [anon_sym_co_await] = ACTIONS(2853), + [anon_sym_new] = ACTIONS(2853), + [anon_sym_requires] = ACTIONS(2853), + [sym_this] = ACTIONS(2853), + [sym_nullptr] = ACTIONS(2853), + [sym_raw_string_literal] = ACTIONS(2855), + }, + [521] = { + [sym_identifier] = ACTIONS(2857), + [aux_sym_preproc_include_token1] = ACTIONS(2857), + [aux_sym_preproc_def_token1] = ACTIONS(2857), + [aux_sym_preproc_if_token1] = ACTIONS(2857), + [aux_sym_preproc_if_token2] = ACTIONS(2857), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2857), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2857), + [aux_sym_preproc_else_token1] = ACTIONS(2857), + [aux_sym_preproc_elif_token1] = ACTIONS(2857), + [sym_preproc_directive] = ACTIONS(2857), + [anon_sym_LPAREN2] = ACTIONS(2859), + [anon_sym_BANG] = ACTIONS(2859), + [anon_sym_TILDE] = ACTIONS(2859), + [anon_sym_DASH] = ACTIONS(2857), + [anon_sym_PLUS] = ACTIONS(2857), + [anon_sym_STAR] = ACTIONS(2859), + [anon_sym_AMP_AMP] = ACTIONS(2859), + [anon_sym_AMP] = ACTIONS(2857), + [anon_sym_SEMI] = ACTIONS(2859), + [anon_sym_typedef] = ACTIONS(2857), + [anon_sym_extern] = ACTIONS(2857), + [anon_sym___attribute__] = ACTIONS(2857), + [anon_sym_COLON_COLON] = ACTIONS(2859), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2859), + [anon_sym___declspec] = ACTIONS(2857), + [anon_sym___based] = ACTIONS(2857), + [anon_sym___cdecl] = ACTIONS(2857), + [anon_sym___clrcall] = ACTIONS(2857), + [anon_sym___stdcall] = ACTIONS(2857), + [anon_sym___fastcall] = ACTIONS(2857), + [anon_sym___thiscall] = ACTIONS(2857), + [anon_sym___vectorcall] = ACTIONS(2857), + [anon_sym_LBRACE] = ACTIONS(2859), + [anon_sym_LBRACK] = ACTIONS(2857), + [anon_sym_static] = ACTIONS(2857), + [anon_sym_register] = ACTIONS(2857), + [anon_sym_inline] = ACTIONS(2857), + [anon_sym_thread_local] = ACTIONS(2857), + [anon_sym_const] = ACTIONS(2857), + [anon_sym_volatile] = ACTIONS(2857), + [anon_sym_restrict] = ACTIONS(2857), + [anon_sym__Atomic] = ACTIONS(2857), + [anon_sym_mutable] = ACTIONS(2857), + [anon_sym_constexpr] = ACTIONS(2857), + [anon_sym_constinit] = ACTIONS(2857), + [anon_sym_consteval] = ACTIONS(2857), + [anon_sym_signed] = ACTIONS(2857), + [anon_sym_unsigned] = ACTIONS(2857), + [anon_sym_long] = ACTIONS(2857), + [anon_sym_short] = ACTIONS(2857), + [sym_primitive_type] = ACTIONS(2857), + [anon_sym_enum] = ACTIONS(2857), + [anon_sym_class] = ACTIONS(2857), + [anon_sym_struct] = ACTIONS(2857), + [anon_sym_union] = ACTIONS(2857), + [anon_sym_if] = ACTIONS(2857), + [anon_sym_switch] = ACTIONS(2857), + [anon_sym_case] = ACTIONS(2857), + [anon_sym_default] = ACTIONS(2857), + [anon_sym_while] = ACTIONS(2857), + [anon_sym_do] = ACTIONS(2857), + [anon_sym_for] = ACTIONS(2857), + [anon_sym_return] = ACTIONS(2857), + [anon_sym_break] = ACTIONS(2857), + [anon_sym_continue] = ACTIONS(2857), + [anon_sym_goto] = ACTIONS(2857), + [anon_sym_not] = ACTIONS(2857), + [anon_sym_compl] = ACTIONS(2857), + [anon_sym_DASH_DASH] = ACTIONS(2859), + [anon_sym_PLUS_PLUS] = ACTIONS(2859), + [anon_sym_sizeof] = ACTIONS(2857), + [sym_number_literal] = ACTIONS(2859), + [anon_sym_L_SQUOTE] = ACTIONS(2859), + [anon_sym_u_SQUOTE] = ACTIONS(2859), + [anon_sym_U_SQUOTE] = ACTIONS(2859), + [anon_sym_u8_SQUOTE] = ACTIONS(2859), + [anon_sym_SQUOTE] = ACTIONS(2859), + [anon_sym_L_DQUOTE] = ACTIONS(2859), + [anon_sym_u_DQUOTE] = ACTIONS(2859), + [anon_sym_U_DQUOTE] = ACTIONS(2859), + [anon_sym_u8_DQUOTE] = ACTIONS(2859), + [anon_sym_DQUOTE] = ACTIONS(2859), + [sym_true] = ACTIONS(2857), + [sym_false] = ACTIONS(2857), + [sym_null] = ACTIONS(2857), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2857), + [anon_sym_decltype] = ACTIONS(2857), + [anon_sym_virtual] = ACTIONS(2857), + [anon_sym_explicit] = ACTIONS(2857), + [anon_sym_typename] = ACTIONS(2857), + [anon_sym_template] = ACTIONS(2857), + [anon_sym_operator] = ACTIONS(2857), + [anon_sym_try] = ACTIONS(2857), + [anon_sym_delete] = ACTIONS(2857), + [anon_sym_throw] = ACTIONS(2857), + [anon_sym_namespace] = ACTIONS(2857), + [anon_sym_using] = ACTIONS(2857), + [anon_sym_static_assert] = ACTIONS(2857), + [anon_sym_concept] = ACTIONS(2857), + [anon_sym_co_return] = ACTIONS(2857), + [anon_sym_co_yield] = ACTIONS(2857), + [anon_sym_co_await] = ACTIONS(2857), + [anon_sym_new] = ACTIONS(2857), + [anon_sym_requires] = ACTIONS(2857), + [sym_this] = ACTIONS(2857), + [sym_nullptr] = ACTIONS(2857), + [sym_raw_string_literal] = ACTIONS(2859), + }, + [522] = { + [sym_identifier] = ACTIONS(2861), + [aux_sym_preproc_include_token1] = ACTIONS(2861), + [aux_sym_preproc_def_token1] = ACTIONS(2861), + [aux_sym_preproc_if_token1] = ACTIONS(2861), + [aux_sym_preproc_if_token2] = ACTIONS(2861), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2861), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2861), + [aux_sym_preproc_else_token1] = ACTIONS(2861), + [aux_sym_preproc_elif_token1] = ACTIONS(2861), + [sym_preproc_directive] = ACTIONS(2861), + [anon_sym_LPAREN2] = ACTIONS(2863), + [anon_sym_BANG] = ACTIONS(2863), + [anon_sym_TILDE] = ACTIONS(2863), + [anon_sym_DASH] = ACTIONS(2861), + [anon_sym_PLUS] = ACTIONS(2861), + [anon_sym_STAR] = ACTIONS(2863), + [anon_sym_AMP_AMP] = ACTIONS(2863), + [anon_sym_AMP] = ACTIONS(2861), + [anon_sym_SEMI] = ACTIONS(2863), + [anon_sym_typedef] = ACTIONS(2861), + [anon_sym_extern] = ACTIONS(2861), + [anon_sym___attribute__] = ACTIONS(2861), + [anon_sym_COLON_COLON] = ACTIONS(2863), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2863), + [anon_sym___declspec] = ACTIONS(2861), + [anon_sym___based] = ACTIONS(2861), + [anon_sym___cdecl] = ACTIONS(2861), + [anon_sym___clrcall] = ACTIONS(2861), + [anon_sym___stdcall] = ACTIONS(2861), + [anon_sym___fastcall] = ACTIONS(2861), + [anon_sym___thiscall] = ACTIONS(2861), + [anon_sym___vectorcall] = ACTIONS(2861), + [anon_sym_LBRACE] = ACTIONS(2863), + [anon_sym_LBRACK] = ACTIONS(2861), + [anon_sym_static] = ACTIONS(2861), + [anon_sym_register] = ACTIONS(2861), + [anon_sym_inline] = ACTIONS(2861), + [anon_sym_thread_local] = ACTIONS(2861), + [anon_sym_const] = ACTIONS(2861), + [anon_sym_volatile] = ACTIONS(2861), + [anon_sym_restrict] = ACTIONS(2861), + [anon_sym__Atomic] = ACTIONS(2861), + [anon_sym_mutable] = ACTIONS(2861), + [anon_sym_constexpr] = ACTIONS(2861), + [anon_sym_constinit] = ACTIONS(2861), + [anon_sym_consteval] = ACTIONS(2861), + [anon_sym_signed] = ACTIONS(2861), + [anon_sym_unsigned] = ACTIONS(2861), + [anon_sym_long] = ACTIONS(2861), + [anon_sym_short] = ACTIONS(2861), + [sym_primitive_type] = ACTIONS(2861), + [anon_sym_enum] = ACTIONS(2861), + [anon_sym_class] = ACTIONS(2861), + [anon_sym_struct] = ACTIONS(2861), + [anon_sym_union] = ACTIONS(2861), + [anon_sym_if] = ACTIONS(2861), + [anon_sym_switch] = ACTIONS(2861), + [anon_sym_case] = ACTIONS(2861), + [anon_sym_default] = ACTIONS(2861), + [anon_sym_while] = ACTIONS(2861), + [anon_sym_do] = ACTIONS(2861), + [anon_sym_for] = ACTIONS(2861), + [anon_sym_return] = ACTIONS(2861), + [anon_sym_break] = ACTIONS(2861), + [anon_sym_continue] = ACTIONS(2861), + [anon_sym_goto] = ACTIONS(2861), + [anon_sym_not] = ACTIONS(2861), + [anon_sym_compl] = ACTIONS(2861), + [anon_sym_DASH_DASH] = ACTIONS(2863), + [anon_sym_PLUS_PLUS] = ACTIONS(2863), + [anon_sym_sizeof] = ACTIONS(2861), + [sym_number_literal] = ACTIONS(2863), + [anon_sym_L_SQUOTE] = ACTIONS(2863), + [anon_sym_u_SQUOTE] = ACTIONS(2863), + [anon_sym_U_SQUOTE] = ACTIONS(2863), + [anon_sym_u8_SQUOTE] = ACTIONS(2863), + [anon_sym_SQUOTE] = ACTIONS(2863), + [anon_sym_L_DQUOTE] = ACTIONS(2863), + [anon_sym_u_DQUOTE] = ACTIONS(2863), + [anon_sym_U_DQUOTE] = ACTIONS(2863), + [anon_sym_u8_DQUOTE] = ACTIONS(2863), + [anon_sym_DQUOTE] = ACTIONS(2863), + [sym_true] = ACTIONS(2861), + [sym_false] = ACTIONS(2861), + [sym_null] = ACTIONS(2861), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2861), + [anon_sym_decltype] = ACTIONS(2861), + [anon_sym_virtual] = ACTIONS(2861), + [anon_sym_explicit] = ACTIONS(2861), + [anon_sym_typename] = ACTIONS(2861), + [anon_sym_template] = ACTIONS(2861), + [anon_sym_operator] = ACTIONS(2861), + [anon_sym_try] = ACTIONS(2861), + [anon_sym_delete] = ACTIONS(2861), + [anon_sym_throw] = ACTIONS(2861), + [anon_sym_namespace] = ACTIONS(2861), + [anon_sym_using] = ACTIONS(2861), + [anon_sym_static_assert] = ACTIONS(2861), + [anon_sym_concept] = ACTIONS(2861), + [anon_sym_co_return] = ACTIONS(2861), + [anon_sym_co_yield] = ACTIONS(2861), + [anon_sym_co_await] = ACTIONS(2861), + [anon_sym_new] = ACTIONS(2861), + [anon_sym_requires] = ACTIONS(2861), + [sym_this] = ACTIONS(2861), + [sym_nullptr] = ACTIONS(2861), + [sym_raw_string_literal] = ACTIONS(2863), + }, + [523] = { + [sym_identifier] = ACTIONS(2861), + [aux_sym_preproc_include_token1] = ACTIONS(2861), + [aux_sym_preproc_def_token1] = ACTIONS(2861), + [aux_sym_preproc_if_token1] = ACTIONS(2861), + [aux_sym_preproc_if_token2] = ACTIONS(2861), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2861), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2861), + [aux_sym_preproc_else_token1] = ACTIONS(2861), + [aux_sym_preproc_elif_token1] = ACTIONS(2861), + [sym_preproc_directive] = ACTIONS(2861), + [anon_sym_LPAREN2] = ACTIONS(2863), + [anon_sym_BANG] = ACTIONS(2863), + [anon_sym_TILDE] = ACTIONS(2863), + [anon_sym_DASH] = ACTIONS(2861), + [anon_sym_PLUS] = ACTIONS(2861), + [anon_sym_STAR] = ACTIONS(2863), + [anon_sym_AMP_AMP] = ACTIONS(2863), + [anon_sym_AMP] = ACTIONS(2861), + [anon_sym_SEMI] = ACTIONS(2863), + [anon_sym_typedef] = ACTIONS(2861), + [anon_sym_extern] = ACTIONS(2861), + [anon_sym___attribute__] = ACTIONS(2861), + [anon_sym_COLON_COLON] = ACTIONS(2863), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2863), + [anon_sym___declspec] = ACTIONS(2861), + [anon_sym___based] = ACTIONS(2861), + [anon_sym___cdecl] = ACTIONS(2861), + [anon_sym___clrcall] = ACTIONS(2861), + [anon_sym___stdcall] = ACTIONS(2861), + [anon_sym___fastcall] = ACTIONS(2861), + [anon_sym___thiscall] = ACTIONS(2861), + [anon_sym___vectorcall] = ACTIONS(2861), + [anon_sym_LBRACE] = ACTIONS(2863), + [anon_sym_LBRACK] = ACTIONS(2861), + [anon_sym_static] = ACTIONS(2861), + [anon_sym_register] = ACTIONS(2861), + [anon_sym_inline] = ACTIONS(2861), + [anon_sym_thread_local] = ACTIONS(2861), + [anon_sym_const] = ACTIONS(2861), + [anon_sym_volatile] = ACTIONS(2861), + [anon_sym_restrict] = ACTIONS(2861), + [anon_sym__Atomic] = ACTIONS(2861), + [anon_sym_mutable] = ACTIONS(2861), + [anon_sym_constexpr] = ACTIONS(2861), + [anon_sym_constinit] = ACTIONS(2861), + [anon_sym_consteval] = ACTIONS(2861), + [anon_sym_signed] = ACTIONS(2861), + [anon_sym_unsigned] = ACTIONS(2861), + [anon_sym_long] = ACTIONS(2861), + [anon_sym_short] = ACTIONS(2861), + [sym_primitive_type] = ACTIONS(2861), + [anon_sym_enum] = ACTIONS(2861), + [anon_sym_class] = ACTIONS(2861), + [anon_sym_struct] = ACTIONS(2861), + [anon_sym_union] = ACTIONS(2861), + [anon_sym_if] = ACTIONS(2861), + [anon_sym_switch] = ACTIONS(2861), + [anon_sym_case] = ACTIONS(2861), + [anon_sym_default] = ACTIONS(2861), + [anon_sym_while] = ACTIONS(2861), + [anon_sym_do] = ACTIONS(2861), + [anon_sym_for] = ACTIONS(2861), + [anon_sym_return] = ACTIONS(2861), + [anon_sym_break] = ACTIONS(2861), + [anon_sym_continue] = ACTIONS(2861), + [anon_sym_goto] = ACTIONS(2861), + [anon_sym_not] = ACTIONS(2861), + [anon_sym_compl] = ACTIONS(2861), + [anon_sym_DASH_DASH] = ACTIONS(2863), + [anon_sym_PLUS_PLUS] = ACTIONS(2863), + [anon_sym_sizeof] = ACTIONS(2861), + [sym_number_literal] = ACTIONS(2863), + [anon_sym_L_SQUOTE] = ACTIONS(2863), + [anon_sym_u_SQUOTE] = ACTIONS(2863), + [anon_sym_U_SQUOTE] = ACTIONS(2863), + [anon_sym_u8_SQUOTE] = ACTIONS(2863), + [anon_sym_SQUOTE] = ACTIONS(2863), + [anon_sym_L_DQUOTE] = ACTIONS(2863), + [anon_sym_u_DQUOTE] = ACTIONS(2863), + [anon_sym_U_DQUOTE] = ACTIONS(2863), + [anon_sym_u8_DQUOTE] = ACTIONS(2863), + [anon_sym_DQUOTE] = ACTIONS(2863), + [sym_true] = ACTIONS(2861), + [sym_false] = ACTIONS(2861), + [sym_null] = ACTIONS(2861), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2861), + [anon_sym_decltype] = ACTIONS(2861), + [anon_sym_virtual] = ACTIONS(2861), + [anon_sym_explicit] = ACTIONS(2861), + [anon_sym_typename] = ACTIONS(2861), + [anon_sym_template] = ACTIONS(2861), + [anon_sym_operator] = ACTIONS(2861), + [anon_sym_try] = ACTIONS(2861), + [anon_sym_delete] = ACTIONS(2861), + [anon_sym_throw] = ACTIONS(2861), + [anon_sym_namespace] = ACTIONS(2861), + [anon_sym_using] = ACTIONS(2861), + [anon_sym_static_assert] = ACTIONS(2861), + [anon_sym_concept] = ACTIONS(2861), + [anon_sym_co_return] = ACTIONS(2861), + [anon_sym_co_yield] = ACTIONS(2861), + [anon_sym_co_await] = ACTIONS(2861), + [anon_sym_new] = ACTIONS(2861), + [anon_sym_requires] = ACTIONS(2861), + [sym_this] = ACTIONS(2861), + [sym_nullptr] = ACTIONS(2861), + [sym_raw_string_literal] = ACTIONS(2863), + }, + [524] = { + [sym_identifier] = ACTIONS(2865), + [aux_sym_preproc_include_token1] = ACTIONS(2865), + [aux_sym_preproc_def_token1] = ACTIONS(2865), + [aux_sym_preproc_if_token1] = ACTIONS(2865), + [aux_sym_preproc_if_token2] = ACTIONS(2865), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2865), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2865), + [aux_sym_preproc_else_token1] = ACTIONS(2865), + [aux_sym_preproc_elif_token1] = ACTIONS(2865), + [sym_preproc_directive] = ACTIONS(2865), + [anon_sym_LPAREN2] = ACTIONS(2867), + [anon_sym_BANG] = ACTIONS(2867), + [anon_sym_TILDE] = ACTIONS(2867), + [anon_sym_DASH] = ACTIONS(2865), + [anon_sym_PLUS] = ACTIONS(2865), + [anon_sym_STAR] = ACTIONS(2867), + [anon_sym_AMP_AMP] = ACTIONS(2867), + [anon_sym_AMP] = ACTIONS(2865), + [anon_sym_SEMI] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2865), + [anon_sym_extern] = ACTIONS(2865), + [anon_sym___attribute__] = ACTIONS(2865), + [anon_sym_COLON_COLON] = ACTIONS(2867), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2867), + [anon_sym___declspec] = ACTIONS(2865), + [anon_sym___based] = ACTIONS(2865), + [anon_sym___cdecl] = ACTIONS(2865), + [anon_sym___clrcall] = ACTIONS(2865), + [anon_sym___stdcall] = ACTIONS(2865), + [anon_sym___fastcall] = ACTIONS(2865), + [anon_sym___thiscall] = ACTIONS(2865), + [anon_sym___vectorcall] = ACTIONS(2865), + [anon_sym_LBRACE] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2865), + [anon_sym_static] = ACTIONS(2865), + [anon_sym_register] = ACTIONS(2865), + [anon_sym_inline] = ACTIONS(2865), + [anon_sym_thread_local] = ACTIONS(2865), + [anon_sym_const] = ACTIONS(2865), + [anon_sym_volatile] = ACTIONS(2865), + [anon_sym_restrict] = ACTIONS(2865), + [anon_sym__Atomic] = ACTIONS(2865), + [anon_sym_mutable] = ACTIONS(2865), + [anon_sym_constexpr] = ACTIONS(2865), + [anon_sym_constinit] = ACTIONS(2865), + [anon_sym_consteval] = ACTIONS(2865), + [anon_sym_signed] = ACTIONS(2865), + [anon_sym_unsigned] = ACTIONS(2865), + [anon_sym_long] = ACTIONS(2865), + [anon_sym_short] = ACTIONS(2865), + [sym_primitive_type] = ACTIONS(2865), + [anon_sym_enum] = ACTIONS(2865), + [anon_sym_class] = ACTIONS(2865), + [anon_sym_struct] = ACTIONS(2865), + [anon_sym_union] = ACTIONS(2865), + [anon_sym_if] = ACTIONS(2865), + [anon_sym_switch] = ACTIONS(2865), + [anon_sym_case] = ACTIONS(2865), + [anon_sym_default] = ACTIONS(2865), + [anon_sym_while] = ACTIONS(2865), + [anon_sym_do] = ACTIONS(2865), + [anon_sym_for] = ACTIONS(2865), + [anon_sym_return] = ACTIONS(2865), + [anon_sym_break] = ACTIONS(2865), + [anon_sym_continue] = ACTIONS(2865), + [anon_sym_goto] = ACTIONS(2865), + [anon_sym_not] = ACTIONS(2865), + [anon_sym_compl] = ACTIONS(2865), + [anon_sym_DASH_DASH] = ACTIONS(2867), + [anon_sym_PLUS_PLUS] = ACTIONS(2867), + [anon_sym_sizeof] = ACTIONS(2865), + [sym_number_literal] = ACTIONS(2867), + [anon_sym_L_SQUOTE] = ACTIONS(2867), + [anon_sym_u_SQUOTE] = ACTIONS(2867), + [anon_sym_U_SQUOTE] = ACTIONS(2867), + [anon_sym_u8_SQUOTE] = ACTIONS(2867), + [anon_sym_SQUOTE] = ACTIONS(2867), + [anon_sym_L_DQUOTE] = ACTIONS(2867), + [anon_sym_u_DQUOTE] = ACTIONS(2867), + [anon_sym_U_DQUOTE] = ACTIONS(2867), + [anon_sym_u8_DQUOTE] = ACTIONS(2867), + [anon_sym_DQUOTE] = ACTIONS(2867), + [sym_true] = ACTIONS(2865), + [sym_false] = ACTIONS(2865), + [sym_null] = ACTIONS(2865), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2865), + [anon_sym_decltype] = ACTIONS(2865), + [anon_sym_virtual] = ACTIONS(2865), + [anon_sym_explicit] = ACTIONS(2865), + [anon_sym_typename] = ACTIONS(2865), + [anon_sym_template] = ACTIONS(2865), + [anon_sym_operator] = ACTIONS(2865), + [anon_sym_try] = ACTIONS(2865), + [anon_sym_delete] = ACTIONS(2865), + [anon_sym_throw] = ACTIONS(2865), + [anon_sym_namespace] = ACTIONS(2865), + [anon_sym_using] = ACTIONS(2865), + [anon_sym_static_assert] = ACTIONS(2865), + [anon_sym_concept] = ACTIONS(2865), + [anon_sym_co_return] = ACTIONS(2865), + [anon_sym_co_yield] = ACTIONS(2865), + [anon_sym_co_await] = ACTIONS(2865), + [anon_sym_new] = ACTIONS(2865), + [anon_sym_requires] = ACTIONS(2865), + [sym_this] = ACTIONS(2865), + [sym_nullptr] = ACTIONS(2865), + [sym_raw_string_literal] = ACTIONS(2867), + }, + [525] = { + [sym_identifier] = ACTIONS(2869), + [aux_sym_preproc_include_token1] = ACTIONS(2869), + [aux_sym_preproc_def_token1] = ACTIONS(2869), + [aux_sym_preproc_if_token1] = ACTIONS(2869), + [aux_sym_preproc_if_token2] = ACTIONS(2869), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2869), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2869), + [aux_sym_preproc_else_token1] = ACTIONS(2869), + [aux_sym_preproc_elif_token1] = ACTIONS(2869), + [sym_preproc_directive] = ACTIONS(2869), + [anon_sym_LPAREN2] = ACTIONS(2871), + [anon_sym_BANG] = ACTIONS(2871), + [anon_sym_TILDE] = ACTIONS(2871), + [anon_sym_DASH] = ACTIONS(2869), + [anon_sym_PLUS] = ACTIONS(2869), + [anon_sym_STAR] = ACTIONS(2871), + [anon_sym_AMP_AMP] = ACTIONS(2871), + [anon_sym_AMP] = ACTIONS(2869), + [anon_sym_SEMI] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2869), + [anon_sym_extern] = ACTIONS(2869), + [anon_sym___attribute__] = ACTIONS(2869), + [anon_sym_COLON_COLON] = ACTIONS(2871), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2871), + [anon_sym___declspec] = ACTIONS(2869), + [anon_sym___based] = ACTIONS(2869), + [anon_sym___cdecl] = ACTIONS(2869), + [anon_sym___clrcall] = ACTIONS(2869), + [anon_sym___stdcall] = ACTIONS(2869), + [anon_sym___fastcall] = ACTIONS(2869), + [anon_sym___thiscall] = ACTIONS(2869), + [anon_sym___vectorcall] = ACTIONS(2869), + [anon_sym_LBRACE] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2869), + [anon_sym_static] = ACTIONS(2869), + [anon_sym_register] = ACTIONS(2869), + [anon_sym_inline] = ACTIONS(2869), + [anon_sym_thread_local] = ACTIONS(2869), + [anon_sym_const] = ACTIONS(2869), + [anon_sym_volatile] = ACTIONS(2869), + [anon_sym_restrict] = ACTIONS(2869), + [anon_sym__Atomic] = ACTIONS(2869), + [anon_sym_mutable] = ACTIONS(2869), + [anon_sym_constexpr] = ACTIONS(2869), + [anon_sym_constinit] = ACTIONS(2869), + [anon_sym_consteval] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2869), + [anon_sym_unsigned] = ACTIONS(2869), + [anon_sym_long] = ACTIONS(2869), + [anon_sym_short] = ACTIONS(2869), + [sym_primitive_type] = ACTIONS(2869), + [anon_sym_enum] = ACTIONS(2869), + [anon_sym_class] = ACTIONS(2869), + [anon_sym_struct] = ACTIONS(2869), + [anon_sym_union] = ACTIONS(2869), + [anon_sym_if] = ACTIONS(2869), + [anon_sym_switch] = ACTIONS(2869), + [anon_sym_case] = ACTIONS(2869), + [anon_sym_default] = ACTIONS(2869), + [anon_sym_while] = ACTIONS(2869), + [anon_sym_do] = ACTIONS(2869), + [anon_sym_for] = ACTIONS(2869), + [anon_sym_return] = ACTIONS(2869), + [anon_sym_break] = ACTIONS(2869), + [anon_sym_continue] = ACTIONS(2869), + [anon_sym_goto] = ACTIONS(2869), + [anon_sym_not] = ACTIONS(2869), + [anon_sym_compl] = ACTIONS(2869), + [anon_sym_DASH_DASH] = ACTIONS(2871), + [anon_sym_PLUS_PLUS] = ACTIONS(2871), + [anon_sym_sizeof] = ACTIONS(2869), + [sym_number_literal] = ACTIONS(2871), + [anon_sym_L_SQUOTE] = ACTIONS(2871), + [anon_sym_u_SQUOTE] = ACTIONS(2871), + [anon_sym_U_SQUOTE] = ACTIONS(2871), + [anon_sym_u8_SQUOTE] = ACTIONS(2871), + [anon_sym_SQUOTE] = ACTIONS(2871), + [anon_sym_L_DQUOTE] = ACTIONS(2871), + [anon_sym_u_DQUOTE] = ACTIONS(2871), + [anon_sym_U_DQUOTE] = ACTIONS(2871), + [anon_sym_u8_DQUOTE] = ACTIONS(2871), + [anon_sym_DQUOTE] = ACTIONS(2871), + [sym_true] = ACTIONS(2869), + [sym_false] = ACTIONS(2869), + [sym_null] = ACTIONS(2869), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2869), + [anon_sym_decltype] = ACTIONS(2869), + [anon_sym_virtual] = ACTIONS(2869), + [anon_sym_explicit] = ACTIONS(2869), + [anon_sym_typename] = ACTIONS(2869), + [anon_sym_template] = ACTIONS(2869), + [anon_sym_operator] = ACTIONS(2869), + [anon_sym_try] = ACTIONS(2869), + [anon_sym_delete] = ACTIONS(2869), + [anon_sym_throw] = ACTIONS(2869), + [anon_sym_namespace] = ACTIONS(2869), + [anon_sym_using] = ACTIONS(2869), + [anon_sym_static_assert] = ACTIONS(2869), + [anon_sym_concept] = ACTIONS(2869), + [anon_sym_co_return] = ACTIONS(2869), + [anon_sym_co_yield] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2869), + [anon_sym_new] = ACTIONS(2869), + [anon_sym_requires] = ACTIONS(2869), + [sym_this] = ACTIONS(2869), + [sym_nullptr] = ACTIONS(2869), + [sym_raw_string_literal] = ACTIONS(2871), + }, + [526] = { + [sym_type_qualifier] = STATE(3373), + [sym__type_specifier] = STATE(4189), [sym_sized_type_specifier] = STATE(3139), [sym_enum_specifier] = STATE(3139), [sym_struct_specifier] = STATE(3139), [sym_union_specifier] = STATE(3139), - [sym__empty_declaration] = STATE(1008), + [sym__expression] = STATE(3630), + [sym_conditional_expression] = STATE(3865), + [sym_assignment_expression] = STATE(3865), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3865), + [sym_binary_expression] = STATE(3865), + [sym_update_expression] = STATE(3865), + [sym_cast_expression] = STATE(3865), + [sym_type_descriptor] = STATE(5815), + [sym_sizeof_expression] = STATE(3865), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3865), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3707), + [sym_concatenated_string] = STATE(3707), + [sym_string_literal] = STATE(3250), [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), + [sym_decltype_auto] = STATE(3138), [sym_decltype] = STATE(3139), [sym_class_specifier] = STATE(3139), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1770), + [sym__class_name] = STATE(6539), [sym_dependent_type] = STATE(3139), - [sym_template_declaration] = STATE(1008), - [sym_operator_cast] = STATE(5212), - [sym__constructor_specifiers] = STATE(1770), - [sym_operator_cast_definition] = STATE(1008), - [sym_operator_cast_declaration] = STATE(1008), - [sym_constructor_or_destructor_definition] = STATE(1008), - [sym_constructor_or_destructor_declaration] = STATE(1008), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(2976), - [sym_template_function] = STATE(4825), - [sym_alias_declaration] = STATE(1008), - [sym_concept_definition] = STATE(1008), - [sym_requires_clause] = STATE(1063), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4520), - [sym_qualified_identifier] = STATE(4825), - [sym_qualified_type_identifier] = STATE(3198), - [sym_qualified_operator_cast_identifier] = STATE(5212), - [sym_operator_name] = STATE(4825), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_operator_cast_definition_repeat1] = STATE(1770), - [sym_identifier] = ACTIONS(2805), - [anon_sym_LPAREN2] = ACTIONS(1515), - [anon_sym_TILDE] = ACTIONS(1517), - [anon_sym_STAR] = ACTIONS(1519), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1521), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2807), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1389), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACK] = ACTIONS(1527), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), + [sym_template_type] = STATE(4443), + [sym_template_function] = STATE(3865), + [sym_co_await_expression] = STATE(3865), + [sym_new_expression] = STATE(3865), + [sym_delete_expression] = STATE(3865), + [sym_requires_clause] = STATE(3865), + [sym_requires_expression] = STATE(3865), + [sym_lambda_expression] = STATE(3865), + [sym_lambda_capture_specifier] = STATE(4789), + [sym_fold_expression] = STATE(3865), + [sym_parameter_pack_expansion] = STATE(3865), + [sym_type_parameter_pack_expansion] = STATE(5836), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4919), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(4514), + [sym_user_defined_literal] = STATE(3865), + [aux_sym_type_definition_repeat1] = STATE(3373), + [aux_sym_sized_type_specifier_repeat1] = STATE(2300), + [sym_identifier] = ACTIONS(2663), + [anon_sym_LPAREN2] = ACTIONS(2665), + [anon_sym_BANG] = ACTIONS(2667), + [anon_sym_TILDE] = ACTIONS(2667), + [anon_sym_DASH] = ACTIONS(2669), + [anon_sym_PLUS] = ACTIONS(2669), + [anon_sym_STAR] = ACTIONS(2671), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_COLON_COLON] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(1713), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -123035,4920 +95396,2198 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_constexpr] = ACTIONS(57), [anon_sym_constinit] = ACTIONS(57), [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(2809), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), + [anon_sym_signed] = ACTIONS(2675), + [anon_sym_unsigned] = ACTIONS(2675), + [anon_sym_long] = ACTIONS(2675), + [anon_sym_short] = ACTIONS(2675), + [sym_primitive_type] = ACTIONS(2677), + [anon_sym_enum] = ACTIONS(2679), + [anon_sym_class] = ACTIONS(2681), + [anon_sym_struct] = ACTIONS(2683), + [anon_sym_union] = ACTIONS(2685), + [anon_sym_not] = ACTIONS(2669), + [anon_sym_compl] = ACTIONS(2669), + [anon_sym_DASH_DASH] = ACTIONS(2687), + [anon_sym_PLUS_PLUS] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2689), + [sym_number_literal] = ACTIONS(2691), + [anon_sym_L_SQUOTE] = ACTIONS(2693), + [anon_sym_u_SQUOTE] = ACTIONS(2693), + [anon_sym_U_SQUOTE] = ACTIONS(2693), + [anon_sym_u8_SQUOTE] = ACTIONS(2693), + [anon_sym_SQUOTE] = ACTIONS(2693), + [anon_sym_L_DQUOTE] = ACTIONS(2695), + [anon_sym_u_DQUOTE] = ACTIONS(2695), + [anon_sym_U_DQUOTE] = ACTIONS(2695), + [anon_sym_u8_DQUOTE] = ACTIONS(2695), + [anon_sym_DQUOTE] = ACTIONS(2695), + [sym_true] = ACTIONS(2697), + [sym_false] = ACTIONS(2697), + [sym_null] = ACTIONS(2697), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(105), - [anon_sym_decltype] = ACTIONS(107), - [anon_sym_virtual] = ACTIONS(109), - [anon_sym_explicit] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(2875), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_using] = ACTIONS(2877), - [anon_sym_concept] = ACTIONS(636), - [anon_sym_requires] = ACTIONS(2815), - }, - [809] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_RBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [810] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_RBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [811] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_RBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), + [sym_auto] = ACTIONS(2699), + [anon_sym_decltype] = ACTIONS(2701), + [anon_sym_typename] = ACTIONS(2703), + [anon_sym_template] = ACTIONS(976), + [anon_sym_GT2] = ACTIONS(2873), + [anon_sym_delete] = ACTIONS(2707), + [anon_sym_co_await] = ACTIONS(2709), + [anon_sym_new] = ACTIONS(2711), + [anon_sym_requires] = ACTIONS(2713), + [sym_this] = ACTIONS(2697), + [sym_nullptr] = ACTIONS(2697), + [sym_raw_string_literal] = ACTIONS(2715), }, - [812] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_RBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), + [527] = { + [sym_identifier] = ACTIONS(2875), + [aux_sym_preproc_include_token1] = ACTIONS(2875), + [aux_sym_preproc_def_token1] = ACTIONS(2875), + [aux_sym_preproc_if_token1] = ACTIONS(2875), + [aux_sym_preproc_if_token2] = ACTIONS(2875), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2875), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2875), + [aux_sym_preproc_else_token1] = ACTIONS(2875), + [aux_sym_preproc_elif_token1] = ACTIONS(2875), + [sym_preproc_directive] = ACTIONS(2875), + [anon_sym_LPAREN2] = ACTIONS(2877), + [anon_sym_BANG] = ACTIONS(2877), + [anon_sym_TILDE] = ACTIONS(2877), + [anon_sym_DASH] = ACTIONS(2875), + [anon_sym_PLUS] = ACTIONS(2875), + [anon_sym_STAR] = ACTIONS(2877), + [anon_sym_AMP_AMP] = ACTIONS(2877), + [anon_sym_AMP] = ACTIONS(2875), + [anon_sym_SEMI] = ACTIONS(2877), + [anon_sym_typedef] = ACTIONS(2875), + [anon_sym_extern] = ACTIONS(2875), + [anon_sym___attribute__] = ACTIONS(2875), + [anon_sym_COLON_COLON] = ACTIONS(2877), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2877), + [anon_sym___declspec] = ACTIONS(2875), + [anon_sym___based] = ACTIONS(2875), + [anon_sym___cdecl] = ACTIONS(2875), + [anon_sym___clrcall] = ACTIONS(2875), + [anon_sym___stdcall] = ACTIONS(2875), + [anon_sym___fastcall] = ACTIONS(2875), + [anon_sym___thiscall] = ACTIONS(2875), + [anon_sym___vectorcall] = ACTIONS(2875), + [anon_sym_LBRACE] = ACTIONS(2877), + [anon_sym_LBRACK] = ACTIONS(2875), + [anon_sym_static] = ACTIONS(2875), + [anon_sym_register] = ACTIONS(2875), + [anon_sym_inline] = ACTIONS(2875), + [anon_sym_thread_local] = ACTIONS(2875), + [anon_sym_const] = ACTIONS(2875), + [anon_sym_volatile] = ACTIONS(2875), + [anon_sym_restrict] = ACTIONS(2875), + [anon_sym__Atomic] = ACTIONS(2875), + [anon_sym_mutable] = ACTIONS(2875), + [anon_sym_constexpr] = ACTIONS(2875), + [anon_sym_constinit] = ACTIONS(2875), + [anon_sym_consteval] = ACTIONS(2875), + [anon_sym_signed] = ACTIONS(2875), + [anon_sym_unsigned] = ACTIONS(2875), + [anon_sym_long] = ACTIONS(2875), + [anon_sym_short] = ACTIONS(2875), + [sym_primitive_type] = ACTIONS(2875), + [anon_sym_enum] = ACTIONS(2875), + [anon_sym_class] = ACTIONS(2875), + [anon_sym_struct] = ACTIONS(2875), + [anon_sym_union] = ACTIONS(2875), + [anon_sym_if] = ACTIONS(2875), + [anon_sym_switch] = ACTIONS(2875), + [anon_sym_case] = ACTIONS(2875), + [anon_sym_default] = ACTIONS(2875), + [anon_sym_while] = ACTIONS(2875), + [anon_sym_do] = ACTIONS(2875), + [anon_sym_for] = ACTIONS(2875), + [anon_sym_return] = ACTIONS(2875), + [anon_sym_break] = ACTIONS(2875), + [anon_sym_continue] = ACTIONS(2875), + [anon_sym_goto] = ACTIONS(2875), + [anon_sym_not] = ACTIONS(2875), + [anon_sym_compl] = ACTIONS(2875), + [anon_sym_DASH_DASH] = ACTIONS(2877), + [anon_sym_PLUS_PLUS] = ACTIONS(2877), + [anon_sym_sizeof] = ACTIONS(2875), + [sym_number_literal] = ACTIONS(2877), + [anon_sym_L_SQUOTE] = ACTIONS(2877), + [anon_sym_u_SQUOTE] = ACTIONS(2877), + [anon_sym_U_SQUOTE] = ACTIONS(2877), + [anon_sym_u8_SQUOTE] = ACTIONS(2877), + [anon_sym_SQUOTE] = ACTIONS(2877), + [anon_sym_L_DQUOTE] = ACTIONS(2877), + [anon_sym_u_DQUOTE] = ACTIONS(2877), + [anon_sym_U_DQUOTE] = ACTIONS(2877), + [anon_sym_u8_DQUOTE] = ACTIONS(2877), + [anon_sym_DQUOTE] = ACTIONS(2877), + [sym_true] = ACTIONS(2875), + [sym_false] = ACTIONS(2875), + [sym_null] = ACTIONS(2875), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2875), + [anon_sym_decltype] = ACTIONS(2875), + [anon_sym_virtual] = ACTIONS(2875), + [anon_sym_explicit] = ACTIONS(2875), + [anon_sym_typename] = ACTIONS(2875), + [anon_sym_template] = ACTIONS(2875), + [anon_sym_operator] = ACTIONS(2875), + [anon_sym_try] = ACTIONS(2875), + [anon_sym_delete] = ACTIONS(2875), + [anon_sym_throw] = ACTIONS(2875), + [anon_sym_namespace] = ACTIONS(2875), + [anon_sym_using] = ACTIONS(2875), + [anon_sym_static_assert] = ACTIONS(2875), + [anon_sym_concept] = ACTIONS(2875), + [anon_sym_co_return] = ACTIONS(2875), + [anon_sym_co_yield] = ACTIONS(2875), + [anon_sym_co_await] = ACTIONS(2875), + [anon_sym_new] = ACTIONS(2875), + [anon_sym_requires] = ACTIONS(2875), + [sym_this] = ACTIONS(2875), + [sym_nullptr] = ACTIONS(2875), + [sym_raw_string_literal] = ACTIONS(2877), }, - [813] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_RBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), + [528] = { + [sym_identifier] = ACTIONS(2879), + [aux_sym_preproc_include_token1] = ACTIONS(2879), + [aux_sym_preproc_def_token1] = ACTIONS(2879), + [aux_sym_preproc_if_token1] = ACTIONS(2879), + [aux_sym_preproc_if_token2] = ACTIONS(2879), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2879), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2879), + [aux_sym_preproc_else_token1] = ACTIONS(2879), + [aux_sym_preproc_elif_token1] = ACTIONS(2879), + [sym_preproc_directive] = ACTIONS(2879), + [anon_sym_LPAREN2] = ACTIONS(2881), + [anon_sym_BANG] = ACTIONS(2881), + [anon_sym_TILDE] = ACTIONS(2881), + [anon_sym_DASH] = ACTIONS(2879), + [anon_sym_PLUS] = ACTIONS(2879), + [anon_sym_STAR] = ACTIONS(2881), + [anon_sym_AMP_AMP] = ACTIONS(2881), + [anon_sym_AMP] = ACTIONS(2879), + [anon_sym_SEMI] = ACTIONS(2881), + [anon_sym_typedef] = ACTIONS(2879), + [anon_sym_extern] = ACTIONS(2879), + [anon_sym___attribute__] = ACTIONS(2879), + [anon_sym_COLON_COLON] = ACTIONS(2881), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2881), + [anon_sym___declspec] = ACTIONS(2879), + [anon_sym___based] = ACTIONS(2879), + [anon_sym___cdecl] = ACTIONS(2879), + [anon_sym___clrcall] = ACTIONS(2879), + [anon_sym___stdcall] = ACTIONS(2879), + [anon_sym___fastcall] = ACTIONS(2879), + [anon_sym___thiscall] = ACTIONS(2879), + [anon_sym___vectorcall] = ACTIONS(2879), + [anon_sym_LBRACE] = ACTIONS(2881), + [anon_sym_LBRACK] = ACTIONS(2879), + [anon_sym_static] = ACTIONS(2879), + [anon_sym_register] = ACTIONS(2879), + [anon_sym_inline] = ACTIONS(2879), + [anon_sym_thread_local] = ACTIONS(2879), + [anon_sym_const] = ACTIONS(2879), + [anon_sym_volatile] = ACTIONS(2879), + [anon_sym_restrict] = ACTIONS(2879), + [anon_sym__Atomic] = ACTIONS(2879), + [anon_sym_mutable] = ACTIONS(2879), + [anon_sym_constexpr] = ACTIONS(2879), + [anon_sym_constinit] = ACTIONS(2879), + [anon_sym_consteval] = ACTIONS(2879), + [anon_sym_signed] = ACTIONS(2879), + [anon_sym_unsigned] = ACTIONS(2879), + [anon_sym_long] = ACTIONS(2879), + [anon_sym_short] = ACTIONS(2879), + [sym_primitive_type] = ACTIONS(2879), + [anon_sym_enum] = ACTIONS(2879), + [anon_sym_class] = ACTIONS(2879), + [anon_sym_struct] = ACTIONS(2879), + [anon_sym_union] = ACTIONS(2879), + [anon_sym_if] = ACTIONS(2879), + [anon_sym_switch] = ACTIONS(2879), + [anon_sym_case] = ACTIONS(2879), + [anon_sym_default] = ACTIONS(2879), + [anon_sym_while] = ACTIONS(2879), + [anon_sym_do] = ACTIONS(2879), + [anon_sym_for] = ACTIONS(2879), + [anon_sym_return] = ACTIONS(2879), + [anon_sym_break] = ACTIONS(2879), + [anon_sym_continue] = ACTIONS(2879), + [anon_sym_goto] = ACTIONS(2879), + [anon_sym_not] = ACTIONS(2879), + [anon_sym_compl] = ACTIONS(2879), + [anon_sym_DASH_DASH] = ACTIONS(2881), + [anon_sym_PLUS_PLUS] = ACTIONS(2881), + [anon_sym_sizeof] = ACTIONS(2879), + [sym_number_literal] = ACTIONS(2881), + [anon_sym_L_SQUOTE] = ACTIONS(2881), + [anon_sym_u_SQUOTE] = ACTIONS(2881), + [anon_sym_U_SQUOTE] = ACTIONS(2881), + [anon_sym_u8_SQUOTE] = ACTIONS(2881), + [anon_sym_SQUOTE] = ACTIONS(2881), + [anon_sym_L_DQUOTE] = ACTIONS(2881), + [anon_sym_u_DQUOTE] = ACTIONS(2881), + [anon_sym_U_DQUOTE] = ACTIONS(2881), + [anon_sym_u8_DQUOTE] = ACTIONS(2881), + [anon_sym_DQUOTE] = ACTIONS(2881), + [sym_true] = ACTIONS(2879), + [sym_false] = ACTIONS(2879), + [sym_null] = ACTIONS(2879), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2879), + [anon_sym_decltype] = ACTIONS(2879), + [anon_sym_virtual] = ACTIONS(2879), + [anon_sym_explicit] = ACTIONS(2879), + [anon_sym_typename] = ACTIONS(2879), + [anon_sym_template] = ACTIONS(2879), + [anon_sym_operator] = ACTIONS(2879), + [anon_sym_try] = ACTIONS(2879), + [anon_sym_delete] = ACTIONS(2879), + [anon_sym_throw] = ACTIONS(2879), + [anon_sym_namespace] = ACTIONS(2879), + [anon_sym_using] = ACTIONS(2879), + [anon_sym_static_assert] = ACTIONS(2879), + [anon_sym_concept] = ACTIONS(2879), + [anon_sym_co_return] = ACTIONS(2879), + [anon_sym_co_yield] = ACTIONS(2879), + [anon_sym_co_await] = ACTIONS(2879), + [anon_sym_new] = ACTIONS(2879), + [anon_sym_requires] = ACTIONS(2879), + [sym_this] = ACTIONS(2879), + [sym_nullptr] = ACTIONS(2879), + [sym_raw_string_literal] = ACTIONS(2881), }, - [814] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_RBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), + [529] = { + [sym_identifier] = ACTIONS(2883), + [aux_sym_preproc_include_token1] = ACTIONS(2883), + [aux_sym_preproc_def_token1] = ACTIONS(2883), + [aux_sym_preproc_if_token1] = ACTIONS(2883), + [aux_sym_preproc_if_token2] = ACTIONS(2883), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2883), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2883), + [aux_sym_preproc_else_token1] = ACTIONS(2883), + [aux_sym_preproc_elif_token1] = ACTIONS(2883), + [sym_preproc_directive] = ACTIONS(2883), + [anon_sym_LPAREN2] = ACTIONS(2885), + [anon_sym_BANG] = ACTIONS(2885), + [anon_sym_TILDE] = ACTIONS(2885), + [anon_sym_DASH] = ACTIONS(2883), + [anon_sym_PLUS] = ACTIONS(2883), + [anon_sym_STAR] = ACTIONS(2885), + [anon_sym_AMP_AMP] = ACTIONS(2885), + [anon_sym_AMP] = ACTIONS(2883), + [anon_sym_SEMI] = ACTIONS(2885), + [anon_sym_typedef] = ACTIONS(2883), + [anon_sym_extern] = ACTIONS(2883), + [anon_sym___attribute__] = ACTIONS(2883), + [anon_sym_COLON_COLON] = ACTIONS(2885), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2885), + [anon_sym___declspec] = ACTIONS(2883), + [anon_sym___based] = ACTIONS(2883), + [anon_sym___cdecl] = ACTIONS(2883), + [anon_sym___clrcall] = ACTIONS(2883), + [anon_sym___stdcall] = ACTIONS(2883), + [anon_sym___fastcall] = ACTIONS(2883), + [anon_sym___thiscall] = ACTIONS(2883), + [anon_sym___vectorcall] = ACTIONS(2883), + [anon_sym_LBRACE] = ACTIONS(2885), + [anon_sym_LBRACK] = ACTIONS(2883), + [anon_sym_static] = ACTIONS(2883), + [anon_sym_register] = ACTIONS(2883), + [anon_sym_inline] = ACTIONS(2883), + [anon_sym_thread_local] = ACTIONS(2883), + [anon_sym_const] = ACTIONS(2883), + [anon_sym_volatile] = ACTIONS(2883), + [anon_sym_restrict] = ACTIONS(2883), + [anon_sym__Atomic] = ACTIONS(2883), + [anon_sym_mutable] = ACTIONS(2883), + [anon_sym_constexpr] = ACTIONS(2883), + [anon_sym_constinit] = ACTIONS(2883), + [anon_sym_consteval] = ACTIONS(2883), + [anon_sym_signed] = ACTIONS(2883), + [anon_sym_unsigned] = ACTIONS(2883), + [anon_sym_long] = ACTIONS(2883), + [anon_sym_short] = ACTIONS(2883), + [sym_primitive_type] = ACTIONS(2883), + [anon_sym_enum] = ACTIONS(2883), + [anon_sym_class] = ACTIONS(2883), + [anon_sym_struct] = ACTIONS(2883), + [anon_sym_union] = ACTIONS(2883), + [anon_sym_if] = ACTIONS(2883), + [anon_sym_switch] = ACTIONS(2883), + [anon_sym_case] = ACTIONS(2883), + [anon_sym_default] = ACTIONS(2883), + [anon_sym_while] = ACTIONS(2883), + [anon_sym_do] = ACTIONS(2883), + [anon_sym_for] = ACTIONS(2883), + [anon_sym_return] = ACTIONS(2883), + [anon_sym_break] = ACTIONS(2883), + [anon_sym_continue] = ACTIONS(2883), + [anon_sym_goto] = ACTIONS(2883), + [anon_sym_not] = ACTIONS(2883), + [anon_sym_compl] = ACTIONS(2883), + [anon_sym_DASH_DASH] = ACTIONS(2885), + [anon_sym_PLUS_PLUS] = ACTIONS(2885), + [anon_sym_sizeof] = ACTIONS(2883), + [sym_number_literal] = ACTIONS(2885), + [anon_sym_L_SQUOTE] = ACTIONS(2885), + [anon_sym_u_SQUOTE] = ACTIONS(2885), + [anon_sym_U_SQUOTE] = ACTIONS(2885), + [anon_sym_u8_SQUOTE] = ACTIONS(2885), + [anon_sym_SQUOTE] = ACTIONS(2885), + [anon_sym_L_DQUOTE] = ACTIONS(2885), + [anon_sym_u_DQUOTE] = ACTIONS(2885), + [anon_sym_U_DQUOTE] = ACTIONS(2885), + [anon_sym_u8_DQUOTE] = ACTIONS(2885), + [anon_sym_DQUOTE] = ACTIONS(2885), + [sym_true] = ACTIONS(2883), + [sym_false] = ACTIONS(2883), + [sym_null] = ACTIONS(2883), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2883), + [anon_sym_decltype] = ACTIONS(2883), + [anon_sym_virtual] = ACTIONS(2883), + [anon_sym_explicit] = ACTIONS(2883), + [anon_sym_typename] = ACTIONS(2883), + [anon_sym_template] = ACTIONS(2883), + [anon_sym_operator] = ACTIONS(2883), + [anon_sym_try] = ACTIONS(2883), + [anon_sym_delete] = ACTIONS(2883), + [anon_sym_throw] = ACTIONS(2883), + [anon_sym_namespace] = ACTIONS(2883), + [anon_sym_using] = ACTIONS(2883), + [anon_sym_static_assert] = ACTIONS(2883), + [anon_sym_concept] = ACTIONS(2883), + [anon_sym_co_return] = ACTIONS(2883), + [anon_sym_co_yield] = ACTIONS(2883), + [anon_sym_co_await] = ACTIONS(2883), + [anon_sym_new] = ACTIONS(2883), + [anon_sym_requires] = ACTIONS(2883), + [sym_this] = ACTIONS(2883), + [sym_nullptr] = ACTIONS(2883), + [sym_raw_string_literal] = ACTIONS(2885), }, - [815] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_RBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), + [530] = { + [sym_identifier] = ACTIONS(2887), + [aux_sym_preproc_include_token1] = ACTIONS(2887), + [aux_sym_preproc_def_token1] = ACTIONS(2887), + [aux_sym_preproc_if_token1] = ACTIONS(2887), + [aux_sym_preproc_if_token2] = ACTIONS(2887), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2887), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2887), + [aux_sym_preproc_else_token1] = ACTIONS(2887), + [aux_sym_preproc_elif_token1] = ACTIONS(2887), + [sym_preproc_directive] = ACTIONS(2887), + [anon_sym_LPAREN2] = ACTIONS(2889), + [anon_sym_BANG] = ACTIONS(2889), + [anon_sym_TILDE] = ACTIONS(2889), + [anon_sym_DASH] = ACTIONS(2887), + [anon_sym_PLUS] = ACTIONS(2887), + [anon_sym_STAR] = ACTIONS(2889), + [anon_sym_AMP_AMP] = ACTIONS(2889), + [anon_sym_AMP] = ACTIONS(2887), + [anon_sym_SEMI] = ACTIONS(2889), + [anon_sym_typedef] = ACTIONS(2887), + [anon_sym_extern] = ACTIONS(2887), + [anon_sym___attribute__] = ACTIONS(2887), + [anon_sym_COLON_COLON] = ACTIONS(2889), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2889), + [anon_sym___declspec] = ACTIONS(2887), + [anon_sym___based] = ACTIONS(2887), + [anon_sym___cdecl] = ACTIONS(2887), + [anon_sym___clrcall] = ACTIONS(2887), + [anon_sym___stdcall] = ACTIONS(2887), + [anon_sym___fastcall] = ACTIONS(2887), + [anon_sym___thiscall] = ACTIONS(2887), + [anon_sym___vectorcall] = ACTIONS(2887), + [anon_sym_LBRACE] = ACTIONS(2889), + [anon_sym_LBRACK] = ACTIONS(2887), + [anon_sym_static] = ACTIONS(2887), + [anon_sym_register] = ACTIONS(2887), + [anon_sym_inline] = ACTIONS(2887), + [anon_sym_thread_local] = ACTIONS(2887), + [anon_sym_const] = ACTIONS(2887), + [anon_sym_volatile] = ACTIONS(2887), + [anon_sym_restrict] = ACTIONS(2887), + [anon_sym__Atomic] = ACTIONS(2887), + [anon_sym_mutable] = ACTIONS(2887), + [anon_sym_constexpr] = ACTIONS(2887), + [anon_sym_constinit] = ACTIONS(2887), + [anon_sym_consteval] = ACTIONS(2887), + [anon_sym_signed] = ACTIONS(2887), + [anon_sym_unsigned] = ACTIONS(2887), + [anon_sym_long] = ACTIONS(2887), + [anon_sym_short] = ACTIONS(2887), + [sym_primitive_type] = ACTIONS(2887), + [anon_sym_enum] = ACTIONS(2887), + [anon_sym_class] = ACTIONS(2887), + [anon_sym_struct] = ACTIONS(2887), + [anon_sym_union] = ACTIONS(2887), + [anon_sym_if] = ACTIONS(2887), + [anon_sym_switch] = ACTIONS(2887), + [anon_sym_case] = ACTIONS(2887), + [anon_sym_default] = ACTIONS(2887), + [anon_sym_while] = ACTIONS(2887), + [anon_sym_do] = ACTIONS(2887), + [anon_sym_for] = ACTIONS(2887), + [anon_sym_return] = ACTIONS(2887), + [anon_sym_break] = ACTIONS(2887), + [anon_sym_continue] = ACTIONS(2887), + [anon_sym_goto] = ACTIONS(2887), + [anon_sym_not] = ACTIONS(2887), + [anon_sym_compl] = ACTIONS(2887), + [anon_sym_DASH_DASH] = ACTIONS(2889), + [anon_sym_PLUS_PLUS] = ACTIONS(2889), + [anon_sym_sizeof] = ACTIONS(2887), + [sym_number_literal] = ACTIONS(2889), + [anon_sym_L_SQUOTE] = ACTIONS(2889), + [anon_sym_u_SQUOTE] = ACTIONS(2889), + [anon_sym_U_SQUOTE] = ACTIONS(2889), + [anon_sym_u8_SQUOTE] = ACTIONS(2889), + [anon_sym_SQUOTE] = ACTIONS(2889), + [anon_sym_L_DQUOTE] = ACTIONS(2889), + [anon_sym_u_DQUOTE] = ACTIONS(2889), + [anon_sym_U_DQUOTE] = ACTIONS(2889), + [anon_sym_u8_DQUOTE] = ACTIONS(2889), + [anon_sym_DQUOTE] = ACTIONS(2889), + [sym_true] = ACTIONS(2887), + [sym_false] = ACTIONS(2887), + [sym_null] = ACTIONS(2887), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2887), + [anon_sym_decltype] = ACTIONS(2887), + [anon_sym_virtual] = ACTIONS(2887), + [anon_sym_explicit] = ACTIONS(2887), + [anon_sym_typename] = ACTIONS(2887), + [anon_sym_template] = ACTIONS(2887), + [anon_sym_operator] = ACTIONS(2887), + [anon_sym_try] = ACTIONS(2887), + [anon_sym_delete] = ACTIONS(2887), + [anon_sym_throw] = ACTIONS(2887), + [anon_sym_namespace] = ACTIONS(2887), + [anon_sym_using] = ACTIONS(2887), + [anon_sym_static_assert] = ACTIONS(2887), + [anon_sym_concept] = ACTIONS(2887), + [anon_sym_co_return] = ACTIONS(2887), + [anon_sym_co_yield] = ACTIONS(2887), + [anon_sym_co_await] = ACTIONS(2887), + [anon_sym_new] = ACTIONS(2887), + [anon_sym_requires] = ACTIONS(2887), + [sym_this] = ACTIONS(2887), + [sym_nullptr] = ACTIONS(2887), + [sym_raw_string_literal] = ACTIONS(2889), }, - [816] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_RBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), + [531] = { + [sym_identifier] = ACTIONS(2891), + [aux_sym_preproc_include_token1] = ACTIONS(2891), + [aux_sym_preproc_def_token1] = ACTIONS(2891), + [aux_sym_preproc_if_token1] = ACTIONS(2891), + [aux_sym_preproc_if_token2] = ACTIONS(2891), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2891), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2891), + [aux_sym_preproc_else_token1] = ACTIONS(2891), + [aux_sym_preproc_elif_token1] = ACTIONS(2891), + [sym_preproc_directive] = ACTIONS(2891), + [anon_sym_LPAREN2] = ACTIONS(2893), + [anon_sym_BANG] = ACTIONS(2893), + [anon_sym_TILDE] = ACTIONS(2893), + [anon_sym_DASH] = ACTIONS(2891), + [anon_sym_PLUS] = ACTIONS(2891), + [anon_sym_STAR] = ACTIONS(2893), + [anon_sym_AMP_AMP] = ACTIONS(2893), + [anon_sym_AMP] = ACTIONS(2891), + [anon_sym_SEMI] = ACTIONS(2893), + [anon_sym_typedef] = ACTIONS(2891), + [anon_sym_extern] = ACTIONS(2891), + [anon_sym___attribute__] = ACTIONS(2891), + [anon_sym_COLON_COLON] = ACTIONS(2893), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2893), + [anon_sym___declspec] = ACTIONS(2891), + [anon_sym___based] = ACTIONS(2891), + [anon_sym___cdecl] = ACTIONS(2891), + [anon_sym___clrcall] = ACTIONS(2891), + [anon_sym___stdcall] = ACTIONS(2891), + [anon_sym___fastcall] = ACTIONS(2891), + [anon_sym___thiscall] = ACTIONS(2891), + [anon_sym___vectorcall] = ACTIONS(2891), + [anon_sym_LBRACE] = ACTIONS(2893), + [anon_sym_LBRACK] = ACTIONS(2891), + [anon_sym_static] = ACTIONS(2891), + [anon_sym_register] = ACTIONS(2891), + [anon_sym_inline] = ACTIONS(2891), + [anon_sym_thread_local] = ACTIONS(2891), + [anon_sym_const] = ACTIONS(2891), + [anon_sym_volatile] = ACTIONS(2891), + [anon_sym_restrict] = ACTIONS(2891), + [anon_sym__Atomic] = ACTIONS(2891), + [anon_sym_mutable] = ACTIONS(2891), + [anon_sym_constexpr] = ACTIONS(2891), + [anon_sym_constinit] = ACTIONS(2891), + [anon_sym_consteval] = ACTIONS(2891), + [anon_sym_signed] = ACTIONS(2891), + [anon_sym_unsigned] = ACTIONS(2891), + [anon_sym_long] = ACTIONS(2891), + [anon_sym_short] = ACTIONS(2891), + [sym_primitive_type] = ACTIONS(2891), + [anon_sym_enum] = ACTIONS(2891), + [anon_sym_class] = ACTIONS(2891), + [anon_sym_struct] = ACTIONS(2891), + [anon_sym_union] = ACTIONS(2891), + [anon_sym_if] = ACTIONS(2891), + [anon_sym_switch] = ACTIONS(2891), + [anon_sym_case] = ACTIONS(2891), + [anon_sym_default] = ACTIONS(2891), + [anon_sym_while] = ACTIONS(2891), + [anon_sym_do] = ACTIONS(2891), + [anon_sym_for] = ACTIONS(2891), + [anon_sym_return] = ACTIONS(2891), + [anon_sym_break] = ACTIONS(2891), + [anon_sym_continue] = ACTIONS(2891), + [anon_sym_goto] = ACTIONS(2891), + [anon_sym_not] = ACTIONS(2891), + [anon_sym_compl] = ACTIONS(2891), + [anon_sym_DASH_DASH] = ACTIONS(2893), + [anon_sym_PLUS_PLUS] = ACTIONS(2893), + [anon_sym_sizeof] = ACTIONS(2891), + [sym_number_literal] = ACTIONS(2893), + [anon_sym_L_SQUOTE] = ACTIONS(2893), + [anon_sym_u_SQUOTE] = ACTIONS(2893), + [anon_sym_U_SQUOTE] = ACTIONS(2893), + [anon_sym_u8_SQUOTE] = ACTIONS(2893), + [anon_sym_SQUOTE] = ACTIONS(2893), + [anon_sym_L_DQUOTE] = ACTIONS(2893), + [anon_sym_u_DQUOTE] = ACTIONS(2893), + [anon_sym_U_DQUOTE] = ACTIONS(2893), + [anon_sym_u8_DQUOTE] = ACTIONS(2893), + [anon_sym_DQUOTE] = ACTIONS(2893), + [sym_true] = ACTIONS(2891), + [sym_false] = ACTIONS(2891), + [sym_null] = ACTIONS(2891), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2891), + [anon_sym_decltype] = ACTIONS(2891), + [anon_sym_virtual] = ACTIONS(2891), + [anon_sym_explicit] = ACTIONS(2891), + [anon_sym_typename] = ACTIONS(2891), + [anon_sym_template] = ACTIONS(2891), + [anon_sym_operator] = ACTIONS(2891), + [anon_sym_try] = ACTIONS(2891), + [anon_sym_delete] = ACTIONS(2891), + [anon_sym_throw] = ACTIONS(2891), + [anon_sym_namespace] = ACTIONS(2891), + [anon_sym_using] = ACTIONS(2891), + [anon_sym_static_assert] = ACTIONS(2891), + [anon_sym_concept] = ACTIONS(2891), + [anon_sym_co_return] = ACTIONS(2891), + [anon_sym_co_yield] = ACTIONS(2891), + [anon_sym_co_await] = ACTIONS(2891), + [anon_sym_new] = ACTIONS(2891), + [anon_sym_requires] = ACTIONS(2891), + [sym_this] = ACTIONS(2891), + [sym_nullptr] = ACTIONS(2891), + [sym_raw_string_literal] = ACTIONS(2893), }, - [817] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_RBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), + [532] = { + [sym_identifier] = ACTIONS(2895), + [aux_sym_preproc_include_token1] = ACTIONS(2895), + [aux_sym_preproc_def_token1] = ACTIONS(2895), + [aux_sym_preproc_if_token1] = ACTIONS(2895), + [aux_sym_preproc_if_token2] = ACTIONS(2895), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2895), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2895), + [aux_sym_preproc_else_token1] = ACTIONS(2895), + [aux_sym_preproc_elif_token1] = ACTIONS(2895), + [sym_preproc_directive] = ACTIONS(2895), + [anon_sym_LPAREN2] = ACTIONS(2897), + [anon_sym_BANG] = ACTIONS(2897), + [anon_sym_TILDE] = ACTIONS(2897), + [anon_sym_DASH] = ACTIONS(2895), + [anon_sym_PLUS] = ACTIONS(2895), + [anon_sym_STAR] = ACTIONS(2897), + [anon_sym_AMP_AMP] = ACTIONS(2897), + [anon_sym_AMP] = ACTIONS(2895), + [anon_sym_SEMI] = ACTIONS(2897), + [anon_sym_typedef] = ACTIONS(2895), + [anon_sym_extern] = ACTIONS(2895), + [anon_sym___attribute__] = ACTIONS(2895), + [anon_sym_COLON_COLON] = ACTIONS(2897), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2897), + [anon_sym___declspec] = ACTIONS(2895), + [anon_sym___based] = ACTIONS(2895), + [anon_sym___cdecl] = ACTIONS(2895), + [anon_sym___clrcall] = ACTIONS(2895), + [anon_sym___stdcall] = ACTIONS(2895), + [anon_sym___fastcall] = ACTIONS(2895), + [anon_sym___thiscall] = ACTIONS(2895), + [anon_sym___vectorcall] = ACTIONS(2895), + [anon_sym_LBRACE] = ACTIONS(2897), + [anon_sym_LBRACK] = ACTIONS(2895), + [anon_sym_static] = ACTIONS(2895), + [anon_sym_register] = ACTIONS(2895), + [anon_sym_inline] = ACTIONS(2895), + [anon_sym_thread_local] = ACTIONS(2895), + [anon_sym_const] = ACTIONS(2895), + [anon_sym_volatile] = ACTIONS(2895), + [anon_sym_restrict] = ACTIONS(2895), + [anon_sym__Atomic] = ACTIONS(2895), + [anon_sym_mutable] = ACTIONS(2895), + [anon_sym_constexpr] = ACTIONS(2895), + [anon_sym_constinit] = ACTIONS(2895), + [anon_sym_consteval] = ACTIONS(2895), + [anon_sym_signed] = ACTIONS(2895), + [anon_sym_unsigned] = ACTIONS(2895), + [anon_sym_long] = ACTIONS(2895), + [anon_sym_short] = ACTIONS(2895), + [sym_primitive_type] = ACTIONS(2895), + [anon_sym_enum] = ACTIONS(2895), + [anon_sym_class] = ACTIONS(2895), + [anon_sym_struct] = ACTIONS(2895), + [anon_sym_union] = ACTIONS(2895), + [anon_sym_if] = ACTIONS(2895), + [anon_sym_switch] = ACTIONS(2895), + [anon_sym_case] = ACTIONS(2895), + [anon_sym_default] = ACTIONS(2895), + [anon_sym_while] = ACTIONS(2895), + [anon_sym_do] = ACTIONS(2895), + [anon_sym_for] = ACTIONS(2895), + [anon_sym_return] = ACTIONS(2895), + [anon_sym_break] = ACTIONS(2895), + [anon_sym_continue] = ACTIONS(2895), + [anon_sym_goto] = ACTIONS(2895), + [anon_sym_not] = ACTIONS(2895), + [anon_sym_compl] = ACTIONS(2895), + [anon_sym_DASH_DASH] = ACTIONS(2897), + [anon_sym_PLUS_PLUS] = ACTIONS(2897), + [anon_sym_sizeof] = ACTIONS(2895), + [sym_number_literal] = ACTIONS(2897), + [anon_sym_L_SQUOTE] = ACTIONS(2897), + [anon_sym_u_SQUOTE] = ACTIONS(2897), + [anon_sym_U_SQUOTE] = ACTIONS(2897), + [anon_sym_u8_SQUOTE] = ACTIONS(2897), + [anon_sym_SQUOTE] = ACTIONS(2897), + [anon_sym_L_DQUOTE] = ACTIONS(2897), + [anon_sym_u_DQUOTE] = ACTIONS(2897), + [anon_sym_U_DQUOTE] = ACTIONS(2897), + [anon_sym_u8_DQUOTE] = ACTIONS(2897), + [anon_sym_DQUOTE] = ACTIONS(2897), + [sym_true] = ACTIONS(2895), + [sym_false] = ACTIONS(2895), + [sym_null] = ACTIONS(2895), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2895), + [anon_sym_decltype] = ACTIONS(2895), + [anon_sym_virtual] = ACTIONS(2895), + [anon_sym_explicit] = ACTIONS(2895), + [anon_sym_typename] = ACTIONS(2895), + [anon_sym_template] = ACTIONS(2895), + [anon_sym_operator] = ACTIONS(2895), + [anon_sym_try] = ACTIONS(2895), + [anon_sym_delete] = ACTIONS(2895), + [anon_sym_throw] = ACTIONS(2895), + [anon_sym_namespace] = ACTIONS(2895), + [anon_sym_using] = ACTIONS(2895), + [anon_sym_static_assert] = ACTIONS(2895), + [anon_sym_concept] = ACTIONS(2895), + [anon_sym_co_return] = ACTIONS(2895), + [anon_sym_co_yield] = ACTIONS(2895), + [anon_sym_co_await] = ACTIONS(2895), + [anon_sym_new] = ACTIONS(2895), + [anon_sym_requires] = ACTIONS(2895), + [sym_this] = ACTIONS(2895), + [sym_nullptr] = ACTIONS(2895), + [sym_raw_string_literal] = ACTIONS(2897), }, - [818] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_RBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), + [533] = { + [sym_type_qualifier] = STATE(3373), + [sym__type_specifier] = STATE(4189), + [sym_sized_type_specifier] = STATE(3139), + [sym_enum_specifier] = STATE(3139), + [sym_struct_specifier] = STATE(3139), + [sym_union_specifier] = STATE(3139), + [sym__expression] = STATE(3584), + [sym_conditional_expression] = STATE(3865), + [sym_assignment_expression] = STATE(3865), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3865), + [sym_binary_expression] = STATE(3865), + [sym_update_expression] = STATE(3865), + [sym_cast_expression] = STATE(3865), + [sym_type_descriptor] = STATE(5551), + [sym_sizeof_expression] = STATE(3865), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3865), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3707), + [sym_concatenated_string] = STATE(3707), + [sym_string_literal] = STATE(3250), + [sym_placeholder_type_specifier] = STATE(3139), + [sym_decltype_auto] = STATE(3138), + [sym_decltype] = STATE(3139), + [sym_class_specifier] = STATE(3139), + [sym__class_name] = STATE(6539), + [sym_dependent_type] = STATE(3139), + [sym_template_type] = STATE(4443), + [sym_template_function] = STATE(3865), + [sym_co_await_expression] = STATE(3865), + [sym_new_expression] = STATE(3865), + [sym_delete_expression] = STATE(3865), + [sym_requires_clause] = STATE(3865), + [sym_requires_expression] = STATE(3865), + [sym_lambda_expression] = STATE(3865), + [sym_lambda_capture_specifier] = STATE(4789), + [sym_fold_expression] = STATE(3865), + [sym_parameter_pack_expansion] = STATE(3865), + [sym_type_parameter_pack_expansion] = STATE(5896), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4919), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(4514), + [sym_user_defined_literal] = STATE(3865), + [aux_sym_type_definition_repeat1] = STATE(3373), + [aux_sym_sized_type_specifier_repeat1] = STATE(2300), + [sym_identifier] = ACTIONS(2663), + [anon_sym_LPAREN2] = ACTIONS(2665), + [anon_sym_BANG] = ACTIONS(2667), + [anon_sym_TILDE] = ACTIONS(2667), + [anon_sym_DASH] = ACTIONS(2669), + [anon_sym_PLUS] = ACTIONS(2669), + [anon_sym_STAR] = ACTIONS(2671), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_COLON_COLON] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2675), + [anon_sym_unsigned] = ACTIONS(2675), + [anon_sym_long] = ACTIONS(2675), + [anon_sym_short] = ACTIONS(2675), + [sym_primitive_type] = ACTIONS(2677), + [anon_sym_enum] = ACTIONS(2679), + [anon_sym_class] = ACTIONS(2681), + [anon_sym_struct] = ACTIONS(2683), + [anon_sym_union] = ACTIONS(2685), + [anon_sym_not] = ACTIONS(2669), + [anon_sym_compl] = ACTIONS(2669), + [anon_sym_DASH_DASH] = ACTIONS(2687), + [anon_sym_PLUS_PLUS] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2689), + [sym_number_literal] = ACTIONS(2691), + [anon_sym_L_SQUOTE] = ACTIONS(2693), + [anon_sym_u_SQUOTE] = ACTIONS(2693), + [anon_sym_U_SQUOTE] = ACTIONS(2693), + [anon_sym_u8_SQUOTE] = ACTIONS(2693), + [anon_sym_SQUOTE] = ACTIONS(2693), + [anon_sym_L_DQUOTE] = ACTIONS(2695), + [anon_sym_u_DQUOTE] = ACTIONS(2695), + [anon_sym_U_DQUOTE] = ACTIONS(2695), + [anon_sym_u8_DQUOTE] = ACTIONS(2695), + [anon_sym_DQUOTE] = ACTIONS(2695), + [sym_true] = ACTIONS(2697), + [sym_false] = ACTIONS(2697), + [sym_null] = ACTIONS(2697), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2699), + [anon_sym_decltype] = ACTIONS(2701), + [anon_sym_typename] = ACTIONS(2703), + [anon_sym_template] = ACTIONS(976), + [anon_sym_GT2] = ACTIONS(2899), + [anon_sym_delete] = ACTIONS(2707), + [anon_sym_co_await] = ACTIONS(2709), + [anon_sym_new] = ACTIONS(2711), + [anon_sym_requires] = ACTIONS(2713), + [sym_this] = ACTIONS(2697), + [sym_nullptr] = ACTIONS(2697), + [sym_raw_string_literal] = ACTIONS(2715), }, - [819] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_RBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), + [534] = { + [sym_type_qualifier] = STATE(3373), + [sym__type_specifier] = STATE(4189), + [sym_sized_type_specifier] = STATE(3139), + [sym_enum_specifier] = STATE(3139), + [sym_struct_specifier] = STATE(3139), + [sym_union_specifier] = STATE(3139), + [sym__expression] = STATE(3634), + [sym_conditional_expression] = STATE(3865), + [sym_assignment_expression] = STATE(3865), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3865), + [sym_binary_expression] = STATE(3865), + [sym_update_expression] = STATE(3865), + [sym_cast_expression] = STATE(3865), + [sym_type_descriptor] = STATE(5554), + [sym_sizeof_expression] = STATE(3865), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3865), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3707), + [sym_concatenated_string] = STATE(3707), + [sym_string_literal] = STATE(3250), + [sym_placeholder_type_specifier] = STATE(3139), + [sym_decltype_auto] = STATE(3138), + [sym_decltype] = STATE(3139), + [sym_class_specifier] = STATE(3139), + [sym__class_name] = STATE(6539), + [sym_dependent_type] = STATE(3139), + [sym_template_type] = STATE(4443), + [sym_template_function] = STATE(3865), + [sym_co_await_expression] = STATE(3865), + [sym_new_expression] = STATE(3865), + [sym_delete_expression] = STATE(3865), + [sym_requires_clause] = STATE(3865), + [sym_requires_expression] = STATE(3865), + [sym_lambda_expression] = STATE(3865), + [sym_lambda_capture_specifier] = STATE(4789), + [sym_fold_expression] = STATE(3865), + [sym_parameter_pack_expansion] = STATE(3865), + [sym_type_parameter_pack_expansion] = STATE(5885), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4919), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(4514), + [sym_user_defined_literal] = STATE(3865), + [aux_sym_type_definition_repeat1] = STATE(3373), + [aux_sym_sized_type_specifier_repeat1] = STATE(2300), + [sym_identifier] = ACTIONS(2663), + [anon_sym_LPAREN2] = ACTIONS(2665), + [anon_sym_BANG] = ACTIONS(2667), + [anon_sym_TILDE] = ACTIONS(2667), + [anon_sym_DASH] = ACTIONS(2669), + [anon_sym_PLUS] = ACTIONS(2669), + [anon_sym_STAR] = ACTIONS(2671), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_COLON_COLON] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2675), + [anon_sym_unsigned] = ACTIONS(2675), + [anon_sym_long] = ACTIONS(2675), + [anon_sym_short] = ACTIONS(2675), + [sym_primitive_type] = ACTIONS(2677), + [anon_sym_enum] = ACTIONS(2679), + [anon_sym_class] = ACTIONS(2681), + [anon_sym_struct] = ACTIONS(2683), + [anon_sym_union] = ACTIONS(2685), + [anon_sym_not] = ACTIONS(2669), + [anon_sym_compl] = ACTIONS(2669), + [anon_sym_DASH_DASH] = ACTIONS(2687), + [anon_sym_PLUS_PLUS] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2689), + [sym_number_literal] = ACTIONS(2691), + [anon_sym_L_SQUOTE] = ACTIONS(2693), + [anon_sym_u_SQUOTE] = ACTIONS(2693), + [anon_sym_U_SQUOTE] = ACTIONS(2693), + [anon_sym_u8_SQUOTE] = ACTIONS(2693), + [anon_sym_SQUOTE] = ACTIONS(2693), + [anon_sym_L_DQUOTE] = ACTIONS(2695), + [anon_sym_u_DQUOTE] = ACTIONS(2695), + [anon_sym_U_DQUOTE] = ACTIONS(2695), + [anon_sym_u8_DQUOTE] = ACTIONS(2695), + [anon_sym_DQUOTE] = ACTIONS(2695), + [sym_true] = ACTIONS(2697), + [sym_false] = ACTIONS(2697), + [sym_null] = ACTIONS(2697), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2699), + [anon_sym_decltype] = ACTIONS(2701), + [anon_sym_typename] = ACTIONS(2703), + [anon_sym_template] = ACTIONS(976), + [anon_sym_GT2] = ACTIONS(2901), + [anon_sym_delete] = ACTIONS(2707), + [anon_sym_co_await] = ACTIONS(2709), + [anon_sym_new] = ACTIONS(2711), + [anon_sym_requires] = ACTIONS(2713), + [sym_this] = ACTIONS(2697), + [sym_nullptr] = ACTIONS(2697), + [sym_raw_string_literal] = ACTIONS(2715), }, - [820] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_RBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), + [535] = { + [sym_identifier] = ACTIONS(2903), + [aux_sym_preproc_include_token1] = ACTIONS(2903), + [aux_sym_preproc_def_token1] = ACTIONS(2903), + [aux_sym_preproc_if_token1] = ACTIONS(2903), + [aux_sym_preproc_if_token2] = ACTIONS(2903), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2903), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2903), + [aux_sym_preproc_else_token1] = ACTIONS(2903), + [aux_sym_preproc_elif_token1] = ACTIONS(2903), + [sym_preproc_directive] = ACTIONS(2903), + [anon_sym_LPAREN2] = ACTIONS(2905), + [anon_sym_BANG] = ACTIONS(2905), + [anon_sym_TILDE] = ACTIONS(2905), + [anon_sym_DASH] = ACTIONS(2903), + [anon_sym_PLUS] = ACTIONS(2903), + [anon_sym_STAR] = ACTIONS(2905), + [anon_sym_AMP_AMP] = ACTIONS(2905), + [anon_sym_AMP] = ACTIONS(2903), + [anon_sym_SEMI] = ACTIONS(2905), + [anon_sym_typedef] = ACTIONS(2903), + [anon_sym_extern] = ACTIONS(2903), + [anon_sym___attribute__] = ACTIONS(2903), + [anon_sym_COLON_COLON] = ACTIONS(2905), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2905), + [anon_sym___declspec] = ACTIONS(2903), + [anon_sym___based] = ACTIONS(2903), + [anon_sym___cdecl] = ACTIONS(2903), + [anon_sym___clrcall] = ACTIONS(2903), + [anon_sym___stdcall] = ACTIONS(2903), + [anon_sym___fastcall] = ACTIONS(2903), + [anon_sym___thiscall] = ACTIONS(2903), + [anon_sym___vectorcall] = ACTIONS(2903), + [anon_sym_LBRACE] = ACTIONS(2905), + [anon_sym_LBRACK] = ACTIONS(2903), + [anon_sym_static] = ACTIONS(2903), + [anon_sym_register] = ACTIONS(2903), + [anon_sym_inline] = ACTIONS(2903), + [anon_sym_thread_local] = ACTIONS(2903), + [anon_sym_const] = ACTIONS(2903), + [anon_sym_volatile] = ACTIONS(2903), + [anon_sym_restrict] = ACTIONS(2903), + [anon_sym__Atomic] = ACTIONS(2903), + [anon_sym_mutable] = ACTIONS(2903), + [anon_sym_constexpr] = ACTIONS(2903), + [anon_sym_constinit] = ACTIONS(2903), + [anon_sym_consteval] = ACTIONS(2903), + [anon_sym_signed] = ACTIONS(2903), + [anon_sym_unsigned] = ACTIONS(2903), + [anon_sym_long] = ACTIONS(2903), + [anon_sym_short] = ACTIONS(2903), + [sym_primitive_type] = ACTIONS(2903), + [anon_sym_enum] = ACTIONS(2903), + [anon_sym_class] = ACTIONS(2903), + [anon_sym_struct] = ACTIONS(2903), + [anon_sym_union] = ACTIONS(2903), + [anon_sym_if] = ACTIONS(2903), + [anon_sym_switch] = ACTIONS(2903), + [anon_sym_case] = ACTIONS(2903), + [anon_sym_default] = ACTIONS(2903), + [anon_sym_while] = ACTIONS(2903), + [anon_sym_do] = ACTIONS(2903), + [anon_sym_for] = ACTIONS(2903), + [anon_sym_return] = ACTIONS(2903), + [anon_sym_break] = ACTIONS(2903), + [anon_sym_continue] = ACTIONS(2903), + [anon_sym_goto] = ACTIONS(2903), + [anon_sym_not] = ACTIONS(2903), + [anon_sym_compl] = ACTIONS(2903), + [anon_sym_DASH_DASH] = ACTIONS(2905), + [anon_sym_PLUS_PLUS] = ACTIONS(2905), + [anon_sym_sizeof] = ACTIONS(2903), + [sym_number_literal] = ACTIONS(2905), + [anon_sym_L_SQUOTE] = ACTIONS(2905), + [anon_sym_u_SQUOTE] = ACTIONS(2905), + [anon_sym_U_SQUOTE] = ACTIONS(2905), + [anon_sym_u8_SQUOTE] = ACTIONS(2905), + [anon_sym_SQUOTE] = ACTIONS(2905), + [anon_sym_L_DQUOTE] = ACTIONS(2905), + [anon_sym_u_DQUOTE] = ACTIONS(2905), + [anon_sym_U_DQUOTE] = ACTIONS(2905), + [anon_sym_u8_DQUOTE] = ACTIONS(2905), + [anon_sym_DQUOTE] = ACTIONS(2905), + [sym_true] = ACTIONS(2903), + [sym_false] = ACTIONS(2903), + [sym_null] = ACTIONS(2903), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2903), + [anon_sym_decltype] = ACTIONS(2903), + [anon_sym_virtual] = ACTIONS(2903), + [anon_sym_explicit] = ACTIONS(2903), + [anon_sym_typename] = ACTIONS(2903), + [anon_sym_template] = ACTIONS(2903), + [anon_sym_operator] = ACTIONS(2903), + [anon_sym_try] = ACTIONS(2903), + [anon_sym_delete] = ACTIONS(2903), + [anon_sym_throw] = ACTIONS(2903), + [anon_sym_namespace] = ACTIONS(2903), + [anon_sym_using] = ACTIONS(2903), + [anon_sym_static_assert] = ACTIONS(2903), + [anon_sym_concept] = ACTIONS(2903), + [anon_sym_co_return] = ACTIONS(2903), + [anon_sym_co_yield] = ACTIONS(2903), + [anon_sym_co_await] = ACTIONS(2903), + [anon_sym_new] = ACTIONS(2903), + [anon_sym_requires] = ACTIONS(2903), + [sym_this] = ACTIONS(2903), + [sym_nullptr] = ACTIONS(2903), + [sym_raw_string_literal] = ACTIONS(2905), }, - [821] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_RBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), + [536] = { + [sym_identifier] = ACTIONS(2907), + [aux_sym_preproc_include_token1] = ACTIONS(2907), + [aux_sym_preproc_def_token1] = ACTIONS(2907), + [aux_sym_preproc_if_token1] = ACTIONS(2907), + [aux_sym_preproc_if_token2] = ACTIONS(2907), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2907), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2907), + [aux_sym_preproc_else_token1] = ACTIONS(2907), + [aux_sym_preproc_elif_token1] = ACTIONS(2907), + [sym_preproc_directive] = ACTIONS(2907), + [anon_sym_LPAREN2] = ACTIONS(2909), + [anon_sym_BANG] = ACTIONS(2909), + [anon_sym_TILDE] = ACTIONS(2909), + [anon_sym_DASH] = ACTIONS(2907), + [anon_sym_PLUS] = ACTIONS(2907), + [anon_sym_STAR] = ACTIONS(2909), + [anon_sym_AMP_AMP] = ACTIONS(2909), + [anon_sym_AMP] = ACTIONS(2907), + [anon_sym_SEMI] = ACTIONS(2909), + [anon_sym_typedef] = ACTIONS(2907), + [anon_sym_extern] = ACTIONS(2907), + [anon_sym___attribute__] = ACTIONS(2907), + [anon_sym_COLON_COLON] = ACTIONS(2909), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2909), + [anon_sym___declspec] = ACTIONS(2907), + [anon_sym___based] = ACTIONS(2907), + [anon_sym___cdecl] = ACTIONS(2907), + [anon_sym___clrcall] = ACTIONS(2907), + [anon_sym___stdcall] = ACTIONS(2907), + [anon_sym___fastcall] = ACTIONS(2907), + [anon_sym___thiscall] = ACTIONS(2907), + [anon_sym___vectorcall] = ACTIONS(2907), + [anon_sym_LBRACE] = ACTIONS(2909), + [anon_sym_LBRACK] = ACTIONS(2907), + [anon_sym_static] = ACTIONS(2907), + [anon_sym_register] = ACTIONS(2907), + [anon_sym_inline] = ACTIONS(2907), + [anon_sym_thread_local] = ACTIONS(2907), + [anon_sym_const] = ACTIONS(2907), + [anon_sym_volatile] = ACTIONS(2907), + [anon_sym_restrict] = ACTIONS(2907), + [anon_sym__Atomic] = ACTIONS(2907), + [anon_sym_mutable] = ACTIONS(2907), + [anon_sym_constexpr] = ACTIONS(2907), + [anon_sym_constinit] = ACTIONS(2907), + [anon_sym_consteval] = ACTIONS(2907), + [anon_sym_signed] = ACTIONS(2907), + [anon_sym_unsigned] = ACTIONS(2907), + [anon_sym_long] = ACTIONS(2907), + [anon_sym_short] = ACTIONS(2907), + [sym_primitive_type] = ACTIONS(2907), + [anon_sym_enum] = ACTIONS(2907), + [anon_sym_class] = ACTIONS(2907), + [anon_sym_struct] = ACTIONS(2907), + [anon_sym_union] = ACTIONS(2907), + [anon_sym_if] = ACTIONS(2907), + [anon_sym_switch] = ACTIONS(2907), + [anon_sym_case] = ACTIONS(2907), + [anon_sym_default] = ACTIONS(2907), + [anon_sym_while] = ACTIONS(2907), + [anon_sym_do] = ACTIONS(2907), + [anon_sym_for] = ACTIONS(2907), + [anon_sym_return] = ACTIONS(2907), + [anon_sym_break] = ACTIONS(2907), + [anon_sym_continue] = ACTIONS(2907), + [anon_sym_goto] = ACTIONS(2907), + [anon_sym_not] = ACTIONS(2907), + [anon_sym_compl] = ACTIONS(2907), + [anon_sym_DASH_DASH] = ACTIONS(2909), + [anon_sym_PLUS_PLUS] = ACTIONS(2909), + [anon_sym_sizeof] = ACTIONS(2907), + [sym_number_literal] = ACTIONS(2909), + [anon_sym_L_SQUOTE] = ACTIONS(2909), + [anon_sym_u_SQUOTE] = ACTIONS(2909), + [anon_sym_U_SQUOTE] = ACTIONS(2909), + [anon_sym_u8_SQUOTE] = ACTIONS(2909), + [anon_sym_SQUOTE] = ACTIONS(2909), + [anon_sym_L_DQUOTE] = ACTIONS(2909), + [anon_sym_u_DQUOTE] = ACTIONS(2909), + [anon_sym_U_DQUOTE] = ACTIONS(2909), + [anon_sym_u8_DQUOTE] = ACTIONS(2909), + [anon_sym_DQUOTE] = ACTIONS(2909), + [sym_true] = ACTIONS(2907), + [sym_false] = ACTIONS(2907), + [sym_null] = ACTIONS(2907), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2907), + [anon_sym_decltype] = ACTIONS(2907), + [anon_sym_virtual] = ACTIONS(2907), + [anon_sym_explicit] = ACTIONS(2907), + [anon_sym_typename] = ACTIONS(2907), + [anon_sym_template] = ACTIONS(2907), + [anon_sym_operator] = ACTIONS(2907), + [anon_sym_try] = ACTIONS(2907), + [anon_sym_delete] = ACTIONS(2907), + [anon_sym_throw] = ACTIONS(2907), + [anon_sym_namespace] = ACTIONS(2907), + [anon_sym_using] = ACTIONS(2907), + [anon_sym_static_assert] = ACTIONS(2907), + [anon_sym_concept] = ACTIONS(2907), + [anon_sym_co_return] = ACTIONS(2907), + [anon_sym_co_yield] = ACTIONS(2907), + [anon_sym_co_await] = ACTIONS(2907), + [anon_sym_new] = ACTIONS(2907), + [anon_sym_requires] = ACTIONS(2907), + [sym_this] = ACTIONS(2907), + [sym_nullptr] = ACTIONS(2907), + [sym_raw_string_literal] = ACTIONS(2909), }, - [822] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_RBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), + [537] = { + [sym_identifier] = ACTIONS(2911), + [aux_sym_preproc_include_token1] = ACTIONS(2911), + [aux_sym_preproc_def_token1] = ACTIONS(2911), + [aux_sym_preproc_if_token1] = ACTIONS(2911), + [aux_sym_preproc_if_token2] = ACTIONS(2911), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2911), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2911), + [aux_sym_preproc_else_token1] = ACTIONS(2911), + [aux_sym_preproc_elif_token1] = ACTIONS(2911), + [sym_preproc_directive] = ACTIONS(2911), + [anon_sym_LPAREN2] = ACTIONS(2913), + [anon_sym_BANG] = ACTIONS(2913), + [anon_sym_TILDE] = ACTIONS(2913), + [anon_sym_DASH] = ACTIONS(2911), + [anon_sym_PLUS] = ACTIONS(2911), + [anon_sym_STAR] = ACTIONS(2913), + [anon_sym_AMP_AMP] = ACTIONS(2913), + [anon_sym_AMP] = ACTIONS(2911), + [anon_sym_SEMI] = ACTIONS(2913), + [anon_sym_typedef] = ACTIONS(2911), + [anon_sym_extern] = ACTIONS(2911), + [anon_sym___attribute__] = ACTIONS(2911), + [anon_sym_COLON_COLON] = ACTIONS(2913), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2913), + [anon_sym___declspec] = ACTIONS(2911), + [anon_sym___based] = ACTIONS(2911), + [anon_sym___cdecl] = ACTIONS(2911), + [anon_sym___clrcall] = ACTIONS(2911), + [anon_sym___stdcall] = ACTIONS(2911), + [anon_sym___fastcall] = ACTIONS(2911), + [anon_sym___thiscall] = ACTIONS(2911), + [anon_sym___vectorcall] = ACTIONS(2911), + [anon_sym_LBRACE] = ACTIONS(2913), + [anon_sym_LBRACK] = ACTIONS(2911), + [anon_sym_static] = ACTIONS(2911), + [anon_sym_register] = ACTIONS(2911), + [anon_sym_inline] = ACTIONS(2911), + [anon_sym_thread_local] = ACTIONS(2911), + [anon_sym_const] = ACTIONS(2911), + [anon_sym_volatile] = ACTIONS(2911), + [anon_sym_restrict] = ACTIONS(2911), + [anon_sym__Atomic] = ACTIONS(2911), + [anon_sym_mutable] = ACTIONS(2911), + [anon_sym_constexpr] = ACTIONS(2911), + [anon_sym_constinit] = ACTIONS(2911), + [anon_sym_consteval] = ACTIONS(2911), + [anon_sym_signed] = ACTIONS(2911), + [anon_sym_unsigned] = ACTIONS(2911), + [anon_sym_long] = ACTIONS(2911), + [anon_sym_short] = ACTIONS(2911), + [sym_primitive_type] = ACTIONS(2911), + [anon_sym_enum] = ACTIONS(2911), + [anon_sym_class] = ACTIONS(2911), + [anon_sym_struct] = ACTIONS(2911), + [anon_sym_union] = ACTIONS(2911), + [anon_sym_if] = ACTIONS(2911), + [anon_sym_switch] = ACTIONS(2911), + [anon_sym_case] = ACTIONS(2911), + [anon_sym_default] = ACTIONS(2911), + [anon_sym_while] = ACTIONS(2911), + [anon_sym_do] = ACTIONS(2911), + [anon_sym_for] = ACTIONS(2911), + [anon_sym_return] = ACTIONS(2911), + [anon_sym_break] = ACTIONS(2911), + [anon_sym_continue] = ACTIONS(2911), + [anon_sym_goto] = ACTIONS(2911), + [anon_sym_not] = ACTIONS(2911), + [anon_sym_compl] = ACTIONS(2911), + [anon_sym_DASH_DASH] = ACTIONS(2913), + [anon_sym_PLUS_PLUS] = ACTIONS(2913), + [anon_sym_sizeof] = ACTIONS(2911), + [sym_number_literal] = ACTIONS(2913), + [anon_sym_L_SQUOTE] = ACTIONS(2913), + [anon_sym_u_SQUOTE] = ACTIONS(2913), + [anon_sym_U_SQUOTE] = ACTIONS(2913), + [anon_sym_u8_SQUOTE] = ACTIONS(2913), + [anon_sym_SQUOTE] = ACTIONS(2913), + [anon_sym_L_DQUOTE] = ACTIONS(2913), + [anon_sym_u_DQUOTE] = ACTIONS(2913), + [anon_sym_U_DQUOTE] = ACTIONS(2913), + [anon_sym_u8_DQUOTE] = ACTIONS(2913), + [anon_sym_DQUOTE] = ACTIONS(2913), + [sym_true] = ACTIONS(2911), + [sym_false] = ACTIONS(2911), + [sym_null] = ACTIONS(2911), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2911), + [anon_sym_decltype] = ACTIONS(2911), + [anon_sym_virtual] = ACTIONS(2911), + [anon_sym_explicit] = ACTIONS(2911), + [anon_sym_typename] = ACTIONS(2911), + [anon_sym_template] = ACTIONS(2911), + [anon_sym_operator] = ACTIONS(2911), + [anon_sym_try] = ACTIONS(2911), + [anon_sym_delete] = ACTIONS(2911), + [anon_sym_throw] = ACTIONS(2911), + [anon_sym_namespace] = ACTIONS(2911), + [anon_sym_using] = ACTIONS(2911), + [anon_sym_static_assert] = ACTIONS(2911), + [anon_sym_concept] = ACTIONS(2911), + [anon_sym_co_return] = ACTIONS(2911), + [anon_sym_co_yield] = ACTIONS(2911), + [anon_sym_co_await] = ACTIONS(2911), + [anon_sym_new] = ACTIONS(2911), + [anon_sym_requires] = ACTIONS(2911), + [sym_this] = ACTIONS(2911), + [sym_nullptr] = ACTIONS(2911), + [sym_raw_string_literal] = ACTIONS(2913), }, - [823] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_RBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), + [538] = { + [sym_identifier] = ACTIONS(2915), + [aux_sym_preproc_include_token1] = ACTIONS(2915), + [aux_sym_preproc_def_token1] = ACTIONS(2915), + [aux_sym_preproc_if_token1] = ACTIONS(2915), + [aux_sym_preproc_if_token2] = ACTIONS(2915), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2915), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2915), + [aux_sym_preproc_else_token1] = ACTIONS(2915), + [aux_sym_preproc_elif_token1] = ACTIONS(2915), + [sym_preproc_directive] = ACTIONS(2915), + [anon_sym_LPAREN2] = ACTIONS(2917), + [anon_sym_BANG] = ACTIONS(2917), + [anon_sym_TILDE] = ACTIONS(2917), + [anon_sym_DASH] = ACTIONS(2915), + [anon_sym_PLUS] = ACTIONS(2915), + [anon_sym_STAR] = ACTIONS(2917), + [anon_sym_AMP_AMP] = ACTIONS(2917), + [anon_sym_AMP] = ACTIONS(2915), + [anon_sym_SEMI] = ACTIONS(2917), + [anon_sym_typedef] = ACTIONS(2915), + [anon_sym_extern] = ACTIONS(2915), + [anon_sym___attribute__] = ACTIONS(2915), + [anon_sym_COLON_COLON] = ACTIONS(2917), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2917), + [anon_sym___declspec] = ACTIONS(2915), + [anon_sym___based] = ACTIONS(2915), + [anon_sym___cdecl] = ACTIONS(2915), + [anon_sym___clrcall] = ACTIONS(2915), + [anon_sym___stdcall] = ACTIONS(2915), + [anon_sym___fastcall] = ACTIONS(2915), + [anon_sym___thiscall] = ACTIONS(2915), + [anon_sym___vectorcall] = ACTIONS(2915), + [anon_sym_LBRACE] = ACTIONS(2917), + [anon_sym_LBRACK] = ACTIONS(2915), + [anon_sym_static] = ACTIONS(2915), + [anon_sym_register] = ACTIONS(2915), + [anon_sym_inline] = ACTIONS(2915), + [anon_sym_thread_local] = ACTIONS(2915), + [anon_sym_const] = ACTIONS(2915), + [anon_sym_volatile] = ACTIONS(2915), + [anon_sym_restrict] = ACTIONS(2915), + [anon_sym__Atomic] = ACTIONS(2915), + [anon_sym_mutable] = ACTIONS(2915), + [anon_sym_constexpr] = ACTIONS(2915), + [anon_sym_constinit] = ACTIONS(2915), + [anon_sym_consteval] = ACTIONS(2915), + [anon_sym_signed] = ACTIONS(2915), + [anon_sym_unsigned] = ACTIONS(2915), + [anon_sym_long] = ACTIONS(2915), + [anon_sym_short] = ACTIONS(2915), + [sym_primitive_type] = ACTIONS(2915), + [anon_sym_enum] = ACTIONS(2915), + [anon_sym_class] = ACTIONS(2915), + [anon_sym_struct] = ACTIONS(2915), + [anon_sym_union] = ACTIONS(2915), + [anon_sym_if] = ACTIONS(2915), + [anon_sym_switch] = ACTIONS(2915), + [anon_sym_case] = ACTIONS(2915), + [anon_sym_default] = ACTIONS(2915), + [anon_sym_while] = ACTIONS(2915), + [anon_sym_do] = ACTIONS(2915), + [anon_sym_for] = ACTIONS(2915), + [anon_sym_return] = ACTIONS(2915), + [anon_sym_break] = ACTIONS(2915), + [anon_sym_continue] = ACTIONS(2915), + [anon_sym_goto] = ACTIONS(2915), + [anon_sym_not] = ACTIONS(2915), + [anon_sym_compl] = ACTIONS(2915), + [anon_sym_DASH_DASH] = ACTIONS(2917), + [anon_sym_PLUS_PLUS] = ACTIONS(2917), + [anon_sym_sizeof] = ACTIONS(2915), + [sym_number_literal] = ACTIONS(2917), + [anon_sym_L_SQUOTE] = ACTIONS(2917), + [anon_sym_u_SQUOTE] = ACTIONS(2917), + [anon_sym_U_SQUOTE] = ACTIONS(2917), + [anon_sym_u8_SQUOTE] = ACTIONS(2917), + [anon_sym_SQUOTE] = ACTIONS(2917), + [anon_sym_L_DQUOTE] = ACTIONS(2917), + [anon_sym_u_DQUOTE] = ACTIONS(2917), + [anon_sym_U_DQUOTE] = ACTIONS(2917), + [anon_sym_u8_DQUOTE] = ACTIONS(2917), + [anon_sym_DQUOTE] = ACTIONS(2917), + [sym_true] = ACTIONS(2915), + [sym_false] = ACTIONS(2915), + [sym_null] = ACTIONS(2915), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2915), + [anon_sym_decltype] = ACTIONS(2915), + [anon_sym_virtual] = ACTIONS(2915), + [anon_sym_explicit] = ACTIONS(2915), + [anon_sym_typename] = ACTIONS(2915), + [anon_sym_template] = ACTIONS(2915), + [anon_sym_operator] = ACTIONS(2915), + [anon_sym_try] = ACTIONS(2915), + [anon_sym_delete] = ACTIONS(2915), + [anon_sym_throw] = ACTIONS(2915), + [anon_sym_namespace] = ACTIONS(2915), + [anon_sym_using] = ACTIONS(2915), + [anon_sym_static_assert] = ACTIONS(2915), + [anon_sym_concept] = ACTIONS(2915), + [anon_sym_co_return] = ACTIONS(2915), + [anon_sym_co_yield] = ACTIONS(2915), + [anon_sym_co_await] = ACTIONS(2915), + [anon_sym_new] = ACTIONS(2915), + [anon_sym_requires] = ACTIONS(2915), + [sym_this] = ACTIONS(2915), + [sym_nullptr] = ACTIONS(2915), + [sym_raw_string_literal] = ACTIONS(2917), }, - [824] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_RBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), + [539] = { + [sym_identifier] = ACTIONS(2919), + [aux_sym_preproc_include_token1] = ACTIONS(2919), + [aux_sym_preproc_def_token1] = ACTIONS(2919), + [aux_sym_preproc_if_token1] = ACTIONS(2919), + [aux_sym_preproc_if_token2] = ACTIONS(2919), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2919), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2919), + [aux_sym_preproc_else_token1] = ACTIONS(2919), + [aux_sym_preproc_elif_token1] = ACTIONS(2919), + [sym_preproc_directive] = ACTIONS(2919), + [anon_sym_LPAREN2] = ACTIONS(2921), + [anon_sym_BANG] = ACTIONS(2921), + [anon_sym_TILDE] = ACTIONS(2921), + [anon_sym_DASH] = ACTIONS(2919), + [anon_sym_PLUS] = ACTIONS(2919), + [anon_sym_STAR] = ACTIONS(2921), + [anon_sym_AMP_AMP] = ACTIONS(2921), + [anon_sym_AMP] = ACTIONS(2919), + [anon_sym_SEMI] = ACTIONS(2921), + [anon_sym_typedef] = ACTIONS(2919), + [anon_sym_extern] = ACTIONS(2919), + [anon_sym___attribute__] = ACTIONS(2919), + [anon_sym_COLON_COLON] = ACTIONS(2921), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2921), + [anon_sym___declspec] = ACTIONS(2919), + [anon_sym___based] = ACTIONS(2919), + [anon_sym___cdecl] = ACTIONS(2919), + [anon_sym___clrcall] = ACTIONS(2919), + [anon_sym___stdcall] = ACTIONS(2919), + [anon_sym___fastcall] = ACTIONS(2919), + [anon_sym___thiscall] = ACTIONS(2919), + [anon_sym___vectorcall] = ACTIONS(2919), + [anon_sym_LBRACE] = ACTIONS(2921), + [anon_sym_LBRACK] = ACTIONS(2919), + [anon_sym_static] = ACTIONS(2919), + [anon_sym_register] = ACTIONS(2919), + [anon_sym_inline] = ACTIONS(2919), + [anon_sym_thread_local] = ACTIONS(2919), + [anon_sym_const] = ACTIONS(2919), + [anon_sym_volatile] = ACTIONS(2919), + [anon_sym_restrict] = ACTIONS(2919), + [anon_sym__Atomic] = ACTIONS(2919), + [anon_sym_mutable] = ACTIONS(2919), + [anon_sym_constexpr] = ACTIONS(2919), + [anon_sym_constinit] = ACTIONS(2919), + [anon_sym_consteval] = ACTIONS(2919), + [anon_sym_signed] = ACTIONS(2919), + [anon_sym_unsigned] = ACTIONS(2919), + [anon_sym_long] = ACTIONS(2919), + [anon_sym_short] = ACTIONS(2919), + [sym_primitive_type] = ACTIONS(2919), + [anon_sym_enum] = ACTIONS(2919), + [anon_sym_class] = ACTIONS(2919), + [anon_sym_struct] = ACTIONS(2919), + [anon_sym_union] = ACTIONS(2919), + [anon_sym_if] = ACTIONS(2919), + [anon_sym_switch] = ACTIONS(2919), + [anon_sym_case] = ACTIONS(2919), + [anon_sym_default] = ACTIONS(2919), + [anon_sym_while] = ACTIONS(2919), + [anon_sym_do] = ACTIONS(2919), + [anon_sym_for] = ACTIONS(2919), + [anon_sym_return] = ACTIONS(2919), + [anon_sym_break] = ACTIONS(2919), + [anon_sym_continue] = ACTIONS(2919), + [anon_sym_goto] = ACTIONS(2919), + [anon_sym_not] = ACTIONS(2919), + [anon_sym_compl] = ACTIONS(2919), + [anon_sym_DASH_DASH] = ACTIONS(2921), + [anon_sym_PLUS_PLUS] = ACTIONS(2921), + [anon_sym_sizeof] = ACTIONS(2919), + [sym_number_literal] = ACTIONS(2921), + [anon_sym_L_SQUOTE] = ACTIONS(2921), + [anon_sym_u_SQUOTE] = ACTIONS(2921), + [anon_sym_U_SQUOTE] = ACTIONS(2921), + [anon_sym_u8_SQUOTE] = ACTIONS(2921), + [anon_sym_SQUOTE] = ACTIONS(2921), + [anon_sym_L_DQUOTE] = ACTIONS(2921), + [anon_sym_u_DQUOTE] = ACTIONS(2921), + [anon_sym_U_DQUOTE] = ACTIONS(2921), + [anon_sym_u8_DQUOTE] = ACTIONS(2921), + [anon_sym_DQUOTE] = ACTIONS(2921), + [sym_true] = ACTIONS(2919), + [sym_false] = ACTIONS(2919), + [sym_null] = ACTIONS(2919), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2919), + [anon_sym_decltype] = ACTIONS(2919), + [anon_sym_virtual] = ACTIONS(2919), + [anon_sym_explicit] = ACTIONS(2919), + [anon_sym_typename] = ACTIONS(2919), + [anon_sym_template] = ACTIONS(2919), + [anon_sym_operator] = ACTIONS(2919), + [anon_sym_try] = ACTIONS(2919), + [anon_sym_delete] = ACTIONS(2919), + [anon_sym_throw] = ACTIONS(2919), + [anon_sym_namespace] = ACTIONS(2919), + [anon_sym_using] = ACTIONS(2919), + [anon_sym_static_assert] = ACTIONS(2919), + [anon_sym_concept] = ACTIONS(2919), + [anon_sym_co_return] = ACTIONS(2919), + [anon_sym_co_yield] = ACTIONS(2919), + [anon_sym_co_await] = ACTIONS(2919), + [anon_sym_new] = ACTIONS(2919), + [anon_sym_requires] = ACTIONS(2919), + [sym_this] = ACTIONS(2919), + [sym_nullptr] = ACTIONS(2919), + [sym_raw_string_literal] = ACTIONS(2921), }, - [825] = { - [sym_identifier] = ACTIONS(2515), - [aux_sym_preproc_include_token1] = ACTIONS(2515), - [aux_sym_preproc_def_token1] = ACTIONS(2515), - [aux_sym_preproc_if_token1] = ACTIONS(2515), - [aux_sym_preproc_if_token2] = ACTIONS(2515), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2515), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2515), - [sym_preproc_directive] = ACTIONS(2515), - [anon_sym_LPAREN2] = ACTIONS(2517), - [anon_sym_BANG] = ACTIONS(2517), - [anon_sym_TILDE] = ACTIONS(2517), - [anon_sym_DASH] = ACTIONS(2515), - [anon_sym_PLUS] = ACTIONS(2515), - [anon_sym_STAR] = ACTIONS(2517), - [anon_sym_AMP_AMP] = ACTIONS(2517), - [anon_sym_AMP] = ACTIONS(2515), - [anon_sym_SEMI] = ACTIONS(2517), - [anon_sym_typedef] = ACTIONS(2515), - [anon_sym_extern] = ACTIONS(2515), - [anon_sym___attribute__] = ACTIONS(2515), - [anon_sym_COLON_COLON] = ACTIONS(2517), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2517), - [anon_sym___declspec] = ACTIONS(2515), - [anon_sym___based] = ACTIONS(2515), - [anon_sym___cdecl] = ACTIONS(2515), - [anon_sym___clrcall] = ACTIONS(2515), - [anon_sym___stdcall] = ACTIONS(2515), - [anon_sym___fastcall] = ACTIONS(2515), - [anon_sym___thiscall] = ACTIONS(2515), - [anon_sym___vectorcall] = ACTIONS(2515), - [anon_sym_LBRACE] = ACTIONS(2517), - [anon_sym_LBRACK] = ACTIONS(2515), - [anon_sym_static] = ACTIONS(2515), - [anon_sym_register] = ACTIONS(2515), - [anon_sym_inline] = ACTIONS(2515), - [anon_sym_thread_local] = ACTIONS(2515), - [anon_sym_const] = ACTIONS(2515), - [anon_sym_volatile] = ACTIONS(2515), - [anon_sym_restrict] = ACTIONS(2515), - [anon_sym__Atomic] = ACTIONS(2515), - [anon_sym_mutable] = ACTIONS(2515), - [anon_sym_constexpr] = ACTIONS(2515), - [anon_sym_constinit] = ACTIONS(2515), - [anon_sym_consteval] = ACTIONS(2515), - [anon_sym_signed] = ACTIONS(2515), - [anon_sym_unsigned] = ACTIONS(2515), - [anon_sym_long] = ACTIONS(2515), - [anon_sym_short] = ACTIONS(2515), - [sym_primitive_type] = ACTIONS(2515), - [anon_sym_enum] = ACTIONS(2515), - [anon_sym_class] = ACTIONS(2515), - [anon_sym_struct] = ACTIONS(2515), - [anon_sym_union] = ACTIONS(2515), - [anon_sym_if] = ACTIONS(2515), - [anon_sym_else] = ACTIONS(2515), - [anon_sym_switch] = ACTIONS(2515), - [anon_sym_case] = ACTIONS(2515), - [anon_sym_default] = ACTIONS(2515), - [anon_sym_while] = ACTIONS(2515), - [anon_sym_do] = ACTIONS(2515), - [anon_sym_for] = ACTIONS(2515), - [anon_sym_return] = ACTIONS(2515), - [anon_sym_break] = ACTIONS(2515), - [anon_sym_continue] = ACTIONS(2515), - [anon_sym_goto] = ACTIONS(2515), - [anon_sym_DASH_DASH] = ACTIONS(2517), - [anon_sym_PLUS_PLUS] = ACTIONS(2517), - [anon_sym_sizeof] = ACTIONS(2515), - [sym_number_literal] = ACTIONS(2517), - [anon_sym_L_SQUOTE] = ACTIONS(2517), - [anon_sym_u_SQUOTE] = ACTIONS(2517), - [anon_sym_U_SQUOTE] = ACTIONS(2517), - [anon_sym_u8_SQUOTE] = ACTIONS(2517), - [anon_sym_SQUOTE] = ACTIONS(2517), - [anon_sym_L_DQUOTE] = ACTIONS(2517), - [anon_sym_u_DQUOTE] = ACTIONS(2517), - [anon_sym_U_DQUOTE] = ACTIONS(2517), - [anon_sym_u8_DQUOTE] = ACTIONS(2517), - [anon_sym_DQUOTE] = ACTIONS(2517), - [sym_true] = ACTIONS(2515), - [sym_false] = ACTIONS(2515), - [sym_null] = ACTIONS(2515), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2515), - [anon_sym_decltype] = ACTIONS(2515), - [anon_sym_virtual] = ACTIONS(2515), - [anon_sym_explicit] = ACTIONS(2515), - [anon_sym_typename] = ACTIONS(2515), - [anon_sym_template] = ACTIONS(2515), - [anon_sym_operator] = ACTIONS(2515), - [anon_sym_try] = ACTIONS(2515), - [anon_sym_delete] = ACTIONS(2515), - [anon_sym_throw] = ACTIONS(2515), - [anon_sym_namespace] = ACTIONS(2515), - [anon_sym_using] = ACTIONS(2515), - [anon_sym_static_assert] = ACTIONS(2515), - [anon_sym_concept] = ACTIONS(2515), - [anon_sym_co_return] = ACTIONS(2515), - [anon_sym_co_yield] = ACTIONS(2515), - [anon_sym_co_await] = ACTIONS(2515), - [anon_sym_new] = ACTIONS(2515), - [anon_sym_requires] = ACTIONS(2515), - [sym_this] = ACTIONS(2515), - [sym_nullptr] = ACTIONS(2515), - [sym_raw_string_literal] = ACTIONS(2517), + [540] = { + [sym_identifier] = ACTIONS(2923), + [aux_sym_preproc_include_token1] = ACTIONS(2923), + [aux_sym_preproc_def_token1] = ACTIONS(2923), + [aux_sym_preproc_if_token1] = ACTIONS(2923), + [aux_sym_preproc_if_token2] = ACTIONS(2923), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2923), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2923), + [aux_sym_preproc_else_token1] = ACTIONS(2923), + [aux_sym_preproc_elif_token1] = ACTIONS(2923), + [sym_preproc_directive] = ACTIONS(2923), + [anon_sym_LPAREN2] = ACTIONS(2925), + [anon_sym_BANG] = ACTIONS(2925), + [anon_sym_TILDE] = ACTIONS(2925), + [anon_sym_DASH] = ACTIONS(2923), + [anon_sym_PLUS] = ACTIONS(2923), + [anon_sym_STAR] = ACTIONS(2925), + [anon_sym_AMP_AMP] = ACTIONS(2925), + [anon_sym_AMP] = ACTIONS(2923), + [anon_sym_SEMI] = ACTIONS(2925), + [anon_sym_typedef] = ACTIONS(2923), + [anon_sym_extern] = ACTIONS(2923), + [anon_sym___attribute__] = ACTIONS(2923), + [anon_sym_COLON_COLON] = ACTIONS(2925), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2925), + [anon_sym___declspec] = ACTIONS(2923), + [anon_sym___based] = ACTIONS(2923), + [anon_sym___cdecl] = ACTIONS(2923), + [anon_sym___clrcall] = ACTIONS(2923), + [anon_sym___stdcall] = ACTIONS(2923), + [anon_sym___fastcall] = ACTIONS(2923), + [anon_sym___thiscall] = ACTIONS(2923), + [anon_sym___vectorcall] = ACTIONS(2923), + [anon_sym_LBRACE] = ACTIONS(2925), + [anon_sym_LBRACK] = ACTIONS(2923), + [anon_sym_static] = ACTIONS(2923), + [anon_sym_register] = ACTIONS(2923), + [anon_sym_inline] = ACTIONS(2923), + [anon_sym_thread_local] = ACTIONS(2923), + [anon_sym_const] = ACTIONS(2923), + [anon_sym_volatile] = ACTIONS(2923), + [anon_sym_restrict] = ACTIONS(2923), + [anon_sym__Atomic] = ACTIONS(2923), + [anon_sym_mutable] = ACTIONS(2923), + [anon_sym_constexpr] = ACTIONS(2923), + [anon_sym_constinit] = ACTIONS(2923), + [anon_sym_consteval] = ACTIONS(2923), + [anon_sym_signed] = ACTIONS(2923), + [anon_sym_unsigned] = ACTIONS(2923), + [anon_sym_long] = ACTIONS(2923), + [anon_sym_short] = ACTIONS(2923), + [sym_primitive_type] = ACTIONS(2923), + [anon_sym_enum] = ACTIONS(2923), + [anon_sym_class] = ACTIONS(2923), + [anon_sym_struct] = ACTIONS(2923), + [anon_sym_union] = ACTIONS(2923), + [anon_sym_if] = ACTIONS(2923), + [anon_sym_switch] = ACTIONS(2923), + [anon_sym_case] = ACTIONS(2923), + [anon_sym_default] = ACTIONS(2923), + [anon_sym_while] = ACTIONS(2923), + [anon_sym_do] = ACTIONS(2923), + [anon_sym_for] = ACTIONS(2923), + [anon_sym_return] = ACTIONS(2923), + [anon_sym_break] = ACTIONS(2923), + [anon_sym_continue] = ACTIONS(2923), + [anon_sym_goto] = ACTIONS(2923), + [anon_sym_not] = ACTIONS(2923), + [anon_sym_compl] = ACTIONS(2923), + [anon_sym_DASH_DASH] = ACTIONS(2925), + [anon_sym_PLUS_PLUS] = ACTIONS(2925), + [anon_sym_sizeof] = ACTIONS(2923), + [sym_number_literal] = ACTIONS(2925), + [anon_sym_L_SQUOTE] = ACTIONS(2925), + [anon_sym_u_SQUOTE] = ACTIONS(2925), + [anon_sym_U_SQUOTE] = ACTIONS(2925), + [anon_sym_u8_SQUOTE] = ACTIONS(2925), + [anon_sym_SQUOTE] = ACTIONS(2925), + [anon_sym_L_DQUOTE] = ACTIONS(2925), + [anon_sym_u_DQUOTE] = ACTIONS(2925), + [anon_sym_U_DQUOTE] = ACTIONS(2925), + [anon_sym_u8_DQUOTE] = ACTIONS(2925), + [anon_sym_DQUOTE] = ACTIONS(2925), + [sym_true] = ACTIONS(2923), + [sym_false] = ACTIONS(2923), + [sym_null] = ACTIONS(2923), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2923), + [anon_sym_decltype] = ACTIONS(2923), + [anon_sym_virtual] = ACTIONS(2923), + [anon_sym_explicit] = ACTIONS(2923), + [anon_sym_typename] = ACTIONS(2923), + [anon_sym_template] = ACTIONS(2923), + [anon_sym_operator] = ACTIONS(2923), + [anon_sym_try] = ACTIONS(2923), + [anon_sym_delete] = ACTIONS(2923), + [anon_sym_throw] = ACTIONS(2923), + [anon_sym_namespace] = ACTIONS(2923), + [anon_sym_using] = ACTIONS(2923), + [anon_sym_static_assert] = ACTIONS(2923), + [anon_sym_concept] = ACTIONS(2923), + [anon_sym_co_return] = ACTIONS(2923), + [anon_sym_co_yield] = ACTIONS(2923), + [anon_sym_co_await] = ACTIONS(2923), + [anon_sym_new] = ACTIONS(2923), + [anon_sym_requires] = ACTIONS(2923), + [sym_this] = ACTIONS(2923), + [sym_nullptr] = ACTIONS(2923), + [sym_raw_string_literal] = ACTIONS(2925), }, - [826] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_RBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), + [541] = { + [sym_type_qualifier] = STATE(3373), + [sym__type_specifier] = STATE(4189), + [sym_sized_type_specifier] = STATE(3139), + [sym_enum_specifier] = STATE(3139), + [sym_struct_specifier] = STATE(3139), + [sym_union_specifier] = STATE(3139), + [sym__expression] = STATE(3627), + [sym_conditional_expression] = STATE(3865), + [sym_assignment_expression] = STATE(3865), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3865), + [sym_binary_expression] = STATE(3865), + [sym_update_expression] = STATE(3865), + [sym_cast_expression] = STATE(3865), + [sym_type_descriptor] = STATE(5542), + [sym_sizeof_expression] = STATE(3865), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3865), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3707), + [sym_concatenated_string] = STATE(3707), + [sym_string_literal] = STATE(3250), + [sym_placeholder_type_specifier] = STATE(3139), + [sym_decltype_auto] = STATE(3138), + [sym_decltype] = STATE(3139), + [sym_class_specifier] = STATE(3139), + [sym__class_name] = STATE(6539), + [sym_dependent_type] = STATE(3139), + [sym_template_type] = STATE(4443), + [sym_template_function] = STATE(3865), + [sym_co_await_expression] = STATE(3865), + [sym_new_expression] = STATE(3865), + [sym_delete_expression] = STATE(3865), + [sym_requires_clause] = STATE(3865), + [sym_requires_expression] = STATE(3865), + [sym_lambda_expression] = STATE(3865), + [sym_lambda_capture_specifier] = STATE(4789), + [sym_fold_expression] = STATE(3865), + [sym_parameter_pack_expansion] = STATE(3865), + [sym_type_parameter_pack_expansion] = STATE(5932), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4919), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(4514), + [sym_user_defined_literal] = STATE(3865), + [aux_sym_type_definition_repeat1] = STATE(3373), + [aux_sym_sized_type_specifier_repeat1] = STATE(2300), + [sym_identifier] = ACTIONS(2663), + [anon_sym_LPAREN2] = ACTIONS(2665), + [anon_sym_BANG] = ACTIONS(2667), + [anon_sym_TILDE] = ACTIONS(2667), + [anon_sym_DASH] = ACTIONS(2669), + [anon_sym_PLUS] = ACTIONS(2669), + [anon_sym_STAR] = ACTIONS(2671), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_COLON_COLON] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2675), + [anon_sym_unsigned] = ACTIONS(2675), + [anon_sym_long] = ACTIONS(2675), + [anon_sym_short] = ACTIONS(2675), + [sym_primitive_type] = ACTIONS(2677), + [anon_sym_enum] = ACTIONS(2679), + [anon_sym_class] = ACTIONS(2681), + [anon_sym_struct] = ACTIONS(2683), + [anon_sym_union] = ACTIONS(2685), + [anon_sym_not] = ACTIONS(2669), + [anon_sym_compl] = ACTIONS(2669), + [anon_sym_DASH_DASH] = ACTIONS(2687), + [anon_sym_PLUS_PLUS] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2689), + [sym_number_literal] = ACTIONS(2691), + [anon_sym_L_SQUOTE] = ACTIONS(2693), + [anon_sym_u_SQUOTE] = ACTIONS(2693), + [anon_sym_U_SQUOTE] = ACTIONS(2693), + [anon_sym_u8_SQUOTE] = ACTIONS(2693), + [anon_sym_SQUOTE] = ACTIONS(2693), + [anon_sym_L_DQUOTE] = ACTIONS(2695), + [anon_sym_u_DQUOTE] = ACTIONS(2695), + [anon_sym_U_DQUOTE] = ACTIONS(2695), + [anon_sym_u8_DQUOTE] = ACTIONS(2695), + [anon_sym_DQUOTE] = ACTIONS(2695), + [sym_true] = ACTIONS(2697), + [sym_false] = ACTIONS(2697), + [sym_null] = ACTIONS(2697), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2699), + [anon_sym_decltype] = ACTIONS(2701), + [anon_sym_typename] = ACTIONS(2703), + [anon_sym_template] = ACTIONS(976), + [anon_sym_GT2] = ACTIONS(2927), + [anon_sym_delete] = ACTIONS(2707), + [anon_sym_co_await] = ACTIONS(2709), + [anon_sym_new] = ACTIONS(2711), + [anon_sym_requires] = ACTIONS(2713), + [sym_this] = ACTIONS(2697), + [sym_nullptr] = ACTIONS(2697), + [sym_raw_string_literal] = ACTIONS(2715), }, - [827] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_RBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), + [542] = { + [sym_type_qualifier] = STATE(3373), + [sym__type_specifier] = STATE(4189), + [sym_sized_type_specifier] = STATE(3139), + [sym_enum_specifier] = STATE(3139), + [sym_struct_specifier] = STATE(3139), + [sym_union_specifier] = STATE(3139), + [sym__expression] = STATE(3589), + [sym_conditional_expression] = STATE(3865), + [sym_assignment_expression] = STATE(3865), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3865), + [sym_binary_expression] = STATE(3865), + [sym_update_expression] = STATE(3865), + [sym_cast_expression] = STATE(3865), + [sym_type_descriptor] = STATE(5643), + [sym_sizeof_expression] = STATE(3865), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3865), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3707), + [sym_concatenated_string] = STATE(3707), + [sym_string_literal] = STATE(3250), + [sym_placeholder_type_specifier] = STATE(3139), + [sym_decltype_auto] = STATE(3138), + [sym_decltype] = STATE(3139), + [sym_class_specifier] = STATE(3139), + [sym__class_name] = STATE(6539), + [sym_dependent_type] = STATE(3139), + [sym_template_type] = STATE(4443), + [sym_template_function] = STATE(3865), + [sym_co_await_expression] = STATE(3865), + [sym_new_expression] = STATE(3865), + [sym_delete_expression] = STATE(3865), + [sym_requires_clause] = STATE(3865), + [sym_requires_expression] = STATE(3865), + [sym_lambda_expression] = STATE(3865), + [sym_lambda_capture_specifier] = STATE(4789), + [sym_fold_expression] = STATE(3865), + [sym_parameter_pack_expansion] = STATE(3865), + [sym_type_parameter_pack_expansion] = STATE(6012), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4919), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(4514), + [sym_user_defined_literal] = STATE(3865), + [aux_sym_type_definition_repeat1] = STATE(3373), + [aux_sym_sized_type_specifier_repeat1] = STATE(2300), + [sym_identifier] = ACTIONS(2663), + [anon_sym_LPAREN2] = ACTIONS(2665), + [anon_sym_BANG] = ACTIONS(2667), + [anon_sym_TILDE] = ACTIONS(2667), + [anon_sym_DASH] = ACTIONS(2669), + [anon_sym_PLUS] = ACTIONS(2669), + [anon_sym_STAR] = ACTIONS(2671), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_COLON_COLON] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2675), + [anon_sym_unsigned] = ACTIONS(2675), + [anon_sym_long] = ACTIONS(2675), + [anon_sym_short] = ACTIONS(2675), + [sym_primitive_type] = ACTIONS(2677), + [anon_sym_enum] = ACTIONS(2679), + [anon_sym_class] = ACTIONS(2681), + [anon_sym_struct] = ACTIONS(2683), + [anon_sym_union] = ACTIONS(2685), + [anon_sym_not] = ACTIONS(2669), + [anon_sym_compl] = ACTIONS(2669), + [anon_sym_DASH_DASH] = ACTIONS(2687), + [anon_sym_PLUS_PLUS] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2689), + [sym_number_literal] = ACTIONS(2691), + [anon_sym_L_SQUOTE] = ACTIONS(2693), + [anon_sym_u_SQUOTE] = ACTIONS(2693), + [anon_sym_U_SQUOTE] = ACTIONS(2693), + [anon_sym_u8_SQUOTE] = ACTIONS(2693), + [anon_sym_SQUOTE] = ACTIONS(2693), + [anon_sym_L_DQUOTE] = ACTIONS(2695), + [anon_sym_u_DQUOTE] = ACTIONS(2695), + [anon_sym_U_DQUOTE] = ACTIONS(2695), + [anon_sym_u8_DQUOTE] = ACTIONS(2695), + [anon_sym_DQUOTE] = ACTIONS(2695), + [sym_true] = ACTIONS(2697), + [sym_false] = ACTIONS(2697), + [sym_null] = ACTIONS(2697), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2699), + [anon_sym_decltype] = ACTIONS(2701), + [anon_sym_typename] = ACTIONS(2703), + [anon_sym_template] = ACTIONS(976), + [anon_sym_GT2] = ACTIONS(2929), + [anon_sym_delete] = ACTIONS(2707), + [anon_sym_co_await] = ACTIONS(2709), + [anon_sym_new] = ACTIONS(2711), + [anon_sym_requires] = ACTIONS(2713), + [sym_this] = ACTIONS(2697), + [sym_nullptr] = ACTIONS(2697), + [sym_raw_string_literal] = ACTIONS(2715), }, - [828] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_RBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), + [543] = { + [sym_identifier] = ACTIONS(2931), + [aux_sym_preproc_include_token1] = ACTIONS(2931), + [aux_sym_preproc_def_token1] = ACTIONS(2931), + [aux_sym_preproc_if_token1] = ACTIONS(2931), + [aux_sym_preproc_if_token2] = ACTIONS(2931), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2931), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2931), + [aux_sym_preproc_else_token1] = ACTIONS(2931), + [aux_sym_preproc_elif_token1] = ACTIONS(2931), + [sym_preproc_directive] = ACTIONS(2931), + [anon_sym_LPAREN2] = ACTIONS(2933), + [anon_sym_BANG] = ACTIONS(2933), + [anon_sym_TILDE] = ACTIONS(2933), + [anon_sym_DASH] = ACTIONS(2931), + [anon_sym_PLUS] = ACTIONS(2931), + [anon_sym_STAR] = ACTIONS(2933), + [anon_sym_AMP_AMP] = ACTIONS(2933), + [anon_sym_AMP] = ACTIONS(2931), + [anon_sym_SEMI] = ACTIONS(2933), + [anon_sym_typedef] = ACTIONS(2931), + [anon_sym_extern] = ACTIONS(2931), + [anon_sym___attribute__] = ACTIONS(2931), + [anon_sym_COLON_COLON] = ACTIONS(2933), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2933), + [anon_sym___declspec] = ACTIONS(2931), + [anon_sym___based] = ACTIONS(2931), + [anon_sym___cdecl] = ACTIONS(2931), + [anon_sym___clrcall] = ACTIONS(2931), + [anon_sym___stdcall] = ACTIONS(2931), + [anon_sym___fastcall] = ACTIONS(2931), + [anon_sym___thiscall] = ACTIONS(2931), + [anon_sym___vectorcall] = ACTIONS(2931), + [anon_sym_LBRACE] = ACTIONS(2933), + [anon_sym_LBRACK] = ACTIONS(2931), + [anon_sym_static] = ACTIONS(2931), + [anon_sym_register] = ACTIONS(2931), + [anon_sym_inline] = ACTIONS(2931), + [anon_sym_thread_local] = ACTIONS(2931), + [anon_sym_const] = ACTIONS(2931), + [anon_sym_volatile] = ACTIONS(2931), + [anon_sym_restrict] = ACTIONS(2931), + [anon_sym__Atomic] = ACTIONS(2931), + [anon_sym_mutable] = ACTIONS(2931), + [anon_sym_constexpr] = ACTIONS(2931), + [anon_sym_constinit] = ACTIONS(2931), + [anon_sym_consteval] = ACTIONS(2931), + [anon_sym_signed] = ACTIONS(2931), + [anon_sym_unsigned] = ACTIONS(2931), + [anon_sym_long] = ACTIONS(2931), + [anon_sym_short] = ACTIONS(2931), + [sym_primitive_type] = ACTIONS(2931), + [anon_sym_enum] = ACTIONS(2931), + [anon_sym_class] = ACTIONS(2931), + [anon_sym_struct] = ACTIONS(2931), + [anon_sym_union] = ACTIONS(2931), + [anon_sym_if] = ACTIONS(2931), + [anon_sym_switch] = ACTIONS(2931), + [anon_sym_case] = ACTIONS(2931), + [anon_sym_default] = ACTIONS(2931), + [anon_sym_while] = ACTIONS(2931), + [anon_sym_do] = ACTIONS(2931), + [anon_sym_for] = ACTIONS(2931), + [anon_sym_return] = ACTIONS(2931), + [anon_sym_break] = ACTIONS(2931), + [anon_sym_continue] = ACTIONS(2931), + [anon_sym_goto] = ACTIONS(2931), + [anon_sym_not] = ACTIONS(2931), + [anon_sym_compl] = ACTIONS(2931), + [anon_sym_DASH_DASH] = ACTIONS(2933), + [anon_sym_PLUS_PLUS] = ACTIONS(2933), + [anon_sym_sizeof] = ACTIONS(2931), + [sym_number_literal] = ACTIONS(2933), + [anon_sym_L_SQUOTE] = ACTIONS(2933), + [anon_sym_u_SQUOTE] = ACTIONS(2933), + [anon_sym_U_SQUOTE] = ACTIONS(2933), + [anon_sym_u8_SQUOTE] = ACTIONS(2933), + [anon_sym_SQUOTE] = ACTIONS(2933), + [anon_sym_L_DQUOTE] = ACTIONS(2933), + [anon_sym_u_DQUOTE] = ACTIONS(2933), + [anon_sym_U_DQUOTE] = ACTIONS(2933), + [anon_sym_u8_DQUOTE] = ACTIONS(2933), + [anon_sym_DQUOTE] = ACTIONS(2933), + [sym_true] = ACTIONS(2931), + [sym_false] = ACTIONS(2931), + [sym_null] = ACTIONS(2931), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2931), + [anon_sym_decltype] = ACTIONS(2931), + [anon_sym_virtual] = ACTIONS(2931), + [anon_sym_explicit] = ACTIONS(2931), + [anon_sym_typename] = ACTIONS(2931), + [anon_sym_template] = ACTIONS(2931), + [anon_sym_operator] = ACTIONS(2931), + [anon_sym_try] = ACTIONS(2931), + [anon_sym_delete] = ACTIONS(2931), + [anon_sym_throw] = ACTIONS(2931), + [anon_sym_namespace] = ACTIONS(2931), + [anon_sym_using] = ACTIONS(2931), + [anon_sym_static_assert] = ACTIONS(2931), + [anon_sym_concept] = ACTIONS(2931), + [anon_sym_co_return] = ACTIONS(2931), + [anon_sym_co_yield] = ACTIONS(2931), + [anon_sym_co_await] = ACTIONS(2931), + [anon_sym_new] = ACTIONS(2931), + [anon_sym_requires] = ACTIONS(2931), + [sym_this] = ACTIONS(2931), + [sym_nullptr] = ACTIONS(2931), + [sym_raw_string_literal] = ACTIONS(2933), }, - [829] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_RBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), + [544] = { + [sym_type_qualifier] = STATE(3373), + [sym__type_specifier] = STATE(4189), + [sym_sized_type_specifier] = STATE(3139), + [sym_enum_specifier] = STATE(3139), + [sym_struct_specifier] = STATE(3139), + [sym_union_specifier] = STATE(3139), + [sym__expression] = STATE(3633), + [sym_conditional_expression] = STATE(3865), + [sym_assignment_expression] = STATE(3865), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3865), + [sym_binary_expression] = STATE(3865), + [sym_update_expression] = STATE(3865), + [sym_cast_expression] = STATE(3865), + [sym_type_descriptor] = STATE(5686), + [sym_sizeof_expression] = STATE(3865), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3865), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3707), + [sym_concatenated_string] = STATE(3707), + [sym_string_literal] = STATE(3250), + [sym_placeholder_type_specifier] = STATE(3139), + [sym_decltype_auto] = STATE(3138), + [sym_decltype] = STATE(3139), + [sym_class_specifier] = STATE(3139), + [sym__class_name] = STATE(6539), + [sym_dependent_type] = STATE(3139), + [sym_template_type] = STATE(4443), + [sym_template_function] = STATE(3865), + [sym_co_await_expression] = STATE(3865), + [sym_new_expression] = STATE(3865), + [sym_delete_expression] = STATE(3865), + [sym_requires_clause] = STATE(3865), + [sym_requires_expression] = STATE(3865), + [sym_lambda_expression] = STATE(3865), + [sym_lambda_capture_specifier] = STATE(4789), + [sym_fold_expression] = STATE(3865), + [sym_parameter_pack_expansion] = STATE(3865), + [sym_type_parameter_pack_expansion] = STATE(6067), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4919), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(4514), + [sym_user_defined_literal] = STATE(3865), + [aux_sym_type_definition_repeat1] = STATE(3373), + [aux_sym_sized_type_specifier_repeat1] = STATE(2300), + [sym_identifier] = ACTIONS(2663), + [anon_sym_LPAREN2] = ACTIONS(2665), + [anon_sym_BANG] = ACTIONS(2667), + [anon_sym_TILDE] = ACTIONS(2667), + [anon_sym_DASH] = ACTIONS(2669), + [anon_sym_PLUS] = ACTIONS(2669), + [anon_sym_STAR] = ACTIONS(2671), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_COLON_COLON] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2675), + [anon_sym_unsigned] = ACTIONS(2675), + [anon_sym_long] = ACTIONS(2675), + [anon_sym_short] = ACTIONS(2675), + [sym_primitive_type] = ACTIONS(2677), + [anon_sym_enum] = ACTIONS(2679), + [anon_sym_class] = ACTIONS(2681), + [anon_sym_struct] = ACTIONS(2683), + [anon_sym_union] = ACTIONS(2685), + [anon_sym_not] = ACTIONS(2669), + [anon_sym_compl] = ACTIONS(2669), + [anon_sym_DASH_DASH] = ACTIONS(2687), + [anon_sym_PLUS_PLUS] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2689), + [sym_number_literal] = ACTIONS(2691), + [anon_sym_L_SQUOTE] = ACTIONS(2693), + [anon_sym_u_SQUOTE] = ACTIONS(2693), + [anon_sym_U_SQUOTE] = ACTIONS(2693), + [anon_sym_u8_SQUOTE] = ACTIONS(2693), + [anon_sym_SQUOTE] = ACTIONS(2693), + [anon_sym_L_DQUOTE] = ACTIONS(2695), + [anon_sym_u_DQUOTE] = ACTIONS(2695), + [anon_sym_U_DQUOTE] = ACTIONS(2695), + [anon_sym_u8_DQUOTE] = ACTIONS(2695), + [anon_sym_DQUOTE] = ACTIONS(2695), + [sym_true] = ACTIONS(2697), + [sym_false] = ACTIONS(2697), + [sym_null] = ACTIONS(2697), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2699), + [anon_sym_decltype] = ACTIONS(2701), + [anon_sym_typename] = ACTIONS(2703), + [anon_sym_template] = ACTIONS(976), + [anon_sym_GT2] = ACTIONS(2935), + [anon_sym_delete] = ACTIONS(2707), + [anon_sym_co_await] = ACTIONS(2709), + [anon_sym_new] = ACTIONS(2711), + [anon_sym_requires] = ACTIONS(2713), + [sym_this] = ACTIONS(2697), + [sym_nullptr] = ACTIONS(2697), + [sym_raw_string_literal] = ACTIONS(2715), }, - [830] = { - [sym_identifier] = ACTIONS(2491), - [aux_sym_preproc_include_token1] = ACTIONS(2491), - [aux_sym_preproc_def_token1] = ACTIONS(2491), - [aux_sym_preproc_if_token1] = ACTIONS(2491), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2491), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2491), - [sym_preproc_directive] = ACTIONS(2491), - [anon_sym_LPAREN2] = ACTIONS(2493), - [anon_sym_BANG] = ACTIONS(2493), - [anon_sym_TILDE] = ACTIONS(2493), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_STAR] = ACTIONS(2493), - [anon_sym_AMP_AMP] = ACTIONS(2493), - [anon_sym_AMP] = ACTIONS(2491), - [anon_sym_SEMI] = ACTIONS(2493), - [anon_sym_typedef] = ACTIONS(2491), - [anon_sym_extern] = ACTIONS(2491), - [anon_sym___attribute__] = ACTIONS(2491), - [anon_sym_COLON_COLON] = ACTIONS(2493), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2493), - [anon_sym___declspec] = ACTIONS(2491), - [anon_sym___based] = ACTIONS(2491), - [anon_sym___cdecl] = ACTIONS(2491), - [anon_sym___clrcall] = ACTIONS(2491), - [anon_sym___stdcall] = ACTIONS(2491), - [anon_sym___fastcall] = ACTIONS(2491), - [anon_sym___thiscall] = ACTIONS(2491), - [anon_sym___vectorcall] = ACTIONS(2491), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_RBRACE] = ACTIONS(2493), - [anon_sym_LBRACK] = ACTIONS(2491), - [anon_sym_static] = ACTIONS(2491), - [anon_sym_register] = ACTIONS(2491), - [anon_sym_inline] = ACTIONS(2491), - [anon_sym_thread_local] = ACTIONS(2491), - [anon_sym_const] = ACTIONS(2491), - [anon_sym_volatile] = ACTIONS(2491), - [anon_sym_restrict] = ACTIONS(2491), - [anon_sym__Atomic] = ACTIONS(2491), - [anon_sym_mutable] = ACTIONS(2491), - [anon_sym_constexpr] = ACTIONS(2491), - [anon_sym_constinit] = ACTIONS(2491), - [anon_sym_consteval] = ACTIONS(2491), - [anon_sym_signed] = ACTIONS(2491), - [anon_sym_unsigned] = ACTIONS(2491), - [anon_sym_long] = ACTIONS(2491), - [anon_sym_short] = ACTIONS(2491), - [sym_primitive_type] = ACTIONS(2491), - [anon_sym_enum] = ACTIONS(2491), - [anon_sym_class] = ACTIONS(2491), - [anon_sym_struct] = ACTIONS(2491), - [anon_sym_union] = ACTIONS(2491), - [anon_sym_if] = ACTIONS(2491), - [anon_sym_else] = ACTIONS(2491), - [anon_sym_switch] = ACTIONS(2491), - [anon_sym_case] = ACTIONS(2491), - [anon_sym_default] = ACTIONS(2491), - [anon_sym_while] = ACTIONS(2491), - [anon_sym_do] = ACTIONS(2491), - [anon_sym_for] = ACTIONS(2491), - [anon_sym_return] = ACTIONS(2491), - [anon_sym_break] = ACTIONS(2491), - [anon_sym_continue] = ACTIONS(2491), - [anon_sym_goto] = ACTIONS(2491), - [anon_sym_DASH_DASH] = ACTIONS(2493), - [anon_sym_PLUS_PLUS] = ACTIONS(2493), - [anon_sym_sizeof] = ACTIONS(2491), - [sym_number_literal] = ACTIONS(2493), - [anon_sym_L_SQUOTE] = ACTIONS(2493), - [anon_sym_u_SQUOTE] = ACTIONS(2493), - [anon_sym_U_SQUOTE] = ACTIONS(2493), - [anon_sym_u8_SQUOTE] = ACTIONS(2493), - [anon_sym_SQUOTE] = ACTIONS(2493), - [anon_sym_L_DQUOTE] = ACTIONS(2493), - [anon_sym_u_DQUOTE] = ACTIONS(2493), - [anon_sym_U_DQUOTE] = ACTIONS(2493), - [anon_sym_u8_DQUOTE] = ACTIONS(2493), - [anon_sym_DQUOTE] = ACTIONS(2493), - [sym_true] = ACTIONS(2491), - [sym_false] = ACTIONS(2491), - [sym_null] = ACTIONS(2491), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2491), - [anon_sym_decltype] = ACTIONS(2491), - [anon_sym_virtual] = ACTIONS(2491), - [anon_sym_explicit] = ACTIONS(2491), - [anon_sym_typename] = ACTIONS(2491), - [anon_sym_template] = ACTIONS(2491), - [anon_sym_operator] = ACTIONS(2491), - [anon_sym_try] = ACTIONS(2491), - [anon_sym_delete] = ACTIONS(2491), - [anon_sym_throw] = ACTIONS(2491), - [anon_sym_namespace] = ACTIONS(2491), - [anon_sym_using] = ACTIONS(2491), - [anon_sym_static_assert] = ACTIONS(2491), - [anon_sym_concept] = ACTIONS(2491), - [anon_sym_co_return] = ACTIONS(2491), - [anon_sym_co_yield] = ACTIONS(2491), - [anon_sym_co_await] = ACTIONS(2491), - [anon_sym_new] = ACTIONS(2491), - [anon_sym_requires] = ACTIONS(2491), - [sym_this] = ACTIONS(2491), - [sym_nullptr] = ACTIONS(2491), - [sym_raw_string_literal] = ACTIONS(2493), + [545] = { + [sym_identifier] = ACTIONS(2462), + [aux_sym_preproc_include_token1] = ACTIONS(2462), + [aux_sym_preproc_def_token1] = ACTIONS(2462), + [aux_sym_preproc_if_token1] = ACTIONS(2462), + [aux_sym_preproc_if_token2] = ACTIONS(2462), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2462), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2462), + [sym_preproc_directive] = ACTIONS(2462), + [anon_sym_LPAREN2] = ACTIONS(2464), + [anon_sym_BANG] = ACTIONS(2464), + [anon_sym_TILDE] = ACTIONS(2464), + [anon_sym_DASH] = ACTIONS(2462), + [anon_sym_PLUS] = ACTIONS(2462), + [anon_sym_STAR] = ACTIONS(2464), + [anon_sym_AMP_AMP] = ACTIONS(2464), + [anon_sym_AMP] = ACTIONS(2462), + [anon_sym_SEMI] = ACTIONS(2464), + [anon_sym_typedef] = ACTIONS(2462), + [anon_sym_extern] = ACTIONS(2462), + [anon_sym___attribute__] = ACTIONS(2462), + [anon_sym_COLON_COLON] = ACTIONS(2464), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), + [anon_sym___declspec] = ACTIONS(2462), + [anon_sym___based] = ACTIONS(2462), + [anon_sym___cdecl] = ACTIONS(2462), + [anon_sym___clrcall] = ACTIONS(2462), + [anon_sym___stdcall] = ACTIONS(2462), + [anon_sym___fastcall] = ACTIONS(2462), + [anon_sym___thiscall] = ACTIONS(2462), + [anon_sym___vectorcall] = ACTIONS(2462), + [anon_sym_LBRACE] = ACTIONS(2464), + [anon_sym_LBRACK] = ACTIONS(2462), + [anon_sym_static] = ACTIONS(2462), + [anon_sym_register] = ACTIONS(2462), + [anon_sym_inline] = ACTIONS(2462), + [anon_sym_thread_local] = ACTIONS(2462), + [anon_sym_const] = ACTIONS(2462), + [anon_sym_volatile] = ACTIONS(2462), + [anon_sym_restrict] = ACTIONS(2462), + [anon_sym__Atomic] = ACTIONS(2462), + [anon_sym_mutable] = ACTIONS(2462), + [anon_sym_constexpr] = ACTIONS(2462), + [anon_sym_constinit] = ACTIONS(2462), + [anon_sym_consteval] = ACTIONS(2462), + [anon_sym_signed] = ACTIONS(2462), + [anon_sym_unsigned] = ACTIONS(2462), + [anon_sym_long] = ACTIONS(2462), + [anon_sym_short] = ACTIONS(2462), + [sym_primitive_type] = ACTIONS(2462), + [anon_sym_enum] = ACTIONS(2462), + [anon_sym_class] = ACTIONS(2462), + [anon_sym_struct] = ACTIONS(2462), + [anon_sym_union] = ACTIONS(2462), + [anon_sym_if] = ACTIONS(2462), + [anon_sym_else] = ACTIONS(2462), + [anon_sym_switch] = ACTIONS(2462), + [anon_sym_case] = ACTIONS(2462), + [anon_sym_default] = ACTIONS(2462), + [anon_sym_while] = ACTIONS(2462), + [anon_sym_do] = ACTIONS(2462), + [anon_sym_for] = ACTIONS(2462), + [anon_sym_return] = ACTIONS(2462), + [anon_sym_break] = ACTIONS(2462), + [anon_sym_continue] = ACTIONS(2462), + [anon_sym_goto] = ACTIONS(2462), + [anon_sym_not] = ACTIONS(2462), + [anon_sym_compl] = ACTIONS(2462), + [anon_sym_DASH_DASH] = ACTIONS(2464), + [anon_sym_PLUS_PLUS] = ACTIONS(2464), + [anon_sym_sizeof] = ACTIONS(2462), + [sym_number_literal] = ACTIONS(2464), + [anon_sym_L_SQUOTE] = ACTIONS(2464), + [anon_sym_u_SQUOTE] = ACTIONS(2464), + [anon_sym_U_SQUOTE] = ACTIONS(2464), + [anon_sym_u8_SQUOTE] = ACTIONS(2464), + [anon_sym_SQUOTE] = ACTIONS(2464), + [anon_sym_L_DQUOTE] = ACTIONS(2464), + [anon_sym_u_DQUOTE] = ACTIONS(2464), + [anon_sym_U_DQUOTE] = ACTIONS(2464), + [anon_sym_u8_DQUOTE] = ACTIONS(2464), + [anon_sym_DQUOTE] = ACTIONS(2464), + [sym_true] = ACTIONS(2462), + [sym_false] = ACTIONS(2462), + [sym_null] = ACTIONS(2462), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2462), + [anon_sym_decltype] = ACTIONS(2462), + [anon_sym_virtual] = ACTIONS(2462), + [anon_sym_explicit] = ACTIONS(2462), + [anon_sym_typename] = ACTIONS(2462), + [anon_sym_template] = ACTIONS(2462), + [anon_sym_operator] = ACTIONS(2462), + [anon_sym_try] = ACTIONS(2462), + [anon_sym_delete] = ACTIONS(2462), + [anon_sym_throw] = ACTIONS(2462), + [anon_sym_namespace] = ACTIONS(2462), + [anon_sym_using] = ACTIONS(2462), + [anon_sym_static_assert] = ACTIONS(2462), + [anon_sym_concept] = ACTIONS(2462), + [anon_sym_co_return] = ACTIONS(2462), + [anon_sym_co_yield] = ACTIONS(2462), + [anon_sym_catch] = ACTIONS(2462), + [anon_sym_co_await] = ACTIONS(2462), + [anon_sym_new] = ACTIONS(2462), + [anon_sym_requires] = ACTIONS(2462), + [sym_this] = ACTIONS(2462), + [sym_nullptr] = ACTIONS(2462), + [sym_raw_string_literal] = ACTIONS(2464), }, - [831] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_RBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [832] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_RBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [833] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_RBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [834] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_RBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [835] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_RBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [836] = { - [sym_identifier] = ACTIONS(2471), - [aux_sym_preproc_include_token1] = ACTIONS(2471), - [aux_sym_preproc_def_token1] = ACTIONS(2471), - [aux_sym_preproc_if_token1] = ACTIONS(2471), - [aux_sym_preproc_if_token2] = ACTIONS(2471), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2471), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2471), - [sym_preproc_directive] = ACTIONS(2471), - [anon_sym_LPAREN2] = ACTIONS(2473), - [anon_sym_BANG] = ACTIONS(2473), - [anon_sym_TILDE] = ACTIONS(2473), - [anon_sym_DASH] = ACTIONS(2471), - [anon_sym_PLUS] = ACTIONS(2471), - [anon_sym_STAR] = ACTIONS(2473), - [anon_sym_AMP_AMP] = ACTIONS(2473), - [anon_sym_AMP] = ACTIONS(2471), - [anon_sym_SEMI] = ACTIONS(2473), - [anon_sym_typedef] = ACTIONS(2471), - [anon_sym_extern] = ACTIONS(2471), - [anon_sym___attribute__] = ACTIONS(2471), - [anon_sym_COLON_COLON] = ACTIONS(2473), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2473), - [anon_sym___declspec] = ACTIONS(2471), - [anon_sym___based] = ACTIONS(2471), - [anon_sym___cdecl] = ACTIONS(2471), - [anon_sym___clrcall] = ACTIONS(2471), - [anon_sym___stdcall] = ACTIONS(2471), - [anon_sym___fastcall] = ACTIONS(2471), - [anon_sym___thiscall] = ACTIONS(2471), - [anon_sym___vectorcall] = ACTIONS(2471), - [anon_sym_LBRACE] = ACTIONS(2473), - [anon_sym_LBRACK] = ACTIONS(2471), - [anon_sym_static] = ACTIONS(2471), - [anon_sym_register] = ACTIONS(2471), - [anon_sym_inline] = ACTIONS(2471), - [anon_sym_thread_local] = ACTIONS(2471), - [anon_sym_const] = ACTIONS(2471), - [anon_sym_volatile] = ACTIONS(2471), - [anon_sym_restrict] = ACTIONS(2471), - [anon_sym__Atomic] = ACTIONS(2471), - [anon_sym_mutable] = ACTIONS(2471), - [anon_sym_constexpr] = ACTIONS(2471), - [anon_sym_constinit] = ACTIONS(2471), - [anon_sym_consteval] = ACTIONS(2471), - [anon_sym_signed] = ACTIONS(2471), - [anon_sym_unsigned] = ACTIONS(2471), - [anon_sym_long] = ACTIONS(2471), - [anon_sym_short] = ACTIONS(2471), - [sym_primitive_type] = ACTIONS(2471), - [anon_sym_enum] = ACTIONS(2471), - [anon_sym_class] = ACTIONS(2471), - [anon_sym_struct] = ACTIONS(2471), - [anon_sym_union] = ACTIONS(2471), - [anon_sym_if] = ACTIONS(2471), - [anon_sym_else] = ACTIONS(2471), - [anon_sym_switch] = ACTIONS(2471), - [anon_sym_case] = ACTIONS(2471), - [anon_sym_default] = ACTIONS(2471), - [anon_sym_while] = ACTIONS(2471), - [anon_sym_do] = ACTIONS(2471), - [anon_sym_for] = ACTIONS(2471), - [anon_sym_return] = ACTIONS(2471), - [anon_sym_break] = ACTIONS(2471), - [anon_sym_continue] = ACTIONS(2471), - [anon_sym_goto] = ACTIONS(2471), - [anon_sym_DASH_DASH] = ACTIONS(2473), - [anon_sym_PLUS_PLUS] = ACTIONS(2473), - [anon_sym_sizeof] = ACTIONS(2471), - [sym_number_literal] = ACTIONS(2473), - [anon_sym_L_SQUOTE] = ACTIONS(2473), - [anon_sym_u_SQUOTE] = ACTIONS(2473), - [anon_sym_U_SQUOTE] = ACTIONS(2473), - [anon_sym_u8_SQUOTE] = ACTIONS(2473), - [anon_sym_SQUOTE] = ACTIONS(2473), - [anon_sym_L_DQUOTE] = ACTIONS(2473), - [anon_sym_u_DQUOTE] = ACTIONS(2473), - [anon_sym_U_DQUOTE] = ACTIONS(2473), - [anon_sym_u8_DQUOTE] = ACTIONS(2473), - [anon_sym_DQUOTE] = ACTIONS(2473), - [sym_true] = ACTIONS(2471), - [sym_false] = ACTIONS(2471), - [sym_null] = ACTIONS(2471), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2471), - [anon_sym_decltype] = ACTIONS(2471), - [anon_sym_virtual] = ACTIONS(2471), - [anon_sym_explicit] = ACTIONS(2471), - [anon_sym_typename] = ACTIONS(2471), - [anon_sym_template] = ACTIONS(2471), - [anon_sym_operator] = ACTIONS(2471), - [anon_sym_try] = ACTIONS(2471), - [anon_sym_delete] = ACTIONS(2471), - [anon_sym_throw] = ACTIONS(2471), - [anon_sym_namespace] = ACTIONS(2471), - [anon_sym_using] = ACTIONS(2471), - [anon_sym_static_assert] = ACTIONS(2471), - [anon_sym_concept] = ACTIONS(2471), - [anon_sym_co_return] = ACTIONS(2471), - [anon_sym_co_yield] = ACTIONS(2471), - [anon_sym_co_await] = ACTIONS(2471), - [anon_sym_new] = ACTIONS(2471), - [anon_sym_requires] = ACTIONS(2471), - [sym_this] = ACTIONS(2471), - [sym_nullptr] = ACTIONS(2471), - [sym_raw_string_literal] = ACTIONS(2473), - }, - [837] = { - [sym_identifier] = ACTIONS(2467), - [aux_sym_preproc_include_token1] = ACTIONS(2467), - [aux_sym_preproc_def_token1] = ACTIONS(2467), - [aux_sym_preproc_if_token1] = ACTIONS(2467), - [aux_sym_preproc_if_token2] = ACTIONS(2467), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2467), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2467), - [sym_preproc_directive] = ACTIONS(2467), - [anon_sym_LPAREN2] = ACTIONS(2469), - [anon_sym_BANG] = ACTIONS(2469), - [anon_sym_TILDE] = ACTIONS(2469), - [anon_sym_DASH] = ACTIONS(2467), - [anon_sym_PLUS] = ACTIONS(2467), - [anon_sym_STAR] = ACTIONS(2469), - [anon_sym_AMP_AMP] = ACTIONS(2469), - [anon_sym_AMP] = ACTIONS(2467), - [anon_sym_SEMI] = ACTIONS(2469), - [anon_sym_typedef] = ACTIONS(2467), - [anon_sym_extern] = ACTIONS(2467), - [anon_sym___attribute__] = ACTIONS(2467), - [anon_sym_COLON_COLON] = ACTIONS(2469), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2469), - [anon_sym___declspec] = ACTIONS(2467), - [anon_sym___based] = ACTIONS(2467), - [anon_sym___cdecl] = ACTIONS(2467), - [anon_sym___clrcall] = ACTIONS(2467), - [anon_sym___stdcall] = ACTIONS(2467), - [anon_sym___fastcall] = ACTIONS(2467), - [anon_sym___thiscall] = ACTIONS(2467), - [anon_sym___vectorcall] = ACTIONS(2467), - [anon_sym_LBRACE] = ACTIONS(2469), - [anon_sym_LBRACK] = ACTIONS(2467), - [anon_sym_static] = ACTIONS(2467), - [anon_sym_register] = ACTIONS(2467), - [anon_sym_inline] = ACTIONS(2467), - [anon_sym_thread_local] = ACTIONS(2467), - [anon_sym_const] = ACTIONS(2467), - [anon_sym_volatile] = ACTIONS(2467), - [anon_sym_restrict] = ACTIONS(2467), - [anon_sym__Atomic] = ACTIONS(2467), - [anon_sym_mutable] = ACTIONS(2467), - [anon_sym_constexpr] = ACTIONS(2467), - [anon_sym_constinit] = ACTIONS(2467), - [anon_sym_consteval] = ACTIONS(2467), - [anon_sym_signed] = ACTIONS(2467), - [anon_sym_unsigned] = ACTIONS(2467), - [anon_sym_long] = ACTIONS(2467), - [anon_sym_short] = ACTIONS(2467), - [sym_primitive_type] = ACTIONS(2467), - [anon_sym_enum] = ACTIONS(2467), - [anon_sym_class] = ACTIONS(2467), - [anon_sym_struct] = ACTIONS(2467), - [anon_sym_union] = ACTIONS(2467), - [anon_sym_if] = ACTIONS(2467), - [anon_sym_else] = ACTIONS(2467), - [anon_sym_switch] = ACTIONS(2467), - [anon_sym_case] = ACTIONS(2467), - [anon_sym_default] = ACTIONS(2467), - [anon_sym_while] = ACTIONS(2467), - [anon_sym_do] = ACTIONS(2467), - [anon_sym_for] = ACTIONS(2467), - [anon_sym_return] = ACTIONS(2467), - [anon_sym_break] = ACTIONS(2467), - [anon_sym_continue] = ACTIONS(2467), - [anon_sym_goto] = ACTIONS(2467), - [anon_sym_DASH_DASH] = ACTIONS(2469), - [anon_sym_PLUS_PLUS] = ACTIONS(2469), - [anon_sym_sizeof] = ACTIONS(2467), - [sym_number_literal] = ACTIONS(2469), - [anon_sym_L_SQUOTE] = ACTIONS(2469), - [anon_sym_u_SQUOTE] = ACTIONS(2469), - [anon_sym_U_SQUOTE] = ACTIONS(2469), - [anon_sym_u8_SQUOTE] = ACTIONS(2469), - [anon_sym_SQUOTE] = ACTIONS(2469), - [anon_sym_L_DQUOTE] = ACTIONS(2469), - [anon_sym_u_DQUOTE] = ACTIONS(2469), - [anon_sym_U_DQUOTE] = ACTIONS(2469), - [anon_sym_u8_DQUOTE] = ACTIONS(2469), - [anon_sym_DQUOTE] = ACTIONS(2469), - [sym_true] = ACTIONS(2467), - [sym_false] = ACTIONS(2467), - [sym_null] = ACTIONS(2467), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2467), - [anon_sym_decltype] = ACTIONS(2467), - [anon_sym_virtual] = ACTIONS(2467), - [anon_sym_explicit] = ACTIONS(2467), - [anon_sym_typename] = ACTIONS(2467), - [anon_sym_template] = ACTIONS(2467), - [anon_sym_operator] = ACTIONS(2467), - [anon_sym_try] = ACTIONS(2467), - [anon_sym_delete] = ACTIONS(2467), - [anon_sym_throw] = ACTIONS(2467), - [anon_sym_namespace] = ACTIONS(2467), - [anon_sym_using] = ACTIONS(2467), - [anon_sym_static_assert] = ACTIONS(2467), - [anon_sym_concept] = ACTIONS(2467), - [anon_sym_co_return] = ACTIONS(2467), - [anon_sym_co_yield] = ACTIONS(2467), - [anon_sym_co_await] = ACTIONS(2467), - [anon_sym_new] = ACTIONS(2467), - [anon_sym_requires] = ACTIONS(2467), - [sym_this] = ACTIONS(2467), - [sym_nullptr] = ACTIONS(2467), - [sym_raw_string_literal] = ACTIONS(2469), - }, - [838] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_RBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [839] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_RBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [840] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_RBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [841] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_RBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [842] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_RBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [843] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_RBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [844] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_RBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [845] = { - [sym_identifier] = ACTIONS(2459), - [aux_sym_preproc_include_token1] = ACTIONS(2459), - [aux_sym_preproc_def_token1] = ACTIONS(2459), - [aux_sym_preproc_if_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2459), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2459), - [sym_preproc_directive] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP_AMP] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym___based] = ACTIONS(2459), - [anon_sym___cdecl] = ACTIONS(2459), - [anon_sym___clrcall] = ACTIONS(2459), - [anon_sym___stdcall] = ACTIONS(2459), - [anon_sym___fastcall] = ACTIONS(2459), - [anon_sym___thiscall] = ACTIONS(2459), - [anon_sym___vectorcall] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_RBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_case] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_explicit] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_operator] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_namespace] = ACTIONS(2459), - [anon_sym_using] = ACTIONS(2459), - [anon_sym_static_assert] = ACTIONS(2459), - [anon_sym_concept] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [846] = { - [sym_identifier] = ACTIONS(2483), - [aux_sym_preproc_include_token1] = ACTIONS(2483), - [aux_sym_preproc_def_token1] = ACTIONS(2483), - [aux_sym_preproc_if_token1] = ACTIONS(2483), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2483), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2483), - [sym_preproc_directive] = ACTIONS(2483), - [anon_sym_LPAREN2] = ACTIONS(2485), - [anon_sym_BANG] = ACTIONS(2485), - [anon_sym_TILDE] = ACTIONS(2485), - [anon_sym_DASH] = ACTIONS(2483), - [anon_sym_PLUS] = ACTIONS(2483), - [anon_sym_STAR] = ACTIONS(2485), - [anon_sym_AMP_AMP] = ACTIONS(2485), - [anon_sym_AMP] = ACTIONS(2483), - [anon_sym_SEMI] = ACTIONS(2485), - [anon_sym_typedef] = ACTIONS(2483), - [anon_sym_extern] = ACTIONS(2483), - [anon_sym___attribute__] = ACTIONS(2483), - [anon_sym_COLON_COLON] = ACTIONS(2485), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2485), - [anon_sym___declspec] = ACTIONS(2483), - [anon_sym___based] = ACTIONS(2483), - [anon_sym___cdecl] = ACTIONS(2483), - [anon_sym___clrcall] = ACTIONS(2483), - [anon_sym___stdcall] = ACTIONS(2483), - [anon_sym___fastcall] = ACTIONS(2483), - [anon_sym___thiscall] = ACTIONS(2483), - [anon_sym___vectorcall] = ACTIONS(2483), - [anon_sym_LBRACE] = ACTIONS(2485), - [anon_sym_RBRACE] = ACTIONS(2485), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_static] = ACTIONS(2483), - [anon_sym_register] = ACTIONS(2483), - [anon_sym_inline] = ACTIONS(2483), - [anon_sym_thread_local] = ACTIONS(2483), - [anon_sym_const] = ACTIONS(2483), - [anon_sym_volatile] = ACTIONS(2483), - [anon_sym_restrict] = ACTIONS(2483), - [anon_sym__Atomic] = ACTIONS(2483), - [anon_sym_mutable] = ACTIONS(2483), - [anon_sym_constexpr] = ACTIONS(2483), - [anon_sym_constinit] = ACTIONS(2483), - [anon_sym_consteval] = ACTIONS(2483), - [anon_sym_signed] = ACTIONS(2483), - [anon_sym_unsigned] = ACTIONS(2483), - [anon_sym_long] = ACTIONS(2483), - [anon_sym_short] = ACTIONS(2483), - [sym_primitive_type] = ACTIONS(2483), - [anon_sym_enum] = ACTIONS(2483), - [anon_sym_class] = ACTIONS(2483), - [anon_sym_struct] = ACTIONS(2483), - [anon_sym_union] = ACTIONS(2483), - [anon_sym_if] = ACTIONS(2483), - [anon_sym_else] = ACTIONS(2483), - [anon_sym_switch] = ACTIONS(2483), - [anon_sym_case] = ACTIONS(2483), - [anon_sym_default] = ACTIONS(2483), - [anon_sym_while] = ACTIONS(2483), - [anon_sym_do] = ACTIONS(2483), - [anon_sym_for] = ACTIONS(2483), - [anon_sym_return] = ACTIONS(2483), - [anon_sym_break] = ACTIONS(2483), - [anon_sym_continue] = ACTIONS(2483), - [anon_sym_goto] = ACTIONS(2483), - [anon_sym_DASH_DASH] = ACTIONS(2485), - [anon_sym_PLUS_PLUS] = ACTIONS(2485), - [anon_sym_sizeof] = ACTIONS(2483), - [sym_number_literal] = ACTIONS(2485), - [anon_sym_L_SQUOTE] = ACTIONS(2485), - [anon_sym_u_SQUOTE] = ACTIONS(2485), - [anon_sym_U_SQUOTE] = ACTIONS(2485), - [anon_sym_u8_SQUOTE] = ACTIONS(2485), - [anon_sym_SQUOTE] = ACTIONS(2485), - [anon_sym_L_DQUOTE] = ACTIONS(2485), - [anon_sym_u_DQUOTE] = ACTIONS(2485), - [anon_sym_U_DQUOTE] = ACTIONS(2485), - [anon_sym_u8_DQUOTE] = ACTIONS(2485), - [anon_sym_DQUOTE] = ACTIONS(2485), - [sym_true] = ACTIONS(2483), - [sym_false] = ACTIONS(2483), - [sym_null] = ACTIONS(2483), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2483), - [anon_sym_decltype] = ACTIONS(2483), - [anon_sym_virtual] = ACTIONS(2483), - [anon_sym_explicit] = ACTIONS(2483), - [anon_sym_typename] = ACTIONS(2483), - [anon_sym_template] = ACTIONS(2483), - [anon_sym_operator] = ACTIONS(2483), - [anon_sym_try] = ACTIONS(2483), - [anon_sym_delete] = ACTIONS(2483), - [anon_sym_throw] = ACTIONS(2483), - [anon_sym_namespace] = ACTIONS(2483), - [anon_sym_using] = ACTIONS(2483), - [anon_sym_static_assert] = ACTIONS(2483), - [anon_sym_concept] = ACTIONS(2483), - [anon_sym_co_return] = ACTIONS(2483), - [anon_sym_co_yield] = ACTIONS(2483), - [anon_sym_co_await] = ACTIONS(2483), - [anon_sym_new] = ACTIONS(2483), - [anon_sym_requires] = ACTIONS(2483), - [sym_this] = ACTIONS(2483), - [sym_nullptr] = ACTIONS(2483), - [sym_raw_string_literal] = ACTIONS(2485), - }, - [847] = { - [ts_builtin_sym_end] = ACTIONS(2521), - [sym_identifier] = ACTIONS(2519), - [aux_sym_preproc_include_token1] = ACTIONS(2519), - [aux_sym_preproc_def_token1] = ACTIONS(2519), - [aux_sym_preproc_if_token1] = ACTIONS(2519), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2519), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2519), - [sym_preproc_directive] = ACTIONS(2519), - [anon_sym_LPAREN2] = ACTIONS(2521), - [anon_sym_BANG] = ACTIONS(2521), - [anon_sym_TILDE] = ACTIONS(2521), - [anon_sym_DASH] = ACTIONS(2519), - [anon_sym_PLUS] = ACTIONS(2519), - [anon_sym_STAR] = ACTIONS(2521), - [anon_sym_AMP_AMP] = ACTIONS(2521), - [anon_sym_AMP] = ACTIONS(2519), - [anon_sym_SEMI] = ACTIONS(2521), - [anon_sym_typedef] = ACTIONS(2519), - [anon_sym_extern] = ACTIONS(2519), - [anon_sym___attribute__] = ACTIONS(2519), - [anon_sym_COLON_COLON] = ACTIONS(2521), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2521), - [anon_sym___declspec] = ACTIONS(2519), - [anon_sym___based] = ACTIONS(2519), - [anon_sym___cdecl] = ACTIONS(2519), - [anon_sym___clrcall] = ACTIONS(2519), - [anon_sym___stdcall] = ACTIONS(2519), - [anon_sym___fastcall] = ACTIONS(2519), - [anon_sym___thiscall] = ACTIONS(2519), - [anon_sym___vectorcall] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(2521), - [anon_sym_LBRACK] = ACTIONS(2519), - [anon_sym_static] = ACTIONS(2519), - [anon_sym_register] = ACTIONS(2519), - [anon_sym_inline] = ACTIONS(2519), - [anon_sym_thread_local] = ACTIONS(2519), - [anon_sym_const] = ACTIONS(2519), - [anon_sym_volatile] = ACTIONS(2519), - [anon_sym_restrict] = ACTIONS(2519), - [anon_sym__Atomic] = ACTIONS(2519), - [anon_sym_mutable] = ACTIONS(2519), - [anon_sym_constexpr] = ACTIONS(2519), - [anon_sym_constinit] = ACTIONS(2519), - [anon_sym_consteval] = ACTIONS(2519), - [anon_sym_signed] = ACTIONS(2519), - [anon_sym_unsigned] = ACTIONS(2519), - [anon_sym_long] = ACTIONS(2519), - [anon_sym_short] = ACTIONS(2519), - [sym_primitive_type] = ACTIONS(2519), - [anon_sym_enum] = ACTIONS(2519), - [anon_sym_class] = ACTIONS(2519), - [anon_sym_struct] = ACTIONS(2519), - [anon_sym_union] = ACTIONS(2519), - [anon_sym_if] = ACTIONS(2519), - [anon_sym_else] = ACTIONS(2879), - [anon_sym_switch] = ACTIONS(2519), - [anon_sym_case] = ACTIONS(2519), - [anon_sym_default] = ACTIONS(2519), - [anon_sym_while] = ACTIONS(2519), - [anon_sym_do] = ACTIONS(2519), - [anon_sym_for] = ACTIONS(2519), - [anon_sym_return] = ACTIONS(2519), - [anon_sym_break] = ACTIONS(2519), - [anon_sym_continue] = ACTIONS(2519), - [anon_sym_goto] = ACTIONS(2519), - [anon_sym_DASH_DASH] = ACTIONS(2521), - [anon_sym_PLUS_PLUS] = ACTIONS(2521), - [anon_sym_sizeof] = ACTIONS(2519), - [sym_number_literal] = ACTIONS(2521), - [anon_sym_L_SQUOTE] = ACTIONS(2521), - [anon_sym_u_SQUOTE] = ACTIONS(2521), - [anon_sym_U_SQUOTE] = ACTIONS(2521), - [anon_sym_u8_SQUOTE] = ACTIONS(2521), - [anon_sym_SQUOTE] = ACTIONS(2521), - [anon_sym_L_DQUOTE] = ACTIONS(2521), - [anon_sym_u_DQUOTE] = ACTIONS(2521), - [anon_sym_U_DQUOTE] = ACTIONS(2521), - [anon_sym_u8_DQUOTE] = ACTIONS(2521), - [anon_sym_DQUOTE] = ACTIONS(2521), - [sym_true] = ACTIONS(2519), - [sym_false] = ACTIONS(2519), - [sym_null] = ACTIONS(2519), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2519), - [anon_sym_decltype] = ACTIONS(2519), - [anon_sym_virtual] = ACTIONS(2519), - [anon_sym_explicit] = ACTIONS(2519), - [anon_sym_typename] = ACTIONS(2519), - [anon_sym_template] = ACTIONS(2519), - [anon_sym_operator] = ACTIONS(2519), - [anon_sym_try] = ACTIONS(2519), - [anon_sym_delete] = ACTIONS(2519), - [anon_sym_throw] = ACTIONS(2519), - [anon_sym_namespace] = ACTIONS(2519), - [anon_sym_using] = ACTIONS(2519), - [anon_sym_static_assert] = ACTIONS(2519), - [anon_sym_concept] = ACTIONS(2519), - [anon_sym_co_return] = ACTIONS(2519), - [anon_sym_co_yield] = ACTIONS(2519), - [anon_sym_co_await] = ACTIONS(2519), - [anon_sym_new] = ACTIONS(2519), - [anon_sym_requires] = ACTIONS(2519), - [sym_this] = ACTIONS(2519), - [sym_nullptr] = ACTIONS(2519), - [sym_raw_string_literal] = ACTIONS(2521), - }, - [848] = { - [sym_identifier] = ACTIONS(2499), - [aux_sym_preproc_include_token1] = ACTIONS(2499), - [aux_sym_preproc_def_token1] = ACTIONS(2499), - [aux_sym_preproc_if_token1] = ACTIONS(2499), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2499), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2499), - [sym_preproc_directive] = ACTIONS(2499), - [anon_sym_LPAREN2] = ACTIONS(2501), - [anon_sym_BANG] = ACTIONS(2501), - [anon_sym_TILDE] = ACTIONS(2501), - [anon_sym_DASH] = ACTIONS(2499), - [anon_sym_PLUS] = ACTIONS(2499), - [anon_sym_STAR] = ACTIONS(2501), - [anon_sym_AMP_AMP] = ACTIONS(2501), - [anon_sym_AMP] = ACTIONS(2499), - [anon_sym_SEMI] = ACTIONS(2501), - [anon_sym_typedef] = ACTIONS(2499), - [anon_sym_extern] = ACTIONS(2499), - [anon_sym___attribute__] = ACTIONS(2499), - [anon_sym_COLON_COLON] = ACTIONS(2501), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2501), - [anon_sym___declspec] = ACTIONS(2499), - [anon_sym___based] = ACTIONS(2499), - [anon_sym___cdecl] = ACTIONS(2499), - [anon_sym___clrcall] = ACTIONS(2499), - [anon_sym___stdcall] = ACTIONS(2499), - [anon_sym___fastcall] = ACTIONS(2499), - [anon_sym___thiscall] = ACTIONS(2499), - [anon_sym___vectorcall] = ACTIONS(2499), - [anon_sym_LBRACE] = ACTIONS(2501), - [anon_sym_RBRACE] = ACTIONS(2501), - [anon_sym_LBRACK] = ACTIONS(2499), - [anon_sym_static] = ACTIONS(2499), - [anon_sym_register] = ACTIONS(2499), - [anon_sym_inline] = ACTIONS(2499), - [anon_sym_thread_local] = ACTIONS(2499), - [anon_sym_const] = ACTIONS(2499), - [anon_sym_volatile] = ACTIONS(2499), - [anon_sym_restrict] = ACTIONS(2499), - [anon_sym__Atomic] = ACTIONS(2499), - [anon_sym_mutable] = ACTIONS(2499), - [anon_sym_constexpr] = ACTIONS(2499), - [anon_sym_constinit] = ACTIONS(2499), - [anon_sym_consteval] = ACTIONS(2499), - [anon_sym_signed] = ACTIONS(2499), - [anon_sym_unsigned] = ACTIONS(2499), - [anon_sym_long] = ACTIONS(2499), - [anon_sym_short] = ACTIONS(2499), - [sym_primitive_type] = ACTIONS(2499), - [anon_sym_enum] = ACTIONS(2499), - [anon_sym_class] = ACTIONS(2499), - [anon_sym_struct] = ACTIONS(2499), - [anon_sym_union] = ACTIONS(2499), - [anon_sym_if] = ACTIONS(2499), - [anon_sym_else] = ACTIONS(2499), - [anon_sym_switch] = ACTIONS(2499), - [anon_sym_case] = ACTIONS(2499), - [anon_sym_default] = ACTIONS(2499), - [anon_sym_while] = ACTIONS(2499), - [anon_sym_do] = ACTIONS(2499), - [anon_sym_for] = ACTIONS(2499), - [anon_sym_return] = ACTIONS(2499), - [anon_sym_break] = ACTIONS(2499), - [anon_sym_continue] = ACTIONS(2499), - [anon_sym_goto] = ACTIONS(2499), - [anon_sym_DASH_DASH] = ACTIONS(2501), - [anon_sym_PLUS_PLUS] = ACTIONS(2501), - [anon_sym_sizeof] = ACTIONS(2499), - [sym_number_literal] = ACTIONS(2501), - [anon_sym_L_SQUOTE] = ACTIONS(2501), - [anon_sym_u_SQUOTE] = ACTIONS(2501), - [anon_sym_U_SQUOTE] = ACTIONS(2501), - [anon_sym_u8_SQUOTE] = ACTIONS(2501), - [anon_sym_SQUOTE] = ACTIONS(2501), - [anon_sym_L_DQUOTE] = ACTIONS(2501), - [anon_sym_u_DQUOTE] = ACTIONS(2501), - [anon_sym_U_DQUOTE] = ACTIONS(2501), - [anon_sym_u8_DQUOTE] = ACTIONS(2501), - [anon_sym_DQUOTE] = ACTIONS(2501), - [sym_true] = ACTIONS(2499), - [sym_false] = ACTIONS(2499), - [sym_null] = ACTIONS(2499), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2499), - [anon_sym_decltype] = ACTIONS(2499), - [anon_sym_virtual] = ACTIONS(2499), - [anon_sym_explicit] = ACTIONS(2499), - [anon_sym_typename] = ACTIONS(2499), - [anon_sym_template] = ACTIONS(2499), - [anon_sym_operator] = ACTIONS(2499), - [anon_sym_try] = ACTIONS(2499), - [anon_sym_delete] = ACTIONS(2499), - [anon_sym_throw] = ACTIONS(2499), - [anon_sym_namespace] = ACTIONS(2499), - [anon_sym_using] = ACTIONS(2499), - [anon_sym_static_assert] = ACTIONS(2499), - [anon_sym_concept] = ACTIONS(2499), - [anon_sym_co_return] = ACTIONS(2499), - [anon_sym_co_yield] = ACTIONS(2499), - [anon_sym_co_await] = ACTIONS(2499), - [anon_sym_new] = ACTIONS(2499), - [anon_sym_requires] = ACTIONS(2499), - [sym_this] = ACTIONS(2499), - [sym_nullptr] = ACTIONS(2499), - [sym_raw_string_literal] = ACTIONS(2501), - }, - [849] = { - [sym_identifier] = ACTIONS(2503), - [aux_sym_preproc_include_token1] = ACTIONS(2503), - [aux_sym_preproc_def_token1] = ACTIONS(2503), - [aux_sym_preproc_if_token1] = ACTIONS(2503), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2503), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2503), - [sym_preproc_directive] = ACTIONS(2503), - [anon_sym_LPAREN2] = ACTIONS(2505), - [anon_sym_BANG] = ACTIONS(2505), - [anon_sym_TILDE] = ACTIONS(2505), - [anon_sym_DASH] = ACTIONS(2503), - [anon_sym_PLUS] = ACTIONS(2503), - [anon_sym_STAR] = ACTIONS(2505), - [anon_sym_AMP_AMP] = ACTIONS(2505), - [anon_sym_AMP] = ACTIONS(2503), - [anon_sym_SEMI] = ACTIONS(2505), - [anon_sym_typedef] = ACTIONS(2503), - [anon_sym_extern] = ACTIONS(2503), - [anon_sym___attribute__] = ACTIONS(2503), - [anon_sym_COLON_COLON] = ACTIONS(2505), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2505), - [anon_sym___declspec] = ACTIONS(2503), - [anon_sym___based] = ACTIONS(2503), - [anon_sym___cdecl] = ACTIONS(2503), - [anon_sym___clrcall] = ACTIONS(2503), - [anon_sym___stdcall] = ACTIONS(2503), - [anon_sym___fastcall] = ACTIONS(2503), - [anon_sym___thiscall] = ACTIONS(2503), - [anon_sym___vectorcall] = ACTIONS(2503), - [anon_sym_LBRACE] = ACTIONS(2505), - [anon_sym_RBRACE] = ACTIONS(2505), - [anon_sym_LBRACK] = ACTIONS(2503), - [anon_sym_static] = ACTIONS(2503), - [anon_sym_register] = ACTIONS(2503), - [anon_sym_inline] = ACTIONS(2503), - [anon_sym_thread_local] = ACTIONS(2503), - [anon_sym_const] = ACTIONS(2503), - [anon_sym_volatile] = ACTIONS(2503), - [anon_sym_restrict] = ACTIONS(2503), - [anon_sym__Atomic] = ACTIONS(2503), - [anon_sym_mutable] = ACTIONS(2503), - [anon_sym_constexpr] = ACTIONS(2503), - [anon_sym_constinit] = ACTIONS(2503), - [anon_sym_consteval] = ACTIONS(2503), - [anon_sym_signed] = ACTIONS(2503), - [anon_sym_unsigned] = ACTIONS(2503), - [anon_sym_long] = ACTIONS(2503), - [anon_sym_short] = ACTIONS(2503), - [sym_primitive_type] = ACTIONS(2503), - [anon_sym_enum] = ACTIONS(2503), - [anon_sym_class] = ACTIONS(2503), - [anon_sym_struct] = ACTIONS(2503), - [anon_sym_union] = ACTIONS(2503), - [anon_sym_if] = ACTIONS(2503), - [anon_sym_else] = ACTIONS(2503), - [anon_sym_switch] = ACTIONS(2503), - [anon_sym_case] = ACTIONS(2503), - [anon_sym_default] = ACTIONS(2503), - [anon_sym_while] = ACTIONS(2503), - [anon_sym_do] = ACTIONS(2503), - [anon_sym_for] = ACTIONS(2503), - [anon_sym_return] = ACTIONS(2503), - [anon_sym_break] = ACTIONS(2503), - [anon_sym_continue] = ACTIONS(2503), - [anon_sym_goto] = ACTIONS(2503), - [anon_sym_DASH_DASH] = ACTIONS(2505), - [anon_sym_PLUS_PLUS] = ACTIONS(2505), - [anon_sym_sizeof] = ACTIONS(2503), - [sym_number_literal] = ACTIONS(2505), - [anon_sym_L_SQUOTE] = ACTIONS(2505), - [anon_sym_u_SQUOTE] = ACTIONS(2505), - [anon_sym_U_SQUOTE] = ACTIONS(2505), - [anon_sym_u8_SQUOTE] = ACTIONS(2505), - [anon_sym_SQUOTE] = ACTIONS(2505), - [anon_sym_L_DQUOTE] = ACTIONS(2505), - [anon_sym_u_DQUOTE] = ACTIONS(2505), - [anon_sym_U_DQUOTE] = ACTIONS(2505), - [anon_sym_u8_DQUOTE] = ACTIONS(2505), - [anon_sym_DQUOTE] = ACTIONS(2505), - [sym_true] = ACTIONS(2503), - [sym_false] = ACTIONS(2503), - [sym_null] = ACTIONS(2503), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2503), - [anon_sym_decltype] = ACTIONS(2503), - [anon_sym_virtual] = ACTIONS(2503), - [anon_sym_explicit] = ACTIONS(2503), - [anon_sym_typename] = ACTIONS(2503), - [anon_sym_template] = ACTIONS(2503), - [anon_sym_operator] = ACTIONS(2503), - [anon_sym_try] = ACTIONS(2503), - [anon_sym_delete] = ACTIONS(2503), - [anon_sym_throw] = ACTIONS(2503), - [anon_sym_namespace] = ACTIONS(2503), - [anon_sym_using] = ACTIONS(2503), - [anon_sym_static_assert] = ACTIONS(2503), - [anon_sym_concept] = ACTIONS(2503), - [anon_sym_co_return] = ACTIONS(2503), - [anon_sym_co_yield] = ACTIONS(2503), - [anon_sym_co_await] = ACTIONS(2503), - [anon_sym_new] = ACTIONS(2503), - [anon_sym_requires] = ACTIONS(2503), - [sym_this] = ACTIONS(2503), - [sym_nullptr] = ACTIONS(2503), - [sym_raw_string_literal] = ACTIONS(2505), - }, - [850] = { - [sym_identifier] = ACTIONS(2443), - [aux_sym_preproc_include_token1] = ACTIONS(2443), - [aux_sym_preproc_def_token1] = ACTIONS(2443), - [aux_sym_preproc_if_token1] = ACTIONS(2443), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2443), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2443), - [sym_preproc_directive] = ACTIONS(2443), - [anon_sym_LPAREN2] = ACTIONS(2445), - [anon_sym_BANG] = ACTIONS(2445), - [anon_sym_TILDE] = ACTIONS(2445), - [anon_sym_DASH] = ACTIONS(2443), - [anon_sym_PLUS] = ACTIONS(2443), - [anon_sym_STAR] = ACTIONS(2445), - [anon_sym_AMP_AMP] = ACTIONS(2445), - [anon_sym_AMP] = ACTIONS(2443), - [anon_sym_SEMI] = ACTIONS(2445), - [anon_sym_typedef] = ACTIONS(2443), - [anon_sym_extern] = ACTIONS(2443), - [anon_sym___attribute__] = ACTIONS(2443), - [anon_sym_COLON_COLON] = ACTIONS(2445), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2445), - [anon_sym___declspec] = ACTIONS(2443), - [anon_sym___based] = ACTIONS(2443), - [anon_sym___cdecl] = ACTIONS(2443), - [anon_sym___clrcall] = ACTIONS(2443), - [anon_sym___stdcall] = ACTIONS(2443), - [anon_sym___fastcall] = ACTIONS(2443), - [anon_sym___thiscall] = ACTIONS(2443), - [anon_sym___vectorcall] = ACTIONS(2443), - [anon_sym_LBRACE] = ACTIONS(2445), - [anon_sym_RBRACE] = ACTIONS(2445), - [anon_sym_LBRACK] = ACTIONS(2443), - [anon_sym_static] = ACTIONS(2443), - [anon_sym_register] = ACTIONS(2443), - [anon_sym_inline] = ACTIONS(2443), - [anon_sym_thread_local] = ACTIONS(2443), - [anon_sym_const] = ACTIONS(2443), - [anon_sym_volatile] = ACTIONS(2443), - [anon_sym_restrict] = ACTIONS(2443), - [anon_sym__Atomic] = ACTIONS(2443), - [anon_sym_mutable] = ACTIONS(2443), - [anon_sym_constexpr] = ACTIONS(2443), - [anon_sym_constinit] = ACTIONS(2443), - [anon_sym_consteval] = ACTIONS(2443), - [anon_sym_signed] = ACTIONS(2443), - [anon_sym_unsigned] = ACTIONS(2443), - [anon_sym_long] = ACTIONS(2443), - [anon_sym_short] = ACTIONS(2443), - [sym_primitive_type] = ACTIONS(2443), - [anon_sym_enum] = ACTIONS(2443), - [anon_sym_class] = ACTIONS(2443), - [anon_sym_struct] = ACTIONS(2443), - [anon_sym_union] = ACTIONS(2443), - [anon_sym_if] = ACTIONS(2443), - [anon_sym_else] = ACTIONS(2443), - [anon_sym_switch] = ACTIONS(2443), - [anon_sym_case] = ACTIONS(2443), - [anon_sym_default] = ACTIONS(2443), - [anon_sym_while] = ACTIONS(2443), - [anon_sym_do] = ACTIONS(2443), - [anon_sym_for] = ACTIONS(2443), - [anon_sym_return] = ACTIONS(2443), - [anon_sym_break] = ACTIONS(2443), - [anon_sym_continue] = ACTIONS(2443), - [anon_sym_goto] = ACTIONS(2443), - [anon_sym_DASH_DASH] = ACTIONS(2445), - [anon_sym_PLUS_PLUS] = ACTIONS(2445), - [anon_sym_sizeof] = ACTIONS(2443), - [sym_number_literal] = ACTIONS(2445), - [anon_sym_L_SQUOTE] = ACTIONS(2445), - [anon_sym_u_SQUOTE] = ACTIONS(2445), - [anon_sym_U_SQUOTE] = ACTIONS(2445), - [anon_sym_u8_SQUOTE] = ACTIONS(2445), - [anon_sym_SQUOTE] = ACTIONS(2445), - [anon_sym_L_DQUOTE] = ACTIONS(2445), - [anon_sym_u_DQUOTE] = ACTIONS(2445), - [anon_sym_U_DQUOTE] = ACTIONS(2445), - [anon_sym_u8_DQUOTE] = ACTIONS(2445), - [anon_sym_DQUOTE] = ACTIONS(2445), - [sym_true] = ACTIONS(2443), - [sym_false] = ACTIONS(2443), - [sym_null] = ACTIONS(2443), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2443), - [anon_sym_decltype] = ACTIONS(2443), - [anon_sym_virtual] = ACTIONS(2443), - [anon_sym_explicit] = ACTIONS(2443), - [anon_sym_typename] = ACTIONS(2443), - [anon_sym_template] = ACTIONS(2443), - [anon_sym_operator] = ACTIONS(2443), - [anon_sym_try] = ACTIONS(2443), - [anon_sym_delete] = ACTIONS(2443), - [anon_sym_throw] = ACTIONS(2443), - [anon_sym_namespace] = ACTIONS(2443), - [anon_sym_using] = ACTIONS(2443), - [anon_sym_static_assert] = ACTIONS(2443), - [anon_sym_concept] = ACTIONS(2443), - [anon_sym_co_return] = ACTIONS(2443), - [anon_sym_co_yield] = ACTIONS(2443), - [anon_sym_co_await] = ACTIONS(2443), - [anon_sym_new] = ACTIONS(2443), - [anon_sym_requires] = ACTIONS(2443), - [sym_this] = ACTIONS(2443), - [sym_nullptr] = ACTIONS(2443), - [sym_raw_string_literal] = ACTIONS(2445), - }, - [851] = { - [sym_identifier] = ACTIONS(2507), - [aux_sym_preproc_include_token1] = ACTIONS(2507), - [aux_sym_preproc_def_token1] = ACTIONS(2507), - [aux_sym_preproc_if_token1] = ACTIONS(2507), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2507), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2507), - [sym_preproc_directive] = ACTIONS(2507), - [anon_sym_LPAREN2] = ACTIONS(2509), - [anon_sym_BANG] = ACTIONS(2509), - [anon_sym_TILDE] = ACTIONS(2509), - [anon_sym_DASH] = ACTIONS(2507), - [anon_sym_PLUS] = ACTIONS(2507), - [anon_sym_STAR] = ACTIONS(2509), - [anon_sym_AMP_AMP] = ACTIONS(2509), - [anon_sym_AMP] = ACTIONS(2507), - [anon_sym_SEMI] = ACTIONS(2509), - [anon_sym_typedef] = ACTIONS(2507), - [anon_sym_extern] = ACTIONS(2507), - [anon_sym___attribute__] = ACTIONS(2507), - [anon_sym_COLON_COLON] = ACTIONS(2509), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2509), - [anon_sym___declspec] = ACTIONS(2507), - [anon_sym___based] = ACTIONS(2507), - [anon_sym___cdecl] = ACTIONS(2507), - [anon_sym___clrcall] = ACTIONS(2507), - [anon_sym___stdcall] = ACTIONS(2507), - [anon_sym___fastcall] = ACTIONS(2507), - [anon_sym___thiscall] = ACTIONS(2507), - [anon_sym___vectorcall] = ACTIONS(2507), - [anon_sym_LBRACE] = ACTIONS(2509), - [anon_sym_RBRACE] = ACTIONS(2509), - [anon_sym_LBRACK] = ACTIONS(2507), - [anon_sym_static] = ACTIONS(2507), - [anon_sym_register] = ACTIONS(2507), - [anon_sym_inline] = ACTIONS(2507), - [anon_sym_thread_local] = ACTIONS(2507), - [anon_sym_const] = ACTIONS(2507), - [anon_sym_volatile] = ACTIONS(2507), - [anon_sym_restrict] = ACTIONS(2507), - [anon_sym__Atomic] = ACTIONS(2507), - [anon_sym_mutable] = ACTIONS(2507), - [anon_sym_constexpr] = ACTIONS(2507), - [anon_sym_constinit] = ACTIONS(2507), - [anon_sym_consteval] = ACTIONS(2507), - [anon_sym_signed] = ACTIONS(2507), - [anon_sym_unsigned] = ACTIONS(2507), - [anon_sym_long] = ACTIONS(2507), - [anon_sym_short] = ACTIONS(2507), - [sym_primitive_type] = ACTIONS(2507), - [anon_sym_enum] = ACTIONS(2507), - [anon_sym_class] = ACTIONS(2507), - [anon_sym_struct] = ACTIONS(2507), - [anon_sym_union] = ACTIONS(2507), - [anon_sym_if] = ACTIONS(2507), - [anon_sym_else] = ACTIONS(2507), - [anon_sym_switch] = ACTIONS(2507), - [anon_sym_case] = ACTIONS(2507), - [anon_sym_default] = ACTIONS(2507), - [anon_sym_while] = ACTIONS(2507), - [anon_sym_do] = ACTIONS(2507), - [anon_sym_for] = ACTIONS(2507), - [anon_sym_return] = ACTIONS(2507), - [anon_sym_break] = ACTIONS(2507), - [anon_sym_continue] = ACTIONS(2507), - [anon_sym_goto] = ACTIONS(2507), - [anon_sym_DASH_DASH] = ACTIONS(2509), - [anon_sym_PLUS_PLUS] = ACTIONS(2509), - [anon_sym_sizeof] = ACTIONS(2507), - [sym_number_literal] = ACTIONS(2509), - [anon_sym_L_SQUOTE] = ACTIONS(2509), - [anon_sym_u_SQUOTE] = ACTIONS(2509), - [anon_sym_U_SQUOTE] = ACTIONS(2509), - [anon_sym_u8_SQUOTE] = ACTIONS(2509), - [anon_sym_SQUOTE] = ACTIONS(2509), - [anon_sym_L_DQUOTE] = ACTIONS(2509), - [anon_sym_u_DQUOTE] = ACTIONS(2509), - [anon_sym_U_DQUOTE] = ACTIONS(2509), - [anon_sym_u8_DQUOTE] = ACTIONS(2509), - [anon_sym_DQUOTE] = ACTIONS(2509), - [sym_true] = ACTIONS(2507), - [sym_false] = ACTIONS(2507), - [sym_null] = ACTIONS(2507), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2507), - [anon_sym_decltype] = ACTIONS(2507), - [anon_sym_virtual] = ACTIONS(2507), - [anon_sym_explicit] = ACTIONS(2507), - [anon_sym_typename] = ACTIONS(2507), - [anon_sym_template] = ACTIONS(2507), - [anon_sym_operator] = ACTIONS(2507), - [anon_sym_try] = ACTIONS(2507), - [anon_sym_delete] = ACTIONS(2507), - [anon_sym_throw] = ACTIONS(2507), - [anon_sym_namespace] = ACTIONS(2507), - [anon_sym_using] = ACTIONS(2507), - [anon_sym_static_assert] = ACTIONS(2507), - [anon_sym_concept] = ACTIONS(2507), - [anon_sym_co_return] = ACTIONS(2507), - [anon_sym_co_yield] = ACTIONS(2507), - [anon_sym_co_await] = ACTIONS(2507), - [anon_sym_new] = ACTIONS(2507), - [anon_sym_requires] = ACTIONS(2507), - [sym_this] = ACTIONS(2507), - [sym_nullptr] = ACTIONS(2507), - [sym_raw_string_literal] = ACTIONS(2509), - }, - [852] = { - [sym_identifier] = ACTIONS(2351), - [aux_sym_preproc_include_token1] = ACTIONS(2351), - [aux_sym_preproc_def_token1] = ACTIONS(2351), - [aux_sym_preproc_if_token1] = ACTIONS(2351), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2351), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2351), - [sym_preproc_directive] = ACTIONS(2351), - [anon_sym_LPAREN2] = ACTIONS(2353), - [anon_sym_BANG] = ACTIONS(2353), - [anon_sym_TILDE] = ACTIONS(2353), - [anon_sym_DASH] = ACTIONS(2351), - [anon_sym_PLUS] = ACTIONS(2351), - [anon_sym_STAR] = ACTIONS(2353), - [anon_sym_AMP_AMP] = ACTIONS(2353), - [anon_sym_AMP] = ACTIONS(2351), - [anon_sym_SEMI] = ACTIONS(2353), - [anon_sym_typedef] = ACTIONS(2351), - [anon_sym_extern] = ACTIONS(2351), - [anon_sym___attribute__] = ACTIONS(2351), - [anon_sym_COLON_COLON] = ACTIONS(2353), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2353), - [anon_sym___declspec] = ACTIONS(2351), - [anon_sym___based] = ACTIONS(2351), - [anon_sym___cdecl] = ACTIONS(2351), - [anon_sym___clrcall] = ACTIONS(2351), - [anon_sym___stdcall] = ACTIONS(2351), - [anon_sym___fastcall] = ACTIONS(2351), - [anon_sym___thiscall] = ACTIONS(2351), - [anon_sym___vectorcall] = ACTIONS(2351), - [anon_sym_LBRACE] = ACTIONS(2353), - [anon_sym_RBRACE] = ACTIONS(2353), - [anon_sym_LBRACK] = ACTIONS(2351), - [anon_sym_static] = ACTIONS(2351), - [anon_sym_register] = ACTIONS(2351), - [anon_sym_inline] = ACTIONS(2351), - [anon_sym_thread_local] = ACTIONS(2351), - [anon_sym_const] = ACTIONS(2351), - [anon_sym_volatile] = ACTIONS(2351), - [anon_sym_restrict] = ACTIONS(2351), - [anon_sym__Atomic] = ACTIONS(2351), - [anon_sym_mutable] = ACTIONS(2351), - [anon_sym_constexpr] = ACTIONS(2351), - [anon_sym_constinit] = ACTIONS(2351), - [anon_sym_consteval] = ACTIONS(2351), - [anon_sym_signed] = ACTIONS(2351), - [anon_sym_unsigned] = ACTIONS(2351), - [anon_sym_long] = ACTIONS(2351), - [anon_sym_short] = ACTIONS(2351), - [sym_primitive_type] = ACTIONS(2351), - [anon_sym_enum] = ACTIONS(2351), - [anon_sym_class] = ACTIONS(2351), - [anon_sym_struct] = ACTIONS(2351), - [anon_sym_union] = ACTIONS(2351), - [anon_sym_if] = ACTIONS(2351), - [anon_sym_else] = ACTIONS(2351), - [anon_sym_switch] = ACTIONS(2351), - [anon_sym_case] = ACTIONS(2351), - [anon_sym_default] = ACTIONS(2351), - [anon_sym_while] = ACTIONS(2351), - [anon_sym_do] = ACTIONS(2351), - [anon_sym_for] = ACTIONS(2351), - [anon_sym_return] = ACTIONS(2351), - [anon_sym_break] = ACTIONS(2351), - [anon_sym_continue] = ACTIONS(2351), - [anon_sym_goto] = ACTIONS(2351), - [anon_sym_DASH_DASH] = ACTIONS(2353), - [anon_sym_PLUS_PLUS] = ACTIONS(2353), - [anon_sym_sizeof] = ACTIONS(2351), - [sym_number_literal] = ACTIONS(2353), - [anon_sym_L_SQUOTE] = ACTIONS(2353), - [anon_sym_u_SQUOTE] = ACTIONS(2353), - [anon_sym_U_SQUOTE] = ACTIONS(2353), - [anon_sym_u8_SQUOTE] = ACTIONS(2353), - [anon_sym_SQUOTE] = ACTIONS(2353), - [anon_sym_L_DQUOTE] = ACTIONS(2353), - [anon_sym_u_DQUOTE] = ACTIONS(2353), - [anon_sym_U_DQUOTE] = ACTIONS(2353), - [anon_sym_u8_DQUOTE] = ACTIONS(2353), - [anon_sym_DQUOTE] = ACTIONS(2353), - [sym_true] = ACTIONS(2351), - [sym_false] = ACTIONS(2351), - [sym_null] = ACTIONS(2351), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2351), - [anon_sym_decltype] = ACTIONS(2351), - [anon_sym_virtual] = ACTIONS(2351), - [anon_sym_explicit] = ACTIONS(2351), - [anon_sym_typename] = ACTIONS(2351), - [anon_sym_template] = ACTIONS(2351), - [anon_sym_operator] = ACTIONS(2351), - [anon_sym_try] = ACTIONS(2351), - [anon_sym_delete] = ACTIONS(2351), - [anon_sym_throw] = ACTIONS(2351), - [anon_sym_namespace] = ACTIONS(2351), - [anon_sym_using] = ACTIONS(2351), - [anon_sym_static_assert] = ACTIONS(2351), - [anon_sym_concept] = ACTIONS(2351), - [anon_sym_co_return] = ACTIONS(2351), - [anon_sym_co_yield] = ACTIONS(2351), - [anon_sym_co_await] = ACTIONS(2351), - [anon_sym_new] = ACTIONS(2351), - [anon_sym_requires] = ACTIONS(2351), - [sym_this] = ACTIONS(2351), - [sym_nullptr] = ACTIONS(2351), - [sym_raw_string_literal] = ACTIONS(2353), - }, - [853] = { - [sym_identifier] = ACTIONS(2351), - [aux_sym_preproc_include_token1] = ACTIONS(2351), - [aux_sym_preproc_def_token1] = ACTIONS(2351), - [aux_sym_preproc_if_token1] = ACTIONS(2351), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2351), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2351), - [sym_preproc_directive] = ACTIONS(2351), - [anon_sym_LPAREN2] = ACTIONS(2353), - [anon_sym_BANG] = ACTIONS(2353), - [anon_sym_TILDE] = ACTIONS(2353), - [anon_sym_DASH] = ACTIONS(2351), - [anon_sym_PLUS] = ACTIONS(2351), - [anon_sym_STAR] = ACTIONS(2353), - [anon_sym_AMP_AMP] = ACTIONS(2353), - [anon_sym_AMP] = ACTIONS(2351), - [anon_sym_SEMI] = ACTIONS(2353), - [anon_sym_typedef] = ACTIONS(2351), - [anon_sym_extern] = ACTIONS(2351), - [anon_sym___attribute__] = ACTIONS(2351), - [anon_sym_COLON_COLON] = ACTIONS(2353), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2353), - [anon_sym___declspec] = ACTIONS(2351), - [anon_sym___based] = ACTIONS(2351), - [anon_sym___cdecl] = ACTIONS(2351), - [anon_sym___clrcall] = ACTIONS(2351), - [anon_sym___stdcall] = ACTIONS(2351), - [anon_sym___fastcall] = ACTIONS(2351), - [anon_sym___thiscall] = ACTIONS(2351), - [anon_sym___vectorcall] = ACTIONS(2351), - [anon_sym_LBRACE] = ACTIONS(2353), - [anon_sym_RBRACE] = ACTIONS(2353), - [anon_sym_LBRACK] = ACTIONS(2351), - [anon_sym_static] = ACTIONS(2351), - [anon_sym_register] = ACTIONS(2351), - [anon_sym_inline] = ACTIONS(2351), - [anon_sym_thread_local] = ACTIONS(2351), - [anon_sym_const] = ACTIONS(2351), - [anon_sym_volatile] = ACTIONS(2351), - [anon_sym_restrict] = ACTIONS(2351), - [anon_sym__Atomic] = ACTIONS(2351), - [anon_sym_mutable] = ACTIONS(2351), - [anon_sym_constexpr] = ACTIONS(2351), - [anon_sym_constinit] = ACTIONS(2351), - [anon_sym_consteval] = ACTIONS(2351), - [anon_sym_signed] = ACTIONS(2351), - [anon_sym_unsigned] = ACTIONS(2351), - [anon_sym_long] = ACTIONS(2351), - [anon_sym_short] = ACTIONS(2351), - [sym_primitive_type] = ACTIONS(2351), - [anon_sym_enum] = ACTIONS(2351), - [anon_sym_class] = ACTIONS(2351), - [anon_sym_struct] = ACTIONS(2351), - [anon_sym_union] = ACTIONS(2351), - [anon_sym_if] = ACTIONS(2351), - [anon_sym_else] = ACTIONS(2351), - [anon_sym_switch] = ACTIONS(2351), - [anon_sym_case] = ACTIONS(2351), - [anon_sym_default] = ACTIONS(2351), - [anon_sym_while] = ACTIONS(2351), - [anon_sym_do] = ACTIONS(2351), - [anon_sym_for] = ACTIONS(2351), - [anon_sym_return] = ACTIONS(2351), - [anon_sym_break] = ACTIONS(2351), - [anon_sym_continue] = ACTIONS(2351), - [anon_sym_goto] = ACTIONS(2351), - [anon_sym_DASH_DASH] = ACTIONS(2353), - [anon_sym_PLUS_PLUS] = ACTIONS(2353), - [anon_sym_sizeof] = ACTIONS(2351), - [sym_number_literal] = ACTIONS(2353), - [anon_sym_L_SQUOTE] = ACTIONS(2353), - [anon_sym_u_SQUOTE] = ACTIONS(2353), - [anon_sym_U_SQUOTE] = ACTIONS(2353), - [anon_sym_u8_SQUOTE] = ACTIONS(2353), - [anon_sym_SQUOTE] = ACTIONS(2353), - [anon_sym_L_DQUOTE] = ACTIONS(2353), - [anon_sym_u_DQUOTE] = ACTIONS(2353), - [anon_sym_U_DQUOTE] = ACTIONS(2353), - [anon_sym_u8_DQUOTE] = ACTIONS(2353), - [anon_sym_DQUOTE] = ACTIONS(2353), - [sym_true] = ACTIONS(2351), - [sym_false] = ACTIONS(2351), - [sym_null] = ACTIONS(2351), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2351), - [anon_sym_decltype] = ACTIONS(2351), - [anon_sym_virtual] = ACTIONS(2351), - [anon_sym_explicit] = ACTIONS(2351), - [anon_sym_typename] = ACTIONS(2351), - [anon_sym_template] = ACTIONS(2351), - [anon_sym_operator] = ACTIONS(2351), - [anon_sym_try] = ACTIONS(2351), - [anon_sym_delete] = ACTIONS(2351), - [anon_sym_throw] = ACTIONS(2351), - [anon_sym_namespace] = ACTIONS(2351), - [anon_sym_using] = ACTIONS(2351), - [anon_sym_static_assert] = ACTIONS(2351), - [anon_sym_concept] = ACTIONS(2351), - [anon_sym_co_return] = ACTIONS(2351), - [anon_sym_co_yield] = ACTIONS(2351), - [anon_sym_co_await] = ACTIONS(2351), - [anon_sym_new] = ACTIONS(2351), - [anon_sym_requires] = ACTIONS(2351), - [sym_this] = ACTIONS(2351), - [sym_nullptr] = ACTIONS(2351), - [sym_raw_string_literal] = ACTIONS(2353), - }, - [854] = { - [sym_function_definition] = STATE(1817), - [sym_declaration] = STATE(1817), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(3965), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(2900), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym_ms_call_modifier] = STATE(1874), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4703), - [sym_array_declarator] = STATE(4825), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(2969), + [546] = { + [sym_type_qualifier] = STATE(3373), + [sym__type_specifier] = STATE(4189), [sym_sized_type_specifier] = STATE(3139), [sym_enum_specifier] = STATE(3139), [sym_struct_specifier] = STATE(3139), [sym_union_specifier] = STATE(3139), - [sym__empty_declaration] = STATE(1817), + [sym__expression] = STATE(3603), + [sym_conditional_expression] = STATE(3865), + [sym_assignment_expression] = STATE(3865), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3865), + [sym_binary_expression] = STATE(3865), + [sym_update_expression] = STATE(3865), + [sym_cast_expression] = STATE(3865), + [sym_type_descriptor] = STATE(5693), + [sym_sizeof_expression] = STATE(3865), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3865), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3707), + [sym_concatenated_string] = STATE(3707), + [sym_string_literal] = STATE(3250), [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), + [sym_decltype_auto] = STATE(3138), [sym_decltype] = STATE(3139), [sym_class_specifier] = STATE(3139), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1767), + [sym__class_name] = STATE(6539), [sym_dependent_type] = STATE(3139), - [sym_template_declaration] = STATE(1817), - [sym_operator_cast] = STATE(5199), - [sym__constructor_specifiers] = STATE(1767), - [sym_operator_cast_definition] = STATE(1817), - [sym_operator_cast_declaration] = STATE(1817), - [sym_constructor_or_destructor_definition] = STATE(1817), - [sym_constructor_or_destructor_declaration] = STATE(1817), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(2976), - [sym_template_function] = STATE(4825), - [sym_alias_declaration] = STATE(1817), - [sym_concept_definition] = STATE(1817), - [sym_requires_clause] = STATE(1062), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4520), - [sym_qualified_identifier] = STATE(4825), - [sym_qualified_type_identifier] = STATE(3198), - [sym_qualified_operator_cast_identifier] = STATE(5199), - [sym_operator_name] = STATE(4825), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_operator_cast_definition_repeat1] = STATE(1767), - [sym_identifier] = ACTIONS(2805), - [anon_sym_LPAREN2] = ACTIONS(1515), - [anon_sym_TILDE] = ACTIONS(1517), - [anon_sym_STAR] = ACTIONS(1519), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1521), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2807), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1389), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACK] = ACTIONS(1527), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), + [sym_template_type] = STATE(4443), + [sym_template_function] = STATE(3865), + [sym_co_await_expression] = STATE(3865), + [sym_new_expression] = STATE(3865), + [sym_delete_expression] = STATE(3865), + [sym_requires_clause] = STATE(3865), + [sym_requires_expression] = STATE(3865), + [sym_lambda_expression] = STATE(3865), + [sym_lambda_capture_specifier] = STATE(4789), + [sym_fold_expression] = STATE(3865), + [sym_parameter_pack_expansion] = STATE(3865), + [sym_type_parameter_pack_expansion] = STATE(5983), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4919), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(4514), + [sym_user_defined_literal] = STATE(3865), + [aux_sym_type_definition_repeat1] = STATE(3373), + [aux_sym_sized_type_specifier_repeat1] = STATE(2300), + [sym_identifier] = ACTIONS(2663), + [anon_sym_LPAREN2] = ACTIONS(2665), + [anon_sym_BANG] = ACTIONS(2667), + [anon_sym_TILDE] = ACTIONS(2667), + [anon_sym_DASH] = ACTIONS(2669), + [anon_sym_PLUS] = ACTIONS(2669), + [anon_sym_STAR] = ACTIONS(2671), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_COLON_COLON] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(1713), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -127957,2013 +97596,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_constexpr] = ACTIONS(57), [anon_sym_constinit] = ACTIONS(57), [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(2809), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), + [anon_sym_signed] = ACTIONS(2675), + [anon_sym_unsigned] = ACTIONS(2675), + [anon_sym_long] = ACTIONS(2675), + [anon_sym_short] = ACTIONS(2675), + [sym_primitive_type] = ACTIONS(2677), + [anon_sym_enum] = ACTIONS(2679), + [anon_sym_class] = ACTIONS(2681), + [anon_sym_struct] = ACTIONS(2683), + [anon_sym_union] = ACTIONS(2685), + [anon_sym_not] = ACTIONS(2669), + [anon_sym_compl] = ACTIONS(2669), + [anon_sym_DASH_DASH] = ACTIONS(2687), + [anon_sym_PLUS_PLUS] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2689), + [sym_number_literal] = ACTIONS(2691), + [anon_sym_L_SQUOTE] = ACTIONS(2693), + [anon_sym_u_SQUOTE] = ACTIONS(2693), + [anon_sym_U_SQUOTE] = ACTIONS(2693), + [anon_sym_u8_SQUOTE] = ACTIONS(2693), + [anon_sym_SQUOTE] = ACTIONS(2693), + [anon_sym_L_DQUOTE] = ACTIONS(2695), + [anon_sym_u_DQUOTE] = ACTIONS(2695), + [anon_sym_U_DQUOTE] = ACTIONS(2695), + [anon_sym_u8_DQUOTE] = ACTIONS(2695), + [anon_sym_DQUOTE] = ACTIONS(2695), + [sym_true] = ACTIONS(2697), + [sym_false] = ACTIONS(2697), + [sym_null] = ACTIONS(2697), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(105), - [anon_sym_decltype] = ACTIONS(107), - [anon_sym_virtual] = ACTIONS(109), - [anon_sym_explicit] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(1549), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_using] = ACTIONS(2881), - [anon_sym_concept] = ACTIONS(2883), - [anon_sym_requires] = ACTIONS(2815), - }, - [855] = { - [sym_identifier] = ACTIONS(2429), - [aux_sym_preproc_include_token1] = ACTIONS(2429), - [aux_sym_preproc_def_token1] = ACTIONS(2429), - [aux_sym_preproc_if_token1] = ACTIONS(2429), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2429), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2429), - [sym_preproc_directive] = ACTIONS(2429), - [anon_sym_LPAREN2] = ACTIONS(2431), - [anon_sym_BANG] = ACTIONS(2431), - [anon_sym_TILDE] = ACTIONS(2431), - [anon_sym_DASH] = ACTIONS(2429), - [anon_sym_PLUS] = ACTIONS(2429), - [anon_sym_STAR] = ACTIONS(2431), - [anon_sym_AMP_AMP] = ACTIONS(2431), - [anon_sym_AMP] = ACTIONS(2429), - [anon_sym_SEMI] = ACTIONS(2431), - [anon_sym_typedef] = ACTIONS(2429), - [anon_sym_extern] = ACTIONS(2429), - [anon_sym___attribute__] = ACTIONS(2429), - [anon_sym_COLON_COLON] = ACTIONS(2431), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2431), - [anon_sym___declspec] = ACTIONS(2429), - [anon_sym___based] = ACTIONS(2429), - [anon_sym___cdecl] = ACTIONS(2429), - [anon_sym___clrcall] = ACTIONS(2429), - [anon_sym___stdcall] = ACTIONS(2429), - [anon_sym___fastcall] = ACTIONS(2429), - [anon_sym___thiscall] = ACTIONS(2429), - [anon_sym___vectorcall] = ACTIONS(2429), - [anon_sym_LBRACE] = ACTIONS(2431), - [anon_sym_RBRACE] = ACTIONS(2431), - [anon_sym_LBRACK] = ACTIONS(2429), - [anon_sym_static] = ACTIONS(2429), - [anon_sym_register] = ACTIONS(2429), - [anon_sym_inline] = ACTIONS(2429), - [anon_sym_thread_local] = ACTIONS(2429), - [anon_sym_const] = ACTIONS(2429), - [anon_sym_volatile] = ACTIONS(2429), - [anon_sym_restrict] = ACTIONS(2429), - [anon_sym__Atomic] = ACTIONS(2429), - [anon_sym_mutable] = ACTIONS(2429), - [anon_sym_constexpr] = ACTIONS(2429), - [anon_sym_constinit] = ACTIONS(2429), - [anon_sym_consteval] = ACTIONS(2429), - [anon_sym_signed] = ACTIONS(2429), - [anon_sym_unsigned] = ACTIONS(2429), - [anon_sym_long] = ACTIONS(2429), - [anon_sym_short] = ACTIONS(2429), - [sym_primitive_type] = ACTIONS(2429), - [anon_sym_enum] = ACTIONS(2429), - [anon_sym_class] = ACTIONS(2429), - [anon_sym_struct] = ACTIONS(2429), - [anon_sym_union] = ACTIONS(2429), - [anon_sym_if] = ACTIONS(2429), - [anon_sym_else] = ACTIONS(2429), - [anon_sym_switch] = ACTIONS(2429), - [anon_sym_case] = ACTIONS(2429), - [anon_sym_default] = ACTIONS(2429), - [anon_sym_while] = ACTIONS(2429), - [anon_sym_do] = ACTIONS(2429), - [anon_sym_for] = ACTIONS(2429), - [anon_sym_return] = ACTIONS(2429), - [anon_sym_break] = ACTIONS(2429), - [anon_sym_continue] = ACTIONS(2429), - [anon_sym_goto] = ACTIONS(2429), - [anon_sym_DASH_DASH] = ACTIONS(2431), - [anon_sym_PLUS_PLUS] = ACTIONS(2431), - [anon_sym_sizeof] = ACTIONS(2429), - [sym_number_literal] = ACTIONS(2431), - [anon_sym_L_SQUOTE] = ACTIONS(2431), - [anon_sym_u_SQUOTE] = ACTIONS(2431), - [anon_sym_U_SQUOTE] = ACTIONS(2431), - [anon_sym_u8_SQUOTE] = ACTIONS(2431), - [anon_sym_SQUOTE] = ACTIONS(2431), - [anon_sym_L_DQUOTE] = ACTIONS(2431), - [anon_sym_u_DQUOTE] = ACTIONS(2431), - [anon_sym_U_DQUOTE] = ACTIONS(2431), - [anon_sym_u8_DQUOTE] = ACTIONS(2431), - [anon_sym_DQUOTE] = ACTIONS(2431), - [sym_true] = ACTIONS(2429), - [sym_false] = ACTIONS(2429), - [sym_null] = ACTIONS(2429), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2429), - [anon_sym_decltype] = ACTIONS(2429), - [anon_sym_virtual] = ACTIONS(2429), - [anon_sym_explicit] = ACTIONS(2429), - [anon_sym_typename] = ACTIONS(2429), - [anon_sym_template] = ACTIONS(2429), - [anon_sym_operator] = ACTIONS(2429), - [anon_sym_try] = ACTIONS(2429), - [anon_sym_delete] = ACTIONS(2429), - [anon_sym_throw] = ACTIONS(2429), - [anon_sym_namespace] = ACTIONS(2429), - [anon_sym_using] = ACTIONS(2429), - [anon_sym_static_assert] = ACTIONS(2429), - [anon_sym_concept] = ACTIONS(2429), - [anon_sym_co_return] = ACTIONS(2429), - [anon_sym_co_yield] = ACTIONS(2429), - [anon_sym_co_await] = ACTIONS(2429), - [anon_sym_new] = ACTIONS(2429), - [anon_sym_requires] = ACTIONS(2429), - [sym_this] = ACTIONS(2429), - [sym_nullptr] = ACTIONS(2429), - [sym_raw_string_literal] = ACTIONS(2431), - }, - [856] = { - [ts_builtin_sym_end] = ACTIONS(2385), - [sym_identifier] = ACTIONS(2383), - [aux_sym_preproc_include_token1] = ACTIONS(2383), - [aux_sym_preproc_def_token1] = ACTIONS(2383), - [aux_sym_preproc_if_token1] = ACTIONS(2383), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2383), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2383), - [sym_preproc_directive] = ACTIONS(2383), - [anon_sym_LPAREN2] = ACTIONS(2385), - [anon_sym_BANG] = ACTIONS(2385), - [anon_sym_TILDE] = ACTIONS(2385), - [anon_sym_DASH] = ACTIONS(2383), - [anon_sym_PLUS] = ACTIONS(2383), - [anon_sym_STAR] = ACTIONS(2385), - [anon_sym_AMP_AMP] = ACTIONS(2385), - [anon_sym_AMP] = ACTIONS(2383), - [anon_sym_SEMI] = ACTIONS(2385), - [anon_sym_typedef] = ACTIONS(2383), - [anon_sym_extern] = ACTIONS(2383), - [anon_sym___attribute__] = ACTIONS(2383), - [anon_sym_COLON_COLON] = ACTIONS(2385), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2385), - [anon_sym___declspec] = ACTIONS(2383), - [anon_sym___based] = ACTIONS(2383), - [anon_sym___cdecl] = ACTIONS(2383), - [anon_sym___clrcall] = ACTIONS(2383), - [anon_sym___stdcall] = ACTIONS(2383), - [anon_sym___fastcall] = ACTIONS(2383), - [anon_sym___thiscall] = ACTIONS(2383), - [anon_sym___vectorcall] = ACTIONS(2383), - [anon_sym_LBRACE] = ACTIONS(2385), - [anon_sym_LBRACK] = ACTIONS(2383), - [anon_sym_static] = ACTIONS(2383), - [anon_sym_register] = ACTIONS(2383), - [anon_sym_inline] = ACTIONS(2383), - [anon_sym_thread_local] = ACTIONS(2383), - [anon_sym_const] = ACTIONS(2383), - [anon_sym_volatile] = ACTIONS(2383), - [anon_sym_restrict] = ACTIONS(2383), - [anon_sym__Atomic] = ACTIONS(2383), - [anon_sym_mutable] = ACTIONS(2383), - [anon_sym_constexpr] = ACTIONS(2383), - [anon_sym_constinit] = ACTIONS(2383), - [anon_sym_consteval] = ACTIONS(2383), - [anon_sym_signed] = ACTIONS(2383), - [anon_sym_unsigned] = ACTIONS(2383), - [anon_sym_long] = ACTIONS(2383), - [anon_sym_short] = ACTIONS(2383), - [sym_primitive_type] = ACTIONS(2383), - [anon_sym_enum] = ACTIONS(2383), - [anon_sym_class] = ACTIONS(2383), - [anon_sym_struct] = ACTIONS(2383), - [anon_sym_union] = ACTIONS(2383), - [anon_sym_if] = ACTIONS(2383), - [anon_sym_else] = ACTIONS(2383), - [anon_sym_switch] = ACTIONS(2383), - [anon_sym_case] = ACTIONS(2383), - [anon_sym_default] = ACTIONS(2383), - [anon_sym_while] = ACTIONS(2383), - [anon_sym_do] = ACTIONS(2383), - [anon_sym_for] = ACTIONS(2383), - [anon_sym_return] = ACTIONS(2383), - [anon_sym_break] = ACTIONS(2383), - [anon_sym_continue] = ACTIONS(2383), - [anon_sym_goto] = ACTIONS(2383), - [anon_sym_DASH_DASH] = ACTIONS(2385), - [anon_sym_PLUS_PLUS] = ACTIONS(2385), - [anon_sym_sizeof] = ACTIONS(2383), - [sym_number_literal] = ACTIONS(2385), - [anon_sym_L_SQUOTE] = ACTIONS(2385), - [anon_sym_u_SQUOTE] = ACTIONS(2385), - [anon_sym_U_SQUOTE] = ACTIONS(2385), - [anon_sym_u8_SQUOTE] = ACTIONS(2385), - [anon_sym_SQUOTE] = ACTIONS(2385), - [anon_sym_L_DQUOTE] = ACTIONS(2385), - [anon_sym_u_DQUOTE] = ACTIONS(2385), - [anon_sym_U_DQUOTE] = ACTIONS(2385), - [anon_sym_u8_DQUOTE] = ACTIONS(2385), - [anon_sym_DQUOTE] = ACTIONS(2385), - [sym_true] = ACTIONS(2383), - [sym_false] = ACTIONS(2383), - [sym_null] = ACTIONS(2383), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2383), - [anon_sym_decltype] = ACTIONS(2383), - [anon_sym_virtual] = ACTIONS(2383), - [anon_sym_explicit] = ACTIONS(2383), - [anon_sym_typename] = ACTIONS(2383), - [anon_sym_template] = ACTIONS(2383), - [anon_sym_operator] = ACTIONS(2383), - [anon_sym_try] = ACTIONS(2383), - [anon_sym_delete] = ACTIONS(2383), - [anon_sym_throw] = ACTIONS(2383), - [anon_sym_namespace] = ACTIONS(2383), - [anon_sym_using] = ACTIONS(2383), - [anon_sym_static_assert] = ACTIONS(2383), - [anon_sym_concept] = ACTIONS(2383), - [anon_sym_co_return] = ACTIONS(2383), - [anon_sym_co_yield] = ACTIONS(2383), - [anon_sym_co_await] = ACTIONS(2383), - [anon_sym_new] = ACTIONS(2383), - [anon_sym_requires] = ACTIONS(2383), - [sym_this] = ACTIONS(2383), - [sym_nullptr] = ACTIONS(2383), - [sym_raw_string_literal] = ACTIONS(2385), - }, - [857] = { - [ts_builtin_sym_end] = ACTIONS(2435), - [sym_identifier] = ACTIONS(2433), - [aux_sym_preproc_include_token1] = ACTIONS(2433), - [aux_sym_preproc_def_token1] = ACTIONS(2433), - [aux_sym_preproc_if_token1] = ACTIONS(2433), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2433), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2433), - [sym_preproc_directive] = ACTIONS(2433), - [anon_sym_LPAREN2] = ACTIONS(2435), - [anon_sym_BANG] = ACTIONS(2435), - [anon_sym_TILDE] = ACTIONS(2435), - [anon_sym_DASH] = ACTIONS(2433), - [anon_sym_PLUS] = ACTIONS(2433), - [anon_sym_STAR] = ACTIONS(2435), - [anon_sym_AMP_AMP] = ACTIONS(2435), - [anon_sym_AMP] = ACTIONS(2433), - [anon_sym_SEMI] = ACTIONS(2435), - [anon_sym_typedef] = ACTIONS(2433), - [anon_sym_extern] = ACTIONS(2433), - [anon_sym___attribute__] = ACTIONS(2433), - [anon_sym_COLON_COLON] = ACTIONS(2435), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2435), - [anon_sym___declspec] = ACTIONS(2433), - [anon_sym___based] = ACTIONS(2433), - [anon_sym___cdecl] = ACTIONS(2433), - [anon_sym___clrcall] = ACTIONS(2433), - [anon_sym___stdcall] = ACTIONS(2433), - [anon_sym___fastcall] = ACTIONS(2433), - [anon_sym___thiscall] = ACTIONS(2433), - [anon_sym___vectorcall] = ACTIONS(2433), - [anon_sym_LBRACE] = ACTIONS(2435), - [anon_sym_LBRACK] = ACTIONS(2433), - [anon_sym_static] = ACTIONS(2433), - [anon_sym_register] = ACTIONS(2433), - [anon_sym_inline] = ACTIONS(2433), - [anon_sym_thread_local] = ACTIONS(2433), - [anon_sym_const] = ACTIONS(2433), - [anon_sym_volatile] = ACTIONS(2433), - [anon_sym_restrict] = ACTIONS(2433), - [anon_sym__Atomic] = ACTIONS(2433), - [anon_sym_mutable] = ACTIONS(2433), - [anon_sym_constexpr] = ACTIONS(2433), - [anon_sym_constinit] = ACTIONS(2433), - [anon_sym_consteval] = ACTIONS(2433), - [anon_sym_signed] = ACTIONS(2433), - [anon_sym_unsigned] = ACTIONS(2433), - [anon_sym_long] = ACTIONS(2433), - [anon_sym_short] = ACTIONS(2433), - [sym_primitive_type] = ACTIONS(2433), - [anon_sym_enum] = ACTIONS(2433), - [anon_sym_class] = ACTIONS(2433), - [anon_sym_struct] = ACTIONS(2433), - [anon_sym_union] = ACTIONS(2433), - [anon_sym_if] = ACTIONS(2433), - [anon_sym_else] = ACTIONS(2433), - [anon_sym_switch] = ACTIONS(2433), - [anon_sym_case] = ACTIONS(2433), - [anon_sym_default] = ACTIONS(2433), - [anon_sym_while] = ACTIONS(2433), - [anon_sym_do] = ACTIONS(2433), - [anon_sym_for] = ACTIONS(2433), - [anon_sym_return] = ACTIONS(2433), - [anon_sym_break] = ACTIONS(2433), - [anon_sym_continue] = ACTIONS(2433), - [anon_sym_goto] = ACTIONS(2433), - [anon_sym_DASH_DASH] = ACTIONS(2435), - [anon_sym_PLUS_PLUS] = ACTIONS(2435), - [anon_sym_sizeof] = ACTIONS(2433), - [sym_number_literal] = ACTIONS(2435), - [anon_sym_L_SQUOTE] = ACTIONS(2435), - [anon_sym_u_SQUOTE] = ACTIONS(2435), - [anon_sym_U_SQUOTE] = ACTIONS(2435), - [anon_sym_u8_SQUOTE] = ACTIONS(2435), - [anon_sym_SQUOTE] = ACTIONS(2435), - [anon_sym_L_DQUOTE] = ACTIONS(2435), - [anon_sym_u_DQUOTE] = ACTIONS(2435), - [anon_sym_U_DQUOTE] = ACTIONS(2435), - [anon_sym_u8_DQUOTE] = ACTIONS(2435), - [anon_sym_DQUOTE] = ACTIONS(2435), - [sym_true] = ACTIONS(2433), - [sym_false] = ACTIONS(2433), - [sym_null] = ACTIONS(2433), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2433), - [anon_sym_decltype] = ACTIONS(2433), - [anon_sym_virtual] = ACTIONS(2433), - [anon_sym_explicit] = ACTIONS(2433), - [anon_sym_typename] = ACTIONS(2433), - [anon_sym_template] = ACTIONS(2433), - [anon_sym_operator] = ACTIONS(2433), - [anon_sym_try] = ACTIONS(2433), - [anon_sym_delete] = ACTIONS(2433), - [anon_sym_throw] = ACTIONS(2433), - [anon_sym_namespace] = ACTIONS(2433), - [anon_sym_using] = ACTIONS(2433), - [anon_sym_static_assert] = ACTIONS(2433), - [anon_sym_concept] = ACTIONS(2433), - [anon_sym_co_return] = ACTIONS(2433), - [anon_sym_co_yield] = ACTIONS(2433), - [anon_sym_co_await] = ACTIONS(2433), - [anon_sym_new] = ACTIONS(2433), - [anon_sym_requires] = ACTIONS(2433), - [sym_this] = ACTIONS(2433), - [sym_nullptr] = ACTIONS(2433), - [sym_raw_string_literal] = ACTIONS(2435), - }, - [858] = { - [sym_identifier] = ACTIONS(2401), - [aux_sym_preproc_include_token1] = ACTIONS(2401), - [aux_sym_preproc_def_token1] = ACTIONS(2401), - [aux_sym_preproc_if_token1] = ACTIONS(2401), - [aux_sym_preproc_if_token2] = ACTIONS(2401), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2401), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2401), - [sym_preproc_directive] = ACTIONS(2401), - [anon_sym_LPAREN2] = ACTIONS(2403), - [anon_sym_BANG] = ACTIONS(2403), - [anon_sym_TILDE] = ACTIONS(2403), - [anon_sym_DASH] = ACTIONS(2401), - [anon_sym_PLUS] = ACTIONS(2401), - [anon_sym_STAR] = ACTIONS(2403), - [anon_sym_AMP_AMP] = ACTIONS(2403), - [anon_sym_AMP] = ACTIONS(2401), - [anon_sym_SEMI] = ACTIONS(2403), - [anon_sym_typedef] = ACTIONS(2401), - [anon_sym_extern] = ACTIONS(2401), - [anon_sym___attribute__] = ACTIONS(2401), - [anon_sym_COLON_COLON] = ACTIONS(2403), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2403), - [anon_sym___declspec] = ACTIONS(2401), - [anon_sym___based] = ACTIONS(2401), - [anon_sym___cdecl] = ACTIONS(2401), - [anon_sym___clrcall] = ACTIONS(2401), - [anon_sym___stdcall] = ACTIONS(2401), - [anon_sym___fastcall] = ACTIONS(2401), - [anon_sym___thiscall] = ACTIONS(2401), - [anon_sym___vectorcall] = ACTIONS(2401), - [anon_sym_LBRACE] = ACTIONS(2403), - [anon_sym_LBRACK] = ACTIONS(2401), - [anon_sym_static] = ACTIONS(2401), - [anon_sym_register] = ACTIONS(2401), - [anon_sym_inline] = ACTIONS(2401), - [anon_sym_thread_local] = ACTIONS(2401), - [anon_sym_const] = ACTIONS(2401), - [anon_sym_volatile] = ACTIONS(2401), - [anon_sym_restrict] = ACTIONS(2401), - [anon_sym__Atomic] = ACTIONS(2401), - [anon_sym_mutable] = ACTIONS(2401), - [anon_sym_constexpr] = ACTIONS(2401), - [anon_sym_constinit] = ACTIONS(2401), - [anon_sym_consteval] = ACTIONS(2401), - [anon_sym_signed] = ACTIONS(2401), - [anon_sym_unsigned] = ACTIONS(2401), - [anon_sym_long] = ACTIONS(2401), - [anon_sym_short] = ACTIONS(2401), - [sym_primitive_type] = ACTIONS(2401), - [anon_sym_enum] = ACTIONS(2401), - [anon_sym_class] = ACTIONS(2401), - [anon_sym_struct] = ACTIONS(2401), - [anon_sym_union] = ACTIONS(2401), - [anon_sym_if] = ACTIONS(2401), - [anon_sym_else] = ACTIONS(2401), - [anon_sym_switch] = ACTIONS(2401), - [anon_sym_case] = ACTIONS(2401), - [anon_sym_default] = ACTIONS(2401), - [anon_sym_while] = ACTIONS(2401), - [anon_sym_do] = ACTIONS(2401), - [anon_sym_for] = ACTIONS(2401), - [anon_sym_return] = ACTIONS(2401), - [anon_sym_break] = ACTIONS(2401), - [anon_sym_continue] = ACTIONS(2401), - [anon_sym_goto] = ACTIONS(2401), - [anon_sym_DASH_DASH] = ACTIONS(2403), - [anon_sym_PLUS_PLUS] = ACTIONS(2403), - [anon_sym_sizeof] = ACTIONS(2401), - [sym_number_literal] = ACTIONS(2403), - [anon_sym_L_SQUOTE] = ACTIONS(2403), - [anon_sym_u_SQUOTE] = ACTIONS(2403), - [anon_sym_U_SQUOTE] = ACTIONS(2403), - [anon_sym_u8_SQUOTE] = ACTIONS(2403), - [anon_sym_SQUOTE] = ACTIONS(2403), - [anon_sym_L_DQUOTE] = ACTIONS(2403), - [anon_sym_u_DQUOTE] = ACTIONS(2403), - [anon_sym_U_DQUOTE] = ACTIONS(2403), - [anon_sym_u8_DQUOTE] = ACTIONS(2403), - [anon_sym_DQUOTE] = ACTIONS(2403), - [sym_true] = ACTIONS(2401), - [sym_false] = ACTIONS(2401), - [sym_null] = ACTIONS(2401), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2401), - [anon_sym_decltype] = ACTIONS(2401), - [anon_sym_virtual] = ACTIONS(2401), - [anon_sym_explicit] = ACTIONS(2401), - [anon_sym_typename] = ACTIONS(2401), - [anon_sym_template] = ACTIONS(2401), - [anon_sym_operator] = ACTIONS(2401), - [anon_sym_try] = ACTIONS(2401), - [anon_sym_delete] = ACTIONS(2401), - [anon_sym_throw] = ACTIONS(2401), - [anon_sym_namespace] = ACTIONS(2401), - [anon_sym_using] = ACTIONS(2401), - [anon_sym_static_assert] = ACTIONS(2401), - [anon_sym_concept] = ACTIONS(2401), - [anon_sym_co_return] = ACTIONS(2401), - [anon_sym_co_yield] = ACTIONS(2401), - [anon_sym_co_await] = ACTIONS(2401), - [anon_sym_new] = ACTIONS(2401), - [anon_sym_requires] = ACTIONS(2401), - [sym_this] = ACTIONS(2401), - [sym_nullptr] = ACTIONS(2401), - [sym_raw_string_literal] = ACTIONS(2403), - }, - [859] = { - [sym_identifier] = ACTIONS(2425), - [aux_sym_preproc_include_token1] = ACTIONS(2425), - [aux_sym_preproc_def_token1] = ACTIONS(2425), - [aux_sym_preproc_if_token1] = ACTIONS(2425), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2425), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2425), - [sym_preproc_directive] = ACTIONS(2425), - [anon_sym_LPAREN2] = ACTIONS(2427), - [anon_sym_BANG] = ACTIONS(2427), - [anon_sym_TILDE] = ACTIONS(2427), - [anon_sym_DASH] = ACTIONS(2425), - [anon_sym_PLUS] = ACTIONS(2425), - [anon_sym_STAR] = ACTIONS(2427), - [anon_sym_AMP_AMP] = ACTIONS(2427), - [anon_sym_AMP] = ACTIONS(2425), - [anon_sym_SEMI] = ACTIONS(2427), - [anon_sym_typedef] = ACTIONS(2425), - [anon_sym_extern] = ACTIONS(2425), - [anon_sym___attribute__] = ACTIONS(2425), - [anon_sym_COLON_COLON] = ACTIONS(2427), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2427), - [anon_sym___declspec] = ACTIONS(2425), - [anon_sym___based] = ACTIONS(2425), - [anon_sym___cdecl] = ACTIONS(2425), - [anon_sym___clrcall] = ACTIONS(2425), - [anon_sym___stdcall] = ACTIONS(2425), - [anon_sym___fastcall] = ACTIONS(2425), - [anon_sym___thiscall] = ACTIONS(2425), - [anon_sym___vectorcall] = ACTIONS(2425), - [anon_sym_LBRACE] = ACTIONS(2427), - [anon_sym_RBRACE] = ACTIONS(2427), - [anon_sym_LBRACK] = ACTIONS(2425), - [anon_sym_static] = ACTIONS(2425), - [anon_sym_register] = ACTIONS(2425), - [anon_sym_inline] = ACTIONS(2425), - [anon_sym_thread_local] = ACTIONS(2425), - [anon_sym_const] = ACTIONS(2425), - [anon_sym_volatile] = ACTIONS(2425), - [anon_sym_restrict] = ACTIONS(2425), - [anon_sym__Atomic] = ACTIONS(2425), - [anon_sym_mutable] = ACTIONS(2425), - [anon_sym_constexpr] = ACTIONS(2425), - [anon_sym_constinit] = ACTIONS(2425), - [anon_sym_consteval] = ACTIONS(2425), - [anon_sym_signed] = ACTIONS(2425), - [anon_sym_unsigned] = ACTIONS(2425), - [anon_sym_long] = ACTIONS(2425), - [anon_sym_short] = ACTIONS(2425), - [sym_primitive_type] = ACTIONS(2425), - [anon_sym_enum] = ACTIONS(2425), - [anon_sym_class] = ACTIONS(2425), - [anon_sym_struct] = ACTIONS(2425), - [anon_sym_union] = ACTIONS(2425), - [anon_sym_if] = ACTIONS(2425), - [anon_sym_else] = ACTIONS(2425), - [anon_sym_switch] = ACTIONS(2425), - [anon_sym_case] = ACTIONS(2425), - [anon_sym_default] = ACTIONS(2425), - [anon_sym_while] = ACTIONS(2425), - [anon_sym_do] = ACTIONS(2425), - [anon_sym_for] = ACTIONS(2425), - [anon_sym_return] = ACTIONS(2425), - [anon_sym_break] = ACTIONS(2425), - [anon_sym_continue] = ACTIONS(2425), - [anon_sym_goto] = ACTIONS(2425), - [anon_sym_DASH_DASH] = ACTIONS(2427), - [anon_sym_PLUS_PLUS] = ACTIONS(2427), - [anon_sym_sizeof] = ACTIONS(2425), - [sym_number_literal] = ACTIONS(2427), - [anon_sym_L_SQUOTE] = ACTIONS(2427), - [anon_sym_u_SQUOTE] = ACTIONS(2427), - [anon_sym_U_SQUOTE] = ACTIONS(2427), - [anon_sym_u8_SQUOTE] = ACTIONS(2427), - [anon_sym_SQUOTE] = ACTIONS(2427), - [anon_sym_L_DQUOTE] = ACTIONS(2427), - [anon_sym_u_DQUOTE] = ACTIONS(2427), - [anon_sym_U_DQUOTE] = ACTIONS(2427), - [anon_sym_u8_DQUOTE] = ACTIONS(2427), - [anon_sym_DQUOTE] = ACTIONS(2427), - [sym_true] = ACTIONS(2425), - [sym_false] = ACTIONS(2425), - [sym_null] = ACTIONS(2425), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2425), - [anon_sym_decltype] = ACTIONS(2425), - [anon_sym_virtual] = ACTIONS(2425), - [anon_sym_explicit] = ACTIONS(2425), - [anon_sym_typename] = ACTIONS(2425), - [anon_sym_template] = ACTIONS(2425), - [anon_sym_operator] = ACTIONS(2425), - [anon_sym_try] = ACTIONS(2425), - [anon_sym_delete] = ACTIONS(2425), - [anon_sym_throw] = ACTIONS(2425), - [anon_sym_namespace] = ACTIONS(2425), - [anon_sym_using] = ACTIONS(2425), - [anon_sym_static_assert] = ACTIONS(2425), - [anon_sym_concept] = ACTIONS(2425), - [anon_sym_co_return] = ACTIONS(2425), - [anon_sym_co_yield] = ACTIONS(2425), - [anon_sym_co_await] = ACTIONS(2425), - [anon_sym_new] = ACTIONS(2425), - [anon_sym_requires] = ACTIONS(2425), - [sym_this] = ACTIONS(2425), - [sym_nullptr] = ACTIONS(2425), - [sym_raw_string_literal] = ACTIONS(2427), - }, - [860] = { - [sym_identifier] = ACTIONS(2417), - [aux_sym_preproc_include_token1] = ACTIONS(2417), - [aux_sym_preproc_def_token1] = ACTIONS(2417), - [aux_sym_preproc_if_token1] = ACTIONS(2417), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2417), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2417), - [sym_preproc_directive] = ACTIONS(2417), - [anon_sym_LPAREN2] = ACTIONS(2419), - [anon_sym_BANG] = ACTIONS(2419), - [anon_sym_TILDE] = ACTIONS(2419), - [anon_sym_DASH] = ACTIONS(2417), - [anon_sym_PLUS] = ACTIONS(2417), - [anon_sym_STAR] = ACTIONS(2419), - [anon_sym_AMP_AMP] = ACTIONS(2419), - [anon_sym_AMP] = ACTIONS(2417), - [anon_sym_SEMI] = ACTIONS(2419), - [anon_sym_typedef] = ACTIONS(2417), - [anon_sym_extern] = ACTIONS(2417), - [anon_sym___attribute__] = ACTIONS(2417), - [anon_sym_COLON_COLON] = ACTIONS(2419), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2419), - [anon_sym___declspec] = ACTIONS(2417), - [anon_sym___based] = ACTIONS(2417), - [anon_sym___cdecl] = ACTIONS(2417), - [anon_sym___clrcall] = ACTIONS(2417), - [anon_sym___stdcall] = ACTIONS(2417), - [anon_sym___fastcall] = ACTIONS(2417), - [anon_sym___thiscall] = ACTIONS(2417), - [anon_sym___vectorcall] = ACTIONS(2417), - [anon_sym_LBRACE] = ACTIONS(2419), - [anon_sym_RBRACE] = ACTIONS(2419), - [anon_sym_LBRACK] = ACTIONS(2417), - [anon_sym_static] = ACTIONS(2417), - [anon_sym_register] = ACTIONS(2417), - [anon_sym_inline] = ACTIONS(2417), - [anon_sym_thread_local] = ACTIONS(2417), - [anon_sym_const] = ACTIONS(2417), - [anon_sym_volatile] = ACTIONS(2417), - [anon_sym_restrict] = ACTIONS(2417), - [anon_sym__Atomic] = ACTIONS(2417), - [anon_sym_mutable] = ACTIONS(2417), - [anon_sym_constexpr] = ACTIONS(2417), - [anon_sym_constinit] = ACTIONS(2417), - [anon_sym_consteval] = ACTIONS(2417), - [anon_sym_signed] = ACTIONS(2417), - [anon_sym_unsigned] = ACTIONS(2417), - [anon_sym_long] = ACTIONS(2417), - [anon_sym_short] = ACTIONS(2417), - [sym_primitive_type] = ACTIONS(2417), - [anon_sym_enum] = ACTIONS(2417), - [anon_sym_class] = ACTIONS(2417), - [anon_sym_struct] = ACTIONS(2417), - [anon_sym_union] = ACTIONS(2417), - [anon_sym_if] = ACTIONS(2417), - [anon_sym_else] = ACTIONS(2417), - [anon_sym_switch] = ACTIONS(2417), - [anon_sym_case] = ACTIONS(2417), - [anon_sym_default] = ACTIONS(2417), - [anon_sym_while] = ACTIONS(2417), - [anon_sym_do] = ACTIONS(2417), - [anon_sym_for] = ACTIONS(2417), - [anon_sym_return] = ACTIONS(2417), - [anon_sym_break] = ACTIONS(2417), - [anon_sym_continue] = ACTIONS(2417), - [anon_sym_goto] = ACTIONS(2417), - [anon_sym_DASH_DASH] = ACTIONS(2419), - [anon_sym_PLUS_PLUS] = ACTIONS(2419), - [anon_sym_sizeof] = ACTIONS(2417), - [sym_number_literal] = ACTIONS(2419), - [anon_sym_L_SQUOTE] = ACTIONS(2419), - [anon_sym_u_SQUOTE] = ACTIONS(2419), - [anon_sym_U_SQUOTE] = ACTIONS(2419), - [anon_sym_u8_SQUOTE] = ACTIONS(2419), - [anon_sym_SQUOTE] = ACTIONS(2419), - [anon_sym_L_DQUOTE] = ACTIONS(2419), - [anon_sym_u_DQUOTE] = ACTIONS(2419), - [anon_sym_U_DQUOTE] = ACTIONS(2419), - [anon_sym_u8_DQUOTE] = ACTIONS(2419), - [anon_sym_DQUOTE] = ACTIONS(2419), - [sym_true] = ACTIONS(2417), - [sym_false] = ACTIONS(2417), - [sym_null] = ACTIONS(2417), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2417), - [anon_sym_decltype] = ACTIONS(2417), - [anon_sym_virtual] = ACTIONS(2417), - [anon_sym_explicit] = ACTIONS(2417), - [anon_sym_typename] = ACTIONS(2417), - [anon_sym_template] = ACTIONS(2417), - [anon_sym_operator] = ACTIONS(2417), - [anon_sym_try] = ACTIONS(2417), - [anon_sym_delete] = ACTIONS(2417), - [anon_sym_throw] = ACTIONS(2417), - [anon_sym_namespace] = ACTIONS(2417), - [anon_sym_using] = ACTIONS(2417), - [anon_sym_static_assert] = ACTIONS(2417), - [anon_sym_concept] = ACTIONS(2417), - [anon_sym_co_return] = ACTIONS(2417), - [anon_sym_co_yield] = ACTIONS(2417), - [anon_sym_co_await] = ACTIONS(2417), - [anon_sym_new] = ACTIONS(2417), - [anon_sym_requires] = ACTIONS(2417), - [sym_this] = ACTIONS(2417), - [sym_nullptr] = ACTIONS(2417), - [sym_raw_string_literal] = ACTIONS(2419), - }, - [861] = { - [ts_builtin_sym_end] = ACTIONS(2399), - [sym_identifier] = ACTIONS(2397), - [aux_sym_preproc_include_token1] = ACTIONS(2397), - [aux_sym_preproc_def_token1] = ACTIONS(2397), - [aux_sym_preproc_if_token1] = ACTIONS(2397), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2397), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2397), - [sym_preproc_directive] = ACTIONS(2397), - [anon_sym_LPAREN2] = ACTIONS(2399), - [anon_sym_BANG] = ACTIONS(2399), - [anon_sym_TILDE] = ACTIONS(2399), - [anon_sym_DASH] = ACTIONS(2397), - [anon_sym_PLUS] = ACTIONS(2397), - [anon_sym_STAR] = ACTIONS(2399), - [anon_sym_AMP_AMP] = ACTIONS(2399), - [anon_sym_AMP] = ACTIONS(2397), - [anon_sym_SEMI] = ACTIONS(2399), - [anon_sym_typedef] = ACTIONS(2397), - [anon_sym_extern] = ACTIONS(2397), - [anon_sym___attribute__] = ACTIONS(2397), - [anon_sym_COLON_COLON] = ACTIONS(2399), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2399), - [anon_sym___declspec] = ACTIONS(2397), - [anon_sym___based] = ACTIONS(2397), - [anon_sym___cdecl] = ACTIONS(2397), - [anon_sym___clrcall] = ACTIONS(2397), - [anon_sym___stdcall] = ACTIONS(2397), - [anon_sym___fastcall] = ACTIONS(2397), - [anon_sym___thiscall] = ACTIONS(2397), - [anon_sym___vectorcall] = ACTIONS(2397), - [anon_sym_LBRACE] = ACTIONS(2399), - [anon_sym_LBRACK] = ACTIONS(2397), - [anon_sym_static] = ACTIONS(2397), - [anon_sym_register] = ACTIONS(2397), - [anon_sym_inline] = ACTIONS(2397), - [anon_sym_thread_local] = ACTIONS(2397), - [anon_sym_const] = ACTIONS(2397), - [anon_sym_volatile] = ACTIONS(2397), - [anon_sym_restrict] = ACTIONS(2397), - [anon_sym__Atomic] = ACTIONS(2397), - [anon_sym_mutable] = ACTIONS(2397), - [anon_sym_constexpr] = ACTIONS(2397), - [anon_sym_constinit] = ACTIONS(2397), - [anon_sym_consteval] = ACTIONS(2397), - [anon_sym_signed] = ACTIONS(2397), - [anon_sym_unsigned] = ACTIONS(2397), - [anon_sym_long] = ACTIONS(2397), - [anon_sym_short] = ACTIONS(2397), - [sym_primitive_type] = ACTIONS(2397), - [anon_sym_enum] = ACTIONS(2397), - [anon_sym_class] = ACTIONS(2397), - [anon_sym_struct] = ACTIONS(2397), - [anon_sym_union] = ACTIONS(2397), - [anon_sym_if] = ACTIONS(2397), - [anon_sym_else] = ACTIONS(2397), - [anon_sym_switch] = ACTIONS(2397), - [anon_sym_case] = ACTIONS(2397), - [anon_sym_default] = ACTIONS(2397), - [anon_sym_while] = ACTIONS(2397), - [anon_sym_do] = ACTIONS(2397), - [anon_sym_for] = ACTIONS(2397), - [anon_sym_return] = ACTIONS(2397), - [anon_sym_break] = ACTIONS(2397), - [anon_sym_continue] = ACTIONS(2397), - [anon_sym_goto] = ACTIONS(2397), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_sizeof] = ACTIONS(2397), - [sym_number_literal] = ACTIONS(2399), - [anon_sym_L_SQUOTE] = ACTIONS(2399), - [anon_sym_u_SQUOTE] = ACTIONS(2399), - [anon_sym_U_SQUOTE] = ACTIONS(2399), - [anon_sym_u8_SQUOTE] = ACTIONS(2399), - [anon_sym_SQUOTE] = ACTIONS(2399), - [anon_sym_L_DQUOTE] = ACTIONS(2399), - [anon_sym_u_DQUOTE] = ACTIONS(2399), - [anon_sym_U_DQUOTE] = ACTIONS(2399), - [anon_sym_u8_DQUOTE] = ACTIONS(2399), - [anon_sym_DQUOTE] = ACTIONS(2399), - [sym_true] = ACTIONS(2397), - [sym_false] = ACTIONS(2397), - [sym_null] = ACTIONS(2397), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2397), - [anon_sym_decltype] = ACTIONS(2397), - [anon_sym_virtual] = ACTIONS(2397), - [anon_sym_explicit] = ACTIONS(2397), - [anon_sym_typename] = ACTIONS(2397), - [anon_sym_template] = ACTIONS(2397), - [anon_sym_operator] = ACTIONS(2397), - [anon_sym_try] = ACTIONS(2397), - [anon_sym_delete] = ACTIONS(2397), - [anon_sym_throw] = ACTIONS(2397), - [anon_sym_namespace] = ACTIONS(2397), - [anon_sym_using] = ACTIONS(2397), - [anon_sym_static_assert] = ACTIONS(2397), - [anon_sym_concept] = ACTIONS(2397), - [anon_sym_co_return] = ACTIONS(2397), - [anon_sym_co_yield] = ACTIONS(2397), - [anon_sym_co_await] = ACTIONS(2397), - [anon_sym_new] = ACTIONS(2397), - [anon_sym_requires] = ACTIONS(2397), - [sym_this] = ACTIONS(2397), - [sym_nullptr] = ACTIONS(2397), - [sym_raw_string_literal] = ACTIONS(2399), - }, - [862] = { - [sym_identifier] = ACTIONS(2413), - [aux_sym_preproc_include_token1] = ACTIONS(2413), - [aux_sym_preproc_def_token1] = ACTIONS(2413), - [aux_sym_preproc_if_token1] = ACTIONS(2413), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2413), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2413), - [sym_preproc_directive] = ACTIONS(2413), - [anon_sym_LPAREN2] = ACTIONS(2415), - [anon_sym_BANG] = ACTIONS(2415), - [anon_sym_TILDE] = ACTIONS(2415), - [anon_sym_DASH] = ACTIONS(2413), - [anon_sym_PLUS] = ACTIONS(2413), - [anon_sym_STAR] = ACTIONS(2415), - [anon_sym_AMP_AMP] = ACTIONS(2415), - [anon_sym_AMP] = ACTIONS(2413), - [anon_sym_SEMI] = ACTIONS(2415), - [anon_sym_typedef] = ACTIONS(2413), - [anon_sym_extern] = ACTIONS(2413), - [anon_sym___attribute__] = ACTIONS(2413), - [anon_sym_COLON_COLON] = ACTIONS(2415), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2415), - [anon_sym___declspec] = ACTIONS(2413), - [anon_sym___based] = ACTIONS(2413), - [anon_sym___cdecl] = ACTIONS(2413), - [anon_sym___clrcall] = ACTIONS(2413), - [anon_sym___stdcall] = ACTIONS(2413), - [anon_sym___fastcall] = ACTIONS(2413), - [anon_sym___thiscall] = ACTIONS(2413), - [anon_sym___vectorcall] = ACTIONS(2413), - [anon_sym_LBRACE] = ACTIONS(2415), - [anon_sym_RBRACE] = ACTIONS(2415), - [anon_sym_LBRACK] = ACTIONS(2413), - [anon_sym_static] = ACTIONS(2413), - [anon_sym_register] = ACTIONS(2413), - [anon_sym_inline] = ACTIONS(2413), - [anon_sym_thread_local] = ACTIONS(2413), - [anon_sym_const] = ACTIONS(2413), - [anon_sym_volatile] = ACTIONS(2413), - [anon_sym_restrict] = ACTIONS(2413), - [anon_sym__Atomic] = ACTIONS(2413), - [anon_sym_mutable] = ACTIONS(2413), - [anon_sym_constexpr] = ACTIONS(2413), - [anon_sym_constinit] = ACTIONS(2413), - [anon_sym_consteval] = ACTIONS(2413), - [anon_sym_signed] = ACTIONS(2413), - [anon_sym_unsigned] = ACTIONS(2413), - [anon_sym_long] = ACTIONS(2413), - [anon_sym_short] = ACTIONS(2413), - [sym_primitive_type] = ACTIONS(2413), - [anon_sym_enum] = ACTIONS(2413), - [anon_sym_class] = ACTIONS(2413), - [anon_sym_struct] = ACTIONS(2413), - [anon_sym_union] = ACTIONS(2413), - [anon_sym_if] = ACTIONS(2413), - [anon_sym_else] = ACTIONS(2413), - [anon_sym_switch] = ACTIONS(2413), - [anon_sym_case] = ACTIONS(2413), - [anon_sym_default] = ACTIONS(2413), - [anon_sym_while] = ACTIONS(2413), - [anon_sym_do] = ACTIONS(2413), - [anon_sym_for] = ACTIONS(2413), - [anon_sym_return] = ACTIONS(2413), - [anon_sym_break] = ACTIONS(2413), - [anon_sym_continue] = ACTIONS(2413), - [anon_sym_goto] = ACTIONS(2413), - [anon_sym_DASH_DASH] = ACTIONS(2415), - [anon_sym_PLUS_PLUS] = ACTIONS(2415), - [anon_sym_sizeof] = ACTIONS(2413), - [sym_number_literal] = ACTIONS(2415), - [anon_sym_L_SQUOTE] = ACTIONS(2415), - [anon_sym_u_SQUOTE] = ACTIONS(2415), - [anon_sym_U_SQUOTE] = ACTIONS(2415), - [anon_sym_u8_SQUOTE] = ACTIONS(2415), - [anon_sym_SQUOTE] = ACTIONS(2415), - [anon_sym_L_DQUOTE] = ACTIONS(2415), - [anon_sym_u_DQUOTE] = ACTIONS(2415), - [anon_sym_U_DQUOTE] = ACTIONS(2415), - [anon_sym_u8_DQUOTE] = ACTIONS(2415), - [anon_sym_DQUOTE] = ACTIONS(2415), - [sym_true] = ACTIONS(2413), - [sym_false] = ACTIONS(2413), - [sym_null] = ACTIONS(2413), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2413), - [anon_sym_decltype] = ACTIONS(2413), - [anon_sym_virtual] = ACTIONS(2413), - [anon_sym_explicit] = ACTIONS(2413), - [anon_sym_typename] = ACTIONS(2413), - [anon_sym_template] = ACTIONS(2413), - [anon_sym_operator] = ACTIONS(2413), - [anon_sym_try] = ACTIONS(2413), - [anon_sym_delete] = ACTIONS(2413), - [anon_sym_throw] = ACTIONS(2413), - [anon_sym_namespace] = ACTIONS(2413), - [anon_sym_using] = ACTIONS(2413), - [anon_sym_static_assert] = ACTIONS(2413), - [anon_sym_concept] = ACTIONS(2413), - [anon_sym_co_return] = ACTIONS(2413), - [anon_sym_co_yield] = ACTIONS(2413), - [anon_sym_co_await] = ACTIONS(2413), - [anon_sym_new] = ACTIONS(2413), - [anon_sym_requires] = ACTIONS(2413), - [sym_this] = ACTIONS(2413), - [sym_nullptr] = ACTIONS(2413), - [sym_raw_string_literal] = ACTIONS(2415), - }, - [863] = { - [sym_identifier] = ACTIONS(2409), - [aux_sym_preproc_include_token1] = ACTIONS(2409), - [aux_sym_preproc_def_token1] = ACTIONS(2409), - [aux_sym_preproc_if_token1] = ACTIONS(2409), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2409), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2409), - [sym_preproc_directive] = ACTIONS(2409), - [anon_sym_LPAREN2] = ACTIONS(2411), - [anon_sym_BANG] = ACTIONS(2411), - [anon_sym_TILDE] = ACTIONS(2411), - [anon_sym_DASH] = ACTIONS(2409), - [anon_sym_PLUS] = ACTIONS(2409), - [anon_sym_STAR] = ACTIONS(2411), - [anon_sym_AMP_AMP] = ACTIONS(2411), - [anon_sym_AMP] = ACTIONS(2409), - [anon_sym_SEMI] = ACTIONS(2411), - [anon_sym_typedef] = ACTIONS(2409), - [anon_sym_extern] = ACTIONS(2409), - [anon_sym___attribute__] = ACTIONS(2409), - [anon_sym_COLON_COLON] = ACTIONS(2411), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2411), - [anon_sym___declspec] = ACTIONS(2409), - [anon_sym___based] = ACTIONS(2409), - [anon_sym___cdecl] = ACTIONS(2409), - [anon_sym___clrcall] = ACTIONS(2409), - [anon_sym___stdcall] = ACTIONS(2409), - [anon_sym___fastcall] = ACTIONS(2409), - [anon_sym___thiscall] = ACTIONS(2409), - [anon_sym___vectorcall] = ACTIONS(2409), - [anon_sym_LBRACE] = ACTIONS(2411), - [anon_sym_RBRACE] = ACTIONS(2411), - [anon_sym_LBRACK] = ACTIONS(2409), - [anon_sym_static] = ACTIONS(2409), - [anon_sym_register] = ACTIONS(2409), - [anon_sym_inline] = ACTIONS(2409), - [anon_sym_thread_local] = ACTIONS(2409), - [anon_sym_const] = ACTIONS(2409), - [anon_sym_volatile] = ACTIONS(2409), - [anon_sym_restrict] = ACTIONS(2409), - [anon_sym__Atomic] = ACTIONS(2409), - [anon_sym_mutable] = ACTIONS(2409), - [anon_sym_constexpr] = ACTIONS(2409), - [anon_sym_constinit] = ACTIONS(2409), - [anon_sym_consteval] = ACTIONS(2409), - [anon_sym_signed] = ACTIONS(2409), - [anon_sym_unsigned] = ACTIONS(2409), - [anon_sym_long] = ACTIONS(2409), - [anon_sym_short] = ACTIONS(2409), - [sym_primitive_type] = ACTIONS(2409), - [anon_sym_enum] = ACTIONS(2409), - [anon_sym_class] = ACTIONS(2409), - [anon_sym_struct] = ACTIONS(2409), - [anon_sym_union] = ACTIONS(2409), - [anon_sym_if] = ACTIONS(2409), - [anon_sym_else] = ACTIONS(2409), - [anon_sym_switch] = ACTIONS(2409), - [anon_sym_case] = ACTIONS(2409), - [anon_sym_default] = ACTIONS(2409), - [anon_sym_while] = ACTIONS(2409), - [anon_sym_do] = ACTIONS(2409), - [anon_sym_for] = ACTIONS(2409), - [anon_sym_return] = ACTIONS(2409), - [anon_sym_break] = ACTIONS(2409), - [anon_sym_continue] = ACTIONS(2409), - [anon_sym_goto] = ACTIONS(2409), - [anon_sym_DASH_DASH] = ACTIONS(2411), - [anon_sym_PLUS_PLUS] = ACTIONS(2411), - [anon_sym_sizeof] = ACTIONS(2409), - [sym_number_literal] = ACTIONS(2411), - [anon_sym_L_SQUOTE] = ACTIONS(2411), - [anon_sym_u_SQUOTE] = ACTIONS(2411), - [anon_sym_U_SQUOTE] = ACTIONS(2411), - [anon_sym_u8_SQUOTE] = ACTIONS(2411), - [anon_sym_SQUOTE] = ACTIONS(2411), - [anon_sym_L_DQUOTE] = ACTIONS(2411), - [anon_sym_u_DQUOTE] = ACTIONS(2411), - [anon_sym_U_DQUOTE] = ACTIONS(2411), - [anon_sym_u8_DQUOTE] = ACTIONS(2411), - [anon_sym_DQUOTE] = ACTIONS(2411), - [sym_true] = ACTIONS(2409), - [sym_false] = ACTIONS(2409), - [sym_null] = ACTIONS(2409), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2409), - [anon_sym_decltype] = ACTIONS(2409), - [anon_sym_virtual] = ACTIONS(2409), - [anon_sym_explicit] = ACTIONS(2409), - [anon_sym_typename] = ACTIONS(2409), - [anon_sym_template] = ACTIONS(2409), - [anon_sym_operator] = ACTIONS(2409), - [anon_sym_try] = ACTIONS(2409), - [anon_sym_delete] = ACTIONS(2409), - [anon_sym_throw] = ACTIONS(2409), - [anon_sym_namespace] = ACTIONS(2409), - [anon_sym_using] = ACTIONS(2409), - [anon_sym_static_assert] = ACTIONS(2409), - [anon_sym_concept] = ACTIONS(2409), - [anon_sym_co_return] = ACTIONS(2409), - [anon_sym_co_yield] = ACTIONS(2409), - [anon_sym_co_await] = ACTIONS(2409), - [anon_sym_new] = ACTIONS(2409), - [anon_sym_requires] = ACTIONS(2409), - [sym_this] = ACTIONS(2409), - [sym_nullptr] = ACTIONS(2409), - [sym_raw_string_literal] = ACTIONS(2411), - }, - [864] = { - [sym_identifier] = ACTIONS(2287), - [aux_sym_preproc_include_token1] = ACTIONS(2287), - [aux_sym_preproc_def_token1] = ACTIONS(2287), - [anon_sym_COMMA] = ACTIONS(2391), - [aux_sym_preproc_if_token1] = ACTIONS(2287), - [aux_sym_preproc_if_token2] = ACTIONS(2287), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2287), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2287), - [sym_preproc_directive] = ACTIONS(2287), - [anon_sym_LPAREN2] = ACTIONS(2289), - [anon_sym_BANG] = ACTIONS(2289), - [anon_sym_TILDE] = ACTIONS(2289), - [anon_sym_DASH] = ACTIONS(2287), - [anon_sym_PLUS] = ACTIONS(2287), - [anon_sym_STAR] = ACTIONS(2289), - [anon_sym_AMP_AMP] = ACTIONS(2289), - [anon_sym_AMP] = ACTIONS(2287), - [anon_sym_SEMI] = ACTIONS(2391), - [anon_sym_typedef] = ACTIONS(2287), - [anon_sym_extern] = ACTIONS(2287), - [anon_sym___attribute__] = ACTIONS(2287), - [anon_sym_COLON_COLON] = ACTIONS(2289), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2289), - [anon_sym___declspec] = ACTIONS(2287), - [anon_sym___based] = ACTIONS(2287), - [anon_sym___cdecl] = ACTIONS(2287), - [anon_sym___clrcall] = ACTIONS(2287), - [anon_sym___stdcall] = ACTIONS(2287), - [anon_sym___fastcall] = ACTIONS(2287), - [anon_sym___thiscall] = ACTIONS(2287), - [anon_sym___vectorcall] = ACTIONS(2287), - [anon_sym_LBRACE] = ACTIONS(2289), - [anon_sym_LBRACK] = ACTIONS(2287), - [anon_sym_static] = ACTIONS(2287), - [anon_sym_register] = ACTIONS(2287), - [anon_sym_inline] = ACTIONS(2287), - [anon_sym_thread_local] = ACTIONS(2287), - [anon_sym_const] = ACTIONS(2287), - [anon_sym_volatile] = ACTIONS(2287), - [anon_sym_restrict] = ACTIONS(2287), - [anon_sym__Atomic] = ACTIONS(2287), - [anon_sym_mutable] = ACTIONS(2287), - [anon_sym_constexpr] = ACTIONS(2287), - [anon_sym_constinit] = ACTIONS(2287), - [anon_sym_consteval] = ACTIONS(2287), - [anon_sym_signed] = ACTIONS(2287), - [anon_sym_unsigned] = ACTIONS(2287), - [anon_sym_long] = ACTIONS(2287), - [anon_sym_short] = ACTIONS(2287), - [sym_primitive_type] = ACTIONS(2287), - [anon_sym_enum] = ACTIONS(2287), - [anon_sym_class] = ACTIONS(2287), - [anon_sym_struct] = ACTIONS(2287), - [anon_sym_union] = ACTIONS(2287), - [anon_sym_if] = ACTIONS(2287), - [anon_sym_switch] = ACTIONS(2287), - [anon_sym_case] = ACTIONS(2287), - [anon_sym_default] = ACTIONS(2287), - [anon_sym_while] = ACTIONS(2287), - [anon_sym_do] = ACTIONS(2287), - [anon_sym_for] = ACTIONS(2287), - [anon_sym_return] = ACTIONS(2287), - [anon_sym_break] = ACTIONS(2287), - [anon_sym_continue] = ACTIONS(2287), - [anon_sym_goto] = ACTIONS(2287), - [anon_sym_DASH_DASH] = ACTIONS(2289), - [anon_sym_PLUS_PLUS] = ACTIONS(2289), - [anon_sym_sizeof] = ACTIONS(2287), - [sym_number_literal] = ACTIONS(2289), - [anon_sym_L_SQUOTE] = ACTIONS(2289), - [anon_sym_u_SQUOTE] = ACTIONS(2289), - [anon_sym_U_SQUOTE] = ACTIONS(2289), - [anon_sym_u8_SQUOTE] = ACTIONS(2289), - [anon_sym_SQUOTE] = ACTIONS(2289), - [anon_sym_L_DQUOTE] = ACTIONS(2289), - [anon_sym_u_DQUOTE] = ACTIONS(2289), - [anon_sym_U_DQUOTE] = ACTIONS(2289), - [anon_sym_u8_DQUOTE] = ACTIONS(2289), - [anon_sym_DQUOTE] = ACTIONS(2289), - [sym_true] = ACTIONS(2287), - [sym_false] = ACTIONS(2287), - [sym_null] = ACTIONS(2287), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2287), - [anon_sym_decltype] = ACTIONS(2287), - [anon_sym_virtual] = ACTIONS(2287), - [anon_sym_explicit] = ACTIONS(2287), - [anon_sym_typename] = ACTIONS(2287), - [anon_sym_template] = ACTIONS(2287), - [anon_sym_operator] = ACTIONS(2287), - [anon_sym_try] = ACTIONS(2287), - [anon_sym_delete] = ACTIONS(2287), - [anon_sym_throw] = ACTIONS(2287), - [anon_sym_namespace] = ACTIONS(2287), - [anon_sym_using] = ACTIONS(2287), - [anon_sym_static_assert] = ACTIONS(2287), - [anon_sym_concept] = ACTIONS(2287), - [anon_sym_co_return] = ACTIONS(2287), - [anon_sym_co_yield] = ACTIONS(2287), - [anon_sym_co_await] = ACTIONS(2287), - [anon_sym_new] = ACTIONS(2287), - [anon_sym_requires] = ACTIONS(2287), - [sym_this] = ACTIONS(2287), - [sym_nullptr] = ACTIONS(2287), - [sym_raw_string_literal] = ACTIONS(2289), - }, - [865] = { - [ts_builtin_sym_end] = ACTIONS(2381), - [sym_identifier] = ACTIONS(2379), - [aux_sym_preproc_include_token1] = ACTIONS(2379), - [aux_sym_preproc_def_token1] = ACTIONS(2379), - [aux_sym_preproc_if_token1] = ACTIONS(2379), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2379), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2379), - [sym_preproc_directive] = ACTIONS(2379), - [anon_sym_LPAREN2] = ACTIONS(2381), - [anon_sym_BANG] = ACTIONS(2381), - [anon_sym_TILDE] = ACTIONS(2381), - [anon_sym_DASH] = ACTIONS(2379), - [anon_sym_PLUS] = ACTIONS(2379), - [anon_sym_STAR] = ACTIONS(2381), - [anon_sym_AMP_AMP] = ACTIONS(2381), - [anon_sym_AMP] = ACTIONS(2379), - [anon_sym_SEMI] = ACTIONS(2381), - [anon_sym_typedef] = ACTIONS(2379), - [anon_sym_extern] = ACTIONS(2379), - [anon_sym___attribute__] = ACTIONS(2379), - [anon_sym_COLON_COLON] = ACTIONS(2381), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2381), - [anon_sym___declspec] = ACTIONS(2379), - [anon_sym___based] = ACTIONS(2379), - [anon_sym___cdecl] = ACTIONS(2379), - [anon_sym___clrcall] = ACTIONS(2379), - [anon_sym___stdcall] = ACTIONS(2379), - [anon_sym___fastcall] = ACTIONS(2379), - [anon_sym___thiscall] = ACTIONS(2379), - [anon_sym___vectorcall] = ACTIONS(2379), - [anon_sym_LBRACE] = ACTIONS(2381), - [anon_sym_LBRACK] = ACTIONS(2379), - [anon_sym_static] = ACTIONS(2379), - [anon_sym_register] = ACTIONS(2379), - [anon_sym_inline] = ACTIONS(2379), - [anon_sym_thread_local] = ACTIONS(2379), - [anon_sym_const] = ACTIONS(2379), - [anon_sym_volatile] = ACTIONS(2379), - [anon_sym_restrict] = ACTIONS(2379), - [anon_sym__Atomic] = ACTIONS(2379), - [anon_sym_mutable] = ACTIONS(2379), - [anon_sym_constexpr] = ACTIONS(2379), - [anon_sym_constinit] = ACTIONS(2379), - [anon_sym_consteval] = ACTIONS(2379), - [anon_sym_signed] = ACTIONS(2379), - [anon_sym_unsigned] = ACTIONS(2379), - [anon_sym_long] = ACTIONS(2379), - [anon_sym_short] = ACTIONS(2379), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_enum] = ACTIONS(2379), - [anon_sym_class] = ACTIONS(2379), - [anon_sym_struct] = ACTIONS(2379), - [anon_sym_union] = ACTIONS(2379), - [anon_sym_if] = ACTIONS(2379), - [anon_sym_else] = ACTIONS(2379), - [anon_sym_switch] = ACTIONS(2379), - [anon_sym_case] = ACTIONS(2379), - [anon_sym_default] = ACTIONS(2379), - [anon_sym_while] = ACTIONS(2379), - [anon_sym_do] = ACTIONS(2379), - [anon_sym_for] = ACTIONS(2379), - [anon_sym_return] = ACTIONS(2379), - [anon_sym_break] = ACTIONS(2379), - [anon_sym_continue] = ACTIONS(2379), - [anon_sym_goto] = ACTIONS(2379), - [anon_sym_DASH_DASH] = ACTIONS(2381), - [anon_sym_PLUS_PLUS] = ACTIONS(2381), - [anon_sym_sizeof] = ACTIONS(2379), - [sym_number_literal] = ACTIONS(2381), - [anon_sym_L_SQUOTE] = ACTIONS(2381), - [anon_sym_u_SQUOTE] = ACTIONS(2381), - [anon_sym_U_SQUOTE] = ACTIONS(2381), - [anon_sym_u8_SQUOTE] = ACTIONS(2381), - [anon_sym_SQUOTE] = ACTIONS(2381), - [anon_sym_L_DQUOTE] = ACTIONS(2381), - [anon_sym_u_DQUOTE] = ACTIONS(2381), - [anon_sym_U_DQUOTE] = ACTIONS(2381), - [anon_sym_u8_DQUOTE] = ACTIONS(2381), - [anon_sym_DQUOTE] = ACTIONS(2381), - [sym_true] = ACTIONS(2379), - [sym_false] = ACTIONS(2379), - [sym_null] = ACTIONS(2379), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2379), - [anon_sym_decltype] = ACTIONS(2379), - [anon_sym_virtual] = ACTIONS(2379), - [anon_sym_explicit] = ACTIONS(2379), - [anon_sym_typename] = ACTIONS(2379), - [anon_sym_template] = ACTIONS(2379), - [anon_sym_operator] = ACTIONS(2379), - [anon_sym_try] = ACTIONS(2379), - [anon_sym_delete] = ACTIONS(2379), - [anon_sym_throw] = ACTIONS(2379), - [anon_sym_namespace] = ACTIONS(2379), - [anon_sym_using] = ACTIONS(2379), - [anon_sym_static_assert] = ACTIONS(2379), - [anon_sym_concept] = ACTIONS(2379), - [anon_sym_co_return] = ACTIONS(2379), - [anon_sym_co_yield] = ACTIONS(2379), - [anon_sym_co_await] = ACTIONS(2379), - [anon_sym_new] = ACTIONS(2379), - [anon_sym_requires] = ACTIONS(2379), - [sym_this] = ACTIONS(2379), - [sym_nullptr] = ACTIONS(2379), - [sym_raw_string_literal] = ACTIONS(2381), - }, - [866] = { - [sym_identifier] = ACTIONS(2355), - [aux_sym_preproc_include_token1] = ACTIONS(2355), - [aux_sym_preproc_def_token1] = ACTIONS(2355), - [aux_sym_preproc_if_token1] = ACTIONS(2355), - [aux_sym_preproc_if_token2] = ACTIONS(2355), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2355), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2355), - [sym_preproc_directive] = ACTIONS(2355), - [anon_sym_LPAREN2] = ACTIONS(2357), - [anon_sym_BANG] = ACTIONS(2357), - [anon_sym_TILDE] = ACTIONS(2357), - [anon_sym_DASH] = ACTIONS(2355), - [anon_sym_PLUS] = ACTIONS(2355), - [anon_sym_STAR] = ACTIONS(2357), - [anon_sym_AMP_AMP] = ACTIONS(2357), - [anon_sym_AMP] = ACTIONS(2355), - [anon_sym_SEMI] = ACTIONS(2357), - [anon_sym_typedef] = ACTIONS(2355), - [anon_sym_extern] = ACTIONS(2355), - [anon_sym___attribute__] = ACTIONS(2355), - [anon_sym_COLON_COLON] = ACTIONS(2357), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2357), - [anon_sym___declspec] = ACTIONS(2355), - [anon_sym___based] = ACTIONS(2355), - [anon_sym___cdecl] = ACTIONS(2355), - [anon_sym___clrcall] = ACTIONS(2355), - [anon_sym___stdcall] = ACTIONS(2355), - [anon_sym___fastcall] = ACTIONS(2355), - [anon_sym___thiscall] = ACTIONS(2355), - [anon_sym___vectorcall] = ACTIONS(2355), - [anon_sym_LBRACE] = ACTIONS(2357), - [anon_sym_LBRACK] = ACTIONS(2355), - [anon_sym_static] = ACTIONS(2355), - [anon_sym_register] = ACTIONS(2355), - [anon_sym_inline] = ACTIONS(2355), - [anon_sym_thread_local] = ACTIONS(2355), - [anon_sym_const] = ACTIONS(2355), - [anon_sym_volatile] = ACTIONS(2355), - [anon_sym_restrict] = ACTIONS(2355), - [anon_sym__Atomic] = ACTIONS(2355), - [anon_sym_mutable] = ACTIONS(2355), - [anon_sym_constexpr] = ACTIONS(2355), - [anon_sym_constinit] = ACTIONS(2355), - [anon_sym_consteval] = ACTIONS(2355), - [anon_sym_signed] = ACTIONS(2355), - [anon_sym_unsigned] = ACTIONS(2355), - [anon_sym_long] = ACTIONS(2355), - [anon_sym_short] = ACTIONS(2355), - [sym_primitive_type] = ACTIONS(2355), - [anon_sym_enum] = ACTIONS(2355), - [anon_sym_class] = ACTIONS(2355), - [anon_sym_struct] = ACTIONS(2355), - [anon_sym_union] = ACTIONS(2355), - [anon_sym_if] = ACTIONS(2355), - [anon_sym_else] = ACTIONS(2355), - [anon_sym_switch] = ACTIONS(2355), - [anon_sym_case] = ACTIONS(2355), - [anon_sym_default] = ACTIONS(2355), - [anon_sym_while] = ACTIONS(2355), - [anon_sym_do] = ACTIONS(2355), - [anon_sym_for] = ACTIONS(2355), - [anon_sym_return] = ACTIONS(2355), - [anon_sym_break] = ACTIONS(2355), - [anon_sym_continue] = ACTIONS(2355), - [anon_sym_goto] = ACTIONS(2355), - [anon_sym_DASH_DASH] = ACTIONS(2357), - [anon_sym_PLUS_PLUS] = ACTIONS(2357), - [anon_sym_sizeof] = ACTIONS(2355), - [sym_number_literal] = ACTIONS(2357), - [anon_sym_L_SQUOTE] = ACTIONS(2357), - [anon_sym_u_SQUOTE] = ACTIONS(2357), - [anon_sym_U_SQUOTE] = ACTIONS(2357), - [anon_sym_u8_SQUOTE] = ACTIONS(2357), - [anon_sym_SQUOTE] = ACTIONS(2357), - [anon_sym_L_DQUOTE] = ACTIONS(2357), - [anon_sym_u_DQUOTE] = ACTIONS(2357), - [anon_sym_U_DQUOTE] = ACTIONS(2357), - [anon_sym_u8_DQUOTE] = ACTIONS(2357), - [anon_sym_DQUOTE] = ACTIONS(2357), - [sym_true] = ACTIONS(2355), - [sym_false] = ACTIONS(2355), - [sym_null] = ACTIONS(2355), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2355), - [anon_sym_decltype] = ACTIONS(2355), - [anon_sym_virtual] = ACTIONS(2355), - [anon_sym_explicit] = ACTIONS(2355), - [anon_sym_typename] = ACTIONS(2355), - [anon_sym_template] = ACTIONS(2355), - [anon_sym_operator] = ACTIONS(2355), - [anon_sym_try] = ACTIONS(2355), - [anon_sym_delete] = ACTIONS(2355), - [anon_sym_throw] = ACTIONS(2355), - [anon_sym_namespace] = ACTIONS(2355), - [anon_sym_using] = ACTIONS(2355), - [anon_sym_static_assert] = ACTIONS(2355), - [anon_sym_concept] = ACTIONS(2355), - [anon_sym_co_return] = ACTIONS(2355), - [anon_sym_co_yield] = ACTIONS(2355), - [anon_sym_co_await] = ACTIONS(2355), - [anon_sym_new] = ACTIONS(2355), - [anon_sym_requires] = ACTIONS(2355), - [sym_this] = ACTIONS(2355), - [sym_nullptr] = ACTIONS(2355), - [sym_raw_string_literal] = ACTIONS(2357), - }, - [867] = { - [ts_builtin_sym_end] = ACTIONS(2377), - [sym_identifier] = ACTIONS(2375), - [aux_sym_preproc_include_token1] = ACTIONS(2375), - [aux_sym_preproc_def_token1] = ACTIONS(2375), - [aux_sym_preproc_if_token1] = ACTIONS(2375), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2375), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2375), - [sym_preproc_directive] = ACTIONS(2375), - [anon_sym_LPAREN2] = ACTIONS(2377), - [anon_sym_BANG] = ACTIONS(2377), - [anon_sym_TILDE] = ACTIONS(2377), - [anon_sym_DASH] = ACTIONS(2375), - [anon_sym_PLUS] = ACTIONS(2375), - [anon_sym_STAR] = ACTIONS(2377), - [anon_sym_AMP_AMP] = ACTIONS(2377), - [anon_sym_AMP] = ACTIONS(2375), - [anon_sym_SEMI] = ACTIONS(2377), - [anon_sym_typedef] = ACTIONS(2375), - [anon_sym_extern] = ACTIONS(2375), - [anon_sym___attribute__] = ACTIONS(2375), - [anon_sym_COLON_COLON] = ACTIONS(2377), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2377), - [anon_sym___declspec] = ACTIONS(2375), - [anon_sym___based] = ACTIONS(2375), - [anon_sym___cdecl] = ACTIONS(2375), - [anon_sym___clrcall] = ACTIONS(2375), - [anon_sym___stdcall] = ACTIONS(2375), - [anon_sym___fastcall] = ACTIONS(2375), - [anon_sym___thiscall] = ACTIONS(2375), - [anon_sym___vectorcall] = ACTIONS(2375), - [anon_sym_LBRACE] = ACTIONS(2377), - [anon_sym_LBRACK] = ACTIONS(2375), - [anon_sym_static] = ACTIONS(2375), - [anon_sym_register] = ACTIONS(2375), - [anon_sym_inline] = ACTIONS(2375), - [anon_sym_thread_local] = ACTIONS(2375), - [anon_sym_const] = ACTIONS(2375), - [anon_sym_volatile] = ACTIONS(2375), - [anon_sym_restrict] = ACTIONS(2375), - [anon_sym__Atomic] = ACTIONS(2375), - [anon_sym_mutable] = ACTIONS(2375), - [anon_sym_constexpr] = ACTIONS(2375), - [anon_sym_constinit] = ACTIONS(2375), - [anon_sym_consteval] = ACTIONS(2375), - [anon_sym_signed] = ACTIONS(2375), - [anon_sym_unsigned] = ACTIONS(2375), - [anon_sym_long] = ACTIONS(2375), - [anon_sym_short] = ACTIONS(2375), - [sym_primitive_type] = ACTIONS(2375), - [anon_sym_enum] = ACTIONS(2375), - [anon_sym_class] = ACTIONS(2375), - [anon_sym_struct] = ACTIONS(2375), - [anon_sym_union] = ACTIONS(2375), - [anon_sym_if] = ACTIONS(2375), - [anon_sym_else] = ACTIONS(2375), - [anon_sym_switch] = ACTIONS(2375), - [anon_sym_case] = ACTIONS(2375), - [anon_sym_default] = ACTIONS(2375), - [anon_sym_while] = ACTIONS(2375), - [anon_sym_do] = ACTIONS(2375), - [anon_sym_for] = ACTIONS(2375), - [anon_sym_return] = ACTIONS(2375), - [anon_sym_break] = ACTIONS(2375), - [anon_sym_continue] = ACTIONS(2375), - [anon_sym_goto] = ACTIONS(2375), - [anon_sym_DASH_DASH] = ACTIONS(2377), - [anon_sym_PLUS_PLUS] = ACTIONS(2377), - [anon_sym_sizeof] = ACTIONS(2375), - [sym_number_literal] = ACTIONS(2377), - [anon_sym_L_SQUOTE] = ACTIONS(2377), - [anon_sym_u_SQUOTE] = ACTIONS(2377), - [anon_sym_U_SQUOTE] = ACTIONS(2377), - [anon_sym_u8_SQUOTE] = ACTIONS(2377), - [anon_sym_SQUOTE] = ACTIONS(2377), - [anon_sym_L_DQUOTE] = ACTIONS(2377), - [anon_sym_u_DQUOTE] = ACTIONS(2377), - [anon_sym_U_DQUOTE] = ACTIONS(2377), - [anon_sym_u8_DQUOTE] = ACTIONS(2377), - [anon_sym_DQUOTE] = ACTIONS(2377), - [sym_true] = ACTIONS(2375), - [sym_false] = ACTIONS(2375), - [sym_null] = ACTIONS(2375), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2375), - [anon_sym_decltype] = ACTIONS(2375), - [anon_sym_virtual] = ACTIONS(2375), - [anon_sym_explicit] = ACTIONS(2375), - [anon_sym_typename] = ACTIONS(2375), - [anon_sym_template] = ACTIONS(2375), - [anon_sym_operator] = ACTIONS(2375), - [anon_sym_try] = ACTIONS(2375), - [anon_sym_delete] = ACTIONS(2375), - [anon_sym_throw] = ACTIONS(2375), - [anon_sym_namespace] = ACTIONS(2375), - [anon_sym_using] = ACTIONS(2375), - [anon_sym_static_assert] = ACTIONS(2375), - [anon_sym_concept] = ACTIONS(2375), - [anon_sym_co_return] = ACTIONS(2375), - [anon_sym_co_yield] = ACTIONS(2375), - [anon_sym_co_await] = ACTIONS(2375), - [anon_sym_new] = ACTIONS(2375), - [anon_sym_requires] = ACTIONS(2375), - [sym_this] = ACTIONS(2375), - [sym_nullptr] = ACTIONS(2375), - [sym_raw_string_literal] = ACTIONS(2377), - }, - [868] = { - [sym_identifier] = ACTIONS(2359), - [aux_sym_preproc_include_token1] = ACTIONS(2359), - [aux_sym_preproc_def_token1] = ACTIONS(2359), - [aux_sym_preproc_if_token1] = ACTIONS(2359), - [aux_sym_preproc_if_token2] = ACTIONS(2359), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2359), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2359), - [sym_preproc_directive] = ACTIONS(2359), - [anon_sym_LPAREN2] = ACTIONS(2361), - [anon_sym_BANG] = ACTIONS(2361), - [anon_sym_TILDE] = ACTIONS(2361), - [anon_sym_DASH] = ACTIONS(2359), - [anon_sym_PLUS] = ACTIONS(2359), - [anon_sym_STAR] = ACTIONS(2361), - [anon_sym_AMP_AMP] = ACTIONS(2361), - [anon_sym_AMP] = ACTIONS(2359), - [anon_sym_SEMI] = ACTIONS(2361), - [anon_sym_typedef] = ACTIONS(2359), - [anon_sym_extern] = ACTIONS(2359), - [anon_sym___attribute__] = ACTIONS(2359), - [anon_sym_COLON_COLON] = ACTIONS(2361), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2361), - [anon_sym___declspec] = ACTIONS(2359), - [anon_sym___based] = ACTIONS(2359), - [anon_sym___cdecl] = ACTIONS(2359), - [anon_sym___clrcall] = ACTIONS(2359), - [anon_sym___stdcall] = ACTIONS(2359), - [anon_sym___fastcall] = ACTIONS(2359), - [anon_sym___thiscall] = ACTIONS(2359), - [anon_sym___vectorcall] = ACTIONS(2359), - [anon_sym_LBRACE] = ACTIONS(2361), - [anon_sym_LBRACK] = ACTIONS(2359), - [anon_sym_static] = ACTIONS(2359), - [anon_sym_register] = ACTIONS(2359), - [anon_sym_inline] = ACTIONS(2359), - [anon_sym_thread_local] = ACTIONS(2359), - [anon_sym_const] = ACTIONS(2359), - [anon_sym_volatile] = ACTIONS(2359), - [anon_sym_restrict] = ACTIONS(2359), - [anon_sym__Atomic] = ACTIONS(2359), - [anon_sym_mutable] = ACTIONS(2359), - [anon_sym_constexpr] = ACTIONS(2359), - [anon_sym_constinit] = ACTIONS(2359), - [anon_sym_consteval] = ACTIONS(2359), - [anon_sym_signed] = ACTIONS(2359), - [anon_sym_unsigned] = ACTIONS(2359), - [anon_sym_long] = ACTIONS(2359), - [anon_sym_short] = ACTIONS(2359), - [sym_primitive_type] = ACTIONS(2359), - [anon_sym_enum] = ACTIONS(2359), - [anon_sym_class] = ACTIONS(2359), - [anon_sym_struct] = ACTIONS(2359), - [anon_sym_union] = ACTIONS(2359), - [anon_sym_if] = ACTIONS(2359), - [anon_sym_else] = ACTIONS(2359), - [anon_sym_switch] = ACTIONS(2359), - [anon_sym_case] = ACTIONS(2359), - [anon_sym_default] = ACTIONS(2359), - [anon_sym_while] = ACTIONS(2359), - [anon_sym_do] = ACTIONS(2359), - [anon_sym_for] = ACTIONS(2359), - [anon_sym_return] = ACTIONS(2359), - [anon_sym_break] = ACTIONS(2359), - [anon_sym_continue] = ACTIONS(2359), - [anon_sym_goto] = ACTIONS(2359), - [anon_sym_DASH_DASH] = ACTIONS(2361), - [anon_sym_PLUS_PLUS] = ACTIONS(2361), - [anon_sym_sizeof] = ACTIONS(2359), - [sym_number_literal] = ACTIONS(2361), - [anon_sym_L_SQUOTE] = ACTIONS(2361), - [anon_sym_u_SQUOTE] = ACTIONS(2361), - [anon_sym_U_SQUOTE] = ACTIONS(2361), - [anon_sym_u8_SQUOTE] = ACTIONS(2361), - [anon_sym_SQUOTE] = ACTIONS(2361), - [anon_sym_L_DQUOTE] = ACTIONS(2361), - [anon_sym_u_DQUOTE] = ACTIONS(2361), - [anon_sym_U_DQUOTE] = ACTIONS(2361), - [anon_sym_u8_DQUOTE] = ACTIONS(2361), - [anon_sym_DQUOTE] = ACTIONS(2361), - [sym_true] = ACTIONS(2359), - [sym_false] = ACTIONS(2359), - [sym_null] = ACTIONS(2359), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2359), - [anon_sym_decltype] = ACTIONS(2359), - [anon_sym_virtual] = ACTIONS(2359), - [anon_sym_explicit] = ACTIONS(2359), - [anon_sym_typename] = ACTIONS(2359), - [anon_sym_template] = ACTIONS(2359), - [anon_sym_operator] = ACTIONS(2359), - [anon_sym_try] = ACTIONS(2359), - [anon_sym_delete] = ACTIONS(2359), - [anon_sym_throw] = ACTIONS(2359), - [anon_sym_namespace] = ACTIONS(2359), - [anon_sym_using] = ACTIONS(2359), - [anon_sym_static_assert] = ACTIONS(2359), - [anon_sym_concept] = ACTIONS(2359), - [anon_sym_co_return] = ACTIONS(2359), - [anon_sym_co_yield] = ACTIONS(2359), - [anon_sym_co_await] = ACTIONS(2359), - [anon_sym_new] = ACTIONS(2359), - [anon_sym_requires] = ACTIONS(2359), - [sym_this] = ACTIONS(2359), - [sym_nullptr] = ACTIONS(2359), - [sym_raw_string_literal] = ACTIONS(2361), - }, - [869] = { - [sym_identifier] = ACTIONS(2375), - [aux_sym_preproc_include_token1] = ACTIONS(2375), - [aux_sym_preproc_def_token1] = ACTIONS(2375), - [aux_sym_preproc_if_token1] = ACTIONS(2375), - [aux_sym_preproc_if_token2] = ACTIONS(2375), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2375), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2375), - [sym_preproc_directive] = ACTIONS(2375), - [anon_sym_LPAREN2] = ACTIONS(2377), - [anon_sym_BANG] = ACTIONS(2377), - [anon_sym_TILDE] = ACTIONS(2377), - [anon_sym_DASH] = ACTIONS(2375), - [anon_sym_PLUS] = ACTIONS(2375), - [anon_sym_STAR] = ACTIONS(2377), - [anon_sym_AMP_AMP] = ACTIONS(2377), - [anon_sym_AMP] = ACTIONS(2375), - [anon_sym_SEMI] = ACTIONS(2377), - [anon_sym_typedef] = ACTIONS(2375), - [anon_sym_extern] = ACTIONS(2375), - [anon_sym___attribute__] = ACTIONS(2375), - [anon_sym_COLON_COLON] = ACTIONS(2377), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2377), - [anon_sym___declspec] = ACTIONS(2375), - [anon_sym___based] = ACTIONS(2375), - [anon_sym___cdecl] = ACTIONS(2375), - [anon_sym___clrcall] = ACTIONS(2375), - [anon_sym___stdcall] = ACTIONS(2375), - [anon_sym___fastcall] = ACTIONS(2375), - [anon_sym___thiscall] = ACTIONS(2375), - [anon_sym___vectorcall] = ACTIONS(2375), - [anon_sym_LBRACE] = ACTIONS(2377), - [anon_sym_LBRACK] = ACTIONS(2375), - [anon_sym_static] = ACTIONS(2375), - [anon_sym_register] = ACTIONS(2375), - [anon_sym_inline] = ACTIONS(2375), - [anon_sym_thread_local] = ACTIONS(2375), - [anon_sym_const] = ACTIONS(2375), - [anon_sym_volatile] = ACTIONS(2375), - [anon_sym_restrict] = ACTIONS(2375), - [anon_sym__Atomic] = ACTIONS(2375), - [anon_sym_mutable] = ACTIONS(2375), - [anon_sym_constexpr] = ACTIONS(2375), - [anon_sym_constinit] = ACTIONS(2375), - [anon_sym_consteval] = ACTIONS(2375), - [anon_sym_signed] = ACTIONS(2375), - [anon_sym_unsigned] = ACTIONS(2375), - [anon_sym_long] = ACTIONS(2375), - [anon_sym_short] = ACTIONS(2375), - [sym_primitive_type] = ACTIONS(2375), - [anon_sym_enum] = ACTIONS(2375), - [anon_sym_class] = ACTIONS(2375), - [anon_sym_struct] = ACTIONS(2375), - [anon_sym_union] = ACTIONS(2375), - [anon_sym_if] = ACTIONS(2375), - [anon_sym_else] = ACTIONS(2375), - [anon_sym_switch] = ACTIONS(2375), - [anon_sym_case] = ACTIONS(2375), - [anon_sym_default] = ACTIONS(2375), - [anon_sym_while] = ACTIONS(2375), - [anon_sym_do] = ACTIONS(2375), - [anon_sym_for] = ACTIONS(2375), - [anon_sym_return] = ACTIONS(2375), - [anon_sym_break] = ACTIONS(2375), - [anon_sym_continue] = ACTIONS(2375), - [anon_sym_goto] = ACTIONS(2375), - [anon_sym_DASH_DASH] = ACTIONS(2377), - [anon_sym_PLUS_PLUS] = ACTIONS(2377), - [anon_sym_sizeof] = ACTIONS(2375), - [sym_number_literal] = ACTIONS(2377), - [anon_sym_L_SQUOTE] = ACTIONS(2377), - [anon_sym_u_SQUOTE] = ACTIONS(2377), - [anon_sym_U_SQUOTE] = ACTIONS(2377), - [anon_sym_u8_SQUOTE] = ACTIONS(2377), - [anon_sym_SQUOTE] = ACTIONS(2377), - [anon_sym_L_DQUOTE] = ACTIONS(2377), - [anon_sym_u_DQUOTE] = ACTIONS(2377), - [anon_sym_U_DQUOTE] = ACTIONS(2377), - [anon_sym_u8_DQUOTE] = ACTIONS(2377), - [anon_sym_DQUOTE] = ACTIONS(2377), - [sym_true] = ACTIONS(2375), - [sym_false] = ACTIONS(2375), - [sym_null] = ACTIONS(2375), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2375), - [anon_sym_decltype] = ACTIONS(2375), - [anon_sym_virtual] = ACTIONS(2375), - [anon_sym_explicit] = ACTIONS(2375), - [anon_sym_typename] = ACTIONS(2375), - [anon_sym_template] = ACTIONS(2375), - [anon_sym_operator] = ACTIONS(2375), - [anon_sym_try] = ACTIONS(2375), - [anon_sym_delete] = ACTIONS(2375), - [anon_sym_throw] = ACTIONS(2375), - [anon_sym_namespace] = ACTIONS(2375), - [anon_sym_using] = ACTIONS(2375), - [anon_sym_static_assert] = ACTIONS(2375), - [anon_sym_concept] = ACTIONS(2375), - [anon_sym_co_return] = ACTIONS(2375), - [anon_sym_co_yield] = ACTIONS(2375), - [anon_sym_co_await] = ACTIONS(2375), - [anon_sym_new] = ACTIONS(2375), - [anon_sym_requires] = ACTIONS(2375), - [sym_this] = ACTIONS(2375), - [sym_nullptr] = ACTIONS(2375), - [sym_raw_string_literal] = ACTIONS(2377), - }, - [870] = { - [sym_identifier] = ACTIONS(2379), - [aux_sym_preproc_include_token1] = ACTIONS(2379), - [aux_sym_preproc_def_token1] = ACTIONS(2379), - [aux_sym_preproc_if_token1] = ACTIONS(2379), - [aux_sym_preproc_if_token2] = ACTIONS(2379), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2379), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2379), - [sym_preproc_directive] = ACTIONS(2379), - [anon_sym_LPAREN2] = ACTIONS(2381), - [anon_sym_BANG] = ACTIONS(2381), - [anon_sym_TILDE] = ACTIONS(2381), - [anon_sym_DASH] = ACTIONS(2379), - [anon_sym_PLUS] = ACTIONS(2379), - [anon_sym_STAR] = ACTIONS(2381), - [anon_sym_AMP_AMP] = ACTIONS(2381), - [anon_sym_AMP] = ACTIONS(2379), - [anon_sym_SEMI] = ACTIONS(2381), - [anon_sym_typedef] = ACTIONS(2379), - [anon_sym_extern] = ACTIONS(2379), - [anon_sym___attribute__] = ACTIONS(2379), - [anon_sym_COLON_COLON] = ACTIONS(2381), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2381), - [anon_sym___declspec] = ACTIONS(2379), - [anon_sym___based] = ACTIONS(2379), - [anon_sym___cdecl] = ACTIONS(2379), - [anon_sym___clrcall] = ACTIONS(2379), - [anon_sym___stdcall] = ACTIONS(2379), - [anon_sym___fastcall] = ACTIONS(2379), - [anon_sym___thiscall] = ACTIONS(2379), - [anon_sym___vectorcall] = ACTIONS(2379), - [anon_sym_LBRACE] = ACTIONS(2381), - [anon_sym_LBRACK] = ACTIONS(2379), - [anon_sym_static] = ACTIONS(2379), - [anon_sym_register] = ACTIONS(2379), - [anon_sym_inline] = ACTIONS(2379), - [anon_sym_thread_local] = ACTIONS(2379), - [anon_sym_const] = ACTIONS(2379), - [anon_sym_volatile] = ACTIONS(2379), - [anon_sym_restrict] = ACTIONS(2379), - [anon_sym__Atomic] = ACTIONS(2379), - [anon_sym_mutable] = ACTIONS(2379), - [anon_sym_constexpr] = ACTIONS(2379), - [anon_sym_constinit] = ACTIONS(2379), - [anon_sym_consteval] = ACTIONS(2379), - [anon_sym_signed] = ACTIONS(2379), - [anon_sym_unsigned] = ACTIONS(2379), - [anon_sym_long] = ACTIONS(2379), - [anon_sym_short] = ACTIONS(2379), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_enum] = ACTIONS(2379), - [anon_sym_class] = ACTIONS(2379), - [anon_sym_struct] = ACTIONS(2379), - [anon_sym_union] = ACTIONS(2379), - [anon_sym_if] = ACTIONS(2379), - [anon_sym_else] = ACTIONS(2379), - [anon_sym_switch] = ACTIONS(2379), - [anon_sym_case] = ACTIONS(2379), - [anon_sym_default] = ACTIONS(2379), - [anon_sym_while] = ACTIONS(2379), - [anon_sym_do] = ACTIONS(2379), - [anon_sym_for] = ACTIONS(2379), - [anon_sym_return] = ACTIONS(2379), - [anon_sym_break] = ACTIONS(2379), - [anon_sym_continue] = ACTIONS(2379), - [anon_sym_goto] = ACTIONS(2379), - [anon_sym_DASH_DASH] = ACTIONS(2381), - [anon_sym_PLUS_PLUS] = ACTIONS(2381), - [anon_sym_sizeof] = ACTIONS(2379), - [sym_number_literal] = ACTIONS(2381), - [anon_sym_L_SQUOTE] = ACTIONS(2381), - [anon_sym_u_SQUOTE] = ACTIONS(2381), - [anon_sym_U_SQUOTE] = ACTIONS(2381), - [anon_sym_u8_SQUOTE] = ACTIONS(2381), - [anon_sym_SQUOTE] = ACTIONS(2381), - [anon_sym_L_DQUOTE] = ACTIONS(2381), - [anon_sym_u_DQUOTE] = ACTIONS(2381), - [anon_sym_U_DQUOTE] = ACTIONS(2381), - [anon_sym_u8_DQUOTE] = ACTIONS(2381), - [anon_sym_DQUOTE] = ACTIONS(2381), - [sym_true] = ACTIONS(2379), - [sym_false] = ACTIONS(2379), - [sym_null] = ACTIONS(2379), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2379), - [anon_sym_decltype] = ACTIONS(2379), - [anon_sym_virtual] = ACTIONS(2379), - [anon_sym_explicit] = ACTIONS(2379), - [anon_sym_typename] = ACTIONS(2379), - [anon_sym_template] = ACTIONS(2379), - [anon_sym_operator] = ACTIONS(2379), - [anon_sym_try] = ACTIONS(2379), - [anon_sym_delete] = ACTIONS(2379), - [anon_sym_throw] = ACTIONS(2379), - [anon_sym_namespace] = ACTIONS(2379), - [anon_sym_using] = ACTIONS(2379), - [anon_sym_static_assert] = ACTIONS(2379), - [anon_sym_concept] = ACTIONS(2379), - [anon_sym_co_return] = ACTIONS(2379), - [anon_sym_co_yield] = ACTIONS(2379), - [anon_sym_co_await] = ACTIONS(2379), - [anon_sym_new] = ACTIONS(2379), - [anon_sym_requires] = ACTIONS(2379), - [sym_this] = ACTIONS(2379), - [sym_nullptr] = ACTIONS(2379), - [sym_raw_string_literal] = ACTIONS(2381), - }, - [871] = { - [sym_identifier] = ACTIONS(2383), - [aux_sym_preproc_include_token1] = ACTIONS(2383), - [aux_sym_preproc_def_token1] = ACTIONS(2383), - [aux_sym_preproc_if_token1] = ACTIONS(2383), - [aux_sym_preproc_if_token2] = ACTIONS(2383), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2383), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2383), - [sym_preproc_directive] = ACTIONS(2383), - [anon_sym_LPAREN2] = ACTIONS(2385), - [anon_sym_BANG] = ACTIONS(2385), - [anon_sym_TILDE] = ACTIONS(2385), - [anon_sym_DASH] = ACTIONS(2383), - [anon_sym_PLUS] = ACTIONS(2383), - [anon_sym_STAR] = ACTIONS(2385), - [anon_sym_AMP_AMP] = ACTIONS(2385), - [anon_sym_AMP] = ACTIONS(2383), - [anon_sym_SEMI] = ACTIONS(2385), - [anon_sym_typedef] = ACTIONS(2383), - [anon_sym_extern] = ACTIONS(2383), - [anon_sym___attribute__] = ACTIONS(2383), - [anon_sym_COLON_COLON] = ACTIONS(2385), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2385), - [anon_sym___declspec] = ACTIONS(2383), - [anon_sym___based] = ACTIONS(2383), - [anon_sym___cdecl] = ACTIONS(2383), - [anon_sym___clrcall] = ACTIONS(2383), - [anon_sym___stdcall] = ACTIONS(2383), - [anon_sym___fastcall] = ACTIONS(2383), - [anon_sym___thiscall] = ACTIONS(2383), - [anon_sym___vectorcall] = ACTIONS(2383), - [anon_sym_LBRACE] = ACTIONS(2385), - [anon_sym_LBRACK] = ACTIONS(2383), - [anon_sym_static] = ACTIONS(2383), - [anon_sym_register] = ACTIONS(2383), - [anon_sym_inline] = ACTIONS(2383), - [anon_sym_thread_local] = ACTIONS(2383), - [anon_sym_const] = ACTIONS(2383), - [anon_sym_volatile] = ACTIONS(2383), - [anon_sym_restrict] = ACTIONS(2383), - [anon_sym__Atomic] = ACTIONS(2383), - [anon_sym_mutable] = ACTIONS(2383), - [anon_sym_constexpr] = ACTIONS(2383), - [anon_sym_constinit] = ACTIONS(2383), - [anon_sym_consteval] = ACTIONS(2383), - [anon_sym_signed] = ACTIONS(2383), - [anon_sym_unsigned] = ACTIONS(2383), - [anon_sym_long] = ACTIONS(2383), - [anon_sym_short] = ACTIONS(2383), - [sym_primitive_type] = ACTIONS(2383), - [anon_sym_enum] = ACTIONS(2383), - [anon_sym_class] = ACTIONS(2383), - [anon_sym_struct] = ACTIONS(2383), - [anon_sym_union] = ACTIONS(2383), - [anon_sym_if] = ACTIONS(2383), - [anon_sym_else] = ACTIONS(2383), - [anon_sym_switch] = ACTIONS(2383), - [anon_sym_case] = ACTIONS(2383), - [anon_sym_default] = ACTIONS(2383), - [anon_sym_while] = ACTIONS(2383), - [anon_sym_do] = ACTIONS(2383), - [anon_sym_for] = ACTIONS(2383), - [anon_sym_return] = ACTIONS(2383), - [anon_sym_break] = ACTIONS(2383), - [anon_sym_continue] = ACTIONS(2383), - [anon_sym_goto] = ACTIONS(2383), - [anon_sym_DASH_DASH] = ACTIONS(2385), - [anon_sym_PLUS_PLUS] = ACTIONS(2385), - [anon_sym_sizeof] = ACTIONS(2383), - [sym_number_literal] = ACTIONS(2385), - [anon_sym_L_SQUOTE] = ACTIONS(2385), - [anon_sym_u_SQUOTE] = ACTIONS(2385), - [anon_sym_U_SQUOTE] = ACTIONS(2385), - [anon_sym_u8_SQUOTE] = ACTIONS(2385), - [anon_sym_SQUOTE] = ACTIONS(2385), - [anon_sym_L_DQUOTE] = ACTIONS(2385), - [anon_sym_u_DQUOTE] = ACTIONS(2385), - [anon_sym_U_DQUOTE] = ACTIONS(2385), - [anon_sym_u8_DQUOTE] = ACTIONS(2385), - [anon_sym_DQUOTE] = ACTIONS(2385), - [sym_true] = ACTIONS(2383), - [sym_false] = ACTIONS(2383), - [sym_null] = ACTIONS(2383), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2383), - [anon_sym_decltype] = ACTIONS(2383), - [anon_sym_virtual] = ACTIONS(2383), - [anon_sym_explicit] = ACTIONS(2383), - [anon_sym_typename] = ACTIONS(2383), - [anon_sym_template] = ACTIONS(2383), - [anon_sym_operator] = ACTIONS(2383), - [anon_sym_try] = ACTIONS(2383), - [anon_sym_delete] = ACTIONS(2383), - [anon_sym_throw] = ACTIONS(2383), - [anon_sym_namespace] = ACTIONS(2383), - [anon_sym_using] = ACTIONS(2383), - [anon_sym_static_assert] = ACTIONS(2383), - [anon_sym_concept] = ACTIONS(2383), - [anon_sym_co_return] = ACTIONS(2383), - [anon_sym_co_yield] = ACTIONS(2383), - [anon_sym_co_await] = ACTIONS(2383), - [anon_sym_new] = ACTIONS(2383), - [anon_sym_requires] = ACTIONS(2383), - [sym_this] = ACTIONS(2383), - [sym_nullptr] = ACTIONS(2383), - [sym_raw_string_literal] = ACTIONS(2385), - }, - [872] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_RBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - [sym_raw_string_literal] = ACTIONS(2513), + [sym_auto] = ACTIONS(2699), + [anon_sym_decltype] = ACTIONS(2701), + [anon_sym_typename] = ACTIONS(2703), + [anon_sym_template] = ACTIONS(976), + [anon_sym_GT2] = ACTIONS(2937), + [anon_sym_delete] = ACTIONS(2707), + [anon_sym_co_await] = ACTIONS(2709), + [anon_sym_new] = ACTIONS(2711), + [anon_sym_requires] = ACTIONS(2713), + [sym_this] = ACTIONS(2697), + [sym_nullptr] = ACTIONS(2697), + [sym_raw_string_literal] = ACTIONS(2715), }, - [873] = { - [sym_type_qualifier] = STATE(2979), - [sym__type_specifier] = STATE(3924), - [sym_sized_type_specifier] = STATE(2872), - [sym_enum_specifier] = STATE(2872), - [sym_struct_specifier] = STATE(2872), - [sym_union_specifier] = STATE(2872), - [sym__expression] = STATE(3596), - [sym_conditional_expression] = STATE(3881), - [sym_assignment_expression] = STATE(3881), - [sym_pointer_expression] = STATE(2977), - [sym_unary_expression] = STATE(3881), - [sym_binary_expression] = STATE(3881), - [sym_update_expression] = STATE(3881), - [sym_cast_expression] = STATE(3881), - [sym_type_descriptor] = STATE(5547), - [sym_sizeof_expression] = STATE(3881), - [sym_subscript_expression] = STATE(2977), - [sym_call_expression] = STATE(2977), - [sym_field_expression] = STATE(2977), - [sym_compound_literal_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(2977), - [sym_char_literal] = STATE(3701), - [sym_concatenated_string] = STATE(3701), - [sym_string_literal] = STATE(3219), - [sym_placeholder_type_specifier] = STATE(2872), - [sym_decltype_auto] = STATE(2878), - [sym_decltype] = STATE(2872), - [sym_class_specifier] = STATE(2872), - [sym__class_name] = STATE(6063), - [sym_dependent_type] = STATE(2872), - [sym_template_type] = STATE(4194), - [sym_template_function] = STATE(3881), - [sym_co_await_expression] = STATE(3881), - [sym_new_expression] = STATE(3881), - [sym_delete_expression] = STATE(3881), - [sym_requires_clause] = STATE(3881), - [sym_requires_expression] = STATE(3881), - [sym_lambda_expression] = STATE(3881), - [sym_lambda_capture_specifier] = STATE(4519), - [sym_fold_expression] = STATE(3881), - [sym_parameter_pack_expansion] = STATE(3881), - [sym_type_parameter_pack_expansion] = STATE(6132), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4633), - [sym_qualified_identifier] = STATE(2977), - [sym_qualified_type_identifier] = STATE(4305), - [sym_user_defined_literal] = STATE(3881), - [aux_sym_type_definition_repeat1] = STATE(2979), - [aux_sym_sized_type_specifier_repeat1] = STATE(2182), - [sym_identifier] = ACTIONS(2529), - [anon_sym_LPAREN2] = ACTIONS(2531), - [anon_sym_BANG] = ACTIONS(2533), - [anon_sym_TILDE] = ACTIONS(2533), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_STAR] = ACTIONS(2537), - [anon_sym_AMP] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(2539), - [anon_sym_LBRACK] = ACTIONS(2272), + [547] = { + [sym_type_qualifier] = STATE(3373), + [sym__type_specifier] = STATE(4189), + [sym_sized_type_specifier] = STATE(3139), + [sym_enum_specifier] = STATE(3139), + [sym_struct_specifier] = STATE(3139), + [sym_union_specifier] = STATE(3139), + [sym__expression] = STATE(3639), + [sym_conditional_expression] = STATE(3865), + [sym_assignment_expression] = STATE(3865), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3865), + [sym_binary_expression] = STATE(3865), + [sym_update_expression] = STATE(3865), + [sym_cast_expression] = STATE(3865), + [sym_type_descriptor] = STATE(5725), + [sym_sizeof_expression] = STATE(3865), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3865), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3707), + [sym_concatenated_string] = STATE(3707), + [sym_string_literal] = STATE(3250), + [sym_placeholder_type_specifier] = STATE(3139), + [sym_decltype_auto] = STATE(3138), + [sym_decltype] = STATE(3139), + [sym_class_specifier] = STATE(3139), + [sym__class_name] = STATE(6539), + [sym_dependent_type] = STATE(3139), + [sym_template_type] = STATE(4443), + [sym_template_function] = STATE(3865), + [sym_co_await_expression] = STATE(3865), + [sym_new_expression] = STATE(3865), + [sym_delete_expression] = STATE(3865), + [sym_requires_clause] = STATE(3865), + [sym_requires_expression] = STATE(3865), + [sym_lambda_expression] = STATE(3865), + [sym_lambda_capture_specifier] = STATE(4789), + [sym_fold_expression] = STATE(3865), + [sym_parameter_pack_expansion] = STATE(3865), + [sym_type_parameter_pack_expansion] = STATE(6076), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4919), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(4514), + [sym_user_defined_literal] = STATE(3865), + [aux_sym_type_definition_repeat1] = STATE(3373), + [aux_sym_sized_type_specifier_repeat1] = STATE(2300), + [sym_identifier] = ACTIONS(2663), + [anon_sym_LPAREN2] = ACTIONS(2665), + [anon_sym_BANG] = ACTIONS(2667), + [anon_sym_TILDE] = ACTIONS(2667), + [anon_sym_DASH] = ACTIONS(2669), + [anon_sym_PLUS] = ACTIONS(2669), + [anon_sym_STAR] = ACTIONS(2671), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_COLON_COLON] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(1713), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -129972,1086 +97706,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_constexpr] = ACTIONS(57), [anon_sym_constinit] = ACTIONS(57), [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(2541), - [anon_sym_unsigned] = ACTIONS(2541), - [anon_sym_long] = ACTIONS(2541), - [anon_sym_short] = ACTIONS(2541), - [sym_primitive_type] = ACTIONS(2543), - [anon_sym_enum] = ACTIONS(2545), - [anon_sym_class] = ACTIONS(2547), - [anon_sym_struct] = ACTIONS(2549), - [anon_sym_union] = ACTIONS(2551), - [anon_sym_DASH_DASH] = ACTIONS(2553), - [anon_sym_PLUS_PLUS] = ACTIONS(2553), - [anon_sym_sizeof] = ACTIONS(2555), - [sym_number_literal] = ACTIONS(2557), - [anon_sym_L_SQUOTE] = ACTIONS(2559), - [anon_sym_u_SQUOTE] = ACTIONS(2559), - [anon_sym_U_SQUOTE] = ACTIONS(2559), - [anon_sym_u8_SQUOTE] = ACTIONS(2559), - [anon_sym_SQUOTE] = ACTIONS(2559), - [anon_sym_L_DQUOTE] = ACTIONS(2561), - [anon_sym_u_DQUOTE] = ACTIONS(2561), - [anon_sym_U_DQUOTE] = ACTIONS(2561), - [anon_sym_u8_DQUOTE] = ACTIONS(2561), - [anon_sym_DQUOTE] = ACTIONS(2561), - [sym_true] = ACTIONS(2563), - [sym_false] = ACTIONS(2563), - [sym_null] = ACTIONS(2563), + [anon_sym_signed] = ACTIONS(2675), + [anon_sym_unsigned] = ACTIONS(2675), + [anon_sym_long] = ACTIONS(2675), + [anon_sym_short] = ACTIONS(2675), + [sym_primitive_type] = ACTIONS(2677), + [anon_sym_enum] = ACTIONS(2679), + [anon_sym_class] = ACTIONS(2681), + [anon_sym_struct] = ACTIONS(2683), + [anon_sym_union] = ACTIONS(2685), + [anon_sym_not] = ACTIONS(2669), + [anon_sym_compl] = ACTIONS(2669), + [anon_sym_DASH_DASH] = ACTIONS(2687), + [anon_sym_PLUS_PLUS] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2689), + [sym_number_literal] = ACTIONS(2691), + [anon_sym_L_SQUOTE] = ACTIONS(2693), + [anon_sym_u_SQUOTE] = ACTIONS(2693), + [anon_sym_U_SQUOTE] = ACTIONS(2693), + [anon_sym_u8_SQUOTE] = ACTIONS(2693), + [anon_sym_SQUOTE] = ACTIONS(2693), + [anon_sym_L_DQUOTE] = ACTIONS(2695), + [anon_sym_u_DQUOTE] = ACTIONS(2695), + [anon_sym_U_DQUOTE] = ACTIONS(2695), + [anon_sym_u8_DQUOTE] = ACTIONS(2695), + [anon_sym_DQUOTE] = ACTIONS(2695), + [sym_true] = ACTIONS(2697), + [sym_false] = ACTIONS(2697), + [sym_null] = ACTIONS(2697), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2565), - [anon_sym_decltype] = ACTIONS(2567), - [anon_sym_typename] = ACTIONS(2569), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2573), - [anon_sym_co_await] = ACTIONS(2575), - [anon_sym_new] = ACTIONS(2577), - [anon_sym_requires] = ACTIONS(2579), - [sym_this] = ACTIONS(2563), - [sym_nullptr] = ACTIONS(2563), - [sym_raw_string_literal] = ACTIONS(2581), - }, - [874] = { - [sym_identifier] = ACTIONS(2393), - [aux_sym_preproc_include_token1] = ACTIONS(2393), - [aux_sym_preproc_def_token1] = ACTIONS(2393), - [aux_sym_preproc_if_token1] = ACTIONS(2393), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2393), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2393), - [sym_preproc_directive] = ACTIONS(2393), - [anon_sym_LPAREN2] = ACTIONS(2395), - [anon_sym_BANG] = ACTIONS(2395), - [anon_sym_TILDE] = ACTIONS(2395), - [anon_sym_DASH] = ACTIONS(2393), - [anon_sym_PLUS] = ACTIONS(2393), - [anon_sym_STAR] = ACTIONS(2395), - [anon_sym_AMP_AMP] = ACTIONS(2395), - [anon_sym_AMP] = ACTIONS(2393), - [anon_sym_SEMI] = ACTIONS(2395), - [anon_sym_typedef] = ACTIONS(2393), - [anon_sym_extern] = ACTIONS(2393), - [anon_sym___attribute__] = ACTIONS(2393), - [anon_sym_COLON_COLON] = ACTIONS(2395), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2395), - [anon_sym___declspec] = ACTIONS(2393), - [anon_sym___based] = ACTIONS(2393), - [anon_sym___cdecl] = ACTIONS(2393), - [anon_sym___clrcall] = ACTIONS(2393), - [anon_sym___stdcall] = ACTIONS(2393), - [anon_sym___fastcall] = ACTIONS(2393), - [anon_sym___thiscall] = ACTIONS(2393), - [anon_sym___vectorcall] = ACTIONS(2393), - [anon_sym_LBRACE] = ACTIONS(2395), - [anon_sym_RBRACE] = ACTIONS(2395), - [anon_sym_LBRACK] = ACTIONS(2393), - [anon_sym_static] = ACTIONS(2393), - [anon_sym_register] = ACTIONS(2393), - [anon_sym_inline] = ACTIONS(2393), - [anon_sym_thread_local] = ACTIONS(2393), - [anon_sym_const] = ACTIONS(2393), - [anon_sym_volatile] = ACTIONS(2393), - [anon_sym_restrict] = ACTIONS(2393), - [anon_sym__Atomic] = ACTIONS(2393), - [anon_sym_mutable] = ACTIONS(2393), - [anon_sym_constexpr] = ACTIONS(2393), - [anon_sym_constinit] = ACTIONS(2393), - [anon_sym_consteval] = ACTIONS(2393), - [anon_sym_signed] = ACTIONS(2393), - [anon_sym_unsigned] = ACTIONS(2393), - [anon_sym_long] = ACTIONS(2393), - [anon_sym_short] = ACTIONS(2393), - [sym_primitive_type] = ACTIONS(2393), - [anon_sym_enum] = ACTIONS(2393), - [anon_sym_class] = ACTIONS(2393), - [anon_sym_struct] = ACTIONS(2393), - [anon_sym_union] = ACTIONS(2393), - [anon_sym_if] = ACTIONS(2393), - [anon_sym_else] = ACTIONS(2393), - [anon_sym_switch] = ACTIONS(2393), - [anon_sym_case] = ACTIONS(2393), - [anon_sym_default] = ACTIONS(2393), - [anon_sym_while] = ACTIONS(2393), - [anon_sym_do] = ACTIONS(2393), - [anon_sym_for] = ACTIONS(2393), - [anon_sym_return] = ACTIONS(2393), - [anon_sym_break] = ACTIONS(2393), - [anon_sym_continue] = ACTIONS(2393), - [anon_sym_goto] = ACTIONS(2393), - [anon_sym_DASH_DASH] = ACTIONS(2395), - [anon_sym_PLUS_PLUS] = ACTIONS(2395), - [anon_sym_sizeof] = ACTIONS(2393), - [sym_number_literal] = ACTIONS(2395), - [anon_sym_L_SQUOTE] = ACTIONS(2395), - [anon_sym_u_SQUOTE] = ACTIONS(2395), - [anon_sym_U_SQUOTE] = ACTIONS(2395), - [anon_sym_u8_SQUOTE] = ACTIONS(2395), - [anon_sym_SQUOTE] = ACTIONS(2395), - [anon_sym_L_DQUOTE] = ACTIONS(2395), - [anon_sym_u_DQUOTE] = ACTIONS(2395), - [anon_sym_U_DQUOTE] = ACTIONS(2395), - [anon_sym_u8_DQUOTE] = ACTIONS(2395), - [anon_sym_DQUOTE] = ACTIONS(2395), - [sym_true] = ACTIONS(2393), - [sym_false] = ACTIONS(2393), - [sym_null] = ACTIONS(2393), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2393), - [anon_sym_decltype] = ACTIONS(2393), - [anon_sym_virtual] = ACTIONS(2393), - [anon_sym_explicit] = ACTIONS(2393), - [anon_sym_typename] = ACTIONS(2393), - [anon_sym_template] = ACTIONS(2393), - [anon_sym_operator] = ACTIONS(2393), - [anon_sym_try] = ACTIONS(2393), - [anon_sym_delete] = ACTIONS(2393), - [anon_sym_throw] = ACTIONS(2393), - [anon_sym_namespace] = ACTIONS(2393), - [anon_sym_using] = ACTIONS(2393), - [anon_sym_static_assert] = ACTIONS(2393), - [anon_sym_concept] = ACTIONS(2393), - [anon_sym_co_return] = ACTIONS(2393), - [anon_sym_co_yield] = ACTIONS(2393), - [anon_sym_co_await] = ACTIONS(2393), - [anon_sym_new] = ACTIONS(2393), - [anon_sym_requires] = ACTIONS(2393), - [sym_this] = ACTIONS(2393), - [sym_nullptr] = ACTIONS(2393), - [sym_raw_string_literal] = ACTIONS(2395), - }, - [875] = { - [sym_identifier] = ACTIONS(2511), - [aux_sym_preproc_include_token1] = ACTIONS(2511), - [aux_sym_preproc_def_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token1] = ACTIONS(2511), - [aux_sym_preproc_if_token2] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2511), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2511), - [sym_preproc_directive] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym___based] = ACTIONS(2511), - [anon_sym___cdecl] = ACTIONS(2511), - [anon_sym___clrcall] = ACTIONS(2511), - [anon_sym___stdcall] = ACTIONS(2511), - [anon_sym___fastcall] = ACTIONS(2511), - [anon_sym___thiscall] = ACTIONS(2511), - [anon_sym___vectorcall] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_case] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_explicit] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_operator] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_using] = ACTIONS(2511), - [anon_sym_static_assert] = ACTIONS(2511), - [anon_sym_concept] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - [sym_raw_string_literal] = ACTIONS(2513), - }, - [876] = { - [sym_identifier] = ACTIONS(2519), - [aux_sym_preproc_include_token1] = ACTIONS(2519), - [aux_sym_preproc_def_token1] = ACTIONS(2519), - [aux_sym_preproc_if_token1] = ACTIONS(2519), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2519), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2519), - [sym_preproc_directive] = ACTIONS(2519), - [anon_sym_LPAREN2] = ACTIONS(2521), - [anon_sym_BANG] = ACTIONS(2521), - [anon_sym_TILDE] = ACTIONS(2521), - [anon_sym_DASH] = ACTIONS(2519), - [anon_sym_PLUS] = ACTIONS(2519), - [anon_sym_STAR] = ACTIONS(2521), - [anon_sym_AMP_AMP] = ACTIONS(2521), - [anon_sym_AMP] = ACTIONS(2519), - [anon_sym_SEMI] = ACTIONS(2521), - [anon_sym_typedef] = ACTIONS(2519), - [anon_sym_extern] = ACTIONS(2519), - [anon_sym___attribute__] = ACTIONS(2519), - [anon_sym_COLON_COLON] = ACTIONS(2521), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2521), - [anon_sym___declspec] = ACTIONS(2519), - [anon_sym___based] = ACTIONS(2519), - [anon_sym___cdecl] = ACTIONS(2519), - [anon_sym___clrcall] = ACTIONS(2519), - [anon_sym___stdcall] = ACTIONS(2519), - [anon_sym___fastcall] = ACTIONS(2519), - [anon_sym___thiscall] = ACTIONS(2519), - [anon_sym___vectorcall] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(2521), - [anon_sym_RBRACE] = ACTIONS(2521), - [anon_sym_LBRACK] = ACTIONS(2519), - [anon_sym_static] = ACTIONS(2519), - [anon_sym_register] = ACTIONS(2519), - [anon_sym_inline] = ACTIONS(2519), - [anon_sym_thread_local] = ACTIONS(2519), - [anon_sym_const] = ACTIONS(2519), - [anon_sym_volatile] = ACTIONS(2519), - [anon_sym_restrict] = ACTIONS(2519), - [anon_sym__Atomic] = ACTIONS(2519), - [anon_sym_mutable] = ACTIONS(2519), - [anon_sym_constexpr] = ACTIONS(2519), - [anon_sym_constinit] = ACTIONS(2519), - [anon_sym_consteval] = ACTIONS(2519), - [anon_sym_signed] = ACTIONS(2519), - [anon_sym_unsigned] = ACTIONS(2519), - [anon_sym_long] = ACTIONS(2519), - [anon_sym_short] = ACTIONS(2519), - [sym_primitive_type] = ACTIONS(2519), - [anon_sym_enum] = ACTIONS(2519), - [anon_sym_class] = ACTIONS(2519), - [anon_sym_struct] = ACTIONS(2519), - [anon_sym_union] = ACTIONS(2519), - [anon_sym_if] = ACTIONS(2519), - [anon_sym_else] = ACTIONS(2885), - [anon_sym_switch] = ACTIONS(2519), - [anon_sym_case] = ACTIONS(2519), - [anon_sym_default] = ACTIONS(2519), - [anon_sym_while] = ACTIONS(2519), - [anon_sym_do] = ACTIONS(2519), - [anon_sym_for] = ACTIONS(2519), - [anon_sym_return] = ACTIONS(2519), - [anon_sym_break] = ACTIONS(2519), - [anon_sym_continue] = ACTIONS(2519), - [anon_sym_goto] = ACTIONS(2519), - [anon_sym_DASH_DASH] = ACTIONS(2521), - [anon_sym_PLUS_PLUS] = ACTIONS(2521), - [anon_sym_sizeof] = ACTIONS(2519), - [sym_number_literal] = ACTIONS(2521), - [anon_sym_L_SQUOTE] = ACTIONS(2521), - [anon_sym_u_SQUOTE] = ACTIONS(2521), - [anon_sym_U_SQUOTE] = ACTIONS(2521), - [anon_sym_u8_SQUOTE] = ACTIONS(2521), - [anon_sym_SQUOTE] = ACTIONS(2521), - [anon_sym_L_DQUOTE] = ACTIONS(2521), - [anon_sym_u_DQUOTE] = ACTIONS(2521), - [anon_sym_U_DQUOTE] = ACTIONS(2521), - [anon_sym_u8_DQUOTE] = ACTIONS(2521), - [anon_sym_DQUOTE] = ACTIONS(2521), - [sym_true] = ACTIONS(2519), - [sym_false] = ACTIONS(2519), - [sym_null] = ACTIONS(2519), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2519), - [anon_sym_decltype] = ACTIONS(2519), - [anon_sym_virtual] = ACTIONS(2519), - [anon_sym_explicit] = ACTIONS(2519), - [anon_sym_typename] = ACTIONS(2519), - [anon_sym_template] = ACTIONS(2519), - [anon_sym_operator] = ACTIONS(2519), - [anon_sym_try] = ACTIONS(2519), - [anon_sym_delete] = ACTIONS(2519), - [anon_sym_throw] = ACTIONS(2519), - [anon_sym_namespace] = ACTIONS(2519), - [anon_sym_using] = ACTIONS(2519), - [anon_sym_static_assert] = ACTIONS(2519), - [anon_sym_concept] = ACTIONS(2519), - [anon_sym_co_return] = ACTIONS(2519), - [anon_sym_co_yield] = ACTIONS(2519), - [anon_sym_co_await] = ACTIONS(2519), - [anon_sym_new] = ACTIONS(2519), - [anon_sym_requires] = ACTIONS(2519), - [sym_this] = ACTIONS(2519), - [sym_nullptr] = ACTIONS(2519), - [sym_raw_string_literal] = ACTIONS(2521), - }, - [877] = { - [sym_identifier] = ACTIONS(2387), - [aux_sym_preproc_include_token1] = ACTIONS(2387), - [aux_sym_preproc_def_token1] = ACTIONS(2387), - [aux_sym_preproc_if_token1] = ACTIONS(2387), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2387), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2387), - [sym_preproc_directive] = ACTIONS(2387), - [anon_sym_LPAREN2] = ACTIONS(2389), - [anon_sym_BANG] = ACTIONS(2389), - [anon_sym_TILDE] = ACTIONS(2389), - [anon_sym_DASH] = ACTIONS(2387), - [anon_sym_PLUS] = ACTIONS(2387), - [anon_sym_STAR] = ACTIONS(2389), - [anon_sym_AMP_AMP] = ACTIONS(2389), - [anon_sym_AMP] = ACTIONS(2387), - [anon_sym_SEMI] = ACTIONS(2389), - [anon_sym_typedef] = ACTIONS(2387), - [anon_sym_extern] = ACTIONS(2387), - [anon_sym___attribute__] = ACTIONS(2387), - [anon_sym_COLON_COLON] = ACTIONS(2389), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2389), - [anon_sym___declspec] = ACTIONS(2387), - [anon_sym___based] = ACTIONS(2387), - [anon_sym___cdecl] = ACTIONS(2387), - [anon_sym___clrcall] = ACTIONS(2387), - [anon_sym___stdcall] = ACTIONS(2387), - [anon_sym___fastcall] = ACTIONS(2387), - [anon_sym___thiscall] = ACTIONS(2387), - [anon_sym___vectorcall] = ACTIONS(2387), - [anon_sym_LBRACE] = ACTIONS(2389), - [anon_sym_RBRACE] = ACTIONS(2389), - [anon_sym_LBRACK] = ACTIONS(2387), - [anon_sym_static] = ACTIONS(2387), - [anon_sym_register] = ACTIONS(2387), - [anon_sym_inline] = ACTIONS(2387), - [anon_sym_thread_local] = ACTIONS(2387), - [anon_sym_const] = ACTIONS(2387), - [anon_sym_volatile] = ACTIONS(2387), - [anon_sym_restrict] = ACTIONS(2387), - [anon_sym__Atomic] = ACTIONS(2387), - [anon_sym_mutable] = ACTIONS(2387), - [anon_sym_constexpr] = ACTIONS(2387), - [anon_sym_constinit] = ACTIONS(2387), - [anon_sym_consteval] = ACTIONS(2387), - [anon_sym_signed] = ACTIONS(2387), - [anon_sym_unsigned] = ACTIONS(2387), - [anon_sym_long] = ACTIONS(2387), - [anon_sym_short] = ACTIONS(2387), - [sym_primitive_type] = ACTIONS(2387), - [anon_sym_enum] = ACTIONS(2387), - [anon_sym_class] = ACTIONS(2387), - [anon_sym_struct] = ACTIONS(2387), - [anon_sym_union] = ACTIONS(2387), - [anon_sym_if] = ACTIONS(2387), - [anon_sym_else] = ACTIONS(2387), - [anon_sym_switch] = ACTIONS(2387), - [anon_sym_case] = ACTIONS(2387), - [anon_sym_default] = ACTIONS(2387), - [anon_sym_while] = ACTIONS(2387), - [anon_sym_do] = ACTIONS(2387), - [anon_sym_for] = ACTIONS(2387), - [anon_sym_return] = ACTIONS(2387), - [anon_sym_break] = ACTIONS(2387), - [anon_sym_continue] = ACTIONS(2387), - [anon_sym_goto] = ACTIONS(2387), - [anon_sym_DASH_DASH] = ACTIONS(2389), - [anon_sym_PLUS_PLUS] = ACTIONS(2389), - [anon_sym_sizeof] = ACTIONS(2387), - [sym_number_literal] = ACTIONS(2389), - [anon_sym_L_SQUOTE] = ACTIONS(2389), - [anon_sym_u_SQUOTE] = ACTIONS(2389), - [anon_sym_U_SQUOTE] = ACTIONS(2389), - [anon_sym_u8_SQUOTE] = ACTIONS(2389), - [anon_sym_SQUOTE] = ACTIONS(2389), - [anon_sym_L_DQUOTE] = ACTIONS(2389), - [anon_sym_u_DQUOTE] = ACTIONS(2389), - [anon_sym_U_DQUOTE] = ACTIONS(2389), - [anon_sym_u8_DQUOTE] = ACTIONS(2389), - [anon_sym_DQUOTE] = ACTIONS(2389), - [sym_true] = ACTIONS(2387), - [sym_false] = ACTIONS(2387), - [sym_null] = ACTIONS(2387), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2387), - [anon_sym_decltype] = ACTIONS(2387), - [anon_sym_virtual] = ACTIONS(2387), - [anon_sym_explicit] = ACTIONS(2387), - [anon_sym_typename] = ACTIONS(2387), - [anon_sym_template] = ACTIONS(2387), - [anon_sym_operator] = ACTIONS(2387), - [anon_sym_try] = ACTIONS(2387), - [anon_sym_delete] = ACTIONS(2387), - [anon_sym_throw] = ACTIONS(2387), - [anon_sym_namespace] = ACTIONS(2387), - [anon_sym_using] = ACTIONS(2387), - [anon_sym_static_assert] = ACTIONS(2387), - [anon_sym_concept] = ACTIONS(2387), - [anon_sym_co_return] = ACTIONS(2387), - [anon_sym_co_yield] = ACTIONS(2387), - [anon_sym_co_await] = ACTIONS(2387), - [anon_sym_new] = ACTIONS(2387), - [anon_sym_requires] = ACTIONS(2387), - [sym_this] = ACTIONS(2387), - [sym_nullptr] = ACTIONS(2387), - [sym_raw_string_literal] = ACTIONS(2389), - }, - [878] = { - [sym_identifier] = ACTIONS(2371), - [aux_sym_preproc_include_token1] = ACTIONS(2371), - [aux_sym_preproc_def_token1] = ACTIONS(2371), - [aux_sym_preproc_if_token1] = ACTIONS(2371), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2371), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2371), - [sym_preproc_directive] = ACTIONS(2371), - [anon_sym_LPAREN2] = ACTIONS(2373), - [anon_sym_BANG] = ACTIONS(2373), - [anon_sym_TILDE] = ACTIONS(2373), - [anon_sym_DASH] = ACTIONS(2371), - [anon_sym_PLUS] = ACTIONS(2371), - [anon_sym_STAR] = ACTIONS(2373), - [anon_sym_AMP_AMP] = ACTIONS(2373), - [anon_sym_AMP] = ACTIONS(2371), - [anon_sym_SEMI] = ACTIONS(2373), - [anon_sym_typedef] = ACTIONS(2371), - [anon_sym_extern] = ACTIONS(2371), - [anon_sym___attribute__] = ACTIONS(2371), - [anon_sym_COLON_COLON] = ACTIONS(2373), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2373), - [anon_sym___declspec] = ACTIONS(2371), - [anon_sym___based] = ACTIONS(2371), - [anon_sym___cdecl] = ACTIONS(2371), - [anon_sym___clrcall] = ACTIONS(2371), - [anon_sym___stdcall] = ACTIONS(2371), - [anon_sym___fastcall] = ACTIONS(2371), - [anon_sym___thiscall] = ACTIONS(2371), - [anon_sym___vectorcall] = ACTIONS(2371), - [anon_sym_LBRACE] = ACTIONS(2373), - [anon_sym_RBRACE] = ACTIONS(2373), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_static] = ACTIONS(2371), - [anon_sym_register] = ACTIONS(2371), - [anon_sym_inline] = ACTIONS(2371), - [anon_sym_thread_local] = ACTIONS(2371), - [anon_sym_const] = ACTIONS(2371), - [anon_sym_volatile] = ACTIONS(2371), - [anon_sym_restrict] = ACTIONS(2371), - [anon_sym__Atomic] = ACTIONS(2371), - [anon_sym_mutable] = ACTIONS(2371), - [anon_sym_constexpr] = ACTIONS(2371), - [anon_sym_constinit] = ACTIONS(2371), - [anon_sym_consteval] = ACTIONS(2371), - [anon_sym_signed] = ACTIONS(2371), - [anon_sym_unsigned] = ACTIONS(2371), - [anon_sym_long] = ACTIONS(2371), - [anon_sym_short] = ACTIONS(2371), - [sym_primitive_type] = ACTIONS(2371), - [anon_sym_enum] = ACTIONS(2371), - [anon_sym_class] = ACTIONS(2371), - [anon_sym_struct] = ACTIONS(2371), - [anon_sym_union] = ACTIONS(2371), - [anon_sym_if] = ACTIONS(2371), - [anon_sym_else] = ACTIONS(2371), - [anon_sym_switch] = ACTIONS(2371), - [anon_sym_case] = ACTIONS(2371), - [anon_sym_default] = ACTIONS(2371), - [anon_sym_while] = ACTIONS(2371), - [anon_sym_do] = ACTIONS(2371), - [anon_sym_for] = ACTIONS(2371), - [anon_sym_return] = ACTIONS(2371), - [anon_sym_break] = ACTIONS(2371), - [anon_sym_continue] = ACTIONS(2371), - [anon_sym_goto] = ACTIONS(2371), - [anon_sym_DASH_DASH] = ACTIONS(2373), - [anon_sym_PLUS_PLUS] = ACTIONS(2373), - [anon_sym_sizeof] = ACTIONS(2371), - [sym_number_literal] = ACTIONS(2373), - [anon_sym_L_SQUOTE] = ACTIONS(2373), - [anon_sym_u_SQUOTE] = ACTIONS(2373), - [anon_sym_U_SQUOTE] = ACTIONS(2373), - [anon_sym_u8_SQUOTE] = ACTIONS(2373), - [anon_sym_SQUOTE] = ACTIONS(2373), - [anon_sym_L_DQUOTE] = ACTIONS(2373), - [anon_sym_u_DQUOTE] = ACTIONS(2373), - [anon_sym_U_DQUOTE] = ACTIONS(2373), - [anon_sym_u8_DQUOTE] = ACTIONS(2373), - [anon_sym_DQUOTE] = ACTIONS(2373), - [sym_true] = ACTIONS(2371), - [sym_false] = ACTIONS(2371), - [sym_null] = ACTIONS(2371), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2371), - [anon_sym_decltype] = ACTIONS(2371), - [anon_sym_virtual] = ACTIONS(2371), - [anon_sym_explicit] = ACTIONS(2371), - [anon_sym_typename] = ACTIONS(2371), - [anon_sym_template] = ACTIONS(2371), - [anon_sym_operator] = ACTIONS(2371), - [anon_sym_try] = ACTIONS(2371), - [anon_sym_delete] = ACTIONS(2371), - [anon_sym_throw] = ACTIONS(2371), - [anon_sym_namespace] = ACTIONS(2371), - [anon_sym_using] = ACTIONS(2371), - [anon_sym_static_assert] = ACTIONS(2371), - [anon_sym_concept] = ACTIONS(2371), - [anon_sym_co_return] = ACTIONS(2371), - [anon_sym_co_yield] = ACTIONS(2371), - [anon_sym_co_await] = ACTIONS(2371), - [anon_sym_new] = ACTIONS(2371), - [anon_sym_requires] = ACTIONS(2371), - [sym_this] = ACTIONS(2371), - [sym_nullptr] = ACTIONS(2371), - [sym_raw_string_literal] = ACTIONS(2373), - }, - [879] = { - [ts_builtin_sym_end] = ACTIONS(2497), - [sym_identifier] = ACTIONS(2495), - [aux_sym_preproc_include_token1] = ACTIONS(2495), - [aux_sym_preproc_def_token1] = ACTIONS(2495), - [aux_sym_preproc_if_token1] = ACTIONS(2495), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2495), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2495), - [sym_preproc_directive] = ACTIONS(2495), - [anon_sym_LPAREN2] = ACTIONS(2497), - [anon_sym_BANG] = ACTIONS(2497), - [anon_sym_TILDE] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2495), - [anon_sym_PLUS] = ACTIONS(2495), - [anon_sym_STAR] = ACTIONS(2497), - [anon_sym_AMP_AMP] = ACTIONS(2497), - [anon_sym_AMP] = ACTIONS(2495), - [anon_sym_SEMI] = ACTIONS(2497), - [anon_sym_typedef] = ACTIONS(2495), - [anon_sym_extern] = ACTIONS(2495), - [anon_sym___attribute__] = ACTIONS(2495), - [anon_sym_COLON_COLON] = ACTIONS(2497), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2497), - [anon_sym___declspec] = ACTIONS(2495), - [anon_sym___based] = ACTIONS(2495), - [anon_sym___cdecl] = ACTIONS(2495), - [anon_sym___clrcall] = ACTIONS(2495), - [anon_sym___stdcall] = ACTIONS(2495), - [anon_sym___fastcall] = ACTIONS(2495), - [anon_sym___thiscall] = ACTIONS(2495), - [anon_sym___vectorcall] = ACTIONS(2495), - [anon_sym_LBRACE] = ACTIONS(2497), - [anon_sym_LBRACK] = ACTIONS(2495), - [anon_sym_static] = ACTIONS(2495), - [anon_sym_register] = ACTIONS(2495), - [anon_sym_inline] = ACTIONS(2495), - [anon_sym_thread_local] = ACTIONS(2495), - [anon_sym_const] = ACTIONS(2495), - [anon_sym_volatile] = ACTIONS(2495), - [anon_sym_restrict] = ACTIONS(2495), - [anon_sym__Atomic] = ACTIONS(2495), - [anon_sym_mutable] = ACTIONS(2495), - [anon_sym_constexpr] = ACTIONS(2495), - [anon_sym_constinit] = ACTIONS(2495), - [anon_sym_consteval] = ACTIONS(2495), - [anon_sym_signed] = ACTIONS(2495), - [anon_sym_unsigned] = ACTIONS(2495), - [anon_sym_long] = ACTIONS(2495), - [anon_sym_short] = ACTIONS(2495), - [sym_primitive_type] = ACTIONS(2495), - [anon_sym_enum] = ACTIONS(2495), - [anon_sym_class] = ACTIONS(2495), - [anon_sym_struct] = ACTIONS(2495), - [anon_sym_union] = ACTIONS(2495), - [anon_sym_if] = ACTIONS(2495), - [anon_sym_else] = ACTIONS(2495), - [anon_sym_switch] = ACTIONS(2495), - [anon_sym_case] = ACTIONS(2495), - [anon_sym_default] = ACTIONS(2495), - [anon_sym_while] = ACTIONS(2495), - [anon_sym_do] = ACTIONS(2495), - [anon_sym_for] = ACTIONS(2495), - [anon_sym_return] = ACTIONS(2495), - [anon_sym_break] = ACTIONS(2495), - [anon_sym_continue] = ACTIONS(2495), - [anon_sym_goto] = ACTIONS(2495), - [anon_sym_DASH_DASH] = ACTIONS(2497), - [anon_sym_PLUS_PLUS] = ACTIONS(2497), - [anon_sym_sizeof] = ACTIONS(2495), - [sym_number_literal] = ACTIONS(2497), - [anon_sym_L_SQUOTE] = ACTIONS(2497), - [anon_sym_u_SQUOTE] = ACTIONS(2497), - [anon_sym_U_SQUOTE] = ACTIONS(2497), - [anon_sym_u8_SQUOTE] = ACTIONS(2497), - [anon_sym_SQUOTE] = ACTIONS(2497), - [anon_sym_L_DQUOTE] = ACTIONS(2497), - [anon_sym_u_DQUOTE] = ACTIONS(2497), - [anon_sym_U_DQUOTE] = ACTIONS(2497), - [anon_sym_u8_DQUOTE] = ACTIONS(2497), - [anon_sym_DQUOTE] = ACTIONS(2497), - [sym_true] = ACTIONS(2495), - [sym_false] = ACTIONS(2495), - [sym_null] = ACTIONS(2495), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2495), - [anon_sym_decltype] = ACTIONS(2495), - [anon_sym_virtual] = ACTIONS(2495), - [anon_sym_explicit] = ACTIONS(2495), - [anon_sym_typename] = ACTIONS(2495), - [anon_sym_template] = ACTIONS(2495), - [anon_sym_operator] = ACTIONS(2495), - [anon_sym_try] = ACTIONS(2495), - [anon_sym_delete] = ACTIONS(2495), - [anon_sym_throw] = ACTIONS(2495), - [anon_sym_namespace] = ACTIONS(2495), - [anon_sym_using] = ACTIONS(2495), - [anon_sym_static_assert] = ACTIONS(2495), - [anon_sym_concept] = ACTIONS(2495), - [anon_sym_co_return] = ACTIONS(2495), - [anon_sym_co_yield] = ACTIONS(2495), - [anon_sym_co_await] = ACTIONS(2495), - [anon_sym_new] = ACTIONS(2495), - [anon_sym_requires] = ACTIONS(2495), - [sym_this] = ACTIONS(2495), - [sym_nullptr] = ACTIONS(2495), - [sym_raw_string_literal] = ACTIONS(2497), - }, - [880] = { - [sym_identifier] = ACTIONS(2515), - [aux_sym_preproc_include_token1] = ACTIONS(2515), - [aux_sym_preproc_def_token1] = ACTIONS(2515), - [aux_sym_preproc_if_token1] = ACTIONS(2515), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2515), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2515), - [sym_preproc_directive] = ACTIONS(2515), - [anon_sym_LPAREN2] = ACTIONS(2517), - [anon_sym_BANG] = ACTIONS(2517), - [anon_sym_TILDE] = ACTIONS(2517), - [anon_sym_DASH] = ACTIONS(2515), - [anon_sym_PLUS] = ACTIONS(2515), - [anon_sym_STAR] = ACTIONS(2517), - [anon_sym_AMP_AMP] = ACTIONS(2517), - [anon_sym_AMP] = ACTIONS(2515), - [anon_sym_SEMI] = ACTIONS(2517), - [anon_sym_typedef] = ACTIONS(2515), - [anon_sym_extern] = ACTIONS(2515), - [anon_sym___attribute__] = ACTIONS(2515), - [anon_sym_COLON_COLON] = ACTIONS(2517), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2517), - [anon_sym___declspec] = ACTIONS(2515), - [anon_sym___based] = ACTIONS(2515), - [anon_sym___cdecl] = ACTIONS(2515), - [anon_sym___clrcall] = ACTIONS(2515), - [anon_sym___stdcall] = ACTIONS(2515), - [anon_sym___fastcall] = ACTIONS(2515), - [anon_sym___thiscall] = ACTIONS(2515), - [anon_sym___vectorcall] = ACTIONS(2515), - [anon_sym_LBRACE] = ACTIONS(2517), - [anon_sym_RBRACE] = ACTIONS(2517), - [anon_sym_LBRACK] = ACTIONS(2515), - [anon_sym_static] = ACTIONS(2515), - [anon_sym_register] = ACTIONS(2515), - [anon_sym_inline] = ACTIONS(2515), - [anon_sym_thread_local] = ACTIONS(2515), - [anon_sym_const] = ACTIONS(2515), - [anon_sym_volatile] = ACTIONS(2515), - [anon_sym_restrict] = ACTIONS(2515), - [anon_sym__Atomic] = ACTIONS(2515), - [anon_sym_mutable] = ACTIONS(2515), - [anon_sym_constexpr] = ACTIONS(2515), - [anon_sym_constinit] = ACTIONS(2515), - [anon_sym_consteval] = ACTIONS(2515), - [anon_sym_signed] = ACTIONS(2515), - [anon_sym_unsigned] = ACTIONS(2515), - [anon_sym_long] = ACTIONS(2515), - [anon_sym_short] = ACTIONS(2515), - [sym_primitive_type] = ACTIONS(2515), - [anon_sym_enum] = ACTIONS(2515), - [anon_sym_class] = ACTIONS(2515), - [anon_sym_struct] = ACTIONS(2515), - [anon_sym_union] = ACTIONS(2515), - [anon_sym_if] = ACTIONS(2515), - [anon_sym_else] = ACTIONS(2515), - [anon_sym_switch] = ACTIONS(2515), - [anon_sym_case] = ACTIONS(2515), - [anon_sym_default] = ACTIONS(2515), - [anon_sym_while] = ACTIONS(2515), - [anon_sym_do] = ACTIONS(2515), - [anon_sym_for] = ACTIONS(2515), - [anon_sym_return] = ACTIONS(2515), - [anon_sym_break] = ACTIONS(2515), - [anon_sym_continue] = ACTIONS(2515), - [anon_sym_goto] = ACTIONS(2515), - [anon_sym_DASH_DASH] = ACTIONS(2517), - [anon_sym_PLUS_PLUS] = ACTIONS(2517), - [anon_sym_sizeof] = ACTIONS(2515), - [sym_number_literal] = ACTIONS(2517), - [anon_sym_L_SQUOTE] = ACTIONS(2517), - [anon_sym_u_SQUOTE] = ACTIONS(2517), - [anon_sym_U_SQUOTE] = ACTIONS(2517), - [anon_sym_u8_SQUOTE] = ACTIONS(2517), - [anon_sym_SQUOTE] = ACTIONS(2517), - [anon_sym_L_DQUOTE] = ACTIONS(2517), - [anon_sym_u_DQUOTE] = ACTIONS(2517), - [anon_sym_U_DQUOTE] = ACTIONS(2517), - [anon_sym_u8_DQUOTE] = ACTIONS(2517), - [anon_sym_DQUOTE] = ACTIONS(2517), - [sym_true] = ACTIONS(2515), - [sym_false] = ACTIONS(2515), - [sym_null] = ACTIONS(2515), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2515), - [anon_sym_decltype] = ACTIONS(2515), - [anon_sym_virtual] = ACTIONS(2515), - [anon_sym_explicit] = ACTIONS(2515), - [anon_sym_typename] = ACTIONS(2515), - [anon_sym_template] = ACTIONS(2515), - [anon_sym_operator] = ACTIONS(2515), - [anon_sym_try] = ACTIONS(2515), - [anon_sym_delete] = ACTIONS(2515), - [anon_sym_throw] = ACTIONS(2515), - [anon_sym_namespace] = ACTIONS(2515), - [anon_sym_using] = ACTIONS(2515), - [anon_sym_static_assert] = ACTIONS(2515), - [anon_sym_concept] = ACTIONS(2515), - [anon_sym_co_return] = ACTIONS(2515), - [anon_sym_co_yield] = ACTIONS(2515), - [anon_sym_co_await] = ACTIONS(2515), - [anon_sym_new] = ACTIONS(2515), - [anon_sym_requires] = ACTIONS(2515), - [sym_this] = ACTIONS(2515), - [sym_nullptr] = ACTIONS(2515), - [sym_raw_string_literal] = ACTIONS(2517), - }, - [881] = { - [ts_builtin_sym_end] = ACTIONS(2473), - [sym_identifier] = ACTIONS(2471), - [aux_sym_preproc_include_token1] = ACTIONS(2471), - [aux_sym_preproc_def_token1] = ACTIONS(2471), - [aux_sym_preproc_if_token1] = ACTIONS(2471), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2471), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2471), - [sym_preproc_directive] = ACTIONS(2471), - [anon_sym_LPAREN2] = ACTIONS(2473), - [anon_sym_BANG] = ACTIONS(2473), - [anon_sym_TILDE] = ACTIONS(2473), - [anon_sym_DASH] = ACTIONS(2471), - [anon_sym_PLUS] = ACTIONS(2471), - [anon_sym_STAR] = ACTIONS(2473), - [anon_sym_AMP_AMP] = ACTIONS(2473), - [anon_sym_AMP] = ACTIONS(2471), - [anon_sym_SEMI] = ACTIONS(2473), - [anon_sym_typedef] = ACTIONS(2471), - [anon_sym_extern] = ACTIONS(2471), - [anon_sym___attribute__] = ACTIONS(2471), - [anon_sym_COLON_COLON] = ACTIONS(2473), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2473), - [anon_sym___declspec] = ACTIONS(2471), - [anon_sym___based] = ACTIONS(2471), - [anon_sym___cdecl] = ACTIONS(2471), - [anon_sym___clrcall] = ACTIONS(2471), - [anon_sym___stdcall] = ACTIONS(2471), - [anon_sym___fastcall] = ACTIONS(2471), - [anon_sym___thiscall] = ACTIONS(2471), - [anon_sym___vectorcall] = ACTIONS(2471), - [anon_sym_LBRACE] = ACTIONS(2473), - [anon_sym_LBRACK] = ACTIONS(2471), - [anon_sym_static] = ACTIONS(2471), - [anon_sym_register] = ACTIONS(2471), - [anon_sym_inline] = ACTIONS(2471), - [anon_sym_thread_local] = ACTIONS(2471), - [anon_sym_const] = ACTIONS(2471), - [anon_sym_volatile] = ACTIONS(2471), - [anon_sym_restrict] = ACTIONS(2471), - [anon_sym__Atomic] = ACTIONS(2471), - [anon_sym_mutable] = ACTIONS(2471), - [anon_sym_constexpr] = ACTIONS(2471), - [anon_sym_constinit] = ACTIONS(2471), - [anon_sym_consteval] = ACTIONS(2471), - [anon_sym_signed] = ACTIONS(2471), - [anon_sym_unsigned] = ACTIONS(2471), - [anon_sym_long] = ACTIONS(2471), - [anon_sym_short] = ACTIONS(2471), - [sym_primitive_type] = ACTIONS(2471), - [anon_sym_enum] = ACTIONS(2471), - [anon_sym_class] = ACTIONS(2471), - [anon_sym_struct] = ACTIONS(2471), - [anon_sym_union] = ACTIONS(2471), - [anon_sym_if] = ACTIONS(2471), - [anon_sym_else] = ACTIONS(2471), - [anon_sym_switch] = ACTIONS(2471), - [anon_sym_case] = ACTIONS(2471), - [anon_sym_default] = ACTIONS(2471), - [anon_sym_while] = ACTIONS(2471), - [anon_sym_do] = ACTIONS(2471), - [anon_sym_for] = ACTIONS(2471), - [anon_sym_return] = ACTIONS(2471), - [anon_sym_break] = ACTIONS(2471), - [anon_sym_continue] = ACTIONS(2471), - [anon_sym_goto] = ACTIONS(2471), - [anon_sym_DASH_DASH] = ACTIONS(2473), - [anon_sym_PLUS_PLUS] = ACTIONS(2473), - [anon_sym_sizeof] = ACTIONS(2471), - [sym_number_literal] = ACTIONS(2473), - [anon_sym_L_SQUOTE] = ACTIONS(2473), - [anon_sym_u_SQUOTE] = ACTIONS(2473), - [anon_sym_U_SQUOTE] = ACTIONS(2473), - [anon_sym_u8_SQUOTE] = ACTIONS(2473), - [anon_sym_SQUOTE] = ACTIONS(2473), - [anon_sym_L_DQUOTE] = ACTIONS(2473), - [anon_sym_u_DQUOTE] = ACTIONS(2473), - [anon_sym_U_DQUOTE] = ACTIONS(2473), - [anon_sym_u8_DQUOTE] = ACTIONS(2473), - [anon_sym_DQUOTE] = ACTIONS(2473), - [sym_true] = ACTIONS(2471), - [sym_false] = ACTIONS(2471), - [sym_null] = ACTIONS(2471), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2471), - [anon_sym_decltype] = ACTIONS(2471), - [anon_sym_virtual] = ACTIONS(2471), - [anon_sym_explicit] = ACTIONS(2471), - [anon_sym_typename] = ACTIONS(2471), - [anon_sym_template] = ACTIONS(2471), - [anon_sym_operator] = ACTIONS(2471), - [anon_sym_try] = ACTIONS(2471), - [anon_sym_delete] = ACTIONS(2471), - [anon_sym_throw] = ACTIONS(2471), - [anon_sym_namespace] = ACTIONS(2471), - [anon_sym_using] = ACTIONS(2471), - [anon_sym_static_assert] = ACTIONS(2471), - [anon_sym_concept] = ACTIONS(2471), - [anon_sym_co_return] = ACTIONS(2471), - [anon_sym_co_yield] = ACTIONS(2471), - [anon_sym_co_await] = ACTIONS(2471), - [anon_sym_new] = ACTIONS(2471), - [anon_sym_requires] = ACTIONS(2471), - [sym_this] = ACTIONS(2471), - [sym_nullptr] = ACTIONS(2471), - [sym_raw_string_literal] = ACTIONS(2473), - }, - [882] = { - [ts_builtin_sym_end] = ACTIONS(2469), - [sym_identifier] = ACTIONS(2467), - [aux_sym_preproc_include_token1] = ACTIONS(2467), - [aux_sym_preproc_def_token1] = ACTIONS(2467), - [aux_sym_preproc_if_token1] = ACTIONS(2467), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2467), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2467), - [sym_preproc_directive] = ACTIONS(2467), - [anon_sym_LPAREN2] = ACTIONS(2469), - [anon_sym_BANG] = ACTIONS(2469), - [anon_sym_TILDE] = ACTIONS(2469), - [anon_sym_DASH] = ACTIONS(2467), - [anon_sym_PLUS] = ACTIONS(2467), - [anon_sym_STAR] = ACTIONS(2469), - [anon_sym_AMP_AMP] = ACTIONS(2469), - [anon_sym_AMP] = ACTIONS(2467), - [anon_sym_SEMI] = ACTIONS(2469), - [anon_sym_typedef] = ACTIONS(2467), - [anon_sym_extern] = ACTIONS(2467), - [anon_sym___attribute__] = ACTIONS(2467), - [anon_sym_COLON_COLON] = ACTIONS(2469), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2469), - [anon_sym___declspec] = ACTIONS(2467), - [anon_sym___based] = ACTIONS(2467), - [anon_sym___cdecl] = ACTIONS(2467), - [anon_sym___clrcall] = ACTIONS(2467), - [anon_sym___stdcall] = ACTIONS(2467), - [anon_sym___fastcall] = ACTIONS(2467), - [anon_sym___thiscall] = ACTIONS(2467), - [anon_sym___vectorcall] = ACTIONS(2467), - [anon_sym_LBRACE] = ACTIONS(2469), - [anon_sym_LBRACK] = ACTIONS(2467), - [anon_sym_static] = ACTIONS(2467), - [anon_sym_register] = ACTIONS(2467), - [anon_sym_inline] = ACTIONS(2467), - [anon_sym_thread_local] = ACTIONS(2467), - [anon_sym_const] = ACTIONS(2467), - [anon_sym_volatile] = ACTIONS(2467), - [anon_sym_restrict] = ACTIONS(2467), - [anon_sym__Atomic] = ACTIONS(2467), - [anon_sym_mutable] = ACTIONS(2467), - [anon_sym_constexpr] = ACTIONS(2467), - [anon_sym_constinit] = ACTIONS(2467), - [anon_sym_consteval] = ACTIONS(2467), - [anon_sym_signed] = ACTIONS(2467), - [anon_sym_unsigned] = ACTIONS(2467), - [anon_sym_long] = ACTIONS(2467), - [anon_sym_short] = ACTIONS(2467), - [sym_primitive_type] = ACTIONS(2467), - [anon_sym_enum] = ACTIONS(2467), - [anon_sym_class] = ACTIONS(2467), - [anon_sym_struct] = ACTIONS(2467), - [anon_sym_union] = ACTIONS(2467), - [anon_sym_if] = ACTIONS(2467), - [anon_sym_else] = ACTIONS(2467), - [anon_sym_switch] = ACTIONS(2467), - [anon_sym_case] = ACTIONS(2467), - [anon_sym_default] = ACTIONS(2467), - [anon_sym_while] = ACTIONS(2467), - [anon_sym_do] = ACTIONS(2467), - [anon_sym_for] = ACTIONS(2467), - [anon_sym_return] = ACTIONS(2467), - [anon_sym_break] = ACTIONS(2467), - [anon_sym_continue] = ACTIONS(2467), - [anon_sym_goto] = ACTIONS(2467), - [anon_sym_DASH_DASH] = ACTIONS(2469), - [anon_sym_PLUS_PLUS] = ACTIONS(2469), - [anon_sym_sizeof] = ACTIONS(2467), - [sym_number_literal] = ACTIONS(2469), - [anon_sym_L_SQUOTE] = ACTIONS(2469), - [anon_sym_u_SQUOTE] = ACTIONS(2469), - [anon_sym_U_SQUOTE] = ACTIONS(2469), - [anon_sym_u8_SQUOTE] = ACTIONS(2469), - [anon_sym_SQUOTE] = ACTIONS(2469), - [anon_sym_L_DQUOTE] = ACTIONS(2469), - [anon_sym_u_DQUOTE] = ACTIONS(2469), - [anon_sym_U_DQUOTE] = ACTIONS(2469), - [anon_sym_u8_DQUOTE] = ACTIONS(2469), - [anon_sym_DQUOTE] = ACTIONS(2469), - [sym_true] = ACTIONS(2467), - [sym_false] = ACTIONS(2467), - [sym_null] = ACTIONS(2467), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2467), - [anon_sym_decltype] = ACTIONS(2467), - [anon_sym_virtual] = ACTIONS(2467), - [anon_sym_explicit] = ACTIONS(2467), - [anon_sym_typename] = ACTIONS(2467), - [anon_sym_template] = ACTIONS(2467), - [anon_sym_operator] = ACTIONS(2467), - [anon_sym_try] = ACTIONS(2467), - [anon_sym_delete] = ACTIONS(2467), - [anon_sym_throw] = ACTIONS(2467), - [anon_sym_namespace] = ACTIONS(2467), - [anon_sym_using] = ACTIONS(2467), - [anon_sym_static_assert] = ACTIONS(2467), - [anon_sym_concept] = ACTIONS(2467), - [anon_sym_co_return] = ACTIONS(2467), - [anon_sym_co_yield] = ACTIONS(2467), - [anon_sym_co_await] = ACTIONS(2467), - [anon_sym_new] = ACTIONS(2467), - [anon_sym_requires] = ACTIONS(2467), - [sym_this] = ACTIONS(2467), - [sym_nullptr] = ACTIONS(2467), - [sym_raw_string_literal] = ACTIONS(2469), + [sym_auto] = ACTIONS(2699), + [anon_sym_decltype] = ACTIONS(2701), + [anon_sym_typename] = ACTIONS(2703), + [anon_sym_template] = ACTIONS(976), + [anon_sym_GT2] = ACTIONS(2939), + [anon_sym_delete] = ACTIONS(2707), + [anon_sym_co_await] = ACTIONS(2709), + [anon_sym_new] = ACTIONS(2711), + [anon_sym_requires] = ACTIONS(2713), + [sym_this] = ACTIONS(2697), + [sym_nullptr] = ACTIONS(2697), + [sym_raw_string_literal] = ACTIONS(2715), }, - [883] = { - [sym_function_definition] = STATE(937), - [sym_declaration] = STATE(937), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(4003), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(2900), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym_ms_call_modifier] = STATE(1797), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4694), - [sym_array_declarator] = STATE(4825), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(3085), + [548] = { + [sym_type_qualifier] = STATE(3373), + [sym__type_specifier] = STATE(4189), [sym_sized_type_specifier] = STATE(3139), [sym_enum_specifier] = STATE(3139), [sym_struct_specifier] = STATE(3139), [sym_union_specifier] = STATE(3139), - [sym__empty_declaration] = STATE(937), + [sym__expression] = STATE(3596), + [sym_conditional_expression] = STATE(3865), + [sym_assignment_expression] = STATE(3865), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3865), + [sym_binary_expression] = STATE(3865), + [sym_update_expression] = STATE(3865), + [sym_cast_expression] = STATE(3865), + [sym_type_descriptor] = STATE(5680), + [sym_sizeof_expression] = STATE(3865), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3865), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3707), + [sym_concatenated_string] = STATE(3707), + [sym_string_literal] = STATE(3250), [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), + [sym_decltype_auto] = STATE(3138), [sym_decltype] = STATE(3139), [sym_class_specifier] = STATE(3139), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1780), + [sym__class_name] = STATE(6539), [sym_dependent_type] = STATE(3139), - [sym_template_declaration] = STATE(937), - [sym_operator_cast] = STATE(5184), - [sym__constructor_specifiers] = STATE(1780), - [sym_operator_cast_definition] = STATE(937), - [sym_operator_cast_declaration] = STATE(937), - [sym_constructor_or_destructor_definition] = STATE(937), - [sym_constructor_or_destructor_declaration] = STATE(937), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(2976), - [sym_template_function] = STATE(4825), - [sym_alias_declaration] = STATE(937), - [sym_concept_definition] = STATE(937), - [sym_requires_clause] = STATE(1059), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4520), - [sym_qualified_identifier] = STATE(4825), - [sym_qualified_type_identifier] = STATE(3198), - [sym_qualified_operator_cast_identifier] = STATE(5184), - [sym_operator_name] = STATE(4825), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_operator_cast_definition_repeat1] = STATE(1780), - [sym_identifier] = ACTIONS(2805), - [anon_sym_LPAREN2] = ACTIONS(1515), - [anon_sym_TILDE] = ACTIONS(1517), - [anon_sym_STAR] = ACTIONS(1519), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1521), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2807), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1389), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACK] = ACTIONS(1527), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), + [sym_template_type] = STATE(4443), + [sym_template_function] = STATE(3865), + [sym_co_await_expression] = STATE(3865), + [sym_new_expression] = STATE(3865), + [sym_delete_expression] = STATE(3865), + [sym_requires_clause] = STATE(3865), + [sym_requires_expression] = STATE(3865), + [sym_lambda_expression] = STATE(3865), + [sym_lambda_capture_specifier] = STATE(4789), + [sym_fold_expression] = STATE(3865), + [sym_parameter_pack_expansion] = STATE(3865), + [sym_type_parameter_pack_expansion] = STATE(6002), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4919), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(4514), + [sym_user_defined_literal] = STATE(3865), + [aux_sym_type_definition_repeat1] = STATE(3373), + [aux_sym_sized_type_specifier_repeat1] = STATE(2300), + [sym_identifier] = ACTIONS(2663), + [anon_sym_LPAREN2] = ACTIONS(2665), + [anon_sym_BANG] = ACTIONS(2667), + [anon_sym_TILDE] = ACTIONS(2667), + [anon_sym_DASH] = ACTIONS(2669), + [anon_sym_PLUS] = ACTIONS(2669), + [anon_sym_STAR] = ACTIONS(2671), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_COLON_COLON] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(1713), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -131060,3116 +97816,2120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_constexpr] = ACTIONS(57), [anon_sym_constinit] = ACTIONS(57), [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(2809), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), + [anon_sym_signed] = ACTIONS(2675), + [anon_sym_unsigned] = ACTIONS(2675), + [anon_sym_long] = ACTIONS(2675), + [anon_sym_short] = ACTIONS(2675), + [sym_primitive_type] = ACTIONS(2677), + [anon_sym_enum] = ACTIONS(2679), + [anon_sym_class] = ACTIONS(2681), + [anon_sym_struct] = ACTIONS(2683), + [anon_sym_union] = ACTIONS(2685), + [anon_sym_not] = ACTIONS(2669), + [anon_sym_compl] = ACTIONS(2669), + [anon_sym_DASH_DASH] = ACTIONS(2687), + [anon_sym_PLUS_PLUS] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2689), + [sym_number_literal] = ACTIONS(2691), + [anon_sym_L_SQUOTE] = ACTIONS(2693), + [anon_sym_u_SQUOTE] = ACTIONS(2693), + [anon_sym_U_SQUOTE] = ACTIONS(2693), + [anon_sym_u8_SQUOTE] = ACTIONS(2693), + [anon_sym_SQUOTE] = ACTIONS(2693), + [anon_sym_L_DQUOTE] = ACTIONS(2695), + [anon_sym_u_DQUOTE] = ACTIONS(2695), + [anon_sym_U_DQUOTE] = ACTIONS(2695), + [anon_sym_u8_DQUOTE] = ACTIONS(2695), + [anon_sym_DQUOTE] = ACTIONS(2695), + [sym_true] = ACTIONS(2697), + [sym_false] = ACTIONS(2697), + [sym_null] = ACTIONS(2697), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(105), - [anon_sym_decltype] = ACTIONS(107), - [anon_sym_virtual] = ACTIONS(109), - [anon_sym_explicit] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(2887), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_using] = ACTIONS(2889), - [anon_sym_concept] = ACTIONS(131), - [anon_sym_requires] = ACTIONS(2815), - }, - [884] = { - [sym_identifier] = ACTIONS(2287), - [aux_sym_preproc_include_token1] = ACTIONS(2287), - [aux_sym_preproc_def_token1] = ACTIONS(2287), - [anon_sym_COMMA] = ACTIONS(2391), - [aux_sym_preproc_if_token1] = ACTIONS(2287), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2287), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2287), - [sym_preproc_directive] = ACTIONS(2287), - [anon_sym_LPAREN2] = ACTIONS(2289), - [anon_sym_BANG] = ACTIONS(2289), - [anon_sym_TILDE] = ACTIONS(2289), - [anon_sym_DASH] = ACTIONS(2287), - [anon_sym_PLUS] = ACTIONS(2287), - [anon_sym_STAR] = ACTIONS(2289), - [anon_sym_AMP_AMP] = ACTIONS(2289), - [anon_sym_AMP] = ACTIONS(2287), - [anon_sym_SEMI] = ACTIONS(2391), - [anon_sym_typedef] = ACTIONS(2287), - [anon_sym_extern] = ACTIONS(2287), - [anon_sym___attribute__] = ACTIONS(2287), - [anon_sym_COLON_COLON] = ACTIONS(2289), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2289), - [anon_sym___declspec] = ACTIONS(2287), - [anon_sym___based] = ACTIONS(2287), - [anon_sym___cdecl] = ACTIONS(2287), - [anon_sym___clrcall] = ACTIONS(2287), - [anon_sym___stdcall] = ACTIONS(2287), - [anon_sym___fastcall] = ACTIONS(2287), - [anon_sym___thiscall] = ACTIONS(2287), - [anon_sym___vectorcall] = ACTIONS(2287), - [anon_sym_LBRACE] = ACTIONS(2289), - [anon_sym_RBRACE] = ACTIONS(2289), - [anon_sym_LBRACK] = ACTIONS(2287), - [anon_sym_static] = ACTIONS(2287), - [anon_sym_register] = ACTIONS(2287), - [anon_sym_inline] = ACTIONS(2287), - [anon_sym_thread_local] = ACTIONS(2287), - [anon_sym_const] = ACTIONS(2287), - [anon_sym_volatile] = ACTIONS(2287), - [anon_sym_restrict] = ACTIONS(2287), - [anon_sym__Atomic] = ACTIONS(2287), - [anon_sym_mutable] = ACTIONS(2287), - [anon_sym_constexpr] = ACTIONS(2287), - [anon_sym_constinit] = ACTIONS(2287), - [anon_sym_consteval] = ACTIONS(2287), - [anon_sym_signed] = ACTIONS(2287), - [anon_sym_unsigned] = ACTIONS(2287), - [anon_sym_long] = ACTIONS(2287), - [anon_sym_short] = ACTIONS(2287), - [sym_primitive_type] = ACTIONS(2287), - [anon_sym_enum] = ACTIONS(2287), - [anon_sym_class] = ACTIONS(2287), - [anon_sym_struct] = ACTIONS(2287), - [anon_sym_union] = ACTIONS(2287), - [anon_sym_if] = ACTIONS(2287), - [anon_sym_switch] = ACTIONS(2287), - [anon_sym_case] = ACTIONS(2287), - [anon_sym_default] = ACTIONS(2287), - [anon_sym_while] = ACTIONS(2287), - [anon_sym_do] = ACTIONS(2287), - [anon_sym_for] = ACTIONS(2287), - [anon_sym_return] = ACTIONS(2287), - [anon_sym_break] = ACTIONS(2287), - [anon_sym_continue] = ACTIONS(2287), - [anon_sym_goto] = ACTIONS(2287), - [anon_sym_DASH_DASH] = ACTIONS(2289), - [anon_sym_PLUS_PLUS] = ACTIONS(2289), - [anon_sym_sizeof] = ACTIONS(2287), - [sym_number_literal] = ACTIONS(2289), - [anon_sym_L_SQUOTE] = ACTIONS(2289), - [anon_sym_u_SQUOTE] = ACTIONS(2289), - [anon_sym_U_SQUOTE] = ACTIONS(2289), - [anon_sym_u8_SQUOTE] = ACTIONS(2289), - [anon_sym_SQUOTE] = ACTIONS(2289), - [anon_sym_L_DQUOTE] = ACTIONS(2289), - [anon_sym_u_DQUOTE] = ACTIONS(2289), - [anon_sym_U_DQUOTE] = ACTIONS(2289), - [anon_sym_u8_DQUOTE] = ACTIONS(2289), - [anon_sym_DQUOTE] = ACTIONS(2289), - [sym_true] = ACTIONS(2287), - [sym_false] = ACTIONS(2287), - [sym_null] = ACTIONS(2287), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2287), - [anon_sym_decltype] = ACTIONS(2287), - [anon_sym_virtual] = ACTIONS(2287), - [anon_sym_explicit] = ACTIONS(2287), - [anon_sym_typename] = ACTIONS(2287), - [anon_sym_template] = ACTIONS(2287), - [anon_sym_operator] = ACTIONS(2287), - [anon_sym_try] = ACTIONS(2287), - [anon_sym_delete] = ACTIONS(2287), - [anon_sym_throw] = ACTIONS(2287), - [anon_sym_namespace] = ACTIONS(2287), - [anon_sym_using] = ACTIONS(2287), - [anon_sym_static_assert] = ACTIONS(2287), - [anon_sym_concept] = ACTIONS(2287), - [anon_sym_co_return] = ACTIONS(2287), - [anon_sym_co_yield] = ACTIONS(2287), - [anon_sym_co_await] = ACTIONS(2287), - [anon_sym_new] = ACTIONS(2287), - [anon_sym_requires] = ACTIONS(2287), - [sym_this] = ACTIONS(2287), - [sym_nullptr] = ACTIONS(2287), - [sym_raw_string_literal] = ACTIONS(2289), + [sym_auto] = ACTIONS(2699), + [anon_sym_decltype] = ACTIONS(2701), + [anon_sym_typename] = ACTIONS(2703), + [anon_sym_template] = ACTIONS(976), + [anon_sym_GT2] = ACTIONS(2941), + [anon_sym_delete] = ACTIONS(2707), + [anon_sym_co_await] = ACTIONS(2709), + [anon_sym_new] = ACTIONS(2711), + [anon_sym_requires] = ACTIONS(2713), + [sym_this] = ACTIONS(2697), + [sym_nullptr] = ACTIONS(2697), + [sym_raw_string_literal] = ACTIONS(2715), }, - [885] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_RBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), + [549] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token2] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - [sym_raw_string_literal] = ACTIONS(2407), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [886] = { - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_RBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - [sym_raw_string_literal] = ACTIONS(2407), + [550] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_RBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [887] = { - [ts_builtin_sym_end] = ACTIONS(2407), - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), + [551] = { + [ts_builtin_sym_end] = ACTIONS(2597), + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - [sym_raw_string_literal] = ACTIONS(2407), - }, - [888] = { - [ts_builtin_sym_end] = ACTIONS(2407), - [sym_identifier] = ACTIONS(2405), - [aux_sym_preproc_include_token1] = ACTIONS(2405), - [aux_sym_preproc_def_token1] = ACTIONS(2405), - [aux_sym_preproc_if_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2405), - [sym_preproc_directive] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP_AMP] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym___based] = ACTIONS(2405), - [anon_sym___cdecl] = ACTIONS(2405), - [anon_sym___clrcall] = ACTIONS(2405), - [anon_sym___stdcall] = ACTIONS(2405), - [anon_sym___fastcall] = ACTIONS(2405), - [anon_sym___thiscall] = ACTIONS(2405), - [anon_sym___vectorcall] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_case] = ACTIONS(2405), - [anon_sym_default] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_explicit] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_operator] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_namespace] = ACTIONS(2405), - [anon_sym_using] = ACTIONS(2405), - [anon_sym_static_assert] = ACTIONS(2405), - [anon_sym_concept] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - [sym_raw_string_literal] = ACTIONS(2407), - }, - [889] = { - [ts_builtin_sym_end] = ACTIONS(2289), - [sym_identifier] = ACTIONS(2287), - [aux_sym_preproc_include_token1] = ACTIONS(2287), - [aux_sym_preproc_def_token1] = ACTIONS(2287), - [anon_sym_COMMA] = ACTIONS(2391), - [aux_sym_preproc_if_token1] = ACTIONS(2287), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2287), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2287), - [sym_preproc_directive] = ACTIONS(2287), - [anon_sym_LPAREN2] = ACTIONS(2289), - [anon_sym_BANG] = ACTIONS(2289), - [anon_sym_TILDE] = ACTIONS(2289), - [anon_sym_DASH] = ACTIONS(2287), - [anon_sym_PLUS] = ACTIONS(2287), - [anon_sym_STAR] = ACTIONS(2289), - [anon_sym_AMP_AMP] = ACTIONS(2289), - [anon_sym_AMP] = ACTIONS(2287), - [anon_sym_SEMI] = ACTIONS(2391), - [anon_sym_typedef] = ACTIONS(2287), - [anon_sym_extern] = ACTIONS(2287), - [anon_sym___attribute__] = ACTIONS(2287), - [anon_sym_COLON_COLON] = ACTIONS(2289), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2289), - [anon_sym___declspec] = ACTIONS(2287), - [anon_sym___based] = ACTIONS(2287), - [anon_sym___cdecl] = ACTIONS(2287), - [anon_sym___clrcall] = ACTIONS(2287), - [anon_sym___stdcall] = ACTIONS(2287), - [anon_sym___fastcall] = ACTIONS(2287), - [anon_sym___thiscall] = ACTIONS(2287), - [anon_sym___vectorcall] = ACTIONS(2287), - [anon_sym_LBRACE] = ACTIONS(2289), - [anon_sym_LBRACK] = ACTIONS(2287), - [anon_sym_static] = ACTIONS(2287), - [anon_sym_register] = ACTIONS(2287), - [anon_sym_inline] = ACTIONS(2287), - [anon_sym_thread_local] = ACTIONS(2287), - [anon_sym_const] = ACTIONS(2287), - [anon_sym_volatile] = ACTIONS(2287), - [anon_sym_restrict] = ACTIONS(2287), - [anon_sym__Atomic] = ACTIONS(2287), - [anon_sym_mutable] = ACTIONS(2287), - [anon_sym_constexpr] = ACTIONS(2287), - [anon_sym_constinit] = ACTIONS(2287), - [anon_sym_consteval] = ACTIONS(2287), - [anon_sym_signed] = ACTIONS(2287), - [anon_sym_unsigned] = ACTIONS(2287), - [anon_sym_long] = ACTIONS(2287), - [anon_sym_short] = ACTIONS(2287), - [sym_primitive_type] = ACTIONS(2287), - [anon_sym_enum] = ACTIONS(2287), - [anon_sym_class] = ACTIONS(2287), - [anon_sym_struct] = ACTIONS(2287), - [anon_sym_union] = ACTIONS(2287), - [anon_sym_if] = ACTIONS(2287), - [anon_sym_switch] = ACTIONS(2287), - [anon_sym_case] = ACTIONS(2287), - [anon_sym_default] = ACTIONS(2287), - [anon_sym_while] = ACTIONS(2287), - [anon_sym_do] = ACTIONS(2287), - [anon_sym_for] = ACTIONS(2287), - [anon_sym_return] = ACTIONS(2287), - [anon_sym_break] = ACTIONS(2287), - [anon_sym_continue] = ACTIONS(2287), - [anon_sym_goto] = ACTIONS(2287), - [anon_sym_DASH_DASH] = ACTIONS(2289), - [anon_sym_PLUS_PLUS] = ACTIONS(2289), - [anon_sym_sizeof] = ACTIONS(2287), - [sym_number_literal] = ACTIONS(2289), - [anon_sym_L_SQUOTE] = ACTIONS(2289), - [anon_sym_u_SQUOTE] = ACTIONS(2289), - [anon_sym_U_SQUOTE] = ACTIONS(2289), - [anon_sym_u8_SQUOTE] = ACTIONS(2289), - [anon_sym_SQUOTE] = ACTIONS(2289), - [anon_sym_L_DQUOTE] = ACTIONS(2289), - [anon_sym_u_DQUOTE] = ACTIONS(2289), - [anon_sym_U_DQUOTE] = ACTIONS(2289), - [anon_sym_u8_DQUOTE] = ACTIONS(2289), - [anon_sym_DQUOTE] = ACTIONS(2289), - [sym_true] = ACTIONS(2287), - [sym_false] = ACTIONS(2287), - [sym_null] = ACTIONS(2287), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2287), - [anon_sym_decltype] = ACTIONS(2287), - [anon_sym_virtual] = ACTIONS(2287), - [anon_sym_explicit] = ACTIONS(2287), - [anon_sym_typename] = ACTIONS(2287), - [anon_sym_template] = ACTIONS(2287), - [anon_sym_operator] = ACTIONS(2287), - [anon_sym_try] = ACTIONS(2287), - [anon_sym_delete] = ACTIONS(2287), - [anon_sym_throw] = ACTIONS(2287), - [anon_sym_namespace] = ACTIONS(2287), - [anon_sym_using] = ACTIONS(2287), - [anon_sym_static_assert] = ACTIONS(2287), - [anon_sym_concept] = ACTIONS(2287), - [anon_sym_co_return] = ACTIONS(2287), - [anon_sym_co_yield] = ACTIONS(2287), - [anon_sym_co_await] = ACTIONS(2287), - [anon_sym_new] = ACTIONS(2287), - [anon_sym_requires] = ACTIONS(2287), - [sym_this] = ACTIONS(2287), - [sym_nullptr] = ACTIONS(2287), - [sym_raw_string_literal] = ACTIONS(2289), - }, - [890] = { - [sym_identifier] = ACTIONS(2421), - [aux_sym_preproc_include_token1] = ACTIONS(2421), - [aux_sym_preproc_def_token1] = ACTIONS(2421), - [aux_sym_preproc_if_token1] = ACTIONS(2421), - [aux_sym_preproc_if_token2] = ACTIONS(2421), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2421), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2421), - [sym_preproc_directive] = ACTIONS(2421), - [anon_sym_LPAREN2] = ACTIONS(2423), - [anon_sym_BANG] = ACTIONS(2423), - [anon_sym_TILDE] = ACTIONS(2423), - [anon_sym_DASH] = ACTIONS(2421), - [anon_sym_PLUS] = ACTIONS(2421), - [anon_sym_STAR] = ACTIONS(2423), - [anon_sym_AMP_AMP] = ACTIONS(2423), - [anon_sym_AMP] = ACTIONS(2421), - [anon_sym_SEMI] = ACTIONS(2423), - [anon_sym_typedef] = ACTIONS(2421), - [anon_sym_extern] = ACTIONS(2421), - [anon_sym___attribute__] = ACTIONS(2421), - [anon_sym_COLON_COLON] = ACTIONS(2423), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2423), - [anon_sym___declspec] = ACTIONS(2421), - [anon_sym___based] = ACTIONS(2421), - [anon_sym___cdecl] = ACTIONS(2421), - [anon_sym___clrcall] = ACTIONS(2421), - [anon_sym___stdcall] = ACTIONS(2421), - [anon_sym___fastcall] = ACTIONS(2421), - [anon_sym___thiscall] = ACTIONS(2421), - [anon_sym___vectorcall] = ACTIONS(2421), - [anon_sym_LBRACE] = ACTIONS(2423), - [anon_sym_LBRACK] = ACTIONS(2421), - [anon_sym_static] = ACTIONS(2421), - [anon_sym_register] = ACTIONS(2421), - [anon_sym_inline] = ACTIONS(2421), - [anon_sym_thread_local] = ACTIONS(2421), - [anon_sym_const] = ACTIONS(2421), - [anon_sym_volatile] = ACTIONS(2421), - [anon_sym_restrict] = ACTIONS(2421), - [anon_sym__Atomic] = ACTIONS(2421), - [anon_sym_mutable] = ACTIONS(2421), - [anon_sym_constexpr] = ACTIONS(2421), - [anon_sym_constinit] = ACTIONS(2421), - [anon_sym_consteval] = ACTIONS(2421), - [anon_sym_signed] = ACTIONS(2421), - [anon_sym_unsigned] = ACTIONS(2421), - [anon_sym_long] = ACTIONS(2421), - [anon_sym_short] = ACTIONS(2421), - [sym_primitive_type] = ACTIONS(2421), - [anon_sym_enum] = ACTIONS(2421), - [anon_sym_class] = ACTIONS(2421), - [anon_sym_struct] = ACTIONS(2421), - [anon_sym_union] = ACTIONS(2421), - [anon_sym_if] = ACTIONS(2421), - [anon_sym_else] = ACTIONS(2421), - [anon_sym_switch] = ACTIONS(2421), - [anon_sym_case] = ACTIONS(2421), - [anon_sym_default] = ACTIONS(2421), - [anon_sym_while] = ACTIONS(2421), - [anon_sym_do] = ACTIONS(2421), - [anon_sym_for] = ACTIONS(2421), - [anon_sym_return] = ACTIONS(2421), - [anon_sym_break] = ACTIONS(2421), - [anon_sym_continue] = ACTIONS(2421), - [anon_sym_goto] = ACTIONS(2421), - [anon_sym_DASH_DASH] = ACTIONS(2423), - [anon_sym_PLUS_PLUS] = ACTIONS(2423), - [anon_sym_sizeof] = ACTIONS(2421), - [sym_number_literal] = ACTIONS(2423), - [anon_sym_L_SQUOTE] = ACTIONS(2423), - [anon_sym_u_SQUOTE] = ACTIONS(2423), - [anon_sym_U_SQUOTE] = ACTIONS(2423), - [anon_sym_u8_SQUOTE] = ACTIONS(2423), - [anon_sym_SQUOTE] = ACTIONS(2423), - [anon_sym_L_DQUOTE] = ACTIONS(2423), - [anon_sym_u_DQUOTE] = ACTIONS(2423), - [anon_sym_U_DQUOTE] = ACTIONS(2423), - [anon_sym_u8_DQUOTE] = ACTIONS(2423), - [anon_sym_DQUOTE] = ACTIONS(2423), - [sym_true] = ACTIONS(2421), - [sym_false] = ACTIONS(2421), - [sym_null] = ACTIONS(2421), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2421), - [anon_sym_decltype] = ACTIONS(2421), - [anon_sym_virtual] = ACTIONS(2421), - [anon_sym_explicit] = ACTIONS(2421), - [anon_sym_typename] = ACTIONS(2421), - [anon_sym_template] = ACTIONS(2421), - [anon_sym_operator] = ACTIONS(2421), - [anon_sym_try] = ACTIONS(2421), - [anon_sym_delete] = ACTIONS(2421), - [anon_sym_throw] = ACTIONS(2421), - [anon_sym_namespace] = ACTIONS(2421), - [anon_sym_using] = ACTIONS(2421), - [anon_sym_static_assert] = ACTIONS(2421), - [anon_sym_concept] = ACTIONS(2421), - [anon_sym_co_return] = ACTIONS(2421), - [anon_sym_co_yield] = ACTIONS(2421), - [anon_sym_co_await] = ACTIONS(2421), - [anon_sym_new] = ACTIONS(2421), - [anon_sym_requires] = ACTIONS(2421), - [sym_this] = ACTIONS(2421), - [sym_nullptr] = ACTIONS(2421), - [sym_raw_string_literal] = ACTIONS(2423), - }, - [891] = { - [ts_builtin_sym_end] = ACTIONS(2361), - [sym_identifier] = ACTIONS(2359), - [aux_sym_preproc_include_token1] = ACTIONS(2359), - [aux_sym_preproc_def_token1] = ACTIONS(2359), - [aux_sym_preproc_if_token1] = ACTIONS(2359), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2359), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2359), - [sym_preproc_directive] = ACTIONS(2359), - [anon_sym_LPAREN2] = ACTIONS(2361), - [anon_sym_BANG] = ACTIONS(2361), - [anon_sym_TILDE] = ACTIONS(2361), - [anon_sym_DASH] = ACTIONS(2359), - [anon_sym_PLUS] = ACTIONS(2359), - [anon_sym_STAR] = ACTIONS(2361), - [anon_sym_AMP_AMP] = ACTIONS(2361), - [anon_sym_AMP] = ACTIONS(2359), - [anon_sym_SEMI] = ACTIONS(2361), - [anon_sym_typedef] = ACTIONS(2359), - [anon_sym_extern] = ACTIONS(2359), - [anon_sym___attribute__] = ACTIONS(2359), - [anon_sym_COLON_COLON] = ACTIONS(2361), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2361), - [anon_sym___declspec] = ACTIONS(2359), - [anon_sym___based] = ACTIONS(2359), - [anon_sym___cdecl] = ACTIONS(2359), - [anon_sym___clrcall] = ACTIONS(2359), - [anon_sym___stdcall] = ACTIONS(2359), - [anon_sym___fastcall] = ACTIONS(2359), - [anon_sym___thiscall] = ACTIONS(2359), - [anon_sym___vectorcall] = ACTIONS(2359), - [anon_sym_LBRACE] = ACTIONS(2361), - [anon_sym_LBRACK] = ACTIONS(2359), - [anon_sym_static] = ACTIONS(2359), - [anon_sym_register] = ACTIONS(2359), - [anon_sym_inline] = ACTIONS(2359), - [anon_sym_thread_local] = ACTIONS(2359), - [anon_sym_const] = ACTIONS(2359), - [anon_sym_volatile] = ACTIONS(2359), - [anon_sym_restrict] = ACTIONS(2359), - [anon_sym__Atomic] = ACTIONS(2359), - [anon_sym_mutable] = ACTIONS(2359), - [anon_sym_constexpr] = ACTIONS(2359), - [anon_sym_constinit] = ACTIONS(2359), - [anon_sym_consteval] = ACTIONS(2359), - [anon_sym_signed] = ACTIONS(2359), - [anon_sym_unsigned] = ACTIONS(2359), - [anon_sym_long] = ACTIONS(2359), - [anon_sym_short] = ACTIONS(2359), - [sym_primitive_type] = ACTIONS(2359), - [anon_sym_enum] = ACTIONS(2359), - [anon_sym_class] = ACTIONS(2359), - [anon_sym_struct] = ACTIONS(2359), - [anon_sym_union] = ACTIONS(2359), - [anon_sym_if] = ACTIONS(2359), - [anon_sym_else] = ACTIONS(2359), - [anon_sym_switch] = ACTIONS(2359), - [anon_sym_case] = ACTIONS(2359), - [anon_sym_default] = ACTIONS(2359), - [anon_sym_while] = ACTIONS(2359), - [anon_sym_do] = ACTIONS(2359), - [anon_sym_for] = ACTIONS(2359), - [anon_sym_return] = ACTIONS(2359), - [anon_sym_break] = ACTIONS(2359), - [anon_sym_continue] = ACTIONS(2359), - [anon_sym_goto] = ACTIONS(2359), - [anon_sym_DASH_DASH] = ACTIONS(2361), - [anon_sym_PLUS_PLUS] = ACTIONS(2361), - [anon_sym_sizeof] = ACTIONS(2359), - [sym_number_literal] = ACTIONS(2361), - [anon_sym_L_SQUOTE] = ACTIONS(2361), - [anon_sym_u_SQUOTE] = ACTIONS(2361), - [anon_sym_U_SQUOTE] = ACTIONS(2361), - [anon_sym_u8_SQUOTE] = ACTIONS(2361), - [anon_sym_SQUOTE] = ACTIONS(2361), - [anon_sym_L_DQUOTE] = ACTIONS(2361), - [anon_sym_u_DQUOTE] = ACTIONS(2361), - [anon_sym_U_DQUOTE] = ACTIONS(2361), - [anon_sym_u8_DQUOTE] = ACTIONS(2361), - [anon_sym_DQUOTE] = ACTIONS(2361), - [sym_true] = ACTIONS(2359), - [sym_false] = ACTIONS(2359), - [sym_null] = ACTIONS(2359), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2359), - [anon_sym_decltype] = ACTIONS(2359), - [anon_sym_virtual] = ACTIONS(2359), - [anon_sym_explicit] = ACTIONS(2359), - [anon_sym_typename] = ACTIONS(2359), - [anon_sym_template] = ACTIONS(2359), - [anon_sym_operator] = ACTIONS(2359), - [anon_sym_try] = ACTIONS(2359), - [anon_sym_delete] = ACTIONS(2359), - [anon_sym_throw] = ACTIONS(2359), - [anon_sym_namespace] = ACTIONS(2359), - [anon_sym_using] = ACTIONS(2359), - [anon_sym_static_assert] = ACTIONS(2359), - [anon_sym_concept] = ACTIONS(2359), - [anon_sym_co_return] = ACTIONS(2359), - [anon_sym_co_yield] = ACTIONS(2359), - [anon_sym_co_await] = ACTIONS(2359), - [anon_sym_new] = ACTIONS(2359), - [anon_sym_requires] = ACTIONS(2359), - [sym_this] = ACTIONS(2359), - [sym_nullptr] = ACTIONS(2359), - [sym_raw_string_literal] = ACTIONS(2361), - }, - [892] = { - [sym_identifier] = ACTIONS(2495), - [aux_sym_preproc_include_token1] = ACTIONS(2495), - [aux_sym_preproc_def_token1] = ACTIONS(2495), - [aux_sym_preproc_if_token1] = ACTIONS(2495), - [aux_sym_preproc_if_token2] = ACTIONS(2495), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2495), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2495), - [sym_preproc_directive] = ACTIONS(2495), - [anon_sym_LPAREN2] = ACTIONS(2497), - [anon_sym_BANG] = ACTIONS(2497), - [anon_sym_TILDE] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2495), - [anon_sym_PLUS] = ACTIONS(2495), - [anon_sym_STAR] = ACTIONS(2497), - [anon_sym_AMP_AMP] = ACTIONS(2497), - [anon_sym_AMP] = ACTIONS(2495), - [anon_sym_SEMI] = ACTIONS(2497), - [anon_sym_typedef] = ACTIONS(2495), - [anon_sym_extern] = ACTIONS(2495), - [anon_sym___attribute__] = ACTIONS(2495), - [anon_sym_COLON_COLON] = ACTIONS(2497), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2497), - [anon_sym___declspec] = ACTIONS(2495), - [anon_sym___based] = ACTIONS(2495), - [anon_sym___cdecl] = ACTIONS(2495), - [anon_sym___clrcall] = ACTIONS(2495), - [anon_sym___stdcall] = ACTIONS(2495), - [anon_sym___fastcall] = ACTIONS(2495), - [anon_sym___thiscall] = ACTIONS(2495), - [anon_sym___vectorcall] = ACTIONS(2495), - [anon_sym_LBRACE] = ACTIONS(2497), - [anon_sym_LBRACK] = ACTIONS(2495), - [anon_sym_static] = ACTIONS(2495), - [anon_sym_register] = ACTIONS(2495), - [anon_sym_inline] = ACTIONS(2495), - [anon_sym_thread_local] = ACTIONS(2495), - [anon_sym_const] = ACTIONS(2495), - [anon_sym_volatile] = ACTIONS(2495), - [anon_sym_restrict] = ACTIONS(2495), - [anon_sym__Atomic] = ACTIONS(2495), - [anon_sym_mutable] = ACTIONS(2495), - [anon_sym_constexpr] = ACTIONS(2495), - [anon_sym_constinit] = ACTIONS(2495), - [anon_sym_consteval] = ACTIONS(2495), - [anon_sym_signed] = ACTIONS(2495), - [anon_sym_unsigned] = ACTIONS(2495), - [anon_sym_long] = ACTIONS(2495), - [anon_sym_short] = ACTIONS(2495), - [sym_primitive_type] = ACTIONS(2495), - [anon_sym_enum] = ACTIONS(2495), - [anon_sym_class] = ACTIONS(2495), - [anon_sym_struct] = ACTIONS(2495), - [anon_sym_union] = ACTIONS(2495), - [anon_sym_if] = ACTIONS(2495), - [anon_sym_else] = ACTIONS(2495), - [anon_sym_switch] = ACTIONS(2495), - [anon_sym_case] = ACTIONS(2495), - [anon_sym_default] = ACTIONS(2495), - [anon_sym_while] = ACTIONS(2495), - [anon_sym_do] = ACTIONS(2495), - [anon_sym_for] = ACTIONS(2495), - [anon_sym_return] = ACTIONS(2495), - [anon_sym_break] = ACTIONS(2495), - [anon_sym_continue] = ACTIONS(2495), - [anon_sym_goto] = ACTIONS(2495), - [anon_sym_DASH_DASH] = ACTIONS(2497), - [anon_sym_PLUS_PLUS] = ACTIONS(2497), - [anon_sym_sizeof] = ACTIONS(2495), - [sym_number_literal] = ACTIONS(2497), - [anon_sym_L_SQUOTE] = ACTIONS(2497), - [anon_sym_u_SQUOTE] = ACTIONS(2497), - [anon_sym_U_SQUOTE] = ACTIONS(2497), - [anon_sym_u8_SQUOTE] = ACTIONS(2497), - [anon_sym_SQUOTE] = ACTIONS(2497), - [anon_sym_L_DQUOTE] = ACTIONS(2497), - [anon_sym_u_DQUOTE] = ACTIONS(2497), - [anon_sym_U_DQUOTE] = ACTIONS(2497), - [anon_sym_u8_DQUOTE] = ACTIONS(2497), - [anon_sym_DQUOTE] = ACTIONS(2497), - [sym_true] = ACTIONS(2495), - [sym_false] = ACTIONS(2495), - [sym_null] = ACTIONS(2495), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2495), - [anon_sym_decltype] = ACTIONS(2495), - [anon_sym_virtual] = ACTIONS(2495), - [anon_sym_explicit] = ACTIONS(2495), - [anon_sym_typename] = ACTIONS(2495), - [anon_sym_template] = ACTIONS(2495), - [anon_sym_operator] = ACTIONS(2495), - [anon_sym_try] = ACTIONS(2495), - [anon_sym_delete] = ACTIONS(2495), - [anon_sym_throw] = ACTIONS(2495), - [anon_sym_namespace] = ACTIONS(2495), - [anon_sym_using] = ACTIONS(2495), - [anon_sym_static_assert] = ACTIONS(2495), - [anon_sym_concept] = ACTIONS(2495), - [anon_sym_co_return] = ACTIONS(2495), - [anon_sym_co_yield] = ACTIONS(2495), - [anon_sym_co_await] = ACTIONS(2495), - [anon_sym_new] = ACTIONS(2495), - [anon_sym_requires] = ACTIONS(2495), - [sym_this] = ACTIONS(2495), - [sym_nullptr] = ACTIONS(2495), - [sym_raw_string_literal] = ACTIONS(2497), - }, - [893] = { - [sym_identifier] = ACTIONS(2467), - [aux_sym_preproc_include_token1] = ACTIONS(2467), - [aux_sym_preproc_def_token1] = ACTIONS(2467), - [aux_sym_preproc_if_token1] = ACTIONS(2467), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2467), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2467), - [sym_preproc_directive] = ACTIONS(2467), - [anon_sym_LPAREN2] = ACTIONS(2469), - [anon_sym_BANG] = ACTIONS(2469), - [anon_sym_TILDE] = ACTIONS(2469), - [anon_sym_DASH] = ACTIONS(2467), - [anon_sym_PLUS] = ACTIONS(2467), - [anon_sym_STAR] = ACTIONS(2469), - [anon_sym_AMP_AMP] = ACTIONS(2469), - [anon_sym_AMP] = ACTIONS(2467), - [anon_sym_SEMI] = ACTIONS(2469), - [anon_sym_typedef] = ACTIONS(2467), - [anon_sym_extern] = ACTIONS(2467), - [anon_sym___attribute__] = ACTIONS(2467), - [anon_sym_COLON_COLON] = ACTIONS(2469), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2469), - [anon_sym___declspec] = ACTIONS(2467), - [anon_sym___based] = ACTIONS(2467), - [anon_sym___cdecl] = ACTIONS(2467), - [anon_sym___clrcall] = ACTIONS(2467), - [anon_sym___stdcall] = ACTIONS(2467), - [anon_sym___fastcall] = ACTIONS(2467), - [anon_sym___thiscall] = ACTIONS(2467), - [anon_sym___vectorcall] = ACTIONS(2467), - [anon_sym_LBRACE] = ACTIONS(2469), - [anon_sym_RBRACE] = ACTIONS(2469), - [anon_sym_LBRACK] = ACTIONS(2467), - [anon_sym_static] = ACTIONS(2467), - [anon_sym_register] = ACTIONS(2467), - [anon_sym_inline] = ACTIONS(2467), - [anon_sym_thread_local] = ACTIONS(2467), - [anon_sym_const] = ACTIONS(2467), - [anon_sym_volatile] = ACTIONS(2467), - [anon_sym_restrict] = ACTIONS(2467), - [anon_sym__Atomic] = ACTIONS(2467), - [anon_sym_mutable] = ACTIONS(2467), - [anon_sym_constexpr] = ACTIONS(2467), - [anon_sym_constinit] = ACTIONS(2467), - [anon_sym_consteval] = ACTIONS(2467), - [anon_sym_signed] = ACTIONS(2467), - [anon_sym_unsigned] = ACTIONS(2467), - [anon_sym_long] = ACTIONS(2467), - [anon_sym_short] = ACTIONS(2467), - [sym_primitive_type] = ACTIONS(2467), - [anon_sym_enum] = ACTIONS(2467), - [anon_sym_class] = ACTIONS(2467), - [anon_sym_struct] = ACTIONS(2467), - [anon_sym_union] = ACTIONS(2467), - [anon_sym_if] = ACTIONS(2467), - [anon_sym_else] = ACTIONS(2467), - [anon_sym_switch] = ACTIONS(2467), - [anon_sym_case] = ACTIONS(2467), - [anon_sym_default] = ACTIONS(2467), - [anon_sym_while] = ACTIONS(2467), - [anon_sym_do] = ACTIONS(2467), - [anon_sym_for] = ACTIONS(2467), - [anon_sym_return] = ACTIONS(2467), - [anon_sym_break] = ACTIONS(2467), - [anon_sym_continue] = ACTIONS(2467), - [anon_sym_goto] = ACTIONS(2467), - [anon_sym_DASH_DASH] = ACTIONS(2469), - [anon_sym_PLUS_PLUS] = ACTIONS(2469), - [anon_sym_sizeof] = ACTIONS(2467), - [sym_number_literal] = ACTIONS(2469), - [anon_sym_L_SQUOTE] = ACTIONS(2469), - [anon_sym_u_SQUOTE] = ACTIONS(2469), - [anon_sym_U_SQUOTE] = ACTIONS(2469), - [anon_sym_u8_SQUOTE] = ACTIONS(2469), - [anon_sym_SQUOTE] = ACTIONS(2469), - [anon_sym_L_DQUOTE] = ACTIONS(2469), - [anon_sym_u_DQUOTE] = ACTIONS(2469), - [anon_sym_U_DQUOTE] = ACTIONS(2469), - [anon_sym_u8_DQUOTE] = ACTIONS(2469), - [anon_sym_DQUOTE] = ACTIONS(2469), - [sym_true] = ACTIONS(2467), - [sym_false] = ACTIONS(2467), - [sym_null] = ACTIONS(2467), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2467), - [anon_sym_decltype] = ACTIONS(2467), - [anon_sym_virtual] = ACTIONS(2467), - [anon_sym_explicit] = ACTIONS(2467), - [anon_sym_typename] = ACTIONS(2467), - [anon_sym_template] = ACTIONS(2467), - [anon_sym_operator] = ACTIONS(2467), - [anon_sym_try] = ACTIONS(2467), - [anon_sym_delete] = ACTIONS(2467), - [anon_sym_throw] = ACTIONS(2467), - [anon_sym_namespace] = ACTIONS(2467), - [anon_sym_using] = ACTIONS(2467), - [anon_sym_static_assert] = ACTIONS(2467), - [anon_sym_concept] = ACTIONS(2467), - [anon_sym_co_return] = ACTIONS(2467), - [anon_sym_co_yield] = ACTIONS(2467), - [anon_sym_co_await] = ACTIONS(2467), - [anon_sym_new] = ACTIONS(2467), - [anon_sym_requires] = ACTIONS(2467), - [sym_this] = ACTIONS(2467), - [sym_nullptr] = ACTIONS(2467), - [sym_raw_string_literal] = ACTIONS(2469), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [894] = { - [sym_identifier] = ACTIONS(2433), - [aux_sym_preproc_include_token1] = ACTIONS(2433), - [aux_sym_preproc_def_token1] = ACTIONS(2433), - [aux_sym_preproc_if_token1] = ACTIONS(2433), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2433), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2433), - [sym_preproc_directive] = ACTIONS(2433), - [anon_sym_LPAREN2] = ACTIONS(2435), - [anon_sym_BANG] = ACTIONS(2435), - [anon_sym_TILDE] = ACTIONS(2435), - [anon_sym_DASH] = ACTIONS(2433), - [anon_sym_PLUS] = ACTIONS(2433), - [anon_sym_STAR] = ACTIONS(2435), - [anon_sym_AMP_AMP] = ACTIONS(2435), - [anon_sym_AMP] = ACTIONS(2433), - [anon_sym_SEMI] = ACTIONS(2435), - [anon_sym_typedef] = ACTIONS(2433), - [anon_sym_extern] = ACTIONS(2433), - [anon_sym___attribute__] = ACTIONS(2433), - [anon_sym_COLON_COLON] = ACTIONS(2435), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2435), - [anon_sym___declspec] = ACTIONS(2433), - [anon_sym___based] = ACTIONS(2433), - [anon_sym___cdecl] = ACTIONS(2433), - [anon_sym___clrcall] = ACTIONS(2433), - [anon_sym___stdcall] = ACTIONS(2433), - [anon_sym___fastcall] = ACTIONS(2433), - [anon_sym___thiscall] = ACTIONS(2433), - [anon_sym___vectorcall] = ACTIONS(2433), - [anon_sym_LBRACE] = ACTIONS(2435), - [anon_sym_RBRACE] = ACTIONS(2435), - [anon_sym_LBRACK] = ACTIONS(2433), - [anon_sym_static] = ACTIONS(2433), - [anon_sym_register] = ACTIONS(2433), - [anon_sym_inline] = ACTIONS(2433), - [anon_sym_thread_local] = ACTIONS(2433), - [anon_sym_const] = ACTIONS(2433), - [anon_sym_volatile] = ACTIONS(2433), - [anon_sym_restrict] = ACTIONS(2433), - [anon_sym__Atomic] = ACTIONS(2433), - [anon_sym_mutable] = ACTIONS(2433), - [anon_sym_constexpr] = ACTIONS(2433), - [anon_sym_constinit] = ACTIONS(2433), - [anon_sym_consteval] = ACTIONS(2433), - [anon_sym_signed] = ACTIONS(2433), - [anon_sym_unsigned] = ACTIONS(2433), - [anon_sym_long] = ACTIONS(2433), - [anon_sym_short] = ACTIONS(2433), - [sym_primitive_type] = ACTIONS(2433), - [anon_sym_enum] = ACTIONS(2433), - [anon_sym_class] = ACTIONS(2433), - [anon_sym_struct] = ACTIONS(2433), - [anon_sym_union] = ACTIONS(2433), - [anon_sym_if] = ACTIONS(2433), - [anon_sym_else] = ACTIONS(2433), - [anon_sym_switch] = ACTIONS(2433), - [anon_sym_case] = ACTIONS(2433), - [anon_sym_default] = ACTIONS(2433), - [anon_sym_while] = ACTIONS(2433), - [anon_sym_do] = ACTIONS(2433), - [anon_sym_for] = ACTIONS(2433), - [anon_sym_return] = ACTIONS(2433), - [anon_sym_break] = ACTIONS(2433), - [anon_sym_continue] = ACTIONS(2433), - [anon_sym_goto] = ACTIONS(2433), - [anon_sym_DASH_DASH] = ACTIONS(2435), - [anon_sym_PLUS_PLUS] = ACTIONS(2435), - [anon_sym_sizeof] = ACTIONS(2433), - [sym_number_literal] = ACTIONS(2435), - [anon_sym_L_SQUOTE] = ACTIONS(2435), - [anon_sym_u_SQUOTE] = ACTIONS(2435), - [anon_sym_U_SQUOTE] = ACTIONS(2435), - [anon_sym_u8_SQUOTE] = ACTIONS(2435), - [anon_sym_SQUOTE] = ACTIONS(2435), - [anon_sym_L_DQUOTE] = ACTIONS(2435), - [anon_sym_u_DQUOTE] = ACTIONS(2435), - [anon_sym_U_DQUOTE] = ACTIONS(2435), - [anon_sym_u8_DQUOTE] = ACTIONS(2435), - [anon_sym_DQUOTE] = ACTIONS(2435), - [sym_true] = ACTIONS(2433), - [sym_false] = ACTIONS(2433), - [sym_null] = ACTIONS(2433), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2433), - [anon_sym_decltype] = ACTIONS(2433), - [anon_sym_virtual] = ACTIONS(2433), - [anon_sym_explicit] = ACTIONS(2433), - [anon_sym_typename] = ACTIONS(2433), - [anon_sym_template] = ACTIONS(2433), - [anon_sym_operator] = ACTIONS(2433), - [anon_sym_try] = ACTIONS(2433), - [anon_sym_delete] = ACTIONS(2433), - [anon_sym_throw] = ACTIONS(2433), - [anon_sym_namespace] = ACTIONS(2433), - [anon_sym_using] = ACTIONS(2433), - [anon_sym_static_assert] = ACTIONS(2433), - [anon_sym_concept] = ACTIONS(2433), - [anon_sym_co_return] = ACTIONS(2433), - [anon_sym_co_yield] = ACTIONS(2433), - [anon_sym_co_await] = ACTIONS(2433), - [anon_sym_new] = ACTIONS(2433), - [anon_sym_requires] = ACTIONS(2433), - [sym_this] = ACTIONS(2433), - [sym_nullptr] = ACTIONS(2433), - [sym_raw_string_literal] = ACTIONS(2435), + [552] = { + [ts_builtin_sym_end] = ACTIONS(2561), + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [895] = { - [sym_identifier] = ACTIONS(2397), - [aux_sym_preproc_include_token1] = ACTIONS(2397), - [aux_sym_preproc_def_token1] = ACTIONS(2397), - [aux_sym_preproc_if_token1] = ACTIONS(2397), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2397), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2397), - [sym_preproc_directive] = ACTIONS(2397), - [anon_sym_LPAREN2] = ACTIONS(2399), - [anon_sym_BANG] = ACTIONS(2399), - [anon_sym_TILDE] = ACTIONS(2399), - [anon_sym_DASH] = ACTIONS(2397), - [anon_sym_PLUS] = ACTIONS(2397), - [anon_sym_STAR] = ACTIONS(2399), - [anon_sym_AMP_AMP] = ACTIONS(2399), - [anon_sym_AMP] = ACTIONS(2397), - [anon_sym_SEMI] = ACTIONS(2399), - [anon_sym_typedef] = ACTIONS(2397), - [anon_sym_extern] = ACTIONS(2397), - [anon_sym___attribute__] = ACTIONS(2397), - [anon_sym_COLON_COLON] = ACTIONS(2399), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2399), - [anon_sym___declspec] = ACTIONS(2397), - [anon_sym___based] = ACTIONS(2397), - [anon_sym___cdecl] = ACTIONS(2397), - [anon_sym___clrcall] = ACTIONS(2397), - [anon_sym___stdcall] = ACTIONS(2397), - [anon_sym___fastcall] = ACTIONS(2397), - [anon_sym___thiscall] = ACTIONS(2397), - [anon_sym___vectorcall] = ACTIONS(2397), - [anon_sym_LBRACE] = ACTIONS(2399), - [anon_sym_RBRACE] = ACTIONS(2399), - [anon_sym_LBRACK] = ACTIONS(2397), - [anon_sym_static] = ACTIONS(2397), - [anon_sym_register] = ACTIONS(2397), - [anon_sym_inline] = ACTIONS(2397), - [anon_sym_thread_local] = ACTIONS(2397), - [anon_sym_const] = ACTIONS(2397), - [anon_sym_volatile] = ACTIONS(2397), - [anon_sym_restrict] = ACTIONS(2397), - [anon_sym__Atomic] = ACTIONS(2397), - [anon_sym_mutable] = ACTIONS(2397), - [anon_sym_constexpr] = ACTIONS(2397), - [anon_sym_constinit] = ACTIONS(2397), - [anon_sym_consteval] = ACTIONS(2397), - [anon_sym_signed] = ACTIONS(2397), - [anon_sym_unsigned] = ACTIONS(2397), - [anon_sym_long] = ACTIONS(2397), - [anon_sym_short] = ACTIONS(2397), - [sym_primitive_type] = ACTIONS(2397), - [anon_sym_enum] = ACTIONS(2397), - [anon_sym_class] = ACTIONS(2397), - [anon_sym_struct] = ACTIONS(2397), - [anon_sym_union] = ACTIONS(2397), - [anon_sym_if] = ACTIONS(2397), - [anon_sym_else] = ACTIONS(2397), - [anon_sym_switch] = ACTIONS(2397), - [anon_sym_case] = ACTIONS(2397), - [anon_sym_default] = ACTIONS(2397), - [anon_sym_while] = ACTIONS(2397), - [anon_sym_do] = ACTIONS(2397), - [anon_sym_for] = ACTIONS(2397), - [anon_sym_return] = ACTIONS(2397), - [anon_sym_break] = ACTIONS(2397), - [anon_sym_continue] = ACTIONS(2397), - [anon_sym_goto] = ACTIONS(2397), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_sizeof] = ACTIONS(2397), - [sym_number_literal] = ACTIONS(2399), - [anon_sym_L_SQUOTE] = ACTIONS(2399), - [anon_sym_u_SQUOTE] = ACTIONS(2399), - [anon_sym_U_SQUOTE] = ACTIONS(2399), - [anon_sym_u8_SQUOTE] = ACTIONS(2399), - [anon_sym_SQUOTE] = ACTIONS(2399), - [anon_sym_L_DQUOTE] = ACTIONS(2399), - [anon_sym_u_DQUOTE] = ACTIONS(2399), - [anon_sym_U_DQUOTE] = ACTIONS(2399), - [anon_sym_u8_DQUOTE] = ACTIONS(2399), - [anon_sym_DQUOTE] = ACTIONS(2399), - [sym_true] = ACTIONS(2397), - [sym_false] = ACTIONS(2397), - [sym_null] = ACTIONS(2397), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2397), - [anon_sym_decltype] = ACTIONS(2397), - [anon_sym_virtual] = ACTIONS(2397), - [anon_sym_explicit] = ACTIONS(2397), - [anon_sym_typename] = ACTIONS(2397), - [anon_sym_template] = ACTIONS(2397), - [anon_sym_operator] = ACTIONS(2397), - [anon_sym_try] = ACTIONS(2397), - [anon_sym_delete] = ACTIONS(2397), - [anon_sym_throw] = ACTIONS(2397), - [anon_sym_namespace] = ACTIONS(2397), - [anon_sym_using] = ACTIONS(2397), - [anon_sym_static_assert] = ACTIONS(2397), - [anon_sym_concept] = ACTIONS(2397), - [anon_sym_co_return] = ACTIONS(2397), - [anon_sym_co_yield] = ACTIONS(2397), - [anon_sym_co_await] = ACTIONS(2397), - [anon_sym_new] = ACTIONS(2397), - [anon_sym_requires] = ACTIONS(2397), - [sym_this] = ACTIONS(2397), - [sym_nullptr] = ACTIONS(2397), - [sym_raw_string_literal] = ACTIONS(2399), + [553] = { + [ts_builtin_sym_end] = ACTIONS(2597), + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [896] = { - [sym_identifier] = ACTIONS(2471), - [aux_sym_preproc_include_token1] = ACTIONS(2471), - [aux_sym_preproc_def_token1] = ACTIONS(2471), - [aux_sym_preproc_if_token1] = ACTIONS(2471), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2471), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2471), - [sym_preproc_directive] = ACTIONS(2471), - [anon_sym_LPAREN2] = ACTIONS(2473), - [anon_sym_BANG] = ACTIONS(2473), - [anon_sym_TILDE] = ACTIONS(2473), - [anon_sym_DASH] = ACTIONS(2471), - [anon_sym_PLUS] = ACTIONS(2471), - [anon_sym_STAR] = ACTIONS(2473), - [anon_sym_AMP_AMP] = ACTIONS(2473), - [anon_sym_AMP] = ACTIONS(2471), - [anon_sym_SEMI] = ACTIONS(2473), - [anon_sym_typedef] = ACTIONS(2471), - [anon_sym_extern] = ACTIONS(2471), - [anon_sym___attribute__] = ACTIONS(2471), - [anon_sym_COLON_COLON] = ACTIONS(2473), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2473), - [anon_sym___declspec] = ACTIONS(2471), - [anon_sym___based] = ACTIONS(2471), - [anon_sym___cdecl] = ACTIONS(2471), - [anon_sym___clrcall] = ACTIONS(2471), - [anon_sym___stdcall] = ACTIONS(2471), - [anon_sym___fastcall] = ACTIONS(2471), - [anon_sym___thiscall] = ACTIONS(2471), - [anon_sym___vectorcall] = ACTIONS(2471), - [anon_sym_LBRACE] = ACTIONS(2473), - [anon_sym_RBRACE] = ACTIONS(2473), - [anon_sym_LBRACK] = ACTIONS(2471), - [anon_sym_static] = ACTIONS(2471), - [anon_sym_register] = ACTIONS(2471), - [anon_sym_inline] = ACTIONS(2471), - [anon_sym_thread_local] = ACTIONS(2471), - [anon_sym_const] = ACTIONS(2471), - [anon_sym_volatile] = ACTIONS(2471), - [anon_sym_restrict] = ACTIONS(2471), - [anon_sym__Atomic] = ACTIONS(2471), - [anon_sym_mutable] = ACTIONS(2471), - [anon_sym_constexpr] = ACTIONS(2471), - [anon_sym_constinit] = ACTIONS(2471), - [anon_sym_consteval] = ACTIONS(2471), - [anon_sym_signed] = ACTIONS(2471), - [anon_sym_unsigned] = ACTIONS(2471), - [anon_sym_long] = ACTIONS(2471), - [anon_sym_short] = ACTIONS(2471), - [sym_primitive_type] = ACTIONS(2471), - [anon_sym_enum] = ACTIONS(2471), - [anon_sym_class] = ACTIONS(2471), - [anon_sym_struct] = ACTIONS(2471), - [anon_sym_union] = ACTIONS(2471), - [anon_sym_if] = ACTIONS(2471), - [anon_sym_else] = ACTIONS(2471), - [anon_sym_switch] = ACTIONS(2471), - [anon_sym_case] = ACTIONS(2471), - [anon_sym_default] = ACTIONS(2471), - [anon_sym_while] = ACTIONS(2471), - [anon_sym_do] = ACTIONS(2471), - [anon_sym_for] = ACTIONS(2471), - [anon_sym_return] = ACTIONS(2471), - [anon_sym_break] = ACTIONS(2471), - [anon_sym_continue] = ACTIONS(2471), - [anon_sym_goto] = ACTIONS(2471), - [anon_sym_DASH_DASH] = ACTIONS(2473), - [anon_sym_PLUS_PLUS] = ACTIONS(2473), - [anon_sym_sizeof] = ACTIONS(2471), - [sym_number_literal] = ACTIONS(2473), - [anon_sym_L_SQUOTE] = ACTIONS(2473), - [anon_sym_u_SQUOTE] = ACTIONS(2473), - [anon_sym_U_SQUOTE] = ACTIONS(2473), - [anon_sym_u8_SQUOTE] = ACTIONS(2473), - [anon_sym_SQUOTE] = ACTIONS(2473), - [anon_sym_L_DQUOTE] = ACTIONS(2473), - [anon_sym_u_DQUOTE] = ACTIONS(2473), - [anon_sym_U_DQUOTE] = ACTIONS(2473), - [anon_sym_u8_DQUOTE] = ACTIONS(2473), - [anon_sym_DQUOTE] = ACTIONS(2473), - [sym_true] = ACTIONS(2471), - [sym_false] = ACTIONS(2471), - [sym_null] = ACTIONS(2471), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2471), - [anon_sym_decltype] = ACTIONS(2471), - [anon_sym_virtual] = ACTIONS(2471), - [anon_sym_explicit] = ACTIONS(2471), - [anon_sym_typename] = ACTIONS(2471), - [anon_sym_template] = ACTIONS(2471), - [anon_sym_operator] = ACTIONS(2471), - [anon_sym_try] = ACTIONS(2471), - [anon_sym_delete] = ACTIONS(2471), - [anon_sym_throw] = ACTIONS(2471), - [anon_sym_namespace] = ACTIONS(2471), - [anon_sym_using] = ACTIONS(2471), - [anon_sym_static_assert] = ACTIONS(2471), - [anon_sym_concept] = ACTIONS(2471), - [anon_sym_co_return] = ACTIONS(2471), - [anon_sym_co_yield] = ACTIONS(2471), - [anon_sym_co_await] = ACTIONS(2471), - [anon_sym_new] = ACTIONS(2471), - [anon_sym_requires] = ACTIONS(2471), - [sym_this] = ACTIONS(2471), - [sym_nullptr] = ACTIONS(2471), - [sym_raw_string_literal] = ACTIONS(2473), + [554] = { + [ts_builtin_sym_end] = ACTIONS(2561), + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [897] = { - [ts_builtin_sym_end] = ACTIONS(2357), - [sym_identifier] = ACTIONS(2355), - [aux_sym_preproc_include_token1] = ACTIONS(2355), - [aux_sym_preproc_def_token1] = ACTIONS(2355), - [aux_sym_preproc_if_token1] = ACTIONS(2355), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2355), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2355), - [sym_preproc_directive] = ACTIONS(2355), - [anon_sym_LPAREN2] = ACTIONS(2357), - [anon_sym_BANG] = ACTIONS(2357), - [anon_sym_TILDE] = ACTIONS(2357), - [anon_sym_DASH] = ACTIONS(2355), - [anon_sym_PLUS] = ACTIONS(2355), - [anon_sym_STAR] = ACTIONS(2357), - [anon_sym_AMP_AMP] = ACTIONS(2357), - [anon_sym_AMP] = ACTIONS(2355), - [anon_sym_SEMI] = ACTIONS(2357), - [anon_sym_typedef] = ACTIONS(2355), - [anon_sym_extern] = ACTIONS(2355), - [anon_sym___attribute__] = ACTIONS(2355), - [anon_sym_COLON_COLON] = ACTIONS(2357), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2357), - [anon_sym___declspec] = ACTIONS(2355), - [anon_sym___based] = ACTIONS(2355), - [anon_sym___cdecl] = ACTIONS(2355), - [anon_sym___clrcall] = ACTIONS(2355), - [anon_sym___stdcall] = ACTIONS(2355), - [anon_sym___fastcall] = ACTIONS(2355), - [anon_sym___thiscall] = ACTIONS(2355), - [anon_sym___vectorcall] = ACTIONS(2355), - [anon_sym_LBRACE] = ACTIONS(2357), - [anon_sym_LBRACK] = ACTIONS(2355), - [anon_sym_static] = ACTIONS(2355), - [anon_sym_register] = ACTIONS(2355), - [anon_sym_inline] = ACTIONS(2355), - [anon_sym_thread_local] = ACTIONS(2355), - [anon_sym_const] = ACTIONS(2355), - [anon_sym_volatile] = ACTIONS(2355), - [anon_sym_restrict] = ACTIONS(2355), - [anon_sym__Atomic] = ACTIONS(2355), - [anon_sym_mutable] = ACTIONS(2355), - [anon_sym_constexpr] = ACTIONS(2355), - [anon_sym_constinit] = ACTIONS(2355), - [anon_sym_consteval] = ACTIONS(2355), - [anon_sym_signed] = ACTIONS(2355), - [anon_sym_unsigned] = ACTIONS(2355), - [anon_sym_long] = ACTIONS(2355), - [anon_sym_short] = ACTIONS(2355), - [sym_primitive_type] = ACTIONS(2355), - [anon_sym_enum] = ACTIONS(2355), - [anon_sym_class] = ACTIONS(2355), - [anon_sym_struct] = ACTIONS(2355), - [anon_sym_union] = ACTIONS(2355), - [anon_sym_if] = ACTIONS(2355), - [anon_sym_else] = ACTIONS(2355), - [anon_sym_switch] = ACTIONS(2355), - [anon_sym_case] = ACTIONS(2355), - [anon_sym_default] = ACTIONS(2355), - [anon_sym_while] = ACTIONS(2355), - [anon_sym_do] = ACTIONS(2355), - [anon_sym_for] = ACTIONS(2355), - [anon_sym_return] = ACTIONS(2355), - [anon_sym_break] = ACTIONS(2355), - [anon_sym_continue] = ACTIONS(2355), - [anon_sym_goto] = ACTIONS(2355), - [anon_sym_DASH_DASH] = ACTIONS(2357), - [anon_sym_PLUS_PLUS] = ACTIONS(2357), - [anon_sym_sizeof] = ACTIONS(2355), - [sym_number_literal] = ACTIONS(2357), - [anon_sym_L_SQUOTE] = ACTIONS(2357), - [anon_sym_u_SQUOTE] = ACTIONS(2357), - [anon_sym_U_SQUOTE] = ACTIONS(2357), - [anon_sym_u8_SQUOTE] = ACTIONS(2357), - [anon_sym_SQUOTE] = ACTIONS(2357), - [anon_sym_L_DQUOTE] = ACTIONS(2357), - [anon_sym_u_DQUOTE] = ACTIONS(2357), - [anon_sym_U_DQUOTE] = ACTIONS(2357), - [anon_sym_u8_DQUOTE] = ACTIONS(2357), - [anon_sym_DQUOTE] = ACTIONS(2357), - [sym_true] = ACTIONS(2355), - [sym_false] = ACTIONS(2355), - [sym_null] = ACTIONS(2355), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2355), - [anon_sym_decltype] = ACTIONS(2355), - [anon_sym_virtual] = ACTIONS(2355), - [anon_sym_explicit] = ACTIONS(2355), - [anon_sym_typename] = ACTIONS(2355), - [anon_sym_template] = ACTIONS(2355), - [anon_sym_operator] = ACTIONS(2355), - [anon_sym_try] = ACTIONS(2355), - [anon_sym_delete] = ACTIONS(2355), - [anon_sym_throw] = ACTIONS(2355), - [anon_sym_namespace] = ACTIONS(2355), - [anon_sym_using] = ACTIONS(2355), - [anon_sym_static_assert] = ACTIONS(2355), - [anon_sym_concept] = ACTIONS(2355), - [anon_sym_co_return] = ACTIONS(2355), - [anon_sym_co_yield] = ACTIONS(2355), - [anon_sym_co_await] = ACTIONS(2355), - [anon_sym_new] = ACTIONS(2355), - [anon_sym_requires] = ACTIONS(2355), - [sym_this] = ACTIONS(2355), - [sym_nullptr] = ACTIONS(2355), - [sym_raw_string_literal] = ACTIONS(2357), + [555] = { + [ts_builtin_sym_end] = ACTIONS(2597), + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [898] = { - [ts_builtin_sym_end] = ACTIONS(2585), - [sym_identifier] = ACTIONS(2583), - [aux_sym_preproc_include_token1] = ACTIONS(2583), - [aux_sym_preproc_def_token1] = ACTIONS(2583), - [aux_sym_preproc_if_token1] = ACTIONS(2583), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2583), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2583), - [sym_preproc_directive] = ACTIONS(2583), - [anon_sym_LPAREN2] = ACTIONS(2585), - [anon_sym_BANG] = ACTIONS(2585), - [anon_sym_TILDE] = ACTIONS(2585), - [anon_sym_DASH] = ACTIONS(2583), - [anon_sym_PLUS] = ACTIONS(2583), - [anon_sym_STAR] = ACTIONS(2585), - [anon_sym_AMP_AMP] = ACTIONS(2585), - [anon_sym_AMP] = ACTIONS(2583), - [anon_sym_SEMI] = ACTIONS(2585), - [anon_sym_typedef] = ACTIONS(2583), - [anon_sym_extern] = ACTIONS(2583), - [anon_sym___attribute__] = ACTIONS(2583), - [anon_sym_COLON_COLON] = ACTIONS(2585), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2585), - [anon_sym___declspec] = ACTIONS(2583), - [anon_sym___based] = ACTIONS(2583), - [anon_sym___cdecl] = ACTIONS(2583), - [anon_sym___clrcall] = ACTIONS(2583), - [anon_sym___stdcall] = ACTIONS(2583), - [anon_sym___fastcall] = ACTIONS(2583), - [anon_sym___thiscall] = ACTIONS(2583), - [anon_sym___vectorcall] = ACTIONS(2583), - [anon_sym_LBRACE] = ACTIONS(2585), - [anon_sym_LBRACK] = ACTIONS(2583), - [anon_sym_static] = ACTIONS(2583), - [anon_sym_register] = ACTIONS(2583), - [anon_sym_inline] = ACTIONS(2583), - [anon_sym_thread_local] = ACTIONS(2583), - [anon_sym_const] = ACTIONS(2583), - [anon_sym_volatile] = ACTIONS(2583), - [anon_sym_restrict] = ACTIONS(2583), - [anon_sym__Atomic] = ACTIONS(2583), - [anon_sym_mutable] = ACTIONS(2583), - [anon_sym_constexpr] = ACTIONS(2583), - [anon_sym_constinit] = ACTIONS(2583), - [anon_sym_consteval] = ACTIONS(2583), - [anon_sym_signed] = ACTIONS(2583), - [anon_sym_unsigned] = ACTIONS(2583), - [anon_sym_long] = ACTIONS(2583), - [anon_sym_short] = ACTIONS(2583), - [sym_primitive_type] = ACTIONS(2583), - [anon_sym_enum] = ACTIONS(2583), - [anon_sym_class] = ACTIONS(2583), - [anon_sym_struct] = ACTIONS(2583), - [anon_sym_union] = ACTIONS(2583), - [anon_sym_if] = ACTIONS(2583), - [anon_sym_switch] = ACTIONS(2583), - [anon_sym_case] = ACTIONS(2583), - [anon_sym_default] = ACTIONS(2583), - [anon_sym_while] = ACTIONS(2583), - [anon_sym_do] = ACTIONS(2583), - [anon_sym_for] = ACTIONS(2583), - [anon_sym_return] = ACTIONS(2583), - [anon_sym_break] = ACTIONS(2583), - [anon_sym_continue] = ACTIONS(2583), - [anon_sym_goto] = ACTIONS(2583), - [anon_sym_DASH_DASH] = ACTIONS(2585), - [anon_sym_PLUS_PLUS] = ACTIONS(2585), - [anon_sym_sizeof] = ACTIONS(2583), - [sym_number_literal] = ACTIONS(2585), - [anon_sym_L_SQUOTE] = ACTIONS(2585), - [anon_sym_u_SQUOTE] = ACTIONS(2585), - [anon_sym_U_SQUOTE] = ACTIONS(2585), - [anon_sym_u8_SQUOTE] = ACTIONS(2585), - [anon_sym_SQUOTE] = ACTIONS(2585), - [anon_sym_L_DQUOTE] = ACTIONS(2585), - [anon_sym_u_DQUOTE] = ACTIONS(2585), - [anon_sym_U_DQUOTE] = ACTIONS(2585), - [anon_sym_u8_DQUOTE] = ACTIONS(2585), - [anon_sym_DQUOTE] = ACTIONS(2585), - [sym_true] = ACTIONS(2583), - [sym_false] = ACTIONS(2583), - [sym_null] = ACTIONS(2583), + [556] = { + [ts_builtin_sym_end] = ACTIONS(2597), + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2583), - [anon_sym_decltype] = ACTIONS(2583), - [anon_sym_virtual] = ACTIONS(2583), - [anon_sym_explicit] = ACTIONS(2583), - [anon_sym_typename] = ACTIONS(2583), - [anon_sym_template] = ACTIONS(2583), - [anon_sym_operator] = ACTIONS(2583), - [anon_sym_try] = ACTIONS(2583), - [anon_sym_delete] = ACTIONS(2583), - [anon_sym_throw] = ACTIONS(2583), - [anon_sym_namespace] = ACTIONS(2583), - [anon_sym_using] = ACTIONS(2583), - [anon_sym_static_assert] = ACTIONS(2583), - [anon_sym_concept] = ACTIONS(2583), - [anon_sym_co_return] = ACTIONS(2583), - [anon_sym_co_yield] = ACTIONS(2583), - [anon_sym_co_await] = ACTIONS(2583), - [anon_sym_new] = ACTIONS(2583), - [anon_sym_requires] = ACTIONS(2583), - [sym_this] = ACTIONS(2583), - [sym_nullptr] = ACTIONS(2583), - [sym_raw_string_literal] = ACTIONS(2585), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [899] = { - [ts_builtin_sym_end] = ACTIONS(2693), - [sym_identifier] = ACTIONS(2691), - [aux_sym_preproc_include_token1] = ACTIONS(2691), - [aux_sym_preproc_def_token1] = ACTIONS(2691), - [aux_sym_preproc_if_token1] = ACTIONS(2691), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2691), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2691), - [sym_preproc_directive] = ACTIONS(2691), - [anon_sym_LPAREN2] = ACTIONS(2693), - [anon_sym_BANG] = ACTIONS(2693), - [anon_sym_TILDE] = ACTIONS(2693), - [anon_sym_DASH] = ACTIONS(2691), - [anon_sym_PLUS] = ACTIONS(2691), - [anon_sym_STAR] = ACTIONS(2693), - [anon_sym_AMP_AMP] = ACTIONS(2693), - [anon_sym_AMP] = ACTIONS(2691), - [anon_sym_SEMI] = ACTIONS(2693), - [anon_sym_typedef] = ACTIONS(2691), - [anon_sym_extern] = ACTIONS(2691), - [anon_sym___attribute__] = ACTIONS(2691), - [anon_sym_COLON_COLON] = ACTIONS(2693), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2693), - [anon_sym___declspec] = ACTIONS(2691), - [anon_sym___based] = ACTIONS(2691), - [anon_sym___cdecl] = ACTIONS(2691), - [anon_sym___clrcall] = ACTIONS(2691), - [anon_sym___stdcall] = ACTIONS(2691), - [anon_sym___fastcall] = ACTIONS(2691), - [anon_sym___thiscall] = ACTIONS(2691), - [anon_sym___vectorcall] = ACTIONS(2691), - [anon_sym_LBRACE] = ACTIONS(2693), - [anon_sym_LBRACK] = ACTIONS(2691), - [anon_sym_static] = ACTIONS(2691), - [anon_sym_register] = ACTIONS(2691), - [anon_sym_inline] = ACTIONS(2691), - [anon_sym_thread_local] = ACTIONS(2691), - [anon_sym_const] = ACTIONS(2691), - [anon_sym_volatile] = ACTIONS(2691), - [anon_sym_restrict] = ACTIONS(2691), - [anon_sym__Atomic] = ACTIONS(2691), - [anon_sym_mutable] = ACTIONS(2691), - [anon_sym_constexpr] = ACTIONS(2691), - [anon_sym_constinit] = ACTIONS(2691), - [anon_sym_consteval] = ACTIONS(2691), - [anon_sym_signed] = ACTIONS(2691), - [anon_sym_unsigned] = ACTIONS(2691), - [anon_sym_long] = ACTIONS(2691), - [anon_sym_short] = ACTIONS(2691), - [sym_primitive_type] = ACTIONS(2691), - [anon_sym_enum] = ACTIONS(2691), - [anon_sym_class] = ACTIONS(2691), - [anon_sym_struct] = ACTIONS(2691), - [anon_sym_union] = ACTIONS(2691), - [anon_sym_if] = ACTIONS(2691), - [anon_sym_switch] = ACTIONS(2691), - [anon_sym_case] = ACTIONS(2691), - [anon_sym_default] = ACTIONS(2691), - [anon_sym_while] = ACTIONS(2691), - [anon_sym_do] = ACTIONS(2691), - [anon_sym_for] = ACTIONS(2691), - [anon_sym_return] = ACTIONS(2691), - [anon_sym_break] = ACTIONS(2691), - [anon_sym_continue] = ACTIONS(2691), - [anon_sym_goto] = ACTIONS(2691), - [anon_sym_DASH_DASH] = ACTIONS(2693), - [anon_sym_PLUS_PLUS] = ACTIONS(2693), - [anon_sym_sizeof] = ACTIONS(2691), - [sym_number_literal] = ACTIONS(2693), - [anon_sym_L_SQUOTE] = ACTIONS(2693), - [anon_sym_u_SQUOTE] = ACTIONS(2693), - [anon_sym_U_SQUOTE] = ACTIONS(2693), - [anon_sym_u8_SQUOTE] = ACTIONS(2693), - [anon_sym_SQUOTE] = ACTIONS(2693), - [anon_sym_L_DQUOTE] = ACTIONS(2693), - [anon_sym_u_DQUOTE] = ACTIONS(2693), - [anon_sym_U_DQUOTE] = ACTIONS(2693), - [anon_sym_u8_DQUOTE] = ACTIONS(2693), - [anon_sym_DQUOTE] = ACTIONS(2693), - [sym_true] = ACTIONS(2691), - [sym_false] = ACTIONS(2691), - [sym_null] = ACTIONS(2691), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2691), - [anon_sym_decltype] = ACTIONS(2691), - [anon_sym_virtual] = ACTIONS(2691), - [anon_sym_explicit] = ACTIONS(2691), - [anon_sym_typename] = ACTIONS(2691), - [anon_sym_template] = ACTIONS(2691), - [anon_sym_operator] = ACTIONS(2691), - [anon_sym_try] = ACTIONS(2691), - [anon_sym_delete] = ACTIONS(2691), - [anon_sym_throw] = ACTIONS(2691), - [anon_sym_namespace] = ACTIONS(2691), - [anon_sym_using] = ACTIONS(2691), - [anon_sym_static_assert] = ACTIONS(2691), - [anon_sym_concept] = ACTIONS(2691), - [anon_sym_co_return] = ACTIONS(2691), - [anon_sym_co_yield] = ACTIONS(2691), - [anon_sym_co_await] = ACTIONS(2691), - [anon_sym_new] = ACTIONS(2691), - [anon_sym_requires] = ACTIONS(2691), - [sym_this] = ACTIONS(2691), - [sym_nullptr] = ACTIONS(2691), - [sym_raw_string_literal] = ACTIONS(2693), + [557] = { + [sym_identifier] = ACTIONS(2635), + [aux_sym_preproc_include_token1] = ACTIONS(2635), + [aux_sym_preproc_def_token1] = ACTIONS(2635), + [aux_sym_preproc_if_token1] = ACTIONS(2635), + [aux_sym_preproc_if_token2] = ACTIONS(2635), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2635), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2635), + [sym_preproc_directive] = ACTIONS(2635), + [anon_sym_LPAREN2] = ACTIONS(2637), + [anon_sym_BANG] = ACTIONS(2637), + [anon_sym_TILDE] = ACTIONS(2637), + [anon_sym_DASH] = ACTIONS(2635), + [anon_sym_PLUS] = ACTIONS(2635), + [anon_sym_STAR] = ACTIONS(2637), + [anon_sym_AMP_AMP] = ACTIONS(2637), + [anon_sym_AMP] = ACTIONS(2635), + [anon_sym_SEMI] = ACTIONS(2637), + [anon_sym_typedef] = ACTIONS(2635), + [anon_sym_extern] = ACTIONS(2635), + [anon_sym___attribute__] = ACTIONS(2635), + [anon_sym_COLON_COLON] = ACTIONS(2637), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2637), + [anon_sym___declspec] = ACTIONS(2635), + [anon_sym___based] = ACTIONS(2635), + [anon_sym___cdecl] = ACTIONS(2635), + [anon_sym___clrcall] = ACTIONS(2635), + [anon_sym___stdcall] = ACTIONS(2635), + [anon_sym___fastcall] = ACTIONS(2635), + [anon_sym___thiscall] = ACTIONS(2635), + [anon_sym___vectorcall] = ACTIONS(2635), + [anon_sym_LBRACE] = ACTIONS(2637), + [anon_sym_LBRACK] = ACTIONS(2635), + [anon_sym_static] = ACTIONS(2635), + [anon_sym_register] = ACTIONS(2635), + [anon_sym_inline] = ACTIONS(2635), + [anon_sym_thread_local] = ACTIONS(2635), + [anon_sym_const] = ACTIONS(2635), + [anon_sym_volatile] = ACTIONS(2635), + [anon_sym_restrict] = ACTIONS(2635), + [anon_sym__Atomic] = ACTIONS(2635), + [anon_sym_mutable] = ACTIONS(2635), + [anon_sym_constexpr] = ACTIONS(2635), + [anon_sym_constinit] = ACTIONS(2635), + [anon_sym_consteval] = ACTIONS(2635), + [anon_sym_signed] = ACTIONS(2635), + [anon_sym_unsigned] = ACTIONS(2635), + [anon_sym_long] = ACTIONS(2635), + [anon_sym_short] = ACTIONS(2635), + [sym_primitive_type] = ACTIONS(2635), + [anon_sym_enum] = ACTIONS(2635), + [anon_sym_class] = ACTIONS(2635), + [anon_sym_struct] = ACTIONS(2635), + [anon_sym_union] = ACTIONS(2635), + [anon_sym_if] = ACTIONS(2635), + [anon_sym_else] = ACTIONS(2635), + [anon_sym_switch] = ACTIONS(2635), + [anon_sym_case] = ACTIONS(2635), + [anon_sym_default] = ACTIONS(2635), + [anon_sym_while] = ACTIONS(2635), + [anon_sym_do] = ACTIONS(2635), + [anon_sym_for] = ACTIONS(2635), + [anon_sym_return] = ACTIONS(2635), + [anon_sym_break] = ACTIONS(2635), + [anon_sym_continue] = ACTIONS(2635), + [anon_sym_goto] = ACTIONS(2635), + [anon_sym_not] = ACTIONS(2635), + [anon_sym_compl] = ACTIONS(2635), + [anon_sym_DASH_DASH] = ACTIONS(2637), + [anon_sym_PLUS_PLUS] = ACTIONS(2637), + [anon_sym_sizeof] = ACTIONS(2635), + [sym_number_literal] = ACTIONS(2637), + [anon_sym_L_SQUOTE] = ACTIONS(2637), + [anon_sym_u_SQUOTE] = ACTIONS(2637), + [anon_sym_U_SQUOTE] = ACTIONS(2637), + [anon_sym_u8_SQUOTE] = ACTIONS(2637), + [anon_sym_SQUOTE] = ACTIONS(2637), + [anon_sym_L_DQUOTE] = ACTIONS(2637), + [anon_sym_u_DQUOTE] = ACTIONS(2637), + [anon_sym_U_DQUOTE] = ACTIONS(2637), + [anon_sym_u8_DQUOTE] = ACTIONS(2637), + [anon_sym_DQUOTE] = ACTIONS(2637), + [sym_true] = ACTIONS(2635), + [sym_false] = ACTIONS(2635), + [sym_null] = ACTIONS(2635), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2635), + [anon_sym_decltype] = ACTIONS(2635), + [anon_sym_virtual] = ACTIONS(2635), + [anon_sym_explicit] = ACTIONS(2635), + [anon_sym_typename] = ACTIONS(2635), + [anon_sym_template] = ACTIONS(2635), + [anon_sym_operator] = ACTIONS(2635), + [anon_sym_try] = ACTIONS(2635), + [anon_sym_delete] = ACTIONS(2635), + [anon_sym_throw] = ACTIONS(2635), + [anon_sym_namespace] = ACTIONS(2635), + [anon_sym_using] = ACTIONS(2635), + [anon_sym_static_assert] = ACTIONS(2635), + [anon_sym_concept] = ACTIONS(2635), + [anon_sym_co_return] = ACTIONS(2635), + [anon_sym_co_yield] = ACTIONS(2635), + [anon_sym_co_await] = ACTIONS(2635), + [anon_sym_new] = ACTIONS(2635), + [anon_sym_requires] = ACTIONS(2635), + [sym_this] = ACTIONS(2635), + [sym_nullptr] = ACTIONS(2635), + [sym_raw_string_literal] = ACTIONS(2637), }, - [900] = { - [ts_builtin_sym_end] = ACTIONS(2697), - [sym_identifier] = ACTIONS(2695), - [aux_sym_preproc_include_token1] = ACTIONS(2695), - [aux_sym_preproc_def_token1] = ACTIONS(2695), - [aux_sym_preproc_if_token1] = ACTIONS(2695), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2695), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2695), - [sym_preproc_directive] = ACTIONS(2695), - [anon_sym_LPAREN2] = ACTIONS(2697), - [anon_sym_BANG] = ACTIONS(2697), - [anon_sym_TILDE] = ACTIONS(2697), - [anon_sym_DASH] = ACTIONS(2695), - [anon_sym_PLUS] = ACTIONS(2695), - [anon_sym_STAR] = ACTIONS(2697), - [anon_sym_AMP_AMP] = ACTIONS(2697), - [anon_sym_AMP] = ACTIONS(2695), - [anon_sym_SEMI] = ACTIONS(2697), - [anon_sym_typedef] = ACTIONS(2695), - [anon_sym_extern] = ACTIONS(2695), - [anon_sym___attribute__] = ACTIONS(2695), - [anon_sym_COLON_COLON] = ACTIONS(2697), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2697), - [anon_sym___declspec] = ACTIONS(2695), - [anon_sym___based] = ACTIONS(2695), - [anon_sym___cdecl] = ACTIONS(2695), - [anon_sym___clrcall] = ACTIONS(2695), - [anon_sym___stdcall] = ACTIONS(2695), - [anon_sym___fastcall] = ACTIONS(2695), - [anon_sym___thiscall] = ACTIONS(2695), - [anon_sym___vectorcall] = ACTIONS(2695), - [anon_sym_LBRACE] = ACTIONS(2697), - [anon_sym_LBRACK] = ACTIONS(2695), - [anon_sym_static] = ACTIONS(2695), - [anon_sym_register] = ACTIONS(2695), - [anon_sym_inline] = ACTIONS(2695), - [anon_sym_thread_local] = ACTIONS(2695), - [anon_sym_const] = ACTIONS(2695), - [anon_sym_volatile] = ACTIONS(2695), - [anon_sym_restrict] = ACTIONS(2695), - [anon_sym__Atomic] = ACTIONS(2695), - [anon_sym_mutable] = ACTIONS(2695), - [anon_sym_constexpr] = ACTIONS(2695), - [anon_sym_constinit] = ACTIONS(2695), - [anon_sym_consteval] = ACTIONS(2695), - [anon_sym_signed] = ACTIONS(2695), - [anon_sym_unsigned] = ACTIONS(2695), - [anon_sym_long] = ACTIONS(2695), - [anon_sym_short] = ACTIONS(2695), - [sym_primitive_type] = ACTIONS(2695), - [anon_sym_enum] = ACTIONS(2695), - [anon_sym_class] = ACTIONS(2695), - [anon_sym_struct] = ACTIONS(2695), - [anon_sym_union] = ACTIONS(2695), - [anon_sym_if] = ACTIONS(2695), - [anon_sym_switch] = ACTIONS(2695), - [anon_sym_case] = ACTIONS(2695), - [anon_sym_default] = ACTIONS(2695), - [anon_sym_while] = ACTIONS(2695), - [anon_sym_do] = ACTIONS(2695), - [anon_sym_for] = ACTIONS(2695), - [anon_sym_return] = ACTIONS(2695), - [anon_sym_break] = ACTIONS(2695), - [anon_sym_continue] = ACTIONS(2695), - [anon_sym_goto] = ACTIONS(2695), - [anon_sym_DASH_DASH] = ACTIONS(2697), - [anon_sym_PLUS_PLUS] = ACTIONS(2697), - [anon_sym_sizeof] = ACTIONS(2695), - [sym_number_literal] = ACTIONS(2697), - [anon_sym_L_SQUOTE] = ACTIONS(2697), - [anon_sym_u_SQUOTE] = ACTIONS(2697), - [anon_sym_U_SQUOTE] = ACTIONS(2697), - [anon_sym_u8_SQUOTE] = ACTIONS(2697), - [anon_sym_SQUOTE] = ACTIONS(2697), - [anon_sym_L_DQUOTE] = ACTIONS(2697), - [anon_sym_u_DQUOTE] = ACTIONS(2697), - [anon_sym_U_DQUOTE] = ACTIONS(2697), - [anon_sym_u8_DQUOTE] = ACTIONS(2697), - [anon_sym_DQUOTE] = ACTIONS(2697), - [sym_true] = ACTIONS(2695), - [sym_false] = ACTIONS(2695), - [sym_null] = ACTIONS(2695), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2695), - [anon_sym_decltype] = ACTIONS(2695), - [anon_sym_virtual] = ACTIONS(2695), - [anon_sym_explicit] = ACTIONS(2695), - [anon_sym_typename] = ACTIONS(2695), - [anon_sym_template] = ACTIONS(2695), - [anon_sym_operator] = ACTIONS(2695), - [anon_sym_try] = ACTIONS(2695), - [anon_sym_delete] = ACTIONS(2695), - [anon_sym_throw] = ACTIONS(2695), - [anon_sym_namespace] = ACTIONS(2695), - [anon_sym_using] = ACTIONS(2695), - [anon_sym_static_assert] = ACTIONS(2695), - [anon_sym_concept] = ACTIONS(2695), - [anon_sym_co_return] = ACTIONS(2695), - [anon_sym_co_yield] = ACTIONS(2695), - [anon_sym_co_await] = ACTIONS(2695), - [anon_sym_new] = ACTIONS(2695), - [anon_sym_requires] = ACTIONS(2695), - [sym_this] = ACTIONS(2695), - [sym_nullptr] = ACTIONS(2695), - [sym_raw_string_literal] = ACTIONS(2697), + [558] = { + [sym_identifier] = ACTIONS(2635), + [aux_sym_preproc_include_token1] = ACTIONS(2635), + [aux_sym_preproc_def_token1] = ACTIONS(2635), + [aux_sym_preproc_if_token1] = ACTIONS(2635), + [aux_sym_preproc_if_token2] = ACTIONS(2635), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2635), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2635), + [sym_preproc_directive] = ACTIONS(2635), + [anon_sym_LPAREN2] = ACTIONS(2637), + [anon_sym_BANG] = ACTIONS(2637), + [anon_sym_TILDE] = ACTIONS(2637), + [anon_sym_DASH] = ACTIONS(2635), + [anon_sym_PLUS] = ACTIONS(2635), + [anon_sym_STAR] = ACTIONS(2637), + [anon_sym_AMP_AMP] = ACTIONS(2637), + [anon_sym_AMP] = ACTIONS(2635), + [anon_sym_SEMI] = ACTIONS(2637), + [anon_sym_typedef] = ACTIONS(2635), + [anon_sym_extern] = ACTIONS(2635), + [anon_sym___attribute__] = ACTIONS(2635), + [anon_sym_COLON_COLON] = ACTIONS(2637), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2637), + [anon_sym___declspec] = ACTIONS(2635), + [anon_sym___based] = ACTIONS(2635), + [anon_sym___cdecl] = ACTIONS(2635), + [anon_sym___clrcall] = ACTIONS(2635), + [anon_sym___stdcall] = ACTIONS(2635), + [anon_sym___fastcall] = ACTIONS(2635), + [anon_sym___thiscall] = ACTIONS(2635), + [anon_sym___vectorcall] = ACTIONS(2635), + [anon_sym_LBRACE] = ACTIONS(2637), + [anon_sym_LBRACK] = ACTIONS(2635), + [anon_sym_static] = ACTIONS(2635), + [anon_sym_register] = ACTIONS(2635), + [anon_sym_inline] = ACTIONS(2635), + [anon_sym_thread_local] = ACTIONS(2635), + [anon_sym_const] = ACTIONS(2635), + [anon_sym_volatile] = ACTIONS(2635), + [anon_sym_restrict] = ACTIONS(2635), + [anon_sym__Atomic] = ACTIONS(2635), + [anon_sym_mutable] = ACTIONS(2635), + [anon_sym_constexpr] = ACTIONS(2635), + [anon_sym_constinit] = ACTIONS(2635), + [anon_sym_consteval] = ACTIONS(2635), + [anon_sym_signed] = ACTIONS(2635), + [anon_sym_unsigned] = ACTIONS(2635), + [anon_sym_long] = ACTIONS(2635), + [anon_sym_short] = ACTIONS(2635), + [sym_primitive_type] = ACTIONS(2635), + [anon_sym_enum] = ACTIONS(2635), + [anon_sym_class] = ACTIONS(2635), + [anon_sym_struct] = ACTIONS(2635), + [anon_sym_union] = ACTIONS(2635), + [anon_sym_if] = ACTIONS(2635), + [anon_sym_else] = ACTIONS(2635), + [anon_sym_switch] = ACTIONS(2635), + [anon_sym_case] = ACTIONS(2635), + [anon_sym_default] = ACTIONS(2635), + [anon_sym_while] = ACTIONS(2635), + [anon_sym_do] = ACTIONS(2635), + [anon_sym_for] = ACTIONS(2635), + [anon_sym_return] = ACTIONS(2635), + [anon_sym_break] = ACTIONS(2635), + [anon_sym_continue] = ACTIONS(2635), + [anon_sym_goto] = ACTIONS(2635), + [anon_sym_not] = ACTIONS(2635), + [anon_sym_compl] = ACTIONS(2635), + [anon_sym_DASH_DASH] = ACTIONS(2637), + [anon_sym_PLUS_PLUS] = ACTIONS(2637), + [anon_sym_sizeof] = ACTIONS(2635), + [sym_number_literal] = ACTIONS(2637), + [anon_sym_L_SQUOTE] = ACTIONS(2637), + [anon_sym_u_SQUOTE] = ACTIONS(2637), + [anon_sym_U_SQUOTE] = ACTIONS(2637), + [anon_sym_u8_SQUOTE] = ACTIONS(2637), + [anon_sym_SQUOTE] = ACTIONS(2637), + [anon_sym_L_DQUOTE] = ACTIONS(2637), + [anon_sym_u_DQUOTE] = ACTIONS(2637), + [anon_sym_U_DQUOTE] = ACTIONS(2637), + [anon_sym_u8_DQUOTE] = ACTIONS(2637), + [anon_sym_DQUOTE] = ACTIONS(2637), + [sym_true] = ACTIONS(2635), + [sym_false] = ACTIONS(2635), + [sym_null] = ACTIONS(2635), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2635), + [anon_sym_decltype] = ACTIONS(2635), + [anon_sym_virtual] = ACTIONS(2635), + [anon_sym_explicit] = ACTIONS(2635), + [anon_sym_typename] = ACTIONS(2635), + [anon_sym_template] = ACTIONS(2635), + [anon_sym_operator] = ACTIONS(2635), + [anon_sym_try] = ACTIONS(2635), + [anon_sym_delete] = ACTIONS(2635), + [anon_sym_throw] = ACTIONS(2635), + [anon_sym_namespace] = ACTIONS(2635), + [anon_sym_using] = ACTIONS(2635), + [anon_sym_static_assert] = ACTIONS(2635), + [anon_sym_concept] = ACTIONS(2635), + [anon_sym_co_return] = ACTIONS(2635), + [anon_sym_co_yield] = ACTIONS(2635), + [anon_sym_co_await] = ACTIONS(2635), + [anon_sym_new] = ACTIONS(2635), + [anon_sym_requires] = ACTIONS(2635), + [sym_this] = ACTIONS(2635), + [sym_nullptr] = ACTIONS(2635), + [sym_raw_string_literal] = ACTIONS(2637), }, - [901] = { - [ts_builtin_sym_end] = ACTIONS(2627), - [sym_identifier] = ACTIONS(2625), - [aux_sym_preproc_include_token1] = ACTIONS(2625), - [aux_sym_preproc_def_token1] = ACTIONS(2625), - [aux_sym_preproc_if_token1] = ACTIONS(2625), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2625), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2625), - [sym_preproc_directive] = ACTIONS(2625), - [anon_sym_LPAREN2] = ACTIONS(2627), - [anon_sym_BANG] = ACTIONS(2627), - [anon_sym_TILDE] = ACTIONS(2627), - [anon_sym_DASH] = ACTIONS(2625), - [anon_sym_PLUS] = ACTIONS(2625), - [anon_sym_STAR] = ACTIONS(2627), - [anon_sym_AMP_AMP] = ACTIONS(2627), - [anon_sym_AMP] = ACTIONS(2625), - [anon_sym_SEMI] = ACTIONS(2627), - [anon_sym_typedef] = ACTIONS(2625), - [anon_sym_extern] = ACTIONS(2625), - [anon_sym___attribute__] = ACTIONS(2625), - [anon_sym_COLON_COLON] = ACTIONS(2627), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2627), - [anon_sym___declspec] = ACTIONS(2625), - [anon_sym___based] = ACTIONS(2625), - [anon_sym___cdecl] = ACTIONS(2625), - [anon_sym___clrcall] = ACTIONS(2625), - [anon_sym___stdcall] = ACTIONS(2625), - [anon_sym___fastcall] = ACTIONS(2625), - [anon_sym___thiscall] = ACTIONS(2625), - [anon_sym___vectorcall] = ACTIONS(2625), - [anon_sym_LBRACE] = ACTIONS(2627), - [anon_sym_LBRACK] = ACTIONS(2625), - [anon_sym_static] = ACTIONS(2625), - [anon_sym_register] = ACTIONS(2625), - [anon_sym_inline] = ACTIONS(2625), - [anon_sym_thread_local] = ACTIONS(2625), - [anon_sym_const] = ACTIONS(2625), - [anon_sym_volatile] = ACTIONS(2625), - [anon_sym_restrict] = ACTIONS(2625), - [anon_sym__Atomic] = ACTIONS(2625), - [anon_sym_mutable] = ACTIONS(2625), - [anon_sym_constexpr] = ACTIONS(2625), - [anon_sym_constinit] = ACTIONS(2625), - [anon_sym_consteval] = ACTIONS(2625), - [anon_sym_signed] = ACTIONS(2625), - [anon_sym_unsigned] = ACTIONS(2625), - [anon_sym_long] = ACTIONS(2625), - [anon_sym_short] = ACTIONS(2625), - [sym_primitive_type] = ACTIONS(2625), - [anon_sym_enum] = ACTIONS(2625), - [anon_sym_class] = ACTIONS(2625), - [anon_sym_struct] = ACTIONS(2625), - [anon_sym_union] = ACTIONS(2625), - [anon_sym_if] = ACTIONS(2625), - [anon_sym_switch] = ACTIONS(2625), - [anon_sym_case] = ACTIONS(2625), - [anon_sym_default] = ACTIONS(2625), - [anon_sym_while] = ACTIONS(2625), - [anon_sym_do] = ACTIONS(2625), - [anon_sym_for] = ACTIONS(2625), - [anon_sym_return] = ACTIONS(2625), - [anon_sym_break] = ACTIONS(2625), - [anon_sym_continue] = ACTIONS(2625), - [anon_sym_goto] = ACTIONS(2625), - [anon_sym_DASH_DASH] = ACTIONS(2627), - [anon_sym_PLUS_PLUS] = ACTIONS(2627), - [anon_sym_sizeof] = ACTIONS(2625), - [sym_number_literal] = ACTIONS(2627), - [anon_sym_L_SQUOTE] = ACTIONS(2627), - [anon_sym_u_SQUOTE] = ACTIONS(2627), - [anon_sym_U_SQUOTE] = ACTIONS(2627), - [anon_sym_u8_SQUOTE] = ACTIONS(2627), - [anon_sym_SQUOTE] = ACTIONS(2627), - [anon_sym_L_DQUOTE] = ACTIONS(2627), - [anon_sym_u_DQUOTE] = ACTIONS(2627), - [anon_sym_U_DQUOTE] = ACTIONS(2627), - [anon_sym_u8_DQUOTE] = ACTIONS(2627), - [anon_sym_DQUOTE] = ACTIONS(2627), - [sym_true] = ACTIONS(2625), - [sym_false] = ACTIONS(2625), - [sym_null] = ACTIONS(2625), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2625), - [anon_sym_decltype] = ACTIONS(2625), - [anon_sym_virtual] = ACTIONS(2625), - [anon_sym_explicit] = ACTIONS(2625), - [anon_sym_typename] = ACTIONS(2625), - [anon_sym_template] = ACTIONS(2625), - [anon_sym_operator] = ACTIONS(2625), - [anon_sym_try] = ACTIONS(2625), - [anon_sym_delete] = ACTIONS(2625), - [anon_sym_throw] = ACTIONS(2625), - [anon_sym_namespace] = ACTIONS(2625), - [anon_sym_using] = ACTIONS(2625), - [anon_sym_static_assert] = ACTIONS(2625), - [anon_sym_concept] = ACTIONS(2625), - [anon_sym_co_return] = ACTIONS(2625), - [anon_sym_co_yield] = ACTIONS(2625), - [anon_sym_co_await] = ACTIONS(2625), - [anon_sym_new] = ACTIONS(2625), - [anon_sym_requires] = ACTIONS(2625), - [sym_this] = ACTIONS(2625), - [sym_nullptr] = ACTIONS(2625), - [sym_raw_string_literal] = ACTIONS(2627), + [559] = { + [ts_builtin_sym_end] = ACTIONS(2597), + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [902] = { - [ts_builtin_sym_end] = ACTIONS(2795), - [sym_identifier] = ACTIONS(2793), - [aux_sym_preproc_include_token1] = ACTIONS(2793), - [aux_sym_preproc_def_token1] = ACTIONS(2793), - [aux_sym_preproc_if_token1] = ACTIONS(2793), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2793), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2793), - [sym_preproc_directive] = ACTIONS(2793), - [anon_sym_LPAREN2] = ACTIONS(2795), - [anon_sym_BANG] = ACTIONS(2795), - [anon_sym_TILDE] = ACTIONS(2795), - [anon_sym_DASH] = ACTIONS(2793), - [anon_sym_PLUS] = ACTIONS(2793), - [anon_sym_STAR] = ACTIONS(2795), - [anon_sym_AMP_AMP] = ACTIONS(2795), - [anon_sym_AMP] = ACTIONS(2793), - [anon_sym_SEMI] = ACTIONS(2795), - [anon_sym_typedef] = ACTIONS(2793), - [anon_sym_extern] = ACTIONS(2793), - [anon_sym___attribute__] = ACTIONS(2793), - [anon_sym_COLON_COLON] = ACTIONS(2795), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2795), - [anon_sym___declspec] = ACTIONS(2793), - [anon_sym___based] = ACTIONS(2793), - [anon_sym___cdecl] = ACTIONS(2793), - [anon_sym___clrcall] = ACTIONS(2793), - [anon_sym___stdcall] = ACTIONS(2793), - [anon_sym___fastcall] = ACTIONS(2793), - [anon_sym___thiscall] = ACTIONS(2793), - [anon_sym___vectorcall] = ACTIONS(2793), - [anon_sym_LBRACE] = ACTIONS(2795), - [anon_sym_LBRACK] = ACTIONS(2793), - [anon_sym_static] = ACTIONS(2793), - [anon_sym_register] = ACTIONS(2793), - [anon_sym_inline] = ACTIONS(2793), - [anon_sym_thread_local] = ACTIONS(2793), - [anon_sym_const] = ACTIONS(2793), - [anon_sym_volatile] = ACTIONS(2793), - [anon_sym_restrict] = ACTIONS(2793), - [anon_sym__Atomic] = ACTIONS(2793), - [anon_sym_mutable] = ACTIONS(2793), - [anon_sym_constexpr] = ACTIONS(2793), - [anon_sym_constinit] = ACTIONS(2793), - [anon_sym_consteval] = ACTIONS(2793), - [anon_sym_signed] = ACTIONS(2793), - [anon_sym_unsigned] = ACTIONS(2793), - [anon_sym_long] = ACTIONS(2793), - [anon_sym_short] = ACTIONS(2793), - [sym_primitive_type] = ACTIONS(2793), - [anon_sym_enum] = ACTIONS(2793), - [anon_sym_class] = ACTIONS(2793), - [anon_sym_struct] = ACTIONS(2793), - [anon_sym_union] = ACTIONS(2793), - [anon_sym_if] = ACTIONS(2793), - [anon_sym_switch] = ACTIONS(2793), - [anon_sym_case] = ACTIONS(2793), - [anon_sym_default] = ACTIONS(2793), - [anon_sym_while] = ACTIONS(2793), - [anon_sym_do] = ACTIONS(2793), - [anon_sym_for] = ACTIONS(2793), - [anon_sym_return] = ACTIONS(2793), - [anon_sym_break] = ACTIONS(2793), - [anon_sym_continue] = ACTIONS(2793), - [anon_sym_goto] = ACTIONS(2793), - [anon_sym_DASH_DASH] = ACTIONS(2795), - [anon_sym_PLUS_PLUS] = ACTIONS(2795), - [anon_sym_sizeof] = ACTIONS(2793), - [sym_number_literal] = ACTIONS(2795), - [anon_sym_L_SQUOTE] = ACTIONS(2795), - [anon_sym_u_SQUOTE] = ACTIONS(2795), - [anon_sym_U_SQUOTE] = ACTIONS(2795), - [anon_sym_u8_SQUOTE] = ACTIONS(2795), - [anon_sym_SQUOTE] = ACTIONS(2795), - [anon_sym_L_DQUOTE] = ACTIONS(2795), - [anon_sym_u_DQUOTE] = ACTIONS(2795), - [anon_sym_U_DQUOTE] = ACTIONS(2795), - [anon_sym_u8_DQUOTE] = ACTIONS(2795), - [anon_sym_DQUOTE] = ACTIONS(2795), - [sym_true] = ACTIONS(2793), - [sym_false] = ACTIONS(2793), - [sym_null] = ACTIONS(2793), + [560] = { + [ts_builtin_sym_end] = ACTIONS(2597), + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2793), - [anon_sym_decltype] = ACTIONS(2793), - [anon_sym_virtual] = ACTIONS(2793), - [anon_sym_explicit] = ACTIONS(2793), - [anon_sym_typename] = ACTIONS(2793), - [anon_sym_template] = ACTIONS(2793), - [anon_sym_operator] = ACTIONS(2793), - [anon_sym_try] = ACTIONS(2793), - [anon_sym_delete] = ACTIONS(2793), - [anon_sym_throw] = ACTIONS(2793), - [anon_sym_namespace] = ACTIONS(2793), - [anon_sym_using] = ACTIONS(2793), - [anon_sym_static_assert] = ACTIONS(2793), - [anon_sym_concept] = ACTIONS(2793), - [anon_sym_co_return] = ACTIONS(2793), - [anon_sym_co_yield] = ACTIONS(2793), - [anon_sym_co_await] = ACTIONS(2793), - [anon_sym_new] = ACTIONS(2793), - [anon_sym_requires] = ACTIONS(2793), - [sym_this] = ACTIONS(2793), - [sym_nullptr] = ACTIONS(2793), - [sym_raw_string_literal] = ACTIONS(2795), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [903] = { - [sym_identifier] = ACTIONS(2691), - [aux_sym_preproc_include_token1] = ACTIONS(2691), - [aux_sym_preproc_def_token1] = ACTIONS(2691), - [aux_sym_preproc_if_token1] = ACTIONS(2691), - [aux_sym_preproc_if_token2] = ACTIONS(2691), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2691), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2691), - [sym_preproc_directive] = ACTIONS(2691), - [anon_sym_LPAREN2] = ACTIONS(2693), - [anon_sym_BANG] = ACTIONS(2693), - [anon_sym_TILDE] = ACTIONS(2693), - [anon_sym_DASH] = ACTIONS(2691), - [anon_sym_PLUS] = ACTIONS(2691), - [anon_sym_STAR] = ACTIONS(2693), - [anon_sym_AMP_AMP] = ACTIONS(2693), - [anon_sym_AMP] = ACTIONS(2691), - [anon_sym_SEMI] = ACTIONS(2693), - [anon_sym_typedef] = ACTIONS(2691), - [anon_sym_extern] = ACTIONS(2691), - [anon_sym___attribute__] = ACTIONS(2691), - [anon_sym_COLON_COLON] = ACTIONS(2693), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2693), - [anon_sym___declspec] = ACTIONS(2691), - [anon_sym___based] = ACTIONS(2691), - [anon_sym___cdecl] = ACTIONS(2691), - [anon_sym___clrcall] = ACTIONS(2691), - [anon_sym___stdcall] = ACTIONS(2691), - [anon_sym___fastcall] = ACTIONS(2691), - [anon_sym___thiscall] = ACTIONS(2691), - [anon_sym___vectorcall] = ACTIONS(2691), - [anon_sym_LBRACE] = ACTIONS(2693), - [anon_sym_LBRACK] = ACTIONS(2691), - [anon_sym_static] = ACTIONS(2691), - [anon_sym_register] = ACTIONS(2691), - [anon_sym_inline] = ACTIONS(2691), - [anon_sym_thread_local] = ACTIONS(2691), - [anon_sym_const] = ACTIONS(2691), - [anon_sym_volatile] = ACTIONS(2691), - [anon_sym_restrict] = ACTIONS(2691), - [anon_sym__Atomic] = ACTIONS(2691), - [anon_sym_mutable] = ACTIONS(2691), - [anon_sym_constexpr] = ACTIONS(2691), - [anon_sym_constinit] = ACTIONS(2691), - [anon_sym_consteval] = ACTIONS(2691), - [anon_sym_signed] = ACTIONS(2691), - [anon_sym_unsigned] = ACTIONS(2691), - [anon_sym_long] = ACTIONS(2691), - [anon_sym_short] = ACTIONS(2691), - [sym_primitive_type] = ACTIONS(2691), - [anon_sym_enum] = ACTIONS(2691), - [anon_sym_class] = ACTIONS(2691), - [anon_sym_struct] = ACTIONS(2691), - [anon_sym_union] = ACTIONS(2691), - [anon_sym_if] = ACTIONS(2691), - [anon_sym_switch] = ACTIONS(2691), - [anon_sym_case] = ACTIONS(2691), - [anon_sym_default] = ACTIONS(2691), - [anon_sym_while] = ACTIONS(2691), - [anon_sym_do] = ACTIONS(2691), - [anon_sym_for] = ACTIONS(2691), - [anon_sym_return] = ACTIONS(2691), - [anon_sym_break] = ACTIONS(2691), - [anon_sym_continue] = ACTIONS(2691), - [anon_sym_goto] = ACTIONS(2691), - [anon_sym_DASH_DASH] = ACTIONS(2693), - [anon_sym_PLUS_PLUS] = ACTIONS(2693), - [anon_sym_sizeof] = ACTIONS(2691), - [sym_number_literal] = ACTIONS(2693), - [anon_sym_L_SQUOTE] = ACTIONS(2693), - [anon_sym_u_SQUOTE] = ACTIONS(2693), - [anon_sym_U_SQUOTE] = ACTIONS(2693), - [anon_sym_u8_SQUOTE] = ACTIONS(2693), - [anon_sym_SQUOTE] = ACTIONS(2693), - [anon_sym_L_DQUOTE] = ACTIONS(2693), - [anon_sym_u_DQUOTE] = ACTIONS(2693), - [anon_sym_U_DQUOTE] = ACTIONS(2693), - [anon_sym_u8_DQUOTE] = ACTIONS(2693), - [anon_sym_DQUOTE] = ACTIONS(2693), - [sym_true] = ACTIONS(2691), - [sym_false] = ACTIONS(2691), - [sym_null] = ACTIONS(2691), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2691), - [anon_sym_decltype] = ACTIONS(2691), - [anon_sym_virtual] = ACTIONS(2691), - [anon_sym_explicit] = ACTIONS(2691), - [anon_sym_typename] = ACTIONS(2691), - [anon_sym_template] = ACTIONS(2691), - [anon_sym_operator] = ACTIONS(2691), - [anon_sym_try] = ACTIONS(2691), - [anon_sym_delete] = ACTIONS(2691), - [anon_sym_throw] = ACTIONS(2691), - [anon_sym_namespace] = ACTIONS(2691), - [anon_sym_using] = ACTIONS(2691), - [anon_sym_static_assert] = ACTIONS(2691), - [anon_sym_concept] = ACTIONS(2691), - [anon_sym_co_return] = ACTIONS(2691), - [anon_sym_co_yield] = ACTIONS(2691), - [anon_sym_co_await] = ACTIONS(2691), - [anon_sym_new] = ACTIONS(2691), - [anon_sym_requires] = ACTIONS(2691), - [sym_this] = ACTIONS(2691), - [sym_nullptr] = ACTIONS(2691), - [sym_raw_string_literal] = ACTIONS(2693), + [561] = { + [ts_builtin_sym_end] = ACTIONS(2561), + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [904] = { - [ts_builtin_sym_end] = ACTIONS(2791), - [sym_identifier] = ACTIONS(2789), - [aux_sym_preproc_include_token1] = ACTIONS(2789), - [aux_sym_preproc_def_token1] = ACTIONS(2789), - [aux_sym_preproc_if_token1] = ACTIONS(2789), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2789), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2789), - [sym_preproc_directive] = ACTIONS(2789), - [anon_sym_LPAREN2] = ACTIONS(2791), - [anon_sym_BANG] = ACTIONS(2791), - [anon_sym_TILDE] = ACTIONS(2791), - [anon_sym_DASH] = ACTIONS(2789), - [anon_sym_PLUS] = ACTIONS(2789), - [anon_sym_STAR] = ACTIONS(2791), - [anon_sym_AMP_AMP] = ACTIONS(2791), - [anon_sym_AMP] = ACTIONS(2789), - [anon_sym_SEMI] = ACTIONS(2791), - [anon_sym_typedef] = ACTIONS(2789), - [anon_sym_extern] = ACTIONS(2789), - [anon_sym___attribute__] = ACTIONS(2789), - [anon_sym_COLON_COLON] = ACTIONS(2791), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2791), - [anon_sym___declspec] = ACTIONS(2789), - [anon_sym___based] = ACTIONS(2789), - [anon_sym___cdecl] = ACTIONS(2789), - [anon_sym___clrcall] = ACTIONS(2789), - [anon_sym___stdcall] = ACTIONS(2789), - [anon_sym___fastcall] = ACTIONS(2789), - [anon_sym___thiscall] = ACTIONS(2789), - [anon_sym___vectorcall] = ACTIONS(2789), - [anon_sym_LBRACE] = ACTIONS(2791), - [anon_sym_LBRACK] = ACTIONS(2789), - [anon_sym_static] = ACTIONS(2789), - [anon_sym_register] = ACTIONS(2789), - [anon_sym_inline] = ACTIONS(2789), - [anon_sym_thread_local] = ACTIONS(2789), - [anon_sym_const] = ACTIONS(2789), - [anon_sym_volatile] = ACTIONS(2789), - [anon_sym_restrict] = ACTIONS(2789), - [anon_sym__Atomic] = ACTIONS(2789), - [anon_sym_mutable] = ACTIONS(2789), - [anon_sym_constexpr] = ACTIONS(2789), - [anon_sym_constinit] = ACTIONS(2789), - [anon_sym_consteval] = ACTIONS(2789), - [anon_sym_signed] = ACTIONS(2789), - [anon_sym_unsigned] = ACTIONS(2789), - [anon_sym_long] = ACTIONS(2789), - [anon_sym_short] = ACTIONS(2789), - [sym_primitive_type] = ACTIONS(2789), - [anon_sym_enum] = ACTIONS(2789), - [anon_sym_class] = ACTIONS(2789), - [anon_sym_struct] = ACTIONS(2789), - [anon_sym_union] = ACTIONS(2789), - [anon_sym_if] = ACTIONS(2789), - [anon_sym_switch] = ACTIONS(2789), - [anon_sym_case] = ACTIONS(2789), - [anon_sym_default] = ACTIONS(2789), - [anon_sym_while] = ACTIONS(2789), - [anon_sym_do] = ACTIONS(2789), - [anon_sym_for] = ACTIONS(2789), - [anon_sym_return] = ACTIONS(2789), - [anon_sym_break] = ACTIONS(2789), - [anon_sym_continue] = ACTIONS(2789), - [anon_sym_goto] = ACTIONS(2789), - [anon_sym_DASH_DASH] = ACTIONS(2791), - [anon_sym_PLUS_PLUS] = ACTIONS(2791), - [anon_sym_sizeof] = ACTIONS(2789), - [sym_number_literal] = ACTIONS(2791), - [anon_sym_L_SQUOTE] = ACTIONS(2791), - [anon_sym_u_SQUOTE] = ACTIONS(2791), - [anon_sym_U_SQUOTE] = ACTIONS(2791), - [anon_sym_u8_SQUOTE] = ACTIONS(2791), - [anon_sym_SQUOTE] = ACTIONS(2791), - [anon_sym_L_DQUOTE] = ACTIONS(2791), - [anon_sym_u_DQUOTE] = ACTIONS(2791), - [anon_sym_U_DQUOTE] = ACTIONS(2791), - [anon_sym_u8_DQUOTE] = ACTIONS(2791), - [anon_sym_DQUOTE] = ACTIONS(2791), - [sym_true] = ACTIONS(2789), - [sym_false] = ACTIONS(2789), - [sym_null] = ACTIONS(2789), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2789), - [anon_sym_decltype] = ACTIONS(2789), - [anon_sym_virtual] = ACTIONS(2789), - [anon_sym_explicit] = ACTIONS(2789), - [anon_sym_typename] = ACTIONS(2789), - [anon_sym_template] = ACTIONS(2789), - [anon_sym_operator] = ACTIONS(2789), - [anon_sym_try] = ACTIONS(2789), - [anon_sym_delete] = ACTIONS(2789), - [anon_sym_throw] = ACTIONS(2789), - [anon_sym_namespace] = ACTIONS(2789), - [anon_sym_using] = ACTIONS(2789), - [anon_sym_static_assert] = ACTIONS(2789), - [anon_sym_concept] = ACTIONS(2789), - [anon_sym_co_return] = ACTIONS(2789), - [anon_sym_co_yield] = ACTIONS(2789), - [anon_sym_co_await] = ACTIONS(2789), - [anon_sym_new] = ACTIONS(2789), - [anon_sym_requires] = ACTIONS(2789), - [sym_this] = ACTIONS(2789), - [sym_nullptr] = ACTIONS(2789), - [sym_raw_string_literal] = ACTIONS(2791), + [562] = { + [ts_builtin_sym_end] = ACTIONS(2601), + [sym_identifier] = ACTIONS(2599), + [aux_sym_preproc_include_token1] = ACTIONS(2599), + [aux_sym_preproc_def_token1] = ACTIONS(2599), + [aux_sym_preproc_if_token1] = ACTIONS(2599), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2599), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2599), + [sym_preproc_directive] = ACTIONS(2599), + [anon_sym_LPAREN2] = ACTIONS(2601), + [anon_sym_BANG] = ACTIONS(2601), + [anon_sym_TILDE] = ACTIONS(2601), + [anon_sym_DASH] = ACTIONS(2599), + [anon_sym_PLUS] = ACTIONS(2599), + [anon_sym_STAR] = ACTIONS(2601), + [anon_sym_AMP_AMP] = ACTIONS(2601), + [anon_sym_AMP] = ACTIONS(2599), + [anon_sym_SEMI] = ACTIONS(2601), + [anon_sym_typedef] = ACTIONS(2599), + [anon_sym_extern] = ACTIONS(2599), + [anon_sym___attribute__] = ACTIONS(2599), + [anon_sym_COLON_COLON] = ACTIONS(2601), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2601), + [anon_sym___declspec] = ACTIONS(2599), + [anon_sym___based] = ACTIONS(2599), + [anon_sym___cdecl] = ACTIONS(2599), + [anon_sym___clrcall] = ACTIONS(2599), + [anon_sym___stdcall] = ACTIONS(2599), + [anon_sym___fastcall] = ACTIONS(2599), + [anon_sym___thiscall] = ACTIONS(2599), + [anon_sym___vectorcall] = ACTIONS(2599), + [anon_sym_LBRACE] = ACTIONS(2601), + [anon_sym_LBRACK] = ACTIONS(2599), + [anon_sym_static] = ACTIONS(2599), + [anon_sym_register] = ACTIONS(2599), + [anon_sym_inline] = ACTIONS(2599), + [anon_sym_thread_local] = ACTIONS(2599), + [anon_sym_const] = ACTIONS(2599), + [anon_sym_volatile] = ACTIONS(2599), + [anon_sym_restrict] = ACTIONS(2599), + [anon_sym__Atomic] = ACTIONS(2599), + [anon_sym_mutable] = ACTIONS(2599), + [anon_sym_constexpr] = ACTIONS(2599), + [anon_sym_constinit] = ACTIONS(2599), + [anon_sym_consteval] = ACTIONS(2599), + [anon_sym_signed] = ACTIONS(2599), + [anon_sym_unsigned] = ACTIONS(2599), + [anon_sym_long] = ACTIONS(2599), + [anon_sym_short] = ACTIONS(2599), + [sym_primitive_type] = ACTIONS(2599), + [anon_sym_enum] = ACTIONS(2599), + [anon_sym_class] = ACTIONS(2599), + [anon_sym_struct] = ACTIONS(2599), + [anon_sym_union] = ACTIONS(2599), + [anon_sym_if] = ACTIONS(2599), + [anon_sym_else] = ACTIONS(2599), + [anon_sym_switch] = ACTIONS(2599), + [anon_sym_case] = ACTIONS(2599), + [anon_sym_default] = ACTIONS(2599), + [anon_sym_while] = ACTIONS(2599), + [anon_sym_do] = ACTIONS(2599), + [anon_sym_for] = ACTIONS(2599), + [anon_sym_return] = ACTIONS(2599), + [anon_sym_break] = ACTIONS(2599), + [anon_sym_continue] = ACTIONS(2599), + [anon_sym_goto] = ACTIONS(2599), + [anon_sym_not] = ACTIONS(2599), + [anon_sym_compl] = ACTIONS(2599), + [anon_sym_DASH_DASH] = ACTIONS(2601), + [anon_sym_PLUS_PLUS] = ACTIONS(2601), + [anon_sym_sizeof] = ACTIONS(2599), + [sym_number_literal] = ACTIONS(2601), + [anon_sym_L_SQUOTE] = ACTIONS(2601), + [anon_sym_u_SQUOTE] = ACTIONS(2601), + [anon_sym_U_SQUOTE] = ACTIONS(2601), + [anon_sym_u8_SQUOTE] = ACTIONS(2601), + [anon_sym_SQUOTE] = ACTIONS(2601), + [anon_sym_L_DQUOTE] = ACTIONS(2601), + [anon_sym_u_DQUOTE] = ACTIONS(2601), + [anon_sym_U_DQUOTE] = ACTIONS(2601), + [anon_sym_u8_DQUOTE] = ACTIONS(2601), + [anon_sym_DQUOTE] = ACTIONS(2601), + [sym_true] = ACTIONS(2599), + [sym_false] = ACTIONS(2599), + [sym_null] = ACTIONS(2599), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2599), + [anon_sym_decltype] = ACTIONS(2599), + [anon_sym_virtual] = ACTIONS(2599), + [anon_sym_explicit] = ACTIONS(2599), + [anon_sym_typename] = ACTIONS(2599), + [anon_sym_template] = ACTIONS(2599), + [anon_sym_operator] = ACTIONS(2599), + [anon_sym_try] = ACTIONS(2599), + [anon_sym_delete] = ACTIONS(2599), + [anon_sym_throw] = ACTIONS(2599), + [anon_sym_namespace] = ACTIONS(2599), + [anon_sym_using] = ACTIONS(2599), + [anon_sym_static_assert] = ACTIONS(2599), + [anon_sym_concept] = ACTIONS(2599), + [anon_sym_co_return] = ACTIONS(2599), + [anon_sym_co_yield] = ACTIONS(2599), + [anon_sym_co_await] = ACTIONS(2599), + [anon_sym_new] = ACTIONS(2599), + [anon_sym_requires] = ACTIONS(2599), + [sym_this] = ACTIONS(2599), + [sym_nullptr] = ACTIONS(2599), + [sym_raw_string_literal] = ACTIONS(2601), }, - [905] = { - [sym_identifier] = ACTIONS(2705), - [aux_sym_preproc_include_token1] = ACTIONS(2705), - [aux_sym_preproc_def_token1] = ACTIONS(2705), - [aux_sym_preproc_if_token1] = ACTIONS(2705), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2705), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2705), - [sym_preproc_directive] = ACTIONS(2705), - [anon_sym_LPAREN2] = ACTIONS(2707), - [anon_sym_BANG] = ACTIONS(2707), - [anon_sym_TILDE] = ACTIONS(2707), - [anon_sym_DASH] = ACTIONS(2705), - [anon_sym_PLUS] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2707), - [anon_sym_AMP_AMP] = ACTIONS(2707), - [anon_sym_AMP] = ACTIONS(2705), - [anon_sym_SEMI] = ACTIONS(2707), - [anon_sym_typedef] = ACTIONS(2705), - [anon_sym_extern] = ACTIONS(2705), - [anon_sym___attribute__] = ACTIONS(2705), - [anon_sym_COLON_COLON] = ACTIONS(2707), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2707), - [anon_sym___declspec] = ACTIONS(2705), - [anon_sym___based] = ACTIONS(2705), - [anon_sym___cdecl] = ACTIONS(2705), - [anon_sym___clrcall] = ACTIONS(2705), - [anon_sym___stdcall] = ACTIONS(2705), - [anon_sym___fastcall] = ACTIONS(2705), - [anon_sym___thiscall] = ACTIONS(2705), - [anon_sym___vectorcall] = ACTIONS(2705), - [anon_sym_LBRACE] = ACTIONS(2707), - [anon_sym_RBRACE] = ACTIONS(2707), - [anon_sym_LBRACK] = ACTIONS(2705), - [anon_sym_static] = ACTIONS(2705), - [anon_sym_register] = ACTIONS(2705), - [anon_sym_inline] = ACTIONS(2705), - [anon_sym_thread_local] = ACTIONS(2705), - [anon_sym_const] = ACTIONS(2705), - [anon_sym_volatile] = ACTIONS(2705), - [anon_sym_restrict] = ACTIONS(2705), - [anon_sym__Atomic] = ACTIONS(2705), - [anon_sym_mutable] = ACTIONS(2705), - [anon_sym_constexpr] = ACTIONS(2705), - [anon_sym_constinit] = ACTIONS(2705), - [anon_sym_consteval] = ACTIONS(2705), - [anon_sym_signed] = ACTIONS(2705), - [anon_sym_unsigned] = ACTIONS(2705), - [anon_sym_long] = ACTIONS(2705), - [anon_sym_short] = ACTIONS(2705), - [sym_primitive_type] = ACTIONS(2705), - [anon_sym_enum] = ACTIONS(2705), - [anon_sym_class] = ACTIONS(2705), - [anon_sym_struct] = ACTIONS(2705), - [anon_sym_union] = ACTIONS(2705), - [anon_sym_if] = ACTIONS(2705), - [anon_sym_switch] = ACTIONS(2705), - [anon_sym_case] = ACTIONS(2705), - [anon_sym_default] = ACTIONS(2705), - [anon_sym_while] = ACTIONS(2705), - [anon_sym_do] = ACTIONS(2705), - [anon_sym_for] = ACTIONS(2705), - [anon_sym_return] = ACTIONS(2705), - [anon_sym_break] = ACTIONS(2705), - [anon_sym_continue] = ACTIONS(2705), - [anon_sym_goto] = ACTIONS(2705), - [anon_sym_DASH_DASH] = ACTIONS(2707), - [anon_sym_PLUS_PLUS] = ACTIONS(2707), - [anon_sym_sizeof] = ACTIONS(2705), - [sym_number_literal] = ACTIONS(2707), - [anon_sym_L_SQUOTE] = ACTIONS(2707), - [anon_sym_u_SQUOTE] = ACTIONS(2707), - [anon_sym_U_SQUOTE] = ACTIONS(2707), - [anon_sym_u8_SQUOTE] = ACTIONS(2707), - [anon_sym_SQUOTE] = ACTIONS(2707), - [anon_sym_L_DQUOTE] = ACTIONS(2707), - [anon_sym_u_DQUOTE] = ACTIONS(2707), - [anon_sym_U_DQUOTE] = ACTIONS(2707), - [anon_sym_u8_DQUOTE] = ACTIONS(2707), - [anon_sym_DQUOTE] = ACTIONS(2707), - [sym_true] = ACTIONS(2705), - [sym_false] = ACTIONS(2705), - [sym_null] = ACTIONS(2705), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2705), - [anon_sym_decltype] = ACTIONS(2705), - [anon_sym_virtual] = ACTIONS(2705), - [anon_sym_explicit] = ACTIONS(2705), - [anon_sym_typename] = ACTIONS(2705), - [anon_sym_template] = ACTIONS(2705), - [anon_sym_operator] = ACTIONS(2705), - [anon_sym_try] = ACTIONS(2705), - [anon_sym_delete] = ACTIONS(2705), - [anon_sym_throw] = ACTIONS(2705), - [anon_sym_namespace] = ACTIONS(2705), - [anon_sym_using] = ACTIONS(2705), - [anon_sym_static_assert] = ACTIONS(2705), - [anon_sym_concept] = ACTIONS(2705), - [anon_sym_co_return] = ACTIONS(2705), - [anon_sym_co_yield] = ACTIONS(2705), - [anon_sym_co_await] = ACTIONS(2705), - [anon_sym_new] = ACTIONS(2705), - [anon_sym_requires] = ACTIONS(2705), - [sym_this] = ACTIONS(2705), - [sym_nullptr] = ACTIONS(2705), - [sym_raw_string_literal] = ACTIONS(2707), + [563] = { + [ts_builtin_sym_end] = ACTIONS(2561), + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [906] = { - [ts_builtin_sym_end] = ACTIONS(2611), - [sym_identifier] = ACTIONS(2609), - [aux_sym_preproc_include_token1] = ACTIONS(2609), - [aux_sym_preproc_def_token1] = ACTIONS(2609), - [aux_sym_preproc_if_token1] = ACTIONS(2609), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2609), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2609), - [sym_preproc_directive] = ACTIONS(2609), - [anon_sym_LPAREN2] = ACTIONS(2611), - [anon_sym_BANG] = ACTIONS(2611), - [anon_sym_TILDE] = ACTIONS(2611), - [anon_sym_DASH] = ACTIONS(2609), - [anon_sym_PLUS] = ACTIONS(2609), - [anon_sym_STAR] = ACTIONS(2611), - [anon_sym_AMP_AMP] = ACTIONS(2611), - [anon_sym_AMP] = ACTIONS(2609), - [anon_sym_SEMI] = ACTIONS(2611), - [anon_sym_typedef] = ACTIONS(2609), - [anon_sym_extern] = ACTIONS(2609), - [anon_sym___attribute__] = ACTIONS(2609), - [anon_sym_COLON_COLON] = ACTIONS(2611), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2611), - [anon_sym___declspec] = ACTIONS(2609), - [anon_sym___based] = ACTIONS(2609), - [anon_sym___cdecl] = ACTIONS(2609), - [anon_sym___clrcall] = ACTIONS(2609), - [anon_sym___stdcall] = ACTIONS(2609), - [anon_sym___fastcall] = ACTIONS(2609), - [anon_sym___thiscall] = ACTIONS(2609), - [anon_sym___vectorcall] = ACTIONS(2609), - [anon_sym_LBRACE] = ACTIONS(2611), - [anon_sym_LBRACK] = ACTIONS(2609), - [anon_sym_static] = ACTIONS(2609), - [anon_sym_register] = ACTIONS(2609), - [anon_sym_inline] = ACTIONS(2609), - [anon_sym_thread_local] = ACTIONS(2609), - [anon_sym_const] = ACTIONS(2609), - [anon_sym_volatile] = ACTIONS(2609), - [anon_sym_restrict] = ACTIONS(2609), - [anon_sym__Atomic] = ACTIONS(2609), - [anon_sym_mutable] = ACTIONS(2609), - [anon_sym_constexpr] = ACTIONS(2609), - [anon_sym_constinit] = ACTIONS(2609), - [anon_sym_consteval] = ACTIONS(2609), - [anon_sym_signed] = ACTIONS(2609), - [anon_sym_unsigned] = ACTIONS(2609), - [anon_sym_long] = ACTIONS(2609), - [anon_sym_short] = ACTIONS(2609), - [sym_primitive_type] = ACTIONS(2609), - [anon_sym_enum] = ACTIONS(2609), - [anon_sym_class] = ACTIONS(2609), - [anon_sym_struct] = ACTIONS(2609), - [anon_sym_union] = ACTIONS(2609), - [anon_sym_if] = ACTIONS(2609), - [anon_sym_switch] = ACTIONS(2609), - [anon_sym_case] = ACTIONS(2609), - [anon_sym_default] = ACTIONS(2609), - [anon_sym_while] = ACTIONS(2609), - [anon_sym_do] = ACTIONS(2609), - [anon_sym_for] = ACTIONS(2609), - [anon_sym_return] = ACTIONS(2609), - [anon_sym_break] = ACTIONS(2609), - [anon_sym_continue] = ACTIONS(2609), - [anon_sym_goto] = ACTIONS(2609), - [anon_sym_DASH_DASH] = ACTIONS(2611), - [anon_sym_PLUS_PLUS] = ACTIONS(2611), - [anon_sym_sizeof] = ACTIONS(2609), - [sym_number_literal] = ACTIONS(2611), - [anon_sym_L_SQUOTE] = ACTIONS(2611), - [anon_sym_u_SQUOTE] = ACTIONS(2611), - [anon_sym_U_SQUOTE] = ACTIONS(2611), - [anon_sym_u8_SQUOTE] = ACTIONS(2611), - [anon_sym_SQUOTE] = ACTIONS(2611), - [anon_sym_L_DQUOTE] = ACTIONS(2611), - [anon_sym_u_DQUOTE] = ACTIONS(2611), - [anon_sym_U_DQUOTE] = ACTIONS(2611), - [anon_sym_u8_DQUOTE] = ACTIONS(2611), - [anon_sym_DQUOTE] = ACTIONS(2611), - [sym_true] = ACTIONS(2609), - [sym_false] = ACTIONS(2609), - [sym_null] = ACTIONS(2609), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2609), - [anon_sym_decltype] = ACTIONS(2609), - [anon_sym_virtual] = ACTIONS(2609), - [anon_sym_explicit] = ACTIONS(2609), - [anon_sym_typename] = ACTIONS(2609), - [anon_sym_template] = ACTIONS(2609), - [anon_sym_operator] = ACTIONS(2609), - [anon_sym_try] = ACTIONS(2609), - [anon_sym_delete] = ACTIONS(2609), - [anon_sym_throw] = ACTIONS(2609), - [anon_sym_namespace] = ACTIONS(2609), - [anon_sym_using] = ACTIONS(2609), - [anon_sym_static_assert] = ACTIONS(2609), - [anon_sym_concept] = ACTIONS(2609), - [anon_sym_co_return] = ACTIONS(2609), - [anon_sym_co_yield] = ACTIONS(2609), - [anon_sym_co_await] = ACTIONS(2609), - [anon_sym_new] = ACTIONS(2609), - [anon_sym_requires] = ACTIONS(2609), - [sym_this] = ACTIONS(2609), - [sym_nullptr] = ACTIONS(2609), - [sym_raw_string_literal] = ACTIONS(2611), + [564] = { + [ts_builtin_sym_end] = ACTIONS(2561), + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [907] = { - [sym_identifier] = ACTIONS(2713), - [aux_sym_preproc_include_token1] = ACTIONS(2713), - [aux_sym_preproc_def_token1] = ACTIONS(2713), - [aux_sym_preproc_if_token1] = ACTIONS(2713), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2713), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2713), - [sym_preproc_directive] = ACTIONS(2713), - [anon_sym_LPAREN2] = ACTIONS(2715), - [anon_sym_BANG] = ACTIONS(2715), - [anon_sym_TILDE] = ACTIONS(2715), - [anon_sym_DASH] = ACTIONS(2713), - [anon_sym_PLUS] = ACTIONS(2713), - [anon_sym_STAR] = ACTIONS(2715), - [anon_sym_AMP_AMP] = ACTIONS(2715), - [anon_sym_AMP] = ACTIONS(2713), - [anon_sym_SEMI] = ACTIONS(2715), - [anon_sym_typedef] = ACTIONS(2713), - [anon_sym_extern] = ACTIONS(2713), - [anon_sym___attribute__] = ACTIONS(2713), - [anon_sym_COLON_COLON] = ACTIONS(2715), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2715), - [anon_sym___declspec] = ACTIONS(2713), - [anon_sym___based] = ACTIONS(2713), - [anon_sym___cdecl] = ACTIONS(2713), - [anon_sym___clrcall] = ACTIONS(2713), - [anon_sym___stdcall] = ACTIONS(2713), - [anon_sym___fastcall] = ACTIONS(2713), - [anon_sym___thiscall] = ACTIONS(2713), - [anon_sym___vectorcall] = ACTIONS(2713), - [anon_sym_LBRACE] = ACTIONS(2715), - [anon_sym_RBRACE] = ACTIONS(2715), - [anon_sym_LBRACK] = ACTIONS(2713), - [anon_sym_static] = ACTIONS(2713), - [anon_sym_register] = ACTIONS(2713), - [anon_sym_inline] = ACTIONS(2713), - [anon_sym_thread_local] = ACTIONS(2713), - [anon_sym_const] = ACTIONS(2713), - [anon_sym_volatile] = ACTIONS(2713), - [anon_sym_restrict] = ACTIONS(2713), - [anon_sym__Atomic] = ACTIONS(2713), - [anon_sym_mutable] = ACTIONS(2713), - [anon_sym_constexpr] = ACTIONS(2713), - [anon_sym_constinit] = ACTIONS(2713), - [anon_sym_consteval] = ACTIONS(2713), - [anon_sym_signed] = ACTIONS(2713), - [anon_sym_unsigned] = ACTIONS(2713), - [anon_sym_long] = ACTIONS(2713), - [anon_sym_short] = ACTIONS(2713), - [sym_primitive_type] = ACTIONS(2713), - [anon_sym_enum] = ACTIONS(2713), - [anon_sym_class] = ACTIONS(2713), - [anon_sym_struct] = ACTIONS(2713), - [anon_sym_union] = ACTIONS(2713), - [anon_sym_if] = ACTIONS(2713), - [anon_sym_switch] = ACTIONS(2713), - [anon_sym_case] = ACTIONS(2713), - [anon_sym_default] = ACTIONS(2713), - [anon_sym_while] = ACTIONS(2713), - [anon_sym_do] = ACTIONS(2713), - [anon_sym_for] = ACTIONS(2713), - [anon_sym_return] = ACTIONS(2713), - [anon_sym_break] = ACTIONS(2713), - [anon_sym_continue] = ACTIONS(2713), - [anon_sym_goto] = ACTIONS(2713), - [anon_sym_DASH_DASH] = ACTIONS(2715), - [anon_sym_PLUS_PLUS] = ACTIONS(2715), - [anon_sym_sizeof] = ACTIONS(2713), - [sym_number_literal] = ACTIONS(2715), - [anon_sym_L_SQUOTE] = ACTIONS(2715), - [anon_sym_u_SQUOTE] = ACTIONS(2715), - [anon_sym_U_SQUOTE] = ACTIONS(2715), - [anon_sym_u8_SQUOTE] = ACTIONS(2715), - [anon_sym_SQUOTE] = ACTIONS(2715), - [anon_sym_L_DQUOTE] = ACTIONS(2715), - [anon_sym_u_DQUOTE] = ACTIONS(2715), - [anon_sym_U_DQUOTE] = ACTIONS(2715), - [anon_sym_u8_DQUOTE] = ACTIONS(2715), - [anon_sym_DQUOTE] = ACTIONS(2715), - [sym_true] = ACTIONS(2713), - [sym_false] = ACTIONS(2713), - [sym_null] = ACTIONS(2713), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2713), - [anon_sym_decltype] = ACTIONS(2713), - [anon_sym_virtual] = ACTIONS(2713), - [anon_sym_explicit] = ACTIONS(2713), - [anon_sym_typename] = ACTIONS(2713), - [anon_sym_template] = ACTIONS(2713), - [anon_sym_operator] = ACTIONS(2713), - [anon_sym_try] = ACTIONS(2713), - [anon_sym_delete] = ACTIONS(2713), - [anon_sym_throw] = ACTIONS(2713), - [anon_sym_namespace] = ACTIONS(2713), - [anon_sym_using] = ACTIONS(2713), - [anon_sym_static_assert] = ACTIONS(2713), - [anon_sym_concept] = ACTIONS(2713), - [anon_sym_co_return] = ACTIONS(2713), - [anon_sym_co_yield] = ACTIONS(2713), - [anon_sym_co_await] = ACTIONS(2713), - [anon_sym_new] = ACTIONS(2713), - [anon_sym_requires] = ACTIONS(2713), - [sym_this] = ACTIONS(2713), - [sym_nullptr] = ACTIONS(2713), - [sym_raw_string_literal] = ACTIONS(2715), + [565] = { + [ts_builtin_sym_end] = ACTIONS(2553), + [sym_identifier] = ACTIONS(2551), + [aux_sym_preproc_include_token1] = ACTIONS(2551), + [aux_sym_preproc_def_token1] = ACTIONS(2551), + [aux_sym_preproc_if_token1] = ACTIONS(2551), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2551), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2551), + [sym_preproc_directive] = ACTIONS(2551), + [anon_sym_LPAREN2] = ACTIONS(2553), + [anon_sym_BANG] = ACTIONS(2553), + [anon_sym_TILDE] = ACTIONS(2553), + [anon_sym_DASH] = ACTIONS(2551), + [anon_sym_PLUS] = ACTIONS(2551), + [anon_sym_STAR] = ACTIONS(2553), + [anon_sym_AMP_AMP] = ACTIONS(2553), + [anon_sym_AMP] = ACTIONS(2551), + [anon_sym_SEMI] = ACTIONS(2553), + [anon_sym_typedef] = ACTIONS(2551), + [anon_sym_extern] = ACTIONS(2551), + [anon_sym___attribute__] = ACTIONS(2551), + [anon_sym_COLON_COLON] = ACTIONS(2553), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2553), + [anon_sym___declspec] = ACTIONS(2551), + [anon_sym___based] = ACTIONS(2551), + [anon_sym___cdecl] = ACTIONS(2551), + [anon_sym___clrcall] = ACTIONS(2551), + [anon_sym___stdcall] = ACTIONS(2551), + [anon_sym___fastcall] = ACTIONS(2551), + [anon_sym___thiscall] = ACTIONS(2551), + [anon_sym___vectorcall] = ACTIONS(2551), + [anon_sym_LBRACE] = ACTIONS(2553), + [anon_sym_LBRACK] = ACTIONS(2551), + [anon_sym_static] = ACTIONS(2551), + [anon_sym_register] = ACTIONS(2551), + [anon_sym_inline] = ACTIONS(2551), + [anon_sym_thread_local] = ACTIONS(2551), + [anon_sym_const] = ACTIONS(2551), + [anon_sym_volatile] = ACTIONS(2551), + [anon_sym_restrict] = ACTIONS(2551), + [anon_sym__Atomic] = ACTIONS(2551), + [anon_sym_mutable] = ACTIONS(2551), + [anon_sym_constexpr] = ACTIONS(2551), + [anon_sym_constinit] = ACTIONS(2551), + [anon_sym_consteval] = ACTIONS(2551), + [anon_sym_signed] = ACTIONS(2551), + [anon_sym_unsigned] = ACTIONS(2551), + [anon_sym_long] = ACTIONS(2551), + [anon_sym_short] = ACTIONS(2551), + [sym_primitive_type] = ACTIONS(2551), + [anon_sym_enum] = ACTIONS(2551), + [anon_sym_class] = ACTIONS(2551), + [anon_sym_struct] = ACTIONS(2551), + [anon_sym_union] = ACTIONS(2551), + [anon_sym_if] = ACTIONS(2551), + [anon_sym_else] = ACTIONS(2551), + [anon_sym_switch] = ACTIONS(2551), + [anon_sym_case] = ACTIONS(2551), + [anon_sym_default] = ACTIONS(2551), + [anon_sym_while] = ACTIONS(2551), + [anon_sym_do] = ACTIONS(2551), + [anon_sym_for] = ACTIONS(2551), + [anon_sym_return] = ACTIONS(2551), + [anon_sym_break] = ACTIONS(2551), + [anon_sym_continue] = ACTIONS(2551), + [anon_sym_goto] = ACTIONS(2551), + [anon_sym_not] = ACTIONS(2551), + [anon_sym_compl] = ACTIONS(2551), + [anon_sym_DASH_DASH] = ACTIONS(2553), + [anon_sym_PLUS_PLUS] = ACTIONS(2553), + [anon_sym_sizeof] = ACTIONS(2551), + [sym_number_literal] = ACTIONS(2553), + [anon_sym_L_SQUOTE] = ACTIONS(2553), + [anon_sym_u_SQUOTE] = ACTIONS(2553), + [anon_sym_U_SQUOTE] = ACTIONS(2553), + [anon_sym_u8_SQUOTE] = ACTIONS(2553), + [anon_sym_SQUOTE] = ACTIONS(2553), + [anon_sym_L_DQUOTE] = ACTIONS(2553), + [anon_sym_u_DQUOTE] = ACTIONS(2553), + [anon_sym_U_DQUOTE] = ACTIONS(2553), + [anon_sym_u8_DQUOTE] = ACTIONS(2553), + [anon_sym_DQUOTE] = ACTIONS(2553), + [sym_true] = ACTIONS(2551), + [sym_false] = ACTIONS(2551), + [sym_null] = ACTIONS(2551), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2551), + [anon_sym_decltype] = ACTIONS(2551), + [anon_sym_virtual] = ACTIONS(2551), + [anon_sym_explicit] = ACTIONS(2551), + [anon_sym_typename] = ACTIONS(2551), + [anon_sym_template] = ACTIONS(2551), + [anon_sym_operator] = ACTIONS(2551), + [anon_sym_try] = ACTIONS(2551), + [anon_sym_delete] = ACTIONS(2551), + [anon_sym_throw] = ACTIONS(2551), + [anon_sym_namespace] = ACTIONS(2551), + [anon_sym_using] = ACTIONS(2551), + [anon_sym_static_assert] = ACTIONS(2551), + [anon_sym_concept] = ACTIONS(2551), + [anon_sym_co_return] = ACTIONS(2551), + [anon_sym_co_yield] = ACTIONS(2551), + [anon_sym_co_await] = ACTIONS(2551), + [anon_sym_new] = ACTIONS(2551), + [anon_sym_requires] = ACTIONS(2551), + [sym_this] = ACTIONS(2551), + [sym_nullptr] = ACTIONS(2551), + [sym_raw_string_literal] = ACTIONS(2553), }, - [908] = { - [ts_builtin_sym_end] = ACTIONS(2785), - [sym_identifier] = ACTIONS(2783), - [aux_sym_preproc_include_token1] = ACTIONS(2783), - [aux_sym_preproc_def_token1] = ACTIONS(2783), - [aux_sym_preproc_if_token1] = ACTIONS(2783), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2783), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2783), - [sym_preproc_directive] = ACTIONS(2783), - [anon_sym_LPAREN2] = ACTIONS(2785), - [anon_sym_BANG] = ACTIONS(2785), - [anon_sym_TILDE] = ACTIONS(2785), - [anon_sym_DASH] = ACTIONS(2783), - [anon_sym_PLUS] = ACTIONS(2783), - [anon_sym_STAR] = ACTIONS(2785), - [anon_sym_AMP_AMP] = ACTIONS(2785), - [anon_sym_AMP] = ACTIONS(2783), - [anon_sym_SEMI] = ACTIONS(2785), - [anon_sym_typedef] = ACTIONS(2783), - [anon_sym_extern] = ACTIONS(2783), - [anon_sym___attribute__] = ACTIONS(2783), - [anon_sym_COLON_COLON] = ACTIONS(2785), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2785), - [anon_sym___declspec] = ACTIONS(2783), - [anon_sym___based] = ACTIONS(2783), - [anon_sym___cdecl] = ACTIONS(2783), - [anon_sym___clrcall] = ACTIONS(2783), - [anon_sym___stdcall] = ACTIONS(2783), - [anon_sym___fastcall] = ACTIONS(2783), - [anon_sym___thiscall] = ACTIONS(2783), - [anon_sym___vectorcall] = ACTIONS(2783), - [anon_sym_LBRACE] = ACTIONS(2785), - [anon_sym_LBRACK] = ACTIONS(2783), - [anon_sym_static] = ACTIONS(2783), - [anon_sym_register] = ACTIONS(2783), - [anon_sym_inline] = ACTIONS(2783), - [anon_sym_thread_local] = ACTIONS(2783), - [anon_sym_const] = ACTIONS(2783), - [anon_sym_volatile] = ACTIONS(2783), - [anon_sym_restrict] = ACTIONS(2783), - [anon_sym__Atomic] = ACTIONS(2783), - [anon_sym_mutable] = ACTIONS(2783), - [anon_sym_constexpr] = ACTIONS(2783), - [anon_sym_constinit] = ACTIONS(2783), - [anon_sym_consteval] = ACTIONS(2783), - [anon_sym_signed] = ACTIONS(2783), - [anon_sym_unsigned] = ACTIONS(2783), - [anon_sym_long] = ACTIONS(2783), - [anon_sym_short] = ACTIONS(2783), - [sym_primitive_type] = ACTIONS(2783), - [anon_sym_enum] = ACTIONS(2783), - [anon_sym_class] = ACTIONS(2783), - [anon_sym_struct] = ACTIONS(2783), - [anon_sym_union] = ACTIONS(2783), - [anon_sym_if] = ACTIONS(2783), - [anon_sym_switch] = ACTIONS(2783), - [anon_sym_case] = ACTIONS(2783), - [anon_sym_default] = ACTIONS(2783), - [anon_sym_while] = ACTIONS(2783), - [anon_sym_do] = ACTIONS(2783), - [anon_sym_for] = ACTIONS(2783), - [anon_sym_return] = ACTIONS(2783), - [anon_sym_break] = ACTIONS(2783), - [anon_sym_continue] = ACTIONS(2783), - [anon_sym_goto] = ACTIONS(2783), - [anon_sym_DASH_DASH] = ACTIONS(2785), - [anon_sym_PLUS_PLUS] = ACTIONS(2785), - [anon_sym_sizeof] = ACTIONS(2783), - [sym_number_literal] = ACTIONS(2785), - [anon_sym_L_SQUOTE] = ACTIONS(2785), - [anon_sym_u_SQUOTE] = ACTIONS(2785), - [anon_sym_U_SQUOTE] = ACTIONS(2785), - [anon_sym_u8_SQUOTE] = ACTIONS(2785), - [anon_sym_SQUOTE] = ACTIONS(2785), - [anon_sym_L_DQUOTE] = ACTIONS(2785), - [anon_sym_u_DQUOTE] = ACTIONS(2785), - [anon_sym_U_DQUOTE] = ACTIONS(2785), - [anon_sym_u8_DQUOTE] = ACTIONS(2785), - [anon_sym_DQUOTE] = ACTIONS(2785), - [sym_true] = ACTIONS(2783), - [sym_false] = ACTIONS(2783), - [sym_null] = ACTIONS(2783), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2783), - [anon_sym_decltype] = ACTIONS(2783), - [anon_sym_virtual] = ACTIONS(2783), - [anon_sym_explicit] = ACTIONS(2783), - [anon_sym_typename] = ACTIONS(2783), - [anon_sym_template] = ACTIONS(2783), - [anon_sym_operator] = ACTIONS(2783), - [anon_sym_try] = ACTIONS(2783), - [anon_sym_delete] = ACTIONS(2783), - [anon_sym_throw] = ACTIONS(2783), - [anon_sym_namespace] = ACTIONS(2783), - [anon_sym_using] = ACTIONS(2783), - [anon_sym_static_assert] = ACTIONS(2783), - [anon_sym_concept] = ACTIONS(2783), - [anon_sym_co_return] = ACTIONS(2783), - [anon_sym_co_yield] = ACTIONS(2783), - [anon_sym_co_await] = ACTIONS(2783), - [anon_sym_new] = ACTIONS(2783), - [anon_sym_requires] = ACTIONS(2783), - [sym_this] = ACTIONS(2783), - [sym_nullptr] = ACTIONS(2783), - [sym_raw_string_literal] = ACTIONS(2785), + [566] = { + [ts_builtin_sym_end] = ACTIONS(2605), + [sym_identifier] = ACTIONS(2603), + [aux_sym_preproc_include_token1] = ACTIONS(2603), + [aux_sym_preproc_def_token1] = ACTIONS(2603), + [aux_sym_preproc_if_token1] = ACTIONS(2603), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2603), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2603), + [sym_preproc_directive] = ACTIONS(2603), + [anon_sym_LPAREN2] = ACTIONS(2605), + [anon_sym_BANG] = ACTIONS(2605), + [anon_sym_TILDE] = ACTIONS(2605), + [anon_sym_DASH] = ACTIONS(2603), + [anon_sym_PLUS] = ACTIONS(2603), + [anon_sym_STAR] = ACTIONS(2605), + [anon_sym_AMP_AMP] = ACTIONS(2605), + [anon_sym_AMP] = ACTIONS(2603), + [anon_sym_SEMI] = ACTIONS(2605), + [anon_sym_typedef] = ACTIONS(2603), + [anon_sym_extern] = ACTIONS(2603), + [anon_sym___attribute__] = ACTIONS(2603), + [anon_sym_COLON_COLON] = ACTIONS(2605), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2605), + [anon_sym___declspec] = ACTIONS(2603), + [anon_sym___based] = ACTIONS(2603), + [anon_sym___cdecl] = ACTIONS(2603), + [anon_sym___clrcall] = ACTIONS(2603), + [anon_sym___stdcall] = ACTIONS(2603), + [anon_sym___fastcall] = ACTIONS(2603), + [anon_sym___thiscall] = ACTIONS(2603), + [anon_sym___vectorcall] = ACTIONS(2603), + [anon_sym_LBRACE] = ACTIONS(2605), + [anon_sym_LBRACK] = ACTIONS(2603), + [anon_sym_static] = ACTIONS(2603), + [anon_sym_register] = ACTIONS(2603), + [anon_sym_inline] = ACTIONS(2603), + [anon_sym_thread_local] = ACTIONS(2603), + [anon_sym_const] = ACTIONS(2603), + [anon_sym_volatile] = ACTIONS(2603), + [anon_sym_restrict] = ACTIONS(2603), + [anon_sym__Atomic] = ACTIONS(2603), + [anon_sym_mutable] = ACTIONS(2603), + [anon_sym_constexpr] = ACTIONS(2603), + [anon_sym_constinit] = ACTIONS(2603), + [anon_sym_consteval] = ACTIONS(2603), + [anon_sym_signed] = ACTIONS(2603), + [anon_sym_unsigned] = ACTIONS(2603), + [anon_sym_long] = ACTIONS(2603), + [anon_sym_short] = ACTIONS(2603), + [sym_primitive_type] = ACTIONS(2603), + [anon_sym_enum] = ACTIONS(2603), + [anon_sym_class] = ACTIONS(2603), + [anon_sym_struct] = ACTIONS(2603), + [anon_sym_union] = ACTIONS(2603), + [anon_sym_if] = ACTIONS(2603), + [anon_sym_else] = ACTIONS(2603), + [anon_sym_switch] = ACTIONS(2603), + [anon_sym_case] = ACTIONS(2603), + [anon_sym_default] = ACTIONS(2603), + [anon_sym_while] = ACTIONS(2603), + [anon_sym_do] = ACTIONS(2603), + [anon_sym_for] = ACTIONS(2603), + [anon_sym_return] = ACTIONS(2603), + [anon_sym_break] = ACTIONS(2603), + [anon_sym_continue] = ACTIONS(2603), + [anon_sym_goto] = ACTIONS(2603), + [anon_sym_not] = ACTIONS(2603), + [anon_sym_compl] = ACTIONS(2603), + [anon_sym_DASH_DASH] = ACTIONS(2605), + [anon_sym_PLUS_PLUS] = ACTIONS(2605), + [anon_sym_sizeof] = ACTIONS(2603), + [sym_number_literal] = ACTIONS(2605), + [anon_sym_L_SQUOTE] = ACTIONS(2605), + [anon_sym_u_SQUOTE] = ACTIONS(2605), + [anon_sym_U_SQUOTE] = ACTIONS(2605), + [anon_sym_u8_SQUOTE] = ACTIONS(2605), + [anon_sym_SQUOTE] = ACTIONS(2605), + [anon_sym_L_DQUOTE] = ACTIONS(2605), + [anon_sym_u_DQUOTE] = ACTIONS(2605), + [anon_sym_U_DQUOTE] = ACTIONS(2605), + [anon_sym_u8_DQUOTE] = ACTIONS(2605), + [anon_sym_DQUOTE] = ACTIONS(2605), + [sym_true] = ACTIONS(2603), + [sym_false] = ACTIONS(2603), + [sym_null] = ACTIONS(2603), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2603), + [anon_sym_decltype] = ACTIONS(2603), + [anon_sym_virtual] = ACTIONS(2603), + [anon_sym_explicit] = ACTIONS(2603), + [anon_sym_typename] = ACTIONS(2603), + [anon_sym_template] = ACTIONS(2603), + [anon_sym_operator] = ACTIONS(2603), + [anon_sym_try] = ACTIONS(2603), + [anon_sym_delete] = ACTIONS(2603), + [anon_sym_throw] = ACTIONS(2603), + [anon_sym_namespace] = ACTIONS(2603), + [anon_sym_using] = ACTIONS(2603), + [anon_sym_static_assert] = ACTIONS(2603), + [anon_sym_concept] = ACTIONS(2603), + [anon_sym_co_return] = ACTIONS(2603), + [anon_sym_co_yield] = ACTIONS(2603), + [anon_sym_co_await] = ACTIONS(2603), + [anon_sym_new] = ACTIONS(2603), + [anon_sym_requires] = ACTIONS(2603), + [sym_this] = ACTIONS(2603), + [sym_nullptr] = ACTIONS(2603), + [sym_raw_string_literal] = ACTIONS(2605), }, - [909] = { - [sym_identifier] = ACTIONS(2721), - [aux_sym_preproc_include_token1] = ACTIONS(2721), - [aux_sym_preproc_def_token1] = ACTIONS(2721), - [aux_sym_preproc_if_token1] = ACTIONS(2721), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2721), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2721), - [sym_preproc_directive] = ACTIONS(2721), - [anon_sym_LPAREN2] = ACTIONS(2723), - [anon_sym_BANG] = ACTIONS(2723), - [anon_sym_TILDE] = ACTIONS(2723), - [anon_sym_DASH] = ACTIONS(2721), - [anon_sym_PLUS] = ACTIONS(2721), - [anon_sym_STAR] = ACTIONS(2723), - [anon_sym_AMP_AMP] = ACTIONS(2723), - [anon_sym_AMP] = ACTIONS(2721), - [anon_sym_SEMI] = ACTIONS(2723), - [anon_sym_typedef] = ACTIONS(2721), - [anon_sym_extern] = ACTIONS(2721), - [anon_sym___attribute__] = ACTIONS(2721), - [anon_sym_COLON_COLON] = ACTIONS(2723), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2723), - [anon_sym___declspec] = ACTIONS(2721), - [anon_sym___based] = ACTIONS(2721), - [anon_sym___cdecl] = ACTIONS(2721), - [anon_sym___clrcall] = ACTIONS(2721), - [anon_sym___stdcall] = ACTIONS(2721), - [anon_sym___fastcall] = ACTIONS(2721), - [anon_sym___thiscall] = ACTIONS(2721), - [anon_sym___vectorcall] = ACTIONS(2721), - [anon_sym_LBRACE] = ACTIONS(2723), - [anon_sym_RBRACE] = ACTIONS(2723), - [anon_sym_LBRACK] = ACTIONS(2721), - [anon_sym_static] = ACTIONS(2721), - [anon_sym_register] = ACTIONS(2721), - [anon_sym_inline] = ACTIONS(2721), - [anon_sym_thread_local] = ACTIONS(2721), - [anon_sym_const] = ACTIONS(2721), - [anon_sym_volatile] = ACTIONS(2721), - [anon_sym_restrict] = ACTIONS(2721), - [anon_sym__Atomic] = ACTIONS(2721), - [anon_sym_mutable] = ACTIONS(2721), - [anon_sym_constexpr] = ACTIONS(2721), - [anon_sym_constinit] = ACTIONS(2721), - [anon_sym_consteval] = ACTIONS(2721), - [anon_sym_signed] = ACTIONS(2721), - [anon_sym_unsigned] = ACTIONS(2721), - [anon_sym_long] = ACTIONS(2721), - [anon_sym_short] = ACTIONS(2721), - [sym_primitive_type] = ACTIONS(2721), - [anon_sym_enum] = ACTIONS(2721), - [anon_sym_class] = ACTIONS(2721), - [anon_sym_struct] = ACTIONS(2721), - [anon_sym_union] = ACTIONS(2721), - [anon_sym_if] = ACTIONS(2721), - [anon_sym_switch] = ACTIONS(2721), - [anon_sym_case] = ACTIONS(2721), - [anon_sym_default] = ACTIONS(2721), - [anon_sym_while] = ACTIONS(2721), - [anon_sym_do] = ACTIONS(2721), - [anon_sym_for] = ACTIONS(2721), - [anon_sym_return] = ACTIONS(2721), - [anon_sym_break] = ACTIONS(2721), - [anon_sym_continue] = ACTIONS(2721), - [anon_sym_goto] = ACTIONS(2721), - [anon_sym_DASH_DASH] = ACTIONS(2723), - [anon_sym_PLUS_PLUS] = ACTIONS(2723), - [anon_sym_sizeof] = ACTIONS(2721), - [sym_number_literal] = ACTIONS(2723), - [anon_sym_L_SQUOTE] = ACTIONS(2723), - [anon_sym_u_SQUOTE] = ACTIONS(2723), - [anon_sym_U_SQUOTE] = ACTIONS(2723), - [anon_sym_u8_SQUOTE] = ACTIONS(2723), - [anon_sym_SQUOTE] = ACTIONS(2723), - [anon_sym_L_DQUOTE] = ACTIONS(2723), - [anon_sym_u_DQUOTE] = ACTIONS(2723), - [anon_sym_U_DQUOTE] = ACTIONS(2723), - [anon_sym_u8_DQUOTE] = ACTIONS(2723), - [anon_sym_DQUOTE] = ACTIONS(2723), - [sym_true] = ACTIONS(2721), - [sym_false] = ACTIONS(2721), - [sym_null] = ACTIONS(2721), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2721), - [anon_sym_decltype] = ACTIONS(2721), - [anon_sym_virtual] = ACTIONS(2721), - [anon_sym_explicit] = ACTIONS(2721), - [anon_sym_typename] = ACTIONS(2721), - [anon_sym_template] = ACTIONS(2721), - [anon_sym_operator] = ACTIONS(2721), - [anon_sym_try] = ACTIONS(2721), - [anon_sym_delete] = ACTIONS(2721), - [anon_sym_throw] = ACTIONS(2721), - [anon_sym_namespace] = ACTIONS(2721), - [anon_sym_using] = ACTIONS(2721), - [anon_sym_static_assert] = ACTIONS(2721), - [anon_sym_concept] = ACTIONS(2721), - [anon_sym_co_return] = ACTIONS(2721), - [anon_sym_co_yield] = ACTIONS(2721), - [anon_sym_co_await] = ACTIONS(2721), - [anon_sym_new] = ACTIONS(2721), - [anon_sym_requires] = ACTIONS(2721), - [sym_this] = ACTIONS(2721), - [sym_nullptr] = ACTIONS(2721), - [sym_raw_string_literal] = ACTIONS(2723), + [567] = { + [sym_identifier] = ACTIONS(2521), + [aux_sym_preproc_include_token1] = ACTIONS(2521), + [aux_sym_preproc_def_token1] = ACTIONS(2521), + [aux_sym_preproc_if_token1] = ACTIONS(2521), + [aux_sym_preproc_if_token2] = ACTIONS(2521), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2521), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2521), + [sym_preproc_directive] = ACTIONS(2521), + [anon_sym_LPAREN2] = ACTIONS(2523), + [anon_sym_BANG] = ACTIONS(2523), + [anon_sym_TILDE] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2521), + [anon_sym_PLUS] = ACTIONS(2521), + [anon_sym_STAR] = ACTIONS(2523), + [anon_sym_AMP_AMP] = ACTIONS(2523), + [anon_sym_AMP] = ACTIONS(2521), + [anon_sym_SEMI] = ACTIONS(2523), + [anon_sym_typedef] = ACTIONS(2521), + [anon_sym_extern] = ACTIONS(2521), + [anon_sym___attribute__] = ACTIONS(2521), + [anon_sym_COLON_COLON] = ACTIONS(2523), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2523), + [anon_sym___declspec] = ACTIONS(2521), + [anon_sym___based] = ACTIONS(2521), + [anon_sym___cdecl] = ACTIONS(2521), + [anon_sym___clrcall] = ACTIONS(2521), + [anon_sym___stdcall] = ACTIONS(2521), + [anon_sym___fastcall] = ACTIONS(2521), + [anon_sym___thiscall] = ACTIONS(2521), + [anon_sym___vectorcall] = ACTIONS(2521), + [anon_sym_LBRACE] = ACTIONS(2523), + [anon_sym_LBRACK] = ACTIONS(2521), + [anon_sym_static] = ACTIONS(2521), + [anon_sym_register] = ACTIONS(2521), + [anon_sym_inline] = ACTIONS(2521), + [anon_sym_thread_local] = ACTIONS(2521), + [anon_sym_const] = ACTIONS(2521), + [anon_sym_volatile] = ACTIONS(2521), + [anon_sym_restrict] = ACTIONS(2521), + [anon_sym__Atomic] = ACTIONS(2521), + [anon_sym_mutable] = ACTIONS(2521), + [anon_sym_constexpr] = ACTIONS(2521), + [anon_sym_constinit] = ACTIONS(2521), + [anon_sym_consteval] = ACTIONS(2521), + [anon_sym_signed] = ACTIONS(2521), + [anon_sym_unsigned] = ACTIONS(2521), + [anon_sym_long] = ACTIONS(2521), + [anon_sym_short] = ACTIONS(2521), + [sym_primitive_type] = ACTIONS(2521), + [anon_sym_enum] = ACTIONS(2521), + [anon_sym_class] = ACTIONS(2521), + [anon_sym_struct] = ACTIONS(2521), + [anon_sym_union] = ACTIONS(2521), + [anon_sym_if] = ACTIONS(2521), + [anon_sym_else] = ACTIONS(2521), + [anon_sym_switch] = ACTIONS(2521), + [anon_sym_case] = ACTIONS(2521), + [anon_sym_default] = ACTIONS(2521), + [anon_sym_while] = ACTIONS(2521), + [anon_sym_do] = ACTIONS(2521), + [anon_sym_for] = ACTIONS(2521), + [anon_sym_return] = ACTIONS(2521), + [anon_sym_break] = ACTIONS(2521), + [anon_sym_continue] = ACTIONS(2521), + [anon_sym_goto] = ACTIONS(2521), + [anon_sym_not] = ACTIONS(2521), + [anon_sym_compl] = ACTIONS(2521), + [anon_sym_DASH_DASH] = ACTIONS(2523), + [anon_sym_PLUS_PLUS] = ACTIONS(2523), + [anon_sym_sizeof] = ACTIONS(2521), + [sym_number_literal] = ACTIONS(2523), + [anon_sym_L_SQUOTE] = ACTIONS(2523), + [anon_sym_u_SQUOTE] = ACTIONS(2523), + [anon_sym_U_SQUOTE] = ACTIONS(2523), + [anon_sym_u8_SQUOTE] = ACTIONS(2523), + [anon_sym_SQUOTE] = ACTIONS(2523), + [anon_sym_L_DQUOTE] = ACTIONS(2523), + [anon_sym_u_DQUOTE] = ACTIONS(2523), + [anon_sym_U_DQUOTE] = ACTIONS(2523), + [anon_sym_u8_DQUOTE] = ACTIONS(2523), + [anon_sym_DQUOTE] = ACTIONS(2523), + [sym_true] = ACTIONS(2521), + [sym_false] = ACTIONS(2521), + [sym_null] = ACTIONS(2521), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2521), + [anon_sym_decltype] = ACTIONS(2521), + [anon_sym_virtual] = ACTIONS(2521), + [anon_sym_explicit] = ACTIONS(2521), + [anon_sym_typename] = ACTIONS(2521), + [anon_sym_template] = ACTIONS(2521), + [anon_sym_operator] = ACTIONS(2521), + [anon_sym_try] = ACTIONS(2521), + [anon_sym_delete] = ACTIONS(2521), + [anon_sym_throw] = ACTIONS(2521), + [anon_sym_namespace] = ACTIONS(2521), + [anon_sym_using] = ACTIONS(2521), + [anon_sym_static_assert] = ACTIONS(2521), + [anon_sym_concept] = ACTIONS(2521), + [anon_sym_co_return] = ACTIONS(2521), + [anon_sym_co_yield] = ACTIONS(2521), + [anon_sym_co_await] = ACTIONS(2521), + [anon_sym_new] = ACTIONS(2521), + [anon_sym_requires] = ACTIONS(2521), + [sym_this] = ACTIONS(2521), + [sym_nullptr] = ACTIONS(2521), + [sym_raw_string_literal] = ACTIONS(2523), }, - [910] = { - [sym_identifier] = ACTIONS(2729), - [aux_sym_preproc_include_token1] = ACTIONS(2729), - [aux_sym_preproc_def_token1] = ACTIONS(2729), - [aux_sym_preproc_if_token1] = ACTIONS(2729), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2729), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2729), - [sym_preproc_directive] = ACTIONS(2729), - [anon_sym_LPAREN2] = ACTIONS(2731), - [anon_sym_BANG] = ACTIONS(2731), - [anon_sym_TILDE] = ACTIONS(2731), - [anon_sym_DASH] = ACTIONS(2729), - [anon_sym_PLUS] = ACTIONS(2729), - [anon_sym_STAR] = ACTIONS(2731), - [anon_sym_AMP_AMP] = ACTIONS(2731), - [anon_sym_AMP] = ACTIONS(2729), - [anon_sym_SEMI] = ACTIONS(2731), - [anon_sym_typedef] = ACTIONS(2729), - [anon_sym_extern] = ACTIONS(2729), - [anon_sym___attribute__] = ACTIONS(2729), - [anon_sym_COLON_COLON] = ACTIONS(2731), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2731), - [anon_sym___declspec] = ACTIONS(2729), - [anon_sym___based] = ACTIONS(2729), - [anon_sym___cdecl] = ACTIONS(2729), - [anon_sym___clrcall] = ACTIONS(2729), - [anon_sym___stdcall] = ACTIONS(2729), - [anon_sym___fastcall] = ACTIONS(2729), - [anon_sym___thiscall] = ACTIONS(2729), - [anon_sym___vectorcall] = ACTIONS(2729), - [anon_sym_LBRACE] = ACTIONS(2731), - [anon_sym_RBRACE] = ACTIONS(2731), - [anon_sym_LBRACK] = ACTIONS(2729), - [anon_sym_static] = ACTIONS(2729), - [anon_sym_register] = ACTIONS(2729), - [anon_sym_inline] = ACTIONS(2729), - [anon_sym_thread_local] = ACTIONS(2729), - [anon_sym_const] = ACTIONS(2729), - [anon_sym_volatile] = ACTIONS(2729), - [anon_sym_restrict] = ACTIONS(2729), - [anon_sym__Atomic] = ACTIONS(2729), - [anon_sym_mutable] = ACTIONS(2729), - [anon_sym_constexpr] = ACTIONS(2729), - [anon_sym_constinit] = ACTIONS(2729), - [anon_sym_consteval] = ACTIONS(2729), - [anon_sym_signed] = ACTIONS(2729), - [anon_sym_unsigned] = ACTIONS(2729), - [anon_sym_long] = ACTIONS(2729), - [anon_sym_short] = ACTIONS(2729), - [sym_primitive_type] = ACTIONS(2729), - [anon_sym_enum] = ACTIONS(2729), - [anon_sym_class] = ACTIONS(2729), - [anon_sym_struct] = ACTIONS(2729), - [anon_sym_union] = ACTIONS(2729), - [anon_sym_if] = ACTIONS(2729), - [anon_sym_switch] = ACTIONS(2729), - [anon_sym_case] = ACTIONS(2729), - [anon_sym_default] = ACTIONS(2729), - [anon_sym_while] = ACTIONS(2729), - [anon_sym_do] = ACTIONS(2729), - [anon_sym_for] = ACTIONS(2729), - [anon_sym_return] = ACTIONS(2729), - [anon_sym_break] = ACTIONS(2729), - [anon_sym_continue] = ACTIONS(2729), - [anon_sym_goto] = ACTIONS(2729), - [anon_sym_DASH_DASH] = ACTIONS(2731), - [anon_sym_PLUS_PLUS] = ACTIONS(2731), - [anon_sym_sizeof] = ACTIONS(2729), - [sym_number_literal] = ACTIONS(2731), - [anon_sym_L_SQUOTE] = ACTIONS(2731), - [anon_sym_u_SQUOTE] = ACTIONS(2731), - [anon_sym_U_SQUOTE] = ACTIONS(2731), - [anon_sym_u8_SQUOTE] = ACTIONS(2731), - [anon_sym_SQUOTE] = ACTIONS(2731), - [anon_sym_L_DQUOTE] = ACTIONS(2731), - [anon_sym_u_DQUOTE] = ACTIONS(2731), - [anon_sym_U_DQUOTE] = ACTIONS(2731), - [anon_sym_u8_DQUOTE] = ACTIONS(2731), - [anon_sym_DQUOTE] = ACTIONS(2731), - [sym_true] = ACTIONS(2729), - [sym_false] = ACTIONS(2729), - [sym_null] = ACTIONS(2729), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2729), - [anon_sym_decltype] = ACTIONS(2729), - [anon_sym_virtual] = ACTIONS(2729), - [anon_sym_explicit] = ACTIONS(2729), - [anon_sym_typename] = ACTIONS(2729), - [anon_sym_template] = ACTIONS(2729), - [anon_sym_operator] = ACTIONS(2729), - [anon_sym_try] = ACTIONS(2729), - [anon_sym_delete] = ACTIONS(2729), - [anon_sym_throw] = ACTIONS(2729), - [anon_sym_namespace] = ACTIONS(2729), - [anon_sym_using] = ACTIONS(2729), - [anon_sym_static_assert] = ACTIONS(2729), - [anon_sym_concept] = ACTIONS(2729), - [anon_sym_co_return] = ACTIONS(2729), - [anon_sym_co_yield] = ACTIONS(2729), - [anon_sym_co_await] = ACTIONS(2729), - [anon_sym_new] = ACTIONS(2729), - [anon_sym_requires] = ACTIONS(2729), - [sym_this] = ACTIONS(2729), - [sym_nullptr] = ACTIONS(2729), - [sym_raw_string_literal] = ACTIONS(2731), - }, - [911] = { - [sym_identifier] = ACTIONS(2587), - [aux_sym_preproc_include_token1] = ACTIONS(2587), - [aux_sym_preproc_def_token1] = ACTIONS(2587), - [aux_sym_preproc_if_token1] = ACTIONS(2587), - [aux_sym_preproc_if_token2] = ACTIONS(2587), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2587), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2587), - [sym_preproc_directive] = ACTIONS(2587), - [anon_sym_LPAREN2] = ACTIONS(2589), - [anon_sym_BANG] = ACTIONS(2589), - [anon_sym_TILDE] = ACTIONS(2589), - [anon_sym_DASH] = ACTIONS(2587), - [anon_sym_PLUS] = ACTIONS(2587), - [anon_sym_STAR] = ACTIONS(2589), - [anon_sym_AMP_AMP] = ACTIONS(2589), - [anon_sym_AMP] = ACTIONS(2587), - [anon_sym_SEMI] = ACTIONS(2589), - [anon_sym_typedef] = ACTIONS(2587), - [anon_sym_extern] = ACTIONS(2587), - [anon_sym___attribute__] = ACTIONS(2587), - [anon_sym_COLON_COLON] = ACTIONS(2589), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2589), - [anon_sym___declspec] = ACTIONS(2587), - [anon_sym___based] = ACTIONS(2587), - [anon_sym___cdecl] = ACTIONS(2587), - [anon_sym___clrcall] = ACTIONS(2587), - [anon_sym___stdcall] = ACTIONS(2587), - [anon_sym___fastcall] = ACTIONS(2587), - [anon_sym___thiscall] = ACTIONS(2587), - [anon_sym___vectorcall] = ACTIONS(2587), - [anon_sym_LBRACE] = ACTIONS(2589), - [anon_sym_LBRACK] = ACTIONS(2587), - [anon_sym_static] = ACTIONS(2587), - [anon_sym_register] = ACTIONS(2587), - [anon_sym_inline] = ACTIONS(2587), - [anon_sym_thread_local] = ACTIONS(2587), - [anon_sym_const] = ACTIONS(2587), - [anon_sym_volatile] = ACTIONS(2587), - [anon_sym_restrict] = ACTIONS(2587), - [anon_sym__Atomic] = ACTIONS(2587), - [anon_sym_mutable] = ACTIONS(2587), - [anon_sym_constexpr] = ACTIONS(2587), - [anon_sym_constinit] = ACTIONS(2587), - [anon_sym_consteval] = ACTIONS(2587), - [anon_sym_signed] = ACTIONS(2587), - [anon_sym_unsigned] = ACTIONS(2587), - [anon_sym_long] = ACTIONS(2587), - [anon_sym_short] = ACTIONS(2587), - [sym_primitive_type] = ACTIONS(2587), - [anon_sym_enum] = ACTIONS(2587), - [anon_sym_class] = ACTIONS(2587), - [anon_sym_struct] = ACTIONS(2587), - [anon_sym_union] = ACTIONS(2587), - [anon_sym_if] = ACTIONS(2587), - [anon_sym_switch] = ACTIONS(2587), - [anon_sym_case] = ACTIONS(2587), - [anon_sym_default] = ACTIONS(2587), - [anon_sym_while] = ACTIONS(2587), - [anon_sym_do] = ACTIONS(2587), - [anon_sym_for] = ACTIONS(2587), - [anon_sym_return] = ACTIONS(2587), - [anon_sym_break] = ACTIONS(2587), - [anon_sym_continue] = ACTIONS(2587), - [anon_sym_goto] = ACTIONS(2587), - [anon_sym_DASH_DASH] = ACTIONS(2589), - [anon_sym_PLUS_PLUS] = ACTIONS(2589), - [anon_sym_sizeof] = ACTIONS(2587), - [sym_number_literal] = ACTIONS(2589), - [anon_sym_L_SQUOTE] = ACTIONS(2589), - [anon_sym_u_SQUOTE] = ACTIONS(2589), - [anon_sym_U_SQUOTE] = ACTIONS(2589), - [anon_sym_u8_SQUOTE] = ACTIONS(2589), - [anon_sym_SQUOTE] = ACTIONS(2589), - [anon_sym_L_DQUOTE] = ACTIONS(2589), - [anon_sym_u_DQUOTE] = ACTIONS(2589), - [anon_sym_U_DQUOTE] = ACTIONS(2589), - [anon_sym_u8_DQUOTE] = ACTIONS(2589), - [anon_sym_DQUOTE] = ACTIONS(2589), - [sym_true] = ACTIONS(2587), - [sym_false] = ACTIONS(2587), - [sym_null] = ACTIONS(2587), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2587), - [anon_sym_decltype] = ACTIONS(2587), - [anon_sym_virtual] = ACTIONS(2587), - [anon_sym_explicit] = ACTIONS(2587), - [anon_sym_typename] = ACTIONS(2587), - [anon_sym_template] = ACTIONS(2587), - [anon_sym_operator] = ACTIONS(2587), - [anon_sym_try] = ACTIONS(2587), - [anon_sym_delete] = ACTIONS(2587), - [anon_sym_throw] = ACTIONS(2587), - [anon_sym_namespace] = ACTIONS(2587), - [anon_sym_using] = ACTIONS(2587), - [anon_sym_static_assert] = ACTIONS(2587), - [anon_sym_concept] = ACTIONS(2587), - [anon_sym_co_return] = ACTIONS(2587), - [anon_sym_co_yield] = ACTIONS(2587), - [anon_sym_co_await] = ACTIONS(2587), - [anon_sym_new] = ACTIONS(2587), - [anon_sym_requires] = ACTIONS(2587), - [sym_this] = ACTIONS(2587), - [sym_nullptr] = ACTIONS(2587), - [sym_raw_string_literal] = ACTIONS(2589), - }, - [912] = { - [sym_identifier] = ACTIONS(2733), - [aux_sym_preproc_include_token1] = ACTIONS(2733), - [aux_sym_preproc_def_token1] = ACTIONS(2733), - [aux_sym_preproc_if_token1] = ACTIONS(2733), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2733), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2733), - [sym_preproc_directive] = ACTIONS(2733), - [anon_sym_LPAREN2] = ACTIONS(2735), - [anon_sym_BANG] = ACTIONS(2735), - [anon_sym_TILDE] = ACTIONS(2735), - [anon_sym_DASH] = ACTIONS(2733), - [anon_sym_PLUS] = ACTIONS(2733), - [anon_sym_STAR] = ACTIONS(2735), - [anon_sym_AMP_AMP] = ACTIONS(2735), - [anon_sym_AMP] = ACTIONS(2733), - [anon_sym_SEMI] = ACTIONS(2735), - [anon_sym_typedef] = ACTIONS(2733), - [anon_sym_extern] = ACTIONS(2733), - [anon_sym___attribute__] = ACTIONS(2733), - [anon_sym_COLON_COLON] = ACTIONS(2735), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2735), - [anon_sym___declspec] = ACTIONS(2733), - [anon_sym___based] = ACTIONS(2733), - [anon_sym___cdecl] = ACTIONS(2733), - [anon_sym___clrcall] = ACTIONS(2733), - [anon_sym___stdcall] = ACTIONS(2733), - [anon_sym___fastcall] = ACTIONS(2733), - [anon_sym___thiscall] = ACTIONS(2733), - [anon_sym___vectorcall] = ACTIONS(2733), - [anon_sym_LBRACE] = ACTIONS(2735), - [anon_sym_RBRACE] = ACTIONS(2735), - [anon_sym_LBRACK] = ACTIONS(2733), - [anon_sym_static] = ACTIONS(2733), - [anon_sym_register] = ACTIONS(2733), - [anon_sym_inline] = ACTIONS(2733), - [anon_sym_thread_local] = ACTIONS(2733), - [anon_sym_const] = ACTIONS(2733), - [anon_sym_volatile] = ACTIONS(2733), - [anon_sym_restrict] = ACTIONS(2733), - [anon_sym__Atomic] = ACTIONS(2733), - [anon_sym_mutable] = ACTIONS(2733), - [anon_sym_constexpr] = ACTIONS(2733), - [anon_sym_constinit] = ACTIONS(2733), - [anon_sym_consteval] = ACTIONS(2733), - [anon_sym_signed] = ACTIONS(2733), - [anon_sym_unsigned] = ACTIONS(2733), - [anon_sym_long] = ACTIONS(2733), - [anon_sym_short] = ACTIONS(2733), - [sym_primitive_type] = ACTIONS(2733), - [anon_sym_enum] = ACTIONS(2733), - [anon_sym_class] = ACTIONS(2733), - [anon_sym_struct] = ACTIONS(2733), - [anon_sym_union] = ACTIONS(2733), - [anon_sym_if] = ACTIONS(2733), - [anon_sym_switch] = ACTIONS(2733), - [anon_sym_case] = ACTIONS(2733), - [anon_sym_default] = ACTIONS(2733), - [anon_sym_while] = ACTIONS(2733), - [anon_sym_do] = ACTIONS(2733), - [anon_sym_for] = ACTIONS(2733), - [anon_sym_return] = ACTIONS(2733), - [anon_sym_break] = ACTIONS(2733), - [anon_sym_continue] = ACTIONS(2733), - [anon_sym_goto] = ACTIONS(2733), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_sizeof] = ACTIONS(2733), - [sym_number_literal] = ACTIONS(2735), - [anon_sym_L_SQUOTE] = ACTIONS(2735), - [anon_sym_u_SQUOTE] = ACTIONS(2735), - [anon_sym_U_SQUOTE] = ACTIONS(2735), - [anon_sym_u8_SQUOTE] = ACTIONS(2735), - [anon_sym_SQUOTE] = ACTIONS(2735), - [anon_sym_L_DQUOTE] = ACTIONS(2735), - [anon_sym_u_DQUOTE] = ACTIONS(2735), - [anon_sym_U_DQUOTE] = ACTIONS(2735), - [anon_sym_u8_DQUOTE] = ACTIONS(2735), - [anon_sym_DQUOTE] = ACTIONS(2735), - [sym_true] = ACTIONS(2733), - [sym_false] = ACTIONS(2733), - [sym_null] = ACTIONS(2733), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2733), - [anon_sym_decltype] = ACTIONS(2733), - [anon_sym_virtual] = ACTIONS(2733), - [anon_sym_explicit] = ACTIONS(2733), - [anon_sym_typename] = ACTIONS(2733), - [anon_sym_template] = ACTIONS(2733), - [anon_sym_operator] = ACTIONS(2733), - [anon_sym_try] = ACTIONS(2733), - [anon_sym_delete] = ACTIONS(2733), - [anon_sym_throw] = ACTIONS(2733), - [anon_sym_namespace] = ACTIONS(2733), - [anon_sym_using] = ACTIONS(2733), - [anon_sym_static_assert] = ACTIONS(2733), - [anon_sym_concept] = ACTIONS(2733), - [anon_sym_co_return] = ACTIONS(2733), - [anon_sym_co_yield] = ACTIONS(2733), - [anon_sym_co_await] = ACTIONS(2733), - [anon_sym_new] = ACTIONS(2733), - [anon_sym_requires] = ACTIONS(2733), - [sym_this] = ACTIONS(2733), - [sym_nullptr] = ACTIONS(2733), - [sym_raw_string_literal] = ACTIONS(2735), - }, - [913] = { + [568] = { [sym_identifier] = ACTIONS(2525), [aux_sym_preproc_include_token1] = ACTIONS(2525), [aux_sym_preproc_def_token1] = ACTIONS(2525), @@ -134224,6 +99984,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(2525), [anon_sym_union] = ACTIONS(2525), [anon_sym_if] = ACTIONS(2525), + [anon_sym_else] = ACTIONS(2525), [anon_sym_switch] = ACTIONS(2525), [anon_sym_case] = ACTIONS(2525), [anon_sym_default] = ACTIONS(2525), @@ -134234,6 +99995,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(2525), [anon_sym_continue] = ACTIONS(2525), [anon_sym_goto] = ACTIONS(2525), + [anon_sym_not] = ACTIONS(2525), + [anon_sym_compl] = ACTIONS(2525), [anon_sym_DASH_DASH] = ACTIONS(2527), [anon_sym_PLUS_PLUS] = ACTIONS(2527), [anon_sym_sizeof] = ACTIONS(2525), @@ -134275,6372 +100038,4481 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(2525), [sym_raw_string_literal] = ACTIONS(2527), }, - [914] = { - [ts_builtin_sym_end] = ACTIONS(2775), - [sym_identifier] = ACTIONS(2773), - [aux_sym_preproc_include_token1] = ACTIONS(2773), - [aux_sym_preproc_def_token1] = ACTIONS(2773), - [aux_sym_preproc_if_token1] = ACTIONS(2773), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2773), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2773), - [sym_preproc_directive] = ACTIONS(2773), - [anon_sym_LPAREN2] = ACTIONS(2775), - [anon_sym_BANG] = ACTIONS(2775), - [anon_sym_TILDE] = ACTIONS(2775), - [anon_sym_DASH] = ACTIONS(2773), - [anon_sym_PLUS] = ACTIONS(2773), - [anon_sym_STAR] = ACTIONS(2775), - [anon_sym_AMP_AMP] = ACTIONS(2775), - [anon_sym_AMP] = ACTIONS(2773), - [anon_sym_SEMI] = ACTIONS(2775), - [anon_sym_typedef] = ACTIONS(2773), - [anon_sym_extern] = ACTIONS(2773), - [anon_sym___attribute__] = ACTIONS(2773), - [anon_sym_COLON_COLON] = ACTIONS(2775), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2775), - [anon_sym___declspec] = ACTIONS(2773), - [anon_sym___based] = ACTIONS(2773), - [anon_sym___cdecl] = ACTIONS(2773), - [anon_sym___clrcall] = ACTIONS(2773), - [anon_sym___stdcall] = ACTIONS(2773), - [anon_sym___fastcall] = ACTIONS(2773), - [anon_sym___thiscall] = ACTIONS(2773), - [anon_sym___vectorcall] = ACTIONS(2773), - [anon_sym_LBRACE] = ACTIONS(2775), - [anon_sym_LBRACK] = ACTIONS(2773), - [anon_sym_static] = ACTIONS(2773), - [anon_sym_register] = ACTIONS(2773), - [anon_sym_inline] = ACTIONS(2773), - [anon_sym_thread_local] = ACTIONS(2773), - [anon_sym_const] = ACTIONS(2773), - [anon_sym_volatile] = ACTIONS(2773), - [anon_sym_restrict] = ACTIONS(2773), - [anon_sym__Atomic] = ACTIONS(2773), - [anon_sym_mutable] = ACTIONS(2773), - [anon_sym_constexpr] = ACTIONS(2773), - [anon_sym_constinit] = ACTIONS(2773), - [anon_sym_consteval] = ACTIONS(2773), - [anon_sym_signed] = ACTIONS(2773), - [anon_sym_unsigned] = ACTIONS(2773), - [anon_sym_long] = ACTIONS(2773), - [anon_sym_short] = ACTIONS(2773), - [sym_primitive_type] = ACTIONS(2773), - [anon_sym_enum] = ACTIONS(2773), - [anon_sym_class] = ACTIONS(2773), - [anon_sym_struct] = ACTIONS(2773), - [anon_sym_union] = ACTIONS(2773), - [anon_sym_if] = ACTIONS(2773), - [anon_sym_switch] = ACTIONS(2773), - [anon_sym_case] = ACTIONS(2773), - [anon_sym_default] = ACTIONS(2773), - [anon_sym_while] = ACTIONS(2773), - [anon_sym_do] = ACTIONS(2773), - [anon_sym_for] = ACTIONS(2773), - [anon_sym_return] = ACTIONS(2773), - [anon_sym_break] = ACTIONS(2773), - [anon_sym_continue] = ACTIONS(2773), - [anon_sym_goto] = ACTIONS(2773), - [anon_sym_DASH_DASH] = ACTIONS(2775), - [anon_sym_PLUS_PLUS] = ACTIONS(2775), - [anon_sym_sizeof] = ACTIONS(2773), - [sym_number_literal] = ACTIONS(2775), - [anon_sym_L_SQUOTE] = ACTIONS(2775), - [anon_sym_u_SQUOTE] = ACTIONS(2775), - [anon_sym_U_SQUOTE] = ACTIONS(2775), - [anon_sym_u8_SQUOTE] = ACTIONS(2775), - [anon_sym_SQUOTE] = ACTIONS(2775), - [anon_sym_L_DQUOTE] = ACTIONS(2775), - [anon_sym_u_DQUOTE] = ACTIONS(2775), - [anon_sym_U_DQUOTE] = ACTIONS(2775), - [anon_sym_u8_DQUOTE] = ACTIONS(2775), - [anon_sym_DQUOTE] = ACTIONS(2775), - [sym_true] = ACTIONS(2773), - [sym_false] = ACTIONS(2773), - [sym_null] = ACTIONS(2773), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2773), - [anon_sym_decltype] = ACTIONS(2773), - [anon_sym_virtual] = ACTIONS(2773), - [anon_sym_explicit] = ACTIONS(2773), - [anon_sym_typename] = ACTIONS(2773), - [anon_sym_template] = ACTIONS(2773), - [anon_sym_operator] = ACTIONS(2773), - [anon_sym_try] = ACTIONS(2773), - [anon_sym_delete] = ACTIONS(2773), - [anon_sym_throw] = ACTIONS(2773), - [anon_sym_namespace] = ACTIONS(2773), - [anon_sym_using] = ACTIONS(2773), - [anon_sym_static_assert] = ACTIONS(2773), - [anon_sym_concept] = ACTIONS(2773), - [anon_sym_co_return] = ACTIONS(2773), - [anon_sym_co_yield] = ACTIONS(2773), - [anon_sym_co_await] = ACTIONS(2773), - [anon_sym_new] = ACTIONS(2773), - [anon_sym_requires] = ACTIONS(2773), - [sym_this] = ACTIONS(2773), - [sym_nullptr] = ACTIONS(2773), - [sym_raw_string_literal] = ACTIONS(2775), - }, - [915] = { - [ts_builtin_sym_end] = ACTIONS(2593), - [sym_identifier] = ACTIONS(2591), - [aux_sym_preproc_include_token1] = ACTIONS(2591), - [aux_sym_preproc_def_token1] = ACTIONS(2591), - [aux_sym_preproc_if_token1] = ACTIONS(2591), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2591), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2591), - [sym_preproc_directive] = ACTIONS(2591), - [anon_sym_LPAREN2] = ACTIONS(2593), - [anon_sym_BANG] = ACTIONS(2593), - [anon_sym_TILDE] = ACTIONS(2593), - [anon_sym_DASH] = ACTIONS(2591), - [anon_sym_PLUS] = ACTIONS(2591), - [anon_sym_STAR] = ACTIONS(2593), - [anon_sym_AMP_AMP] = ACTIONS(2593), - [anon_sym_AMP] = ACTIONS(2591), - [anon_sym_SEMI] = ACTIONS(2593), - [anon_sym_typedef] = ACTIONS(2591), - [anon_sym_extern] = ACTIONS(2591), - [anon_sym___attribute__] = ACTIONS(2591), - [anon_sym_COLON_COLON] = ACTIONS(2593), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2593), - [anon_sym___declspec] = ACTIONS(2591), - [anon_sym___based] = ACTIONS(2591), - [anon_sym___cdecl] = ACTIONS(2591), - [anon_sym___clrcall] = ACTIONS(2591), - [anon_sym___stdcall] = ACTIONS(2591), - [anon_sym___fastcall] = ACTIONS(2591), - [anon_sym___thiscall] = ACTIONS(2591), - [anon_sym___vectorcall] = ACTIONS(2591), - [anon_sym_LBRACE] = ACTIONS(2593), - [anon_sym_LBRACK] = ACTIONS(2591), - [anon_sym_static] = ACTIONS(2591), - [anon_sym_register] = ACTIONS(2591), - [anon_sym_inline] = ACTIONS(2591), - [anon_sym_thread_local] = ACTIONS(2591), - [anon_sym_const] = ACTIONS(2591), - [anon_sym_volatile] = ACTIONS(2591), - [anon_sym_restrict] = ACTIONS(2591), - [anon_sym__Atomic] = ACTIONS(2591), - [anon_sym_mutable] = ACTIONS(2591), - [anon_sym_constexpr] = ACTIONS(2591), - [anon_sym_constinit] = ACTIONS(2591), - [anon_sym_consteval] = ACTIONS(2591), - [anon_sym_signed] = ACTIONS(2591), - [anon_sym_unsigned] = ACTIONS(2591), - [anon_sym_long] = ACTIONS(2591), - [anon_sym_short] = ACTIONS(2591), - [sym_primitive_type] = ACTIONS(2591), - [anon_sym_enum] = ACTIONS(2591), - [anon_sym_class] = ACTIONS(2591), - [anon_sym_struct] = ACTIONS(2591), - [anon_sym_union] = ACTIONS(2591), - [anon_sym_if] = ACTIONS(2591), - [anon_sym_switch] = ACTIONS(2591), - [anon_sym_case] = ACTIONS(2591), - [anon_sym_default] = ACTIONS(2591), - [anon_sym_while] = ACTIONS(2591), - [anon_sym_do] = ACTIONS(2591), - [anon_sym_for] = ACTIONS(2591), - [anon_sym_return] = ACTIONS(2591), - [anon_sym_break] = ACTIONS(2591), - [anon_sym_continue] = ACTIONS(2591), - [anon_sym_goto] = ACTIONS(2591), - [anon_sym_DASH_DASH] = ACTIONS(2593), - [anon_sym_PLUS_PLUS] = ACTIONS(2593), - [anon_sym_sizeof] = ACTIONS(2591), - [sym_number_literal] = ACTIONS(2593), - [anon_sym_L_SQUOTE] = ACTIONS(2593), - [anon_sym_u_SQUOTE] = ACTIONS(2593), - [anon_sym_U_SQUOTE] = ACTIONS(2593), - [anon_sym_u8_SQUOTE] = ACTIONS(2593), - [anon_sym_SQUOTE] = ACTIONS(2593), - [anon_sym_L_DQUOTE] = ACTIONS(2593), - [anon_sym_u_DQUOTE] = ACTIONS(2593), - [anon_sym_U_DQUOTE] = ACTIONS(2593), - [anon_sym_u8_DQUOTE] = ACTIONS(2593), - [anon_sym_DQUOTE] = ACTIONS(2593), - [sym_true] = ACTIONS(2591), - [sym_false] = ACTIONS(2591), - [sym_null] = ACTIONS(2591), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2591), - [anon_sym_decltype] = ACTIONS(2591), - [anon_sym_virtual] = ACTIONS(2591), - [anon_sym_explicit] = ACTIONS(2591), - [anon_sym_typename] = ACTIONS(2591), - [anon_sym_template] = ACTIONS(2591), - [anon_sym_operator] = ACTIONS(2591), - [anon_sym_try] = ACTIONS(2591), - [anon_sym_delete] = ACTIONS(2591), - [anon_sym_throw] = ACTIONS(2591), - [anon_sym_namespace] = ACTIONS(2591), - [anon_sym_using] = ACTIONS(2591), - [anon_sym_static_assert] = ACTIONS(2591), - [anon_sym_concept] = ACTIONS(2591), - [anon_sym_co_return] = ACTIONS(2591), - [anon_sym_co_yield] = ACTIONS(2591), - [anon_sym_co_await] = ACTIONS(2591), - [anon_sym_new] = ACTIONS(2591), - [anon_sym_requires] = ACTIONS(2591), - [sym_this] = ACTIONS(2591), - [sym_nullptr] = ACTIONS(2591), - [sym_raw_string_literal] = ACTIONS(2593), - }, - [916] = { - [ts_builtin_sym_end] = ACTIONS(2727), - [sym_identifier] = ACTIONS(2725), - [aux_sym_preproc_include_token1] = ACTIONS(2725), - [aux_sym_preproc_def_token1] = ACTIONS(2725), - [aux_sym_preproc_if_token1] = ACTIONS(2725), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2725), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2725), - [sym_preproc_directive] = ACTIONS(2725), - [anon_sym_LPAREN2] = ACTIONS(2727), - [anon_sym_BANG] = ACTIONS(2727), - [anon_sym_TILDE] = ACTIONS(2727), - [anon_sym_DASH] = ACTIONS(2725), - [anon_sym_PLUS] = ACTIONS(2725), - [anon_sym_STAR] = ACTIONS(2727), - [anon_sym_AMP_AMP] = ACTIONS(2727), - [anon_sym_AMP] = ACTIONS(2725), - [anon_sym_SEMI] = ACTIONS(2727), - [anon_sym_typedef] = ACTIONS(2725), - [anon_sym_extern] = ACTIONS(2725), - [anon_sym___attribute__] = ACTIONS(2725), - [anon_sym_COLON_COLON] = ACTIONS(2727), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2727), - [anon_sym___declspec] = ACTIONS(2725), - [anon_sym___based] = ACTIONS(2725), - [anon_sym___cdecl] = ACTIONS(2725), - [anon_sym___clrcall] = ACTIONS(2725), - [anon_sym___stdcall] = ACTIONS(2725), - [anon_sym___fastcall] = ACTIONS(2725), - [anon_sym___thiscall] = ACTIONS(2725), - [anon_sym___vectorcall] = ACTIONS(2725), - [anon_sym_LBRACE] = ACTIONS(2727), - [anon_sym_LBRACK] = ACTIONS(2725), - [anon_sym_static] = ACTIONS(2725), - [anon_sym_register] = ACTIONS(2725), - [anon_sym_inline] = ACTIONS(2725), - [anon_sym_thread_local] = ACTIONS(2725), - [anon_sym_const] = ACTIONS(2725), - [anon_sym_volatile] = ACTIONS(2725), - [anon_sym_restrict] = ACTIONS(2725), - [anon_sym__Atomic] = ACTIONS(2725), - [anon_sym_mutable] = ACTIONS(2725), - [anon_sym_constexpr] = ACTIONS(2725), - [anon_sym_constinit] = ACTIONS(2725), - [anon_sym_consteval] = ACTIONS(2725), - [anon_sym_signed] = ACTIONS(2725), - [anon_sym_unsigned] = ACTIONS(2725), - [anon_sym_long] = ACTIONS(2725), - [anon_sym_short] = ACTIONS(2725), - [sym_primitive_type] = ACTIONS(2725), - [anon_sym_enum] = ACTIONS(2725), - [anon_sym_class] = ACTIONS(2725), - [anon_sym_struct] = ACTIONS(2725), - [anon_sym_union] = ACTIONS(2725), - [anon_sym_if] = ACTIONS(2725), - [anon_sym_switch] = ACTIONS(2725), - [anon_sym_case] = ACTIONS(2725), - [anon_sym_default] = ACTIONS(2725), - [anon_sym_while] = ACTIONS(2725), - [anon_sym_do] = ACTIONS(2725), - [anon_sym_for] = ACTIONS(2725), - [anon_sym_return] = ACTIONS(2725), - [anon_sym_break] = ACTIONS(2725), - [anon_sym_continue] = ACTIONS(2725), - [anon_sym_goto] = ACTIONS(2725), - [anon_sym_DASH_DASH] = ACTIONS(2727), - [anon_sym_PLUS_PLUS] = ACTIONS(2727), - [anon_sym_sizeof] = ACTIONS(2725), - [sym_number_literal] = ACTIONS(2727), - [anon_sym_L_SQUOTE] = ACTIONS(2727), - [anon_sym_u_SQUOTE] = ACTIONS(2727), - [anon_sym_U_SQUOTE] = ACTIONS(2727), - [anon_sym_u8_SQUOTE] = ACTIONS(2727), - [anon_sym_SQUOTE] = ACTIONS(2727), - [anon_sym_L_DQUOTE] = ACTIONS(2727), - [anon_sym_u_DQUOTE] = ACTIONS(2727), - [anon_sym_U_DQUOTE] = ACTIONS(2727), - [anon_sym_u8_DQUOTE] = ACTIONS(2727), - [anon_sym_DQUOTE] = ACTIONS(2727), - [sym_true] = ACTIONS(2725), - [sym_false] = ACTIONS(2725), - [sym_null] = ACTIONS(2725), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2725), - [anon_sym_decltype] = ACTIONS(2725), - [anon_sym_virtual] = ACTIONS(2725), - [anon_sym_explicit] = ACTIONS(2725), - [anon_sym_typename] = ACTIONS(2725), - [anon_sym_template] = ACTIONS(2725), - [anon_sym_operator] = ACTIONS(2725), - [anon_sym_try] = ACTIONS(2725), - [anon_sym_delete] = ACTIONS(2725), - [anon_sym_throw] = ACTIONS(2725), - [anon_sym_namespace] = ACTIONS(2725), - [anon_sym_using] = ACTIONS(2725), - [anon_sym_static_assert] = ACTIONS(2725), - [anon_sym_concept] = ACTIONS(2725), - [anon_sym_co_return] = ACTIONS(2725), - [anon_sym_co_yield] = ACTIONS(2725), - [anon_sym_co_await] = ACTIONS(2725), - [anon_sym_new] = ACTIONS(2725), - [anon_sym_requires] = ACTIONS(2725), - [sym_this] = ACTIONS(2725), - [sym_nullptr] = ACTIONS(2725), - [sym_raw_string_literal] = ACTIONS(2727), + [569] = { + [ts_builtin_sym_end] = ACTIONS(2515), + [sym_identifier] = ACTIONS(2513), + [aux_sym_preproc_include_token1] = ACTIONS(2513), + [aux_sym_preproc_def_token1] = ACTIONS(2513), + [aux_sym_preproc_if_token1] = ACTIONS(2513), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2513), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2513), + [sym_preproc_directive] = ACTIONS(2513), + [anon_sym_LPAREN2] = ACTIONS(2515), + [anon_sym_BANG] = ACTIONS(2515), + [anon_sym_TILDE] = ACTIONS(2515), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_STAR] = ACTIONS(2515), + [anon_sym_AMP_AMP] = ACTIONS(2515), + [anon_sym_AMP] = ACTIONS(2513), + [anon_sym_SEMI] = ACTIONS(2515), + [anon_sym_typedef] = ACTIONS(2513), + [anon_sym_extern] = ACTIONS(2513), + [anon_sym___attribute__] = ACTIONS(2513), + [anon_sym_COLON_COLON] = ACTIONS(2515), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2515), + [anon_sym___declspec] = ACTIONS(2513), + [anon_sym___based] = ACTIONS(2513), + [anon_sym___cdecl] = ACTIONS(2513), + [anon_sym___clrcall] = ACTIONS(2513), + [anon_sym___stdcall] = ACTIONS(2513), + [anon_sym___fastcall] = ACTIONS(2513), + [anon_sym___thiscall] = ACTIONS(2513), + [anon_sym___vectorcall] = ACTIONS(2513), + [anon_sym_LBRACE] = ACTIONS(2515), + [anon_sym_LBRACK] = ACTIONS(2513), + [anon_sym_static] = ACTIONS(2513), + [anon_sym_register] = ACTIONS(2513), + [anon_sym_inline] = ACTIONS(2513), + [anon_sym_thread_local] = ACTIONS(2513), + [anon_sym_const] = ACTIONS(2513), + [anon_sym_volatile] = ACTIONS(2513), + [anon_sym_restrict] = ACTIONS(2513), + [anon_sym__Atomic] = ACTIONS(2513), + [anon_sym_mutable] = ACTIONS(2513), + [anon_sym_constexpr] = ACTIONS(2513), + [anon_sym_constinit] = ACTIONS(2513), + [anon_sym_consteval] = ACTIONS(2513), + [anon_sym_signed] = ACTIONS(2513), + [anon_sym_unsigned] = ACTIONS(2513), + [anon_sym_long] = ACTIONS(2513), + [anon_sym_short] = ACTIONS(2513), + [sym_primitive_type] = ACTIONS(2513), + [anon_sym_enum] = ACTIONS(2513), + [anon_sym_class] = ACTIONS(2513), + [anon_sym_struct] = ACTIONS(2513), + [anon_sym_union] = ACTIONS(2513), + [anon_sym_if] = ACTIONS(2513), + [anon_sym_else] = ACTIONS(2513), + [anon_sym_switch] = ACTIONS(2513), + [anon_sym_case] = ACTIONS(2513), + [anon_sym_default] = ACTIONS(2513), + [anon_sym_while] = ACTIONS(2513), + [anon_sym_do] = ACTIONS(2513), + [anon_sym_for] = ACTIONS(2513), + [anon_sym_return] = ACTIONS(2513), + [anon_sym_break] = ACTIONS(2513), + [anon_sym_continue] = ACTIONS(2513), + [anon_sym_goto] = ACTIONS(2513), + [anon_sym_not] = ACTIONS(2513), + [anon_sym_compl] = ACTIONS(2513), + [anon_sym_DASH_DASH] = ACTIONS(2515), + [anon_sym_PLUS_PLUS] = ACTIONS(2515), + [anon_sym_sizeof] = ACTIONS(2513), + [sym_number_literal] = ACTIONS(2515), + [anon_sym_L_SQUOTE] = ACTIONS(2515), + [anon_sym_u_SQUOTE] = ACTIONS(2515), + [anon_sym_U_SQUOTE] = ACTIONS(2515), + [anon_sym_u8_SQUOTE] = ACTIONS(2515), + [anon_sym_SQUOTE] = ACTIONS(2515), + [anon_sym_L_DQUOTE] = ACTIONS(2515), + [anon_sym_u_DQUOTE] = ACTIONS(2515), + [anon_sym_U_DQUOTE] = ACTIONS(2515), + [anon_sym_u8_DQUOTE] = ACTIONS(2515), + [anon_sym_DQUOTE] = ACTIONS(2515), + [sym_true] = ACTIONS(2513), + [sym_false] = ACTIONS(2513), + [sym_null] = ACTIONS(2513), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2513), + [anon_sym_decltype] = ACTIONS(2513), + [anon_sym_virtual] = ACTIONS(2513), + [anon_sym_explicit] = ACTIONS(2513), + [anon_sym_typename] = ACTIONS(2513), + [anon_sym_template] = ACTIONS(2513), + [anon_sym_operator] = ACTIONS(2513), + [anon_sym_try] = ACTIONS(2513), + [anon_sym_delete] = ACTIONS(2513), + [anon_sym_throw] = ACTIONS(2513), + [anon_sym_namespace] = ACTIONS(2513), + [anon_sym_using] = ACTIONS(2513), + [anon_sym_static_assert] = ACTIONS(2513), + [anon_sym_concept] = ACTIONS(2513), + [anon_sym_co_return] = ACTIONS(2513), + [anon_sym_co_yield] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2513), + [anon_sym_new] = ACTIONS(2513), + [anon_sym_requires] = ACTIONS(2513), + [sym_this] = ACTIONS(2513), + [sym_nullptr] = ACTIONS(2513), + [sym_raw_string_literal] = ACTIONS(2515), }, - [917] = { - [ts_builtin_sym_end] = ACTIONS(2641), - [sym_identifier] = ACTIONS(2639), - [aux_sym_preproc_include_token1] = ACTIONS(2639), - [aux_sym_preproc_def_token1] = ACTIONS(2639), - [aux_sym_preproc_if_token1] = ACTIONS(2639), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2639), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2639), - [sym_preproc_directive] = ACTIONS(2639), - [anon_sym_LPAREN2] = ACTIONS(2641), - [anon_sym_BANG] = ACTIONS(2641), - [anon_sym_TILDE] = ACTIONS(2641), - [anon_sym_DASH] = ACTIONS(2639), - [anon_sym_PLUS] = ACTIONS(2639), - [anon_sym_STAR] = ACTIONS(2641), - [anon_sym_AMP_AMP] = ACTIONS(2641), - [anon_sym_AMP] = ACTIONS(2639), - [anon_sym_SEMI] = ACTIONS(2641), - [anon_sym_typedef] = ACTIONS(2639), - [anon_sym_extern] = ACTIONS(2639), - [anon_sym___attribute__] = ACTIONS(2639), - [anon_sym_COLON_COLON] = ACTIONS(2641), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2641), - [anon_sym___declspec] = ACTIONS(2639), - [anon_sym___based] = ACTIONS(2639), - [anon_sym___cdecl] = ACTIONS(2639), - [anon_sym___clrcall] = ACTIONS(2639), - [anon_sym___stdcall] = ACTIONS(2639), - [anon_sym___fastcall] = ACTIONS(2639), - [anon_sym___thiscall] = ACTIONS(2639), - [anon_sym___vectorcall] = ACTIONS(2639), - [anon_sym_LBRACE] = ACTIONS(2641), - [anon_sym_LBRACK] = ACTIONS(2639), - [anon_sym_static] = ACTIONS(2639), - [anon_sym_register] = ACTIONS(2639), - [anon_sym_inline] = ACTIONS(2639), - [anon_sym_thread_local] = ACTIONS(2639), - [anon_sym_const] = ACTIONS(2639), - [anon_sym_volatile] = ACTIONS(2639), - [anon_sym_restrict] = ACTIONS(2639), - [anon_sym__Atomic] = ACTIONS(2639), - [anon_sym_mutable] = ACTIONS(2639), - [anon_sym_constexpr] = ACTIONS(2639), - [anon_sym_constinit] = ACTIONS(2639), - [anon_sym_consteval] = ACTIONS(2639), - [anon_sym_signed] = ACTIONS(2639), - [anon_sym_unsigned] = ACTIONS(2639), - [anon_sym_long] = ACTIONS(2639), - [anon_sym_short] = ACTIONS(2639), - [sym_primitive_type] = ACTIONS(2639), - [anon_sym_enum] = ACTIONS(2639), - [anon_sym_class] = ACTIONS(2639), - [anon_sym_struct] = ACTIONS(2639), - [anon_sym_union] = ACTIONS(2639), - [anon_sym_if] = ACTIONS(2639), - [anon_sym_switch] = ACTIONS(2639), - [anon_sym_case] = ACTIONS(2639), - [anon_sym_default] = ACTIONS(2639), - [anon_sym_while] = ACTIONS(2639), - [anon_sym_do] = ACTIONS(2639), - [anon_sym_for] = ACTIONS(2639), - [anon_sym_return] = ACTIONS(2639), - [anon_sym_break] = ACTIONS(2639), - [anon_sym_continue] = ACTIONS(2639), - [anon_sym_goto] = ACTIONS(2639), - [anon_sym_DASH_DASH] = ACTIONS(2641), - [anon_sym_PLUS_PLUS] = ACTIONS(2641), - [anon_sym_sizeof] = ACTIONS(2639), - [sym_number_literal] = ACTIONS(2641), - [anon_sym_L_SQUOTE] = ACTIONS(2641), - [anon_sym_u_SQUOTE] = ACTIONS(2641), - [anon_sym_U_SQUOTE] = ACTIONS(2641), - [anon_sym_u8_SQUOTE] = ACTIONS(2641), - [anon_sym_SQUOTE] = ACTIONS(2641), - [anon_sym_L_DQUOTE] = ACTIONS(2641), - [anon_sym_u_DQUOTE] = ACTIONS(2641), - [anon_sym_U_DQUOTE] = ACTIONS(2641), - [anon_sym_u8_DQUOTE] = ACTIONS(2641), - [anon_sym_DQUOTE] = ACTIONS(2641), - [sym_true] = ACTIONS(2639), - [sym_false] = ACTIONS(2639), - [sym_null] = ACTIONS(2639), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2639), - [anon_sym_decltype] = ACTIONS(2639), - [anon_sym_virtual] = ACTIONS(2639), - [anon_sym_explicit] = ACTIONS(2639), - [anon_sym_typename] = ACTIONS(2639), - [anon_sym_template] = ACTIONS(2639), - [anon_sym_operator] = ACTIONS(2639), - [anon_sym_try] = ACTIONS(2639), - [anon_sym_delete] = ACTIONS(2639), - [anon_sym_throw] = ACTIONS(2639), - [anon_sym_namespace] = ACTIONS(2639), - [anon_sym_using] = ACTIONS(2639), - [anon_sym_static_assert] = ACTIONS(2639), - [anon_sym_concept] = ACTIONS(2639), - [anon_sym_co_return] = ACTIONS(2639), - [anon_sym_co_yield] = ACTIONS(2639), - [anon_sym_co_await] = ACTIONS(2639), - [anon_sym_new] = ACTIONS(2639), - [anon_sym_requires] = ACTIONS(2639), - [sym_this] = ACTIONS(2639), - [sym_nullptr] = ACTIONS(2639), - [sym_raw_string_literal] = ACTIONS(2641), + [570] = { + [ts_builtin_sym_end] = ACTIONS(2561), + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [918] = { - [sym_identifier] = ACTIONS(2655), - [aux_sym_preproc_include_token1] = ACTIONS(2655), - [aux_sym_preproc_def_token1] = ACTIONS(2655), - [aux_sym_preproc_if_token1] = ACTIONS(2655), - [aux_sym_preproc_if_token2] = ACTIONS(2655), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2655), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2655), - [sym_preproc_directive] = ACTIONS(2655), - [anon_sym_LPAREN2] = ACTIONS(2657), - [anon_sym_BANG] = ACTIONS(2657), - [anon_sym_TILDE] = ACTIONS(2657), - [anon_sym_DASH] = ACTIONS(2655), - [anon_sym_PLUS] = ACTIONS(2655), - [anon_sym_STAR] = ACTIONS(2657), - [anon_sym_AMP_AMP] = ACTIONS(2657), - [anon_sym_AMP] = ACTIONS(2655), - [anon_sym_SEMI] = ACTIONS(2657), - [anon_sym_typedef] = ACTIONS(2655), - [anon_sym_extern] = ACTIONS(2655), - [anon_sym___attribute__] = ACTIONS(2655), - [anon_sym_COLON_COLON] = ACTIONS(2657), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2657), - [anon_sym___declspec] = ACTIONS(2655), - [anon_sym___based] = ACTIONS(2655), - [anon_sym___cdecl] = ACTIONS(2655), - [anon_sym___clrcall] = ACTIONS(2655), - [anon_sym___stdcall] = ACTIONS(2655), - [anon_sym___fastcall] = ACTIONS(2655), - [anon_sym___thiscall] = ACTIONS(2655), - [anon_sym___vectorcall] = ACTIONS(2655), - [anon_sym_LBRACE] = ACTIONS(2657), - [anon_sym_LBRACK] = ACTIONS(2655), - [anon_sym_static] = ACTIONS(2655), - [anon_sym_register] = ACTIONS(2655), - [anon_sym_inline] = ACTIONS(2655), - [anon_sym_thread_local] = ACTIONS(2655), - [anon_sym_const] = ACTIONS(2655), - [anon_sym_volatile] = ACTIONS(2655), - [anon_sym_restrict] = ACTIONS(2655), - [anon_sym__Atomic] = ACTIONS(2655), - [anon_sym_mutable] = ACTIONS(2655), - [anon_sym_constexpr] = ACTIONS(2655), - [anon_sym_constinit] = ACTIONS(2655), - [anon_sym_consteval] = ACTIONS(2655), - [anon_sym_signed] = ACTIONS(2655), - [anon_sym_unsigned] = ACTIONS(2655), - [anon_sym_long] = ACTIONS(2655), - [anon_sym_short] = ACTIONS(2655), - [sym_primitive_type] = ACTIONS(2655), - [anon_sym_enum] = ACTIONS(2655), - [anon_sym_class] = ACTIONS(2655), - [anon_sym_struct] = ACTIONS(2655), - [anon_sym_union] = ACTIONS(2655), - [anon_sym_if] = ACTIONS(2655), - [anon_sym_switch] = ACTIONS(2655), - [anon_sym_case] = ACTIONS(2655), - [anon_sym_default] = ACTIONS(2655), - [anon_sym_while] = ACTIONS(2655), - [anon_sym_do] = ACTIONS(2655), - [anon_sym_for] = ACTIONS(2655), - [anon_sym_return] = ACTIONS(2655), - [anon_sym_break] = ACTIONS(2655), - [anon_sym_continue] = ACTIONS(2655), - [anon_sym_goto] = ACTIONS(2655), - [anon_sym_DASH_DASH] = ACTIONS(2657), - [anon_sym_PLUS_PLUS] = ACTIONS(2657), - [anon_sym_sizeof] = ACTIONS(2655), - [sym_number_literal] = ACTIONS(2657), - [anon_sym_L_SQUOTE] = ACTIONS(2657), - [anon_sym_u_SQUOTE] = ACTIONS(2657), - [anon_sym_U_SQUOTE] = ACTIONS(2657), - [anon_sym_u8_SQUOTE] = ACTIONS(2657), - [anon_sym_SQUOTE] = ACTIONS(2657), - [anon_sym_L_DQUOTE] = ACTIONS(2657), - [anon_sym_u_DQUOTE] = ACTIONS(2657), - [anon_sym_U_DQUOTE] = ACTIONS(2657), - [anon_sym_u8_DQUOTE] = ACTIONS(2657), - [anon_sym_DQUOTE] = ACTIONS(2657), - [sym_true] = ACTIONS(2655), - [sym_false] = ACTIONS(2655), - [sym_null] = ACTIONS(2655), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2655), - [anon_sym_decltype] = ACTIONS(2655), - [anon_sym_virtual] = ACTIONS(2655), - [anon_sym_explicit] = ACTIONS(2655), - [anon_sym_typename] = ACTIONS(2655), - [anon_sym_template] = ACTIONS(2655), - [anon_sym_operator] = ACTIONS(2655), - [anon_sym_try] = ACTIONS(2655), - [anon_sym_delete] = ACTIONS(2655), - [anon_sym_throw] = ACTIONS(2655), - [anon_sym_namespace] = ACTIONS(2655), - [anon_sym_using] = ACTIONS(2655), - [anon_sym_static_assert] = ACTIONS(2655), - [anon_sym_concept] = ACTIONS(2655), - [anon_sym_co_return] = ACTIONS(2655), - [anon_sym_co_yield] = ACTIONS(2655), - [anon_sym_co_await] = ACTIONS(2655), - [anon_sym_new] = ACTIONS(2655), - [anon_sym_requires] = ACTIONS(2655), - [sym_this] = ACTIONS(2655), - [sym_nullptr] = ACTIONS(2655), - [sym_raw_string_literal] = ACTIONS(2657), + [571] = { + [sym_identifier] = ACTIONS(2547), + [aux_sym_preproc_include_token1] = ACTIONS(2547), + [aux_sym_preproc_def_token1] = ACTIONS(2547), + [aux_sym_preproc_if_token1] = ACTIONS(2547), + [aux_sym_preproc_if_token2] = ACTIONS(2547), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2547), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2547), + [sym_preproc_directive] = ACTIONS(2547), + [anon_sym_LPAREN2] = ACTIONS(2549), + [anon_sym_BANG] = ACTIONS(2549), + [anon_sym_TILDE] = ACTIONS(2549), + [anon_sym_DASH] = ACTIONS(2547), + [anon_sym_PLUS] = ACTIONS(2547), + [anon_sym_STAR] = ACTIONS(2549), + [anon_sym_AMP_AMP] = ACTIONS(2549), + [anon_sym_AMP] = ACTIONS(2547), + [anon_sym_SEMI] = ACTIONS(2549), + [anon_sym_typedef] = ACTIONS(2547), + [anon_sym_extern] = ACTIONS(2547), + [anon_sym___attribute__] = ACTIONS(2547), + [anon_sym_COLON_COLON] = ACTIONS(2549), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2549), + [anon_sym___declspec] = ACTIONS(2547), + [anon_sym___based] = ACTIONS(2547), + [anon_sym___cdecl] = ACTIONS(2547), + [anon_sym___clrcall] = ACTIONS(2547), + [anon_sym___stdcall] = ACTIONS(2547), + [anon_sym___fastcall] = ACTIONS(2547), + [anon_sym___thiscall] = ACTIONS(2547), + [anon_sym___vectorcall] = ACTIONS(2547), + [anon_sym_LBRACE] = ACTIONS(2549), + [anon_sym_LBRACK] = ACTIONS(2547), + [anon_sym_static] = ACTIONS(2547), + [anon_sym_register] = ACTIONS(2547), + [anon_sym_inline] = ACTIONS(2547), + [anon_sym_thread_local] = ACTIONS(2547), + [anon_sym_const] = ACTIONS(2547), + [anon_sym_volatile] = ACTIONS(2547), + [anon_sym_restrict] = ACTIONS(2547), + [anon_sym__Atomic] = ACTIONS(2547), + [anon_sym_mutable] = ACTIONS(2547), + [anon_sym_constexpr] = ACTIONS(2547), + [anon_sym_constinit] = ACTIONS(2547), + [anon_sym_consteval] = ACTIONS(2547), + [anon_sym_signed] = ACTIONS(2547), + [anon_sym_unsigned] = ACTIONS(2547), + [anon_sym_long] = ACTIONS(2547), + [anon_sym_short] = ACTIONS(2547), + [sym_primitive_type] = ACTIONS(2547), + [anon_sym_enum] = ACTIONS(2547), + [anon_sym_class] = ACTIONS(2547), + [anon_sym_struct] = ACTIONS(2547), + [anon_sym_union] = ACTIONS(2547), + [anon_sym_if] = ACTIONS(2547), + [anon_sym_else] = ACTIONS(2547), + [anon_sym_switch] = ACTIONS(2547), + [anon_sym_case] = ACTIONS(2547), + [anon_sym_default] = ACTIONS(2547), + [anon_sym_while] = ACTIONS(2547), + [anon_sym_do] = ACTIONS(2547), + [anon_sym_for] = ACTIONS(2547), + [anon_sym_return] = ACTIONS(2547), + [anon_sym_break] = ACTIONS(2547), + [anon_sym_continue] = ACTIONS(2547), + [anon_sym_goto] = ACTIONS(2547), + [anon_sym_not] = ACTIONS(2547), + [anon_sym_compl] = ACTIONS(2547), + [anon_sym_DASH_DASH] = ACTIONS(2549), + [anon_sym_PLUS_PLUS] = ACTIONS(2549), + [anon_sym_sizeof] = ACTIONS(2547), + [sym_number_literal] = ACTIONS(2549), + [anon_sym_L_SQUOTE] = ACTIONS(2549), + [anon_sym_u_SQUOTE] = ACTIONS(2549), + [anon_sym_U_SQUOTE] = ACTIONS(2549), + [anon_sym_u8_SQUOTE] = ACTIONS(2549), + [anon_sym_SQUOTE] = ACTIONS(2549), + [anon_sym_L_DQUOTE] = ACTIONS(2549), + [anon_sym_u_DQUOTE] = ACTIONS(2549), + [anon_sym_U_DQUOTE] = ACTIONS(2549), + [anon_sym_u8_DQUOTE] = ACTIONS(2549), + [anon_sym_DQUOTE] = ACTIONS(2549), + [sym_true] = ACTIONS(2547), + [sym_false] = ACTIONS(2547), + [sym_null] = ACTIONS(2547), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2547), + [anon_sym_decltype] = ACTIONS(2547), + [anon_sym_virtual] = ACTIONS(2547), + [anon_sym_explicit] = ACTIONS(2547), + [anon_sym_typename] = ACTIONS(2547), + [anon_sym_template] = ACTIONS(2547), + [anon_sym_operator] = ACTIONS(2547), + [anon_sym_try] = ACTIONS(2547), + [anon_sym_delete] = ACTIONS(2547), + [anon_sym_throw] = ACTIONS(2547), + [anon_sym_namespace] = ACTIONS(2547), + [anon_sym_using] = ACTIONS(2547), + [anon_sym_static_assert] = ACTIONS(2547), + [anon_sym_concept] = ACTIONS(2547), + [anon_sym_co_return] = ACTIONS(2547), + [anon_sym_co_yield] = ACTIONS(2547), + [anon_sym_co_await] = ACTIONS(2547), + [anon_sym_new] = ACTIONS(2547), + [anon_sym_requires] = ACTIONS(2547), + [sym_this] = ACTIONS(2547), + [sym_nullptr] = ACTIONS(2547), + [sym_raw_string_literal] = ACTIONS(2549), }, - [919] = { - [sym_identifier] = ACTIONS(2695), - [aux_sym_preproc_include_token1] = ACTIONS(2695), - [aux_sym_preproc_def_token1] = ACTIONS(2695), - [aux_sym_preproc_if_token1] = ACTIONS(2695), - [aux_sym_preproc_if_token2] = ACTIONS(2695), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2695), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2695), - [sym_preproc_directive] = ACTIONS(2695), - [anon_sym_LPAREN2] = ACTIONS(2697), - [anon_sym_BANG] = ACTIONS(2697), - [anon_sym_TILDE] = ACTIONS(2697), - [anon_sym_DASH] = ACTIONS(2695), - [anon_sym_PLUS] = ACTIONS(2695), - [anon_sym_STAR] = ACTIONS(2697), - [anon_sym_AMP_AMP] = ACTIONS(2697), - [anon_sym_AMP] = ACTIONS(2695), - [anon_sym_SEMI] = ACTIONS(2697), - [anon_sym_typedef] = ACTIONS(2695), - [anon_sym_extern] = ACTIONS(2695), - [anon_sym___attribute__] = ACTIONS(2695), - [anon_sym_COLON_COLON] = ACTIONS(2697), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2697), - [anon_sym___declspec] = ACTIONS(2695), - [anon_sym___based] = ACTIONS(2695), - [anon_sym___cdecl] = ACTIONS(2695), - [anon_sym___clrcall] = ACTIONS(2695), - [anon_sym___stdcall] = ACTIONS(2695), - [anon_sym___fastcall] = ACTIONS(2695), - [anon_sym___thiscall] = ACTIONS(2695), - [anon_sym___vectorcall] = ACTIONS(2695), - [anon_sym_LBRACE] = ACTIONS(2697), - [anon_sym_LBRACK] = ACTIONS(2695), - [anon_sym_static] = ACTIONS(2695), - [anon_sym_register] = ACTIONS(2695), - [anon_sym_inline] = ACTIONS(2695), - [anon_sym_thread_local] = ACTIONS(2695), - [anon_sym_const] = ACTIONS(2695), - [anon_sym_volatile] = ACTIONS(2695), - [anon_sym_restrict] = ACTIONS(2695), - [anon_sym__Atomic] = ACTIONS(2695), - [anon_sym_mutable] = ACTIONS(2695), - [anon_sym_constexpr] = ACTIONS(2695), - [anon_sym_constinit] = ACTIONS(2695), - [anon_sym_consteval] = ACTIONS(2695), - [anon_sym_signed] = ACTIONS(2695), - [anon_sym_unsigned] = ACTIONS(2695), - [anon_sym_long] = ACTIONS(2695), - [anon_sym_short] = ACTIONS(2695), - [sym_primitive_type] = ACTIONS(2695), - [anon_sym_enum] = ACTIONS(2695), - [anon_sym_class] = ACTIONS(2695), - [anon_sym_struct] = ACTIONS(2695), - [anon_sym_union] = ACTIONS(2695), - [anon_sym_if] = ACTIONS(2695), - [anon_sym_switch] = ACTIONS(2695), - [anon_sym_case] = ACTIONS(2695), - [anon_sym_default] = ACTIONS(2695), - [anon_sym_while] = ACTIONS(2695), - [anon_sym_do] = ACTIONS(2695), - [anon_sym_for] = ACTIONS(2695), - [anon_sym_return] = ACTIONS(2695), - [anon_sym_break] = ACTIONS(2695), - [anon_sym_continue] = ACTIONS(2695), - [anon_sym_goto] = ACTIONS(2695), - [anon_sym_DASH_DASH] = ACTIONS(2697), - [anon_sym_PLUS_PLUS] = ACTIONS(2697), - [anon_sym_sizeof] = ACTIONS(2695), - [sym_number_literal] = ACTIONS(2697), - [anon_sym_L_SQUOTE] = ACTIONS(2697), - [anon_sym_u_SQUOTE] = ACTIONS(2697), - [anon_sym_U_SQUOTE] = ACTIONS(2697), - [anon_sym_u8_SQUOTE] = ACTIONS(2697), - [anon_sym_SQUOTE] = ACTIONS(2697), - [anon_sym_L_DQUOTE] = ACTIONS(2697), - [anon_sym_u_DQUOTE] = ACTIONS(2697), - [anon_sym_U_DQUOTE] = ACTIONS(2697), - [anon_sym_u8_DQUOTE] = ACTIONS(2697), - [anon_sym_DQUOTE] = ACTIONS(2697), - [sym_true] = ACTIONS(2695), - [sym_false] = ACTIONS(2695), - [sym_null] = ACTIONS(2695), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2695), - [anon_sym_decltype] = ACTIONS(2695), - [anon_sym_virtual] = ACTIONS(2695), - [anon_sym_explicit] = ACTIONS(2695), - [anon_sym_typename] = ACTIONS(2695), - [anon_sym_template] = ACTIONS(2695), - [anon_sym_operator] = ACTIONS(2695), - [anon_sym_try] = ACTIONS(2695), - [anon_sym_delete] = ACTIONS(2695), - [anon_sym_throw] = ACTIONS(2695), - [anon_sym_namespace] = ACTIONS(2695), - [anon_sym_using] = ACTIONS(2695), - [anon_sym_static_assert] = ACTIONS(2695), - [anon_sym_concept] = ACTIONS(2695), - [anon_sym_co_return] = ACTIONS(2695), - [anon_sym_co_yield] = ACTIONS(2695), - [anon_sym_co_await] = ACTIONS(2695), - [anon_sym_new] = ACTIONS(2695), - [anon_sym_requires] = ACTIONS(2695), - [sym_this] = ACTIONS(2695), - [sym_nullptr] = ACTIONS(2695), - [sym_raw_string_literal] = ACTIONS(2697), + [572] = { + [sym_identifier] = ACTIONS(2567), + [aux_sym_preproc_include_token1] = ACTIONS(2567), + [aux_sym_preproc_def_token1] = ACTIONS(2567), + [aux_sym_preproc_if_token1] = ACTIONS(2567), + [aux_sym_preproc_if_token2] = ACTIONS(2567), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2567), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2567), + [sym_preproc_directive] = ACTIONS(2567), + [anon_sym_LPAREN2] = ACTIONS(2569), + [anon_sym_BANG] = ACTIONS(2569), + [anon_sym_TILDE] = ACTIONS(2569), + [anon_sym_DASH] = ACTIONS(2567), + [anon_sym_PLUS] = ACTIONS(2567), + [anon_sym_STAR] = ACTIONS(2569), + [anon_sym_AMP_AMP] = ACTIONS(2569), + [anon_sym_AMP] = ACTIONS(2567), + [anon_sym_SEMI] = ACTIONS(2569), + [anon_sym_typedef] = ACTIONS(2567), + [anon_sym_extern] = ACTIONS(2567), + [anon_sym___attribute__] = ACTIONS(2567), + [anon_sym_COLON_COLON] = ACTIONS(2569), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2569), + [anon_sym___declspec] = ACTIONS(2567), + [anon_sym___based] = ACTIONS(2567), + [anon_sym___cdecl] = ACTIONS(2567), + [anon_sym___clrcall] = ACTIONS(2567), + [anon_sym___stdcall] = ACTIONS(2567), + [anon_sym___fastcall] = ACTIONS(2567), + [anon_sym___thiscall] = ACTIONS(2567), + [anon_sym___vectorcall] = ACTIONS(2567), + [anon_sym_LBRACE] = ACTIONS(2569), + [anon_sym_LBRACK] = ACTIONS(2567), + [anon_sym_static] = ACTIONS(2567), + [anon_sym_register] = ACTIONS(2567), + [anon_sym_inline] = ACTIONS(2567), + [anon_sym_thread_local] = ACTIONS(2567), + [anon_sym_const] = ACTIONS(2567), + [anon_sym_volatile] = ACTIONS(2567), + [anon_sym_restrict] = ACTIONS(2567), + [anon_sym__Atomic] = ACTIONS(2567), + [anon_sym_mutable] = ACTIONS(2567), + [anon_sym_constexpr] = ACTIONS(2567), + [anon_sym_constinit] = ACTIONS(2567), + [anon_sym_consteval] = ACTIONS(2567), + [anon_sym_signed] = ACTIONS(2567), + [anon_sym_unsigned] = ACTIONS(2567), + [anon_sym_long] = ACTIONS(2567), + [anon_sym_short] = ACTIONS(2567), + [sym_primitive_type] = ACTIONS(2567), + [anon_sym_enum] = ACTIONS(2567), + [anon_sym_class] = ACTIONS(2567), + [anon_sym_struct] = ACTIONS(2567), + [anon_sym_union] = ACTIONS(2567), + [anon_sym_if] = ACTIONS(2567), + [anon_sym_else] = ACTIONS(2567), + [anon_sym_switch] = ACTIONS(2567), + [anon_sym_case] = ACTIONS(2567), + [anon_sym_default] = ACTIONS(2567), + [anon_sym_while] = ACTIONS(2567), + [anon_sym_do] = ACTIONS(2567), + [anon_sym_for] = ACTIONS(2567), + [anon_sym_return] = ACTIONS(2567), + [anon_sym_break] = ACTIONS(2567), + [anon_sym_continue] = ACTIONS(2567), + [anon_sym_goto] = ACTIONS(2567), + [anon_sym_not] = ACTIONS(2567), + [anon_sym_compl] = ACTIONS(2567), + [anon_sym_DASH_DASH] = ACTIONS(2569), + [anon_sym_PLUS_PLUS] = ACTIONS(2569), + [anon_sym_sizeof] = ACTIONS(2567), + [sym_number_literal] = ACTIONS(2569), + [anon_sym_L_SQUOTE] = ACTIONS(2569), + [anon_sym_u_SQUOTE] = ACTIONS(2569), + [anon_sym_U_SQUOTE] = ACTIONS(2569), + [anon_sym_u8_SQUOTE] = ACTIONS(2569), + [anon_sym_SQUOTE] = ACTIONS(2569), + [anon_sym_L_DQUOTE] = ACTIONS(2569), + [anon_sym_u_DQUOTE] = ACTIONS(2569), + [anon_sym_U_DQUOTE] = ACTIONS(2569), + [anon_sym_u8_DQUOTE] = ACTIONS(2569), + [anon_sym_DQUOTE] = ACTIONS(2569), + [sym_true] = ACTIONS(2567), + [sym_false] = ACTIONS(2567), + [sym_null] = ACTIONS(2567), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2567), + [anon_sym_decltype] = ACTIONS(2567), + [anon_sym_virtual] = ACTIONS(2567), + [anon_sym_explicit] = ACTIONS(2567), + [anon_sym_typename] = ACTIONS(2567), + [anon_sym_template] = ACTIONS(2567), + [anon_sym_operator] = ACTIONS(2567), + [anon_sym_try] = ACTIONS(2567), + [anon_sym_delete] = ACTIONS(2567), + [anon_sym_throw] = ACTIONS(2567), + [anon_sym_namespace] = ACTIONS(2567), + [anon_sym_using] = ACTIONS(2567), + [anon_sym_static_assert] = ACTIONS(2567), + [anon_sym_concept] = ACTIONS(2567), + [anon_sym_co_return] = ACTIONS(2567), + [anon_sym_co_yield] = ACTIONS(2567), + [anon_sym_co_await] = ACTIONS(2567), + [anon_sym_new] = ACTIONS(2567), + [anon_sym_requires] = ACTIONS(2567), + [sym_this] = ACTIONS(2567), + [sym_nullptr] = ACTIONS(2567), + [sym_raw_string_literal] = ACTIONS(2569), }, - [920] = { - [sym_identifier] = ACTIONS(2709), - [aux_sym_preproc_include_token1] = ACTIONS(2709), - [aux_sym_preproc_def_token1] = ACTIONS(2709), - [aux_sym_preproc_if_token1] = ACTIONS(2709), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2709), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2709), - [sym_preproc_directive] = ACTIONS(2709), - [anon_sym_LPAREN2] = ACTIONS(2711), - [anon_sym_BANG] = ACTIONS(2711), - [anon_sym_TILDE] = ACTIONS(2711), - [anon_sym_DASH] = ACTIONS(2709), - [anon_sym_PLUS] = ACTIONS(2709), - [anon_sym_STAR] = ACTIONS(2711), - [anon_sym_AMP_AMP] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym_SEMI] = ACTIONS(2711), - [anon_sym_typedef] = ACTIONS(2709), - [anon_sym_extern] = ACTIONS(2709), - [anon_sym___attribute__] = ACTIONS(2709), - [anon_sym_COLON_COLON] = ACTIONS(2711), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2711), - [anon_sym___declspec] = ACTIONS(2709), - [anon_sym___based] = ACTIONS(2709), - [anon_sym___cdecl] = ACTIONS(2709), - [anon_sym___clrcall] = ACTIONS(2709), - [anon_sym___stdcall] = ACTIONS(2709), - [anon_sym___fastcall] = ACTIONS(2709), - [anon_sym___thiscall] = ACTIONS(2709), - [anon_sym___vectorcall] = ACTIONS(2709), - [anon_sym_LBRACE] = ACTIONS(2711), - [anon_sym_RBRACE] = ACTIONS(2711), - [anon_sym_LBRACK] = ACTIONS(2709), - [anon_sym_static] = ACTIONS(2709), - [anon_sym_register] = ACTIONS(2709), - [anon_sym_inline] = ACTIONS(2709), - [anon_sym_thread_local] = ACTIONS(2709), - [anon_sym_const] = ACTIONS(2709), - [anon_sym_volatile] = ACTIONS(2709), - [anon_sym_restrict] = ACTIONS(2709), - [anon_sym__Atomic] = ACTIONS(2709), - [anon_sym_mutable] = ACTIONS(2709), - [anon_sym_constexpr] = ACTIONS(2709), - [anon_sym_constinit] = ACTIONS(2709), - [anon_sym_consteval] = ACTIONS(2709), - [anon_sym_signed] = ACTIONS(2709), - [anon_sym_unsigned] = ACTIONS(2709), - [anon_sym_long] = ACTIONS(2709), - [anon_sym_short] = ACTIONS(2709), - [sym_primitive_type] = ACTIONS(2709), - [anon_sym_enum] = ACTIONS(2709), - [anon_sym_class] = ACTIONS(2709), - [anon_sym_struct] = ACTIONS(2709), - [anon_sym_union] = ACTIONS(2709), - [anon_sym_if] = ACTIONS(2709), - [anon_sym_switch] = ACTIONS(2709), - [anon_sym_case] = ACTIONS(2709), - [anon_sym_default] = ACTIONS(2709), - [anon_sym_while] = ACTIONS(2709), - [anon_sym_do] = ACTIONS(2709), - [anon_sym_for] = ACTIONS(2709), - [anon_sym_return] = ACTIONS(2709), - [anon_sym_break] = ACTIONS(2709), - [anon_sym_continue] = ACTIONS(2709), - [anon_sym_goto] = ACTIONS(2709), - [anon_sym_DASH_DASH] = ACTIONS(2711), - [anon_sym_PLUS_PLUS] = ACTIONS(2711), - [anon_sym_sizeof] = ACTIONS(2709), - [sym_number_literal] = ACTIONS(2711), - [anon_sym_L_SQUOTE] = ACTIONS(2711), - [anon_sym_u_SQUOTE] = ACTIONS(2711), - [anon_sym_U_SQUOTE] = ACTIONS(2711), - [anon_sym_u8_SQUOTE] = ACTIONS(2711), - [anon_sym_SQUOTE] = ACTIONS(2711), - [anon_sym_L_DQUOTE] = ACTIONS(2711), - [anon_sym_u_DQUOTE] = ACTIONS(2711), - [anon_sym_U_DQUOTE] = ACTIONS(2711), - [anon_sym_u8_DQUOTE] = ACTIONS(2711), - [anon_sym_DQUOTE] = ACTIONS(2711), - [sym_true] = ACTIONS(2709), - [sym_false] = ACTIONS(2709), - [sym_null] = ACTIONS(2709), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2709), - [anon_sym_decltype] = ACTIONS(2709), - [anon_sym_virtual] = ACTIONS(2709), - [anon_sym_explicit] = ACTIONS(2709), - [anon_sym_typename] = ACTIONS(2709), - [anon_sym_template] = ACTIONS(2709), - [anon_sym_operator] = ACTIONS(2709), - [anon_sym_try] = ACTIONS(2709), - [anon_sym_delete] = ACTIONS(2709), - [anon_sym_throw] = ACTIONS(2709), - [anon_sym_namespace] = ACTIONS(2709), - [anon_sym_using] = ACTIONS(2709), - [anon_sym_static_assert] = ACTIONS(2709), - [anon_sym_concept] = ACTIONS(2709), - [anon_sym_co_return] = ACTIONS(2709), - [anon_sym_co_yield] = ACTIONS(2709), - [anon_sym_co_await] = ACTIONS(2709), - [anon_sym_new] = ACTIONS(2709), - [anon_sym_requires] = ACTIONS(2709), - [sym_this] = ACTIONS(2709), - [sym_nullptr] = ACTIONS(2709), - [sym_raw_string_literal] = ACTIONS(2711), + [573] = { + [ts_builtin_sym_end] = ACTIONS(2613), + [sym_identifier] = ACTIONS(2611), + [aux_sym_preproc_include_token1] = ACTIONS(2611), + [aux_sym_preproc_def_token1] = ACTIONS(2611), + [aux_sym_preproc_if_token1] = ACTIONS(2611), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2611), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2611), + [sym_preproc_directive] = ACTIONS(2611), + [anon_sym_LPAREN2] = ACTIONS(2613), + [anon_sym_BANG] = ACTIONS(2613), + [anon_sym_TILDE] = ACTIONS(2613), + [anon_sym_DASH] = ACTIONS(2611), + [anon_sym_PLUS] = ACTIONS(2611), + [anon_sym_STAR] = ACTIONS(2613), + [anon_sym_AMP_AMP] = ACTIONS(2613), + [anon_sym_AMP] = ACTIONS(2611), + [anon_sym_SEMI] = ACTIONS(2613), + [anon_sym_typedef] = ACTIONS(2611), + [anon_sym_extern] = ACTIONS(2611), + [anon_sym___attribute__] = ACTIONS(2611), + [anon_sym_COLON_COLON] = ACTIONS(2613), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2613), + [anon_sym___declspec] = ACTIONS(2611), + [anon_sym___based] = ACTIONS(2611), + [anon_sym___cdecl] = ACTIONS(2611), + [anon_sym___clrcall] = ACTIONS(2611), + [anon_sym___stdcall] = ACTIONS(2611), + [anon_sym___fastcall] = ACTIONS(2611), + [anon_sym___thiscall] = ACTIONS(2611), + [anon_sym___vectorcall] = ACTIONS(2611), + [anon_sym_LBRACE] = ACTIONS(2613), + [anon_sym_LBRACK] = ACTIONS(2611), + [anon_sym_static] = ACTIONS(2611), + [anon_sym_register] = ACTIONS(2611), + [anon_sym_inline] = ACTIONS(2611), + [anon_sym_thread_local] = ACTIONS(2611), + [anon_sym_const] = ACTIONS(2611), + [anon_sym_volatile] = ACTIONS(2611), + [anon_sym_restrict] = ACTIONS(2611), + [anon_sym__Atomic] = ACTIONS(2611), + [anon_sym_mutable] = ACTIONS(2611), + [anon_sym_constexpr] = ACTIONS(2611), + [anon_sym_constinit] = ACTIONS(2611), + [anon_sym_consteval] = ACTIONS(2611), + [anon_sym_signed] = ACTIONS(2611), + [anon_sym_unsigned] = ACTIONS(2611), + [anon_sym_long] = ACTIONS(2611), + [anon_sym_short] = ACTIONS(2611), + [sym_primitive_type] = ACTIONS(2611), + [anon_sym_enum] = ACTIONS(2611), + [anon_sym_class] = ACTIONS(2611), + [anon_sym_struct] = ACTIONS(2611), + [anon_sym_union] = ACTIONS(2611), + [anon_sym_if] = ACTIONS(2611), + [anon_sym_else] = ACTIONS(2611), + [anon_sym_switch] = ACTIONS(2611), + [anon_sym_case] = ACTIONS(2611), + [anon_sym_default] = ACTIONS(2611), + [anon_sym_while] = ACTIONS(2611), + [anon_sym_do] = ACTIONS(2611), + [anon_sym_for] = ACTIONS(2611), + [anon_sym_return] = ACTIONS(2611), + [anon_sym_break] = ACTIONS(2611), + [anon_sym_continue] = ACTIONS(2611), + [anon_sym_goto] = ACTIONS(2611), + [anon_sym_not] = ACTIONS(2611), + [anon_sym_compl] = ACTIONS(2611), + [anon_sym_DASH_DASH] = ACTIONS(2613), + [anon_sym_PLUS_PLUS] = ACTIONS(2613), + [anon_sym_sizeof] = ACTIONS(2611), + [sym_number_literal] = ACTIONS(2613), + [anon_sym_L_SQUOTE] = ACTIONS(2613), + [anon_sym_u_SQUOTE] = ACTIONS(2613), + [anon_sym_U_SQUOTE] = ACTIONS(2613), + [anon_sym_u8_SQUOTE] = ACTIONS(2613), + [anon_sym_SQUOTE] = ACTIONS(2613), + [anon_sym_L_DQUOTE] = ACTIONS(2613), + [anon_sym_u_DQUOTE] = ACTIONS(2613), + [anon_sym_U_DQUOTE] = ACTIONS(2613), + [anon_sym_u8_DQUOTE] = ACTIONS(2613), + [anon_sym_DQUOTE] = ACTIONS(2613), + [sym_true] = ACTIONS(2611), + [sym_false] = ACTIONS(2611), + [sym_null] = ACTIONS(2611), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2611), + [anon_sym_decltype] = ACTIONS(2611), + [anon_sym_virtual] = ACTIONS(2611), + [anon_sym_explicit] = ACTIONS(2611), + [anon_sym_typename] = ACTIONS(2611), + [anon_sym_template] = ACTIONS(2611), + [anon_sym_operator] = ACTIONS(2611), + [anon_sym_try] = ACTIONS(2611), + [anon_sym_delete] = ACTIONS(2611), + [anon_sym_throw] = ACTIONS(2611), + [anon_sym_namespace] = ACTIONS(2611), + [anon_sym_using] = ACTIONS(2611), + [anon_sym_static_assert] = ACTIONS(2611), + [anon_sym_concept] = ACTIONS(2611), + [anon_sym_co_return] = ACTIONS(2611), + [anon_sym_co_yield] = ACTIONS(2611), + [anon_sym_co_await] = ACTIONS(2611), + [anon_sym_new] = ACTIONS(2611), + [anon_sym_requires] = ACTIONS(2611), + [sym_this] = ACTIONS(2611), + [sym_nullptr] = ACTIONS(2611), + [sym_raw_string_literal] = ACTIONS(2613), }, - [921] = { - [sym_identifier] = ACTIONS(2617), - [aux_sym_preproc_include_token1] = ACTIONS(2617), - [aux_sym_preproc_def_token1] = ACTIONS(2617), - [aux_sym_preproc_if_token1] = ACTIONS(2617), - [aux_sym_preproc_if_token2] = ACTIONS(2617), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2617), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2617), - [sym_preproc_directive] = ACTIONS(2617), - [anon_sym_LPAREN2] = ACTIONS(2619), - [anon_sym_BANG] = ACTIONS(2619), - [anon_sym_TILDE] = ACTIONS(2619), - [anon_sym_DASH] = ACTIONS(2617), - [anon_sym_PLUS] = ACTIONS(2617), - [anon_sym_STAR] = ACTIONS(2619), - [anon_sym_AMP_AMP] = ACTIONS(2619), - [anon_sym_AMP] = ACTIONS(2617), - [anon_sym_SEMI] = ACTIONS(2619), - [anon_sym_typedef] = ACTIONS(2617), - [anon_sym_extern] = ACTIONS(2617), - [anon_sym___attribute__] = ACTIONS(2617), - [anon_sym_COLON_COLON] = ACTIONS(2619), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2619), - [anon_sym___declspec] = ACTIONS(2617), - [anon_sym___based] = ACTIONS(2617), - [anon_sym___cdecl] = ACTIONS(2617), - [anon_sym___clrcall] = ACTIONS(2617), - [anon_sym___stdcall] = ACTIONS(2617), - [anon_sym___fastcall] = ACTIONS(2617), - [anon_sym___thiscall] = ACTIONS(2617), - [anon_sym___vectorcall] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2619), - [anon_sym_LBRACK] = ACTIONS(2617), - [anon_sym_static] = ACTIONS(2617), - [anon_sym_register] = ACTIONS(2617), - [anon_sym_inline] = ACTIONS(2617), - [anon_sym_thread_local] = ACTIONS(2617), - [anon_sym_const] = ACTIONS(2617), - [anon_sym_volatile] = ACTIONS(2617), - [anon_sym_restrict] = ACTIONS(2617), - [anon_sym__Atomic] = ACTIONS(2617), - [anon_sym_mutable] = ACTIONS(2617), - [anon_sym_constexpr] = ACTIONS(2617), - [anon_sym_constinit] = ACTIONS(2617), - [anon_sym_consteval] = ACTIONS(2617), - [anon_sym_signed] = ACTIONS(2617), - [anon_sym_unsigned] = ACTIONS(2617), - [anon_sym_long] = ACTIONS(2617), - [anon_sym_short] = ACTIONS(2617), - [sym_primitive_type] = ACTIONS(2617), - [anon_sym_enum] = ACTIONS(2617), - [anon_sym_class] = ACTIONS(2617), - [anon_sym_struct] = ACTIONS(2617), - [anon_sym_union] = ACTIONS(2617), - [anon_sym_if] = ACTIONS(2617), - [anon_sym_switch] = ACTIONS(2617), - [anon_sym_case] = ACTIONS(2617), - [anon_sym_default] = ACTIONS(2617), - [anon_sym_while] = ACTIONS(2617), - [anon_sym_do] = ACTIONS(2617), - [anon_sym_for] = ACTIONS(2617), - [anon_sym_return] = ACTIONS(2617), - [anon_sym_break] = ACTIONS(2617), - [anon_sym_continue] = ACTIONS(2617), - [anon_sym_goto] = ACTIONS(2617), - [anon_sym_DASH_DASH] = ACTIONS(2619), - [anon_sym_PLUS_PLUS] = ACTIONS(2619), - [anon_sym_sizeof] = ACTIONS(2617), - [sym_number_literal] = ACTIONS(2619), - [anon_sym_L_SQUOTE] = ACTIONS(2619), - [anon_sym_u_SQUOTE] = ACTIONS(2619), - [anon_sym_U_SQUOTE] = ACTIONS(2619), - [anon_sym_u8_SQUOTE] = ACTIONS(2619), - [anon_sym_SQUOTE] = ACTIONS(2619), - [anon_sym_L_DQUOTE] = ACTIONS(2619), - [anon_sym_u_DQUOTE] = ACTIONS(2619), - [anon_sym_U_DQUOTE] = ACTIONS(2619), - [anon_sym_u8_DQUOTE] = ACTIONS(2619), - [anon_sym_DQUOTE] = ACTIONS(2619), - [sym_true] = ACTIONS(2617), - [sym_false] = ACTIONS(2617), - [sym_null] = ACTIONS(2617), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2617), - [anon_sym_decltype] = ACTIONS(2617), - [anon_sym_virtual] = ACTIONS(2617), - [anon_sym_explicit] = ACTIONS(2617), - [anon_sym_typename] = ACTIONS(2617), - [anon_sym_template] = ACTIONS(2617), - [anon_sym_operator] = ACTIONS(2617), - [anon_sym_try] = ACTIONS(2617), - [anon_sym_delete] = ACTIONS(2617), - [anon_sym_throw] = ACTIONS(2617), - [anon_sym_namespace] = ACTIONS(2617), - [anon_sym_using] = ACTIONS(2617), - [anon_sym_static_assert] = ACTIONS(2617), - [anon_sym_concept] = ACTIONS(2617), - [anon_sym_co_return] = ACTIONS(2617), - [anon_sym_co_yield] = ACTIONS(2617), - [anon_sym_co_await] = ACTIONS(2617), - [anon_sym_new] = ACTIONS(2617), - [anon_sym_requires] = ACTIONS(2617), - [sym_this] = ACTIONS(2617), - [sym_nullptr] = ACTIONS(2617), - [sym_raw_string_literal] = ACTIONS(2619), + [574] = { + [ts_builtin_sym_end] = ACTIONS(2561), + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [922] = { - [sym_identifier] = ACTIONS(2747), - [aux_sym_preproc_include_token1] = ACTIONS(2747), - [aux_sym_preproc_def_token1] = ACTIONS(2747), - [aux_sym_preproc_if_token1] = ACTIONS(2747), - [aux_sym_preproc_if_token2] = ACTIONS(2747), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2747), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2747), - [sym_preproc_directive] = ACTIONS(2747), - [anon_sym_LPAREN2] = ACTIONS(2749), - [anon_sym_BANG] = ACTIONS(2749), - [anon_sym_TILDE] = ACTIONS(2749), - [anon_sym_DASH] = ACTIONS(2747), - [anon_sym_PLUS] = ACTIONS(2747), - [anon_sym_STAR] = ACTIONS(2749), - [anon_sym_AMP_AMP] = ACTIONS(2749), - [anon_sym_AMP] = ACTIONS(2747), - [anon_sym_SEMI] = ACTIONS(2749), - [anon_sym_typedef] = ACTIONS(2747), - [anon_sym_extern] = ACTIONS(2747), - [anon_sym___attribute__] = ACTIONS(2747), - [anon_sym_COLON_COLON] = ACTIONS(2749), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2749), - [anon_sym___declspec] = ACTIONS(2747), - [anon_sym___based] = ACTIONS(2747), - [anon_sym___cdecl] = ACTIONS(2747), - [anon_sym___clrcall] = ACTIONS(2747), - [anon_sym___stdcall] = ACTIONS(2747), - [anon_sym___fastcall] = ACTIONS(2747), - [anon_sym___thiscall] = ACTIONS(2747), - [anon_sym___vectorcall] = ACTIONS(2747), - [anon_sym_LBRACE] = ACTIONS(2749), - [anon_sym_LBRACK] = ACTIONS(2747), - [anon_sym_static] = ACTIONS(2747), - [anon_sym_register] = ACTIONS(2747), - [anon_sym_inline] = ACTIONS(2747), - [anon_sym_thread_local] = ACTIONS(2747), - [anon_sym_const] = ACTIONS(2747), - [anon_sym_volatile] = ACTIONS(2747), - [anon_sym_restrict] = ACTIONS(2747), - [anon_sym__Atomic] = ACTIONS(2747), - [anon_sym_mutable] = ACTIONS(2747), - [anon_sym_constexpr] = ACTIONS(2747), - [anon_sym_constinit] = ACTIONS(2747), - [anon_sym_consteval] = ACTIONS(2747), - [anon_sym_signed] = ACTIONS(2747), - [anon_sym_unsigned] = ACTIONS(2747), - [anon_sym_long] = ACTIONS(2747), - [anon_sym_short] = ACTIONS(2747), - [sym_primitive_type] = ACTIONS(2747), - [anon_sym_enum] = ACTIONS(2747), - [anon_sym_class] = ACTIONS(2747), - [anon_sym_struct] = ACTIONS(2747), - [anon_sym_union] = ACTIONS(2747), - [anon_sym_if] = ACTIONS(2747), - [anon_sym_switch] = ACTIONS(2747), - [anon_sym_case] = ACTIONS(2747), - [anon_sym_default] = ACTIONS(2747), - [anon_sym_while] = ACTIONS(2747), - [anon_sym_do] = ACTIONS(2747), - [anon_sym_for] = ACTIONS(2747), - [anon_sym_return] = ACTIONS(2747), - [anon_sym_break] = ACTIONS(2747), - [anon_sym_continue] = ACTIONS(2747), - [anon_sym_goto] = ACTIONS(2747), - [anon_sym_DASH_DASH] = ACTIONS(2749), - [anon_sym_PLUS_PLUS] = ACTIONS(2749), - [anon_sym_sizeof] = ACTIONS(2747), - [sym_number_literal] = ACTIONS(2749), - [anon_sym_L_SQUOTE] = ACTIONS(2749), - [anon_sym_u_SQUOTE] = ACTIONS(2749), - [anon_sym_U_SQUOTE] = ACTIONS(2749), - [anon_sym_u8_SQUOTE] = ACTIONS(2749), - [anon_sym_SQUOTE] = ACTIONS(2749), - [anon_sym_L_DQUOTE] = ACTIONS(2749), - [anon_sym_u_DQUOTE] = ACTIONS(2749), - [anon_sym_U_DQUOTE] = ACTIONS(2749), - [anon_sym_u8_DQUOTE] = ACTIONS(2749), - [anon_sym_DQUOTE] = ACTIONS(2749), - [sym_true] = ACTIONS(2747), - [sym_false] = ACTIONS(2747), - [sym_null] = ACTIONS(2747), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2747), - [anon_sym_decltype] = ACTIONS(2747), - [anon_sym_virtual] = ACTIONS(2747), - [anon_sym_explicit] = ACTIONS(2747), - [anon_sym_typename] = ACTIONS(2747), - [anon_sym_template] = ACTIONS(2747), - [anon_sym_operator] = ACTIONS(2747), - [anon_sym_try] = ACTIONS(2747), - [anon_sym_delete] = ACTIONS(2747), - [anon_sym_throw] = ACTIONS(2747), - [anon_sym_namespace] = ACTIONS(2747), - [anon_sym_using] = ACTIONS(2747), - [anon_sym_static_assert] = ACTIONS(2747), - [anon_sym_concept] = ACTIONS(2747), - [anon_sym_co_return] = ACTIONS(2747), - [anon_sym_co_yield] = ACTIONS(2747), - [anon_sym_co_await] = ACTIONS(2747), - [anon_sym_new] = ACTIONS(2747), - [anon_sym_requires] = ACTIONS(2747), - [sym_this] = ACTIONS(2747), - [sym_nullptr] = ACTIONS(2747), - [sym_raw_string_literal] = ACTIONS(2749), + [575] = { + [ts_builtin_sym_end] = ACTIONS(2561), + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [923] = { - [sym_identifier] = ACTIONS(2591), - [aux_sym_preproc_include_token1] = ACTIONS(2591), - [aux_sym_preproc_def_token1] = ACTIONS(2591), - [aux_sym_preproc_if_token1] = ACTIONS(2591), - [aux_sym_preproc_if_token2] = ACTIONS(2591), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2591), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2591), - [sym_preproc_directive] = ACTIONS(2591), - [anon_sym_LPAREN2] = ACTIONS(2593), - [anon_sym_BANG] = ACTIONS(2593), - [anon_sym_TILDE] = ACTIONS(2593), - [anon_sym_DASH] = ACTIONS(2591), - [anon_sym_PLUS] = ACTIONS(2591), - [anon_sym_STAR] = ACTIONS(2593), - [anon_sym_AMP_AMP] = ACTIONS(2593), - [anon_sym_AMP] = ACTIONS(2591), - [anon_sym_SEMI] = ACTIONS(2593), - [anon_sym_typedef] = ACTIONS(2591), - [anon_sym_extern] = ACTIONS(2591), - [anon_sym___attribute__] = ACTIONS(2591), - [anon_sym_COLON_COLON] = ACTIONS(2593), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2593), - [anon_sym___declspec] = ACTIONS(2591), - [anon_sym___based] = ACTIONS(2591), - [anon_sym___cdecl] = ACTIONS(2591), - [anon_sym___clrcall] = ACTIONS(2591), - [anon_sym___stdcall] = ACTIONS(2591), - [anon_sym___fastcall] = ACTIONS(2591), - [anon_sym___thiscall] = ACTIONS(2591), - [anon_sym___vectorcall] = ACTIONS(2591), - [anon_sym_LBRACE] = ACTIONS(2593), - [anon_sym_LBRACK] = ACTIONS(2591), - [anon_sym_static] = ACTIONS(2591), - [anon_sym_register] = ACTIONS(2591), - [anon_sym_inline] = ACTIONS(2591), - [anon_sym_thread_local] = ACTIONS(2591), - [anon_sym_const] = ACTIONS(2591), - [anon_sym_volatile] = ACTIONS(2591), - [anon_sym_restrict] = ACTIONS(2591), - [anon_sym__Atomic] = ACTIONS(2591), - [anon_sym_mutable] = ACTIONS(2591), - [anon_sym_constexpr] = ACTIONS(2591), - [anon_sym_constinit] = ACTIONS(2591), - [anon_sym_consteval] = ACTIONS(2591), - [anon_sym_signed] = ACTIONS(2591), - [anon_sym_unsigned] = ACTIONS(2591), - [anon_sym_long] = ACTIONS(2591), - [anon_sym_short] = ACTIONS(2591), - [sym_primitive_type] = ACTIONS(2591), - [anon_sym_enum] = ACTIONS(2591), - [anon_sym_class] = ACTIONS(2591), - [anon_sym_struct] = ACTIONS(2591), - [anon_sym_union] = ACTIONS(2591), - [anon_sym_if] = ACTIONS(2591), - [anon_sym_switch] = ACTIONS(2591), - [anon_sym_case] = ACTIONS(2591), - [anon_sym_default] = ACTIONS(2591), - [anon_sym_while] = ACTIONS(2591), - [anon_sym_do] = ACTIONS(2591), - [anon_sym_for] = ACTIONS(2591), - [anon_sym_return] = ACTIONS(2591), - [anon_sym_break] = ACTIONS(2591), - [anon_sym_continue] = ACTIONS(2591), - [anon_sym_goto] = ACTIONS(2591), - [anon_sym_DASH_DASH] = ACTIONS(2593), - [anon_sym_PLUS_PLUS] = ACTIONS(2593), - [anon_sym_sizeof] = ACTIONS(2591), - [sym_number_literal] = ACTIONS(2593), - [anon_sym_L_SQUOTE] = ACTIONS(2593), - [anon_sym_u_SQUOTE] = ACTIONS(2593), - [anon_sym_U_SQUOTE] = ACTIONS(2593), - [anon_sym_u8_SQUOTE] = ACTIONS(2593), - [anon_sym_SQUOTE] = ACTIONS(2593), - [anon_sym_L_DQUOTE] = ACTIONS(2593), - [anon_sym_u_DQUOTE] = ACTIONS(2593), - [anon_sym_U_DQUOTE] = ACTIONS(2593), - [anon_sym_u8_DQUOTE] = ACTIONS(2593), - [anon_sym_DQUOTE] = ACTIONS(2593), - [sym_true] = ACTIONS(2591), - [sym_false] = ACTIONS(2591), - [sym_null] = ACTIONS(2591), + [576] = { + [sym_identifier] = ACTIONS(2651), + [aux_sym_preproc_include_token1] = ACTIONS(2651), + [aux_sym_preproc_def_token1] = ACTIONS(2651), + [aux_sym_preproc_if_token1] = ACTIONS(2651), + [aux_sym_preproc_if_token2] = ACTIONS(2651), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2651), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2651), + [sym_preproc_directive] = ACTIONS(2651), + [anon_sym_LPAREN2] = ACTIONS(2653), + [anon_sym_BANG] = ACTIONS(2653), + [anon_sym_TILDE] = ACTIONS(2653), + [anon_sym_DASH] = ACTIONS(2651), + [anon_sym_PLUS] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2653), + [anon_sym_AMP_AMP] = ACTIONS(2653), + [anon_sym_AMP] = ACTIONS(2651), + [anon_sym_SEMI] = ACTIONS(2653), + [anon_sym_typedef] = ACTIONS(2651), + [anon_sym_extern] = ACTIONS(2651), + [anon_sym___attribute__] = ACTIONS(2651), + [anon_sym_COLON_COLON] = ACTIONS(2653), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2653), + [anon_sym___declspec] = ACTIONS(2651), + [anon_sym___based] = ACTIONS(2651), + [anon_sym___cdecl] = ACTIONS(2651), + [anon_sym___clrcall] = ACTIONS(2651), + [anon_sym___stdcall] = ACTIONS(2651), + [anon_sym___fastcall] = ACTIONS(2651), + [anon_sym___thiscall] = ACTIONS(2651), + [anon_sym___vectorcall] = ACTIONS(2651), + [anon_sym_LBRACE] = ACTIONS(2653), + [anon_sym_LBRACK] = ACTIONS(2651), + [anon_sym_static] = ACTIONS(2651), + [anon_sym_register] = ACTIONS(2651), + [anon_sym_inline] = ACTIONS(2651), + [anon_sym_thread_local] = ACTIONS(2651), + [anon_sym_const] = ACTIONS(2651), + [anon_sym_volatile] = ACTIONS(2651), + [anon_sym_restrict] = ACTIONS(2651), + [anon_sym__Atomic] = ACTIONS(2651), + [anon_sym_mutable] = ACTIONS(2651), + [anon_sym_constexpr] = ACTIONS(2651), + [anon_sym_constinit] = ACTIONS(2651), + [anon_sym_consteval] = ACTIONS(2651), + [anon_sym_signed] = ACTIONS(2651), + [anon_sym_unsigned] = ACTIONS(2651), + [anon_sym_long] = ACTIONS(2651), + [anon_sym_short] = ACTIONS(2651), + [sym_primitive_type] = ACTIONS(2651), + [anon_sym_enum] = ACTIONS(2651), + [anon_sym_class] = ACTIONS(2651), + [anon_sym_struct] = ACTIONS(2651), + [anon_sym_union] = ACTIONS(2651), + [anon_sym_if] = ACTIONS(2651), + [anon_sym_else] = ACTIONS(2651), + [anon_sym_switch] = ACTIONS(2651), + [anon_sym_case] = ACTIONS(2651), + [anon_sym_default] = ACTIONS(2651), + [anon_sym_while] = ACTIONS(2651), + [anon_sym_do] = ACTIONS(2651), + [anon_sym_for] = ACTIONS(2651), + [anon_sym_return] = ACTIONS(2651), + [anon_sym_break] = ACTIONS(2651), + [anon_sym_continue] = ACTIONS(2651), + [anon_sym_goto] = ACTIONS(2651), + [anon_sym_not] = ACTIONS(2651), + [anon_sym_compl] = ACTIONS(2651), + [anon_sym_DASH_DASH] = ACTIONS(2653), + [anon_sym_PLUS_PLUS] = ACTIONS(2653), + [anon_sym_sizeof] = ACTIONS(2651), + [sym_number_literal] = ACTIONS(2653), + [anon_sym_L_SQUOTE] = ACTIONS(2653), + [anon_sym_u_SQUOTE] = ACTIONS(2653), + [anon_sym_U_SQUOTE] = ACTIONS(2653), + [anon_sym_u8_SQUOTE] = ACTIONS(2653), + [anon_sym_SQUOTE] = ACTIONS(2653), + [anon_sym_L_DQUOTE] = ACTIONS(2653), + [anon_sym_u_DQUOTE] = ACTIONS(2653), + [anon_sym_U_DQUOTE] = ACTIONS(2653), + [anon_sym_u8_DQUOTE] = ACTIONS(2653), + [anon_sym_DQUOTE] = ACTIONS(2653), + [sym_true] = ACTIONS(2651), + [sym_false] = ACTIONS(2651), + [sym_null] = ACTIONS(2651), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2591), - [anon_sym_decltype] = ACTIONS(2591), - [anon_sym_virtual] = ACTIONS(2591), - [anon_sym_explicit] = ACTIONS(2591), - [anon_sym_typename] = ACTIONS(2591), - [anon_sym_template] = ACTIONS(2591), - [anon_sym_operator] = ACTIONS(2591), - [anon_sym_try] = ACTIONS(2591), - [anon_sym_delete] = ACTIONS(2591), - [anon_sym_throw] = ACTIONS(2591), - [anon_sym_namespace] = ACTIONS(2591), - [anon_sym_using] = ACTIONS(2591), - [anon_sym_static_assert] = ACTIONS(2591), - [anon_sym_concept] = ACTIONS(2591), - [anon_sym_co_return] = ACTIONS(2591), - [anon_sym_co_yield] = ACTIONS(2591), - [anon_sym_co_await] = ACTIONS(2591), - [anon_sym_new] = ACTIONS(2591), - [anon_sym_requires] = ACTIONS(2591), - [sym_this] = ACTIONS(2591), - [sym_nullptr] = ACTIONS(2591), - [sym_raw_string_literal] = ACTIONS(2593), - }, - [924] = { - [sym_identifier] = ACTIONS(2739), - [aux_sym_preproc_include_token1] = ACTIONS(2739), - [aux_sym_preproc_def_token1] = ACTIONS(2739), - [aux_sym_preproc_if_token1] = ACTIONS(2739), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2739), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2739), - [sym_preproc_directive] = ACTIONS(2739), - [anon_sym_LPAREN2] = ACTIONS(2741), - [anon_sym_BANG] = ACTIONS(2741), - [anon_sym_TILDE] = ACTIONS(2741), - [anon_sym_DASH] = ACTIONS(2739), - [anon_sym_PLUS] = ACTIONS(2739), - [anon_sym_STAR] = ACTIONS(2741), - [anon_sym_AMP_AMP] = ACTIONS(2741), - [anon_sym_AMP] = ACTIONS(2739), - [anon_sym_SEMI] = ACTIONS(2741), - [anon_sym_typedef] = ACTIONS(2739), - [anon_sym_extern] = ACTIONS(2739), - [anon_sym___attribute__] = ACTIONS(2739), - [anon_sym_COLON_COLON] = ACTIONS(2741), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2741), - [anon_sym___declspec] = ACTIONS(2739), - [anon_sym___based] = ACTIONS(2739), - [anon_sym___cdecl] = ACTIONS(2739), - [anon_sym___clrcall] = ACTIONS(2739), - [anon_sym___stdcall] = ACTIONS(2739), - [anon_sym___fastcall] = ACTIONS(2739), - [anon_sym___thiscall] = ACTIONS(2739), - [anon_sym___vectorcall] = ACTIONS(2739), - [anon_sym_LBRACE] = ACTIONS(2741), - [anon_sym_RBRACE] = ACTIONS(2741), - [anon_sym_LBRACK] = ACTIONS(2739), - [anon_sym_static] = ACTIONS(2739), - [anon_sym_register] = ACTIONS(2739), - [anon_sym_inline] = ACTIONS(2739), - [anon_sym_thread_local] = ACTIONS(2739), - [anon_sym_const] = ACTIONS(2739), - [anon_sym_volatile] = ACTIONS(2739), - [anon_sym_restrict] = ACTIONS(2739), - [anon_sym__Atomic] = ACTIONS(2739), - [anon_sym_mutable] = ACTIONS(2739), - [anon_sym_constexpr] = ACTIONS(2739), - [anon_sym_constinit] = ACTIONS(2739), - [anon_sym_consteval] = ACTIONS(2739), - [anon_sym_signed] = ACTIONS(2739), - [anon_sym_unsigned] = ACTIONS(2739), - [anon_sym_long] = ACTIONS(2739), - [anon_sym_short] = ACTIONS(2739), - [sym_primitive_type] = ACTIONS(2739), - [anon_sym_enum] = ACTIONS(2739), - [anon_sym_class] = ACTIONS(2739), - [anon_sym_struct] = ACTIONS(2739), - [anon_sym_union] = ACTIONS(2739), - [anon_sym_if] = ACTIONS(2739), - [anon_sym_switch] = ACTIONS(2739), - [anon_sym_case] = ACTIONS(2739), - [anon_sym_default] = ACTIONS(2739), - [anon_sym_while] = ACTIONS(2739), - [anon_sym_do] = ACTIONS(2739), - [anon_sym_for] = ACTIONS(2739), - [anon_sym_return] = ACTIONS(2739), - [anon_sym_break] = ACTIONS(2739), - [anon_sym_continue] = ACTIONS(2739), - [anon_sym_goto] = ACTIONS(2739), - [anon_sym_DASH_DASH] = ACTIONS(2741), - [anon_sym_PLUS_PLUS] = ACTIONS(2741), - [anon_sym_sizeof] = ACTIONS(2739), - [sym_number_literal] = ACTIONS(2741), - [anon_sym_L_SQUOTE] = ACTIONS(2741), - [anon_sym_u_SQUOTE] = ACTIONS(2741), - [anon_sym_U_SQUOTE] = ACTIONS(2741), - [anon_sym_u8_SQUOTE] = ACTIONS(2741), - [anon_sym_SQUOTE] = ACTIONS(2741), - [anon_sym_L_DQUOTE] = ACTIONS(2741), - [anon_sym_u_DQUOTE] = ACTIONS(2741), - [anon_sym_U_DQUOTE] = ACTIONS(2741), - [anon_sym_u8_DQUOTE] = ACTIONS(2741), - [anon_sym_DQUOTE] = ACTIONS(2741), - [sym_true] = ACTIONS(2739), - [sym_false] = ACTIONS(2739), - [sym_null] = ACTIONS(2739), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2739), - [anon_sym_decltype] = ACTIONS(2739), - [anon_sym_virtual] = ACTIONS(2739), - [anon_sym_explicit] = ACTIONS(2739), - [anon_sym_typename] = ACTIONS(2739), - [anon_sym_template] = ACTIONS(2739), - [anon_sym_operator] = ACTIONS(2739), - [anon_sym_try] = ACTIONS(2739), - [anon_sym_delete] = ACTIONS(2739), - [anon_sym_throw] = ACTIONS(2739), - [anon_sym_namespace] = ACTIONS(2739), - [anon_sym_using] = ACTIONS(2739), - [anon_sym_static_assert] = ACTIONS(2739), - [anon_sym_concept] = ACTIONS(2739), - [anon_sym_co_return] = ACTIONS(2739), - [anon_sym_co_yield] = ACTIONS(2739), - [anon_sym_co_await] = ACTIONS(2739), - [anon_sym_new] = ACTIONS(2739), - [anon_sym_requires] = ACTIONS(2739), - [sym_this] = ACTIONS(2739), - [sym_nullptr] = ACTIONS(2739), - [sym_raw_string_literal] = ACTIONS(2741), - }, - [925] = { - [sym_identifier] = ACTIONS(2625), - [aux_sym_preproc_include_token1] = ACTIONS(2625), - [aux_sym_preproc_def_token1] = ACTIONS(2625), - [aux_sym_preproc_if_token1] = ACTIONS(2625), - [aux_sym_preproc_if_token2] = ACTIONS(2625), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2625), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2625), - [sym_preproc_directive] = ACTIONS(2625), - [anon_sym_LPAREN2] = ACTIONS(2627), - [anon_sym_BANG] = ACTIONS(2627), - [anon_sym_TILDE] = ACTIONS(2627), - [anon_sym_DASH] = ACTIONS(2625), - [anon_sym_PLUS] = ACTIONS(2625), - [anon_sym_STAR] = ACTIONS(2627), - [anon_sym_AMP_AMP] = ACTIONS(2627), - [anon_sym_AMP] = ACTIONS(2625), - [anon_sym_SEMI] = ACTIONS(2627), - [anon_sym_typedef] = ACTIONS(2625), - [anon_sym_extern] = ACTIONS(2625), - [anon_sym___attribute__] = ACTIONS(2625), - [anon_sym_COLON_COLON] = ACTIONS(2627), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2627), - [anon_sym___declspec] = ACTIONS(2625), - [anon_sym___based] = ACTIONS(2625), - [anon_sym___cdecl] = ACTIONS(2625), - [anon_sym___clrcall] = ACTIONS(2625), - [anon_sym___stdcall] = ACTIONS(2625), - [anon_sym___fastcall] = ACTIONS(2625), - [anon_sym___thiscall] = ACTIONS(2625), - [anon_sym___vectorcall] = ACTIONS(2625), - [anon_sym_LBRACE] = ACTIONS(2627), - [anon_sym_LBRACK] = ACTIONS(2625), - [anon_sym_static] = ACTIONS(2625), - [anon_sym_register] = ACTIONS(2625), - [anon_sym_inline] = ACTIONS(2625), - [anon_sym_thread_local] = ACTIONS(2625), - [anon_sym_const] = ACTIONS(2625), - [anon_sym_volatile] = ACTIONS(2625), - [anon_sym_restrict] = ACTIONS(2625), - [anon_sym__Atomic] = ACTIONS(2625), - [anon_sym_mutable] = ACTIONS(2625), - [anon_sym_constexpr] = ACTIONS(2625), - [anon_sym_constinit] = ACTIONS(2625), - [anon_sym_consteval] = ACTIONS(2625), - [anon_sym_signed] = ACTIONS(2625), - [anon_sym_unsigned] = ACTIONS(2625), - [anon_sym_long] = ACTIONS(2625), - [anon_sym_short] = ACTIONS(2625), - [sym_primitive_type] = ACTIONS(2625), - [anon_sym_enum] = ACTIONS(2625), - [anon_sym_class] = ACTIONS(2625), - [anon_sym_struct] = ACTIONS(2625), - [anon_sym_union] = ACTIONS(2625), - [anon_sym_if] = ACTIONS(2625), - [anon_sym_switch] = ACTIONS(2625), - [anon_sym_case] = ACTIONS(2625), - [anon_sym_default] = ACTIONS(2625), - [anon_sym_while] = ACTIONS(2625), - [anon_sym_do] = ACTIONS(2625), - [anon_sym_for] = ACTIONS(2625), - [anon_sym_return] = ACTIONS(2625), - [anon_sym_break] = ACTIONS(2625), - [anon_sym_continue] = ACTIONS(2625), - [anon_sym_goto] = ACTIONS(2625), - [anon_sym_DASH_DASH] = ACTIONS(2627), - [anon_sym_PLUS_PLUS] = ACTIONS(2627), - [anon_sym_sizeof] = ACTIONS(2625), - [sym_number_literal] = ACTIONS(2627), - [anon_sym_L_SQUOTE] = ACTIONS(2627), - [anon_sym_u_SQUOTE] = ACTIONS(2627), - [anon_sym_U_SQUOTE] = ACTIONS(2627), - [anon_sym_u8_SQUOTE] = ACTIONS(2627), - [anon_sym_SQUOTE] = ACTIONS(2627), - [anon_sym_L_DQUOTE] = ACTIONS(2627), - [anon_sym_u_DQUOTE] = ACTIONS(2627), - [anon_sym_U_DQUOTE] = ACTIONS(2627), - [anon_sym_u8_DQUOTE] = ACTIONS(2627), - [anon_sym_DQUOTE] = ACTIONS(2627), - [sym_true] = ACTIONS(2625), - [sym_false] = ACTIONS(2625), - [sym_null] = ACTIONS(2625), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2625), - [anon_sym_decltype] = ACTIONS(2625), - [anon_sym_virtual] = ACTIONS(2625), - [anon_sym_explicit] = ACTIONS(2625), - [anon_sym_typename] = ACTIONS(2625), - [anon_sym_template] = ACTIONS(2625), - [anon_sym_operator] = ACTIONS(2625), - [anon_sym_try] = ACTIONS(2625), - [anon_sym_delete] = ACTIONS(2625), - [anon_sym_throw] = ACTIONS(2625), - [anon_sym_namespace] = ACTIONS(2625), - [anon_sym_using] = ACTIONS(2625), - [anon_sym_static_assert] = ACTIONS(2625), - [anon_sym_concept] = ACTIONS(2625), - [anon_sym_co_return] = ACTIONS(2625), - [anon_sym_co_yield] = ACTIONS(2625), - [anon_sym_co_await] = ACTIONS(2625), - [anon_sym_new] = ACTIONS(2625), - [anon_sym_requires] = ACTIONS(2625), - [sym_this] = ACTIONS(2625), - [sym_nullptr] = ACTIONS(2625), - [sym_raw_string_literal] = ACTIONS(2627), - }, - [926] = { - [sym_identifier] = ACTIONS(2747), - [aux_sym_preproc_include_token1] = ACTIONS(2747), - [aux_sym_preproc_def_token1] = ACTIONS(2747), - [aux_sym_preproc_if_token1] = ACTIONS(2747), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2747), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2747), - [sym_preproc_directive] = ACTIONS(2747), - [anon_sym_LPAREN2] = ACTIONS(2749), - [anon_sym_BANG] = ACTIONS(2749), - [anon_sym_TILDE] = ACTIONS(2749), - [anon_sym_DASH] = ACTIONS(2747), - [anon_sym_PLUS] = ACTIONS(2747), - [anon_sym_STAR] = ACTIONS(2749), - [anon_sym_AMP_AMP] = ACTIONS(2749), - [anon_sym_AMP] = ACTIONS(2747), - [anon_sym_SEMI] = ACTIONS(2749), - [anon_sym_typedef] = ACTIONS(2747), - [anon_sym_extern] = ACTIONS(2747), - [anon_sym___attribute__] = ACTIONS(2747), - [anon_sym_COLON_COLON] = ACTIONS(2749), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2749), - [anon_sym___declspec] = ACTIONS(2747), - [anon_sym___based] = ACTIONS(2747), - [anon_sym___cdecl] = ACTIONS(2747), - [anon_sym___clrcall] = ACTIONS(2747), - [anon_sym___stdcall] = ACTIONS(2747), - [anon_sym___fastcall] = ACTIONS(2747), - [anon_sym___thiscall] = ACTIONS(2747), - [anon_sym___vectorcall] = ACTIONS(2747), - [anon_sym_LBRACE] = ACTIONS(2749), - [anon_sym_RBRACE] = ACTIONS(2749), - [anon_sym_LBRACK] = ACTIONS(2747), - [anon_sym_static] = ACTIONS(2747), - [anon_sym_register] = ACTIONS(2747), - [anon_sym_inline] = ACTIONS(2747), - [anon_sym_thread_local] = ACTIONS(2747), - [anon_sym_const] = ACTIONS(2747), - [anon_sym_volatile] = ACTIONS(2747), - [anon_sym_restrict] = ACTIONS(2747), - [anon_sym__Atomic] = ACTIONS(2747), - [anon_sym_mutable] = ACTIONS(2747), - [anon_sym_constexpr] = ACTIONS(2747), - [anon_sym_constinit] = ACTIONS(2747), - [anon_sym_consteval] = ACTIONS(2747), - [anon_sym_signed] = ACTIONS(2747), - [anon_sym_unsigned] = ACTIONS(2747), - [anon_sym_long] = ACTIONS(2747), - [anon_sym_short] = ACTIONS(2747), - [sym_primitive_type] = ACTIONS(2747), - [anon_sym_enum] = ACTIONS(2747), - [anon_sym_class] = ACTIONS(2747), - [anon_sym_struct] = ACTIONS(2747), - [anon_sym_union] = ACTIONS(2747), - [anon_sym_if] = ACTIONS(2747), - [anon_sym_switch] = ACTIONS(2747), - [anon_sym_case] = ACTIONS(2747), - [anon_sym_default] = ACTIONS(2747), - [anon_sym_while] = ACTIONS(2747), - [anon_sym_do] = ACTIONS(2747), - [anon_sym_for] = ACTIONS(2747), - [anon_sym_return] = ACTIONS(2747), - [anon_sym_break] = ACTIONS(2747), - [anon_sym_continue] = ACTIONS(2747), - [anon_sym_goto] = ACTIONS(2747), - [anon_sym_DASH_DASH] = ACTIONS(2749), - [anon_sym_PLUS_PLUS] = ACTIONS(2749), - [anon_sym_sizeof] = ACTIONS(2747), - [sym_number_literal] = ACTIONS(2749), - [anon_sym_L_SQUOTE] = ACTIONS(2749), - [anon_sym_u_SQUOTE] = ACTIONS(2749), - [anon_sym_U_SQUOTE] = ACTIONS(2749), - [anon_sym_u8_SQUOTE] = ACTIONS(2749), - [anon_sym_SQUOTE] = ACTIONS(2749), - [anon_sym_L_DQUOTE] = ACTIONS(2749), - [anon_sym_u_DQUOTE] = ACTIONS(2749), - [anon_sym_U_DQUOTE] = ACTIONS(2749), - [anon_sym_u8_DQUOTE] = ACTIONS(2749), - [anon_sym_DQUOTE] = ACTIONS(2749), - [sym_true] = ACTIONS(2747), - [sym_false] = ACTIONS(2747), - [sym_null] = ACTIONS(2747), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2747), - [anon_sym_decltype] = ACTIONS(2747), - [anon_sym_virtual] = ACTIONS(2747), - [anon_sym_explicit] = ACTIONS(2747), - [anon_sym_typename] = ACTIONS(2747), - [anon_sym_template] = ACTIONS(2747), - [anon_sym_operator] = ACTIONS(2747), - [anon_sym_try] = ACTIONS(2747), - [anon_sym_delete] = ACTIONS(2747), - [anon_sym_throw] = ACTIONS(2747), - [anon_sym_namespace] = ACTIONS(2747), - [anon_sym_using] = ACTIONS(2747), - [anon_sym_static_assert] = ACTIONS(2747), - [anon_sym_concept] = ACTIONS(2747), - [anon_sym_co_return] = ACTIONS(2747), - [anon_sym_co_yield] = ACTIONS(2747), - [anon_sym_co_await] = ACTIONS(2747), - [anon_sym_new] = ACTIONS(2747), - [anon_sym_requires] = ACTIONS(2747), - [sym_this] = ACTIONS(2747), - [sym_nullptr] = ACTIONS(2747), - [sym_raw_string_literal] = ACTIONS(2749), + [sym_auto] = ACTIONS(2651), + [anon_sym_decltype] = ACTIONS(2651), + [anon_sym_virtual] = ACTIONS(2651), + [anon_sym_explicit] = ACTIONS(2651), + [anon_sym_typename] = ACTIONS(2651), + [anon_sym_template] = ACTIONS(2651), + [anon_sym_operator] = ACTIONS(2651), + [anon_sym_try] = ACTIONS(2651), + [anon_sym_delete] = ACTIONS(2651), + [anon_sym_throw] = ACTIONS(2651), + [anon_sym_namespace] = ACTIONS(2651), + [anon_sym_using] = ACTIONS(2651), + [anon_sym_static_assert] = ACTIONS(2651), + [anon_sym_concept] = ACTIONS(2651), + [anon_sym_co_return] = ACTIONS(2651), + [anon_sym_co_yield] = ACTIONS(2651), + [anon_sym_co_await] = ACTIONS(2651), + [anon_sym_new] = ACTIONS(2651), + [anon_sym_requires] = ACTIONS(2651), + [sym_this] = ACTIONS(2651), + [sym_nullptr] = ACTIONS(2651), + [sym_raw_string_literal] = ACTIONS(2653), }, - [927] = { - [sym_identifier] = ACTIONS(2753), - [aux_sym_preproc_include_token1] = ACTIONS(2753), - [aux_sym_preproc_def_token1] = ACTIONS(2753), - [aux_sym_preproc_if_token1] = ACTIONS(2753), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2753), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2753), - [sym_preproc_directive] = ACTIONS(2753), - [anon_sym_LPAREN2] = ACTIONS(2755), - [anon_sym_BANG] = ACTIONS(2755), - [anon_sym_TILDE] = ACTIONS(2755), - [anon_sym_DASH] = ACTIONS(2753), - [anon_sym_PLUS] = ACTIONS(2753), - [anon_sym_STAR] = ACTIONS(2755), - [anon_sym_AMP_AMP] = ACTIONS(2755), - [anon_sym_AMP] = ACTIONS(2753), - [anon_sym_SEMI] = ACTIONS(2755), - [anon_sym_typedef] = ACTIONS(2753), - [anon_sym_extern] = ACTIONS(2753), - [anon_sym___attribute__] = ACTIONS(2753), - [anon_sym_COLON_COLON] = ACTIONS(2755), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2755), - [anon_sym___declspec] = ACTIONS(2753), - [anon_sym___based] = ACTIONS(2753), - [anon_sym___cdecl] = ACTIONS(2753), - [anon_sym___clrcall] = ACTIONS(2753), - [anon_sym___stdcall] = ACTIONS(2753), - [anon_sym___fastcall] = ACTIONS(2753), - [anon_sym___thiscall] = ACTIONS(2753), - [anon_sym___vectorcall] = ACTIONS(2753), - [anon_sym_LBRACE] = ACTIONS(2755), - [anon_sym_RBRACE] = ACTIONS(2755), - [anon_sym_LBRACK] = ACTIONS(2753), - [anon_sym_static] = ACTIONS(2753), - [anon_sym_register] = ACTIONS(2753), - [anon_sym_inline] = ACTIONS(2753), - [anon_sym_thread_local] = ACTIONS(2753), - [anon_sym_const] = ACTIONS(2753), - [anon_sym_volatile] = ACTIONS(2753), - [anon_sym_restrict] = ACTIONS(2753), - [anon_sym__Atomic] = ACTIONS(2753), - [anon_sym_mutable] = ACTIONS(2753), - [anon_sym_constexpr] = ACTIONS(2753), - [anon_sym_constinit] = ACTIONS(2753), - [anon_sym_consteval] = ACTIONS(2753), - [anon_sym_signed] = ACTIONS(2753), - [anon_sym_unsigned] = ACTIONS(2753), - [anon_sym_long] = ACTIONS(2753), - [anon_sym_short] = ACTIONS(2753), - [sym_primitive_type] = ACTIONS(2753), - [anon_sym_enum] = ACTIONS(2753), - [anon_sym_class] = ACTIONS(2753), - [anon_sym_struct] = ACTIONS(2753), - [anon_sym_union] = ACTIONS(2753), - [anon_sym_if] = ACTIONS(2753), - [anon_sym_switch] = ACTIONS(2753), - [anon_sym_case] = ACTIONS(2753), - [anon_sym_default] = ACTIONS(2753), - [anon_sym_while] = ACTIONS(2753), - [anon_sym_do] = ACTIONS(2753), - [anon_sym_for] = ACTIONS(2753), - [anon_sym_return] = ACTIONS(2753), - [anon_sym_break] = ACTIONS(2753), - [anon_sym_continue] = ACTIONS(2753), - [anon_sym_goto] = ACTIONS(2753), - [anon_sym_DASH_DASH] = ACTIONS(2755), - [anon_sym_PLUS_PLUS] = ACTIONS(2755), - [anon_sym_sizeof] = ACTIONS(2753), - [sym_number_literal] = ACTIONS(2755), - [anon_sym_L_SQUOTE] = ACTIONS(2755), - [anon_sym_u_SQUOTE] = ACTIONS(2755), - [anon_sym_U_SQUOTE] = ACTIONS(2755), - [anon_sym_u8_SQUOTE] = ACTIONS(2755), - [anon_sym_SQUOTE] = ACTIONS(2755), - [anon_sym_L_DQUOTE] = ACTIONS(2755), - [anon_sym_u_DQUOTE] = ACTIONS(2755), - [anon_sym_U_DQUOTE] = ACTIONS(2755), - [anon_sym_u8_DQUOTE] = ACTIONS(2755), - [anon_sym_DQUOTE] = ACTIONS(2755), - [sym_true] = ACTIONS(2753), - [sym_false] = ACTIONS(2753), - [sym_null] = ACTIONS(2753), + [577] = { + [sym_identifier] = ACTIONS(2643), + [aux_sym_preproc_include_token1] = ACTIONS(2643), + [aux_sym_preproc_def_token1] = ACTIONS(2643), + [aux_sym_preproc_if_token1] = ACTIONS(2643), + [aux_sym_preproc_if_token2] = ACTIONS(2643), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2643), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2643), + [sym_preproc_directive] = ACTIONS(2643), + [anon_sym_LPAREN2] = ACTIONS(2645), + [anon_sym_BANG] = ACTIONS(2645), + [anon_sym_TILDE] = ACTIONS(2645), + [anon_sym_DASH] = ACTIONS(2643), + [anon_sym_PLUS] = ACTIONS(2643), + [anon_sym_STAR] = ACTIONS(2645), + [anon_sym_AMP_AMP] = ACTIONS(2645), + [anon_sym_AMP] = ACTIONS(2643), + [anon_sym_SEMI] = ACTIONS(2645), + [anon_sym_typedef] = ACTIONS(2643), + [anon_sym_extern] = ACTIONS(2643), + [anon_sym___attribute__] = ACTIONS(2643), + [anon_sym_COLON_COLON] = ACTIONS(2645), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2645), + [anon_sym___declspec] = ACTIONS(2643), + [anon_sym___based] = ACTIONS(2643), + [anon_sym___cdecl] = ACTIONS(2643), + [anon_sym___clrcall] = ACTIONS(2643), + [anon_sym___stdcall] = ACTIONS(2643), + [anon_sym___fastcall] = ACTIONS(2643), + [anon_sym___thiscall] = ACTIONS(2643), + [anon_sym___vectorcall] = ACTIONS(2643), + [anon_sym_LBRACE] = ACTIONS(2645), + [anon_sym_LBRACK] = ACTIONS(2643), + [anon_sym_static] = ACTIONS(2643), + [anon_sym_register] = ACTIONS(2643), + [anon_sym_inline] = ACTIONS(2643), + [anon_sym_thread_local] = ACTIONS(2643), + [anon_sym_const] = ACTIONS(2643), + [anon_sym_volatile] = ACTIONS(2643), + [anon_sym_restrict] = ACTIONS(2643), + [anon_sym__Atomic] = ACTIONS(2643), + [anon_sym_mutable] = ACTIONS(2643), + [anon_sym_constexpr] = ACTIONS(2643), + [anon_sym_constinit] = ACTIONS(2643), + [anon_sym_consteval] = ACTIONS(2643), + [anon_sym_signed] = ACTIONS(2643), + [anon_sym_unsigned] = ACTIONS(2643), + [anon_sym_long] = ACTIONS(2643), + [anon_sym_short] = ACTIONS(2643), + [sym_primitive_type] = ACTIONS(2643), + [anon_sym_enum] = ACTIONS(2643), + [anon_sym_class] = ACTIONS(2643), + [anon_sym_struct] = ACTIONS(2643), + [anon_sym_union] = ACTIONS(2643), + [anon_sym_if] = ACTIONS(2643), + [anon_sym_else] = ACTIONS(2643), + [anon_sym_switch] = ACTIONS(2643), + [anon_sym_case] = ACTIONS(2643), + [anon_sym_default] = ACTIONS(2643), + [anon_sym_while] = ACTIONS(2643), + [anon_sym_do] = ACTIONS(2643), + [anon_sym_for] = ACTIONS(2643), + [anon_sym_return] = ACTIONS(2643), + [anon_sym_break] = ACTIONS(2643), + [anon_sym_continue] = ACTIONS(2643), + [anon_sym_goto] = ACTIONS(2643), + [anon_sym_not] = ACTIONS(2643), + [anon_sym_compl] = ACTIONS(2643), + [anon_sym_DASH_DASH] = ACTIONS(2645), + [anon_sym_PLUS_PLUS] = ACTIONS(2645), + [anon_sym_sizeof] = ACTIONS(2643), + [sym_number_literal] = ACTIONS(2645), + [anon_sym_L_SQUOTE] = ACTIONS(2645), + [anon_sym_u_SQUOTE] = ACTIONS(2645), + [anon_sym_U_SQUOTE] = ACTIONS(2645), + [anon_sym_u8_SQUOTE] = ACTIONS(2645), + [anon_sym_SQUOTE] = ACTIONS(2645), + [anon_sym_L_DQUOTE] = ACTIONS(2645), + [anon_sym_u_DQUOTE] = ACTIONS(2645), + [anon_sym_U_DQUOTE] = ACTIONS(2645), + [anon_sym_u8_DQUOTE] = ACTIONS(2645), + [anon_sym_DQUOTE] = ACTIONS(2645), + [sym_true] = ACTIONS(2643), + [sym_false] = ACTIONS(2643), + [sym_null] = ACTIONS(2643), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2753), - [anon_sym_decltype] = ACTIONS(2753), - [anon_sym_virtual] = ACTIONS(2753), - [anon_sym_explicit] = ACTIONS(2753), - [anon_sym_typename] = ACTIONS(2753), - [anon_sym_template] = ACTIONS(2753), - [anon_sym_operator] = ACTIONS(2753), - [anon_sym_try] = ACTIONS(2753), - [anon_sym_delete] = ACTIONS(2753), - [anon_sym_throw] = ACTIONS(2753), - [anon_sym_namespace] = ACTIONS(2753), - [anon_sym_using] = ACTIONS(2753), - [anon_sym_static_assert] = ACTIONS(2753), - [anon_sym_concept] = ACTIONS(2753), - [anon_sym_co_return] = ACTIONS(2753), - [anon_sym_co_yield] = ACTIONS(2753), - [anon_sym_co_await] = ACTIONS(2753), - [anon_sym_new] = ACTIONS(2753), - [anon_sym_requires] = ACTIONS(2753), - [sym_this] = ACTIONS(2753), - [sym_nullptr] = ACTIONS(2753), - [sym_raw_string_literal] = ACTIONS(2755), + [sym_auto] = ACTIONS(2643), + [anon_sym_decltype] = ACTIONS(2643), + [anon_sym_virtual] = ACTIONS(2643), + [anon_sym_explicit] = ACTIONS(2643), + [anon_sym_typename] = ACTIONS(2643), + [anon_sym_template] = ACTIONS(2643), + [anon_sym_operator] = ACTIONS(2643), + [anon_sym_try] = ACTIONS(2643), + [anon_sym_delete] = ACTIONS(2643), + [anon_sym_throw] = ACTIONS(2643), + [anon_sym_namespace] = ACTIONS(2643), + [anon_sym_using] = ACTIONS(2643), + [anon_sym_static_assert] = ACTIONS(2643), + [anon_sym_concept] = ACTIONS(2643), + [anon_sym_co_return] = ACTIONS(2643), + [anon_sym_co_yield] = ACTIONS(2643), + [anon_sym_co_await] = ACTIONS(2643), + [anon_sym_new] = ACTIONS(2643), + [anon_sym_requires] = ACTIONS(2643), + [sym_this] = ACTIONS(2643), + [sym_nullptr] = ACTIONS(2643), + [sym_raw_string_literal] = ACTIONS(2645), }, - [928] = { - [ts_builtin_sym_end] = ACTIONS(2803), - [sym_identifier] = ACTIONS(2801), - [aux_sym_preproc_include_token1] = ACTIONS(2801), - [aux_sym_preproc_def_token1] = ACTIONS(2801), - [aux_sym_preproc_if_token1] = ACTIONS(2801), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2801), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2801), - [sym_preproc_directive] = ACTIONS(2801), - [anon_sym_LPAREN2] = ACTIONS(2803), - [anon_sym_BANG] = ACTIONS(2803), - [anon_sym_TILDE] = ACTIONS(2803), - [anon_sym_DASH] = ACTIONS(2801), - [anon_sym_PLUS] = ACTIONS(2801), - [anon_sym_STAR] = ACTIONS(2803), - [anon_sym_AMP_AMP] = ACTIONS(2803), - [anon_sym_AMP] = ACTIONS(2801), - [anon_sym_SEMI] = ACTIONS(2803), - [anon_sym_typedef] = ACTIONS(2801), - [anon_sym_extern] = ACTIONS(2801), - [anon_sym___attribute__] = ACTIONS(2801), - [anon_sym_COLON_COLON] = ACTIONS(2803), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2803), - [anon_sym___declspec] = ACTIONS(2801), - [anon_sym___based] = ACTIONS(2801), - [anon_sym___cdecl] = ACTIONS(2801), - [anon_sym___clrcall] = ACTIONS(2801), - [anon_sym___stdcall] = ACTIONS(2801), - [anon_sym___fastcall] = ACTIONS(2801), - [anon_sym___thiscall] = ACTIONS(2801), - [anon_sym___vectorcall] = ACTIONS(2801), - [anon_sym_LBRACE] = ACTIONS(2803), - [anon_sym_LBRACK] = ACTIONS(2801), - [anon_sym_static] = ACTIONS(2801), - [anon_sym_register] = ACTIONS(2801), - [anon_sym_inline] = ACTIONS(2801), - [anon_sym_thread_local] = ACTIONS(2801), - [anon_sym_const] = ACTIONS(2801), - [anon_sym_volatile] = ACTIONS(2801), - [anon_sym_restrict] = ACTIONS(2801), - [anon_sym__Atomic] = ACTIONS(2801), - [anon_sym_mutable] = ACTIONS(2801), - [anon_sym_constexpr] = ACTIONS(2801), - [anon_sym_constinit] = ACTIONS(2801), - [anon_sym_consteval] = ACTIONS(2801), - [anon_sym_signed] = ACTIONS(2801), - [anon_sym_unsigned] = ACTIONS(2801), - [anon_sym_long] = ACTIONS(2801), - [anon_sym_short] = ACTIONS(2801), - [sym_primitive_type] = ACTIONS(2801), - [anon_sym_enum] = ACTIONS(2801), - [anon_sym_class] = ACTIONS(2801), - [anon_sym_struct] = ACTIONS(2801), - [anon_sym_union] = ACTIONS(2801), - [anon_sym_if] = ACTIONS(2801), - [anon_sym_switch] = ACTIONS(2801), - [anon_sym_case] = ACTIONS(2801), - [anon_sym_default] = ACTIONS(2801), - [anon_sym_while] = ACTIONS(2801), - [anon_sym_do] = ACTIONS(2801), - [anon_sym_for] = ACTIONS(2801), - [anon_sym_return] = ACTIONS(2801), - [anon_sym_break] = ACTIONS(2801), - [anon_sym_continue] = ACTIONS(2801), - [anon_sym_goto] = ACTIONS(2801), - [anon_sym_DASH_DASH] = ACTIONS(2803), - [anon_sym_PLUS_PLUS] = ACTIONS(2803), - [anon_sym_sizeof] = ACTIONS(2801), - [sym_number_literal] = ACTIONS(2803), - [anon_sym_L_SQUOTE] = ACTIONS(2803), - [anon_sym_u_SQUOTE] = ACTIONS(2803), - [anon_sym_U_SQUOTE] = ACTIONS(2803), - [anon_sym_u8_SQUOTE] = ACTIONS(2803), - [anon_sym_SQUOTE] = ACTIONS(2803), - [anon_sym_L_DQUOTE] = ACTIONS(2803), - [anon_sym_u_DQUOTE] = ACTIONS(2803), - [anon_sym_U_DQUOTE] = ACTIONS(2803), - [anon_sym_u8_DQUOTE] = ACTIONS(2803), - [anon_sym_DQUOTE] = ACTIONS(2803), - [sym_true] = ACTIONS(2801), - [sym_false] = ACTIONS(2801), - [sym_null] = ACTIONS(2801), + [578] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token2] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2801), - [anon_sym_decltype] = ACTIONS(2801), - [anon_sym_virtual] = ACTIONS(2801), - [anon_sym_explicit] = ACTIONS(2801), - [anon_sym_typename] = ACTIONS(2801), - [anon_sym_template] = ACTIONS(2801), - [anon_sym_operator] = ACTIONS(2801), - [anon_sym_try] = ACTIONS(2801), - [anon_sym_delete] = ACTIONS(2801), - [anon_sym_throw] = ACTIONS(2801), - [anon_sym_namespace] = ACTIONS(2801), - [anon_sym_using] = ACTIONS(2801), - [anon_sym_static_assert] = ACTIONS(2801), - [anon_sym_concept] = ACTIONS(2801), - [anon_sym_co_return] = ACTIONS(2801), - [anon_sym_co_yield] = ACTIONS(2801), - [anon_sym_co_await] = ACTIONS(2801), - [anon_sym_new] = ACTIONS(2801), - [anon_sym_requires] = ACTIONS(2801), - [sym_this] = ACTIONS(2801), - [sym_nullptr] = ACTIONS(2801), - [sym_raw_string_literal] = ACTIONS(2803), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [929] = { - [sym_identifier] = ACTIONS(2797), - [aux_sym_preproc_include_token1] = ACTIONS(2797), - [aux_sym_preproc_def_token1] = ACTIONS(2797), - [aux_sym_preproc_if_token1] = ACTIONS(2797), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2797), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2797), - [sym_preproc_directive] = ACTIONS(2797), - [anon_sym_LPAREN2] = ACTIONS(2799), - [anon_sym_BANG] = ACTIONS(2799), - [anon_sym_TILDE] = ACTIONS(2799), - [anon_sym_DASH] = ACTIONS(2797), - [anon_sym_PLUS] = ACTIONS(2797), - [anon_sym_STAR] = ACTIONS(2799), - [anon_sym_AMP_AMP] = ACTIONS(2799), - [anon_sym_AMP] = ACTIONS(2797), - [anon_sym_SEMI] = ACTIONS(2799), - [anon_sym_typedef] = ACTIONS(2797), - [anon_sym_extern] = ACTIONS(2797), - [anon_sym___attribute__] = ACTIONS(2797), - [anon_sym_COLON_COLON] = ACTIONS(2799), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2799), - [anon_sym___declspec] = ACTIONS(2797), - [anon_sym___based] = ACTIONS(2797), - [anon_sym___cdecl] = ACTIONS(2797), - [anon_sym___clrcall] = ACTIONS(2797), - [anon_sym___stdcall] = ACTIONS(2797), - [anon_sym___fastcall] = ACTIONS(2797), - [anon_sym___thiscall] = ACTIONS(2797), - [anon_sym___vectorcall] = ACTIONS(2797), - [anon_sym_LBRACE] = ACTIONS(2799), - [anon_sym_RBRACE] = ACTIONS(2799), - [anon_sym_LBRACK] = ACTIONS(2797), - [anon_sym_static] = ACTIONS(2797), - [anon_sym_register] = ACTIONS(2797), - [anon_sym_inline] = ACTIONS(2797), - [anon_sym_thread_local] = ACTIONS(2797), - [anon_sym_const] = ACTIONS(2797), - [anon_sym_volatile] = ACTIONS(2797), - [anon_sym_restrict] = ACTIONS(2797), - [anon_sym__Atomic] = ACTIONS(2797), - [anon_sym_mutable] = ACTIONS(2797), - [anon_sym_constexpr] = ACTIONS(2797), - [anon_sym_constinit] = ACTIONS(2797), - [anon_sym_consteval] = ACTIONS(2797), - [anon_sym_signed] = ACTIONS(2797), - [anon_sym_unsigned] = ACTIONS(2797), - [anon_sym_long] = ACTIONS(2797), - [anon_sym_short] = ACTIONS(2797), - [sym_primitive_type] = ACTIONS(2797), - [anon_sym_enum] = ACTIONS(2797), - [anon_sym_class] = ACTIONS(2797), - [anon_sym_struct] = ACTIONS(2797), - [anon_sym_union] = ACTIONS(2797), - [anon_sym_if] = ACTIONS(2797), - [anon_sym_switch] = ACTIONS(2797), - [anon_sym_case] = ACTIONS(2797), - [anon_sym_default] = ACTIONS(2797), - [anon_sym_while] = ACTIONS(2797), - [anon_sym_do] = ACTIONS(2797), - [anon_sym_for] = ACTIONS(2797), - [anon_sym_return] = ACTIONS(2797), - [anon_sym_break] = ACTIONS(2797), - [anon_sym_continue] = ACTIONS(2797), - [anon_sym_goto] = ACTIONS(2797), - [anon_sym_DASH_DASH] = ACTIONS(2799), - [anon_sym_PLUS_PLUS] = ACTIONS(2799), - [anon_sym_sizeof] = ACTIONS(2797), - [sym_number_literal] = ACTIONS(2799), - [anon_sym_L_SQUOTE] = ACTIONS(2799), - [anon_sym_u_SQUOTE] = ACTIONS(2799), - [anon_sym_U_SQUOTE] = ACTIONS(2799), - [anon_sym_u8_SQUOTE] = ACTIONS(2799), - [anon_sym_SQUOTE] = ACTIONS(2799), - [anon_sym_L_DQUOTE] = ACTIONS(2799), - [anon_sym_u_DQUOTE] = ACTIONS(2799), - [anon_sym_U_DQUOTE] = ACTIONS(2799), - [anon_sym_u8_DQUOTE] = ACTIONS(2799), - [anon_sym_DQUOTE] = ACTIONS(2799), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [sym_null] = ACTIONS(2797), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2797), - [anon_sym_decltype] = ACTIONS(2797), - [anon_sym_virtual] = ACTIONS(2797), - [anon_sym_explicit] = ACTIONS(2797), - [anon_sym_typename] = ACTIONS(2797), - [anon_sym_template] = ACTIONS(2797), - [anon_sym_operator] = ACTIONS(2797), - [anon_sym_try] = ACTIONS(2797), - [anon_sym_delete] = ACTIONS(2797), - [anon_sym_throw] = ACTIONS(2797), - [anon_sym_namespace] = ACTIONS(2797), - [anon_sym_using] = ACTIONS(2797), - [anon_sym_static_assert] = ACTIONS(2797), - [anon_sym_concept] = ACTIONS(2797), - [anon_sym_co_return] = ACTIONS(2797), - [anon_sym_co_yield] = ACTIONS(2797), - [anon_sym_co_await] = ACTIONS(2797), - [anon_sym_new] = ACTIONS(2797), - [anon_sym_requires] = ACTIONS(2797), - [sym_this] = ACTIONS(2797), - [sym_nullptr] = ACTIONS(2797), - [sym_raw_string_literal] = ACTIONS(2799), + [579] = { + [sym_identifier] = ACTIONS(2631), + [aux_sym_preproc_include_token1] = ACTIONS(2631), + [aux_sym_preproc_def_token1] = ACTIONS(2631), + [aux_sym_preproc_if_token1] = ACTIONS(2631), + [aux_sym_preproc_if_token2] = ACTIONS(2631), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2631), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2631), + [sym_preproc_directive] = ACTIONS(2631), + [anon_sym_LPAREN2] = ACTIONS(2633), + [anon_sym_BANG] = ACTIONS(2633), + [anon_sym_TILDE] = ACTIONS(2633), + [anon_sym_DASH] = ACTIONS(2631), + [anon_sym_PLUS] = ACTIONS(2631), + [anon_sym_STAR] = ACTIONS(2633), + [anon_sym_AMP_AMP] = ACTIONS(2633), + [anon_sym_AMP] = ACTIONS(2631), + [anon_sym_SEMI] = ACTIONS(2633), + [anon_sym_typedef] = ACTIONS(2631), + [anon_sym_extern] = ACTIONS(2631), + [anon_sym___attribute__] = ACTIONS(2631), + [anon_sym_COLON_COLON] = ACTIONS(2633), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2633), + [anon_sym___declspec] = ACTIONS(2631), + [anon_sym___based] = ACTIONS(2631), + [anon_sym___cdecl] = ACTIONS(2631), + [anon_sym___clrcall] = ACTIONS(2631), + [anon_sym___stdcall] = ACTIONS(2631), + [anon_sym___fastcall] = ACTIONS(2631), + [anon_sym___thiscall] = ACTIONS(2631), + [anon_sym___vectorcall] = ACTIONS(2631), + [anon_sym_LBRACE] = ACTIONS(2633), + [anon_sym_LBRACK] = ACTIONS(2631), + [anon_sym_static] = ACTIONS(2631), + [anon_sym_register] = ACTIONS(2631), + [anon_sym_inline] = ACTIONS(2631), + [anon_sym_thread_local] = ACTIONS(2631), + [anon_sym_const] = ACTIONS(2631), + [anon_sym_volatile] = ACTIONS(2631), + [anon_sym_restrict] = ACTIONS(2631), + [anon_sym__Atomic] = ACTIONS(2631), + [anon_sym_mutable] = ACTIONS(2631), + [anon_sym_constexpr] = ACTIONS(2631), + [anon_sym_constinit] = ACTIONS(2631), + [anon_sym_consteval] = ACTIONS(2631), + [anon_sym_signed] = ACTIONS(2631), + [anon_sym_unsigned] = ACTIONS(2631), + [anon_sym_long] = ACTIONS(2631), + [anon_sym_short] = ACTIONS(2631), + [sym_primitive_type] = ACTIONS(2631), + [anon_sym_enum] = ACTIONS(2631), + [anon_sym_class] = ACTIONS(2631), + [anon_sym_struct] = ACTIONS(2631), + [anon_sym_union] = ACTIONS(2631), + [anon_sym_if] = ACTIONS(2631), + [anon_sym_else] = ACTIONS(2631), + [anon_sym_switch] = ACTIONS(2631), + [anon_sym_case] = ACTIONS(2631), + [anon_sym_default] = ACTIONS(2631), + [anon_sym_while] = ACTIONS(2631), + [anon_sym_do] = ACTIONS(2631), + [anon_sym_for] = ACTIONS(2631), + [anon_sym_return] = ACTIONS(2631), + [anon_sym_break] = ACTIONS(2631), + [anon_sym_continue] = ACTIONS(2631), + [anon_sym_goto] = ACTIONS(2631), + [anon_sym_not] = ACTIONS(2631), + [anon_sym_compl] = ACTIONS(2631), + [anon_sym_DASH_DASH] = ACTIONS(2633), + [anon_sym_PLUS_PLUS] = ACTIONS(2633), + [anon_sym_sizeof] = ACTIONS(2631), + [sym_number_literal] = ACTIONS(2633), + [anon_sym_L_SQUOTE] = ACTIONS(2633), + [anon_sym_u_SQUOTE] = ACTIONS(2633), + [anon_sym_U_SQUOTE] = ACTIONS(2633), + [anon_sym_u8_SQUOTE] = ACTIONS(2633), + [anon_sym_SQUOTE] = ACTIONS(2633), + [anon_sym_L_DQUOTE] = ACTIONS(2633), + [anon_sym_u_DQUOTE] = ACTIONS(2633), + [anon_sym_U_DQUOTE] = ACTIONS(2633), + [anon_sym_u8_DQUOTE] = ACTIONS(2633), + [anon_sym_DQUOTE] = ACTIONS(2633), + [sym_true] = ACTIONS(2631), + [sym_false] = ACTIONS(2631), + [sym_null] = ACTIONS(2631), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2631), + [anon_sym_decltype] = ACTIONS(2631), + [anon_sym_virtual] = ACTIONS(2631), + [anon_sym_explicit] = ACTIONS(2631), + [anon_sym_typename] = ACTIONS(2631), + [anon_sym_template] = ACTIONS(2631), + [anon_sym_operator] = ACTIONS(2631), + [anon_sym_try] = ACTIONS(2631), + [anon_sym_delete] = ACTIONS(2631), + [anon_sym_throw] = ACTIONS(2631), + [anon_sym_namespace] = ACTIONS(2631), + [anon_sym_using] = ACTIONS(2631), + [anon_sym_static_assert] = ACTIONS(2631), + [anon_sym_concept] = ACTIONS(2631), + [anon_sym_co_return] = ACTIONS(2631), + [anon_sym_co_yield] = ACTIONS(2631), + [anon_sym_co_await] = ACTIONS(2631), + [anon_sym_new] = ACTIONS(2631), + [anon_sym_requires] = ACTIONS(2631), + [sym_this] = ACTIONS(2631), + [sym_nullptr] = ACTIONS(2631), + [sym_raw_string_literal] = ACTIONS(2633), }, - [930] = { - [sym_identifier] = ACTIONS(2651), - [aux_sym_preproc_include_token1] = ACTIONS(2651), - [aux_sym_preproc_def_token1] = ACTIONS(2651), - [aux_sym_preproc_if_token1] = ACTIONS(2651), - [aux_sym_preproc_if_token2] = ACTIONS(2651), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2651), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2651), - [sym_preproc_directive] = ACTIONS(2651), - [anon_sym_LPAREN2] = ACTIONS(2653), - [anon_sym_BANG] = ACTIONS(2653), - [anon_sym_TILDE] = ACTIONS(2653), - [anon_sym_DASH] = ACTIONS(2651), - [anon_sym_PLUS] = ACTIONS(2651), - [anon_sym_STAR] = ACTIONS(2653), - [anon_sym_AMP_AMP] = ACTIONS(2653), - [anon_sym_AMP] = ACTIONS(2651), - [anon_sym_SEMI] = ACTIONS(2653), - [anon_sym_typedef] = ACTIONS(2651), - [anon_sym_extern] = ACTIONS(2651), - [anon_sym___attribute__] = ACTIONS(2651), - [anon_sym_COLON_COLON] = ACTIONS(2653), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2653), - [anon_sym___declspec] = ACTIONS(2651), - [anon_sym___based] = ACTIONS(2651), - [anon_sym___cdecl] = ACTIONS(2651), - [anon_sym___clrcall] = ACTIONS(2651), - [anon_sym___stdcall] = ACTIONS(2651), - [anon_sym___fastcall] = ACTIONS(2651), - [anon_sym___thiscall] = ACTIONS(2651), - [anon_sym___vectorcall] = ACTIONS(2651), - [anon_sym_LBRACE] = ACTIONS(2653), - [anon_sym_LBRACK] = ACTIONS(2651), - [anon_sym_static] = ACTIONS(2651), - [anon_sym_register] = ACTIONS(2651), - [anon_sym_inline] = ACTIONS(2651), - [anon_sym_thread_local] = ACTIONS(2651), - [anon_sym_const] = ACTIONS(2651), - [anon_sym_volatile] = ACTIONS(2651), - [anon_sym_restrict] = ACTIONS(2651), - [anon_sym__Atomic] = ACTIONS(2651), - [anon_sym_mutable] = ACTIONS(2651), - [anon_sym_constexpr] = ACTIONS(2651), - [anon_sym_constinit] = ACTIONS(2651), - [anon_sym_consteval] = ACTIONS(2651), - [anon_sym_signed] = ACTIONS(2651), - [anon_sym_unsigned] = ACTIONS(2651), - [anon_sym_long] = ACTIONS(2651), - [anon_sym_short] = ACTIONS(2651), - [sym_primitive_type] = ACTIONS(2651), - [anon_sym_enum] = ACTIONS(2651), - [anon_sym_class] = ACTIONS(2651), - [anon_sym_struct] = ACTIONS(2651), - [anon_sym_union] = ACTIONS(2651), - [anon_sym_if] = ACTIONS(2651), - [anon_sym_switch] = ACTIONS(2651), - [anon_sym_case] = ACTIONS(2651), - [anon_sym_default] = ACTIONS(2651), - [anon_sym_while] = ACTIONS(2651), - [anon_sym_do] = ACTIONS(2651), - [anon_sym_for] = ACTIONS(2651), - [anon_sym_return] = ACTIONS(2651), - [anon_sym_break] = ACTIONS(2651), - [anon_sym_continue] = ACTIONS(2651), - [anon_sym_goto] = ACTIONS(2651), - [anon_sym_DASH_DASH] = ACTIONS(2653), - [anon_sym_PLUS_PLUS] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(2651), - [sym_number_literal] = ACTIONS(2653), - [anon_sym_L_SQUOTE] = ACTIONS(2653), - [anon_sym_u_SQUOTE] = ACTIONS(2653), - [anon_sym_U_SQUOTE] = ACTIONS(2653), - [anon_sym_u8_SQUOTE] = ACTIONS(2653), - [anon_sym_SQUOTE] = ACTIONS(2653), - [anon_sym_L_DQUOTE] = ACTIONS(2653), - [anon_sym_u_DQUOTE] = ACTIONS(2653), - [anon_sym_U_DQUOTE] = ACTIONS(2653), - [anon_sym_u8_DQUOTE] = ACTIONS(2653), - [anon_sym_DQUOTE] = ACTIONS(2653), - [sym_true] = ACTIONS(2651), - [sym_false] = ACTIONS(2651), - [sym_null] = ACTIONS(2651), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2651), - [anon_sym_decltype] = ACTIONS(2651), - [anon_sym_virtual] = ACTIONS(2651), - [anon_sym_explicit] = ACTIONS(2651), - [anon_sym_typename] = ACTIONS(2651), - [anon_sym_template] = ACTIONS(2651), - [anon_sym_operator] = ACTIONS(2651), - [anon_sym_try] = ACTIONS(2651), - [anon_sym_delete] = ACTIONS(2651), - [anon_sym_throw] = ACTIONS(2651), - [anon_sym_namespace] = ACTIONS(2651), - [anon_sym_using] = ACTIONS(2651), - [anon_sym_static_assert] = ACTIONS(2651), - [anon_sym_concept] = ACTIONS(2651), - [anon_sym_co_return] = ACTIONS(2651), - [anon_sym_co_yield] = ACTIONS(2651), - [anon_sym_co_await] = ACTIONS(2651), - [anon_sym_new] = ACTIONS(2651), - [anon_sym_requires] = ACTIONS(2651), - [sym_this] = ACTIONS(2651), - [sym_nullptr] = ACTIONS(2651), - [sym_raw_string_literal] = ACTIONS(2653), + [580] = { + [ts_builtin_sym_end] = ACTIONS(2511), + [sym_identifier] = ACTIONS(2509), + [aux_sym_preproc_include_token1] = ACTIONS(2509), + [aux_sym_preproc_def_token1] = ACTIONS(2509), + [aux_sym_preproc_if_token1] = ACTIONS(2509), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2509), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2509), + [sym_preproc_directive] = ACTIONS(2509), + [anon_sym_LPAREN2] = ACTIONS(2511), + [anon_sym_BANG] = ACTIONS(2511), + [anon_sym_TILDE] = ACTIONS(2511), + [anon_sym_DASH] = ACTIONS(2509), + [anon_sym_PLUS] = ACTIONS(2509), + [anon_sym_STAR] = ACTIONS(2511), + [anon_sym_AMP_AMP] = ACTIONS(2511), + [anon_sym_AMP] = ACTIONS(2509), + [anon_sym_SEMI] = ACTIONS(2511), + [anon_sym_typedef] = ACTIONS(2509), + [anon_sym_extern] = ACTIONS(2509), + [anon_sym___attribute__] = ACTIONS(2509), + [anon_sym_COLON_COLON] = ACTIONS(2511), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2511), + [anon_sym___declspec] = ACTIONS(2509), + [anon_sym___based] = ACTIONS(2509), + [anon_sym___cdecl] = ACTIONS(2509), + [anon_sym___clrcall] = ACTIONS(2509), + [anon_sym___stdcall] = ACTIONS(2509), + [anon_sym___fastcall] = ACTIONS(2509), + [anon_sym___thiscall] = ACTIONS(2509), + [anon_sym___vectorcall] = ACTIONS(2509), + [anon_sym_LBRACE] = ACTIONS(2511), + [anon_sym_LBRACK] = ACTIONS(2509), + [anon_sym_static] = ACTIONS(2509), + [anon_sym_register] = ACTIONS(2509), + [anon_sym_inline] = ACTIONS(2509), + [anon_sym_thread_local] = ACTIONS(2509), + [anon_sym_const] = ACTIONS(2509), + [anon_sym_volatile] = ACTIONS(2509), + [anon_sym_restrict] = ACTIONS(2509), + [anon_sym__Atomic] = ACTIONS(2509), + [anon_sym_mutable] = ACTIONS(2509), + [anon_sym_constexpr] = ACTIONS(2509), + [anon_sym_constinit] = ACTIONS(2509), + [anon_sym_consteval] = ACTIONS(2509), + [anon_sym_signed] = ACTIONS(2509), + [anon_sym_unsigned] = ACTIONS(2509), + [anon_sym_long] = ACTIONS(2509), + [anon_sym_short] = ACTIONS(2509), + [sym_primitive_type] = ACTIONS(2509), + [anon_sym_enum] = ACTIONS(2509), + [anon_sym_class] = ACTIONS(2509), + [anon_sym_struct] = ACTIONS(2509), + [anon_sym_union] = ACTIONS(2509), + [anon_sym_if] = ACTIONS(2509), + [anon_sym_else] = ACTIONS(2509), + [anon_sym_switch] = ACTIONS(2509), + [anon_sym_case] = ACTIONS(2509), + [anon_sym_default] = ACTIONS(2509), + [anon_sym_while] = ACTIONS(2509), + [anon_sym_do] = ACTIONS(2509), + [anon_sym_for] = ACTIONS(2509), + [anon_sym_return] = ACTIONS(2509), + [anon_sym_break] = ACTIONS(2509), + [anon_sym_continue] = ACTIONS(2509), + [anon_sym_goto] = ACTIONS(2509), + [anon_sym_not] = ACTIONS(2509), + [anon_sym_compl] = ACTIONS(2509), + [anon_sym_DASH_DASH] = ACTIONS(2511), + [anon_sym_PLUS_PLUS] = ACTIONS(2511), + [anon_sym_sizeof] = ACTIONS(2509), + [sym_number_literal] = ACTIONS(2511), + [anon_sym_L_SQUOTE] = ACTIONS(2511), + [anon_sym_u_SQUOTE] = ACTIONS(2511), + [anon_sym_U_SQUOTE] = ACTIONS(2511), + [anon_sym_u8_SQUOTE] = ACTIONS(2511), + [anon_sym_SQUOTE] = ACTIONS(2511), + [anon_sym_L_DQUOTE] = ACTIONS(2511), + [anon_sym_u_DQUOTE] = ACTIONS(2511), + [anon_sym_U_DQUOTE] = ACTIONS(2511), + [anon_sym_u8_DQUOTE] = ACTIONS(2511), + [anon_sym_DQUOTE] = ACTIONS(2511), + [sym_true] = ACTIONS(2509), + [sym_false] = ACTIONS(2509), + [sym_null] = ACTIONS(2509), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2509), + [anon_sym_decltype] = ACTIONS(2509), + [anon_sym_virtual] = ACTIONS(2509), + [anon_sym_explicit] = ACTIONS(2509), + [anon_sym_typename] = ACTIONS(2509), + [anon_sym_template] = ACTIONS(2509), + [anon_sym_operator] = ACTIONS(2509), + [anon_sym_try] = ACTIONS(2509), + [anon_sym_delete] = ACTIONS(2509), + [anon_sym_throw] = ACTIONS(2509), + [anon_sym_namespace] = ACTIONS(2509), + [anon_sym_using] = ACTIONS(2509), + [anon_sym_static_assert] = ACTIONS(2509), + [anon_sym_concept] = ACTIONS(2509), + [anon_sym_co_return] = ACTIONS(2509), + [anon_sym_co_yield] = ACTIONS(2509), + [anon_sym_co_await] = ACTIONS(2509), + [anon_sym_new] = ACTIONS(2509), + [anon_sym_requires] = ACTIONS(2509), + [sym_this] = ACTIONS(2509), + [sym_nullptr] = ACTIONS(2509), + [sym_raw_string_literal] = ACTIONS(2511), }, - [931] = { - [ts_builtin_sym_end] = ACTIONS(2701), - [sym_identifier] = ACTIONS(2699), - [aux_sym_preproc_include_token1] = ACTIONS(2699), - [aux_sym_preproc_def_token1] = ACTIONS(2699), - [aux_sym_preproc_if_token1] = ACTIONS(2699), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2699), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2699), - [sym_preproc_directive] = ACTIONS(2699), - [anon_sym_LPAREN2] = ACTIONS(2701), - [anon_sym_BANG] = ACTIONS(2701), - [anon_sym_TILDE] = ACTIONS(2701), - [anon_sym_DASH] = ACTIONS(2699), - [anon_sym_PLUS] = ACTIONS(2699), - [anon_sym_STAR] = ACTIONS(2701), - [anon_sym_AMP_AMP] = ACTIONS(2701), - [anon_sym_AMP] = ACTIONS(2699), - [anon_sym_SEMI] = ACTIONS(2701), - [anon_sym_typedef] = ACTIONS(2699), - [anon_sym_extern] = ACTIONS(2699), - [anon_sym___attribute__] = ACTIONS(2699), - [anon_sym_COLON_COLON] = ACTIONS(2701), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2701), - [anon_sym___declspec] = ACTIONS(2699), - [anon_sym___based] = ACTIONS(2699), - [anon_sym___cdecl] = ACTIONS(2699), - [anon_sym___clrcall] = ACTIONS(2699), - [anon_sym___stdcall] = ACTIONS(2699), - [anon_sym___fastcall] = ACTIONS(2699), - [anon_sym___thiscall] = ACTIONS(2699), - [anon_sym___vectorcall] = ACTIONS(2699), - [anon_sym_LBRACE] = ACTIONS(2701), - [anon_sym_LBRACK] = ACTIONS(2699), - [anon_sym_static] = ACTIONS(2699), - [anon_sym_register] = ACTIONS(2699), - [anon_sym_inline] = ACTIONS(2699), - [anon_sym_thread_local] = ACTIONS(2699), - [anon_sym_const] = ACTIONS(2699), - [anon_sym_volatile] = ACTIONS(2699), - [anon_sym_restrict] = ACTIONS(2699), - [anon_sym__Atomic] = ACTIONS(2699), - [anon_sym_mutable] = ACTIONS(2699), - [anon_sym_constexpr] = ACTIONS(2699), - [anon_sym_constinit] = ACTIONS(2699), - [anon_sym_consteval] = ACTIONS(2699), - [anon_sym_signed] = ACTIONS(2699), - [anon_sym_unsigned] = ACTIONS(2699), - [anon_sym_long] = ACTIONS(2699), - [anon_sym_short] = ACTIONS(2699), - [sym_primitive_type] = ACTIONS(2699), - [anon_sym_enum] = ACTIONS(2699), - [anon_sym_class] = ACTIONS(2699), - [anon_sym_struct] = ACTIONS(2699), - [anon_sym_union] = ACTIONS(2699), - [anon_sym_if] = ACTIONS(2699), - [anon_sym_switch] = ACTIONS(2699), - [anon_sym_case] = ACTIONS(2699), - [anon_sym_default] = ACTIONS(2699), - [anon_sym_while] = ACTIONS(2699), - [anon_sym_do] = ACTIONS(2699), - [anon_sym_for] = ACTIONS(2699), - [anon_sym_return] = ACTIONS(2699), - [anon_sym_break] = ACTIONS(2699), - [anon_sym_continue] = ACTIONS(2699), - [anon_sym_goto] = ACTIONS(2699), - [anon_sym_DASH_DASH] = ACTIONS(2701), - [anon_sym_PLUS_PLUS] = ACTIONS(2701), - [anon_sym_sizeof] = ACTIONS(2699), - [sym_number_literal] = ACTIONS(2701), - [anon_sym_L_SQUOTE] = ACTIONS(2701), - [anon_sym_u_SQUOTE] = ACTIONS(2701), - [anon_sym_U_SQUOTE] = ACTIONS(2701), - [anon_sym_u8_SQUOTE] = ACTIONS(2701), - [anon_sym_SQUOTE] = ACTIONS(2701), - [anon_sym_L_DQUOTE] = ACTIONS(2701), - [anon_sym_u_DQUOTE] = ACTIONS(2701), - [anon_sym_U_DQUOTE] = ACTIONS(2701), - [anon_sym_u8_DQUOTE] = ACTIONS(2701), - [anon_sym_DQUOTE] = ACTIONS(2701), - [sym_true] = ACTIONS(2699), - [sym_false] = ACTIONS(2699), - [sym_null] = ACTIONS(2699), + [581] = { + [ts_builtin_sym_end] = ACTIONS(2505), + [sym_identifier] = ACTIONS(2503), + [aux_sym_preproc_include_token1] = ACTIONS(2503), + [aux_sym_preproc_def_token1] = ACTIONS(2503), + [aux_sym_preproc_if_token1] = ACTIONS(2503), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2503), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2503), + [sym_preproc_directive] = ACTIONS(2503), + [anon_sym_LPAREN2] = ACTIONS(2505), + [anon_sym_BANG] = ACTIONS(2505), + [anon_sym_TILDE] = ACTIONS(2505), + [anon_sym_DASH] = ACTIONS(2503), + [anon_sym_PLUS] = ACTIONS(2503), + [anon_sym_STAR] = ACTIONS(2505), + [anon_sym_AMP_AMP] = ACTIONS(2505), + [anon_sym_AMP] = ACTIONS(2503), + [anon_sym_SEMI] = ACTIONS(2505), + [anon_sym_typedef] = ACTIONS(2503), + [anon_sym_extern] = ACTIONS(2503), + [anon_sym___attribute__] = ACTIONS(2503), + [anon_sym_COLON_COLON] = ACTIONS(2505), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2505), + [anon_sym___declspec] = ACTIONS(2503), + [anon_sym___based] = ACTIONS(2503), + [anon_sym___cdecl] = ACTIONS(2503), + [anon_sym___clrcall] = ACTIONS(2503), + [anon_sym___stdcall] = ACTIONS(2503), + [anon_sym___fastcall] = ACTIONS(2503), + [anon_sym___thiscall] = ACTIONS(2503), + [anon_sym___vectorcall] = ACTIONS(2503), + [anon_sym_LBRACE] = ACTIONS(2505), + [anon_sym_LBRACK] = ACTIONS(2503), + [anon_sym_static] = ACTIONS(2503), + [anon_sym_register] = ACTIONS(2503), + [anon_sym_inline] = ACTIONS(2503), + [anon_sym_thread_local] = ACTIONS(2503), + [anon_sym_const] = ACTIONS(2503), + [anon_sym_volatile] = ACTIONS(2503), + [anon_sym_restrict] = ACTIONS(2503), + [anon_sym__Atomic] = ACTIONS(2503), + [anon_sym_mutable] = ACTIONS(2503), + [anon_sym_constexpr] = ACTIONS(2503), + [anon_sym_constinit] = ACTIONS(2503), + [anon_sym_consteval] = ACTIONS(2503), + [anon_sym_signed] = ACTIONS(2503), + [anon_sym_unsigned] = ACTIONS(2503), + [anon_sym_long] = ACTIONS(2503), + [anon_sym_short] = ACTIONS(2503), + [sym_primitive_type] = ACTIONS(2503), + [anon_sym_enum] = ACTIONS(2503), + [anon_sym_class] = ACTIONS(2503), + [anon_sym_struct] = ACTIONS(2503), + [anon_sym_union] = ACTIONS(2503), + [anon_sym_if] = ACTIONS(2503), + [anon_sym_else] = ACTIONS(2503), + [anon_sym_switch] = ACTIONS(2503), + [anon_sym_case] = ACTIONS(2503), + [anon_sym_default] = ACTIONS(2503), + [anon_sym_while] = ACTIONS(2503), + [anon_sym_do] = ACTIONS(2503), + [anon_sym_for] = ACTIONS(2503), + [anon_sym_return] = ACTIONS(2503), + [anon_sym_break] = ACTIONS(2503), + [anon_sym_continue] = ACTIONS(2503), + [anon_sym_goto] = ACTIONS(2503), + [anon_sym_not] = ACTIONS(2503), + [anon_sym_compl] = ACTIONS(2503), + [anon_sym_DASH_DASH] = ACTIONS(2505), + [anon_sym_PLUS_PLUS] = ACTIONS(2505), + [anon_sym_sizeof] = ACTIONS(2503), + [sym_number_literal] = ACTIONS(2505), + [anon_sym_L_SQUOTE] = ACTIONS(2505), + [anon_sym_u_SQUOTE] = ACTIONS(2505), + [anon_sym_U_SQUOTE] = ACTIONS(2505), + [anon_sym_u8_SQUOTE] = ACTIONS(2505), + [anon_sym_SQUOTE] = ACTIONS(2505), + [anon_sym_L_DQUOTE] = ACTIONS(2505), + [anon_sym_u_DQUOTE] = ACTIONS(2505), + [anon_sym_U_DQUOTE] = ACTIONS(2505), + [anon_sym_u8_DQUOTE] = ACTIONS(2505), + [anon_sym_DQUOTE] = ACTIONS(2505), + [sym_true] = ACTIONS(2503), + [sym_false] = ACTIONS(2503), + [sym_null] = ACTIONS(2503), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2699), - [anon_sym_decltype] = ACTIONS(2699), - [anon_sym_virtual] = ACTIONS(2699), - [anon_sym_explicit] = ACTIONS(2699), - [anon_sym_typename] = ACTIONS(2699), - [anon_sym_template] = ACTIONS(2699), - [anon_sym_operator] = ACTIONS(2699), - [anon_sym_try] = ACTIONS(2699), - [anon_sym_delete] = ACTIONS(2699), - [anon_sym_throw] = ACTIONS(2699), - [anon_sym_namespace] = ACTIONS(2699), - [anon_sym_using] = ACTIONS(2699), - [anon_sym_static_assert] = ACTIONS(2699), - [anon_sym_concept] = ACTIONS(2699), - [anon_sym_co_return] = ACTIONS(2699), - [anon_sym_co_yield] = ACTIONS(2699), - [anon_sym_co_await] = ACTIONS(2699), - [anon_sym_new] = ACTIONS(2699), - [anon_sym_requires] = ACTIONS(2699), - [sym_this] = ACTIONS(2699), - [sym_nullptr] = ACTIONS(2699), - [sym_raw_string_literal] = ACTIONS(2701), + [sym_auto] = ACTIONS(2503), + [anon_sym_decltype] = ACTIONS(2503), + [anon_sym_virtual] = ACTIONS(2503), + [anon_sym_explicit] = ACTIONS(2503), + [anon_sym_typename] = ACTIONS(2503), + [anon_sym_template] = ACTIONS(2503), + [anon_sym_operator] = ACTIONS(2503), + [anon_sym_try] = ACTIONS(2503), + [anon_sym_delete] = ACTIONS(2503), + [anon_sym_throw] = ACTIONS(2503), + [anon_sym_namespace] = ACTIONS(2503), + [anon_sym_using] = ACTIONS(2503), + [anon_sym_static_assert] = ACTIONS(2503), + [anon_sym_concept] = ACTIONS(2503), + [anon_sym_co_return] = ACTIONS(2503), + [anon_sym_co_yield] = ACTIONS(2503), + [anon_sym_co_await] = ACTIONS(2503), + [anon_sym_new] = ACTIONS(2503), + [anon_sym_requires] = ACTIONS(2503), + [sym_this] = ACTIONS(2503), + [sym_nullptr] = ACTIONS(2503), + [sym_raw_string_literal] = ACTIONS(2505), }, - [932] = { - [sym_identifier] = ACTIONS(2629), - [aux_sym_preproc_include_token1] = ACTIONS(2629), - [aux_sym_preproc_def_token1] = ACTIONS(2629), - [aux_sym_preproc_if_token1] = ACTIONS(2629), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2629), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2629), - [sym_preproc_directive] = ACTIONS(2629), - [anon_sym_LPAREN2] = ACTIONS(2631), - [anon_sym_BANG] = ACTIONS(2631), - [anon_sym_TILDE] = ACTIONS(2631), - [anon_sym_DASH] = ACTIONS(2629), - [anon_sym_PLUS] = ACTIONS(2629), - [anon_sym_STAR] = ACTIONS(2631), - [anon_sym_AMP_AMP] = ACTIONS(2631), - [anon_sym_AMP] = ACTIONS(2629), - [anon_sym_SEMI] = ACTIONS(2631), - [anon_sym_typedef] = ACTIONS(2629), - [anon_sym_extern] = ACTIONS(2629), - [anon_sym___attribute__] = ACTIONS(2629), - [anon_sym_COLON_COLON] = ACTIONS(2631), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2631), - [anon_sym___declspec] = ACTIONS(2629), - [anon_sym___based] = ACTIONS(2629), - [anon_sym___cdecl] = ACTIONS(2629), - [anon_sym___clrcall] = ACTIONS(2629), - [anon_sym___stdcall] = ACTIONS(2629), - [anon_sym___fastcall] = ACTIONS(2629), - [anon_sym___thiscall] = ACTIONS(2629), - [anon_sym___vectorcall] = ACTIONS(2629), - [anon_sym_LBRACE] = ACTIONS(2631), - [anon_sym_RBRACE] = ACTIONS(2631), - [anon_sym_LBRACK] = ACTIONS(2629), - [anon_sym_static] = ACTIONS(2629), - [anon_sym_register] = ACTIONS(2629), - [anon_sym_inline] = ACTIONS(2629), - [anon_sym_thread_local] = ACTIONS(2629), - [anon_sym_const] = ACTIONS(2629), - [anon_sym_volatile] = ACTIONS(2629), - [anon_sym_restrict] = ACTIONS(2629), - [anon_sym__Atomic] = ACTIONS(2629), - [anon_sym_mutable] = ACTIONS(2629), - [anon_sym_constexpr] = ACTIONS(2629), - [anon_sym_constinit] = ACTIONS(2629), - [anon_sym_consteval] = ACTIONS(2629), - [anon_sym_signed] = ACTIONS(2629), - [anon_sym_unsigned] = ACTIONS(2629), - [anon_sym_long] = ACTIONS(2629), - [anon_sym_short] = ACTIONS(2629), - [sym_primitive_type] = ACTIONS(2629), - [anon_sym_enum] = ACTIONS(2629), - [anon_sym_class] = ACTIONS(2629), - [anon_sym_struct] = ACTIONS(2629), - [anon_sym_union] = ACTIONS(2629), - [anon_sym_if] = ACTIONS(2629), - [anon_sym_switch] = ACTIONS(2629), - [anon_sym_case] = ACTIONS(2629), - [anon_sym_default] = ACTIONS(2629), - [anon_sym_while] = ACTIONS(2629), - [anon_sym_do] = ACTIONS(2629), - [anon_sym_for] = ACTIONS(2629), - [anon_sym_return] = ACTIONS(2629), - [anon_sym_break] = ACTIONS(2629), - [anon_sym_continue] = ACTIONS(2629), - [anon_sym_goto] = ACTIONS(2629), - [anon_sym_DASH_DASH] = ACTIONS(2631), - [anon_sym_PLUS_PLUS] = ACTIONS(2631), - [anon_sym_sizeof] = ACTIONS(2629), - [sym_number_literal] = ACTIONS(2631), - [anon_sym_L_SQUOTE] = ACTIONS(2631), - [anon_sym_u_SQUOTE] = ACTIONS(2631), - [anon_sym_U_SQUOTE] = ACTIONS(2631), - [anon_sym_u8_SQUOTE] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2631), - [anon_sym_L_DQUOTE] = ACTIONS(2631), - [anon_sym_u_DQUOTE] = ACTIONS(2631), - [anon_sym_U_DQUOTE] = ACTIONS(2631), - [anon_sym_u8_DQUOTE] = ACTIONS(2631), - [anon_sym_DQUOTE] = ACTIONS(2631), - [sym_true] = ACTIONS(2629), - [sym_false] = ACTIONS(2629), - [sym_null] = ACTIONS(2629), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2629), - [anon_sym_decltype] = ACTIONS(2629), - [anon_sym_virtual] = ACTIONS(2629), - [anon_sym_explicit] = ACTIONS(2629), - [anon_sym_typename] = ACTIONS(2629), - [anon_sym_template] = ACTIONS(2629), - [anon_sym_operator] = ACTIONS(2629), - [anon_sym_try] = ACTIONS(2629), - [anon_sym_delete] = ACTIONS(2629), - [anon_sym_throw] = ACTIONS(2629), - [anon_sym_namespace] = ACTIONS(2629), - [anon_sym_using] = ACTIONS(2629), - [anon_sym_static_assert] = ACTIONS(2629), - [anon_sym_concept] = ACTIONS(2629), - [anon_sym_co_return] = ACTIONS(2629), - [anon_sym_co_yield] = ACTIONS(2629), - [anon_sym_co_await] = ACTIONS(2629), - [anon_sym_new] = ACTIONS(2629), - [anon_sym_requires] = ACTIONS(2629), - [sym_this] = ACTIONS(2629), - [sym_nullptr] = ACTIONS(2629), - [sym_raw_string_literal] = ACTIONS(2631), + [582] = { + [sym_identifier] = ACTIONS(2627), + [aux_sym_preproc_include_token1] = ACTIONS(2627), + [aux_sym_preproc_def_token1] = ACTIONS(2627), + [aux_sym_preproc_if_token1] = ACTIONS(2627), + [aux_sym_preproc_if_token2] = ACTIONS(2627), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2627), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2627), + [sym_preproc_directive] = ACTIONS(2627), + [anon_sym_LPAREN2] = ACTIONS(2629), + [anon_sym_BANG] = ACTIONS(2629), + [anon_sym_TILDE] = ACTIONS(2629), + [anon_sym_DASH] = ACTIONS(2627), + [anon_sym_PLUS] = ACTIONS(2627), + [anon_sym_STAR] = ACTIONS(2629), + [anon_sym_AMP_AMP] = ACTIONS(2629), + [anon_sym_AMP] = ACTIONS(2627), + [anon_sym_SEMI] = ACTIONS(2629), + [anon_sym_typedef] = ACTIONS(2627), + [anon_sym_extern] = ACTIONS(2627), + [anon_sym___attribute__] = ACTIONS(2627), + [anon_sym_COLON_COLON] = ACTIONS(2629), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2629), + [anon_sym___declspec] = ACTIONS(2627), + [anon_sym___based] = ACTIONS(2627), + [anon_sym___cdecl] = ACTIONS(2627), + [anon_sym___clrcall] = ACTIONS(2627), + [anon_sym___stdcall] = ACTIONS(2627), + [anon_sym___fastcall] = ACTIONS(2627), + [anon_sym___thiscall] = ACTIONS(2627), + [anon_sym___vectorcall] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(2629), + [anon_sym_LBRACK] = ACTIONS(2627), + [anon_sym_static] = ACTIONS(2627), + [anon_sym_register] = ACTIONS(2627), + [anon_sym_inline] = ACTIONS(2627), + [anon_sym_thread_local] = ACTIONS(2627), + [anon_sym_const] = ACTIONS(2627), + [anon_sym_volatile] = ACTIONS(2627), + [anon_sym_restrict] = ACTIONS(2627), + [anon_sym__Atomic] = ACTIONS(2627), + [anon_sym_mutable] = ACTIONS(2627), + [anon_sym_constexpr] = ACTIONS(2627), + [anon_sym_constinit] = ACTIONS(2627), + [anon_sym_consteval] = ACTIONS(2627), + [anon_sym_signed] = ACTIONS(2627), + [anon_sym_unsigned] = ACTIONS(2627), + [anon_sym_long] = ACTIONS(2627), + [anon_sym_short] = ACTIONS(2627), + [sym_primitive_type] = ACTIONS(2627), + [anon_sym_enum] = ACTIONS(2627), + [anon_sym_class] = ACTIONS(2627), + [anon_sym_struct] = ACTIONS(2627), + [anon_sym_union] = ACTIONS(2627), + [anon_sym_if] = ACTIONS(2627), + [anon_sym_else] = ACTIONS(2627), + [anon_sym_switch] = ACTIONS(2627), + [anon_sym_case] = ACTIONS(2627), + [anon_sym_default] = ACTIONS(2627), + [anon_sym_while] = ACTIONS(2627), + [anon_sym_do] = ACTIONS(2627), + [anon_sym_for] = ACTIONS(2627), + [anon_sym_return] = ACTIONS(2627), + [anon_sym_break] = ACTIONS(2627), + [anon_sym_continue] = ACTIONS(2627), + [anon_sym_goto] = ACTIONS(2627), + [anon_sym_not] = ACTIONS(2627), + [anon_sym_compl] = ACTIONS(2627), + [anon_sym_DASH_DASH] = ACTIONS(2629), + [anon_sym_PLUS_PLUS] = ACTIONS(2629), + [anon_sym_sizeof] = ACTIONS(2627), + [sym_number_literal] = ACTIONS(2629), + [anon_sym_L_SQUOTE] = ACTIONS(2629), + [anon_sym_u_SQUOTE] = ACTIONS(2629), + [anon_sym_U_SQUOTE] = ACTIONS(2629), + [anon_sym_u8_SQUOTE] = ACTIONS(2629), + [anon_sym_SQUOTE] = ACTIONS(2629), + [anon_sym_L_DQUOTE] = ACTIONS(2629), + [anon_sym_u_DQUOTE] = ACTIONS(2629), + [anon_sym_U_DQUOTE] = ACTIONS(2629), + [anon_sym_u8_DQUOTE] = ACTIONS(2629), + [anon_sym_DQUOTE] = ACTIONS(2629), + [sym_true] = ACTIONS(2627), + [sym_false] = ACTIONS(2627), + [sym_null] = ACTIONS(2627), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2627), + [anon_sym_decltype] = ACTIONS(2627), + [anon_sym_virtual] = ACTIONS(2627), + [anon_sym_explicit] = ACTIONS(2627), + [anon_sym_typename] = ACTIONS(2627), + [anon_sym_template] = ACTIONS(2627), + [anon_sym_operator] = ACTIONS(2627), + [anon_sym_try] = ACTIONS(2627), + [anon_sym_delete] = ACTIONS(2627), + [anon_sym_throw] = ACTIONS(2627), + [anon_sym_namespace] = ACTIONS(2627), + [anon_sym_using] = ACTIONS(2627), + [anon_sym_static_assert] = ACTIONS(2627), + [anon_sym_concept] = ACTIONS(2627), + [anon_sym_co_return] = ACTIONS(2627), + [anon_sym_co_yield] = ACTIONS(2627), + [anon_sym_co_await] = ACTIONS(2627), + [anon_sym_new] = ACTIONS(2627), + [anon_sym_requires] = ACTIONS(2627), + [sym_this] = ACTIONS(2627), + [sym_nullptr] = ACTIONS(2627), + [sym_raw_string_literal] = ACTIONS(2629), }, - [933] = { - [sym_identifier] = ACTIONS(2757), - [aux_sym_preproc_include_token1] = ACTIONS(2757), - [aux_sym_preproc_def_token1] = ACTIONS(2757), - [aux_sym_preproc_if_token1] = ACTIONS(2757), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2757), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2757), - [sym_preproc_directive] = ACTIONS(2757), - [anon_sym_LPAREN2] = ACTIONS(2759), - [anon_sym_BANG] = ACTIONS(2759), - [anon_sym_TILDE] = ACTIONS(2759), - [anon_sym_DASH] = ACTIONS(2757), - [anon_sym_PLUS] = ACTIONS(2757), - [anon_sym_STAR] = ACTIONS(2759), - [anon_sym_AMP_AMP] = ACTIONS(2759), - [anon_sym_AMP] = ACTIONS(2757), - [anon_sym_SEMI] = ACTIONS(2759), - [anon_sym_typedef] = ACTIONS(2757), - [anon_sym_extern] = ACTIONS(2757), - [anon_sym___attribute__] = ACTIONS(2757), - [anon_sym_COLON_COLON] = ACTIONS(2759), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2759), - [anon_sym___declspec] = ACTIONS(2757), - [anon_sym___based] = ACTIONS(2757), - [anon_sym___cdecl] = ACTIONS(2757), - [anon_sym___clrcall] = ACTIONS(2757), - [anon_sym___stdcall] = ACTIONS(2757), - [anon_sym___fastcall] = ACTIONS(2757), - [anon_sym___thiscall] = ACTIONS(2757), - [anon_sym___vectorcall] = ACTIONS(2757), - [anon_sym_LBRACE] = ACTIONS(2759), - [anon_sym_RBRACE] = ACTIONS(2759), - [anon_sym_LBRACK] = ACTIONS(2757), - [anon_sym_static] = ACTIONS(2757), - [anon_sym_register] = ACTIONS(2757), - [anon_sym_inline] = ACTIONS(2757), - [anon_sym_thread_local] = ACTIONS(2757), - [anon_sym_const] = ACTIONS(2757), - [anon_sym_volatile] = ACTIONS(2757), - [anon_sym_restrict] = ACTIONS(2757), - [anon_sym__Atomic] = ACTIONS(2757), - [anon_sym_mutable] = ACTIONS(2757), - [anon_sym_constexpr] = ACTIONS(2757), - [anon_sym_constinit] = ACTIONS(2757), - [anon_sym_consteval] = ACTIONS(2757), - [anon_sym_signed] = ACTIONS(2757), - [anon_sym_unsigned] = ACTIONS(2757), - [anon_sym_long] = ACTIONS(2757), - [anon_sym_short] = ACTIONS(2757), - [sym_primitive_type] = ACTIONS(2757), - [anon_sym_enum] = ACTIONS(2757), - [anon_sym_class] = ACTIONS(2757), - [anon_sym_struct] = ACTIONS(2757), - [anon_sym_union] = ACTIONS(2757), - [anon_sym_if] = ACTIONS(2757), - [anon_sym_switch] = ACTIONS(2757), - [anon_sym_case] = ACTIONS(2757), - [anon_sym_default] = ACTIONS(2757), - [anon_sym_while] = ACTIONS(2757), - [anon_sym_do] = ACTIONS(2757), - [anon_sym_for] = ACTIONS(2757), - [anon_sym_return] = ACTIONS(2757), - [anon_sym_break] = ACTIONS(2757), - [anon_sym_continue] = ACTIONS(2757), - [anon_sym_goto] = ACTIONS(2757), - [anon_sym_DASH_DASH] = ACTIONS(2759), - [anon_sym_PLUS_PLUS] = ACTIONS(2759), - [anon_sym_sizeof] = ACTIONS(2757), - [sym_number_literal] = ACTIONS(2759), - [anon_sym_L_SQUOTE] = ACTIONS(2759), - [anon_sym_u_SQUOTE] = ACTIONS(2759), - [anon_sym_U_SQUOTE] = ACTIONS(2759), - [anon_sym_u8_SQUOTE] = ACTIONS(2759), - [anon_sym_SQUOTE] = ACTIONS(2759), - [anon_sym_L_DQUOTE] = ACTIONS(2759), - [anon_sym_u_DQUOTE] = ACTIONS(2759), - [anon_sym_U_DQUOTE] = ACTIONS(2759), - [anon_sym_u8_DQUOTE] = ACTIONS(2759), - [anon_sym_DQUOTE] = ACTIONS(2759), - [sym_true] = ACTIONS(2757), - [sym_false] = ACTIONS(2757), - [sym_null] = ACTIONS(2757), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2757), - [anon_sym_decltype] = ACTIONS(2757), - [anon_sym_virtual] = ACTIONS(2757), - [anon_sym_explicit] = ACTIONS(2757), - [anon_sym_typename] = ACTIONS(2757), - [anon_sym_template] = ACTIONS(2757), - [anon_sym_operator] = ACTIONS(2757), - [anon_sym_try] = ACTIONS(2757), - [anon_sym_delete] = ACTIONS(2757), - [anon_sym_throw] = ACTIONS(2757), - [anon_sym_namespace] = ACTIONS(2757), - [anon_sym_using] = ACTIONS(2757), - [anon_sym_static_assert] = ACTIONS(2757), - [anon_sym_concept] = ACTIONS(2757), - [anon_sym_co_return] = ACTIONS(2757), - [anon_sym_co_yield] = ACTIONS(2757), - [anon_sym_co_await] = ACTIONS(2757), - [anon_sym_new] = ACTIONS(2757), - [anon_sym_requires] = ACTIONS(2757), - [sym_this] = ACTIONS(2757), - [sym_nullptr] = ACTIONS(2757), - [sym_raw_string_literal] = ACTIONS(2759), + [583] = { + [sym_identifier] = ACTIONS(2611), + [aux_sym_preproc_include_token1] = ACTIONS(2611), + [aux_sym_preproc_def_token1] = ACTIONS(2611), + [aux_sym_preproc_if_token1] = ACTIONS(2611), + [aux_sym_preproc_if_token2] = ACTIONS(2611), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2611), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2611), + [sym_preproc_directive] = ACTIONS(2611), + [anon_sym_LPAREN2] = ACTIONS(2613), + [anon_sym_BANG] = ACTIONS(2613), + [anon_sym_TILDE] = ACTIONS(2613), + [anon_sym_DASH] = ACTIONS(2611), + [anon_sym_PLUS] = ACTIONS(2611), + [anon_sym_STAR] = ACTIONS(2613), + [anon_sym_AMP_AMP] = ACTIONS(2613), + [anon_sym_AMP] = ACTIONS(2611), + [anon_sym_SEMI] = ACTIONS(2613), + [anon_sym_typedef] = ACTIONS(2611), + [anon_sym_extern] = ACTIONS(2611), + [anon_sym___attribute__] = ACTIONS(2611), + [anon_sym_COLON_COLON] = ACTIONS(2613), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2613), + [anon_sym___declspec] = ACTIONS(2611), + [anon_sym___based] = ACTIONS(2611), + [anon_sym___cdecl] = ACTIONS(2611), + [anon_sym___clrcall] = ACTIONS(2611), + [anon_sym___stdcall] = ACTIONS(2611), + [anon_sym___fastcall] = ACTIONS(2611), + [anon_sym___thiscall] = ACTIONS(2611), + [anon_sym___vectorcall] = ACTIONS(2611), + [anon_sym_LBRACE] = ACTIONS(2613), + [anon_sym_LBRACK] = ACTIONS(2611), + [anon_sym_static] = ACTIONS(2611), + [anon_sym_register] = ACTIONS(2611), + [anon_sym_inline] = ACTIONS(2611), + [anon_sym_thread_local] = ACTIONS(2611), + [anon_sym_const] = ACTIONS(2611), + [anon_sym_volatile] = ACTIONS(2611), + [anon_sym_restrict] = ACTIONS(2611), + [anon_sym__Atomic] = ACTIONS(2611), + [anon_sym_mutable] = ACTIONS(2611), + [anon_sym_constexpr] = ACTIONS(2611), + [anon_sym_constinit] = ACTIONS(2611), + [anon_sym_consteval] = ACTIONS(2611), + [anon_sym_signed] = ACTIONS(2611), + [anon_sym_unsigned] = ACTIONS(2611), + [anon_sym_long] = ACTIONS(2611), + [anon_sym_short] = ACTIONS(2611), + [sym_primitive_type] = ACTIONS(2611), + [anon_sym_enum] = ACTIONS(2611), + [anon_sym_class] = ACTIONS(2611), + [anon_sym_struct] = ACTIONS(2611), + [anon_sym_union] = ACTIONS(2611), + [anon_sym_if] = ACTIONS(2611), + [anon_sym_else] = ACTIONS(2611), + [anon_sym_switch] = ACTIONS(2611), + [anon_sym_case] = ACTIONS(2611), + [anon_sym_default] = ACTIONS(2611), + [anon_sym_while] = ACTIONS(2611), + [anon_sym_do] = ACTIONS(2611), + [anon_sym_for] = ACTIONS(2611), + [anon_sym_return] = ACTIONS(2611), + [anon_sym_break] = ACTIONS(2611), + [anon_sym_continue] = ACTIONS(2611), + [anon_sym_goto] = ACTIONS(2611), + [anon_sym_not] = ACTIONS(2611), + [anon_sym_compl] = ACTIONS(2611), + [anon_sym_DASH_DASH] = ACTIONS(2613), + [anon_sym_PLUS_PLUS] = ACTIONS(2613), + [anon_sym_sizeof] = ACTIONS(2611), + [sym_number_literal] = ACTIONS(2613), + [anon_sym_L_SQUOTE] = ACTIONS(2613), + [anon_sym_u_SQUOTE] = ACTIONS(2613), + [anon_sym_U_SQUOTE] = ACTIONS(2613), + [anon_sym_u8_SQUOTE] = ACTIONS(2613), + [anon_sym_SQUOTE] = ACTIONS(2613), + [anon_sym_L_DQUOTE] = ACTIONS(2613), + [anon_sym_u_DQUOTE] = ACTIONS(2613), + [anon_sym_U_DQUOTE] = ACTIONS(2613), + [anon_sym_u8_DQUOTE] = ACTIONS(2613), + [anon_sym_DQUOTE] = ACTIONS(2613), + [sym_true] = ACTIONS(2611), + [sym_false] = ACTIONS(2611), + [sym_null] = ACTIONS(2611), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2611), + [anon_sym_decltype] = ACTIONS(2611), + [anon_sym_virtual] = ACTIONS(2611), + [anon_sym_explicit] = ACTIONS(2611), + [anon_sym_typename] = ACTIONS(2611), + [anon_sym_template] = ACTIONS(2611), + [anon_sym_operator] = ACTIONS(2611), + [anon_sym_try] = ACTIONS(2611), + [anon_sym_delete] = ACTIONS(2611), + [anon_sym_throw] = ACTIONS(2611), + [anon_sym_namespace] = ACTIONS(2611), + [anon_sym_using] = ACTIONS(2611), + [anon_sym_static_assert] = ACTIONS(2611), + [anon_sym_concept] = ACTIONS(2611), + [anon_sym_co_return] = ACTIONS(2611), + [anon_sym_co_yield] = ACTIONS(2611), + [anon_sym_co_await] = ACTIONS(2611), + [anon_sym_new] = ACTIONS(2611), + [anon_sym_requires] = ACTIONS(2611), + [sym_this] = ACTIONS(2611), + [sym_nullptr] = ACTIONS(2611), + [sym_raw_string_literal] = ACTIONS(2613), }, - [934] = { - [sym_identifier] = ACTIONS(2613), - [aux_sym_preproc_include_token1] = ACTIONS(2613), - [aux_sym_preproc_def_token1] = ACTIONS(2613), - [aux_sym_preproc_if_token1] = ACTIONS(2613), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2613), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2613), - [sym_preproc_directive] = ACTIONS(2613), - [anon_sym_LPAREN2] = ACTIONS(2615), - [anon_sym_BANG] = ACTIONS(2615), - [anon_sym_TILDE] = ACTIONS(2615), - [anon_sym_DASH] = ACTIONS(2613), - [anon_sym_PLUS] = ACTIONS(2613), - [anon_sym_STAR] = ACTIONS(2615), - [anon_sym_AMP_AMP] = ACTIONS(2615), - [anon_sym_AMP] = ACTIONS(2613), - [anon_sym_SEMI] = ACTIONS(2615), - [anon_sym_typedef] = ACTIONS(2613), - [anon_sym_extern] = ACTIONS(2613), - [anon_sym___attribute__] = ACTIONS(2613), - [anon_sym_COLON_COLON] = ACTIONS(2615), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2615), - [anon_sym___declspec] = ACTIONS(2613), - [anon_sym___based] = ACTIONS(2613), - [anon_sym___cdecl] = ACTIONS(2613), - [anon_sym___clrcall] = ACTIONS(2613), - [anon_sym___stdcall] = ACTIONS(2613), - [anon_sym___fastcall] = ACTIONS(2613), - [anon_sym___thiscall] = ACTIONS(2613), - [anon_sym___vectorcall] = ACTIONS(2613), - [anon_sym_LBRACE] = ACTIONS(2615), - [anon_sym_RBRACE] = ACTIONS(2615), - [anon_sym_LBRACK] = ACTIONS(2613), - [anon_sym_static] = ACTIONS(2613), - [anon_sym_register] = ACTIONS(2613), - [anon_sym_inline] = ACTIONS(2613), - [anon_sym_thread_local] = ACTIONS(2613), - [anon_sym_const] = ACTIONS(2613), - [anon_sym_volatile] = ACTIONS(2613), - [anon_sym_restrict] = ACTIONS(2613), - [anon_sym__Atomic] = ACTIONS(2613), - [anon_sym_mutable] = ACTIONS(2613), - [anon_sym_constexpr] = ACTIONS(2613), - [anon_sym_constinit] = ACTIONS(2613), - [anon_sym_consteval] = ACTIONS(2613), - [anon_sym_signed] = ACTIONS(2613), - [anon_sym_unsigned] = ACTIONS(2613), - [anon_sym_long] = ACTIONS(2613), - [anon_sym_short] = ACTIONS(2613), - [sym_primitive_type] = ACTIONS(2613), - [anon_sym_enum] = ACTIONS(2613), - [anon_sym_class] = ACTIONS(2613), - [anon_sym_struct] = ACTIONS(2613), - [anon_sym_union] = ACTIONS(2613), - [anon_sym_if] = ACTIONS(2613), - [anon_sym_switch] = ACTIONS(2613), - [anon_sym_case] = ACTIONS(2613), - [anon_sym_default] = ACTIONS(2613), - [anon_sym_while] = ACTIONS(2613), - [anon_sym_do] = ACTIONS(2613), - [anon_sym_for] = ACTIONS(2613), - [anon_sym_return] = ACTIONS(2613), - [anon_sym_break] = ACTIONS(2613), - [anon_sym_continue] = ACTIONS(2613), - [anon_sym_goto] = ACTIONS(2613), - [anon_sym_DASH_DASH] = ACTIONS(2615), - [anon_sym_PLUS_PLUS] = ACTIONS(2615), - [anon_sym_sizeof] = ACTIONS(2613), - [sym_number_literal] = ACTIONS(2615), - [anon_sym_L_SQUOTE] = ACTIONS(2615), - [anon_sym_u_SQUOTE] = ACTIONS(2615), - [anon_sym_U_SQUOTE] = ACTIONS(2615), - [anon_sym_u8_SQUOTE] = ACTIONS(2615), - [anon_sym_SQUOTE] = ACTIONS(2615), - [anon_sym_L_DQUOTE] = ACTIONS(2615), - [anon_sym_u_DQUOTE] = ACTIONS(2615), - [anon_sym_U_DQUOTE] = ACTIONS(2615), - [anon_sym_u8_DQUOTE] = ACTIONS(2615), - [anon_sym_DQUOTE] = ACTIONS(2615), - [sym_true] = ACTIONS(2613), - [sym_false] = ACTIONS(2613), - [sym_null] = ACTIONS(2613), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2613), - [anon_sym_decltype] = ACTIONS(2613), - [anon_sym_virtual] = ACTIONS(2613), - [anon_sym_explicit] = ACTIONS(2613), - [anon_sym_typename] = ACTIONS(2613), - [anon_sym_template] = ACTIONS(2613), - [anon_sym_operator] = ACTIONS(2613), - [anon_sym_try] = ACTIONS(2613), - [anon_sym_delete] = ACTIONS(2613), - [anon_sym_throw] = ACTIONS(2613), - [anon_sym_namespace] = ACTIONS(2613), - [anon_sym_using] = ACTIONS(2613), - [anon_sym_static_assert] = ACTIONS(2613), - [anon_sym_concept] = ACTIONS(2613), - [anon_sym_co_return] = ACTIONS(2613), - [anon_sym_co_yield] = ACTIONS(2613), - [anon_sym_co_await] = ACTIONS(2613), - [anon_sym_new] = ACTIONS(2613), - [anon_sym_requires] = ACTIONS(2613), - [sym_this] = ACTIONS(2613), - [sym_nullptr] = ACTIONS(2613), - [sym_raw_string_literal] = ACTIONS(2615), + [584] = { + [sym_identifier] = ACTIONS(2603), + [aux_sym_preproc_include_token1] = ACTIONS(2603), + [aux_sym_preproc_def_token1] = ACTIONS(2603), + [aux_sym_preproc_if_token1] = ACTIONS(2603), + [aux_sym_preproc_if_token2] = ACTIONS(2603), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2603), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2603), + [sym_preproc_directive] = ACTIONS(2603), + [anon_sym_LPAREN2] = ACTIONS(2605), + [anon_sym_BANG] = ACTIONS(2605), + [anon_sym_TILDE] = ACTIONS(2605), + [anon_sym_DASH] = ACTIONS(2603), + [anon_sym_PLUS] = ACTIONS(2603), + [anon_sym_STAR] = ACTIONS(2605), + [anon_sym_AMP_AMP] = ACTIONS(2605), + [anon_sym_AMP] = ACTIONS(2603), + [anon_sym_SEMI] = ACTIONS(2605), + [anon_sym_typedef] = ACTIONS(2603), + [anon_sym_extern] = ACTIONS(2603), + [anon_sym___attribute__] = ACTIONS(2603), + [anon_sym_COLON_COLON] = ACTIONS(2605), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2605), + [anon_sym___declspec] = ACTIONS(2603), + [anon_sym___based] = ACTIONS(2603), + [anon_sym___cdecl] = ACTIONS(2603), + [anon_sym___clrcall] = ACTIONS(2603), + [anon_sym___stdcall] = ACTIONS(2603), + [anon_sym___fastcall] = ACTIONS(2603), + [anon_sym___thiscall] = ACTIONS(2603), + [anon_sym___vectorcall] = ACTIONS(2603), + [anon_sym_LBRACE] = ACTIONS(2605), + [anon_sym_LBRACK] = ACTIONS(2603), + [anon_sym_static] = ACTIONS(2603), + [anon_sym_register] = ACTIONS(2603), + [anon_sym_inline] = ACTIONS(2603), + [anon_sym_thread_local] = ACTIONS(2603), + [anon_sym_const] = ACTIONS(2603), + [anon_sym_volatile] = ACTIONS(2603), + [anon_sym_restrict] = ACTIONS(2603), + [anon_sym__Atomic] = ACTIONS(2603), + [anon_sym_mutable] = ACTIONS(2603), + [anon_sym_constexpr] = ACTIONS(2603), + [anon_sym_constinit] = ACTIONS(2603), + [anon_sym_consteval] = ACTIONS(2603), + [anon_sym_signed] = ACTIONS(2603), + [anon_sym_unsigned] = ACTIONS(2603), + [anon_sym_long] = ACTIONS(2603), + [anon_sym_short] = ACTIONS(2603), + [sym_primitive_type] = ACTIONS(2603), + [anon_sym_enum] = ACTIONS(2603), + [anon_sym_class] = ACTIONS(2603), + [anon_sym_struct] = ACTIONS(2603), + [anon_sym_union] = ACTIONS(2603), + [anon_sym_if] = ACTIONS(2603), + [anon_sym_else] = ACTIONS(2603), + [anon_sym_switch] = ACTIONS(2603), + [anon_sym_case] = ACTIONS(2603), + [anon_sym_default] = ACTIONS(2603), + [anon_sym_while] = ACTIONS(2603), + [anon_sym_do] = ACTIONS(2603), + [anon_sym_for] = ACTIONS(2603), + [anon_sym_return] = ACTIONS(2603), + [anon_sym_break] = ACTIONS(2603), + [anon_sym_continue] = ACTIONS(2603), + [anon_sym_goto] = ACTIONS(2603), + [anon_sym_not] = ACTIONS(2603), + [anon_sym_compl] = ACTIONS(2603), + [anon_sym_DASH_DASH] = ACTIONS(2605), + [anon_sym_PLUS_PLUS] = ACTIONS(2605), + [anon_sym_sizeof] = ACTIONS(2603), + [sym_number_literal] = ACTIONS(2605), + [anon_sym_L_SQUOTE] = ACTIONS(2605), + [anon_sym_u_SQUOTE] = ACTIONS(2605), + [anon_sym_U_SQUOTE] = ACTIONS(2605), + [anon_sym_u8_SQUOTE] = ACTIONS(2605), + [anon_sym_SQUOTE] = ACTIONS(2605), + [anon_sym_L_DQUOTE] = ACTIONS(2605), + [anon_sym_u_DQUOTE] = ACTIONS(2605), + [anon_sym_U_DQUOTE] = ACTIONS(2605), + [anon_sym_u8_DQUOTE] = ACTIONS(2605), + [anon_sym_DQUOTE] = ACTIONS(2605), + [sym_true] = ACTIONS(2603), + [sym_false] = ACTIONS(2603), + [sym_null] = ACTIONS(2603), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2603), + [anon_sym_decltype] = ACTIONS(2603), + [anon_sym_virtual] = ACTIONS(2603), + [anon_sym_explicit] = ACTIONS(2603), + [anon_sym_typename] = ACTIONS(2603), + [anon_sym_template] = ACTIONS(2603), + [anon_sym_operator] = ACTIONS(2603), + [anon_sym_try] = ACTIONS(2603), + [anon_sym_delete] = ACTIONS(2603), + [anon_sym_throw] = ACTIONS(2603), + [anon_sym_namespace] = ACTIONS(2603), + [anon_sym_using] = ACTIONS(2603), + [anon_sym_static_assert] = ACTIONS(2603), + [anon_sym_concept] = ACTIONS(2603), + [anon_sym_co_return] = ACTIONS(2603), + [anon_sym_co_yield] = ACTIONS(2603), + [anon_sym_co_await] = ACTIONS(2603), + [anon_sym_new] = ACTIONS(2603), + [anon_sym_requires] = ACTIONS(2603), + [sym_this] = ACTIONS(2603), + [sym_nullptr] = ACTIONS(2603), + [sym_raw_string_literal] = ACTIONS(2605), }, - [935] = { - [sym_identifier] = ACTIONS(2621), - [aux_sym_preproc_include_token1] = ACTIONS(2621), - [aux_sym_preproc_def_token1] = ACTIONS(2621), - [aux_sym_preproc_if_token1] = ACTIONS(2621), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2621), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2621), - [sym_preproc_directive] = ACTIONS(2621), - [anon_sym_LPAREN2] = ACTIONS(2623), - [anon_sym_BANG] = ACTIONS(2623), - [anon_sym_TILDE] = ACTIONS(2623), - [anon_sym_DASH] = ACTIONS(2621), - [anon_sym_PLUS] = ACTIONS(2621), - [anon_sym_STAR] = ACTIONS(2623), - [anon_sym_AMP_AMP] = ACTIONS(2623), - [anon_sym_AMP] = ACTIONS(2621), - [anon_sym_SEMI] = ACTIONS(2623), - [anon_sym_typedef] = ACTIONS(2621), - [anon_sym_extern] = ACTIONS(2621), - [anon_sym___attribute__] = ACTIONS(2621), - [anon_sym_COLON_COLON] = ACTIONS(2623), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2623), - [anon_sym___declspec] = ACTIONS(2621), - [anon_sym___based] = ACTIONS(2621), - [anon_sym___cdecl] = ACTIONS(2621), - [anon_sym___clrcall] = ACTIONS(2621), - [anon_sym___stdcall] = ACTIONS(2621), - [anon_sym___fastcall] = ACTIONS(2621), - [anon_sym___thiscall] = ACTIONS(2621), - [anon_sym___vectorcall] = ACTIONS(2621), - [anon_sym_LBRACE] = ACTIONS(2623), - [anon_sym_RBRACE] = ACTIONS(2623), - [anon_sym_LBRACK] = ACTIONS(2621), - [anon_sym_static] = ACTIONS(2621), - [anon_sym_register] = ACTIONS(2621), - [anon_sym_inline] = ACTIONS(2621), - [anon_sym_thread_local] = ACTIONS(2621), - [anon_sym_const] = ACTIONS(2621), - [anon_sym_volatile] = ACTIONS(2621), - [anon_sym_restrict] = ACTIONS(2621), - [anon_sym__Atomic] = ACTIONS(2621), - [anon_sym_mutable] = ACTIONS(2621), - [anon_sym_constexpr] = ACTIONS(2621), - [anon_sym_constinit] = ACTIONS(2621), - [anon_sym_consteval] = ACTIONS(2621), - [anon_sym_signed] = ACTIONS(2621), - [anon_sym_unsigned] = ACTIONS(2621), - [anon_sym_long] = ACTIONS(2621), - [anon_sym_short] = ACTIONS(2621), - [sym_primitive_type] = ACTIONS(2621), - [anon_sym_enum] = ACTIONS(2621), - [anon_sym_class] = ACTIONS(2621), - [anon_sym_struct] = ACTIONS(2621), - [anon_sym_union] = ACTIONS(2621), - [anon_sym_if] = ACTIONS(2621), - [anon_sym_switch] = ACTIONS(2621), - [anon_sym_case] = ACTIONS(2621), - [anon_sym_default] = ACTIONS(2621), - [anon_sym_while] = ACTIONS(2621), - [anon_sym_do] = ACTIONS(2621), - [anon_sym_for] = ACTIONS(2621), - [anon_sym_return] = ACTIONS(2621), - [anon_sym_break] = ACTIONS(2621), - [anon_sym_continue] = ACTIONS(2621), - [anon_sym_goto] = ACTIONS(2621), - [anon_sym_DASH_DASH] = ACTIONS(2623), - [anon_sym_PLUS_PLUS] = ACTIONS(2623), - [anon_sym_sizeof] = ACTIONS(2621), - [sym_number_literal] = ACTIONS(2623), - [anon_sym_L_SQUOTE] = ACTIONS(2623), - [anon_sym_u_SQUOTE] = ACTIONS(2623), - [anon_sym_U_SQUOTE] = ACTIONS(2623), - [anon_sym_u8_SQUOTE] = ACTIONS(2623), - [anon_sym_SQUOTE] = ACTIONS(2623), - [anon_sym_L_DQUOTE] = ACTIONS(2623), - [anon_sym_u_DQUOTE] = ACTIONS(2623), - [anon_sym_U_DQUOTE] = ACTIONS(2623), - [anon_sym_u8_DQUOTE] = ACTIONS(2623), - [anon_sym_DQUOTE] = ACTIONS(2623), - [sym_true] = ACTIONS(2621), - [sym_false] = ACTIONS(2621), - [sym_null] = ACTIONS(2621), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2621), - [anon_sym_decltype] = ACTIONS(2621), - [anon_sym_virtual] = ACTIONS(2621), - [anon_sym_explicit] = ACTIONS(2621), - [anon_sym_typename] = ACTIONS(2621), - [anon_sym_template] = ACTIONS(2621), - [anon_sym_operator] = ACTIONS(2621), - [anon_sym_try] = ACTIONS(2621), - [anon_sym_delete] = ACTIONS(2621), - [anon_sym_throw] = ACTIONS(2621), - [anon_sym_namespace] = ACTIONS(2621), - [anon_sym_using] = ACTIONS(2621), - [anon_sym_static_assert] = ACTIONS(2621), - [anon_sym_concept] = ACTIONS(2621), - [anon_sym_co_return] = ACTIONS(2621), - [anon_sym_co_yield] = ACTIONS(2621), - [anon_sym_co_await] = ACTIONS(2621), - [anon_sym_new] = ACTIONS(2621), - [anon_sym_requires] = ACTIONS(2621), - [sym_this] = ACTIONS(2621), - [sym_nullptr] = ACTIONS(2621), - [sym_raw_string_literal] = ACTIONS(2623), + [585] = { + [sym_identifier] = ACTIONS(2599), + [aux_sym_preproc_include_token1] = ACTIONS(2599), + [aux_sym_preproc_def_token1] = ACTIONS(2599), + [aux_sym_preproc_if_token1] = ACTIONS(2599), + [aux_sym_preproc_if_token2] = ACTIONS(2599), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2599), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2599), + [sym_preproc_directive] = ACTIONS(2599), + [anon_sym_LPAREN2] = ACTIONS(2601), + [anon_sym_BANG] = ACTIONS(2601), + [anon_sym_TILDE] = ACTIONS(2601), + [anon_sym_DASH] = ACTIONS(2599), + [anon_sym_PLUS] = ACTIONS(2599), + [anon_sym_STAR] = ACTIONS(2601), + [anon_sym_AMP_AMP] = ACTIONS(2601), + [anon_sym_AMP] = ACTIONS(2599), + [anon_sym_SEMI] = ACTIONS(2601), + [anon_sym_typedef] = ACTIONS(2599), + [anon_sym_extern] = ACTIONS(2599), + [anon_sym___attribute__] = ACTIONS(2599), + [anon_sym_COLON_COLON] = ACTIONS(2601), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2601), + [anon_sym___declspec] = ACTIONS(2599), + [anon_sym___based] = ACTIONS(2599), + [anon_sym___cdecl] = ACTIONS(2599), + [anon_sym___clrcall] = ACTIONS(2599), + [anon_sym___stdcall] = ACTIONS(2599), + [anon_sym___fastcall] = ACTIONS(2599), + [anon_sym___thiscall] = ACTIONS(2599), + [anon_sym___vectorcall] = ACTIONS(2599), + [anon_sym_LBRACE] = ACTIONS(2601), + [anon_sym_LBRACK] = ACTIONS(2599), + [anon_sym_static] = ACTIONS(2599), + [anon_sym_register] = ACTIONS(2599), + [anon_sym_inline] = ACTIONS(2599), + [anon_sym_thread_local] = ACTIONS(2599), + [anon_sym_const] = ACTIONS(2599), + [anon_sym_volatile] = ACTIONS(2599), + [anon_sym_restrict] = ACTIONS(2599), + [anon_sym__Atomic] = ACTIONS(2599), + [anon_sym_mutable] = ACTIONS(2599), + [anon_sym_constexpr] = ACTIONS(2599), + [anon_sym_constinit] = ACTIONS(2599), + [anon_sym_consteval] = ACTIONS(2599), + [anon_sym_signed] = ACTIONS(2599), + [anon_sym_unsigned] = ACTIONS(2599), + [anon_sym_long] = ACTIONS(2599), + [anon_sym_short] = ACTIONS(2599), + [sym_primitive_type] = ACTIONS(2599), + [anon_sym_enum] = ACTIONS(2599), + [anon_sym_class] = ACTIONS(2599), + [anon_sym_struct] = ACTIONS(2599), + [anon_sym_union] = ACTIONS(2599), + [anon_sym_if] = ACTIONS(2599), + [anon_sym_else] = ACTIONS(2599), + [anon_sym_switch] = ACTIONS(2599), + [anon_sym_case] = ACTIONS(2599), + [anon_sym_default] = ACTIONS(2599), + [anon_sym_while] = ACTIONS(2599), + [anon_sym_do] = ACTIONS(2599), + [anon_sym_for] = ACTIONS(2599), + [anon_sym_return] = ACTIONS(2599), + [anon_sym_break] = ACTIONS(2599), + [anon_sym_continue] = ACTIONS(2599), + [anon_sym_goto] = ACTIONS(2599), + [anon_sym_not] = ACTIONS(2599), + [anon_sym_compl] = ACTIONS(2599), + [anon_sym_DASH_DASH] = ACTIONS(2601), + [anon_sym_PLUS_PLUS] = ACTIONS(2601), + [anon_sym_sizeof] = ACTIONS(2599), + [sym_number_literal] = ACTIONS(2601), + [anon_sym_L_SQUOTE] = ACTIONS(2601), + [anon_sym_u_SQUOTE] = ACTIONS(2601), + [anon_sym_U_SQUOTE] = ACTIONS(2601), + [anon_sym_u8_SQUOTE] = ACTIONS(2601), + [anon_sym_SQUOTE] = ACTIONS(2601), + [anon_sym_L_DQUOTE] = ACTIONS(2601), + [anon_sym_u_DQUOTE] = ACTIONS(2601), + [anon_sym_U_DQUOTE] = ACTIONS(2601), + [anon_sym_u8_DQUOTE] = ACTIONS(2601), + [anon_sym_DQUOTE] = ACTIONS(2601), + [sym_true] = ACTIONS(2599), + [sym_false] = ACTIONS(2599), + [sym_null] = ACTIONS(2599), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2599), + [anon_sym_decltype] = ACTIONS(2599), + [anon_sym_virtual] = ACTIONS(2599), + [anon_sym_explicit] = ACTIONS(2599), + [anon_sym_typename] = ACTIONS(2599), + [anon_sym_template] = ACTIONS(2599), + [anon_sym_operator] = ACTIONS(2599), + [anon_sym_try] = ACTIONS(2599), + [anon_sym_delete] = ACTIONS(2599), + [anon_sym_throw] = ACTIONS(2599), + [anon_sym_namespace] = ACTIONS(2599), + [anon_sym_using] = ACTIONS(2599), + [anon_sym_static_assert] = ACTIONS(2599), + [anon_sym_concept] = ACTIONS(2599), + [anon_sym_co_return] = ACTIONS(2599), + [anon_sym_co_yield] = ACTIONS(2599), + [anon_sym_co_await] = ACTIONS(2599), + [anon_sym_new] = ACTIONS(2599), + [anon_sym_requires] = ACTIONS(2599), + [sym_this] = ACTIONS(2599), + [sym_nullptr] = ACTIONS(2599), + [sym_raw_string_literal] = ACTIONS(2601), }, - [936] = { - [ts_builtin_sym_end] = ACTIONS(2653), - [sym_identifier] = ACTIONS(2651), - [aux_sym_preproc_include_token1] = ACTIONS(2651), - [aux_sym_preproc_def_token1] = ACTIONS(2651), - [aux_sym_preproc_if_token1] = ACTIONS(2651), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2651), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2651), - [sym_preproc_directive] = ACTIONS(2651), - [anon_sym_LPAREN2] = ACTIONS(2653), - [anon_sym_BANG] = ACTIONS(2653), - [anon_sym_TILDE] = ACTIONS(2653), - [anon_sym_DASH] = ACTIONS(2651), - [anon_sym_PLUS] = ACTIONS(2651), - [anon_sym_STAR] = ACTIONS(2653), - [anon_sym_AMP_AMP] = ACTIONS(2653), - [anon_sym_AMP] = ACTIONS(2651), - [anon_sym_SEMI] = ACTIONS(2653), - [anon_sym_typedef] = ACTIONS(2651), - [anon_sym_extern] = ACTIONS(2651), - [anon_sym___attribute__] = ACTIONS(2651), - [anon_sym_COLON_COLON] = ACTIONS(2653), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2653), - [anon_sym___declspec] = ACTIONS(2651), - [anon_sym___based] = ACTIONS(2651), - [anon_sym___cdecl] = ACTIONS(2651), - [anon_sym___clrcall] = ACTIONS(2651), - [anon_sym___stdcall] = ACTIONS(2651), - [anon_sym___fastcall] = ACTIONS(2651), - [anon_sym___thiscall] = ACTIONS(2651), - [anon_sym___vectorcall] = ACTIONS(2651), - [anon_sym_LBRACE] = ACTIONS(2653), - [anon_sym_LBRACK] = ACTIONS(2651), - [anon_sym_static] = ACTIONS(2651), - [anon_sym_register] = ACTIONS(2651), - [anon_sym_inline] = ACTIONS(2651), - [anon_sym_thread_local] = ACTIONS(2651), - [anon_sym_const] = ACTIONS(2651), - [anon_sym_volatile] = ACTIONS(2651), - [anon_sym_restrict] = ACTIONS(2651), - [anon_sym__Atomic] = ACTIONS(2651), - [anon_sym_mutable] = ACTIONS(2651), - [anon_sym_constexpr] = ACTIONS(2651), - [anon_sym_constinit] = ACTIONS(2651), - [anon_sym_consteval] = ACTIONS(2651), - [anon_sym_signed] = ACTIONS(2651), - [anon_sym_unsigned] = ACTIONS(2651), - [anon_sym_long] = ACTIONS(2651), - [anon_sym_short] = ACTIONS(2651), - [sym_primitive_type] = ACTIONS(2651), - [anon_sym_enum] = ACTIONS(2651), - [anon_sym_class] = ACTIONS(2651), - [anon_sym_struct] = ACTIONS(2651), - [anon_sym_union] = ACTIONS(2651), - [anon_sym_if] = ACTIONS(2651), - [anon_sym_switch] = ACTIONS(2651), - [anon_sym_case] = ACTIONS(2651), - [anon_sym_default] = ACTIONS(2651), - [anon_sym_while] = ACTIONS(2651), - [anon_sym_do] = ACTIONS(2651), - [anon_sym_for] = ACTIONS(2651), - [anon_sym_return] = ACTIONS(2651), - [anon_sym_break] = ACTIONS(2651), - [anon_sym_continue] = ACTIONS(2651), - [anon_sym_goto] = ACTIONS(2651), - [anon_sym_DASH_DASH] = ACTIONS(2653), - [anon_sym_PLUS_PLUS] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(2651), - [sym_number_literal] = ACTIONS(2653), - [anon_sym_L_SQUOTE] = ACTIONS(2653), - [anon_sym_u_SQUOTE] = ACTIONS(2653), - [anon_sym_U_SQUOTE] = ACTIONS(2653), - [anon_sym_u8_SQUOTE] = ACTIONS(2653), - [anon_sym_SQUOTE] = ACTIONS(2653), - [anon_sym_L_DQUOTE] = ACTIONS(2653), - [anon_sym_u_DQUOTE] = ACTIONS(2653), - [anon_sym_U_DQUOTE] = ACTIONS(2653), - [anon_sym_u8_DQUOTE] = ACTIONS(2653), - [anon_sym_DQUOTE] = ACTIONS(2653), - [sym_true] = ACTIONS(2651), - [sym_false] = ACTIONS(2651), - [sym_null] = ACTIONS(2651), + [586] = { + [ts_builtin_sym_end] = ACTIONS(2597), + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2651), - [anon_sym_decltype] = ACTIONS(2651), - [anon_sym_virtual] = ACTIONS(2651), - [anon_sym_explicit] = ACTIONS(2651), - [anon_sym_typename] = ACTIONS(2651), - [anon_sym_template] = ACTIONS(2651), - [anon_sym_operator] = ACTIONS(2651), - [anon_sym_try] = ACTIONS(2651), - [anon_sym_delete] = ACTIONS(2651), - [anon_sym_throw] = ACTIONS(2651), - [anon_sym_namespace] = ACTIONS(2651), - [anon_sym_using] = ACTIONS(2651), - [anon_sym_static_assert] = ACTIONS(2651), - [anon_sym_concept] = ACTIONS(2651), - [anon_sym_co_return] = ACTIONS(2651), - [anon_sym_co_yield] = ACTIONS(2651), - [anon_sym_co_await] = ACTIONS(2651), - [anon_sym_new] = ACTIONS(2651), - [anon_sym_requires] = ACTIONS(2651), - [sym_this] = ACTIONS(2651), - [sym_nullptr] = ACTIONS(2651), - [sym_raw_string_literal] = ACTIONS(2653), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [937] = { - [ts_builtin_sym_end] = ACTIONS(2765), - [sym_identifier] = ACTIONS(2763), - [aux_sym_preproc_include_token1] = ACTIONS(2763), - [aux_sym_preproc_def_token1] = ACTIONS(2763), - [aux_sym_preproc_if_token1] = ACTIONS(2763), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2763), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2763), - [sym_preproc_directive] = ACTIONS(2763), - [anon_sym_LPAREN2] = ACTIONS(2765), - [anon_sym_BANG] = ACTIONS(2765), - [anon_sym_TILDE] = ACTIONS(2765), - [anon_sym_DASH] = ACTIONS(2763), - [anon_sym_PLUS] = ACTIONS(2763), - [anon_sym_STAR] = ACTIONS(2765), - [anon_sym_AMP_AMP] = ACTIONS(2765), - [anon_sym_AMP] = ACTIONS(2763), - [anon_sym_SEMI] = ACTIONS(2765), - [anon_sym_typedef] = ACTIONS(2763), - [anon_sym_extern] = ACTIONS(2763), - [anon_sym___attribute__] = ACTIONS(2763), - [anon_sym_COLON_COLON] = ACTIONS(2765), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2765), - [anon_sym___declspec] = ACTIONS(2763), - [anon_sym___based] = ACTIONS(2763), - [anon_sym___cdecl] = ACTIONS(2763), - [anon_sym___clrcall] = ACTIONS(2763), - [anon_sym___stdcall] = ACTIONS(2763), - [anon_sym___fastcall] = ACTIONS(2763), - [anon_sym___thiscall] = ACTIONS(2763), - [anon_sym___vectorcall] = ACTIONS(2763), - [anon_sym_LBRACE] = ACTIONS(2765), - [anon_sym_LBRACK] = ACTIONS(2763), - [anon_sym_static] = ACTIONS(2763), - [anon_sym_register] = ACTIONS(2763), - [anon_sym_inline] = ACTIONS(2763), - [anon_sym_thread_local] = ACTIONS(2763), - [anon_sym_const] = ACTIONS(2763), - [anon_sym_volatile] = ACTIONS(2763), - [anon_sym_restrict] = ACTIONS(2763), - [anon_sym__Atomic] = ACTIONS(2763), - [anon_sym_mutable] = ACTIONS(2763), - [anon_sym_constexpr] = ACTIONS(2763), - [anon_sym_constinit] = ACTIONS(2763), - [anon_sym_consteval] = ACTIONS(2763), - [anon_sym_signed] = ACTIONS(2763), - [anon_sym_unsigned] = ACTIONS(2763), - [anon_sym_long] = ACTIONS(2763), - [anon_sym_short] = ACTIONS(2763), - [sym_primitive_type] = ACTIONS(2763), - [anon_sym_enum] = ACTIONS(2763), - [anon_sym_class] = ACTIONS(2763), - [anon_sym_struct] = ACTIONS(2763), - [anon_sym_union] = ACTIONS(2763), - [anon_sym_if] = ACTIONS(2763), - [anon_sym_switch] = ACTIONS(2763), - [anon_sym_case] = ACTIONS(2763), - [anon_sym_default] = ACTIONS(2763), - [anon_sym_while] = ACTIONS(2763), - [anon_sym_do] = ACTIONS(2763), - [anon_sym_for] = ACTIONS(2763), - [anon_sym_return] = ACTIONS(2763), - [anon_sym_break] = ACTIONS(2763), - [anon_sym_continue] = ACTIONS(2763), - [anon_sym_goto] = ACTIONS(2763), - [anon_sym_DASH_DASH] = ACTIONS(2765), - [anon_sym_PLUS_PLUS] = ACTIONS(2765), - [anon_sym_sizeof] = ACTIONS(2763), - [sym_number_literal] = ACTIONS(2765), - [anon_sym_L_SQUOTE] = ACTIONS(2765), - [anon_sym_u_SQUOTE] = ACTIONS(2765), - [anon_sym_U_SQUOTE] = ACTIONS(2765), - [anon_sym_u8_SQUOTE] = ACTIONS(2765), - [anon_sym_SQUOTE] = ACTIONS(2765), - [anon_sym_L_DQUOTE] = ACTIONS(2765), - [anon_sym_u_DQUOTE] = ACTIONS(2765), - [anon_sym_U_DQUOTE] = ACTIONS(2765), - [anon_sym_u8_DQUOTE] = ACTIONS(2765), - [anon_sym_DQUOTE] = ACTIONS(2765), - [sym_true] = ACTIONS(2763), - [sym_false] = ACTIONS(2763), - [sym_null] = ACTIONS(2763), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2763), - [anon_sym_decltype] = ACTIONS(2763), - [anon_sym_virtual] = ACTIONS(2763), - [anon_sym_explicit] = ACTIONS(2763), - [anon_sym_typename] = ACTIONS(2763), - [anon_sym_template] = ACTIONS(2763), - [anon_sym_operator] = ACTIONS(2763), - [anon_sym_try] = ACTIONS(2763), - [anon_sym_delete] = ACTIONS(2763), - [anon_sym_throw] = ACTIONS(2763), - [anon_sym_namespace] = ACTIONS(2763), - [anon_sym_using] = ACTIONS(2763), - [anon_sym_static_assert] = ACTIONS(2763), - [anon_sym_concept] = ACTIONS(2763), - [anon_sym_co_return] = ACTIONS(2763), - [anon_sym_co_yield] = ACTIONS(2763), - [anon_sym_co_await] = ACTIONS(2763), - [anon_sym_new] = ACTIONS(2763), - [anon_sym_requires] = ACTIONS(2763), - [sym_this] = ACTIONS(2763), - [sym_nullptr] = ACTIONS(2763), - [sym_raw_string_literal] = ACTIONS(2765), - }, - [938] = { - [sym_identifier] = ACTIONS(2725), - [aux_sym_preproc_include_token1] = ACTIONS(2725), - [aux_sym_preproc_def_token1] = ACTIONS(2725), - [aux_sym_preproc_if_token1] = ACTIONS(2725), - [aux_sym_preproc_if_token2] = ACTIONS(2725), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2725), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2725), - [sym_preproc_directive] = ACTIONS(2725), - [anon_sym_LPAREN2] = ACTIONS(2727), - [anon_sym_BANG] = ACTIONS(2727), - [anon_sym_TILDE] = ACTIONS(2727), - [anon_sym_DASH] = ACTIONS(2725), - [anon_sym_PLUS] = ACTIONS(2725), - [anon_sym_STAR] = ACTIONS(2727), - [anon_sym_AMP_AMP] = ACTIONS(2727), - [anon_sym_AMP] = ACTIONS(2725), - [anon_sym_SEMI] = ACTIONS(2727), - [anon_sym_typedef] = ACTIONS(2725), - [anon_sym_extern] = ACTIONS(2725), - [anon_sym___attribute__] = ACTIONS(2725), - [anon_sym_COLON_COLON] = ACTIONS(2727), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2727), - [anon_sym___declspec] = ACTIONS(2725), - [anon_sym___based] = ACTIONS(2725), - [anon_sym___cdecl] = ACTIONS(2725), - [anon_sym___clrcall] = ACTIONS(2725), - [anon_sym___stdcall] = ACTIONS(2725), - [anon_sym___fastcall] = ACTIONS(2725), - [anon_sym___thiscall] = ACTIONS(2725), - [anon_sym___vectorcall] = ACTIONS(2725), - [anon_sym_LBRACE] = ACTIONS(2727), - [anon_sym_LBRACK] = ACTIONS(2725), - [anon_sym_static] = ACTIONS(2725), - [anon_sym_register] = ACTIONS(2725), - [anon_sym_inline] = ACTIONS(2725), - [anon_sym_thread_local] = ACTIONS(2725), - [anon_sym_const] = ACTIONS(2725), - [anon_sym_volatile] = ACTIONS(2725), - [anon_sym_restrict] = ACTIONS(2725), - [anon_sym__Atomic] = ACTIONS(2725), - [anon_sym_mutable] = ACTIONS(2725), - [anon_sym_constexpr] = ACTIONS(2725), - [anon_sym_constinit] = ACTIONS(2725), - [anon_sym_consteval] = ACTIONS(2725), - [anon_sym_signed] = ACTIONS(2725), - [anon_sym_unsigned] = ACTIONS(2725), - [anon_sym_long] = ACTIONS(2725), - [anon_sym_short] = ACTIONS(2725), - [sym_primitive_type] = ACTIONS(2725), - [anon_sym_enum] = ACTIONS(2725), - [anon_sym_class] = ACTIONS(2725), - [anon_sym_struct] = ACTIONS(2725), - [anon_sym_union] = ACTIONS(2725), - [anon_sym_if] = ACTIONS(2725), - [anon_sym_switch] = ACTIONS(2725), - [anon_sym_case] = ACTIONS(2725), - [anon_sym_default] = ACTIONS(2725), - [anon_sym_while] = ACTIONS(2725), - [anon_sym_do] = ACTIONS(2725), - [anon_sym_for] = ACTIONS(2725), - [anon_sym_return] = ACTIONS(2725), - [anon_sym_break] = ACTIONS(2725), - [anon_sym_continue] = ACTIONS(2725), - [anon_sym_goto] = ACTIONS(2725), - [anon_sym_DASH_DASH] = ACTIONS(2727), - [anon_sym_PLUS_PLUS] = ACTIONS(2727), - [anon_sym_sizeof] = ACTIONS(2725), - [sym_number_literal] = ACTIONS(2727), - [anon_sym_L_SQUOTE] = ACTIONS(2727), - [anon_sym_u_SQUOTE] = ACTIONS(2727), - [anon_sym_U_SQUOTE] = ACTIONS(2727), - [anon_sym_u8_SQUOTE] = ACTIONS(2727), - [anon_sym_SQUOTE] = ACTIONS(2727), - [anon_sym_L_DQUOTE] = ACTIONS(2727), - [anon_sym_u_DQUOTE] = ACTIONS(2727), - [anon_sym_U_DQUOTE] = ACTIONS(2727), - [anon_sym_u8_DQUOTE] = ACTIONS(2727), - [anon_sym_DQUOTE] = ACTIONS(2727), - [sym_true] = ACTIONS(2725), - [sym_false] = ACTIONS(2725), - [sym_null] = ACTIONS(2725), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2725), - [anon_sym_decltype] = ACTIONS(2725), - [anon_sym_virtual] = ACTIONS(2725), - [anon_sym_explicit] = ACTIONS(2725), - [anon_sym_typename] = ACTIONS(2725), - [anon_sym_template] = ACTIONS(2725), - [anon_sym_operator] = ACTIONS(2725), - [anon_sym_try] = ACTIONS(2725), - [anon_sym_delete] = ACTIONS(2725), - [anon_sym_throw] = ACTIONS(2725), - [anon_sym_namespace] = ACTIONS(2725), - [anon_sym_using] = ACTIONS(2725), - [anon_sym_static_assert] = ACTIONS(2725), - [anon_sym_concept] = ACTIONS(2725), - [anon_sym_co_return] = ACTIONS(2725), - [anon_sym_co_yield] = ACTIONS(2725), - [anon_sym_co_await] = ACTIONS(2725), - [anon_sym_new] = ACTIONS(2725), - [anon_sym_requires] = ACTIONS(2725), - [sym_this] = ACTIONS(2725), - [sym_nullptr] = ACTIONS(2725), - [sym_raw_string_literal] = ACTIONS(2727), - }, - [939] = { - [sym_identifier] = ACTIONS(2587), - [aux_sym_preproc_include_token1] = ACTIONS(2587), - [aux_sym_preproc_def_token1] = ACTIONS(2587), - [aux_sym_preproc_if_token1] = ACTIONS(2587), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2587), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2587), - [sym_preproc_directive] = ACTIONS(2587), - [anon_sym_LPAREN2] = ACTIONS(2589), - [anon_sym_BANG] = ACTIONS(2589), - [anon_sym_TILDE] = ACTIONS(2589), - [anon_sym_DASH] = ACTIONS(2587), - [anon_sym_PLUS] = ACTIONS(2587), - [anon_sym_STAR] = ACTIONS(2589), - [anon_sym_AMP_AMP] = ACTIONS(2589), - [anon_sym_AMP] = ACTIONS(2587), - [anon_sym_SEMI] = ACTIONS(2589), - [anon_sym_typedef] = ACTIONS(2587), - [anon_sym_extern] = ACTIONS(2587), - [anon_sym___attribute__] = ACTIONS(2587), - [anon_sym_COLON_COLON] = ACTIONS(2589), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2589), - [anon_sym___declspec] = ACTIONS(2587), - [anon_sym___based] = ACTIONS(2587), - [anon_sym___cdecl] = ACTIONS(2587), - [anon_sym___clrcall] = ACTIONS(2587), - [anon_sym___stdcall] = ACTIONS(2587), - [anon_sym___fastcall] = ACTIONS(2587), - [anon_sym___thiscall] = ACTIONS(2587), - [anon_sym___vectorcall] = ACTIONS(2587), - [anon_sym_LBRACE] = ACTIONS(2589), - [anon_sym_RBRACE] = ACTIONS(2589), - [anon_sym_LBRACK] = ACTIONS(2587), - [anon_sym_static] = ACTIONS(2587), - [anon_sym_register] = ACTIONS(2587), - [anon_sym_inline] = ACTIONS(2587), - [anon_sym_thread_local] = ACTIONS(2587), - [anon_sym_const] = ACTIONS(2587), - [anon_sym_volatile] = ACTIONS(2587), - [anon_sym_restrict] = ACTIONS(2587), - [anon_sym__Atomic] = ACTIONS(2587), - [anon_sym_mutable] = ACTIONS(2587), - [anon_sym_constexpr] = ACTIONS(2587), - [anon_sym_constinit] = ACTIONS(2587), - [anon_sym_consteval] = ACTIONS(2587), - [anon_sym_signed] = ACTIONS(2587), - [anon_sym_unsigned] = ACTIONS(2587), - [anon_sym_long] = ACTIONS(2587), - [anon_sym_short] = ACTIONS(2587), - [sym_primitive_type] = ACTIONS(2587), - [anon_sym_enum] = ACTIONS(2587), - [anon_sym_class] = ACTIONS(2587), - [anon_sym_struct] = ACTIONS(2587), - [anon_sym_union] = ACTIONS(2587), - [anon_sym_if] = ACTIONS(2587), - [anon_sym_switch] = ACTIONS(2587), - [anon_sym_case] = ACTIONS(2587), - [anon_sym_default] = ACTIONS(2587), - [anon_sym_while] = ACTIONS(2587), - [anon_sym_do] = ACTIONS(2587), - [anon_sym_for] = ACTIONS(2587), - [anon_sym_return] = ACTIONS(2587), - [anon_sym_break] = ACTIONS(2587), - [anon_sym_continue] = ACTIONS(2587), - [anon_sym_goto] = ACTIONS(2587), - [anon_sym_DASH_DASH] = ACTIONS(2589), - [anon_sym_PLUS_PLUS] = ACTIONS(2589), - [anon_sym_sizeof] = ACTIONS(2587), - [sym_number_literal] = ACTIONS(2589), - [anon_sym_L_SQUOTE] = ACTIONS(2589), - [anon_sym_u_SQUOTE] = ACTIONS(2589), - [anon_sym_U_SQUOTE] = ACTIONS(2589), - [anon_sym_u8_SQUOTE] = ACTIONS(2589), - [anon_sym_SQUOTE] = ACTIONS(2589), - [anon_sym_L_DQUOTE] = ACTIONS(2589), - [anon_sym_u_DQUOTE] = ACTIONS(2589), - [anon_sym_U_DQUOTE] = ACTIONS(2589), - [anon_sym_u8_DQUOTE] = ACTIONS(2589), - [anon_sym_DQUOTE] = ACTIONS(2589), - [sym_true] = ACTIONS(2587), - [sym_false] = ACTIONS(2587), - [sym_null] = ACTIONS(2587), + [587] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token2] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2587), - [anon_sym_decltype] = ACTIONS(2587), - [anon_sym_virtual] = ACTIONS(2587), - [anon_sym_explicit] = ACTIONS(2587), - [anon_sym_typename] = ACTIONS(2587), - [anon_sym_template] = ACTIONS(2587), - [anon_sym_operator] = ACTIONS(2587), - [anon_sym_try] = ACTIONS(2587), - [anon_sym_delete] = ACTIONS(2587), - [anon_sym_throw] = ACTIONS(2587), - [anon_sym_namespace] = ACTIONS(2587), - [anon_sym_using] = ACTIONS(2587), - [anon_sym_static_assert] = ACTIONS(2587), - [anon_sym_concept] = ACTIONS(2587), - [anon_sym_co_return] = ACTIONS(2587), - [anon_sym_co_yield] = ACTIONS(2587), - [anon_sym_co_await] = ACTIONS(2587), - [anon_sym_new] = ACTIONS(2587), - [anon_sym_requires] = ACTIONS(2587), - [sym_this] = ACTIONS(2587), - [sym_nullptr] = ACTIONS(2587), - [sym_raw_string_literal] = ACTIONS(2589), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [940] = { - [sym_identifier] = ACTIONS(2753), - [aux_sym_preproc_include_token1] = ACTIONS(2753), - [aux_sym_preproc_def_token1] = ACTIONS(2753), - [aux_sym_preproc_if_token1] = ACTIONS(2753), - [aux_sym_preproc_if_token2] = ACTIONS(2753), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2753), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2753), - [sym_preproc_directive] = ACTIONS(2753), - [anon_sym_LPAREN2] = ACTIONS(2755), - [anon_sym_BANG] = ACTIONS(2755), - [anon_sym_TILDE] = ACTIONS(2755), - [anon_sym_DASH] = ACTIONS(2753), - [anon_sym_PLUS] = ACTIONS(2753), - [anon_sym_STAR] = ACTIONS(2755), - [anon_sym_AMP_AMP] = ACTIONS(2755), - [anon_sym_AMP] = ACTIONS(2753), - [anon_sym_SEMI] = ACTIONS(2755), - [anon_sym_typedef] = ACTIONS(2753), - [anon_sym_extern] = ACTIONS(2753), - [anon_sym___attribute__] = ACTIONS(2753), - [anon_sym_COLON_COLON] = ACTIONS(2755), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2755), - [anon_sym___declspec] = ACTIONS(2753), - [anon_sym___based] = ACTIONS(2753), - [anon_sym___cdecl] = ACTIONS(2753), - [anon_sym___clrcall] = ACTIONS(2753), - [anon_sym___stdcall] = ACTIONS(2753), - [anon_sym___fastcall] = ACTIONS(2753), - [anon_sym___thiscall] = ACTIONS(2753), - [anon_sym___vectorcall] = ACTIONS(2753), - [anon_sym_LBRACE] = ACTIONS(2755), - [anon_sym_LBRACK] = ACTIONS(2753), - [anon_sym_static] = ACTIONS(2753), - [anon_sym_register] = ACTIONS(2753), - [anon_sym_inline] = ACTIONS(2753), - [anon_sym_thread_local] = ACTIONS(2753), - [anon_sym_const] = ACTIONS(2753), - [anon_sym_volatile] = ACTIONS(2753), - [anon_sym_restrict] = ACTIONS(2753), - [anon_sym__Atomic] = ACTIONS(2753), - [anon_sym_mutable] = ACTIONS(2753), - [anon_sym_constexpr] = ACTIONS(2753), - [anon_sym_constinit] = ACTIONS(2753), - [anon_sym_consteval] = ACTIONS(2753), - [anon_sym_signed] = ACTIONS(2753), - [anon_sym_unsigned] = ACTIONS(2753), - [anon_sym_long] = ACTIONS(2753), - [anon_sym_short] = ACTIONS(2753), - [sym_primitive_type] = ACTIONS(2753), - [anon_sym_enum] = ACTIONS(2753), - [anon_sym_class] = ACTIONS(2753), - [anon_sym_struct] = ACTIONS(2753), - [anon_sym_union] = ACTIONS(2753), - [anon_sym_if] = ACTIONS(2753), - [anon_sym_switch] = ACTIONS(2753), - [anon_sym_case] = ACTIONS(2753), - [anon_sym_default] = ACTIONS(2753), - [anon_sym_while] = ACTIONS(2753), - [anon_sym_do] = ACTIONS(2753), - [anon_sym_for] = ACTIONS(2753), - [anon_sym_return] = ACTIONS(2753), - [anon_sym_break] = ACTIONS(2753), - [anon_sym_continue] = ACTIONS(2753), - [anon_sym_goto] = ACTIONS(2753), - [anon_sym_DASH_DASH] = ACTIONS(2755), - [anon_sym_PLUS_PLUS] = ACTIONS(2755), - [anon_sym_sizeof] = ACTIONS(2753), - [sym_number_literal] = ACTIONS(2755), - [anon_sym_L_SQUOTE] = ACTIONS(2755), - [anon_sym_u_SQUOTE] = ACTIONS(2755), - [anon_sym_U_SQUOTE] = ACTIONS(2755), - [anon_sym_u8_SQUOTE] = ACTIONS(2755), - [anon_sym_SQUOTE] = ACTIONS(2755), - [anon_sym_L_DQUOTE] = ACTIONS(2755), - [anon_sym_u_DQUOTE] = ACTIONS(2755), - [anon_sym_U_DQUOTE] = ACTIONS(2755), - [anon_sym_u8_DQUOTE] = ACTIONS(2755), - [anon_sym_DQUOTE] = ACTIONS(2755), - [sym_true] = ACTIONS(2753), - [sym_false] = ACTIONS(2753), - [sym_null] = ACTIONS(2753), + [588] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token2] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2753), - [anon_sym_decltype] = ACTIONS(2753), - [anon_sym_virtual] = ACTIONS(2753), - [anon_sym_explicit] = ACTIONS(2753), - [anon_sym_typename] = ACTIONS(2753), - [anon_sym_template] = ACTIONS(2753), - [anon_sym_operator] = ACTIONS(2753), - [anon_sym_try] = ACTIONS(2753), - [anon_sym_delete] = ACTIONS(2753), - [anon_sym_throw] = ACTIONS(2753), - [anon_sym_namespace] = ACTIONS(2753), - [anon_sym_using] = ACTIONS(2753), - [anon_sym_static_assert] = ACTIONS(2753), - [anon_sym_concept] = ACTIONS(2753), - [anon_sym_co_return] = ACTIONS(2753), - [anon_sym_co_yield] = ACTIONS(2753), - [anon_sym_co_await] = ACTIONS(2753), - [anon_sym_new] = ACTIONS(2753), - [anon_sym_requires] = ACTIONS(2753), - [sym_this] = ACTIONS(2753), - [sym_nullptr] = ACTIONS(2753), - [sym_raw_string_literal] = ACTIONS(2755), - }, - [941] = { - [sym_identifier] = ACTIONS(2725), - [aux_sym_preproc_include_token1] = ACTIONS(2725), - [aux_sym_preproc_def_token1] = ACTIONS(2725), - [aux_sym_preproc_if_token1] = ACTIONS(2725), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2725), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2725), - [sym_preproc_directive] = ACTIONS(2725), - [anon_sym_LPAREN2] = ACTIONS(2727), - [anon_sym_BANG] = ACTIONS(2727), - [anon_sym_TILDE] = ACTIONS(2727), - [anon_sym_DASH] = ACTIONS(2725), - [anon_sym_PLUS] = ACTIONS(2725), - [anon_sym_STAR] = ACTIONS(2727), - [anon_sym_AMP_AMP] = ACTIONS(2727), - [anon_sym_AMP] = ACTIONS(2725), - [anon_sym_SEMI] = ACTIONS(2727), - [anon_sym_typedef] = ACTIONS(2725), - [anon_sym_extern] = ACTIONS(2725), - [anon_sym___attribute__] = ACTIONS(2725), - [anon_sym_COLON_COLON] = ACTIONS(2727), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2727), - [anon_sym___declspec] = ACTIONS(2725), - [anon_sym___based] = ACTIONS(2725), - [anon_sym___cdecl] = ACTIONS(2725), - [anon_sym___clrcall] = ACTIONS(2725), - [anon_sym___stdcall] = ACTIONS(2725), - [anon_sym___fastcall] = ACTIONS(2725), - [anon_sym___thiscall] = ACTIONS(2725), - [anon_sym___vectorcall] = ACTIONS(2725), - [anon_sym_LBRACE] = ACTIONS(2727), - [anon_sym_RBRACE] = ACTIONS(2727), - [anon_sym_LBRACK] = ACTIONS(2725), - [anon_sym_static] = ACTIONS(2725), - [anon_sym_register] = ACTIONS(2725), - [anon_sym_inline] = ACTIONS(2725), - [anon_sym_thread_local] = ACTIONS(2725), - [anon_sym_const] = ACTIONS(2725), - [anon_sym_volatile] = ACTIONS(2725), - [anon_sym_restrict] = ACTIONS(2725), - [anon_sym__Atomic] = ACTIONS(2725), - [anon_sym_mutable] = ACTIONS(2725), - [anon_sym_constexpr] = ACTIONS(2725), - [anon_sym_constinit] = ACTIONS(2725), - [anon_sym_consteval] = ACTIONS(2725), - [anon_sym_signed] = ACTIONS(2725), - [anon_sym_unsigned] = ACTIONS(2725), - [anon_sym_long] = ACTIONS(2725), - [anon_sym_short] = ACTIONS(2725), - [sym_primitive_type] = ACTIONS(2725), - [anon_sym_enum] = ACTIONS(2725), - [anon_sym_class] = ACTIONS(2725), - [anon_sym_struct] = ACTIONS(2725), - [anon_sym_union] = ACTIONS(2725), - [anon_sym_if] = ACTIONS(2725), - [anon_sym_switch] = ACTIONS(2725), - [anon_sym_case] = ACTIONS(2725), - [anon_sym_default] = ACTIONS(2725), - [anon_sym_while] = ACTIONS(2725), - [anon_sym_do] = ACTIONS(2725), - [anon_sym_for] = ACTIONS(2725), - [anon_sym_return] = ACTIONS(2725), - [anon_sym_break] = ACTIONS(2725), - [anon_sym_continue] = ACTIONS(2725), - [anon_sym_goto] = ACTIONS(2725), - [anon_sym_DASH_DASH] = ACTIONS(2727), - [anon_sym_PLUS_PLUS] = ACTIONS(2727), - [anon_sym_sizeof] = ACTIONS(2725), - [sym_number_literal] = ACTIONS(2727), - [anon_sym_L_SQUOTE] = ACTIONS(2727), - [anon_sym_u_SQUOTE] = ACTIONS(2727), - [anon_sym_U_SQUOTE] = ACTIONS(2727), - [anon_sym_u8_SQUOTE] = ACTIONS(2727), - [anon_sym_SQUOTE] = ACTIONS(2727), - [anon_sym_L_DQUOTE] = ACTIONS(2727), - [anon_sym_u_DQUOTE] = ACTIONS(2727), - [anon_sym_U_DQUOTE] = ACTIONS(2727), - [anon_sym_u8_DQUOTE] = ACTIONS(2727), - [anon_sym_DQUOTE] = ACTIONS(2727), - [sym_true] = ACTIONS(2725), - [sym_false] = ACTIONS(2725), - [sym_null] = ACTIONS(2725), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2725), - [anon_sym_decltype] = ACTIONS(2725), - [anon_sym_virtual] = ACTIONS(2725), - [anon_sym_explicit] = ACTIONS(2725), - [anon_sym_typename] = ACTIONS(2725), - [anon_sym_template] = ACTIONS(2725), - [anon_sym_operator] = ACTIONS(2725), - [anon_sym_try] = ACTIONS(2725), - [anon_sym_delete] = ACTIONS(2725), - [anon_sym_throw] = ACTIONS(2725), - [anon_sym_namespace] = ACTIONS(2725), - [anon_sym_using] = ACTIONS(2725), - [anon_sym_static_assert] = ACTIONS(2725), - [anon_sym_concept] = ACTIONS(2725), - [anon_sym_co_return] = ACTIONS(2725), - [anon_sym_co_yield] = ACTIONS(2725), - [anon_sym_co_await] = ACTIONS(2725), - [anon_sym_new] = ACTIONS(2725), - [anon_sym_requires] = ACTIONS(2725), - [sym_this] = ACTIONS(2725), - [sym_nullptr] = ACTIONS(2725), - [sym_raw_string_literal] = ACTIONS(2727), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [942] = { - [sym_identifier] = ACTIONS(2801), - [aux_sym_preproc_include_token1] = ACTIONS(2801), - [aux_sym_preproc_def_token1] = ACTIONS(2801), - [aux_sym_preproc_if_token1] = ACTIONS(2801), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2801), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2801), - [sym_preproc_directive] = ACTIONS(2801), - [anon_sym_LPAREN2] = ACTIONS(2803), - [anon_sym_BANG] = ACTIONS(2803), - [anon_sym_TILDE] = ACTIONS(2803), - [anon_sym_DASH] = ACTIONS(2801), - [anon_sym_PLUS] = ACTIONS(2801), - [anon_sym_STAR] = ACTIONS(2803), - [anon_sym_AMP_AMP] = ACTIONS(2803), - [anon_sym_AMP] = ACTIONS(2801), - [anon_sym_SEMI] = ACTIONS(2803), - [anon_sym_typedef] = ACTIONS(2801), - [anon_sym_extern] = ACTIONS(2801), - [anon_sym___attribute__] = ACTIONS(2801), - [anon_sym_COLON_COLON] = ACTIONS(2803), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2803), - [anon_sym___declspec] = ACTIONS(2801), - [anon_sym___based] = ACTIONS(2801), - [anon_sym___cdecl] = ACTIONS(2801), - [anon_sym___clrcall] = ACTIONS(2801), - [anon_sym___stdcall] = ACTIONS(2801), - [anon_sym___fastcall] = ACTIONS(2801), - [anon_sym___thiscall] = ACTIONS(2801), - [anon_sym___vectorcall] = ACTIONS(2801), - [anon_sym_LBRACE] = ACTIONS(2803), - [anon_sym_RBRACE] = ACTIONS(2803), - [anon_sym_LBRACK] = ACTIONS(2801), - [anon_sym_static] = ACTIONS(2801), - [anon_sym_register] = ACTIONS(2801), - [anon_sym_inline] = ACTIONS(2801), - [anon_sym_thread_local] = ACTIONS(2801), - [anon_sym_const] = ACTIONS(2801), - [anon_sym_volatile] = ACTIONS(2801), - [anon_sym_restrict] = ACTIONS(2801), - [anon_sym__Atomic] = ACTIONS(2801), - [anon_sym_mutable] = ACTIONS(2801), - [anon_sym_constexpr] = ACTIONS(2801), - [anon_sym_constinit] = ACTIONS(2801), - [anon_sym_consteval] = ACTIONS(2801), - [anon_sym_signed] = ACTIONS(2801), - [anon_sym_unsigned] = ACTIONS(2801), - [anon_sym_long] = ACTIONS(2801), - [anon_sym_short] = ACTIONS(2801), - [sym_primitive_type] = ACTIONS(2801), - [anon_sym_enum] = ACTIONS(2801), - [anon_sym_class] = ACTIONS(2801), - [anon_sym_struct] = ACTIONS(2801), - [anon_sym_union] = ACTIONS(2801), - [anon_sym_if] = ACTIONS(2801), - [anon_sym_switch] = ACTIONS(2801), - [anon_sym_case] = ACTIONS(2801), - [anon_sym_default] = ACTIONS(2801), - [anon_sym_while] = ACTIONS(2801), - [anon_sym_do] = ACTIONS(2801), - [anon_sym_for] = ACTIONS(2801), - [anon_sym_return] = ACTIONS(2801), - [anon_sym_break] = ACTIONS(2801), - [anon_sym_continue] = ACTIONS(2801), - [anon_sym_goto] = ACTIONS(2801), - [anon_sym_DASH_DASH] = ACTIONS(2803), - [anon_sym_PLUS_PLUS] = ACTIONS(2803), - [anon_sym_sizeof] = ACTIONS(2801), - [sym_number_literal] = ACTIONS(2803), - [anon_sym_L_SQUOTE] = ACTIONS(2803), - [anon_sym_u_SQUOTE] = ACTIONS(2803), - [anon_sym_U_SQUOTE] = ACTIONS(2803), - [anon_sym_u8_SQUOTE] = ACTIONS(2803), - [anon_sym_SQUOTE] = ACTIONS(2803), - [anon_sym_L_DQUOTE] = ACTIONS(2803), - [anon_sym_u_DQUOTE] = ACTIONS(2803), - [anon_sym_U_DQUOTE] = ACTIONS(2803), - [anon_sym_u8_DQUOTE] = ACTIONS(2803), - [anon_sym_DQUOTE] = ACTIONS(2803), - [sym_true] = ACTIONS(2801), - [sym_false] = ACTIONS(2801), - [sym_null] = ACTIONS(2801), + [589] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token2] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2801), - [anon_sym_decltype] = ACTIONS(2801), - [anon_sym_virtual] = ACTIONS(2801), - [anon_sym_explicit] = ACTIONS(2801), - [anon_sym_typename] = ACTIONS(2801), - [anon_sym_template] = ACTIONS(2801), - [anon_sym_operator] = ACTIONS(2801), - [anon_sym_try] = ACTIONS(2801), - [anon_sym_delete] = ACTIONS(2801), - [anon_sym_throw] = ACTIONS(2801), - [anon_sym_namespace] = ACTIONS(2801), - [anon_sym_using] = ACTIONS(2801), - [anon_sym_static_assert] = ACTIONS(2801), - [anon_sym_concept] = ACTIONS(2801), - [anon_sym_co_return] = ACTIONS(2801), - [anon_sym_co_yield] = ACTIONS(2801), - [anon_sym_co_await] = ACTIONS(2801), - [anon_sym_new] = ACTIONS(2801), - [anon_sym_requires] = ACTIONS(2801), - [sym_this] = ACTIONS(2801), - [sym_nullptr] = ACTIONS(2801), - [sym_raw_string_literal] = ACTIONS(2803), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [943] = { - [sym_identifier] = ACTIONS(2681), - [aux_sym_preproc_include_token1] = ACTIONS(2681), - [aux_sym_preproc_def_token1] = ACTIONS(2681), - [aux_sym_preproc_if_token1] = ACTIONS(2681), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2681), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2681), - [sym_preproc_directive] = ACTIONS(2681), - [anon_sym_LPAREN2] = ACTIONS(2683), - [anon_sym_BANG] = ACTIONS(2683), - [anon_sym_TILDE] = ACTIONS(2683), - [anon_sym_DASH] = ACTIONS(2681), - [anon_sym_PLUS] = ACTIONS(2681), - [anon_sym_STAR] = ACTIONS(2683), - [anon_sym_AMP_AMP] = ACTIONS(2683), - [anon_sym_AMP] = ACTIONS(2681), - [anon_sym_SEMI] = ACTIONS(2683), - [anon_sym_typedef] = ACTIONS(2681), - [anon_sym_extern] = ACTIONS(2681), - [anon_sym___attribute__] = ACTIONS(2681), - [anon_sym_COLON_COLON] = ACTIONS(2683), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2683), - [anon_sym___declspec] = ACTIONS(2681), - [anon_sym___based] = ACTIONS(2681), - [anon_sym___cdecl] = ACTIONS(2681), - [anon_sym___clrcall] = ACTIONS(2681), - [anon_sym___stdcall] = ACTIONS(2681), - [anon_sym___fastcall] = ACTIONS(2681), - [anon_sym___thiscall] = ACTIONS(2681), - [anon_sym___vectorcall] = ACTIONS(2681), - [anon_sym_LBRACE] = ACTIONS(2683), - [anon_sym_RBRACE] = ACTIONS(2683), - [anon_sym_LBRACK] = ACTIONS(2681), - [anon_sym_static] = ACTIONS(2681), - [anon_sym_register] = ACTIONS(2681), - [anon_sym_inline] = ACTIONS(2681), - [anon_sym_thread_local] = ACTIONS(2681), - [anon_sym_const] = ACTIONS(2681), - [anon_sym_volatile] = ACTIONS(2681), - [anon_sym_restrict] = ACTIONS(2681), - [anon_sym__Atomic] = ACTIONS(2681), - [anon_sym_mutable] = ACTIONS(2681), - [anon_sym_constexpr] = ACTIONS(2681), - [anon_sym_constinit] = ACTIONS(2681), - [anon_sym_consteval] = ACTIONS(2681), - [anon_sym_signed] = ACTIONS(2681), - [anon_sym_unsigned] = ACTIONS(2681), - [anon_sym_long] = ACTIONS(2681), - [anon_sym_short] = ACTIONS(2681), - [sym_primitive_type] = ACTIONS(2681), - [anon_sym_enum] = ACTIONS(2681), - [anon_sym_class] = ACTIONS(2681), - [anon_sym_struct] = ACTIONS(2681), - [anon_sym_union] = ACTIONS(2681), - [anon_sym_if] = ACTIONS(2681), - [anon_sym_switch] = ACTIONS(2681), - [anon_sym_case] = ACTIONS(2681), - [anon_sym_default] = ACTIONS(2681), - [anon_sym_while] = ACTIONS(2681), - [anon_sym_do] = ACTIONS(2681), - [anon_sym_for] = ACTIONS(2681), - [anon_sym_return] = ACTIONS(2681), - [anon_sym_break] = ACTIONS(2681), - [anon_sym_continue] = ACTIONS(2681), - [anon_sym_goto] = ACTIONS(2681), - [anon_sym_DASH_DASH] = ACTIONS(2683), - [anon_sym_PLUS_PLUS] = ACTIONS(2683), - [anon_sym_sizeof] = ACTIONS(2681), - [sym_number_literal] = ACTIONS(2683), - [anon_sym_L_SQUOTE] = ACTIONS(2683), - [anon_sym_u_SQUOTE] = ACTIONS(2683), - [anon_sym_U_SQUOTE] = ACTIONS(2683), - [anon_sym_u8_SQUOTE] = ACTIONS(2683), - [anon_sym_SQUOTE] = ACTIONS(2683), - [anon_sym_L_DQUOTE] = ACTIONS(2683), - [anon_sym_u_DQUOTE] = ACTIONS(2683), - [anon_sym_U_DQUOTE] = ACTIONS(2683), - [anon_sym_u8_DQUOTE] = ACTIONS(2683), - [anon_sym_DQUOTE] = ACTIONS(2683), - [sym_true] = ACTIONS(2681), - [sym_false] = ACTIONS(2681), - [sym_null] = ACTIONS(2681), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2681), - [anon_sym_decltype] = ACTIONS(2681), - [anon_sym_virtual] = ACTIONS(2681), - [anon_sym_explicit] = ACTIONS(2681), - [anon_sym_typename] = ACTIONS(2681), - [anon_sym_template] = ACTIONS(2681), - [anon_sym_operator] = ACTIONS(2681), - [anon_sym_try] = ACTIONS(2681), - [anon_sym_delete] = ACTIONS(2681), - [anon_sym_throw] = ACTIONS(2681), - [anon_sym_namespace] = ACTIONS(2681), - [anon_sym_using] = ACTIONS(2681), - [anon_sym_static_assert] = ACTIONS(2681), - [anon_sym_concept] = ACTIONS(2681), - [anon_sym_co_return] = ACTIONS(2681), - [anon_sym_co_yield] = ACTIONS(2681), - [anon_sym_co_await] = ACTIONS(2681), - [anon_sym_new] = ACTIONS(2681), - [anon_sym_requires] = ACTIONS(2681), - [sym_this] = ACTIONS(2681), - [sym_nullptr] = ACTIONS(2681), - [sym_raw_string_literal] = ACTIONS(2683), + [590] = { + [ts_builtin_sym_end] = ACTIONS(2557), + [sym_identifier] = ACTIONS(2555), + [aux_sym_preproc_include_token1] = ACTIONS(2555), + [aux_sym_preproc_def_token1] = ACTIONS(2555), + [aux_sym_preproc_if_token1] = ACTIONS(2555), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2555), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2555), + [sym_preproc_directive] = ACTIONS(2555), + [anon_sym_LPAREN2] = ACTIONS(2557), + [anon_sym_BANG] = ACTIONS(2557), + [anon_sym_TILDE] = ACTIONS(2557), + [anon_sym_DASH] = ACTIONS(2555), + [anon_sym_PLUS] = ACTIONS(2555), + [anon_sym_STAR] = ACTIONS(2557), + [anon_sym_AMP_AMP] = ACTIONS(2557), + [anon_sym_AMP] = ACTIONS(2555), + [anon_sym_SEMI] = ACTIONS(2557), + [anon_sym_typedef] = ACTIONS(2555), + [anon_sym_extern] = ACTIONS(2555), + [anon_sym___attribute__] = ACTIONS(2555), + [anon_sym_COLON_COLON] = ACTIONS(2557), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2557), + [anon_sym___declspec] = ACTIONS(2555), + [anon_sym___based] = ACTIONS(2555), + [anon_sym___cdecl] = ACTIONS(2555), + [anon_sym___clrcall] = ACTIONS(2555), + [anon_sym___stdcall] = ACTIONS(2555), + [anon_sym___fastcall] = ACTIONS(2555), + [anon_sym___thiscall] = ACTIONS(2555), + [anon_sym___vectorcall] = ACTIONS(2555), + [anon_sym_LBRACE] = ACTIONS(2557), + [anon_sym_LBRACK] = ACTIONS(2555), + [anon_sym_static] = ACTIONS(2555), + [anon_sym_register] = ACTIONS(2555), + [anon_sym_inline] = ACTIONS(2555), + [anon_sym_thread_local] = ACTIONS(2555), + [anon_sym_const] = ACTIONS(2555), + [anon_sym_volatile] = ACTIONS(2555), + [anon_sym_restrict] = ACTIONS(2555), + [anon_sym__Atomic] = ACTIONS(2555), + [anon_sym_mutable] = ACTIONS(2555), + [anon_sym_constexpr] = ACTIONS(2555), + [anon_sym_constinit] = ACTIONS(2555), + [anon_sym_consteval] = ACTIONS(2555), + [anon_sym_signed] = ACTIONS(2555), + [anon_sym_unsigned] = ACTIONS(2555), + [anon_sym_long] = ACTIONS(2555), + [anon_sym_short] = ACTIONS(2555), + [sym_primitive_type] = ACTIONS(2555), + [anon_sym_enum] = ACTIONS(2555), + [anon_sym_class] = ACTIONS(2555), + [anon_sym_struct] = ACTIONS(2555), + [anon_sym_union] = ACTIONS(2555), + [anon_sym_if] = ACTIONS(2555), + [anon_sym_else] = ACTIONS(2555), + [anon_sym_switch] = ACTIONS(2555), + [anon_sym_case] = ACTIONS(2555), + [anon_sym_default] = ACTIONS(2555), + [anon_sym_while] = ACTIONS(2555), + [anon_sym_do] = ACTIONS(2555), + [anon_sym_for] = ACTIONS(2555), + [anon_sym_return] = ACTIONS(2555), + [anon_sym_break] = ACTIONS(2555), + [anon_sym_continue] = ACTIONS(2555), + [anon_sym_goto] = ACTIONS(2555), + [anon_sym_not] = ACTIONS(2555), + [anon_sym_compl] = ACTIONS(2555), + [anon_sym_DASH_DASH] = ACTIONS(2557), + [anon_sym_PLUS_PLUS] = ACTIONS(2557), + [anon_sym_sizeof] = ACTIONS(2555), + [sym_number_literal] = ACTIONS(2557), + [anon_sym_L_SQUOTE] = ACTIONS(2557), + [anon_sym_u_SQUOTE] = ACTIONS(2557), + [anon_sym_U_SQUOTE] = ACTIONS(2557), + [anon_sym_u8_SQUOTE] = ACTIONS(2557), + [anon_sym_SQUOTE] = ACTIONS(2557), + [anon_sym_L_DQUOTE] = ACTIONS(2557), + [anon_sym_u_DQUOTE] = ACTIONS(2557), + [anon_sym_U_DQUOTE] = ACTIONS(2557), + [anon_sym_u8_DQUOTE] = ACTIONS(2557), + [anon_sym_DQUOTE] = ACTIONS(2557), + [sym_true] = ACTIONS(2555), + [sym_false] = ACTIONS(2555), + [sym_null] = ACTIONS(2555), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2555), + [anon_sym_decltype] = ACTIONS(2555), + [anon_sym_virtual] = ACTIONS(2555), + [anon_sym_explicit] = ACTIONS(2555), + [anon_sym_typename] = ACTIONS(2555), + [anon_sym_template] = ACTIONS(2555), + [anon_sym_operator] = ACTIONS(2555), + [anon_sym_try] = ACTIONS(2555), + [anon_sym_delete] = ACTIONS(2555), + [anon_sym_throw] = ACTIONS(2555), + [anon_sym_namespace] = ACTIONS(2555), + [anon_sym_using] = ACTIONS(2555), + [anon_sym_static_assert] = ACTIONS(2555), + [anon_sym_concept] = ACTIONS(2555), + [anon_sym_co_return] = ACTIONS(2555), + [anon_sym_co_yield] = ACTIONS(2555), + [anon_sym_co_await] = ACTIONS(2555), + [anon_sym_new] = ACTIONS(2555), + [anon_sym_requires] = ACTIONS(2555), + [sym_this] = ACTIONS(2555), + [sym_nullptr] = ACTIONS(2555), + [sym_raw_string_literal] = ACTIONS(2557), }, - [944] = { - [sym_identifier] = ACTIONS(2699), - [aux_sym_preproc_include_token1] = ACTIONS(2699), - [aux_sym_preproc_def_token1] = ACTIONS(2699), - [aux_sym_preproc_if_token1] = ACTIONS(2699), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2699), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2699), - [sym_preproc_directive] = ACTIONS(2699), - [anon_sym_LPAREN2] = ACTIONS(2701), - [anon_sym_BANG] = ACTIONS(2701), - [anon_sym_TILDE] = ACTIONS(2701), - [anon_sym_DASH] = ACTIONS(2699), - [anon_sym_PLUS] = ACTIONS(2699), - [anon_sym_STAR] = ACTIONS(2701), - [anon_sym_AMP_AMP] = ACTIONS(2701), - [anon_sym_AMP] = ACTIONS(2699), - [anon_sym_SEMI] = ACTIONS(2701), - [anon_sym_typedef] = ACTIONS(2699), - [anon_sym_extern] = ACTIONS(2699), - [anon_sym___attribute__] = ACTIONS(2699), - [anon_sym_COLON_COLON] = ACTIONS(2701), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2701), - [anon_sym___declspec] = ACTIONS(2699), - [anon_sym___based] = ACTIONS(2699), - [anon_sym___cdecl] = ACTIONS(2699), - [anon_sym___clrcall] = ACTIONS(2699), - [anon_sym___stdcall] = ACTIONS(2699), - [anon_sym___fastcall] = ACTIONS(2699), - [anon_sym___thiscall] = ACTIONS(2699), - [anon_sym___vectorcall] = ACTIONS(2699), - [anon_sym_LBRACE] = ACTIONS(2701), - [anon_sym_RBRACE] = ACTIONS(2701), - [anon_sym_LBRACK] = ACTIONS(2699), - [anon_sym_static] = ACTIONS(2699), - [anon_sym_register] = ACTIONS(2699), - [anon_sym_inline] = ACTIONS(2699), - [anon_sym_thread_local] = ACTIONS(2699), - [anon_sym_const] = ACTIONS(2699), - [anon_sym_volatile] = ACTIONS(2699), - [anon_sym_restrict] = ACTIONS(2699), - [anon_sym__Atomic] = ACTIONS(2699), - [anon_sym_mutable] = ACTIONS(2699), - [anon_sym_constexpr] = ACTIONS(2699), - [anon_sym_constinit] = ACTIONS(2699), - [anon_sym_consteval] = ACTIONS(2699), - [anon_sym_signed] = ACTIONS(2699), - [anon_sym_unsigned] = ACTIONS(2699), - [anon_sym_long] = ACTIONS(2699), - [anon_sym_short] = ACTIONS(2699), - [sym_primitive_type] = ACTIONS(2699), - [anon_sym_enum] = ACTIONS(2699), - [anon_sym_class] = ACTIONS(2699), - [anon_sym_struct] = ACTIONS(2699), - [anon_sym_union] = ACTIONS(2699), - [anon_sym_if] = ACTIONS(2699), - [anon_sym_switch] = ACTIONS(2699), - [anon_sym_case] = ACTIONS(2699), - [anon_sym_default] = ACTIONS(2699), - [anon_sym_while] = ACTIONS(2699), - [anon_sym_do] = ACTIONS(2699), - [anon_sym_for] = ACTIONS(2699), - [anon_sym_return] = ACTIONS(2699), - [anon_sym_break] = ACTIONS(2699), - [anon_sym_continue] = ACTIONS(2699), - [anon_sym_goto] = ACTIONS(2699), - [anon_sym_DASH_DASH] = ACTIONS(2701), - [anon_sym_PLUS_PLUS] = ACTIONS(2701), - [anon_sym_sizeof] = ACTIONS(2699), - [sym_number_literal] = ACTIONS(2701), - [anon_sym_L_SQUOTE] = ACTIONS(2701), - [anon_sym_u_SQUOTE] = ACTIONS(2701), - [anon_sym_U_SQUOTE] = ACTIONS(2701), - [anon_sym_u8_SQUOTE] = ACTIONS(2701), - [anon_sym_SQUOTE] = ACTIONS(2701), - [anon_sym_L_DQUOTE] = ACTIONS(2701), - [anon_sym_u_DQUOTE] = ACTIONS(2701), - [anon_sym_U_DQUOTE] = ACTIONS(2701), - [anon_sym_u8_DQUOTE] = ACTIONS(2701), - [anon_sym_DQUOTE] = ACTIONS(2701), - [sym_true] = ACTIONS(2699), - [sym_false] = ACTIONS(2699), - [sym_null] = ACTIONS(2699), + [591] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token2] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2699), - [anon_sym_decltype] = ACTIONS(2699), - [anon_sym_virtual] = ACTIONS(2699), - [anon_sym_explicit] = ACTIONS(2699), - [anon_sym_typename] = ACTIONS(2699), - [anon_sym_template] = ACTIONS(2699), - [anon_sym_operator] = ACTIONS(2699), - [anon_sym_try] = ACTIONS(2699), - [anon_sym_delete] = ACTIONS(2699), - [anon_sym_throw] = ACTIONS(2699), - [anon_sym_namespace] = ACTIONS(2699), - [anon_sym_using] = ACTIONS(2699), - [anon_sym_static_assert] = ACTIONS(2699), - [anon_sym_concept] = ACTIONS(2699), - [anon_sym_co_return] = ACTIONS(2699), - [anon_sym_co_yield] = ACTIONS(2699), - [anon_sym_co_await] = ACTIONS(2699), - [anon_sym_new] = ACTIONS(2699), - [anon_sym_requires] = ACTIONS(2699), - [sym_this] = ACTIONS(2699), - [sym_nullptr] = ACTIONS(2699), - [sym_raw_string_literal] = ACTIONS(2701), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [945] = { - [ts_builtin_sym_end] = ACTIONS(2759), - [sym_identifier] = ACTIONS(2757), - [aux_sym_preproc_include_token1] = ACTIONS(2757), - [aux_sym_preproc_def_token1] = ACTIONS(2757), - [aux_sym_preproc_if_token1] = ACTIONS(2757), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2757), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2757), - [sym_preproc_directive] = ACTIONS(2757), - [anon_sym_LPAREN2] = ACTIONS(2759), - [anon_sym_BANG] = ACTIONS(2759), - [anon_sym_TILDE] = ACTIONS(2759), - [anon_sym_DASH] = ACTIONS(2757), - [anon_sym_PLUS] = ACTIONS(2757), - [anon_sym_STAR] = ACTIONS(2759), - [anon_sym_AMP_AMP] = ACTIONS(2759), - [anon_sym_AMP] = ACTIONS(2757), - [anon_sym_SEMI] = ACTIONS(2759), - [anon_sym_typedef] = ACTIONS(2757), - [anon_sym_extern] = ACTIONS(2757), - [anon_sym___attribute__] = ACTIONS(2757), - [anon_sym_COLON_COLON] = ACTIONS(2759), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2759), - [anon_sym___declspec] = ACTIONS(2757), - [anon_sym___based] = ACTIONS(2757), - [anon_sym___cdecl] = ACTIONS(2757), - [anon_sym___clrcall] = ACTIONS(2757), - [anon_sym___stdcall] = ACTIONS(2757), - [anon_sym___fastcall] = ACTIONS(2757), - [anon_sym___thiscall] = ACTIONS(2757), - [anon_sym___vectorcall] = ACTIONS(2757), - [anon_sym_LBRACE] = ACTIONS(2759), - [anon_sym_LBRACK] = ACTIONS(2757), - [anon_sym_static] = ACTIONS(2757), - [anon_sym_register] = ACTIONS(2757), - [anon_sym_inline] = ACTIONS(2757), - [anon_sym_thread_local] = ACTIONS(2757), - [anon_sym_const] = ACTIONS(2757), - [anon_sym_volatile] = ACTIONS(2757), - [anon_sym_restrict] = ACTIONS(2757), - [anon_sym__Atomic] = ACTIONS(2757), - [anon_sym_mutable] = ACTIONS(2757), - [anon_sym_constexpr] = ACTIONS(2757), - [anon_sym_constinit] = ACTIONS(2757), - [anon_sym_consteval] = ACTIONS(2757), - [anon_sym_signed] = ACTIONS(2757), - [anon_sym_unsigned] = ACTIONS(2757), - [anon_sym_long] = ACTIONS(2757), - [anon_sym_short] = ACTIONS(2757), - [sym_primitive_type] = ACTIONS(2757), - [anon_sym_enum] = ACTIONS(2757), - [anon_sym_class] = ACTIONS(2757), - [anon_sym_struct] = ACTIONS(2757), - [anon_sym_union] = ACTIONS(2757), - [anon_sym_if] = ACTIONS(2757), - [anon_sym_switch] = ACTIONS(2757), - [anon_sym_case] = ACTIONS(2757), - [anon_sym_default] = ACTIONS(2757), - [anon_sym_while] = ACTIONS(2757), - [anon_sym_do] = ACTIONS(2757), - [anon_sym_for] = ACTIONS(2757), - [anon_sym_return] = ACTIONS(2757), - [anon_sym_break] = ACTIONS(2757), - [anon_sym_continue] = ACTIONS(2757), - [anon_sym_goto] = ACTIONS(2757), - [anon_sym_DASH_DASH] = ACTIONS(2759), - [anon_sym_PLUS_PLUS] = ACTIONS(2759), - [anon_sym_sizeof] = ACTIONS(2757), - [sym_number_literal] = ACTIONS(2759), - [anon_sym_L_SQUOTE] = ACTIONS(2759), - [anon_sym_u_SQUOTE] = ACTIONS(2759), - [anon_sym_U_SQUOTE] = ACTIONS(2759), - [anon_sym_u8_SQUOTE] = ACTIONS(2759), - [anon_sym_SQUOTE] = ACTIONS(2759), - [anon_sym_L_DQUOTE] = ACTIONS(2759), - [anon_sym_u_DQUOTE] = ACTIONS(2759), - [anon_sym_U_DQUOTE] = ACTIONS(2759), - [anon_sym_u8_DQUOTE] = ACTIONS(2759), - [anon_sym_DQUOTE] = ACTIONS(2759), - [sym_true] = ACTIONS(2757), - [sym_false] = ACTIONS(2757), - [sym_null] = ACTIONS(2757), + [592] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token2] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2757), - [anon_sym_decltype] = ACTIONS(2757), - [anon_sym_virtual] = ACTIONS(2757), - [anon_sym_explicit] = ACTIONS(2757), - [anon_sym_typename] = ACTIONS(2757), - [anon_sym_template] = ACTIONS(2757), - [anon_sym_operator] = ACTIONS(2757), - [anon_sym_try] = ACTIONS(2757), - [anon_sym_delete] = ACTIONS(2757), - [anon_sym_throw] = ACTIONS(2757), - [anon_sym_namespace] = ACTIONS(2757), - [anon_sym_using] = ACTIONS(2757), - [anon_sym_static_assert] = ACTIONS(2757), - [anon_sym_concept] = ACTIONS(2757), - [anon_sym_co_return] = ACTIONS(2757), - [anon_sym_co_yield] = ACTIONS(2757), - [anon_sym_co_await] = ACTIONS(2757), - [anon_sym_new] = ACTIONS(2757), - [anon_sym_requires] = ACTIONS(2757), - [sym_this] = ACTIONS(2757), - [sym_nullptr] = ACTIONS(2757), - [sym_raw_string_literal] = ACTIONS(2759), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [946] = { - [ts_builtin_sym_end] = ACTIONS(2759), - [sym_identifier] = ACTIONS(2757), - [aux_sym_preproc_include_token1] = ACTIONS(2757), - [aux_sym_preproc_def_token1] = ACTIONS(2757), - [aux_sym_preproc_if_token1] = ACTIONS(2757), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2757), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2757), - [sym_preproc_directive] = ACTIONS(2757), - [anon_sym_LPAREN2] = ACTIONS(2759), - [anon_sym_BANG] = ACTIONS(2759), - [anon_sym_TILDE] = ACTIONS(2759), - [anon_sym_DASH] = ACTIONS(2757), - [anon_sym_PLUS] = ACTIONS(2757), - [anon_sym_STAR] = ACTIONS(2759), - [anon_sym_AMP_AMP] = ACTIONS(2759), - [anon_sym_AMP] = ACTIONS(2757), - [anon_sym_SEMI] = ACTIONS(2759), - [anon_sym_typedef] = ACTIONS(2757), - [anon_sym_extern] = ACTIONS(2757), - [anon_sym___attribute__] = ACTIONS(2757), - [anon_sym_COLON_COLON] = ACTIONS(2759), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2759), - [anon_sym___declspec] = ACTIONS(2757), - [anon_sym___based] = ACTIONS(2757), - [anon_sym___cdecl] = ACTIONS(2757), - [anon_sym___clrcall] = ACTIONS(2757), - [anon_sym___stdcall] = ACTIONS(2757), - [anon_sym___fastcall] = ACTIONS(2757), - [anon_sym___thiscall] = ACTIONS(2757), - [anon_sym___vectorcall] = ACTIONS(2757), - [anon_sym_LBRACE] = ACTIONS(2759), - [anon_sym_LBRACK] = ACTIONS(2757), - [anon_sym_static] = ACTIONS(2757), - [anon_sym_register] = ACTIONS(2757), - [anon_sym_inline] = ACTIONS(2757), - [anon_sym_thread_local] = ACTIONS(2757), - [anon_sym_const] = ACTIONS(2757), - [anon_sym_volatile] = ACTIONS(2757), - [anon_sym_restrict] = ACTIONS(2757), - [anon_sym__Atomic] = ACTIONS(2757), - [anon_sym_mutable] = ACTIONS(2757), - [anon_sym_constexpr] = ACTIONS(2757), - [anon_sym_constinit] = ACTIONS(2757), - [anon_sym_consteval] = ACTIONS(2757), - [anon_sym_signed] = ACTIONS(2757), - [anon_sym_unsigned] = ACTIONS(2757), - [anon_sym_long] = ACTIONS(2757), - [anon_sym_short] = ACTIONS(2757), - [sym_primitive_type] = ACTIONS(2757), - [anon_sym_enum] = ACTIONS(2757), - [anon_sym_class] = ACTIONS(2757), - [anon_sym_struct] = ACTIONS(2757), - [anon_sym_union] = ACTIONS(2757), - [anon_sym_if] = ACTIONS(2757), - [anon_sym_switch] = ACTIONS(2757), - [anon_sym_case] = ACTIONS(2757), - [anon_sym_default] = ACTIONS(2757), - [anon_sym_while] = ACTIONS(2757), - [anon_sym_do] = ACTIONS(2757), - [anon_sym_for] = ACTIONS(2757), - [anon_sym_return] = ACTIONS(2757), - [anon_sym_break] = ACTIONS(2757), - [anon_sym_continue] = ACTIONS(2757), - [anon_sym_goto] = ACTIONS(2757), - [anon_sym_DASH_DASH] = ACTIONS(2759), - [anon_sym_PLUS_PLUS] = ACTIONS(2759), - [anon_sym_sizeof] = ACTIONS(2757), - [sym_number_literal] = ACTIONS(2759), - [anon_sym_L_SQUOTE] = ACTIONS(2759), - [anon_sym_u_SQUOTE] = ACTIONS(2759), - [anon_sym_U_SQUOTE] = ACTIONS(2759), - [anon_sym_u8_SQUOTE] = ACTIONS(2759), - [anon_sym_SQUOTE] = ACTIONS(2759), - [anon_sym_L_DQUOTE] = ACTIONS(2759), - [anon_sym_u_DQUOTE] = ACTIONS(2759), - [anon_sym_U_DQUOTE] = ACTIONS(2759), - [anon_sym_u8_DQUOTE] = ACTIONS(2759), - [anon_sym_DQUOTE] = ACTIONS(2759), - [sym_true] = ACTIONS(2757), - [sym_false] = ACTIONS(2757), - [sym_null] = ACTIONS(2757), + [593] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token2] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2757), - [anon_sym_decltype] = ACTIONS(2757), - [anon_sym_virtual] = ACTIONS(2757), - [anon_sym_explicit] = ACTIONS(2757), - [anon_sym_typename] = ACTIONS(2757), - [anon_sym_template] = ACTIONS(2757), - [anon_sym_operator] = ACTIONS(2757), - [anon_sym_try] = ACTIONS(2757), - [anon_sym_delete] = ACTIONS(2757), - [anon_sym_throw] = ACTIONS(2757), - [anon_sym_namespace] = ACTIONS(2757), - [anon_sym_using] = ACTIONS(2757), - [anon_sym_static_assert] = ACTIONS(2757), - [anon_sym_concept] = ACTIONS(2757), - [anon_sym_co_return] = ACTIONS(2757), - [anon_sym_co_yield] = ACTIONS(2757), - [anon_sym_co_await] = ACTIONS(2757), - [anon_sym_new] = ACTIONS(2757), - [anon_sym_requires] = ACTIONS(2757), - [sym_this] = ACTIONS(2757), - [sym_nullptr] = ACTIONS(2757), - [sym_raw_string_literal] = ACTIONS(2759), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [947] = { - [sym_identifier] = ACTIONS(2757), - [aux_sym_preproc_include_token1] = ACTIONS(2757), - [aux_sym_preproc_def_token1] = ACTIONS(2757), - [aux_sym_preproc_if_token1] = ACTIONS(2757), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2757), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2757), - [sym_preproc_directive] = ACTIONS(2757), - [anon_sym_LPAREN2] = ACTIONS(2759), - [anon_sym_BANG] = ACTIONS(2759), - [anon_sym_TILDE] = ACTIONS(2759), - [anon_sym_DASH] = ACTIONS(2757), - [anon_sym_PLUS] = ACTIONS(2757), - [anon_sym_STAR] = ACTIONS(2759), - [anon_sym_AMP_AMP] = ACTIONS(2759), - [anon_sym_AMP] = ACTIONS(2757), - [anon_sym_SEMI] = ACTIONS(2759), - [anon_sym_typedef] = ACTIONS(2757), - [anon_sym_extern] = ACTIONS(2757), - [anon_sym___attribute__] = ACTIONS(2757), - [anon_sym_COLON_COLON] = ACTIONS(2759), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2759), - [anon_sym___declspec] = ACTIONS(2757), - [anon_sym___based] = ACTIONS(2757), - [anon_sym___cdecl] = ACTIONS(2757), - [anon_sym___clrcall] = ACTIONS(2757), - [anon_sym___stdcall] = ACTIONS(2757), - [anon_sym___fastcall] = ACTIONS(2757), - [anon_sym___thiscall] = ACTIONS(2757), - [anon_sym___vectorcall] = ACTIONS(2757), - [anon_sym_LBRACE] = ACTIONS(2759), - [anon_sym_RBRACE] = ACTIONS(2759), - [anon_sym_LBRACK] = ACTIONS(2757), - [anon_sym_static] = ACTIONS(2757), - [anon_sym_register] = ACTIONS(2757), - [anon_sym_inline] = ACTIONS(2757), - [anon_sym_thread_local] = ACTIONS(2757), - [anon_sym_const] = ACTIONS(2757), - [anon_sym_volatile] = ACTIONS(2757), - [anon_sym_restrict] = ACTIONS(2757), - [anon_sym__Atomic] = ACTIONS(2757), - [anon_sym_mutable] = ACTIONS(2757), - [anon_sym_constexpr] = ACTIONS(2757), - [anon_sym_constinit] = ACTIONS(2757), - [anon_sym_consteval] = ACTIONS(2757), - [anon_sym_signed] = ACTIONS(2757), - [anon_sym_unsigned] = ACTIONS(2757), - [anon_sym_long] = ACTIONS(2757), - [anon_sym_short] = ACTIONS(2757), - [sym_primitive_type] = ACTIONS(2757), - [anon_sym_enum] = ACTIONS(2757), - [anon_sym_class] = ACTIONS(2757), - [anon_sym_struct] = ACTIONS(2757), - [anon_sym_union] = ACTIONS(2757), - [anon_sym_if] = ACTIONS(2757), - [anon_sym_switch] = ACTIONS(2757), - [anon_sym_case] = ACTIONS(2757), - [anon_sym_default] = ACTIONS(2757), - [anon_sym_while] = ACTIONS(2757), - [anon_sym_do] = ACTIONS(2757), - [anon_sym_for] = ACTIONS(2757), - [anon_sym_return] = ACTIONS(2757), - [anon_sym_break] = ACTIONS(2757), - [anon_sym_continue] = ACTIONS(2757), - [anon_sym_goto] = ACTIONS(2757), - [anon_sym_DASH_DASH] = ACTIONS(2759), - [anon_sym_PLUS_PLUS] = ACTIONS(2759), - [anon_sym_sizeof] = ACTIONS(2757), - [sym_number_literal] = ACTIONS(2759), - [anon_sym_L_SQUOTE] = ACTIONS(2759), - [anon_sym_u_SQUOTE] = ACTIONS(2759), - [anon_sym_U_SQUOTE] = ACTIONS(2759), - [anon_sym_u8_SQUOTE] = ACTIONS(2759), - [anon_sym_SQUOTE] = ACTIONS(2759), - [anon_sym_L_DQUOTE] = ACTIONS(2759), - [anon_sym_u_DQUOTE] = ACTIONS(2759), - [anon_sym_U_DQUOTE] = ACTIONS(2759), - [anon_sym_u8_DQUOTE] = ACTIONS(2759), - [anon_sym_DQUOTE] = ACTIONS(2759), - [sym_true] = ACTIONS(2757), - [sym_false] = ACTIONS(2757), - [sym_null] = ACTIONS(2757), + [594] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token2] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2757), - [anon_sym_decltype] = ACTIONS(2757), - [anon_sym_virtual] = ACTIONS(2757), - [anon_sym_explicit] = ACTIONS(2757), - [anon_sym_typename] = ACTIONS(2757), - [anon_sym_template] = ACTIONS(2757), - [anon_sym_operator] = ACTIONS(2757), - [anon_sym_try] = ACTIONS(2757), - [anon_sym_delete] = ACTIONS(2757), - [anon_sym_throw] = ACTIONS(2757), - [anon_sym_namespace] = ACTIONS(2757), - [anon_sym_using] = ACTIONS(2757), - [anon_sym_static_assert] = ACTIONS(2757), - [anon_sym_concept] = ACTIONS(2757), - [anon_sym_co_return] = ACTIONS(2757), - [anon_sym_co_yield] = ACTIONS(2757), - [anon_sym_co_await] = ACTIONS(2757), - [anon_sym_new] = ACTIONS(2757), - [anon_sym_requires] = ACTIONS(2757), - [sym_this] = ACTIONS(2757), - [sym_nullptr] = ACTIONS(2757), - [sym_raw_string_literal] = ACTIONS(2759), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [948] = { - [sym_identifier] = ACTIONS(2691), - [aux_sym_preproc_include_token1] = ACTIONS(2691), - [aux_sym_preproc_def_token1] = ACTIONS(2691), - [aux_sym_preproc_if_token1] = ACTIONS(2691), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2691), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2691), - [sym_preproc_directive] = ACTIONS(2691), - [anon_sym_LPAREN2] = ACTIONS(2693), - [anon_sym_BANG] = ACTIONS(2693), - [anon_sym_TILDE] = ACTIONS(2693), - [anon_sym_DASH] = ACTIONS(2691), - [anon_sym_PLUS] = ACTIONS(2691), - [anon_sym_STAR] = ACTIONS(2693), - [anon_sym_AMP_AMP] = ACTIONS(2693), - [anon_sym_AMP] = ACTIONS(2691), - [anon_sym_SEMI] = ACTIONS(2693), - [anon_sym_typedef] = ACTIONS(2691), - [anon_sym_extern] = ACTIONS(2691), - [anon_sym___attribute__] = ACTIONS(2691), - [anon_sym_COLON_COLON] = ACTIONS(2693), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2693), - [anon_sym___declspec] = ACTIONS(2691), - [anon_sym___based] = ACTIONS(2691), - [anon_sym___cdecl] = ACTIONS(2691), - [anon_sym___clrcall] = ACTIONS(2691), - [anon_sym___stdcall] = ACTIONS(2691), - [anon_sym___fastcall] = ACTIONS(2691), - [anon_sym___thiscall] = ACTIONS(2691), - [anon_sym___vectorcall] = ACTIONS(2691), - [anon_sym_LBRACE] = ACTIONS(2693), - [anon_sym_RBRACE] = ACTIONS(2693), - [anon_sym_LBRACK] = ACTIONS(2691), - [anon_sym_static] = ACTIONS(2691), - [anon_sym_register] = ACTIONS(2691), - [anon_sym_inline] = ACTIONS(2691), - [anon_sym_thread_local] = ACTIONS(2691), - [anon_sym_const] = ACTIONS(2691), - [anon_sym_volatile] = ACTIONS(2691), - [anon_sym_restrict] = ACTIONS(2691), - [anon_sym__Atomic] = ACTIONS(2691), - [anon_sym_mutable] = ACTIONS(2691), - [anon_sym_constexpr] = ACTIONS(2691), - [anon_sym_constinit] = ACTIONS(2691), - [anon_sym_consteval] = ACTIONS(2691), - [anon_sym_signed] = ACTIONS(2691), - [anon_sym_unsigned] = ACTIONS(2691), - [anon_sym_long] = ACTIONS(2691), - [anon_sym_short] = ACTIONS(2691), - [sym_primitive_type] = ACTIONS(2691), - [anon_sym_enum] = ACTIONS(2691), - [anon_sym_class] = ACTIONS(2691), - [anon_sym_struct] = ACTIONS(2691), - [anon_sym_union] = ACTIONS(2691), - [anon_sym_if] = ACTIONS(2691), - [anon_sym_switch] = ACTIONS(2691), - [anon_sym_case] = ACTIONS(2691), - [anon_sym_default] = ACTIONS(2691), - [anon_sym_while] = ACTIONS(2691), - [anon_sym_do] = ACTIONS(2691), - [anon_sym_for] = ACTIONS(2691), - [anon_sym_return] = ACTIONS(2691), - [anon_sym_break] = ACTIONS(2691), - [anon_sym_continue] = ACTIONS(2691), - [anon_sym_goto] = ACTIONS(2691), - [anon_sym_DASH_DASH] = ACTIONS(2693), - [anon_sym_PLUS_PLUS] = ACTIONS(2693), - [anon_sym_sizeof] = ACTIONS(2691), - [sym_number_literal] = ACTIONS(2693), - [anon_sym_L_SQUOTE] = ACTIONS(2693), - [anon_sym_u_SQUOTE] = ACTIONS(2693), - [anon_sym_U_SQUOTE] = ACTIONS(2693), - [anon_sym_u8_SQUOTE] = ACTIONS(2693), - [anon_sym_SQUOTE] = ACTIONS(2693), - [anon_sym_L_DQUOTE] = ACTIONS(2693), - [anon_sym_u_DQUOTE] = ACTIONS(2693), - [anon_sym_U_DQUOTE] = ACTIONS(2693), - [anon_sym_u8_DQUOTE] = ACTIONS(2693), - [anon_sym_DQUOTE] = ACTIONS(2693), - [sym_true] = ACTIONS(2691), - [sym_false] = ACTIONS(2691), - [sym_null] = ACTIONS(2691), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2691), - [anon_sym_decltype] = ACTIONS(2691), - [anon_sym_virtual] = ACTIONS(2691), - [anon_sym_explicit] = ACTIONS(2691), - [anon_sym_typename] = ACTIONS(2691), - [anon_sym_template] = ACTIONS(2691), - [anon_sym_operator] = ACTIONS(2691), - [anon_sym_try] = ACTIONS(2691), - [anon_sym_delete] = ACTIONS(2691), - [anon_sym_throw] = ACTIONS(2691), - [anon_sym_namespace] = ACTIONS(2691), - [anon_sym_using] = ACTIONS(2691), - [anon_sym_static_assert] = ACTIONS(2691), - [anon_sym_concept] = ACTIONS(2691), - [anon_sym_co_return] = ACTIONS(2691), - [anon_sym_co_yield] = ACTIONS(2691), - [anon_sym_co_await] = ACTIONS(2691), - [anon_sym_new] = ACTIONS(2691), - [anon_sym_requires] = ACTIONS(2691), - [sym_this] = ACTIONS(2691), - [sym_nullptr] = ACTIONS(2691), - [sym_raw_string_literal] = ACTIONS(2693), + [595] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token2] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [949] = { - [sym_identifier] = ACTIONS(2783), - [aux_sym_preproc_include_token1] = ACTIONS(2783), - [aux_sym_preproc_def_token1] = ACTIONS(2783), - [aux_sym_preproc_if_token1] = ACTIONS(2783), - [aux_sym_preproc_if_token2] = ACTIONS(2783), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2783), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2783), - [sym_preproc_directive] = ACTIONS(2783), - [anon_sym_LPAREN2] = ACTIONS(2785), - [anon_sym_BANG] = ACTIONS(2785), - [anon_sym_TILDE] = ACTIONS(2785), - [anon_sym_DASH] = ACTIONS(2783), - [anon_sym_PLUS] = ACTIONS(2783), - [anon_sym_STAR] = ACTIONS(2785), - [anon_sym_AMP_AMP] = ACTIONS(2785), - [anon_sym_AMP] = ACTIONS(2783), - [anon_sym_SEMI] = ACTIONS(2785), - [anon_sym_typedef] = ACTIONS(2783), - [anon_sym_extern] = ACTIONS(2783), - [anon_sym___attribute__] = ACTIONS(2783), - [anon_sym_COLON_COLON] = ACTIONS(2785), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2785), - [anon_sym___declspec] = ACTIONS(2783), - [anon_sym___based] = ACTIONS(2783), - [anon_sym___cdecl] = ACTIONS(2783), - [anon_sym___clrcall] = ACTIONS(2783), - [anon_sym___stdcall] = ACTIONS(2783), - [anon_sym___fastcall] = ACTIONS(2783), - [anon_sym___thiscall] = ACTIONS(2783), - [anon_sym___vectorcall] = ACTIONS(2783), - [anon_sym_LBRACE] = ACTIONS(2785), - [anon_sym_LBRACK] = ACTIONS(2783), - [anon_sym_static] = ACTIONS(2783), - [anon_sym_register] = ACTIONS(2783), - [anon_sym_inline] = ACTIONS(2783), - [anon_sym_thread_local] = ACTIONS(2783), - [anon_sym_const] = ACTIONS(2783), - [anon_sym_volatile] = ACTIONS(2783), - [anon_sym_restrict] = ACTIONS(2783), - [anon_sym__Atomic] = ACTIONS(2783), - [anon_sym_mutable] = ACTIONS(2783), - [anon_sym_constexpr] = ACTIONS(2783), - [anon_sym_constinit] = ACTIONS(2783), - [anon_sym_consteval] = ACTIONS(2783), - [anon_sym_signed] = ACTIONS(2783), - [anon_sym_unsigned] = ACTIONS(2783), - [anon_sym_long] = ACTIONS(2783), - [anon_sym_short] = ACTIONS(2783), - [sym_primitive_type] = ACTIONS(2783), - [anon_sym_enum] = ACTIONS(2783), - [anon_sym_class] = ACTIONS(2783), - [anon_sym_struct] = ACTIONS(2783), - [anon_sym_union] = ACTIONS(2783), - [anon_sym_if] = ACTIONS(2783), - [anon_sym_switch] = ACTIONS(2783), - [anon_sym_case] = ACTIONS(2783), - [anon_sym_default] = ACTIONS(2783), - [anon_sym_while] = ACTIONS(2783), - [anon_sym_do] = ACTIONS(2783), - [anon_sym_for] = ACTIONS(2783), - [anon_sym_return] = ACTIONS(2783), - [anon_sym_break] = ACTIONS(2783), - [anon_sym_continue] = ACTIONS(2783), - [anon_sym_goto] = ACTIONS(2783), - [anon_sym_DASH_DASH] = ACTIONS(2785), - [anon_sym_PLUS_PLUS] = ACTIONS(2785), - [anon_sym_sizeof] = ACTIONS(2783), - [sym_number_literal] = ACTIONS(2785), - [anon_sym_L_SQUOTE] = ACTIONS(2785), - [anon_sym_u_SQUOTE] = ACTIONS(2785), - [anon_sym_U_SQUOTE] = ACTIONS(2785), - [anon_sym_u8_SQUOTE] = ACTIONS(2785), - [anon_sym_SQUOTE] = ACTIONS(2785), - [anon_sym_L_DQUOTE] = ACTIONS(2785), - [anon_sym_u_DQUOTE] = ACTIONS(2785), - [anon_sym_U_DQUOTE] = ACTIONS(2785), - [anon_sym_u8_DQUOTE] = ACTIONS(2785), - [anon_sym_DQUOTE] = ACTIONS(2785), - [sym_true] = ACTIONS(2783), - [sym_false] = ACTIONS(2783), - [sym_null] = ACTIONS(2783), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2783), - [anon_sym_decltype] = ACTIONS(2783), - [anon_sym_virtual] = ACTIONS(2783), - [anon_sym_explicit] = ACTIONS(2783), - [anon_sym_typename] = ACTIONS(2783), - [anon_sym_template] = ACTIONS(2783), - [anon_sym_operator] = ACTIONS(2783), - [anon_sym_try] = ACTIONS(2783), - [anon_sym_delete] = ACTIONS(2783), - [anon_sym_throw] = ACTIONS(2783), - [anon_sym_namespace] = ACTIONS(2783), - [anon_sym_using] = ACTIONS(2783), - [anon_sym_static_assert] = ACTIONS(2783), - [anon_sym_concept] = ACTIONS(2783), - [anon_sym_co_return] = ACTIONS(2783), - [anon_sym_co_yield] = ACTIONS(2783), - [anon_sym_co_await] = ACTIONS(2783), - [anon_sym_new] = ACTIONS(2783), - [anon_sym_requires] = ACTIONS(2783), - [sym_this] = ACTIONS(2783), - [sym_nullptr] = ACTIONS(2783), - [sym_raw_string_literal] = ACTIONS(2785), + [596] = { + [ts_builtin_sym_end] = ACTIONS(2657), + [sym_identifier] = ACTIONS(2655), + [aux_sym_preproc_include_token1] = ACTIONS(2655), + [aux_sym_preproc_def_token1] = ACTIONS(2655), + [aux_sym_preproc_if_token1] = ACTIONS(2655), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2655), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2655), + [sym_preproc_directive] = ACTIONS(2655), + [anon_sym_LPAREN2] = ACTIONS(2657), + [anon_sym_BANG] = ACTIONS(2657), + [anon_sym_TILDE] = ACTIONS(2657), + [anon_sym_DASH] = ACTIONS(2655), + [anon_sym_PLUS] = ACTIONS(2655), + [anon_sym_STAR] = ACTIONS(2657), + [anon_sym_AMP_AMP] = ACTIONS(2657), + [anon_sym_AMP] = ACTIONS(2655), + [anon_sym_SEMI] = ACTIONS(2657), + [anon_sym_typedef] = ACTIONS(2655), + [anon_sym_extern] = ACTIONS(2655), + [anon_sym___attribute__] = ACTIONS(2655), + [anon_sym_COLON_COLON] = ACTIONS(2657), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2657), + [anon_sym___declspec] = ACTIONS(2655), + [anon_sym___based] = ACTIONS(2655), + [anon_sym___cdecl] = ACTIONS(2655), + [anon_sym___clrcall] = ACTIONS(2655), + [anon_sym___stdcall] = ACTIONS(2655), + [anon_sym___fastcall] = ACTIONS(2655), + [anon_sym___thiscall] = ACTIONS(2655), + [anon_sym___vectorcall] = ACTIONS(2655), + [anon_sym_LBRACE] = ACTIONS(2657), + [anon_sym_LBRACK] = ACTIONS(2655), + [anon_sym_static] = ACTIONS(2655), + [anon_sym_register] = ACTIONS(2655), + [anon_sym_inline] = ACTIONS(2655), + [anon_sym_thread_local] = ACTIONS(2655), + [anon_sym_const] = ACTIONS(2655), + [anon_sym_volatile] = ACTIONS(2655), + [anon_sym_restrict] = ACTIONS(2655), + [anon_sym__Atomic] = ACTIONS(2655), + [anon_sym_mutable] = ACTIONS(2655), + [anon_sym_constexpr] = ACTIONS(2655), + [anon_sym_constinit] = ACTIONS(2655), + [anon_sym_consteval] = ACTIONS(2655), + [anon_sym_signed] = ACTIONS(2655), + [anon_sym_unsigned] = ACTIONS(2655), + [anon_sym_long] = ACTIONS(2655), + [anon_sym_short] = ACTIONS(2655), + [sym_primitive_type] = ACTIONS(2655), + [anon_sym_enum] = ACTIONS(2655), + [anon_sym_class] = ACTIONS(2655), + [anon_sym_struct] = ACTIONS(2655), + [anon_sym_union] = ACTIONS(2655), + [anon_sym_if] = ACTIONS(2655), + [anon_sym_else] = ACTIONS(2655), + [anon_sym_switch] = ACTIONS(2655), + [anon_sym_case] = ACTIONS(2655), + [anon_sym_default] = ACTIONS(2655), + [anon_sym_while] = ACTIONS(2655), + [anon_sym_do] = ACTIONS(2655), + [anon_sym_for] = ACTIONS(2655), + [anon_sym_return] = ACTIONS(2655), + [anon_sym_break] = ACTIONS(2655), + [anon_sym_continue] = ACTIONS(2655), + [anon_sym_goto] = ACTIONS(2655), + [anon_sym_not] = ACTIONS(2655), + [anon_sym_compl] = ACTIONS(2655), + [anon_sym_DASH_DASH] = ACTIONS(2657), + [anon_sym_PLUS_PLUS] = ACTIONS(2657), + [anon_sym_sizeof] = ACTIONS(2655), + [sym_number_literal] = ACTIONS(2657), + [anon_sym_L_SQUOTE] = ACTIONS(2657), + [anon_sym_u_SQUOTE] = ACTIONS(2657), + [anon_sym_U_SQUOTE] = ACTIONS(2657), + [anon_sym_u8_SQUOTE] = ACTIONS(2657), + [anon_sym_SQUOTE] = ACTIONS(2657), + [anon_sym_L_DQUOTE] = ACTIONS(2657), + [anon_sym_u_DQUOTE] = ACTIONS(2657), + [anon_sym_U_DQUOTE] = ACTIONS(2657), + [anon_sym_u8_DQUOTE] = ACTIONS(2657), + [anon_sym_DQUOTE] = ACTIONS(2657), + [sym_true] = ACTIONS(2655), + [sym_false] = ACTIONS(2655), + [sym_null] = ACTIONS(2655), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2655), + [anon_sym_decltype] = ACTIONS(2655), + [anon_sym_virtual] = ACTIONS(2655), + [anon_sym_explicit] = ACTIONS(2655), + [anon_sym_typename] = ACTIONS(2655), + [anon_sym_template] = ACTIONS(2655), + [anon_sym_operator] = ACTIONS(2655), + [anon_sym_try] = ACTIONS(2655), + [anon_sym_delete] = ACTIONS(2655), + [anon_sym_throw] = ACTIONS(2655), + [anon_sym_namespace] = ACTIONS(2655), + [anon_sym_using] = ACTIONS(2655), + [anon_sym_static_assert] = ACTIONS(2655), + [anon_sym_concept] = ACTIONS(2655), + [anon_sym_co_return] = ACTIONS(2655), + [anon_sym_co_yield] = ACTIONS(2655), + [anon_sym_co_await] = ACTIONS(2655), + [anon_sym_new] = ACTIONS(2655), + [anon_sym_requires] = ACTIONS(2655), + [sym_this] = ACTIONS(2655), + [sym_nullptr] = ACTIONS(2655), + [sym_raw_string_literal] = ACTIONS(2657), }, - [950] = { - [sym_identifier] = ACTIONS(2685), - [aux_sym_preproc_include_token1] = ACTIONS(2685), - [aux_sym_preproc_def_token1] = ACTIONS(2685), - [aux_sym_preproc_if_token1] = ACTIONS(2685), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2685), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2685), - [sym_preproc_directive] = ACTIONS(2685), - [anon_sym_LPAREN2] = ACTIONS(2687), - [anon_sym_BANG] = ACTIONS(2687), - [anon_sym_TILDE] = ACTIONS(2687), - [anon_sym_DASH] = ACTIONS(2685), - [anon_sym_PLUS] = ACTIONS(2685), - [anon_sym_STAR] = ACTIONS(2687), - [anon_sym_AMP_AMP] = ACTIONS(2687), - [anon_sym_AMP] = ACTIONS(2685), - [anon_sym_SEMI] = ACTIONS(2687), - [anon_sym_typedef] = ACTIONS(2685), - [anon_sym_extern] = ACTIONS(2685), - [anon_sym___attribute__] = ACTIONS(2685), - [anon_sym_COLON_COLON] = ACTIONS(2687), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2687), - [anon_sym___declspec] = ACTIONS(2685), - [anon_sym___based] = ACTIONS(2685), - [anon_sym___cdecl] = ACTIONS(2685), - [anon_sym___clrcall] = ACTIONS(2685), - [anon_sym___stdcall] = ACTIONS(2685), - [anon_sym___fastcall] = ACTIONS(2685), - [anon_sym___thiscall] = ACTIONS(2685), - [anon_sym___vectorcall] = ACTIONS(2685), - [anon_sym_LBRACE] = ACTIONS(2687), - [anon_sym_RBRACE] = ACTIONS(2687), - [anon_sym_LBRACK] = ACTIONS(2685), - [anon_sym_static] = ACTIONS(2685), - [anon_sym_register] = ACTIONS(2685), - [anon_sym_inline] = ACTIONS(2685), - [anon_sym_thread_local] = ACTIONS(2685), - [anon_sym_const] = ACTIONS(2685), - [anon_sym_volatile] = ACTIONS(2685), - [anon_sym_restrict] = ACTIONS(2685), - [anon_sym__Atomic] = ACTIONS(2685), - [anon_sym_mutable] = ACTIONS(2685), - [anon_sym_constexpr] = ACTIONS(2685), - [anon_sym_constinit] = ACTIONS(2685), - [anon_sym_consteval] = ACTIONS(2685), - [anon_sym_signed] = ACTIONS(2685), - [anon_sym_unsigned] = ACTIONS(2685), - [anon_sym_long] = ACTIONS(2685), - [anon_sym_short] = ACTIONS(2685), - [sym_primitive_type] = ACTIONS(2685), - [anon_sym_enum] = ACTIONS(2685), - [anon_sym_class] = ACTIONS(2685), - [anon_sym_struct] = ACTIONS(2685), - [anon_sym_union] = ACTIONS(2685), - [anon_sym_if] = ACTIONS(2685), - [anon_sym_switch] = ACTIONS(2685), - [anon_sym_case] = ACTIONS(2685), - [anon_sym_default] = ACTIONS(2685), - [anon_sym_while] = ACTIONS(2685), - [anon_sym_do] = ACTIONS(2685), - [anon_sym_for] = ACTIONS(2685), - [anon_sym_return] = ACTIONS(2685), - [anon_sym_break] = ACTIONS(2685), - [anon_sym_continue] = ACTIONS(2685), - [anon_sym_goto] = ACTIONS(2685), - [anon_sym_DASH_DASH] = ACTIONS(2687), - [anon_sym_PLUS_PLUS] = ACTIONS(2687), - [anon_sym_sizeof] = ACTIONS(2685), - [sym_number_literal] = ACTIONS(2687), - [anon_sym_L_SQUOTE] = ACTIONS(2687), - [anon_sym_u_SQUOTE] = ACTIONS(2687), - [anon_sym_U_SQUOTE] = ACTIONS(2687), - [anon_sym_u8_SQUOTE] = ACTIONS(2687), - [anon_sym_SQUOTE] = ACTIONS(2687), - [anon_sym_L_DQUOTE] = ACTIONS(2687), - [anon_sym_u_DQUOTE] = ACTIONS(2687), - [anon_sym_U_DQUOTE] = ACTIONS(2687), - [anon_sym_u8_DQUOTE] = ACTIONS(2687), - [anon_sym_DQUOTE] = ACTIONS(2687), - [sym_true] = ACTIONS(2685), - [sym_false] = ACTIONS(2685), - [sym_null] = ACTIONS(2685), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2685), - [anon_sym_decltype] = ACTIONS(2685), - [anon_sym_virtual] = ACTIONS(2685), - [anon_sym_explicit] = ACTIONS(2685), - [anon_sym_typename] = ACTIONS(2685), - [anon_sym_template] = ACTIONS(2685), - [anon_sym_operator] = ACTIONS(2685), - [anon_sym_try] = ACTIONS(2685), - [anon_sym_delete] = ACTIONS(2685), - [anon_sym_throw] = ACTIONS(2685), - [anon_sym_namespace] = ACTIONS(2685), - [anon_sym_using] = ACTIONS(2685), - [anon_sym_static_assert] = ACTIONS(2685), - [anon_sym_concept] = ACTIONS(2685), - [anon_sym_co_return] = ACTIONS(2685), - [anon_sym_co_yield] = ACTIONS(2685), - [anon_sym_co_await] = ACTIONS(2685), - [anon_sym_new] = ACTIONS(2685), - [anon_sym_requires] = ACTIONS(2685), - [sym_this] = ACTIONS(2685), - [sym_nullptr] = ACTIONS(2685), - [sym_raw_string_literal] = ACTIONS(2687), + [597] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token2] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [951] = { - [ts_builtin_sym_end] = ACTIONS(2771), - [sym_identifier] = ACTIONS(2769), - [aux_sym_preproc_include_token1] = ACTIONS(2769), - [aux_sym_preproc_def_token1] = ACTIONS(2769), - [aux_sym_preproc_if_token1] = ACTIONS(2769), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2769), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2769), - [sym_preproc_directive] = ACTIONS(2769), - [anon_sym_LPAREN2] = ACTIONS(2771), - [anon_sym_BANG] = ACTIONS(2771), - [anon_sym_TILDE] = ACTIONS(2771), - [anon_sym_DASH] = ACTIONS(2769), - [anon_sym_PLUS] = ACTIONS(2769), - [anon_sym_STAR] = ACTIONS(2771), - [anon_sym_AMP_AMP] = ACTIONS(2771), - [anon_sym_AMP] = ACTIONS(2769), - [anon_sym_SEMI] = ACTIONS(2771), - [anon_sym_typedef] = ACTIONS(2769), - [anon_sym_extern] = ACTIONS(2769), - [anon_sym___attribute__] = ACTIONS(2769), - [anon_sym_COLON_COLON] = ACTIONS(2771), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2771), - [anon_sym___declspec] = ACTIONS(2769), - [anon_sym___based] = ACTIONS(2769), - [anon_sym___cdecl] = ACTIONS(2769), - [anon_sym___clrcall] = ACTIONS(2769), - [anon_sym___stdcall] = ACTIONS(2769), - [anon_sym___fastcall] = ACTIONS(2769), - [anon_sym___thiscall] = ACTIONS(2769), - [anon_sym___vectorcall] = ACTIONS(2769), - [anon_sym_LBRACE] = ACTIONS(2771), - [anon_sym_LBRACK] = ACTIONS(2769), - [anon_sym_static] = ACTIONS(2769), - [anon_sym_register] = ACTIONS(2769), - [anon_sym_inline] = ACTIONS(2769), - [anon_sym_thread_local] = ACTIONS(2769), - [anon_sym_const] = ACTIONS(2769), - [anon_sym_volatile] = ACTIONS(2769), - [anon_sym_restrict] = ACTIONS(2769), - [anon_sym__Atomic] = ACTIONS(2769), - [anon_sym_mutable] = ACTIONS(2769), - [anon_sym_constexpr] = ACTIONS(2769), - [anon_sym_constinit] = ACTIONS(2769), - [anon_sym_consteval] = ACTIONS(2769), - [anon_sym_signed] = ACTIONS(2769), - [anon_sym_unsigned] = ACTIONS(2769), - [anon_sym_long] = ACTIONS(2769), - [anon_sym_short] = ACTIONS(2769), - [sym_primitive_type] = ACTIONS(2769), - [anon_sym_enum] = ACTIONS(2769), - [anon_sym_class] = ACTIONS(2769), - [anon_sym_struct] = ACTIONS(2769), - [anon_sym_union] = ACTIONS(2769), - [anon_sym_if] = ACTIONS(2769), - [anon_sym_switch] = ACTIONS(2769), - [anon_sym_case] = ACTIONS(2769), - [anon_sym_default] = ACTIONS(2769), - [anon_sym_while] = ACTIONS(2769), - [anon_sym_do] = ACTIONS(2769), - [anon_sym_for] = ACTIONS(2769), - [anon_sym_return] = ACTIONS(2769), - [anon_sym_break] = ACTIONS(2769), - [anon_sym_continue] = ACTIONS(2769), - [anon_sym_goto] = ACTIONS(2769), - [anon_sym_DASH_DASH] = ACTIONS(2771), - [anon_sym_PLUS_PLUS] = ACTIONS(2771), - [anon_sym_sizeof] = ACTIONS(2769), - [sym_number_literal] = ACTIONS(2771), - [anon_sym_L_SQUOTE] = ACTIONS(2771), - [anon_sym_u_SQUOTE] = ACTIONS(2771), - [anon_sym_U_SQUOTE] = ACTIONS(2771), - [anon_sym_u8_SQUOTE] = ACTIONS(2771), - [anon_sym_SQUOTE] = ACTIONS(2771), - [anon_sym_L_DQUOTE] = ACTIONS(2771), - [anon_sym_u_DQUOTE] = ACTIONS(2771), - [anon_sym_U_DQUOTE] = ACTIONS(2771), - [anon_sym_u8_DQUOTE] = ACTIONS(2771), - [anon_sym_DQUOTE] = ACTIONS(2771), - [sym_true] = ACTIONS(2769), - [sym_false] = ACTIONS(2769), - [sym_null] = ACTIONS(2769), + [598] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token2] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2769), - [anon_sym_decltype] = ACTIONS(2769), - [anon_sym_virtual] = ACTIONS(2769), - [anon_sym_explicit] = ACTIONS(2769), - [anon_sym_typename] = ACTIONS(2769), - [anon_sym_template] = ACTIONS(2769), - [anon_sym_operator] = ACTIONS(2769), - [anon_sym_try] = ACTIONS(2769), - [anon_sym_delete] = ACTIONS(2769), - [anon_sym_throw] = ACTIONS(2769), - [anon_sym_namespace] = ACTIONS(2769), - [anon_sym_using] = ACTIONS(2769), - [anon_sym_static_assert] = ACTIONS(2769), - [anon_sym_concept] = ACTIONS(2769), - [anon_sym_co_return] = ACTIONS(2769), - [anon_sym_co_yield] = ACTIONS(2769), - [anon_sym_co_await] = ACTIONS(2769), - [anon_sym_new] = ACTIONS(2769), - [anon_sym_requires] = ACTIONS(2769), - [sym_this] = ACTIONS(2769), - [sym_nullptr] = ACTIONS(2769), - [sym_raw_string_literal] = ACTIONS(2771), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [952] = { - [sym_identifier] = ACTIONS(2665), - [aux_sym_preproc_include_token1] = ACTIONS(2665), - [aux_sym_preproc_def_token1] = ACTIONS(2665), - [aux_sym_preproc_if_token1] = ACTIONS(2665), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2665), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2665), - [sym_preproc_directive] = ACTIONS(2665), - [anon_sym_LPAREN2] = ACTIONS(2667), - [anon_sym_BANG] = ACTIONS(2667), - [anon_sym_TILDE] = ACTIONS(2667), - [anon_sym_DASH] = ACTIONS(2665), - [anon_sym_PLUS] = ACTIONS(2665), - [anon_sym_STAR] = ACTIONS(2667), - [anon_sym_AMP_AMP] = ACTIONS(2667), - [anon_sym_AMP] = ACTIONS(2665), - [anon_sym_SEMI] = ACTIONS(2667), - [anon_sym_typedef] = ACTIONS(2665), - [anon_sym_extern] = ACTIONS(2665), - [anon_sym___attribute__] = ACTIONS(2665), - [anon_sym_COLON_COLON] = ACTIONS(2667), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2667), - [anon_sym___declspec] = ACTIONS(2665), - [anon_sym___based] = ACTIONS(2665), - [anon_sym___cdecl] = ACTIONS(2665), - [anon_sym___clrcall] = ACTIONS(2665), - [anon_sym___stdcall] = ACTIONS(2665), - [anon_sym___fastcall] = ACTIONS(2665), - [anon_sym___thiscall] = ACTIONS(2665), - [anon_sym___vectorcall] = ACTIONS(2665), - [anon_sym_LBRACE] = ACTIONS(2667), - [anon_sym_RBRACE] = ACTIONS(2667), - [anon_sym_LBRACK] = ACTIONS(2665), - [anon_sym_static] = ACTIONS(2665), - [anon_sym_register] = ACTIONS(2665), - [anon_sym_inline] = ACTIONS(2665), - [anon_sym_thread_local] = ACTIONS(2665), - [anon_sym_const] = ACTIONS(2665), - [anon_sym_volatile] = ACTIONS(2665), - [anon_sym_restrict] = ACTIONS(2665), - [anon_sym__Atomic] = ACTIONS(2665), - [anon_sym_mutable] = ACTIONS(2665), - [anon_sym_constexpr] = ACTIONS(2665), - [anon_sym_constinit] = ACTIONS(2665), - [anon_sym_consteval] = ACTIONS(2665), - [anon_sym_signed] = ACTIONS(2665), - [anon_sym_unsigned] = ACTIONS(2665), - [anon_sym_long] = ACTIONS(2665), - [anon_sym_short] = ACTIONS(2665), - [sym_primitive_type] = ACTIONS(2665), - [anon_sym_enum] = ACTIONS(2665), - [anon_sym_class] = ACTIONS(2665), - [anon_sym_struct] = ACTIONS(2665), - [anon_sym_union] = ACTIONS(2665), - [anon_sym_if] = ACTIONS(2665), - [anon_sym_switch] = ACTIONS(2665), - [anon_sym_case] = ACTIONS(2665), - [anon_sym_default] = ACTIONS(2665), - [anon_sym_while] = ACTIONS(2665), - [anon_sym_do] = ACTIONS(2665), - [anon_sym_for] = ACTIONS(2665), - [anon_sym_return] = ACTIONS(2665), - [anon_sym_break] = ACTIONS(2665), - [anon_sym_continue] = ACTIONS(2665), - [anon_sym_goto] = ACTIONS(2665), - [anon_sym_DASH_DASH] = ACTIONS(2667), - [anon_sym_PLUS_PLUS] = ACTIONS(2667), - [anon_sym_sizeof] = ACTIONS(2665), - [sym_number_literal] = ACTIONS(2667), - [anon_sym_L_SQUOTE] = ACTIONS(2667), - [anon_sym_u_SQUOTE] = ACTIONS(2667), - [anon_sym_U_SQUOTE] = ACTIONS(2667), - [anon_sym_u8_SQUOTE] = ACTIONS(2667), - [anon_sym_SQUOTE] = ACTIONS(2667), - [anon_sym_L_DQUOTE] = ACTIONS(2667), - [anon_sym_u_DQUOTE] = ACTIONS(2667), - [anon_sym_U_DQUOTE] = ACTIONS(2667), - [anon_sym_u8_DQUOTE] = ACTIONS(2667), - [anon_sym_DQUOTE] = ACTIONS(2667), - [sym_true] = ACTIONS(2665), - [sym_false] = ACTIONS(2665), - [sym_null] = ACTIONS(2665), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2665), - [anon_sym_decltype] = ACTIONS(2665), - [anon_sym_virtual] = ACTIONS(2665), - [anon_sym_explicit] = ACTIONS(2665), - [anon_sym_typename] = ACTIONS(2665), - [anon_sym_template] = ACTIONS(2665), - [anon_sym_operator] = ACTIONS(2665), - [anon_sym_try] = ACTIONS(2665), - [anon_sym_delete] = ACTIONS(2665), - [anon_sym_throw] = ACTIONS(2665), - [anon_sym_namespace] = ACTIONS(2665), - [anon_sym_using] = ACTIONS(2665), - [anon_sym_static_assert] = ACTIONS(2665), - [anon_sym_concept] = ACTIONS(2665), - [anon_sym_co_return] = ACTIONS(2665), - [anon_sym_co_yield] = ACTIONS(2665), - [anon_sym_co_await] = ACTIONS(2665), - [anon_sym_new] = ACTIONS(2665), - [anon_sym_requires] = ACTIONS(2665), - [sym_this] = ACTIONS(2665), - [sym_nullptr] = ACTIONS(2665), - [sym_raw_string_literal] = ACTIONS(2667), + [599] = { + [ts_builtin_sym_end] = ACTIONS(2561), + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [953] = { - [sym_identifier] = ACTIONS(2777), - [aux_sym_preproc_include_token1] = ACTIONS(2777), - [aux_sym_preproc_def_token1] = ACTIONS(2777), - [aux_sym_preproc_if_token1] = ACTIONS(2777), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2777), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2777), - [sym_preproc_directive] = ACTIONS(2777), - [anon_sym_LPAREN2] = ACTIONS(2779), - [anon_sym_BANG] = ACTIONS(2779), - [anon_sym_TILDE] = ACTIONS(2779), - [anon_sym_DASH] = ACTIONS(2777), - [anon_sym_PLUS] = ACTIONS(2777), - [anon_sym_STAR] = ACTIONS(2779), - [anon_sym_AMP_AMP] = ACTIONS(2779), - [anon_sym_AMP] = ACTIONS(2777), - [anon_sym_SEMI] = ACTIONS(2779), - [anon_sym_typedef] = ACTIONS(2777), - [anon_sym_extern] = ACTIONS(2777), - [anon_sym___attribute__] = ACTIONS(2777), - [anon_sym_COLON_COLON] = ACTIONS(2779), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2779), - [anon_sym___declspec] = ACTIONS(2777), - [anon_sym___based] = ACTIONS(2777), - [anon_sym___cdecl] = ACTIONS(2777), - [anon_sym___clrcall] = ACTIONS(2777), - [anon_sym___stdcall] = ACTIONS(2777), - [anon_sym___fastcall] = ACTIONS(2777), - [anon_sym___thiscall] = ACTIONS(2777), - [anon_sym___vectorcall] = ACTIONS(2777), - [anon_sym_LBRACE] = ACTIONS(2779), - [anon_sym_RBRACE] = ACTIONS(2779), - [anon_sym_LBRACK] = ACTIONS(2777), - [anon_sym_static] = ACTIONS(2777), - [anon_sym_register] = ACTIONS(2777), - [anon_sym_inline] = ACTIONS(2777), - [anon_sym_thread_local] = ACTIONS(2777), - [anon_sym_const] = ACTIONS(2777), - [anon_sym_volatile] = ACTIONS(2777), - [anon_sym_restrict] = ACTIONS(2777), - [anon_sym__Atomic] = ACTIONS(2777), - [anon_sym_mutable] = ACTIONS(2777), - [anon_sym_constexpr] = ACTIONS(2777), - [anon_sym_constinit] = ACTIONS(2777), - [anon_sym_consteval] = ACTIONS(2777), - [anon_sym_signed] = ACTIONS(2777), - [anon_sym_unsigned] = ACTIONS(2777), - [anon_sym_long] = ACTIONS(2777), - [anon_sym_short] = ACTIONS(2777), - [sym_primitive_type] = ACTIONS(2777), - [anon_sym_enum] = ACTIONS(2777), - [anon_sym_class] = ACTIONS(2777), - [anon_sym_struct] = ACTIONS(2777), - [anon_sym_union] = ACTIONS(2777), - [anon_sym_if] = ACTIONS(2777), - [anon_sym_switch] = ACTIONS(2777), - [anon_sym_case] = ACTIONS(2777), - [anon_sym_default] = ACTIONS(2777), - [anon_sym_while] = ACTIONS(2777), - [anon_sym_do] = ACTIONS(2777), - [anon_sym_for] = ACTIONS(2777), - [anon_sym_return] = ACTIONS(2777), - [anon_sym_break] = ACTIONS(2777), - [anon_sym_continue] = ACTIONS(2777), - [anon_sym_goto] = ACTIONS(2777), - [anon_sym_DASH_DASH] = ACTIONS(2779), - [anon_sym_PLUS_PLUS] = ACTIONS(2779), - [anon_sym_sizeof] = ACTIONS(2777), - [sym_number_literal] = ACTIONS(2779), - [anon_sym_L_SQUOTE] = ACTIONS(2779), - [anon_sym_u_SQUOTE] = ACTIONS(2779), - [anon_sym_U_SQUOTE] = ACTIONS(2779), - [anon_sym_u8_SQUOTE] = ACTIONS(2779), - [anon_sym_SQUOTE] = ACTIONS(2779), - [anon_sym_L_DQUOTE] = ACTIONS(2779), - [anon_sym_u_DQUOTE] = ACTIONS(2779), - [anon_sym_U_DQUOTE] = ACTIONS(2779), - [anon_sym_u8_DQUOTE] = ACTIONS(2779), - [anon_sym_DQUOTE] = ACTIONS(2779), - [sym_true] = ACTIONS(2777), - [sym_false] = ACTIONS(2777), - [sym_null] = ACTIONS(2777), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2777), - [anon_sym_decltype] = ACTIONS(2777), - [anon_sym_virtual] = ACTIONS(2777), - [anon_sym_explicit] = ACTIONS(2777), - [anon_sym_typename] = ACTIONS(2777), - [anon_sym_template] = ACTIONS(2777), - [anon_sym_operator] = ACTIONS(2777), - [anon_sym_try] = ACTIONS(2777), - [anon_sym_delete] = ACTIONS(2777), - [anon_sym_throw] = ACTIONS(2777), - [anon_sym_namespace] = ACTIONS(2777), - [anon_sym_using] = ACTIONS(2777), - [anon_sym_static_assert] = ACTIONS(2777), - [anon_sym_concept] = ACTIONS(2777), - [anon_sym_co_return] = ACTIONS(2777), - [anon_sym_co_yield] = ACTIONS(2777), - [anon_sym_co_await] = ACTIONS(2777), - [anon_sym_new] = ACTIONS(2777), - [anon_sym_requires] = ACTIONS(2777), - [sym_this] = ACTIONS(2777), - [sym_nullptr] = ACTIONS(2777), - [sym_raw_string_literal] = ACTIONS(2779), + [600] = { + [ts_builtin_sym_end] = ACTIONS(2561), + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [954] = { - [sym_identifier] = ACTIONS(2773), - [aux_sym_preproc_include_token1] = ACTIONS(2773), - [aux_sym_preproc_def_token1] = ACTIONS(2773), - [aux_sym_preproc_if_token1] = ACTIONS(2773), - [aux_sym_preproc_if_token2] = ACTIONS(2773), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2773), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2773), - [sym_preproc_directive] = ACTIONS(2773), - [anon_sym_LPAREN2] = ACTIONS(2775), - [anon_sym_BANG] = ACTIONS(2775), - [anon_sym_TILDE] = ACTIONS(2775), - [anon_sym_DASH] = ACTIONS(2773), - [anon_sym_PLUS] = ACTIONS(2773), - [anon_sym_STAR] = ACTIONS(2775), - [anon_sym_AMP_AMP] = ACTIONS(2775), - [anon_sym_AMP] = ACTIONS(2773), - [anon_sym_SEMI] = ACTIONS(2775), - [anon_sym_typedef] = ACTIONS(2773), - [anon_sym_extern] = ACTIONS(2773), - [anon_sym___attribute__] = ACTIONS(2773), - [anon_sym_COLON_COLON] = ACTIONS(2775), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2775), - [anon_sym___declspec] = ACTIONS(2773), - [anon_sym___based] = ACTIONS(2773), - [anon_sym___cdecl] = ACTIONS(2773), - [anon_sym___clrcall] = ACTIONS(2773), - [anon_sym___stdcall] = ACTIONS(2773), - [anon_sym___fastcall] = ACTIONS(2773), - [anon_sym___thiscall] = ACTIONS(2773), - [anon_sym___vectorcall] = ACTIONS(2773), - [anon_sym_LBRACE] = ACTIONS(2775), - [anon_sym_LBRACK] = ACTIONS(2773), - [anon_sym_static] = ACTIONS(2773), - [anon_sym_register] = ACTIONS(2773), - [anon_sym_inline] = ACTIONS(2773), - [anon_sym_thread_local] = ACTIONS(2773), - [anon_sym_const] = ACTIONS(2773), - [anon_sym_volatile] = ACTIONS(2773), - [anon_sym_restrict] = ACTIONS(2773), - [anon_sym__Atomic] = ACTIONS(2773), - [anon_sym_mutable] = ACTIONS(2773), - [anon_sym_constexpr] = ACTIONS(2773), - [anon_sym_constinit] = ACTIONS(2773), - [anon_sym_consteval] = ACTIONS(2773), - [anon_sym_signed] = ACTIONS(2773), - [anon_sym_unsigned] = ACTIONS(2773), - [anon_sym_long] = ACTIONS(2773), - [anon_sym_short] = ACTIONS(2773), - [sym_primitive_type] = ACTIONS(2773), - [anon_sym_enum] = ACTIONS(2773), - [anon_sym_class] = ACTIONS(2773), - [anon_sym_struct] = ACTIONS(2773), - [anon_sym_union] = ACTIONS(2773), - [anon_sym_if] = ACTIONS(2773), - [anon_sym_switch] = ACTIONS(2773), - [anon_sym_case] = ACTIONS(2773), - [anon_sym_default] = ACTIONS(2773), - [anon_sym_while] = ACTIONS(2773), - [anon_sym_do] = ACTIONS(2773), - [anon_sym_for] = ACTIONS(2773), - [anon_sym_return] = ACTIONS(2773), - [anon_sym_break] = ACTIONS(2773), - [anon_sym_continue] = ACTIONS(2773), - [anon_sym_goto] = ACTIONS(2773), - [anon_sym_DASH_DASH] = ACTIONS(2775), - [anon_sym_PLUS_PLUS] = ACTIONS(2775), - [anon_sym_sizeof] = ACTIONS(2773), - [sym_number_literal] = ACTIONS(2775), - [anon_sym_L_SQUOTE] = ACTIONS(2775), - [anon_sym_u_SQUOTE] = ACTIONS(2775), - [anon_sym_U_SQUOTE] = ACTIONS(2775), - [anon_sym_u8_SQUOTE] = ACTIONS(2775), - [anon_sym_SQUOTE] = ACTIONS(2775), - [anon_sym_L_DQUOTE] = ACTIONS(2775), - [anon_sym_u_DQUOTE] = ACTIONS(2775), - [anon_sym_U_DQUOTE] = ACTIONS(2775), - [anon_sym_u8_DQUOTE] = ACTIONS(2775), - [anon_sym_DQUOTE] = ACTIONS(2775), - [sym_true] = ACTIONS(2773), - [sym_false] = ACTIONS(2773), - [sym_null] = ACTIONS(2773), + [601] = { + [ts_builtin_sym_end] = ACTIONS(2657), + [sym_identifier] = ACTIONS(2655), + [aux_sym_preproc_include_token1] = ACTIONS(2655), + [aux_sym_preproc_def_token1] = ACTIONS(2655), + [aux_sym_preproc_if_token1] = ACTIONS(2655), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2655), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2655), + [sym_preproc_directive] = ACTIONS(2655), + [anon_sym_LPAREN2] = ACTIONS(2657), + [anon_sym_BANG] = ACTIONS(2657), + [anon_sym_TILDE] = ACTIONS(2657), + [anon_sym_DASH] = ACTIONS(2655), + [anon_sym_PLUS] = ACTIONS(2655), + [anon_sym_STAR] = ACTIONS(2657), + [anon_sym_AMP_AMP] = ACTIONS(2657), + [anon_sym_AMP] = ACTIONS(2655), + [anon_sym_SEMI] = ACTIONS(2657), + [anon_sym_typedef] = ACTIONS(2655), + [anon_sym_extern] = ACTIONS(2655), + [anon_sym___attribute__] = ACTIONS(2655), + [anon_sym_COLON_COLON] = ACTIONS(2657), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2657), + [anon_sym___declspec] = ACTIONS(2655), + [anon_sym___based] = ACTIONS(2655), + [anon_sym___cdecl] = ACTIONS(2655), + [anon_sym___clrcall] = ACTIONS(2655), + [anon_sym___stdcall] = ACTIONS(2655), + [anon_sym___fastcall] = ACTIONS(2655), + [anon_sym___thiscall] = ACTIONS(2655), + [anon_sym___vectorcall] = ACTIONS(2655), + [anon_sym_LBRACE] = ACTIONS(2657), + [anon_sym_LBRACK] = ACTIONS(2655), + [anon_sym_static] = ACTIONS(2655), + [anon_sym_register] = ACTIONS(2655), + [anon_sym_inline] = ACTIONS(2655), + [anon_sym_thread_local] = ACTIONS(2655), + [anon_sym_const] = ACTIONS(2655), + [anon_sym_volatile] = ACTIONS(2655), + [anon_sym_restrict] = ACTIONS(2655), + [anon_sym__Atomic] = ACTIONS(2655), + [anon_sym_mutable] = ACTIONS(2655), + [anon_sym_constexpr] = ACTIONS(2655), + [anon_sym_constinit] = ACTIONS(2655), + [anon_sym_consteval] = ACTIONS(2655), + [anon_sym_signed] = ACTIONS(2655), + [anon_sym_unsigned] = ACTIONS(2655), + [anon_sym_long] = ACTIONS(2655), + [anon_sym_short] = ACTIONS(2655), + [sym_primitive_type] = ACTIONS(2655), + [anon_sym_enum] = ACTIONS(2655), + [anon_sym_class] = ACTIONS(2655), + [anon_sym_struct] = ACTIONS(2655), + [anon_sym_union] = ACTIONS(2655), + [anon_sym_if] = ACTIONS(2655), + [anon_sym_else] = ACTIONS(2655), + [anon_sym_switch] = ACTIONS(2655), + [anon_sym_case] = ACTIONS(2655), + [anon_sym_default] = ACTIONS(2655), + [anon_sym_while] = ACTIONS(2655), + [anon_sym_do] = ACTIONS(2655), + [anon_sym_for] = ACTIONS(2655), + [anon_sym_return] = ACTIONS(2655), + [anon_sym_break] = ACTIONS(2655), + [anon_sym_continue] = ACTIONS(2655), + [anon_sym_goto] = ACTIONS(2655), + [anon_sym_not] = ACTIONS(2655), + [anon_sym_compl] = ACTIONS(2655), + [anon_sym_DASH_DASH] = ACTIONS(2657), + [anon_sym_PLUS_PLUS] = ACTIONS(2657), + [anon_sym_sizeof] = ACTIONS(2655), + [sym_number_literal] = ACTIONS(2657), + [anon_sym_L_SQUOTE] = ACTIONS(2657), + [anon_sym_u_SQUOTE] = ACTIONS(2657), + [anon_sym_U_SQUOTE] = ACTIONS(2657), + [anon_sym_u8_SQUOTE] = ACTIONS(2657), + [anon_sym_SQUOTE] = ACTIONS(2657), + [anon_sym_L_DQUOTE] = ACTIONS(2657), + [anon_sym_u_DQUOTE] = ACTIONS(2657), + [anon_sym_U_DQUOTE] = ACTIONS(2657), + [anon_sym_u8_DQUOTE] = ACTIONS(2657), + [anon_sym_DQUOTE] = ACTIONS(2657), + [sym_true] = ACTIONS(2655), + [sym_false] = ACTIONS(2655), + [sym_null] = ACTIONS(2655), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2773), - [anon_sym_decltype] = ACTIONS(2773), - [anon_sym_virtual] = ACTIONS(2773), - [anon_sym_explicit] = ACTIONS(2773), - [anon_sym_typename] = ACTIONS(2773), - [anon_sym_template] = ACTIONS(2773), - [anon_sym_operator] = ACTIONS(2773), - [anon_sym_try] = ACTIONS(2773), - [anon_sym_delete] = ACTIONS(2773), - [anon_sym_throw] = ACTIONS(2773), - [anon_sym_namespace] = ACTIONS(2773), - [anon_sym_using] = ACTIONS(2773), - [anon_sym_static_assert] = ACTIONS(2773), - [anon_sym_concept] = ACTIONS(2773), - [anon_sym_co_return] = ACTIONS(2773), - [anon_sym_co_yield] = ACTIONS(2773), - [anon_sym_co_await] = ACTIONS(2773), - [anon_sym_new] = ACTIONS(2773), - [anon_sym_requires] = ACTIONS(2773), - [sym_this] = ACTIONS(2773), - [sym_nullptr] = ACTIONS(2773), - [sym_raw_string_literal] = ACTIONS(2775), - }, - [955] = { - [ts_builtin_sym_end] = ACTIONS(2607), - [sym_identifier] = ACTIONS(2605), - [aux_sym_preproc_include_token1] = ACTIONS(2605), - [aux_sym_preproc_def_token1] = ACTIONS(2605), - [aux_sym_preproc_if_token1] = ACTIONS(2605), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2605), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2605), - [sym_preproc_directive] = ACTIONS(2605), - [anon_sym_LPAREN2] = ACTIONS(2607), - [anon_sym_BANG] = ACTIONS(2607), - [anon_sym_TILDE] = ACTIONS(2607), - [anon_sym_DASH] = ACTIONS(2605), - [anon_sym_PLUS] = ACTIONS(2605), - [anon_sym_STAR] = ACTIONS(2607), - [anon_sym_AMP_AMP] = ACTIONS(2607), - [anon_sym_AMP] = ACTIONS(2605), - [anon_sym_SEMI] = ACTIONS(2607), - [anon_sym_typedef] = ACTIONS(2605), - [anon_sym_extern] = ACTIONS(2605), - [anon_sym___attribute__] = ACTIONS(2605), - [anon_sym_COLON_COLON] = ACTIONS(2607), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2607), - [anon_sym___declspec] = ACTIONS(2605), - [anon_sym___based] = ACTIONS(2605), - [anon_sym___cdecl] = ACTIONS(2605), - [anon_sym___clrcall] = ACTIONS(2605), - [anon_sym___stdcall] = ACTIONS(2605), - [anon_sym___fastcall] = ACTIONS(2605), - [anon_sym___thiscall] = ACTIONS(2605), - [anon_sym___vectorcall] = ACTIONS(2605), - [anon_sym_LBRACE] = ACTIONS(2607), - [anon_sym_LBRACK] = ACTIONS(2605), - [anon_sym_static] = ACTIONS(2605), - [anon_sym_register] = ACTIONS(2605), - [anon_sym_inline] = ACTIONS(2605), - [anon_sym_thread_local] = ACTIONS(2605), - [anon_sym_const] = ACTIONS(2605), - [anon_sym_volatile] = ACTIONS(2605), - [anon_sym_restrict] = ACTIONS(2605), - [anon_sym__Atomic] = ACTIONS(2605), - [anon_sym_mutable] = ACTIONS(2605), - [anon_sym_constexpr] = ACTIONS(2605), - [anon_sym_constinit] = ACTIONS(2605), - [anon_sym_consteval] = ACTIONS(2605), - [anon_sym_signed] = ACTIONS(2605), - [anon_sym_unsigned] = ACTIONS(2605), - [anon_sym_long] = ACTIONS(2605), - [anon_sym_short] = ACTIONS(2605), - [sym_primitive_type] = ACTIONS(2605), - [anon_sym_enum] = ACTIONS(2605), - [anon_sym_class] = ACTIONS(2605), - [anon_sym_struct] = ACTIONS(2605), - [anon_sym_union] = ACTIONS(2605), - [anon_sym_if] = ACTIONS(2605), - [anon_sym_switch] = ACTIONS(2605), - [anon_sym_case] = ACTIONS(2605), - [anon_sym_default] = ACTIONS(2605), - [anon_sym_while] = ACTIONS(2605), - [anon_sym_do] = ACTIONS(2605), - [anon_sym_for] = ACTIONS(2605), - [anon_sym_return] = ACTIONS(2605), - [anon_sym_break] = ACTIONS(2605), - [anon_sym_continue] = ACTIONS(2605), - [anon_sym_goto] = ACTIONS(2605), - [anon_sym_DASH_DASH] = ACTIONS(2607), - [anon_sym_PLUS_PLUS] = ACTIONS(2607), - [anon_sym_sizeof] = ACTIONS(2605), - [sym_number_literal] = ACTIONS(2607), - [anon_sym_L_SQUOTE] = ACTIONS(2607), - [anon_sym_u_SQUOTE] = ACTIONS(2607), - [anon_sym_U_SQUOTE] = ACTIONS(2607), - [anon_sym_u8_SQUOTE] = ACTIONS(2607), - [anon_sym_SQUOTE] = ACTIONS(2607), - [anon_sym_L_DQUOTE] = ACTIONS(2607), - [anon_sym_u_DQUOTE] = ACTIONS(2607), - [anon_sym_U_DQUOTE] = ACTIONS(2607), - [anon_sym_u8_DQUOTE] = ACTIONS(2607), - [anon_sym_DQUOTE] = ACTIONS(2607), - [sym_true] = ACTIONS(2605), - [sym_false] = ACTIONS(2605), - [sym_null] = ACTIONS(2605), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2605), - [anon_sym_decltype] = ACTIONS(2605), - [anon_sym_virtual] = ACTIONS(2605), - [anon_sym_explicit] = ACTIONS(2605), - [anon_sym_typename] = ACTIONS(2605), - [anon_sym_template] = ACTIONS(2605), - [anon_sym_operator] = ACTIONS(2605), - [anon_sym_try] = ACTIONS(2605), - [anon_sym_delete] = ACTIONS(2605), - [anon_sym_throw] = ACTIONS(2605), - [anon_sym_namespace] = ACTIONS(2605), - [anon_sym_using] = ACTIONS(2605), - [anon_sym_static_assert] = ACTIONS(2605), - [anon_sym_concept] = ACTIONS(2605), - [anon_sym_co_return] = ACTIONS(2605), - [anon_sym_co_yield] = ACTIONS(2605), - [anon_sym_co_await] = ACTIONS(2605), - [anon_sym_new] = ACTIONS(2605), - [anon_sym_requires] = ACTIONS(2605), - [sym_this] = ACTIONS(2605), - [sym_nullptr] = ACTIONS(2605), - [sym_raw_string_literal] = ACTIONS(2607), + [sym_auto] = ACTIONS(2655), + [anon_sym_decltype] = ACTIONS(2655), + [anon_sym_virtual] = ACTIONS(2655), + [anon_sym_explicit] = ACTIONS(2655), + [anon_sym_typename] = ACTIONS(2655), + [anon_sym_template] = ACTIONS(2655), + [anon_sym_operator] = ACTIONS(2655), + [anon_sym_try] = ACTIONS(2655), + [anon_sym_delete] = ACTIONS(2655), + [anon_sym_throw] = ACTIONS(2655), + [anon_sym_namespace] = ACTIONS(2655), + [anon_sym_using] = ACTIONS(2655), + [anon_sym_static_assert] = ACTIONS(2655), + [anon_sym_concept] = ACTIONS(2655), + [anon_sym_co_return] = ACTIONS(2655), + [anon_sym_co_yield] = ACTIONS(2655), + [anon_sym_co_await] = ACTIONS(2655), + [anon_sym_new] = ACTIONS(2655), + [anon_sym_requires] = ACTIONS(2655), + [sym_this] = ACTIONS(2655), + [sym_nullptr] = ACTIONS(2655), + [sym_raw_string_literal] = ACTIONS(2657), }, - [956] = { - [sym_identifier] = ACTIONS(2789), - [aux_sym_preproc_include_token1] = ACTIONS(2789), - [aux_sym_preproc_def_token1] = ACTIONS(2789), - [aux_sym_preproc_if_token1] = ACTIONS(2789), - [aux_sym_preproc_if_token2] = ACTIONS(2789), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2789), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2789), - [sym_preproc_directive] = ACTIONS(2789), - [anon_sym_LPAREN2] = ACTIONS(2791), - [anon_sym_BANG] = ACTIONS(2791), - [anon_sym_TILDE] = ACTIONS(2791), - [anon_sym_DASH] = ACTIONS(2789), - [anon_sym_PLUS] = ACTIONS(2789), - [anon_sym_STAR] = ACTIONS(2791), - [anon_sym_AMP_AMP] = ACTIONS(2791), - [anon_sym_AMP] = ACTIONS(2789), - [anon_sym_SEMI] = ACTIONS(2791), - [anon_sym_typedef] = ACTIONS(2789), - [anon_sym_extern] = ACTIONS(2789), - [anon_sym___attribute__] = ACTIONS(2789), - [anon_sym_COLON_COLON] = ACTIONS(2791), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2791), - [anon_sym___declspec] = ACTIONS(2789), - [anon_sym___based] = ACTIONS(2789), - [anon_sym___cdecl] = ACTIONS(2789), - [anon_sym___clrcall] = ACTIONS(2789), - [anon_sym___stdcall] = ACTIONS(2789), - [anon_sym___fastcall] = ACTIONS(2789), - [anon_sym___thiscall] = ACTIONS(2789), - [anon_sym___vectorcall] = ACTIONS(2789), - [anon_sym_LBRACE] = ACTIONS(2791), - [anon_sym_LBRACK] = ACTIONS(2789), - [anon_sym_static] = ACTIONS(2789), - [anon_sym_register] = ACTIONS(2789), - [anon_sym_inline] = ACTIONS(2789), - [anon_sym_thread_local] = ACTIONS(2789), - [anon_sym_const] = ACTIONS(2789), - [anon_sym_volatile] = ACTIONS(2789), - [anon_sym_restrict] = ACTIONS(2789), - [anon_sym__Atomic] = ACTIONS(2789), - [anon_sym_mutable] = ACTIONS(2789), - [anon_sym_constexpr] = ACTIONS(2789), - [anon_sym_constinit] = ACTIONS(2789), - [anon_sym_consteval] = ACTIONS(2789), - [anon_sym_signed] = ACTIONS(2789), - [anon_sym_unsigned] = ACTIONS(2789), - [anon_sym_long] = ACTIONS(2789), - [anon_sym_short] = ACTIONS(2789), - [sym_primitive_type] = ACTIONS(2789), - [anon_sym_enum] = ACTIONS(2789), - [anon_sym_class] = ACTIONS(2789), - [anon_sym_struct] = ACTIONS(2789), - [anon_sym_union] = ACTIONS(2789), - [anon_sym_if] = ACTIONS(2789), - [anon_sym_switch] = ACTIONS(2789), - [anon_sym_case] = ACTIONS(2789), - [anon_sym_default] = ACTIONS(2789), - [anon_sym_while] = ACTIONS(2789), - [anon_sym_do] = ACTIONS(2789), - [anon_sym_for] = ACTIONS(2789), - [anon_sym_return] = ACTIONS(2789), - [anon_sym_break] = ACTIONS(2789), - [anon_sym_continue] = ACTIONS(2789), - [anon_sym_goto] = ACTIONS(2789), - [anon_sym_DASH_DASH] = ACTIONS(2791), - [anon_sym_PLUS_PLUS] = ACTIONS(2791), - [anon_sym_sizeof] = ACTIONS(2789), - [sym_number_literal] = ACTIONS(2791), - [anon_sym_L_SQUOTE] = ACTIONS(2791), - [anon_sym_u_SQUOTE] = ACTIONS(2791), - [anon_sym_U_SQUOTE] = ACTIONS(2791), - [anon_sym_u8_SQUOTE] = ACTIONS(2791), - [anon_sym_SQUOTE] = ACTIONS(2791), - [anon_sym_L_DQUOTE] = ACTIONS(2791), - [anon_sym_u_DQUOTE] = ACTIONS(2791), - [anon_sym_U_DQUOTE] = ACTIONS(2791), - [anon_sym_u8_DQUOTE] = ACTIONS(2791), - [anon_sym_DQUOTE] = ACTIONS(2791), - [sym_true] = ACTIONS(2789), - [sym_false] = ACTIONS(2789), - [sym_null] = ACTIONS(2789), + [602] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token2] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2789), - [anon_sym_decltype] = ACTIONS(2789), - [anon_sym_virtual] = ACTIONS(2789), - [anon_sym_explicit] = ACTIONS(2789), - [anon_sym_typename] = ACTIONS(2789), - [anon_sym_template] = ACTIONS(2789), - [anon_sym_operator] = ACTIONS(2789), - [anon_sym_try] = ACTIONS(2789), - [anon_sym_delete] = ACTIONS(2789), - [anon_sym_throw] = ACTIONS(2789), - [anon_sym_namespace] = ACTIONS(2789), - [anon_sym_using] = ACTIONS(2789), - [anon_sym_static_assert] = ACTIONS(2789), - [anon_sym_concept] = ACTIONS(2789), - [anon_sym_co_return] = ACTIONS(2789), - [anon_sym_co_yield] = ACTIONS(2789), - [anon_sym_co_await] = ACTIONS(2789), - [anon_sym_new] = ACTIONS(2789), - [anon_sym_requires] = ACTIONS(2789), - [sym_this] = ACTIONS(2789), - [sym_nullptr] = ACTIONS(2789), - [sym_raw_string_literal] = ACTIONS(2791), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [957] = { - [ts_builtin_sym_end] = ACTIONS(2645), - [sym_identifier] = ACTIONS(2643), - [aux_sym_preproc_include_token1] = ACTIONS(2643), - [aux_sym_preproc_def_token1] = ACTIONS(2643), - [aux_sym_preproc_if_token1] = ACTIONS(2643), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2643), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2643), - [sym_preproc_directive] = ACTIONS(2643), - [anon_sym_LPAREN2] = ACTIONS(2645), - [anon_sym_BANG] = ACTIONS(2645), - [anon_sym_TILDE] = ACTIONS(2645), - [anon_sym_DASH] = ACTIONS(2643), - [anon_sym_PLUS] = ACTIONS(2643), - [anon_sym_STAR] = ACTIONS(2645), - [anon_sym_AMP_AMP] = ACTIONS(2645), - [anon_sym_AMP] = ACTIONS(2643), - [anon_sym_SEMI] = ACTIONS(2645), - [anon_sym_typedef] = ACTIONS(2643), - [anon_sym_extern] = ACTIONS(2643), - [anon_sym___attribute__] = ACTIONS(2643), - [anon_sym_COLON_COLON] = ACTIONS(2645), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2645), - [anon_sym___declspec] = ACTIONS(2643), - [anon_sym___based] = ACTIONS(2643), - [anon_sym___cdecl] = ACTIONS(2643), - [anon_sym___clrcall] = ACTIONS(2643), - [anon_sym___stdcall] = ACTIONS(2643), - [anon_sym___fastcall] = ACTIONS(2643), - [anon_sym___thiscall] = ACTIONS(2643), - [anon_sym___vectorcall] = ACTIONS(2643), - [anon_sym_LBRACE] = ACTIONS(2645), - [anon_sym_LBRACK] = ACTIONS(2643), - [anon_sym_static] = ACTIONS(2643), - [anon_sym_register] = ACTIONS(2643), - [anon_sym_inline] = ACTIONS(2643), - [anon_sym_thread_local] = ACTIONS(2643), - [anon_sym_const] = ACTIONS(2643), - [anon_sym_volatile] = ACTIONS(2643), - [anon_sym_restrict] = ACTIONS(2643), - [anon_sym__Atomic] = ACTIONS(2643), - [anon_sym_mutable] = ACTIONS(2643), - [anon_sym_constexpr] = ACTIONS(2643), - [anon_sym_constinit] = ACTIONS(2643), - [anon_sym_consteval] = ACTIONS(2643), - [anon_sym_signed] = ACTIONS(2643), - [anon_sym_unsigned] = ACTIONS(2643), - [anon_sym_long] = ACTIONS(2643), - [anon_sym_short] = ACTIONS(2643), - [sym_primitive_type] = ACTIONS(2643), - [anon_sym_enum] = ACTIONS(2643), - [anon_sym_class] = ACTIONS(2643), - [anon_sym_struct] = ACTIONS(2643), - [anon_sym_union] = ACTIONS(2643), - [anon_sym_if] = ACTIONS(2643), - [anon_sym_switch] = ACTIONS(2643), - [anon_sym_case] = ACTIONS(2643), - [anon_sym_default] = ACTIONS(2643), - [anon_sym_while] = ACTIONS(2643), - [anon_sym_do] = ACTIONS(2643), - [anon_sym_for] = ACTIONS(2643), - [anon_sym_return] = ACTIONS(2643), - [anon_sym_break] = ACTIONS(2643), - [anon_sym_continue] = ACTIONS(2643), - [anon_sym_goto] = ACTIONS(2643), - [anon_sym_DASH_DASH] = ACTIONS(2645), - [anon_sym_PLUS_PLUS] = ACTIONS(2645), - [anon_sym_sizeof] = ACTIONS(2643), - [sym_number_literal] = ACTIONS(2645), - [anon_sym_L_SQUOTE] = ACTIONS(2645), - [anon_sym_u_SQUOTE] = ACTIONS(2645), - [anon_sym_U_SQUOTE] = ACTIONS(2645), - [anon_sym_u8_SQUOTE] = ACTIONS(2645), - [anon_sym_SQUOTE] = ACTIONS(2645), - [anon_sym_L_DQUOTE] = ACTIONS(2645), - [anon_sym_u_DQUOTE] = ACTIONS(2645), - [anon_sym_U_DQUOTE] = ACTIONS(2645), - [anon_sym_u8_DQUOTE] = ACTIONS(2645), - [anon_sym_DQUOTE] = ACTIONS(2645), - [sym_true] = ACTIONS(2643), - [sym_false] = ACTIONS(2643), - [sym_null] = ACTIONS(2643), + [603] = { + [ts_builtin_sym_end] = ACTIONS(2565), + [sym_identifier] = ACTIONS(2563), + [aux_sym_preproc_include_token1] = ACTIONS(2563), + [aux_sym_preproc_def_token1] = ACTIONS(2563), + [aux_sym_preproc_if_token1] = ACTIONS(2563), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2563), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2563), + [sym_preproc_directive] = ACTIONS(2563), + [anon_sym_LPAREN2] = ACTIONS(2565), + [anon_sym_BANG] = ACTIONS(2565), + [anon_sym_TILDE] = ACTIONS(2565), + [anon_sym_DASH] = ACTIONS(2563), + [anon_sym_PLUS] = ACTIONS(2563), + [anon_sym_STAR] = ACTIONS(2565), + [anon_sym_AMP_AMP] = ACTIONS(2565), + [anon_sym_AMP] = ACTIONS(2563), + [anon_sym_SEMI] = ACTIONS(2565), + [anon_sym_typedef] = ACTIONS(2563), + [anon_sym_extern] = ACTIONS(2563), + [anon_sym___attribute__] = ACTIONS(2563), + [anon_sym_COLON_COLON] = ACTIONS(2565), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2565), + [anon_sym___declspec] = ACTIONS(2563), + [anon_sym___based] = ACTIONS(2563), + [anon_sym___cdecl] = ACTIONS(2563), + [anon_sym___clrcall] = ACTIONS(2563), + [anon_sym___stdcall] = ACTIONS(2563), + [anon_sym___fastcall] = ACTIONS(2563), + [anon_sym___thiscall] = ACTIONS(2563), + [anon_sym___vectorcall] = ACTIONS(2563), + [anon_sym_LBRACE] = ACTIONS(2565), + [anon_sym_LBRACK] = ACTIONS(2563), + [anon_sym_static] = ACTIONS(2563), + [anon_sym_register] = ACTIONS(2563), + [anon_sym_inline] = ACTIONS(2563), + [anon_sym_thread_local] = ACTIONS(2563), + [anon_sym_const] = ACTIONS(2563), + [anon_sym_volatile] = ACTIONS(2563), + [anon_sym_restrict] = ACTIONS(2563), + [anon_sym__Atomic] = ACTIONS(2563), + [anon_sym_mutable] = ACTIONS(2563), + [anon_sym_constexpr] = ACTIONS(2563), + [anon_sym_constinit] = ACTIONS(2563), + [anon_sym_consteval] = ACTIONS(2563), + [anon_sym_signed] = ACTIONS(2563), + [anon_sym_unsigned] = ACTIONS(2563), + [anon_sym_long] = ACTIONS(2563), + [anon_sym_short] = ACTIONS(2563), + [sym_primitive_type] = ACTIONS(2563), + [anon_sym_enum] = ACTIONS(2563), + [anon_sym_class] = ACTIONS(2563), + [anon_sym_struct] = ACTIONS(2563), + [anon_sym_union] = ACTIONS(2563), + [anon_sym_if] = ACTIONS(2563), + [anon_sym_else] = ACTIONS(2563), + [anon_sym_switch] = ACTIONS(2563), + [anon_sym_case] = ACTIONS(2563), + [anon_sym_default] = ACTIONS(2563), + [anon_sym_while] = ACTIONS(2563), + [anon_sym_do] = ACTIONS(2563), + [anon_sym_for] = ACTIONS(2563), + [anon_sym_return] = ACTIONS(2563), + [anon_sym_break] = ACTIONS(2563), + [anon_sym_continue] = ACTIONS(2563), + [anon_sym_goto] = ACTIONS(2563), + [anon_sym_not] = ACTIONS(2563), + [anon_sym_compl] = ACTIONS(2563), + [anon_sym_DASH_DASH] = ACTIONS(2565), + [anon_sym_PLUS_PLUS] = ACTIONS(2565), + [anon_sym_sizeof] = ACTIONS(2563), + [sym_number_literal] = ACTIONS(2565), + [anon_sym_L_SQUOTE] = ACTIONS(2565), + [anon_sym_u_SQUOTE] = ACTIONS(2565), + [anon_sym_U_SQUOTE] = ACTIONS(2565), + [anon_sym_u8_SQUOTE] = ACTIONS(2565), + [anon_sym_SQUOTE] = ACTIONS(2565), + [anon_sym_L_DQUOTE] = ACTIONS(2565), + [anon_sym_u_DQUOTE] = ACTIONS(2565), + [anon_sym_U_DQUOTE] = ACTIONS(2565), + [anon_sym_u8_DQUOTE] = ACTIONS(2565), + [anon_sym_DQUOTE] = ACTIONS(2565), + [sym_true] = ACTIONS(2563), + [sym_false] = ACTIONS(2563), + [sym_null] = ACTIONS(2563), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2643), - [anon_sym_decltype] = ACTIONS(2643), - [anon_sym_virtual] = ACTIONS(2643), - [anon_sym_explicit] = ACTIONS(2643), - [anon_sym_typename] = ACTIONS(2643), - [anon_sym_template] = ACTIONS(2643), - [anon_sym_operator] = ACTIONS(2643), - [anon_sym_try] = ACTIONS(2643), - [anon_sym_delete] = ACTIONS(2643), - [anon_sym_throw] = ACTIONS(2643), - [anon_sym_namespace] = ACTIONS(2643), - [anon_sym_using] = ACTIONS(2643), - [anon_sym_static_assert] = ACTIONS(2643), - [anon_sym_concept] = ACTIONS(2643), - [anon_sym_co_return] = ACTIONS(2643), - [anon_sym_co_yield] = ACTIONS(2643), - [anon_sym_co_await] = ACTIONS(2643), - [anon_sym_new] = ACTIONS(2643), - [anon_sym_requires] = ACTIONS(2643), - [sym_this] = ACTIONS(2643), - [sym_nullptr] = ACTIONS(2643), - [sym_raw_string_literal] = ACTIONS(2645), - }, - [958] = { - [sym_identifier] = ACTIONS(2717), - [aux_sym_preproc_include_token1] = ACTIONS(2717), - [aux_sym_preproc_def_token1] = ACTIONS(2717), - [aux_sym_preproc_if_token1] = ACTIONS(2717), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2717), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2717), - [sym_preproc_directive] = ACTIONS(2717), - [anon_sym_LPAREN2] = ACTIONS(2719), - [anon_sym_BANG] = ACTIONS(2719), - [anon_sym_TILDE] = ACTIONS(2719), - [anon_sym_DASH] = ACTIONS(2717), - [anon_sym_PLUS] = ACTIONS(2717), - [anon_sym_STAR] = ACTIONS(2719), - [anon_sym_AMP_AMP] = ACTIONS(2719), - [anon_sym_AMP] = ACTIONS(2717), - [anon_sym_SEMI] = ACTIONS(2719), - [anon_sym_typedef] = ACTIONS(2717), - [anon_sym_extern] = ACTIONS(2717), - [anon_sym___attribute__] = ACTIONS(2717), - [anon_sym_COLON_COLON] = ACTIONS(2719), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2719), - [anon_sym___declspec] = ACTIONS(2717), - [anon_sym___based] = ACTIONS(2717), - [anon_sym___cdecl] = ACTIONS(2717), - [anon_sym___clrcall] = ACTIONS(2717), - [anon_sym___stdcall] = ACTIONS(2717), - [anon_sym___fastcall] = ACTIONS(2717), - [anon_sym___thiscall] = ACTIONS(2717), - [anon_sym___vectorcall] = ACTIONS(2717), - [anon_sym_LBRACE] = ACTIONS(2719), - [anon_sym_RBRACE] = ACTIONS(2719), - [anon_sym_LBRACK] = ACTIONS(2717), - [anon_sym_static] = ACTIONS(2717), - [anon_sym_register] = ACTIONS(2717), - [anon_sym_inline] = ACTIONS(2717), - [anon_sym_thread_local] = ACTIONS(2717), - [anon_sym_const] = ACTIONS(2717), - [anon_sym_volatile] = ACTIONS(2717), - [anon_sym_restrict] = ACTIONS(2717), - [anon_sym__Atomic] = ACTIONS(2717), - [anon_sym_mutable] = ACTIONS(2717), - [anon_sym_constexpr] = ACTIONS(2717), - [anon_sym_constinit] = ACTIONS(2717), - [anon_sym_consteval] = ACTIONS(2717), - [anon_sym_signed] = ACTIONS(2717), - [anon_sym_unsigned] = ACTIONS(2717), - [anon_sym_long] = ACTIONS(2717), - [anon_sym_short] = ACTIONS(2717), - [sym_primitive_type] = ACTIONS(2717), - [anon_sym_enum] = ACTIONS(2717), - [anon_sym_class] = ACTIONS(2717), - [anon_sym_struct] = ACTIONS(2717), - [anon_sym_union] = ACTIONS(2717), - [anon_sym_if] = ACTIONS(2717), - [anon_sym_switch] = ACTIONS(2717), - [anon_sym_case] = ACTIONS(2717), - [anon_sym_default] = ACTIONS(2717), - [anon_sym_while] = ACTIONS(2717), - [anon_sym_do] = ACTIONS(2717), - [anon_sym_for] = ACTIONS(2717), - [anon_sym_return] = ACTIONS(2717), - [anon_sym_break] = ACTIONS(2717), - [anon_sym_continue] = ACTIONS(2717), - [anon_sym_goto] = ACTIONS(2717), - [anon_sym_DASH_DASH] = ACTIONS(2719), - [anon_sym_PLUS_PLUS] = ACTIONS(2719), - [anon_sym_sizeof] = ACTIONS(2717), - [sym_number_literal] = ACTIONS(2719), - [anon_sym_L_SQUOTE] = ACTIONS(2719), - [anon_sym_u_SQUOTE] = ACTIONS(2719), - [anon_sym_U_SQUOTE] = ACTIONS(2719), - [anon_sym_u8_SQUOTE] = ACTIONS(2719), - [anon_sym_SQUOTE] = ACTIONS(2719), - [anon_sym_L_DQUOTE] = ACTIONS(2719), - [anon_sym_u_DQUOTE] = ACTIONS(2719), - [anon_sym_U_DQUOTE] = ACTIONS(2719), - [anon_sym_u8_DQUOTE] = ACTIONS(2719), - [anon_sym_DQUOTE] = ACTIONS(2719), - [sym_true] = ACTIONS(2717), - [sym_false] = ACTIONS(2717), - [sym_null] = ACTIONS(2717), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2717), - [anon_sym_decltype] = ACTIONS(2717), - [anon_sym_virtual] = ACTIONS(2717), - [anon_sym_explicit] = ACTIONS(2717), - [anon_sym_typename] = ACTIONS(2717), - [anon_sym_template] = ACTIONS(2717), - [anon_sym_operator] = ACTIONS(2717), - [anon_sym_try] = ACTIONS(2717), - [anon_sym_delete] = ACTIONS(2717), - [anon_sym_throw] = ACTIONS(2717), - [anon_sym_namespace] = ACTIONS(2717), - [anon_sym_using] = ACTIONS(2717), - [anon_sym_static_assert] = ACTIONS(2717), - [anon_sym_concept] = ACTIONS(2717), - [anon_sym_co_return] = ACTIONS(2717), - [anon_sym_co_yield] = ACTIONS(2717), - [anon_sym_co_await] = ACTIONS(2717), - [anon_sym_new] = ACTIONS(2717), - [anon_sym_requires] = ACTIONS(2717), - [sym_this] = ACTIONS(2717), - [sym_nullptr] = ACTIONS(2717), - [sym_raw_string_literal] = ACTIONS(2719), - }, - [959] = { - [sym_identifier] = ACTIONS(2669), - [aux_sym_preproc_include_token1] = ACTIONS(2669), - [aux_sym_preproc_def_token1] = ACTIONS(2669), - [aux_sym_preproc_if_token1] = ACTIONS(2669), - [aux_sym_preproc_if_token2] = ACTIONS(2669), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2669), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2669), - [sym_preproc_directive] = ACTIONS(2669), - [anon_sym_LPAREN2] = ACTIONS(2671), - [anon_sym_BANG] = ACTIONS(2671), - [anon_sym_TILDE] = ACTIONS(2671), - [anon_sym_DASH] = ACTIONS(2669), - [anon_sym_PLUS] = ACTIONS(2669), - [anon_sym_STAR] = ACTIONS(2671), - [anon_sym_AMP_AMP] = ACTIONS(2671), - [anon_sym_AMP] = ACTIONS(2669), - [anon_sym_SEMI] = ACTIONS(2671), - [anon_sym_typedef] = ACTIONS(2669), - [anon_sym_extern] = ACTIONS(2669), - [anon_sym___attribute__] = ACTIONS(2669), - [anon_sym_COLON_COLON] = ACTIONS(2671), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2671), - [anon_sym___declspec] = ACTIONS(2669), - [anon_sym___based] = ACTIONS(2669), - [anon_sym___cdecl] = ACTIONS(2669), - [anon_sym___clrcall] = ACTIONS(2669), - [anon_sym___stdcall] = ACTIONS(2669), - [anon_sym___fastcall] = ACTIONS(2669), - [anon_sym___thiscall] = ACTIONS(2669), - [anon_sym___vectorcall] = ACTIONS(2669), - [anon_sym_LBRACE] = ACTIONS(2671), - [anon_sym_LBRACK] = ACTIONS(2669), - [anon_sym_static] = ACTIONS(2669), - [anon_sym_register] = ACTIONS(2669), - [anon_sym_inline] = ACTIONS(2669), - [anon_sym_thread_local] = ACTIONS(2669), - [anon_sym_const] = ACTIONS(2669), - [anon_sym_volatile] = ACTIONS(2669), - [anon_sym_restrict] = ACTIONS(2669), - [anon_sym__Atomic] = ACTIONS(2669), - [anon_sym_mutable] = ACTIONS(2669), - [anon_sym_constexpr] = ACTIONS(2669), - [anon_sym_constinit] = ACTIONS(2669), - [anon_sym_consteval] = ACTIONS(2669), - [anon_sym_signed] = ACTIONS(2669), - [anon_sym_unsigned] = ACTIONS(2669), - [anon_sym_long] = ACTIONS(2669), - [anon_sym_short] = ACTIONS(2669), - [sym_primitive_type] = ACTIONS(2669), - [anon_sym_enum] = ACTIONS(2669), - [anon_sym_class] = ACTIONS(2669), - [anon_sym_struct] = ACTIONS(2669), - [anon_sym_union] = ACTIONS(2669), - [anon_sym_if] = ACTIONS(2669), - [anon_sym_switch] = ACTIONS(2669), - [anon_sym_case] = ACTIONS(2669), - [anon_sym_default] = ACTIONS(2669), - [anon_sym_while] = ACTIONS(2669), - [anon_sym_do] = ACTIONS(2669), - [anon_sym_for] = ACTIONS(2669), - [anon_sym_return] = ACTIONS(2669), - [anon_sym_break] = ACTIONS(2669), - [anon_sym_continue] = ACTIONS(2669), - [anon_sym_goto] = ACTIONS(2669), - [anon_sym_DASH_DASH] = ACTIONS(2671), - [anon_sym_PLUS_PLUS] = ACTIONS(2671), - [anon_sym_sizeof] = ACTIONS(2669), - [sym_number_literal] = ACTIONS(2671), - [anon_sym_L_SQUOTE] = ACTIONS(2671), - [anon_sym_u_SQUOTE] = ACTIONS(2671), - [anon_sym_U_SQUOTE] = ACTIONS(2671), - [anon_sym_u8_SQUOTE] = ACTIONS(2671), - [anon_sym_SQUOTE] = ACTIONS(2671), - [anon_sym_L_DQUOTE] = ACTIONS(2671), - [anon_sym_u_DQUOTE] = ACTIONS(2671), - [anon_sym_U_DQUOTE] = ACTIONS(2671), - [anon_sym_u8_DQUOTE] = ACTIONS(2671), - [anon_sym_DQUOTE] = ACTIONS(2671), - [sym_true] = ACTIONS(2669), - [sym_false] = ACTIONS(2669), - [sym_null] = ACTIONS(2669), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2669), - [anon_sym_decltype] = ACTIONS(2669), - [anon_sym_virtual] = ACTIONS(2669), - [anon_sym_explicit] = ACTIONS(2669), - [anon_sym_typename] = ACTIONS(2669), - [anon_sym_template] = ACTIONS(2669), - [anon_sym_operator] = ACTIONS(2669), - [anon_sym_try] = ACTIONS(2669), - [anon_sym_delete] = ACTIONS(2669), - [anon_sym_throw] = ACTIONS(2669), - [anon_sym_namespace] = ACTIONS(2669), - [anon_sym_using] = ACTIONS(2669), - [anon_sym_static_assert] = ACTIONS(2669), - [anon_sym_concept] = ACTIONS(2669), - [anon_sym_co_return] = ACTIONS(2669), - [anon_sym_co_yield] = ACTIONS(2669), - [anon_sym_co_await] = ACTIONS(2669), - [anon_sym_new] = ACTIONS(2669), - [anon_sym_requires] = ACTIONS(2669), - [sym_this] = ACTIONS(2669), - [sym_nullptr] = ACTIONS(2669), - [sym_raw_string_literal] = ACTIONS(2671), + [sym_auto] = ACTIONS(2563), + [anon_sym_decltype] = ACTIONS(2563), + [anon_sym_virtual] = ACTIONS(2563), + [anon_sym_explicit] = ACTIONS(2563), + [anon_sym_typename] = ACTIONS(2563), + [anon_sym_template] = ACTIONS(2563), + [anon_sym_operator] = ACTIONS(2563), + [anon_sym_try] = ACTIONS(2563), + [anon_sym_delete] = ACTIONS(2563), + [anon_sym_throw] = ACTIONS(2563), + [anon_sym_namespace] = ACTIONS(2563), + [anon_sym_using] = ACTIONS(2563), + [anon_sym_static_assert] = ACTIONS(2563), + [anon_sym_concept] = ACTIONS(2563), + [anon_sym_co_return] = ACTIONS(2563), + [anon_sym_co_yield] = ACTIONS(2563), + [anon_sym_co_await] = ACTIONS(2563), + [anon_sym_new] = ACTIONS(2563), + [anon_sym_requires] = ACTIONS(2563), + [sym_this] = ACTIONS(2563), + [sym_nullptr] = ACTIONS(2563), + [sym_raw_string_literal] = ACTIONS(2565), }, - [960] = { - [sym_identifier] = ACTIONS(2583), - [aux_sym_preproc_include_token1] = ACTIONS(2583), - [aux_sym_preproc_def_token1] = ACTIONS(2583), - [aux_sym_preproc_if_token1] = ACTIONS(2583), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2583), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2583), - [sym_preproc_directive] = ACTIONS(2583), - [anon_sym_LPAREN2] = ACTIONS(2585), - [anon_sym_BANG] = ACTIONS(2585), - [anon_sym_TILDE] = ACTIONS(2585), - [anon_sym_DASH] = ACTIONS(2583), - [anon_sym_PLUS] = ACTIONS(2583), - [anon_sym_STAR] = ACTIONS(2585), - [anon_sym_AMP_AMP] = ACTIONS(2585), - [anon_sym_AMP] = ACTIONS(2583), - [anon_sym_SEMI] = ACTIONS(2585), - [anon_sym_typedef] = ACTIONS(2583), - [anon_sym_extern] = ACTIONS(2583), - [anon_sym___attribute__] = ACTIONS(2583), - [anon_sym_COLON_COLON] = ACTIONS(2585), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2585), - [anon_sym___declspec] = ACTIONS(2583), - [anon_sym___based] = ACTIONS(2583), - [anon_sym___cdecl] = ACTIONS(2583), - [anon_sym___clrcall] = ACTIONS(2583), - [anon_sym___stdcall] = ACTIONS(2583), - [anon_sym___fastcall] = ACTIONS(2583), - [anon_sym___thiscall] = ACTIONS(2583), - [anon_sym___vectorcall] = ACTIONS(2583), - [anon_sym_LBRACE] = ACTIONS(2585), - [anon_sym_RBRACE] = ACTIONS(2585), - [anon_sym_LBRACK] = ACTIONS(2583), - [anon_sym_static] = ACTIONS(2583), - [anon_sym_register] = ACTIONS(2583), - [anon_sym_inline] = ACTIONS(2583), - [anon_sym_thread_local] = ACTIONS(2583), - [anon_sym_const] = ACTIONS(2583), - [anon_sym_volatile] = ACTIONS(2583), - [anon_sym_restrict] = ACTIONS(2583), - [anon_sym__Atomic] = ACTIONS(2583), - [anon_sym_mutable] = ACTIONS(2583), - [anon_sym_constexpr] = ACTIONS(2583), - [anon_sym_constinit] = ACTIONS(2583), - [anon_sym_consteval] = ACTIONS(2583), - [anon_sym_signed] = ACTIONS(2583), - [anon_sym_unsigned] = ACTIONS(2583), - [anon_sym_long] = ACTIONS(2583), - [anon_sym_short] = ACTIONS(2583), - [sym_primitive_type] = ACTIONS(2583), - [anon_sym_enum] = ACTIONS(2583), - [anon_sym_class] = ACTIONS(2583), - [anon_sym_struct] = ACTIONS(2583), - [anon_sym_union] = ACTIONS(2583), - [anon_sym_if] = ACTIONS(2583), - [anon_sym_switch] = ACTIONS(2583), - [anon_sym_case] = ACTIONS(2583), - [anon_sym_default] = ACTIONS(2583), - [anon_sym_while] = ACTIONS(2583), - [anon_sym_do] = ACTIONS(2583), - [anon_sym_for] = ACTIONS(2583), - [anon_sym_return] = ACTIONS(2583), - [anon_sym_break] = ACTIONS(2583), - [anon_sym_continue] = ACTIONS(2583), - [anon_sym_goto] = ACTIONS(2583), - [anon_sym_DASH_DASH] = ACTIONS(2585), - [anon_sym_PLUS_PLUS] = ACTIONS(2585), - [anon_sym_sizeof] = ACTIONS(2583), - [sym_number_literal] = ACTIONS(2585), - [anon_sym_L_SQUOTE] = ACTIONS(2585), - [anon_sym_u_SQUOTE] = ACTIONS(2585), - [anon_sym_U_SQUOTE] = ACTIONS(2585), - [anon_sym_u8_SQUOTE] = ACTIONS(2585), - [anon_sym_SQUOTE] = ACTIONS(2585), - [anon_sym_L_DQUOTE] = ACTIONS(2585), - [anon_sym_u_DQUOTE] = ACTIONS(2585), - [anon_sym_U_DQUOTE] = ACTIONS(2585), - [anon_sym_u8_DQUOTE] = ACTIONS(2585), - [anon_sym_DQUOTE] = ACTIONS(2585), - [sym_true] = ACTIONS(2583), - [sym_false] = ACTIONS(2583), - [sym_null] = ACTIONS(2583), + [604] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token2] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2583), - [anon_sym_decltype] = ACTIONS(2583), - [anon_sym_virtual] = ACTIONS(2583), - [anon_sym_explicit] = ACTIONS(2583), - [anon_sym_typename] = ACTIONS(2583), - [anon_sym_template] = ACTIONS(2583), - [anon_sym_operator] = ACTIONS(2583), - [anon_sym_try] = ACTIONS(2583), - [anon_sym_delete] = ACTIONS(2583), - [anon_sym_throw] = ACTIONS(2583), - [anon_sym_namespace] = ACTIONS(2583), - [anon_sym_using] = ACTIONS(2583), - [anon_sym_static_assert] = ACTIONS(2583), - [anon_sym_concept] = ACTIONS(2583), - [anon_sym_co_return] = ACTIONS(2583), - [anon_sym_co_yield] = ACTIONS(2583), - [anon_sym_co_await] = ACTIONS(2583), - [anon_sym_new] = ACTIONS(2583), - [anon_sym_requires] = ACTIONS(2583), - [sym_this] = ACTIONS(2583), - [sym_nullptr] = ACTIONS(2583), - [sym_raw_string_literal] = ACTIONS(2585), - }, - [961] = { - [sym_identifier] = ACTIONS(2601), - [aux_sym_preproc_include_token1] = ACTIONS(2601), - [aux_sym_preproc_def_token1] = ACTIONS(2601), - [aux_sym_preproc_if_token1] = ACTIONS(2601), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2601), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2601), - [sym_preproc_directive] = ACTIONS(2601), - [anon_sym_LPAREN2] = ACTIONS(2603), - [anon_sym_BANG] = ACTIONS(2603), - [anon_sym_TILDE] = ACTIONS(2603), - [anon_sym_DASH] = ACTIONS(2601), - [anon_sym_PLUS] = ACTIONS(2601), - [anon_sym_STAR] = ACTIONS(2603), - [anon_sym_AMP_AMP] = ACTIONS(2603), - [anon_sym_AMP] = ACTIONS(2601), - [anon_sym_SEMI] = ACTIONS(2603), - [anon_sym_typedef] = ACTIONS(2601), - [anon_sym_extern] = ACTIONS(2601), - [anon_sym___attribute__] = ACTIONS(2601), - [anon_sym_COLON_COLON] = ACTIONS(2603), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2603), - [anon_sym___declspec] = ACTIONS(2601), - [anon_sym___based] = ACTIONS(2601), - [anon_sym___cdecl] = ACTIONS(2601), - [anon_sym___clrcall] = ACTIONS(2601), - [anon_sym___stdcall] = ACTIONS(2601), - [anon_sym___fastcall] = ACTIONS(2601), - [anon_sym___thiscall] = ACTIONS(2601), - [anon_sym___vectorcall] = ACTIONS(2601), - [anon_sym_LBRACE] = ACTIONS(2603), - [anon_sym_RBRACE] = ACTIONS(2603), - [anon_sym_LBRACK] = ACTIONS(2601), - [anon_sym_static] = ACTIONS(2601), - [anon_sym_register] = ACTIONS(2601), - [anon_sym_inline] = ACTIONS(2601), - [anon_sym_thread_local] = ACTIONS(2601), - [anon_sym_const] = ACTIONS(2601), - [anon_sym_volatile] = ACTIONS(2601), - [anon_sym_restrict] = ACTIONS(2601), - [anon_sym__Atomic] = ACTIONS(2601), - [anon_sym_mutable] = ACTIONS(2601), - [anon_sym_constexpr] = ACTIONS(2601), - [anon_sym_constinit] = ACTIONS(2601), - [anon_sym_consteval] = ACTIONS(2601), - [anon_sym_signed] = ACTIONS(2601), - [anon_sym_unsigned] = ACTIONS(2601), - [anon_sym_long] = ACTIONS(2601), - [anon_sym_short] = ACTIONS(2601), - [sym_primitive_type] = ACTIONS(2601), - [anon_sym_enum] = ACTIONS(2601), - [anon_sym_class] = ACTIONS(2601), - [anon_sym_struct] = ACTIONS(2601), - [anon_sym_union] = ACTIONS(2601), - [anon_sym_if] = ACTIONS(2601), - [anon_sym_switch] = ACTIONS(2601), - [anon_sym_case] = ACTIONS(2601), - [anon_sym_default] = ACTIONS(2601), - [anon_sym_while] = ACTIONS(2601), - [anon_sym_do] = ACTIONS(2601), - [anon_sym_for] = ACTIONS(2601), - [anon_sym_return] = ACTIONS(2601), - [anon_sym_break] = ACTIONS(2601), - [anon_sym_continue] = ACTIONS(2601), - [anon_sym_goto] = ACTIONS(2601), - [anon_sym_DASH_DASH] = ACTIONS(2603), - [anon_sym_PLUS_PLUS] = ACTIONS(2603), - [anon_sym_sizeof] = ACTIONS(2601), - [sym_number_literal] = ACTIONS(2603), - [anon_sym_L_SQUOTE] = ACTIONS(2603), - [anon_sym_u_SQUOTE] = ACTIONS(2603), - [anon_sym_U_SQUOTE] = ACTIONS(2603), - [anon_sym_u8_SQUOTE] = ACTIONS(2603), - [anon_sym_SQUOTE] = ACTIONS(2603), - [anon_sym_L_DQUOTE] = ACTIONS(2603), - [anon_sym_u_DQUOTE] = ACTIONS(2603), - [anon_sym_U_DQUOTE] = ACTIONS(2603), - [anon_sym_u8_DQUOTE] = ACTIONS(2603), - [anon_sym_DQUOTE] = ACTIONS(2603), - [sym_true] = ACTIONS(2601), - [sym_false] = ACTIONS(2601), - [sym_null] = ACTIONS(2601), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2601), - [anon_sym_decltype] = ACTIONS(2601), - [anon_sym_virtual] = ACTIONS(2601), - [anon_sym_explicit] = ACTIONS(2601), - [anon_sym_typename] = ACTIONS(2601), - [anon_sym_template] = ACTIONS(2601), - [anon_sym_operator] = ACTIONS(2601), - [anon_sym_try] = ACTIONS(2601), - [anon_sym_delete] = ACTIONS(2601), - [anon_sym_throw] = ACTIONS(2601), - [anon_sym_namespace] = ACTIONS(2601), - [anon_sym_using] = ACTIONS(2601), - [anon_sym_static_assert] = ACTIONS(2601), - [anon_sym_concept] = ACTIONS(2601), - [anon_sym_co_return] = ACTIONS(2601), - [anon_sym_co_yield] = ACTIONS(2601), - [anon_sym_co_await] = ACTIONS(2601), - [anon_sym_new] = ACTIONS(2601), - [anon_sym_requires] = ACTIONS(2601), - [sym_this] = ACTIONS(2601), - [sym_nullptr] = ACTIONS(2601), - [sym_raw_string_literal] = ACTIONS(2603), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [962] = { - [ts_builtin_sym_end] = ACTIONS(2755), - [sym_identifier] = ACTIONS(2753), - [aux_sym_preproc_include_token1] = ACTIONS(2753), - [aux_sym_preproc_def_token1] = ACTIONS(2753), - [aux_sym_preproc_if_token1] = ACTIONS(2753), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2753), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2753), - [sym_preproc_directive] = ACTIONS(2753), - [anon_sym_LPAREN2] = ACTIONS(2755), - [anon_sym_BANG] = ACTIONS(2755), - [anon_sym_TILDE] = ACTIONS(2755), - [anon_sym_DASH] = ACTIONS(2753), - [anon_sym_PLUS] = ACTIONS(2753), - [anon_sym_STAR] = ACTIONS(2755), - [anon_sym_AMP_AMP] = ACTIONS(2755), - [anon_sym_AMP] = ACTIONS(2753), - [anon_sym_SEMI] = ACTIONS(2755), - [anon_sym_typedef] = ACTIONS(2753), - [anon_sym_extern] = ACTIONS(2753), - [anon_sym___attribute__] = ACTIONS(2753), - [anon_sym_COLON_COLON] = ACTIONS(2755), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2755), - [anon_sym___declspec] = ACTIONS(2753), - [anon_sym___based] = ACTIONS(2753), - [anon_sym___cdecl] = ACTIONS(2753), - [anon_sym___clrcall] = ACTIONS(2753), - [anon_sym___stdcall] = ACTIONS(2753), - [anon_sym___fastcall] = ACTIONS(2753), - [anon_sym___thiscall] = ACTIONS(2753), - [anon_sym___vectorcall] = ACTIONS(2753), - [anon_sym_LBRACE] = ACTIONS(2755), - [anon_sym_LBRACK] = ACTIONS(2753), - [anon_sym_static] = ACTIONS(2753), - [anon_sym_register] = ACTIONS(2753), - [anon_sym_inline] = ACTIONS(2753), - [anon_sym_thread_local] = ACTIONS(2753), - [anon_sym_const] = ACTIONS(2753), - [anon_sym_volatile] = ACTIONS(2753), - [anon_sym_restrict] = ACTIONS(2753), - [anon_sym__Atomic] = ACTIONS(2753), - [anon_sym_mutable] = ACTIONS(2753), - [anon_sym_constexpr] = ACTIONS(2753), - [anon_sym_constinit] = ACTIONS(2753), - [anon_sym_consteval] = ACTIONS(2753), - [anon_sym_signed] = ACTIONS(2753), - [anon_sym_unsigned] = ACTIONS(2753), - [anon_sym_long] = ACTIONS(2753), - [anon_sym_short] = ACTIONS(2753), - [sym_primitive_type] = ACTIONS(2753), - [anon_sym_enum] = ACTIONS(2753), - [anon_sym_class] = ACTIONS(2753), - [anon_sym_struct] = ACTIONS(2753), - [anon_sym_union] = ACTIONS(2753), - [anon_sym_if] = ACTIONS(2753), - [anon_sym_switch] = ACTIONS(2753), - [anon_sym_case] = ACTIONS(2753), - [anon_sym_default] = ACTIONS(2753), - [anon_sym_while] = ACTIONS(2753), - [anon_sym_do] = ACTIONS(2753), - [anon_sym_for] = ACTIONS(2753), - [anon_sym_return] = ACTIONS(2753), - [anon_sym_break] = ACTIONS(2753), - [anon_sym_continue] = ACTIONS(2753), - [anon_sym_goto] = ACTIONS(2753), - [anon_sym_DASH_DASH] = ACTIONS(2755), - [anon_sym_PLUS_PLUS] = ACTIONS(2755), - [anon_sym_sizeof] = ACTIONS(2753), - [sym_number_literal] = ACTIONS(2755), - [anon_sym_L_SQUOTE] = ACTIONS(2755), - [anon_sym_u_SQUOTE] = ACTIONS(2755), - [anon_sym_U_SQUOTE] = ACTIONS(2755), - [anon_sym_u8_SQUOTE] = ACTIONS(2755), - [anon_sym_SQUOTE] = ACTIONS(2755), - [anon_sym_L_DQUOTE] = ACTIONS(2755), - [anon_sym_u_DQUOTE] = ACTIONS(2755), - [anon_sym_U_DQUOTE] = ACTIONS(2755), - [anon_sym_u8_DQUOTE] = ACTIONS(2755), - [anon_sym_DQUOTE] = ACTIONS(2755), - [sym_true] = ACTIONS(2753), - [sym_false] = ACTIONS(2753), - [sym_null] = ACTIONS(2753), + [605] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token2] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2753), - [anon_sym_decltype] = ACTIONS(2753), - [anon_sym_virtual] = ACTIONS(2753), - [anon_sym_explicit] = ACTIONS(2753), - [anon_sym_typename] = ACTIONS(2753), - [anon_sym_template] = ACTIONS(2753), - [anon_sym_operator] = ACTIONS(2753), - [anon_sym_try] = ACTIONS(2753), - [anon_sym_delete] = ACTIONS(2753), - [anon_sym_throw] = ACTIONS(2753), - [anon_sym_namespace] = ACTIONS(2753), - [anon_sym_using] = ACTIONS(2753), - [anon_sym_static_assert] = ACTIONS(2753), - [anon_sym_concept] = ACTIONS(2753), - [anon_sym_co_return] = ACTIONS(2753), - [anon_sym_co_yield] = ACTIONS(2753), - [anon_sym_co_await] = ACTIONS(2753), - [anon_sym_new] = ACTIONS(2753), - [anon_sym_requires] = ACTIONS(2753), - [sym_this] = ACTIONS(2753), - [sym_nullptr] = ACTIONS(2753), - [sym_raw_string_literal] = ACTIONS(2755), - }, - [963] = { - [ts_builtin_sym_end] = ACTIONS(2749), - [sym_identifier] = ACTIONS(2747), - [aux_sym_preproc_include_token1] = ACTIONS(2747), - [aux_sym_preproc_def_token1] = ACTIONS(2747), - [aux_sym_preproc_if_token1] = ACTIONS(2747), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2747), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2747), - [sym_preproc_directive] = ACTIONS(2747), - [anon_sym_LPAREN2] = ACTIONS(2749), - [anon_sym_BANG] = ACTIONS(2749), - [anon_sym_TILDE] = ACTIONS(2749), - [anon_sym_DASH] = ACTIONS(2747), - [anon_sym_PLUS] = ACTIONS(2747), - [anon_sym_STAR] = ACTIONS(2749), - [anon_sym_AMP_AMP] = ACTIONS(2749), - [anon_sym_AMP] = ACTIONS(2747), - [anon_sym_SEMI] = ACTIONS(2749), - [anon_sym_typedef] = ACTIONS(2747), - [anon_sym_extern] = ACTIONS(2747), - [anon_sym___attribute__] = ACTIONS(2747), - [anon_sym_COLON_COLON] = ACTIONS(2749), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2749), - [anon_sym___declspec] = ACTIONS(2747), - [anon_sym___based] = ACTIONS(2747), - [anon_sym___cdecl] = ACTIONS(2747), - [anon_sym___clrcall] = ACTIONS(2747), - [anon_sym___stdcall] = ACTIONS(2747), - [anon_sym___fastcall] = ACTIONS(2747), - [anon_sym___thiscall] = ACTIONS(2747), - [anon_sym___vectorcall] = ACTIONS(2747), - [anon_sym_LBRACE] = ACTIONS(2749), - [anon_sym_LBRACK] = ACTIONS(2747), - [anon_sym_static] = ACTIONS(2747), - [anon_sym_register] = ACTIONS(2747), - [anon_sym_inline] = ACTIONS(2747), - [anon_sym_thread_local] = ACTIONS(2747), - [anon_sym_const] = ACTIONS(2747), - [anon_sym_volatile] = ACTIONS(2747), - [anon_sym_restrict] = ACTIONS(2747), - [anon_sym__Atomic] = ACTIONS(2747), - [anon_sym_mutable] = ACTIONS(2747), - [anon_sym_constexpr] = ACTIONS(2747), - [anon_sym_constinit] = ACTIONS(2747), - [anon_sym_consteval] = ACTIONS(2747), - [anon_sym_signed] = ACTIONS(2747), - [anon_sym_unsigned] = ACTIONS(2747), - [anon_sym_long] = ACTIONS(2747), - [anon_sym_short] = ACTIONS(2747), - [sym_primitive_type] = ACTIONS(2747), - [anon_sym_enum] = ACTIONS(2747), - [anon_sym_class] = ACTIONS(2747), - [anon_sym_struct] = ACTIONS(2747), - [anon_sym_union] = ACTIONS(2747), - [anon_sym_if] = ACTIONS(2747), - [anon_sym_switch] = ACTIONS(2747), - [anon_sym_case] = ACTIONS(2747), - [anon_sym_default] = ACTIONS(2747), - [anon_sym_while] = ACTIONS(2747), - [anon_sym_do] = ACTIONS(2747), - [anon_sym_for] = ACTIONS(2747), - [anon_sym_return] = ACTIONS(2747), - [anon_sym_break] = ACTIONS(2747), - [anon_sym_continue] = ACTIONS(2747), - [anon_sym_goto] = ACTIONS(2747), - [anon_sym_DASH_DASH] = ACTIONS(2749), - [anon_sym_PLUS_PLUS] = ACTIONS(2749), - [anon_sym_sizeof] = ACTIONS(2747), - [sym_number_literal] = ACTIONS(2749), - [anon_sym_L_SQUOTE] = ACTIONS(2749), - [anon_sym_u_SQUOTE] = ACTIONS(2749), - [anon_sym_U_SQUOTE] = ACTIONS(2749), - [anon_sym_u8_SQUOTE] = ACTIONS(2749), - [anon_sym_SQUOTE] = ACTIONS(2749), - [anon_sym_L_DQUOTE] = ACTIONS(2749), - [anon_sym_u_DQUOTE] = ACTIONS(2749), - [anon_sym_U_DQUOTE] = ACTIONS(2749), - [anon_sym_u8_DQUOTE] = ACTIONS(2749), - [anon_sym_DQUOTE] = ACTIONS(2749), - [sym_true] = ACTIONS(2747), - [sym_false] = ACTIONS(2747), - [sym_null] = ACTIONS(2747), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2747), - [anon_sym_decltype] = ACTIONS(2747), - [anon_sym_virtual] = ACTIONS(2747), - [anon_sym_explicit] = ACTIONS(2747), - [anon_sym_typename] = ACTIONS(2747), - [anon_sym_template] = ACTIONS(2747), - [anon_sym_operator] = ACTIONS(2747), - [anon_sym_try] = ACTIONS(2747), - [anon_sym_delete] = ACTIONS(2747), - [anon_sym_throw] = ACTIONS(2747), - [anon_sym_namespace] = ACTIONS(2747), - [anon_sym_using] = ACTIONS(2747), - [anon_sym_static_assert] = ACTIONS(2747), - [anon_sym_concept] = ACTIONS(2747), - [anon_sym_co_return] = ACTIONS(2747), - [anon_sym_co_yield] = ACTIONS(2747), - [anon_sym_co_await] = ACTIONS(2747), - [anon_sym_new] = ACTIONS(2747), - [anon_sym_requires] = ACTIONS(2747), - [sym_this] = ACTIONS(2747), - [sym_nullptr] = ACTIONS(2747), - [sym_raw_string_literal] = ACTIONS(2749), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [964] = { - [ts_builtin_sym_end] = ACTIONS(2527), - [sym_identifier] = ACTIONS(2525), - [aux_sym_preproc_include_token1] = ACTIONS(2525), - [aux_sym_preproc_def_token1] = ACTIONS(2525), - [aux_sym_preproc_if_token1] = ACTIONS(2525), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2525), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2525), - [sym_preproc_directive] = ACTIONS(2525), - [anon_sym_LPAREN2] = ACTIONS(2527), - [anon_sym_BANG] = ACTIONS(2527), - [anon_sym_TILDE] = ACTIONS(2527), - [anon_sym_DASH] = ACTIONS(2525), - [anon_sym_PLUS] = ACTIONS(2525), - [anon_sym_STAR] = ACTIONS(2527), - [anon_sym_AMP_AMP] = ACTIONS(2527), - [anon_sym_AMP] = ACTIONS(2525), - [anon_sym_SEMI] = ACTIONS(2527), - [anon_sym_typedef] = ACTIONS(2525), - [anon_sym_extern] = ACTIONS(2525), - [anon_sym___attribute__] = ACTIONS(2525), - [anon_sym_COLON_COLON] = ACTIONS(2527), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2527), - [anon_sym___declspec] = ACTIONS(2525), - [anon_sym___based] = ACTIONS(2525), - [anon_sym___cdecl] = ACTIONS(2525), - [anon_sym___clrcall] = ACTIONS(2525), - [anon_sym___stdcall] = ACTIONS(2525), - [anon_sym___fastcall] = ACTIONS(2525), - [anon_sym___thiscall] = ACTIONS(2525), - [anon_sym___vectorcall] = ACTIONS(2525), - [anon_sym_LBRACE] = ACTIONS(2527), - [anon_sym_LBRACK] = ACTIONS(2525), - [anon_sym_static] = ACTIONS(2525), - [anon_sym_register] = ACTIONS(2525), - [anon_sym_inline] = ACTIONS(2525), - [anon_sym_thread_local] = ACTIONS(2525), - [anon_sym_const] = ACTIONS(2525), - [anon_sym_volatile] = ACTIONS(2525), - [anon_sym_restrict] = ACTIONS(2525), - [anon_sym__Atomic] = ACTIONS(2525), - [anon_sym_mutable] = ACTIONS(2525), - [anon_sym_constexpr] = ACTIONS(2525), - [anon_sym_constinit] = ACTIONS(2525), - [anon_sym_consteval] = ACTIONS(2525), - [anon_sym_signed] = ACTIONS(2525), - [anon_sym_unsigned] = ACTIONS(2525), - [anon_sym_long] = ACTIONS(2525), - [anon_sym_short] = ACTIONS(2525), - [sym_primitive_type] = ACTIONS(2525), - [anon_sym_enum] = ACTIONS(2525), - [anon_sym_class] = ACTIONS(2525), - [anon_sym_struct] = ACTIONS(2525), - [anon_sym_union] = ACTIONS(2525), - [anon_sym_if] = ACTIONS(2525), - [anon_sym_switch] = ACTIONS(2525), - [anon_sym_case] = ACTIONS(2525), - [anon_sym_default] = ACTIONS(2525), - [anon_sym_while] = ACTIONS(2525), - [anon_sym_do] = ACTIONS(2525), - [anon_sym_for] = ACTIONS(2525), - [anon_sym_return] = ACTIONS(2525), - [anon_sym_break] = ACTIONS(2525), - [anon_sym_continue] = ACTIONS(2525), - [anon_sym_goto] = ACTIONS(2525), - [anon_sym_DASH_DASH] = ACTIONS(2527), - [anon_sym_PLUS_PLUS] = ACTIONS(2527), - [anon_sym_sizeof] = ACTIONS(2525), - [sym_number_literal] = ACTIONS(2527), - [anon_sym_L_SQUOTE] = ACTIONS(2527), - [anon_sym_u_SQUOTE] = ACTIONS(2527), - [anon_sym_U_SQUOTE] = ACTIONS(2527), - [anon_sym_u8_SQUOTE] = ACTIONS(2527), - [anon_sym_SQUOTE] = ACTIONS(2527), - [anon_sym_L_DQUOTE] = ACTIONS(2527), - [anon_sym_u_DQUOTE] = ACTIONS(2527), - [anon_sym_U_DQUOTE] = ACTIONS(2527), - [anon_sym_u8_DQUOTE] = ACTIONS(2527), - [anon_sym_DQUOTE] = ACTIONS(2527), - [sym_true] = ACTIONS(2525), - [sym_false] = ACTIONS(2525), - [sym_null] = ACTIONS(2525), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2525), - [anon_sym_decltype] = ACTIONS(2525), - [anon_sym_virtual] = ACTIONS(2525), - [anon_sym_explicit] = ACTIONS(2525), - [anon_sym_typename] = ACTIONS(2525), - [anon_sym_template] = ACTIONS(2525), - [anon_sym_operator] = ACTIONS(2525), - [anon_sym_try] = ACTIONS(2525), - [anon_sym_delete] = ACTIONS(2525), - [anon_sym_throw] = ACTIONS(2525), - [anon_sym_namespace] = ACTIONS(2525), - [anon_sym_using] = ACTIONS(2525), - [anon_sym_static_assert] = ACTIONS(2525), - [anon_sym_concept] = ACTIONS(2525), - [anon_sym_co_return] = ACTIONS(2525), - [anon_sym_co_yield] = ACTIONS(2525), - [anon_sym_co_await] = ACTIONS(2525), - [anon_sym_new] = ACTIONS(2525), - [anon_sym_requires] = ACTIONS(2525), - [sym_this] = ACTIONS(2525), - [sym_nullptr] = ACTIONS(2525), - [sym_raw_string_literal] = ACTIONS(2527), - }, - [965] = { - [sym_identifier] = ACTIONS(2617), - [aux_sym_preproc_include_token1] = ACTIONS(2617), - [aux_sym_preproc_def_token1] = ACTIONS(2617), - [aux_sym_preproc_if_token1] = ACTIONS(2617), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2617), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2617), - [sym_preproc_directive] = ACTIONS(2617), - [anon_sym_LPAREN2] = ACTIONS(2619), - [anon_sym_BANG] = ACTIONS(2619), - [anon_sym_TILDE] = ACTIONS(2619), - [anon_sym_DASH] = ACTIONS(2617), - [anon_sym_PLUS] = ACTIONS(2617), - [anon_sym_STAR] = ACTIONS(2619), - [anon_sym_AMP_AMP] = ACTIONS(2619), - [anon_sym_AMP] = ACTIONS(2617), - [anon_sym_SEMI] = ACTIONS(2619), - [anon_sym_typedef] = ACTIONS(2617), - [anon_sym_extern] = ACTIONS(2617), - [anon_sym___attribute__] = ACTIONS(2617), - [anon_sym_COLON_COLON] = ACTIONS(2619), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2619), - [anon_sym___declspec] = ACTIONS(2617), - [anon_sym___based] = ACTIONS(2617), - [anon_sym___cdecl] = ACTIONS(2617), - [anon_sym___clrcall] = ACTIONS(2617), - [anon_sym___stdcall] = ACTIONS(2617), - [anon_sym___fastcall] = ACTIONS(2617), - [anon_sym___thiscall] = ACTIONS(2617), - [anon_sym___vectorcall] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2619), - [anon_sym_RBRACE] = ACTIONS(2619), - [anon_sym_LBRACK] = ACTIONS(2617), - [anon_sym_static] = ACTIONS(2617), - [anon_sym_register] = ACTIONS(2617), - [anon_sym_inline] = ACTIONS(2617), - [anon_sym_thread_local] = ACTIONS(2617), - [anon_sym_const] = ACTIONS(2617), - [anon_sym_volatile] = ACTIONS(2617), - [anon_sym_restrict] = ACTIONS(2617), - [anon_sym__Atomic] = ACTIONS(2617), - [anon_sym_mutable] = ACTIONS(2617), - [anon_sym_constexpr] = ACTIONS(2617), - [anon_sym_constinit] = ACTIONS(2617), - [anon_sym_consteval] = ACTIONS(2617), - [anon_sym_signed] = ACTIONS(2617), - [anon_sym_unsigned] = ACTIONS(2617), - [anon_sym_long] = ACTIONS(2617), - [anon_sym_short] = ACTIONS(2617), - [sym_primitive_type] = ACTIONS(2617), - [anon_sym_enum] = ACTIONS(2617), - [anon_sym_class] = ACTIONS(2617), - [anon_sym_struct] = ACTIONS(2617), - [anon_sym_union] = ACTIONS(2617), - [anon_sym_if] = ACTIONS(2617), - [anon_sym_switch] = ACTIONS(2617), - [anon_sym_case] = ACTIONS(2617), - [anon_sym_default] = ACTIONS(2617), - [anon_sym_while] = ACTIONS(2617), - [anon_sym_do] = ACTIONS(2617), - [anon_sym_for] = ACTIONS(2617), - [anon_sym_return] = ACTIONS(2617), - [anon_sym_break] = ACTIONS(2617), - [anon_sym_continue] = ACTIONS(2617), - [anon_sym_goto] = ACTIONS(2617), - [anon_sym_DASH_DASH] = ACTIONS(2619), - [anon_sym_PLUS_PLUS] = ACTIONS(2619), - [anon_sym_sizeof] = ACTIONS(2617), - [sym_number_literal] = ACTIONS(2619), - [anon_sym_L_SQUOTE] = ACTIONS(2619), - [anon_sym_u_SQUOTE] = ACTIONS(2619), - [anon_sym_U_SQUOTE] = ACTIONS(2619), - [anon_sym_u8_SQUOTE] = ACTIONS(2619), - [anon_sym_SQUOTE] = ACTIONS(2619), - [anon_sym_L_DQUOTE] = ACTIONS(2619), - [anon_sym_u_DQUOTE] = ACTIONS(2619), - [anon_sym_U_DQUOTE] = ACTIONS(2619), - [anon_sym_u8_DQUOTE] = ACTIONS(2619), - [anon_sym_DQUOTE] = ACTIONS(2619), - [sym_true] = ACTIONS(2617), - [sym_false] = ACTIONS(2617), - [sym_null] = ACTIONS(2617), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2617), - [anon_sym_decltype] = ACTIONS(2617), - [anon_sym_virtual] = ACTIONS(2617), - [anon_sym_explicit] = ACTIONS(2617), - [anon_sym_typename] = ACTIONS(2617), - [anon_sym_template] = ACTIONS(2617), - [anon_sym_operator] = ACTIONS(2617), - [anon_sym_try] = ACTIONS(2617), - [anon_sym_delete] = ACTIONS(2617), - [anon_sym_throw] = ACTIONS(2617), - [anon_sym_namespace] = ACTIONS(2617), - [anon_sym_using] = ACTIONS(2617), - [anon_sym_static_assert] = ACTIONS(2617), - [anon_sym_concept] = ACTIONS(2617), - [anon_sym_co_return] = ACTIONS(2617), - [anon_sym_co_yield] = ACTIONS(2617), - [anon_sym_co_await] = ACTIONS(2617), - [anon_sym_new] = ACTIONS(2617), - [anon_sym_requires] = ACTIONS(2617), - [sym_this] = ACTIONS(2617), - [sym_nullptr] = ACTIONS(2617), - [sym_raw_string_literal] = ACTIONS(2619), - }, - [966] = { - [sym_identifier] = ACTIONS(2639), - [aux_sym_preproc_include_token1] = ACTIONS(2639), - [aux_sym_preproc_def_token1] = ACTIONS(2639), - [aux_sym_preproc_if_token1] = ACTIONS(2639), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2639), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2639), - [sym_preproc_directive] = ACTIONS(2639), - [anon_sym_LPAREN2] = ACTIONS(2641), - [anon_sym_BANG] = ACTIONS(2641), - [anon_sym_TILDE] = ACTIONS(2641), - [anon_sym_DASH] = ACTIONS(2639), - [anon_sym_PLUS] = ACTIONS(2639), - [anon_sym_STAR] = ACTIONS(2641), - [anon_sym_AMP_AMP] = ACTIONS(2641), - [anon_sym_AMP] = ACTIONS(2639), - [anon_sym_SEMI] = ACTIONS(2641), - [anon_sym_typedef] = ACTIONS(2639), - [anon_sym_extern] = ACTIONS(2639), - [anon_sym___attribute__] = ACTIONS(2639), - [anon_sym_COLON_COLON] = ACTIONS(2641), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2641), - [anon_sym___declspec] = ACTIONS(2639), - [anon_sym___based] = ACTIONS(2639), - [anon_sym___cdecl] = ACTIONS(2639), - [anon_sym___clrcall] = ACTIONS(2639), - [anon_sym___stdcall] = ACTIONS(2639), - [anon_sym___fastcall] = ACTIONS(2639), - [anon_sym___thiscall] = ACTIONS(2639), - [anon_sym___vectorcall] = ACTIONS(2639), - [anon_sym_LBRACE] = ACTIONS(2641), - [anon_sym_RBRACE] = ACTIONS(2641), - [anon_sym_LBRACK] = ACTIONS(2639), - [anon_sym_static] = ACTIONS(2639), - [anon_sym_register] = ACTIONS(2639), - [anon_sym_inline] = ACTIONS(2639), - [anon_sym_thread_local] = ACTIONS(2639), - [anon_sym_const] = ACTIONS(2639), - [anon_sym_volatile] = ACTIONS(2639), - [anon_sym_restrict] = ACTIONS(2639), - [anon_sym__Atomic] = ACTIONS(2639), - [anon_sym_mutable] = ACTIONS(2639), - [anon_sym_constexpr] = ACTIONS(2639), - [anon_sym_constinit] = ACTIONS(2639), - [anon_sym_consteval] = ACTIONS(2639), - [anon_sym_signed] = ACTIONS(2639), - [anon_sym_unsigned] = ACTIONS(2639), - [anon_sym_long] = ACTIONS(2639), - [anon_sym_short] = ACTIONS(2639), - [sym_primitive_type] = ACTIONS(2639), - [anon_sym_enum] = ACTIONS(2639), - [anon_sym_class] = ACTIONS(2639), - [anon_sym_struct] = ACTIONS(2639), - [anon_sym_union] = ACTIONS(2639), - [anon_sym_if] = ACTIONS(2639), - [anon_sym_switch] = ACTIONS(2639), - [anon_sym_case] = ACTIONS(2639), - [anon_sym_default] = ACTIONS(2639), - [anon_sym_while] = ACTIONS(2639), - [anon_sym_do] = ACTIONS(2639), - [anon_sym_for] = ACTIONS(2639), - [anon_sym_return] = ACTIONS(2639), - [anon_sym_break] = ACTIONS(2639), - [anon_sym_continue] = ACTIONS(2639), - [anon_sym_goto] = ACTIONS(2639), - [anon_sym_DASH_DASH] = ACTIONS(2641), - [anon_sym_PLUS_PLUS] = ACTIONS(2641), - [anon_sym_sizeof] = ACTIONS(2639), - [sym_number_literal] = ACTIONS(2641), - [anon_sym_L_SQUOTE] = ACTIONS(2641), - [anon_sym_u_SQUOTE] = ACTIONS(2641), - [anon_sym_U_SQUOTE] = ACTIONS(2641), - [anon_sym_u8_SQUOTE] = ACTIONS(2641), - [anon_sym_SQUOTE] = ACTIONS(2641), - [anon_sym_L_DQUOTE] = ACTIONS(2641), - [anon_sym_u_DQUOTE] = ACTIONS(2641), - [anon_sym_U_DQUOTE] = ACTIONS(2641), - [anon_sym_u8_DQUOTE] = ACTIONS(2641), - [anon_sym_DQUOTE] = ACTIONS(2641), - [sym_true] = ACTIONS(2639), - [sym_false] = ACTIONS(2639), - [sym_null] = ACTIONS(2639), + [606] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token2] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2639), - [anon_sym_decltype] = ACTIONS(2639), - [anon_sym_virtual] = ACTIONS(2639), - [anon_sym_explicit] = ACTIONS(2639), - [anon_sym_typename] = ACTIONS(2639), - [anon_sym_template] = ACTIONS(2639), - [anon_sym_operator] = ACTIONS(2639), - [anon_sym_try] = ACTIONS(2639), - [anon_sym_delete] = ACTIONS(2639), - [anon_sym_throw] = ACTIONS(2639), - [anon_sym_namespace] = ACTIONS(2639), - [anon_sym_using] = ACTIONS(2639), - [anon_sym_static_assert] = ACTIONS(2639), - [anon_sym_concept] = ACTIONS(2639), - [anon_sym_co_return] = ACTIONS(2639), - [anon_sym_co_yield] = ACTIONS(2639), - [anon_sym_co_await] = ACTIONS(2639), - [anon_sym_new] = ACTIONS(2639), - [anon_sym_requires] = ACTIONS(2639), - [sym_this] = ACTIONS(2639), - [sym_nullptr] = ACTIONS(2639), - [sym_raw_string_literal] = ACTIONS(2641), - }, - [967] = { - [sym_identifier] = ACTIONS(2739), - [aux_sym_preproc_include_token1] = ACTIONS(2739), - [aux_sym_preproc_def_token1] = ACTIONS(2739), - [aux_sym_preproc_if_token1] = ACTIONS(2739), - [aux_sym_preproc_if_token2] = ACTIONS(2739), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2739), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2739), - [sym_preproc_directive] = ACTIONS(2739), - [anon_sym_LPAREN2] = ACTIONS(2741), - [anon_sym_BANG] = ACTIONS(2741), - [anon_sym_TILDE] = ACTIONS(2741), - [anon_sym_DASH] = ACTIONS(2739), - [anon_sym_PLUS] = ACTIONS(2739), - [anon_sym_STAR] = ACTIONS(2741), - [anon_sym_AMP_AMP] = ACTIONS(2741), - [anon_sym_AMP] = ACTIONS(2739), - [anon_sym_SEMI] = ACTIONS(2741), - [anon_sym_typedef] = ACTIONS(2739), - [anon_sym_extern] = ACTIONS(2739), - [anon_sym___attribute__] = ACTIONS(2739), - [anon_sym_COLON_COLON] = ACTIONS(2741), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2741), - [anon_sym___declspec] = ACTIONS(2739), - [anon_sym___based] = ACTIONS(2739), - [anon_sym___cdecl] = ACTIONS(2739), - [anon_sym___clrcall] = ACTIONS(2739), - [anon_sym___stdcall] = ACTIONS(2739), - [anon_sym___fastcall] = ACTIONS(2739), - [anon_sym___thiscall] = ACTIONS(2739), - [anon_sym___vectorcall] = ACTIONS(2739), - [anon_sym_LBRACE] = ACTIONS(2741), - [anon_sym_LBRACK] = ACTIONS(2739), - [anon_sym_static] = ACTIONS(2739), - [anon_sym_register] = ACTIONS(2739), - [anon_sym_inline] = ACTIONS(2739), - [anon_sym_thread_local] = ACTIONS(2739), - [anon_sym_const] = ACTIONS(2739), - [anon_sym_volatile] = ACTIONS(2739), - [anon_sym_restrict] = ACTIONS(2739), - [anon_sym__Atomic] = ACTIONS(2739), - [anon_sym_mutable] = ACTIONS(2739), - [anon_sym_constexpr] = ACTIONS(2739), - [anon_sym_constinit] = ACTIONS(2739), - [anon_sym_consteval] = ACTIONS(2739), - [anon_sym_signed] = ACTIONS(2739), - [anon_sym_unsigned] = ACTIONS(2739), - [anon_sym_long] = ACTIONS(2739), - [anon_sym_short] = ACTIONS(2739), - [sym_primitive_type] = ACTIONS(2739), - [anon_sym_enum] = ACTIONS(2739), - [anon_sym_class] = ACTIONS(2739), - [anon_sym_struct] = ACTIONS(2739), - [anon_sym_union] = ACTIONS(2739), - [anon_sym_if] = ACTIONS(2739), - [anon_sym_switch] = ACTIONS(2739), - [anon_sym_case] = ACTIONS(2739), - [anon_sym_default] = ACTIONS(2739), - [anon_sym_while] = ACTIONS(2739), - [anon_sym_do] = ACTIONS(2739), - [anon_sym_for] = ACTIONS(2739), - [anon_sym_return] = ACTIONS(2739), - [anon_sym_break] = ACTIONS(2739), - [anon_sym_continue] = ACTIONS(2739), - [anon_sym_goto] = ACTIONS(2739), - [anon_sym_DASH_DASH] = ACTIONS(2741), - [anon_sym_PLUS_PLUS] = ACTIONS(2741), - [anon_sym_sizeof] = ACTIONS(2739), - [sym_number_literal] = ACTIONS(2741), - [anon_sym_L_SQUOTE] = ACTIONS(2741), - [anon_sym_u_SQUOTE] = ACTIONS(2741), - [anon_sym_U_SQUOTE] = ACTIONS(2741), - [anon_sym_u8_SQUOTE] = ACTIONS(2741), - [anon_sym_SQUOTE] = ACTIONS(2741), - [anon_sym_L_DQUOTE] = ACTIONS(2741), - [anon_sym_u_DQUOTE] = ACTIONS(2741), - [anon_sym_U_DQUOTE] = ACTIONS(2741), - [anon_sym_u8_DQUOTE] = ACTIONS(2741), - [anon_sym_DQUOTE] = ACTIONS(2741), - [sym_true] = ACTIONS(2739), - [sym_false] = ACTIONS(2739), - [sym_null] = ACTIONS(2739), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2739), - [anon_sym_decltype] = ACTIONS(2739), - [anon_sym_virtual] = ACTIONS(2739), - [anon_sym_explicit] = ACTIONS(2739), - [anon_sym_typename] = ACTIONS(2739), - [anon_sym_template] = ACTIONS(2739), - [anon_sym_operator] = ACTIONS(2739), - [anon_sym_try] = ACTIONS(2739), - [anon_sym_delete] = ACTIONS(2739), - [anon_sym_throw] = ACTIONS(2739), - [anon_sym_namespace] = ACTIONS(2739), - [anon_sym_using] = ACTIONS(2739), - [anon_sym_static_assert] = ACTIONS(2739), - [anon_sym_concept] = ACTIONS(2739), - [anon_sym_co_return] = ACTIONS(2739), - [anon_sym_co_yield] = ACTIONS(2739), - [anon_sym_co_await] = ACTIONS(2739), - [anon_sym_new] = ACTIONS(2739), - [anon_sym_requires] = ACTIONS(2739), - [sym_this] = ACTIONS(2739), - [sym_nullptr] = ACTIONS(2739), - [sym_raw_string_literal] = ACTIONS(2741), - }, - [968] = { - [sym_identifier] = ACTIONS(2613), - [aux_sym_preproc_include_token1] = ACTIONS(2613), - [aux_sym_preproc_def_token1] = ACTIONS(2613), - [aux_sym_preproc_if_token1] = ACTIONS(2613), - [aux_sym_preproc_if_token2] = ACTIONS(2613), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2613), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2613), - [sym_preproc_directive] = ACTIONS(2613), - [anon_sym_LPAREN2] = ACTIONS(2615), - [anon_sym_BANG] = ACTIONS(2615), - [anon_sym_TILDE] = ACTIONS(2615), - [anon_sym_DASH] = ACTIONS(2613), - [anon_sym_PLUS] = ACTIONS(2613), - [anon_sym_STAR] = ACTIONS(2615), - [anon_sym_AMP_AMP] = ACTIONS(2615), - [anon_sym_AMP] = ACTIONS(2613), - [anon_sym_SEMI] = ACTIONS(2615), - [anon_sym_typedef] = ACTIONS(2613), - [anon_sym_extern] = ACTIONS(2613), - [anon_sym___attribute__] = ACTIONS(2613), - [anon_sym_COLON_COLON] = ACTIONS(2615), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2615), - [anon_sym___declspec] = ACTIONS(2613), - [anon_sym___based] = ACTIONS(2613), - [anon_sym___cdecl] = ACTIONS(2613), - [anon_sym___clrcall] = ACTIONS(2613), - [anon_sym___stdcall] = ACTIONS(2613), - [anon_sym___fastcall] = ACTIONS(2613), - [anon_sym___thiscall] = ACTIONS(2613), - [anon_sym___vectorcall] = ACTIONS(2613), - [anon_sym_LBRACE] = ACTIONS(2615), - [anon_sym_LBRACK] = ACTIONS(2613), - [anon_sym_static] = ACTIONS(2613), - [anon_sym_register] = ACTIONS(2613), - [anon_sym_inline] = ACTIONS(2613), - [anon_sym_thread_local] = ACTIONS(2613), - [anon_sym_const] = ACTIONS(2613), - [anon_sym_volatile] = ACTIONS(2613), - [anon_sym_restrict] = ACTIONS(2613), - [anon_sym__Atomic] = ACTIONS(2613), - [anon_sym_mutable] = ACTIONS(2613), - [anon_sym_constexpr] = ACTIONS(2613), - [anon_sym_constinit] = ACTIONS(2613), - [anon_sym_consteval] = ACTIONS(2613), - [anon_sym_signed] = ACTIONS(2613), - [anon_sym_unsigned] = ACTIONS(2613), - [anon_sym_long] = ACTIONS(2613), - [anon_sym_short] = ACTIONS(2613), - [sym_primitive_type] = ACTIONS(2613), - [anon_sym_enum] = ACTIONS(2613), - [anon_sym_class] = ACTIONS(2613), - [anon_sym_struct] = ACTIONS(2613), - [anon_sym_union] = ACTIONS(2613), - [anon_sym_if] = ACTIONS(2613), - [anon_sym_switch] = ACTIONS(2613), - [anon_sym_case] = ACTIONS(2613), - [anon_sym_default] = ACTIONS(2613), - [anon_sym_while] = ACTIONS(2613), - [anon_sym_do] = ACTIONS(2613), - [anon_sym_for] = ACTIONS(2613), - [anon_sym_return] = ACTIONS(2613), - [anon_sym_break] = ACTIONS(2613), - [anon_sym_continue] = ACTIONS(2613), - [anon_sym_goto] = ACTIONS(2613), - [anon_sym_DASH_DASH] = ACTIONS(2615), - [anon_sym_PLUS_PLUS] = ACTIONS(2615), - [anon_sym_sizeof] = ACTIONS(2613), - [sym_number_literal] = ACTIONS(2615), - [anon_sym_L_SQUOTE] = ACTIONS(2615), - [anon_sym_u_SQUOTE] = ACTIONS(2615), - [anon_sym_U_SQUOTE] = ACTIONS(2615), - [anon_sym_u8_SQUOTE] = ACTIONS(2615), - [anon_sym_SQUOTE] = ACTIONS(2615), - [anon_sym_L_DQUOTE] = ACTIONS(2615), - [anon_sym_u_DQUOTE] = ACTIONS(2615), - [anon_sym_U_DQUOTE] = ACTIONS(2615), - [anon_sym_u8_DQUOTE] = ACTIONS(2615), - [anon_sym_DQUOTE] = ACTIONS(2615), - [sym_true] = ACTIONS(2613), - [sym_false] = ACTIONS(2613), - [sym_null] = ACTIONS(2613), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2613), - [anon_sym_decltype] = ACTIONS(2613), - [anon_sym_virtual] = ACTIONS(2613), - [anon_sym_explicit] = ACTIONS(2613), - [anon_sym_typename] = ACTIONS(2613), - [anon_sym_template] = ACTIONS(2613), - [anon_sym_operator] = ACTIONS(2613), - [anon_sym_try] = ACTIONS(2613), - [anon_sym_delete] = ACTIONS(2613), - [anon_sym_throw] = ACTIONS(2613), - [anon_sym_namespace] = ACTIONS(2613), - [anon_sym_using] = ACTIONS(2613), - [anon_sym_static_assert] = ACTIONS(2613), - [anon_sym_concept] = ACTIONS(2613), - [anon_sym_co_return] = ACTIONS(2613), - [anon_sym_co_yield] = ACTIONS(2613), - [anon_sym_co_await] = ACTIONS(2613), - [anon_sym_new] = ACTIONS(2613), - [anon_sym_requires] = ACTIONS(2613), - [sym_this] = ACTIONS(2613), - [sym_nullptr] = ACTIONS(2613), - [sym_raw_string_literal] = ACTIONS(2615), - }, - [969] = { - [sym_identifier] = ACTIONS(2629), - [aux_sym_preproc_include_token1] = ACTIONS(2629), - [aux_sym_preproc_def_token1] = ACTIONS(2629), - [aux_sym_preproc_if_token1] = ACTIONS(2629), - [aux_sym_preproc_if_token2] = ACTIONS(2629), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2629), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2629), - [sym_preproc_directive] = ACTIONS(2629), - [anon_sym_LPAREN2] = ACTIONS(2631), - [anon_sym_BANG] = ACTIONS(2631), - [anon_sym_TILDE] = ACTIONS(2631), - [anon_sym_DASH] = ACTIONS(2629), - [anon_sym_PLUS] = ACTIONS(2629), - [anon_sym_STAR] = ACTIONS(2631), - [anon_sym_AMP_AMP] = ACTIONS(2631), - [anon_sym_AMP] = ACTIONS(2629), - [anon_sym_SEMI] = ACTIONS(2631), - [anon_sym_typedef] = ACTIONS(2629), - [anon_sym_extern] = ACTIONS(2629), - [anon_sym___attribute__] = ACTIONS(2629), - [anon_sym_COLON_COLON] = ACTIONS(2631), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2631), - [anon_sym___declspec] = ACTIONS(2629), - [anon_sym___based] = ACTIONS(2629), - [anon_sym___cdecl] = ACTIONS(2629), - [anon_sym___clrcall] = ACTIONS(2629), - [anon_sym___stdcall] = ACTIONS(2629), - [anon_sym___fastcall] = ACTIONS(2629), - [anon_sym___thiscall] = ACTIONS(2629), - [anon_sym___vectorcall] = ACTIONS(2629), - [anon_sym_LBRACE] = ACTIONS(2631), - [anon_sym_LBRACK] = ACTIONS(2629), - [anon_sym_static] = ACTIONS(2629), - [anon_sym_register] = ACTIONS(2629), - [anon_sym_inline] = ACTIONS(2629), - [anon_sym_thread_local] = ACTIONS(2629), - [anon_sym_const] = ACTIONS(2629), - [anon_sym_volatile] = ACTIONS(2629), - [anon_sym_restrict] = ACTIONS(2629), - [anon_sym__Atomic] = ACTIONS(2629), - [anon_sym_mutable] = ACTIONS(2629), - [anon_sym_constexpr] = ACTIONS(2629), - [anon_sym_constinit] = ACTIONS(2629), - [anon_sym_consteval] = ACTIONS(2629), - [anon_sym_signed] = ACTIONS(2629), - [anon_sym_unsigned] = ACTIONS(2629), - [anon_sym_long] = ACTIONS(2629), - [anon_sym_short] = ACTIONS(2629), - [sym_primitive_type] = ACTIONS(2629), - [anon_sym_enum] = ACTIONS(2629), - [anon_sym_class] = ACTIONS(2629), - [anon_sym_struct] = ACTIONS(2629), - [anon_sym_union] = ACTIONS(2629), - [anon_sym_if] = ACTIONS(2629), - [anon_sym_switch] = ACTIONS(2629), - [anon_sym_case] = ACTIONS(2629), - [anon_sym_default] = ACTIONS(2629), - [anon_sym_while] = ACTIONS(2629), - [anon_sym_do] = ACTIONS(2629), - [anon_sym_for] = ACTIONS(2629), - [anon_sym_return] = ACTIONS(2629), - [anon_sym_break] = ACTIONS(2629), - [anon_sym_continue] = ACTIONS(2629), - [anon_sym_goto] = ACTIONS(2629), - [anon_sym_DASH_DASH] = ACTIONS(2631), - [anon_sym_PLUS_PLUS] = ACTIONS(2631), - [anon_sym_sizeof] = ACTIONS(2629), - [sym_number_literal] = ACTIONS(2631), - [anon_sym_L_SQUOTE] = ACTIONS(2631), - [anon_sym_u_SQUOTE] = ACTIONS(2631), - [anon_sym_U_SQUOTE] = ACTIONS(2631), - [anon_sym_u8_SQUOTE] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2631), - [anon_sym_L_DQUOTE] = ACTIONS(2631), - [anon_sym_u_DQUOTE] = ACTIONS(2631), - [anon_sym_U_DQUOTE] = ACTIONS(2631), - [anon_sym_u8_DQUOTE] = ACTIONS(2631), - [anon_sym_DQUOTE] = ACTIONS(2631), - [sym_true] = ACTIONS(2629), - [sym_false] = ACTIONS(2629), - [sym_null] = ACTIONS(2629), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2629), - [anon_sym_decltype] = ACTIONS(2629), - [anon_sym_virtual] = ACTIONS(2629), - [anon_sym_explicit] = ACTIONS(2629), - [anon_sym_typename] = ACTIONS(2629), - [anon_sym_template] = ACTIONS(2629), - [anon_sym_operator] = ACTIONS(2629), - [anon_sym_try] = ACTIONS(2629), - [anon_sym_delete] = ACTIONS(2629), - [anon_sym_throw] = ACTIONS(2629), - [anon_sym_namespace] = ACTIONS(2629), - [anon_sym_using] = ACTIONS(2629), - [anon_sym_static_assert] = ACTIONS(2629), - [anon_sym_concept] = ACTIONS(2629), - [anon_sym_co_return] = ACTIONS(2629), - [anon_sym_co_yield] = ACTIONS(2629), - [anon_sym_co_await] = ACTIONS(2629), - [anon_sym_new] = ACTIONS(2629), - [anon_sym_requires] = ACTIONS(2629), - [sym_this] = ACTIONS(2629), - [sym_nullptr] = ACTIONS(2629), - [sym_raw_string_literal] = ACTIONS(2631), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [970] = { - [sym_identifier] = ACTIONS(2733), - [aux_sym_preproc_include_token1] = ACTIONS(2733), - [aux_sym_preproc_def_token1] = ACTIONS(2733), - [aux_sym_preproc_if_token1] = ACTIONS(2733), - [aux_sym_preproc_if_token2] = ACTIONS(2733), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2733), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2733), - [sym_preproc_directive] = ACTIONS(2733), - [anon_sym_LPAREN2] = ACTIONS(2735), - [anon_sym_BANG] = ACTIONS(2735), - [anon_sym_TILDE] = ACTIONS(2735), - [anon_sym_DASH] = ACTIONS(2733), - [anon_sym_PLUS] = ACTIONS(2733), - [anon_sym_STAR] = ACTIONS(2735), - [anon_sym_AMP_AMP] = ACTIONS(2735), - [anon_sym_AMP] = ACTIONS(2733), - [anon_sym_SEMI] = ACTIONS(2735), - [anon_sym_typedef] = ACTIONS(2733), - [anon_sym_extern] = ACTIONS(2733), - [anon_sym___attribute__] = ACTIONS(2733), - [anon_sym_COLON_COLON] = ACTIONS(2735), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2735), - [anon_sym___declspec] = ACTIONS(2733), - [anon_sym___based] = ACTIONS(2733), - [anon_sym___cdecl] = ACTIONS(2733), - [anon_sym___clrcall] = ACTIONS(2733), - [anon_sym___stdcall] = ACTIONS(2733), - [anon_sym___fastcall] = ACTIONS(2733), - [anon_sym___thiscall] = ACTIONS(2733), - [anon_sym___vectorcall] = ACTIONS(2733), - [anon_sym_LBRACE] = ACTIONS(2735), - [anon_sym_LBRACK] = ACTIONS(2733), - [anon_sym_static] = ACTIONS(2733), - [anon_sym_register] = ACTIONS(2733), - [anon_sym_inline] = ACTIONS(2733), - [anon_sym_thread_local] = ACTIONS(2733), - [anon_sym_const] = ACTIONS(2733), - [anon_sym_volatile] = ACTIONS(2733), - [anon_sym_restrict] = ACTIONS(2733), - [anon_sym__Atomic] = ACTIONS(2733), - [anon_sym_mutable] = ACTIONS(2733), - [anon_sym_constexpr] = ACTIONS(2733), - [anon_sym_constinit] = ACTIONS(2733), - [anon_sym_consteval] = ACTIONS(2733), - [anon_sym_signed] = ACTIONS(2733), - [anon_sym_unsigned] = ACTIONS(2733), - [anon_sym_long] = ACTIONS(2733), - [anon_sym_short] = ACTIONS(2733), - [sym_primitive_type] = ACTIONS(2733), - [anon_sym_enum] = ACTIONS(2733), - [anon_sym_class] = ACTIONS(2733), - [anon_sym_struct] = ACTIONS(2733), - [anon_sym_union] = ACTIONS(2733), - [anon_sym_if] = ACTIONS(2733), - [anon_sym_switch] = ACTIONS(2733), - [anon_sym_case] = ACTIONS(2733), - [anon_sym_default] = ACTIONS(2733), - [anon_sym_while] = ACTIONS(2733), - [anon_sym_do] = ACTIONS(2733), - [anon_sym_for] = ACTIONS(2733), - [anon_sym_return] = ACTIONS(2733), - [anon_sym_break] = ACTIONS(2733), - [anon_sym_continue] = ACTIONS(2733), - [anon_sym_goto] = ACTIONS(2733), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_sizeof] = ACTIONS(2733), - [sym_number_literal] = ACTIONS(2735), - [anon_sym_L_SQUOTE] = ACTIONS(2735), - [anon_sym_u_SQUOTE] = ACTIONS(2735), - [anon_sym_U_SQUOTE] = ACTIONS(2735), - [anon_sym_u8_SQUOTE] = ACTIONS(2735), - [anon_sym_SQUOTE] = ACTIONS(2735), - [anon_sym_L_DQUOTE] = ACTIONS(2735), - [anon_sym_u_DQUOTE] = ACTIONS(2735), - [anon_sym_U_DQUOTE] = ACTIONS(2735), - [anon_sym_u8_DQUOTE] = ACTIONS(2735), - [anon_sym_DQUOTE] = ACTIONS(2735), - [sym_true] = ACTIONS(2733), - [sym_false] = ACTIONS(2733), - [sym_null] = ACTIONS(2733), + [607] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token2] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2733), - [anon_sym_decltype] = ACTIONS(2733), - [anon_sym_virtual] = ACTIONS(2733), - [anon_sym_explicit] = ACTIONS(2733), - [anon_sym_typename] = ACTIONS(2733), - [anon_sym_template] = ACTIONS(2733), - [anon_sym_operator] = ACTIONS(2733), - [anon_sym_try] = ACTIONS(2733), - [anon_sym_delete] = ACTIONS(2733), - [anon_sym_throw] = ACTIONS(2733), - [anon_sym_namespace] = ACTIONS(2733), - [anon_sym_using] = ACTIONS(2733), - [anon_sym_static_assert] = ACTIONS(2733), - [anon_sym_concept] = ACTIONS(2733), - [anon_sym_co_return] = ACTIONS(2733), - [anon_sym_co_yield] = ACTIONS(2733), - [anon_sym_co_await] = ACTIONS(2733), - [anon_sym_new] = ACTIONS(2733), - [anon_sym_requires] = ACTIONS(2733), - [sym_this] = ACTIONS(2733), - [sym_nullptr] = ACTIONS(2733), - [sym_raw_string_literal] = ACTIONS(2735), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [971] = { - [sym_identifier] = ACTIONS(2797), - [aux_sym_preproc_include_token1] = ACTIONS(2797), - [aux_sym_preproc_def_token1] = ACTIONS(2797), - [aux_sym_preproc_if_token1] = ACTIONS(2797), - [aux_sym_preproc_if_token2] = ACTIONS(2797), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2797), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2797), - [sym_preproc_directive] = ACTIONS(2797), - [anon_sym_LPAREN2] = ACTIONS(2799), - [anon_sym_BANG] = ACTIONS(2799), - [anon_sym_TILDE] = ACTIONS(2799), - [anon_sym_DASH] = ACTIONS(2797), - [anon_sym_PLUS] = ACTIONS(2797), - [anon_sym_STAR] = ACTIONS(2799), - [anon_sym_AMP_AMP] = ACTIONS(2799), - [anon_sym_AMP] = ACTIONS(2797), - [anon_sym_SEMI] = ACTIONS(2799), - [anon_sym_typedef] = ACTIONS(2797), - [anon_sym_extern] = ACTIONS(2797), - [anon_sym___attribute__] = ACTIONS(2797), - [anon_sym_COLON_COLON] = ACTIONS(2799), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2799), - [anon_sym___declspec] = ACTIONS(2797), - [anon_sym___based] = ACTIONS(2797), - [anon_sym___cdecl] = ACTIONS(2797), - [anon_sym___clrcall] = ACTIONS(2797), - [anon_sym___stdcall] = ACTIONS(2797), - [anon_sym___fastcall] = ACTIONS(2797), - [anon_sym___thiscall] = ACTIONS(2797), - [anon_sym___vectorcall] = ACTIONS(2797), - [anon_sym_LBRACE] = ACTIONS(2799), - [anon_sym_LBRACK] = ACTIONS(2797), - [anon_sym_static] = ACTIONS(2797), - [anon_sym_register] = ACTIONS(2797), - [anon_sym_inline] = ACTIONS(2797), - [anon_sym_thread_local] = ACTIONS(2797), - [anon_sym_const] = ACTIONS(2797), - [anon_sym_volatile] = ACTIONS(2797), - [anon_sym_restrict] = ACTIONS(2797), - [anon_sym__Atomic] = ACTIONS(2797), - [anon_sym_mutable] = ACTIONS(2797), - [anon_sym_constexpr] = ACTIONS(2797), - [anon_sym_constinit] = ACTIONS(2797), - [anon_sym_consteval] = ACTIONS(2797), - [anon_sym_signed] = ACTIONS(2797), - [anon_sym_unsigned] = ACTIONS(2797), - [anon_sym_long] = ACTIONS(2797), - [anon_sym_short] = ACTIONS(2797), - [sym_primitive_type] = ACTIONS(2797), - [anon_sym_enum] = ACTIONS(2797), - [anon_sym_class] = ACTIONS(2797), - [anon_sym_struct] = ACTIONS(2797), - [anon_sym_union] = ACTIONS(2797), - [anon_sym_if] = ACTIONS(2797), - [anon_sym_switch] = ACTIONS(2797), - [anon_sym_case] = ACTIONS(2797), - [anon_sym_default] = ACTIONS(2797), - [anon_sym_while] = ACTIONS(2797), - [anon_sym_do] = ACTIONS(2797), - [anon_sym_for] = ACTIONS(2797), - [anon_sym_return] = ACTIONS(2797), - [anon_sym_break] = ACTIONS(2797), - [anon_sym_continue] = ACTIONS(2797), - [anon_sym_goto] = ACTIONS(2797), - [anon_sym_DASH_DASH] = ACTIONS(2799), - [anon_sym_PLUS_PLUS] = ACTIONS(2799), - [anon_sym_sizeof] = ACTIONS(2797), - [sym_number_literal] = ACTIONS(2799), - [anon_sym_L_SQUOTE] = ACTIONS(2799), - [anon_sym_u_SQUOTE] = ACTIONS(2799), - [anon_sym_U_SQUOTE] = ACTIONS(2799), - [anon_sym_u8_SQUOTE] = ACTIONS(2799), - [anon_sym_SQUOTE] = ACTIONS(2799), - [anon_sym_L_DQUOTE] = ACTIONS(2799), - [anon_sym_u_DQUOTE] = ACTIONS(2799), - [anon_sym_U_DQUOTE] = ACTIONS(2799), - [anon_sym_u8_DQUOTE] = ACTIONS(2799), - [anon_sym_DQUOTE] = ACTIONS(2799), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [sym_null] = ACTIONS(2797), + [608] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token2] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2797), - [anon_sym_decltype] = ACTIONS(2797), - [anon_sym_virtual] = ACTIONS(2797), - [anon_sym_explicit] = ACTIONS(2797), - [anon_sym_typename] = ACTIONS(2797), - [anon_sym_template] = ACTIONS(2797), - [anon_sym_operator] = ACTIONS(2797), - [anon_sym_try] = ACTIONS(2797), - [anon_sym_delete] = ACTIONS(2797), - [anon_sym_throw] = ACTIONS(2797), - [anon_sym_namespace] = ACTIONS(2797), - [anon_sym_using] = ACTIONS(2797), - [anon_sym_static_assert] = ACTIONS(2797), - [anon_sym_concept] = ACTIONS(2797), - [anon_sym_co_return] = ACTIONS(2797), - [anon_sym_co_yield] = ACTIONS(2797), - [anon_sym_co_await] = ACTIONS(2797), - [anon_sym_new] = ACTIONS(2797), - [anon_sym_requires] = ACTIONS(2797), - [sym_this] = ACTIONS(2797), - [sym_nullptr] = ACTIONS(2797), - [sym_raw_string_literal] = ACTIONS(2799), - }, - [972] = { - [sym_identifier] = ACTIONS(2709), - [aux_sym_preproc_include_token1] = ACTIONS(2709), - [aux_sym_preproc_def_token1] = ACTIONS(2709), - [aux_sym_preproc_if_token1] = ACTIONS(2709), - [aux_sym_preproc_if_token2] = ACTIONS(2709), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2709), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2709), - [sym_preproc_directive] = ACTIONS(2709), - [anon_sym_LPAREN2] = ACTIONS(2711), - [anon_sym_BANG] = ACTIONS(2711), - [anon_sym_TILDE] = ACTIONS(2711), - [anon_sym_DASH] = ACTIONS(2709), - [anon_sym_PLUS] = ACTIONS(2709), - [anon_sym_STAR] = ACTIONS(2711), - [anon_sym_AMP_AMP] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym_SEMI] = ACTIONS(2711), - [anon_sym_typedef] = ACTIONS(2709), - [anon_sym_extern] = ACTIONS(2709), - [anon_sym___attribute__] = ACTIONS(2709), - [anon_sym_COLON_COLON] = ACTIONS(2711), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2711), - [anon_sym___declspec] = ACTIONS(2709), - [anon_sym___based] = ACTIONS(2709), - [anon_sym___cdecl] = ACTIONS(2709), - [anon_sym___clrcall] = ACTIONS(2709), - [anon_sym___stdcall] = ACTIONS(2709), - [anon_sym___fastcall] = ACTIONS(2709), - [anon_sym___thiscall] = ACTIONS(2709), - [anon_sym___vectorcall] = ACTIONS(2709), - [anon_sym_LBRACE] = ACTIONS(2711), - [anon_sym_LBRACK] = ACTIONS(2709), - [anon_sym_static] = ACTIONS(2709), - [anon_sym_register] = ACTIONS(2709), - [anon_sym_inline] = ACTIONS(2709), - [anon_sym_thread_local] = ACTIONS(2709), - [anon_sym_const] = ACTIONS(2709), - [anon_sym_volatile] = ACTIONS(2709), - [anon_sym_restrict] = ACTIONS(2709), - [anon_sym__Atomic] = ACTIONS(2709), - [anon_sym_mutable] = ACTIONS(2709), - [anon_sym_constexpr] = ACTIONS(2709), - [anon_sym_constinit] = ACTIONS(2709), - [anon_sym_consteval] = ACTIONS(2709), - [anon_sym_signed] = ACTIONS(2709), - [anon_sym_unsigned] = ACTIONS(2709), - [anon_sym_long] = ACTIONS(2709), - [anon_sym_short] = ACTIONS(2709), - [sym_primitive_type] = ACTIONS(2709), - [anon_sym_enum] = ACTIONS(2709), - [anon_sym_class] = ACTIONS(2709), - [anon_sym_struct] = ACTIONS(2709), - [anon_sym_union] = ACTIONS(2709), - [anon_sym_if] = ACTIONS(2709), - [anon_sym_switch] = ACTIONS(2709), - [anon_sym_case] = ACTIONS(2709), - [anon_sym_default] = ACTIONS(2709), - [anon_sym_while] = ACTIONS(2709), - [anon_sym_do] = ACTIONS(2709), - [anon_sym_for] = ACTIONS(2709), - [anon_sym_return] = ACTIONS(2709), - [anon_sym_break] = ACTIONS(2709), - [anon_sym_continue] = ACTIONS(2709), - [anon_sym_goto] = ACTIONS(2709), - [anon_sym_DASH_DASH] = ACTIONS(2711), - [anon_sym_PLUS_PLUS] = ACTIONS(2711), - [anon_sym_sizeof] = ACTIONS(2709), - [sym_number_literal] = ACTIONS(2711), - [anon_sym_L_SQUOTE] = ACTIONS(2711), - [anon_sym_u_SQUOTE] = ACTIONS(2711), - [anon_sym_U_SQUOTE] = ACTIONS(2711), - [anon_sym_u8_SQUOTE] = ACTIONS(2711), - [anon_sym_SQUOTE] = ACTIONS(2711), - [anon_sym_L_DQUOTE] = ACTIONS(2711), - [anon_sym_u_DQUOTE] = ACTIONS(2711), - [anon_sym_U_DQUOTE] = ACTIONS(2711), - [anon_sym_u8_DQUOTE] = ACTIONS(2711), - [anon_sym_DQUOTE] = ACTIONS(2711), - [sym_true] = ACTIONS(2709), - [sym_false] = ACTIONS(2709), - [sym_null] = ACTIONS(2709), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2709), - [anon_sym_decltype] = ACTIONS(2709), - [anon_sym_virtual] = ACTIONS(2709), - [anon_sym_explicit] = ACTIONS(2709), - [anon_sym_typename] = ACTIONS(2709), - [anon_sym_template] = ACTIONS(2709), - [anon_sym_operator] = ACTIONS(2709), - [anon_sym_try] = ACTIONS(2709), - [anon_sym_delete] = ACTIONS(2709), - [anon_sym_throw] = ACTIONS(2709), - [anon_sym_namespace] = ACTIONS(2709), - [anon_sym_using] = ACTIONS(2709), - [anon_sym_static_assert] = ACTIONS(2709), - [anon_sym_concept] = ACTIONS(2709), - [anon_sym_co_return] = ACTIONS(2709), - [anon_sym_co_yield] = ACTIONS(2709), - [anon_sym_co_await] = ACTIONS(2709), - [anon_sym_new] = ACTIONS(2709), - [anon_sym_requires] = ACTIONS(2709), - [sym_this] = ACTIONS(2709), - [sym_nullptr] = ACTIONS(2709), - [sym_raw_string_literal] = ACTIONS(2711), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [973] = { - [sym_identifier] = ACTIONS(2793), - [aux_sym_preproc_include_token1] = ACTIONS(2793), - [aux_sym_preproc_def_token1] = ACTIONS(2793), - [aux_sym_preproc_if_token1] = ACTIONS(2793), - [aux_sym_preproc_if_token2] = ACTIONS(2793), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2793), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2793), - [sym_preproc_directive] = ACTIONS(2793), - [anon_sym_LPAREN2] = ACTIONS(2795), - [anon_sym_BANG] = ACTIONS(2795), - [anon_sym_TILDE] = ACTIONS(2795), - [anon_sym_DASH] = ACTIONS(2793), - [anon_sym_PLUS] = ACTIONS(2793), - [anon_sym_STAR] = ACTIONS(2795), - [anon_sym_AMP_AMP] = ACTIONS(2795), - [anon_sym_AMP] = ACTIONS(2793), - [anon_sym_SEMI] = ACTIONS(2795), - [anon_sym_typedef] = ACTIONS(2793), - [anon_sym_extern] = ACTIONS(2793), - [anon_sym___attribute__] = ACTIONS(2793), - [anon_sym_COLON_COLON] = ACTIONS(2795), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2795), - [anon_sym___declspec] = ACTIONS(2793), - [anon_sym___based] = ACTIONS(2793), - [anon_sym___cdecl] = ACTIONS(2793), - [anon_sym___clrcall] = ACTIONS(2793), - [anon_sym___stdcall] = ACTIONS(2793), - [anon_sym___fastcall] = ACTIONS(2793), - [anon_sym___thiscall] = ACTIONS(2793), - [anon_sym___vectorcall] = ACTIONS(2793), - [anon_sym_LBRACE] = ACTIONS(2795), - [anon_sym_LBRACK] = ACTIONS(2793), - [anon_sym_static] = ACTIONS(2793), - [anon_sym_register] = ACTIONS(2793), - [anon_sym_inline] = ACTIONS(2793), - [anon_sym_thread_local] = ACTIONS(2793), - [anon_sym_const] = ACTIONS(2793), - [anon_sym_volatile] = ACTIONS(2793), - [anon_sym_restrict] = ACTIONS(2793), - [anon_sym__Atomic] = ACTIONS(2793), - [anon_sym_mutable] = ACTIONS(2793), - [anon_sym_constexpr] = ACTIONS(2793), - [anon_sym_constinit] = ACTIONS(2793), - [anon_sym_consteval] = ACTIONS(2793), - [anon_sym_signed] = ACTIONS(2793), - [anon_sym_unsigned] = ACTIONS(2793), - [anon_sym_long] = ACTIONS(2793), - [anon_sym_short] = ACTIONS(2793), - [sym_primitive_type] = ACTIONS(2793), - [anon_sym_enum] = ACTIONS(2793), - [anon_sym_class] = ACTIONS(2793), - [anon_sym_struct] = ACTIONS(2793), - [anon_sym_union] = ACTIONS(2793), - [anon_sym_if] = ACTIONS(2793), - [anon_sym_switch] = ACTIONS(2793), - [anon_sym_case] = ACTIONS(2793), - [anon_sym_default] = ACTIONS(2793), - [anon_sym_while] = ACTIONS(2793), - [anon_sym_do] = ACTIONS(2793), - [anon_sym_for] = ACTIONS(2793), - [anon_sym_return] = ACTIONS(2793), - [anon_sym_break] = ACTIONS(2793), - [anon_sym_continue] = ACTIONS(2793), - [anon_sym_goto] = ACTIONS(2793), - [anon_sym_DASH_DASH] = ACTIONS(2795), - [anon_sym_PLUS_PLUS] = ACTIONS(2795), - [anon_sym_sizeof] = ACTIONS(2793), - [sym_number_literal] = ACTIONS(2795), - [anon_sym_L_SQUOTE] = ACTIONS(2795), - [anon_sym_u_SQUOTE] = ACTIONS(2795), - [anon_sym_U_SQUOTE] = ACTIONS(2795), - [anon_sym_u8_SQUOTE] = ACTIONS(2795), - [anon_sym_SQUOTE] = ACTIONS(2795), - [anon_sym_L_DQUOTE] = ACTIONS(2795), - [anon_sym_u_DQUOTE] = ACTIONS(2795), - [anon_sym_U_DQUOTE] = ACTIONS(2795), - [anon_sym_u8_DQUOTE] = ACTIONS(2795), - [anon_sym_DQUOTE] = ACTIONS(2795), - [sym_true] = ACTIONS(2793), - [sym_false] = ACTIONS(2793), - [sym_null] = ACTIONS(2793), + [609] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token2] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2793), - [anon_sym_decltype] = ACTIONS(2793), - [anon_sym_virtual] = ACTIONS(2793), - [anon_sym_explicit] = ACTIONS(2793), - [anon_sym_typename] = ACTIONS(2793), - [anon_sym_template] = ACTIONS(2793), - [anon_sym_operator] = ACTIONS(2793), - [anon_sym_try] = ACTIONS(2793), - [anon_sym_delete] = ACTIONS(2793), - [anon_sym_throw] = ACTIONS(2793), - [anon_sym_namespace] = ACTIONS(2793), - [anon_sym_using] = ACTIONS(2793), - [anon_sym_static_assert] = ACTIONS(2793), - [anon_sym_concept] = ACTIONS(2793), - [anon_sym_co_return] = ACTIONS(2793), - [anon_sym_co_yield] = ACTIONS(2793), - [anon_sym_co_await] = ACTIONS(2793), - [anon_sym_new] = ACTIONS(2793), - [anon_sym_requires] = ACTIONS(2793), - [sym_this] = ACTIONS(2793), - [sym_nullptr] = ACTIONS(2793), - [sym_raw_string_literal] = ACTIONS(2795), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [974] = { - [ts_builtin_sym_end] = ACTIONS(2597), + [610] = { [sym_identifier] = ACTIONS(2595), [aux_sym_preproc_include_token1] = ACTIONS(2595), [aux_sym_preproc_def_token1] = ACTIONS(2595), [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token2] = ACTIONS(2595), [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), [sym_preproc_directive] = ACTIONS(2595), @@ -140690,6 +104562,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(2595), [anon_sym_union] = ACTIONS(2595), [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), [anon_sym_switch] = ACTIONS(2595), [anon_sym_case] = ACTIONS(2595), [anon_sym_default] = ACTIONS(2595), @@ -140700,6 +104573,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(2595), [anon_sym_continue] = ACTIONS(2595), [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), [anon_sym_DASH_DASH] = ACTIONS(2597), [anon_sym_PLUS_PLUS] = ACTIONS(2597), [anon_sym_sizeof] = ACTIONS(2595), @@ -140741,2021 +104616,552 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(2595), [sym_raw_string_literal] = ACTIONS(2597), }, - [975] = { - [sym_identifier] = ACTIONS(2717), - [aux_sym_preproc_include_token1] = ACTIONS(2717), - [aux_sym_preproc_def_token1] = ACTIONS(2717), - [aux_sym_preproc_if_token1] = ACTIONS(2717), - [aux_sym_preproc_if_token2] = ACTIONS(2717), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2717), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2717), - [sym_preproc_directive] = ACTIONS(2717), - [anon_sym_LPAREN2] = ACTIONS(2719), - [anon_sym_BANG] = ACTIONS(2719), - [anon_sym_TILDE] = ACTIONS(2719), - [anon_sym_DASH] = ACTIONS(2717), - [anon_sym_PLUS] = ACTIONS(2717), - [anon_sym_STAR] = ACTIONS(2719), - [anon_sym_AMP_AMP] = ACTIONS(2719), - [anon_sym_AMP] = ACTIONS(2717), - [anon_sym_SEMI] = ACTIONS(2719), - [anon_sym_typedef] = ACTIONS(2717), - [anon_sym_extern] = ACTIONS(2717), - [anon_sym___attribute__] = ACTIONS(2717), - [anon_sym_COLON_COLON] = ACTIONS(2719), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2719), - [anon_sym___declspec] = ACTIONS(2717), - [anon_sym___based] = ACTIONS(2717), - [anon_sym___cdecl] = ACTIONS(2717), - [anon_sym___clrcall] = ACTIONS(2717), - [anon_sym___stdcall] = ACTIONS(2717), - [anon_sym___fastcall] = ACTIONS(2717), - [anon_sym___thiscall] = ACTIONS(2717), - [anon_sym___vectorcall] = ACTIONS(2717), - [anon_sym_LBRACE] = ACTIONS(2719), - [anon_sym_LBRACK] = ACTIONS(2717), - [anon_sym_static] = ACTIONS(2717), - [anon_sym_register] = ACTIONS(2717), - [anon_sym_inline] = ACTIONS(2717), - [anon_sym_thread_local] = ACTIONS(2717), - [anon_sym_const] = ACTIONS(2717), - [anon_sym_volatile] = ACTIONS(2717), - [anon_sym_restrict] = ACTIONS(2717), - [anon_sym__Atomic] = ACTIONS(2717), - [anon_sym_mutable] = ACTIONS(2717), - [anon_sym_constexpr] = ACTIONS(2717), - [anon_sym_constinit] = ACTIONS(2717), - [anon_sym_consteval] = ACTIONS(2717), - [anon_sym_signed] = ACTIONS(2717), - [anon_sym_unsigned] = ACTIONS(2717), - [anon_sym_long] = ACTIONS(2717), - [anon_sym_short] = ACTIONS(2717), - [sym_primitive_type] = ACTIONS(2717), - [anon_sym_enum] = ACTIONS(2717), - [anon_sym_class] = ACTIONS(2717), - [anon_sym_struct] = ACTIONS(2717), - [anon_sym_union] = ACTIONS(2717), - [anon_sym_if] = ACTIONS(2717), - [anon_sym_switch] = ACTIONS(2717), - [anon_sym_case] = ACTIONS(2717), - [anon_sym_default] = ACTIONS(2717), - [anon_sym_while] = ACTIONS(2717), - [anon_sym_do] = ACTIONS(2717), - [anon_sym_for] = ACTIONS(2717), - [anon_sym_return] = ACTIONS(2717), - [anon_sym_break] = ACTIONS(2717), - [anon_sym_continue] = ACTIONS(2717), - [anon_sym_goto] = ACTIONS(2717), - [anon_sym_DASH_DASH] = ACTIONS(2719), - [anon_sym_PLUS_PLUS] = ACTIONS(2719), - [anon_sym_sizeof] = ACTIONS(2717), - [sym_number_literal] = ACTIONS(2719), - [anon_sym_L_SQUOTE] = ACTIONS(2719), - [anon_sym_u_SQUOTE] = ACTIONS(2719), - [anon_sym_U_SQUOTE] = ACTIONS(2719), - [anon_sym_u8_SQUOTE] = ACTIONS(2719), - [anon_sym_SQUOTE] = ACTIONS(2719), - [anon_sym_L_DQUOTE] = ACTIONS(2719), - [anon_sym_u_DQUOTE] = ACTIONS(2719), - [anon_sym_U_DQUOTE] = ACTIONS(2719), - [anon_sym_u8_DQUOTE] = ACTIONS(2719), - [anon_sym_DQUOTE] = ACTIONS(2719), - [sym_true] = ACTIONS(2717), - [sym_false] = ACTIONS(2717), - [sym_null] = ACTIONS(2717), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2717), - [anon_sym_decltype] = ACTIONS(2717), - [anon_sym_virtual] = ACTIONS(2717), - [anon_sym_explicit] = ACTIONS(2717), - [anon_sym_typename] = ACTIONS(2717), - [anon_sym_template] = ACTIONS(2717), - [anon_sym_operator] = ACTIONS(2717), - [anon_sym_try] = ACTIONS(2717), - [anon_sym_delete] = ACTIONS(2717), - [anon_sym_throw] = ACTIONS(2717), - [anon_sym_namespace] = ACTIONS(2717), - [anon_sym_using] = ACTIONS(2717), - [anon_sym_static_assert] = ACTIONS(2717), - [anon_sym_concept] = ACTIONS(2717), - [anon_sym_co_return] = ACTIONS(2717), - [anon_sym_co_yield] = ACTIONS(2717), - [anon_sym_co_await] = ACTIONS(2717), - [anon_sym_new] = ACTIONS(2717), - [anon_sym_requires] = ACTIONS(2717), - [sym_this] = ACTIONS(2717), - [sym_nullptr] = ACTIONS(2717), - [sym_raw_string_literal] = ACTIONS(2719), - }, - [976] = { - [sym_identifier] = ACTIONS(2677), - [aux_sym_preproc_include_token1] = ACTIONS(2677), - [aux_sym_preproc_def_token1] = ACTIONS(2677), - [aux_sym_preproc_if_token1] = ACTIONS(2677), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2677), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2677), - [sym_preproc_directive] = ACTIONS(2677), - [anon_sym_LPAREN2] = ACTIONS(2679), - [anon_sym_BANG] = ACTIONS(2679), - [anon_sym_TILDE] = ACTIONS(2679), - [anon_sym_DASH] = ACTIONS(2677), - [anon_sym_PLUS] = ACTIONS(2677), - [anon_sym_STAR] = ACTIONS(2679), - [anon_sym_AMP_AMP] = ACTIONS(2679), - [anon_sym_AMP] = ACTIONS(2677), - [anon_sym_SEMI] = ACTIONS(2679), - [anon_sym_typedef] = ACTIONS(2677), - [anon_sym_extern] = ACTIONS(2677), - [anon_sym___attribute__] = ACTIONS(2677), - [anon_sym_COLON_COLON] = ACTIONS(2679), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2679), - [anon_sym___declspec] = ACTIONS(2677), - [anon_sym___based] = ACTIONS(2677), - [anon_sym___cdecl] = ACTIONS(2677), - [anon_sym___clrcall] = ACTIONS(2677), - [anon_sym___stdcall] = ACTIONS(2677), - [anon_sym___fastcall] = ACTIONS(2677), - [anon_sym___thiscall] = ACTIONS(2677), - [anon_sym___vectorcall] = ACTIONS(2677), - [anon_sym_LBRACE] = ACTIONS(2679), - [anon_sym_RBRACE] = ACTIONS(2679), - [anon_sym_LBRACK] = ACTIONS(2677), - [anon_sym_static] = ACTIONS(2677), - [anon_sym_register] = ACTIONS(2677), - [anon_sym_inline] = ACTIONS(2677), - [anon_sym_thread_local] = ACTIONS(2677), - [anon_sym_const] = ACTIONS(2677), - [anon_sym_volatile] = ACTIONS(2677), - [anon_sym_restrict] = ACTIONS(2677), - [anon_sym__Atomic] = ACTIONS(2677), - [anon_sym_mutable] = ACTIONS(2677), - [anon_sym_constexpr] = ACTIONS(2677), - [anon_sym_constinit] = ACTIONS(2677), - [anon_sym_consteval] = ACTIONS(2677), - [anon_sym_signed] = ACTIONS(2677), - [anon_sym_unsigned] = ACTIONS(2677), - [anon_sym_long] = ACTIONS(2677), - [anon_sym_short] = ACTIONS(2677), - [sym_primitive_type] = ACTIONS(2677), - [anon_sym_enum] = ACTIONS(2677), - [anon_sym_class] = ACTIONS(2677), - [anon_sym_struct] = ACTIONS(2677), - [anon_sym_union] = ACTIONS(2677), - [anon_sym_if] = ACTIONS(2677), - [anon_sym_switch] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2677), - [anon_sym_default] = ACTIONS(2677), - [anon_sym_while] = ACTIONS(2677), - [anon_sym_do] = ACTIONS(2677), - [anon_sym_for] = ACTIONS(2677), - [anon_sym_return] = ACTIONS(2677), - [anon_sym_break] = ACTIONS(2677), - [anon_sym_continue] = ACTIONS(2677), - [anon_sym_goto] = ACTIONS(2677), - [anon_sym_DASH_DASH] = ACTIONS(2679), - [anon_sym_PLUS_PLUS] = ACTIONS(2679), - [anon_sym_sizeof] = ACTIONS(2677), - [sym_number_literal] = ACTIONS(2679), - [anon_sym_L_SQUOTE] = ACTIONS(2679), - [anon_sym_u_SQUOTE] = ACTIONS(2679), - [anon_sym_U_SQUOTE] = ACTIONS(2679), - [anon_sym_u8_SQUOTE] = ACTIONS(2679), - [anon_sym_SQUOTE] = ACTIONS(2679), - [anon_sym_L_DQUOTE] = ACTIONS(2679), - [anon_sym_u_DQUOTE] = ACTIONS(2679), - [anon_sym_U_DQUOTE] = ACTIONS(2679), - [anon_sym_u8_DQUOTE] = ACTIONS(2679), - [anon_sym_DQUOTE] = ACTIONS(2679), - [sym_true] = ACTIONS(2677), - [sym_false] = ACTIONS(2677), - [sym_null] = ACTIONS(2677), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2677), - [anon_sym_decltype] = ACTIONS(2677), - [anon_sym_virtual] = ACTIONS(2677), - [anon_sym_explicit] = ACTIONS(2677), - [anon_sym_typename] = ACTIONS(2677), - [anon_sym_template] = ACTIONS(2677), - [anon_sym_operator] = ACTIONS(2677), - [anon_sym_try] = ACTIONS(2677), - [anon_sym_delete] = ACTIONS(2677), - [anon_sym_throw] = ACTIONS(2677), - [anon_sym_namespace] = ACTIONS(2677), - [anon_sym_using] = ACTIONS(2677), - [anon_sym_static_assert] = ACTIONS(2677), - [anon_sym_concept] = ACTIONS(2677), - [anon_sym_co_return] = ACTIONS(2677), - [anon_sym_co_yield] = ACTIONS(2677), - [anon_sym_co_await] = ACTIONS(2677), - [anon_sym_new] = ACTIONS(2677), - [anon_sym_requires] = ACTIONS(2677), - [sym_this] = ACTIONS(2677), - [sym_nullptr] = ACTIONS(2677), - [sym_raw_string_literal] = ACTIONS(2679), - }, - [977] = { - [sym_identifier] = ACTIONS(2673), - [aux_sym_preproc_include_token1] = ACTIONS(2673), - [aux_sym_preproc_def_token1] = ACTIONS(2673), - [aux_sym_preproc_if_token1] = ACTIONS(2673), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2673), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2673), - [sym_preproc_directive] = ACTIONS(2673), - [anon_sym_LPAREN2] = ACTIONS(2675), - [anon_sym_BANG] = ACTIONS(2675), - [anon_sym_TILDE] = ACTIONS(2675), - [anon_sym_DASH] = ACTIONS(2673), - [anon_sym_PLUS] = ACTIONS(2673), - [anon_sym_STAR] = ACTIONS(2675), - [anon_sym_AMP_AMP] = ACTIONS(2675), - [anon_sym_AMP] = ACTIONS(2673), - [anon_sym_SEMI] = ACTIONS(2675), - [anon_sym_typedef] = ACTIONS(2673), - [anon_sym_extern] = ACTIONS(2673), - [anon_sym___attribute__] = ACTIONS(2673), - [anon_sym_COLON_COLON] = ACTIONS(2675), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2675), - [anon_sym___declspec] = ACTIONS(2673), - [anon_sym___based] = ACTIONS(2673), - [anon_sym___cdecl] = ACTIONS(2673), - [anon_sym___clrcall] = ACTIONS(2673), - [anon_sym___stdcall] = ACTIONS(2673), - [anon_sym___fastcall] = ACTIONS(2673), - [anon_sym___thiscall] = ACTIONS(2673), - [anon_sym___vectorcall] = ACTIONS(2673), - [anon_sym_LBRACE] = ACTIONS(2675), - [anon_sym_RBRACE] = ACTIONS(2675), - [anon_sym_LBRACK] = ACTIONS(2673), - [anon_sym_static] = ACTIONS(2673), - [anon_sym_register] = ACTIONS(2673), - [anon_sym_inline] = ACTIONS(2673), - [anon_sym_thread_local] = ACTIONS(2673), - [anon_sym_const] = ACTIONS(2673), - [anon_sym_volatile] = ACTIONS(2673), - [anon_sym_restrict] = ACTIONS(2673), - [anon_sym__Atomic] = ACTIONS(2673), - [anon_sym_mutable] = ACTIONS(2673), - [anon_sym_constexpr] = ACTIONS(2673), - [anon_sym_constinit] = ACTIONS(2673), - [anon_sym_consteval] = ACTIONS(2673), - [anon_sym_signed] = ACTIONS(2673), - [anon_sym_unsigned] = ACTIONS(2673), - [anon_sym_long] = ACTIONS(2673), - [anon_sym_short] = ACTIONS(2673), - [sym_primitive_type] = ACTIONS(2673), - [anon_sym_enum] = ACTIONS(2673), - [anon_sym_class] = ACTIONS(2673), - [anon_sym_struct] = ACTIONS(2673), - [anon_sym_union] = ACTIONS(2673), - [anon_sym_if] = ACTIONS(2673), - [anon_sym_switch] = ACTIONS(2673), - [anon_sym_case] = ACTIONS(2673), - [anon_sym_default] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2673), - [anon_sym_do] = ACTIONS(2673), - [anon_sym_for] = ACTIONS(2673), - [anon_sym_return] = ACTIONS(2673), - [anon_sym_break] = ACTIONS(2673), - [anon_sym_continue] = ACTIONS(2673), - [anon_sym_goto] = ACTIONS(2673), - [anon_sym_DASH_DASH] = ACTIONS(2675), - [anon_sym_PLUS_PLUS] = ACTIONS(2675), - [anon_sym_sizeof] = ACTIONS(2673), - [sym_number_literal] = ACTIONS(2675), - [anon_sym_L_SQUOTE] = ACTIONS(2675), - [anon_sym_u_SQUOTE] = ACTIONS(2675), - [anon_sym_U_SQUOTE] = ACTIONS(2675), - [anon_sym_u8_SQUOTE] = ACTIONS(2675), - [anon_sym_SQUOTE] = ACTIONS(2675), - [anon_sym_L_DQUOTE] = ACTIONS(2675), - [anon_sym_u_DQUOTE] = ACTIONS(2675), - [anon_sym_U_DQUOTE] = ACTIONS(2675), - [anon_sym_u8_DQUOTE] = ACTIONS(2675), - [anon_sym_DQUOTE] = ACTIONS(2675), - [sym_true] = ACTIONS(2673), - [sym_false] = ACTIONS(2673), - [sym_null] = ACTIONS(2673), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2673), - [anon_sym_decltype] = ACTIONS(2673), - [anon_sym_virtual] = ACTIONS(2673), - [anon_sym_explicit] = ACTIONS(2673), - [anon_sym_typename] = ACTIONS(2673), - [anon_sym_template] = ACTIONS(2673), - [anon_sym_operator] = ACTIONS(2673), - [anon_sym_try] = ACTIONS(2673), - [anon_sym_delete] = ACTIONS(2673), - [anon_sym_throw] = ACTIONS(2673), - [anon_sym_namespace] = ACTIONS(2673), - [anon_sym_using] = ACTIONS(2673), - [anon_sym_static_assert] = ACTIONS(2673), - [anon_sym_concept] = ACTIONS(2673), - [anon_sym_co_return] = ACTIONS(2673), - [anon_sym_co_yield] = ACTIONS(2673), - [anon_sym_co_await] = ACTIONS(2673), - [anon_sym_new] = ACTIONS(2673), - [anon_sym_requires] = ACTIONS(2673), - [sym_this] = ACTIONS(2673), - [sym_nullptr] = ACTIONS(2673), - [sym_raw_string_literal] = ACTIONS(2675), - }, - [978] = { - [sym_identifier] = ACTIONS(2669), - [aux_sym_preproc_include_token1] = ACTIONS(2669), - [aux_sym_preproc_def_token1] = ACTIONS(2669), - [aux_sym_preproc_if_token1] = ACTIONS(2669), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2669), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2669), - [sym_preproc_directive] = ACTIONS(2669), - [anon_sym_LPAREN2] = ACTIONS(2671), - [anon_sym_BANG] = ACTIONS(2671), - [anon_sym_TILDE] = ACTIONS(2671), - [anon_sym_DASH] = ACTIONS(2669), - [anon_sym_PLUS] = ACTIONS(2669), - [anon_sym_STAR] = ACTIONS(2671), - [anon_sym_AMP_AMP] = ACTIONS(2671), - [anon_sym_AMP] = ACTIONS(2669), - [anon_sym_SEMI] = ACTIONS(2671), - [anon_sym_typedef] = ACTIONS(2669), - [anon_sym_extern] = ACTIONS(2669), - [anon_sym___attribute__] = ACTIONS(2669), - [anon_sym_COLON_COLON] = ACTIONS(2671), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2671), - [anon_sym___declspec] = ACTIONS(2669), - [anon_sym___based] = ACTIONS(2669), - [anon_sym___cdecl] = ACTIONS(2669), - [anon_sym___clrcall] = ACTIONS(2669), - [anon_sym___stdcall] = ACTIONS(2669), - [anon_sym___fastcall] = ACTIONS(2669), - [anon_sym___thiscall] = ACTIONS(2669), - [anon_sym___vectorcall] = ACTIONS(2669), - [anon_sym_LBRACE] = ACTIONS(2671), - [anon_sym_RBRACE] = ACTIONS(2671), - [anon_sym_LBRACK] = ACTIONS(2669), - [anon_sym_static] = ACTIONS(2669), - [anon_sym_register] = ACTIONS(2669), - [anon_sym_inline] = ACTIONS(2669), - [anon_sym_thread_local] = ACTIONS(2669), - [anon_sym_const] = ACTIONS(2669), - [anon_sym_volatile] = ACTIONS(2669), - [anon_sym_restrict] = ACTIONS(2669), - [anon_sym__Atomic] = ACTIONS(2669), - [anon_sym_mutable] = ACTIONS(2669), - [anon_sym_constexpr] = ACTIONS(2669), - [anon_sym_constinit] = ACTIONS(2669), - [anon_sym_consteval] = ACTIONS(2669), - [anon_sym_signed] = ACTIONS(2669), - [anon_sym_unsigned] = ACTIONS(2669), - [anon_sym_long] = ACTIONS(2669), - [anon_sym_short] = ACTIONS(2669), - [sym_primitive_type] = ACTIONS(2669), - [anon_sym_enum] = ACTIONS(2669), - [anon_sym_class] = ACTIONS(2669), - [anon_sym_struct] = ACTIONS(2669), - [anon_sym_union] = ACTIONS(2669), - [anon_sym_if] = ACTIONS(2669), - [anon_sym_switch] = ACTIONS(2669), - [anon_sym_case] = ACTIONS(2669), - [anon_sym_default] = ACTIONS(2669), - [anon_sym_while] = ACTIONS(2669), - [anon_sym_do] = ACTIONS(2669), - [anon_sym_for] = ACTIONS(2669), - [anon_sym_return] = ACTIONS(2669), - [anon_sym_break] = ACTIONS(2669), - [anon_sym_continue] = ACTIONS(2669), - [anon_sym_goto] = ACTIONS(2669), - [anon_sym_DASH_DASH] = ACTIONS(2671), - [anon_sym_PLUS_PLUS] = ACTIONS(2671), - [anon_sym_sizeof] = ACTIONS(2669), - [sym_number_literal] = ACTIONS(2671), - [anon_sym_L_SQUOTE] = ACTIONS(2671), - [anon_sym_u_SQUOTE] = ACTIONS(2671), - [anon_sym_U_SQUOTE] = ACTIONS(2671), - [anon_sym_u8_SQUOTE] = ACTIONS(2671), - [anon_sym_SQUOTE] = ACTIONS(2671), - [anon_sym_L_DQUOTE] = ACTIONS(2671), - [anon_sym_u_DQUOTE] = ACTIONS(2671), - [anon_sym_U_DQUOTE] = ACTIONS(2671), - [anon_sym_u8_DQUOTE] = ACTIONS(2671), - [anon_sym_DQUOTE] = ACTIONS(2671), - [sym_true] = ACTIONS(2669), - [sym_false] = ACTIONS(2669), - [sym_null] = ACTIONS(2669), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2669), - [anon_sym_decltype] = ACTIONS(2669), - [anon_sym_virtual] = ACTIONS(2669), - [anon_sym_explicit] = ACTIONS(2669), - [anon_sym_typename] = ACTIONS(2669), - [anon_sym_template] = ACTIONS(2669), - [anon_sym_operator] = ACTIONS(2669), - [anon_sym_try] = ACTIONS(2669), - [anon_sym_delete] = ACTIONS(2669), - [anon_sym_throw] = ACTIONS(2669), - [anon_sym_namespace] = ACTIONS(2669), - [anon_sym_using] = ACTIONS(2669), - [anon_sym_static_assert] = ACTIONS(2669), - [anon_sym_concept] = ACTIONS(2669), - [anon_sym_co_return] = ACTIONS(2669), - [anon_sym_co_yield] = ACTIONS(2669), - [anon_sym_co_await] = ACTIONS(2669), - [anon_sym_new] = ACTIONS(2669), - [anon_sym_requires] = ACTIONS(2669), - [sym_this] = ACTIONS(2669), - [sym_nullptr] = ACTIONS(2669), - [sym_raw_string_literal] = ACTIONS(2671), + [611] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token2] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [979] = { - [sym_identifier] = ACTIONS(2777), - [aux_sym_preproc_include_token1] = ACTIONS(2777), - [aux_sym_preproc_def_token1] = ACTIONS(2777), - [aux_sym_preproc_if_token1] = ACTIONS(2777), - [aux_sym_preproc_if_token2] = ACTIONS(2777), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2777), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2777), - [sym_preproc_directive] = ACTIONS(2777), - [anon_sym_LPAREN2] = ACTIONS(2779), - [anon_sym_BANG] = ACTIONS(2779), - [anon_sym_TILDE] = ACTIONS(2779), - [anon_sym_DASH] = ACTIONS(2777), - [anon_sym_PLUS] = ACTIONS(2777), - [anon_sym_STAR] = ACTIONS(2779), - [anon_sym_AMP_AMP] = ACTIONS(2779), - [anon_sym_AMP] = ACTIONS(2777), - [anon_sym_SEMI] = ACTIONS(2779), - [anon_sym_typedef] = ACTIONS(2777), - [anon_sym_extern] = ACTIONS(2777), - [anon_sym___attribute__] = ACTIONS(2777), - [anon_sym_COLON_COLON] = ACTIONS(2779), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2779), - [anon_sym___declspec] = ACTIONS(2777), - [anon_sym___based] = ACTIONS(2777), - [anon_sym___cdecl] = ACTIONS(2777), - [anon_sym___clrcall] = ACTIONS(2777), - [anon_sym___stdcall] = ACTIONS(2777), - [anon_sym___fastcall] = ACTIONS(2777), - [anon_sym___thiscall] = ACTIONS(2777), - [anon_sym___vectorcall] = ACTIONS(2777), - [anon_sym_LBRACE] = ACTIONS(2779), - [anon_sym_LBRACK] = ACTIONS(2777), - [anon_sym_static] = ACTIONS(2777), - [anon_sym_register] = ACTIONS(2777), - [anon_sym_inline] = ACTIONS(2777), - [anon_sym_thread_local] = ACTIONS(2777), - [anon_sym_const] = ACTIONS(2777), - [anon_sym_volatile] = ACTIONS(2777), - [anon_sym_restrict] = ACTIONS(2777), - [anon_sym__Atomic] = ACTIONS(2777), - [anon_sym_mutable] = ACTIONS(2777), - [anon_sym_constexpr] = ACTIONS(2777), - [anon_sym_constinit] = ACTIONS(2777), - [anon_sym_consteval] = ACTIONS(2777), - [anon_sym_signed] = ACTIONS(2777), - [anon_sym_unsigned] = ACTIONS(2777), - [anon_sym_long] = ACTIONS(2777), - [anon_sym_short] = ACTIONS(2777), - [sym_primitive_type] = ACTIONS(2777), - [anon_sym_enum] = ACTIONS(2777), - [anon_sym_class] = ACTIONS(2777), - [anon_sym_struct] = ACTIONS(2777), - [anon_sym_union] = ACTIONS(2777), - [anon_sym_if] = ACTIONS(2777), - [anon_sym_switch] = ACTIONS(2777), - [anon_sym_case] = ACTIONS(2777), - [anon_sym_default] = ACTIONS(2777), - [anon_sym_while] = ACTIONS(2777), - [anon_sym_do] = ACTIONS(2777), - [anon_sym_for] = ACTIONS(2777), - [anon_sym_return] = ACTIONS(2777), - [anon_sym_break] = ACTIONS(2777), - [anon_sym_continue] = ACTIONS(2777), - [anon_sym_goto] = ACTIONS(2777), - [anon_sym_DASH_DASH] = ACTIONS(2779), - [anon_sym_PLUS_PLUS] = ACTIONS(2779), - [anon_sym_sizeof] = ACTIONS(2777), - [sym_number_literal] = ACTIONS(2779), - [anon_sym_L_SQUOTE] = ACTIONS(2779), - [anon_sym_u_SQUOTE] = ACTIONS(2779), - [anon_sym_U_SQUOTE] = ACTIONS(2779), - [anon_sym_u8_SQUOTE] = ACTIONS(2779), - [anon_sym_SQUOTE] = ACTIONS(2779), - [anon_sym_L_DQUOTE] = ACTIONS(2779), - [anon_sym_u_DQUOTE] = ACTIONS(2779), - [anon_sym_U_DQUOTE] = ACTIONS(2779), - [anon_sym_u8_DQUOTE] = ACTIONS(2779), - [anon_sym_DQUOTE] = ACTIONS(2779), - [sym_true] = ACTIONS(2777), - [sym_false] = ACTIONS(2777), - [sym_null] = ACTIONS(2777), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2777), - [anon_sym_decltype] = ACTIONS(2777), - [anon_sym_virtual] = ACTIONS(2777), - [anon_sym_explicit] = ACTIONS(2777), - [anon_sym_typename] = ACTIONS(2777), - [anon_sym_template] = ACTIONS(2777), - [anon_sym_operator] = ACTIONS(2777), - [anon_sym_try] = ACTIONS(2777), - [anon_sym_delete] = ACTIONS(2777), - [anon_sym_throw] = ACTIONS(2777), - [anon_sym_namespace] = ACTIONS(2777), - [anon_sym_using] = ACTIONS(2777), - [anon_sym_static_assert] = ACTIONS(2777), - [anon_sym_concept] = ACTIONS(2777), - [anon_sym_co_return] = ACTIONS(2777), - [anon_sym_co_yield] = ACTIONS(2777), - [anon_sym_co_await] = ACTIONS(2777), - [anon_sym_new] = ACTIONS(2777), - [anon_sym_requires] = ACTIONS(2777), - [sym_this] = ACTIONS(2777), - [sym_nullptr] = ACTIONS(2777), - [sym_raw_string_literal] = ACTIONS(2779), - }, - [980] = { - [sym_identifier] = ACTIONS(2695), - [aux_sym_preproc_include_token1] = ACTIONS(2695), - [aux_sym_preproc_def_token1] = ACTIONS(2695), - [aux_sym_preproc_if_token1] = ACTIONS(2695), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2695), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2695), - [sym_preproc_directive] = ACTIONS(2695), - [anon_sym_LPAREN2] = ACTIONS(2697), - [anon_sym_BANG] = ACTIONS(2697), - [anon_sym_TILDE] = ACTIONS(2697), - [anon_sym_DASH] = ACTIONS(2695), - [anon_sym_PLUS] = ACTIONS(2695), - [anon_sym_STAR] = ACTIONS(2697), - [anon_sym_AMP_AMP] = ACTIONS(2697), - [anon_sym_AMP] = ACTIONS(2695), - [anon_sym_SEMI] = ACTIONS(2697), - [anon_sym_typedef] = ACTIONS(2695), - [anon_sym_extern] = ACTIONS(2695), - [anon_sym___attribute__] = ACTIONS(2695), - [anon_sym_COLON_COLON] = ACTIONS(2697), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2697), - [anon_sym___declspec] = ACTIONS(2695), - [anon_sym___based] = ACTIONS(2695), - [anon_sym___cdecl] = ACTIONS(2695), - [anon_sym___clrcall] = ACTIONS(2695), - [anon_sym___stdcall] = ACTIONS(2695), - [anon_sym___fastcall] = ACTIONS(2695), - [anon_sym___thiscall] = ACTIONS(2695), - [anon_sym___vectorcall] = ACTIONS(2695), - [anon_sym_LBRACE] = ACTIONS(2697), - [anon_sym_RBRACE] = ACTIONS(2697), - [anon_sym_LBRACK] = ACTIONS(2695), - [anon_sym_static] = ACTIONS(2695), - [anon_sym_register] = ACTIONS(2695), - [anon_sym_inline] = ACTIONS(2695), - [anon_sym_thread_local] = ACTIONS(2695), - [anon_sym_const] = ACTIONS(2695), - [anon_sym_volatile] = ACTIONS(2695), - [anon_sym_restrict] = ACTIONS(2695), - [anon_sym__Atomic] = ACTIONS(2695), - [anon_sym_mutable] = ACTIONS(2695), - [anon_sym_constexpr] = ACTIONS(2695), - [anon_sym_constinit] = ACTIONS(2695), - [anon_sym_consteval] = ACTIONS(2695), - [anon_sym_signed] = ACTIONS(2695), - [anon_sym_unsigned] = ACTIONS(2695), - [anon_sym_long] = ACTIONS(2695), - [anon_sym_short] = ACTIONS(2695), - [sym_primitive_type] = ACTIONS(2695), - [anon_sym_enum] = ACTIONS(2695), - [anon_sym_class] = ACTIONS(2695), - [anon_sym_struct] = ACTIONS(2695), - [anon_sym_union] = ACTIONS(2695), - [anon_sym_if] = ACTIONS(2695), - [anon_sym_switch] = ACTIONS(2695), - [anon_sym_case] = ACTIONS(2695), - [anon_sym_default] = ACTIONS(2695), - [anon_sym_while] = ACTIONS(2695), - [anon_sym_do] = ACTIONS(2695), - [anon_sym_for] = ACTIONS(2695), - [anon_sym_return] = ACTIONS(2695), - [anon_sym_break] = ACTIONS(2695), - [anon_sym_continue] = ACTIONS(2695), - [anon_sym_goto] = ACTIONS(2695), - [anon_sym_DASH_DASH] = ACTIONS(2697), - [anon_sym_PLUS_PLUS] = ACTIONS(2697), - [anon_sym_sizeof] = ACTIONS(2695), - [sym_number_literal] = ACTIONS(2697), - [anon_sym_L_SQUOTE] = ACTIONS(2697), - [anon_sym_u_SQUOTE] = ACTIONS(2697), - [anon_sym_U_SQUOTE] = ACTIONS(2697), - [anon_sym_u8_SQUOTE] = ACTIONS(2697), - [anon_sym_SQUOTE] = ACTIONS(2697), - [anon_sym_L_DQUOTE] = ACTIONS(2697), - [anon_sym_u_DQUOTE] = ACTIONS(2697), - [anon_sym_U_DQUOTE] = ACTIONS(2697), - [anon_sym_u8_DQUOTE] = ACTIONS(2697), - [anon_sym_DQUOTE] = ACTIONS(2697), - [sym_true] = ACTIONS(2695), - [sym_false] = ACTIONS(2695), - [sym_null] = ACTIONS(2695), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2695), - [anon_sym_decltype] = ACTIONS(2695), - [anon_sym_virtual] = ACTIONS(2695), - [anon_sym_explicit] = ACTIONS(2695), - [anon_sym_typename] = ACTIONS(2695), - [anon_sym_template] = ACTIONS(2695), - [anon_sym_operator] = ACTIONS(2695), - [anon_sym_try] = ACTIONS(2695), - [anon_sym_delete] = ACTIONS(2695), - [anon_sym_throw] = ACTIONS(2695), - [anon_sym_namespace] = ACTIONS(2695), - [anon_sym_using] = ACTIONS(2695), - [anon_sym_static_assert] = ACTIONS(2695), - [anon_sym_concept] = ACTIONS(2695), - [anon_sym_co_return] = ACTIONS(2695), - [anon_sym_co_yield] = ACTIONS(2695), - [anon_sym_co_await] = ACTIONS(2695), - [anon_sym_new] = ACTIONS(2695), - [anon_sym_requires] = ACTIONS(2695), - [sym_this] = ACTIONS(2695), - [sym_nullptr] = ACTIONS(2695), - [sym_raw_string_literal] = ACTIONS(2697), - }, - [981] = { - [ts_builtin_sym_end] = ACTIONS(2741), - [sym_identifier] = ACTIONS(2739), - [aux_sym_preproc_include_token1] = ACTIONS(2739), - [aux_sym_preproc_def_token1] = ACTIONS(2739), - [aux_sym_preproc_if_token1] = ACTIONS(2739), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2739), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2739), - [sym_preproc_directive] = ACTIONS(2739), - [anon_sym_LPAREN2] = ACTIONS(2741), - [anon_sym_BANG] = ACTIONS(2741), - [anon_sym_TILDE] = ACTIONS(2741), - [anon_sym_DASH] = ACTIONS(2739), - [anon_sym_PLUS] = ACTIONS(2739), - [anon_sym_STAR] = ACTIONS(2741), - [anon_sym_AMP_AMP] = ACTIONS(2741), - [anon_sym_AMP] = ACTIONS(2739), - [anon_sym_SEMI] = ACTIONS(2741), - [anon_sym_typedef] = ACTIONS(2739), - [anon_sym_extern] = ACTIONS(2739), - [anon_sym___attribute__] = ACTIONS(2739), - [anon_sym_COLON_COLON] = ACTIONS(2741), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2741), - [anon_sym___declspec] = ACTIONS(2739), - [anon_sym___based] = ACTIONS(2739), - [anon_sym___cdecl] = ACTIONS(2739), - [anon_sym___clrcall] = ACTIONS(2739), - [anon_sym___stdcall] = ACTIONS(2739), - [anon_sym___fastcall] = ACTIONS(2739), - [anon_sym___thiscall] = ACTIONS(2739), - [anon_sym___vectorcall] = ACTIONS(2739), - [anon_sym_LBRACE] = ACTIONS(2741), - [anon_sym_LBRACK] = ACTIONS(2739), - [anon_sym_static] = ACTIONS(2739), - [anon_sym_register] = ACTIONS(2739), - [anon_sym_inline] = ACTIONS(2739), - [anon_sym_thread_local] = ACTIONS(2739), - [anon_sym_const] = ACTIONS(2739), - [anon_sym_volatile] = ACTIONS(2739), - [anon_sym_restrict] = ACTIONS(2739), - [anon_sym__Atomic] = ACTIONS(2739), - [anon_sym_mutable] = ACTIONS(2739), - [anon_sym_constexpr] = ACTIONS(2739), - [anon_sym_constinit] = ACTIONS(2739), - [anon_sym_consteval] = ACTIONS(2739), - [anon_sym_signed] = ACTIONS(2739), - [anon_sym_unsigned] = ACTIONS(2739), - [anon_sym_long] = ACTIONS(2739), - [anon_sym_short] = ACTIONS(2739), - [sym_primitive_type] = ACTIONS(2739), - [anon_sym_enum] = ACTIONS(2739), - [anon_sym_class] = ACTIONS(2739), - [anon_sym_struct] = ACTIONS(2739), - [anon_sym_union] = ACTIONS(2739), - [anon_sym_if] = ACTIONS(2739), - [anon_sym_switch] = ACTIONS(2739), - [anon_sym_case] = ACTIONS(2739), - [anon_sym_default] = ACTIONS(2739), - [anon_sym_while] = ACTIONS(2739), - [anon_sym_do] = ACTIONS(2739), - [anon_sym_for] = ACTIONS(2739), - [anon_sym_return] = ACTIONS(2739), - [anon_sym_break] = ACTIONS(2739), - [anon_sym_continue] = ACTIONS(2739), - [anon_sym_goto] = ACTIONS(2739), - [anon_sym_DASH_DASH] = ACTIONS(2741), - [anon_sym_PLUS_PLUS] = ACTIONS(2741), - [anon_sym_sizeof] = ACTIONS(2739), - [sym_number_literal] = ACTIONS(2741), - [anon_sym_L_SQUOTE] = ACTIONS(2741), - [anon_sym_u_SQUOTE] = ACTIONS(2741), - [anon_sym_U_SQUOTE] = ACTIONS(2741), - [anon_sym_u8_SQUOTE] = ACTIONS(2741), - [anon_sym_SQUOTE] = ACTIONS(2741), - [anon_sym_L_DQUOTE] = ACTIONS(2741), - [anon_sym_u_DQUOTE] = ACTIONS(2741), - [anon_sym_U_DQUOTE] = ACTIONS(2741), - [anon_sym_u8_DQUOTE] = ACTIONS(2741), - [anon_sym_DQUOTE] = ACTIONS(2741), - [sym_true] = ACTIONS(2739), - [sym_false] = ACTIONS(2739), - [sym_null] = ACTIONS(2739), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2739), - [anon_sym_decltype] = ACTIONS(2739), - [anon_sym_virtual] = ACTIONS(2739), - [anon_sym_explicit] = ACTIONS(2739), - [anon_sym_typename] = ACTIONS(2739), - [anon_sym_template] = ACTIONS(2739), - [anon_sym_operator] = ACTIONS(2739), - [anon_sym_try] = ACTIONS(2739), - [anon_sym_delete] = ACTIONS(2739), - [anon_sym_throw] = ACTIONS(2739), - [anon_sym_namespace] = ACTIONS(2739), - [anon_sym_using] = ACTIONS(2739), - [anon_sym_static_assert] = ACTIONS(2739), - [anon_sym_concept] = ACTIONS(2739), - [anon_sym_co_return] = ACTIONS(2739), - [anon_sym_co_yield] = ACTIONS(2739), - [anon_sym_co_await] = ACTIONS(2739), - [anon_sym_new] = ACTIONS(2739), - [anon_sym_requires] = ACTIONS(2739), - [sym_this] = ACTIONS(2739), - [sym_nullptr] = ACTIONS(2739), - [sym_raw_string_literal] = ACTIONS(2741), - }, - [982] = { - [ts_builtin_sym_end] = ACTIONS(2667), - [sym_identifier] = ACTIONS(2665), - [aux_sym_preproc_include_token1] = ACTIONS(2665), - [aux_sym_preproc_def_token1] = ACTIONS(2665), - [aux_sym_preproc_if_token1] = ACTIONS(2665), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2665), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2665), - [sym_preproc_directive] = ACTIONS(2665), - [anon_sym_LPAREN2] = ACTIONS(2667), - [anon_sym_BANG] = ACTIONS(2667), - [anon_sym_TILDE] = ACTIONS(2667), - [anon_sym_DASH] = ACTIONS(2665), - [anon_sym_PLUS] = ACTIONS(2665), - [anon_sym_STAR] = ACTIONS(2667), - [anon_sym_AMP_AMP] = ACTIONS(2667), - [anon_sym_AMP] = ACTIONS(2665), - [anon_sym_SEMI] = ACTIONS(2667), - [anon_sym_typedef] = ACTIONS(2665), - [anon_sym_extern] = ACTIONS(2665), - [anon_sym___attribute__] = ACTIONS(2665), - [anon_sym_COLON_COLON] = ACTIONS(2667), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2667), - [anon_sym___declspec] = ACTIONS(2665), - [anon_sym___based] = ACTIONS(2665), - [anon_sym___cdecl] = ACTIONS(2665), - [anon_sym___clrcall] = ACTIONS(2665), - [anon_sym___stdcall] = ACTIONS(2665), - [anon_sym___fastcall] = ACTIONS(2665), - [anon_sym___thiscall] = ACTIONS(2665), - [anon_sym___vectorcall] = ACTIONS(2665), - [anon_sym_LBRACE] = ACTIONS(2667), - [anon_sym_LBRACK] = ACTIONS(2665), - [anon_sym_static] = ACTIONS(2665), - [anon_sym_register] = ACTIONS(2665), - [anon_sym_inline] = ACTIONS(2665), - [anon_sym_thread_local] = ACTIONS(2665), - [anon_sym_const] = ACTIONS(2665), - [anon_sym_volatile] = ACTIONS(2665), - [anon_sym_restrict] = ACTIONS(2665), - [anon_sym__Atomic] = ACTIONS(2665), - [anon_sym_mutable] = ACTIONS(2665), - [anon_sym_constexpr] = ACTIONS(2665), - [anon_sym_constinit] = ACTIONS(2665), - [anon_sym_consteval] = ACTIONS(2665), - [anon_sym_signed] = ACTIONS(2665), - [anon_sym_unsigned] = ACTIONS(2665), - [anon_sym_long] = ACTIONS(2665), - [anon_sym_short] = ACTIONS(2665), - [sym_primitive_type] = ACTIONS(2665), - [anon_sym_enum] = ACTIONS(2665), - [anon_sym_class] = ACTIONS(2665), - [anon_sym_struct] = ACTIONS(2665), - [anon_sym_union] = ACTIONS(2665), - [anon_sym_if] = ACTIONS(2665), - [anon_sym_switch] = ACTIONS(2665), - [anon_sym_case] = ACTIONS(2665), - [anon_sym_default] = ACTIONS(2665), - [anon_sym_while] = ACTIONS(2665), - [anon_sym_do] = ACTIONS(2665), - [anon_sym_for] = ACTIONS(2665), - [anon_sym_return] = ACTIONS(2665), - [anon_sym_break] = ACTIONS(2665), - [anon_sym_continue] = ACTIONS(2665), - [anon_sym_goto] = ACTIONS(2665), - [anon_sym_DASH_DASH] = ACTIONS(2667), - [anon_sym_PLUS_PLUS] = ACTIONS(2667), - [anon_sym_sizeof] = ACTIONS(2665), - [sym_number_literal] = ACTIONS(2667), - [anon_sym_L_SQUOTE] = ACTIONS(2667), - [anon_sym_u_SQUOTE] = ACTIONS(2667), - [anon_sym_U_SQUOTE] = ACTIONS(2667), - [anon_sym_u8_SQUOTE] = ACTIONS(2667), - [anon_sym_SQUOTE] = ACTIONS(2667), - [anon_sym_L_DQUOTE] = ACTIONS(2667), - [anon_sym_u_DQUOTE] = ACTIONS(2667), - [anon_sym_U_DQUOTE] = ACTIONS(2667), - [anon_sym_u8_DQUOTE] = ACTIONS(2667), - [anon_sym_DQUOTE] = ACTIONS(2667), - [sym_true] = ACTIONS(2665), - [sym_false] = ACTIONS(2665), - [sym_null] = ACTIONS(2665), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2665), - [anon_sym_decltype] = ACTIONS(2665), - [anon_sym_virtual] = ACTIONS(2665), - [anon_sym_explicit] = ACTIONS(2665), - [anon_sym_typename] = ACTIONS(2665), - [anon_sym_template] = ACTIONS(2665), - [anon_sym_operator] = ACTIONS(2665), - [anon_sym_try] = ACTIONS(2665), - [anon_sym_delete] = ACTIONS(2665), - [anon_sym_throw] = ACTIONS(2665), - [anon_sym_namespace] = ACTIONS(2665), - [anon_sym_using] = ACTIONS(2665), - [anon_sym_static_assert] = ACTIONS(2665), - [anon_sym_concept] = ACTIONS(2665), - [anon_sym_co_return] = ACTIONS(2665), - [anon_sym_co_yield] = ACTIONS(2665), - [anon_sym_co_await] = ACTIONS(2665), - [anon_sym_new] = ACTIONS(2665), - [anon_sym_requires] = ACTIONS(2665), - [sym_this] = ACTIONS(2665), - [sym_nullptr] = ACTIONS(2665), - [sym_raw_string_literal] = ACTIONS(2667), - }, - [983] = { - [sym_identifier] = ACTIONS(2633), - [aux_sym_preproc_include_token1] = ACTIONS(2633), - [aux_sym_preproc_def_token1] = ACTIONS(2633), - [aux_sym_preproc_if_token1] = ACTIONS(2633), - [aux_sym_preproc_if_token2] = ACTIONS(2633), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2633), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2633), - [sym_preproc_directive] = ACTIONS(2633), - [anon_sym_LPAREN2] = ACTIONS(2635), - [anon_sym_BANG] = ACTIONS(2635), - [anon_sym_TILDE] = ACTIONS(2635), - [anon_sym_DASH] = ACTIONS(2633), - [anon_sym_PLUS] = ACTIONS(2633), - [anon_sym_STAR] = ACTIONS(2635), - [anon_sym_AMP_AMP] = ACTIONS(2635), - [anon_sym_AMP] = ACTIONS(2633), - [anon_sym_SEMI] = ACTIONS(2635), - [anon_sym_typedef] = ACTIONS(2633), - [anon_sym_extern] = ACTIONS(2633), - [anon_sym___attribute__] = ACTIONS(2633), - [anon_sym_COLON_COLON] = ACTIONS(2635), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2635), - [anon_sym___declspec] = ACTIONS(2633), - [anon_sym___based] = ACTIONS(2633), - [anon_sym___cdecl] = ACTIONS(2633), - [anon_sym___clrcall] = ACTIONS(2633), - [anon_sym___stdcall] = ACTIONS(2633), - [anon_sym___fastcall] = ACTIONS(2633), - [anon_sym___thiscall] = ACTIONS(2633), - [anon_sym___vectorcall] = ACTIONS(2633), - [anon_sym_LBRACE] = ACTIONS(2635), - [anon_sym_LBRACK] = ACTIONS(2633), - [anon_sym_static] = ACTIONS(2633), - [anon_sym_register] = ACTIONS(2633), - [anon_sym_inline] = ACTIONS(2633), - [anon_sym_thread_local] = ACTIONS(2633), - [anon_sym_const] = ACTIONS(2633), - [anon_sym_volatile] = ACTIONS(2633), - [anon_sym_restrict] = ACTIONS(2633), - [anon_sym__Atomic] = ACTIONS(2633), - [anon_sym_mutable] = ACTIONS(2633), - [anon_sym_constexpr] = ACTIONS(2633), - [anon_sym_constinit] = ACTIONS(2633), - [anon_sym_consteval] = ACTIONS(2633), - [anon_sym_signed] = ACTIONS(2633), - [anon_sym_unsigned] = ACTIONS(2633), - [anon_sym_long] = ACTIONS(2633), - [anon_sym_short] = ACTIONS(2633), - [sym_primitive_type] = ACTIONS(2633), - [anon_sym_enum] = ACTIONS(2633), - [anon_sym_class] = ACTIONS(2633), - [anon_sym_struct] = ACTIONS(2633), - [anon_sym_union] = ACTIONS(2633), - [anon_sym_if] = ACTIONS(2633), - [anon_sym_switch] = ACTIONS(2633), - [anon_sym_case] = ACTIONS(2633), - [anon_sym_default] = ACTIONS(2633), - [anon_sym_while] = ACTIONS(2633), - [anon_sym_do] = ACTIONS(2633), - [anon_sym_for] = ACTIONS(2633), - [anon_sym_return] = ACTIONS(2633), - [anon_sym_break] = ACTIONS(2633), - [anon_sym_continue] = ACTIONS(2633), - [anon_sym_goto] = ACTIONS(2633), - [anon_sym_DASH_DASH] = ACTIONS(2635), - [anon_sym_PLUS_PLUS] = ACTIONS(2635), - [anon_sym_sizeof] = ACTIONS(2633), - [sym_number_literal] = ACTIONS(2635), - [anon_sym_L_SQUOTE] = ACTIONS(2635), - [anon_sym_u_SQUOTE] = ACTIONS(2635), - [anon_sym_U_SQUOTE] = ACTIONS(2635), - [anon_sym_u8_SQUOTE] = ACTIONS(2635), - [anon_sym_SQUOTE] = ACTIONS(2635), - [anon_sym_L_DQUOTE] = ACTIONS(2635), - [anon_sym_u_DQUOTE] = ACTIONS(2635), - [anon_sym_U_DQUOTE] = ACTIONS(2635), - [anon_sym_u8_DQUOTE] = ACTIONS(2635), - [anon_sym_DQUOTE] = ACTIONS(2635), - [sym_true] = ACTIONS(2633), - [sym_false] = ACTIONS(2633), - [sym_null] = ACTIONS(2633), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2633), - [anon_sym_decltype] = ACTIONS(2633), - [anon_sym_virtual] = ACTIONS(2633), - [anon_sym_explicit] = ACTIONS(2633), - [anon_sym_typename] = ACTIONS(2633), - [anon_sym_template] = ACTIONS(2633), - [anon_sym_operator] = ACTIONS(2633), - [anon_sym_try] = ACTIONS(2633), - [anon_sym_delete] = ACTIONS(2633), - [anon_sym_throw] = ACTIONS(2633), - [anon_sym_namespace] = ACTIONS(2633), - [anon_sym_using] = ACTIONS(2633), - [anon_sym_static_assert] = ACTIONS(2633), - [anon_sym_concept] = ACTIONS(2633), - [anon_sym_co_return] = ACTIONS(2633), - [anon_sym_co_yield] = ACTIONS(2633), - [anon_sym_co_await] = ACTIONS(2633), - [anon_sym_new] = ACTIONS(2633), - [anon_sym_requires] = ACTIONS(2633), - [sym_this] = ACTIONS(2633), - [sym_nullptr] = ACTIONS(2633), - [sym_raw_string_literal] = ACTIONS(2635), - }, - [984] = { - [sym_identifier] = ACTIONS(2681), - [aux_sym_preproc_include_token1] = ACTIONS(2681), - [aux_sym_preproc_def_token1] = ACTIONS(2681), - [aux_sym_preproc_if_token1] = ACTIONS(2681), - [aux_sym_preproc_if_token2] = ACTIONS(2681), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2681), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2681), - [sym_preproc_directive] = ACTIONS(2681), - [anon_sym_LPAREN2] = ACTIONS(2683), - [anon_sym_BANG] = ACTIONS(2683), - [anon_sym_TILDE] = ACTIONS(2683), - [anon_sym_DASH] = ACTIONS(2681), - [anon_sym_PLUS] = ACTIONS(2681), - [anon_sym_STAR] = ACTIONS(2683), - [anon_sym_AMP_AMP] = ACTIONS(2683), - [anon_sym_AMP] = ACTIONS(2681), - [anon_sym_SEMI] = ACTIONS(2683), - [anon_sym_typedef] = ACTIONS(2681), - [anon_sym_extern] = ACTIONS(2681), - [anon_sym___attribute__] = ACTIONS(2681), - [anon_sym_COLON_COLON] = ACTIONS(2683), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2683), - [anon_sym___declspec] = ACTIONS(2681), - [anon_sym___based] = ACTIONS(2681), - [anon_sym___cdecl] = ACTIONS(2681), - [anon_sym___clrcall] = ACTIONS(2681), - [anon_sym___stdcall] = ACTIONS(2681), - [anon_sym___fastcall] = ACTIONS(2681), - [anon_sym___thiscall] = ACTIONS(2681), - [anon_sym___vectorcall] = ACTIONS(2681), - [anon_sym_LBRACE] = ACTIONS(2683), - [anon_sym_LBRACK] = ACTIONS(2681), - [anon_sym_static] = ACTIONS(2681), - [anon_sym_register] = ACTIONS(2681), - [anon_sym_inline] = ACTIONS(2681), - [anon_sym_thread_local] = ACTIONS(2681), - [anon_sym_const] = ACTIONS(2681), - [anon_sym_volatile] = ACTIONS(2681), - [anon_sym_restrict] = ACTIONS(2681), - [anon_sym__Atomic] = ACTIONS(2681), - [anon_sym_mutable] = ACTIONS(2681), - [anon_sym_constexpr] = ACTIONS(2681), - [anon_sym_constinit] = ACTIONS(2681), - [anon_sym_consteval] = ACTIONS(2681), - [anon_sym_signed] = ACTIONS(2681), - [anon_sym_unsigned] = ACTIONS(2681), - [anon_sym_long] = ACTIONS(2681), - [anon_sym_short] = ACTIONS(2681), - [sym_primitive_type] = ACTIONS(2681), - [anon_sym_enum] = ACTIONS(2681), - [anon_sym_class] = ACTIONS(2681), - [anon_sym_struct] = ACTIONS(2681), - [anon_sym_union] = ACTIONS(2681), - [anon_sym_if] = ACTIONS(2681), - [anon_sym_switch] = ACTIONS(2681), - [anon_sym_case] = ACTIONS(2681), - [anon_sym_default] = ACTIONS(2681), - [anon_sym_while] = ACTIONS(2681), - [anon_sym_do] = ACTIONS(2681), - [anon_sym_for] = ACTIONS(2681), - [anon_sym_return] = ACTIONS(2681), - [anon_sym_break] = ACTIONS(2681), - [anon_sym_continue] = ACTIONS(2681), - [anon_sym_goto] = ACTIONS(2681), - [anon_sym_DASH_DASH] = ACTIONS(2683), - [anon_sym_PLUS_PLUS] = ACTIONS(2683), - [anon_sym_sizeof] = ACTIONS(2681), - [sym_number_literal] = ACTIONS(2683), - [anon_sym_L_SQUOTE] = ACTIONS(2683), - [anon_sym_u_SQUOTE] = ACTIONS(2683), - [anon_sym_U_SQUOTE] = ACTIONS(2683), - [anon_sym_u8_SQUOTE] = ACTIONS(2683), - [anon_sym_SQUOTE] = ACTIONS(2683), - [anon_sym_L_DQUOTE] = ACTIONS(2683), - [anon_sym_u_DQUOTE] = ACTIONS(2683), - [anon_sym_U_DQUOTE] = ACTIONS(2683), - [anon_sym_u8_DQUOTE] = ACTIONS(2683), - [anon_sym_DQUOTE] = ACTIONS(2683), - [sym_true] = ACTIONS(2681), - [sym_false] = ACTIONS(2681), - [sym_null] = ACTIONS(2681), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2681), - [anon_sym_decltype] = ACTIONS(2681), - [anon_sym_virtual] = ACTIONS(2681), - [anon_sym_explicit] = ACTIONS(2681), - [anon_sym_typename] = ACTIONS(2681), - [anon_sym_template] = ACTIONS(2681), - [anon_sym_operator] = ACTIONS(2681), - [anon_sym_try] = ACTIONS(2681), - [anon_sym_delete] = ACTIONS(2681), - [anon_sym_throw] = ACTIONS(2681), - [anon_sym_namespace] = ACTIONS(2681), - [anon_sym_using] = ACTIONS(2681), - [anon_sym_static_assert] = ACTIONS(2681), - [anon_sym_concept] = ACTIONS(2681), - [anon_sym_co_return] = ACTIONS(2681), - [anon_sym_co_yield] = ACTIONS(2681), - [anon_sym_co_await] = ACTIONS(2681), - [anon_sym_new] = ACTIONS(2681), - [anon_sym_requires] = ACTIONS(2681), - [sym_this] = ACTIONS(2681), - [sym_nullptr] = ACTIONS(2681), - [sym_raw_string_literal] = ACTIONS(2683), - }, - [985] = { - [sym_identifier] = ACTIONS(2769), - [aux_sym_preproc_include_token1] = ACTIONS(2769), - [aux_sym_preproc_def_token1] = ACTIONS(2769), - [aux_sym_preproc_if_token1] = ACTIONS(2769), - [aux_sym_preproc_if_token2] = ACTIONS(2769), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2769), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2769), - [sym_preproc_directive] = ACTIONS(2769), - [anon_sym_LPAREN2] = ACTIONS(2771), - [anon_sym_BANG] = ACTIONS(2771), - [anon_sym_TILDE] = ACTIONS(2771), - [anon_sym_DASH] = ACTIONS(2769), - [anon_sym_PLUS] = ACTIONS(2769), - [anon_sym_STAR] = ACTIONS(2771), - [anon_sym_AMP_AMP] = ACTIONS(2771), - [anon_sym_AMP] = ACTIONS(2769), - [anon_sym_SEMI] = ACTIONS(2771), - [anon_sym_typedef] = ACTIONS(2769), - [anon_sym_extern] = ACTIONS(2769), - [anon_sym___attribute__] = ACTIONS(2769), - [anon_sym_COLON_COLON] = ACTIONS(2771), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2771), - [anon_sym___declspec] = ACTIONS(2769), - [anon_sym___based] = ACTIONS(2769), - [anon_sym___cdecl] = ACTIONS(2769), - [anon_sym___clrcall] = ACTIONS(2769), - [anon_sym___stdcall] = ACTIONS(2769), - [anon_sym___fastcall] = ACTIONS(2769), - [anon_sym___thiscall] = ACTIONS(2769), - [anon_sym___vectorcall] = ACTIONS(2769), - [anon_sym_LBRACE] = ACTIONS(2771), - [anon_sym_LBRACK] = ACTIONS(2769), - [anon_sym_static] = ACTIONS(2769), - [anon_sym_register] = ACTIONS(2769), - [anon_sym_inline] = ACTIONS(2769), - [anon_sym_thread_local] = ACTIONS(2769), - [anon_sym_const] = ACTIONS(2769), - [anon_sym_volatile] = ACTIONS(2769), - [anon_sym_restrict] = ACTIONS(2769), - [anon_sym__Atomic] = ACTIONS(2769), - [anon_sym_mutable] = ACTIONS(2769), - [anon_sym_constexpr] = ACTIONS(2769), - [anon_sym_constinit] = ACTIONS(2769), - [anon_sym_consteval] = ACTIONS(2769), - [anon_sym_signed] = ACTIONS(2769), - [anon_sym_unsigned] = ACTIONS(2769), - [anon_sym_long] = ACTIONS(2769), - [anon_sym_short] = ACTIONS(2769), - [sym_primitive_type] = ACTIONS(2769), - [anon_sym_enum] = ACTIONS(2769), - [anon_sym_class] = ACTIONS(2769), - [anon_sym_struct] = ACTIONS(2769), - [anon_sym_union] = ACTIONS(2769), - [anon_sym_if] = ACTIONS(2769), - [anon_sym_switch] = ACTIONS(2769), - [anon_sym_case] = ACTIONS(2769), - [anon_sym_default] = ACTIONS(2769), - [anon_sym_while] = ACTIONS(2769), - [anon_sym_do] = ACTIONS(2769), - [anon_sym_for] = ACTIONS(2769), - [anon_sym_return] = ACTIONS(2769), - [anon_sym_break] = ACTIONS(2769), - [anon_sym_continue] = ACTIONS(2769), - [anon_sym_goto] = ACTIONS(2769), - [anon_sym_DASH_DASH] = ACTIONS(2771), - [anon_sym_PLUS_PLUS] = ACTIONS(2771), - [anon_sym_sizeof] = ACTIONS(2769), - [sym_number_literal] = ACTIONS(2771), - [anon_sym_L_SQUOTE] = ACTIONS(2771), - [anon_sym_u_SQUOTE] = ACTIONS(2771), - [anon_sym_U_SQUOTE] = ACTIONS(2771), - [anon_sym_u8_SQUOTE] = ACTIONS(2771), - [anon_sym_SQUOTE] = ACTIONS(2771), - [anon_sym_L_DQUOTE] = ACTIONS(2771), - [anon_sym_u_DQUOTE] = ACTIONS(2771), - [anon_sym_U_DQUOTE] = ACTIONS(2771), - [anon_sym_u8_DQUOTE] = ACTIONS(2771), - [anon_sym_DQUOTE] = ACTIONS(2771), - [sym_true] = ACTIONS(2769), - [sym_false] = ACTIONS(2769), - [sym_null] = ACTIONS(2769), + [612] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token2] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2769), - [anon_sym_decltype] = ACTIONS(2769), - [anon_sym_virtual] = ACTIONS(2769), - [anon_sym_explicit] = ACTIONS(2769), - [anon_sym_typename] = ACTIONS(2769), - [anon_sym_template] = ACTIONS(2769), - [anon_sym_operator] = ACTIONS(2769), - [anon_sym_try] = ACTIONS(2769), - [anon_sym_delete] = ACTIONS(2769), - [anon_sym_throw] = ACTIONS(2769), - [anon_sym_namespace] = ACTIONS(2769), - [anon_sym_using] = ACTIONS(2769), - [anon_sym_static_assert] = ACTIONS(2769), - [anon_sym_concept] = ACTIONS(2769), - [anon_sym_co_return] = ACTIONS(2769), - [anon_sym_co_yield] = ACTIONS(2769), - [anon_sym_co_await] = ACTIONS(2769), - [anon_sym_new] = ACTIONS(2769), - [anon_sym_requires] = ACTIONS(2769), - [sym_this] = ACTIONS(2769), - [sym_nullptr] = ACTIONS(2769), - [sym_raw_string_literal] = ACTIONS(2771), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [986] = { - [sym_identifier] = ACTIONS(2591), - [aux_sym_preproc_include_token1] = ACTIONS(2591), - [aux_sym_preproc_def_token1] = ACTIONS(2591), - [aux_sym_preproc_if_token1] = ACTIONS(2591), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2591), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2591), - [sym_preproc_directive] = ACTIONS(2591), - [anon_sym_LPAREN2] = ACTIONS(2593), - [anon_sym_BANG] = ACTIONS(2593), - [anon_sym_TILDE] = ACTIONS(2593), - [anon_sym_DASH] = ACTIONS(2591), - [anon_sym_PLUS] = ACTIONS(2591), - [anon_sym_STAR] = ACTIONS(2593), - [anon_sym_AMP_AMP] = ACTIONS(2593), - [anon_sym_AMP] = ACTIONS(2591), - [anon_sym_SEMI] = ACTIONS(2593), - [anon_sym_typedef] = ACTIONS(2591), - [anon_sym_extern] = ACTIONS(2591), - [anon_sym___attribute__] = ACTIONS(2591), - [anon_sym_COLON_COLON] = ACTIONS(2593), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2593), - [anon_sym___declspec] = ACTIONS(2591), - [anon_sym___based] = ACTIONS(2591), - [anon_sym___cdecl] = ACTIONS(2591), - [anon_sym___clrcall] = ACTIONS(2591), - [anon_sym___stdcall] = ACTIONS(2591), - [anon_sym___fastcall] = ACTIONS(2591), - [anon_sym___thiscall] = ACTIONS(2591), - [anon_sym___vectorcall] = ACTIONS(2591), - [anon_sym_LBRACE] = ACTIONS(2593), - [anon_sym_RBRACE] = ACTIONS(2593), - [anon_sym_LBRACK] = ACTIONS(2591), - [anon_sym_static] = ACTIONS(2591), - [anon_sym_register] = ACTIONS(2591), - [anon_sym_inline] = ACTIONS(2591), - [anon_sym_thread_local] = ACTIONS(2591), - [anon_sym_const] = ACTIONS(2591), - [anon_sym_volatile] = ACTIONS(2591), - [anon_sym_restrict] = ACTIONS(2591), - [anon_sym__Atomic] = ACTIONS(2591), - [anon_sym_mutable] = ACTIONS(2591), - [anon_sym_constexpr] = ACTIONS(2591), - [anon_sym_constinit] = ACTIONS(2591), - [anon_sym_consteval] = ACTIONS(2591), - [anon_sym_signed] = ACTIONS(2591), - [anon_sym_unsigned] = ACTIONS(2591), - [anon_sym_long] = ACTIONS(2591), - [anon_sym_short] = ACTIONS(2591), - [sym_primitive_type] = ACTIONS(2591), - [anon_sym_enum] = ACTIONS(2591), - [anon_sym_class] = ACTIONS(2591), - [anon_sym_struct] = ACTIONS(2591), - [anon_sym_union] = ACTIONS(2591), - [anon_sym_if] = ACTIONS(2591), - [anon_sym_switch] = ACTIONS(2591), - [anon_sym_case] = ACTIONS(2591), - [anon_sym_default] = ACTIONS(2591), - [anon_sym_while] = ACTIONS(2591), - [anon_sym_do] = ACTIONS(2591), - [anon_sym_for] = ACTIONS(2591), - [anon_sym_return] = ACTIONS(2591), - [anon_sym_break] = ACTIONS(2591), - [anon_sym_continue] = ACTIONS(2591), - [anon_sym_goto] = ACTIONS(2591), - [anon_sym_DASH_DASH] = ACTIONS(2593), - [anon_sym_PLUS_PLUS] = ACTIONS(2593), - [anon_sym_sizeof] = ACTIONS(2591), - [sym_number_literal] = ACTIONS(2593), - [anon_sym_L_SQUOTE] = ACTIONS(2593), - [anon_sym_u_SQUOTE] = ACTIONS(2593), - [anon_sym_U_SQUOTE] = ACTIONS(2593), - [anon_sym_u8_SQUOTE] = ACTIONS(2593), - [anon_sym_SQUOTE] = ACTIONS(2593), - [anon_sym_L_DQUOTE] = ACTIONS(2593), - [anon_sym_u_DQUOTE] = ACTIONS(2593), - [anon_sym_U_DQUOTE] = ACTIONS(2593), - [anon_sym_u8_DQUOTE] = ACTIONS(2593), - [anon_sym_DQUOTE] = ACTIONS(2593), - [sym_true] = ACTIONS(2591), - [sym_false] = ACTIONS(2591), - [sym_null] = ACTIONS(2591), + [613] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token2] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2591), - [anon_sym_decltype] = ACTIONS(2591), - [anon_sym_virtual] = ACTIONS(2591), - [anon_sym_explicit] = ACTIONS(2591), - [anon_sym_typename] = ACTIONS(2591), - [anon_sym_template] = ACTIONS(2591), - [anon_sym_operator] = ACTIONS(2591), - [anon_sym_try] = ACTIONS(2591), - [anon_sym_delete] = ACTIONS(2591), - [anon_sym_throw] = ACTIONS(2591), - [anon_sym_namespace] = ACTIONS(2591), - [anon_sym_using] = ACTIONS(2591), - [anon_sym_static_assert] = ACTIONS(2591), - [anon_sym_concept] = ACTIONS(2591), - [anon_sym_co_return] = ACTIONS(2591), - [anon_sym_co_yield] = ACTIONS(2591), - [anon_sym_co_await] = ACTIONS(2591), - [anon_sym_new] = ACTIONS(2591), - [anon_sym_requires] = ACTIONS(2591), - [sym_this] = ACTIONS(2591), - [sym_nullptr] = ACTIONS(2591), - [sym_raw_string_literal] = ACTIONS(2593), - }, - [987] = { - [sym_identifier] = ACTIONS(2609), - [aux_sym_preproc_include_token1] = ACTIONS(2609), - [aux_sym_preproc_def_token1] = ACTIONS(2609), - [aux_sym_preproc_if_token1] = ACTIONS(2609), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2609), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2609), - [sym_preproc_directive] = ACTIONS(2609), - [anon_sym_LPAREN2] = ACTIONS(2611), - [anon_sym_BANG] = ACTIONS(2611), - [anon_sym_TILDE] = ACTIONS(2611), - [anon_sym_DASH] = ACTIONS(2609), - [anon_sym_PLUS] = ACTIONS(2609), - [anon_sym_STAR] = ACTIONS(2611), - [anon_sym_AMP_AMP] = ACTIONS(2611), - [anon_sym_AMP] = ACTIONS(2609), - [anon_sym_SEMI] = ACTIONS(2611), - [anon_sym_typedef] = ACTIONS(2609), - [anon_sym_extern] = ACTIONS(2609), - [anon_sym___attribute__] = ACTIONS(2609), - [anon_sym_COLON_COLON] = ACTIONS(2611), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2611), - [anon_sym___declspec] = ACTIONS(2609), - [anon_sym___based] = ACTIONS(2609), - [anon_sym___cdecl] = ACTIONS(2609), - [anon_sym___clrcall] = ACTIONS(2609), - [anon_sym___stdcall] = ACTIONS(2609), - [anon_sym___fastcall] = ACTIONS(2609), - [anon_sym___thiscall] = ACTIONS(2609), - [anon_sym___vectorcall] = ACTIONS(2609), - [anon_sym_LBRACE] = ACTIONS(2611), - [anon_sym_RBRACE] = ACTIONS(2611), - [anon_sym_LBRACK] = ACTIONS(2609), - [anon_sym_static] = ACTIONS(2609), - [anon_sym_register] = ACTIONS(2609), - [anon_sym_inline] = ACTIONS(2609), - [anon_sym_thread_local] = ACTIONS(2609), - [anon_sym_const] = ACTIONS(2609), - [anon_sym_volatile] = ACTIONS(2609), - [anon_sym_restrict] = ACTIONS(2609), - [anon_sym__Atomic] = ACTIONS(2609), - [anon_sym_mutable] = ACTIONS(2609), - [anon_sym_constexpr] = ACTIONS(2609), - [anon_sym_constinit] = ACTIONS(2609), - [anon_sym_consteval] = ACTIONS(2609), - [anon_sym_signed] = ACTIONS(2609), - [anon_sym_unsigned] = ACTIONS(2609), - [anon_sym_long] = ACTIONS(2609), - [anon_sym_short] = ACTIONS(2609), - [sym_primitive_type] = ACTIONS(2609), - [anon_sym_enum] = ACTIONS(2609), - [anon_sym_class] = ACTIONS(2609), - [anon_sym_struct] = ACTIONS(2609), - [anon_sym_union] = ACTIONS(2609), - [anon_sym_if] = ACTIONS(2609), - [anon_sym_switch] = ACTIONS(2609), - [anon_sym_case] = ACTIONS(2609), - [anon_sym_default] = ACTIONS(2609), - [anon_sym_while] = ACTIONS(2609), - [anon_sym_do] = ACTIONS(2609), - [anon_sym_for] = ACTIONS(2609), - [anon_sym_return] = ACTIONS(2609), - [anon_sym_break] = ACTIONS(2609), - [anon_sym_continue] = ACTIONS(2609), - [anon_sym_goto] = ACTIONS(2609), - [anon_sym_DASH_DASH] = ACTIONS(2611), - [anon_sym_PLUS_PLUS] = ACTIONS(2611), - [anon_sym_sizeof] = ACTIONS(2609), - [sym_number_literal] = ACTIONS(2611), - [anon_sym_L_SQUOTE] = ACTIONS(2611), - [anon_sym_u_SQUOTE] = ACTIONS(2611), - [anon_sym_U_SQUOTE] = ACTIONS(2611), - [anon_sym_u8_SQUOTE] = ACTIONS(2611), - [anon_sym_SQUOTE] = ACTIONS(2611), - [anon_sym_L_DQUOTE] = ACTIONS(2611), - [anon_sym_u_DQUOTE] = ACTIONS(2611), - [anon_sym_U_DQUOTE] = ACTIONS(2611), - [anon_sym_u8_DQUOTE] = ACTIONS(2611), - [anon_sym_DQUOTE] = ACTIONS(2611), - [sym_true] = ACTIONS(2609), - [sym_false] = ACTIONS(2609), - [sym_null] = ACTIONS(2609), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2609), - [anon_sym_decltype] = ACTIONS(2609), - [anon_sym_virtual] = ACTIONS(2609), - [anon_sym_explicit] = ACTIONS(2609), - [anon_sym_typename] = ACTIONS(2609), - [anon_sym_template] = ACTIONS(2609), - [anon_sym_operator] = ACTIONS(2609), - [anon_sym_try] = ACTIONS(2609), - [anon_sym_delete] = ACTIONS(2609), - [anon_sym_throw] = ACTIONS(2609), - [anon_sym_namespace] = ACTIONS(2609), - [anon_sym_using] = ACTIONS(2609), - [anon_sym_static_assert] = ACTIONS(2609), - [anon_sym_concept] = ACTIONS(2609), - [anon_sym_co_return] = ACTIONS(2609), - [anon_sym_co_yield] = ACTIONS(2609), - [anon_sym_co_await] = ACTIONS(2609), - [anon_sym_new] = ACTIONS(2609), - [anon_sym_requires] = ACTIONS(2609), - [sym_this] = ACTIONS(2609), - [sym_nullptr] = ACTIONS(2609), - [sym_raw_string_literal] = ACTIONS(2611), - }, - [988] = { - [sym_identifier] = ACTIONS(2605), - [aux_sym_preproc_include_token1] = ACTIONS(2605), - [aux_sym_preproc_def_token1] = ACTIONS(2605), - [aux_sym_preproc_if_token1] = ACTIONS(2605), - [aux_sym_preproc_if_token2] = ACTIONS(2605), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2605), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2605), - [sym_preproc_directive] = ACTIONS(2605), - [anon_sym_LPAREN2] = ACTIONS(2607), - [anon_sym_BANG] = ACTIONS(2607), - [anon_sym_TILDE] = ACTIONS(2607), - [anon_sym_DASH] = ACTIONS(2605), - [anon_sym_PLUS] = ACTIONS(2605), - [anon_sym_STAR] = ACTIONS(2607), - [anon_sym_AMP_AMP] = ACTIONS(2607), - [anon_sym_AMP] = ACTIONS(2605), - [anon_sym_SEMI] = ACTIONS(2607), - [anon_sym_typedef] = ACTIONS(2605), - [anon_sym_extern] = ACTIONS(2605), - [anon_sym___attribute__] = ACTIONS(2605), - [anon_sym_COLON_COLON] = ACTIONS(2607), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2607), - [anon_sym___declspec] = ACTIONS(2605), - [anon_sym___based] = ACTIONS(2605), - [anon_sym___cdecl] = ACTIONS(2605), - [anon_sym___clrcall] = ACTIONS(2605), - [anon_sym___stdcall] = ACTIONS(2605), - [anon_sym___fastcall] = ACTIONS(2605), - [anon_sym___thiscall] = ACTIONS(2605), - [anon_sym___vectorcall] = ACTIONS(2605), - [anon_sym_LBRACE] = ACTIONS(2607), - [anon_sym_LBRACK] = ACTIONS(2605), - [anon_sym_static] = ACTIONS(2605), - [anon_sym_register] = ACTIONS(2605), - [anon_sym_inline] = ACTIONS(2605), - [anon_sym_thread_local] = ACTIONS(2605), - [anon_sym_const] = ACTIONS(2605), - [anon_sym_volatile] = ACTIONS(2605), - [anon_sym_restrict] = ACTIONS(2605), - [anon_sym__Atomic] = ACTIONS(2605), - [anon_sym_mutable] = ACTIONS(2605), - [anon_sym_constexpr] = ACTIONS(2605), - [anon_sym_constinit] = ACTIONS(2605), - [anon_sym_consteval] = ACTIONS(2605), - [anon_sym_signed] = ACTIONS(2605), - [anon_sym_unsigned] = ACTIONS(2605), - [anon_sym_long] = ACTIONS(2605), - [anon_sym_short] = ACTIONS(2605), - [sym_primitive_type] = ACTIONS(2605), - [anon_sym_enum] = ACTIONS(2605), - [anon_sym_class] = ACTIONS(2605), - [anon_sym_struct] = ACTIONS(2605), - [anon_sym_union] = ACTIONS(2605), - [anon_sym_if] = ACTIONS(2605), - [anon_sym_switch] = ACTIONS(2605), - [anon_sym_case] = ACTIONS(2605), - [anon_sym_default] = ACTIONS(2605), - [anon_sym_while] = ACTIONS(2605), - [anon_sym_do] = ACTIONS(2605), - [anon_sym_for] = ACTIONS(2605), - [anon_sym_return] = ACTIONS(2605), - [anon_sym_break] = ACTIONS(2605), - [anon_sym_continue] = ACTIONS(2605), - [anon_sym_goto] = ACTIONS(2605), - [anon_sym_DASH_DASH] = ACTIONS(2607), - [anon_sym_PLUS_PLUS] = ACTIONS(2607), - [anon_sym_sizeof] = ACTIONS(2605), - [sym_number_literal] = ACTIONS(2607), - [anon_sym_L_SQUOTE] = ACTIONS(2607), - [anon_sym_u_SQUOTE] = ACTIONS(2607), - [anon_sym_U_SQUOTE] = ACTIONS(2607), - [anon_sym_u8_SQUOTE] = ACTIONS(2607), - [anon_sym_SQUOTE] = ACTIONS(2607), - [anon_sym_L_DQUOTE] = ACTIONS(2607), - [anon_sym_u_DQUOTE] = ACTIONS(2607), - [anon_sym_U_DQUOTE] = ACTIONS(2607), - [anon_sym_u8_DQUOTE] = ACTIONS(2607), - [anon_sym_DQUOTE] = ACTIONS(2607), - [sym_true] = ACTIONS(2605), - [sym_false] = ACTIONS(2605), - [sym_null] = ACTIONS(2605), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2605), - [anon_sym_decltype] = ACTIONS(2605), - [anon_sym_virtual] = ACTIONS(2605), - [anon_sym_explicit] = ACTIONS(2605), - [anon_sym_typename] = ACTIONS(2605), - [anon_sym_template] = ACTIONS(2605), - [anon_sym_operator] = ACTIONS(2605), - [anon_sym_try] = ACTIONS(2605), - [anon_sym_delete] = ACTIONS(2605), - [anon_sym_throw] = ACTIONS(2605), - [anon_sym_namespace] = ACTIONS(2605), - [anon_sym_using] = ACTIONS(2605), - [anon_sym_static_assert] = ACTIONS(2605), - [anon_sym_concept] = ACTIONS(2605), - [anon_sym_co_return] = ACTIONS(2605), - [anon_sym_co_yield] = ACTIONS(2605), - [anon_sym_co_await] = ACTIONS(2605), - [anon_sym_new] = ACTIONS(2605), - [anon_sym_requires] = ACTIONS(2605), - [sym_this] = ACTIONS(2605), - [sym_nullptr] = ACTIONS(2605), - [sym_raw_string_literal] = ACTIONS(2607), - }, - [989] = { - [ts_builtin_sym_end] = ACTIONS(2687), - [sym_identifier] = ACTIONS(2685), - [aux_sym_preproc_include_token1] = ACTIONS(2685), - [aux_sym_preproc_def_token1] = ACTIONS(2685), - [aux_sym_preproc_if_token1] = ACTIONS(2685), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2685), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2685), - [sym_preproc_directive] = ACTIONS(2685), - [anon_sym_LPAREN2] = ACTIONS(2687), - [anon_sym_BANG] = ACTIONS(2687), - [anon_sym_TILDE] = ACTIONS(2687), - [anon_sym_DASH] = ACTIONS(2685), - [anon_sym_PLUS] = ACTIONS(2685), - [anon_sym_STAR] = ACTIONS(2687), - [anon_sym_AMP_AMP] = ACTIONS(2687), - [anon_sym_AMP] = ACTIONS(2685), - [anon_sym_SEMI] = ACTIONS(2687), - [anon_sym_typedef] = ACTIONS(2685), - [anon_sym_extern] = ACTIONS(2685), - [anon_sym___attribute__] = ACTIONS(2685), - [anon_sym_COLON_COLON] = ACTIONS(2687), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2687), - [anon_sym___declspec] = ACTIONS(2685), - [anon_sym___based] = ACTIONS(2685), - [anon_sym___cdecl] = ACTIONS(2685), - [anon_sym___clrcall] = ACTIONS(2685), - [anon_sym___stdcall] = ACTIONS(2685), - [anon_sym___fastcall] = ACTIONS(2685), - [anon_sym___thiscall] = ACTIONS(2685), - [anon_sym___vectorcall] = ACTIONS(2685), - [anon_sym_LBRACE] = ACTIONS(2687), - [anon_sym_LBRACK] = ACTIONS(2685), - [anon_sym_static] = ACTIONS(2685), - [anon_sym_register] = ACTIONS(2685), - [anon_sym_inline] = ACTIONS(2685), - [anon_sym_thread_local] = ACTIONS(2685), - [anon_sym_const] = ACTIONS(2685), - [anon_sym_volatile] = ACTIONS(2685), - [anon_sym_restrict] = ACTIONS(2685), - [anon_sym__Atomic] = ACTIONS(2685), - [anon_sym_mutable] = ACTIONS(2685), - [anon_sym_constexpr] = ACTIONS(2685), - [anon_sym_constinit] = ACTIONS(2685), - [anon_sym_consteval] = ACTIONS(2685), - [anon_sym_signed] = ACTIONS(2685), - [anon_sym_unsigned] = ACTIONS(2685), - [anon_sym_long] = ACTIONS(2685), - [anon_sym_short] = ACTIONS(2685), - [sym_primitive_type] = ACTIONS(2685), - [anon_sym_enum] = ACTIONS(2685), - [anon_sym_class] = ACTIONS(2685), - [anon_sym_struct] = ACTIONS(2685), - [anon_sym_union] = ACTIONS(2685), - [anon_sym_if] = ACTIONS(2685), - [anon_sym_switch] = ACTIONS(2685), - [anon_sym_case] = ACTIONS(2685), - [anon_sym_default] = ACTIONS(2685), - [anon_sym_while] = ACTIONS(2685), - [anon_sym_do] = ACTIONS(2685), - [anon_sym_for] = ACTIONS(2685), - [anon_sym_return] = ACTIONS(2685), - [anon_sym_break] = ACTIONS(2685), - [anon_sym_continue] = ACTIONS(2685), - [anon_sym_goto] = ACTIONS(2685), - [anon_sym_DASH_DASH] = ACTIONS(2687), - [anon_sym_PLUS_PLUS] = ACTIONS(2687), - [anon_sym_sizeof] = ACTIONS(2685), - [sym_number_literal] = ACTIONS(2687), - [anon_sym_L_SQUOTE] = ACTIONS(2687), - [anon_sym_u_SQUOTE] = ACTIONS(2687), - [anon_sym_U_SQUOTE] = ACTIONS(2687), - [anon_sym_u8_SQUOTE] = ACTIONS(2687), - [anon_sym_SQUOTE] = ACTIONS(2687), - [anon_sym_L_DQUOTE] = ACTIONS(2687), - [anon_sym_u_DQUOTE] = ACTIONS(2687), - [anon_sym_U_DQUOTE] = ACTIONS(2687), - [anon_sym_u8_DQUOTE] = ACTIONS(2687), - [anon_sym_DQUOTE] = ACTIONS(2687), - [sym_true] = ACTIONS(2685), - [sym_false] = ACTIONS(2685), - [sym_null] = ACTIONS(2685), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2685), - [anon_sym_decltype] = ACTIONS(2685), - [anon_sym_virtual] = ACTIONS(2685), - [anon_sym_explicit] = ACTIONS(2685), - [anon_sym_typename] = ACTIONS(2685), - [anon_sym_template] = ACTIONS(2685), - [anon_sym_operator] = ACTIONS(2685), - [anon_sym_try] = ACTIONS(2685), - [anon_sym_delete] = ACTIONS(2685), - [anon_sym_throw] = ACTIONS(2685), - [anon_sym_namespace] = ACTIONS(2685), - [anon_sym_using] = ACTIONS(2685), - [anon_sym_static_assert] = ACTIONS(2685), - [anon_sym_concept] = ACTIONS(2685), - [anon_sym_co_return] = ACTIONS(2685), - [anon_sym_co_yield] = ACTIONS(2685), - [anon_sym_co_await] = ACTIONS(2685), - [anon_sym_new] = ACTIONS(2685), - [anon_sym_requires] = ACTIONS(2685), - [sym_this] = ACTIONS(2685), - [sym_nullptr] = ACTIONS(2685), - [sym_raw_string_literal] = ACTIONS(2687), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [990] = { - [sym_identifier] = ACTIONS(2801), - [aux_sym_preproc_include_token1] = ACTIONS(2801), - [aux_sym_preproc_def_token1] = ACTIONS(2801), - [aux_sym_preproc_if_token1] = ACTIONS(2801), - [aux_sym_preproc_if_token2] = ACTIONS(2801), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2801), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2801), - [sym_preproc_directive] = ACTIONS(2801), - [anon_sym_LPAREN2] = ACTIONS(2803), - [anon_sym_BANG] = ACTIONS(2803), - [anon_sym_TILDE] = ACTIONS(2803), - [anon_sym_DASH] = ACTIONS(2801), - [anon_sym_PLUS] = ACTIONS(2801), - [anon_sym_STAR] = ACTIONS(2803), - [anon_sym_AMP_AMP] = ACTIONS(2803), - [anon_sym_AMP] = ACTIONS(2801), - [anon_sym_SEMI] = ACTIONS(2803), - [anon_sym_typedef] = ACTIONS(2801), - [anon_sym_extern] = ACTIONS(2801), - [anon_sym___attribute__] = ACTIONS(2801), - [anon_sym_COLON_COLON] = ACTIONS(2803), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2803), - [anon_sym___declspec] = ACTIONS(2801), - [anon_sym___based] = ACTIONS(2801), - [anon_sym___cdecl] = ACTIONS(2801), - [anon_sym___clrcall] = ACTIONS(2801), - [anon_sym___stdcall] = ACTIONS(2801), - [anon_sym___fastcall] = ACTIONS(2801), - [anon_sym___thiscall] = ACTIONS(2801), - [anon_sym___vectorcall] = ACTIONS(2801), - [anon_sym_LBRACE] = ACTIONS(2803), - [anon_sym_LBRACK] = ACTIONS(2801), - [anon_sym_static] = ACTIONS(2801), - [anon_sym_register] = ACTIONS(2801), - [anon_sym_inline] = ACTIONS(2801), - [anon_sym_thread_local] = ACTIONS(2801), - [anon_sym_const] = ACTIONS(2801), - [anon_sym_volatile] = ACTIONS(2801), - [anon_sym_restrict] = ACTIONS(2801), - [anon_sym__Atomic] = ACTIONS(2801), - [anon_sym_mutable] = ACTIONS(2801), - [anon_sym_constexpr] = ACTIONS(2801), - [anon_sym_constinit] = ACTIONS(2801), - [anon_sym_consteval] = ACTIONS(2801), - [anon_sym_signed] = ACTIONS(2801), - [anon_sym_unsigned] = ACTIONS(2801), - [anon_sym_long] = ACTIONS(2801), - [anon_sym_short] = ACTIONS(2801), - [sym_primitive_type] = ACTIONS(2801), - [anon_sym_enum] = ACTIONS(2801), - [anon_sym_class] = ACTIONS(2801), - [anon_sym_struct] = ACTIONS(2801), - [anon_sym_union] = ACTIONS(2801), - [anon_sym_if] = ACTIONS(2801), - [anon_sym_switch] = ACTIONS(2801), - [anon_sym_case] = ACTIONS(2801), - [anon_sym_default] = ACTIONS(2801), - [anon_sym_while] = ACTIONS(2801), - [anon_sym_do] = ACTIONS(2801), - [anon_sym_for] = ACTIONS(2801), - [anon_sym_return] = ACTIONS(2801), - [anon_sym_break] = ACTIONS(2801), - [anon_sym_continue] = ACTIONS(2801), - [anon_sym_goto] = ACTIONS(2801), - [anon_sym_DASH_DASH] = ACTIONS(2803), - [anon_sym_PLUS_PLUS] = ACTIONS(2803), - [anon_sym_sizeof] = ACTIONS(2801), - [sym_number_literal] = ACTIONS(2803), - [anon_sym_L_SQUOTE] = ACTIONS(2803), - [anon_sym_u_SQUOTE] = ACTIONS(2803), - [anon_sym_U_SQUOTE] = ACTIONS(2803), - [anon_sym_u8_SQUOTE] = ACTIONS(2803), - [anon_sym_SQUOTE] = ACTIONS(2803), - [anon_sym_L_DQUOTE] = ACTIONS(2803), - [anon_sym_u_DQUOTE] = ACTIONS(2803), - [anon_sym_U_DQUOTE] = ACTIONS(2803), - [anon_sym_u8_DQUOTE] = ACTIONS(2803), - [anon_sym_DQUOTE] = ACTIONS(2803), - [sym_true] = ACTIONS(2801), - [sym_false] = ACTIONS(2801), - [sym_null] = ACTIONS(2801), + [614] = { + [ts_builtin_sym_end] = ACTIONS(2597), + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2801), - [anon_sym_decltype] = ACTIONS(2801), - [anon_sym_virtual] = ACTIONS(2801), - [anon_sym_explicit] = ACTIONS(2801), - [anon_sym_typename] = ACTIONS(2801), - [anon_sym_template] = ACTIONS(2801), - [anon_sym_operator] = ACTIONS(2801), - [anon_sym_try] = ACTIONS(2801), - [anon_sym_delete] = ACTIONS(2801), - [anon_sym_throw] = ACTIONS(2801), - [anon_sym_namespace] = ACTIONS(2801), - [anon_sym_using] = ACTIONS(2801), - [anon_sym_static_assert] = ACTIONS(2801), - [anon_sym_concept] = ACTIONS(2801), - [anon_sym_co_return] = ACTIONS(2801), - [anon_sym_co_yield] = ACTIONS(2801), - [anon_sym_co_await] = ACTIONS(2801), - [anon_sym_new] = ACTIONS(2801), - [anon_sym_requires] = ACTIONS(2801), - [sym_this] = ACTIONS(2801), - [sym_nullptr] = ACTIONS(2801), - [sym_raw_string_literal] = ACTIONS(2803), - }, - [991] = { - [ts_builtin_sym_end] = ACTIONS(2635), - [sym_identifier] = ACTIONS(2633), - [aux_sym_preproc_include_token1] = ACTIONS(2633), - [aux_sym_preproc_def_token1] = ACTIONS(2633), - [aux_sym_preproc_if_token1] = ACTIONS(2633), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2633), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2633), - [sym_preproc_directive] = ACTIONS(2633), - [anon_sym_LPAREN2] = ACTIONS(2635), - [anon_sym_BANG] = ACTIONS(2635), - [anon_sym_TILDE] = ACTIONS(2635), - [anon_sym_DASH] = ACTIONS(2633), - [anon_sym_PLUS] = ACTIONS(2633), - [anon_sym_STAR] = ACTIONS(2635), - [anon_sym_AMP_AMP] = ACTIONS(2635), - [anon_sym_AMP] = ACTIONS(2633), - [anon_sym_SEMI] = ACTIONS(2635), - [anon_sym_typedef] = ACTIONS(2633), - [anon_sym_extern] = ACTIONS(2633), - [anon_sym___attribute__] = ACTIONS(2633), - [anon_sym_COLON_COLON] = ACTIONS(2635), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2635), - [anon_sym___declspec] = ACTIONS(2633), - [anon_sym___based] = ACTIONS(2633), - [anon_sym___cdecl] = ACTIONS(2633), - [anon_sym___clrcall] = ACTIONS(2633), - [anon_sym___stdcall] = ACTIONS(2633), - [anon_sym___fastcall] = ACTIONS(2633), - [anon_sym___thiscall] = ACTIONS(2633), - [anon_sym___vectorcall] = ACTIONS(2633), - [anon_sym_LBRACE] = ACTIONS(2635), - [anon_sym_LBRACK] = ACTIONS(2633), - [anon_sym_static] = ACTIONS(2633), - [anon_sym_register] = ACTIONS(2633), - [anon_sym_inline] = ACTIONS(2633), - [anon_sym_thread_local] = ACTIONS(2633), - [anon_sym_const] = ACTIONS(2633), - [anon_sym_volatile] = ACTIONS(2633), - [anon_sym_restrict] = ACTIONS(2633), - [anon_sym__Atomic] = ACTIONS(2633), - [anon_sym_mutable] = ACTIONS(2633), - [anon_sym_constexpr] = ACTIONS(2633), - [anon_sym_constinit] = ACTIONS(2633), - [anon_sym_consteval] = ACTIONS(2633), - [anon_sym_signed] = ACTIONS(2633), - [anon_sym_unsigned] = ACTIONS(2633), - [anon_sym_long] = ACTIONS(2633), - [anon_sym_short] = ACTIONS(2633), - [sym_primitive_type] = ACTIONS(2633), - [anon_sym_enum] = ACTIONS(2633), - [anon_sym_class] = ACTIONS(2633), - [anon_sym_struct] = ACTIONS(2633), - [anon_sym_union] = ACTIONS(2633), - [anon_sym_if] = ACTIONS(2633), - [anon_sym_switch] = ACTIONS(2633), - [anon_sym_case] = ACTIONS(2633), - [anon_sym_default] = ACTIONS(2633), - [anon_sym_while] = ACTIONS(2633), - [anon_sym_do] = ACTIONS(2633), - [anon_sym_for] = ACTIONS(2633), - [anon_sym_return] = ACTIONS(2633), - [anon_sym_break] = ACTIONS(2633), - [anon_sym_continue] = ACTIONS(2633), - [anon_sym_goto] = ACTIONS(2633), - [anon_sym_DASH_DASH] = ACTIONS(2635), - [anon_sym_PLUS_PLUS] = ACTIONS(2635), - [anon_sym_sizeof] = ACTIONS(2633), - [sym_number_literal] = ACTIONS(2635), - [anon_sym_L_SQUOTE] = ACTIONS(2635), - [anon_sym_u_SQUOTE] = ACTIONS(2635), - [anon_sym_U_SQUOTE] = ACTIONS(2635), - [anon_sym_u8_SQUOTE] = ACTIONS(2635), - [anon_sym_SQUOTE] = ACTIONS(2635), - [anon_sym_L_DQUOTE] = ACTIONS(2635), - [anon_sym_u_DQUOTE] = ACTIONS(2635), - [anon_sym_U_DQUOTE] = ACTIONS(2635), - [anon_sym_u8_DQUOTE] = ACTIONS(2635), - [anon_sym_DQUOTE] = ACTIONS(2635), - [sym_true] = ACTIONS(2633), - [sym_false] = ACTIONS(2633), - [sym_null] = ACTIONS(2633), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2633), - [anon_sym_decltype] = ACTIONS(2633), - [anon_sym_virtual] = ACTIONS(2633), - [anon_sym_explicit] = ACTIONS(2633), - [anon_sym_typename] = ACTIONS(2633), - [anon_sym_template] = ACTIONS(2633), - [anon_sym_operator] = ACTIONS(2633), - [anon_sym_try] = ACTIONS(2633), - [anon_sym_delete] = ACTIONS(2633), - [anon_sym_throw] = ACTIONS(2633), - [anon_sym_namespace] = ACTIONS(2633), - [anon_sym_using] = ACTIONS(2633), - [anon_sym_static_assert] = ACTIONS(2633), - [anon_sym_concept] = ACTIONS(2633), - [anon_sym_co_return] = ACTIONS(2633), - [anon_sym_co_yield] = ACTIONS(2633), - [anon_sym_co_await] = ACTIONS(2633), - [anon_sym_new] = ACTIONS(2633), - [anon_sym_requires] = ACTIONS(2633), - [sym_this] = ACTIONS(2633), - [sym_nullptr] = ACTIONS(2633), - [sym_raw_string_literal] = ACTIONS(2635), - }, - [992] = { - [sym__expression] = STATE(3050), - [sym_conditional_expression] = STATE(2541), - [sym_assignment_expression] = STATE(2541), - [sym_pointer_expression] = STATE(2531), - [sym_unary_expression] = STATE(2541), - [sym_binary_expression] = STATE(2541), - [sym_update_expression] = STATE(2541), - [sym_cast_expression] = STATE(2541), - [sym_sizeof_expression] = STATE(2541), - [sym_subscript_expression] = STATE(2531), - [sym_call_expression] = STATE(2531), - [sym_field_expression] = STATE(2531), - [sym_compound_literal_expression] = STATE(2541), - [sym_parenthesized_expression] = STATE(2531), - [sym_initializer_list] = STATE(2606), - [sym_char_literal] = STATE(2481), - [sym_concatenated_string] = STATE(2481), - [sym_string_literal] = STATE(2063), - [sym__class_name] = STATE(6239), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2541), - [sym_co_await_expression] = STATE(2541), - [sym_new_expression] = STATE(2541), - [sym_delete_expression] = STATE(2541), - [sym_requires_clause] = STATE(2541), - [sym_requires_expression] = STATE(2541), - [sym_lambda_expression] = STATE(2541), - [sym_lambda_capture_specifier] = STATE(4508), - [sym_fold_expression] = STATE(2541), - [sym_parameter_pack_expansion] = STATE(2541), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2531), - [sym_qualified_type_identifier] = STATE(6239), - [sym_user_defined_literal] = STATE(2541), - [sym_identifier] = ACTIONS(2306), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2308), - [anon_sym_LPAREN2] = ACTIONS(2891), - [anon_sym_BANG] = ACTIONS(2893), - [anon_sym_TILDE] = ACTIONS(2895), - [anon_sym_DASH] = ACTIONS(2893), - [anon_sym_PLUS] = ACTIONS(2893), - [anon_sym_STAR] = ACTIONS(2897), - [anon_sym_SLASH] = ACTIONS(2316), - [anon_sym_PERCENT] = ACTIONS(2316), - [anon_sym_PIPE_PIPE] = ACTIONS(2308), - [anon_sym_AMP_AMP] = ACTIONS(2308), - [anon_sym_PIPE] = ACTIONS(2316), - [anon_sym_CARET] = ACTIONS(2316), - [anon_sym_AMP] = ACTIONS(2897), - [anon_sym_EQ_EQ] = ACTIONS(2308), - [anon_sym_BANG_EQ] = ACTIONS(2308), - [anon_sym_GT] = ACTIONS(2316), - [anon_sym_GT_EQ] = ACTIONS(2308), - [anon_sym_LT_EQ] = ACTIONS(2316), - [anon_sym_LT] = ACTIONS(2316), - [anon_sym_LT_LT] = ACTIONS(2316), - [anon_sym_GT_GT] = ACTIONS(2316), - [anon_sym_COLON_COLON] = ACTIONS(2899), - [anon_sym_LBRACE] = ACTIONS(2320), - [anon_sym_LBRACK] = ACTIONS(2272), - [anon_sym_EQ] = ACTIONS(2316), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_COLON] = ACTIONS(2316), - [anon_sym_QMARK] = ACTIONS(2308), - [anon_sym_STAR_EQ] = ACTIONS(2308), - [anon_sym_SLASH_EQ] = ACTIONS(2308), - [anon_sym_PERCENT_EQ] = ACTIONS(2308), - [anon_sym_PLUS_EQ] = ACTIONS(2308), - [anon_sym_DASH_EQ] = ACTIONS(2308), - [anon_sym_LT_LT_EQ] = ACTIONS(2308), - [anon_sym_GT_GT_EQ] = ACTIONS(2308), - [anon_sym_AMP_EQ] = ACTIONS(2308), - [anon_sym_CARET_EQ] = ACTIONS(2308), - [anon_sym_PIPE_EQ] = ACTIONS(2308), - [anon_sym_LT_EQ_GT] = ACTIONS(2308), - [anon_sym_DASH_DASH] = ACTIONS(2901), - [anon_sym_PLUS_PLUS] = ACTIONS(2901), - [anon_sym_sizeof] = ACTIONS(2903), - [anon_sym_DOT] = ACTIONS(2316), - [anon_sym_DASH_GT] = ACTIONS(2308), - [sym_number_literal] = ACTIONS(2326), - [anon_sym_L_SQUOTE] = ACTIONS(2328), - [anon_sym_u_SQUOTE] = ACTIONS(2328), - [anon_sym_U_SQUOTE] = ACTIONS(2328), - [anon_sym_u8_SQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2328), - [anon_sym_L_DQUOTE] = ACTIONS(2330), - [anon_sym_u_DQUOTE] = ACTIONS(2330), - [anon_sym_U_DQUOTE] = ACTIONS(2330), - [anon_sym_u8_DQUOTE] = ACTIONS(2330), - [anon_sym_DQUOTE] = ACTIONS(2330), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2905), - [anon_sym_co_await] = ACTIONS(2907), - [anon_sym_new] = ACTIONS(2909), - [anon_sym_requires] = ACTIONS(2340), - [sym_this] = ACTIONS(2332), - [sym_nullptr] = ACTIONS(2332), - [sym_raw_string_literal] = ACTIONS(2342), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [993] = { - [sym_identifier] = ACTIONS(2729), - [aux_sym_preproc_include_token1] = ACTIONS(2729), - [aux_sym_preproc_def_token1] = ACTIONS(2729), - [aux_sym_preproc_if_token1] = ACTIONS(2729), - [aux_sym_preproc_if_token2] = ACTIONS(2729), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2729), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2729), - [sym_preproc_directive] = ACTIONS(2729), - [anon_sym_LPAREN2] = ACTIONS(2731), - [anon_sym_BANG] = ACTIONS(2731), - [anon_sym_TILDE] = ACTIONS(2731), - [anon_sym_DASH] = ACTIONS(2729), - [anon_sym_PLUS] = ACTIONS(2729), - [anon_sym_STAR] = ACTIONS(2731), - [anon_sym_AMP_AMP] = ACTIONS(2731), - [anon_sym_AMP] = ACTIONS(2729), - [anon_sym_SEMI] = ACTIONS(2731), - [anon_sym_typedef] = ACTIONS(2729), - [anon_sym_extern] = ACTIONS(2729), - [anon_sym___attribute__] = ACTIONS(2729), - [anon_sym_COLON_COLON] = ACTIONS(2731), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2731), - [anon_sym___declspec] = ACTIONS(2729), - [anon_sym___based] = ACTIONS(2729), - [anon_sym___cdecl] = ACTIONS(2729), - [anon_sym___clrcall] = ACTIONS(2729), - [anon_sym___stdcall] = ACTIONS(2729), - [anon_sym___fastcall] = ACTIONS(2729), - [anon_sym___thiscall] = ACTIONS(2729), - [anon_sym___vectorcall] = ACTIONS(2729), - [anon_sym_LBRACE] = ACTIONS(2731), - [anon_sym_LBRACK] = ACTIONS(2729), - [anon_sym_static] = ACTIONS(2729), - [anon_sym_register] = ACTIONS(2729), - [anon_sym_inline] = ACTIONS(2729), - [anon_sym_thread_local] = ACTIONS(2729), - [anon_sym_const] = ACTIONS(2729), - [anon_sym_volatile] = ACTIONS(2729), - [anon_sym_restrict] = ACTIONS(2729), - [anon_sym__Atomic] = ACTIONS(2729), - [anon_sym_mutable] = ACTIONS(2729), - [anon_sym_constexpr] = ACTIONS(2729), - [anon_sym_constinit] = ACTIONS(2729), - [anon_sym_consteval] = ACTIONS(2729), - [anon_sym_signed] = ACTIONS(2729), - [anon_sym_unsigned] = ACTIONS(2729), - [anon_sym_long] = ACTIONS(2729), - [anon_sym_short] = ACTIONS(2729), - [sym_primitive_type] = ACTIONS(2729), - [anon_sym_enum] = ACTIONS(2729), - [anon_sym_class] = ACTIONS(2729), - [anon_sym_struct] = ACTIONS(2729), - [anon_sym_union] = ACTIONS(2729), - [anon_sym_if] = ACTIONS(2729), - [anon_sym_switch] = ACTIONS(2729), - [anon_sym_case] = ACTIONS(2729), - [anon_sym_default] = ACTIONS(2729), - [anon_sym_while] = ACTIONS(2729), - [anon_sym_do] = ACTIONS(2729), - [anon_sym_for] = ACTIONS(2729), - [anon_sym_return] = ACTIONS(2729), - [anon_sym_break] = ACTIONS(2729), - [anon_sym_continue] = ACTIONS(2729), - [anon_sym_goto] = ACTIONS(2729), - [anon_sym_DASH_DASH] = ACTIONS(2731), - [anon_sym_PLUS_PLUS] = ACTIONS(2731), - [anon_sym_sizeof] = ACTIONS(2729), - [sym_number_literal] = ACTIONS(2731), - [anon_sym_L_SQUOTE] = ACTIONS(2731), - [anon_sym_u_SQUOTE] = ACTIONS(2731), - [anon_sym_U_SQUOTE] = ACTIONS(2731), - [anon_sym_u8_SQUOTE] = ACTIONS(2731), - [anon_sym_SQUOTE] = ACTIONS(2731), - [anon_sym_L_DQUOTE] = ACTIONS(2731), - [anon_sym_u_DQUOTE] = ACTIONS(2731), - [anon_sym_U_DQUOTE] = ACTIONS(2731), - [anon_sym_u8_DQUOTE] = ACTIONS(2731), - [anon_sym_DQUOTE] = ACTIONS(2731), - [sym_true] = ACTIONS(2729), - [sym_false] = ACTIONS(2729), - [sym_null] = ACTIONS(2729), + [615] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token2] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2729), - [anon_sym_decltype] = ACTIONS(2729), - [anon_sym_virtual] = ACTIONS(2729), - [anon_sym_explicit] = ACTIONS(2729), - [anon_sym_typename] = ACTIONS(2729), - [anon_sym_template] = ACTIONS(2729), - [anon_sym_operator] = ACTIONS(2729), - [anon_sym_try] = ACTIONS(2729), - [anon_sym_delete] = ACTIONS(2729), - [anon_sym_throw] = ACTIONS(2729), - [anon_sym_namespace] = ACTIONS(2729), - [anon_sym_using] = ACTIONS(2729), - [anon_sym_static_assert] = ACTIONS(2729), - [anon_sym_concept] = ACTIONS(2729), - [anon_sym_co_return] = ACTIONS(2729), - [anon_sym_co_yield] = ACTIONS(2729), - [anon_sym_co_await] = ACTIONS(2729), - [anon_sym_new] = ACTIONS(2729), - [anon_sym_requires] = ACTIONS(2729), - [sym_this] = ACTIONS(2729), - [sym_nullptr] = ACTIONS(2729), - [sym_raw_string_literal] = ACTIONS(2731), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [994] = { + [616] = { [sym_identifier] = ACTIONS(2595), [aux_sym_preproc_include_token1] = ACTIONS(2595), [aux_sym_preproc_def_token1] = ACTIONS(2595), @@ -142810,6 +105216,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(2595), [anon_sym_union] = ACTIONS(2595), [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), [anon_sym_switch] = ACTIONS(2595), [anon_sym_case] = ACTIONS(2595), [anon_sym_default] = ACTIONS(2595), @@ -142820,6 +105227,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(2595), [anon_sym_continue] = ACTIONS(2595), [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), [anon_sym_DASH_DASH] = ACTIONS(2597), [anon_sym_PLUS_PLUS] = ACTIONS(2597), [anon_sym_sizeof] = ACTIONS(2595), @@ -142861,4141 +105270,2188 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(2595), [sym_raw_string_literal] = ACTIONS(2597), }, - [995] = { - [sym_identifier] = ACTIONS(2647), - [aux_sym_preproc_include_token1] = ACTIONS(2647), - [aux_sym_preproc_def_token1] = ACTIONS(2647), - [aux_sym_preproc_if_token1] = ACTIONS(2647), - [aux_sym_preproc_if_token2] = ACTIONS(2647), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2647), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2647), - [sym_preproc_directive] = ACTIONS(2647), - [anon_sym_LPAREN2] = ACTIONS(2649), - [anon_sym_BANG] = ACTIONS(2649), - [anon_sym_TILDE] = ACTIONS(2649), - [anon_sym_DASH] = ACTIONS(2647), - [anon_sym_PLUS] = ACTIONS(2647), - [anon_sym_STAR] = ACTIONS(2649), - [anon_sym_AMP_AMP] = ACTIONS(2649), - [anon_sym_AMP] = ACTIONS(2647), - [anon_sym_SEMI] = ACTIONS(2649), - [anon_sym_typedef] = ACTIONS(2647), - [anon_sym_extern] = ACTIONS(2647), - [anon_sym___attribute__] = ACTIONS(2647), - [anon_sym_COLON_COLON] = ACTIONS(2649), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2649), - [anon_sym___declspec] = ACTIONS(2647), - [anon_sym___based] = ACTIONS(2647), - [anon_sym___cdecl] = ACTIONS(2647), - [anon_sym___clrcall] = ACTIONS(2647), - [anon_sym___stdcall] = ACTIONS(2647), - [anon_sym___fastcall] = ACTIONS(2647), - [anon_sym___thiscall] = ACTIONS(2647), - [anon_sym___vectorcall] = ACTIONS(2647), - [anon_sym_LBRACE] = ACTIONS(2649), - [anon_sym_LBRACK] = ACTIONS(2647), - [anon_sym_static] = ACTIONS(2647), - [anon_sym_register] = ACTIONS(2647), - [anon_sym_inline] = ACTIONS(2647), - [anon_sym_thread_local] = ACTIONS(2647), - [anon_sym_const] = ACTIONS(2647), - [anon_sym_volatile] = ACTIONS(2647), - [anon_sym_restrict] = ACTIONS(2647), - [anon_sym__Atomic] = ACTIONS(2647), - [anon_sym_mutable] = ACTIONS(2647), - [anon_sym_constexpr] = ACTIONS(2647), - [anon_sym_constinit] = ACTIONS(2647), - [anon_sym_consteval] = ACTIONS(2647), - [anon_sym_signed] = ACTIONS(2647), - [anon_sym_unsigned] = ACTIONS(2647), - [anon_sym_long] = ACTIONS(2647), - [anon_sym_short] = ACTIONS(2647), - [sym_primitive_type] = ACTIONS(2647), - [anon_sym_enum] = ACTIONS(2647), - [anon_sym_class] = ACTIONS(2647), - [anon_sym_struct] = ACTIONS(2647), - [anon_sym_union] = ACTIONS(2647), - [anon_sym_if] = ACTIONS(2647), - [anon_sym_switch] = ACTIONS(2647), - [anon_sym_case] = ACTIONS(2647), - [anon_sym_default] = ACTIONS(2647), - [anon_sym_while] = ACTIONS(2647), - [anon_sym_do] = ACTIONS(2647), - [anon_sym_for] = ACTIONS(2647), - [anon_sym_return] = ACTIONS(2647), - [anon_sym_break] = ACTIONS(2647), - [anon_sym_continue] = ACTIONS(2647), - [anon_sym_goto] = ACTIONS(2647), - [anon_sym_DASH_DASH] = ACTIONS(2649), - [anon_sym_PLUS_PLUS] = ACTIONS(2649), - [anon_sym_sizeof] = ACTIONS(2647), - [sym_number_literal] = ACTIONS(2649), - [anon_sym_L_SQUOTE] = ACTIONS(2649), - [anon_sym_u_SQUOTE] = ACTIONS(2649), - [anon_sym_U_SQUOTE] = ACTIONS(2649), - [anon_sym_u8_SQUOTE] = ACTIONS(2649), - [anon_sym_SQUOTE] = ACTIONS(2649), - [anon_sym_L_DQUOTE] = ACTIONS(2649), - [anon_sym_u_DQUOTE] = ACTIONS(2649), - [anon_sym_U_DQUOTE] = ACTIONS(2649), - [anon_sym_u8_DQUOTE] = ACTIONS(2649), - [anon_sym_DQUOTE] = ACTIONS(2649), - [sym_true] = ACTIONS(2647), - [sym_false] = ACTIONS(2647), - [sym_null] = ACTIONS(2647), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2647), - [anon_sym_decltype] = ACTIONS(2647), - [anon_sym_virtual] = ACTIONS(2647), - [anon_sym_explicit] = ACTIONS(2647), - [anon_sym_typename] = ACTIONS(2647), - [anon_sym_template] = ACTIONS(2647), - [anon_sym_operator] = ACTIONS(2647), - [anon_sym_try] = ACTIONS(2647), - [anon_sym_delete] = ACTIONS(2647), - [anon_sym_throw] = ACTIONS(2647), - [anon_sym_namespace] = ACTIONS(2647), - [anon_sym_using] = ACTIONS(2647), - [anon_sym_static_assert] = ACTIONS(2647), - [anon_sym_concept] = ACTIONS(2647), - [anon_sym_co_return] = ACTIONS(2647), - [anon_sym_co_yield] = ACTIONS(2647), - [anon_sym_co_await] = ACTIONS(2647), - [anon_sym_new] = ACTIONS(2647), - [anon_sym_requires] = ACTIONS(2647), - [sym_this] = ACTIONS(2647), - [sym_nullptr] = ACTIONS(2647), - [sym_raw_string_literal] = ACTIONS(2649), - }, - [996] = { - [sym_identifier] = ACTIONS(2647), - [aux_sym_preproc_include_token1] = ACTIONS(2647), - [aux_sym_preproc_def_token1] = ACTIONS(2647), - [aux_sym_preproc_if_token1] = ACTIONS(2647), - [aux_sym_preproc_if_token2] = ACTIONS(2647), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2647), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2647), - [sym_preproc_directive] = ACTIONS(2647), - [anon_sym_LPAREN2] = ACTIONS(2649), - [anon_sym_BANG] = ACTIONS(2649), - [anon_sym_TILDE] = ACTIONS(2649), - [anon_sym_DASH] = ACTIONS(2647), - [anon_sym_PLUS] = ACTIONS(2647), - [anon_sym_STAR] = ACTIONS(2649), - [anon_sym_AMP_AMP] = ACTIONS(2649), - [anon_sym_AMP] = ACTIONS(2647), - [anon_sym_SEMI] = ACTIONS(2649), - [anon_sym_typedef] = ACTIONS(2647), - [anon_sym_extern] = ACTIONS(2647), - [anon_sym___attribute__] = ACTIONS(2647), - [anon_sym_COLON_COLON] = ACTIONS(2649), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2649), - [anon_sym___declspec] = ACTIONS(2647), - [anon_sym___based] = ACTIONS(2647), - [anon_sym___cdecl] = ACTIONS(2647), - [anon_sym___clrcall] = ACTIONS(2647), - [anon_sym___stdcall] = ACTIONS(2647), - [anon_sym___fastcall] = ACTIONS(2647), - [anon_sym___thiscall] = ACTIONS(2647), - [anon_sym___vectorcall] = ACTIONS(2647), - [anon_sym_LBRACE] = ACTIONS(2649), - [anon_sym_LBRACK] = ACTIONS(2647), - [anon_sym_static] = ACTIONS(2647), - [anon_sym_register] = ACTIONS(2647), - [anon_sym_inline] = ACTIONS(2647), - [anon_sym_thread_local] = ACTIONS(2647), - [anon_sym_const] = ACTIONS(2647), - [anon_sym_volatile] = ACTIONS(2647), - [anon_sym_restrict] = ACTIONS(2647), - [anon_sym__Atomic] = ACTIONS(2647), - [anon_sym_mutable] = ACTIONS(2647), - [anon_sym_constexpr] = ACTIONS(2647), - [anon_sym_constinit] = ACTIONS(2647), - [anon_sym_consteval] = ACTIONS(2647), - [anon_sym_signed] = ACTIONS(2647), - [anon_sym_unsigned] = ACTIONS(2647), - [anon_sym_long] = ACTIONS(2647), - [anon_sym_short] = ACTIONS(2647), - [sym_primitive_type] = ACTIONS(2647), - [anon_sym_enum] = ACTIONS(2647), - [anon_sym_class] = ACTIONS(2647), - [anon_sym_struct] = ACTIONS(2647), - [anon_sym_union] = ACTIONS(2647), - [anon_sym_if] = ACTIONS(2647), - [anon_sym_switch] = ACTIONS(2647), - [anon_sym_case] = ACTIONS(2647), - [anon_sym_default] = ACTIONS(2647), - [anon_sym_while] = ACTIONS(2647), - [anon_sym_do] = ACTIONS(2647), - [anon_sym_for] = ACTIONS(2647), - [anon_sym_return] = ACTIONS(2647), - [anon_sym_break] = ACTIONS(2647), - [anon_sym_continue] = ACTIONS(2647), - [anon_sym_goto] = ACTIONS(2647), - [anon_sym_DASH_DASH] = ACTIONS(2649), - [anon_sym_PLUS_PLUS] = ACTIONS(2649), - [anon_sym_sizeof] = ACTIONS(2647), - [sym_number_literal] = ACTIONS(2649), - [anon_sym_L_SQUOTE] = ACTIONS(2649), - [anon_sym_u_SQUOTE] = ACTIONS(2649), - [anon_sym_U_SQUOTE] = ACTIONS(2649), - [anon_sym_u8_SQUOTE] = ACTIONS(2649), - [anon_sym_SQUOTE] = ACTIONS(2649), - [anon_sym_L_DQUOTE] = ACTIONS(2649), - [anon_sym_u_DQUOTE] = ACTIONS(2649), - [anon_sym_U_DQUOTE] = ACTIONS(2649), - [anon_sym_u8_DQUOTE] = ACTIONS(2649), - [anon_sym_DQUOTE] = ACTIONS(2649), - [sym_true] = ACTIONS(2647), - [sym_false] = ACTIONS(2647), - [sym_null] = ACTIONS(2647), + [617] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token2] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2647), - [anon_sym_decltype] = ACTIONS(2647), - [anon_sym_virtual] = ACTIONS(2647), - [anon_sym_explicit] = ACTIONS(2647), - [anon_sym_typename] = ACTIONS(2647), - [anon_sym_template] = ACTIONS(2647), - [anon_sym_operator] = ACTIONS(2647), - [anon_sym_try] = ACTIONS(2647), - [anon_sym_delete] = ACTIONS(2647), - [anon_sym_throw] = ACTIONS(2647), - [anon_sym_namespace] = ACTIONS(2647), - [anon_sym_using] = ACTIONS(2647), - [anon_sym_static_assert] = ACTIONS(2647), - [anon_sym_concept] = ACTIONS(2647), - [anon_sym_co_return] = ACTIONS(2647), - [anon_sym_co_yield] = ACTIONS(2647), - [anon_sym_co_await] = ACTIONS(2647), - [anon_sym_new] = ACTIONS(2647), - [anon_sym_requires] = ACTIONS(2647), - [sym_this] = ACTIONS(2647), - [sym_nullptr] = ACTIONS(2647), - [sym_raw_string_literal] = ACTIONS(2649), - }, - [997] = { - [ts_builtin_sym_end] = ACTIONS(2603), - [sym_identifier] = ACTIONS(2601), - [aux_sym_preproc_include_token1] = ACTIONS(2601), - [aux_sym_preproc_def_token1] = ACTIONS(2601), - [aux_sym_preproc_if_token1] = ACTIONS(2601), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2601), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2601), - [sym_preproc_directive] = ACTIONS(2601), - [anon_sym_LPAREN2] = ACTIONS(2603), - [anon_sym_BANG] = ACTIONS(2603), - [anon_sym_TILDE] = ACTIONS(2603), - [anon_sym_DASH] = ACTIONS(2601), - [anon_sym_PLUS] = ACTIONS(2601), - [anon_sym_STAR] = ACTIONS(2603), - [anon_sym_AMP_AMP] = ACTIONS(2603), - [anon_sym_AMP] = ACTIONS(2601), - [anon_sym_SEMI] = ACTIONS(2603), - [anon_sym_typedef] = ACTIONS(2601), - [anon_sym_extern] = ACTIONS(2601), - [anon_sym___attribute__] = ACTIONS(2601), - [anon_sym_COLON_COLON] = ACTIONS(2603), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2603), - [anon_sym___declspec] = ACTIONS(2601), - [anon_sym___based] = ACTIONS(2601), - [anon_sym___cdecl] = ACTIONS(2601), - [anon_sym___clrcall] = ACTIONS(2601), - [anon_sym___stdcall] = ACTIONS(2601), - [anon_sym___fastcall] = ACTIONS(2601), - [anon_sym___thiscall] = ACTIONS(2601), - [anon_sym___vectorcall] = ACTIONS(2601), - [anon_sym_LBRACE] = ACTIONS(2603), - [anon_sym_LBRACK] = ACTIONS(2601), - [anon_sym_static] = ACTIONS(2601), - [anon_sym_register] = ACTIONS(2601), - [anon_sym_inline] = ACTIONS(2601), - [anon_sym_thread_local] = ACTIONS(2601), - [anon_sym_const] = ACTIONS(2601), - [anon_sym_volatile] = ACTIONS(2601), - [anon_sym_restrict] = ACTIONS(2601), - [anon_sym__Atomic] = ACTIONS(2601), - [anon_sym_mutable] = ACTIONS(2601), - [anon_sym_constexpr] = ACTIONS(2601), - [anon_sym_constinit] = ACTIONS(2601), - [anon_sym_consteval] = ACTIONS(2601), - [anon_sym_signed] = ACTIONS(2601), - [anon_sym_unsigned] = ACTIONS(2601), - [anon_sym_long] = ACTIONS(2601), - [anon_sym_short] = ACTIONS(2601), - [sym_primitive_type] = ACTIONS(2601), - [anon_sym_enum] = ACTIONS(2601), - [anon_sym_class] = ACTIONS(2601), - [anon_sym_struct] = ACTIONS(2601), - [anon_sym_union] = ACTIONS(2601), - [anon_sym_if] = ACTIONS(2601), - [anon_sym_switch] = ACTIONS(2601), - [anon_sym_case] = ACTIONS(2601), - [anon_sym_default] = ACTIONS(2601), - [anon_sym_while] = ACTIONS(2601), - [anon_sym_do] = ACTIONS(2601), - [anon_sym_for] = ACTIONS(2601), - [anon_sym_return] = ACTIONS(2601), - [anon_sym_break] = ACTIONS(2601), - [anon_sym_continue] = ACTIONS(2601), - [anon_sym_goto] = ACTIONS(2601), - [anon_sym_DASH_DASH] = ACTIONS(2603), - [anon_sym_PLUS_PLUS] = ACTIONS(2603), - [anon_sym_sizeof] = ACTIONS(2601), - [sym_number_literal] = ACTIONS(2603), - [anon_sym_L_SQUOTE] = ACTIONS(2603), - [anon_sym_u_SQUOTE] = ACTIONS(2603), - [anon_sym_U_SQUOTE] = ACTIONS(2603), - [anon_sym_u8_SQUOTE] = ACTIONS(2603), - [anon_sym_SQUOTE] = ACTIONS(2603), - [anon_sym_L_DQUOTE] = ACTIONS(2603), - [anon_sym_u_DQUOTE] = ACTIONS(2603), - [anon_sym_U_DQUOTE] = ACTIONS(2603), - [anon_sym_u8_DQUOTE] = ACTIONS(2603), - [anon_sym_DQUOTE] = ACTIONS(2603), - [sym_true] = ACTIONS(2601), - [sym_false] = ACTIONS(2601), - [sym_null] = ACTIONS(2601), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2601), - [anon_sym_decltype] = ACTIONS(2601), - [anon_sym_virtual] = ACTIONS(2601), - [anon_sym_explicit] = ACTIONS(2601), - [anon_sym_typename] = ACTIONS(2601), - [anon_sym_template] = ACTIONS(2601), - [anon_sym_operator] = ACTIONS(2601), - [anon_sym_try] = ACTIONS(2601), - [anon_sym_delete] = ACTIONS(2601), - [anon_sym_throw] = ACTIONS(2601), - [anon_sym_namespace] = ACTIONS(2601), - [anon_sym_using] = ACTIONS(2601), - [anon_sym_static_assert] = ACTIONS(2601), - [anon_sym_concept] = ACTIONS(2601), - [anon_sym_co_return] = ACTIONS(2601), - [anon_sym_co_yield] = ACTIONS(2601), - [anon_sym_co_await] = ACTIONS(2601), - [anon_sym_new] = ACTIONS(2601), - [anon_sym_requires] = ACTIONS(2601), - [sym_this] = ACTIONS(2601), - [sym_nullptr] = ACTIONS(2601), - [sym_raw_string_literal] = ACTIONS(2603), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [998] = { - [ts_builtin_sym_end] = ACTIONS(2589), - [sym_identifier] = ACTIONS(2587), - [aux_sym_preproc_include_token1] = ACTIONS(2587), - [aux_sym_preproc_def_token1] = ACTIONS(2587), - [aux_sym_preproc_if_token1] = ACTIONS(2587), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2587), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2587), - [sym_preproc_directive] = ACTIONS(2587), - [anon_sym_LPAREN2] = ACTIONS(2589), - [anon_sym_BANG] = ACTIONS(2589), - [anon_sym_TILDE] = ACTIONS(2589), - [anon_sym_DASH] = ACTIONS(2587), - [anon_sym_PLUS] = ACTIONS(2587), - [anon_sym_STAR] = ACTIONS(2589), - [anon_sym_AMP_AMP] = ACTIONS(2589), - [anon_sym_AMP] = ACTIONS(2587), - [anon_sym_SEMI] = ACTIONS(2589), - [anon_sym_typedef] = ACTIONS(2587), - [anon_sym_extern] = ACTIONS(2587), - [anon_sym___attribute__] = ACTIONS(2587), - [anon_sym_COLON_COLON] = ACTIONS(2589), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2589), - [anon_sym___declspec] = ACTIONS(2587), - [anon_sym___based] = ACTIONS(2587), - [anon_sym___cdecl] = ACTIONS(2587), - [anon_sym___clrcall] = ACTIONS(2587), - [anon_sym___stdcall] = ACTIONS(2587), - [anon_sym___fastcall] = ACTIONS(2587), - [anon_sym___thiscall] = ACTIONS(2587), - [anon_sym___vectorcall] = ACTIONS(2587), - [anon_sym_LBRACE] = ACTIONS(2589), - [anon_sym_LBRACK] = ACTIONS(2587), - [anon_sym_static] = ACTIONS(2587), - [anon_sym_register] = ACTIONS(2587), - [anon_sym_inline] = ACTIONS(2587), - [anon_sym_thread_local] = ACTIONS(2587), - [anon_sym_const] = ACTIONS(2587), - [anon_sym_volatile] = ACTIONS(2587), - [anon_sym_restrict] = ACTIONS(2587), - [anon_sym__Atomic] = ACTIONS(2587), - [anon_sym_mutable] = ACTIONS(2587), - [anon_sym_constexpr] = ACTIONS(2587), - [anon_sym_constinit] = ACTIONS(2587), - [anon_sym_consteval] = ACTIONS(2587), - [anon_sym_signed] = ACTIONS(2587), - [anon_sym_unsigned] = ACTIONS(2587), - [anon_sym_long] = ACTIONS(2587), - [anon_sym_short] = ACTIONS(2587), - [sym_primitive_type] = ACTIONS(2587), - [anon_sym_enum] = ACTIONS(2587), - [anon_sym_class] = ACTIONS(2587), - [anon_sym_struct] = ACTIONS(2587), - [anon_sym_union] = ACTIONS(2587), - [anon_sym_if] = ACTIONS(2587), - [anon_sym_switch] = ACTIONS(2587), - [anon_sym_case] = ACTIONS(2587), - [anon_sym_default] = ACTIONS(2587), - [anon_sym_while] = ACTIONS(2587), - [anon_sym_do] = ACTIONS(2587), - [anon_sym_for] = ACTIONS(2587), - [anon_sym_return] = ACTIONS(2587), - [anon_sym_break] = ACTIONS(2587), - [anon_sym_continue] = ACTIONS(2587), - [anon_sym_goto] = ACTIONS(2587), - [anon_sym_DASH_DASH] = ACTIONS(2589), - [anon_sym_PLUS_PLUS] = ACTIONS(2589), - [anon_sym_sizeof] = ACTIONS(2587), - [sym_number_literal] = ACTIONS(2589), - [anon_sym_L_SQUOTE] = ACTIONS(2589), - [anon_sym_u_SQUOTE] = ACTIONS(2589), - [anon_sym_U_SQUOTE] = ACTIONS(2589), - [anon_sym_u8_SQUOTE] = ACTIONS(2589), - [anon_sym_SQUOTE] = ACTIONS(2589), - [anon_sym_L_DQUOTE] = ACTIONS(2589), - [anon_sym_u_DQUOTE] = ACTIONS(2589), - [anon_sym_U_DQUOTE] = ACTIONS(2589), - [anon_sym_u8_DQUOTE] = ACTIONS(2589), - [anon_sym_DQUOTE] = ACTIONS(2589), - [sym_true] = ACTIONS(2587), - [sym_false] = ACTIONS(2587), - [sym_null] = ACTIONS(2587), + [618] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token2] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2587), - [anon_sym_decltype] = ACTIONS(2587), - [anon_sym_virtual] = ACTIONS(2587), - [anon_sym_explicit] = ACTIONS(2587), - [anon_sym_typename] = ACTIONS(2587), - [anon_sym_template] = ACTIONS(2587), - [anon_sym_operator] = ACTIONS(2587), - [anon_sym_try] = ACTIONS(2587), - [anon_sym_delete] = ACTIONS(2587), - [anon_sym_throw] = ACTIONS(2587), - [anon_sym_namespace] = ACTIONS(2587), - [anon_sym_using] = ACTIONS(2587), - [anon_sym_static_assert] = ACTIONS(2587), - [anon_sym_concept] = ACTIONS(2587), - [anon_sym_co_return] = ACTIONS(2587), - [anon_sym_co_yield] = ACTIONS(2587), - [anon_sym_co_await] = ACTIONS(2587), - [anon_sym_new] = ACTIONS(2587), - [anon_sym_requires] = ACTIONS(2587), - [sym_this] = ACTIONS(2587), - [sym_nullptr] = ACTIONS(2587), - [sym_raw_string_literal] = ACTIONS(2589), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [999] = { - [sym_identifier] = ACTIONS(2643), - [aux_sym_preproc_include_token1] = ACTIONS(2643), - [aux_sym_preproc_def_token1] = ACTIONS(2643), - [aux_sym_preproc_if_token1] = ACTIONS(2643), - [aux_sym_preproc_if_token2] = ACTIONS(2643), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2643), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2643), - [sym_preproc_directive] = ACTIONS(2643), - [anon_sym_LPAREN2] = ACTIONS(2645), - [anon_sym_BANG] = ACTIONS(2645), - [anon_sym_TILDE] = ACTIONS(2645), - [anon_sym_DASH] = ACTIONS(2643), - [anon_sym_PLUS] = ACTIONS(2643), - [anon_sym_STAR] = ACTIONS(2645), - [anon_sym_AMP_AMP] = ACTIONS(2645), - [anon_sym_AMP] = ACTIONS(2643), - [anon_sym_SEMI] = ACTIONS(2645), - [anon_sym_typedef] = ACTIONS(2643), - [anon_sym_extern] = ACTIONS(2643), - [anon_sym___attribute__] = ACTIONS(2643), - [anon_sym_COLON_COLON] = ACTIONS(2645), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2645), - [anon_sym___declspec] = ACTIONS(2643), - [anon_sym___based] = ACTIONS(2643), - [anon_sym___cdecl] = ACTIONS(2643), - [anon_sym___clrcall] = ACTIONS(2643), - [anon_sym___stdcall] = ACTIONS(2643), - [anon_sym___fastcall] = ACTIONS(2643), - [anon_sym___thiscall] = ACTIONS(2643), - [anon_sym___vectorcall] = ACTIONS(2643), - [anon_sym_LBRACE] = ACTIONS(2645), - [anon_sym_LBRACK] = ACTIONS(2643), - [anon_sym_static] = ACTIONS(2643), - [anon_sym_register] = ACTIONS(2643), - [anon_sym_inline] = ACTIONS(2643), - [anon_sym_thread_local] = ACTIONS(2643), - [anon_sym_const] = ACTIONS(2643), - [anon_sym_volatile] = ACTIONS(2643), - [anon_sym_restrict] = ACTIONS(2643), - [anon_sym__Atomic] = ACTIONS(2643), - [anon_sym_mutable] = ACTIONS(2643), - [anon_sym_constexpr] = ACTIONS(2643), - [anon_sym_constinit] = ACTIONS(2643), - [anon_sym_consteval] = ACTIONS(2643), - [anon_sym_signed] = ACTIONS(2643), - [anon_sym_unsigned] = ACTIONS(2643), - [anon_sym_long] = ACTIONS(2643), - [anon_sym_short] = ACTIONS(2643), - [sym_primitive_type] = ACTIONS(2643), - [anon_sym_enum] = ACTIONS(2643), - [anon_sym_class] = ACTIONS(2643), - [anon_sym_struct] = ACTIONS(2643), - [anon_sym_union] = ACTIONS(2643), - [anon_sym_if] = ACTIONS(2643), - [anon_sym_switch] = ACTIONS(2643), - [anon_sym_case] = ACTIONS(2643), - [anon_sym_default] = ACTIONS(2643), - [anon_sym_while] = ACTIONS(2643), - [anon_sym_do] = ACTIONS(2643), - [anon_sym_for] = ACTIONS(2643), - [anon_sym_return] = ACTIONS(2643), - [anon_sym_break] = ACTIONS(2643), - [anon_sym_continue] = ACTIONS(2643), - [anon_sym_goto] = ACTIONS(2643), - [anon_sym_DASH_DASH] = ACTIONS(2645), - [anon_sym_PLUS_PLUS] = ACTIONS(2645), - [anon_sym_sizeof] = ACTIONS(2643), - [sym_number_literal] = ACTIONS(2645), - [anon_sym_L_SQUOTE] = ACTIONS(2645), - [anon_sym_u_SQUOTE] = ACTIONS(2645), - [anon_sym_U_SQUOTE] = ACTIONS(2645), - [anon_sym_u8_SQUOTE] = ACTIONS(2645), - [anon_sym_SQUOTE] = ACTIONS(2645), - [anon_sym_L_DQUOTE] = ACTIONS(2645), - [anon_sym_u_DQUOTE] = ACTIONS(2645), - [anon_sym_U_DQUOTE] = ACTIONS(2645), - [anon_sym_u8_DQUOTE] = ACTIONS(2645), - [anon_sym_DQUOTE] = ACTIONS(2645), - [sym_true] = ACTIONS(2643), - [sym_false] = ACTIONS(2643), - [sym_null] = ACTIONS(2643), + [619] = { + [ts_builtin_sym_end] = ACTIONS(2597), + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2643), - [anon_sym_decltype] = ACTIONS(2643), - [anon_sym_virtual] = ACTIONS(2643), - [anon_sym_explicit] = ACTIONS(2643), - [anon_sym_typename] = ACTIONS(2643), - [anon_sym_template] = ACTIONS(2643), - [anon_sym_operator] = ACTIONS(2643), - [anon_sym_try] = ACTIONS(2643), - [anon_sym_delete] = ACTIONS(2643), - [anon_sym_throw] = ACTIONS(2643), - [anon_sym_namespace] = ACTIONS(2643), - [anon_sym_using] = ACTIONS(2643), - [anon_sym_static_assert] = ACTIONS(2643), - [anon_sym_concept] = ACTIONS(2643), - [anon_sym_co_return] = ACTIONS(2643), - [anon_sym_co_yield] = ACTIONS(2643), - [anon_sym_co_await] = ACTIONS(2643), - [anon_sym_new] = ACTIONS(2643), - [anon_sym_requires] = ACTIONS(2643), - [sym_this] = ACTIONS(2643), - [sym_nullptr] = ACTIONS(2643), - [sym_raw_string_literal] = ACTIONS(2645), - }, - [1000] = { - [ts_builtin_sym_end] = ACTIONS(2623), - [sym_identifier] = ACTIONS(2621), - [aux_sym_preproc_include_token1] = ACTIONS(2621), - [aux_sym_preproc_def_token1] = ACTIONS(2621), - [aux_sym_preproc_if_token1] = ACTIONS(2621), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2621), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2621), - [sym_preproc_directive] = ACTIONS(2621), - [anon_sym_LPAREN2] = ACTIONS(2623), - [anon_sym_BANG] = ACTIONS(2623), - [anon_sym_TILDE] = ACTIONS(2623), - [anon_sym_DASH] = ACTIONS(2621), - [anon_sym_PLUS] = ACTIONS(2621), - [anon_sym_STAR] = ACTIONS(2623), - [anon_sym_AMP_AMP] = ACTIONS(2623), - [anon_sym_AMP] = ACTIONS(2621), - [anon_sym_SEMI] = ACTIONS(2623), - [anon_sym_typedef] = ACTIONS(2621), - [anon_sym_extern] = ACTIONS(2621), - [anon_sym___attribute__] = ACTIONS(2621), - [anon_sym_COLON_COLON] = ACTIONS(2623), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2623), - [anon_sym___declspec] = ACTIONS(2621), - [anon_sym___based] = ACTIONS(2621), - [anon_sym___cdecl] = ACTIONS(2621), - [anon_sym___clrcall] = ACTIONS(2621), - [anon_sym___stdcall] = ACTIONS(2621), - [anon_sym___fastcall] = ACTIONS(2621), - [anon_sym___thiscall] = ACTIONS(2621), - [anon_sym___vectorcall] = ACTIONS(2621), - [anon_sym_LBRACE] = ACTIONS(2623), - [anon_sym_LBRACK] = ACTIONS(2621), - [anon_sym_static] = ACTIONS(2621), - [anon_sym_register] = ACTIONS(2621), - [anon_sym_inline] = ACTIONS(2621), - [anon_sym_thread_local] = ACTIONS(2621), - [anon_sym_const] = ACTIONS(2621), - [anon_sym_volatile] = ACTIONS(2621), - [anon_sym_restrict] = ACTIONS(2621), - [anon_sym__Atomic] = ACTIONS(2621), - [anon_sym_mutable] = ACTIONS(2621), - [anon_sym_constexpr] = ACTIONS(2621), - [anon_sym_constinit] = ACTIONS(2621), - [anon_sym_consteval] = ACTIONS(2621), - [anon_sym_signed] = ACTIONS(2621), - [anon_sym_unsigned] = ACTIONS(2621), - [anon_sym_long] = ACTIONS(2621), - [anon_sym_short] = ACTIONS(2621), - [sym_primitive_type] = ACTIONS(2621), - [anon_sym_enum] = ACTIONS(2621), - [anon_sym_class] = ACTIONS(2621), - [anon_sym_struct] = ACTIONS(2621), - [anon_sym_union] = ACTIONS(2621), - [anon_sym_if] = ACTIONS(2621), - [anon_sym_switch] = ACTIONS(2621), - [anon_sym_case] = ACTIONS(2621), - [anon_sym_default] = ACTIONS(2621), - [anon_sym_while] = ACTIONS(2621), - [anon_sym_do] = ACTIONS(2621), - [anon_sym_for] = ACTIONS(2621), - [anon_sym_return] = ACTIONS(2621), - [anon_sym_break] = ACTIONS(2621), - [anon_sym_continue] = ACTIONS(2621), - [anon_sym_goto] = ACTIONS(2621), - [anon_sym_DASH_DASH] = ACTIONS(2623), - [anon_sym_PLUS_PLUS] = ACTIONS(2623), - [anon_sym_sizeof] = ACTIONS(2621), - [sym_number_literal] = ACTIONS(2623), - [anon_sym_L_SQUOTE] = ACTIONS(2623), - [anon_sym_u_SQUOTE] = ACTIONS(2623), - [anon_sym_U_SQUOTE] = ACTIONS(2623), - [anon_sym_u8_SQUOTE] = ACTIONS(2623), - [anon_sym_SQUOTE] = ACTIONS(2623), - [anon_sym_L_DQUOTE] = ACTIONS(2623), - [anon_sym_u_DQUOTE] = ACTIONS(2623), - [anon_sym_U_DQUOTE] = ACTIONS(2623), - [anon_sym_u8_DQUOTE] = ACTIONS(2623), - [anon_sym_DQUOTE] = ACTIONS(2623), - [sym_true] = ACTIONS(2621), - [sym_false] = ACTIONS(2621), - [sym_null] = ACTIONS(2621), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2621), - [anon_sym_decltype] = ACTIONS(2621), - [anon_sym_virtual] = ACTIONS(2621), - [anon_sym_explicit] = ACTIONS(2621), - [anon_sym_typename] = ACTIONS(2621), - [anon_sym_template] = ACTIONS(2621), - [anon_sym_operator] = ACTIONS(2621), - [anon_sym_try] = ACTIONS(2621), - [anon_sym_delete] = ACTIONS(2621), - [anon_sym_throw] = ACTIONS(2621), - [anon_sym_namespace] = ACTIONS(2621), - [anon_sym_using] = ACTIONS(2621), - [anon_sym_static_assert] = ACTIONS(2621), - [anon_sym_concept] = ACTIONS(2621), - [anon_sym_co_return] = ACTIONS(2621), - [anon_sym_co_yield] = ACTIONS(2621), - [anon_sym_co_await] = ACTIONS(2621), - [anon_sym_new] = ACTIONS(2621), - [anon_sym_requires] = ACTIONS(2621), - [sym_this] = ACTIONS(2621), - [sym_nullptr] = ACTIONS(2621), - [sym_raw_string_literal] = ACTIONS(2623), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1001] = { - [ts_builtin_sym_end] = ACTIONS(2735), - [sym_identifier] = ACTIONS(2733), - [aux_sym_preproc_include_token1] = ACTIONS(2733), - [aux_sym_preproc_def_token1] = ACTIONS(2733), - [aux_sym_preproc_if_token1] = ACTIONS(2733), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2733), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2733), - [sym_preproc_directive] = ACTIONS(2733), - [anon_sym_LPAREN2] = ACTIONS(2735), - [anon_sym_BANG] = ACTIONS(2735), - [anon_sym_TILDE] = ACTIONS(2735), - [anon_sym_DASH] = ACTIONS(2733), - [anon_sym_PLUS] = ACTIONS(2733), - [anon_sym_STAR] = ACTIONS(2735), - [anon_sym_AMP_AMP] = ACTIONS(2735), - [anon_sym_AMP] = ACTIONS(2733), - [anon_sym_SEMI] = ACTIONS(2735), - [anon_sym_typedef] = ACTIONS(2733), - [anon_sym_extern] = ACTIONS(2733), - [anon_sym___attribute__] = ACTIONS(2733), - [anon_sym_COLON_COLON] = ACTIONS(2735), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2735), - [anon_sym___declspec] = ACTIONS(2733), - [anon_sym___based] = ACTIONS(2733), - [anon_sym___cdecl] = ACTIONS(2733), - [anon_sym___clrcall] = ACTIONS(2733), - [anon_sym___stdcall] = ACTIONS(2733), - [anon_sym___fastcall] = ACTIONS(2733), - [anon_sym___thiscall] = ACTIONS(2733), - [anon_sym___vectorcall] = ACTIONS(2733), - [anon_sym_LBRACE] = ACTIONS(2735), - [anon_sym_LBRACK] = ACTIONS(2733), - [anon_sym_static] = ACTIONS(2733), - [anon_sym_register] = ACTIONS(2733), - [anon_sym_inline] = ACTIONS(2733), - [anon_sym_thread_local] = ACTIONS(2733), - [anon_sym_const] = ACTIONS(2733), - [anon_sym_volatile] = ACTIONS(2733), - [anon_sym_restrict] = ACTIONS(2733), - [anon_sym__Atomic] = ACTIONS(2733), - [anon_sym_mutable] = ACTIONS(2733), - [anon_sym_constexpr] = ACTIONS(2733), - [anon_sym_constinit] = ACTIONS(2733), - [anon_sym_consteval] = ACTIONS(2733), - [anon_sym_signed] = ACTIONS(2733), - [anon_sym_unsigned] = ACTIONS(2733), - [anon_sym_long] = ACTIONS(2733), - [anon_sym_short] = ACTIONS(2733), - [sym_primitive_type] = ACTIONS(2733), - [anon_sym_enum] = ACTIONS(2733), - [anon_sym_class] = ACTIONS(2733), - [anon_sym_struct] = ACTIONS(2733), - [anon_sym_union] = ACTIONS(2733), - [anon_sym_if] = ACTIONS(2733), - [anon_sym_switch] = ACTIONS(2733), - [anon_sym_case] = ACTIONS(2733), - [anon_sym_default] = ACTIONS(2733), - [anon_sym_while] = ACTIONS(2733), - [anon_sym_do] = ACTIONS(2733), - [anon_sym_for] = ACTIONS(2733), - [anon_sym_return] = ACTIONS(2733), - [anon_sym_break] = ACTIONS(2733), - [anon_sym_continue] = ACTIONS(2733), - [anon_sym_goto] = ACTIONS(2733), - [anon_sym_DASH_DASH] = ACTIONS(2735), - [anon_sym_PLUS_PLUS] = ACTIONS(2735), - [anon_sym_sizeof] = ACTIONS(2733), - [sym_number_literal] = ACTIONS(2735), - [anon_sym_L_SQUOTE] = ACTIONS(2735), - [anon_sym_u_SQUOTE] = ACTIONS(2735), - [anon_sym_U_SQUOTE] = ACTIONS(2735), - [anon_sym_u8_SQUOTE] = ACTIONS(2735), - [anon_sym_SQUOTE] = ACTIONS(2735), - [anon_sym_L_DQUOTE] = ACTIONS(2735), - [anon_sym_u_DQUOTE] = ACTIONS(2735), - [anon_sym_U_DQUOTE] = ACTIONS(2735), - [anon_sym_u8_DQUOTE] = ACTIONS(2735), - [anon_sym_DQUOTE] = ACTIONS(2735), - [sym_true] = ACTIONS(2733), - [sym_false] = ACTIONS(2733), - [sym_null] = ACTIONS(2733), + [620] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token2] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2733), - [anon_sym_decltype] = ACTIONS(2733), - [anon_sym_virtual] = ACTIONS(2733), - [anon_sym_explicit] = ACTIONS(2733), - [anon_sym_typename] = ACTIONS(2733), - [anon_sym_template] = ACTIONS(2733), - [anon_sym_operator] = ACTIONS(2733), - [anon_sym_try] = ACTIONS(2733), - [anon_sym_delete] = ACTIONS(2733), - [anon_sym_throw] = ACTIONS(2733), - [anon_sym_namespace] = ACTIONS(2733), - [anon_sym_using] = ACTIONS(2733), - [anon_sym_static_assert] = ACTIONS(2733), - [anon_sym_concept] = ACTIONS(2733), - [anon_sym_co_return] = ACTIONS(2733), - [anon_sym_co_yield] = ACTIONS(2733), - [anon_sym_co_await] = ACTIONS(2733), - [anon_sym_new] = ACTIONS(2733), - [anon_sym_requires] = ACTIONS(2733), - [sym_this] = ACTIONS(2733), - [sym_nullptr] = ACTIONS(2733), - [sym_raw_string_literal] = ACTIONS(2735), - }, - [1002] = { - [ts_builtin_sym_end] = ACTIONS(2671), - [sym_identifier] = ACTIONS(2669), - [aux_sym_preproc_include_token1] = ACTIONS(2669), - [aux_sym_preproc_def_token1] = ACTIONS(2669), - [aux_sym_preproc_if_token1] = ACTIONS(2669), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2669), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2669), - [sym_preproc_directive] = ACTIONS(2669), - [anon_sym_LPAREN2] = ACTIONS(2671), - [anon_sym_BANG] = ACTIONS(2671), - [anon_sym_TILDE] = ACTIONS(2671), - [anon_sym_DASH] = ACTIONS(2669), - [anon_sym_PLUS] = ACTIONS(2669), - [anon_sym_STAR] = ACTIONS(2671), - [anon_sym_AMP_AMP] = ACTIONS(2671), - [anon_sym_AMP] = ACTIONS(2669), - [anon_sym_SEMI] = ACTIONS(2671), - [anon_sym_typedef] = ACTIONS(2669), - [anon_sym_extern] = ACTIONS(2669), - [anon_sym___attribute__] = ACTIONS(2669), - [anon_sym_COLON_COLON] = ACTIONS(2671), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2671), - [anon_sym___declspec] = ACTIONS(2669), - [anon_sym___based] = ACTIONS(2669), - [anon_sym___cdecl] = ACTIONS(2669), - [anon_sym___clrcall] = ACTIONS(2669), - [anon_sym___stdcall] = ACTIONS(2669), - [anon_sym___fastcall] = ACTIONS(2669), - [anon_sym___thiscall] = ACTIONS(2669), - [anon_sym___vectorcall] = ACTIONS(2669), - [anon_sym_LBRACE] = ACTIONS(2671), - [anon_sym_LBRACK] = ACTIONS(2669), - [anon_sym_static] = ACTIONS(2669), - [anon_sym_register] = ACTIONS(2669), - [anon_sym_inline] = ACTIONS(2669), - [anon_sym_thread_local] = ACTIONS(2669), - [anon_sym_const] = ACTIONS(2669), - [anon_sym_volatile] = ACTIONS(2669), - [anon_sym_restrict] = ACTIONS(2669), - [anon_sym__Atomic] = ACTIONS(2669), - [anon_sym_mutable] = ACTIONS(2669), - [anon_sym_constexpr] = ACTIONS(2669), - [anon_sym_constinit] = ACTIONS(2669), - [anon_sym_consteval] = ACTIONS(2669), - [anon_sym_signed] = ACTIONS(2669), - [anon_sym_unsigned] = ACTIONS(2669), - [anon_sym_long] = ACTIONS(2669), - [anon_sym_short] = ACTIONS(2669), - [sym_primitive_type] = ACTIONS(2669), - [anon_sym_enum] = ACTIONS(2669), - [anon_sym_class] = ACTIONS(2669), - [anon_sym_struct] = ACTIONS(2669), - [anon_sym_union] = ACTIONS(2669), - [anon_sym_if] = ACTIONS(2669), - [anon_sym_switch] = ACTIONS(2669), - [anon_sym_case] = ACTIONS(2669), - [anon_sym_default] = ACTIONS(2669), - [anon_sym_while] = ACTIONS(2669), - [anon_sym_do] = ACTIONS(2669), - [anon_sym_for] = ACTIONS(2669), - [anon_sym_return] = ACTIONS(2669), - [anon_sym_break] = ACTIONS(2669), - [anon_sym_continue] = ACTIONS(2669), - [anon_sym_goto] = ACTIONS(2669), - [anon_sym_DASH_DASH] = ACTIONS(2671), - [anon_sym_PLUS_PLUS] = ACTIONS(2671), - [anon_sym_sizeof] = ACTIONS(2669), - [sym_number_literal] = ACTIONS(2671), - [anon_sym_L_SQUOTE] = ACTIONS(2671), - [anon_sym_u_SQUOTE] = ACTIONS(2671), - [anon_sym_U_SQUOTE] = ACTIONS(2671), - [anon_sym_u8_SQUOTE] = ACTIONS(2671), - [anon_sym_SQUOTE] = ACTIONS(2671), - [anon_sym_L_DQUOTE] = ACTIONS(2671), - [anon_sym_u_DQUOTE] = ACTIONS(2671), - [anon_sym_U_DQUOTE] = ACTIONS(2671), - [anon_sym_u8_DQUOTE] = ACTIONS(2671), - [anon_sym_DQUOTE] = ACTIONS(2671), - [sym_true] = ACTIONS(2669), - [sym_false] = ACTIONS(2669), - [sym_null] = ACTIONS(2669), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2669), - [anon_sym_decltype] = ACTIONS(2669), - [anon_sym_virtual] = ACTIONS(2669), - [anon_sym_explicit] = ACTIONS(2669), - [anon_sym_typename] = ACTIONS(2669), - [anon_sym_template] = ACTIONS(2669), - [anon_sym_operator] = ACTIONS(2669), - [anon_sym_try] = ACTIONS(2669), - [anon_sym_delete] = ACTIONS(2669), - [anon_sym_throw] = ACTIONS(2669), - [anon_sym_namespace] = ACTIONS(2669), - [anon_sym_using] = ACTIONS(2669), - [anon_sym_static_assert] = ACTIONS(2669), - [anon_sym_concept] = ACTIONS(2669), - [anon_sym_co_return] = ACTIONS(2669), - [anon_sym_co_yield] = ACTIONS(2669), - [anon_sym_co_await] = ACTIONS(2669), - [anon_sym_new] = ACTIONS(2669), - [anon_sym_requires] = ACTIONS(2669), - [sym_this] = ACTIONS(2669), - [sym_nullptr] = ACTIONS(2669), - [sym_raw_string_literal] = ACTIONS(2671), - }, - [1003] = { - [ts_builtin_sym_end] = ACTIONS(2675), - [sym_identifier] = ACTIONS(2673), - [aux_sym_preproc_include_token1] = ACTIONS(2673), - [aux_sym_preproc_def_token1] = ACTIONS(2673), - [aux_sym_preproc_if_token1] = ACTIONS(2673), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2673), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2673), - [sym_preproc_directive] = ACTIONS(2673), - [anon_sym_LPAREN2] = ACTIONS(2675), - [anon_sym_BANG] = ACTIONS(2675), - [anon_sym_TILDE] = ACTIONS(2675), - [anon_sym_DASH] = ACTIONS(2673), - [anon_sym_PLUS] = ACTIONS(2673), - [anon_sym_STAR] = ACTIONS(2675), - [anon_sym_AMP_AMP] = ACTIONS(2675), - [anon_sym_AMP] = ACTIONS(2673), - [anon_sym_SEMI] = ACTIONS(2675), - [anon_sym_typedef] = ACTIONS(2673), - [anon_sym_extern] = ACTIONS(2673), - [anon_sym___attribute__] = ACTIONS(2673), - [anon_sym_COLON_COLON] = ACTIONS(2675), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2675), - [anon_sym___declspec] = ACTIONS(2673), - [anon_sym___based] = ACTIONS(2673), - [anon_sym___cdecl] = ACTIONS(2673), - [anon_sym___clrcall] = ACTIONS(2673), - [anon_sym___stdcall] = ACTIONS(2673), - [anon_sym___fastcall] = ACTIONS(2673), - [anon_sym___thiscall] = ACTIONS(2673), - [anon_sym___vectorcall] = ACTIONS(2673), - [anon_sym_LBRACE] = ACTIONS(2675), - [anon_sym_LBRACK] = ACTIONS(2673), - [anon_sym_static] = ACTIONS(2673), - [anon_sym_register] = ACTIONS(2673), - [anon_sym_inline] = ACTIONS(2673), - [anon_sym_thread_local] = ACTIONS(2673), - [anon_sym_const] = ACTIONS(2673), - [anon_sym_volatile] = ACTIONS(2673), - [anon_sym_restrict] = ACTIONS(2673), - [anon_sym__Atomic] = ACTIONS(2673), - [anon_sym_mutable] = ACTIONS(2673), - [anon_sym_constexpr] = ACTIONS(2673), - [anon_sym_constinit] = ACTIONS(2673), - [anon_sym_consteval] = ACTIONS(2673), - [anon_sym_signed] = ACTIONS(2673), - [anon_sym_unsigned] = ACTIONS(2673), - [anon_sym_long] = ACTIONS(2673), - [anon_sym_short] = ACTIONS(2673), - [sym_primitive_type] = ACTIONS(2673), - [anon_sym_enum] = ACTIONS(2673), - [anon_sym_class] = ACTIONS(2673), - [anon_sym_struct] = ACTIONS(2673), - [anon_sym_union] = ACTIONS(2673), - [anon_sym_if] = ACTIONS(2673), - [anon_sym_switch] = ACTIONS(2673), - [anon_sym_case] = ACTIONS(2673), - [anon_sym_default] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2673), - [anon_sym_do] = ACTIONS(2673), - [anon_sym_for] = ACTIONS(2673), - [anon_sym_return] = ACTIONS(2673), - [anon_sym_break] = ACTIONS(2673), - [anon_sym_continue] = ACTIONS(2673), - [anon_sym_goto] = ACTIONS(2673), - [anon_sym_DASH_DASH] = ACTIONS(2675), - [anon_sym_PLUS_PLUS] = ACTIONS(2675), - [anon_sym_sizeof] = ACTIONS(2673), - [sym_number_literal] = ACTIONS(2675), - [anon_sym_L_SQUOTE] = ACTIONS(2675), - [anon_sym_u_SQUOTE] = ACTIONS(2675), - [anon_sym_U_SQUOTE] = ACTIONS(2675), - [anon_sym_u8_SQUOTE] = ACTIONS(2675), - [anon_sym_SQUOTE] = ACTIONS(2675), - [anon_sym_L_DQUOTE] = ACTIONS(2675), - [anon_sym_u_DQUOTE] = ACTIONS(2675), - [anon_sym_U_DQUOTE] = ACTIONS(2675), - [anon_sym_u8_DQUOTE] = ACTIONS(2675), - [anon_sym_DQUOTE] = ACTIONS(2675), - [sym_true] = ACTIONS(2673), - [sym_false] = ACTIONS(2673), - [sym_null] = ACTIONS(2673), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2673), - [anon_sym_decltype] = ACTIONS(2673), - [anon_sym_virtual] = ACTIONS(2673), - [anon_sym_explicit] = ACTIONS(2673), - [anon_sym_typename] = ACTIONS(2673), - [anon_sym_template] = ACTIONS(2673), - [anon_sym_operator] = ACTIONS(2673), - [anon_sym_try] = ACTIONS(2673), - [anon_sym_delete] = ACTIONS(2673), - [anon_sym_throw] = ACTIONS(2673), - [anon_sym_namespace] = ACTIONS(2673), - [anon_sym_using] = ACTIONS(2673), - [anon_sym_static_assert] = ACTIONS(2673), - [anon_sym_concept] = ACTIONS(2673), - [anon_sym_co_return] = ACTIONS(2673), - [anon_sym_co_yield] = ACTIONS(2673), - [anon_sym_co_await] = ACTIONS(2673), - [anon_sym_new] = ACTIONS(2673), - [anon_sym_requires] = ACTIONS(2673), - [sym_this] = ACTIONS(2673), - [sym_nullptr] = ACTIONS(2673), - [sym_raw_string_literal] = ACTIONS(2675), - }, - [1004] = { - [sym_identifier] = ACTIONS(2705), - [aux_sym_preproc_include_token1] = ACTIONS(2705), - [aux_sym_preproc_def_token1] = ACTIONS(2705), - [aux_sym_preproc_if_token1] = ACTIONS(2705), - [aux_sym_preproc_if_token2] = ACTIONS(2705), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2705), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2705), - [sym_preproc_directive] = ACTIONS(2705), - [anon_sym_LPAREN2] = ACTIONS(2707), - [anon_sym_BANG] = ACTIONS(2707), - [anon_sym_TILDE] = ACTIONS(2707), - [anon_sym_DASH] = ACTIONS(2705), - [anon_sym_PLUS] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2707), - [anon_sym_AMP_AMP] = ACTIONS(2707), - [anon_sym_AMP] = ACTIONS(2705), - [anon_sym_SEMI] = ACTIONS(2707), - [anon_sym_typedef] = ACTIONS(2705), - [anon_sym_extern] = ACTIONS(2705), - [anon_sym___attribute__] = ACTIONS(2705), - [anon_sym_COLON_COLON] = ACTIONS(2707), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2707), - [anon_sym___declspec] = ACTIONS(2705), - [anon_sym___based] = ACTIONS(2705), - [anon_sym___cdecl] = ACTIONS(2705), - [anon_sym___clrcall] = ACTIONS(2705), - [anon_sym___stdcall] = ACTIONS(2705), - [anon_sym___fastcall] = ACTIONS(2705), - [anon_sym___thiscall] = ACTIONS(2705), - [anon_sym___vectorcall] = ACTIONS(2705), - [anon_sym_LBRACE] = ACTIONS(2707), - [anon_sym_LBRACK] = ACTIONS(2705), - [anon_sym_static] = ACTIONS(2705), - [anon_sym_register] = ACTIONS(2705), - [anon_sym_inline] = ACTIONS(2705), - [anon_sym_thread_local] = ACTIONS(2705), - [anon_sym_const] = ACTIONS(2705), - [anon_sym_volatile] = ACTIONS(2705), - [anon_sym_restrict] = ACTIONS(2705), - [anon_sym__Atomic] = ACTIONS(2705), - [anon_sym_mutable] = ACTIONS(2705), - [anon_sym_constexpr] = ACTIONS(2705), - [anon_sym_constinit] = ACTIONS(2705), - [anon_sym_consteval] = ACTIONS(2705), - [anon_sym_signed] = ACTIONS(2705), - [anon_sym_unsigned] = ACTIONS(2705), - [anon_sym_long] = ACTIONS(2705), - [anon_sym_short] = ACTIONS(2705), - [sym_primitive_type] = ACTIONS(2705), - [anon_sym_enum] = ACTIONS(2705), - [anon_sym_class] = ACTIONS(2705), - [anon_sym_struct] = ACTIONS(2705), - [anon_sym_union] = ACTIONS(2705), - [anon_sym_if] = ACTIONS(2705), - [anon_sym_switch] = ACTIONS(2705), - [anon_sym_case] = ACTIONS(2705), - [anon_sym_default] = ACTIONS(2705), - [anon_sym_while] = ACTIONS(2705), - [anon_sym_do] = ACTIONS(2705), - [anon_sym_for] = ACTIONS(2705), - [anon_sym_return] = ACTIONS(2705), - [anon_sym_break] = ACTIONS(2705), - [anon_sym_continue] = ACTIONS(2705), - [anon_sym_goto] = ACTIONS(2705), - [anon_sym_DASH_DASH] = ACTIONS(2707), - [anon_sym_PLUS_PLUS] = ACTIONS(2707), - [anon_sym_sizeof] = ACTIONS(2705), - [sym_number_literal] = ACTIONS(2707), - [anon_sym_L_SQUOTE] = ACTIONS(2707), - [anon_sym_u_SQUOTE] = ACTIONS(2707), - [anon_sym_U_SQUOTE] = ACTIONS(2707), - [anon_sym_u8_SQUOTE] = ACTIONS(2707), - [anon_sym_SQUOTE] = ACTIONS(2707), - [anon_sym_L_DQUOTE] = ACTIONS(2707), - [anon_sym_u_DQUOTE] = ACTIONS(2707), - [anon_sym_U_DQUOTE] = ACTIONS(2707), - [anon_sym_u8_DQUOTE] = ACTIONS(2707), - [anon_sym_DQUOTE] = ACTIONS(2707), - [sym_true] = ACTIONS(2705), - [sym_false] = ACTIONS(2705), - [sym_null] = ACTIONS(2705), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2705), - [anon_sym_decltype] = ACTIONS(2705), - [anon_sym_virtual] = ACTIONS(2705), - [anon_sym_explicit] = ACTIONS(2705), - [anon_sym_typename] = ACTIONS(2705), - [anon_sym_template] = ACTIONS(2705), - [anon_sym_operator] = ACTIONS(2705), - [anon_sym_try] = ACTIONS(2705), - [anon_sym_delete] = ACTIONS(2705), - [anon_sym_throw] = ACTIONS(2705), - [anon_sym_namespace] = ACTIONS(2705), - [anon_sym_using] = ACTIONS(2705), - [anon_sym_static_assert] = ACTIONS(2705), - [anon_sym_concept] = ACTIONS(2705), - [anon_sym_co_return] = ACTIONS(2705), - [anon_sym_co_yield] = ACTIONS(2705), - [anon_sym_co_await] = ACTIONS(2705), - [anon_sym_new] = ACTIONS(2705), - [anon_sym_requires] = ACTIONS(2705), - [sym_this] = ACTIONS(2705), - [sym_nullptr] = ACTIONS(2705), - [sym_raw_string_literal] = ACTIONS(2707), - }, - [1005] = { - [ts_builtin_sym_end] = ACTIONS(2679), - [sym_identifier] = ACTIONS(2677), - [aux_sym_preproc_include_token1] = ACTIONS(2677), - [aux_sym_preproc_def_token1] = ACTIONS(2677), - [aux_sym_preproc_if_token1] = ACTIONS(2677), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2677), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2677), - [sym_preproc_directive] = ACTIONS(2677), - [anon_sym_LPAREN2] = ACTIONS(2679), - [anon_sym_BANG] = ACTIONS(2679), - [anon_sym_TILDE] = ACTIONS(2679), - [anon_sym_DASH] = ACTIONS(2677), - [anon_sym_PLUS] = ACTIONS(2677), - [anon_sym_STAR] = ACTIONS(2679), - [anon_sym_AMP_AMP] = ACTIONS(2679), - [anon_sym_AMP] = ACTIONS(2677), - [anon_sym_SEMI] = ACTIONS(2679), - [anon_sym_typedef] = ACTIONS(2677), - [anon_sym_extern] = ACTIONS(2677), - [anon_sym___attribute__] = ACTIONS(2677), - [anon_sym_COLON_COLON] = ACTIONS(2679), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2679), - [anon_sym___declspec] = ACTIONS(2677), - [anon_sym___based] = ACTIONS(2677), - [anon_sym___cdecl] = ACTIONS(2677), - [anon_sym___clrcall] = ACTIONS(2677), - [anon_sym___stdcall] = ACTIONS(2677), - [anon_sym___fastcall] = ACTIONS(2677), - [anon_sym___thiscall] = ACTIONS(2677), - [anon_sym___vectorcall] = ACTIONS(2677), - [anon_sym_LBRACE] = ACTIONS(2679), - [anon_sym_LBRACK] = ACTIONS(2677), - [anon_sym_static] = ACTIONS(2677), - [anon_sym_register] = ACTIONS(2677), - [anon_sym_inline] = ACTIONS(2677), - [anon_sym_thread_local] = ACTIONS(2677), - [anon_sym_const] = ACTIONS(2677), - [anon_sym_volatile] = ACTIONS(2677), - [anon_sym_restrict] = ACTIONS(2677), - [anon_sym__Atomic] = ACTIONS(2677), - [anon_sym_mutable] = ACTIONS(2677), - [anon_sym_constexpr] = ACTIONS(2677), - [anon_sym_constinit] = ACTIONS(2677), - [anon_sym_consteval] = ACTIONS(2677), - [anon_sym_signed] = ACTIONS(2677), - [anon_sym_unsigned] = ACTIONS(2677), - [anon_sym_long] = ACTIONS(2677), - [anon_sym_short] = ACTIONS(2677), - [sym_primitive_type] = ACTIONS(2677), - [anon_sym_enum] = ACTIONS(2677), - [anon_sym_class] = ACTIONS(2677), - [anon_sym_struct] = ACTIONS(2677), - [anon_sym_union] = ACTIONS(2677), - [anon_sym_if] = ACTIONS(2677), - [anon_sym_switch] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2677), - [anon_sym_default] = ACTIONS(2677), - [anon_sym_while] = ACTIONS(2677), - [anon_sym_do] = ACTIONS(2677), - [anon_sym_for] = ACTIONS(2677), - [anon_sym_return] = ACTIONS(2677), - [anon_sym_break] = ACTIONS(2677), - [anon_sym_continue] = ACTIONS(2677), - [anon_sym_goto] = ACTIONS(2677), - [anon_sym_DASH_DASH] = ACTIONS(2679), - [anon_sym_PLUS_PLUS] = ACTIONS(2679), - [anon_sym_sizeof] = ACTIONS(2677), - [sym_number_literal] = ACTIONS(2679), - [anon_sym_L_SQUOTE] = ACTIONS(2679), - [anon_sym_u_SQUOTE] = ACTIONS(2679), - [anon_sym_U_SQUOTE] = ACTIONS(2679), - [anon_sym_u8_SQUOTE] = ACTIONS(2679), - [anon_sym_SQUOTE] = ACTIONS(2679), - [anon_sym_L_DQUOTE] = ACTIONS(2679), - [anon_sym_u_DQUOTE] = ACTIONS(2679), - [anon_sym_U_DQUOTE] = ACTIONS(2679), - [anon_sym_u8_DQUOTE] = ACTIONS(2679), - [anon_sym_DQUOTE] = ACTIONS(2679), - [sym_true] = ACTIONS(2677), - [sym_false] = ACTIONS(2677), - [sym_null] = ACTIONS(2677), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2677), - [anon_sym_decltype] = ACTIONS(2677), - [anon_sym_virtual] = ACTIONS(2677), - [anon_sym_explicit] = ACTIONS(2677), - [anon_sym_typename] = ACTIONS(2677), - [anon_sym_template] = ACTIONS(2677), - [anon_sym_operator] = ACTIONS(2677), - [anon_sym_try] = ACTIONS(2677), - [anon_sym_delete] = ACTIONS(2677), - [anon_sym_throw] = ACTIONS(2677), - [anon_sym_namespace] = ACTIONS(2677), - [anon_sym_using] = ACTIONS(2677), - [anon_sym_static_assert] = ACTIONS(2677), - [anon_sym_concept] = ACTIONS(2677), - [anon_sym_co_return] = ACTIONS(2677), - [anon_sym_co_yield] = ACTIONS(2677), - [anon_sym_co_await] = ACTIONS(2677), - [anon_sym_new] = ACTIONS(2677), - [anon_sym_requires] = ACTIONS(2677), - [sym_this] = ACTIONS(2677), - [sym_nullptr] = ACTIONS(2677), - [sym_raw_string_literal] = ACTIONS(2679), - }, - [1006] = { - [ts_builtin_sym_end] = ACTIONS(2683), - [sym_identifier] = ACTIONS(2681), - [aux_sym_preproc_include_token1] = ACTIONS(2681), - [aux_sym_preproc_def_token1] = ACTIONS(2681), - [aux_sym_preproc_if_token1] = ACTIONS(2681), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2681), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2681), - [sym_preproc_directive] = ACTIONS(2681), - [anon_sym_LPAREN2] = ACTIONS(2683), - [anon_sym_BANG] = ACTIONS(2683), - [anon_sym_TILDE] = ACTIONS(2683), - [anon_sym_DASH] = ACTIONS(2681), - [anon_sym_PLUS] = ACTIONS(2681), - [anon_sym_STAR] = ACTIONS(2683), - [anon_sym_AMP_AMP] = ACTIONS(2683), - [anon_sym_AMP] = ACTIONS(2681), - [anon_sym_SEMI] = ACTIONS(2683), - [anon_sym_typedef] = ACTIONS(2681), - [anon_sym_extern] = ACTIONS(2681), - [anon_sym___attribute__] = ACTIONS(2681), - [anon_sym_COLON_COLON] = ACTIONS(2683), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2683), - [anon_sym___declspec] = ACTIONS(2681), - [anon_sym___based] = ACTIONS(2681), - [anon_sym___cdecl] = ACTIONS(2681), - [anon_sym___clrcall] = ACTIONS(2681), - [anon_sym___stdcall] = ACTIONS(2681), - [anon_sym___fastcall] = ACTIONS(2681), - [anon_sym___thiscall] = ACTIONS(2681), - [anon_sym___vectorcall] = ACTIONS(2681), - [anon_sym_LBRACE] = ACTIONS(2683), - [anon_sym_LBRACK] = ACTIONS(2681), - [anon_sym_static] = ACTIONS(2681), - [anon_sym_register] = ACTIONS(2681), - [anon_sym_inline] = ACTIONS(2681), - [anon_sym_thread_local] = ACTIONS(2681), - [anon_sym_const] = ACTIONS(2681), - [anon_sym_volatile] = ACTIONS(2681), - [anon_sym_restrict] = ACTIONS(2681), - [anon_sym__Atomic] = ACTIONS(2681), - [anon_sym_mutable] = ACTIONS(2681), - [anon_sym_constexpr] = ACTIONS(2681), - [anon_sym_constinit] = ACTIONS(2681), - [anon_sym_consteval] = ACTIONS(2681), - [anon_sym_signed] = ACTIONS(2681), - [anon_sym_unsigned] = ACTIONS(2681), - [anon_sym_long] = ACTIONS(2681), - [anon_sym_short] = ACTIONS(2681), - [sym_primitive_type] = ACTIONS(2681), - [anon_sym_enum] = ACTIONS(2681), - [anon_sym_class] = ACTIONS(2681), - [anon_sym_struct] = ACTIONS(2681), - [anon_sym_union] = ACTIONS(2681), - [anon_sym_if] = ACTIONS(2681), - [anon_sym_switch] = ACTIONS(2681), - [anon_sym_case] = ACTIONS(2681), - [anon_sym_default] = ACTIONS(2681), - [anon_sym_while] = ACTIONS(2681), - [anon_sym_do] = ACTIONS(2681), - [anon_sym_for] = ACTIONS(2681), - [anon_sym_return] = ACTIONS(2681), - [anon_sym_break] = ACTIONS(2681), - [anon_sym_continue] = ACTIONS(2681), - [anon_sym_goto] = ACTIONS(2681), - [anon_sym_DASH_DASH] = ACTIONS(2683), - [anon_sym_PLUS_PLUS] = ACTIONS(2683), - [anon_sym_sizeof] = ACTIONS(2681), - [sym_number_literal] = ACTIONS(2683), - [anon_sym_L_SQUOTE] = ACTIONS(2683), - [anon_sym_u_SQUOTE] = ACTIONS(2683), - [anon_sym_U_SQUOTE] = ACTIONS(2683), - [anon_sym_u8_SQUOTE] = ACTIONS(2683), - [anon_sym_SQUOTE] = ACTIONS(2683), - [anon_sym_L_DQUOTE] = ACTIONS(2683), - [anon_sym_u_DQUOTE] = ACTIONS(2683), - [anon_sym_U_DQUOTE] = ACTIONS(2683), - [anon_sym_u8_DQUOTE] = ACTIONS(2683), - [anon_sym_DQUOTE] = ACTIONS(2683), - [sym_true] = ACTIONS(2681), - [sym_false] = ACTIONS(2681), - [sym_null] = ACTIONS(2681), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2681), - [anon_sym_decltype] = ACTIONS(2681), - [anon_sym_virtual] = ACTIONS(2681), - [anon_sym_explicit] = ACTIONS(2681), - [anon_sym_typename] = ACTIONS(2681), - [anon_sym_template] = ACTIONS(2681), - [anon_sym_operator] = ACTIONS(2681), - [anon_sym_try] = ACTIONS(2681), - [anon_sym_delete] = ACTIONS(2681), - [anon_sym_throw] = ACTIONS(2681), - [anon_sym_namespace] = ACTIONS(2681), - [anon_sym_using] = ACTIONS(2681), - [anon_sym_static_assert] = ACTIONS(2681), - [anon_sym_concept] = ACTIONS(2681), - [anon_sym_co_return] = ACTIONS(2681), - [anon_sym_co_yield] = ACTIONS(2681), - [anon_sym_co_await] = ACTIONS(2681), - [anon_sym_new] = ACTIONS(2681), - [anon_sym_requires] = ACTIONS(2681), - [sym_this] = ACTIONS(2681), - [sym_nullptr] = ACTIONS(2681), - [sym_raw_string_literal] = ACTIONS(2683), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1007] = { - [sym_identifier] = ACTIONS(2625), - [aux_sym_preproc_include_token1] = ACTIONS(2625), - [aux_sym_preproc_def_token1] = ACTIONS(2625), - [aux_sym_preproc_if_token1] = ACTIONS(2625), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2625), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2625), - [sym_preproc_directive] = ACTIONS(2625), - [anon_sym_LPAREN2] = ACTIONS(2627), - [anon_sym_BANG] = ACTIONS(2627), - [anon_sym_TILDE] = ACTIONS(2627), - [anon_sym_DASH] = ACTIONS(2625), - [anon_sym_PLUS] = ACTIONS(2625), - [anon_sym_STAR] = ACTIONS(2627), - [anon_sym_AMP_AMP] = ACTIONS(2627), - [anon_sym_AMP] = ACTIONS(2625), - [anon_sym_SEMI] = ACTIONS(2627), - [anon_sym_typedef] = ACTIONS(2625), - [anon_sym_extern] = ACTIONS(2625), - [anon_sym___attribute__] = ACTIONS(2625), - [anon_sym_COLON_COLON] = ACTIONS(2627), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2627), - [anon_sym___declspec] = ACTIONS(2625), - [anon_sym___based] = ACTIONS(2625), - [anon_sym___cdecl] = ACTIONS(2625), - [anon_sym___clrcall] = ACTIONS(2625), - [anon_sym___stdcall] = ACTIONS(2625), - [anon_sym___fastcall] = ACTIONS(2625), - [anon_sym___thiscall] = ACTIONS(2625), - [anon_sym___vectorcall] = ACTIONS(2625), - [anon_sym_LBRACE] = ACTIONS(2627), - [anon_sym_RBRACE] = ACTIONS(2627), - [anon_sym_LBRACK] = ACTIONS(2625), - [anon_sym_static] = ACTIONS(2625), - [anon_sym_register] = ACTIONS(2625), - [anon_sym_inline] = ACTIONS(2625), - [anon_sym_thread_local] = ACTIONS(2625), - [anon_sym_const] = ACTIONS(2625), - [anon_sym_volatile] = ACTIONS(2625), - [anon_sym_restrict] = ACTIONS(2625), - [anon_sym__Atomic] = ACTIONS(2625), - [anon_sym_mutable] = ACTIONS(2625), - [anon_sym_constexpr] = ACTIONS(2625), - [anon_sym_constinit] = ACTIONS(2625), - [anon_sym_consteval] = ACTIONS(2625), - [anon_sym_signed] = ACTIONS(2625), - [anon_sym_unsigned] = ACTIONS(2625), - [anon_sym_long] = ACTIONS(2625), - [anon_sym_short] = ACTIONS(2625), - [sym_primitive_type] = ACTIONS(2625), - [anon_sym_enum] = ACTIONS(2625), - [anon_sym_class] = ACTIONS(2625), - [anon_sym_struct] = ACTIONS(2625), - [anon_sym_union] = ACTIONS(2625), - [anon_sym_if] = ACTIONS(2625), - [anon_sym_switch] = ACTIONS(2625), - [anon_sym_case] = ACTIONS(2625), - [anon_sym_default] = ACTIONS(2625), - [anon_sym_while] = ACTIONS(2625), - [anon_sym_do] = ACTIONS(2625), - [anon_sym_for] = ACTIONS(2625), - [anon_sym_return] = ACTIONS(2625), - [anon_sym_break] = ACTIONS(2625), - [anon_sym_continue] = ACTIONS(2625), - [anon_sym_goto] = ACTIONS(2625), - [anon_sym_DASH_DASH] = ACTIONS(2627), - [anon_sym_PLUS_PLUS] = ACTIONS(2627), - [anon_sym_sizeof] = ACTIONS(2625), - [sym_number_literal] = ACTIONS(2627), - [anon_sym_L_SQUOTE] = ACTIONS(2627), - [anon_sym_u_SQUOTE] = ACTIONS(2627), - [anon_sym_U_SQUOTE] = ACTIONS(2627), - [anon_sym_u8_SQUOTE] = ACTIONS(2627), - [anon_sym_SQUOTE] = ACTIONS(2627), - [anon_sym_L_DQUOTE] = ACTIONS(2627), - [anon_sym_u_DQUOTE] = ACTIONS(2627), - [anon_sym_U_DQUOTE] = ACTIONS(2627), - [anon_sym_u8_DQUOTE] = ACTIONS(2627), - [anon_sym_DQUOTE] = ACTIONS(2627), - [sym_true] = ACTIONS(2625), - [sym_false] = ACTIONS(2625), - [sym_null] = ACTIONS(2625), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2625), - [anon_sym_decltype] = ACTIONS(2625), - [anon_sym_virtual] = ACTIONS(2625), - [anon_sym_explicit] = ACTIONS(2625), - [anon_sym_typename] = ACTIONS(2625), - [anon_sym_template] = ACTIONS(2625), - [anon_sym_operator] = ACTIONS(2625), - [anon_sym_try] = ACTIONS(2625), - [anon_sym_delete] = ACTIONS(2625), - [anon_sym_throw] = ACTIONS(2625), - [anon_sym_namespace] = ACTIONS(2625), - [anon_sym_using] = ACTIONS(2625), - [anon_sym_static_assert] = ACTIONS(2625), - [anon_sym_concept] = ACTIONS(2625), - [anon_sym_co_return] = ACTIONS(2625), - [anon_sym_co_yield] = ACTIONS(2625), - [anon_sym_co_await] = ACTIONS(2625), - [anon_sym_new] = ACTIONS(2625), - [anon_sym_requires] = ACTIONS(2625), - [sym_this] = ACTIONS(2625), - [sym_nullptr] = ACTIONS(2625), - [sym_raw_string_literal] = ACTIONS(2627), + [621] = { + [sym_identifier] = ACTIONS(2493), + [aux_sym_preproc_include_token1] = ACTIONS(2493), + [aux_sym_preproc_def_token1] = ACTIONS(2493), + [aux_sym_preproc_if_token1] = ACTIONS(2493), + [aux_sym_preproc_if_token2] = ACTIONS(2493), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2493), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2493), + [sym_preproc_directive] = ACTIONS(2493), + [anon_sym_LPAREN2] = ACTIONS(2495), + [anon_sym_BANG] = ACTIONS(2495), + [anon_sym_TILDE] = ACTIONS(2495), + [anon_sym_DASH] = ACTIONS(2493), + [anon_sym_PLUS] = ACTIONS(2493), + [anon_sym_STAR] = ACTIONS(2495), + [anon_sym_AMP_AMP] = ACTIONS(2495), + [anon_sym_AMP] = ACTIONS(2493), + [anon_sym_SEMI] = ACTIONS(2495), + [anon_sym_typedef] = ACTIONS(2493), + [anon_sym_extern] = ACTIONS(2493), + [anon_sym___attribute__] = ACTIONS(2493), + [anon_sym_COLON_COLON] = ACTIONS(2495), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2495), + [anon_sym___declspec] = ACTIONS(2493), + [anon_sym___based] = ACTIONS(2493), + [anon_sym___cdecl] = ACTIONS(2493), + [anon_sym___clrcall] = ACTIONS(2493), + [anon_sym___stdcall] = ACTIONS(2493), + [anon_sym___fastcall] = ACTIONS(2493), + [anon_sym___thiscall] = ACTIONS(2493), + [anon_sym___vectorcall] = ACTIONS(2493), + [anon_sym_LBRACE] = ACTIONS(2495), + [anon_sym_LBRACK] = ACTIONS(2493), + [anon_sym_static] = ACTIONS(2493), + [anon_sym_register] = ACTIONS(2493), + [anon_sym_inline] = ACTIONS(2493), + [anon_sym_thread_local] = ACTIONS(2493), + [anon_sym_const] = ACTIONS(2493), + [anon_sym_volatile] = ACTIONS(2493), + [anon_sym_restrict] = ACTIONS(2493), + [anon_sym__Atomic] = ACTIONS(2493), + [anon_sym_mutable] = ACTIONS(2493), + [anon_sym_constexpr] = ACTIONS(2493), + [anon_sym_constinit] = ACTIONS(2493), + [anon_sym_consteval] = ACTIONS(2493), + [anon_sym_signed] = ACTIONS(2493), + [anon_sym_unsigned] = ACTIONS(2493), + [anon_sym_long] = ACTIONS(2493), + [anon_sym_short] = ACTIONS(2493), + [sym_primitive_type] = ACTIONS(2493), + [anon_sym_enum] = ACTIONS(2493), + [anon_sym_class] = ACTIONS(2493), + [anon_sym_struct] = ACTIONS(2493), + [anon_sym_union] = ACTIONS(2493), + [anon_sym_if] = ACTIONS(2493), + [anon_sym_else] = ACTIONS(2943), + [anon_sym_switch] = ACTIONS(2493), + [anon_sym_case] = ACTIONS(2493), + [anon_sym_default] = ACTIONS(2493), + [anon_sym_while] = ACTIONS(2493), + [anon_sym_do] = ACTIONS(2493), + [anon_sym_for] = ACTIONS(2493), + [anon_sym_return] = ACTIONS(2493), + [anon_sym_break] = ACTIONS(2493), + [anon_sym_continue] = ACTIONS(2493), + [anon_sym_goto] = ACTIONS(2493), + [anon_sym_not] = ACTIONS(2493), + [anon_sym_compl] = ACTIONS(2493), + [anon_sym_DASH_DASH] = ACTIONS(2495), + [anon_sym_PLUS_PLUS] = ACTIONS(2495), + [anon_sym_sizeof] = ACTIONS(2493), + [sym_number_literal] = ACTIONS(2495), + [anon_sym_L_SQUOTE] = ACTIONS(2495), + [anon_sym_u_SQUOTE] = ACTIONS(2495), + [anon_sym_U_SQUOTE] = ACTIONS(2495), + [anon_sym_u8_SQUOTE] = ACTIONS(2495), + [anon_sym_SQUOTE] = ACTIONS(2495), + [anon_sym_L_DQUOTE] = ACTIONS(2495), + [anon_sym_u_DQUOTE] = ACTIONS(2495), + [anon_sym_U_DQUOTE] = ACTIONS(2495), + [anon_sym_u8_DQUOTE] = ACTIONS(2495), + [anon_sym_DQUOTE] = ACTIONS(2495), + [sym_true] = ACTIONS(2493), + [sym_false] = ACTIONS(2493), + [sym_null] = ACTIONS(2493), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2493), + [anon_sym_decltype] = ACTIONS(2493), + [anon_sym_virtual] = ACTIONS(2493), + [anon_sym_explicit] = ACTIONS(2493), + [anon_sym_typename] = ACTIONS(2493), + [anon_sym_template] = ACTIONS(2493), + [anon_sym_operator] = ACTIONS(2493), + [anon_sym_try] = ACTIONS(2493), + [anon_sym_delete] = ACTIONS(2493), + [anon_sym_throw] = ACTIONS(2493), + [anon_sym_namespace] = ACTIONS(2493), + [anon_sym_using] = ACTIONS(2493), + [anon_sym_static_assert] = ACTIONS(2493), + [anon_sym_concept] = ACTIONS(2493), + [anon_sym_co_return] = ACTIONS(2493), + [anon_sym_co_yield] = ACTIONS(2493), + [anon_sym_co_await] = ACTIONS(2493), + [anon_sym_new] = ACTIONS(2493), + [anon_sym_requires] = ACTIONS(2493), + [sym_this] = ACTIONS(2493), + [sym_nullptr] = ACTIONS(2493), + [sym_raw_string_literal] = ACTIONS(2495), }, - [1008] = { - [sym_identifier] = ACTIONS(2763), - [aux_sym_preproc_include_token1] = ACTIONS(2763), - [aux_sym_preproc_def_token1] = ACTIONS(2763), - [aux_sym_preproc_if_token1] = ACTIONS(2763), - [aux_sym_preproc_if_token2] = ACTIONS(2763), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2763), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2763), - [sym_preproc_directive] = ACTIONS(2763), - [anon_sym_LPAREN2] = ACTIONS(2765), - [anon_sym_BANG] = ACTIONS(2765), - [anon_sym_TILDE] = ACTIONS(2765), - [anon_sym_DASH] = ACTIONS(2763), - [anon_sym_PLUS] = ACTIONS(2763), - [anon_sym_STAR] = ACTIONS(2765), - [anon_sym_AMP_AMP] = ACTIONS(2765), - [anon_sym_AMP] = ACTIONS(2763), - [anon_sym_SEMI] = ACTIONS(2765), - [anon_sym_typedef] = ACTIONS(2763), - [anon_sym_extern] = ACTIONS(2763), - [anon_sym___attribute__] = ACTIONS(2763), - [anon_sym_COLON_COLON] = ACTIONS(2765), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2765), - [anon_sym___declspec] = ACTIONS(2763), - [anon_sym___based] = ACTIONS(2763), - [anon_sym___cdecl] = ACTIONS(2763), - [anon_sym___clrcall] = ACTIONS(2763), - [anon_sym___stdcall] = ACTIONS(2763), - [anon_sym___fastcall] = ACTIONS(2763), - [anon_sym___thiscall] = ACTIONS(2763), - [anon_sym___vectorcall] = ACTIONS(2763), - [anon_sym_LBRACE] = ACTIONS(2765), - [anon_sym_LBRACK] = ACTIONS(2763), - [anon_sym_static] = ACTIONS(2763), - [anon_sym_register] = ACTIONS(2763), - [anon_sym_inline] = ACTIONS(2763), - [anon_sym_thread_local] = ACTIONS(2763), - [anon_sym_const] = ACTIONS(2763), - [anon_sym_volatile] = ACTIONS(2763), - [anon_sym_restrict] = ACTIONS(2763), - [anon_sym__Atomic] = ACTIONS(2763), - [anon_sym_mutable] = ACTIONS(2763), - [anon_sym_constexpr] = ACTIONS(2763), - [anon_sym_constinit] = ACTIONS(2763), - [anon_sym_consteval] = ACTIONS(2763), - [anon_sym_signed] = ACTIONS(2763), - [anon_sym_unsigned] = ACTIONS(2763), - [anon_sym_long] = ACTIONS(2763), - [anon_sym_short] = ACTIONS(2763), - [sym_primitive_type] = ACTIONS(2763), - [anon_sym_enum] = ACTIONS(2763), - [anon_sym_class] = ACTIONS(2763), - [anon_sym_struct] = ACTIONS(2763), - [anon_sym_union] = ACTIONS(2763), - [anon_sym_if] = ACTIONS(2763), - [anon_sym_switch] = ACTIONS(2763), - [anon_sym_case] = ACTIONS(2763), - [anon_sym_default] = ACTIONS(2763), - [anon_sym_while] = ACTIONS(2763), - [anon_sym_do] = ACTIONS(2763), - [anon_sym_for] = ACTIONS(2763), - [anon_sym_return] = ACTIONS(2763), - [anon_sym_break] = ACTIONS(2763), - [anon_sym_continue] = ACTIONS(2763), - [anon_sym_goto] = ACTIONS(2763), - [anon_sym_DASH_DASH] = ACTIONS(2765), - [anon_sym_PLUS_PLUS] = ACTIONS(2765), - [anon_sym_sizeof] = ACTIONS(2763), - [sym_number_literal] = ACTIONS(2765), - [anon_sym_L_SQUOTE] = ACTIONS(2765), - [anon_sym_u_SQUOTE] = ACTIONS(2765), - [anon_sym_U_SQUOTE] = ACTIONS(2765), - [anon_sym_u8_SQUOTE] = ACTIONS(2765), - [anon_sym_SQUOTE] = ACTIONS(2765), - [anon_sym_L_DQUOTE] = ACTIONS(2765), - [anon_sym_u_DQUOTE] = ACTIONS(2765), - [anon_sym_U_DQUOTE] = ACTIONS(2765), - [anon_sym_u8_DQUOTE] = ACTIONS(2765), - [anon_sym_DQUOTE] = ACTIONS(2765), - [sym_true] = ACTIONS(2763), - [sym_false] = ACTIONS(2763), - [sym_null] = ACTIONS(2763), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2763), - [anon_sym_decltype] = ACTIONS(2763), - [anon_sym_virtual] = ACTIONS(2763), - [anon_sym_explicit] = ACTIONS(2763), - [anon_sym_typename] = ACTIONS(2763), - [anon_sym_template] = ACTIONS(2763), - [anon_sym_operator] = ACTIONS(2763), - [anon_sym_try] = ACTIONS(2763), - [anon_sym_delete] = ACTIONS(2763), - [anon_sym_throw] = ACTIONS(2763), - [anon_sym_namespace] = ACTIONS(2763), - [anon_sym_using] = ACTIONS(2763), - [anon_sym_static_assert] = ACTIONS(2763), - [anon_sym_concept] = ACTIONS(2763), - [anon_sym_co_return] = ACTIONS(2763), - [anon_sym_co_yield] = ACTIONS(2763), - [anon_sym_co_await] = ACTIONS(2763), - [anon_sym_new] = ACTIONS(2763), - [anon_sym_requires] = ACTIONS(2763), - [sym_this] = ACTIONS(2763), - [sym_nullptr] = ACTIONS(2763), - [sym_raw_string_literal] = ACTIONS(2765), + [622] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token2] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1009] = { - [ts_builtin_sym_end] = ACTIONS(2731), - [sym_identifier] = ACTIONS(2729), - [aux_sym_preproc_include_token1] = ACTIONS(2729), - [aux_sym_preproc_def_token1] = ACTIONS(2729), - [aux_sym_preproc_if_token1] = ACTIONS(2729), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2729), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2729), - [sym_preproc_directive] = ACTIONS(2729), - [anon_sym_LPAREN2] = ACTIONS(2731), - [anon_sym_BANG] = ACTIONS(2731), - [anon_sym_TILDE] = ACTIONS(2731), - [anon_sym_DASH] = ACTIONS(2729), - [anon_sym_PLUS] = ACTIONS(2729), - [anon_sym_STAR] = ACTIONS(2731), - [anon_sym_AMP_AMP] = ACTIONS(2731), - [anon_sym_AMP] = ACTIONS(2729), - [anon_sym_SEMI] = ACTIONS(2731), - [anon_sym_typedef] = ACTIONS(2729), - [anon_sym_extern] = ACTIONS(2729), - [anon_sym___attribute__] = ACTIONS(2729), - [anon_sym_COLON_COLON] = ACTIONS(2731), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2731), - [anon_sym___declspec] = ACTIONS(2729), - [anon_sym___based] = ACTIONS(2729), - [anon_sym___cdecl] = ACTIONS(2729), - [anon_sym___clrcall] = ACTIONS(2729), - [anon_sym___stdcall] = ACTIONS(2729), - [anon_sym___fastcall] = ACTIONS(2729), - [anon_sym___thiscall] = ACTIONS(2729), - [anon_sym___vectorcall] = ACTIONS(2729), - [anon_sym_LBRACE] = ACTIONS(2731), - [anon_sym_LBRACK] = ACTIONS(2729), - [anon_sym_static] = ACTIONS(2729), - [anon_sym_register] = ACTIONS(2729), - [anon_sym_inline] = ACTIONS(2729), - [anon_sym_thread_local] = ACTIONS(2729), - [anon_sym_const] = ACTIONS(2729), - [anon_sym_volatile] = ACTIONS(2729), - [anon_sym_restrict] = ACTIONS(2729), - [anon_sym__Atomic] = ACTIONS(2729), - [anon_sym_mutable] = ACTIONS(2729), - [anon_sym_constexpr] = ACTIONS(2729), - [anon_sym_constinit] = ACTIONS(2729), - [anon_sym_consteval] = ACTIONS(2729), - [anon_sym_signed] = ACTIONS(2729), - [anon_sym_unsigned] = ACTIONS(2729), - [anon_sym_long] = ACTIONS(2729), - [anon_sym_short] = ACTIONS(2729), - [sym_primitive_type] = ACTIONS(2729), - [anon_sym_enum] = ACTIONS(2729), - [anon_sym_class] = ACTIONS(2729), - [anon_sym_struct] = ACTIONS(2729), - [anon_sym_union] = ACTIONS(2729), - [anon_sym_if] = ACTIONS(2729), - [anon_sym_switch] = ACTIONS(2729), - [anon_sym_case] = ACTIONS(2729), - [anon_sym_default] = ACTIONS(2729), - [anon_sym_while] = ACTIONS(2729), - [anon_sym_do] = ACTIONS(2729), - [anon_sym_for] = ACTIONS(2729), - [anon_sym_return] = ACTIONS(2729), - [anon_sym_break] = ACTIONS(2729), - [anon_sym_continue] = ACTIONS(2729), - [anon_sym_goto] = ACTIONS(2729), - [anon_sym_DASH_DASH] = ACTIONS(2731), - [anon_sym_PLUS_PLUS] = ACTIONS(2731), - [anon_sym_sizeof] = ACTIONS(2729), - [sym_number_literal] = ACTIONS(2731), - [anon_sym_L_SQUOTE] = ACTIONS(2731), - [anon_sym_u_SQUOTE] = ACTIONS(2731), - [anon_sym_U_SQUOTE] = ACTIONS(2731), - [anon_sym_u8_SQUOTE] = ACTIONS(2731), - [anon_sym_SQUOTE] = ACTIONS(2731), - [anon_sym_L_DQUOTE] = ACTIONS(2731), - [anon_sym_u_DQUOTE] = ACTIONS(2731), - [anon_sym_U_DQUOTE] = ACTIONS(2731), - [anon_sym_u8_DQUOTE] = ACTIONS(2731), - [anon_sym_DQUOTE] = ACTIONS(2731), - [sym_true] = ACTIONS(2729), - [sym_false] = ACTIONS(2729), - [sym_null] = ACTIONS(2729), + [623] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token2] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2729), - [anon_sym_decltype] = ACTIONS(2729), - [anon_sym_virtual] = ACTIONS(2729), - [anon_sym_explicit] = ACTIONS(2729), - [anon_sym_typename] = ACTIONS(2729), - [anon_sym_template] = ACTIONS(2729), - [anon_sym_operator] = ACTIONS(2729), - [anon_sym_try] = ACTIONS(2729), - [anon_sym_delete] = ACTIONS(2729), - [anon_sym_throw] = ACTIONS(2729), - [anon_sym_namespace] = ACTIONS(2729), - [anon_sym_using] = ACTIONS(2729), - [anon_sym_static_assert] = ACTIONS(2729), - [anon_sym_concept] = ACTIONS(2729), - [anon_sym_co_return] = ACTIONS(2729), - [anon_sym_co_yield] = ACTIONS(2729), - [anon_sym_co_await] = ACTIONS(2729), - [anon_sym_new] = ACTIONS(2729), - [anon_sym_requires] = ACTIONS(2729), - [sym_this] = ACTIONS(2729), - [sym_nullptr] = ACTIONS(2729), - [sym_raw_string_literal] = ACTIONS(2731), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1010] = { - [sym_identifier] = ACTIONS(2699), - [aux_sym_preproc_include_token1] = ACTIONS(2699), - [aux_sym_preproc_def_token1] = ACTIONS(2699), - [aux_sym_preproc_if_token1] = ACTIONS(2699), - [aux_sym_preproc_if_token2] = ACTIONS(2699), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2699), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2699), - [sym_preproc_directive] = ACTIONS(2699), - [anon_sym_LPAREN2] = ACTIONS(2701), - [anon_sym_BANG] = ACTIONS(2701), - [anon_sym_TILDE] = ACTIONS(2701), - [anon_sym_DASH] = ACTIONS(2699), - [anon_sym_PLUS] = ACTIONS(2699), - [anon_sym_STAR] = ACTIONS(2701), - [anon_sym_AMP_AMP] = ACTIONS(2701), - [anon_sym_AMP] = ACTIONS(2699), - [anon_sym_SEMI] = ACTIONS(2701), - [anon_sym_typedef] = ACTIONS(2699), - [anon_sym_extern] = ACTIONS(2699), - [anon_sym___attribute__] = ACTIONS(2699), - [anon_sym_COLON_COLON] = ACTIONS(2701), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2701), - [anon_sym___declspec] = ACTIONS(2699), - [anon_sym___based] = ACTIONS(2699), - [anon_sym___cdecl] = ACTIONS(2699), - [anon_sym___clrcall] = ACTIONS(2699), - [anon_sym___stdcall] = ACTIONS(2699), - [anon_sym___fastcall] = ACTIONS(2699), - [anon_sym___thiscall] = ACTIONS(2699), - [anon_sym___vectorcall] = ACTIONS(2699), - [anon_sym_LBRACE] = ACTIONS(2701), - [anon_sym_LBRACK] = ACTIONS(2699), - [anon_sym_static] = ACTIONS(2699), - [anon_sym_register] = ACTIONS(2699), - [anon_sym_inline] = ACTIONS(2699), - [anon_sym_thread_local] = ACTIONS(2699), - [anon_sym_const] = ACTIONS(2699), - [anon_sym_volatile] = ACTIONS(2699), - [anon_sym_restrict] = ACTIONS(2699), - [anon_sym__Atomic] = ACTIONS(2699), - [anon_sym_mutable] = ACTIONS(2699), - [anon_sym_constexpr] = ACTIONS(2699), - [anon_sym_constinit] = ACTIONS(2699), - [anon_sym_consteval] = ACTIONS(2699), - [anon_sym_signed] = ACTIONS(2699), - [anon_sym_unsigned] = ACTIONS(2699), - [anon_sym_long] = ACTIONS(2699), - [anon_sym_short] = ACTIONS(2699), - [sym_primitive_type] = ACTIONS(2699), - [anon_sym_enum] = ACTIONS(2699), - [anon_sym_class] = ACTIONS(2699), - [anon_sym_struct] = ACTIONS(2699), - [anon_sym_union] = ACTIONS(2699), - [anon_sym_if] = ACTIONS(2699), - [anon_sym_switch] = ACTIONS(2699), - [anon_sym_case] = ACTIONS(2699), - [anon_sym_default] = ACTIONS(2699), - [anon_sym_while] = ACTIONS(2699), - [anon_sym_do] = ACTIONS(2699), - [anon_sym_for] = ACTIONS(2699), - [anon_sym_return] = ACTIONS(2699), - [anon_sym_break] = ACTIONS(2699), - [anon_sym_continue] = ACTIONS(2699), - [anon_sym_goto] = ACTIONS(2699), - [anon_sym_DASH_DASH] = ACTIONS(2701), - [anon_sym_PLUS_PLUS] = ACTIONS(2701), - [anon_sym_sizeof] = ACTIONS(2699), - [sym_number_literal] = ACTIONS(2701), - [anon_sym_L_SQUOTE] = ACTIONS(2701), - [anon_sym_u_SQUOTE] = ACTIONS(2701), - [anon_sym_U_SQUOTE] = ACTIONS(2701), - [anon_sym_u8_SQUOTE] = ACTIONS(2701), - [anon_sym_SQUOTE] = ACTIONS(2701), - [anon_sym_L_DQUOTE] = ACTIONS(2701), - [anon_sym_u_DQUOTE] = ACTIONS(2701), - [anon_sym_U_DQUOTE] = ACTIONS(2701), - [anon_sym_u8_DQUOTE] = ACTIONS(2701), - [anon_sym_DQUOTE] = ACTIONS(2701), - [sym_true] = ACTIONS(2699), - [sym_false] = ACTIONS(2699), - [sym_null] = ACTIONS(2699), + [624] = { + [ts_builtin_sym_end] = ACTIONS(2597), + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2699), - [anon_sym_decltype] = ACTIONS(2699), - [anon_sym_virtual] = ACTIONS(2699), - [anon_sym_explicit] = ACTIONS(2699), - [anon_sym_typename] = ACTIONS(2699), - [anon_sym_template] = ACTIONS(2699), - [anon_sym_operator] = ACTIONS(2699), - [anon_sym_try] = ACTIONS(2699), - [anon_sym_delete] = ACTIONS(2699), - [anon_sym_throw] = ACTIONS(2699), - [anon_sym_namespace] = ACTIONS(2699), - [anon_sym_using] = ACTIONS(2699), - [anon_sym_static_assert] = ACTIONS(2699), - [anon_sym_concept] = ACTIONS(2699), - [anon_sym_co_return] = ACTIONS(2699), - [anon_sym_co_yield] = ACTIONS(2699), - [anon_sym_co_await] = ACTIONS(2699), - [anon_sym_new] = ACTIONS(2699), - [anon_sym_requires] = ACTIONS(2699), - [sym_this] = ACTIONS(2699), - [sym_nullptr] = ACTIONS(2699), - [sym_raw_string_literal] = ACTIONS(2701), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1011] = { - [ts_builtin_sym_end] = ACTIONS(2723), - [sym_identifier] = ACTIONS(2721), - [aux_sym_preproc_include_token1] = ACTIONS(2721), - [aux_sym_preproc_def_token1] = ACTIONS(2721), - [aux_sym_preproc_if_token1] = ACTIONS(2721), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2721), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2721), - [sym_preproc_directive] = ACTIONS(2721), - [anon_sym_LPAREN2] = ACTIONS(2723), - [anon_sym_BANG] = ACTIONS(2723), - [anon_sym_TILDE] = ACTIONS(2723), - [anon_sym_DASH] = ACTIONS(2721), - [anon_sym_PLUS] = ACTIONS(2721), - [anon_sym_STAR] = ACTIONS(2723), - [anon_sym_AMP_AMP] = ACTIONS(2723), - [anon_sym_AMP] = ACTIONS(2721), - [anon_sym_SEMI] = ACTIONS(2723), - [anon_sym_typedef] = ACTIONS(2721), - [anon_sym_extern] = ACTIONS(2721), - [anon_sym___attribute__] = ACTIONS(2721), - [anon_sym_COLON_COLON] = ACTIONS(2723), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2723), - [anon_sym___declspec] = ACTIONS(2721), - [anon_sym___based] = ACTIONS(2721), - [anon_sym___cdecl] = ACTIONS(2721), - [anon_sym___clrcall] = ACTIONS(2721), - [anon_sym___stdcall] = ACTIONS(2721), - [anon_sym___fastcall] = ACTIONS(2721), - [anon_sym___thiscall] = ACTIONS(2721), - [anon_sym___vectorcall] = ACTIONS(2721), - [anon_sym_LBRACE] = ACTIONS(2723), - [anon_sym_LBRACK] = ACTIONS(2721), - [anon_sym_static] = ACTIONS(2721), - [anon_sym_register] = ACTIONS(2721), - [anon_sym_inline] = ACTIONS(2721), - [anon_sym_thread_local] = ACTIONS(2721), - [anon_sym_const] = ACTIONS(2721), - [anon_sym_volatile] = ACTIONS(2721), - [anon_sym_restrict] = ACTIONS(2721), - [anon_sym__Atomic] = ACTIONS(2721), - [anon_sym_mutable] = ACTIONS(2721), - [anon_sym_constexpr] = ACTIONS(2721), - [anon_sym_constinit] = ACTIONS(2721), - [anon_sym_consteval] = ACTIONS(2721), - [anon_sym_signed] = ACTIONS(2721), - [anon_sym_unsigned] = ACTIONS(2721), - [anon_sym_long] = ACTIONS(2721), - [anon_sym_short] = ACTIONS(2721), - [sym_primitive_type] = ACTIONS(2721), - [anon_sym_enum] = ACTIONS(2721), - [anon_sym_class] = ACTIONS(2721), - [anon_sym_struct] = ACTIONS(2721), - [anon_sym_union] = ACTIONS(2721), - [anon_sym_if] = ACTIONS(2721), - [anon_sym_switch] = ACTIONS(2721), - [anon_sym_case] = ACTIONS(2721), - [anon_sym_default] = ACTIONS(2721), - [anon_sym_while] = ACTIONS(2721), - [anon_sym_do] = ACTIONS(2721), - [anon_sym_for] = ACTIONS(2721), - [anon_sym_return] = ACTIONS(2721), - [anon_sym_break] = ACTIONS(2721), - [anon_sym_continue] = ACTIONS(2721), - [anon_sym_goto] = ACTIONS(2721), - [anon_sym_DASH_DASH] = ACTIONS(2723), - [anon_sym_PLUS_PLUS] = ACTIONS(2723), - [anon_sym_sizeof] = ACTIONS(2721), - [sym_number_literal] = ACTIONS(2723), - [anon_sym_L_SQUOTE] = ACTIONS(2723), - [anon_sym_u_SQUOTE] = ACTIONS(2723), - [anon_sym_U_SQUOTE] = ACTIONS(2723), - [anon_sym_u8_SQUOTE] = ACTIONS(2723), - [anon_sym_SQUOTE] = ACTIONS(2723), - [anon_sym_L_DQUOTE] = ACTIONS(2723), - [anon_sym_u_DQUOTE] = ACTIONS(2723), - [anon_sym_U_DQUOTE] = ACTIONS(2723), - [anon_sym_u8_DQUOTE] = ACTIONS(2723), - [anon_sym_DQUOTE] = ACTIONS(2723), - [sym_true] = ACTIONS(2721), - [sym_false] = ACTIONS(2721), - [sym_null] = ACTIONS(2721), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2721), - [anon_sym_decltype] = ACTIONS(2721), - [anon_sym_virtual] = ACTIONS(2721), - [anon_sym_explicit] = ACTIONS(2721), - [anon_sym_typename] = ACTIONS(2721), - [anon_sym_template] = ACTIONS(2721), - [anon_sym_operator] = ACTIONS(2721), - [anon_sym_try] = ACTIONS(2721), - [anon_sym_delete] = ACTIONS(2721), - [anon_sym_throw] = ACTIONS(2721), - [anon_sym_namespace] = ACTIONS(2721), - [anon_sym_using] = ACTIONS(2721), - [anon_sym_static_assert] = ACTIONS(2721), - [anon_sym_concept] = ACTIONS(2721), - [anon_sym_co_return] = ACTIONS(2721), - [anon_sym_co_yield] = ACTIONS(2721), - [anon_sym_co_await] = ACTIONS(2721), - [anon_sym_new] = ACTIONS(2721), - [anon_sym_requires] = ACTIONS(2721), - [sym_this] = ACTIONS(2721), - [sym_nullptr] = ACTIONS(2721), - [sym_raw_string_literal] = ACTIONS(2723), + [625] = { + [ts_builtin_sym_end] = ACTIONS(2561), + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1012] = { - [ts_builtin_sym_end] = ACTIONS(2715), - [sym_identifier] = ACTIONS(2713), - [aux_sym_preproc_include_token1] = ACTIONS(2713), - [aux_sym_preproc_def_token1] = ACTIONS(2713), - [aux_sym_preproc_if_token1] = ACTIONS(2713), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2713), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2713), - [sym_preproc_directive] = ACTIONS(2713), - [anon_sym_LPAREN2] = ACTIONS(2715), - [anon_sym_BANG] = ACTIONS(2715), - [anon_sym_TILDE] = ACTIONS(2715), - [anon_sym_DASH] = ACTIONS(2713), - [anon_sym_PLUS] = ACTIONS(2713), - [anon_sym_STAR] = ACTIONS(2715), - [anon_sym_AMP_AMP] = ACTIONS(2715), - [anon_sym_AMP] = ACTIONS(2713), - [anon_sym_SEMI] = ACTIONS(2715), - [anon_sym_typedef] = ACTIONS(2713), - [anon_sym_extern] = ACTIONS(2713), - [anon_sym___attribute__] = ACTIONS(2713), - [anon_sym_COLON_COLON] = ACTIONS(2715), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2715), - [anon_sym___declspec] = ACTIONS(2713), - [anon_sym___based] = ACTIONS(2713), - [anon_sym___cdecl] = ACTIONS(2713), - [anon_sym___clrcall] = ACTIONS(2713), - [anon_sym___stdcall] = ACTIONS(2713), - [anon_sym___fastcall] = ACTIONS(2713), - [anon_sym___thiscall] = ACTIONS(2713), - [anon_sym___vectorcall] = ACTIONS(2713), - [anon_sym_LBRACE] = ACTIONS(2715), - [anon_sym_LBRACK] = ACTIONS(2713), - [anon_sym_static] = ACTIONS(2713), - [anon_sym_register] = ACTIONS(2713), - [anon_sym_inline] = ACTIONS(2713), - [anon_sym_thread_local] = ACTIONS(2713), - [anon_sym_const] = ACTIONS(2713), - [anon_sym_volatile] = ACTIONS(2713), - [anon_sym_restrict] = ACTIONS(2713), - [anon_sym__Atomic] = ACTIONS(2713), - [anon_sym_mutable] = ACTIONS(2713), - [anon_sym_constexpr] = ACTIONS(2713), - [anon_sym_constinit] = ACTIONS(2713), - [anon_sym_consteval] = ACTIONS(2713), - [anon_sym_signed] = ACTIONS(2713), - [anon_sym_unsigned] = ACTIONS(2713), - [anon_sym_long] = ACTIONS(2713), - [anon_sym_short] = ACTIONS(2713), - [sym_primitive_type] = ACTIONS(2713), - [anon_sym_enum] = ACTIONS(2713), - [anon_sym_class] = ACTIONS(2713), - [anon_sym_struct] = ACTIONS(2713), - [anon_sym_union] = ACTIONS(2713), - [anon_sym_if] = ACTIONS(2713), - [anon_sym_switch] = ACTIONS(2713), - [anon_sym_case] = ACTIONS(2713), - [anon_sym_default] = ACTIONS(2713), - [anon_sym_while] = ACTIONS(2713), - [anon_sym_do] = ACTIONS(2713), - [anon_sym_for] = ACTIONS(2713), - [anon_sym_return] = ACTIONS(2713), - [anon_sym_break] = ACTIONS(2713), - [anon_sym_continue] = ACTIONS(2713), - [anon_sym_goto] = ACTIONS(2713), - [anon_sym_DASH_DASH] = ACTIONS(2715), - [anon_sym_PLUS_PLUS] = ACTIONS(2715), - [anon_sym_sizeof] = ACTIONS(2713), - [sym_number_literal] = ACTIONS(2715), - [anon_sym_L_SQUOTE] = ACTIONS(2715), - [anon_sym_u_SQUOTE] = ACTIONS(2715), - [anon_sym_U_SQUOTE] = ACTIONS(2715), - [anon_sym_u8_SQUOTE] = ACTIONS(2715), - [anon_sym_SQUOTE] = ACTIONS(2715), - [anon_sym_L_DQUOTE] = ACTIONS(2715), - [anon_sym_u_DQUOTE] = ACTIONS(2715), - [anon_sym_U_DQUOTE] = ACTIONS(2715), - [anon_sym_u8_DQUOTE] = ACTIONS(2715), - [anon_sym_DQUOTE] = ACTIONS(2715), - [sym_true] = ACTIONS(2713), - [sym_false] = ACTIONS(2713), - [sym_null] = ACTIONS(2713), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2713), - [anon_sym_decltype] = ACTIONS(2713), - [anon_sym_virtual] = ACTIONS(2713), - [anon_sym_explicit] = ACTIONS(2713), - [anon_sym_typename] = ACTIONS(2713), - [anon_sym_template] = ACTIONS(2713), - [anon_sym_operator] = ACTIONS(2713), - [anon_sym_try] = ACTIONS(2713), - [anon_sym_delete] = ACTIONS(2713), - [anon_sym_throw] = ACTIONS(2713), - [anon_sym_namespace] = ACTIONS(2713), - [anon_sym_using] = ACTIONS(2713), - [anon_sym_static_assert] = ACTIONS(2713), - [anon_sym_concept] = ACTIONS(2713), - [anon_sym_co_return] = ACTIONS(2713), - [anon_sym_co_yield] = ACTIONS(2713), - [anon_sym_co_await] = ACTIONS(2713), - [anon_sym_new] = ACTIONS(2713), - [anon_sym_requires] = ACTIONS(2713), - [sym_this] = ACTIONS(2713), - [sym_nullptr] = ACTIONS(2713), - [sym_raw_string_literal] = ACTIONS(2715), + [626] = { + [ts_builtin_sym_end] = ACTIONS(2561), + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1013] = { - [sym_identifier] = ACTIONS(2713), - [aux_sym_preproc_include_token1] = ACTIONS(2713), - [aux_sym_preproc_def_token1] = ACTIONS(2713), - [aux_sym_preproc_if_token1] = ACTIONS(2713), - [aux_sym_preproc_if_token2] = ACTIONS(2713), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2713), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2713), - [sym_preproc_directive] = ACTIONS(2713), - [anon_sym_LPAREN2] = ACTIONS(2715), - [anon_sym_BANG] = ACTIONS(2715), - [anon_sym_TILDE] = ACTIONS(2715), - [anon_sym_DASH] = ACTIONS(2713), - [anon_sym_PLUS] = ACTIONS(2713), - [anon_sym_STAR] = ACTIONS(2715), - [anon_sym_AMP_AMP] = ACTIONS(2715), - [anon_sym_AMP] = ACTIONS(2713), - [anon_sym_SEMI] = ACTIONS(2715), - [anon_sym_typedef] = ACTIONS(2713), - [anon_sym_extern] = ACTIONS(2713), - [anon_sym___attribute__] = ACTIONS(2713), - [anon_sym_COLON_COLON] = ACTIONS(2715), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2715), - [anon_sym___declspec] = ACTIONS(2713), - [anon_sym___based] = ACTIONS(2713), - [anon_sym___cdecl] = ACTIONS(2713), - [anon_sym___clrcall] = ACTIONS(2713), - [anon_sym___stdcall] = ACTIONS(2713), - [anon_sym___fastcall] = ACTIONS(2713), - [anon_sym___thiscall] = ACTIONS(2713), - [anon_sym___vectorcall] = ACTIONS(2713), - [anon_sym_LBRACE] = ACTIONS(2715), - [anon_sym_LBRACK] = ACTIONS(2713), - [anon_sym_static] = ACTIONS(2713), - [anon_sym_register] = ACTIONS(2713), - [anon_sym_inline] = ACTIONS(2713), - [anon_sym_thread_local] = ACTIONS(2713), - [anon_sym_const] = ACTIONS(2713), - [anon_sym_volatile] = ACTIONS(2713), - [anon_sym_restrict] = ACTIONS(2713), - [anon_sym__Atomic] = ACTIONS(2713), - [anon_sym_mutable] = ACTIONS(2713), - [anon_sym_constexpr] = ACTIONS(2713), - [anon_sym_constinit] = ACTIONS(2713), - [anon_sym_consteval] = ACTIONS(2713), - [anon_sym_signed] = ACTIONS(2713), - [anon_sym_unsigned] = ACTIONS(2713), - [anon_sym_long] = ACTIONS(2713), - [anon_sym_short] = ACTIONS(2713), - [sym_primitive_type] = ACTIONS(2713), - [anon_sym_enum] = ACTIONS(2713), - [anon_sym_class] = ACTIONS(2713), - [anon_sym_struct] = ACTIONS(2713), - [anon_sym_union] = ACTIONS(2713), - [anon_sym_if] = ACTIONS(2713), - [anon_sym_switch] = ACTIONS(2713), - [anon_sym_case] = ACTIONS(2713), - [anon_sym_default] = ACTIONS(2713), - [anon_sym_while] = ACTIONS(2713), - [anon_sym_do] = ACTIONS(2713), - [anon_sym_for] = ACTIONS(2713), - [anon_sym_return] = ACTIONS(2713), - [anon_sym_break] = ACTIONS(2713), - [anon_sym_continue] = ACTIONS(2713), - [anon_sym_goto] = ACTIONS(2713), - [anon_sym_DASH_DASH] = ACTIONS(2715), - [anon_sym_PLUS_PLUS] = ACTIONS(2715), - [anon_sym_sizeof] = ACTIONS(2713), - [sym_number_literal] = ACTIONS(2715), - [anon_sym_L_SQUOTE] = ACTIONS(2715), - [anon_sym_u_SQUOTE] = ACTIONS(2715), - [anon_sym_U_SQUOTE] = ACTIONS(2715), - [anon_sym_u8_SQUOTE] = ACTIONS(2715), - [anon_sym_SQUOTE] = ACTIONS(2715), - [anon_sym_L_DQUOTE] = ACTIONS(2715), - [anon_sym_u_DQUOTE] = ACTIONS(2715), - [anon_sym_U_DQUOTE] = ACTIONS(2715), - [anon_sym_u8_DQUOTE] = ACTIONS(2715), - [anon_sym_DQUOTE] = ACTIONS(2715), - [sym_true] = ACTIONS(2713), - [sym_false] = ACTIONS(2713), - [sym_null] = ACTIONS(2713), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2713), - [anon_sym_decltype] = ACTIONS(2713), - [anon_sym_virtual] = ACTIONS(2713), - [anon_sym_explicit] = ACTIONS(2713), - [anon_sym_typename] = ACTIONS(2713), - [anon_sym_template] = ACTIONS(2713), - [anon_sym_operator] = ACTIONS(2713), - [anon_sym_try] = ACTIONS(2713), - [anon_sym_delete] = ACTIONS(2713), - [anon_sym_throw] = ACTIONS(2713), - [anon_sym_namespace] = ACTIONS(2713), - [anon_sym_using] = ACTIONS(2713), - [anon_sym_static_assert] = ACTIONS(2713), - [anon_sym_concept] = ACTIONS(2713), - [anon_sym_co_return] = ACTIONS(2713), - [anon_sym_co_yield] = ACTIONS(2713), - [anon_sym_co_await] = ACTIONS(2713), - [anon_sym_new] = ACTIONS(2713), - [anon_sym_requires] = ACTIONS(2713), - [sym_this] = ACTIONS(2713), - [sym_nullptr] = ACTIONS(2713), - [sym_raw_string_literal] = ACTIONS(2715), + [627] = { + [ts_builtin_sym_end] = ACTIONS(2581), + [sym_identifier] = ACTIONS(2579), + [aux_sym_preproc_include_token1] = ACTIONS(2579), + [aux_sym_preproc_def_token1] = ACTIONS(2579), + [aux_sym_preproc_if_token1] = ACTIONS(2579), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2579), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2579), + [sym_preproc_directive] = ACTIONS(2579), + [anon_sym_LPAREN2] = ACTIONS(2581), + [anon_sym_BANG] = ACTIONS(2581), + [anon_sym_TILDE] = ACTIONS(2581), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_STAR] = ACTIONS(2581), + [anon_sym_AMP_AMP] = ACTIONS(2581), + [anon_sym_AMP] = ACTIONS(2579), + [anon_sym_SEMI] = ACTIONS(2581), + [anon_sym_typedef] = ACTIONS(2579), + [anon_sym_extern] = ACTIONS(2579), + [anon_sym___attribute__] = ACTIONS(2579), + [anon_sym_COLON_COLON] = ACTIONS(2581), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2581), + [anon_sym___declspec] = ACTIONS(2579), + [anon_sym___based] = ACTIONS(2579), + [anon_sym___cdecl] = ACTIONS(2579), + [anon_sym___clrcall] = ACTIONS(2579), + [anon_sym___stdcall] = ACTIONS(2579), + [anon_sym___fastcall] = ACTIONS(2579), + [anon_sym___thiscall] = ACTIONS(2579), + [anon_sym___vectorcall] = ACTIONS(2579), + [anon_sym_LBRACE] = ACTIONS(2581), + [anon_sym_LBRACK] = ACTIONS(2579), + [anon_sym_static] = ACTIONS(2579), + [anon_sym_register] = ACTIONS(2579), + [anon_sym_inline] = ACTIONS(2579), + [anon_sym_thread_local] = ACTIONS(2579), + [anon_sym_const] = ACTIONS(2579), + [anon_sym_volatile] = ACTIONS(2579), + [anon_sym_restrict] = ACTIONS(2579), + [anon_sym__Atomic] = ACTIONS(2579), + [anon_sym_mutable] = ACTIONS(2579), + [anon_sym_constexpr] = ACTIONS(2579), + [anon_sym_constinit] = ACTIONS(2579), + [anon_sym_consteval] = ACTIONS(2579), + [anon_sym_signed] = ACTIONS(2579), + [anon_sym_unsigned] = ACTIONS(2579), + [anon_sym_long] = ACTIONS(2579), + [anon_sym_short] = ACTIONS(2579), + [sym_primitive_type] = ACTIONS(2579), + [anon_sym_enum] = ACTIONS(2579), + [anon_sym_class] = ACTIONS(2579), + [anon_sym_struct] = ACTIONS(2579), + [anon_sym_union] = ACTIONS(2579), + [anon_sym_if] = ACTIONS(2579), + [anon_sym_else] = ACTIONS(2579), + [anon_sym_switch] = ACTIONS(2579), + [anon_sym_case] = ACTIONS(2579), + [anon_sym_default] = ACTIONS(2579), + [anon_sym_while] = ACTIONS(2579), + [anon_sym_do] = ACTIONS(2579), + [anon_sym_for] = ACTIONS(2579), + [anon_sym_return] = ACTIONS(2579), + [anon_sym_break] = ACTIONS(2579), + [anon_sym_continue] = ACTIONS(2579), + [anon_sym_goto] = ACTIONS(2579), + [anon_sym_not] = ACTIONS(2579), + [anon_sym_compl] = ACTIONS(2579), + [anon_sym_DASH_DASH] = ACTIONS(2581), + [anon_sym_PLUS_PLUS] = ACTIONS(2581), + [anon_sym_sizeof] = ACTIONS(2579), + [sym_number_literal] = ACTIONS(2581), + [anon_sym_L_SQUOTE] = ACTIONS(2581), + [anon_sym_u_SQUOTE] = ACTIONS(2581), + [anon_sym_U_SQUOTE] = ACTIONS(2581), + [anon_sym_u8_SQUOTE] = ACTIONS(2581), + [anon_sym_SQUOTE] = ACTIONS(2581), + [anon_sym_L_DQUOTE] = ACTIONS(2581), + [anon_sym_u_DQUOTE] = ACTIONS(2581), + [anon_sym_U_DQUOTE] = ACTIONS(2581), + [anon_sym_u8_DQUOTE] = ACTIONS(2581), + [anon_sym_DQUOTE] = ACTIONS(2581), + [sym_true] = ACTIONS(2579), + [sym_false] = ACTIONS(2579), + [sym_null] = ACTIONS(2579), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2579), + [anon_sym_decltype] = ACTIONS(2579), + [anon_sym_virtual] = ACTIONS(2579), + [anon_sym_explicit] = ACTIONS(2579), + [anon_sym_typename] = ACTIONS(2579), + [anon_sym_template] = ACTIONS(2579), + [anon_sym_operator] = ACTIONS(2579), + [anon_sym_try] = ACTIONS(2579), + [anon_sym_delete] = ACTIONS(2579), + [anon_sym_throw] = ACTIONS(2579), + [anon_sym_namespace] = ACTIONS(2579), + [anon_sym_using] = ACTIONS(2579), + [anon_sym_static_assert] = ACTIONS(2579), + [anon_sym_concept] = ACTIONS(2579), + [anon_sym_co_return] = ACTIONS(2579), + [anon_sym_co_yield] = ACTIONS(2579), + [anon_sym_co_await] = ACTIONS(2579), + [anon_sym_new] = ACTIONS(2579), + [anon_sym_requires] = ACTIONS(2579), + [sym_this] = ACTIONS(2579), + [sym_nullptr] = ACTIONS(2579), + [sym_raw_string_literal] = ACTIONS(2581), }, - [1014] = { - [sym_identifier] = ACTIONS(2773), - [aux_sym_preproc_include_token1] = ACTIONS(2773), - [aux_sym_preproc_def_token1] = ACTIONS(2773), - [aux_sym_preproc_if_token1] = ACTIONS(2773), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2773), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2773), - [sym_preproc_directive] = ACTIONS(2773), - [anon_sym_LPAREN2] = ACTIONS(2775), - [anon_sym_BANG] = ACTIONS(2775), - [anon_sym_TILDE] = ACTIONS(2775), - [anon_sym_DASH] = ACTIONS(2773), - [anon_sym_PLUS] = ACTIONS(2773), - [anon_sym_STAR] = ACTIONS(2775), - [anon_sym_AMP_AMP] = ACTIONS(2775), - [anon_sym_AMP] = ACTIONS(2773), - [anon_sym_SEMI] = ACTIONS(2775), - [anon_sym_typedef] = ACTIONS(2773), - [anon_sym_extern] = ACTIONS(2773), - [anon_sym___attribute__] = ACTIONS(2773), - [anon_sym_COLON_COLON] = ACTIONS(2775), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2775), - [anon_sym___declspec] = ACTIONS(2773), - [anon_sym___based] = ACTIONS(2773), - [anon_sym___cdecl] = ACTIONS(2773), - [anon_sym___clrcall] = ACTIONS(2773), - [anon_sym___stdcall] = ACTIONS(2773), - [anon_sym___fastcall] = ACTIONS(2773), - [anon_sym___thiscall] = ACTIONS(2773), - [anon_sym___vectorcall] = ACTIONS(2773), - [anon_sym_LBRACE] = ACTIONS(2775), - [anon_sym_RBRACE] = ACTIONS(2775), - [anon_sym_LBRACK] = ACTIONS(2773), - [anon_sym_static] = ACTIONS(2773), - [anon_sym_register] = ACTIONS(2773), - [anon_sym_inline] = ACTIONS(2773), - [anon_sym_thread_local] = ACTIONS(2773), - [anon_sym_const] = ACTIONS(2773), - [anon_sym_volatile] = ACTIONS(2773), - [anon_sym_restrict] = ACTIONS(2773), - [anon_sym__Atomic] = ACTIONS(2773), - [anon_sym_mutable] = ACTIONS(2773), - [anon_sym_constexpr] = ACTIONS(2773), - [anon_sym_constinit] = ACTIONS(2773), - [anon_sym_consteval] = ACTIONS(2773), - [anon_sym_signed] = ACTIONS(2773), - [anon_sym_unsigned] = ACTIONS(2773), - [anon_sym_long] = ACTIONS(2773), - [anon_sym_short] = ACTIONS(2773), - [sym_primitive_type] = ACTIONS(2773), - [anon_sym_enum] = ACTIONS(2773), - [anon_sym_class] = ACTIONS(2773), - [anon_sym_struct] = ACTIONS(2773), - [anon_sym_union] = ACTIONS(2773), - [anon_sym_if] = ACTIONS(2773), - [anon_sym_switch] = ACTIONS(2773), - [anon_sym_case] = ACTIONS(2773), - [anon_sym_default] = ACTIONS(2773), - [anon_sym_while] = ACTIONS(2773), - [anon_sym_do] = ACTIONS(2773), - [anon_sym_for] = ACTIONS(2773), - [anon_sym_return] = ACTIONS(2773), - [anon_sym_break] = ACTIONS(2773), - [anon_sym_continue] = ACTIONS(2773), - [anon_sym_goto] = ACTIONS(2773), - [anon_sym_DASH_DASH] = ACTIONS(2775), - [anon_sym_PLUS_PLUS] = ACTIONS(2775), - [anon_sym_sizeof] = ACTIONS(2773), - [sym_number_literal] = ACTIONS(2775), - [anon_sym_L_SQUOTE] = ACTIONS(2775), - [anon_sym_u_SQUOTE] = ACTIONS(2775), - [anon_sym_U_SQUOTE] = ACTIONS(2775), - [anon_sym_u8_SQUOTE] = ACTIONS(2775), - [anon_sym_SQUOTE] = ACTIONS(2775), - [anon_sym_L_DQUOTE] = ACTIONS(2775), - [anon_sym_u_DQUOTE] = ACTIONS(2775), - [anon_sym_U_DQUOTE] = ACTIONS(2775), - [anon_sym_u8_DQUOTE] = ACTIONS(2775), - [anon_sym_DQUOTE] = ACTIONS(2775), - [sym_true] = ACTIONS(2773), - [sym_false] = ACTIONS(2773), - [sym_null] = ACTIONS(2773), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2773), - [anon_sym_decltype] = ACTIONS(2773), - [anon_sym_virtual] = ACTIONS(2773), - [anon_sym_explicit] = ACTIONS(2773), - [anon_sym_typename] = ACTIONS(2773), - [anon_sym_template] = ACTIONS(2773), - [anon_sym_operator] = ACTIONS(2773), - [anon_sym_try] = ACTIONS(2773), - [anon_sym_delete] = ACTIONS(2773), - [anon_sym_throw] = ACTIONS(2773), - [anon_sym_namespace] = ACTIONS(2773), - [anon_sym_using] = ACTIONS(2773), - [anon_sym_static_assert] = ACTIONS(2773), - [anon_sym_concept] = ACTIONS(2773), - [anon_sym_co_return] = ACTIONS(2773), - [anon_sym_co_yield] = ACTIONS(2773), - [anon_sym_co_await] = ACTIONS(2773), - [anon_sym_new] = ACTIONS(2773), - [anon_sym_requires] = ACTIONS(2773), - [sym_this] = ACTIONS(2773), - [sym_nullptr] = ACTIONS(2773), - [sym_raw_string_literal] = ACTIONS(2775), + [628] = { + [ts_builtin_sym_end] = ACTIONS(2561), + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1015] = { - [ts_builtin_sym_end] = ACTIONS(2707), - [sym_identifier] = ACTIONS(2705), - [aux_sym_preproc_include_token1] = ACTIONS(2705), - [aux_sym_preproc_def_token1] = ACTIONS(2705), - [aux_sym_preproc_if_token1] = ACTIONS(2705), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2705), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2705), - [sym_preproc_directive] = ACTIONS(2705), - [anon_sym_LPAREN2] = ACTIONS(2707), - [anon_sym_BANG] = ACTIONS(2707), - [anon_sym_TILDE] = ACTIONS(2707), - [anon_sym_DASH] = ACTIONS(2705), - [anon_sym_PLUS] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2707), - [anon_sym_AMP_AMP] = ACTIONS(2707), - [anon_sym_AMP] = ACTIONS(2705), - [anon_sym_SEMI] = ACTIONS(2707), - [anon_sym_typedef] = ACTIONS(2705), - [anon_sym_extern] = ACTIONS(2705), - [anon_sym___attribute__] = ACTIONS(2705), - [anon_sym_COLON_COLON] = ACTIONS(2707), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2707), - [anon_sym___declspec] = ACTIONS(2705), - [anon_sym___based] = ACTIONS(2705), - [anon_sym___cdecl] = ACTIONS(2705), - [anon_sym___clrcall] = ACTIONS(2705), - [anon_sym___stdcall] = ACTIONS(2705), - [anon_sym___fastcall] = ACTIONS(2705), - [anon_sym___thiscall] = ACTIONS(2705), - [anon_sym___vectorcall] = ACTIONS(2705), - [anon_sym_LBRACE] = ACTIONS(2707), - [anon_sym_LBRACK] = ACTIONS(2705), - [anon_sym_static] = ACTIONS(2705), - [anon_sym_register] = ACTIONS(2705), - [anon_sym_inline] = ACTIONS(2705), - [anon_sym_thread_local] = ACTIONS(2705), - [anon_sym_const] = ACTIONS(2705), - [anon_sym_volatile] = ACTIONS(2705), - [anon_sym_restrict] = ACTIONS(2705), - [anon_sym__Atomic] = ACTIONS(2705), - [anon_sym_mutable] = ACTIONS(2705), - [anon_sym_constexpr] = ACTIONS(2705), - [anon_sym_constinit] = ACTIONS(2705), - [anon_sym_consteval] = ACTIONS(2705), - [anon_sym_signed] = ACTIONS(2705), - [anon_sym_unsigned] = ACTIONS(2705), - [anon_sym_long] = ACTIONS(2705), - [anon_sym_short] = ACTIONS(2705), - [sym_primitive_type] = ACTIONS(2705), - [anon_sym_enum] = ACTIONS(2705), - [anon_sym_class] = ACTIONS(2705), - [anon_sym_struct] = ACTIONS(2705), - [anon_sym_union] = ACTIONS(2705), - [anon_sym_if] = ACTIONS(2705), - [anon_sym_switch] = ACTIONS(2705), - [anon_sym_case] = ACTIONS(2705), - [anon_sym_default] = ACTIONS(2705), - [anon_sym_while] = ACTIONS(2705), - [anon_sym_do] = ACTIONS(2705), - [anon_sym_for] = ACTIONS(2705), - [anon_sym_return] = ACTIONS(2705), - [anon_sym_break] = ACTIONS(2705), - [anon_sym_continue] = ACTIONS(2705), - [anon_sym_goto] = ACTIONS(2705), - [anon_sym_DASH_DASH] = ACTIONS(2707), - [anon_sym_PLUS_PLUS] = ACTIONS(2707), - [anon_sym_sizeof] = ACTIONS(2705), - [sym_number_literal] = ACTIONS(2707), - [anon_sym_L_SQUOTE] = ACTIONS(2707), - [anon_sym_u_SQUOTE] = ACTIONS(2707), - [anon_sym_U_SQUOTE] = ACTIONS(2707), - [anon_sym_u8_SQUOTE] = ACTIONS(2707), - [anon_sym_SQUOTE] = ACTIONS(2707), - [anon_sym_L_DQUOTE] = ACTIONS(2707), - [anon_sym_u_DQUOTE] = ACTIONS(2707), - [anon_sym_U_DQUOTE] = ACTIONS(2707), - [anon_sym_u8_DQUOTE] = ACTIONS(2707), - [anon_sym_DQUOTE] = ACTIONS(2707), - [sym_true] = ACTIONS(2705), - [sym_false] = ACTIONS(2705), - [sym_null] = ACTIONS(2705), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2705), - [anon_sym_decltype] = ACTIONS(2705), - [anon_sym_virtual] = ACTIONS(2705), - [anon_sym_explicit] = ACTIONS(2705), - [anon_sym_typename] = ACTIONS(2705), - [anon_sym_template] = ACTIONS(2705), - [anon_sym_operator] = ACTIONS(2705), - [anon_sym_try] = ACTIONS(2705), - [anon_sym_delete] = ACTIONS(2705), - [anon_sym_throw] = ACTIONS(2705), - [anon_sym_namespace] = ACTIONS(2705), - [anon_sym_using] = ACTIONS(2705), - [anon_sym_static_assert] = ACTIONS(2705), - [anon_sym_concept] = ACTIONS(2705), - [anon_sym_co_return] = ACTIONS(2705), - [anon_sym_co_yield] = ACTIONS(2705), - [anon_sym_co_await] = ACTIONS(2705), - [anon_sym_new] = ACTIONS(2705), - [anon_sym_requires] = ACTIONS(2705), - [sym_this] = ACTIONS(2705), - [sym_nullptr] = ACTIONS(2705), - [sym_raw_string_literal] = ACTIONS(2707), + [629] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token2] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1016] = { - [ts_builtin_sym_end] = ACTIONS(2661), - [sym_identifier] = ACTIONS(2659), - [aux_sym_preproc_include_token1] = ACTIONS(2659), - [aux_sym_preproc_def_token1] = ACTIONS(2659), - [aux_sym_preproc_if_token1] = ACTIONS(2659), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2659), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2659), - [sym_preproc_directive] = ACTIONS(2659), - [anon_sym_LPAREN2] = ACTIONS(2661), - [anon_sym_BANG] = ACTIONS(2661), - [anon_sym_TILDE] = ACTIONS(2661), - [anon_sym_DASH] = ACTIONS(2659), - [anon_sym_PLUS] = ACTIONS(2659), - [anon_sym_STAR] = ACTIONS(2661), - [anon_sym_AMP_AMP] = ACTIONS(2661), - [anon_sym_AMP] = ACTIONS(2659), - [anon_sym_SEMI] = ACTIONS(2661), - [anon_sym_typedef] = ACTIONS(2659), - [anon_sym_extern] = ACTIONS(2659), - [anon_sym___attribute__] = ACTIONS(2659), - [anon_sym_COLON_COLON] = ACTIONS(2661), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2661), - [anon_sym___declspec] = ACTIONS(2659), - [anon_sym___based] = ACTIONS(2659), - [anon_sym___cdecl] = ACTIONS(2659), - [anon_sym___clrcall] = ACTIONS(2659), - [anon_sym___stdcall] = ACTIONS(2659), - [anon_sym___fastcall] = ACTIONS(2659), - [anon_sym___thiscall] = ACTIONS(2659), - [anon_sym___vectorcall] = ACTIONS(2659), - [anon_sym_LBRACE] = ACTIONS(2661), - [anon_sym_LBRACK] = ACTIONS(2659), - [anon_sym_static] = ACTIONS(2659), - [anon_sym_register] = ACTIONS(2659), - [anon_sym_inline] = ACTIONS(2659), - [anon_sym_thread_local] = ACTIONS(2659), - [anon_sym_const] = ACTIONS(2659), - [anon_sym_volatile] = ACTIONS(2659), - [anon_sym_restrict] = ACTIONS(2659), - [anon_sym__Atomic] = ACTIONS(2659), - [anon_sym_mutable] = ACTIONS(2659), - [anon_sym_constexpr] = ACTIONS(2659), - [anon_sym_constinit] = ACTIONS(2659), - [anon_sym_consteval] = ACTIONS(2659), - [anon_sym_signed] = ACTIONS(2659), - [anon_sym_unsigned] = ACTIONS(2659), - [anon_sym_long] = ACTIONS(2659), - [anon_sym_short] = ACTIONS(2659), - [sym_primitive_type] = ACTIONS(2659), - [anon_sym_enum] = ACTIONS(2659), - [anon_sym_class] = ACTIONS(2659), - [anon_sym_struct] = ACTIONS(2659), - [anon_sym_union] = ACTIONS(2659), - [anon_sym_if] = ACTIONS(2659), - [anon_sym_switch] = ACTIONS(2659), - [anon_sym_case] = ACTIONS(2659), - [anon_sym_default] = ACTIONS(2659), - [anon_sym_while] = ACTIONS(2659), - [anon_sym_do] = ACTIONS(2659), - [anon_sym_for] = ACTIONS(2659), - [anon_sym_return] = ACTIONS(2659), - [anon_sym_break] = ACTIONS(2659), - [anon_sym_continue] = ACTIONS(2659), - [anon_sym_goto] = ACTIONS(2659), - [anon_sym_DASH_DASH] = ACTIONS(2661), - [anon_sym_PLUS_PLUS] = ACTIONS(2661), - [anon_sym_sizeof] = ACTIONS(2659), - [sym_number_literal] = ACTIONS(2661), - [anon_sym_L_SQUOTE] = ACTIONS(2661), - [anon_sym_u_SQUOTE] = ACTIONS(2661), - [anon_sym_U_SQUOTE] = ACTIONS(2661), - [anon_sym_u8_SQUOTE] = ACTIONS(2661), - [anon_sym_SQUOTE] = ACTIONS(2661), - [anon_sym_L_DQUOTE] = ACTIONS(2661), - [anon_sym_u_DQUOTE] = ACTIONS(2661), - [anon_sym_U_DQUOTE] = ACTIONS(2661), - [anon_sym_u8_DQUOTE] = ACTIONS(2661), - [anon_sym_DQUOTE] = ACTIONS(2661), - [sym_true] = ACTIONS(2659), - [sym_false] = ACTIONS(2659), - [sym_null] = ACTIONS(2659), + [630] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token2] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2659), - [anon_sym_decltype] = ACTIONS(2659), - [anon_sym_virtual] = ACTIONS(2659), - [anon_sym_explicit] = ACTIONS(2659), - [anon_sym_typename] = ACTIONS(2659), - [anon_sym_template] = ACTIONS(2659), - [anon_sym_operator] = ACTIONS(2659), - [anon_sym_try] = ACTIONS(2659), - [anon_sym_delete] = ACTIONS(2659), - [anon_sym_throw] = ACTIONS(2659), - [anon_sym_namespace] = ACTIONS(2659), - [anon_sym_using] = ACTIONS(2659), - [anon_sym_static_assert] = ACTIONS(2659), - [anon_sym_concept] = ACTIONS(2659), - [anon_sym_co_return] = ACTIONS(2659), - [anon_sym_co_yield] = ACTIONS(2659), - [anon_sym_co_await] = ACTIONS(2659), - [anon_sym_new] = ACTIONS(2659), - [anon_sym_requires] = ACTIONS(2659), - [sym_this] = ACTIONS(2659), - [sym_nullptr] = ACTIONS(2659), - [sym_raw_string_literal] = ACTIONS(2661), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1017] = { - [ts_builtin_sym_end] = ACTIONS(2615), - [sym_identifier] = ACTIONS(2613), - [aux_sym_preproc_include_token1] = ACTIONS(2613), - [aux_sym_preproc_def_token1] = ACTIONS(2613), - [aux_sym_preproc_if_token1] = ACTIONS(2613), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2613), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2613), - [sym_preproc_directive] = ACTIONS(2613), - [anon_sym_LPAREN2] = ACTIONS(2615), - [anon_sym_BANG] = ACTIONS(2615), - [anon_sym_TILDE] = ACTIONS(2615), - [anon_sym_DASH] = ACTIONS(2613), - [anon_sym_PLUS] = ACTIONS(2613), - [anon_sym_STAR] = ACTIONS(2615), - [anon_sym_AMP_AMP] = ACTIONS(2615), - [anon_sym_AMP] = ACTIONS(2613), - [anon_sym_SEMI] = ACTIONS(2615), - [anon_sym_typedef] = ACTIONS(2613), - [anon_sym_extern] = ACTIONS(2613), - [anon_sym___attribute__] = ACTIONS(2613), - [anon_sym_COLON_COLON] = ACTIONS(2615), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2615), - [anon_sym___declspec] = ACTIONS(2613), - [anon_sym___based] = ACTIONS(2613), - [anon_sym___cdecl] = ACTIONS(2613), - [anon_sym___clrcall] = ACTIONS(2613), - [anon_sym___stdcall] = ACTIONS(2613), - [anon_sym___fastcall] = ACTIONS(2613), - [anon_sym___thiscall] = ACTIONS(2613), - [anon_sym___vectorcall] = ACTIONS(2613), - [anon_sym_LBRACE] = ACTIONS(2615), - [anon_sym_LBRACK] = ACTIONS(2613), - [anon_sym_static] = ACTIONS(2613), - [anon_sym_register] = ACTIONS(2613), - [anon_sym_inline] = ACTIONS(2613), - [anon_sym_thread_local] = ACTIONS(2613), - [anon_sym_const] = ACTIONS(2613), - [anon_sym_volatile] = ACTIONS(2613), - [anon_sym_restrict] = ACTIONS(2613), - [anon_sym__Atomic] = ACTIONS(2613), - [anon_sym_mutable] = ACTIONS(2613), - [anon_sym_constexpr] = ACTIONS(2613), - [anon_sym_constinit] = ACTIONS(2613), - [anon_sym_consteval] = ACTIONS(2613), - [anon_sym_signed] = ACTIONS(2613), - [anon_sym_unsigned] = ACTIONS(2613), - [anon_sym_long] = ACTIONS(2613), - [anon_sym_short] = ACTIONS(2613), - [sym_primitive_type] = ACTIONS(2613), - [anon_sym_enum] = ACTIONS(2613), - [anon_sym_class] = ACTIONS(2613), - [anon_sym_struct] = ACTIONS(2613), - [anon_sym_union] = ACTIONS(2613), - [anon_sym_if] = ACTIONS(2613), - [anon_sym_switch] = ACTIONS(2613), - [anon_sym_case] = ACTIONS(2613), - [anon_sym_default] = ACTIONS(2613), - [anon_sym_while] = ACTIONS(2613), - [anon_sym_do] = ACTIONS(2613), - [anon_sym_for] = ACTIONS(2613), - [anon_sym_return] = ACTIONS(2613), - [anon_sym_break] = ACTIONS(2613), - [anon_sym_continue] = ACTIONS(2613), - [anon_sym_goto] = ACTIONS(2613), - [anon_sym_DASH_DASH] = ACTIONS(2615), - [anon_sym_PLUS_PLUS] = ACTIONS(2615), - [anon_sym_sizeof] = ACTIONS(2613), - [sym_number_literal] = ACTIONS(2615), - [anon_sym_L_SQUOTE] = ACTIONS(2615), - [anon_sym_u_SQUOTE] = ACTIONS(2615), - [anon_sym_U_SQUOTE] = ACTIONS(2615), - [anon_sym_u8_SQUOTE] = ACTIONS(2615), - [anon_sym_SQUOTE] = ACTIONS(2615), - [anon_sym_L_DQUOTE] = ACTIONS(2615), - [anon_sym_u_DQUOTE] = ACTIONS(2615), - [anon_sym_U_DQUOTE] = ACTIONS(2615), - [anon_sym_u8_DQUOTE] = ACTIONS(2615), - [anon_sym_DQUOTE] = ACTIONS(2615), - [sym_true] = ACTIONS(2613), - [sym_false] = ACTIONS(2613), - [sym_null] = ACTIONS(2613), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2613), - [anon_sym_decltype] = ACTIONS(2613), - [anon_sym_virtual] = ACTIONS(2613), - [anon_sym_explicit] = ACTIONS(2613), - [anon_sym_typename] = ACTIONS(2613), - [anon_sym_template] = ACTIONS(2613), - [anon_sym_operator] = ACTIONS(2613), - [anon_sym_try] = ACTIONS(2613), - [anon_sym_delete] = ACTIONS(2613), - [anon_sym_throw] = ACTIONS(2613), - [anon_sym_namespace] = ACTIONS(2613), - [anon_sym_using] = ACTIONS(2613), - [anon_sym_static_assert] = ACTIONS(2613), - [anon_sym_concept] = ACTIONS(2613), - [anon_sym_co_return] = ACTIONS(2613), - [anon_sym_co_yield] = ACTIONS(2613), - [anon_sym_co_await] = ACTIONS(2613), - [anon_sym_new] = ACTIONS(2613), - [anon_sym_requires] = ACTIONS(2613), - [sym_this] = ACTIONS(2613), - [sym_nullptr] = ACTIONS(2613), - [sym_raw_string_literal] = ACTIONS(2615), + [631] = { + [ts_builtin_sym_end] = ACTIONS(2597), + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1018] = { - [ts_builtin_sym_end] = ACTIONS(2631), - [sym_identifier] = ACTIONS(2629), - [aux_sym_preproc_include_token1] = ACTIONS(2629), - [aux_sym_preproc_def_token1] = ACTIONS(2629), - [aux_sym_preproc_if_token1] = ACTIONS(2629), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2629), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2629), - [sym_preproc_directive] = ACTIONS(2629), - [anon_sym_LPAREN2] = ACTIONS(2631), - [anon_sym_BANG] = ACTIONS(2631), - [anon_sym_TILDE] = ACTIONS(2631), - [anon_sym_DASH] = ACTIONS(2629), - [anon_sym_PLUS] = ACTIONS(2629), - [anon_sym_STAR] = ACTIONS(2631), - [anon_sym_AMP_AMP] = ACTIONS(2631), - [anon_sym_AMP] = ACTIONS(2629), - [anon_sym_SEMI] = ACTIONS(2631), - [anon_sym_typedef] = ACTIONS(2629), - [anon_sym_extern] = ACTIONS(2629), - [anon_sym___attribute__] = ACTIONS(2629), - [anon_sym_COLON_COLON] = ACTIONS(2631), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2631), - [anon_sym___declspec] = ACTIONS(2629), - [anon_sym___based] = ACTIONS(2629), - [anon_sym___cdecl] = ACTIONS(2629), - [anon_sym___clrcall] = ACTIONS(2629), - [anon_sym___stdcall] = ACTIONS(2629), - [anon_sym___fastcall] = ACTIONS(2629), - [anon_sym___thiscall] = ACTIONS(2629), - [anon_sym___vectorcall] = ACTIONS(2629), - [anon_sym_LBRACE] = ACTIONS(2631), - [anon_sym_LBRACK] = ACTIONS(2629), - [anon_sym_static] = ACTIONS(2629), - [anon_sym_register] = ACTIONS(2629), - [anon_sym_inline] = ACTIONS(2629), - [anon_sym_thread_local] = ACTIONS(2629), - [anon_sym_const] = ACTIONS(2629), - [anon_sym_volatile] = ACTIONS(2629), - [anon_sym_restrict] = ACTIONS(2629), - [anon_sym__Atomic] = ACTIONS(2629), - [anon_sym_mutable] = ACTIONS(2629), - [anon_sym_constexpr] = ACTIONS(2629), - [anon_sym_constinit] = ACTIONS(2629), - [anon_sym_consteval] = ACTIONS(2629), - [anon_sym_signed] = ACTIONS(2629), - [anon_sym_unsigned] = ACTIONS(2629), - [anon_sym_long] = ACTIONS(2629), - [anon_sym_short] = ACTIONS(2629), - [sym_primitive_type] = ACTIONS(2629), - [anon_sym_enum] = ACTIONS(2629), - [anon_sym_class] = ACTIONS(2629), - [anon_sym_struct] = ACTIONS(2629), - [anon_sym_union] = ACTIONS(2629), - [anon_sym_if] = ACTIONS(2629), - [anon_sym_switch] = ACTIONS(2629), - [anon_sym_case] = ACTIONS(2629), - [anon_sym_default] = ACTIONS(2629), - [anon_sym_while] = ACTIONS(2629), - [anon_sym_do] = ACTIONS(2629), - [anon_sym_for] = ACTIONS(2629), - [anon_sym_return] = ACTIONS(2629), - [anon_sym_break] = ACTIONS(2629), - [anon_sym_continue] = ACTIONS(2629), - [anon_sym_goto] = ACTIONS(2629), - [anon_sym_DASH_DASH] = ACTIONS(2631), - [anon_sym_PLUS_PLUS] = ACTIONS(2631), - [anon_sym_sizeof] = ACTIONS(2629), - [sym_number_literal] = ACTIONS(2631), - [anon_sym_L_SQUOTE] = ACTIONS(2631), - [anon_sym_u_SQUOTE] = ACTIONS(2631), - [anon_sym_U_SQUOTE] = ACTIONS(2631), - [anon_sym_u8_SQUOTE] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2631), - [anon_sym_L_DQUOTE] = ACTIONS(2631), - [anon_sym_u_DQUOTE] = ACTIONS(2631), - [anon_sym_U_DQUOTE] = ACTIONS(2631), - [anon_sym_u8_DQUOTE] = ACTIONS(2631), - [anon_sym_DQUOTE] = ACTIONS(2631), - [sym_true] = ACTIONS(2629), - [sym_false] = ACTIONS(2629), - [sym_null] = ACTIONS(2629), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2629), - [anon_sym_decltype] = ACTIONS(2629), - [anon_sym_virtual] = ACTIONS(2629), - [anon_sym_explicit] = ACTIONS(2629), - [anon_sym_typename] = ACTIONS(2629), - [anon_sym_template] = ACTIONS(2629), - [anon_sym_operator] = ACTIONS(2629), - [anon_sym_try] = ACTIONS(2629), - [anon_sym_delete] = ACTIONS(2629), - [anon_sym_throw] = ACTIONS(2629), - [anon_sym_namespace] = ACTIONS(2629), - [anon_sym_using] = ACTIONS(2629), - [anon_sym_static_assert] = ACTIONS(2629), - [anon_sym_concept] = ACTIONS(2629), - [anon_sym_co_return] = ACTIONS(2629), - [anon_sym_co_yield] = ACTIONS(2629), - [anon_sym_co_await] = ACTIONS(2629), - [anon_sym_new] = ACTIONS(2629), - [anon_sym_requires] = ACTIONS(2629), - [sym_this] = ACTIONS(2629), - [sym_nullptr] = ACTIONS(2629), - [sym_raw_string_literal] = ACTIONS(2631), + [632] = { + [ts_builtin_sym_end] = ACTIONS(2597), + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1019] = { - [sym_identifier] = ACTIONS(2721), - [aux_sym_preproc_include_token1] = ACTIONS(2721), - [aux_sym_preproc_def_token1] = ACTIONS(2721), - [aux_sym_preproc_if_token1] = ACTIONS(2721), - [aux_sym_preproc_if_token2] = ACTIONS(2721), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2721), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2721), - [sym_preproc_directive] = ACTIONS(2721), - [anon_sym_LPAREN2] = ACTIONS(2723), - [anon_sym_BANG] = ACTIONS(2723), - [anon_sym_TILDE] = ACTIONS(2723), - [anon_sym_DASH] = ACTIONS(2721), - [anon_sym_PLUS] = ACTIONS(2721), - [anon_sym_STAR] = ACTIONS(2723), - [anon_sym_AMP_AMP] = ACTIONS(2723), - [anon_sym_AMP] = ACTIONS(2721), - [anon_sym_SEMI] = ACTIONS(2723), - [anon_sym_typedef] = ACTIONS(2721), - [anon_sym_extern] = ACTIONS(2721), - [anon_sym___attribute__] = ACTIONS(2721), - [anon_sym_COLON_COLON] = ACTIONS(2723), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2723), - [anon_sym___declspec] = ACTIONS(2721), - [anon_sym___based] = ACTIONS(2721), - [anon_sym___cdecl] = ACTIONS(2721), - [anon_sym___clrcall] = ACTIONS(2721), - [anon_sym___stdcall] = ACTIONS(2721), - [anon_sym___fastcall] = ACTIONS(2721), - [anon_sym___thiscall] = ACTIONS(2721), - [anon_sym___vectorcall] = ACTIONS(2721), - [anon_sym_LBRACE] = ACTIONS(2723), - [anon_sym_LBRACK] = ACTIONS(2721), - [anon_sym_static] = ACTIONS(2721), - [anon_sym_register] = ACTIONS(2721), - [anon_sym_inline] = ACTIONS(2721), - [anon_sym_thread_local] = ACTIONS(2721), - [anon_sym_const] = ACTIONS(2721), - [anon_sym_volatile] = ACTIONS(2721), - [anon_sym_restrict] = ACTIONS(2721), - [anon_sym__Atomic] = ACTIONS(2721), - [anon_sym_mutable] = ACTIONS(2721), - [anon_sym_constexpr] = ACTIONS(2721), - [anon_sym_constinit] = ACTIONS(2721), - [anon_sym_consteval] = ACTIONS(2721), - [anon_sym_signed] = ACTIONS(2721), - [anon_sym_unsigned] = ACTIONS(2721), - [anon_sym_long] = ACTIONS(2721), - [anon_sym_short] = ACTIONS(2721), - [sym_primitive_type] = ACTIONS(2721), - [anon_sym_enum] = ACTIONS(2721), - [anon_sym_class] = ACTIONS(2721), - [anon_sym_struct] = ACTIONS(2721), - [anon_sym_union] = ACTIONS(2721), - [anon_sym_if] = ACTIONS(2721), - [anon_sym_switch] = ACTIONS(2721), - [anon_sym_case] = ACTIONS(2721), - [anon_sym_default] = ACTIONS(2721), - [anon_sym_while] = ACTIONS(2721), - [anon_sym_do] = ACTIONS(2721), - [anon_sym_for] = ACTIONS(2721), - [anon_sym_return] = ACTIONS(2721), - [anon_sym_break] = ACTIONS(2721), - [anon_sym_continue] = ACTIONS(2721), - [anon_sym_goto] = ACTIONS(2721), - [anon_sym_DASH_DASH] = ACTIONS(2723), - [anon_sym_PLUS_PLUS] = ACTIONS(2723), - [anon_sym_sizeof] = ACTIONS(2721), - [sym_number_literal] = ACTIONS(2723), - [anon_sym_L_SQUOTE] = ACTIONS(2723), - [anon_sym_u_SQUOTE] = ACTIONS(2723), - [anon_sym_U_SQUOTE] = ACTIONS(2723), - [anon_sym_u8_SQUOTE] = ACTIONS(2723), - [anon_sym_SQUOTE] = ACTIONS(2723), - [anon_sym_L_DQUOTE] = ACTIONS(2723), - [anon_sym_u_DQUOTE] = ACTIONS(2723), - [anon_sym_U_DQUOTE] = ACTIONS(2723), - [anon_sym_u8_DQUOTE] = ACTIONS(2723), - [anon_sym_DQUOTE] = ACTIONS(2723), - [sym_true] = ACTIONS(2721), - [sym_false] = ACTIONS(2721), - [sym_null] = ACTIONS(2721), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2721), - [anon_sym_decltype] = ACTIONS(2721), - [anon_sym_virtual] = ACTIONS(2721), - [anon_sym_explicit] = ACTIONS(2721), - [anon_sym_typename] = ACTIONS(2721), - [anon_sym_template] = ACTIONS(2721), - [anon_sym_operator] = ACTIONS(2721), - [anon_sym_try] = ACTIONS(2721), - [anon_sym_delete] = ACTIONS(2721), - [anon_sym_throw] = ACTIONS(2721), - [anon_sym_namespace] = ACTIONS(2721), - [anon_sym_using] = ACTIONS(2721), - [anon_sym_static_assert] = ACTIONS(2721), - [anon_sym_concept] = ACTIONS(2721), - [anon_sym_co_return] = ACTIONS(2721), - [anon_sym_co_yield] = ACTIONS(2721), - [anon_sym_co_await] = ACTIONS(2721), - [anon_sym_new] = ACTIONS(2721), - [anon_sym_requires] = ACTIONS(2721), - [sym_this] = ACTIONS(2721), - [sym_nullptr] = ACTIONS(2721), - [sym_raw_string_literal] = ACTIONS(2723), + [633] = { + [ts_builtin_sym_end] = ACTIONS(2561), + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1020] = { - [ts_builtin_sym_end] = ACTIONS(2657), - [sym_identifier] = ACTIONS(2655), - [aux_sym_preproc_include_token1] = ACTIONS(2655), - [aux_sym_preproc_def_token1] = ACTIONS(2655), - [aux_sym_preproc_if_token1] = ACTIONS(2655), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2655), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2655), - [sym_preproc_directive] = ACTIONS(2655), - [anon_sym_LPAREN2] = ACTIONS(2657), - [anon_sym_BANG] = ACTIONS(2657), - [anon_sym_TILDE] = ACTIONS(2657), - [anon_sym_DASH] = ACTIONS(2655), - [anon_sym_PLUS] = ACTIONS(2655), - [anon_sym_STAR] = ACTIONS(2657), - [anon_sym_AMP_AMP] = ACTIONS(2657), - [anon_sym_AMP] = ACTIONS(2655), - [anon_sym_SEMI] = ACTIONS(2657), - [anon_sym_typedef] = ACTIONS(2655), - [anon_sym_extern] = ACTIONS(2655), - [anon_sym___attribute__] = ACTIONS(2655), - [anon_sym_COLON_COLON] = ACTIONS(2657), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2657), - [anon_sym___declspec] = ACTIONS(2655), - [anon_sym___based] = ACTIONS(2655), - [anon_sym___cdecl] = ACTIONS(2655), - [anon_sym___clrcall] = ACTIONS(2655), - [anon_sym___stdcall] = ACTIONS(2655), - [anon_sym___fastcall] = ACTIONS(2655), - [anon_sym___thiscall] = ACTIONS(2655), - [anon_sym___vectorcall] = ACTIONS(2655), - [anon_sym_LBRACE] = ACTIONS(2657), - [anon_sym_LBRACK] = ACTIONS(2655), - [anon_sym_static] = ACTIONS(2655), - [anon_sym_register] = ACTIONS(2655), - [anon_sym_inline] = ACTIONS(2655), - [anon_sym_thread_local] = ACTIONS(2655), - [anon_sym_const] = ACTIONS(2655), - [anon_sym_volatile] = ACTIONS(2655), - [anon_sym_restrict] = ACTIONS(2655), - [anon_sym__Atomic] = ACTIONS(2655), - [anon_sym_mutable] = ACTIONS(2655), - [anon_sym_constexpr] = ACTIONS(2655), - [anon_sym_constinit] = ACTIONS(2655), - [anon_sym_consteval] = ACTIONS(2655), - [anon_sym_signed] = ACTIONS(2655), - [anon_sym_unsigned] = ACTIONS(2655), - [anon_sym_long] = ACTIONS(2655), - [anon_sym_short] = ACTIONS(2655), - [sym_primitive_type] = ACTIONS(2655), - [anon_sym_enum] = ACTIONS(2655), - [anon_sym_class] = ACTIONS(2655), - [anon_sym_struct] = ACTIONS(2655), - [anon_sym_union] = ACTIONS(2655), - [anon_sym_if] = ACTIONS(2655), - [anon_sym_switch] = ACTIONS(2655), - [anon_sym_case] = ACTIONS(2655), - [anon_sym_default] = ACTIONS(2655), - [anon_sym_while] = ACTIONS(2655), - [anon_sym_do] = ACTIONS(2655), - [anon_sym_for] = ACTIONS(2655), - [anon_sym_return] = ACTIONS(2655), - [anon_sym_break] = ACTIONS(2655), - [anon_sym_continue] = ACTIONS(2655), - [anon_sym_goto] = ACTIONS(2655), - [anon_sym_DASH_DASH] = ACTIONS(2657), - [anon_sym_PLUS_PLUS] = ACTIONS(2657), - [anon_sym_sizeof] = ACTIONS(2655), - [sym_number_literal] = ACTIONS(2657), - [anon_sym_L_SQUOTE] = ACTIONS(2657), - [anon_sym_u_SQUOTE] = ACTIONS(2657), - [anon_sym_U_SQUOTE] = ACTIONS(2657), - [anon_sym_u8_SQUOTE] = ACTIONS(2657), - [anon_sym_SQUOTE] = ACTIONS(2657), - [anon_sym_L_DQUOTE] = ACTIONS(2657), - [anon_sym_u_DQUOTE] = ACTIONS(2657), - [anon_sym_U_DQUOTE] = ACTIONS(2657), - [anon_sym_u8_DQUOTE] = ACTIONS(2657), - [anon_sym_DQUOTE] = ACTIONS(2657), - [sym_true] = ACTIONS(2655), - [sym_false] = ACTIONS(2655), - [sym_null] = ACTIONS(2655), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2655), - [anon_sym_decltype] = ACTIONS(2655), - [anon_sym_virtual] = ACTIONS(2655), - [anon_sym_explicit] = ACTIONS(2655), - [anon_sym_typename] = ACTIONS(2655), - [anon_sym_template] = ACTIONS(2655), - [anon_sym_operator] = ACTIONS(2655), - [anon_sym_try] = ACTIONS(2655), - [anon_sym_delete] = ACTIONS(2655), - [anon_sym_throw] = ACTIONS(2655), - [anon_sym_namespace] = ACTIONS(2655), - [anon_sym_using] = ACTIONS(2655), - [anon_sym_static_assert] = ACTIONS(2655), - [anon_sym_concept] = ACTIONS(2655), - [anon_sym_co_return] = ACTIONS(2655), - [anon_sym_co_yield] = ACTIONS(2655), - [anon_sym_co_await] = ACTIONS(2655), - [anon_sym_new] = ACTIONS(2655), - [anon_sym_requires] = ACTIONS(2655), - [sym_this] = ACTIONS(2655), - [sym_nullptr] = ACTIONS(2655), - [sym_raw_string_literal] = ACTIONS(2657), - }, - [1021] = { - [ts_builtin_sym_end] = ACTIONS(2799), - [sym_identifier] = ACTIONS(2797), - [aux_sym_preproc_include_token1] = ACTIONS(2797), - [aux_sym_preproc_def_token1] = ACTIONS(2797), - [aux_sym_preproc_if_token1] = ACTIONS(2797), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2797), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2797), - [sym_preproc_directive] = ACTIONS(2797), - [anon_sym_LPAREN2] = ACTIONS(2799), - [anon_sym_BANG] = ACTIONS(2799), - [anon_sym_TILDE] = ACTIONS(2799), - [anon_sym_DASH] = ACTIONS(2797), - [anon_sym_PLUS] = ACTIONS(2797), - [anon_sym_STAR] = ACTIONS(2799), - [anon_sym_AMP_AMP] = ACTIONS(2799), - [anon_sym_AMP] = ACTIONS(2797), - [anon_sym_SEMI] = ACTIONS(2799), - [anon_sym_typedef] = ACTIONS(2797), - [anon_sym_extern] = ACTIONS(2797), - [anon_sym___attribute__] = ACTIONS(2797), - [anon_sym_COLON_COLON] = ACTIONS(2799), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2799), - [anon_sym___declspec] = ACTIONS(2797), - [anon_sym___based] = ACTIONS(2797), - [anon_sym___cdecl] = ACTIONS(2797), - [anon_sym___clrcall] = ACTIONS(2797), - [anon_sym___stdcall] = ACTIONS(2797), - [anon_sym___fastcall] = ACTIONS(2797), - [anon_sym___thiscall] = ACTIONS(2797), - [anon_sym___vectorcall] = ACTIONS(2797), - [anon_sym_LBRACE] = ACTIONS(2799), - [anon_sym_LBRACK] = ACTIONS(2797), - [anon_sym_static] = ACTIONS(2797), - [anon_sym_register] = ACTIONS(2797), - [anon_sym_inline] = ACTIONS(2797), - [anon_sym_thread_local] = ACTIONS(2797), - [anon_sym_const] = ACTIONS(2797), - [anon_sym_volatile] = ACTIONS(2797), - [anon_sym_restrict] = ACTIONS(2797), - [anon_sym__Atomic] = ACTIONS(2797), - [anon_sym_mutable] = ACTIONS(2797), - [anon_sym_constexpr] = ACTIONS(2797), - [anon_sym_constinit] = ACTIONS(2797), - [anon_sym_consteval] = ACTIONS(2797), - [anon_sym_signed] = ACTIONS(2797), - [anon_sym_unsigned] = ACTIONS(2797), - [anon_sym_long] = ACTIONS(2797), - [anon_sym_short] = ACTIONS(2797), - [sym_primitive_type] = ACTIONS(2797), - [anon_sym_enum] = ACTIONS(2797), - [anon_sym_class] = ACTIONS(2797), - [anon_sym_struct] = ACTIONS(2797), - [anon_sym_union] = ACTIONS(2797), - [anon_sym_if] = ACTIONS(2797), - [anon_sym_switch] = ACTIONS(2797), - [anon_sym_case] = ACTIONS(2797), - [anon_sym_default] = ACTIONS(2797), - [anon_sym_while] = ACTIONS(2797), - [anon_sym_do] = ACTIONS(2797), - [anon_sym_for] = ACTIONS(2797), - [anon_sym_return] = ACTIONS(2797), - [anon_sym_break] = ACTIONS(2797), - [anon_sym_continue] = ACTIONS(2797), - [anon_sym_goto] = ACTIONS(2797), - [anon_sym_DASH_DASH] = ACTIONS(2799), - [anon_sym_PLUS_PLUS] = ACTIONS(2799), - [anon_sym_sizeof] = ACTIONS(2797), - [sym_number_literal] = ACTIONS(2799), - [anon_sym_L_SQUOTE] = ACTIONS(2799), - [anon_sym_u_SQUOTE] = ACTIONS(2799), - [anon_sym_U_SQUOTE] = ACTIONS(2799), - [anon_sym_u8_SQUOTE] = ACTIONS(2799), - [anon_sym_SQUOTE] = ACTIONS(2799), - [anon_sym_L_DQUOTE] = ACTIONS(2799), - [anon_sym_u_DQUOTE] = ACTIONS(2799), - [anon_sym_U_DQUOTE] = ACTIONS(2799), - [anon_sym_u8_DQUOTE] = ACTIONS(2799), - [anon_sym_DQUOTE] = ACTIONS(2799), - [sym_true] = ACTIONS(2797), - [sym_false] = ACTIONS(2797), - [sym_null] = ACTIONS(2797), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2797), - [anon_sym_decltype] = ACTIONS(2797), - [anon_sym_virtual] = ACTIONS(2797), - [anon_sym_explicit] = ACTIONS(2797), - [anon_sym_typename] = ACTIONS(2797), - [anon_sym_template] = ACTIONS(2797), - [anon_sym_operator] = ACTIONS(2797), - [anon_sym_try] = ACTIONS(2797), - [anon_sym_delete] = ACTIONS(2797), - [anon_sym_throw] = ACTIONS(2797), - [anon_sym_namespace] = ACTIONS(2797), - [anon_sym_using] = ACTIONS(2797), - [anon_sym_static_assert] = ACTIONS(2797), - [anon_sym_concept] = ACTIONS(2797), - [anon_sym_co_return] = ACTIONS(2797), - [anon_sym_co_yield] = ACTIONS(2797), - [anon_sym_co_await] = ACTIONS(2797), - [anon_sym_new] = ACTIONS(2797), - [anon_sym_requires] = ACTIONS(2797), - [sym_this] = ACTIONS(2797), - [sym_nullptr] = ACTIONS(2797), - [sym_raw_string_literal] = ACTIONS(2799), - }, - [1022] = { - [ts_builtin_sym_end] = ACTIONS(2711), - [sym_identifier] = ACTIONS(2709), - [aux_sym_preproc_include_token1] = ACTIONS(2709), - [aux_sym_preproc_def_token1] = ACTIONS(2709), - [aux_sym_preproc_if_token1] = ACTIONS(2709), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2709), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2709), - [sym_preproc_directive] = ACTIONS(2709), - [anon_sym_LPAREN2] = ACTIONS(2711), - [anon_sym_BANG] = ACTIONS(2711), - [anon_sym_TILDE] = ACTIONS(2711), - [anon_sym_DASH] = ACTIONS(2709), - [anon_sym_PLUS] = ACTIONS(2709), - [anon_sym_STAR] = ACTIONS(2711), - [anon_sym_AMP_AMP] = ACTIONS(2711), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym_SEMI] = ACTIONS(2711), - [anon_sym_typedef] = ACTIONS(2709), - [anon_sym_extern] = ACTIONS(2709), - [anon_sym___attribute__] = ACTIONS(2709), - [anon_sym_COLON_COLON] = ACTIONS(2711), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2711), - [anon_sym___declspec] = ACTIONS(2709), - [anon_sym___based] = ACTIONS(2709), - [anon_sym___cdecl] = ACTIONS(2709), - [anon_sym___clrcall] = ACTIONS(2709), - [anon_sym___stdcall] = ACTIONS(2709), - [anon_sym___fastcall] = ACTIONS(2709), - [anon_sym___thiscall] = ACTIONS(2709), - [anon_sym___vectorcall] = ACTIONS(2709), - [anon_sym_LBRACE] = ACTIONS(2711), - [anon_sym_LBRACK] = ACTIONS(2709), - [anon_sym_static] = ACTIONS(2709), - [anon_sym_register] = ACTIONS(2709), - [anon_sym_inline] = ACTIONS(2709), - [anon_sym_thread_local] = ACTIONS(2709), - [anon_sym_const] = ACTIONS(2709), - [anon_sym_volatile] = ACTIONS(2709), - [anon_sym_restrict] = ACTIONS(2709), - [anon_sym__Atomic] = ACTIONS(2709), - [anon_sym_mutable] = ACTIONS(2709), - [anon_sym_constexpr] = ACTIONS(2709), - [anon_sym_constinit] = ACTIONS(2709), - [anon_sym_consteval] = ACTIONS(2709), - [anon_sym_signed] = ACTIONS(2709), - [anon_sym_unsigned] = ACTIONS(2709), - [anon_sym_long] = ACTIONS(2709), - [anon_sym_short] = ACTIONS(2709), - [sym_primitive_type] = ACTIONS(2709), - [anon_sym_enum] = ACTIONS(2709), - [anon_sym_class] = ACTIONS(2709), - [anon_sym_struct] = ACTIONS(2709), - [anon_sym_union] = ACTIONS(2709), - [anon_sym_if] = ACTIONS(2709), - [anon_sym_switch] = ACTIONS(2709), - [anon_sym_case] = ACTIONS(2709), - [anon_sym_default] = ACTIONS(2709), - [anon_sym_while] = ACTIONS(2709), - [anon_sym_do] = ACTIONS(2709), - [anon_sym_for] = ACTIONS(2709), - [anon_sym_return] = ACTIONS(2709), - [anon_sym_break] = ACTIONS(2709), - [anon_sym_continue] = ACTIONS(2709), - [anon_sym_goto] = ACTIONS(2709), - [anon_sym_DASH_DASH] = ACTIONS(2711), - [anon_sym_PLUS_PLUS] = ACTIONS(2711), - [anon_sym_sizeof] = ACTIONS(2709), - [sym_number_literal] = ACTIONS(2711), - [anon_sym_L_SQUOTE] = ACTIONS(2711), - [anon_sym_u_SQUOTE] = ACTIONS(2711), - [anon_sym_U_SQUOTE] = ACTIONS(2711), - [anon_sym_u8_SQUOTE] = ACTIONS(2711), - [anon_sym_SQUOTE] = ACTIONS(2711), - [anon_sym_L_DQUOTE] = ACTIONS(2711), - [anon_sym_u_DQUOTE] = ACTIONS(2711), - [anon_sym_U_DQUOTE] = ACTIONS(2711), - [anon_sym_u8_DQUOTE] = ACTIONS(2711), - [anon_sym_DQUOTE] = ACTIONS(2711), - [sym_true] = ACTIONS(2709), - [sym_false] = ACTIONS(2709), - [sym_null] = ACTIONS(2709), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2709), - [anon_sym_decltype] = ACTIONS(2709), - [anon_sym_virtual] = ACTIONS(2709), - [anon_sym_explicit] = ACTIONS(2709), - [anon_sym_typename] = ACTIONS(2709), - [anon_sym_template] = ACTIONS(2709), - [anon_sym_operator] = ACTIONS(2709), - [anon_sym_try] = ACTIONS(2709), - [anon_sym_delete] = ACTIONS(2709), - [anon_sym_throw] = ACTIONS(2709), - [anon_sym_namespace] = ACTIONS(2709), - [anon_sym_using] = ACTIONS(2709), - [anon_sym_static_assert] = ACTIONS(2709), - [anon_sym_concept] = ACTIONS(2709), - [anon_sym_co_return] = ACTIONS(2709), - [anon_sym_co_yield] = ACTIONS(2709), - [anon_sym_co_await] = ACTIONS(2709), - [anon_sym_new] = ACTIONS(2709), - [anon_sym_requires] = ACTIONS(2709), - [sym_this] = ACTIONS(2709), - [sym_nullptr] = ACTIONS(2709), - [sym_raw_string_literal] = ACTIONS(2711), - }, - [1023] = { - [ts_builtin_sym_end] = ACTIONS(2719), - [sym_identifier] = ACTIONS(2717), - [aux_sym_preproc_include_token1] = ACTIONS(2717), - [aux_sym_preproc_def_token1] = ACTIONS(2717), - [aux_sym_preproc_if_token1] = ACTIONS(2717), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2717), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2717), - [sym_preproc_directive] = ACTIONS(2717), - [anon_sym_LPAREN2] = ACTIONS(2719), - [anon_sym_BANG] = ACTIONS(2719), - [anon_sym_TILDE] = ACTIONS(2719), - [anon_sym_DASH] = ACTIONS(2717), - [anon_sym_PLUS] = ACTIONS(2717), - [anon_sym_STAR] = ACTIONS(2719), - [anon_sym_AMP_AMP] = ACTIONS(2719), - [anon_sym_AMP] = ACTIONS(2717), - [anon_sym_SEMI] = ACTIONS(2719), - [anon_sym_typedef] = ACTIONS(2717), - [anon_sym_extern] = ACTIONS(2717), - [anon_sym___attribute__] = ACTIONS(2717), - [anon_sym_COLON_COLON] = ACTIONS(2719), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2719), - [anon_sym___declspec] = ACTIONS(2717), - [anon_sym___based] = ACTIONS(2717), - [anon_sym___cdecl] = ACTIONS(2717), - [anon_sym___clrcall] = ACTIONS(2717), - [anon_sym___stdcall] = ACTIONS(2717), - [anon_sym___fastcall] = ACTIONS(2717), - [anon_sym___thiscall] = ACTIONS(2717), - [anon_sym___vectorcall] = ACTIONS(2717), - [anon_sym_LBRACE] = ACTIONS(2719), - [anon_sym_LBRACK] = ACTIONS(2717), - [anon_sym_static] = ACTIONS(2717), - [anon_sym_register] = ACTIONS(2717), - [anon_sym_inline] = ACTIONS(2717), - [anon_sym_thread_local] = ACTIONS(2717), - [anon_sym_const] = ACTIONS(2717), - [anon_sym_volatile] = ACTIONS(2717), - [anon_sym_restrict] = ACTIONS(2717), - [anon_sym__Atomic] = ACTIONS(2717), - [anon_sym_mutable] = ACTIONS(2717), - [anon_sym_constexpr] = ACTIONS(2717), - [anon_sym_constinit] = ACTIONS(2717), - [anon_sym_consteval] = ACTIONS(2717), - [anon_sym_signed] = ACTIONS(2717), - [anon_sym_unsigned] = ACTIONS(2717), - [anon_sym_long] = ACTIONS(2717), - [anon_sym_short] = ACTIONS(2717), - [sym_primitive_type] = ACTIONS(2717), - [anon_sym_enum] = ACTIONS(2717), - [anon_sym_class] = ACTIONS(2717), - [anon_sym_struct] = ACTIONS(2717), - [anon_sym_union] = ACTIONS(2717), - [anon_sym_if] = ACTIONS(2717), - [anon_sym_switch] = ACTIONS(2717), - [anon_sym_case] = ACTIONS(2717), - [anon_sym_default] = ACTIONS(2717), - [anon_sym_while] = ACTIONS(2717), - [anon_sym_do] = ACTIONS(2717), - [anon_sym_for] = ACTIONS(2717), - [anon_sym_return] = ACTIONS(2717), - [anon_sym_break] = ACTIONS(2717), - [anon_sym_continue] = ACTIONS(2717), - [anon_sym_goto] = ACTIONS(2717), - [anon_sym_DASH_DASH] = ACTIONS(2719), - [anon_sym_PLUS_PLUS] = ACTIONS(2719), - [anon_sym_sizeof] = ACTIONS(2717), - [sym_number_literal] = ACTIONS(2719), - [anon_sym_L_SQUOTE] = ACTIONS(2719), - [anon_sym_u_SQUOTE] = ACTIONS(2719), - [anon_sym_U_SQUOTE] = ACTIONS(2719), - [anon_sym_u8_SQUOTE] = ACTIONS(2719), - [anon_sym_SQUOTE] = ACTIONS(2719), - [anon_sym_L_DQUOTE] = ACTIONS(2719), - [anon_sym_u_DQUOTE] = ACTIONS(2719), - [anon_sym_U_DQUOTE] = ACTIONS(2719), - [anon_sym_u8_DQUOTE] = ACTIONS(2719), - [anon_sym_DQUOTE] = ACTIONS(2719), - [sym_true] = ACTIONS(2717), - [sym_false] = ACTIONS(2717), - [sym_null] = ACTIONS(2717), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2717), - [anon_sym_decltype] = ACTIONS(2717), - [anon_sym_virtual] = ACTIONS(2717), - [anon_sym_explicit] = ACTIONS(2717), - [anon_sym_typename] = ACTIONS(2717), - [anon_sym_template] = ACTIONS(2717), - [anon_sym_operator] = ACTIONS(2717), - [anon_sym_try] = ACTIONS(2717), - [anon_sym_delete] = ACTIONS(2717), - [anon_sym_throw] = ACTIONS(2717), - [anon_sym_namespace] = ACTIONS(2717), - [anon_sym_using] = ACTIONS(2717), - [anon_sym_static_assert] = ACTIONS(2717), - [anon_sym_concept] = ACTIONS(2717), - [anon_sym_co_return] = ACTIONS(2717), - [anon_sym_co_yield] = ACTIONS(2717), - [anon_sym_co_await] = ACTIONS(2717), - [anon_sym_new] = ACTIONS(2717), - [anon_sym_requires] = ACTIONS(2717), - [sym_this] = ACTIONS(2717), - [sym_nullptr] = ACTIONS(2717), - [sym_raw_string_literal] = ACTIONS(2719), - }, - [1024] = { - [sym_identifier] = ACTIONS(2757), - [aux_sym_preproc_include_token1] = ACTIONS(2757), - [aux_sym_preproc_def_token1] = ACTIONS(2757), - [aux_sym_preproc_if_token1] = ACTIONS(2757), - [aux_sym_preproc_if_token2] = ACTIONS(2757), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2757), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2757), - [sym_preproc_directive] = ACTIONS(2757), - [anon_sym_LPAREN2] = ACTIONS(2759), - [anon_sym_BANG] = ACTIONS(2759), - [anon_sym_TILDE] = ACTIONS(2759), - [anon_sym_DASH] = ACTIONS(2757), - [anon_sym_PLUS] = ACTIONS(2757), - [anon_sym_STAR] = ACTIONS(2759), - [anon_sym_AMP_AMP] = ACTIONS(2759), - [anon_sym_AMP] = ACTIONS(2757), - [anon_sym_SEMI] = ACTIONS(2759), - [anon_sym_typedef] = ACTIONS(2757), - [anon_sym_extern] = ACTIONS(2757), - [anon_sym___attribute__] = ACTIONS(2757), - [anon_sym_COLON_COLON] = ACTIONS(2759), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2759), - [anon_sym___declspec] = ACTIONS(2757), - [anon_sym___based] = ACTIONS(2757), - [anon_sym___cdecl] = ACTIONS(2757), - [anon_sym___clrcall] = ACTIONS(2757), - [anon_sym___stdcall] = ACTIONS(2757), - [anon_sym___fastcall] = ACTIONS(2757), - [anon_sym___thiscall] = ACTIONS(2757), - [anon_sym___vectorcall] = ACTIONS(2757), - [anon_sym_LBRACE] = ACTIONS(2759), - [anon_sym_LBRACK] = ACTIONS(2757), - [anon_sym_static] = ACTIONS(2757), - [anon_sym_register] = ACTIONS(2757), - [anon_sym_inline] = ACTIONS(2757), - [anon_sym_thread_local] = ACTIONS(2757), - [anon_sym_const] = ACTIONS(2757), - [anon_sym_volatile] = ACTIONS(2757), - [anon_sym_restrict] = ACTIONS(2757), - [anon_sym__Atomic] = ACTIONS(2757), - [anon_sym_mutable] = ACTIONS(2757), - [anon_sym_constexpr] = ACTIONS(2757), - [anon_sym_constinit] = ACTIONS(2757), - [anon_sym_consteval] = ACTIONS(2757), - [anon_sym_signed] = ACTIONS(2757), - [anon_sym_unsigned] = ACTIONS(2757), - [anon_sym_long] = ACTIONS(2757), - [anon_sym_short] = ACTIONS(2757), - [sym_primitive_type] = ACTIONS(2757), - [anon_sym_enum] = ACTIONS(2757), - [anon_sym_class] = ACTIONS(2757), - [anon_sym_struct] = ACTIONS(2757), - [anon_sym_union] = ACTIONS(2757), - [anon_sym_if] = ACTIONS(2757), - [anon_sym_switch] = ACTIONS(2757), - [anon_sym_case] = ACTIONS(2757), - [anon_sym_default] = ACTIONS(2757), - [anon_sym_while] = ACTIONS(2757), - [anon_sym_do] = ACTIONS(2757), - [anon_sym_for] = ACTIONS(2757), - [anon_sym_return] = ACTIONS(2757), - [anon_sym_break] = ACTIONS(2757), - [anon_sym_continue] = ACTIONS(2757), - [anon_sym_goto] = ACTIONS(2757), - [anon_sym_DASH_DASH] = ACTIONS(2759), - [anon_sym_PLUS_PLUS] = ACTIONS(2759), - [anon_sym_sizeof] = ACTIONS(2757), - [sym_number_literal] = ACTIONS(2759), - [anon_sym_L_SQUOTE] = ACTIONS(2759), - [anon_sym_u_SQUOTE] = ACTIONS(2759), - [anon_sym_U_SQUOTE] = ACTIONS(2759), - [anon_sym_u8_SQUOTE] = ACTIONS(2759), - [anon_sym_SQUOTE] = ACTIONS(2759), - [anon_sym_L_DQUOTE] = ACTIONS(2759), - [anon_sym_u_DQUOTE] = ACTIONS(2759), - [anon_sym_U_DQUOTE] = ACTIONS(2759), - [anon_sym_u8_DQUOTE] = ACTIONS(2759), - [anon_sym_DQUOTE] = ACTIONS(2759), - [sym_true] = ACTIONS(2757), - [sym_false] = ACTIONS(2757), - [sym_null] = ACTIONS(2757), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2757), - [anon_sym_decltype] = ACTIONS(2757), - [anon_sym_virtual] = ACTIONS(2757), - [anon_sym_explicit] = ACTIONS(2757), - [anon_sym_typename] = ACTIONS(2757), - [anon_sym_template] = ACTIONS(2757), - [anon_sym_operator] = ACTIONS(2757), - [anon_sym_try] = ACTIONS(2757), - [anon_sym_delete] = ACTIONS(2757), - [anon_sym_throw] = ACTIONS(2757), - [anon_sym_namespace] = ACTIONS(2757), - [anon_sym_using] = ACTIONS(2757), - [anon_sym_static_assert] = ACTIONS(2757), - [anon_sym_concept] = ACTIONS(2757), - [anon_sym_co_return] = ACTIONS(2757), - [anon_sym_co_yield] = ACTIONS(2757), - [anon_sym_co_await] = ACTIONS(2757), - [anon_sym_new] = ACTIONS(2757), - [anon_sym_requires] = ACTIONS(2757), - [sym_this] = ACTIONS(2757), - [sym_nullptr] = ACTIONS(2757), - [sym_raw_string_literal] = ACTIONS(2759), - }, - [1025] = { - [sym_identifier] = ACTIONS(2685), - [aux_sym_preproc_include_token1] = ACTIONS(2685), - [aux_sym_preproc_def_token1] = ACTIONS(2685), - [aux_sym_preproc_if_token1] = ACTIONS(2685), - [aux_sym_preproc_if_token2] = ACTIONS(2685), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2685), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2685), - [sym_preproc_directive] = ACTIONS(2685), - [anon_sym_LPAREN2] = ACTIONS(2687), - [anon_sym_BANG] = ACTIONS(2687), - [anon_sym_TILDE] = ACTIONS(2687), - [anon_sym_DASH] = ACTIONS(2685), - [anon_sym_PLUS] = ACTIONS(2685), - [anon_sym_STAR] = ACTIONS(2687), - [anon_sym_AMP_AMP] = ACTIONS(2687), - [anon_sym_AMP] = ACTIONS(2685), - [anon_sym_SEMI] = ACTIONS(2687), - [anon_sym_typedef] = ACTIONS(2685), - [anon_sym_extern] = ACTIONS(2685), - [anon_sym___attribute__] = ACTIONS(2685), - [anon_sym_COLON_COLON] = ACTIONS(2687), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2687), - [anon_sym___declspec] = ACTIONS(2685), - [anon_sym___based] = ACTIONS(2685), - [anon_sym___cdecl] = ACTIONS(2685), - [anon_sym___clrcall] = ACTIONS(2685), - [anon_sym___stdcall] = ACTIONS(2685), - [anon_sym___fastcall] = ACTIONS(2685), - [anon_sym___thiscall] = ACTIONS(2685), - [anon_sym___vectorcall] = ACTIONS(2685), - [anon_sym_LBRACE] = ACTIONS(2687), - [anon_sym_LBRACK] = ACTIONS(2685), - [anon_sym_static] = ACTIONS(2685), - [anon_sym_register] = ACTIONS(2685), - [anon_sym_inline] = ACTIONS(2685), - [anon_sym_thread_local] = ACTIONS(2685), - [anon_sym_const] = ACTIONS(2685), - [anon_sym_volatile] = ACTIONS(2685), - [anon_sym_restrict] = ACTIONS(2685), - [anon_sym__Atomic] = ACTIONS(2685), - [anon_sym_mutable] = ACTIONS(2685), - [anon_sym_constexpr] = ACTIONS(2685), - [anon_sym_constinit] = ACTIONS(2685), - [anon_sym_consteval] = ACTIONS(2685), - [anon_sym_signed] = ACTIONS(2685), - [anon_sym_unsigned] = ACTIONS(2685), - [anon_sym_long] = ACTIONS(2685), - [anon_sym_short] = ACTIONS(2685), - [sym_primitive_type] = ACTIONS(2685), - [anon_sym_enum] = ACTIONS(2685), - [anon_sym_class] = ACTIONS(2685), - [anon_sym_struct] = ACTIONS(2685), - [anon_sym_union] = ACTIONS(2685), - [anon_sym_if] = ACTIONS(2685), - [anon_sym_switch] = ACTIONS(2685), - [anon_sym_case] = ACTIONS(2685), - [anon_sym_default] = ACTIONS(2685), - [anon_sym_while] = ACTIONS(2685), - [anon_sym_do] = ACTIONS(2685), - [anon_sym_for] = ACTIONS(2685), - [anon_sym_return] = ACTIONS(2685), - [anon_sym_break] = ACTIONS(2685), - [anon_sym_continue] = ACTIONS(2685), - [anon_sym_goto] = ACTIONS(2685), - [anon_sym_DASH_DASH] = ACTIONS(2687), - [anon_sym_PLUS_PLUS] = ACTIONS(2687), - [anon_sym_sizeof] = ACTIONS(2685), - [sym_number_literal] = ACTIONS(2687), - [anon_sym_L_SQUOTE] = ACTIONS(2687), - [anon_sym_u_SQUOTE] = ACTIONS(2687), - [anon_sym_U_SQUOTE] = ACTIONS(2687), - [anon_sym_u8_SQUOTE] = ACTIONS(2687), - [anon_sym_SQUOTE] = ACTIONS(2687), - [anon_sym_L_DQUOTE] = ACTIONS(2687), - [anon_sym_u_DQUOTE] = ACTIONS(2687), - [anon_sym_U_DQUOTE] = ACTIONS(2687), - [anon_sym_u8_DQUOTE] = ACTIONS(2687), - [anon_sym_DQUOTE] = ACTIONS(2687), - [sym_true] = ACTIONS(2685), - [sym_false] = ACTIONS(2685), - [sym_null] = ACTIONS(2685), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2685), - [anon_sym_decltype] = ACTIONS(2685), - [anon_sym_virtual] = ACTIONS(2685), - [anon_sym_explicit] = ACTIONS(2685), - [anon_sym_typename] = ACTIONS(2685), - [anon_sym_template] = ACTIONS(2685), - [anon_sym_operator] = ACTIONS(2685), - [anon_sym_try] = ACTIONS(2685), - [anon_sym_delete] = ACTIONS(2685), - [anon_sym_throw] = ACTIONS(2685), - [anon_sym_namespace] = ACTIONS(2685), - [anon_sym_using] = ACTIONS(2685), - [anon_sym_static_assert] = ACTIONS(2685), - [anon_sym_concept] = ACTIONS(2685), - [anon_sym_co_return] = ACTIONS(2685), - [anon_sym_co_yield] = ACTIONS(2685), - [anon_sym_co_await] = ACTIONS(2685), - [anon_sym_new] = ACTIONS(2685), - [anon_sym_requires] = ACTIONS(2685), - [sym_this] = ACTIONS(2685), - [sym_nullptr] = ACTIONS(2685), - [sym_raw_string_literal] = ACTIONS(2687), - }, - [1026] = { - [sym_identifier] = ACTIONS(2677), - [aux_sym_preproc_include_token1] = ACTIONS(2677), - [aux_sym_preproc_def_token1] = ACTIONS(2677), - [aux_sym_preproc_if_token1] = ACTIONS(2677), - [aux_sym_preproc_if_token2] = ACTIONS(2677), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2677), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2677), - [sym_preproc_directive] = ACTIONS(2677), - [anon_sym_LPAREN2] = ACTIONS(2679), - [anon_sym_BANG] = ACTIONS(2679), - [anon_sym_TILDE] = ACTIONS(2679), - [anon_sym_DASH] = ACTIONS(2677), - [anon_sym_PLUS] = ACTIONS(2677), - [anon_sym_STAR] = ACTIONS(2679), - [anon_sym_AMP_AMP] = ACTIONS(2679), - [anon_sym_AMP] = ACTIONS(2677), - [anon_sym_SEMI] = ACTIONS(2679), - [anon_sym_typedef] = ACTIONS(2677), - [anon_sym_extern] = ACTIONS(2677), - [anon_sym___attribute__] = ACTIONS(2677), - [anon_sym_COLON_COLON] = ACTIONS(2679), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2679), - [anon_sym___declspec] = ACTIONS(2677), - [anon_sym___based] = ACTIONS(2677), - [anon_sym___cdecl] = ACTIONS(2677), - [anon_sym___clrcall] = ACTIONS(2677), - [anon_sym___stdcall] = ACTIONS(2677), - [anon_sym___fastcall] = ACTIONS(2677), - [anon_sym___thiscall] = ACTIONS(2677), - [anon_sym___vectorcall] = ACTIONS(2677), - [anon_sym_LBRACE] = ACTIONS(2679), - [anon_sym_LBRACK] = ACTIONS(2677), - [anon_sym_static] = ACTIONS(2677), - [anon_sym_register] = ACTIONS(2677), - [anon_sym_inline] = ACTIONS(2677), - [anon_sym_thread_local] = ACTIONS(2677), - [anon_sym_const] = ACTIONS(2677), - [anon_sym_volatile] = ACTIONS(2677), - [anon_sym_restrict] = ACTIONS(2677), - [anon_sym__Atomic] = ACTIONS(2677), - [anon_sym_mutable] = ACTIONS(2677), - [anon_sym_constexpr] = ACTIONS(2677), - [anon_sym_constinit] = ACTIONS(2677), - [anon_sym_consteval] = ACTIONS(2677), - [anon_sym_signed] = ACTIONS(2677), - [anon_sym_unsigned] = ACTIONS(2677), - [anon_sym_long] = ACTIONS(2677), - [anon_sym_short] = ACTIONS(2677), - [sym_primitive_type] = ACTIONS(2677), - [anon_sym_enum] = ACTIONS(2677), - [anon_sym_class] = ACTIONS(2677), - [anon_sym_struct] = ACTIONS(2677), - [anon_sym_union] = ACTIONS(2677), - [anon_sym_if] = ACTIONS(2677), - [anon_sym_switch] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2677), - [anon_sym_default] = ACTIONS(2677), - [anon_sym_while] = ACTIONS(2677), - [anon_sym_do] = ACTIONS(2677), - [anon_sym_for] = ACTIONS(2677), - [anon_sym_return] = ACTIONS(2677), - [anon_sym_break] = ACTIONS(2677), - [anon_sym_continue] = ACTIONS(2677), - [anon_sym_goto] = ACTIONS(2677), - [anon_sym_DASH_DASH] = ACTIONS(2679), - [anon_sym_PLUS_PLUS] = ACTIONS(2679), - [anon_sym_sizeof] = ACTIONS(2677), - [sym_number_literal] = ACTIONS(2679), - [anon_sym_L_SQUOTE] = ACTIONS(2679), - [anon_sym_u_SQUOTE] = ACTIONS(2679), - [anon_sym_U_SQUOTE] = ACTIONS(2679), - [anon_sym_u8_SQUOTE] = ACTIONS(2679), - [anon_sym_SQUOTE] = ACTIONS(2679), - [anon_sym_L_DQUOTE] = ACTIONS(2679), - [anon_sym_u_DQUOTE] = ACTIONS(2679), - [anon_sym_U_DQUOTE] = ACTIONS(2679), - [anon_sym_u8_DQUOTE] = ACTIONS(2679), - [anon_sym_DQUOTE] = ACTIONS(2679), - [sym_true] = ACTIONS(2677), - [sym_false] = ACTIONS(2677), - [sym_null] = ACTIONS(2677), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2677), - [anon_sym_decltype] = ACTIONS(2677), - [anon_sym_virtual] = ACTIONS(2677), - [anon_sym_explicit] = ACTIONS(2677), - [anon_sym_typename] = ACTIONS(2677), - [anon_sym_template] = ACTIONS(2677), - [anon_sym_operator] = ACTIONS(2677), - [anon_sym_try] = ACTIONS(2677), - [anon_sym_delete] = ACTIONS(2677), - [anon_sym_throw] = ACTIONS(2677), - [anon_sym_namespace] = ACTIONS(2677), - [anon_sym_using] = ACTIONS(2677), - [anon_sym_static_assert] = ACTIONS(2677), - [anon_sym_concept] = ACTIONS(2677), - [anon_sym_co_return] = ACTIONS(2677), - [anon_sym_co_yield] = ACTIONS(2677), - [anon_sym_co_await] = ACTIONS(2677), - [anon_sym_new] = ACTIONS(2677), - [anon_sym_requires] = ACTIONS(2677), - [sym_this] = ACTIONS(2677), - [sym_nullptr] = ACTIONS(2677), - [sym_raw_string_literal] = ACTIONS(2679), - }, - [1027] = { - [sym_identifier] = ACTIONS(2525), - [aux_sym_preproc_include_token1] = ACTIONS(2525), - [aux_sym_preproc_def_token1] = ACTIONS(2525), - [aux_sym_preproc_if_token1] = ACTIONS(2525), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2525), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2525), - [sym_preproc_directive] = ACTIONS(2525), - [anon_sym_LPAREN2] = ACTIONS(2527), - [anon_sym_BANG] = ACTIONS(2527), - [anon_sym_TILDE] = ACTIONS(2527), - [anon_sym_DASH] = ACTIONS(2525), - [anon_sym_PLUS] = ACTIONS(2525), - [anon_sym_STAR] = ACTIONS(2527), - [anon_sym_AMP_AMP] = ACTIONS(2527), - [anon_sym_AMP] = ACTIONS(2525), - [anon_sym_SEMI] = ACTIONS(2527), - [anon_sym_typedef] = ACTIONS(2525), - [anon_sym_extern] = ACTIONS(2525), - [anon_sym___attribute__] = ACTIONS(2525), - [anon_sym_COLON_COLON] = ACTIONS(2527), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2527), - [anon_sym___declspec] = ACTIONS(2525), - [anon_sym___based] = ACTIONS(2525), - [anon_sym___cdecl] = ACTIONS(2525), - [anon_sym___clrcall] = ACTIONS(2525), - [anon_sym___stdcall] = ACTIONS(2525), - [anon_sym___fastcall] = ACTIONS(2525), - [anon_sym___thiscall] = ACTIONS(2525), - [anon_sym___vectorcall] = ACTIONS(2525), - [anon_sym_LBRACE] = ACTIONS(2527), - [anon_sym_RBRACE] = ACTIONS(2527), - [anon_sym_LBRACK] = ACTIONS(2525), - [anon_sym_static] = ACTIONS(2525), - [anon_sym_register] = ACTIONS(2525), - [anon_sym_inline] = ACTIONS(2525), - [anon_sym_thread_local] = ACTIONS(2525), - [anon_sym_const] = ACTIONS(2525), - [anon_sym_volatile] = ACTIONS(2525), - [anon_sym_restrict] = ACTIONS(2525), - [anon_sym__Atomic] = ACTIONS(2525), - [anon_sym_mutable] = ACTIONS(2525), - [anon_sym_constexpr] = ACTIONS(2525), - [anon_sym_constinit] = ACTIONS(2525), - [anon_sym_consteval] = ACTIONS(2525), - [anon_sym_signed] = ACTIONS(2525), - [anon_sym_unsigned] = ACTIONS(2525), - [anon_sym_long] = ACTIONS(2525), - [anon_sym_short] = ACTIONS(2525), - [sym_primitive_type] = ACTIONS(2525), - [anon_sym_enum] = ACTIONS(2525), - [anon_sym_class] = ACTIONS(2525), - [anon_sym_struct] = ACTIONS(2525), - [anon_sym_union] = ACTIONS(2525), - [anon_sym_if] = ACTIONS(2525), - [anon_sym_switch] = ACTIONS(2525), - [anon_sym_case] = ACTIONS(2525), - [anon_sym_default] = ACTIONS(2525), - [anon_sym_while] = ACTIONS(2525), - [anon_sym_do] = ACTIONS(2525), - [anon_sym_for] = ACTIONS(2525), - [anon_sym_return] = ACTIONS(2525), - [anon_sym_break] = ACTIONS(2525), - [anon_sym_continue] = ACTIONS(2525), - [anon_sym_goto] = ACTIONS(2525), - [anon_sym_DASH_DASH] = ACTIONS(2527), - [anon_sym_PLUS_PLUS] = ACTIONS(2527), - [anon_sym_sizeof] = ACTIONS(2525), - [sym_number_literal] = ACTIONS(2527), - [anon_sym_L_SQUOTE] = ACTIONS(2527), - [anon_sym_u_SQUOTE] = ACTIONS(2527), - [anon_sym_U_SQUOTE] = ACTIONS(2527), - [anon_sym_u8_SQUOTE] = ACTIONS(2527), - [anon_sym_SQUOTE] = ACTIONS(2527), - [anon_sym_L_DQUOTE] = ACTIONS(2527), - [anon_sym_u_DQUOTE] = ACTIONS(2527), - [anon_sym_U_DQUOTE] = ACTIONS(2527), - [anon_sym_u8_DQUOTE] = ACTIONS(2527), - [anon_sym_DQUOTE] = ACTIONS(2527), - [sym_true] = ACTIONS(2525), - [sym_false] = ACTIONS(2525), - [sym_null] = ACTIONS(2525), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2525), - [anon_sym_decltype] = ACTIONS(2525), - [anon_sym_virtual] = ACTIONS(2525), - [anon_sym_explicit] = ACTIONS(2525), - [anon_sym_typename] = ACTIONS(2525), - [anon_sym_template] = ACTIONS(2525), - [anon_sym_operator] = ACTIONS(2525), - [anon_sym_try] = ACTIONS(2525), - [anon_sym_delete] = ACTIONS(2525), - [anon_sym_throw] = ACTIONS(2525), - [anon_sym_namespace] = ACTIONS(2525), - [anon_sym_using] = ACTIONS(2525), - [anon_sym_static_assert] = ACTIONS(2525), - [anon_sym_concept] = ACTIONS(2525), - [anon_sym_co_return] = ACTIONS(2525), - [anon_sym_co_yield] = ACTIONS(2525), - [anon_sym_co_await] = ACTIONS(2525), - [anon_sym_new] = ACTIONS(2525), - [anon_sym_requires] = ACTIONS(2525), - [sym_this] = ACTIONS(2525), - [sym_nullptr] = ACTIONS(2525), - [sym_raw_string_literal] = ACTIONS(2527), - }, - [1028] = { - [sym_identifier] = ACTIONS(2651), - [aux_sym_preproc_include_token1] = ACTIONS(2651), - [aux_sym_preproc_def_token1] = ACTIONS(2651), - [aux_sym_preproc_if_token1] = ACTIONS(2651), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2651), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2651), - [sym_preproc_directive] = ACTIONS(2651), - [anon_sym_LPAREN2] = ACTIONS(2653), - [anon_sym_BANG] = ACTIONS(2653), - [anon_sym_TILDE] = ACTIONS(2653), - [anon_sym_DASH] = ACTIONS(2651), - [anon_sym_PLUS] = ACTIONS(2651), - [anon_sym_STAR] = ACTIONS(2653), - [anon_sym_AMP_AMP] = ACTIONS(2653), - [anon_sym_AMP] = ACTIONS(2651), - [anon_sym_SEMI] = ACTIONS(2653), - [anon_sym_typedef] = ACTIONS(2651), - [anon_sym_extern] = ACTIONS(2651), - [anon_sym___attribute__] = ACTIONS(2651), - [anon_sym_COLON_COLON] = ACTIONS(2653), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2653), - [anon_sym___declspec] = ACTIONS(2651), - [anon_sym___based] = ACTIONS(2651), - [anon_sym___cdecl] = ACTIONS(2651), - [anon_sym___clrcall] = ACTIONS(2651), - [anon_sym___stdcall] = ACTIONS(2651), - [anon_sym___fastcall] = ACTIONS(2651), - [anon_sym___thiscall] = ACTIONS(2651), - [anon_sym___vectorcall] = ACTIONS(2651), - [anon_sym_LBRACE] = ACTIONS(2653), - [anon_sym_RBRACE] = ACTIONS(2653), - [anon_sym_LBRACK] = ACTIONS(2651), - [anon_sym_static] = ACTIONS(2651), - [anon_sym_register] = ACTIONS(2651), - [anon_sym_inline] = ACTIONS(2651), - [anon_sym_thread_local] = ACTIONS(2651), - [anon_sym_const] = ACTIONS(2651), - [anon_sym_volatile] = ACTIONS(2651), - [anon_sym_restrict] = ACTIONS(2651), - [anon_sym__Atomic] = ACTIONS(2651), - [anon_sym_mutable] = ACTIONS(2651), - [anon_sym_constexpr] = ACTIONS(2651), - [anon_sym_constinit] = ACTIONS(2651), - [anon_sym_consteval] = ACTIONS(2651), - [anon_sym_signed] = ACTIONS(2651), - [anon_sym_unsigned] = ACTIONS(2651), - [anon_sym_long] = ACTIONS(2651), - [anon_sym_short] = ACTIONS(2651), - [sym_primitive_type] = ACTIONS(2651), - [anon_sym_enum] = ACTIONS(2651), - [anon_sym_class] = ACTIONS(2651), - [anon_sym_struct] = ACTIONS(2651), - [anon_sym_union] = ACTIONS(2651), - [anon_sym_if] = ACTIONS(2651), - [anon_sym_switch] = ACTIONS(2651), - [anon_sym_case] = ACTIONS(2651), - [anon_sym_default] = ACTIONS(2651), - [anon_sym_while] = ACTIONS(2651), - [anon_sym_do] = ACTIONS(2651), - [anon_sym_for] = ACTIONS(2651), - [anon_sym_return] = ACTIONS(2651), - [anon_sym_break] = ACTIONS(2651), - [anon_sym_continue] = ACTIONS(2651), - [anon_sym_goto] = ACTIONS(2651), - [anon_sym_DASH_DASH] = ACTIONS(2653), - [anon_sym_PLUS_PLUS] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(2651), - [sym_number_literal] = ACTIONS(2653), - [anon_sym_L_SQUOTE] = ACTIONS(2653), - [anon_sym_u_SQUOTE] = ACTIONS(2653), - [anon_sym_U_SQUOTE] = ACTIONS(2653), - [anon_sym_u8_SQUOTE] = ACTIONS(2653), - [anon_sym_SQUOTE] = ACTIONS(2653), - [anon_sym_L_DQUOTE] = ACTIONS(2653), - [anon_sym_u_DQUOTE] = ACTIONS(2653), - [anon_sym_U_DQUOTE] = ACTIONS(2653), - [anon_sym_u8_DQUOTE] = ACTIONS(2653), - [anon_sym_DQUOTE] = ACTIONS(2653), - [sym_true] = ACTIONS(2651), - [sym_false] = ACTIONS(2651), - [sym_null] = ACTIONS(2651), + [634] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token2] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2651), - [anon_sym_decltype] = ACTIONS(2651), - [anon_sym_virtual] = ACTIONS(2651), - [anon_sym_explicit] = ACTIONS(2651), - [anon_sym_typename] = ACTIONS(2651), - [anon_sym_template] = ACTIONS(2651), - [anon_sym_operator] = ACTIONS(2651), - [anon_sym_try] = ACTIONS(2651), - [anon_sym_delete] = ACTIONS(2651), - [anon_sym_throw] = ACTIONS(2651), - [anon_sym_namespace] = ACTIONS(2651), - [anon_sym_using] = ACTIONS(2651), - [anon_sym_static_assert] = ACTIONS(2651), - [anon_sym_concept] = ACTIONS(2651), - [anon_sym_co_return] = ACTIONS(2651), - [anon_sym_co_yield] = ACTIONS(2651), - [anon_sym_co_await] = ACTIONS(2651), - [anon_sym_new] = ACTIONS(2651), - [anon_sym_requires] = ACTIONS(2651), - [sym_this] = ACTIONS(2651), - [sym_nullptr] = ACTIONS(2651), - [sym_raw_string_literal] = ACTIONS(2653), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1029] = { - [sym_identifier] = ACTIONS(2643), - [aux_sym_preproc_include_token1] = ACTIONS(2643), - [aux_sym_preproc_def_token1] = ACTIONS(2643), - [aux_sym_preproc_if_token1] = ACTIONS(2643), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2643), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2643), - [sym_preproc_directive] = ACTIONS(2643), - [anon_sym_LPAREN2] = ACTIONS(2645), - [anon_sym_BANG] = ACTIONS(2645), - [anon_sym_TILDE] = ACTIONS(2645), - [anon_sym_DASH] = ACTIONS(2643), - [anon_sym_PLUS] = ACTIONS(2643), - [anon_sym_STAR] = ACTIONS(2645), - [anon_sym_AMP_AMP] = ACTIONS(2645), - [anon_sym_AMP] = ACTIONS(2643), - [anon_sym_SEMI] = ACTIONS(2645), - [anon_sym_typedef] = ACTIONS(2643), - [anon_sym_extern] = ACTIONS(2643), - [anon_sym___attribute__] = ACTIONS(2643), - [anon_sym_COLON_COLON] = ACTIONS(2645), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2645), - [anon_sym___declspec] = ACTIONS(2643), - [anon_sym___based] = ACTIONS(2643), - [anon_sym___cdecl] = ACTIONS(2643), - [anon_sym___clrcall] = ACTIONS(2643), - [anon_sym___stdcall] = ACTIONS(2643), - [anon_sym___fastcall] = ACTIONS(2643), - [anon_sym___thiscall] = ACTIONS(2643), - [anon_sym___vectorcall] = ACTIONS(2643), - [anon_sym_LBRACE] = ACTIONS(2645), - [anon_sym_RBRACE] = ACTIONS(2645), - [anon_sym_LBRACK] = ACTIONS(2643), - [anon_sym_static] = ACTIONS(2643), - [anon_sym_register] = ACTIONS(2643), - [anon_sym_inline] = ACTIONS(2643), - [anon_sym_thread_local] = ACTIONS(2643), - [anon_sym_const] = ACTIONS(2643), - [anon_sym_volatile] = ACTIONS(2643), - [anon_sym_restrict] = ACTIONS(2643), - [anon_sym__Atomic] = ACTIONS(2643), - [anon_sym_mutable] = ACTIONS(2643), - [anon_sym_constexpr] = ACTIONS(2643), - [anon_sym_constinit] = ACTIONS(2643), - [anon_sym_consteval] = ACTIONS(2643), - [anon_sym_signed] = ACTIONS(2643), - [anon_sym_unsigned] = ACTIONS(2643), - [anon_sym_long] = ACTIONS(2643), - [anon_sym_short] = ACTIONS(2643), - [sym_primitive_type] = ACTIONS(2643), - [anon_sym_enum] = ACTIONS(2643), - [anon_sym_class] = ACTIONS(2643), - [anon_sym_struct] = ACTIONS(2643), - [anon_sym_union] = ACTIONS(2643), - [anon_sym_if] = ACTIONS(2643), - [anon_sym_switch] = ACTIONS(2643), - [anon_sym_case] = ACTIONS(2643), - [anon_sym_default] = ACTIONS(2643), - [anon_sym_while] = ACTIONS(2643), - [anon_sym_do] = ACTIONS(2643), - [anon_sym_for] = ACTIONS(2643), - [anon_sym_return] = ACTIONS(2643), - [anon_sym_break] = ACTIONS(2643), - [anon_sym_continue] = ACTIONS(2643), - [anon_sym_goto] = ACTIONS(2643), - [anon_sym_DASH_DASH] = ACTIONS(2645), - [anon_sym_PLUS_PLUS] = ACTIONS(2645), - [anon_sym_sizeof] = ACTIONS(2643), - [sym_number_literal] = ACTIONS(2645), - [anon_sym_L_SQUOTE] = ACTIONS(2645), - [anon_sym_u_SQUOTE] = ACTIONS(2645), - [anon_sym_U_SQUOTE] = ACTIONS(2645), - [anon_sym_u8_SQUOTE] = ACTIONS(2645), - [anon_sym_SQUOTE] = ACTIONS(2645), - [anon_sym_L_DQUOTE] = ACTIONS(2645), - [anon_sym_u_DQUOTE] = ACTIONS(2645), - [anon_sym_U_DQUOTE] = ACTIONS(2645), - [anon_sym_u8_DQUOTE] = ACTIONS(2645), - [anon_sym_DQUOTE] = ACTIONS(2645), - [sym_true] = ACTIONS(2643), - [sym_false] = ACTIONS(2643), - [sym_null] = ACTIONS(2643), + [635] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token2] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2643), - [anon_sym_decltype] = ACTIONS(2643), - [anon_sym_virtual] = ACTIONS(2643), - [anon_sym_explicit] = ACTIONS(2643), - [anon_sym_typename] = ACTIONS(2643), - [anon_sym_template] = ACTIONS(2643), - [anon_sym_operator] = ACTIONS(2643), - [anon_sym_try] = ACTIONS(2643), - [anon_sym_delete] = ACTIONS(2643), - [anon_sym_throw] = ACTIONS(2643), - [anon_sym_namespace] = ACTIONS(2643), - [anon_sym_using] = ACTIONS(2643), - [anon_sym_static_assert] = ACTIONS(2643), - [anon_sym_concept] = ACTIONS(2643), - [anon_sym_co_return] = ACTIONS(2643), - [anon_sym_co_yield] = ACTIONS(2643), - [anon_sym_co_await] = ACTIONS(2643), - [anon_sym_new] = ACTIONS(2643), - [anon_sym_requires] = ACTIONS(2643), - [sym_this] = ACTIONS(2643), - [sym_nullptr] = ACTIONS(2643), - [sym_raw_string_literal] = ACTIONS(2645), - }, - [1030] = { - [sym_identifier] = ACTIONS(2763), - [aux_sym_preproc_include_token1] = ACTIONS(2763), - [aux_sym_preproc_def_token1] = ACTIONS(2763), - [aux_sym_preproc_if_token1] = ACTIONS(2763), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2763), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2763), - [sym_preproc_directive] = ACTIONS(2763), - [anon_sym_LPAREN2] = ACTIONS(2765), - [anon_sym_BANG] = ACTIONS(2765), - [anon_sym_TILDE] = ACTIONS(2765), - [anon_sym_DASH] = ACTIONS(2763), - [anon_sym_PLUS] = ACTIONS(2763), - [anon_sym_STAR] = ACTIONS(2765), - [anon_sym_AMP_AMP] = ACTIONS(2765), - [anon_sym_AMP] = ACTIONS(2763), - [anon_sym_SEMI] = ACTIONS(2765), - [anon_sym_typedef] = ACTIONS(2763), - [anon_sym_extern] = ACTIONS(2763), - [anon_sym___attribute__] = ACTIONS(2763), - [anon_sym_COLON_COLON] = ACTIONS(2765), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2765), - [anon_sym___declspec] = ACTIONS(2763), - [anon_sym___based] = ACTIONS(2763), - [anon_sym___cdecl] = ACTIONS(2763), - [anon_sym___clrcall] = ACTIONS(2763), - [anon_sym___stdcall] = ACTIONS(2763), - [anon_sym___fastcall] = ACTIONS(2763), - [anon_sym___thiscall] = ACTIONS(2763), - [anon_sym___vectorcall] = ACTIONS(2763), - [anon_sym_LBRACE] = ACTIONS(2765), - [anon_sym_RBRACE] = ACTIONS(2765), - [anon_sym_LBRACK] = ACTIONS(2763), - [anon_sym_static] = ACTIONS(2763), - [anon_sym_register] = ACTIONS(2763), - [anon_sym_inline] = ACTIONS(2763), - [anon_sym_thread_local] = ACTIONS(2763), - [anon_sym_const] = ACTIONS(2763), - [anon_sym_volatile] = ACTIONS(2763), - [anon_sym_restrict] = ACTIONS(2763), - [anon_sym__Atomic] = ACTIONS(2763), - [anon_sym_mutable] = ACTIONS(2763), - [anon_sym_constexpr] = ACTIONS(2763), - [anon_sym_constinit] = ACTIONS(2763), - [anon_sym_consteval] = ACTIONS(2763), - [anon_sym_signed] = ACTIONS(2763), - [anon_sym_unsigned] = ACTIONS(2763), - [anon_sym_long] = ACTIONS(2763), - [anon_sym_short] = ACTIONS(2763), - [sym_primitive_type] = ACTIONS(2763), - [anon_sym_enum] = ACTIONS(2763), - [anon_sym_class] = ACTIONS(2763), - [anon_sym_struct] = ACTIONS(2763), - [anon_sym_union] = ACTIONS(2763), - [anon_sym_if] = ACTIONS(2763), - [anon_sym_switch] = ACTIONS(2763), - [anon_sym_case] = ACTIONS(2763), - [anon_sym_default] = ACTIONS(2763), - [anon_sym_while] = ACTIONS(2763), - [anon_sym_do] = ACTIONS(2763), - [anon_sym_for] = ACTIONS(2763), - [anon_sym_return] = ACTIONS(2763), - [anon_sym_break] = ACTIONS(2763), - [anon_sym_continue] = ACTIONS(2763), - [anon_sym_goto] = ACTIONS(2763), - [anon_sym_DASH_DASH] = ACTIONS(2765), - [anon_sym_PLUS_PLUS] = ACTIONS(2765), - [anon_sym_sizeof] = ACTIONS(2763), - [sym_number_literal] = ACTIONS(2765), - [anon_sym_L_SQUOTE] = ACTIONS(2765), - [anon_sym_u_SQUOTE] = ACTIONS(2765), - [anon_sym_U_SQUOTE] = ACTIONS(2765), - [anon_sym_u8_SQUOTE] = ACTIONS(2765), - [anon_sym_SQUOTE] = ACTIONS(2765), - [anon_sym_L_DQUOTE] = ACTIONS(2765), - [anon_sym_u_DQUOTE] = ACTIONS(2765), - [anon_sym_U_DQUOTE] = ACTIONS(2765), - [anon_sym_u8_DQUOTE] = ACTIONS(2765), - [anon_sym_DQUOTE] = ACTIONS(2765), - [sym_true] = ACTIONS(2763), - [sym_false] = ACTIONS(2763), - [sym_null] = ACTIONS(2763), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2763), - [anon_sym_decltype] = ACTIONS(2763), - [anon_sym_virtual] = ACTIONS(2763), - [anon_sym_explicit] = ACTIONS(2763), - [anon_sym_typename] = ACTIONS(2763), - [anon_sym_template] = ACTIONS(2763), - [anon_sym_operator] = ACTIONS(2763), - [anon_sym_try] = ACTIONS(2763), - [anon_sym_delete] = ACTIONS(2763), - [anon_sym_throw] = ACTIONS(2763), - [anon_sym_namespace] = ACTIONS(2763), - [anon_sym_using] = ACTIONS(2763), - [anon_sym_static_assert] = ACTIONS(2763), - [anon_sym_concept] = ACTIONS(2763), - [anon_sym_co_return] = ACTIONS(2763), - [anon_sym_co_yield] = ACTIONS(2763), - [anon_sym_co_await] = ACTIONS(2763), - [anon_sym_new] = ACTIONS(2763), - [anon_sym_requires] = ACTIONS(2763), - [sym_this] = ACTIONS(2763), - [sym_nullptr] = ACTIONS(2763), - [sym_raw_string_literal] = ACTIONS(2765), - }, - [1031] = { - [sym_identifier] = ACTIONS(2665), - [aux_sym_preproc_include_token1] = ACTIONS(2665), - [aux_sym_preproc_def_token1] = ACTIONS(2665), - [aux_sym_preproc_if_token1] = ACTIONS(2665), - [aux_sym_preproc_if_token2] = ACTIONS(2665), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2665), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2665), - [sym_preproc_directive] = ACTIONS(2665), - [anon_sym_LPAREN2] = ACTIONS(2667), - [anon_sym_BANG] = ACTIONS(2667), - [anon_sym_TILDE] = ACTIONS(2667), - [anon_sym_DASH] = ACTIONS(2665), - [anon_sym_PLUS] = ACTIONS(2665), - [anon_sym_STAR] = ACTIONS(2667), - [anon_sym_AMP_AMP] = ACTIONS(2667), - [anon_sym_AMP] = ACTIONS(2665), - [anon_sym_SEMI] = ACTIONS(2667), - [anon_sym_typedef] = ACTIONS(2665), - [anon_sym_extern] = ACTIONS(2665), - [anon_sym___attribute__] = ACTIONS(2665), - [anon_sym_COLON_COLON] = ACTIONS(2667), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2667), - [anon_sym___declspec] = ACTIONS(2665), - [anon_sym___based] = ACTIONS(2665), - [anon_sym___cdecl] = ACTIONS(2665), - [anon_sym___clrcall] = ACTIONS(2665), - [anon_sym___stdcall] = ACTIONS(2665), - [anon_sym___fastcall] = ACTIONS(2665), - [anon_sym___thiscall] = ACTIONS(2665), - [anon_sym___vectorcall] = ACTIONS(2665), - [anon_sym_LBRACE] = ACTIONS(2667), - [anon_sym_LBRACK] = ACTIONS(2665), - [anon_sym_static] = ACTIONS(2665), - [anon_sym_register] = ACTIONS(2665), - [anon_sym_inline] = ACTIONS(2665), - [anon_sym_thread_local] = ACTIONS(2665), - [anon_sym_const] = ACTIONS(2665), - [anon_sym_volatile] = ACTIONS(2665), - [anon_sym_restrict] = ACTIONS(2665), - [anon_sym__Atomic] = ACTIONS(2665), - [anon_sym_mutable] = ACTIONS(2665), - [anon_sym_constexpr] = ACTIONS(2665), - [anon_sym_constinit] = ACTIONS(2665), - [anon_sym_consteval] = ACTIONS(2665), - [anon_sym_signed] = ACTIONS(2665), - [anon_sym_unsigned] = ACTIONS(2665), - [anon_sym_long] = ACTIONS(2665), - [anon_sym_short] = ACTIONS(2665), - [sym_primitive_type] = ACTIONS(2665), - [anon_sym_enum] = ACTIONS(2665), - [anon_sym_class] = ACTIONS(2665), - [anon_sym_struct] = ACTIONS(2665), - [anon_sym_union] = ACTIONS(2665), - [anon_sym_if] = ACTIONS(2665), - [anon_sym_switch] = ACTIONS(2665), - [anon_sym_case] = ACTIONS(2665), - [anon_sym_default] = ACTIONS(2665), - [anon_sym_while] = ACTIONS(2665), - [anon_sym_do] = ACTIONS(2665), - [anon_sym_for] = ACTIONS(2665), - [anon_sym_return] = ACTIONS(2665), - [anon_sym_break] = ACTIONS(2665), - [anon_sym_continue] = ACTIONS(2665), - [anon_sym_goto] = ACTIONS(2665), - [anon_sym_DASH_DASH] = ACTIONS(2667), - [anon_sym_PLUS_PLUS] = ACTIONS(2667), - [anon_sym_sizeof] = ACTIONS(2665), - [sym_number_literal] = ACTIONS(2667), - [anon_sym_L_SQUOTE] = ACTIONS(2667), - [anon_sym_u_SQUOTE] = ACTIONS(2667), - [anon_sym_U_SQUOTE] = ACTIONS(2667), - [anon_sym_u8_SQUOTE] = ACTIONS(2667), - [anon_sym_SQUOTE] = ACTIONS(2667), - [anon_sym_L_DQUOTE] = ACTIONS(2667), - [anon_sym_u_DQUOTE] = ACTIONS(2667), - [anon_sym_U_DQUOTE] = ACTIONS(2667), - [anon_sym_u8_DQUOTE] = ACTIONS(2667), - [anon_sym_DQUOTE] = ACTIONS(2667), - [sym_true] = ACTIONS(2665), - [sym_false] = ACTIONS(2665), - [sym_null] = ACTIONS(2665), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2665), - [anon_sym_decltype] = ACTIONS(2665), - [anon_sym_virtual] = ACTIONS(2665), - [anon_sym_explicit] = ACTIONS(2665), - [anon_sym_typename] = ACTIONS(2665), - [anon_sym_template] = ACTIONS(2665), - [anon_sym_operator] = ACTIONS(2665), - [anon_sym_try] = ACTIONS(2665), - [anon_sym_delete] = ACTIONS(2665), - [anon_sym_throw] = ACTIONS(2665), - [anon_sym_namespace] = ACTIONS(2665), - [anon_sym_using] = ACTIONS(2665), - [anon_sym_static_assert] = ACTIONS(2665), - [anon_sym_concept] = ACTIONS(2665), - [anon_sym_co_return] = ACTIONS(2665), - [anon_sym_co_yield] = ACTIONS(2665), - [anon_sym_co_await] = ACTIONS(2665), - [anon_sym_new] = ACTIONS(2665), - [anon_sym_requires] = ACTIONS(2665), - [sym_this] = ACTIONS(2665), - [sym_nullptr] = ACTIONS(2665), - [sym_raw_string_literal] = ACTIONS(2667), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1032] = { - [sym_identifier] = ACTIONS(2769), - [aux_sym_preproc_include_token1] = ACTIONS(2769), - [aux_sym_preproc_def_token1] = ACTIONS(2769), - [aux_sym_preproc_if_token1] = ACTIONS(2769), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2769), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2769), - [sym_preproc_directive] = ACTIONS(2769), - [anon_sym_LPAREN2] = ACTIONS(2771), - [anon_sym_BANG] = ACTIONS(2771), - [anon_sym_TILDE] = ACTIONS(2771), - [anon_sym_DASH] = ACTIONS(2769), - [anon_sym_PLUS] = ACTIONS(2769), - [anon_sym_STAR] = ACTIONS(2771), - [anon_sym_AMP_AMP] = ACTIONS(2771), - [anon_sym_AMP] = ACTIONS(2769), - [anon_sym_SEMI] = ACTIONS(2771), - [anon_sym_typedef] = ACTIONS(2769), - [anon_sym_extern] = ACTIONS(2769), - [anon_sym___attribute__] = ACTIONS(2769), - [anon_sym_COLON_COLON] = ACTIONS(2771), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2771), - [anon_sym___declspec] = ACTIONS(2769), - [anon_sym___based] = ACTIONS(2769), - [anon_sym___cdecl] = ACTIONS(2769), - [anon_sym___clrcall] = ACTIONS(2769), - [anon_sym___stdcall] = ACTIONS(2769), - [anon_sym___fastcall] = ACTIONS(2769), - [anon_sym___thiscall] = ACTIONS(2769), - [anon_sym___vectorcall] = ACTIONS(2769), - [anon_sym_LBRACE] = ACTIONS(2771), - [anon_sym_RBRACE] = ACTIONS(2771), - [anon_sym_LBRACK] = ACTIONS(2769), - [anon_sym_static] = ACTIONS(2769), - [anon_sym_register] = ACTIONS(2769), - [anon_sym_inline] = ACTIONS(2769), - [anon_sym_thread_local] = ACTIONS(2769), - [anon_sym_const] = ACTIONS(2769), - [anon_sym_volatile] = ACTIONS(2769), - [anon_sym_restrict] = ACTIONS(2769), - [anon_sym__Atomic] = ACTIONS(2769), - [anon_sym_mutable] = ACTIONS(2769), - [anon_sym_constexpr] = ACTIONS(2769), - [anon_sym_constinit] = ACTIONS(2769), - [anon_sym_consteval] = ACTIONS(2769), - [anon_sym_signed] = ACTIONS(2769), - [anon_sym_unsigned] = ACTIONS(2769), - [anon_sym_long] = ACTIONS(2769), - [anon_sym_short] = ACTIONS(2769), - [sym_primitive_type] = ACTIONS(2769), - [anon_sym_enum] = ACTIONS(2769), - [anon_sym_class] = ACTIONS(2769), - [anon_sym_struct] = ACTIONS(2769), - [anon_sym_union] = ACTIONS(2769), - [anon_sym_if] = ACTIONS(2769), - [anon_sym_switch] = ACTIONS(2769), - [anon_sym_case] = ACTIONS(2769), - [anon_sym_default] = ACTIONS(2769), - [anon_sym_while] = ACTIONS(2769), - [anon_sym_do] = ACTIONS(2769), - [anon_sym_for] = ACTIONS(2769), - [anon_sym_return] = ACTIONS(2769), - [anon_sym_break] = ACTIONS(2769), - [anon_sym_continue] = ACTIONS(2769), - [anon_sym_goto] = ACTIONS(2769), - [anon_sym_DASH_DASH] = ACTIONS(2771), - [anon_sym_PLUS_PLUS] = ACTIONS(2771), - [anon_sym_sizeof] = ACTIONS(2769), - [sym_number_literal] = ACTIONS(2771), - [anon_sym_L_SQUOTE] = ACTIONS(2771), - [anon_sym_u_SQUOTE] = ACTIONS(2771), - [anon_sym_U_SQUOTE] = ACTIONS(2771), - [anon_sym_u8_SQUOTE] = ACTIONS(2771), - [anon_sym_SQUOTE] = ACTIONS(2771), - [anon_sym_L_DQUOTE] = ACTIONS(2771), - [anon_sym_u_DQUOTE] = ACTIONS(2771), - [anon_sym_U_DQUOTE] = ACTIONS(2771), - [anon_sym_u8_DQUOTE] = ACTIONS(2771), - [anon_sym_DQUOTE] = ACTIONS(2771), - [sym_true] = ACTIONS(2769), - [sym_false] = ACTIONS(2769), - [sym_null] = ACTIONS(2769), + [636] = { + [ts_builtin_sym_end] = ACTIONS(2597), + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2769), - [anon_sym_decltype] = ACTIONS(2769), - [anon_sym_virtual] = ACTIONS(2769), - [anon_sym_explicit] = ACTIONS(2769), - [anon_sym_typename] = ACTIONS(2769), - [anon_sym_template] = ACTIONS(2769), - [anon_sym_operator] = ACTIONS(2769), - [anon_sym_try] = ACTIONS(2769), - [anon_sym_delete] = ACTIONS(2769), - [anon_sym_throw] = ACTIONS(2769), - [anon_sym_namespace] = ACTIONS(2769), - [anon_sym_using] = ACTIONS(2769), - [anon_sym_static_assert] = ACTIONS(2769), - [anon_sym_concept] = ACTIONS(2769), - [anon_sym_co_return] = ACTIONS(2769), - [anon_sym_co_yield] = ACTIONS(2769), - [anon_sym_co_await] = ACTIONS(2769), - [anon_sym_new] = ACTIONS(2769), - [anon_sym_requires] = ACTIONS(2769), - [sym_this] = ACTIONS(2769), - [sym_nullptr] = ACTIONS(2769), - [sym_raw_string_literal] = ACTIONS(2771), - }, - [1033] = { - [sym_identifier] = ACTIONS(2605), - [aux_sym_preproc_include_token1] = ACTIONS(2605), - [aux_sym_preproc_def_token1] = ACTIONS(2605), - [aux_sym_preproc_if_token1] = ACTIONS(2605), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2605), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2605), - [sym_preproc_directive] = ACTIONS(2605), - [anon_sym_LPAREN2] = ACTIONS(2607), - [anon_sym_BANG] = ACTIONS(2607), - [anon_sym_TILDE] = ACTIONS(2607), - [anon_sym_DASH] = ACTIONS(2605), - [anon_sym_PLUS] = ACTIONS(2605), - [anon_sym_STAR] = ACTIONS(2607), - [anon_sym_AMP_AMP] = ACTIONS(2607), - [anon_sym_AMP] = ACTIONS(2605), - [anon_sym_SEMI] = ACTIONS(2607), - [anon_sym_typedef] = ACTIONS(2605), - [anon_sym_extern] = ACTIONS(2605), - [anon_sym___attribute__] = ACTIONS(2605), - [anon_sym_COLON_COLON] = ACTIONS(2607), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2607), - [anon_sym___declspec] = ACTIONS(2605), - [anon_sym___based] = ACTIONS(2605), - [anon_sym___cdecl] = ACTIONS(2605), - [anon_sym___clrcall] = ACTIONS(2605), - [anon_sym___stdcall] = ACTIONS(2605), - [anon_sym___fastcall] = ACTIONS(2605), - [anon_sym___thiscall] = ACTIONS(2605), - [anon_sym___vectorcall] = ACTIONS(2605), - [anon_sym_LBRACE] = ACTIONS(2607), - [anon_sym_RBRACE] = ACTIONS(2607), - [anon_sym_LBRACK] = ACTIONS(2605), - [anon_sym_static] = ACTIONS(2605), - [anon_sym_register] = ACTIONS(2605), - [anon_sym_inline] = ACTIONS(2605), - [anon_sym_thread_local] = ACTIONS(2605), - [anon_sym_const] = ACTIONS(2605), - [anon_sym_volatile] = ACTIONS(2605), - [anon_sym_restrict] = ACTIONS(2605), - [anon_sym__Atomic] = ACTIONS(2605), - [anon_sym_mutable] = ACTIONS(2605), - [anon_sym_constexpr] = ACTIONS(2605), - [anon_sym_constinit] = ACTIONS(2605), - [anon_sym_consteval] = ACTIONS(2605), - [anon_sym_signed] = ACTIONS(2605), - [anon_sym_unsigned] = ACTIONS(2605), - [anon_sym_long] = ACTIONS(2605), - [anon_sym_short] = ACTIONS(2605), - [sym_primitive_type] = ACTIONS(2605), - [anon_sym_enum] = ACTIONS(2605), - [anon_sym_class] = ACTIONS(2605), - [anon_sym_struct] = ACTIONS(2605), - [anon_sym_union] = ACTIONS(2605), - [anon_sym_if] = ACTIONS(2605), - [anon_sym_switch] = ACTIONS(2605), - [anon_sym_case] = ACTIONS(2605), - [anon_sym_default] = ACTIONS(2605), - [anon_sym_while] = ACTIONS(2605), - [anon_sym_do] = ACTIONS(2605), - [anon_sym_for] = ACTIONS(2605), - [anon_sym_return] = ACTIONS(2605), - [anon_sym_break] = ACTIONS(2605), - [anon_sym_continue] = ACTIONS(2605), - [anon_sym_goto] = ACTIONS(2605), - [anon_sym_DASH_DASH] = ACTIONS(2607), - [anon_sym_PLUS_PLUS] = ACTIONS(2607), - [anon_sym_sizeof] = ACTIONS(2605), - [sym_number_literal] = ACTIONS(2607), - [anon_sym_L_SQUOTE] = ACTIONS(2607), - [anon_sym_u_SQUOTE] = ACTIONS(2607), - [anon_sym_U_SQUOTE] = ACTIONS(2607), - [anon_sym_u8_SQUOTE] = ACTIONS(2607), - [anon_sym_SQUOTE] = ACTIONS(2607), - [anon_sym_L_DQUOTE] = ACTIONS(2607), - [anon_sym_u_DQUOTE] = ACTIONS(2607), - [anon_sym_U_DQUOTE] = ACTIONS(2607), - [anon_sym_u8_DQUOTE] = ACTIONS(2607), - [anon_sym_DQUOTE] = ACTIONS(2607), - [sym_true] = ACTIONS(2605), - [sym_false] = ACTIONS(2605), - [sym_null] = ACTIONS(2605), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2605), - [anon_sym_decltype] = ACTIONS(2605), - [anon_sym_virtual] = ACTIONS(2605), - [anon_sym_explicit] = ACTIONS(2605), - [anon_sym_typename] = ACTIONS(2605), - [anon_sym_template] = ACTIONS(2605), - [anon_sym_operator] = ACTIONS(2605), - [anon_sym_try] = ACTIONS(2605), - [anon_sym_delete] = ACTIONS(2605), - [anon_sym_throw] = ACTIONS(2605), - [anon_sym_namespace] = ACTIONS(2605), - [anon_sym_using] = ACTIONS(2605), - [anon_sym_static_assert] = ACTIONS(2605), - [anon_sym_concept] = ACTIONS(2605), - [anon_sym_co_return] = ACTIONS(2605), - [anon_sym_co_yield] = ACTIONS(2605), - [anon_sym_co_await] = ACTIONS(2605), - [anon_sym_new] = ACTIONS(2605), - [anon_sym_requires] = ACTIONS(2605), - [sym_this] = ACTIONS(2605), - [sym_nullptr] = ACTIONS(2605), - [sym_raw_string_literal] = ACTIONS(2607), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1034] = { + [637] = { + [ts_builtin_sym_end] = ACTIONS(2597), [sym_identifier] = ACTIONS(2595), [aux_sym_preproc_include_token1] = ACTIONS(2595), [aux_sym_preproc_def_token1] = ACTIONS(2595), @@ -147026,7 +107482,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(2595), [anon_sym___vectorcall] = ACTIONS(2595), [anon_sym_LBRACE] = ACTIONS(2597), - [anon_sym_RBRACE] = ACTIONS(2597), [anon_sym_LBRACK] = ACTIONS(2595), [anon_sym_static] = ACTIONS(2595), [anon_sym_register] = ACTIONS(2595), @@ -147050,6 +107505,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(2595), [anon_sym_union] = ACTIONS(2595), [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), [anon_sym_switch] = ACTIONS(2595), [anon_sym_case] = ACTIONS(2595), [anon_sym_default] = ACTIONS(2595), @@ -147060,6 +107516,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(2595), [anon_sym_continue] = ACTIONS(2595), [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), [anon_sym_DASH_DASH] = ACTIONS(2597), [anon_sym_PLUS_PLUS] = ACTIONS(2597), [anon_sym_sizeof] = ACTIONS(2595), @@ -147101,859 +107559,557 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(2595), [sym_raw_string_literal] = ACTIONS(2597), }, - [1035] = { - [ts_builtin_sym_end] = ACTIONS(2779), - [sym_identifier] = ACTIONS(2777), - [aux_sym_preproc_include_token1] = ACTIONS(2777), - [aux_sym_preproc_def_token1] = ACTIONS(2777), - [aux_sym_preproc_if_token1] = ACTIONS(2777), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2777), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2777), - [sym_preproc_directive] = ACTIONS(2777), - [anon_sym_LPAREN2] = ACTIONS(2779), - [anon_sym_BANG] = ACTIONS(2779), - [anon_sym_TILDE] = ACTIONS(2779), - [anon_sym_DASH] = ACTIONS(2777), - [anon_sym_PLUS] = ACTIONS(2777), - [anon_sym_STAR] = ACTIONS(2779), - [anon_sym_AMP_AMP] = ACTIONS(2779), - [anon_sym_AMP] = ACTIONS(2777), - [anon_sym_SEMI] = ACTIONS(2779), - [anon_sym_typedef] = ACTIONS(2777), - [anon_sym_extern] = ACTIONS(2777), - [anon_sym___attribute__] = ACTIONS(2777), - [anon_sym_COLON_COLON] = ACTIONS(2779), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2779), - [anon_sym___declspec] = ACTIONS(2777), - [anon_sym___based] = ACTIONS(2777), - [anon_sym___cdecl] = ACTIONS(2777), - [anon_sym___clrcall] = ACTIONS(2777), - [anon_sym___stdcall] = ACTIONS(2777), - [anon_sym___fastcall] = ACTIONS(2777), - [anon_sym___thiscall] = ACTIONS(2777), - [anon_sym___vectorcall] = ACTIONS(2777), - [anon_sym_LBRACE] = ACTIONS(2779), - [anon_sym_LBRACK] = ACTIONS(2777), - [anon_sym_static] = ACTIONS(2777), - [anon_sym_register] = ACTIONS(2777), - [anon_sym_inline] = ACTIONS(2777), - [anon_sym_thread_local] = ACTIONS(2777), - [anon_sym_const] = ACTIONS(2777), - [anon_sym_volatile] = ACTIONS(2777), - [anon_sym_restrict] = ACTIONS(2777), - [anon_sym__Atomic] = ACTIONS(2777), - [anon_sym_mutable] = ACTIONS(2777), - [anon_sym_constexpr] = ACTIONS(2777), - [anon_sym_constinit] = ACTIONS(2777), - [anon_sym_consteval] = ACTIONS(2777), - [anon_sym_signed] = ACTIONS(2777), - [anon_sym_unsigned] = ACTIONS(2777), - [anon_sym_long] = ACTIONS(2777), - [anon_sym_short] = ACTIONS(2777), - [sym_primitive_type] = ACTIONS(2777), - [anon_sym_enum] = ACTIONS(2777), - [anon_sym_class] = ACTIONS(2777), - [anon_sym_struct] = ACTIONS(2777), - [anon_sym_union] = ACTIONS(2777), - [anon_sym_if] = ACTIONS(2777), - [anon_sym_switch] = ACTIONS(2777), - [anon_sym_case] = ACTIONS(2777), - [anon_sym_default] = ACTIONS(2777), - [anon_sym_while] = ACTIONS(2777), - [anon_sym_do] = ACTIONS(2777), - [anon_sym_for] = ACTIONS(2777), - [anon_sym_return] = ACTIONS(2777), - [anon_sym_break] = ACTIONS(2777), - [anon_sym_continue] = ACTIONS(2777), - [anon_sym_goto] = ACTIONS(2777), - [anon_sym_DASH_DASH] = ACTIONS(2779), - [anon_sym_PLUS_PLUS] = ACTIONS(2779), - [anon_sym_sizeof] = ACTIONS(2777), - [sym_number_literal] = ACTIONS(2779), - [anon_sym_L_SQUOTE] = ACTIONS(2779), - [anon_sym_u_SQUOTE] = ACTIONS(2779), - [anon_sym_U_SQUOTE] = ACTIONS(2779), - [anon_sym_u8_SQUOTE] = ACTIONS(2779), - [anon_sym_SQUOTE] = ACTIONS(2779), - [anon_sym_L_DQUOTE] = ACTIONS(2779), - [anon_sym_u_DQUOTE] = ACTIONS(2779), - [anon_sym_U_DQUOTE] = ACTIONS(2779), - [anon_sym_u8_DQUOTE] = ACTIONS(2779), - [anon_sym_DQUOTE] = ACTIONS(2779), - [sym_true] = ACTIONS(2777), - [sym_false] = ACTIONS(2777), - [sym_null] = ACTIONS(2777), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2777), - [anon_sym_decltype] = ACTIONS(2777), - [anon_sym_virtual] = ACTIONS(2777), - [anon_sym_explicit] = ACTIONS(2777), - [anon_sym_typename] = ACTIONS(2777), - [anon_sym_template] = ACTIONS(2777), - [anon_sym_operator] = ACTIONS(2777), - [anon_sym_try] = ACTIONS(2777), - [anon_sym_delete] = ACTIONS(2777), - [anon_sym_throw] = ACTIONS(2777), - [anon_sym_namespace] = ACTIONS(2777), - [anon_sym_using] = ACTIONS(2777), - [anon_sym_static_assert] = ACTIONS(2777), - [anon_sym_concept] = ACTIONS(2777), - [anon_sym_co_return] = ACTIONS(2777), - [anon_sym_co_yield] = ACTIONS(2777), - [anon_sym_co_await] = ACTIONS(2777), - [anon_sym_new] = ACTIONS(2777), - [anon_sym_requires] = ACTIONS(2777), - [sym_this] = ACTIONS(2777), - [sym_nullptr] = ACTIONS(2777), - [sym_raw_string_literal] = ACTIONS(2779), + [638] = { + [ts_builtin_sym_end] = ACTIONS(2531), + [sym_identifier] = ACTIONS(2529), + [aux_sym_preproc_include_token1] = ACTIONS(2529), + [aux_sym_preproc_def_token1] = ACTIONS(2529), + [aux_sym_preproc_if_token1] = ACTIONS(2529), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2529), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2529), + [sym_preproc_directive] = ACTIONS(2529), + [anon_sym_LPAREN2] = ACTIONS(2531), + [anon_sym_BANG] = ACTIONS(2531), + [anon_sym_TILDE] = ACTIONS(2531), + [anon_sym_DASH] = ACTIONS(2529), + [anon_sym_PLUS] = ACTIONS(2529), + [anon_sym_STAR] = ACTIONS(2531), + [anon_sym_AMP_AMP] = ACTIONS(2531), + [anon_sym_AMP] = ACTIONS(2529), + [anon_sym_SEMI] = ACTIONS(2531), + [anon_sym_typedef] = ACTIONS(2529), + [anon_sym_extern] = ACTIONS(2529), + [anon_sym___attribute__] = ACTIONS(2529), + [anon_sym_COLON_COLON] = ACTIONS(2531), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2531), + [anon_sym___declspec] = ACTIONS(2529), + [anon_sym___based] = ACTIONS(2529), + [anon_sym___cdecl] = ACTIONS(2529), + [anon_sym___clrcall] = ACTIONS(2529), + [anon_sym___stdcall] = ACTIONS(2529), + [anon_sym___fastcall] = ACTIONS(2529), + [anon_sym___thiscall] = ACTIONS(2529), + [anon_sym___vectorcall] = ACTIONS(2529), + [anon_sym_LBRACE] = ACTIONS(2531), + [anon_sym_LBRACK] = ACTIONS(2529), + [anon_sym_static] = ACTIONS(2529), + [anon_sym_register] = ACTIONS(2529), + [anon_sym_inline] = ACTIONS(2529), + [anon_sym_thread_local] = ACTIONS(2529), + [anon_sym_const] = ACTIONS(2529), + [anon_sym_volatile] = ACTIONS(2529), + [anon_sym_restrict] = ACTIONS(2529), + [anon_sym__Atomic] = ACTIONS(2529), + [anon_sym_mutable] = ACTIONS(2529), + [anon_sym_constexpr] = ACTIONS(2529), + [anon_sym_constinit] = ACTIONS(2529), + [anon_sym_consteval] = ACTIONS(2529), + [anon_sym_signed] = ACTIONS(2529), + [anon_sym_unsigned] = ACTIONS(2529), + [anon_sym_long] = ACTIONS(2529), + [anon_sym_short] = ACTIONS(2529), + [sym_primitive_type] = ACTIONS(2529), + [anon_sym_enum] = ACTIONS(2529), + [anon_sym_class] = ACTIONS(2529), + [anon_sym_struct] = ACTIONS(2529), + [anon_sym_union] = ACTIONS(2529), + [anon_sym_if] = ACTIONS(2529), + [anon_sym_else] = ACTIONS(2529), + [anon_sym_switch] = ACTIONS(2529), + [anon_sym_case] = ACTIONS(2529), + [anon_sym_default] = ACTIONS(2529), + [anon_sym_while] = ACTIONS(2529), + [anon_sym_do] = ACTIONS(2529), + [anon_sym_for] = ACTIONS(2529), + [anon_sym_return] = ACTIONS(2529), + [anon_sym_break] = ACTIONS(2529), + [anon_sym_continue] = ACTIONS(2529), + [anon_sym_goto] = ACTIONS(2529), + [anon_sym_not] = ACTIONS(2529), + [anon_sym_compl] = ACTIONS(2529), + [anon_sym_DASH_DASH] = ACTIONS(2531), + [anon_sym_PLUS_PLUS] = ACTIONS(2531), + [anon_sym_sizeof] = ACTIONS(2529), + [sym_number_literal] = ACTIONS(2531), + [anon_sym_L_SQUOTE] = ACTIONS(2531), + [anon_sym_u_SQUOTE] = ACTIONS(2531), + [anon_sym_U_SQUOTE] = ACTIONS(2531), + [anon_sym_u8_SQUOTE] = ACTIONS(2531), + [anon_sym_SQUOTE] = ACTIONS(2531), + [anon_sym_L_DQUOTE] = ACTIONS(2531), + [anon_sym_u_DQUOTE] = ACTIONS(2531), + [anon_sym_U_DQUOTE] = ACTIONS(2531), + [anon_sym_u8_DQUOTE] = ACTIONS(2531), + [anon_sym_DQUOTE] = ACTIONS(2531), + [sym_true] = ACTIONS(2529), + [sym_false] = ACTIONS(2529), + [sym_null] = ACTIONS(2529), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2529), + [anon_sym_decltype] = ACTIONS(2529), + [anon_sym_virtual] = ACTIONS(2529), + [anon_sym_explicit] = ACTIONS(2529), + [anon_sym_typename] = ACTIONS(2529), + [anon_sym_template] = ACTIONS(2529), + [anon_sym_operator] = ACTIONS(2529), + [anon_sym_try] = ACTIONS(2529), + [anon_sym_delete] = ACTIONS(2529), + [anon_sym_throw] = ACTIONS(2529), + [anon_sym_namespace] = ACTIONS(2529), + [anon_sym_using] = ACTIONS(2529), + [anon_sym_static_assert] = ACTIONS(2529), + [anon_sym_concept] = ACTIONS(2529), + [anon_sym_co_return] = ACTIONS(2529), + [anon_sym_co_yield] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2529), + [anon_sym_new] = ACTIONS(2529), + [anon_sym_requires] = ACTIONS(2529), + [sym_this] = ACTIONS(2529), + [sym_nullptr] = ACTIONS(2529), + [sym_raw_string_literal] = ACTIONS(2531), }, - [1036] = { - [sym_identifier] = ACTIONS(2659), - [aux_sym_preproc_include_token1] = ACTIONS(2659), - [aux_sym_preproc_def_token1] = ACTIONS(2659), - [aux_sym_preproc_if_token1] = ACTIONS(2659), - [aux_sym_preproc_if_token2] = ACTIONS(2659), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2659), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2659), - [sym_preproc_directive] = ACTIONS(2659), - [anon_sym_LPAREN2] = ACTIONS(2661), - [anon_sym_BANG] = ACTIONS(2661), - [anon_sym_TILDE] = ACTIONS(2661), - [anon_sym_DASH] = ACTIONS(2659), - [anon_sym_PLUS] = ACTIONS(2659), - [anon_sym_STAR] = ACTIONS(2661), - [anon_sym_AMP_AMP] = ACTIONS(2661), - [anon_sym_AMP] = ACTIONS(2659), - [anon_sym_SEMI] = ACTIONS(2661), - [anon_sym_typedef] = ACTIONS(2659), - [anon_sym_extern] = ACTIONS(2659), - [anon_sym___attribute__] = ACTIONS(2659), - [anon_sym_COLON_COLON] = ACTIONS(2661), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2661), - [anon_sym___declspec] = ACTIONS(2659), - [anon_sym___based] = ACTIONS(2659), - [anon_sym___cdecl] = ACTIONS(2659), - [anon_sym___clrcall] = ACTIONS(2659), - [anon_sym___stdcall] = ACTIONS(2659), - [anon_sym___fastcall] = ACTIONS(2659), - [anon_sym___thiscall] = ACTIONS(2659), - [anon_sym___vectorcall] = ACTIONS(2659), - [anon_sym_LBRACE] = ACTIONS(2661), - [anon_sym_LBRACK] = ACTIONS(2659), - [anon_sym_static] = ACTIONS(2659), - [anon_sym_register] = ACTIONS(2659), - [anon_sym_inline] = ACTIONS(2659), - [anon_sym_thread_local] = ACTIONS(2659), - [anon_sym_const] = ACTIONS(2659), - [anon_sym_volatile] = ACTIONS(2659), - [anon_sym_restrict] = ACTIONS(2659), - [anon_sym__Atomic] = ACTIONS(2659), - [anon_sym_mutable] = ACTIONS(2659), - [anon_sym_constexpr] = ACTIONS(2659), - [anon_sym_constinit] = ACTIONS(2659), - [anon_sym_consteval] = ACTIONS(2659), - [anon_sym_signed] = ACTIONS(2659), - [anon_sym_unsigned] = ACTIONS(2659), - [anon_sym_long] = ACTIONS(2659), - [anon_sym_short] = ACTIONS(2659), - [sym_primitive_type] = ACTIONS(2659), - [anon_sym_enum] = ACTIONS(2659), - [anon_sym_class] = ACTIONS(2659), - [anon_sym_struct] = ACTIONS(2659), - [anon_sym_union] = ACTIONS(2659), - [anon_sym_if] = ACTIONS(2659), - [anon_sym_switch] = ACTIONS(2659), - [anon_sym_case] = ACTIONS(2659), - [anon_sym_default] = ACTIONS(2659), - [anon_sym_while] = ACTIONS(2659), - [anon_sym_do] = ACTIONS(2659), - [anon_sym_for] = ACTIONS(2659), - [anon_sym_return] = ACTIONS(2659), - [anon_sym_break] = ACTIONS(2659), - [anon_sym_continue] = ACTIONS(2659), - [anon_sym_goto] = ACTIONS(2659), - [anon_sym_DASH_DASH] = ACTIONS(2661), - [anon_sym_PLUS_PLUS] = ACTIONS(2661), - [anon_sym_sizeof] = ACTIONS(2659), - [sym_number_literal] = ACTIONS(2661), - [anon_sym_L_SQUOTE] = ACTIONS(2661), - [anon_sym_u_SQUOTE] = ACTIONS(2661), - [anon_sym_U_SQUOTE] = ACTIONS(2661), - [anon_sym_u8_SQUOTE] = ACTIONS(2661), - [anon_sym_SQUOTE] = ACTIONS(2661), - [anon_sym_L_DQUOTE] = ACTIONS(2661), - [anon_sym_u_DQUOTE] = ACTIONS(2661), - [anon_sym_U_DQUOTE] = ACTIONS(2661), - [anon_sym_u8_DQUOTE] = ACTIONS(2661), - [anon_sym_DQUOTE] = ACTIONS(2661), - [sym_true] = ACTIONS(2659), - [sym_false] = ACTIONS(2659), - [sym_null] = ACTIONS(2659), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2659), - [anon_sym_decltype] = ACTIONS(2659), - [anon_sym_virtual] = ACTIONS(2659), - [anon_sym_explicit] = ACTIONS(2659), - [anon_sym_typename] = ACTIONS(2659), - [anon_sym_template] = ACTIONS(2659), - [anon_sym_operator] = ACTIONS(2659), - [anon_sym_try] = ACTIONS(2659), - [anon_sym_delete] = ACTIONS(2659), - [anon_sym_throw] = ACTIONS(2659), - [anon_sym_namespace] = ACTIONS(2659), - [anon_sym_using] = ACTIONS(2659), - [anon_sym_static_assert] = ACTIONS(2659), - [anon_sym_concept] = ACTIONS(2659), - [anon_sym_co_return] = ACTIONS(2659), - [anon_sym_co_yield] = ACTIONS(2659), - [anon_sym_co_await] = ACTIONS(2659), - [anon_sym_new] = ACTIONS(2659), - [anon_sym_requires] = ACTIONS(2659), - [sym_this] = ACTIONS(2659), - [sym_nullptr] = ACTIONS(2659), - [sym_raw_string_literal] = ACTIONS(2661), + [639] = { + [ts_builtin_sym_end] = ACTIONS(2535), + [sym_identifier] = ACTIONS(2533), + [aux_sym_preproc_include_token1] = ACTIONS(2533), + [aux_sym_preproc_def_token1] = ACTIONS(2533), + [aux_sym_preproc_if_token1] = ACTIONS(2533), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2533), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2533), + [sym_preproc_directive] = ACTIONS(2533), + [anon_sym_LPAREN2] = ACTIONS(2535), + [anon_sym_BANG] = ACTIONS(2535), + [anon_sym_TILDE] = ACTIONS(2535), + [anon_sym_DASH] = ACTIONS(2533), + [anon_sym_PLUS] = ACTIONS(2533), + [anon_sym_STAR] = ACTIONS(2535), + [anon_sym_AMP_AMP] = ACTIONS(2535), + [anon_sym_AMP] = ACTIONS(2533), + [anon_sym_SEMI] = ACTIONS(2535), + [anon_sym_typedef] = ACTIONS(2533), + [anon_sym_extern] = ACTIONS(2533), + [anon_sym___attribute__] = ACTIONS(2533), + [anon_sym_COLON_COLON] = ACTIONS(2535), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2535), + [anon_sym___declspec] = ACTIONS(2533), + [anon_sym___based] = ACTIONS(2533), + [anon_sym___cdecl] = ACTIONS(2533), + [anon_sym___clrcall] = ACTIONS(2533), + [anon_sym___stdcall] = ACTIONS(2533), + [anon_sym___fastcall] = ACTIONS(2533), + [anon_sym___thiscall] = ACTIONS(2533), + [anon_sym___vectorcall] = ACTIONS(2533), + [anon_sym_LBRACE] = ACTIONS(2535), + [anon_sym_LBRACK] = ACTIONS(2533), + [anon_sym_static] = ACTIONS(2533), + [anon_sym_register] = ACTIONS(2533), + [anon_sym_inline] = ACTIONS(2533), + [anon_sym_thread_local] = ACTIONS(2533), + [anon_sym_const] = ACTIONS(2533), + [anon_sym_volatile] = ACTIONS(2533), + [anon_sym_restrict] = ACTIONS(2533), + [anon_sym__Atomic] = ACTIONS(2533), + [anon_sym_mutable] = ACTIONS(2533), + [anon_sym_constexpr] = ACTIONS(2533), + [anon_sym_constinit] = ACTIONS(2533), + [anon_sym_consteval] = ACTIONS(2533), + [anon_sym_signed] = ACTIONS(2533), + [anon_sym_unsigned] = ACTIONS(2533), + [anon_sym_long] = ACTIONS(2533), + [anon_sym_short] = ACTIONS(2533), + [sym_primitive_type] = ACTIONS(2533), + [anon_sym_enum] = ACTIONS(2533), + [anon_sym_class] = ACTIONS(2533), + [anon_sym_struct] = ACTIONS(2533), + [anon_sym_union] = ACTIONS(2533), + [anon_sym_if] = ACTIONS(2533), + [anon_sym_else] = ACTIONS(2533), + [anon_sym_switch] = ACTIONS(2533), + [anon_sym_case] = ACTIONS(2533), + [anon_sym_default] = ACTIONS(2533), + [anon_sym_while] = ACTIONS(2533), + [anon_sym_do] = ACTIONS(2533), + [anon_sym_for] = ACTIONS(2533), + [anon_sym_return] = ACTIONS(2533), + [anon_sym_break] = ACTIONS(2533), + [anon_sym_continue] = ACTIONS(2533), + [anon_sym_goto] = ACTIONS(2533), + [anon_sym_not] = ACTIONS(2533), + [anon_sym_compl] = ACTIONS(2533), + [anon_sym_DASH_DASH] = ACTIONS(2535), + [anon_sym_PLUS_PLUS] = ACTIONS(2535), + [anon_sym_sizeof] = ACTIONS(2533), + [sym_number_literal] = ACTIONS(2535), + [anon_sym_L_SQUOTE] = ACTIONS(2535), + [anon_sym_u_SQUOTE] = ACTIONS(2535), + [anon_sym_U_SQUOTE] = ACTIONS(2535), + [anon_sym_u8_SQUOTE] = ACTIONS(2535), + [anon_sym_SQUOTE] = ACTIONS(2535), + [anon_sym_L_DQUOTE] = ACTIONS(2535), + [anon_sym_u_DQUOTE] = ACTIONS(2535), + [anon_sym_U_DQUOTE] = ACTIONS(2535), + [anon_sym_u8_DQUOTE] = ACTIONS(2535), + [anon_sym_DQUOTE] = ACTIONS(2535), + [sym_true] = ACTIONS(2533), + [sym_false] = ACTIONS(2533), + [sym_null] = ACTIONS(2533), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2533), + [anon_sym_decltype] = ACTIONS(2533), + [anon_sym_virtual] = ACTIONS(2533), + [anon_sym_explicit] = ACTIONS(2533), + [anon_sym_typename] = ACTIONS(2533), + [anon_sym_template] = ACTIONS(2533), + [anon_sym_operator] = ACTIONS(2533), + [anon_sym_try] = ACTIONS(2533), + [anon_sym_delete] = ACTIONS(2533), + [anon_sym_throw] = ACTIONS(2533), + [anon_sym_namespace] = ACTIONS(2533), + [anon_sym_using] = ACTIONS(2533), + [anon_sym_static_assert] = ACTIONS(2533), + [anon_sym_concept] = ACTIONS(2533), + [anon_sym_co_return] = ACTIONS(2533), + [anon_sym_co_yield] = ACTIONS(2533), + [anon_sym_co_await] = ACTIONS(2533), + [anon_sym_new] = ACTIONS(2533), + [anon_sym_requires] = ACTIONS(2533), + [sym_this] = ACTIONS(2533), + [sym_nullptr] = ACTIONS(2533), + [sym_raw_string_literal] = ACTIONS(2535), }, - [1037] = { - [sym_identifier] = ACTIONS(2647), - [aux_sym_preproc_include_token1] = ACTIONS(2647), - [aux_sym_preproc_def_token1] = ACTIONS(2647), - [aux_sym_preproc_if_token1] = ACTIONS(2647), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2647), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2647), - [sym_preproc_directive] = ACTIONS(2647), - [anon_sym_LPAREN2] = ACTIONS(2649), - [anon_sym_BANG] = ACTIONS(2649), - [anon_sym_TILDE] = ACTIONS(2649), - [anon_sym_DASH] = ACTIONS(2647), - [anon_sym_PLUS] = ACTIONS(2647), - [anon_sym_STAR] = ACTIONS(2649), - [anon_sym_AMP_AMP] = ACTIONS(2649), - [anon_sym_AMP] = ACTIONS(2647), - [anon_sym_SEMI] = ACTIONS(2649), - [anon_sym_typedef] = ACTIONS(2647), - [anon_sym_extern] = ACTIONS(2647), - [anon_sym___attribute__] = ACTIONS(2647), - [anon_sym_COLON_COLON] = ACTIONS(2649), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2649), - [anon_sym___declspec] = ACTIONS(2647), - [anon_sym___based] = ACTIONS(2647), - [anon_sym___cdecl] = ACTIONS(2647), - [anon_sym___clrcall] = ACTIONS(2647), - [anon_sym___stdcall] = ACTIONS(2647), - [anon_sym___fastcall] = ACTIONS(2647), - [anon_sym___thiscall] = ACTIONS(2647), - [anon_sym___vectorcall] = ACTIONS(2647), - [anon_sym_LBRACE] = ACTIONS(2649), - [anon_sym_RBRACE] = ACTIONS(2649), - [anon_sym_LBRACK] = ACTIONS(2647), - [anon_sym_static] = ACTIONS(2647), - [anon_sym_register] = ACTIONS(2647), - [anon_sym_inline] = ACTIONS(2647), - [anon_sym_thread_local] = ACTIONS(2647), - [anon_sym_const] = ACTIONS(2647), - [anon_sym_volatile] = ACTIONS(2647), - [anon_sym_restrict] = ACTIONS(2647), - [anon_sym__Atomic] = ACTIONS(2647), - [anon_sym_mutable] = ACTIONS(2647), - [anon_sym_constexpr] = ACTIONS(2647), - [anon_sym_constinit] = ACTIONS(2647), - [anon_sym_consteval] = ACTIONS(2647), - [anon_sym_signed] = ACTIONS(2647), - [anon_sym_unsigned] = ACTIONS(2647), - [anon_sym_long] = ACTIONS(2647), - [anon_sym_short] = ACTIONS(2647), - [sym_primitive_type] = ACTIONS(2647), - [anon_sym_enum] = ACTIONS(2647), - [anon_sym_class] = ACTIONS(2647), - [anon_sym_struct] = ACTIONS(2647), - [anon_sym_union] = ACTIONS(2647), - [anon_sym_if] = ACTIONS(2647), - [anon_sym_switch] = ACTIONS(2647), - [anon_sym_case] = ACTIONS(2647), - [anon_sym_default] = ACTIONS(2647), - [anon_sym_while] = ACTIONS(2647), - [anon_sym_do] = ACTIONS(2647), - [anon_sym_for] = ACTIONS(2647), - [anon_sym_return] = ACTIONS(2647), - [anon_sym_break] = ACTIONS(2647), - [anon_sym_continue] = ACTIONS(2647), - [anon_sym_goto] = ACTIONS(2647), - [anon_sym_DASH_DASH] = ACTIONS(2649), - [anon_sym_PLUS_PLUS] = ACTIONS(2649), - [anon_sym_sizeof] = ACTIONS(2647), - [sym_number_literal] = ACTIONS(2649), - [anon_sym_L_SQUOTE] = ACTIONS(2649), - [anon_sym_u_SQUOTE] = ACTIONS(2649), - [anon_sym_U_SQUOTE] = ACTIONS(2649), - [anon_sym_u8_SQUOTE] = ACTIONS(2649), - [anon_sym_SQUOTE] = ACTIONS(2649), - [anon_sym_L_DQUOTE] = ACTIONS(2649), - [anon_sym_u_DQUOTE] = ACTIONS(2649), - [anon_sym_U_DQUOTE] = ACTIONS(2649), - [anon_sym_u8_DQUOTE] = ACTIONS(2649), - [anon_sym_DQUOTE] = ACTIONS(2649), - [sym_true] = ACTIONS(2647), - [sym_false] = ACTIONS(2647), - [sym_null] = ACTIONS(2647), + [640] = { + [sym_identifier] = ACTIONS(2655), + [aux_sym_preproc_include_token1] = ACTIONS(2655), + [aux_sym_preproc_def_token1] = ACTIONS(2655), + [aux_sym_preproc_if_token1] = ACTIONS(2655), + [aux_sym_preproc_if_token2] = ACTIONS(2655), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2655), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2655), + [sym_preproc_directive] = ACTIONS(2655), + [anon_sym_LPAREN2] = ACTIONS(2657), + [anon_sym_BANG] = ACTIONS(2657), + [anon_sym_TILDE] = ACTIONS(2657), + [anon_sym_DASH] = ACTIONS(2655), + [anon_sym_PLUS] = ACTIONS(2655), + [anon_sym_STAR] = ACTIONS(2657), + [anon_sym_AMP_AMP] = ACTIONS(2657), + [anon_sym_AMP] = ACTIONS(2655), + [anon_sym_SEMI] = ACTIONS(2657), + [anon_sym_typedef] = ACTIONS(2655), + [anon_sym_extern] = ACTIONS(2655), + [anon_sym___attribute__] = ACTIONS(2655), + [anon_sym_COLON_COLON] = ACTIONS(2657), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2657), + [anon_sym___declspec] = ACTIONS(2655), + [anon_sym___based] = ACTIONS(2655), + [anon_sym___cdecl] = ACTIONS(2655), + [anon_sym___clrcall] = ACTIONS(2655), + [anon_sym___stdcall] = ACTIONS(2655), + [anon_sym___fastcall] = ACTIONS(2655), + [anon_sym___thiscall] = ACTIONS(2655), + [anon_sym___vectorcall] = ACTIONS(2655), + [anon_sym_LBRACE] = ACTIONS(2657), + [anon_sym_LBRACK] = ACTIONS(2655), + [anon_sym_static] = ACTIONS(2655), + [anon_sym_register] = ACTIONS(2655), + [anon_sym_inline] = ACTIONS(2655), + [anon_sym_thread_local] = ACTIONS(2655), + [anon_sym_const] = ACTIONS(2655), + [anon_sym_volatile] = ACTIONS(2655), + [anon_sym_restrict] = ACTIONS(2655), + [anon_sym__Atomic] = ACTIONS(2655), + [anon_sym_mutable] = ACTIONS(2655), + [anon_sym_constexpr] = ACTIONS(2655), + [anon_sym_constinit] = ACTIONS(2655), + [anon_sym_consteval] = ACTIONS(2655), + [anon_sym_signed] = ACTIONS(2655), + [anon_sym_unsigned] = ACTIONS(2655), + [anon_sym_long] = ACTIONS(2655), + [anon_sym_short] = ACTIONS(2655), + [sym_primitive_type] = ACTIONS(2655), + [anon_sym_enum] = ACTIONS(2655), + [anon_sym_class] = ACTIONS(2655), + [anon_sym_struct] = ACTIONS(2655), + [anon_sym_union] = ACTIONS(2655), + [anon_sym_if] = ACTIONS(2655), + [anon_sym_else] = ACTIONS(2655), + [anon_sym_switch] = ACTIONS(2655), + [anon_sym_case] = ACTIONS(2655), + [anon_sym_default] = ACTIONS(2655), + [anon_sym_while] = ACTIONS(2655), + [anon_sym_do] = ACTIONS(2655), + [anon_sym_for] = ACTIONS(2655), + [anon_sym_return] = ACTIONS(2655), + [anon_sym_break] = ACTIONS(2655), + [anon_sym_continue] = ACTIONS(2655), + [anon_sym_goto] = ACTIONS(2655), + [anon_sym_not] = ACTIONS(2655), + [anon_sym_compl] = ACTIONS(2655), + [anon_sym_DASH_DASH] = ACTIONS(2657), + [anon_sym_PLUS_PLUS] = ACTIONS(2657), + [anon_sym_sizeof] = ACTIONS(2655), + [sym_number_literal] = ACTIONS(2657), + [anon_sym_L_SQUOTE] = ACTIONS(2657), + [anon_sym_u_SQUOTE] = ACTIONS(2657), + [anon_sym_U_SQUOTE] = ACTIONS(2657), + [anon_sym_u8_SQUOTE] = ACTIONS(2657), + [anon_sym_SQUOTE] = ACTIONS(2657), + [anon_sym_L_DQUOTE] = ACTIONS(2657), + [anon_sym_u_DQUOTE] = ACTIONS(2657), + [anon_sym_U_DQUOTE] = ACTIONS(2657), + [anon_sym_u8_DQUOTE] = ACTIONS(2657), + [anon_sym_DQUOTE] = ACTIONS(2657), + [sym_true] = ACTIONS(2655), + [sym_false] = ACTIONS(2655), + [sym_null] = ACTIONS(2655), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2647), - [anon_sym_decltype] = ACTIONS(2647), - [anon_sym_virtual] = ACTIONS(2647), - [anon_sym_explicit] = ACTIONS(2647), - [anon_sym_typename] = ACTIONS(2647), - [anon_sym_template] = ACTIONS(2647), - [anon_sym_operator] = ACTIONS(2647), - [anon_sym_try] = ACTIONS(2647), - [anon_sym_delete] = ACTIONS(2647), - [anon_sym_throw] = ACTIONS(2647), - [anon_sym_namespace] = ACTIONS(2647), - [anon_sym_using] = ACTIONS(2647), - [anon_sym_static_assert] = ACTIONS(2647), - [anon_sym_concept] = ACTIONS(2647), - [anon_sym_co_return] = ACTIONS(2647), - [anon_sym_co_yield] = ACTIONS(2647), - [anon_sym_co_await] = ACTIONS(2647), - [anon_sym_new] = ACTIONS(2647), - [anon_sym_requires] = ACTIONS(2647), - [sym_this] = ACTIONS(2647), - [sym_nullptr] = ACTIONS(2647), - [sym_raw_string_literal] = ACTIONS(2649), - }, - [1038] = { - [sym_identifier] = ACTIONS(2783), - [aux_sym_preproc_include_token1] = ACTIONS(2783), - [aux_sym_preproc_def_token1] = ACTIONS(2783), - [aux_sym_preproc_if_token1] = ACTIONS(2783), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2783), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2783), - [sym_preproc_directive] = ACTIONS(2783), - [anon_sym_LPAREN2] = ACTIONS(2785), - [anon_sym_BANG] = ACTIONS(2785), - [anon_sym_TILDE] = ACTIONS(2785), - [anon_sym_DASH] = ACTIONS(2783), - [anon_sym_PLUS] = ACTIONS(2783), - [anon_sym_STAR] = ACTIONS(2785), - [anon_sym_AMP_AMP] = ACTIONS(2785), - [anon_sym_AMP] = ACTIONS(2783), - [anon_sym_SEMI] = ACTIONS(2785), - [anon_sym_typedef] = ACTIONS(2783), - [anon_sym_extern] = ACTIONS(2783), - [anon_sym___attribute__] = ACTIONS(2783), - [anon_sym_COLON_COLON] = ACTIONS(2785), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2785), - [anon_sym___declspec] = ACTIONS(2783), - [anon_sym___based] = ACTIONS(2783), - [anon_sym___cdecl] = ACTIONS(2783), - [anon_sym___clrcall] = ACTIONS(2783), - [anon_sym___stdcall] = ACTIONS(2783), - [anon_sym___fastcall] = ACTIONS(2783), - [anon_sym___thiscall] = ACTIONS(2783), - [anon_sym___vectorcall] = ACTIONS(2783), - [anon_sym_LBRACE] = ACTIONS(2785), - [anon_sym_RBRACE] = ACTIONS(2785), - [anon_sym_LBRACK] = ACTIONS(2783), - [anon_sym_static] = ACTIONS(2783), - [anon_sym_register] = ACTIONS(2783), - [anon_sym_inline] = ACTIONS(2783), - [anon_sym_thread_local] = ACTIONS(2783), - [anon_sym_const] = ACTIONS(2783), - [anon_sym_volatile] = ACTIONS(2783), - [anon_sym_restrict] = ACTIONS(2783), - [anon_sym__Atomic] = ACTIONS(2783), - [anon_sym_mutable] = ACTIONS(2783), - [anon_sym_constexpr] = ACTIONS(2783), - [anon_sym_constinit] = ACTIONS(2783), - [anon_sym_consteval] = ACTIONS(2783), - [anon_sym_signed] = ACTIONS(2783), - [anon_sym_unsigned] = ACTIONS(2783), - [anon_sym_long] = ACTIONS(2783), - [anon_sym_short] = ACTIONS(2783), - [sym_primitive_type] = ACTIONS(2783), - [anon_sym_enum] = ACTIONS(2783), - [anon_sym_class] = ACTIONS(2783), - [anon_sym_struct] = ACTIONS(2783), - [anon_sym_union] = ACTIONS(2783), - [anon_sym_if] = ACTIONS(2783), - [anon_sym_switch] = ACTIONS(2783), - [anon_sym_case] = ACTIONS(2783), - [anon_sym_default] = ACTIONS(2783), - [anon_sym_while] = ACTIONS(2783), - [anon_sym_do] = ACTIONS(2783), - [anon_sym_for] = ACTIONS(2783), - [anon_sym_return] = ACTIONS(2783), - [anon_sym_break] = ACTIONS(2783), - [anon_sym_continue] = ACTIONS(2783), - [anon_sym_goto] = ACTIONS(2783), - [anon_sym_DASH_DASH] = ACTIONS(2785), - [anon_sym_PLUS_PLUS] = ACTIONS(2785), - [anon_sym_sizeof] = ACTIONS(2783), - [sym_number_literal] = ACTIONS(2785), - [anon_sym_L_SQUOTE] = ACTIONS(2785), - [anon_sym_u_SQUOTE] = ACTIONS(2785), - [anon_sym_U_SQUOTE] = ACTIONS(2785), - [anon_sym_u8_SQUOTE] = ACTIONS(2785), - [anon_sym_SQUOTE] = ACTIONS(2785), - [anon_sym_L_DQUOTE] = ACTIONS(2785), - [anon_sym_u_DQUOTE] = ACTIONS(2785), - [anon_sym_U_DQUOTE] = ACTIONS(2785), - [anon_sym_u8_DQUOTE] = ACTIONS(2785), - [anon_sym_DQUOTE] = ACTIONS(2785), - [sym_true] = ACTIONS(2783), - [sym_false] = ACTIONS(2783), - [sym_null] = ACTIONS(2783), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2783), - [anon_sym_decltype] = ACTIONS(2783), - [anon_sym_virtual] = ACTIONS(2783), - [anon_sym_explicit] = ACTIONS(2783), - [anon_sym_typename] = ACTIONS(2783), - [anon_sym_template] = ACTIONS(2783), - [anon_sym_operator] = ACTIONS(2783), - [anon_sym_try] = ACTIONS(2783), - [anon_sym_delete] = ACTIONS(2783), - [anon_sym_throw] = ACTIONS(2783), - [anon_sym_namespace] = ACTIONS(2783), - [anon_sym_using] = ACTIONS(2783), - [anon_sym_static_assert] = ACTIONS(2783), - [anon_sym_concept] = ACTIONS(2783), - [anon_sym_co_return] = ACTIONS(2783), - [anon_sym_co_yield] = ACTIONS(2783), - [anon_sym_co_await] = ACTIONS(2783), - [anon_sym_new] = ACTIONS(2783), - [anon_sym_requires] = ACTIONS(2783), - [sym_this] = ACTIONS(2783), - [sym_nullptr] = ACTIONS(2783), - [sym_raw_string_literal] = ACTIONS(2785), - }, - [1039] = { - [sym_identifier] = ACTIONS(2633), - [aux_sym_preproc_include_token1] = ACTIONS(2633), - [aux_sym_preproc_def_token1] = ACTIONS(2633), - [aux_sym_preproc_if_token1] = ACTIONS(2633), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2633), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2633), - [sym_preproc_directive] = ACTIONS(2633), - [anon_sym_LPAREN2] = ACTIONS(2635), - [anon_sym_BANG] = ACTIONS(2635), - [anon_sym_TILDE] = ACTIONS(2635), - [anon_sym_DASH] = ACTIONS(2633), - [anon_sym_PLUS] = ACTIONS(2633), - [anon_sym_STAR] = ACTIONS(2635), - [anon_sym_AMP_AMP] = ACTIONS(2635), - [anon_sym_AMP] = ACTIONS(2633), - [anon_sym_SEMI] = ACTIONS(2635), - [anon_sym_typedef] = ACTIONS(2633), - [anon_sym_extern] = ACTIONS(2633), - [anon_sym___attribute__] = ACTIONS(2633), - [anon_sym_COLON_COLON] = ACTIONS(2635), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2635), - [anon_sym___declspec] = ACTIONS(2633), - [anon_sym___based] = ACTIONS(2633), - [anon_sym___cdecl] = ACTIONS(2633), - [anon_sym___clrcall] = ACTIONS(2633), - [anon_sym___stdcall] = ACTIONS(2633), - [anon_sym___fastcall] = ACTIONS(2633), - [anon_sym___thiscall] = ACTIONS(2633), - [anon_sym___vectorcall] = ACTIONS(2633), - [anon_sym_LBRACE] = ACTIONS(2635), - [anon_sym_RBRACE] = ACTIONS(2635), - [anon_sym_LBRACK] = ACTIONS(2633), - [anon_sym_static] = ACTIONS(2633), - [anon_sym_register] = ACTIONS(2633), - [anon_sym_inline] = ACTIONS(2633), - [anon_sym_thread_local] = ACTIONS(2633), - [anon_sym_const] = ACTIONS(2633), - [anon_sym_volatile] = ACTIONS(2633), - [anon_sym_restrict] = ACTIONS(2633), - [anon_sym__Atomic] = ACTIONS(2633), - [anon_sym_mutable] = ACTIONS(2633), - [anon_sym_constexpr] = ACTIONS(2633), - [anon_sym_constinit] = ACTIONS(2633), - [anon_sym_consteval] = ACTIONS(2633), - [anon_sym_signed] = ACTIONS(2633), - [anon_sym_unsigned] = ACTIONS(2633), - [anon_sym_long] = ACTIONS(2633), - [anon_sym_short] = ACTIONS(2633), - [sym_primitive_type] = ACTIONS(2633), - [anon_sym_enum] = ACTIONS(2633), - [anon_sym_class] = ACTIONS(2633), - [anon_sym_struct] = ACTIONS(2633), - [anon_sym_union] = ACTIONS(2633), - [anon_sym_if] = ACTIONS(2633), - [anon_sym_switch] = ACTIONS(2633), - [anon_sym_case] = ACTIONS(2633), - [anon_sym_default] = ACTIONS(2633), - [anon_sym_while] = ACTIONS(2633), - [anon_sym_do] = ACTIONS(2633), - [anon_sym_for] = ACTIONS(2633), - [anon_sym_return] = ACTIONS(2633), - [anon_sym_break] = ACTIONS(2633), - [anon_sym_continue] = ACTIONS(2633), - [anon_sym_goto] = ACTIONS(2633), - [anon_sym_DASH_DASH] = ACTIONS(2635), - [anon_sym_PLUS_PLUS] = ACTIONS(2635), - [anon_sym_sizeof] = ACTIONS(2633), - [sym_number_literal] = ACTIONS(2635), - [anon_sym_L_SQUOTE] = ACTIONS(2635), - [anon_sym_u_SQUOTE] = ACTIONS(2635), - [anon_sym_U_SQUOTE] = ACTIONS(2635), - [anon_sym_u8_SQUOTE] = ACTIONS(2635), - [anon_sym_SQUOTE] = ACTIONS(2635), - [anon_sym_L_DQUOTE] = ACTIONS(2635), - [anon_sym_u_DQUOTE] = ACTIONS(2635), - [anon_sym_U_DQUOTE] = ACTIONS(2635), - [anon_sym_u8_DQUOTE] = ACTIONS(2635), - [anon_sym_DQUOTE] = ACTIONS(2635), - [sym_true] = ACTIONS(2633), - [sym_false] = ACTIONS(2633), - [sym_null] = ACTIONS(2633), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2633), - [anon_sym_decltype] = ACTIONS(2633), - [anon_sym_virtual] = ACTIONS(2633), - [anon_sym_explicit] = ACTIONS(2633), - [anon_sym_typename] = ACTIONS(2633), - [anon_sym_template] = ACTIONS(2633), - [anon_sym_operator] = ACTIONS(2633), - [anon_sym_try] = ACTIONS(2633), - [anon_sym_delete] = ACTIONS(2633), - [anon_sym_throw] = ACTIONS(2633), - [anon_sym_namespace] = ACTIONS(2633), - [anon_sym_using] = ACTIONS(2633), - [anon_sym_static_assert] = ACTIONS(2633), - [anon_sym_concept] = ACTIONS(2633), - [anon_sym_co_return] = ACTIONS(2633), - [anon_sym_co_yield] = ACTIONS(2633), - [anon_sym_co_await] = ACTIONS(2633), - [anon_sym_new] = ACTIONS(2633), - [anon_sym_requires] = ACTIONS(2633), - [sym_this] = ACTIONS(2633), - [sym_nullptr] = ACTIONS(2633), - [sym_raw_string_literal] = ACTIONS(2635), + [sym_auto] = ACTIONS(2655), + [anon_sym_decltype] = ACTIONS(2655), + [anon_sym_virtual] = ACTIONS(2655), + [anon_sym_explicit] = ACTIONS(2655), + [anon_sym_typename] = ACTIONS(2655), + [anon_sym_template] = ACTIONS(2655), + [anon_sym_operator] = ACTIONS(2655), + [anon_sym_try] = ACTIONS(2655), + [anon_sym_delete] = ACTIONS(2655), + [anon_sym_throw] = ACTIONS(2655), + [anon_sym_namespace] = ACTIONS(2655), + [anon_sym_using] = ACTIONS(2655), + [anon_sym_static_assert] = ACTIONS(2655), + [anon_sym_concept] = ACTIONS(2655), + [anon_sym_co_return] = ACTIONS(2655), + [anon_sym_co_yield] = ACTIONS(2655), + [anon_sym_co_await] = ACTIONS(2655), + [anon_sym_new] = ACTIONS(2655), + [anon_sym_requires] = ACTIONS(2655), + [sym_this] = ACTIONS(2655), + [sym_nullptr] = ACTIONS(2655), + [sym_raw_string_literal] = ACTIONS(2657), }, - [1040] = { - [sym_identifier] = ACTIONS(2647), - [aux_sym_preproc_include_token1] = ACTIONS(2647), - [aux_sym_preproc_def_token1] = ACTIONS(2647), - [aux_sym_preproc_if_token1] = ACTIONS(2647), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2647), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2647), - [sym_preproc_directive] = ACTIONS(2647), - [anon_sym_LPAREN2] = ACTIONS(2649), - [anon_sym_BANG] = ACTIONS(2649), - [anon_sym_TILDE] = ACTIONS(2649), - [anon_sym_DASH] = ACTIONS(2647), - [anon_sym_PLUS] = ACTIONS(2647), - [anon_sym_STAR] = ACTIONS(2649), - [anon_sym_AMP_AMP] = ACTIONS(2649), - [anon_sym_AMP] = ACTIONS(2647), - [anon_sym_SEMI] = ACTIONS(2649), - [anon_sym_typedef] = ACTIONS(2647), - [anon_sym_extern] = ACTIONS(2647), - [anon_sym___attribute__] = ACTIONS(2647), - [anon_sym_COLON_COLON] = ACTIONS(2649), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2649), - [anon_sym___declspec] = ACTIONS(2647), - [anon_sym___based] = ACTIONS(2647), - [anon_sym___cdecl] = ACTIONS(2647), - [anon_sym___clrcall] = ACTIONS(2647), - [anon_sym___stdcall] = ACTIONS(2647), - [anon_sym___fastcall] = ACTIONS(2647), - [anon_sym___thiscall] = ACTIONS(2647), - [anon_sym___vectorcall] = ACTIONS(2647), - [anon_sym_LBRACE] = ACTIONS(2649), - [anon_sym_RBRACE] = ACTIONS(2649), - [anon_sym_LBRACK] = ACTIONS(2647), - [anon_sym_static] = ACTIONS(2647), - [anon_sym_register] = ACTIONS(2647), - [anon_sym_inline] = ACTIONS(2647), - [anon_sym_thread_local] = ACTIONS(2647), - [anon_sym_const] = ACTIONS(2647), - [anon_sym_volatile] = ACTIONS(2647), - [anon_sym_restrict] = ACTIONS(2647), - [anon_sym__Atomic] = ACTIONS(2647), - [anon_sym_mutable] = ACTIONS(2647), - [anon_sym_constexpr] = ACTIONS(2647), - [anon_sym_constinit] = ACTIONS(2647), - [anon_sym_consteval] = ACTIONS(2647), - [anon_sym_signed] = ACTIONS(2647), - [anon_sym_unsigned] = ACTIONS(2647), - [anon_sym_long] = ACTIONS(2647), - [anon_sym_short] = ACTIONS(2647), - [sym_primitive_type] = ACTIONS(2647), - [anon_sym_enum] = ACTIONS(2647), - [anon_sym_class] = ACTIONS(2647), - [anon_sym_struct] = ACTIONS(2647), - [anon_sym_union] = ACTIONS(2647), - [anon_sym_if] = ACTIONS(2647), - [anon_sym_switch] = ACTIONS(2647), - [anon_sym_case] = ACTIONS(2647), - [anon_sym_default] = ACTIONS(2647), - [anon_sym_while] = ACTIONS(2647), - [anon_sym_do] = ACTIONS(2647), - [anon_sym_for] = ACTIONS(2647), - [anon_sym_return] = ACTIONS(2647), - [anon_sym_break] = ACTIONS(2647), - [anon_sym_continue] = ACTIONS(2647), - [anon_sym_goto] = ACTIONS(2647), - [anon_sym_DASH_DASH] = ACTIONS(2649), - [anon_sym_PLUS_PLUS] = ACTIONS(2649), - [anon_sym_sizeof] = ACTIONS(2647), - [sym_number_literal] = ACTIONS(2649), - [anon_sym_L_SQUOTE] = ACTIONS(2649), - [anon_sym_u_SQUOTE] = ACTIONS(2649), - [anon_sym_U_SQUOTE] = ACTIONS(2649), - [anon_sym_u8_SQUOTE] = ACTIONS(2649), - [anon_sym_SQUOTE] = ACTIONS(2649), - [anon_sym_L_DQUOTE] = ACTIONS(2649), - [anon_sym_u_DQUOTE] = ACTIONS(2649), - [anon_sym_U_DQUOTE] = ACTIONS(2649), - [anon_sym_u8_DQUOTE] = ACTIONS(2649), - [anon_sym_DQUOTE] = ACTIONS(2649), - [sym_true] = ACTIONS(2647), - [sym_false] = ACTIONS(2647), - [sym_null] = ACTIONS(2647), + [641] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token2] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2647), - [anon_sym_decltype] = ACTIONS(2647), - [anon_sym_virtual] = ACTIONS(2647), - [anon_sym_explicit] = ACTIONS(2647), - [anon_sym_typename] = ACTIONS(2647), - [anon_sym_template] = ACTIONS(2647), - [anon_sym_operator] = ACTIONS(2647), - [anon_sym_try] = ACTIONS(2647), - [anon_sym_delete] = ACTIONS(2647), - [anon_sym_throw] = ACTIONS(2647), - [anon_sym_namespace] = ACTIONS(2647), - [anon_sym_using] = ACTIONS(2647), - [anon_sym_static_assert] = ACTIONS(2647), - [anon_sym_concept] = ACTIONS(2647), - [anon_sym_co_return] = ACTIONS(2647), - [anon_sym_co_yield] = ACTIONS(2647), - [anon_sym_co_await] = ACTIONS(2647), - [anon_sym_new] = ACTIONS(2647), - [anon_sym_requires] = ACTIONS(2647), - [sym_this] = ACTIONS(2647), - [sym_nullptr] = ACTIONS(2647), - [sym_raw_string_literal] = ACTIONS(2649), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1041] = { - [sym_identifier] = ACTIONS(2659), - [aux_sym_preproc_include_token1] = ACTIONS(2659), - [aux_sym_preproc_def_token1] = ACTIONS(2659), - [aux_sym_preproc_if_token1] = ACTIONS(2659), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2659), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2659), - [sym_preproc_directive] = ACTIONS(2659), - [anon_sym_LPAREN2] = ACTIONS(2661), - [anon_sym_BANG] = ACTIONS(2661), - [anon_sym_TILDE] = ACTIONS(2661), - [anon_sym_DASH] = ACTIONS(2659), - [anon_sym_PLUS] = ACTIONS(2659), - [anon_sym_STAR] = ACTIONS(2661), - [anon_sym_AMP_AMP] = ACTIONS(2661), - [anon_sym_AMP] = ACTIONS(2659), - [anon_sym_SEMI] = ACTIONS(2661), - [anon_sym_typedef] = ACTIONS(2659), - [anon_sym_extern] = ACTIONS(2659), - [anon_sym___attribute__] = ACTIONS(2659), - [anon_sym_COLON_COLON] = ACTIONS(2661), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2661), - [anon_sym___declspec] = ACTIONS(2659), - [anon_sym___based] = ACTIONS(2659), - [anon_sym___cdecl] = ACTIONS(2659), - [anon_sym___clrcall] = ACTIONS(2659), - [anon_sym___stdcall] = ACTIONS(2659), - [anon_sym___fastcall] = ACTIONS(2659), - [anon_sym___thiscall] = ACTIONS(2659), - [anon_sym___vectorcall] = ACTIONS(2659), - [anon_sym_LBRACE] = ACTIONS(2661), - [anon_sym_RBRACE] = ACTIONS(2661), - [anon_sym_LBRACK] = ACTIONS(2659), - [anon_sym_static] = ACTIONS(2659), - [anon_sym_register] = ACTIONS(2659), - [anon_sym_inline] = ACTIONS(2659), - [anon_sym_thread_local] = ACTIONS(2659), - [anon_sym_const] = ACTIONS(2659), - [anon_sym_volatile] = ACTIONS(2659), - [anon_sym_restrict] = ACTIONS(2659), - [anon_sym__Atomic] = ACTIONS(2659), - [anon_sym_mutable] = ACTIONS(2659), - [anon_sym_constexpr] = ACTIONS(2659), - [anon_sym_constinit] = ACTIONS(2659), - [anon_sym_consteval] = ACTIONS(2659), - [anon_sym_signed] = ACTIONS(2659), - [anon_sym_unsigned] = ACTIONS(2659), - [anon_sym_long] = ACTIONS(2659), - [anon_sym_short] = ACTIONS(2659), - [sym_primitive_type] = ACTIONS(2659), - [anon_sym_enum] = ACTIONS(2659), - [anon_sym_class] = ACTIONS(2659), - [anon_sym_struct] = ACTIONS(2659), - [anon_sym_union] = ACTIONS(2659), - [anon_sym_if] = ACTIONS(2659), - [anon_sym_switch] = ACTIONS(2659), - [anon_sym_case] = ACTIONS(2659), - [anon_sym_default] = ACTIONS(2659), - [anon_sym_while] = ACTIONS(2659), - [anon_sym_do] = ACTIONS(2659), - [anon_sym_for] = ACTIONS(2659), - [anon_sym_return] = ACTIONS(2659), - [anon_sym_break] = ACTIONS(2659), - [anon_sym_continue] = ACTIONS(2659), - [anon_sym_goto] = ACTIONS(2659), - [anon_sym_DASH_DASH] = ACTIONS(2661), - [anon_sym_PLUS_PLUS] = ACTIONS(2661), - [anon_sym_sizeof] = ACTIONS(2659), - [sym_number_literal] = ACTIONS(2661), - [anon_sym_L_SQUOTE] = ACTIONS(2661), - [anon_sym_u_SQUOTE] = ACTIONS(2661), - [anon_sym_U_SQUOTE] = ACTIONS(2661), - [anon_sym_u8_SQUOTE] = ACTIONS(2661), - [anon_sym_SQUOTE] = ACTIONS(2661), - [anon_sym_L_DQUOTE] = ACTIONS(2661), - [anon_sym_u_DQUOTE] = ACTIONS(2661), - [anon_sym_U_DQUOTE] = ACTIONS(2661), - [anon_sym_u8_DQUOTE] = ACTIONS(2661), - [anon_sym_DQUOTE] = ACTIONS(2661), - [sym_true] = ACTIONS(2659), - [sym_false] = ACTIONS(2659), - [sym_null] = ACTIONS(2659), + [642] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token2] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2659), - [anon_sym_decltype] = ACTIONS(2659), - [anon_sym_virtual] = ACTIONS(2659), - [anon_sym_explicit] = ACTIONS(2659), - [anon_sym_typename] = ACTIONS(2659), - [anon_sym_template] = ACTIONS(2659), - [anon_sym_operator] = ACTIONS(2659), - [anon_sym_try] = ACTIONS(2659), - [anon_sym_delete] = ACTIONS(2659), - [anon_sym_throw] = ACTIONS(2659), - [anon_sym_namespace] = ACTIONS(2659), - [anon_sym_using] = ACTIONS(2659), - [anon_sym_static_assert] = ACTIONS(2659), - [anon_sym_concept] = ACTIONS(2659), - [anon_sym_co_return] = ACTIONS(2659), - [anon_sym_co_yield] = ACTIONS(2659), - [anon_sym_co_await] = ACTIONS(2659), - [anon_sym_new] = ACTIONS(2659), - [anon_sym_requires] = ACTIONS(2659), - [sym_this] = ACTIONS(2659), - [sym_nullptr] = ACTIONS(2659), - [sym_raw_string_literal] = ACTIONS(2661), - }, - [1042] = { - [sym_identifier] = ACTIONS(2673), - [aux_sym_preproc_include_token1] = ACTIONS(2673), - [aux_sym_preproc_def_token1] = ACTIONS(2673), - [aux_sym_preproc_if_token1] = ACTIONS(2673), - [aux_sym_preproc_if_token2] = ACTIONS(2673), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2673), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2673), - [sym_preproc_directive] = ACTIONS(2673), - [anon_sym_LPAREN2] = ACTIONS(2675), - [anon_sym_BANG] = ACTIONS(2675), - [anon_sym_TILDE] = ACTIONS(2675), - [anon_sym_DASH] = ACTIONS(2673), - [anon_sym_PLUS] = ACTIONS(2673), - [anon_sym_STAR] = ACTIONS(2675), - [anon_sym_AMP_AMP] = ACTIONS(2675), - [anon_sym_AMP] = ACTIONS(2673), - [anon_sym_SEMI] = ACTIONS(2675), - [anon_sym_typedef] = ACTIONS(2673), - [anon_sym_extern] = ACTIONS(2673), - [anon_sym___attribute__] = ACTIONS(2673), - [anon_sym_COLON_COLON] = ACTIONS(2675), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2675), - [anon_sym___declspec] = ACTIONS(2673), - [anon_sym___based] = ACTIONS(2673), - [anon_sym___cdecl] = ACTIONS(2673), - [anon_sym___clrcall] = ACTIONS(2673), - [anon_sym___stdcall] = ACTIONS(2673), - [anon_sym___fastcall] = ACTIONS(2673), - [anon_sym___thiscall] = ACTIONS(2673), - [anon_sym___vectorcall] = ACTIONS(2673), - [anon_sym_LBRACE] = ACTIONS(2675), - [anon_sym_LBRACK] = ACTIONS(2673), - [anon_sym_static] = ACTIONS(2673), - [anon_sym_register] = ACTIONS(2673), - [anon_sym_inline] = ACTIONS(2673), - [anon_sym_thread_local] = ACTIONS(2673), - [anon_sym_const] = ACTIONS(2673), - [anon_sym_volatile] = ACTIONS(2673), - [anon_sym_restrict] = ACTIONS(2673), - [anon_sym__Atomic] = ACTIONS(2673), - [anon_sym_mutable] = ACTIONS(2673), - [anon_sym_constexpr] = ACTIONS(2673), - [anon_sym_constinit] = ACTIONS(2673), - [anon_sym_consteval] = ACTIONS(2673), - [anon_sym_signed] = ACTIONS(2673), - [anon_sym_unsigned] = ACTIONS(2673), - [anon_sym_long] = ACTIONS(2673), - [anon_sym_short] = ACTIONS(2673), - [sym_primitive_type] = ACTIONS(2673), - [anon_sym_enum] = ACTIONS(2673), - [anon_sym_class] = ACTIONS(2673), - [anon_sym_struct] = ACTIONS(2673), - [anon_sym_union] = ACTIONS(2673), - [anon_sym_if] = ACTIONS(2673), - [anon_sym_switch] = ACTIONS(2673), - [anon_sym_case] = ACTIONS(2673), - [anon_sym_default] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2673), - [anon_sym_do] = ACTIONS(2673), - [anon_sym_for] = ACTIONS(2673), - [anon_sym_return] = ACTIONS(2673), - [anon_sym_break] = ACTIONS(2673), - [anon_sym_continue] = ACTIONS(2673), - [anon_sym_goto] = ACTIONS(2673), - [anon_sym_DASH_DASH] = ACTIONS(2675), - [anon_sym_PLUS_PLUS] = ACTIONS(2675), - [anon_sym_sizeof] = ACTIONS(2673), - [sym_number_literal] = ACTIONS(2675), - [anon_sym_L_SQUOTE] = ACTIONS(2675), - [anon_sym_u_SQUOTE] = ACTIONS(2675), - [anon_sym_U_SQUOTE] = ACTIONS(2675), - [anon_sym_u8_SQUOTE] = ACTIONS(2675), - [anon_sym_SQUOTE] = ACTIONS(2675), - [anon_sym_L_DQUOTE] = ACTIONS(2675), - [anon_sym_u_DQUOTE] = ACTIONS(2675), - [anon_sym_U_DQUOTE] = ACTIONS(2675), - [anon_sym_u8_DQUOTE] = ACTIONS(2675), - [anon_sym_DQUOTE] = ACTIONS(2675), - [sym_true] = ACTIONS(2673), - [sym_false] = ACTIONS(2673), - [sym_null] = ACTIONS(2673), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2673), - [anon_sym_decltype] = ACTIONS(2673), - [anon_sym_virtual] = ACTIONS(2673), - [anon_sym_explicit] = ACTIONS(2673), - [anon_sym_typename] = ACTIONS(2673), - [anon_sym_template] = ACTIONS(2673), - [anon_sym_operator] = ACTIONS(2673), - [anon_sym_try] = ACTIONS(2673), - [anon_sym_delete] = ACTIONS(2673), - [anon_sym_throw] = ACTIONS(2673), - [anon_sym_namespace] = ACTIONS(2673), - [anon_sym_using] = ACTIONS(2673), - [anon_sym_static_assert] = ACTIONS(2673), - [anon_sym_concept] = ACTIONS(2673), - [anon_sym_co_return] = ACTIONS(2673), - [anon_sym_co_yield] = ACTIONS(2673), - [anon_sym_co_await] = ACTIONS(2673), - [anon_sym_new] = ACTIONS(2673), - [anon_sym_requires] = ACTIONS(2673), - [sym_this] = ACTIONS(2673), - [sym_nullptr] = ACTIONS(2673), - [sym_raw_string_literal] = ACTIONS(2675), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1043] = { + [643] = { [sym_identifier] = ACTIONS(2655), [aux_sym_preproc_include_token1] = ACTIONS(2655), [aux_sym_preproc_def_token1] = ACTIONS(2655), [aux_sym_preproc_if_token1] = ACTIONS(2655), + [aux_sym_preproc_if_token2] = ACTIONS(2655), [aux_sym_preproc_ifdef_token1] = ACTIONS(2655), [aux_sym_preproc_ifdef_token2] = ACTIONS(2655), [sym_preproc_directive] = ACTIONS(2655), @@ -147980,7 +108136,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(2655), [anon_sym___vectorcall] = ACTIONS(2655), [anon_sym_LBRACE] = ACTIONS(2657), - [anon_sym_RBRACE] = ACTIONS(2657), [anon_sym_LBRACK] = ACTIONS(2655), [anon_sym_static] = ACTIONS(2655), [anon_sym_register] = ACTIONS(2655), @@ -148004,6 +108159,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(2655), [anon_sym_union] = ACTIONS(2655), [anon_sym_if] = ACTIONS(2655), + [anon_sym_else] = ACTIONS(2655), [anon_sym_switch] = ACTIONS(2655), [anon_sym_case] = ACTIONS(2655), [anon_sym_default] = ACTIONS(2655), @@ -148014,6 +108170,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(2655), [anon_sym_continue] = ACTIONS(2655), [anon_sym_goto] = ACTIONS(2655), + [anon_sym_not] = ACTIONS(2655), + [anon_sym_compl] = ACTIONS(2655), [anon_sym_DASH_DASH] = ACTIONS(2657), [anon_sym_PLUS_PLUS] = ACTIONS(2657), [anon_sym_sizeof] = ACTIONS(2655), @@ -148055,23618 +108213,23610 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(2655), [sym_raw_string_literal] = ACTIONS(2657), }, - [1044] = { - [sym_identifier] = ACTIONS(2609), - [aux_sym_preproc_include_token1] = ACTIONS(2609), - [aux_sym_preproc_def_token1] = ACTIONS(2609), - [aux_sym_preproc_if_token1] = ACTIONS(2609), - [aux_sym_preproc_if_token2] = ACTIONS(2609), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2609), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2609), - [sym_preproc_directive] = ACTIONS(2609), - [anon_sym_LPAREN2] = ACTIONS(2611), - [anon_sym_BANG] = ACTIONS(2611), - [anon_sym_TILDE] = ACTIONS(2611), - [anon_sym_DASH] = ACTIONS(2609), - [anon_sym_PLUS] = ACTIONS(2609), - [anon_sym_STAR] = ACTIONS(2611), - [anon_sym_AMP_AMP] = ACTIONS(2611), - [anon_sym_AMP] = ACTIONS(2609), - [anon_sym_SEMI] = ACTIONS(2611), - [anon_sym_typedef] = ACTIONS(2609), - [anon_sym_extern] = ACTIONS(2609), - [anon_sym___attribute__] = ACTIONS(2609), - [anon_sym_COLON_COLON] = ACTIONS(2611), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2611), - [anon_sym___declspec] = ACTIONS(2609), - [anon_sym___based] = ACTIONS(2609), - [anon_sym___cdecl] = ACTIONS(2609), - [anon_sym___clrcall] = ACTIONS(2609), - [anon_sym___stdcall] = ACTIONS(2609), - [anon_sym___fastcall] = ACTIONS(2609), - [anon_sym___thiscall] = ACTIONS(2609), - [anon_sym___vectorcall] = ACTIONS(2609), - [anon_sym_LBRACE] = ACTIONS(2611), - [anon_sym_LBRACK] = ACTIONS(2609), - [anon_sym_static] = ACTIONS(2609), - [anon_sym_register] = ACTIONS(2609), - [anon_sym_inline] = ACTIONS(2609), - [anon_sym_thread_local] = ACTIONS(2609), - [anon_sym_const] = ACTIONS(2609), - [anon_sym_volatile] = ACTIONS(2609), - [anon_sym_restrict] = ACTIONS(2609), - [anon_sym__Atomic] = ACTIONS(2609), - [anon_sym_mutable] = ACTIONS(2609), - [anon_sym_constexpr] = ACTIONS(2609), - [anon_sym_constinit] = ACTIONS(2609), - [anon_sym_consteval] = ACTIONS(2609), - [anon_sym_signed] = ACTIONS(2609), - [anon_sym_unsigned] = ACTIONS(2609), - [anon_sym_long] = ACTIONS(2609), - [anon_sym_short] = ACTIONS(2609), - [sym_primitive_type] = ACTIONS(2609), - [anon_sym_enum] = ACTIONS(2609), - [anon_sym_class] = ACTIONS(2609), - [anon_sym_struct] = ACTIONS(2609), - [anon_sym_union] = ACTIONS(2609), - [anon_sym_if] = ACTIONS(2609), - [anon_sym_switch] = ACTIONS(2609), - [anon_sym_case] = ACTIONS(2609), - [anon_sym_default] = ACTIONS(2609), - [anon_sym_while] = ACTIONS(2609), - [anon_sym_do] = ACTIONS(2609), - [anon_sym_for] = ACTIONS(2609), - [anon_sym_return] = ACTIONS(2609), - [anon_sym_break] = ACTIONS(2609), - [anon_sym_continue] = ACTIONS(2609), - [anon_sym_goto] = ACTIONS(2609), - [anon_sym_DASH_DASH] = ACTIONS(2611), - [anon_sym_PLUS_PLUS] = ACTIONS(2611), - [anon_sym_sizeof] = ACTIONS(2609), - [sym_number_literal] = ACTIONS(2611), - [anon_sym_L_SQUOTE] = ACTIONS(2611), - [anon_sym_u_SQUOTE] = ACTIONS(2611), - [anon_sym_U_SQUOTE] = ACTIONS(2611), - [anon_sym_u8_SQUOTE] = ACTIONS(2611), - [anon_sym_SQUOTE] = ACTIONS(2611), - [anon_sym_L_DQUOTE] = ACTIONS(2611), - [anon_sym_u_DQUOTE] = ACTIONS(2611), - [anon_sym_U_DQUOTE] = ACTIONS(2611), - [anon_sym_u8_DQUOTE] = ACTIONS(2611), - [anon_sym_DQUOTE] = ACTIONS(2611), - [sym_true] = ACTIONS(2609), - [sym_false] = ACTIONS(2609), - [sym_null] = ACTIONS(2609), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2609), - [anon_sym_decltype] = ACTIONS(2609), - [anon_sym_virtual] = ACTIONS(2609), - [anon_sym_explicit] = ACTIONS(2609), - [anon_sym_typename] = ACTIONS(2609), - [anon_sym_template] = ACTIONS(2609), - [anon_sym_operator] = ACTIONS(2609), - [anon_sym_try] = ACTIONS(2609), - [anon_sym_delete] = ACTIONS(2609), - [anon_sym_throw] = ACTIONS(2609), - [anon_sym_namespace] = ACTIONS(2609), - [anon_sym_using] = ACTIONS(2609), - [anon_sym_static_assert] = ACTIONS(2609), - [anon_sym_concept] = ACTIONS(2609), - [anon_sym_co_return] = ACTIONS(2609), - [anon_sym_co_yield] = ACTIONS(2609), - [anon_sym_co_await] = ACTIONS(2609), - [anon_sym_new] = ACTIONS(2609), - [anon_sym_requires] = ACTIONS(2609), - [sym_this] = ACTIONS(2609), - [sym_nullptr] = ACTIONS(2609), - [sym_raw_string_literal] = ACTIONS(2611), - }, - [1045] = { - [sym_identifier] = ACTIONS(2639), - [aux_sym_preproc_include_token1] = ACTIONS(2639), - [aux_sym_preproc_def_token1] = ACTIONS(2639), - [aux_sym_preproc_if_token1] = ACTIONS(2639), - [aux_sym_preproc_if_token2] = ACTIONS(2639), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2639), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2639), - [sym_preproc_directive] = ACTIONS(2639), - [anon_sym_LPAREN2] = ACTIONS(2641), - [anon_sym_BANG] = ACTIONS(2641), - [anon_sym_TILDE] = ACTIONS(2641), - [anon_sym_DASH] = ACTIONS(2639), - [anon_sym_PLUS] = ACTIONS(2639), - [anon_sym_STAR] = ACTIONS(2641), - [anon_sym_AMP_AMP] = ACTIONS(2641), - [anon_sym_AMP] = ACTIONS(2639), - [anon_sym_SEMI] = ACTIONS(2641), - [anon_sym_typedef] = ACTIONS(2639), - [anon_sym_extern] = ACTIONS(2639), - [anon_sym___attribute__] = ACTIONS(2639), - [anon_sym_COLON_COLON] = ACTIONS(2641), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2641), - [anon_sym___declspec] = ACTIONS(2639), - [anon_sym___based] = ACTIONS(2639), - [anon_sym___cdecl] = ACTIONS(2639), - [anon_sym___clrcall] = ACTIONS(2639), - [anon_sym___stdcall] = ACTIONS(2639), - [anon_sym___fastcall] = ACTIONS(2639), - [anon_sym___thiscall] = ACTIONS(2639), - [anon_sym___vectorcall] = ACTIONS(2639), - [anon_sym_LBRACE] = ACTIONS(2641), - [anon_sym_LBRACK] = ACTIONS(2639), - [anon_sym_static] = ACTIONS(2639), - [anon_sym_register] = ACTIONS(2639), - [anon_sym_inline] = ACTIONS(2639), - [anon_sym_thread_local] = ACTIONS(2639), - [anon_sym_const] = ACTIONS(2639), - [anon_sym_volatile] = ACTIONS(2639), - [anon_sym_restrict] = ACTIONS(2639), - [anon_sym__Atomic] = ACTIONS(2639), - [anon_sym_mutable] = ACTIONS(2639), - [anon_sym_constexpr] = ACTIONS(2639), - [anon_sym_constinit] = ACTIONS(2639), - [anon_sym_consteval] = ACTIONS(2639), - [anon_sym_signed] = ACTIONS(2639), - [anon_sym_unsigned] = ACTIONS(2639), - [anon_sym_long] = ACTIONS(2639), - [anon_sym_short] = ACTIONS(2639), - [sym_primitive_type] = ACTIONS(2639), - [anon_sym_enum] = ACTIONS(2639), - [anon_sym_class] = ACTIONS(2639), - [anon_sym_struct] = ACTIONS(2639), - [anon_sym_union] = ACTIONS(2639), - [anon_sym_if] = ACTIONS(2639), - [anon_sym_switch] = ACTIONS(2639), - [anon_sym_case] = ACTIONS(2639), - [anon_sym_default] = ACTIONS(2639), - [anon_sym_while] = ACTIONS(2639), - [anon_sym_do] = ACTIONS(2639), - [anon_sym_for] = ACTIONS(2639), - [anon_sym_return] = ACTIONS(2639), - [anon_sym_break] = ACTIONS(2639), - [anon_sym_continue] = ACTIONS(2639), - [anon_sym_goto] = ACTIONS(2639), - [anon_sym_DASH_DASH] = ACTIONS(2641), - [anon_sym_PLUS_PLUS] = ACTIONS(2641), - [anon_sym_sizeof] = ACTIONS(2639), - [sym_number_literal] = ACTIONS(2641), - [anon_sym_L_SQUOTE] = ACTIONS(2641), - [anon_sym_u_SQUOTE] = ACTIONS(2641), - [anon_sym_U_SQUOTE] = ACTIONS(2641), - [anon_sym_u8_SQUOTE] = ACTIONS(2641), - [anon_sym_SQUOTE] = ACTIONS(2641), - [anon_sym_L_DQUOTE] = ACTIONS(2641), - [anon_sym_u_DQUOTE] = ACTIONS(2641), - [anon_sym_U_DQUOTE] = ACTIONS(2641), - [anon_sym_u8_DQUOTE] = ACTIONS(2641), - [anon_sym_DQUOTE] = ACTIONS(2641), - [sym_true] = ACTIONS(2639), - [sym_false] = ACTIONS(2639), - [sym_null] = ACTIONS(2639), + [644] = { + [sym_identifier] = ACTIONS(2503), + [aux_sym_preproc_include_token1] = ACTIONS(2503), + [aux_sym_preproc_def_token1] = ACTIONS(2503), + [aux_sym_preproc_if_token1] = ACTIONS(2503), + [aux_sym_preproc_if_token2] = ACTIONS(2503), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2503), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2503), + [sym_preproc_directive] = ACTIONS(2503), + [anon_sym_LPAREN2] = ACTIONS(2505), + [anon_sym_BANG] = ACTIONS(2505), + [anon_sym_TILDE] = ACTIONS(2505), + [anon_sym_DASH] = ACTIONS(2503), + [anon_sym_PLUS] = ACTIONS(2503), + [anon_sym_STAR] = ACTIONS(2505), + [anon_sym_AMP_AMP] = ACTIONS(2505), + [anon_sym_AMP] = ACTIONS(2503), + [anon_sym_SEMI] = ACTIONS(2505), + [anon_sym_typedef] = ACTIONS(2503), + [anon_sym_extern] = ACTIONS(2503), + [anon_sym___attribute__] = ACTIONS(2503), + [anon_sym_COLON_COLON] = ACTIONS(2505), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2505), + [anon_sym___declspec] = ACTIONS(2503), + [anon_sym___based] = ACTIONS(2503), + [anon_sym___cdecl] = ACTIONS(2503), + [anon_sym___clrcall] = ACTIONS(2503), + [anon_sym___stdcall] = ACTIONS(2503), + [anon_sym___fastcall] = ACTIONS(2503), + [anon_sym___thiscall] = ACTIONS(2503), + [anon_sym___vectorcall] = ACTIONS(2503), + [anon_sym_LBRACE] = ACTIONS(2505), + [anon_sym_LBRACK] = ACTIONS(2503), + [anon_sym_static] = ACTIONS(2503), + [anon_sym_register] = ACTIONS(2503), + [anon_sym_inline] = ACTIONS(2503), + [anon_sym_thread_local] = ACTIONS(2503), + [anon_sym_const] = ACTIONS(2503), + [anon_sym_volatile] = ACTIONS(2503), + [anon_sym_restrict] = ACTIONS(2503), + [anon_sym__Atomic] = ACTIONS(2503), + [anon_sym_mutable] = ACTIONS(2503), + [anon_sym_constexpr] = ACTIONS(2503), + [anon_sym_constinit] = ACTIONS(2503), + [anon_sym_consteval] = ACTIONS(2503), + [anon_sym_signed] = ACTIONS(2503), + [anon_sym_unsigned] = ACTIONS(2503), + [anon_sym_long] = ACTIONS(2503), + [anon_sym_short] = ACTIONS(2503), + [sym_primitive_type] = ACTIONS(2503), + [anon_sym_enum] = ACTIONS(2503), + [anon_sym_class] = ACTIONS(2503), + [anon_sym_struct] = ACTIONS(2503), + [anon_sym_union] = ACTIONS(2503), + [anon_sym_if] = ACTIONS(2503), + [anon_sym_else] = ACTIONS(2503), + [anon_sym_switch] = ACTIONS(2503), + [anon_sym_case] = ACTIONS(2503), + [anon_sym_default] = ACTIONS(2503), + [anon_sym_while] = ACTIONS(2503), + [anon_sym_do] = ACTIONS(2503), + [anon_sym_for] = ACTIONS(2503), + [anon_sym_return] = ACTIONS(2503), + [anon_sym_break] = ACTIONS(2503), + [anon_sym_continue] = ACTIONS(2503), + [anon_sym_goto] = ACTIONS(2503), + [anon_sym_not] = ACTIONS(2503), + [anon_sym_compl] = ACTIONS(2503), + [anon_sym_DASH_DASH] = ACTIONS(2505), + [anon_sym_PLUS_PLUS] = ACTIONS(2505), + [anon_sym_sizeof] = ACTIONS(2503), + [sym_number_literal] = ACTIONS(2505), + [anon_sym_L_SQUOTE] = ACTIONS(2505), + [anon_sym_u_SQUOTE] = ACTIONS(2505), + [anon_sym_U_SQUOTE] = ACTIONS(2505), + [anon_sym_u8_SQUOTE] = ACTIONS(2505), + [anon_sym_SQUOTE] = ACTIONS(2505), + [anon_sym_L_DQUOTE] = ACTIONS(2505), + [anon_sym_u_DQUOTE] = ACTIONS(2505), + [anon_sym_U_DQUOTE] = ACTIONS(2505), + [anon_sym_u8_DQUOTE] = ACTIONS(2505), + [anon_sym_DQUOTE] = ACTIONS(2505), + [sym_true] = ACTIONS(2503), + [sym_false] = ACTIONS(2503), + [sym_null] = ACTIONS(2503), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2639), - [anon_sym_decltype] = ACTIONS(2639), - [anon_sym_virtual] = ACTIONS(2639), - [anon_sym_explicit] = ACTIONS(2639), - [anon_sym_typename] = ACTIONS(2639), - [anon_sym_template] = ACTIONS(2639), - [anon_sym_operator] = ACTIONS(2639), - [anon_sym_try] = ACTIONS(2639), - [anon_sym_delete] = ACTIONS(2639), - [anon_sym_throw] = ACTIONS(2639), - [anon_sym_namespace] = ACTIONS(2639), - [anon_sym_using] = ACTIONS(2639), - [anon_sym_static_assert] = ACTIONS(2639), - [anon_sym_concept] = ACTIONS(2639), - [anon_sym_co_return] = ACTIONS(2639), - [anon_sym_co_yield] = ACTIONS(2639), - [anon_sym_co_await] = ACTIONS(2639), - [anon_sym_new] = ACTIONS(2639), - [anon_sym_requires] = ACTIONS(2639), - [sym_this] = ACTIONS(2639), - [sym_nullptr] = ACTIONS(2639), - [sym_raw_string_literal] = ACTIONS(2641), + [sym_auto] = ACTIONS(2503), + [anon_sym_decltype] = ACTIONS(2503), + [anon_sym_virtual] = ACTIONS(2503), + [anon_sym_explicit] = ACTIONS(2503), + [anon_sym_typename] = ACTIONS(2503), + [anon_sym_template] = ACTIONS(2503), + [anon_sym_operator] = ACTIONS(2503), + [anon_sym_try] = ACTIONS(2503), + [anon_sym_delete] = ACTIONS(2503), + [anon_sym_throw] = ACTIONS(2503), + [anon_sym_namespace] = ACTIONS(2503), + [anon_sym_using] = ACTIONS(2503), + [anon_sym_static_assert] = ACTIONS(2503), + [anon_sym_concept] = ACTIONS(2503), + [anon_sym_co_return] = ACTIONS(2503), + [anon_sym_co_yield] = ACTIONS(2503), + [anon_sym_co_await] = ACTIONS(2503), + [anon_sym_new] = ACTIONS(2503), + [anon_sym_requires] = ACTIONS(2503), + [sym_this] = ACTIONS(2503), + [sym_nullptr] = ACTIONS(2503), + [sym_raw_string_literal] = ACTIONS(2505), }, - [1046] = { - [ts_builtin_sym_end] = ACTIONS(2649), - [sym_identifier] = ACTIONS(2647), - [aux_sym_preproc_include_token1] = ACTIONS(2647), - [aux_sym_preproc_def_token1] = ACTIONS(2647), - [aux_sym_preproc_if_token1] = ACTIONS(2647), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2647), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2647), - [sym_preproc_directive] = ACTIONS(2647), - [anon_sym_LPAREN2] = ACTIONS(2649), - [anon_sym_BANG] = ACTIONS(2649), - [anon_sym_TILDE] = ACTIONS(2649), - [anon_sym_DASH] = ACTIONS(2647), - [anon_sym_PLUS] = ACTIONS(2647), - [anon_sym_STAR] = ACTIONS(2649), - [anon_sym_AMP_AMP] = ACTIONS(2649), - [anon_sym_AMP] = ACTIONS(2647), - [anon_sym_SEMI] = ACTIONS(2649), - [anon_sym_typedef] = ACTIONS(2647), - [anon_sym_extern] = ACTIONS(2647), - [anon_sym___attribute__] = ACTIONS(2647), - [anon_sym_COLON_COLON] = ACTIONS(2649), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2649), - [anon_sym___declspec] = ACTIONS(2647), - [anon_sym___based] = ACTIONS(2647), - [anon_sym___cdecl] = ACTIONS(2647), - [anon_sym___clrcall] = ACTIONS(2647), - [anon_sym___stdcall] = ACTIONS(2647), - [anon_sym___fastcall] = ACTIONS(2647), - [anon_sym___thiscall] = ACTIONS(2647), - [anon_sym___vectorcall] = ACTIONS(2647), - [anon_sym_LBRACE] = ACTIONS(2649), - [anon_sym_LBRACK] = ACTIONS(2647), - [anon_sym_static] = ACTIONS(2647), - [anon_sym_register] = ACTIONS(2647), - [anon_sym_inline] = ACTIONS(2647), - [anon_sym_thread_local] = ACTIONS(2647), - [anon_sym_const] = ACTIONS(2647), - [anon_sym_volatile] = ACTIONS(2647), - [anon_sym_restrict] = ACTIONS(2647), - [anon_sym__Atomic] = ACTIONS(2647), - [anon_sym_mutable] = ACTIONS(2647), - [anon_sym_constexpr] = ACTIONS(2647), - [anon_sym_constinit] = ACTIONS(2647), - [anon_sym_consteval] = ACTIONS(2647), - [anon_sym_signed] = ACTIONS(2647), - [anon_sym_unsigned] = ACTIONS(2647), - [anon_sym_long] = ACTIONS(2647), - [anon_sym_short] = ACTIONS(2647), - [sym_primitive_type] = ACTIONS(2647), - [anon_sym_enum] = ACTIONS(2647), - [anon_sym_class] = ACTIONS(2647), - [anon_sym_struct] = ACTIONS(2647), - [anon_sym_union] = ACTIONS(2647), - [anon_sym_if] = ACTIONS(2647), - [anon_sym_switch] = ACTIONS(2647), - [anon_sym_case] = ACTIONS(2647), - [anon_sym_default] = ACTIONS(2647), - [anon_sym_while] = ACTIONS(2647), - [anon_sym_do] = ACTIONS(2647), - [anon_sym_for] = ACTIONS(2647), - [anon_sym_return] = ACTIONS(2647), - [anon_sym_break] = ACTIONS(2647), - [anon_sym_continue] = ACTIONS(2647), - [anon_sym_goto] = ACTIONS(2647), - [anon_sym_DASH_DASH] = ACTIONS(2649), - [anon_sym_PLUS_PLUS] = ACTIONS(2649), - [anon_sym_sizeof] = ACTIONS(2647), - [sym_number_literal] = ACTIONS(2649), - [anon_sym_L_SQUOTE] = ACTIONS(2649), - [anon_sym_u_SQUOTE] = ACTIONS(2649), - [anon_sym_U_SQUOTE] = ACTIONS(2649), - [anon_sym_u8_SQUOTE] = ACTIONS(2649), - [anon_sym_SQUOTE] = ACTIONS(2649), - [anon_sym_L_DQUOTE] = ACTIONS(2649), - [anon_sym_u_DQUOTE] = ACTIONS(2649), - [anon_sym_U_DQUOTE] = ACTIONS(2649), - [anon_sym_u8_DQUOTE] = ACTIONS(2649), - [anon_sym_DQUOTE] = ACTIONS(2649), - [sym_true] = ACTIONS(2647), - [sym_false] = ACTIONS(2647), - [sym_null] = ACTIONS(2647), + [645] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token2] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2647), - [anon_sym_decltype] = ACTIONS(2647), - [anon_sym_virtual] = ACTIONS(2647), - [anon_sym_explicit] = ACTIONS(2647), - [anon_sym_typename] = ACTIONS(2647), - [anon_sym_template] = ACTIONS(2647), - [anon_sym_operator] = ACTIONS(2647), - [anon_sym_try] = ACTIONS(2647), - [anon_sym_delete] = ACTIONS(2647), - [anon_sym_throw] = ACTIONS(2647), - [anon_sym_namespace] = ACTIONS(2647), - [anon_sym_using] = ACTIONS(2647), - [anon_sym_static_assert] = ACTIONS(2647), - [anon_sym_concept] = ACTIONS(2647), - [anon_sym_co_return] = ACTIONS(2647), - [anon_sym_co_yield] = ACTIONS(2647), - [anon_sym_co_await] = ACTIONS(2647), - [anon_sym_new] = ACTIONS(2647), - [anon_sym_requires] = ACTIONS(2647), - [sym_this] = ACTIONS(2647), - [sym_nullptr] = ACTIONS(2647), - [sym_raw_string_literal] = ACTIONS(2649), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1047] = { - [ts_builtin_sym_end] = ACTIONS(2649), - [sym_identifier] = ACTIONS(2647), - [aux_sym_preproc_include_token1] = ACTIONS(2647), - [aux_sym_preproc_def_token1] = ACTIONS(2647), - [aux_sym_preproc_if_token1] = ACTIONS(2647), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2647), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2647), - [sym_preproc_directive] = ACTIONS(2647), - [anon_sym_LPAREN2] = ACTIONS(2649), - [anon_sym_BANG] = ACTIONS(2649), - [anon_sym_TILDE] = ACTIONS(2649), - [anon_sym_DASH] = ACTIONS(2647), - [anon_sym_PLUS] = ACTIONS(2647), - [anon_sym_STAR] = ACTIONS(2649), - [anon_sym_AMP_AMP] = ACTIONS(2649), - [anon_sym_AMP] = ACTIONS(2647), - [anon_sym_SEMI] = ACTIONS(2649), - [anon_sym_typedef] = ACTIONS(2647), - [anon_sym_extern] = ACTIONS(2647), - [anon_sym___attribute__] = ACTIONS(2647), - [anon_sym_COLON_COLON] = ACTIONS(2649), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2649), - [anon_sym___declspec] = ACTIONS(2647), - [anon_sym___based] = ACTIONS(2647), - [anon_sym___cdecl] = ACTIONS(2647), - [anon_sym___clrcall] = ACTIONS(2647), - [anon_sym___stdcall] = ACTIONS(2647), - [anon_sym___fastcall] = ACTIONS(2647), - [anon_sym___thiscall] = ACTIONS(2647), - [anon_sym___vectorcall] = ACTIONS(2647), - [anon_sym_LBRACE] = ACTIONS(2649), - [anon_sym_LBRACK] = ACTIONS(2647), - [anon_sym_static] = ACTIONS(2647), - [anon_sym_register] = ACTIONS(2647), - [anon_sym_inline] = ACTIONS(2647), - [anon_sym_thread_local] = ACTIONS(2647), - [anon_sym_const] = ACTIONS(2647), - [anon_sym_volatile] = ACTIONS(2647), - [anon_sym_restrict] = ACTIONS(2647), - [anon_sym__Atomic] = ACTIONS(2647), - [anon_sym_mutable] = ACTIONS(2647), - [anon_sym_constexpr] = ACTIONS(2647), - [anon_sym_constinit] = ACTIONS(2647), - [anon_sym_consteval] = ACTIONS(2647), - [anon_sym_signed] = ACTIONS(2647), - [anon_sym_unsigned] = ACTIONS(2647), - [anon_sym_long] = ACTIONS(2647), - [anon_sym_short] = ACTIONS(2647), - [sym_primitive_type] = ACTIONS(2647), - [anon_sym_enum] = ACTIONS(2647), - [anon_sym_class] = ACTIONS(2647), - [anon_sym_struct] = ACTIONS(2647), - [anon_sym_union] = ACTIONS(2647), - [anon_sym_if] = ACTIONS(2647), - [anon_sym_switch] = ACTIONS(2647), - [anon_sym_case] = ACTIONS(2647), - [anon_sym_default] = ACTIONS(2647), - [anon_sym_while] = ACTIONS(2647), - [anon_sym_do] = ACTIONS(2647), - [anon_sym_for] = ACTIONS(2647), - [anon_sym_return] = ACTIONS(2647), - [anon_sym_break] = ACTIONS(2647), - [anon_sym_continue] = ACTIONS(2647), - [anon_sym_goto] = ACTIONS(2647), - [anon_sym_DASH_DASH] = ACTIONS(2649), - [anon_sym_PLUS_PLUS] = ACTIONS(2649), - [anon_sym_sizeof] = ACTIONS(2647), - [sym_number_literal] = ACTIONS(2649), - [anon_sym_L_SQUOTE] = ACTIONS(2649), - [anon_sym_u_SQUOTE] = ACTIONS(2649), - [anon_sym_U_SQUOTE] = ACTIONS(2649), - [anon_sym_u8_SQUOTE] = ACTIONS(2649), - [anon_sym_SQUOTE] = ACTIONS(2649), - [anon_sym_L_DQUOTE] = ACTIONS(2649), - [anon_sym_u_DQUOTE] = ACTIONS(2649), - [anon_sym_U_DQUOTE] = ACTIONS(2649), - [anon_sym_u8_DQUOTE] = ACTIONS(2649), - [anon_sym_DQUOTE] = ACTIONS(2649), - [sym_true] = ACTIONS(2647), - [sym_false] = ACTIONS(2647), - [sym_null] = ACTIONS(2647), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2647), - [anon_sym_decltype] = ACTIONS(2647), - [anon_sym_virtual] = ACTIONS(2647), - [anon_sym_explicit] = ACTIONS(2647), - [anon_sym_typename] = ACTIONS(2647), - [anon_sym_template] = ACTIONS(2647), - [anon_sym_operator] = ACTIONS(2647), - [anon_sym_try] = ACTIONS(2647), - [anon_sym_delete] = ACTIONS(2647), - [anon_sym_throw] = ACTIONS(2647), - [anon_sym_namespace] = ACTIONS(2647), - [anon_sym_using] = ACTIONS(2647), - [anon_sym_static_assert] = ACTIONS(2647), - [anon_sym_concept] = ACTIONS(2647), - [anon_sym_co_return] = ACTIONS(2647), - [anon_sym_co_yield] = ACTIONS(2647), - [anon_sym_co_await] = ACTIONS(2647), - [anon_sym_new] = ACTIONS(2647), - [anon_sym_requires] = ACTIONS(2647), - [sym_this] = ACTIONS(2647), - [sym_nullptr] = ACTIONS(2647), - [sym_raw_string_literal] = ACTIONS(2649), + [646] = { + [sym_identifier] = ACTIONS(2509), + [aux_sym_preproc_include_token1] = ACTIONS(2509), + [aux_sym_preproc_def_token1] = ACTIONS(2509), + [aux_sym_preproc_if_token1] = ACTIONS(2509), + [aux_sym_preproc_if_token2] = ACTIONS(2509), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2509), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2509), + [sym_preproc_directive] = ACTIONS(2509), + [anon_sym_LPAREN2] = ACTIONS(2511), + [anon_sym_BANG] = ACTIONS(2511), + [anon_sym_TILDE] = ACTIONS(2511), + [anon_sym_DASH] = ACTIONS(2509), + [anon_sym_PLUS] = ACTIONS(2509), + [anon_sym_STAR] = ACTIONS(2511), + [anon_sym_AMP_AMP] = ACTIONS(2511), + [anon_sym_AMP] = ACTIONS(2509), + [anon_sym_SEMI] = ACTIONS(2511), + [anon_sym_typedef] = ACTIONS(2509), + [anon_sym_extern] = ACTIONS(2509), + [anon_sym___attribute__] = ACTIONS(2509), + [anon_sym_COLON_COLON] = ACTIONS(2511), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2511), + [anon_sym___declspec] = ACTIONS(2509), + [anon_sym___based] = ACTIONS(2509), + [anon_sym___cdecl] = ACTIONS(2509), + [anon_sym___clrcall] = ACTIONS(2509), + [anon_sym___stdcall] = ACTIONS(2509), + [anon_sym___fastcall] = ACTIONS(2509), + [anon_sym___thiscall] = ACTIONS(2509), + [anon_sym___vectorcall] = ACTIONS(2509), + [anon_sym_LBRACE] = ACTIONS(2511), + [anon_sym_LBRACK] = ACTIONS(2509), + [anon_sym_static] = ACTIONS(2509), + [anon_sym_register] = ACTIONS(2509), + [anon_sym_inline] = ACTIONS(2509), + [anon_sym_thread_local] = ACTIONS(2509), + [anon_sym_const] = ACTIONS(2509), + [anon_sym_volatile] = ACTIONS(2509), + [anon_sym_restrict] = ACTIONS(2509), + [anon_sym__Atomic] = ACTIONS(2509), + [anon_sym_mutable] = ACTIONS(2509), + [anon_sym_constexpr] = ACTIONS(2509), + [anon_sym_constinit] = ACTIONS(2509), + [anon_sym_consteval] = ACTIONS(2509), + [anon_sym_signed] = ACTIONS(2509), + [anon_sym_unsigned] = ACTIONS(2509), + [anon_sym_long] = ACTIONS(2509), + [anon_sym_short] = ACTIONS(2509), + [sym_primitive_type] = ACTIONS(2509), + [anon_sym_enum] = ACTIONS(2509), + [anon_sym_class] = ACTIONS(2509), + [anon_sym_struct] = ACTIONS(2509), + [anon_sym_union] = ACTIONS(2509), + [anon_sym_if] = ACTIONS(2509), + [anon_sym_else] = ACTIONS(2509), + [anon_sym_switch] = ACTIONS(2509), + [anon_sym_case] = ACTIONS(2509), + [anon_sym_default] = ACTIONS(2509), + [anon_sym_while] = ACTIONS(2509), + [anon_sym_do] = ACTIONS(2509), + [anon_sym_for] = ACTIONS(2509), + [anon_sym_return] = ACTIONS(2509), + [anon_sym_break] = ACTIONS(2509), + [anon_sym_continue] = ACTIONS(2509), + [anon_sym_goto] = ACTIONS(2509), + [anon_sym_not] = ACTIONS(2509), + [anon_sym_compl] = ACTIONS(2509), + [anon_sym_DASH_DASH] = ACTIONS(2511), + [anon_sym_PLUS_PLUS] = ACTIONS(2511), + [anon_sym_sizeof] = ACTIONS(2509), + [sym_number_literal] = ACTIONS(2511), + [anon_sym_L_SQUOTE] = ACTIONS(2511), + [anon_sym_u_SQUOTE] = ACTIONS(2511), + [anon_sym_U_SQUOTE] = ACTIONS(2511), + [anon_sym_u8_SQUOTE] = ACTIONS(2511), + [anon_sym_SQUOTE] = ACTIONS(2511), + [anon_sym_L_DQUOTE] = ACTIONS(2511), + [anon_sym_u_DQUOTE] = ACTIONS(2511), + [anon_sym_U_DQUOTE] = ACTIONS(2511), + [anon_sym_u8_DQUOTE] = ACTIONS(2511), + [anon_sym_DQUOTE] = ACTIONS(2511), + [sym_true] = ACTIONS(2509), + [sym_false] = ACTIONS(2509), + [sym_null] = ACTIONS(2509), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2509), + [anon_sym_decltype] = ACTIONS(2509), + [anon_sym_virtual] = ACTIONS(2509), + [anon_sym_explicit] = ACTIONS(2509), + [anon_sym_typename] = ACTIONS(2509), + [anon_sym_template] = ACTIONS(2509), + [anon_sym_operator] = ACTIONS(2509), + [anon_sym_try] = ACTIONS(2509), + [anon_sym_delete] = ACTIONS(2509), + [anon_sym_throw] = ACTIONS(2509), + [anon_sym_namespace] = ACTIONS(2509), + [anon_sym_using] = ACTIONS(2509), + [anon_sym_static_assert] = ACTIONS(2509), + [anon_sym_concept] = ACTIONS(2509), + [anon_sym_co_return] = ACTIONS(2509), + [anon_sym_co_yield] = ACTIONS(2509), + [anon_sym_co_await] = ACTIONS(2509), + [anon_sym_new] = ACTIONS(2509), + [anon_sym_requires] = ACTIONS(2509), + [sym_this] = ACTIONS(2509), + [sym_nullptr] = ACTIONS(2509), + [sym_raw_string_literal] = ACTIONS(2511), }, - [1048] = { - [sym_identifier] = ACTIONS(2789), - [aux_sym_preproc_include_token1] = ACTIONS(2789), - [aux_sym_preproc_def_token1] = ACTIONS(2789), - [aux_sym_preproc_if_token1] = ACTIONS(2789), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2789), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2789), - [sym_preproc_directive] = ACTIONS(2789), - [anon_sym_LPAREN2] = ACTIONS(2791), - [anon_sym_BANG] = ACTIONS(2791), - [anon_sym_TILDE] = ACTIONS(2791), - [anon_sym_DASH] = ACTIONS(2789), - [anon_sym_PLUS] = ACTIONS(2789), - [anon_sym_STAR] = ACTIONS(2791), - [anon_sym_AMP_AMP] = ACTIONS(2791), - [anon_sym_AMP] = ACTIONS(2789), - [anon_sym_SEMI] = ACTIONS(2791), - [anon_sym_typedef] = ACTIONS(2789), - [anon_sym_extern] = ACTIONS(2789), - [anon_sym___attribute__] = ACTIONS(2789), - [anon_sym_COLON_COLON] = ACTIONS(2791), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2791), - [anon_sym___declspec] = ACTIONS(2789), - [anon_sym___based] = ACTIONS(2789), - [anon_sym___cdecl] = ACTIONS(2789), - [anon_sym___clrcall] = ACTIONS(2789), - [anon_sym___stdcall] = ACTIONS(2789), - [anon_sym___fastcall] = ACTIONS(2789), - [anon_sym___thiscall] = ACTIONS(2789), - [anon_sym___vectorcall] = ACTIONS(2789), - [anon_sym_LBRACE] = ACTIONS(2791), - [anon_sym_RBRACE] = ACTIONS(2791), - [anon_sym_LBRACK] = ACTIONS(2789), - [anon_sym_static] = ACTIONS(2789), - [anon_sym_register] = ACTIONS(2789), - [anon_sym_inline] = ACTIONS(2789), - [anon_sym_thread_local] = ACTIONS(2789), - [anon_sym_const] = ACTIONS(2789), - [anon_sym_volatile] = ACTIONS(2789), - [anon_sym_restrict] = ACTIONS(2789), - [anon_sym__Atomic] = ACTIONS(2789), - [anon_sym_mutable] = ACTIONS(2789), - [anon_sym_constexpr] = ACTIONS(2789), - [anon_sym_constinit] = ACTIONS(2789), - [anon_sym_consteval] = ACTIONS(2789), - [anon_sym_signed] = ACTIONS(2789), - [anon_sym_unsigned] = ACTIONS(2789), - [anon_sym_long] = ACTIONS(2789), - [anon_sym_short] = ACTIONS(2789), - [sym_primitive_type] = ACTIONS(2789), - [anon_sym_enum] = ACTIONS(2789), - [anon_sym_class] = ACTIONS(2789), - [anon_sym_struct] = ACTIONS(2789), - [anon_sym_union] = ACTIONS(2789), - [anon_sym_if] = ACTIONS(2789), - [anon_sym_switch] = ACTIONS(2789), - [anon_sym_case] = ACTIONS(2789), - [anon_sym_default] = ACTIONS(2789), - [anon_sym_while] = ACTIONS(2789), - [anon_sym_do] = ACTIONS(2789), - [anon_sym_for] = ACTIONS(2789), - [anon_sym_return] = ACTIONS(2789), - [anon_sym_break] = ACTIONS(2789), - [anon_sym_continue] = ACTIONS(2789), - [anon_sym_goto] = ACTIONS(2789), - [anon_sym_DASH_DASH] = ACTIONS(2791), - [anon_sym_PLUS_PLUS] = ACTIONS(2791), - [anon_sym_sizeof] = ACTIONS(2789), - [sym_number_literal] = ACTIONS(2791), - [anon_sym_L_SQUOTE] = ACTIONS(2791), - [anon_sym_u_SQUOTE] = ACTIONS(2791), - [anon_sym_U_SQUOTE] = ACTIONS(2791), - [anon_sym_u8_SQUOTE] = ACTIONS(2791), - [anon_sym_SQUOTE] = ACTIONS(2791), - [anon_sym_L_DQUOTE] = ACTIONS(2791), - [anon_sym_u_DQUOTE] = ACTIONS(2791), - [anon_sym_U_DQUOTE] = ACTIONS(2791), - [anon_sym_u8_DQUOTE] = ACTIONS(2791), - [anon_sym_DQUOTE] = ACTIONS(2791), - [sym_true] = ACTIONS(2789), - [sym_false] = ACTIONS(2789), - [sym_null] = ACTIONS(2789), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2789), - [anon_sym_decltype] = ACTIONS(2789), - [anon_sym_virtual] = ACTIONS(2789), - [anon_sym_explicit] = ACTIONS(2789), - [anon_sym_typename] = ACTIONS(2789), - [anon_sym_template] = ACTIONS(2789), - [anon_sym_operator] = ACTIONS(2789), - [anon_sym_try] = ACTIONS(2789), - [anon_sym_delete] = ACTIONS(2789), - [anon_sym_throw] = ACTIONS(2789), - [anon_sym_namespace] = ACTIONS(2789), - [anon_sym_using] = ACTIONS(2789), - [anon_sym_static_assert] = ACTIONS(2789), - [anon_sym_concept] = ACTIONS(2789), - [anon_sym_co_return] = ACTIONS(2789), - [anon_sym_co_yield] = ACTIONS(2789), - [anon_sym_co_await] = ACTIONS(2789), - [anon_sym_new] = ACTIONS(2789), - [anon_sym_requires] = ACTIONS(2789), - [sym_this] = ACTIONS(2789), - [sym_nullptr] = ACTIONS(2789), - [sym_raw_string_literal] = ACTIONS(2791), + [647] = { + [sym_identifier] = ACTIONS(2513), + [aux_sym_preproc_include_token1] = ACTIONS(2513), + [aux_sym_preproc_def_token1] = ACTIONS(2513), + [aux_sym_preproc_if_token1] = ACTIONS(2513), + [aux_sym_preproc_if_token2] = ACTIONS(2513), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2513), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2513), + [sym_preproc_directive] = ACTIONS(2513), + [anon_sym_LPAREN2] = ACTIONS(2515), + [anon_sym_BANG] = ACTIONS(2515), + [anon_sym_TILDE] = ACTIONS(2515), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_STAR] = ACTIONS(2515), + [anon_sym_AMP_AMP] = ACTIONS(2515), + [anon_sym_AMP] = ACTIONS(2513), + [anon_sym_SEMI] = ACTIONS(2515), + [anon_sym_typedef] = ACTIONS(2513), + [anon_sym_extern] = ACTIONS(2513), + [anon_sym___attribute__] = ACTIONS(2513), + [anon_sym_COLON_COLON] = ACTIONS(2515), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2515), + [anon_sym___declspec] = ACTIONS(2513), + [anon_sym___based] = ACTIONS(2513), + [anon_sym___cdecl] = ACTIONS(2513), + [anon_sym___clrcall] = ACTIONS(2513), + [anon_sym___stdcall] = ACTIONS(2513), + [anon_sym___fastcall] = ACTIONS(2513), + [anon_sym___thiscall] = ACTIONS(2513), + [anon_sym___vectorcall] = ACTIONS(2513), + [anon_sym_LBRACE] = ACTIONS(2515), + [anon_sym_LBRACK] = ACTIONS(2513), + [anon_sym_static] = ACTIONS(2513), + [anon_sym_register] = ACTIONS(2513), + [anon_sym_inline] = ACTIONS(2513), + [anon_sym_thread_local] = ACTIONS(2513), + [anon_sym_const] = ACTIONS(2513), + [anon_sym_volatile] = ACTIONS(2513), + [anon_sym_restrict] = ACTIONS(2513), + [anon_sym__Atomic] = ACTIONS(2513), + [anon_sym_mutable] = ACTIONS(2513), + [anon_sym_constexpr] = ACTIONS(2513), + [anon_sym_constinit] = ACTIONS(2513), + [anon_sym_consteval] = ACTIONS(2513), + [anon_sym_signed] = ACTIONS(2513), + [anon_sym_unsigned] = ACTIONS(2513), + [anon_sym_long] = ACTIONS(2513), + [anon_sym_short] = ACTIONS(2513), + [sym_primitive_type] = ACTIONS(2513), + [anon_sym_enum] = ACTIONS(2513), + [anon_sym_class] = ACTIONS(2513), + [anon_sym_struct] = ACTIONS(2513), + [anon_sym_union] = ACTIONS(2513), + [anon_sym_if] = ACTIONS(2513), + [anon_sym_else] = ACTIONS(2513), + [anon_sym_switch] = ACTIONS(2513), + [anon_sym_case] = ACTIONS(2513), + [anon_sym_default] = ACTIONS(2513), + [anon_sym_while] = ACTIONS(2513), + [anon_sym_do] = ACTIONS(2513), + [anon_sym_for] = ACTIONS(2513), + [anon_sym_return] = ACTIONS(2513), + [anon_sym_break] = ACTIONS(2513), + [anon_sym_continue] = ACTIONS(2513), + [anon_sym_goto] = ACTIONS(2513), + [anon_sym_not] = ACTIONS(2513), + [anon_sym_compl] = ACTIONS(2513), + [anon_sym_DASH_DASH] = ACTIONS(2515), + [anon_sym_PLUS_PLUS] = ACTIONS(2515), + [anon_sym_sizeof] = ACTIONS(2513), + [sym_number_literal] = ACTIONS(2515), + [anon_sym_L_SQUOTE] = ACTIONS(2515), + [anon_sym_u_SQUOTE] = ACTIONS(2515), + [anon_sym_U_SQUOTE] = ACTIONS(2515), + [anon_sym_u8_SQUOTE] = ACTIONS(2515), + [anon_sym_SQUOTE] = ACTIONS(2515), + [anon_sym_L_DQUOTE] = ACTIONS(2515), + [anon_sym_u_DQUOTE] = ACTIONS(2515), + [anon_sym_U_DQUOTE] = ACTIONS(2515), + [anon_sym_u8_DQUOTE] = ACTIONS(2515), + [anon_sym_DQUOTE] = ACTIONS(2515), + [sym_true] = ACTIONS(2513), + [sym_false] = ACTIONS(2513), + [sym_null] = ACTIONS(2513), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2513), + [anon_sym_decltype] = ACTIONS(2513), + [anon_sym_virtual] = ACTIONS(2513), + [anon_sym_explicit] = ACTIONS(2513), + [anon_sym_typename] = ACTIONS(2513), + [anon_sym_template] = ACTIONS(2513), + [anon_sym_operator] = ACTIONS(2513), + [anon_sym_try] = ACTIONS(2513), + [anon_sym_delete] = ACTIONS(2513), + [anon_sym_throw] = ACTIONS(2513), + [anon_sym_namespace] = ACTIONS(2513), + [anon_sym_using] = ACTIONS(2513), + [anon_sym_static_assert] = ACTIONS(2513), + [anon_sym_concept] = ACTIONS(2513), + [anon_sym_co_return] = ACTIONS(2513), + [anon_sym_co_yield] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2513), + [anon_sym_new] = ACTIONS(2513), + [anon_sym_requires] = ACTIONS(2513), + [sym_this] = ACTIONS(2513), + [sym_nullptr] = ACTIONS(2513), + [sym_raw_string_literal] = ACTIONS(2515), }, - [1049] = { - [sym_identifier] = ACTIONS(2793), - [aux_sym_preproc_include_token1] = ACTIONS(2793), - [aux_sym_preproc_def_token1] = ACTIONS(2793), - [aux_sym_preproc_if_token1] = ACTIONS(2793), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2793), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2793), - [sym_preproc_directive] = ACTIONS(2793), - [anon_sym_LPAREN2] = ACTIONS(2795), - [anon_sym_BANG] = ACTIONS(2795), - [anon_sym_TILDE] = ACTIONS(2795), - [anon_sym_DASH] = ACTIONS(2793), - [anon_sym_PLUS] = ACTIONS(2793), - [anon_sym_STAR] = ACTIONS(2795), - [anon_sym_AMP_AMP] = ACTIONS(2795), - [anon_sym_AMP] = ACTIONS(2793), - [anon_sym_SEMI] = ACTIONS(2795), - [anon_sym_typedef] = ACTIONS(2793), - [anon_sym_extern] = ACTIONS(2793), - [anon_sym___attribute__] = ACTIONS(2793), - [anon_sym_COLON_COLON] = ACTIONS(2795), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2795), - [anon_sym___declspec] = ACTIONS(2793), - [anon_sym___based] = ACTIONS(2793), - [anon_sym___cdecl] = ACTIONS(2793), - [anon_sym___clrcall] = ACTIONS(2793), - [anon_sym___stdcall] = ACTIONS(2793), - [anon_sym___fastcall] = ACTIONS(2793), - [anon_sym___thiscall] = ACTIONS(2793), - [anon_sym___vectorcall] = ACTIONS(2793), - [anon_sym_LBRACE] = ACTIONS(2795), - [anon_sym_RBRACE] = ACTIONS(2795), - [anon_sym_LBRACK] = ACTIONS(2793), - [anon_sym_static] = ACTIONS(2793), - [anon_sym_register] = ACTIONS(2793), - [anon_sym_inline] = ACTIONS(2793), - [anon_sym_thread_local] = ACTIONS(2793), - [anon_sym_const] = ACTIONS(2793), - [anon_sym_volatile] = ACTIONS(2793), - [anon_sym_restrict] = ACTIONS(2793), - [anon_sym__Atomic] = ACTIONS(2793), - [anon_sym_mutable] = ACTIONS(2793), - [anon_sym_constexpr] = ACTIONS(2793), - [anon_sym_constinit] = ACTIONS(2793), - [anon_sym_consteval] = ACTIONS(2793), - [anon_sym_signed] = ACTIONS(2793), - [anon_sym_unsigned] = ACTIONS(2793), - [anon_sym_long] = ACTIONS(2793), - [anon_sym_short] = ACTIONS(2793), - [sym_primitive_type] = ACTIONS(2793), - [anon_sym_enum] = ACTIONS(2793), - [anon_sym_class] = ACTIONS(2793), - [anon_sym_struct] = ACTIONS(2793), - [anon_sym_union] = ACTIONS(2793), - [anon_sym_if] = ACTIONS(2793), - [anon_sym_switch] = ACTIONS(2793), - [anon_sym_case] = ACTIONS(2793), - [anon_sym_default] = ACTIONS(2793), - [anon_sym_while] = ACTIONS(2793), - [anon_sym_do] = ACTIONS(2793), - [anon_sym_for] = ACTIONS(2793), - [anon_sym_return] = ACTIONS(2793), - [anon_sym_break] = ACTIONS(2793), - [anon_sym_continue] = ACTIONS(2793), - [anon_sym_goto] = ACTIONS(2793), - [anon_sym_DASH_DASH] = ACTIONS(2795), - [anon_sym_PLUS_PLUS] = ACTIONS(2795), - [anon_sym_sizeof] = ACTIONS(2793), - [sym_number_literal] = ACTIONS(2795), - [anon_sym_L_SQUOTE] = ACTIONS(2795), - [anon_sym_u_SQUOTE] = ACTIONS(2795), - [anon_sym_U_SQUOTE] = ACTIONS(2795), - [anon_sym_u8_SQUOTE] = ACTIONS(2795), - [anon_sym_SQUOTE] = ACTIONS(2795), - [anon_sym_L_DQUOTE] = ACTIONS(2795), - [anon_sym_u_DQUOTE] = ACTIONS(2795), - [anon_sym_U_DQUOTE] = ACTIONS(2795), - [anon_sym_u8_DQUOTE] = ACTIONS(2795), - [anon_sym_DQUOTE] = ACTIONS(2795), - [sym_true] = ACTIONS(2793), - [sym_false] = ACTIONS(2793), - [sym_null] = ACTIONS(2793), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2793), - [anon_sym_decltype] = ACTIONS(2793), - [anon_sym_virtual] = ACTIONS(2793), - [anon_sym_explicit] = ACTIONS(2793), - [anon_sym_typename] = ACTIONS(2793), - [anon_sym_template] = ACTIONS(2793), - [anon_sym_operator] = ACTIONS(2793), - [anon_sym_try] = ACTIONS(2793), - [anon_sym_delete] = ACTIONS(2793), - [anon_sym_throw] = ACTIONS(2793), - [anon_sym_namespace] = ACTIONS(2793), - [anon_sym_using] = ACTIONS(2793), - [anon_sym_static_assert] = ACTIONS(2793), - [anon_sym_concept] = ACTIONS(2793), - [anon_sym_co_return] = ACTIONS(2793), - [anon_sym_co_yield] = ACTIONS(2793), - [anon_sym_co_await] = ACTIONS(2793), - [anon_sym_new] = ACTIONS(2793), - [anon_sym_requires] = ACTIONS(2793), - [sym_this] = ACTIONS(2793), - [sym_nullptr] = ACTIONS(2793), - [sym_raw_string_literal] = ACTIONS(2795), + [648] = { + [sym_identifier] = ACTIONS(2571), + [aux_sym_preproc_include_token1] = ACTIONS(2571), + [aux_sym_preproc_def_token1] = ACTIONS(2571), + [aux_sym_preproc_if_token1] = ACTIONS(2571), + [aux_sym_preproc_if_token2] = ACTIONS(2571), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2571), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2571), + [sym_preproc_directive] = ACTIONS(2571), + [anon_sym_LPAREN2] = ACTIONS(2573), + [anon_sym_BANG] = ACTIONS(2573), + [anon_sym_TILDE] = ACTIONS(2573), + [anon_sym_DASH] = ACTIONS(2571), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_STAR] = ACTIONS(2573), + [anon_sym_AMP_AMP] = ACTIONS(2573), + [anon_sym_AMP] = ACTIONS(2571), + [anon_sym_SEMI] = ACTIONS(2573), + [anon_sym_typedef] = ACTIONS(2571), + [anon_sym_extern] = ACTIONS(2571), + [anon_sym___attribute__] = ACTIONS(2571), + [anon_sym_COLON_COLON] = ACTIONS(2573), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2573), + [anon_sym___declspec] = ACTIONS(2571), + [anon_sym___based] = ACTIONS(2571), + [anon_sym___cdecl] = ACTIONS(2571), + [anon_sym___clrcall] = ACTIONS(2571), + [anon_sym___stdcall] = ACTIONS(2571), + [anon_sym___fastcall] = ACTIONS(2571), + [anon_sym___thiscall] = ACTIONS(2571), + [anon_sym___vectorcall] = ACTIONS(2571), + [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(2571), + [anon_sym_static] = ACTIONS(2571), + [anon_sym_register] = ACTIONS(2571), + [anon_sym_inline] = ACTIONS(2571), + [anon_sym_thread_local] = ACTIONS(2571), + [anon_sym_const] = ACTIONS(2571), + [anon_sym_volatile] = ACTIONS(2571), + [anon_sym_restrict] = ACTIONS(2571), + [anon_sym__Atomic] = ACTIONS(2571), + [anon_sym_mutable] = ACTIONS(2571), + [anon_sym_constexpr] = ACTIONS(2571), + [anon_sym_constinit] = ACTIONS(2571), + [anon_sym_consteval] = ACTIONS(2571), + [anon_sym_signed] = ACTIONS(2571), + [anon_sym_unsigned] = ACTIONS(2571), + [anon_sym_long] = ACTIONS(2571), + [anon_sym_short] = ACTIONS(2571), + [sym_primitive_type] = ACTIONS(2571), + [anon_sym_enum] = ACTIONS(2571), + [anon_sym_class] = ACTIONS(2571), + [anon_sym_struct] = ACTIONS(2571), + [anon_sym_union] = ACTIONS(2571), + [anon_sym_if] = ACTIONS(2571), + [anon_sym_else] = ACTIONS(2571), + [anon_sym_switch] = ACTIONS(2571), + [anon_sym_case] = ACTIONS(2571), + [anon_sym_default] = ACTIONS(2571), + [anon_sym_while] = ACTIONS(2571), + [anon_sym_do] = ACTIONS(2571), + [anon_sym_for] = ACTIONS(2571), + [anon_sym_return] = ACTIONS(2571), + [anon_sym_break] = ACTIONS(2571), + [anon_sym_continue] = ACTIONS(2571), + [anon_sym_goto] = ACTIONS(2571), + [anon_sym_not] = ACTIONS(2571), + [anon_sym_compl] = ACTIONS(2571), + [anon_sym_DASH_DASH] = ACTIONS(2573), + [anon_sym_PLUS_PLUS] = ACTIONS(2573), + [anon_sym_sizeof] = ACTIONS(2571), + [sym_number_literal] = ACTIONS(2573), + [anon_sym_L_SQUOTE] = ACTIONS(2573), + [anon_sym_u_SQUOTE] = ACTIONS(2573), + [anon_sym_U_SQUOTE] = ACTIONS(2573), + [anon_sym_u8_SQUOTE] = ACTIONS(2573), + [anon_sym_SQUOTE] = ACTIONS(2573), + [anon_sym_L_DQUOTE] = ACTIONS(2573), + [anon_sym_u_DQUOTE] = ACTIONS(2573), + [anon_sym_U_DQUOTE] = ACTIONS(2573), + [anon_sym_u8_DQUOTE] = ACTIONS(2573), + [anon_sym_DQUOTE] = ACTIONS(2573), + [sym_true] = ACTIONS(2571), + [sym_false] = ACTIONS(2571), + [sym_null] = ACTIONS(2571), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2571), + [anon_sym_decltype] = ACTIONS(2571), + [anon_sym_virtual] = ACTIONS(2571), + [anon_sym_explicit] = ACTIONS(2571), + [anon_sym_typename] = ACTIONS(2571), + [anon_sym_template] = ACTIONS(2571), + [anon_sym_operator] = ACTIONS(2571), + [anon_sym_try] = ACTIONS(2571), + [anon_sym_delete] = ACTIONS(2571), + [anon_sym_throw] = ACTIONS(2571), + [anon_sym_namespace] = ACTIONS(2571), + [anon_sym_using] = ACTIONS(2571), + [anon_sym_static_assert] = ACTIONS(2571), + [anon_sym_concept] = ACTIONS(2571), + [anon_sym_co_return] = ACTIONS(2571), + [anon_sym_co_yield] = ACTIONS(2571), + [anon_sym_co_await] = ACTIONS(2571), + [anon_sym_new] = ACTIONS(2571), + [anon_sym_requires] = ACTIONS(2571), + [sym_this] = ACTIONS(2571), + [sym_nullptr] = ACTIONS(2571), + [sym_raw_string_literal] = ACTIONS(2573), }, - [1050] = { - [sym_identifier] = ACTIONS(2621), - [aux_sym_preproc_include_token1] = ACTIONS(2621), - [aux_sym_preproc_def_token1] = ACTIONS(2621), - [aux_sym_preproc_if_token1] = ACTIONS(2621), - [aux_sym_preproc_if_token2] = ACTIONS(2621), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2621), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2621), - [sym_preproc_directive] = ACTIONS(2621), - [anon_sym_LPAREN2] = ACTIONS(2623), - [anon_sym_BANG] = ACTIONS(2623), - [anon_sym_TILDE] = ACTIONS(2623), - [anon_sym_DASH] = ACTIONS(2621), - [anon_sym_PLUS] = ACTIONS(2621), - [anon_sym_STAR] = ACTIONS(2623), - [anon_sym_AMP_AMP] = ACTIONS(2623), - [anon_sym_AMP] = ACTIONS(2621), - [anon_sym_SEMI] = ACTIONS(2623), - [anon_sym_typedef] = ACTIONS(2621), - [anon_sym_extern] = ACTIONS(2621), - [anon_sym___attribute__] = ACTIONS(2621), - [anon_sym_COLON_COLON] = ACTIONS(2623), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2623), - [anon_sym___declspec] = ACTIONS(2621), - [anon_sym___based] = ACTIONS(2621), - [anon_sym___cdecl] = ACTIONS(2621), - [anon_sym___clrcall] = ACTIONS(2621), - [anon_sym___stdcall] = ACTIONS(2621), - [anon_sym___fastcall] = ACTIONS(2621), - [anon_sym___thiscall] = ACTIONS(2621), - [anon_sym___vectorcall] = ACTIONS(2621), - [anon_sym_LBRACE] = ACTIONS(2623), - [anon_sym_LBRACK] = ACTIONS(2621), - [anon_sym_static] = ACTIONS(2621), - [anon_sym_register] = ACTIONS(2621), - [anon_sym_inline] = ACTIONS(2621), - [anon_sym_thread_local] = ACTIONS(2621), - [anon_sym_const] = ACTIONS(2621), - [anon_sym_volatile] = ACTIONS(2621), - [anon_sym_restrict] = ACTIONS(2621), - [anon_sym__Atomic] = ACTIONS(2621), - [anon_sym_mutable] = ACTIONS(2621), - [anon_sym_constexpr] = ACTIONS(2621), - [anon_sym_constinit] = ACTIONS(2621), - [anon_sym_consteval] = ACTIONS(2621), - [anon_sym_signed] = ACTIONS(2621), - [anon_sym_unsigned] = ACTIONS(2621), - [anon_sym_long] = ACTIONS(2621), - [anon_sym_short] = ACTIONS(2621), - [sym_primitive_type] = ACTIONS(2621), - [anon_sym_enum] = ACTIONS(2621), - [anon_sym_class] = ACTIONS(2621), - [anon_sym_struct] = ACTIONS(2621), - [anon_sym_union] = ACTIONS(2621), - [anon_sym_if] = ACTIONS(2621), - [anon_sym_switch] = ACTIONS(2621), - [anon_sym_case] = ACTIONS(2621), - [anon_sym_default] = ACTIONS(2621), - [anon_sym_while] = ACTIONS(2621), - [anon_sym_do] = ACTIONS(2621), - [anon_sym_for] = ACTIONS(2621), - [anon_sym_return] = ACTIONS(2621), - [anon_sym_break] = ACTIONS(2621), - [anon_sym_continue] = ACTIONS(2621), - [anon_sym_goto] = ACTIONS(2621), - [anon_sym_DASH_DASH] = ACTIONS(2623), - [anon_sym_PLUS_PLUS] = ACTIONS(2623), - [anon_sym_sizeof] = ACTIONS(2621), - [sym_number_literal] = ACTIONS(2623), - [anon_sym_L_SQUOTE] = ACTIONS(2623), - [anon_sym_u_SQUOTE] = ACTIONS(2623), - [anon_sym_U_SQUOTE] = ACTIONS(2623), - [anon_sym_u8_SQUOTE] = ACTIONS(2623), - [anon_sym_SQUOTE] = ACTIONS(2623), - [anon_sym_L_DQUOTE] = ACTIONS(2623), - [anon_sym_u_DQUOTE] = ACTIONS(2623), - [anon_sym_U_DQUOTE] = ACTIONS(2623), - [anon_sym_u8_DQUOTE] = ACTIONS(2623), - [anon_sym_DQUOTE] = ACTIONS(2623), - [sym_true] = ACTIONS(2621), - [sym_false] = ACTIONS(2621), - [sym_null] = ACTIONS(2621), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2621), - [anon_sym_decltype] = ACTIONS(2621), - [anon_sym_virtual] = ACTIONS(2621), - [anon_sym_explicit] = ACTIONS(2621), - [anon_sym_typename] = ACTIONS(2621), - [anon_sym_template] = ACTIONS(2621), - [anon_sym_operator] = ACTIONS(2621), - [anon_sym_try] = ACTIONS(2621), - [anon_sym_delete] = ACTIONS(2621), - [anon_sym_throw] = ACTIONS(2621), - [anon_sym_namespace] = ACTIONS(2621), - [anon_sym_using] = ACTIONS(2621), - [anon_sym_static_assert] = ACTIONS(2621), - [anon_sym_concept] = ACTIONS(2621), - [anon_sym_co_return] = ACTIONS(2621), - [anon_sym_co_yield] = ACTIONS(2621), - [anon_sym_co_await] = ACTIONS(2621), - [anon_sym_new] = ACTIONS(2621), - [anon_sym_requires] = ACTIONS(2621), - [sym_this] = ACTIONS(2621), - [sym_nullptr] = ACTIONS(2621), - [sym_raw_string_literal] = ACTIONS(2623), + [649] = { + [sym_identifier] = ACTIONS(2517), + [aux_sym_preproc_include_token1] = ACTIONS(2517), + [aux_sym_preproc_def_token1] = ACTIONS(2517), + [aux_sym_preproc_if_token1] = ACTIONS(2517), + [aux_sym_preproc_if_token2] = ACTIONS(2517), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2517), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2517), + [sym_preproc_directive] = ACTIONS(2517), + [anon_sym_LPAREN2] = ACTIONS(2519), + [anon_sym_BANG] = ACTIONS(2519), + [anon_sym_TILDE] = ACTIONS(2519), + [anon_sym_DASH] = ACTIONS(2517), + [anon_sym_PLUS] = ACTIONS(2517), + [anon_sym_STAR] = ACTIONS(2519), + [anon_sym_AMP_AMP] = ACTIONS(2519), + [anon_sym_AMP] = ACTIONS(2517), + [anon_sym_SEMI] = ACTIONS(2519), + [anon_sym_typedef] = ACTIONS(2517), + [anon_sym_extern] = ACTIONS(2517), + [anon_sym___attribute__] = ACTIONS(2517), + [anon_sym_COLON_COLON] = ACTIONS(2519), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2519), + [anon_sym___declspec] = ACTIONS(2517), + [anon_sym___based] = ACTIONS(2517), + [anon_sym___cdecl] = ACTIONS(2517), + [anon_sym___clrcall] = ACTIONS(2517), + [anon_sym___stdcall] = ACTIONS(2517), + [anon_sym___fastcall] = ACTIONS(2517), + [anon_sym___thiscall] = ACTIONS(2517), + [anon_sym___vectorcall] = ACTIONS(2517), + [anon_sym_LBRACE] = ACTIONS(2519), + [anon_sym_LBRACK] = ACTIONS(2517), + [anon_sym_static] = ACTIONS(2517), + [anon_sym_register] = ACTIONS(2517), + [anon_sym_inline] = ACTIONS(2517), + [anon_sym_thread_local] = ACTIONS(2517), + [anon_sym_const] = ACTIONS(2517), + [anon_sym_volatile] = ACTIONS(2517), + [anon_sym_restrict] = ACTIONS(2517), + [anon_sym__Atomic] = ACTIONS(2517), + [anon_sym_mutable] = ACTIONS(2517), + [anon_sym_constexpr] = ACTIONS(2517), + [anon_sym_constinit] = ACTIONS(2517), + [anon_sym_consteval] = ACTIONS(2517), + [anon_sym_signed] = ACTIONS(2517), + [anon_sym_unsigned] = ACTIONS(2517), + [anon_sym_long] = ACTIONS(2517), + [anon_sym_short] = ACTIONS(2517), + [sym_primitive_type] = ACTIONS(2517), + [anon_sym_enum] = ACTIONS(2517), + [anon_sym_class] = ACTIONS(2517), + [anon_sym_struct] = ACTIONS(2517), + [anon_sym_union] = ACTIONS(2517), + [anon_sym_if] = ACTIONS(2517), + [anon_sym_else] = ACTIONS(2517), + [anon_sym_switch] = ACTIONS(2517), + [anon_sym_case] = ACTIONS(2517), + [anon_sym_default] = ACTIONS(2517), + [anon_sym_while] = ACTIONS(2517), + [anon_sym_do] = ACTIONS(2517), + [anon_sym_for] = ACTIONS(2517), + [anon_sym_return] = ACTIONS(2517), + [anon_sym_break] = ACTIONS(2517), + [anon_sym_continue] = ACTIONS(2517), + [anon_sym_goto] = ACTIONS(2517), + [anon_sym_not] = ACTIONS(2517), + [anon_sym_compl] = ACTIONS(2517), + [anon_sym_DASH_DASH] = ACTIONS(2519), + [anon_sym_PLUS_PLUS] = ACTIONS(2519), + [anon_sym_sizeof] = ACTIONS(2517), + [sym_number_literal] = ACTIONS(2519), + [anon_sym_L_SQUOTE] = ACTIONS(2519), + [anon_sym_u_SQUOTE] = ACTIONS(2519), + [anon_sym_U_SQUOTE] = ACTIONS(2519), + [anon_sym_u8_SQUOTE] = ACTIONS(2519), + [anon_sym_SQUOTE] = ACTIONS(2519), + [anon_sym_L_DQUOTE] = ACTIONS(2519), + [anon_sym_u_DQUOTE] = ACTIONS(2519), + [anon_sym_U_DQUOTE] = ACTIONS(2519), + [anon_sym_u8_DQUOTE] = ACTIONS(2519), + [anon_sym_DQUOTE] = ACTIONS(2519), + [sym_true] = ACTIONS(2517), + [sym_false] = ACTIONS(2517), + [sym_null] = ACTIONS(2517), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2517), + [anon_sym_decltype] = ACTIONS(2517), + [anon_sym_virtual] = ACTIONS(2517), + [anon_sym_explicit] = ACTIONS(2517), + [anon_sym_typename] = ACTIONS(2517), + [anon_sym_template] = ACTIONS(2517), + [anon_sym_operator] = ACTIONS(2517), + [anon_sym_try] = ACTIONS(2517), + [anon_sym_delete] = ACTIONS(2517), + [anon_sym_throw] = ACTIONS(2517), + [anon_sym_namespace] = ACTIONS(2517), + [anon_sym_using] = ACTIONS(2517), + [anon_sym_static_assert] = ACTIONS(2517), + [anon_sym_concept] = ACTIONS(2517), + [anon_sym_co_return] = ACTIONS(2517), + [anon_sym_co_yield] = ACTIONS(2517), + [anon_sym_co_await] = ACTIONS(2517), + [anon_sym_new] = ACTIONS(2517), + [anon_sym_requires] = ACTIONS(2517), + [sym_this] = ACTIONS(2517), + [sym_nullptr] = ACTIONS(2517), + [sym_raw_string_literal] = ACTIONS(2519), }, - [1051] = { - [ts_builtin_sym_end] = ACTIONS(2619), - [sym_identifier] = ACTIONS(2617), - [aux_sym_preproc_include_token1] = ACTIONS(2617), - [aux_sym_preproc_def_token1] = ACTIONS(2617), - [aux_sym_preproc_if_token1] = ACTIONS(2617), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2617), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2617), - [sym_preproc_directive] = ACTIONS(2617), - [anon_sym_LPAREN2] = ACTIONS(2619), - [anon_sym_BANG] = ACTIONS(2619), - [anon_sym_TILDE] = ACTIONS(2619), - [anon_sym_DASH] = ACTIONS(2617), - [anon_sym_PLUS] = ACTIONS(2617), - [anon_sym_STAR] = ACTIONS(2619), - [anon_sym_AMP_AMP] = ACTIONS(2619), - [anon_sym_AMP] = ACTIONS(2617), - [anon_sym_SEMI] = ACTIONS(2619), - [anon_sym_typedef] = ACTIONS(2617), - [anon_sym_extern] = ACTIONS(2617), - [anon_sym___attribute__] = ACTIONS(2617), - [anon_sym_COLON_COLON] = ACTIONS(2619), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2619), - [anon_sym___declspec] = ACTIONS(2617), - [anon_sym___based] = ACTIONS(2617), - [anon_sym___cdecl] = ACTIONS(2617), - [anon_sym___clrcall] = ACTIONS(2617), - [anon_sym___stdcall] = ACTIONS(2617), - [anon_sym___fastcall] = ACTIONS(2617), - [anon_sym___thiscall] = ACTIONS(2617), - [anon_sym___vectorcall] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2619), - [anon_sym_LBRACK] = ACTIONS(2617), - [anon_sym_static] = ACTIONS(2617), - [anon_sym_register] = ACTIONS(2617), - [anon_sym_inline] = ACTIONS(2617), - [anon_sym_thread_local] = ACTIONS(2617), - [anon_sym_const] = ACTIONS(2617), - [anon_sym_volatile] = ACTIONS(2617), - [anon_sym_restrict] = ACTIONS(2617), - [anon_sym__Atomic] = ACTIONS(2617), - [anon_sym_mutable] = ACTIONS(2617), - [anon_sym_constexpr] = ACTIONS(2617), - [anon_sym_constinit] = ACTIONS(2617), - [anon_sym_consteval] = ACTIONS(2617), - [anon_sym_signed] = ACTIONS(2617), - [anon_sym_unsigned] = ACTIONS(2617), - [anon_sym_long] = ACTIONS(2617), - [anon_sym_short] = ACTIONS(2617), - [sym_primitive_type] = ACTIONS(2617), - [anon_sym_enum] = ACTIONS(2617), - [anon_sym_class] = ACTIONS(2617), - [anon_sym_struct] = ACTIONS(2617), - [anon_sym_union] = ACTIONS(2617), - [anon_sym_if] = ACTIONS(2617), - [anon_sym_switch] = ACTIONS(2617), - [anon_sym_case] = ACTIONS(2617), - [anon_sym_default] = ACTIONS(2617), - [anon_sym_while] = ACTIONS(2617), - [anon_sym_do] = ACTIONS(2617), - [anon_sym_for] = ACTIONS(2617), - [anon_sym_return] = ACTIONS(2617), - [anon_sym_break] = ACTIONS(2617), - [anon_sym_continue] = ACTIONS(2617), - [anon_sym_goto] = ACTIONS(2617), - [anon_sym_DASH_DASH] = ACTIONS(2619), - [anon_sym_PLUS_PLUS] = ACTIONS(2619), - [anon_sym_sizeof] = ACTIONS(2617), - [sym_number_literal] = ACTIONS(2619), - [anon_sym_L_SQUOTE] = ACTIONS(2619), - [anon_sym_u_SQUOTE] = ACTIONS(2619), - [anon_sym_U_SQUOTE] = ACTIONS(2619), - [anon_sym_u8_SQUOTE] = ACTIONS(2619), - [anon_sym_SQUOTE] = ACTIONS(2619), - [anon_sym_L_DQUOTE] = ACTIONS(2619), - [anon_sym_u_DQUOTE] = ACTIONS(2619), - [anon_sym_U_DQUOTE] = ACTIONS(2619), - [anon_sym_u8_DQUOTE] = ACTIONS(2619), - [anon_sym_DQUOTE] = ACTIONS(2619), - [sym_true] = ACTIONS(2617), - [sym_false] = ACTIONS(2617), - [sym_null] = ACTIONS(2617), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2617), - [anon_sym_decltype] = ACTIONS(2617), - [anon_sym_virtual] = ACTIONS(2617), - [anon_sym_explicit] = ACTIONS(2617), - [anon_sym_typename] = ACTIONS(2617), - [anon_sym_template] = ACTIONS(2617), - [anon_sym_operator] = ACTIONS(2617), - [anon_sym_try] = ACTIONS(2617), - [anon_sym_delete] = ACTIONS(2617), - [anon_sym_throw] = ACTIONS(2617), - [anon_sym_namespace] = ACTIONS(2617), - [anon_sym_using] = ACTIONS(2617), - [anon_sym_static_assert] = ACTIONS(2617), - [anon_sym_concept] = ACTIONS(2617), - [anon_sym_co_return] = ACTIONS(2617), - [anon_sym_co_yield] = ACTIONS(2617), - [anon_sym_co_await] = ACTIONS(2617), - [anon_sym_new] = ACTIONS(2617), - [anon_sym_requires] = ACTIONS(2617), - [sym_this] = ACTIONS(2617), - [sym_nullptr] = ACTIONS(2617), - [sym_raw_string_literal] = ACTIONS(2619), + [650] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token2] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1052] = { - [sym_identifier] = ACTIONS(2757), - [aux_sym_preproc_include_token1] = ACTIONS(2757), - [aux_sym_preproc_def_token1] = ACTIONS(2757), - [aux_sym_preproc_if_token1] = ACTIONS(2757), - [aux_sym_preproc_if_token2] = ACTIONS(2757), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2757), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2757), - [sym_preproc_directive] = ACTIONS(2757), - [anon_sym_LPAREN2] = ACTIONS(2759), - [anon_sym_BANG] = ACTIONS(2759), - [anon_sym_TILDE] = ACTIONS(2759), - [anon_sym_DASH] = ACTIONS(2757), - [anon_sym_PLUS] = ACTIONS(2757), - [anon_sym_STAR] = ACTIONS(2759), - [anon_sym_AMP_AMP] = ACTIONS(2759), - [anon_sym_AMP] = ACTIONS(2757), - [anon_sym_SEMI] = ACTIONS(2759), - [anon_sym_typedef] = ACTIONS(2757), - [anon_sym_extern] = ACTIONS(2757), - [anon_sym___attribute__] = ACTIONS(2757), - [anon_sym_COLON_COLON] = ACTIONS(2759), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2759), - [anon_sym___declspec] = ACTIONS(2757), - [anon_sym___based] = ACTIONS(2757), - [anon_sym___cdecl] = ACTIONS(2757), - [anon_sym___clrcall] = ACTIONS(2757), - [anon_sym___stdcall] = ACTIONS(2757), - [anon_sym___fastcall] = ACTIONS(2757), - [anon_sym___thiscall] = ACTIONS(2757), - [anon_sym___vectorcall] = ACTIONS(2757), - [anon_sym_LBRACE] = ACTIONS(2759), - [anon_sym_LBRACK] = ACTIONS(2757), - [anon_sym_static] = ACTIONS(2757), - [anon_sym_register] = ACTIONS(2757), - [anon_sym_inline] = ACTIONS(2757), - [anon_sym_thread_local] = ACTIONS(2757), - [anon_sym_const] = ACTIONS(2757), - [anon_sym_volatile] = ACTIONS(2757), - [anon_sym_restrict] = ACTIONS(2757), - [anon_sym__Atomic] = ACTIONS(2757), - [anon_sym_mutable] = ACTIONS(2757), - [anon_sym_constexpr] = ACTIONS(2757), - [anon_sym_constinit] = ACTIONS(2757), - [anon_sym_consteval] = ACTIONS(2757), - [anon_sym_signed] = ACTIONS(2757), - [anon_sym_unsigned] = ACTIONS(2757), - [anon_sym_long] = ACTIONS(2757), - [anon_sym_short] = ACTIONS(2757), - [sym_primitive_type] = ACTIONS(2757), - [anon_sym_enum] = ACTIONS(2757), - [anon_sym_class] = ACTIONS(2757), - [anon_sym_struct] = ACTIONS(2757), - [anon_sym_union] = ACTIONS(2757), - [anon_sym_if] = ACTIONS(2757), - [anon_sym_switch] = ACTIONS(2757), - [anon_sym_case] = ACTIONS(2757), - [anon_sym_default] = ACTIONS(2757), - [anon_sym_while] = ACTIONS(2757), - [anon_sym_do] = ACTIONS(2757), - [anon_sym_for] = ACTIONS(2757), - [anon_sym_return] = ACTIONS(2757), - [anon_sym_break] = ACTIONS(2757), - [anon_sym_continue] = ACTIONS(2757), - [anon_sym_goto] = ACTIONS(2757), - [anon_sym_DASH_DASH] = ACTIONS(2759), - [anon_sym_PLUS_PLUS] = ACTIONS(2759), - [anon_sym_sizeof] = ACTIONS(2757), - [sym_number_literal] = ACTIONS(2759), - [anon_sym_L_SQUOTE] = ACTIONS(2759), - [anon_sym_u_SQUOTE] = ACTIONS(2759), - [anon_sym_U_SQUOTE] = ACTIONS(2759), - [anon_sym_u8_SQUOTE] = ACTIONS(2759), - [anon_sym_SQUOTE] = ACTIONS(2759), - [anon_sym_L_DQUOTE] = ACTIONS(2759), - [anon_sym_u_DQUOTE] = ACTIONS(2759), - [anon_sym_U_DQUOTE] = ACTIONS(2759), - [anon_sym_u8_DQUOTE] = ACTIONS(2759), - [anon_sym_DQUOTE] = ACTIONS(2759), - [sym_true] = ACTIONS(2757), - [sym_false] = ACTIONS(2757), - [sym_null] = ACTIONS(2757), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2757), - [anon_sym_decltype] = ACTIONS(2757), - [anon_sym_virtual] = ACTIONS(2757), - [anon_sym_explicit] = ACTIONS(2757), - [anon_sym_typename] = ACTIONS(2757), - [anon_sym_template] = ACTIONS(2757), - [anon_sym_operator] = ACTIONS(2757), - [anon_sym_try] = ACTIONS(2757), - [anon_sym_delete] = ACTIONS(2757), - [anon_sym_throw] = ACTIONS(2757), - [anon_sym_namespace] = ACTIONS(2757), - [anon_sym_using] = ACTIONS(2757), - [anon_sym_static_assert] = ACTIONS(2757), - [anon_sym_concept] = ACTIONS(2757), - [anon_sym_co_return] = ACTIONS(2757), - [anon_sym_co_yield] = ACTIONS(2757), - [anon_sym_co_await] = ACTIONS(2757), - [anon_sym_new] = ACTIONS(2757), - [anon_sym_requires] = ACTIONS(2757), - [sym_this] = ACTIONS(2757), - [sym_nullptr] = ACTIONS(2757), - [sym_raw_string_literal] = ACTIONS(2759), + [651] = { + [ts_builtin_sym_end] = ACTIONS(2573), + [sym_identifier] = ACTIONS(2571), + [aux_sym_preproc_include_token1] = ACTIONS(2571), + [aux_sym_preproc_def_token1] = ACTIONS(2571), + [aux_sym_preproc_if_token1] = ACTIONS(2571), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2571), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2571), + [sym_preproc_directive] = ACTIONS(2571), + [anon_sym_LPAREN2] = ACTIONS(2573), + [anon_sym_BANG] = ACTIONS(2573), + [anon_sym_TILDE] = ACTIONS(2573), + [anon_sym_DASH] = ACTIONS(2571), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_STAR] = ACTIONS(2573), + [anon_sym_AMP_AMP] = ACTIONS(2573), + [anon_sym_AMP] = ACTIONS(2571), + [anon_sym_SEMI] = ACTIONS(2573), + [anon_sym_typedef] = ACTIONS(2571), + [anon_sym_extern] = ACTIONS(2571), + [anon_sym___attribute__] = ACTIONS(2571), + [anon_sym_COLON_COLON] = ACTIONS(2573), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2573), + [anon_sym___declspec] = ACTIONS(2571), + [anon_sym___based] = ACTIONS(2571), + [anon_sym___cdecl] = ACTIONS(2571), + [anon_sym___clrcall] = ACTIONS(2571), + [anon_sym___stdcall] = ACTIONS(2571), + [anon_sym___fastcall] = ACTIONS(2571), + [anon_sym___thiscall] = ACTIONS(2571), + [anon_sym___vectorcall] = ACTIONS(2571), + [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(2571), + [anon_sym_static] = ACTIONS(2571), + [anon_sym_register] = ACTIONS(2571), + [anon_sym_inline] = ACTIONS(2571), + [anon_sym_thread_local] = ACTIONS(2571), + [anon_sym_const] = ACTIONS(2571), + [anon_sym_volatile] = ACTIONS(2571), + [anon_sym_restrict] = ACTIONS(2571), + [anon_sym__Atomic] = ACTIONS(2571), + [anon_sym_mutable] = ACTIONS(2571), + [anon_sym_constexpr] = ACTIONS(2571), + [anon_sym_constinit] = ACTIONS(2571), + [anon_sym_consteval] = ACTIONS(2571), + [anon_sym_signed] = ACTIONS(2571), + [anon_sym_unsigned] = ACTIONS(2571), + [anon_sym_long] = ACTIONS(2571), + [anon_sym_short] = ACTIONS(2571), + [sym_primitive_type] = ACTIONS(2571), + [anon_sym_enum] = ACTIONS(2571), + [anon_sym_class] = ACTIONS(2571), + [anon_sym_struct] = ACTIONS(2571), + [anon_sym_union] = ACTIONS(2571), + [anon_sym_if] = ACTIONS(2571), + [anon_sym_else] = ACTIONS(2571), + [anon_sym_switch] = ACTIONS(2571), + [anon_sym_case] = ACTIONS(2571), + [anon_sym_default] = ACTIONS(2571), + [anon_sym_while] = ACTIONS(2571), + [anon_sym_do] = ACTIONS(2571), + [anon_sym_for] = ACTIONS(2571), + [anon_sym_return] = ACTIONS(2571), + [anon_sym_break] = ACTIONS(2571), + [anon_sym_continue] = ACTIONS(2571), + [anon_sym_goto] = ACTIONS(2571), + [anon_sym_not] = ACTIONS(2571), + [anon_sym_compl] = ACTIONS(2571), + [anon_sym_DASH_DASH] = ACTIONS(2573), + [anon_sym_PLUS_PLUS] = ACTIONS(2573), + [anon_sym_sizeof] = ACTIONS(2571), + [sym_number_literal] = ACTIONS(2573), + [anon_sym_L_SQUOTE] = ACTIONS(2573), + [anon_sym_u_SQUOTE] = ACTIONS(2573), + [anon_sym_U_SQUOTE] = ACTIONS(2573), + [anon_sym_u8_SQUOTE] = ACTIONS(2573), + [anon_sym_SQUOTE] = ACTIONS(2573), + [anon_sym_L_DQUOTE] = ACTIONS(2573), + [anon_sym_u_DQUOTE] = ACTIONS(2573), + [anon_sym_U_DQUOTE] = ACTIONS(2573), + [anon_sym_u8_DQUOTE] = ACTIONS(2573), + [anon_sym_DQUOTE] = ACTIONS(2573), + [sym_true] = ACTIONS(2571), + [sym_false] = ACTIONS(2571), + [sym_null] = ACTIONS(2571), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2571), + [anon_sym_decltype] = ACTIONS(2571), + [anon_sym_virtual] = ACTIONS(2571), + [anon_sym_explicit] = ACTIONS(2571), + [anon_sym_typename] = ACTIONS(2571), + [anon_sym_template] = ACTIONS(2571), + [anon_sym_operator] = ACTIONS(2571), + [anon_sym_try] = ACTIONS(2571), + [anon_sym_delete] = ACTIONS(2571), + [anon_sym_throw] = ACTIONS(2571), + [anon_sym_namespace] = ACTIONS(2571), + [anon_sym_using] = ACTIONS(2571), + [anon_sym_static_assert] = ACTIONS(2571), + [anon_sym_concept] = ACTIONS(2571), + [anon_sym_co_return] = ACTIONS(2571), + [anon_sym_co_yield] = ACTIONS(2571), + [anon_sym_co_await] = ACTIONS(2571), + [anon_sym_new] = ACTIONS(2571), + [anon_sym_requires] = ACTIONS(2571), + [sym_this] = ACTIONS(2571), + [sym_nullptr] = ACTIONS(2571), + [sym_raw_string_literal] = ACTIONS(2573), }, - [1053] = { - [sym_identifier] = ACTIONS(2601), - [aux_sym_preproc_include_token1] = ACTIONS(2601), - [aux_sym_preproc_def_token1] = ACTIONS(2601), - [aux_sym_preproc_if_token1] = ACTIONS(2601), - [aux_sym_preproc_if_token2] = ACTIONS(2601), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2601), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2601), - [sym_preproc_directive] = ACTIONS(2601), - [anon_sym_LPAREN2] = ACTIONS(2603), - [anon_sym_BANG] = ACTIONS(2603), - [anon_sym_TILDE] = ACTIONS(2603), - [anon_sym_DASH] = ACTIONS(2601), - [anon_sym_PLUS] = ACTIONS(2601), - [anon_sym_STAR] = ACTIONS(2603), - [anon_sym_AMP_AMP] = ACTIONS(2603), - [anon_sym_AMP] = ACTIONS(2601), - [anon_sym_SEMI] = ACTIONS(2603), - [anon_sym_typedef] = ACTIONS(2601), - [anon_sym_extern] = ACTIONS(2601), - [anon_sym___attribute__] = ACTIONS(2601), - [anon_sym_COLON_COLON] = ACTIONS(2603), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2603), - [anon_sym___declspec] = ACTIONS(2601), - [anon_sym___based] = ACTIONS(2601), - [anon_sym___cdecl] = ACTIONS(2601), - [anon_sym___clrcall] = ACTIONS(2601), - [anon_sym___stdcall] = ACTIONS(2601), - [anon_sym___fastcall] = ACTIONS(2601), - [anon_sym___thiscall] = ACTIONS(2601), - [anon_sym___vectorcall] = ACTIONS(2601), - [anon_sym_LBRACE] = ACTIONS(2603), - [anon_sym_LBRACK] = ACTIONS(2601), - [anon_sym_static] = ACTIONS(2601), - [anon_sym_register] = ACTIONS(2601), - [anon_sym_inline] = ACTIONS(2601), - [anon_sym_thread_local] = ACTIONS(2601), - [anon_sym_const] = ACTIONS(2601), - [anon_sym_volatile] = ACTIONS(2601), - [anon_sym_restrict] = ACTIONS(2601), - [anon_sym__Atomic] = ACTIONS(2601), - [anon_sym_mutable] = ACTIONS(2601), - [anon_sym_constexpr] = ACTIONS(2601), - [anon_sym_constinit] = ACTIONS(2601), - [anon_sym_consteval] = ACTIONS(2601), - [anon_sym_signed] = ACTIONS(2601), - [anon_sym_unsigned] = ACTIONS(2601), - [anon_sym_long] = ACTIONS(2601), - [anon_sym_short] = ACTIONS(2601), - [sym_primitive_type] = ACTIONS(2601), - [anon_sym_enum] = ACTIONS(2601), - [anon_sym_class] = ACTIONS(2601), - [anon_sym_struct] = ACTIONS(2601), - [anon_sym_union] = ACTIONS(2601), - [anon_sym_if] = ACTIONS(2601), - [anon_sym_switch] = ACTIONS(2601), - [anon_sym_case] = ACTIONS(2601), - [anon_sym_default] = ACTIONS(2601), - [anon_sym_while] = ACTIONS(2601), - [anon_sym_do] = ACTIONS(2601), - [anon_sym_for] = ACTIONS(2601), - [anon_sym_return] = ACTIONS(2601), - [anon_sym_break] = ACTIONS(2601), - [anon_sym_continue] = ACTIONS(2601), - [anon_sym_goto] = ACTIONS(2601), - [anon_sym_DASH_DASH] = ACTIONS(2603), - [anon_sym_PLUS_PLUS] = ACTIONS(2603), - [anon_sym_sizeof] = ACTIONS(2601), - [sym_number_literal] = ACTIONS(2603), - [anon_sym_L_SQUOTE] = ACTIONS(2603), - [anon_sym_u_SQUOTE] = ACTIONS(2603), - [anon_sym_U_SQUOTE] = ACTIONS(2603), - [anon_sym_u8_SQUOTE] = ACTIONS(2603), - [anon_sym_SQUOTE] = ACTIONS(2603), - [anon_sym_L_DQUOTE] = ACTIONS(2603), - [anon_sym_u_DQUOTE] = ACTIONS(2603), - [anon_sym_U_DQUOTE] = ACTIONS(2603), - [anon_sym_u8_DQUOTE] = ACTIONS(2603), - [anon_sym_DQUOTE] = ACTIONS(2603), - [sym_true] = ACTIONS(2601), - [sym_false] = ACTIONS(2601), - [sym_null] = ACTIONS(2601), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2601), - [anon_sym_decltype] = ACTIONS(2601), - [anon_sym_virtual] = ACTIONS(2601), - [anon_sym_explicit] = ACTIONS(2601), - [anon_sym_typename] = ACTIONS(2601), - [anon_sym_template] = ACTIONS(2601), - [anon_sym_operator] = ACTIONS(2601), - [anon_sym_try] = ACTIONS(2601), - [anon_sym_delete] = ACTIONS(2601), - [anon_sym_throw] = ACTIONS(2601), - [anon_sym_namespace] = ACTIONS(2601), - [anon_sym_using] = ACTIONS(2601), - [anon_sym_static_assert] = ACTIONS(2601), - [anon_sym_concept] = ACTIONS(2601), - [anon_sym_co_return] = ACTIONS(2601), - [anon_sym_co_yield] = ACTIONS(2601), - [anon_sym_co_await] = ACTIONS(2601), - [anon_sym_new] = ACTIONS(2601), - [anon_sym_requires] = ACTIONS(2601), - [sym_this] = ACTIONS(2601), - [sym_nullptr] = ACTIONS(2601), - [sym_raw_string_literal] = ACTIONS(2603), + [652] = { + [sym_identifier] = ACTIONS(2476), + [aux_sym_preproc_include_token1] = ACTIONS(2476), + [aux_sym_preproc_def_token1] = ACTIONS(2476), + [anon_sym_COMMA] = ACTIONS(2507), + [aux_sym_preproc_if_token1] = ACTIONS(2476), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2476), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2476), + [sym_preproc_directive] = ACTIONS(2476), + [anon_sym_LPAREN2] = ACTIONS(2478), + [anon_sym_BANG] = ACTIONS(2478), + [anon_sym_TILDE] = ACTIONS(2478), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_STAR] = ACTIONS(2478), + [anon_sym_AMP_AMP] = ACTIONS(2478), + [anon_sym_AMP] = ACTIONS(2476), + [anon_sym_SEMI] = ACTIONS(2478), + [anon_sym_typedef] = ACTIONS(2476), + [anon_sym_extern] = ACTIONS(2476), + [anon_sym___attribute__] = ACTIONS(2476), + [anon_sym_COLON_COLON] = ACTIONS(2478), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2478), + [anon_sym___declspec] = ACTIONS(2476), + [anon_sym___based] = ACTIONS(2476), + [anon_sym___cdecl] = ACTIONS(2476), + [anon_sym___clrcall] = ACTIONS(2476), + [anon_sym___stdcall] = ACTIONS(2476), + [anon_sym___fastcall] = ACTIONS(2476), + [anon_sym___thiscall] = ACTIONS(2476), + [anon_sym___vectorcall] = ACTIONS(2476), + [anon_sym_LBRACE] = ACTIONS(2478), + [anon_sym_RBRACE] = ACTIONS(2507), + [anon_sym_LBRACK] = ACTIONS(2476), + [anon_sym_static] = ACTIONS(2476), + [anon_sym_register] = ACTIONS(2476), + [anon_sym_inline] = ACTIONS(2476), + [anon_sym_thread_local] = ACTIONS(2476), + [anon_sym_const] = ACTIONS(2476), + [anon_sym_volatile] = ACTIONS(2476), + [anon_sym_restrict] = ACTIONS(2476), + [anon_sym__Atomic] = ACTIONS(2476), + [anon_sym_mutable] = ACTIONS(2476), + [anon_sym_constexpr] = ACTIONS(2476), + [anon_sym_constinit] = ACTIONS(2476), + [anon_sym_consteval] = ACTIONS(2476), + [anon_sym_signed] = ACTIONS(2476), + [anon_sym_unsigned] = ACTIONS(2476), + [anon_sym_long] = ACTIONS(2476), + [anon_sym_short] = ACTIONS(2476), + [sym_primitive_type] = ACTIONS(2476), + [anon_sym_enum] = ACTIONS(2476), + [anon_sym_class] = ACTIONS(2476), + [anon_sym_struct] = ACTIONS(2476), + [anon_sym_union] = ACTIONS(2476), + [anon_sym_if] = ACTIONS(2476), + [anon_sym_switch] = ACTIONS(2476), + [anon_sym_case] = ACTIONS(2476), + [anon_sym_default] = ACTIONS(2476), + [anon_sym_while] = ACTIONS(2476), + [anon_sym_do] = ACTIONS(2476), + [anon_sym_for] = ACTIONS(2476), + [anon_sym_return] = ACTIONS(2476), + [anon_sym_break] = ACTIONS(2476), + [anon_sym_continue] = ACTIONS(2476), + [anon_sym_goto] = ACTIONS(2476), + [anon_sym_not] = ACTIONS(2476), + [anon_sym_compl] = ACTIONS(2476), + [anon_sym_DASH_DASH] = ACTIONS(2478), + [anon_sym_PLUS_PLUS] = ACTIONS(2478), + [anon_sym_sizeof] = ACTIONS(2476), + [sym_number_literal] = ACTIONS(2478), + [anon_sym_L_SQUOTE] = ACTIONS(2478), + [anon_sym_u_SQUOTE] = ACTIONS(2478), + [anon_sym_U_SQUOTE] = ACTIONS(2478), + [anon_sym_u8_SQUOTE] = ACTIONS(2478), + [anon_sym_SQUOTE] = ACTIONS(2478), + [anon_sym_L_DQUOTE] = ACTIONS(2478), + [anon_sym_u_DQUOTE] = ACTIONS(2478), + [anon_sym_U_DQUOTE] = ACTIONS(2478), + [anon_sym_u8_DQUOTE] = ACTIONS(2478), + [anon_sym_DQUOTE] = ACTIONS(2478), + [sym_true] = ACTIONS(2476), + [sym_false] = ACTIONS(2476), + [sym_null] = ACTIONS(2476), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2476), + [anon_sym_decltype] = ACTIONS(2476), + [anon_sym_virtual] = ACTIONS(2476), + [anon_sym_explicit] = ACTIONS(2476), + [anon_sym_typename] = ACTIONS(2476), + [anon_sym_template] = ACTIONS(2476), + [anon_sym_operator] = ACTIONS(2476), + [anon_sym_try] = ACTIONS(2476), + [anon_sym_delete] = ACTIONS(2476), + [anon_sym_throw] = ACTIONS(2476), + [anon_sym_namespace] = ACTIONS(2476), + [anon_sym_using] = ACTIONS(2476), + [anon_sym_static_assert] = ACTIONS(2476), + [anon_sym_concept] = ACTIONS(2476), + [anon_sym_co_return] = ACTIONS(2476), + [anon_sym_co_yield] = ACTIONS(2476), + [anon_sym_co_await] = ACTIONS(2476), + [anon_sym_new] = ACTIONS(2476), + [anon_sym_requires] = ACTIONS(2476), + [sym_this] = ACTIONS(2476), + [sym_nullptr] = ACTIONS(2476), + [sym_raw_string_literal] = ACTIONS(2478), }, - [1054] = { - [sym_identifier] = ACTIONS(2583), - [aux_sym_preproc_include_token1] = ACTIONS(2583), - [aux_sym_preproc_def_token1] = ACTIONS(2583), - [aux_sym_preproc_if_token1] = ACTIONS(2583), - [aux_sym_preproc_if_token2] = ACTIONS(2583), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2583), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2583), - [sym_preproc_directive] = ACTIONS(2583), - [anon_sym_LPAREN2] = ACTIONS(2585), - [anon_sym_BANG] = ACTIONS(2585), - [anon_sym_TILDE] = ACTIONS(2585), - [anon_sym_DASH] = ACTIONS(2583), - [anon_sym_PLUS] = ACTIONS(2583), - [anon_sym_STAR] = ACTIONS(2585), - [anon_sym_AMP_AMP] = ACTIONS(2585), - [anon_sym_AMP] = ACTIONS(2583), - [anon_sym_SEMI] = ACTIONS(2585), - [anon_sym_typedef] = ACTIONS(2583), - [anon_sym_extern] = ACTIONS(2583), - [anon_sym___attribute__] = ACTIONS(2583), - [anon_sym_COLON_COLON] = ACTIONS(2585), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2585), - [anon_sym___declspec] = ACTIONS(2583), - [anon_sym___based] = ACTIONS(2583), - [anon_sym___cdecl] = ACTIONS(2583), - [anon_sym___clrcall] = ACTIONS(2583), - [anon_sym___stdcall] = ACTIONS(2583), - [anon_sym___fastcall] = ACTIONS(2583), - [anon_sym___thiscall] = ACTIONS(2583), - [anon_sym___vectorcall] = ACTIONS(2583), - [anon_sym_LBRACE] = ACTIONS(2585), - [anon_sym_LBRACK] = ACTIONS(2583), - [anon_sym_static] = ACTIONS(2583), - [anon_sym_register] = ACTIONS(2583), - [anon_sym_inline] = ACTIONS(2583), - [anon_sym_thread_local] = ACTIONS(2583), - [anon_sym_const] = ACTIONS(2583), - [anon_sym_volatile] = ACTIONS(2583), - [anon_sym_restrict] = ACTIONS(2583), - [anon_sym__Atomic] = ACTIONS(2583), - [anon_sym_mutable] = ACTIONS(2583), - [anon_sym_constexpr] = ACTIONS(2583), - [anon_sym_constinit] = ACTIONS(2583), - [anon_sym_consteval] = ACTIONS(2583), - [anon_sym_signed] = ACTIONS(2583), - [anon_sym_unsigned] = ACTIONS(2583), - [anon_sym_long] = ACTIONS(2583), - [anon_sym_short] = ACTIONS(2583), - [sym_primitive_type] = ACTIONS(2583), - [anon_sym_enum] = ACTIONS(2583), - [anon_sym_class] = ACTIONS(2583), - [anon_sym_struct] = ACTIONS(2583), - [anon_sym_union] = ACTIONS(2583), - [anon_sym_if] = ACTIONS(2583), - [anon_sym_switch] = ACTIONS(2583), - [anon_sym_case] = ACTIONS(2583), - [anon_sym_default] = ACTIONS(2583), - [anon_sym_while] = ACTIONS(2583), - [anon_sym_do] = ACTIONS(2583), - [anon_sym_for] = ACTIONS(2583), - [anon_sym_return] = ACTIONS(2583), - [anon_sym_break] = ACTIONS(2583), - [anon_sym_continue] = ACTIONS(2583), - [anon_sym_goto] = ACTIONS(2583), - [anon_sym_DASH_DASH] = ACTIONS(2585), - [anon_sym_PLUS_PLUS] = ACTIONS(2585), - [anon_sym_sizeof] = ACTIONS(2583), - [sym_number_literal] = ACTIONS(2585), - [anon_sym_L_SQUOTE] = ACTIONS(2585), - [anon_sym_u_SQUOTE] = ACTIONS(2585), - [anon_sym_U_SQUOTE] = ACTIONS(2585), - [anon_sym_u8_SQUOTE] = ACTIONS(2585), - [anon_sym_SQUOTE] = ACTIONS(2585), - [anon_sym_L_DQUOTE] = ACTIONS(2585), - [anon_sym_u_DQUOTE] = ACTIONS(2585), - [anon_sym_U_DQUOTE] = ACTIONS(2585), - [anon_sym_u8_DQUOTE] = ACTIONS(2585), - [anon_sym_DQUOTE] = ACTIONS(2585), - [sym_true] = ACTIONS(2583), - [sym_false] = ACTIONS(2583), - [sym_null] = ACTIONS(2583), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2583), - [anon_sym_decltype] = ACTIONS(2583), - [anon_sym_virtual] = ACTIONS(2583), - [anon_sym_explicit] = ACTIONS(2583), - [anon_sym_typename] = ACTIONS(2583), - [anon_sym_template] = ACTIONS(2583), - [anon_sym_operator] = ACTIONS(2583), - [anon_sym_try] = ACTIONS(2583), - [anon_sym_delete] = ACTIONS(2583), - [anon_sym_throw] = ACTIONS(2583), - [anon_sym_namespace] = ACTIONS(2583), - [anon_sym_using] = ACTIONS(2583), - [anon_sym_static_assert] = ACTIONS(2583), - [anon_sym_concept] = ACTIONS(2583), - [anon_sym_co_return] = ACTIONS(2583), - [anon_sym_co_yield] = ACTIONS(2583), - [anon_sym_co_await] = ACTIONS(2583), - [anon_sym_new] = ACTIONS(2583), - [anon_sym_requires] = ACTIONS(2583), - [sym_this] = ACTIONS(2583), - [sym_nullptr] = ACTIONS(2583), - [sym_raw_string_literal] = ACTIONS(2585), + [653] = { + [sym_identifier] = ACTIONS(2529), + [aux_sym_preproc_include_token1] = ACTIONS(2529), + [aux_sym_preproc_def_token1] = ACTIONS(2529), + [aux_sym_preproc_if_token1] = ACTIONS(2529), + [aux_sym_preproc_if_token2] = ACTIONS(2529), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2529), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2529), + [sym_preproc_directive] = ACTIONS(2529), + [anon_sym_LPAREN2] = ACTIONS(2531), + [anon_sym_BANG] = ACTIONS(2531), + [anon_sym_TILDE] = ACTIONS(2531), + [anon_sym_DASH] = ACTIONS(2529), + [anon_sym_PLUS] = ACTIONS(2529), + [anon_sym_STAR] = ACTIONS(2531), + [anon_sym_AMP_AMP] = ACTIONS(2531), + [anon_sym_AMP] = ACTIONS(2529), + [anon_sym_SEMI] = ACTIONS(2531), + [anon_sym_typedef] = ACTIONS(2529), + [anon_sym_extern] = ACTIONS(2529), + [anon_sym___attribute__] = ACTIONS(2529), + [anon_sym_COLON_COLON] = ACTIONS(2531), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2531), + [anon_sym___declspec] = ACTIONS(2529), + [anon_sym___based] = ACTIONS(2529), + [anon_sym___cdecl] = ACTIONS(2529), + [anon_sym___clrcall] = ACTIONS(2529), + [anon_sym___stdcall] = ACTIONS(2529), + [anon_sym___fastcall] = ACTIONS(2529), + [anon_sym___thiscall] = ACTIONS(2529), + [anon_sym___vectorcall] = ACTIONS(2529), + [anon_sym_LBRACE] = ACTIONS(2531), + [anon_sym_LBRACK] = ACTIONS(2529), + [anon_sym_static] = ACTIONS(2529), + [anon_sym_register] = ACTIONS(2529), + [anon_sym_inline] = ACTIONS(2529), + [anon_sym_thread_local] = ACTIONS(2529), + [anon_sym_const] = ACTIONS(2529), + [anon_sym_volatile] = ACTIONS(2529), + [anon_sym_restrict] = ACTIONS(2529), + [anon_sym__Atomic] = ACTIONS(2529), + [anon_sym_mutable] = ACTIONS(2529), + [anon_sym_constexpr] = ACTIONS(2529), + [anon_sym_constinit] = ACTIONS(2529), + [anon_sym_consteval] = ACTIONS(2529), + [anon_sym_signed] = ACTIONS(2529), + [anon_sym_unsigned] = ACTIONS(2529), + [anon_sym_long] = ACTIONS(2529), + [anon_sym_short] = ACTIONS(2529), + [sym_primitive_type] = ACTIONS(2529), + [anon_sym_enum] = ACTIONS(2529), + [anon_sym_class] = ACTIONS(2529), + [anon_sym_struct] = ACTIONS(2529), + [anon_sym_union] = ACTIONS(2529), + [anon_sym_if] = ACTIONS(2529), + [anon_sym_else] = ACTIONS(2529), + [anon_sym_switch] = ACTIONS(2529), + [anon_sym_case] = ACTIONS(2529), + [anon_sym_default] = ACTIONS(2529), + [anon_sym_while] = ACTIONS(2529), + [anon_sym_do] = ACTIONS(2529), + [anon_sym_for] = ACTIONS(2529), + [anon_sym_return] = ACTIONS(2529), + [anon_sym_break] = ACTIONS(2529), + [anon_sym_continue] = ACTIONS(2529), + [anon_sym_goto] = ACTIONS(2529), + [anon_sym_not] = ACTIONS(2529), + [anon_sym_compl] = ACTIONS(2529), + [anon_sym_DASH_DASH] = ACTIONS(2531), + [anon_sym_PLUS_PLUS] = ACTIONS(2531), + [anon_sym_sizeof] = ACTIONS(2529), + [sym_number_literal] = ACTIONS(2531), + [anon_sym_L_SQUOTE] = ACTIONS(2531), + [anon_sym_u_SQUOTE] = ACTIONS(2531), + [anon_sym_U_SQUOTE] = ACTIONS(2531), + [anon_sym_u8_SQUOTE] = ACTIONS(2531), + [anon_sym_SQUOTE] = ACTIONS(2531), + [anon_sym_L_DQUOTE] = ACTIONS(2531), + [anon_sym_u_DQUOTE] = ACTIONS(2531), + [anon_sym_U_DQUOTE] = ACTIONS(2531), + [anon_sym_u8_DQUOTE] = ACTIONS(2531), + [anon_sym_DQUOTE] = ACTIONS(2531), + [sym_true] = ACTIONS(2529), + [sym_false] = ACTIONS(2529), + [sym_null] = ACTIONS(2529), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2529), + [anon_sym_decltype] = ACTIONS(2529), + [anon_sym_virtual] = ACTIONS(2529), + [anon_sym_explicit] = ACTIONS(2529), + [anon_sym_typename] = ACTIONS(2529), + [anon_sym_template] = ACTIONS(2529), + [anon_sym_operator] = ACTIONS(2529), + [anon_sym_try] = ACTIONS(2529), + [anon_sym_delete] = ACTIONS(2529), + [anon_sym_throw] = ACTIONS(2529), + [anon_sym_namespace] = ACTIONS(2529), + [anon_sym_using] = ACTIONS(2529), + [anon_sym_static_assert] = ACTIONS(2529), + [anon_sym_concept] = ACTIONS(2529), + [anon_sym_co_return] = ACTIONS(2529), + [anon_sym_co_yield] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2529), + [anon_sym_new] = ACTIONS(2529), + [anon_sym_requires] = ACTIONS(2529), + [sym_this] = ACTIONS(2529), + [sym_nullptr] = ACTIONS(2529), + [sym_raw_string_literal] = ACTIONS(2531), }, - [1055] = { - [sym_function_definition] = STATE(1048), - [sym_declaration] = STATE(1048), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(3967), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(2900), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym_ms_call_modifier] = STATE(1829), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4689), - [sym_array_declarator] = STATE(4825), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(2975), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym__empty_declaration] = STATE(1048), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1782), - [sym_dependent_type] = STATE(3139), - [sym_template_declaration] = STATE(1048), - [sym_operator_cast] = STATE(5178), - [sym__constructor_specifiers] = STATE(1782), - [sym_operator_cast_definition] = STATE(1048), - [sym_operator_cast_declaration] = STATE(1048), - [sym_constructor_or_destructor_definition] = STATE(1048), - [sym_constructor_or_destructor_declaration] = STATE(1048), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(2976), - [sym_template_function] = STATE(4825), - [sym_alias_declaration] = STATE(1048), - [sym_concept_definition] = STATE(1048), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4520), - [sym_qualified_identifier] = STATE(4825), - [sym_qualified_type_identifier] = STATE(3198), - [sym_qualified_operator_cast_identifier] = STATE(5178), - [sym_operator_name] = STATE(4825), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_operator_cast_definition_repeat1] = STATE(1782), - [sym_identifier] = ACTIONS(2805), - [anon_sym_LPAREN2] = ACTIONS(1515), - [anon_sym_TILDE] = ACTIONS(1517), - [anon_sym_STAR] = ACTIONS(1519), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1521), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2807), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1389), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACK] = ACTIONS(1527), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(2809), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), + [654] = { + [sym_identifier] = ACTIONS(2639), + [aux_sym_preproc_include_token1] = ACTIONS(2639), + [aux_sym_preproc_def_token1] = ACTIONS(2639), + [aux_sym_preproc_if_token1] = ACTIONS(2639), + [aux_sym_preproc_if_token2] = ACTIONS(2639), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2639), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2639), + [sym_preproc_directive] = ACTIONS(2639), + [anon_sym_LPAREN2] = ACTIONS(2641), + [anon_sym_BANG] = ACTIONS(2641), + [anon_sym_TILDE] = ACTIONS(2641), + [anon_sym_DASH] = ACTIONS(2639), + [anon_sym_PLUS] = ACTIONS(2639), + [anon_sym_STAR] = ACTIONS(2641), + [anon_sym_AMP_AMP] = ACTIONS(2641), + [anon_sym_AMP] = ACTIONS(2639), + [anon_sym_SEMI] = ACTIONS(2641), + [anon_sym_typedef] = ACTIONS(2639), + [anon_sym_extern] = ACTIONS(2639), + [anon_sym___attribute__] = ACTIONS(2639), + [anon_sym_COLON_COLON] = ACTIONS(2641), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2641), + [anon_sym___declspec] = ACTIONS(2639), + [anon_sym___based] = ACTIONS(2639), + [anon_sym___cdecl] = ACTIONS(2639), + [anon_sym___clrcall] = ACTIONS(2639), + [anon_sym___stdcall] = ACTIONS(2639), + [anon_sym___fastcall] = ACTIONS(2639), + [anon_sym___thiscall] = ACTIONS(2639), + [anon_sym___vectorcall] = ACTIONS(2639), + [anon_sym_LBRACE] = ACTIONS(2641), + [anon_sym_LBRACK] = ACTIONS(2639), + [anon_sym_static] = ACTIONS(2639), + [anon_sym_register] = ACTIONS(2639), + [anon_sym_inline] = ACTIONS(2639), + [anon_sym_thread_local] = ACTIONS(2639), + [anon_sym_const] = ACTIONS(2639), + [anon_sym_volatile] = ACTIONS(2639), + [anon_sym_restrict] = ACTIONS(2639), + [anon_sym__Atomic] = ACTIONS(2639), + [anon_sym_mutable] = ACTIONS(2639), + [anon_sym_constexpr] = ACTIONS(2639), + [anon_sym_constinit] = ACTIONS(2639), + [anon_sym_consteval] = ACTIONS(2639), + [anon_sym_signed] = ACTIONS(2639), + [anon_sym_unsigned] = ACTIONS(2639), + [anon_sym_long] = ACTIONS(2639), + [anon_sym_short] = ACTIONS(2639), + [sym_primitive_type] = ACTIONS(2639), + [anon_sym_enum] = ACTIONS(2639), + [anon_sym_class] = ACTIONS(2639), + [anon_sym_struct] = ACTIONS(2639), + [anon_sym_union] = ACTIONS(2639), + [anon_sym_if] = ACTIONS(2639), + [anon_sym_else] = ACTIONS(2639), + [anon_sym_switch] = ACTIONS(2639), + [anon_sym_case] = ACTIONS(2639), + [anon_sym_default] = ACTIONS(2639), + [anon_sym_while] = ACTIONS(2639), + [anon_sym_do] = ACTIONS(2639), + [anon_sym_for] = ACTIONS(2639), + [anon_sym_return] = ACTIONS(2639), + [anon_sym_break] = ACTIONS(2639), + [anon_sym_continue] = ACTIONS(2639), + [anon_sym_goto] = ACTIONS(2639), + [anon_sym_not] = ACTIONS(2639), + [anon_sym_compl] = ACTIONS(2639), + [anon_sym_DASH_DASH] = ACTIONS(2641), + [anon_sym_PLUS_PLUS] = ACTIONS(2641), + [anon_sym_sizeof] = ACTIONS(2639), + [sym_number_literal] = ACTIONS(2641), + [anon_sym_L_SQUOTE] = ACTIONS(2641), + [anon_sym_u_SQUOTE] = ACTIONS(2641), + [anon_sym_U_SQUOTE] = ACTIONS(2641), + [anon_sym_u8_SQUOTE] = ACTIONS(2641), + [anon_sym_SQUOTE] = ACTIONS(2641), + [anon_sym_L_DQUOTE] = ACTIONS(2641), + [anon_sym_u_DQUOTE] = ACTIONS(2641), + [anon_sym_U_DQUOTE] = ACTIONS(2641), + [anon_sym_u8_DQUOTE] = ACTIONS(2641), + [anon_sym_DQUOTE] = ACTIONS(2641), + [sym_true] = ACTIONS(2639), + [sym_false] = ACTIONS(2639), + [sym_null] = ACTIONS(2639), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(105), - [anon_sym_decltype] = ACTIONS(107), - [anon_sym_virtual] = ACTIONS(109), - [anon_sym_explicit] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(2823), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_using] = ACTIONS(2825), - [anon_sym_concept] = ACTIONS(207), + [sym_auto] = ACTIONS(2639), + [anon_sym_decltype] = ACTIONS(2639), + [anon_sym_virtual] = ACTIONS(2639), + [anon_sym_explicit] = ACTIONS(2639), + [anon_sym_typename] = ACTIONS(2639), + [anon_sym_template] = ACTIONS(2639), + [anon_sym_operator] = ACTIONS(2639), + [anon_sym_try] = ACTIONS(2639), + [anon_sym_delete] = ACTIONS(2639), + [anon_sym_throw] = ACTIONS(2639), + [anon_sym_namespace] = ACTIONS(2639), + [anon_sym_using] = ACTIONS(2639), + [anon_sym_static_assert] = ACTIONS(2639), + [anon_sym_concept] = ACTIONS(2639), + [anon_sym_co_return] = ACTIONS(2639), + [anon_sym_co_yield] = ACTIONS(2639), + [anon_sym_co_await] = ACTIONS(2639), + [anon_sym_new] = ACTIONS(2639), + [anon_sym_requires] = ACTIONS(2639), + [sym_this] = ACTIONS(2639), + [sym_nullptr] = ACTIONS(2639), + [sym_raw_string_literal] = ACTIONS(2641), }, - [1056] = { - [sym_function_definition] = STATE(1961), - [sym_declaration] = STATE(1961), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(3993), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(2900), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym_ms_call_modifier] = STATE(1875), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4683), - [sym_array_declarator] = STATE(4825), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(2970), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym__empty_declaration] = STATE(1961), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1764), - [sym_dependent_type] = STATE(3139), - [sym_template_declaration] = STATE(1961), - [sym_operator_cast] = STATE(5215), - [sym__constructor_specifiers] = STATE(1764), - [sym_operator_cast_definition] = STATE(1961), - [sym_operator_cast_declaration] = STATE(1961), - [sym_constructor_or_destructor_definition] = STATE(1961), - [sym_constructor_or_destructor_declaration] = STATE(1961), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(2976), - [sym_template_function] = STATE(4825), - [sym_alias_declaration] = STATE(1961), - [sym_concept_definition] = STATE(1961), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4520), - [sym_qualified_identifier] = STATE(4825), - [sym_qualified_type_identifier] = STATE(3198), - [sym_qualified_operator_cast_identifier] = STATE(5215), - [sym_operator_name] = STATE(4825), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_operator_cast_definition_repeat1] = STATE(1764), - [sym_identifier] = ACTIONS(2805), - [anon_sym_LPAREN2] = ACTIONS(1515), - [anon_sym_TILDE] = ACTIONS(1517), - [anon_sym_STAR] = ACTIONS(1519), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1521), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2807), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1389), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACK] = ACTIONS(1527), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(2809), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(105), - [anon_sym_decltype] = ACTIONS(107), - [anon_sym_virtual] = ACTIONS(109), - [anon_sym_explicit] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(1781), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_using] = ACTIONS(2827), - [anon_sym_concept] = ACTIONS(2829), + [655] = { + [sym_identifier] = ACTIONS(2533), + [aux_sym_preproc_include_token1] = ACTIONS(2533), + [aux_sym_preproc_def_token1] = ACTIONS(2533), + [aux_sym_preproc_if_token1] = ACTIONS(2533), + [aux_sym_preproc_if_token2] = ACTIONS(2533), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2533), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2533), + [sym_preproc_directive] = ACTIONS(2533), + [anon_sym_LPAREN2] = ACTIONS(2535), + [anon_sym_BANG] = ACTIONS(2535), + [anon_sym_TILDE] = ACTIONS(2535), + [anon_sym_DASH] = ACTIONS(2533), + [anon_sym_PLUS] = ACTIONS(2533), + [anon_sym_STAR] = ACTIONS(2535), + [anon_sym_AMP_AMP] = ACTIONS(2535), + [anon_sym_AMP] = ACTIONS(2533), + [anon_sym_SEMI] = ACTIONS(2535), + [anon_sym_typedef] = ACTIONS(2533), + [anon_sym_extern] = ACTIONS(2533), + [anon_sym___attribute__] = ACTIONS(2533), + [anon_sym_COLON_COLON] = ACTIONS(2535), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2535), + [anon_sym___declspec] = ACTIONS(2533), + [anon_sym___based] = ACTIONS(2533), + [anon_sym___cdecl] = ACTIONS(2533), + [anon_sym___clrcall] = ACTIONS(2533), + [anon_sym___stdcall] = ACTIONS(2533), + [anon_sym___fastcall] = ACTIONS(2533), + [anon_sym___thiscall] = ACTIONS(2533), + [anon_sym___vectorcall] = ACTIONS(2533), + [anon_sym_LBRACE] = ACTIONS(2535), + [anon_sym_LBRACK] = ACTIONS(2533), + [anon_sym_static] = ACTIONS(2533), + [anon_sym_register] = ACTIONS(2533), + [anon_sym_inline] = ACTIONS(2533), + [anon_sym_thread_local] = ACTIONS(2533), + [anon_sym_const] = ACTIONS(2533), + [anon_sym_volatile] = ACTIONS(2533), + [anon_sym_restrict] = ACTIONS(2533), + [anon_sym__Atomic] = ACTIONS(2533), + [anon_sym_mutable] = ACTIONS(2533), + [anon_sym_constexpr] = ACTIONS(2533), + [anon_sym_constinit] = ACTIONS(2533), + [anon_sym_consteval] = ACTIONS(2533), + [anon_sym_signed] = ACTIONS(2533), + [anon_sym_unsigned] = ACTIONS(2533), + [anon_sym_long] = ACTIONS(2533), + [anon_sym_short] = ACTIONS(2533), + [sym_primitive_type] = ACTIONS(2533), + [anon_sym_enum] = ACTIONS(2533), + [anon_sym_class] = ACTIONS(2533), + [anon_sym_struct] = ACTIONS(2533), + [anon_sym_union] = ACTIONS(2533), + [anon_sym_if] = ACTIONS(2533), + [anon_sym_else] = ACTIONS(2533), + [anon_sym_switch] = ACTIONS(2533), + [anon_sym_case] = ACTIONS(2533), + [anon_sym_default] = ACTIONS(2533), + [anon_sym_while] = ACTIONS(2533), + [anon_sym_do] = ACTIONS(2533), + [anon_sym_for] = ACTIONS(2533), + [anon_sym_return] = ACTIONS(2533), + [anon_sym_break] = ACTIONS(2533), + [anon_sym_continue] = ACTIONS(2533), + [anon_sym_goto] = ACTIONS(2533), + [anon_sym_not] = ACTIONS(2533), + [anon_sym_compl] = ACTIONS(2533), + [anon_sym_DASH_DASH] = ACTIONS(2535), + [anon_sym_PLUS_PLUS] = ACTIONS(2535), + [anon_sym_sizeof] = ACTIONS(2533), + [sym_number_literal] = ACTIONS(2535), + [anon_sym_L_SQUOTE] = ACTIONS(2535), + [anon_sym_u_SQUOTE] = ACTIONS(2535), + [anon_sym_U_SQUOTE] = ACTIONS(2535), + [anon_sym_u8_SQUOTE] = ACTIONS(2535), + [anon_sym_SQUOTE] = ACTIONS(2535), + [anon_sym_L_DQUOTE] = ACTIONS(2535), + [anon_sym_u_DQUOTE] = ACTIONS(2535), + [anon_sym_U_DQUOTE] = ACTIONS(2535), + [anon_sym_u8_DQUOTE] = ACTIONS(2535), + [anon_sym_DQUOTE] = ACTIONS(2535), + [sym_true] = ACTIONS(2533), + [sym_false] = ACTIONS(2533), + [sym_null] = ACTIONS(2533), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2533), + [anon_sym_decltype] = ACTIONS(2533), + [anon_sym_virtual] = ACTIONS(2533), + [anon_sym_explicit] = ACTIONS(2533), + [anon_sym_typename] = ACTIONS(2533), + [anon_sym_template] = ACTIONS(2533), + [anon_sym_operator] = ACTIONS(2533), + [anon_sym_try] = ACTIONS(2533), + [anon_sym_delete] = ACTIONS(2533), + [anon_sym_throw] = ACTIONS(2533), + [anon_sym_namespace] = ACTIONS(2533), + [anon_sym_using] = ACTIONS(2533), + [anon_sym_static_assert] = ACTIONS(2533), + [anon_sym_concept] = ACTIONS(2533), + [anon_sym_co_return] = ACTIONS(2533), + [anon_sym_co_yield] = ACTIONS(2533), + [anon_sym_co_await] = ACTIONS(2533), + [anon_sym_new] = ACTIONS(2533), + [anon_sym_requires] = ACTIONS(2533), + [sym_this] = ACTIONS(2533), + [sym_nullptr] = ACTIONS(2533), + [sym_raw_string_literal] = ACTIONS(2535), }, - [1057] = { - [sym_function_definition] = STATE(1923), - [sym_declaration] = STATE(1923), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(3973), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(2900), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym_ms_call_modifier] = STATE(1872), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4709), - [sym_array_declarator] = STATE(4825), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(2995), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym__empty_declaration] = STATE(1923), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1777), - [sym_dependent_type] = STATE(3139), - [sym_template_declaration] = STATE(1923), - [sym_operator_cast] = STATE(5177), - [sym__constructor_specifiers] = STATE(1777), - [sym_operator_cast_definition] = STATE(1923), - [sym_operator_cast_declaration] = STATE(1923), - [sym_constructor_or_destructor_definition] = STATE(1923), - [sym_constructor_or_destructor_declaration] = STATE(1923), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(2976), - [sym_template_function] = STATE(4825), - [sym_alias_declaration] = STATE(1923), - [sym_concept_definition] = STATE(1923), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4520), - [sym_qualified_identifier] = STATE(4825), - [sym_qualified_type_identifier] = STATE(3198), - [sym_qualified_operator_cast_identifier] = STATE(5177), - [sym_operator_name] = STATE(4825), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_operator_cast_definition_repeat1] = STATE(1777), - [sym_identifier] = ACTIONS(2805), - [anon_sym_LPAREN2] = ACTIONS(1515), - [anon_sym_TILDE] = ACTIONS(1517), - [anon_sym_STAR] = ACTIONS(1519), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1521), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2807), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1389), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACK] = ACTIONS(1527), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(2809), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(105), - [anon_sym_decltype] = ACTIONS(107), - [anon_sym_virtual] = ACTIONS(109), - [anon_sym_explicit] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(1707), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_using] = ACTIONS(2819), - [anon_sym_concept] = ACTIONS(2821), + [656] = { + [sym_identifier] = ACTIONS(2537), + [aux_sym_preproc_include_token1] = ACTIONS(2537), + [aux_sym_preproc_def_token1] = ACTIONS(2537), + [aux_sym_preproc_if_token1] = ACTIONS(2537), + [aux_sym_preproc_if_token2] = ACTIONS(2537), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2537), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2537), + [sym_preproc_directive] = ACTIONS(2537), + [anon_sym_LPAREN2] = ACTIONS(2539), + [anon_sym_BANG] = ACTIONS(2539), + [anon_sym_TILDE] = ACTIONS(2539), + [anon_sym_DASH] = ACTIONS(2537), + [anon_sym_PLUS] = ACTIONS(2537), + [anon_sym_STAR] = ACTIONS(2539), + [anon_sym_AMP_AMP] = ACTIONS(2539), + [anon_sym_AMP] = ACTIONS(2537), + [anon_sym_SEMI] = ACTIONS(2539), + [anon_sym_typedef] = ACTIONS(2537), + [anon_sym_extern] = ACTIONS(2537), + [anon_sym___attribute__] = ACTIONS(2537), + [anon_sym_COLON_COLON] = ACTIONS(2539), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2539), + [anon_sym___declspec] = ACTIONS(2537), + [anon_sym___based] = ACTIONS(2537), + [anon_sym___cdecl] = ACTIONS(2537), + [anon_sym___clrcall] = ACTIONS(2537), + [anon_sym___stdcall] = ACTIONS(2537), + [anon_sym___fastcall] = ACTIONS(2537), + [anon_sym___thiscall] = ACTIONS(2537), + [anon_sym___vectorcall] = ACTIONS(2537), + [anon_sym_LBRACE] = ACTIONS(2539), + [anon_sym_LBRACK] = ACTIONS(2537), + [anon_sym_static] = ACTIONS(2537), + [anon_sym_register] = ACTIONS(2537), + [anon_sym_inline] = ACTIONS(2537), + [anon_sym_thread_local] = ACTIONS(2537), + [anon_sym_const] = ACTIONS(2537), + [anon_sym_volatile] = ACTIONS(2537), + [anon_sym_restrict] = ACTIONS(2537), + [anon_sym__Atomic] = ACTIONS(2537), + [anon_sym_mutable] = ACTIONS(2537), + [anon_sym_constexpr] = ACTIONS(2537), + [anon_sym_constinit] = ACTIONS(2537), + [anon_sym_consteval] = ACTIONS(2537), + [anon_sym_signed] = ACTIONS(2537), + [anon_sym_unsigned] = ACTIONS(2537), + [anon_sym_long] = ACTIONS(2537), + [anon_sym_short] = ACTIONS(2537), + [sym_primitive_type] = ACTIONS(2537), + [anon_sym_enum] = ACTIONS(2537), + [anon_sym_class] = ACTIONS(2537), + [anon_sym_struct] = ACTIONS(2537), + [anon_sym_union] = ACTIONS(2537), + [anon_sym_if] = ACTIONS(2537), + [anon_sym_else] = ACTIONS(2537), + [anon_sym_switch] = ACTIONS(2537), + [anon_sym_case] = ACTIONS(2537), + [anon_sym_default] = ACTIONS(2537), + [anon_sym_while] = ACTIONS(2537), + [anon_sym_do] = ACTIONS(2537), + [anon_sym_for] = ACTIONS(2537), + [anon_sym_return] = ACTIONS(2537), + [anon_sym_break] = ACTIONS(2537), + [anon_sym_continue] = ACTIONS(2537), + [anon_sym_goto] = ACTIONS(2537), + [anon_sym_not] = ACTIONS(2537), + [anon_sym_compl] = ACTIONS(2537), + [anon_sym_DASH_DASH] = ACTIONS(2539), + [anon_sym_PLUS_PLUS] = ACTIONS(2539), + [anon_sym_sizeof] = ACTIONS(2537), + [sym_number_literal] = ACTIONS(2539), + [anon_sym_L_SQUOTE] = ACTIONS(2539), + [anon_sym_u_SQUOTE] = ACTIONS(2539), + [anon_sym_U_SQUOTE] = ACTIONS(2539), + [anon_sym_u8_SQUOTE] = ACTIONS(2539), + [anon_sym_SQUOTE] = ACTIONS(2539), + [anon_sym_L_DQUOTE] = ACTIONS(2539), + [anon_sym_u_DQUOTE] = ACTIONS(2539), + [anon_sym_U_DQUOTE] = ACTIONS(2539), + [anon_sym_u8_DQUOTE] = ACTIONS(2539), + [anon_sym_DQUOTE] = ACTIONS(2539), + [sym_true] = ACTIONS(2537), + [sym_false] = ACTIONS(2537), + [sym_null] = ACTIONS(2537), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2537), + [anon_sym_decltype] = ACTIONS(2537), + [anon_sym_virtual] = ACTIONS(2537), + [anon_sym_explicit] = ACTIONS(2537), + [anon_sym_typename] = ACTIONS(2537), + [anon_sym_template] = ACTIONS(2537), + [anon_sym_operator] = ACTIONS(2537), + [anon_sym_try] = ACTIONS(2537), + [anon_sym_delete] = ACTIONS(2537), + [anon_sym_throw] = ACTIONS(2537), + [anon_sym_namespace] = ACTIONS(2537), + [anon_sym_using] = ACTIONS(2537), + [anon_sym_static_assert] = ACTIONS(2537), + [anon_sym_concept] = ACTIONS(2537), + [anon_sym_co_return] = ACTIONS(2537), + [anon_sym_co_yield] = ACTIONS(2537), + [anon_sym_co_await] = ACTIONS(2537), + [anon_sym_new] = ACTIONS(2537), + [anon_sym_requires] = ACTIONS(2537), + [sym_this] = ACTIONS(2537), + [sym_nullptr] = ACTIONS(2537), + [sym_raw_string_literal] = ACTIONS(2539), }, - [1058] = { - [sym_function_definition] = STATE(527), - [sym_declaration] = STATE(527), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(3964), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(2900), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym_ms_call_modifier] = STATE(1828), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4684), - [sym_array_declarator] = STATE(4825), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(3090), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym__empty_declaration] = STATE(527), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1792), - [sym_dependent_type] = STATE(3139), - [sym_template_declaration] = STATE(527), - [sym_operator_cast] = STATE(5198), - [sym__constructor_specifiers] = STATE(1792), - [sym_operator_cast_definition] = STATE(527), - [sym_operator_cast_declaration] = STATE(527), - [sym_constructor_or_destructor_definition] = STATE(527), - [sym_constructor_or_destructor_declaration] = STATE(527), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(2976), - [sym_template_function] = STATE(4825), - [sym_alias_declaration] = STATE(527), - [sym_concept_definition] = STATE(527), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4520), - [sym_qualified_identifier] = STATE(4825), - [sym_qualified_type_identifier] = STATE(3198), - [sym_qualified_operator_cast_identifier] = STATE(5198), - [sym_operator_name] = STATE(4825), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_operator_cast_definition_repeat1] = STATE(1792), - [sym_identifier] = ACTIONS(2805), - [anon_sym_LPAREN2] = ACTIONS(1515), - [anon_sym_TILDE] = ACTIONS(1517), - [anon_sym_STAR] = ACTIONS(1519), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1521), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2807), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1389), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACK] = ACTIONS(1527), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(2809), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(105), - [anon_sym_decltype] = ACTIONS(107), - [anon_sym_virtual] = ACTIONS(109), - [anon_sym_explicit] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(2811), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_using] = ACTIONS(2813), - [anon_sym_concept] = ACTIONS(287), + [657] = { + [ts_builtin_sym_end] = ACTIONS(2577), + [sym_identifier] = ACTIONS(2575), + [aux_sym_preproc_include_token1] = ACTIONS(2575), + [aux_sym_preproc_def_token1] = ACTIONS(2575), + [aux_sym_preproc_if_token1] = ACTIONS(2575), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2575), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2575), + [sym_preproc_directive] = ACTIONS(2575), + [anon_sym_LPAREN2] = ACTIONS(2577), + [anon_sym_BANG] = ACTIONS(2577), + [anon_sym_TILDE] = ACTIONS(2577), + [anon_sym_DASH] = ACTIONS(2575), + [anon_sym_PLUS] = ACTIONS(2575), + [anon_sym_STAR] = ACTIONS(2577), + [anon_sym_AMP_AMP] = ACTIONS(2577), + [anon_sym_AMP] = ACTIONS(2575), + [anon_sym_SEMI] = ACTIONS(2577), + [anon_sym_typedef] = ACTIONS(2575), + [anon_sym_extern] = ACTIONS(2575), + [anon_sym___attribute__] = ACTIONS(2575), + [anon_sym_COLON_COLON] = ACTIONS(2577), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2577), + [anon_sym___declspec] = ACTIONS(2575), + [anon_sym___based] = ACTIONS(2575), + [anon_sym___cdecl] = ACTIONS(2575), + [anon_sym___clrcall] = ACTIONS(2575), + [anon_sym___stdcall] = ACTIONS(2575), + [anon_sym___fastcall] = ACTIONS(2575), + [anon_sym___thiscall] = ACTIONS(2575), + [anon_sym___vectorcall] = ACTIONS(2575), + [anon_sym_LBRACE] = ACTIONS(2577), + [anon_sym_LBRACK] = ACTIONS(2575), + [anon_sym_static] = ACTIONS(2575), + [anon_sym_register] = ACTIONS(2575), + [anon_sym_inline] = ACTIONS(2575), + [anon_sym_thread_local] = ACTIONS(2575), + [anon_sym_const] = ACTIONS(2575), + [anon_sym_volatile] = ACTIONS(2575), + [anon_sym_restrict] = ACTIONS(2575), + [anon_sym__Atomic] = ACTIONS(2575), + [anon_sym_mutable] = ACTIONS(2575), + [anon_sym_constexpr] = ACTIONS(2575), + [anon_sym_constinit] = ACTIONS(2575), + [anon_sym_consteval] = ACTIONS(2575), + [anon_sym_signed] = ACTIONS(2575), + [anon_sym_unsigned] = ACTIONS(2575), + [anon_sym_long] = ACTIONS(2575), + [anon_sym_short] = ACTIONS(2575), + [sym_primitive_type] = ACTIONS(2575), + [anon_sym_enum] = ACTIONS(2575), + [anon_sym_class] = ACTIONS(2575), + [anon_sym_struct] = ACTIONS(2575), + [anon_sym_union] = ACTIONS(2575), + [anon_sym_if] = ACTIONS(2575), + [anon_sym_else] = ACTIONS(2575), + [anon_sym_switch] = ACTIONS(2575), + [anon_sym_case] = ACTIONS(2575), + [anon_sym_default] = ACTIONS(2575), + [anon_sym_while] = ACTIONS(2575), + [anon_sym_do] = ACTIONS(2575), + [anon_sym_for] = ACTIONS(2575), + [anon_sym_return] = ACTIONS(2575), + [anon_sym_break] = ACTIONS(2575), + [anon_sym_continue] = ACTIONS(2575), + [anon_sym_goto] = ACTIONS(2575), + [anon_sym_not] = ACTIONS(2575), + [anon_sym_compl] = ACTIONS(2575), + [anon_sym_DASH_DASH] = ACTIONS(2577), + [anon_sym_PLUS_PLUS] = ACTIONS(2577), + [anon_sym_sizeof] = ACTIONS(2575), + [sym_number_literal] = ACTIONS(2577), + [anon_sym_L_SQUOTE] = ACTIONS(2577), + [anon_sym_u_SQUOTE] = ACTIONS(2577), + [anon_sym_U_SQUOTE] = ACTIONS(2577), + [anon_sym_u8_SQUOTE] = ACTIONS(2577), + [anon_sym_SQUOTE] = ACTIONS(2577), + [anon_sym_L_DQUOTE] = ACTIONS(2577), + [anon_sym_u_DQUOTE] = ACTIONS(2577), + [anon_sym_U_DQUOTE] = ACTIONS(2577), + [anon_sym_u8_DQUOTE] = ACTIONS(2577), + [anon_sym_DQUOTE] = ACTIONS(2577), + [sym_true] = ACTIONS(2575), + [sym_false] = ACTIONS(2575), + [sym_null] = ACTIONS(2575), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2575), + [anon_sym_decltype] = ACTIONS(2575), + [anon_sym_virtual] = ACTIONS(2575), + [anon_sym_explicit] = ACTIONS(2575), + [anon_sym_typename] = ACTIONS(2575), + [anon_sym_template] = ACTIONS(2575), + [anon_sym_operator] = ACTIONS(2575), + [anon_sym_try] = ACTIONS(2575), + [anon_sym_delete] = ACTIONS(2575), + [anon_sym_throw] = ACTIONS(2575), + [anon_sym_namespace] = ACTIONS(2575), + [anon_sym_using] = ACTIONS(2575), + [anon_sym_static_assert] = ACTIONS(2575), + [anon_sym_concept] = ACTIONS(2575), + [anon_sym_co_return] = ACTIONS(2575), + [anon_sym_co_yield] = ACTIONS(2575), + [anon_sym_co_await] = ACTIONS(2575), + [anon_sym_new] = ACTIONS(2575), + [anon_sym_requires] = ACTIONS(2575), + [sym_this] = ACTIONS(2575), + [sym_nullptr] = ACTIONS(2575), + [sym_raw_string_literal] = ACTIONS(2577), }, - [1059] = { - [sym_function_definition] = STATE(904), - [sym_declaration] = STATE(904), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(4003), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(2900), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym_ms_call_modifier] = STATE(1797), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4694), - [sym_array_declarator] = STATE(4825), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(3085), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym__empty_declaration] = STATE(904), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1780), - [sym_dependent_type] = STATE(3139), - [sym_template_declaration] = STATE(904), - [sym_operator_cast] = STATE(5184), - [sym__constructor_specifiers] = STATE(1780), - [sym_operator_cast_definition] = STATE(904), - [sym_operator_cast_declaration] = STATE(904), - [sym_constructor_or_destructor_definition] = STATE(904), - [sym_constructor_or_destructor_declaration] = STATE(904), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(2976), - [sym_template_function] = STATE(4825), - [sym_alias_declaration] = STATE(904), - [sym_concept_definition] = STATE(904), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4520), - [sym_qualified_identifier] = STATE(4825), - [sym_qualified_type_identifier] = STATE(3198), - [sym_qualified_operator_cast_identifier] = STATE(5184), - [sym_operator_name] = STATE(4825), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_operator_cast_definition_repeat1] = STATE(1780), - [sym_identifier] = ACTIONS(2805), - [anon_sym_LPAREN2] = ACTIONS(1515), - [anon_sym_TILDE] = ACTIONS(1517), - [anon_sym_STAR] = ACTIONS(1519), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1521), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2807), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1389), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACK] = ACTIONS(1527), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(2809), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), + [658] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token2] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(105), - [anon_sym_decltype] = ACTIONS(107), - [anon_sym_virtual] = ACTIONS(109), - [anon_sym_explicit] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(2887), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_using] = ACTIONS(2889), - [anon_sym_concept] = ACTIONS(131), - }, - [1060] = { - [sym_ms_based_modifier] = STATE(6716), - [sym_ms_unaligned_ptr_modifier] = STATE(4135), - [sym_ms_pointer_modifier] = STATE(2438), - [sym__declarator] = STATE(5044), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4825), - [sym_array_declarator] = STATE(4825), - [sym_type_qualifier] = STATE(3255), - [sym__expression] = STATE(2558), - [sym_conditional_expression] = STATE(2541), - [sym_assignment_expression] = STATE(2541), - [sym_pointer_expression] = STATE(2531), - [sym_unary_expression] = STATE(2541), - [sym_binary_expression] = STATE(2541), - [sym_update_expression] = STATE(2541), - [sym_cast_expression] = STATE(2541), - [sym_sizeof_expression] = STATE(2541), - [sym_subscript_expression] = STATE(2531), - [sym_call_expression] = STATE(2531), - [sym_field_expression] = STATE(2531), - [sym_compound_literal_expression] = STATE(2541), - [sym_parenthesized_expression] = STATE(2531), - [sym_char_literal] = STATE(2481), - [sym_concatenated_string] = STATE(2481), - [sym_string_literal] = STATE(2063), - [sym__class_name] = STATE(6239), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2814), - [sym_co_await_expression] = STATE(2541), - [sym_new_expression] = STATE(2541), - [sym_delete_expression] = STATE(2541), - [sym_requires_clause] = STATE(2541), - [sym_requires_expression] = STATE(2541), - [sym_lambda_expression] = STATE(2541), - [sym_lambda_capture_specifier] = STATE(4508), - [sym_fold_expression] = STATE(2541), - [sym_parameter_pack_expansion] = STATE(2541), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4651), - [sym_qualified_identifier] = STATE(2821), - [sym_qualified_type_identifier] = STATE(6239), - [sym_operator_name] = STATE(4825), - [sym_user_defined_literal] = STATE(2541), - [aux_sym_type_definition_repeat1] = STATE(3255), - [aux_sym_pointer_declarator_repeat1] = STATE(2438), - [sym_identifier] = ACTIONS(2911), - [anon_sym_LPAREN2] = ACTIONS(2913), - [anon_sym_BANG] = ACTIONS(2314), - [anon_sym_TILDE] = ACTIONS(2915), - [anon_sym_DASH] = ACTIONS(2312), - [anon_sym_PLUS] = ACTIONS(2312), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(2318), - [anon_sym___based] = ACTIONS(47), - [sym_ms_restrict_modifier] = ACTIONS(2917), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(2917), - [sym_ms_signed_ptr_modifier] = ACTIONS(2917), - [anon_sym__unaligned] = ACTIONS(2919), - [anon_sym___unaligned] = ACTIONS(2919), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_const] = ACTIONS(2921), - [anon_sym_volatile] = ACTIONS(2921), - [anon_sym_restrict] = ACTIONS(2921), - [anon_sym__Atomic] = ACTIONS(2921), - [anon_sym_mutable] = ACTIONS(2921), - [anon_sym_constexpr] = ACTIONS(2921), - [anon_sym_constinit] = ACTIONS(2921), - [anon_sym_consteval] = ACTIONS(2921), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(2322), - [anon_sym_PLUS_PLUS] = ACTIONS(2322), - [anon_sym_sizeof] = ACTIONS(2324), - [sym_number_literal] = ACTIONS(2326), - [anon_sym_L_SQUOTE] = ACTIONS(2328), - [anon_sym_u_SQUOTE] = ACTIONS(2328), - [anon_sym_U_SQUOTE] = ACTIONS(2328), - [anon_sym_u8_SQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2328), - [anon_sym_L_DQUOTE] = ACTIONS(2330), - [anon_sym_u_DQUOTE] = ACTIONS(2330), - [anon_sym_U_DQUOTE] = ACTIONS(2330), - [anon_sym_u8_DQUOTE] = ACTIONS(2330), - [anon_sym_DQUOTE] = ACTIONS(2330), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_operator] = ACTIONS(1497), - [anon_sym_delete] = ACTIONS(2334), - [anon_sym_co_await] = ACTIONS(2336), - [anon_sym_new] = ACTIONS(2338), - [anon_sym_requires] = ACTIONS(2340), - [sym_this] = ACTIONS(2332), - [sym_nullptr] = ACTIONS(2332), - [sym_raw_string_literal] = ACTIONS(2342), - }, - [1061] = { - [sym_ms_based_modifier] = STATE(6716), - [sym_ms_unaligned_ptr_modifier] = STATE(4135), - [sym_ms_pointer_modifier] = STATE(2438), - [sym__declarator] = STATE(5044), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4825), - [sym_array_declarator] = STATE(4825), - [sym_type_qualifier] = STATE(3255), - [sym__expression] = STATE(2738), - [sym_conditional_expression] = STATE(2765), - [sym_assignment_expression] = STATE(2765), - [sym_pointer_expression] = STATE(2827), - [sym_unary_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_update_expression] = STATE(2765), - [sym_cast_expression] = STATE(2765), - [sym_sizeof_expression] = STATE(2765), - [sym_subscript_expression] = STATE(2827), - [sym_call_expression] = STATE(2827), - [sym_field_expression] = STATE(2827), - [sym_compound_literal_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2827), - [sym_char_literal] = STATE(2674), - [sym_concatenated_string] = STATE(2674), - [sym_string_literal] = STATE(2093), - [sym__class_name] = STATE(6297), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2693), - [sym_co_await_expression] = STATE(2765), - [sym_new_expression] = STATE(2765), - [sym_delete_expression] = STATE(2765), - [sym_requires_clause] = STATE(2765), - [sym_requires_expression] = STATE(2765), - [sym_lambda_expression] = STATE(2765), - [sym_lambda_capture_specifier] = STATE(4512), - [sym_fold_expression] = STATE(2765), - [sym_parameter_pack_expansion] = STATE(2765), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4644), - [sym_qualified_identifier] = STATE(2698), - [sym_qualified_type_identifier] = STATE(6297), - [sym_operator_name] = STATE(4825), - [sym_user_defined_literal] = STATE(2765), - [aux_sym_type_definition_repeat1] = STATE(3255), - [aux_sym_pointer_declarator_repeat1] = STATE(2438), - [sym_identifier] = ACTIONS(2923), - [anon_sym_LPAREN2] = ACTIONS(1469), - [anon_sym_BANG] = ACTIONS(1417), - [anon_sym_TILDE] = ACTIONS(1471), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1473), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1475), - [anon_sym_COLON_COLON] = ACTIONS(1423), - [anon_sym___based] = ACTIONS(47), - [sym_ms_restrict_modifier] = ACTIONS(2917), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(2917), - [sym_ms_signed_ptr_modifier] = ACTIONS(2917), - [anon_sym__unaligned] = ACTIONS(2919), - [anon_sym___unaligned] = ACTIONS(2919), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_const] = ACTIONS(2921), - [anon_sym_volatile] = ACTIONS(2921), - [anon_sym_restrict] = ACTIONS(2921), - [anon_sym__Atomic] = ACTIONS(2921), - [anon_sym_mutable] = ACTIONS(2921), - [anon_sym_constexpr] = ACTIONS(2921), - [anon_sym_constinit] = ACTIONS(2921), - [anon_sym_consteval] = ACTIONS(2921), - [sym_primitive_type] = ACTIONS(2369), - [anon_sym_DASH_DASH] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [anon_sym_sizeof] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(1439), - [anon_sym_L_SQUOTE] = ACTIONS(1441), - [anon_sym_u_SQUOTE] = ACTIONS(1441), - [anon_sym_U_SQUOTE] = ACTIONS(1441), - [anon_sym_u8_SQUOTE] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1441), - [anon_sym_L_DQUOTE] = ACTIONS(1443), - [anon_sym_u_DQUOTE] = ACTIONS(1443), - [anon_sym_U_DQUOTE] = ACTIONS(1443), - [anon_sym_u8_DQUOTE] = ACTIONS(1443), - [anon_sym_DQUOTE] = ACTIONS(1443), - [sym_true] = ACTIONS(1445), - [sym_false] = ACTIONS(1445), - [sym_null] = ACTIONS(1445), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_operator] = ACTIONS(1497), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_co_await] = ACTIONS(1451), - [anon_sym_new] = ACTIONS(1453), - [anon_sym_requires] = ACTIONS(1455), - [sym_this] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(1445), - [sym_raw_string_literal] = ACTIONS(1457), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1062] = { - [sym_function_definition] = STATE(1796), - [sym_declaration] = STATE(1796), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(3965), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(2900), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym_ms_call_modifier] = STATE(1874), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4703), - [sym_array_declarator] = STATE(4825), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(2969), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym__empty_declaration] = STATE(1796), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1767), - [sym_dependent_type] = STATE(3139), - [sym_template_declaration] = STATE(1796), - [sym_operator_cast] = STATE(5199), - [sym__constructor_specifiers] = STATE(1767), - [sym_operator_cast_definition] = STATE(1796), - [sym_operator_cast_declaration] = STATE(1796), - [sym_constructor_or_destructor_definition] = STATE(1796), - [sym_constructor_or_destructor_declaration] = STATE(1796), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(2976), - [sym_template_function] = STATE(4825), - [sym_alias_declaration] = STATE(1796), - [sym_concept_definition] = STATE(1796), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4520), - [sym_qualified_identifier] = STATE(4825), - [sym_qualified_type_identifier] = STATE(3198), - [sym_qualified_operator_cast_identifier] = STATE(5199), - [sym_operator_name] = STATE(4825), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_operator_cast_definition_repeat1] = STATE(1767), - [sym_identifier] = ACTIONS(2805), - [anon_sym_LPAREN2] = ACTIONS(1515), - [anon_sym_TILDE] = ACTIONS(1517), - [anon_sym_STAR] = ACTIONS(1519), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1521), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2807), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1389), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACK] = ACTIONS(1527), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(2809), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), + [659] = { + [sym_identifier] = ACTIONS(2591), + [aux_sym_preproc_include_token1] = ACTIONS(2591), + [aux_sym_preproc_def_token1] = ACTIONS(2591), + [aux_sym_preproc_if_token1] = ACTIONS(2591), + [aux_sym_preproc_if_token2] = ACTIONS(2591), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2591), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2591), + [sym_preproc_directive] = ACTIONS(2591), + [anon_sym_LPAREN2] = ACTIONS(2593), + [anon_sym_BANG] = ACTIONS(2593), + [anon_sym_TILDE] = ACTIONS(2593), + [anon_sym_DASH] = ACTIONS(2591), + [anon_sym_PLUS] = ACTIONS(2591), + [anon_sym_STAR] = ACTIONS(2593), + [anon_sym_AMP_AMP] = ACTIONS(2593), + [anon_sym_AMP] = ACTIONS(2591), + [anon_sym_SEMI] = ACTIONS(2593), + [anon_sym_typedef] = ACTIONS(2591), + [anon_sym_extern] = ACTIONS(2591), + [anon_sym___attribute__] = ACTIONS(2591), + [anon_sym_COLON_COLON] = ACTIONS(2593), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2593), + [anon_sym___declspec] = ACTIONS(2591), + [anon_sym___based] = ACTIONS(2591), + [anon_sym___cdecl] = ACTIONS(2591), + [anon_sym___clrcall] = ACTIONS(2591), + [anon_sym___stdcall] = ACTIONS(2591), + [anon_sym___fastcall] = ACTIONS(2591), + [anon_sym___thiscall] = ACTIONS(2591), + [anon_sym___vectorcall] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2593), + [anon_sym_LBRACK] = ACTIONS(2591), + [anon_sym_static] = ACTIONS(2591), + [anon_sym_register] = ACTIONS(2591), + [anon_sym_inline] = ACTIONS(2591), + [anon_sym_thread_local] = ACTIONS(2591), + [anon_sym_const] = ACTIONS(2591), + [anon_sym_volatile] = ACTIONS(2591), + [anon_sym_restrict] = ACTIONS(2591), + [anon_sym__Atomic] = ACTIONS(2591), + [anon_sym_mutable] = ACTIONS(2591), + [anon_sym_constexpr] = ACTIONS(2591), + [anon_sym_constinit] = ACTIONS(2591), + [anon_sym_consteval] = ACTIONS(2591), + [anon_sym_signed] = ACTIONS(2591), + [anon_sym_unsigned] = ACTIONS(2591), + [anon_sym_long] = ACTIONS(2591), + [anon_sym_short] = ACTIONS(2591), + [sym_primitive_type] = ACTIONS(2591), + [anon_sym_enum] = ACTIONS(2591), + [anon_sym_class] = ACTIONS(2591), + [anon_sym_struct] = ACTIONS(2591), + [anon_sym_union] = ACTIONS(2591), + [anon_sym_if] = ACTIONS(2591), + [anon_sym_else] = ACTIONS(2591), + [anon_sym_switch] = ACTIONS(2591), + [anon_sym_case] = ACTIONS(2591), + [anon_sym_default] = ACTIONS(2591), + [anon_sym_while] = ACTIONS(2591), + [anon_sym_do] = ACTIONS(2591), + [anon_sym_for] = ACTIONS(2591), + [anon_sym_return] = ACTIONS(2591), + [anon_sym_break] = ACTIONS(2591), + [anon_sym_continue] = ACTIONS(2591), + [anon_sym_goto] = ACTIONS(2591), + [anon_sym_not] = ACTIONS(2591), + [anon_sym_compl] = ACTIONS(2591), + [anon_sym_DASH_DASH] = ACTIONS(2593), + [anon_sym_PLUS_PLUS] = ACTIONS(2593), + [anon_sym_sizeof] = ACTIONS(2591), + [sym_number_literal] = ACTIONS(2593), + [anon_sym_L_SQUOTE] = ACTIONS(2593), + [anon_sym_u_SQUOTE] = ACTIONS(2593), + [anon_sym_U_SQUOTE] = ACTIONS(2593), + [anon_sym_u8_SQUOTE] = ACTIONS(2593), + [anon_sym_SQUOTE] = ACTIONS(2593), + [anon_sym_L_DQUOTE] = ACTIONS(2593), + [anon_sym_u_DQUOTE] = ACTIONS(2593), + [anon_sym_U_DQUOTE] = ACTIONS(2593), + [anon_sym_u8_DQUOTE] = ACTIONS(2593), + [anon_sym_DQUOTE] = ACTIONS(2593), + [sym_true] = ACTIONS(2591), + [sym_false] = ACTIONS(2591), + [sym_null] = ACTIONS(2591), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(105), - [anon_sym_decltype] = ACTIONS(107), - [anon_sym_virtual] = ACTIONS(109), - [anon_sym_explicit] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(1549), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_using] = ACTIONS(2881), - [anon_sym_concept] = ACTIONS(2883), + [sym_auto] = ACTIONS(2591), + [anon_sym_decltype] = ACTIONS(2591), + [anon_sym_virtual] = ACTIONS(2591), + [anon_sym_explicit] = ACTIONS(2591), + [anon_sym_typename] = ACTIONS(2591), + [anon_sym_template] = ACTIONS(2591), + [anon_sym_operator] = ACTIONS(2591), + [anon_sym_try] = ACTIONS(2591), + [anon_sym_delete] = ACTIONS(2591), + [anon_sym_throw] = ACTIONS(2591), + [anon_sym_namespace] = ACTIONS(2591), + [anon_sym_using] = ACTIONS(2591), + [anon_sym_static_assert] = ACTIONS(2591), + [anon_sym_concept] = ACTIONS(2591), + [anon_sym_co_return] = ACTIONS(2591), + [anon_sym_co_yield] = ACTIONS(2591), + [anon_sym_co_await] = ACTIONS(2591), + [anon_sym_new] = ACTIONS(2591), + [anon_sym_requires] = ACTIONS(2591), + [sym_this] = ACTIONS(2591), + [sym_nullptr] = ACTIONS(2591), + [sym_raw_string_literal] = ACTIONS(2593), }, - [1063] = { - [sym_function_definition] = STATE(956), - [sym_declaration] = STATE(956), - [sym__declaration_modifiers] = STATE(2900), - [sym__declaration_specifiers] = STATE(3994), - [sym_attribute_specifier] = STATE(2900), - [sym_attribute_declaration] = STATE(2900), - [sym_ms_declspec_modifier] = STATE(2900), - [sym_ms_based_modifier] = STATE(6716), - [sym_ms_call_modifier] = STATE(1868), - [sym__declarator] = STATE(5174), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4699), - [sym_array_declarator] = STATE(4825), - [sym_storage_class_specifier] = STATE(2900), - [sym_type_qualifier] = STATE(2900), - [sym__type_specifier] = STATE(3033), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym__empty_declaration] = STATE(956), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym_virtual_function_specifier] = STATE(2900), - [sym_explicit_function_specifier] = STATE(1770), - [sym_dependent_type] = STATE(3139), - [sym_template_declaration] = STATE(956), - [sym_operator_cast] = STATE(5212), - [sym__constructor_specifiers] = STATE(1770), - [sym_operator_cast_definition] = STATE(956), - [sym_operator_cast_declaration] = STATE(956), - [sym_constructor_or_destructor_definition] = STATE(956), - [sym_constructor_or_destructor_declaration] = STATE(956), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(2976), - [sym_template_function] = STATE(4825), - [sym_alias_declaration] = STATE(956), - [sym_concept_definition] = STATE(956), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4520), - [sym_qualified_identifier] = STATE(4825), - [sym_qualified_type_identifier] = STATE(3198), - [sym_qualified_operator_cast_identifier] = STATE(5212), - [sym_operator_name] = STATE(4825), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [aux_sym_operator_cast_definition_repeat1] = STATE(1770), - [sym_identifier] = ACTIONS(2805), - [anon_sym_LPAREN2] = ACTIONS(1515), - [anon_sym_TILDE] = ACTIONS(1517), - [anon_sym_STAR] = ACTIONS(1519), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1521), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(2807), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1389), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACK] = ACTIONS(1527), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(2809), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), + [660] = { + [sym_identifier] = ACTIONS(2587), + [aux_sym_preproc_include_token1] = ACTIONS(2587), + [aux_sym_preproc_def_token1] = ACTIONS(2587), + [aux_sym_preproc_if_token1] = ACTIONS(2587), + [aux_sym_preproc_if_token2] = ACTIONS(2587), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2587), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2587), + [sym_preproc_directive] = ACTIONS(2587), + [anon_sym_LPAREN2] = ACTIONS(2589), + [anon_sym_BANG] = ACTIONS(2589), + [anon_sym_TILDE] = ACTIONS(2589), + [anon_sym_DASH] = ACTIONS(2587), + [anon_sym_PLUS] = ACTIONS(2587), + [anon_sym_STAR] = ACTIONS(2589), + [anon_sym_AMP_AMP] = ACTIONS(2589), + [anon_sym_AMP] = ACTIONS(2587), + [anon_sym_SEMI] = ACTIONS(2589), + [anon_sym_typedef] = ACTIONS(2587), + [anon_sym_extern] = ACTIONS(2587), + [anon_sym___attribute__] = ACTIONS(2587), + [anon_sym_COLON_COLON] = ACTIONS(2589), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2589), + [anon_sym___declspec] = ACTIONS(2587), + [anon_sym___based] = ACTIONS(2587), + [anon_sym___cdecl] = ACTIONS(2587), + [anon_sym___clrcall] = ACTIONS(2587), + [anon_sym___stdcall] = ACTIONS(2587), + [anon_sym___fastcall] = ACTIONS(2587), + [anon_sym___thiscall] = ACTIONS(2587), + [anon_sym___vectorcall] = ACTIONS(2587), + [anon_sym_LBRACE] = ACTIONS(2589), + [anon_sym_LBRACK] = ACTIONS(2587), + [anon_sym_static] = ACTIONS(2587), + [anon_sym_register] = ACTIONS(2587), + [anon_sym_inline] = ACTIONS(2587), + [anon_sym_thread_local] = ACTIONS(2587), + [anon_sym_const] = ACTIONS(2587), + [anon_sym_volatile] = ACTIONS(2587), + [anon_sym_restrict] = ACTIONS(2587), + [anon_sym__Atomic] = ACTIONS(2587), + [anon_sym_mutable] = ACTIONS(2587), + [anon_sym_constexpr] = ACTIONS(2587), + [anon_sym_constinit] = ACTIONS(2587), + [anon_sym_consteval] = ACTIONS(2587), + [anon_sym_signed] = ACTIONS(2587), + [anon_sym_unsigned] = ACTIONS(2587), + [anon_sym_long] = ACTIONS(2587), + [anon_sym_short] = ACTIONS(2587), + [sym_primitive_type] = ACTIONS(2587), + [anon_sym_enum] = ACTIONS(2587), + [anon_sym_class] = ACTIONS(2587), + [anon_sym_struct] = ACTIONS(2587), + [anon_sym_union] = ACTIONS(2587), + [anon_sym_if] = ACTIONS(2587), + [anon_sym_else] = ACTIONS(2587), + [anon_sym_switch] = ACTIONS(2587), + [anon_sym_case] = ACTIONS(2587), + [anon_sym_default] = ACTIONS(2587), + [anon_sym_while] = ACTIONS(2587), + [anon_sym_do] = ACTIONS(2587), + [anon_sym_for] = ACTIONS(2587), + [anon_sym_return] = ACTIONS(2587), + [anon_sym_break] = ACTIONS(2587), + [anon_sym_continue] = ACTIONS(2587), + [anon_sym_goto] = ACTIONS(2587), + [anon_sym_not] = ACTIONS(2587), + [anon_sym_compl] = ACTIONS(2587), + [anon_sym_DASH_DASH] = ACTIONS(2589), + [anon_sym_PLUS_PLUS] = ACTIONS(2589), + [anon_sym_sizeof] = ACTIONS(2587), + [sym_number_literal] = ACTIONS(2589), + [anon_sym_L_SQUOTE] = ACTIONS(2589), + [anon_sym_u_SQUOTE] = ACTIONS(2589), + [anon_sym_U_SQUOTE] = ACTIONS(2589), + [anon_sym_u8_SQUOTE] = ACTIONS(2589), + [anon_sym_SQUOTE] = ACTIONS(2589), + [anon_sym_L_DQUOTE] = ACTIONS(2589), + [anon_sym_u_DQUOTE] = ACTIONS(2589), + [anon_sym_U_DQUOTE] = ACTIONS(2589), + [anon_sym_u8_DQUOTE] = ACTIONS(2589), + [anon_sym_DQUOTE] = ACTIONS(2589), + [sym_true] = ACTIONS(2587), + [sym_false] = ACTIONS(2587), + [sym_null] = ACTIONS(2587), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(105), - [anon_sym_decltype] = ACTIONS(107), - [anon_sym_virtual] = ACTIONS(109), - [anon_sym_explicit] = ACTIONS(111), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(2875), - [anon_sym_operator] = ACTIONS(117), - [anon_sym_using] = ACTIONS(2877), - [anon_sym_concept] = ACTIONS(636), + [sym_auto] = ACTIONS(2587), + [anon_sym_decltype] = ACTIONS(2587), + [anon_sym_virtual] = ACTIONS(2587), + [anon_sym_explicit] = ACTIONS(2587), + [anon_sym_typename] = ACTIONS(2587), + [anon_sym_template] = ACTIONS(2587), + [anon_sym_operator] = ACTIONS(2587), + [anon_sym_try] = ACTIONS(2587), + [anon_sym_delete] = ACTIONS(2587), + [anon_sym_throw] = ACTIONS(2587), + [anon_sym_namespace] = ACTIONS(2587), + [anon_sym_using] = ACTIONS(2587), + [anon_sym_static_assert] = ACTIONS(2587), + [anon_sym_concept] = ACTIONS(2587), + [anon_sym_co_return] = ACTIONS(2587), + [anon_sym_co_yield] = ACTIONS(2587), + [anon_sym_co_await] = ACTIONS(2587), + [anon_sym_new] = ACTIONS(2587), + [anon_sym_requires] = ACTIONS(2587), + [sym_this] = ACTIONS(2587), + [sym_nullptr] = ACTIONS(2587), + [sym_raw_string_literal] = ACTIONS(2589), }, - [1064] = { - [sym__expression] = STATE(3650), - [sym_comma_expression] = STATE(6496), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(2925), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(2928), - [anon_sym_extern] = ACTIONS(2930), - [anon_sym___attribute__] = ACTIONS(2930), - [anon_sym_COLON_COLON] = ACTIONS(2932), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2935), - [anon_sym___declspec] = ACTIONS(2930), - [anon_sym_LBRACK] = ACTIONS(970), - [anon_sym_static] = ACTIONS(2930), - [anon_sym_register] = ACTIONS(2930), - [anon_sym_inline] = ACTIONS(2930), - [anon_sym_thread_local] = ACTIONS(2930), - [anon_sym_const] = ACTIONS(2930), - [anon_sym_volatile] = ACTIONS(2930), - [anon_sym_restrict] = ACTIONS(2930), - [anon_sym__Atomic] = ACTIONS(2930), - [anon_sym_mutable] = ACTIONS(2930), - [anon_sym_constexpr] = ACTIONS(2930), - [anon_sym_constinit] = ACTIONS(2930), - [anon_sym_consteval] = ACTIONS(2930), - [anon_sym_signed] = ACTIONS(2930), - [anon_sym_unsigned] = ACTIONS(2930), - [anon_sym_long] = ACTIONS(2930), - [anon_sym_short] = ACTIONS(2930), - [sym_primitive_type] = ACTIONS(2937), - [anon_sym_enum] = ACTIONS(2930), - [anon_sym_class] = ACTIONS(2930), - [anon_sym_struct] = ACTIONS(2930), - [anon_sym_union] = ACTIONS(2930), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [661] = { + [ts_builtin_sym_end] = ACTIONS(2585), + [sym_identifier] = ACTIONS(2583), + [aux_sym_preproc_include_token1] = ACTIONS(2583), + [aux_sym_preproc_def_token1] = ACTIONS(2583), + [aux_sym_preproc_if_token1] = ACTIONS(2583), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2583), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2583), + [sym_preproc_directive] = ACTIONS(2583), + [anon_sym_LPAREN2] = ACTIONS(2585), + [anon_sym_BANG] = ACTIONS(2585), + [anon_sym_TILDE] = ACTIONS(2585), + [anon_sym_DASH] = ACTIONS(2583), + [anon_sym_PLUS] = ACTIONS(2583), + [anon_sym_STAR] = ACTIONS(2585), + [anon_sym_AMP_AMP] = ACTIONS(2585), + [anon_sym_AMP] = ACTIONS(2583), + [anon_sym_SEMI] = ACTIONS(2585), + [anon_sym_typedef] = ACTIONS(2583), + [anon_sym_extern] = ACTIONS(2583), + [anon_sym___attribute__] = ACTIONS(2583), + [anon_sym_COLON_COLON] = ACTIONS(2585), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2585), + [anon_sym___declspec] = ACTIONS(2583), + [anon_sym___based] = ACTIONS(2583), + [anon_sym___cdecl] = ACTIONS(2583), + [anon_sym___clrcall] = ACTIONS(2583), + [anon_sym___stdcall] = ACTIONS(2583), + [anon_sym___fastcall] = ACTIONS(2583), + [anon_sym___thiscall] = ACTIONS(2583), + [anon_sym___vectorcall] = ACTIONS(2583), + [anon_sym_LBRACE] = ACTIONS(2585), + [anon_sym_LBRACK] = ACTIONS(2583), + [anon_sym_static] = ACTIONS(2583), + [anon_sym_register] = ACTIONS(2583), + [anon_sym_inline] = ACTIONS(2583), + [anon_sym_thread_local] = ACTIONS(2583), + [anon_sym_const] = ACTIONS(2583), + [anon_sym_volatile] = ACTIONS(2583), + [anon_sym_restrict] = ACTIONS(2583), + [anon_sym__Atomic] = ACTIONS(2583), + [anon_sym_mutable] = ACTIONS(2583), + [anon_sym_constexpr] = ACTIONS(2583), + [anon_sym_constinit] = ACTIONS(2583), + [anon_sym_consteval] = ACTIONS(2583), + [anon_sym_signed] = ACTIONS(2583), + [anon_sym_unsigned] = ACTIONS(2583), + [anon_sym_long] = ACTIONS(2583), + [anon_sym_short] = ACTIONS(2583), + [sym_primitive_type] = ACTIONS(2583), + [anon_sym_enum] = ACTIONS(2583), + [anon_sym_class] = ACTIONS(2583), + [anon_sym_struct] = ACTIONS(2583), + [anon_sym_union] = ACTIONS(2583), + [anon_sym_if] = ACTIONS(2583), + [anon_sym_else] = ACTIONS(2583), + [anon_sym_switch] = ACTIONS(2583), + [anon_sym_case] = ACTIONS(2583), + [anon_sym_default] = ACTIONS(2583), + [anon_sym_while] = ACTIONS(2583), + [anon_sym_do] = ACTIONS(2583), + [anon_sym_for] = ACTIONS(2583), + [anon_sym_return] = ACTIONS(2583), + [anon_sym_break] = ACTIONS(2583), + [anon_sym_continue] = ACTIONS(2583), + [anon_sym_goto] = ACTIONS(2583), + [anon_sym_not] = ACTIONS(2583), + [anon_sym_compl] = ACTIONS(2583), + [anon_sym_DASH_DASH] = ACTIONS(2585), + [anon_sym_PLUS_PLUS] = ACTIONS(2585), + [anon_sym_sizeof] = ACTIONS(2583), + [sym_number_literal] = ACTIONS(2585), + [anon_sym_L_SQUOTE] = ACTIONS(2585), + [anon_sym_u_SQUOTE] = ACTIONS(2585), + [anon_sym_U_SQUOTE] = ACTIONS(2585), + [anon_sym_u8_SQUOTE] = ACTIONS(2585), + [anon_sym_SQUOTE] = ACTIONS(2585), + [anon_sym_L_DQUOTE] = ACTIONS(2585), + [anon_sym_u_DQUOTE] = ACTIONS(2585), + [anon_sym_U_DQUOTE] = ACTIONS(2585), + [anon_sym_u8_DQUOTE] = ACTIONS(2585), + [anon_sym_DQUOTE] = ACTIONS(2585), + [sym_true] = ACTIONS(2583), + [sym_false] = ACTIONS(2583), + [sym_null] = ACTIONS(2583), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2930), - [anon_sym_decltype] = ACTIONS(2930), - [anon_sym_virtual] = ACTIONS(2930), - [anon_sym_typename] = ACTIONS(2930), - [anon_sym_template] = ACTIONS(2940), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2583), + [anon_sym_decltype] = ACTIONS(2583), + [anon_sym_virtual] = ACTIONS(2583), + [anon_sym_explicit] = ACTIONS(2583), + [anon_sym_typename] = ACTIONS(2583), + [anon_sym_template] = ACTIONS(2583), + [anon_sym_operator] = ACTIONS(2583), + [anon_sym_try] = ACTIONS(2583), + [anon_sym_delete] = ACTIONS(2583), + [anon_sym_throw] = ACTIONS(2583), + [anon_sym_namespace] = ACTIONS(2583), + [anon_sym_using] = ACTIONS(2583), + [anon_sym_static_assert] = ACTIONS(2583), + [anon_sym_concept] = ACTIONS(2583), + [anon_sym_co_return] = ACTIONS(2583), + [anon_sym_co_yield] = ACTIONS(2583), + [anon_sym_co_await] = ACTIONS(2583), + [anon_sym_new] = ACTIONS(2583), + [anon_sym_requires] = ACTIONS(2583), + [sym_this] = ACTIONS(2583), + [sym_nullptr] = ACTIONS(2583), + [sym_raw_string_literal] = ACTIONS(2585), }, - [1065] = { - [sym__expression] = STATE(3704), - [sym_comma_expression] = STATE(6431), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(2943), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(2946), - [anon_sym_extern] = ACTIONS(2421), - [anon_sym___attribute__] = ACTIONS(2421), - [anon_sym_COLON_COLON] = ACTIONS(2948), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2423), - [anon_sym___declspec] = ACTIONS(2421), - [anon_sym_LBRACK] = ACTIONS(970), - [anon_sym_static] = ACTIONS(2421), - [anon_sym_register] = ACTIONS(2421), - [anon_sym_inline] = ACTIONS(2421), - [anon_sym_thread_local] = ACTIONS(2421), - [anon_sym_const] = ACTIONS(2421), - [anon_sym_volatile] = ACTIONS(2421), - [anon_sym_restrict] = ACTIONS(2421), - [anon_sym__Atomic] = ACTIONS(2421), - [anon_sym_mutable] = ACTIONS(2421), - [anon_sym_constexpr] = ACTIONS(2421), - [anon_sym_constinit] = ACTIONS(2421), - [anon_sym_consteval] = ACTIONS(2421), - [anon_sym_signed] = ACTIONS(2421), - [anon_sym_unsigned] = ACTIONS(2421), - [anon_sym_long] = ACTIONS(2421), - [anon_sym_short] = ACTIONS(2421), - [sym_primitive_type] = ACTIONS(2951), - [anon_sym_enum] = ACTIONS(2421), - [anon_sym_class] = ACTIONS(2421), - [anon_sym_struct] = ACTIONS(2421), - [anon_sym_union] = ACTIONS(2421), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2421), - [anon_sym_decltype] = ACTIONS(2421), - [anon_sym_virtual] = ACTIONS(2421), - [anon_sym_typename] = ACTIONS(2421), - [anon_sym_template] = ACTIONS(2954), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [662] = { + [sym_identifier] = ACTIONS(2579), + [aux_sym_preproc_include_token1] = ACTIONS(2579), + [aux_sym_preproc_def_token1] = ACTIONS(2579), + [aux_sym_preproc_if_token1] = ACTIONS(2579), + [aux_sym_preproc_if_token2] = ACTIONS(2579), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2579), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2579), + [sym_preproc_directive] = ACTIONS(2579), + [anon_sym_LPAREN2] = ACTIONS(2581), + [anon_sym_BANG] = ACTIONS(2581), + [anon_sym_TILDE] = ACTIONS(2581), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_STAR] = ACTIONS(2581), + [anon_sym_AMP_AMP] = ACTIONS(2581), + [anon_sym_AMP] = ACTIONS(2579), + [anon_sym_SEMI] = ACTIONS(2581), + [anon_sym_typedef] = ACTIONS(2579), + [anon_sym_extern] = ACTIONS(2579), + [anon_sym___attribute__] = ACTIONS(2579), + [anon_sym_COLON_COLON] = ACTIONS(2581), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2581), + [anon_sym___declspec] = ACTIONS(2579), + [anon_sym___based] = ACTIONS(2579), + [anon_sym___cdecl] = ACTIONS(2579), + [anon_sym___clrcall] = ACTIONS(2579), + [anon_sym___stdcall] = ACTIONS(2579), + [anon_sym___fastcall] = ACTIONS(2579), + [anon_sym___thiscall] = ACTIONS(2579), + [anon_sym___vectorcall] = ACTIONS(2579), + [anon_sym_LBRACE] = ACTIONS(2581), + [anon_sym_LBRACK] = ACTIONS(2579), + [anon_sym_static] = ACTIONS(2579), + [anon_sym_register] = ACTIONS(2579), + [anon_sym_inline] = ACTIONS(2579), + [anon_sym_thread_local] = ACTIONS(2579), + [anon_sym_const] = ACTIONS(2579), + [anon_sym_volatile] = ACTIONS(2579), + [anon_sym_restrict] = ACTIONS(2579), + [anon_sym__Atomic] = ACTIONS(2579), + [anon_sym_mutable] = ACTIONS(2579), + [anon_sym_constexpr] = ACTIONS(2579), + [anon_sym_constinit] = ACTIONS(2579), + [anon_sym_consteval] = ACTIONS(2579), + [anon_sym_signed] = ACTIONS(2579), + [anon_sym_unsigned] = ACTIONS(2579), + [anon_sym_long] = ACTIONS(2579), + [anon_sym_short] = ACTIONS(2579), + [sym_primitive_type] = ACTIONS(2579), + [anon_sym_enum] = ACTIONS(2579), + [anon_sym_class] = ACTIONS(2579), + [anon_sym_struct] = ACTIONS(2579), + [anon_sym_union] = ACTIONS(2579), + [anon_sym_if] = ACTIONS(2579), + [anon_sym_else] = ACTIONS(2579), + [anon_sym_switch] = ACTIONS(2579), + [anon_sym_case] = ACTIONS(2579), + [anon_sym_default] = ACTIONS(2579), + [anon_sym_while] = ACTIONS(2579), + [anon_sym_do] = ACTIONS(2579), + [anon_sym_for] = ACTIONS(2579), + [anon_sym_return] = ACTIONS(2579), + [anon_sym_break] = ACTIONS(2579), + [anon_sym_continue] = ACTIONS(2579), + [anon_sym_goto] = ACTIONS(2579), + [anon_sym_not] = ACTIONS(2579), + [anon_sym_compl] = ACTIONS(2579), + [anon_sym_DASH_DASH] = ACTIONS(2581), + [anon_sym_PLUS_PLUS] = ACTIONS(2581), + [anon_sym_sizeof] = ACTIONS(2579), + [sym_number_literal] = ACTIONS(2581), + [anon_sym_L_SQUOTE] = ACTIONS(2581), + [anon_sym_u_SQUOTE] = ACTIONS(2581), + [anon_sym_U_SQUOTE] = ACTIONS(2581), + [anon_sym_u8_SQUOTE] = ACTIONS(2581), + [anon_sym_SQUOTE] = ACTIONS(2581), + [anon_sym_L_DQUOTE] = ACTIONS(2581), + [anon_sym_u_DQUOTE] = ACTIONS(2581), + [anon_sym_U_DQUOTE] = ACTIONS(2581), + [anon_sym_u8_DQUOTE] = ACTIONS(2581), + [anon_sym_DQUOTE] = ACTIONS(2581), + [sym_true] = ACTIONS(2579), + [sym_false] = ACTIONS(2579), + [sym_null] = ACTIONS(2579), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2579), + [anon_sym_decltype] = ACTIONS(2579), + [anon_sym_virtual] = ACTIONS(2579), + [anon_sym_explicit] = ACTIONS(2579), + [anon_sym_typename] = ACTIONS(2579), + [anon_sym_template] = ACTIONS(2579), + [anon_sym_operator] = ACTIONS(2579), + [anon_sym_try] = ACTIONS(2579), + [anon_sym_delete] = ACTIONS(2579), + [anon_sym_throw] = ACTIONS(2579), + [anon_sym_namespace] = ACTIONS(2579), + [anon_sym_using] = ACTIONS(2579), + [anon_sym_static_assert] = ACTIONS(2579), + [anon_sym_concept] = ACTIONS(2579), + [anon_sym_co_return] = ACTIONS(2579), + [anon_sym_co_yield] = ACTIONS(2579), + [anon_sym_co_await] = ACTIONS(2579), + [anon_sym_new] = ACTIONS(2579), + [anon_sym_requires] = ACTIONS(2579), + [sym_this] = ACTIONS(2579), + [sym_nullptr] = ACTIONS(2579), + [sym_raw_string_literal] = ACTIONS(2581), }, - [1066] = { - [sym__expression] = STATE(3642), - [sym_comma_expression] = STATE(6501), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(2957), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(2960), - [anon_sym_extern] = ACTIONS(2495), - [anon_sym___attribute__] = ACTIONS(2495), - [anon_sym_COLON_COLON] = ACTIONS(2962), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2497), - [anon_sym___declspec] = ACTIONS(2495), - [anon_sym_LBRACK] = ACTIONS(970), - [anon_sym_static] = ACTIONS(2495), - [anon_sym_register] = ACTIONS(2495), - [anon_sym_inline] = ACTIONS(2495), - [anon_sym_thread_local] = ACTIONS(2495), - [anon_sym_const] = ACTIONS(2495), - [anon_sym_volatile] = ACTIONS(2495), - [anon_sym_restrict] = ACTIONS(2495), - [anon_sym__Atomic] = ACTIONS(2495), - [anon_sym_mutable] = ACTIONS(2495), - [anon_sym_constexpr] = ACTIONS(2495), - [anon_sym_constinit] = ACTIONS(2495), - [anon_sym_consteval] = ACTIONS(2495), - [anon_sym_signed] = ACTIONS(2495), - [anon_sym_unsigned] = ACTIONS(2495), - [anon_sym_long] = ACTIONS(2495), - [anon_sym_short] = ACTIONS(2495), - [sym_primitive_type] = ACTIONS(2965), - [anon_sym_enum] = ACTIONS(2495), - [anon_sym_class] = ACTIONS(2495), - [anon_sym_struct] = ACTIONS(2495), - [anon_sym_union] = ACTIONS(2495), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2495), - [anon_sym_decltype] = ACTIONS(2495), - [anon_sym_virtual] = ACTIONS(2495), - [anon_sym_typename] = ACTIONS(2495), - [anon_sym_template] = ACTIONS(2968), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [663] = { + [ts_builtin_sym_end] = ACTIONS(2561), + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1067] = { - [sym__expression] = STATE(3771), - [sym_comma_expression] = STATE(6384), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(2943), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym_extern] = ACTIONS(2421), - [anon_sym___attribute__] = ACTIONS(2421), - [anon_sym_COLON_COLON] = ACTIONS(2948), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2423), - [anon_sym___declspec] = ACTIONS(2421), - [anon_sym_LBRACK] = ACTIONS(970), - [anon_sym_static] = ACTIONS(2421), - [anon_sym_register] = ACTIONS(2421), - [anon_sym_inline] = ACTIONS(2421), - [anon_sym_thread_local] = ACTIONS(2421), - [anon_sym_const] = ACTIONS(2421), - [anon_sym_volatile] = ACTIONS(2421), - [anon_sym_restrict] = ACTIONS(2421), - [anon_sym__Atomic] = ACTIONS(2421), - [anon_sym_mutable] = ACTIONS(2421), - [anon_sym_constexpr] = ACTIONS(2421), - [anon_sym_constinit] = ACTIONS(2421), - [anon_sym_consteval] = ACTIONS(2421), - [anon_sym_signed] = ACTIONS(2421), - [anon_sym_unsigned] = ACTIONS(2421), - [anon_sym_long] = ACTIONS(2421), - [anon_sym_short] = ACTIONS(2421), - [sym_primitive_type] = ACTIONS(2951), - [anon_sym_enum] = ACTIONS(2421), - [anon_sym_class] = ACTIONS(2421), - [anon_sym_struct] = ACTIONS(2421), - [anon_sym_union] = ACTIONS(2421), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2421), - [anon_sym_decltype] = ACTIONS(2421), - [anon_sym_virtual] = ACTIONS(2421), - [anon_sym_typename] = ACTIONS(2421), - [anon_sym_template] = ACTIONS(2954), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [664] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token2] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1068] = { - [sym__expression] = STATE(3689), - [sym_comma_expression] = STATE(6675), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(2957), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(2973), - [anon_sym_extern] = ACTIONS(2495), - [anon_sym___attribute__] = ACTIONS(2495), - [anon_sym_COLON_COLON] = ACTIONS(2962), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2497), - [anon_sym___declspec] = ACTIONS(2495), - [anon_sym_LBRACK] = ACTIONS(970), - [anon_sym_static] = ACTIONS(2495), - [anon_sym_register] = ACTIONS(2495), - [anon_sym_inline] = ACTIONS(2495), - [anon_sym_thread_local] = ACTIONS(2495), - [anon_sym_const] = ACTIONS(2495), - [anon_sym_volatile] = ACTIONS(2495), - [anon_sym_restrict] = ACTIONS(2495), - [anon_sym__Atomic] = ACTIONS(2495), - [anon_sym_mutable] = ACTIONS(2495), - [anon_sym_constexpr] = ACTIONS(2495), - [anon_sym_constinit] = ACTIONS(2495), - [anon_sym_consteval] = ACTIONS(2495), - [anon_sym_signed] = ACTIONS(2495), - [anon_sym_unsigned] = ACTIONS(2495), - [anon_sym_long] = ACTIONS(2495), - [anon_sym_short] = ACTIONS(2495), - [sym_primitive_type] = ACTIONS(2965), - [anon_sym_enum] = ACTIONS(2495), - [anon_sym_class] = ACTIONS(2495), - [anon_sym_struct] = ACTIONS(2495), - [anon_sym_union] = ACTIONS(2495), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2495), - [anon_sym_decltype] = ACTIONS(2495), - [anon_sym_virtual] = ACTIONS(2495), - [anon_sym_typename] = ACTIONS(2495), - [anon_sym_template] = ACTIONS(2968), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [665] = { + [sym_identifier] = ACTIONS(2489), + [aux_sym_preproc_include_token1] = ACTIONS(2489), + [aux_sym_preproc_def_token1] = ACTIONS(2489), + [aux_sym_preproc_if_token1] = ACTIONS(2489), + [aux_sym_preproc_if_token2] = ACTIONS(2489), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2489), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2489), + [sym_preproc_directive] = ACTIONS(2489), + [anon_sym_LPAREN2] = ACTIONS(2491), + [anon_sym_BANG] = ACTIONS(2491), + [anon_sym_TILDE] = ACTIONS(2491), + [anon_sym_DASH] = ACTIONS(2489), + [anon_sym_PLUS] = ACTIONS(2489), + [anon_sym_STAR] = ACTIONS(2491), + [anon_sym_AMP_AMP] = ACTIONS(2491), + [anon_sym_AMP] = ACTIONS(2489), + [anon_sym_SEMI] = ACTIONS(2491), + [anon_sym_typedef] = ACTIONS(2489), + [anon_sym_extern] = ACTIONS(2489), + [anon_sym___attribute__] = ACTIONS(2489), + [anon_sym_COLON_COLON] = ACTIONS(2491), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2491), + [anon_sym___declspec] = ACTIONS(2489), + [anon_sym___based] = ACTIONS(2489), + [anon_sym___cdecl] = ACTIONS(2489), + [anon_sym___clrcall] = ACTIONS(2489), + [anon_sym___stdcall] = ACTIONS(2489), + [anon_sym___fastcall] = ACTIONS(2489), + [anon_sym___thiscall] = ACTIONS(2489), + [anon_sym___vectorcall] = ACTIONS(2489), + [anon_sym_LBRACE] = ACTIONS(2491), + [anon_sym_LBRACK] = ACTIONS(2489), + [anon_sym_static] = ACTIONS(2489), + [anon_sym_register] = ACTIONS(2489), + [anon_sym_inline] = ACTIONS(2489), + [anon_sym_thread_local] = ACTIONS(2489), + [anon_sym_const] = ACTIONS(2489), + [anon_sym_volatile] = ACTIONS(2489), + [anon_sym_restrict] = ACTIONS(2489), + [anon_sym__Atomic] = ACTIONS(2489), + [anon_sym_mutable] = ACTIONS(2489), + [anon_sym_constexpr] = ACTIONS(2489), + [anon_sym_constinit] = ACTIONS(2489), + [anon_sym_consteval] = ACTIONS(2489), + [anon_sym_signed] = ACTIONS(2489), + [anon_sym_unsigned] = ACTIONS(2489), + [anon_sym_long] = ACTIONS(2489), + [anon_sym_short] = ACTIONS(2489), + [sym_primitive_type] = ACTIONS(2489), + [anon_sym_enum] = ACTIONS(2489), + [anon_sym_class] = ACTIONS(2489), + [anon_sym_struct] = ACTIONS(2489), + [anon_sym_union] = ACTIONS(2489), + [anon_sym_if] = ACTIONS(2489), + [anon_sym_else] = ACTIONS(2489), + [anon_sym_switch] = ACTIONS(2489), + [anon_sym_case] = ACTIONS(2489), + [anon_sym_default] = ACTIONS(2489), + [anon_sym_while] = ACTIONS(2489), + [anon_sym_do] = ACTIONS(2489), + [anon_sym_for] = ACTIONS(2489), + [anon_sym_return] = ACTIONS(2489), + [anon_sym_break] = ACTIONS(2489), + [anon_sym_continue] = ACTIONS(2489), + [anon_sym_goto] = ACTIONS(2489), + [anon_sym_not] = ACTIONS(2489), + [anon_sym_compl] = ACTIONS(2489), + [anon_sym_DASH_DASH] = ACTIONS(2491), + [anon_sym_PLUS_PLUS] = ACTIONS(2491), + [anon_sym_sizeof] = ACTIONS(2489), + [sym_number_literal] = ACTIONS(2491), + [anon_sym_L_SQUOTE] = ACTIONS(2491), + [anon_sym_u_SQUOTE] = ACTIONS(2491), + [anon_sym_U_SQUOTE] = ACTIONS(2491), + [anon_sym_u8_SQUOTE] = ACTIONS(2491), + [anon_sym_SQUOTE] = ACTIONS(2491), + [anon_sym_L_DQUOTE] = ACTIONS(2491), + [anon_sym_u_DQUOTE] = ACTIONS(2491), + [anon_sym_U_DQUOTE] = ACTIONS(2491), + [anon_sym_u8_DQUOTE] = ACTIONS(2491), + [anon_sym_DQUOTE] = ACTIONS(2491), + [sym_true] = ACTIONS(2489), + [sym_false] = ACTIONS(2489), + [sym_null] = ACTIONS(2489), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2489), + [anon_sym_decltype] = ACTIONS(2489), + [anon_sym_virtual] = ACTIONS(2489), + [anon_sym_explicit] = ACTIONS(2489), + [anon_sym_typename] = ACTIONS(2489), + [anon_sym_template] = ACTIONS(2489), + [anon_sym_operator] = ACTIONS(2489), + [anon_sym_try] = ACTIONS(2489), + [anon_sym_delete] = ACTIONS(2489), + [anon_sym_throw] = ACTIONS(2489), + [anon_sym_namespace] = ACTIONS(2489), + [anon_sym_using] = ACTIONS(2489), + [anon_sym_static_assert] = ACTIONS(2489), + [anon_sym_concept] = ACTIONS(2489), + [anon_sym_co_return] = ACTIONS(2489), + [anon_sym_co_yield] = ACTIONS(2489), + [anon_sym_co_await] = ACTIONS(2489), + [anon_sym_new] = ACTIONS(2489), + [anon_sym_requires] = ACTIONS(2489), + [sym_this] = ACTIONS(2489), + [sym_nullptr] = ACTIONS(2489), + [sym_raw_string_literal] = ACTIONS(2491), }, - [1069] = { - [sym__expression] = STATE(3683), - [sym_comma_expression] = STATE(6683), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(2925), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(2975), - [anon_sym_extern] = ACTIONS(2930), - [anon_sym___attribute__] = ACTIONS(2930), - [anon_sym_COLON_COLON] = ACTIONS(2932), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2935), - [anon_sym___declspec] = ACTIONS(2930), - [anon_sym_LBRACK] = ACTIONS(970), - [anon_sym_static] = ACTIONS(2930), - [anon_sym_register] = ACTIONS(2930), - [anon_sym_inline] = ACTIONS(2930), - [anon_sym_thread_local] = ACTIONS(2930), - [anon_sym_const] = ACTIONS(2930), - [anon_sym_volatile] = ACTIONS(2930), - [anon_sym_restrict] = ACTIONS(2930), - [anon_sym__Atomic] = ACTIONS(2930), - [anon_sym_mutable] = ACTIONS(2930), - [anon_sym_constexpr] = ACTIONS(2930), - [anon_sym_constinit] = ACTIONS(2930), - [anon_sym_consteval] = ACTIONS(2930), - [anon_sym_signed] = ACTIONS(2930), - [anon_sym_unsigned] = ACTIONS(2930), - [anon_sym_long] = ACTIONS(2930), - [anon_sym_short] = ACTIONS(2930), - [sym_primitive_type] = ACTIONS(2937), - [anon_sym_enum] = ACTIONS(2930), - [anon_sym_class] = ACTIONS(2930), - [anon_sym_struct] = ACTIONS(2930), - [anon_sym_union] = ACTIONS(2930), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [666] = { + [ts_builtin_sym_end] = ACTIONS(2589), + [sym_identifier] = ACTIONS(2587), + [aux_sym_preproc_include_token1] = ACTIONS(2587), + [aux_sym_preproc_def_token1] = ACTIONS(2587), + [aux_sym_preproc_if_token1] = ACTIONS(2587), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2587), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2587), + [sym_preproc_directive] = ACTIONS(2587), + [anon_sym_LPAREN2] = ACTIONS(2589), + [anon_sym_BANG] = ACTIONS(2589), + [anon_sym_TILDE] = ACTIONS(2589), + [anon_sym_DASH] = ACTIONS(2587), + [anon_sym_PLUS] = ACTIONS(2587), + [anon_sym_STAR] = ACTIONS(2589), + [anon_sym_AMP_AMP] = ACTIONS(2589), + [anon_sym_AMP] = ACTIONS(2587), + [anon_sym_SEMI] = ACTIONS(2589), + [anon_sym_typedef] = ACTIONS(2587), + [anon_sym_extern] = ACTIONS(2587), + [anon_sym___attribute__] = ACTIONS(2587), + [anon_sym_COLON_COLON] = ACTIONS(2589), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2589), + [anon_sym___declspec] = ACTIONS(2587), + [anon_sym___based] = ACTIONS(2587), + [anon_sym___cdecl] = ACTIONS(2587), + [anon_sym___clrcall] = ACTIONS(2587), + [anon_sym___stdcall] = ACTIONS(2587), + [anon_sym___fastcall] = ACTIONS(2587), + [anon_sym___thiscall] = ACTIONS(2587), + [anon_sym___vectorcall] = ACTIONS(2587), + [anon_sym_LBRACE] = ACTIONS(2589), + [anon_sym_LBRACK] = ACTIONS(2587), + [anon_sym_static] = ACTIONS(2587), + [anon_sym_register] = ACTIONS(2587), + [anon_sym_inline] = ACTIONS(2587), + [anon_sym_thread_local] = ACTIONS(2587), + [anon_sym_const] = ACTIONS(2587), + [anon_sym_volatile] = ACTIONS(2587), + [anon_sym_restrict] = ACTIONS(2587), + [anon_sym__Atomic] = ACTIONS(2587), + [anon_sym_mutable] = ACTIONS(2587), + [anon_sym_constexpr] = ACTIONS(2587), + [anon_sym_constinit] = ACTIONS(2587), + [anon_sym_consteval] = ACTIONS(2587), + [anon_sym_signed] = ACTIONS(2587), + [anon_sym_unsigned] = ACTIONS(2587), + [anon_sym_long] = ACTIONS(2587), + [anon_sym_short] = ACTIONS(2587), + [sym_primitive_type] = ACTIONS(2587), + [anon_sym_enum] = ACTIONS(2587), + [anon_sym_class] = ACTIONS(2587), + [anon_sym_struct] = ACTIONS(2587), + [anon_sym_union] = ACTIONS(2587), + [anon_sym_if] = ACTIONS(2587), + [anon_sym_else] = ACTIONS(2587), + [anon_sym_switch] = ACTIONS(2587), + [anon_sym_case] = ACTIONS(2587), + [anon_sym_default] = ACTIONS(2587), + [anon_sym_while] = ACTIONS(2587), + [anon_sym_do] = ACTIONS(2587), + [anon_sym_for] = ACTIONS(2587), + [anon_sym_return] = ACTIONS(2587), + [anon_sym_break] = ACTIONS(2587), + [anon_sym_continue] = ACTIONS(2587), + [anon_sym_goto] = ACTIONS(2587), + [anon_sym_not] = ACTIONS(2587), + [anon_sym_compl] = ACTIONS(2587), + [anon_sym_DASH_DASH] = ACTIONS(2589), + [anon_sym_PLUS_PLUS] = ACTIONS(2589), + [anon_sym_sizeof] = ACTIONS(2587), + [sym_number_literal] = ACTIONS(2589), + [anon_sym_L_SQUOTE] = ACTIONS(2589), + [anon_sym_u_SQUOTE] = ACTIONS(2589), + [anon_sym_U_SQUOTE] = ACTIONS(2589), + [anon_sym_u8_SQUOTE] = ACTIONS(2589), + [anon_sym_SQUOTE] = ACTIONS(2589), + [anon_sym_L_DQUOTE] = ACTIONS(2589), + [anon_sym_u_DQUOTE] = ACTIONS(2589), + [anon_sym_U_DQUOTE] = ACTIONS(2589), + [anon_sym_u8_DQUOTE] = ACTIONS(2589), + [anon_sym_DQUOTE] = ACTIONS(2589), + [sym_true] = ACTIONS(2587), + [sym_false] = ACTIONS(2587), + [sym_null] = ACTIONS(2587), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2930), - [anon_sym_decltype] = ACTIONS(2930), - [anon_sym_virtual] = ACTIONS(2930), - [anon_sym_typename] = ACTIONS(2930), - [anon_sym_template] = ACTIONS(2940), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2587), + [anon_sym_decltype] = ACTIONS(2587), + [anon_sym_virtual] = ACTIONS(2587), + [anon_sym_explicit] = ACTIONS(2587), + [anon_sym_typename] = ACTIONS(2587), + [anon_sym_template] = ACTIONS(2587), + [anon_sym_operator] = ACTIONS(2587), + [anon_sym_try] = ACTIONS(2587), + [anon_sym_delete] = ACTIONS(2587), + [anon_sym_throw] = ACTIONS(2587), + [anon_sym_namespace] = ACTIONS(2587), + [anon_sym_using] = ACTIONS(2587), + [anon_sym_static_assert] = ACTIONS(2587), + [anon_sym_concept] = ACTIONS(2587), + [anon_sym_co_return] = ACTIONS(2587), + [anon_sym_co_yield] = ACTIONS(2587), + [anon_sym_co_await] = ACTIONS(2587), + [anon_sym_new] = ACTIONS(2587), + [anon_sym_requires] = ACTIONS(2587), + [sym_this] = ACTIONS(2587), + [sym_nullptr] = ACTIONS(2587), + [sym_raw_string_literal] = ACTIONS(2589), }, - [1070] = { - [sym__expression] = STATE(3570), - [sym_comma_expression] = STATE(6679), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(2957), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(2977), - [anon_sym_extern] = ACTIONS(2495), - [anon_sym___attribute__] = ACTIONS(2495), - [anon_sym_COLON_COLON] = ACTIONS(2962), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2497), - [anon_sym___declspec] = ACTIONS(2495), - [anon_sym_LBRACK] = ACTIONS(970), - [anon_sym_static] = ACTIONS(2495), - [anon_sym_register] = ACTIONS(2495), - [anon_sym_inline] = ACTIONS(2495), - [anon_sym_thread_local] = ACTIONS(2495), - [anon_sym_const] = ACTIONS(2495), - [anon_sym_volatile] = ACTIONS(2495), - [anon_sym_restrict] = ACTIONS(2495), - [anon_sym__Atomic] = ACTIONS(2495), - [anon_sym_mutable] = ACTIONS(2495), - [anon_sym_constexpr] = ACTIONS(2495), - [anon_sym_constinit] = ACTIONS(2495), - [anon_sym_consteval] = ACTIONS(2495), - [anon_sym_signed] = ACTIONS(2495), - [anon_sym_unsigned] = ACTIONS(2495), - [anon_sym_long] = ACTIONS(2495), - [anon_sym_short] = ACTIONS(2495), - [sym_primitive_type] = ACTIONS(2965), - [anon_sym_enum] = ACTIONS(2495), - [anon_sym_class] = ACTIONS(2495), - [anon_sym_struct] = ACTIONS(2495), - [anon_sym_union] = ACTIONS(2495), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2495), - [anon_sym_decltype] = ACTIONS(2495), - [anon_sym_virtual] = ACTIONS(2495), - [anon_sym_typename] = ACTIONS(2495), - [anon_sym_template] = ACTIONS(2968), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [667] = { + [sym_identifier] = ACTIONS(2541), + [aux_sym_preproc_include_token1] = ACTIONS(2541), + [aux_sym_preproc_def_token1] = ACTIONS(2541), + [aux_sym_preproc_if_token1] = ACTIONS(2541), + [aux_sym_preproc_if_token2] = ACTIONS(2541), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2541), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2541), + [sym_preproc_directive] = ACTIONS(2541), + [anon_sym_LPAREN2] = ACTIONS(2543), + [anon_sym_BANG] = ACTIONS(2543), + [anon_sym_TILDE] = ACTIONS(2543), + [anon_sym_DASH] = ACTIONS(2541), + [anon_sym_PLUS] = ACTIONS(2541), + [anon_sym_STAR] = ACTIONS(2543), + [anon_sym_AMP_AMP] = ACTIONS(2543), + [anon_sym_AMP] = ACTIONS(2541), + [anon_sym_SEMI] = ACTIONS(2543), + [anon_sym_typedef] = ACTIONS(2541), + [anon_sym_extern] = ACTIONS(2541), + [anon_sym___attribute__] = ACTIONS(2541), + [anon_sym_COLON_COLON] = ACTIONS(2543), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2543), + [anon_sym___declspec] = ACTIONS(2541), + [anon_sym___based] = ACTIONS(2541), + [anon_sym___cdecl] = ACTIONS(2541), + [anon_sym___clrcall] = ACTIONS(2541), + [anon_sym___stdcall] = ACTIONS(2541), + [anon_sym___fastcall] = ACTIONS(2541), + [anon_sym___thiscall] = ACTIONS(2541), + [anon_sym___vectorcall] = ACTIONS(2541), + [anon_sym_LBRACE] = ACTIONS(2543), + [anon_sym_LBRACK] = ACTIONS(2541), + [anon_sym_static] = ACTIONS(2541), + [anon_sym_register] = ACTIONS(2541), + [anon_sym_inline] = ACTIONS(2541), + [anon_sym_thread_local] = ACTIONS(2541), + [anon_sym_const] = ACTIONS(2541), + [anon_sym_volatile] = ACTIONS(2541), + [anon_sym_restrict] = ACTIONS(2541), + [anon_sym__Atomic] = ACTIONS(2541), + [anon_sym_mutable] = ACTIONS(2541), + [anon_sym_constexpr] = ACTIONS(2541), + [anon_sym_constinit] = ACTIONS(2541), + [anon_sym_consteval] = ACTIONS(2541), + [anon_sym_signed] = ACTIONS(2541), + [anon_sym_unsigned] = ACTIONS(2541), + [anon_sym_long] = ACTIONS(2541), + [anon_sym_short] = ACTIONS(2541), + [sym_primitive_type] = ACTIONS(2541), + [anon_sym_enum] = ACTIONS(2541), + [anon_sym_class] = ACTIONS(2541), + [anon_sym_struct] = ACTIONS(2541), + [anon_sym_union] = ACTIONS(2541), + [anon_sym_if] = ACTIONS(2541), + [anon_sym_else] = ACTIONS(2945), + [anon_sym_switch] = ACTIONS(2541), + [anon_sym_case] = ACTIONS(2541), + [anon_sym_default] = ACTIONS(2541), + [anon_sym_while] = ACTIONS(2541), + [anon_sym_do] = ACTIONS(2541), + [anon_sym_for] = ACTIONS(2541), + [anon_sym_return] = ACTIONS(2541), + [anon_sym_break] = ACTIONS(2541), + [anon_sym_continue] = ACTIONS(2541), + [anon_sym_goto] = ACTIONS(2541), + [anon_sym_not] = ACTIONS(2541), + [anon_sym_compl] = ACTIONS(2541), + [anon_sym_DASH_DASH] = ACTIONS(2543), + [anon_sym_PLUS_PLUS] = ACTIONS(2543), + [anon_sym_sizeof] = ACTIONS(2541), + [sym_number_literal] = ACTIONS(2543), + [anon_sym_L_SQUOTE] = ACTIONS(2543), + [anon_sym_u_SQUOTE] = ACTIONS(2543), + [anon_sym_U_SQUOTE] = ACTIONS(2543), + [anon_sym_u8_SQUOTE] = ACTIONS(2543), + [anon_sym_SQUOTE] = ACTIONS(2543), + [anon_sym_L_DQUOTE] = ACTIONS(2543), + [anon_sym_u_DQUOTE] = ACTIONS(2543), + [anon_sym_U_DQUOTE] = ACTIONS(2543), + [anon_sym_u8_DQUOTE] = ACTIONS(2543), + [anon_sym_DQUOTE] = ACTIONS(2543), + [sym_true] = ACTIONS(2541), + [sym_false] = ACTIONS(2541), + [sym_null] = ACTIONS(2541), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2541), + [anon_sym_decltype] = ACTIONS(2541), + [anon_sym_virtual] = ACTIONS(2541), + [anon_sym_explicit] = ACTIONS(2541), + [anon_sym_typename] = ACTIONS(2541), + [anon_sym_template] = ACTIONS(2541), + [anon_sym_operator] = ACTIONS(2541), + [anon_sym_try] = ACTIONS(2541), + [anon_sym_delete] = ACTIONS(2541), + [anon_sym_throw] = ACTIONS(2541), + [anon_sym_namespace] = ACTIONS(2541), + [anon_sym_using] = ACTIONS(2541), + [anon_sym_static_assert] = ACTIONS(2541), + [anon_sym_concept] = ACTIONS(2541), + [anon_sym_co_return] = ACTIONS(2541), + [anon_sym_co_yield] = ACTIONS(2541), + [anon_sym_co_await] = ACTIONS(2541), + [anon_sym_new] = ACTIONS(2541), + [anon_sym_requires] = ACTIONS(2541), + [sym_this] = ACTIONS(2541), + [sym_nullptr] = ACTIONS(2541), + [sym_raw_string_literal] = ACTIONS(2543), }, - [1071] = { - [sym__expression] = STATE(3732), - [sym_comma_expression] = STATE(6593), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(2943), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(2979), - [anon_sym_extern] = ACTIONS(2421), - [anon_sym___attribute__] = ACTIONS(2421), - [anon_sym_COLON_COLON] = ACTIONS(2948), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2423), - [anon_sym___declspec] = ACTIONS(2421), - [anon_sym_LBRACK] = ACTIONS(970), - [anon_sym_static] = ACTIONS(2421), - [anon_sym_register] = ACTIONS(2421), - [anon_sym_inline] = ACTIONS(2421), - [anon_sym_thread_local] = ACTIONS(2421), - [anon_sym_const] = ACTIONS(2421), - [anon_sym_volatile] = ACTIONS(2421), - [anon_sym_restrict] = ACTIONS(2421), - [anon_sym__Atomic] = ACTIONS(2421), - [anon_sym_mutable] = ACTIONS(2421), - [anon_sym_constexpr] = ACTIONS(2421), - [anon_sym_constinit] = ACTIONS(2421), - [anon_sym_consteval] = ACTIONS(2421), - [anon_sym_signed] = ACTIONS(2421), - [anon_sym_unsigned] = ACTIONS(2421), - [anon_sym_long] = ACTIONS(2421), - [anon_sym_short] = ACTIONS(2421), - [sym_primitive_type] = ACTIONS(2951), - [anon_sym_enum] = ACTIONS(2421), - [anon_sym_class] = ACTIONS(2421), - [anon_sym_struct] = ACTIONS(2421), - [anon_sym_union] = ACTIONS(2421), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2421), - [anon_sym_decltype] = ACTIONS(2421), - [anon_sym_virtual] = ACTIONS(2421), - [anon_sym_typename] = ACTIONS(2421), - [anon_sym_template] = ACTIONS(2954), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [668] = { + [ts_builtin_sym_end] = ACTIONS(2539), + [sym_identifier] = ACTIONS(2537), + [aux_sym_preproc_include_token1] = ACTIONS(2537), + [aux_sym_preproc_def_token1] = ACTIONS(2537), + [aux_sym_preproc_if_token1] = ACTIONS(2537), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2537), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2537), + [sym_preproc_directive] = ACTIONS(2537), + [anon_sym_LPAREN2] = ACTIONS(2539), + [anon_sym_BANG] = ACTIONS(2539), + [anon_sym_TILDE] = ACTIONS(2539), + [anon_sym_DASH] = ACTIONS(2537), + [anon_sym_PLUS] = ACTIONS(2537), + [anon_sym_STAR] = ACTIONS(2539), + [anon_sym_AMP_AMP] = ACTIONS(2539), + [anon_sym_AMP] = ACTIONS(2537), + [anon_sym_SEMI] = ACTIONS(2539), + [anon_sym_typedef] = ACTIONS(2537), + [anon_sym_extern] = ACTIONS(2537), + [anon_sym___attribute__] = ACTIONS(2537), + [anon_sym_COLON_COLON] = ACTIONS(2539), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2539), + [anon_sym___declspec] = ACTIONS(2537), + [anon_sym___based] = ACTIONS(2537), + [anon_sym___cdecl] = ACTIONS(2537), + [anon_sym___clrcall] = ACTIONS(2537), + [anon_sym___stdcall] = ACTIONS(2537), + [anon_sym___fastcall] = ACTIONS(2537), + [anon_sym___thiscall] = ACTIONS(2537), + [anon_sym___vectorcall] = ACTIONS(2537), + [anon_sym_LBRACE] = ACTIONS(2539), + [anon_sym_LBRACK] = ACTIONS(2537), + [anon_sym_static] = ACTIONS(2537), + [anon_sym_register] = ACTIONS(2537), + [anon_sym_inline] = ACTIONS(2537), + [anon_sym_thread_local] = ACTIONS(2537), + [anon_sym_const] = ACTIONS(2537), + [anon_sym_volatile] = ACTIONS(2537), + [anon_sym_restrict] = ACTIONS(2537), + [anon_sym__Atomic] = ACTIONS(2537), + [anon_sym_mutable] = ACTIONS(2537), + [anon_sym_constexpr] = ACTIONS(2537), + [anon_sym_constinit] = ACTIONS(2537), + [anon_sym_consteval] = ACTIONS(2537), + [anon_sym_signed] = ACTIONS(2537), + [anon_sym_unsigned] = ACTIONS(2537), + [anon_sym_long] = ACTIONS(2537), + [anon_sym_short] = ACTIONS(2537), + [sym_primitive_type] = ACTIONS(2537), + [anon_sym_enum] = ACTIONS(2537), + [anon_sym_class] = ACTIONS(2537), + [anon_sym_struct] = ACTIONS(2537), + [anon_sym_union] = ACTIONS(2537), + [anon_sym_if] = ACTIONS(2537), + [anon_sym_else] = ACTIONS(2537), + [anon_sym_switch] = ACTIONS(2537), + [anon_sym_case] = ACTIONS(2537), + [anon_sym_default] = ACTIONS(2537), + [anon_sym_while] = ACTIONS(2537), + [anon_sym_do] = ACTIONS(2537), + [anon_sym_for] = ACTIONS(2537), + [anon_sym_return] = ACTIONS(2537), + [anon_sym_break] = ACTIONS(2537), + [anon_sym_continue] = ACTIONS(2537), + [anon_sym_goto] = ACTIONS(2537), + [anon_sym_not] = ACTIONS(2537), + [anon_sym_compl] = ACTIONS(2537), + [anon_sym_DASH_DASH] = ACTIONS(2539), + [anon_sym_PLUS_PLUS] = ACTIONS(2539), + [anon_sym_sizeof] = ACTIONS(2537), + [sym_number_literal] = ACTIONS(2539), + [anon_sym_L_SQUOTE] = ACTIONS(2539), + [anon_sym_u_SQUOTE] = ACTIONS(2539), + [anon_sym_U_SQUOTE] = ACTIONS(2539), + [anon_sym_u8_SQUOTE] = ACTIONS(2539), + [anon_sym_SQUOTE] = ACTIONS(2539), + [anon_sym_L_DQUOTE] = ACTIONS(2539), + [anon_sym_u_DQUOTE] = ACTIONS(2539), + [anon_sym_U_DQUOTE] = ACTIONS(2539), + [anon_sym_u8_DQUOTE] = ACTIONS(2539), + [anon_sym_DQUOTE] = ACTIONS(2539), + [sym_true] = ACTIONS(2537), + [sym_false] = ACTIONS(2537), + [sym_null] = ACTIONS(2537), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2537), + [anon_sym_decltype] = ACTIONS(2537), + [anon_sym_virtual] = ACTIONS(2537), + [anon_sym_explicit] = ACTIONS(2537), + [anon_sym_typename] = ACTIONS(2537), + [anon_sym_template] = ACTIONS(2537), + [anon_sym_operator] = ACTIONS(2537), + [anon_sym_try] = ACTIONS(2537), + [anon_sym_delete] = ACTIONS(2537), + [anon_sym_throw] = ACTIONS(2537), + [anon_sym_namespace] = ACTIONS(2537), + [anon_sym_using] = ACTIONS(2537), + [anon_sym_static_assert] = ACTIONS(2537), + [anon_sym_concept] = ACTIONS(2537), + [anon_sym_co_return] = ACTIONS(2537), + [anon_sym_co_yield] = ACTIONS(2537), + [anon_sym_co_await] = ACTIONS(2537), + [anon_sym_new] = ACTIONS(2537), + [anon_sym_requires] = ACTIONS(2537), + [sym_this] = ACTIONS(2537), + [sym_nullptr] = ACTIONS(2537), + [sym_raw_string_literal] = ACTIONS(2539), }, - [1072] = { - [sym__expression] = STATE(3654), - [sym_comma_expression] = STATE(6494), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(2943), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(2981), - [anon_sym_extern] = ACTIONS(2421), - [anon_sym___attribute__] = ACTIONS(2421), - [anon_sym_COLON_COLON] = ACTIONS(2948), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2423), - [anon_sym___declspec] = ACTIONS(2421), - [anon_sym_LBRACK] = ACTIONS(970), - [anon_sym_static] = ACTIONS(2421), - [anon_sym_register] = ACTIONS(2421), - [anon_sym_inline] = ACTIONS(2421), - [anon_sym_thread_local] = ACTIONS(2421), - [anon_sym_const] = ACTIONS(2421), - [anon_sym_volatile] = ACTIONS(2421), - [anon_sym_restrict] = ACTIONS(2421), - [anon_sym__Atomic] = ACTIONS(2421), - [anon_sym_mutable] = ACTIONS(2421), - [anon_sym_constexpr] = ACTIONS(2421), - [anon_sym_constinit] = ACTIONS(2421), - [anon_sym_consteval] = ACTIONS(2421), - [anon_sym_signed] = ACTIONS(2421), - [anon_sym_unsigned] = ACTIONS(2421), - [anon_sym_long] = ACTIONS(2421), - [anon_sym_short] = ACTIONS(2421), - [sym_primitive_type] = ACTIONS(2951), - [anon_sym_enum] = ACTIONS(2421), - [anon_sym_class] = ACTIONS(2421), - [anon_sym_struct] = ACTIONS(2421), - [anon_sym_union] = ACTIONS(2421), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2421), - [anon_sym_decltype] = ACTIONS(2421), - [anon_sym_virtual] = ACTIONS(2421), - [anon_sym_typename] = ACTIONS(2421), - [anon_sym_template] = ACTIONS(2954), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), - }, - [1073] = { - [sym__expression] = STATE(3580), - [sym_comma_expression] = STATE(6542), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(2957), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(2983), - [anon_sym_extern] = ACTIONS(2495), - [anon_sym___attribute__] = ACTIONS(2495), - [anon_sym_COLON_COLON] = ACTIONS(2962), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2497), - [anon_sym___declspec] = ACTIONS(2495), - [anon_sym_LBRACK] = ACTIONS(970), - [anon_sym_static] = ACTIONS(2495), - [anon_sym_register] = ACTIONS(2495), - [anon_sym_inline] = ACTIONS(2495), - [anon_sym_thread_local] = ACTIONS(2495), - [anon_sym_const] = ACTIONS(2495), - [anon_sym_volatile] = ACTIONS(2495), - [anon_sym_restrict] = ACTIONS(2495), - [anon_sym__Atomic] = ACTIONS(2495), - [anon_sym_mutable] = ACTIONS(2495), - [anon_sym_constexpr] = ACTIONS(2495), - [anon_sym_constinit] = ACTIONS(2495), - [anon_sym_consteval] = ACTIONS(2495), - [anon_sym_signed] = ACTIONS(2495), - [anon_sym_unsigned] = ACTIONS(2495), - [anon_sym_long] = ACTIONS(2495), - [anon_sym_short] = ACTIONS(2495), - [sym_primitive_type] = ACTIONS(2965), - [anon_sym_enum] = ACTIONS(2495), - [anon_sym_class] = ACTIONS(2495), - [anon_sym_struct] = ACTIONS(2495), - [anon_sym_union] = ACTIONS(2495), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [669] = { + [ts_builtin_sym_end] = ACTIONS(2597), + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2495), - [anon_sym_decltype] = ACTIONS(2495), - [anon_sym_virtual] = ACTIONS(2495), - [anon_sym_typename] = ACTIONS(2495), - [anon_sym_template] = ACTIONS(2968), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1074] = { - [sym__expression] = STATE(3609), - [sym_comma_expression] = STATE(6537), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(2925), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(2985), - [anon_sym_extern] = ACTIONS(2930), - [anon_sym___attribute__] = ACTIONS(2930), - [anon_sym_COLON_COLON] = ACTIONS(2932), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2935), - [anon_sym___declspec] = ACTIONS(2930), - [anon_sym_LBRACK] = ACTIONS(970), - [anon_sym_static] = ACTIONS(2930), - [anon_sym_register] = ACTIONS(2930), - [anon_sym_inline] = ACTIONS(2930), - [anon_sym_thread_local] = ACTIONS(2930), - [anon_sym_const] = ACTIONS(2930), - [anon_sym_volatile] = ACTIONS(2930), - [anon_sym_restrict] = ACTIONS(2930), - [anon_sym__Atomic] = ACTIONS(2930), - [anon_sym_mutable] = ACTIONS(2930), - [anon_sym_constexpr] = ACTIONS(2930), - [anon_sym_constinit] = ACTIONS(2930), - [anon_sym_consteval] = ACTIONS(2930), - [anon_sym_signed] = ACTIONS(2930), - [anon_sym_unsigned] = ACTIONS(2930), - [anon_sym_long] = ACTIONS(2930), - [anon_sym_short] = ACTIONS(2930), - [sym_primitive_type] = ACTIONS(2937), - [anon_sym_enum] = ACTIONS(2930), - [anon_sym_class] = ACTIONS(2930), - [anon_sym_struct] = ACTIONS(2930), - [anon_sym_union] = ACTIONS(2930), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2930), - [anon_sym_decltype] = ACTIONS(2930), - [anon_sym_virtual] = ACTIONS(2930), - [anon_sym_typename] = ACTIONS(2930), - [anon_sym_template] = ACTIONS(2940), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [670] = { + [ts_builtin_sym_end] = ACTIONS(2561), + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1075] = { - [sym__expression] = STATE(3611), - [sym_comma_expression] = STATE(6535), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(2943), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(2987), - [anon_sym_extern] = ACTIONS(2421), - [anon_sym___attribute__] = ACTIONS(2421), - [anon_sym_COLON_COLON] = ACTIONS(2948), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2423), - [anon_sym___declspec] = ACTIONS(2421), - [anon_sym_LBRACK] = ACTIONS(970), - [anon_sym_static] = ACTIONS(2421), - [anon_sym_register] = ACTIONS(2421), - [anon_sym_inline] = ACTIONS(2421), - [anon_sym_thread_local] = ACTIONS(2421), - [anon_sym_const] = ACTIONS(2421), - [anon_sym_volatile] = ACTIONS(2421), - [anon_sym_restrict] = ACTIONS(2421), - [anon_sym__Atomic] = ACTIONS(2421), - [anon_sym_mutable] = ACTIONS(2421), - [anon_sym_constexpr] = ACTIONS(2421), - [anon_sym_constinit] = ACTIONS(2421), - [anon_sym_consteval] = ACTIONS(2421), - [anon_sym_signed] = ACTIONS(2421), - [anon_sym_unsigned] = ACTIONS(2421), - [anon_sym_long] = ACTIONS(2421), - [anon_sym_short] = ACTIONS(2421), - [sym_primitive_type] = ACTIONS(2951), - [anon_sym_enum] = ACTIONS(2421), - [anon_sym_class] = ACTIONS(2421), - [anon_sym_struct] = ACTIONS(2421), - [anon_sym_union] = ACTIONS(2421), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [671] = { + [ts_builtin_sym_end] = ACTIONS(2593), + [sym_identifier] = ACTIONS(2591), + [aux_sym_preproc_include_token1] = ACTIONS(2591), + [aux_sym_preproc_def_token1] = ACTIONS(2591), + [aux_sym_preproc_if_token1] = ACTIONS(2591), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2591), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2591), + [sym_preproc_directive] = ACTIONS(2591), + [anon_sym_LPAREN2] = ACTIONS(2593), + [anon_sym_BANG] = ACTIONS(2593), + [anon_sym_TILDE] = ACTIONS(2593), + [anon_sym_DASH] = ACTIONS(2591), + [anon_sym_PLUS] = ACTIONS(2591), + [anon_sym_STAR] = ACTIONS(2593), + [anon_sym_AMP_AMP] = ACTIONS(2593), + [anon_sym_AMP] = ACTIONS(2591), + [anon_sym_SEMI] = ACTIONS(2593), + [anon_sym_typedef] = ACTIONS(2591), + [anon_sym_extern] = ACTIONS(2591), + [anon_sym___attribute__] = ACTIONS(2591), + [anon_sym_COLON_COLON] = ACTIONS(2593), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2593), + [anon_sym___declspec] = ACTIONS(2591), + [anon_sym___based] = ACTIONS(2591), + [anon_sym___cdecl] = ACTIONS(2591), + [anon_sym___clrcall] = ACTIONS(2591), + [anon_sym___stdcall] = ACTIONS(2591), + [anon_sym___fastcall] = ACTIONS(2591), + [anon_sym___thiscall] = ACTIONS(2591), + [anon_sym___vectorcall] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2593), + [anon_sym_LBRACK] = ACTIONS(2591), + [anon_sym_static] = ACTIONS(2591), + [anon_sym_register] = ACTIONS(2591), + [anon_sym_inline] = ACTIONS(2591), + [anon_sym_thread_local] = ACTIONS(2591), + [anon_sym_const] = ACTIONS(2591), + [anon_sym_volatile] = ACTIONS(2591), + [anon_sym_restrict] = ACTIONS(2591), + [anon_sym__Atomic] = ACTIONS(2591), + [anon_sym_mutable] = ACTIONS(2591), + [anon_sym_constexpr] = ACTIONS(2591), + [anon_sym_constinit] = ACTIONS(2591), + [anon_sym_consteval] = ACTIONS(2591), + [anon_sym_signed] = ACTIONS(2591), + [anon_sym_unsigned] = ACTIONS(2591), + [anon_sym_long] = ACTIONS(2591), + [anon_sym_short] = ACTIONS(2591), + [sym_primitive_type] = ACTIONS(2591), + [anon_sym_enum] = ACTIONS(2591), + [anon_sym_class] = ACTIONS(2591), + [anon_sym_struct] = ACTIONS(2591), + [anon_sym_union] = ACTIONS(2591), + [anon_sym_if] = ACTIONS(2591), + [anon_sym_else] = ACTIONS(2591), + [anon_sym_switch] = ACTIONS(2591), + [anon_sym_case] = ACTIONS(2591), + [anon_sym_default] = ACTIONS(2591), + [anon_sym_while] = ACTIONS(2591), + [anon_sym_do] = ACTIONS(2591), + [anon_sym_for] = ACTIONS(2591), + [anon_sym_return] = ACTIONS(2591), + [anon_sym_break] = ACTIONS(2591), + [anon_sym_continue] = ACTIONS(2591), + [anon_sym_goto] = ACTIONS(2591), + [anon_sym_not] = ACTIONS(2591), + [anon_sym_compl] = ACTIONS(2591), + [anon_sym_DASH_DASH] = ACTIONS(2593), + [anon_sym_PLUS_PLUS] = ACTIONS(2593), + [anon_sym_sizeof] = ACTIONS(2591), + [sym_number_literal] = ACTIONS(2593), + [anon_sym_L_SQUOTE] = ACTIONS(2593), + [anon_sym_u_SQUOTE] = ACTIONS(2593), + [anon_sym_U_SQUOTE] = ACTIONS(2593), + [anon_sym_u8_SQUOTE] = ACTIONS(2593), + [anon_sym_SQUOTE] = ACTIONS(2593), + [anon_sym_L_DQUOTE] = ACTIONS(2593), + [anon_sym_u_DQUOTE] = ACTIONS(2593), + [anon_sym_U_DQUOTE] = ACTIONS(2593), + [anon_sym_u8_DQUOTE] = ACTIONS(2593), + [anon_sym_DQUOTE] = ACTIONS(2593), + [sym_true] = ACTIONS(2591), + [sym_false] = ACTIONS(2591), + [sym_null] = ACTIONS(2591), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2421), - [anon_sym_decltype] = ACTIONS(2421), - [anon_sym_virtual] = ACTIONS(2421), - [anon_sym_typename] = ACTIONS(2421), - [anon_sym_template] = ACTIONS(2954), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2591), + [anon_sym_decltype] = ACTIONS(2591), + [anon_sym_virtual] = ACTIONS(2591), + [anon_sym_explicit] = ACTIONS(2591), + [anon_sym_typename] = ACTIONS(2591), + [anon_sym_template] = ACTIONS(2591), + [anon_sym_operator] = ACTIONS(2591), + [anon_sym_try] = ACTIONS(2591), + [anon_sym_delete] = ACTIONS(2591), + [anon_sym_throw] = ACTIONS(2591), + [anon_sym_namespace] = ACTIONS(2591), + [anon_sym_using] = ACTIONS(2591), + [anon_sym_static_assert] = ACTIONS(2591), + [anon_sym_concept] = ACTIONS(2591), + [anon_sym_co_return] = ACTIONS(2591), + [anon_sym_co_yield] = ACTIONS(2591), + [anon_sym_co_await] = ACTIONS(2591), + [anon_sym_new] = ACTIONS(2591), + [anon_sym_requires] = ACTIONS(2591), + [sym_this] = ACTIONS(2591), + [sym_nullptr] = ACTIONS(2591), + [sym_raw_string_literal] = ACTIONS(2593), }, - [1076] = { - [sym__expression] = STATE(3741), - [sym_comma_expression] = STATE(6594), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(2925), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(2989), - [anon_sym_extern] = ACTIONS(2930), - [anon_sym___attribute__] = ACTIONS(2930), - [anon_sym_COLON_COLON] = ACTIONS(2932), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2935), - [anon_sym___declspec] = ACTIONS(2930), - [anon_sym_LBRACK] = ACTIONS(970), - [anon_sym_static] = ACTIONS(2930), - [anon_sym_register] = ACTIONS(2930), - [anon_sym_inline] = ACTIONS(2930), - [anon_sym_thread_local] = ACTIONS(2930), - [anon_sym_const] = ACTIONS(2930), - [anon_sym_volatile] = ACTIONS(2930), - [anon_sym_restrict] = ACTIONS(2930), - [anon_sym__Atomic] = ACTIONS(2930), - [anon_sym_mutable] = ACTIONS(2930), - [anon_sym_constexpr] = ACTIONS(2930), - [anon_sym_constinit] = ACTIONS(2930), - [anon_sym_consteval] = ACTIONS(2930), - [anon_sym_signed] = ACTIONS(2930), - [anon_sym_unsigned] = ACTIONS(2930), - [anon_sym_long] = ACTIONS(2930), - [anon_sym_short] = ACTIONS(2930), - [sym_primitive_type] = ACTIONS(2937), - [anon_sym_enum] = ACTIONS(2930), - [anon_sym_class] = ACTIONS(2930), - [anon_sym_struct] = ACTIONS(2930), - [anon_sym_union] = ACTIONS(2930), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2930), - [anon_sym_decltype] = ACTIONS(2930), - [anon_sym_virtual] = ACTIONS(2930), - [anon_sym_typename] = ACTIONS(2930), - [anon_sym_template] = ACTIONS(2940), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [672] = { + [ts_builtin_sym_end] = ACTIONS(2561), + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1077] = { - [sym__expression] = STATE(3753), - [sym_comma_expression] = STATE(6392), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(2957), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(2991), - [anon_sym_extern] = ACTIONS(2495), - [anon_sym___attribute__] = ACTIONS(2495), - [anon_sym_COLON_COLON] = ACTIONS(2962), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2497), - [anon_sym___declspec] = ACTIONS(2495), - [anon_sym_LBRACK] = ACTIONS(970), - [anon_sym_static] = ACTIONS(2495), - [anon_sym_register] = ACTIONS(2495), - [anon_sym_inline] = ACTIONS(2495), - [anon_sym_thread_local] = ACTIONS(2495), - [anon_sym_const] = ACTIONS(2495), - [anon_sym_volatile] = ACTIONS(2495), - [anon_sym_restrict] = ACTIONS(2495), - [anon_sym__Atomic] = ACTIONS(2495), - [anon_sym_mutable] = ACTIONS(2495), - [anon_sym_constexpr] = ACTIONS(2495), - [anon_sym_constinit] = ACTIONS(2495), - [anon_sym_consteval] = ACTIONS(2495), - [anon_sym_signed] = ACTIONS(2495), - [anon_sym_unsigned] = ACTIONS(2495), - [anon_sym_long] = ACTIONS(2495), - [anon_sym_short] = ACTIONS(2495), - [sym_primitive_type] = ACTIONS(2965), - [anon_sym_enum] = ACTIONS(2495), - [anon_sym_class] = ACTIONS(2495), - [anon_sym_struct] = ACTIONS(2495), - [anon_sym_union] = ACTIONS(2495), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2495), - [anon_sym_decltype] = ACTIONS(2495), - [anon_sym_virtual] = ACTIONS(2495), - [anon_sym_typename] = ACTIONS(2495), - [anon_sym_template] = ACTIONS(2968), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [673] = { + [ts_builtin_sym_end] = ACTIONS(2561), + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1078] = { - [sym__expression] = STATE(3699), - [sym_comma_expression] = STATE(6438), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(2957), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(2993), - [anon_sym_extern] = ACTIONS(2495), - [anon_sym___attribute__] = ACTIONS(2495), - [anon_sym_COLON_COLON] = ACTIONS(2962), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2497), - [anon_sym___declspec] = ACTIONS(2495), - [anon_sym_LBRACK] = ACTIONS(970), - [anon_sym_static] = ACTIONS(2495), - [anon_sym_register] = ACTIONS(2495), - [anon_sym_inline] = ACTIONS(2495), - [anon_sym_thread_local] = ACTIONS(2495), - [anon_sym_const] = ACTIONS(2495), - [anon_sym_volatile] = ACTIONS(2495), - [anon_sym_restrict] = ACTIONS(2495), - [anon_sym__Atomic] = ACTIONS(2495), - [anon_sym_mutable] = ACTIONS(2495), - [anon_sym_constexpr] = ACTIONS(2495), - [anon_sym_constinit] = ACTIONS(2495), - [anon_sym_consteval] = ACTIONS(2495), - [anon_sym_signed] = ACTIONS(2495), - [anon_sym_unsigned] = ACTIONS(2495), - [anon_sym_long] = ACTIONS(2495), - [anon_sym_short] = ACTIONS(2495), - [sym_primitive_type] = ACTIONS(2965), - [anon_sym_enum] = ACTIONS(2495), - [anon_sym_class] = ACTIONS(2495), - [anon_sym_struct] = ACTIONS(2495), - [anon_sym_union] = ACTIONS(2495), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [674] = { + [ts_builtin_sym_end] = ACTIONS(2597), + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2495), - [anon_sym_decltype] = ACTIONS(2495), - [anon_sym_virtual] = ACTIONS(2495), - [anon_sym_typename] = ACTIONS(2495), - [anon_sym_template] = ACTIONS(2968), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1079] = { - [sym__expression] = STATE(3700), - [sym_comma_expression] = STATE(6433), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(2925), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(2995), - [anon_sym_extern] = ACTIONS(2930), - [anon_sym___attribute__] = ACTIONS(2930), - [anon_sym_COLON_COLON] = ACTIONS(2932), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2935), - [anon_sym___declspec] = ACTIONS(2930), - [anon_sym_LBRACK] = ACTIONS(970), - [anon_sym_static] = ACTIONS(2930), - [anon_sym_register] = ACTIONS(2930), - [anon_sym_inline] = ACTIONS(2930), - [anon_sym_thread_local] = ACTIONS(2930), - [anon_sym_const] = ACTIONS(2930), - [anon_sym_volatile] = ACTIONS(2930), - [anon_sym_restrict] = ACTIONS(2930), - [anon_sym__Atomic] = ACTIONS(2930), - [anon_sym_mutable] = ACTIONS(2930), - [anon_sym_constexpr] = ACTIONS(2930), - [anon_sym_constinit] = ACTIONS(2930), - [anon_sym_consteval] = ACTIONS(2930), - [anon_sym_signed] = ACTIONS(2930), - [anon_sym_unsigned] = ACTIONS(2930), - [anon_sym_long] = ACTIONS(2930), - [anon_sym_short] = ACTIONS(2930), - [sym_primitive_type] = ACTIONS(2937), - [anon_sym_enum] = ACTIONS(2930), - [anon_sym_class] = ACTIONS(2930), - [anon_sym_struct] = ACTIONS(2930), - [anon_sym_union] = ACTIONS(2930), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2930), - [anon_sym_decltype] = ACTIONS(2930), - [anon_sym_virtual] = ACTIONS(2930), - [anon_sym_typename] = ACTIONS(2930), - [anon_sym_template] = ACTIONS(2940), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [675] = { + [ts_builtin_sym_end] = ACTIONS(2561), + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1080] = { - [sym__expression] = STATE(3774), - [sym_comma_expression] = STATE(6386), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(2925), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(2997), - [anon_sym_extern] = ACTIONS(2930), - [anon_sym___attribute__] = ACTIONS(2930), - [anon_sym_COLON_COLON] = ACTIONS(2932), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2935), - [anon_sym___declspec] = ACTIONS(2930), - [anon_sym_LBRACK] = ACTIONS(970), - [anon_sym_static] = ACTIONS(2930), - [anon_sym_register] = ACTIONS(2930), - [anon_sym_inline] = ACTIONS(2930), - [anon_sym_thread_local] = ACTIONS(2930), - [anon_sym_const] = ACTIONS(2930), - [anon_sym_volatile] = ACTIONS(2930), - [anon_sym_restrict] = ACTIONS(2930), - [anon_sym__Atomic] = ACTIONS(2930), - [anon_sym_mutable] = ACTIONS(2930), - [anon_sym_constexpr] = ACTIONS(2930), - [anon_sym_constinit] = ACTIONS(2930), - [anon_sym_consteval] = ACTIONS(2930), - [anon_sym_signed] = ACTIONS(2930), - [anon_sym_unsigned] = ACTIONS(2930), - [anon_sym_long] = ACTIONS(2930), - [anon_sym_short] = ACTIONS(2930), - [sym_primitive_type] = ACTIONS(2937), - [anon_sym_enum] = ACTIONS(2930), - [anon_sym_class] = ACTIONS(2930), - [anon_sym_struct] = ACTIONS(2930), - [anon_sym_union] = ACTIONS(2930), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2930), - [anon_sym_decltype] = ACTIONS(2930), - [anon_sym_virtual] = ACTIONS(2930), - [anon_sym_typename] = ACTIONS(2930), - [anon_sym_template] = ACTIONS(2940), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [676] = { + [ts_builtin_sym_end] = ACTIONS(2491), + [sym_identifier] = ACTIONS(2489), + [aux_sym_preproc_include_token1] = ACTIONS(2489), + [aux_sym_preproc_def_token1] = ACTIONS(2489), + [aux_sym_preproc_if_token1] = ACTIONS(2489), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2489), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2489), + [sym_preproc_directive] = ACTIONS(2489), + [anon_sym_LPAREN2] = ACTIONS(2491), + [anon_sym_BANG] = ACTIONS(2491), + [anon_sym_TILDE] = ACTIONS(2491), + [anon_sym_DASH] = ACTIONS(2489), + [anon_sym_PLUS] = ACTIONS(2489), + [anon_sym_STAR] = ACTIONS(2491), + [anon_sym_AMP_AMP] = ACTIONS(2491), + [anon_sym_AMP] = ACTIONS(2489), + [anon_sym_SEMI] = ACTIONS(2491), + [anon_sym_typedef] = ACTIONS(2489), + [anon_sym_extern] = ACTIONS(2489), + [anon_sym___attribute__] = ACTIONS(2489), + [anon_sym_COLON_COLON] = ACTIONS(2491), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2491), + [anon_sym___declspec] = ACTIONS(2489), + [anon_sym___based] = ACTIONS(2489), + [anon_sym___cdecl] = ACTIONS(2489), + [anon_sym___clrcall] = ACTIONS(2489), + [anon_sym___stdcall] = ACTIONS(2489), + [anon_sym___fastcall] = ACTIONS(2489), + [anon_sym___thiscall] = ACTIONS(2489), + [anon_sym___vectorcall] = ACTIONS(2489), + [anon_sym_LBRACE] = ACTIONS(2491), + [anon_sym_LBRACK] = ACTIONS(2489), + [anon_sym_static] = ACTIONS(2489), + [anon_sym_register] = ACTIONS(2489), + [anon_sym_inline] = ACTIONS(2489), + [anon_sym_thread_local] = ACTIONS(2489), + [anon_sym_const] = ACTIONS(2489), + [anon_sym_volatile] = ACTIONS(2489), + [anon_sym_restrict] = ACTIONS(2489), + [anon_sym__Atomic] = ACTIONS(2489), + [anon_sym_mutable] = ACTIONS(2489), + [anon_sym_constexpr] = ACTIONS(2489), + [anon_sym_constinit] = ACTIONS(2489), + [anon_sym_consteval] = ACTIONS(2489), + [anon_sym_signed] = ACTIONS(2489), + [anon_sym_unsigned] = ACTIONS(2489), + [anon_sym_long] = ACTIONS(2489), + [anon_sym_short] = ACTIONS(2489), + [sym_primitive_type] = ACTIONS(2489), + [anon_sym_enum] = ACTIONS(2489), + [anon_sym_class] = ACTIONS(2489), + [anon_sym_struct] = ACTIONS(2489), + [anon_sym_union] = ACTIONS(2489), + [anon_sym_if] = ACTIONS(2489), + [anon_sym_else] = ACTIONS(2489), + [anon_sym_switch] = ACTIONS(2489), + [anon_sym_case] = ACTIONS(2489), + [anon_sym_default] = ACTIONS(2489), + [anon_sym_while] = ACTIONS(2489), + [anon_sym_do] = ACTIONS(2489), + [anon_sym_for] = ACTIONS(2489), + [anon_sym_return] = ACTIONS(2489), + [anon_sym_break] = ACTIONS(2489), + [anon_sym_continue] = ACTIONS(2489), + [anon_sym_goto] = ACTIONS(2489), + [anon_sym_not] = ACTIONS(2489), + [anon_sym_compl] = ACTIONS(2489), + [anon_sym_DASH_DASH] = ACTIONS(2491), + [anon_sym_PLUS_PLUS] = ACTIONS(2491), + [anon_sym_sizeof] = ACTIONS(2489), + [sym_number_literal] = ACTIONS(2491), + [anon_sym_L_SQUOTE] = ACTIONS(2491), + [anon_sym_u_SQUOTE] = ACTIONS(2491), + [anon_sym_U_SQUOTE] = ACTIONS(2491), + [anon_sym_u8_SQUOTE] = ACTIONS(2491), + [anon_sym_SQUOTE] = ACTIONS(2491), + [anon_sym_L_DQUOTE] = ACTIONS(2491), + [anon_sym_u_DQUOTE] = ACTIONS(2491), + [anon_sym_U_DQUOTE] = ACTIONS(2491), + [anon_sym_u8_DQUOTE] = ACTIONS(2491), + [anon_sym_DQUOTE] = ACTIONS(2491), + [sym_true] = ACTIONS(2489), + [sym_false] = ACTIONS(2489), + [sym_null] = ACTIONS(2489), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2489), + [anon_sym_decltype] = ACTIONS(2489), + [anon_sym_virtual] = ACTIONS(2489), + [anon_sym_explicit] = ACTIONS(2489), + [anon_sym_typename] = ACTIONS(2489), + [anon_sym_template] = ACTIONS(2489), + [anon_sym_operator] = ACTIONS(2489), + [anon_sym_try] = ACTIONS(2489), + [anon_sym_delete] = ACTIONS(2489), + [anon_sym_throw] = ACTIONS(2489), + [anon_sym_namespace] = ACTIONS(2489), + [anon_sym_using] = ACTIONS(2489), + [anon_sym_static_assert] = ACTIONS(2489), + [anon_sym_concept] = ACTIONS(2489), + [anon_sym_co_return] = ACTIONS(2489), + [anon_sym_co_yield] = ACTIONS(2489), + [anon_sym_co_await] = ACTIONS(2489), + [anon_sym_new] = ACTIONS(2489), + [anon_sym_requires] = ACTIONS(2489), + [sym_this] = ACTIONS(2489), + [sym_nullptr] = ACTIONS(2489), + [sym_raw_string_literal] = ACTIONS(2491), }, - [1081] = { - [sym__expression] = STATE(3682), - [sym_comma_expression] = STATE(6643), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(2943), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(2999), - [anon_sym_extern] = ACTIONS(2421), - [anon_sym___attribute__] = ACTIONS(2421), - [anon_sym_COLON_COLON] = ACTIONS(2948), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2423), - [anon_sym___declspec] = ACTIONS(2421), - [anon_sym_LBRACK] = ACTIONS(970), - [anon_sym_static] = ACTIONS(2421), - [anon_sym_register] = ACTIONS(2421), - [anon_sym_inline] = ACTIONS(2421), - [anon_sym_thread_local] = ACTIONS(2421), - [anon_sym_const] = ACTIONS(2421), - [anon_sym_volatile] = ACTIONS(2421), - [anon_sym_restrict] = ACTIONS(2421), - [anon_sym__Atomic] = ACTIONS(2421), - [anon_sym_mutable] = ACTIONS(2421), - [anon_sym_constexpr] = ACTIONS(2421), - [anon_sym_constinit] = ACTIONS(2421), - [anon_sym_consteval] = ACTIONS(2421), - [anon_sym_signed] = ACTIONS(2421), - [anon_sym_unsigned] = ACTIONS(2421), - [anon_sym_long] = ACTIONS(2421), - [anon_sym_short] = ACTIONS(2421), - [sym_primitive_type] = ACTIONS(2951), - [anon_sym_enum] = ACTIONS(2421), - [anon_sym_class] = ACTIONS(2421), - [anon_sym_struct] = ACTIONS(2421), - [anon_sym_union] = ACTIONS(2421), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2421), - [anon_sym_decltype] = ACTIONS(2421), - [anon_sym_virtual] = ACTIONS(2421), - [anon_sym_typename] = ACTIONS(2421), - [anon_sym_template] = ACTIONS(2954), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [677] = { + [ts_builtin_sym_end] = ACTIONS(2543), + [sym_identifier] = ACTIONS(2541), + [aux_sym_preproc_include_token1] = ACTIONS(2541), + [aux_sym_preproc_def_token1] = ACTIONS(2541), + [aux_sym_preproc_if_token1] = ACTIONS(2541), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2541), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2541), + [sym_preproc_directive] = ACTIONS(2541), + [anon_sym_LPAREN2] = ACTIONS(2543), + [anon_sym_BANG] = ACTIONS(2543), + [anon_sym_TILDE] = ACTIONS(2543), + [anon_sym_DASH] = ACTIONS(2541), + [anon_sym_PLUS] = ACTIONS(2541), + [anon_sym_STAR] = ACTIONS(2543), + [anon_sym_AMP_AMP] = ACTIONS(2543), + [anon_sym_AMP] = ACTIONS(2541), + [anon_sym_SEMI] = ACTIONS(2543), + [anon_sym_typedef] = ACTIONS(2541), + [anon_sym_extern] = ACTIONS(2541), + [anon_sym___attribute__] = ACTIONS(2541), + [anon_sym_COLON_COLON] = ACTIONS(2543), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2543), + [anon_sym___declspec] = ACTIONS(2541), + [anon_sym___based] = ACTIONS(2541), + [anon_sym___cdecl] = ACTIONS(2541), + [anon_sym___clrcall] = ACTIONS(2541), + [anon_sym___stdcall] = ACTIONS(2541), + [anon_sym___fastcall] = ACTIONS(2541), + [anon_sym___thiscall] = ACTIONS(2541), + [anon_sym___vectorcall] = ACTIONS(2541), + [anon_sym_LBRACE] = ACTIONS(2543), + [anon_sym_LBRACK] = ACTIONS(2541), + [anon_sym_static] = ACTIONS(2541), + [anon_sym_register] = ACTIONS(2541), + [anon_sym_inline] = ACTIONS(2541), + [anon_sym_thread_local] = ACTIONS(2541), + [anon_sym_const] = ACTIONS(2541), + [anon_sym_volatile] = ACTIONS(2541), + [anon_sym_restrict] = ACTIONS(2541), + [anon_sym__Atomic] = ACTIONS(2541), + [anon_sym_mutable] = ACTIONS(2541), + [anon_sym_constexpr] = ACTIONS(2541), + [anon_sym_constinit] = ACTIONS(2541), + [anon_sym_consteval] = ACTIONS(2541), + [anon_sym_signed] = ACTIONS(2541), + [anon_sym_unsigned] = ACTIONS(2541), + [anon_sym_long] = ACTIONS(2541), + [anon_sym_short] = ACTIONS(2541), + [sym_primitive_type] = ACTIONS(2541), + [anon_sym_enum] = ACTIONS(2541), + [anon_sym_class] = ACTIONS(2541), + [anon_sym_struct] = ACTIONS(2541), + [anon_sym_union] = ACTIONS(2541), + [anon_sym_if] = ACTIONS(2541), + [anon_sym_else] = ACTIONS(2947), + [anon_sym_switch] = ACTIONS(2541), + [anon_sym_case] = ACTIONS(2541), + [anon_sym_default] = ACTIONS(2541), + [anon_sym_while] = ACTIONS(2541), + [anon_sym_do] = ACTIONS(2541), + [anon_sym_for] = ACTIONS(2541), + [anon_sym_return] = ACTIONS(2541), + [anon_sym_break] = ACTIONS(2541), + [anon_sym_continue] = ACTIONS(2541), + [anon_sym_goto] = ACTIONS(2541), + [anon_sym_not] = ACTIONS(2541), + [anon_sym_compl] = ACTIONS(2541), + [anon_sym_DASH_DASH] = ACTIONS(2543), + [anon_sym_PLUS_PLUS] = ACTIONS(2543), + [anon_sym_sizeof] = ACTIONS(2541), + [sym_number_literal] = ACTIONS(2543), + [anon_sym_L_SQUOTE] = ACTIONS(2543), + [anon_sym_u_SQUOTE] = ACTIONS(2543), + [anon_sym_U_SQUOTE] = ACTIONS(2543), + [anon_sym_u8_SQUOTE] = ACTIONS(2543), + [anon_sym_SQUOTE] = ACTIONS(2543), + [anon_sym_L_DQUOTE] = ACTIONS(2543), + [anon_sym_u_DQUOTE] = ACTIONS(2543), + [anon_sym_U_DQUOTE] = ACTIONS(2543), + [anon_sym_u8_DQUOTE] = ACTIONS(2543), + [anon_sym_DQUOTE] = ACTIONS(2543), + [sym_true] = ACTIONS(2541), + [sym_false] = ACTIONS(2541), + [sym_null] = ACTIONS(2541), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2541), + [anon_sym_decltype] = ACTIONS(2541), + [anon_sym_virtual] = ACTIONS(2541), + [anon_sym_explicit] = ACTIONS(2541), + [anon_sym_typename] = ACTIONS(2541), + [anon_sym_template] = ACTIONS(2541), + [anon_sym_operator] = ACTIONS(2541), + [anon_sym_try] = ACTIONS(2541), + [anon_sym_delete] = ACTIONS(2541), + [anon_sym_throw] = ACTIONS(2541), + [anon_sym_namespace] = ACTIONS(2541), + [anon_sym_using] = ACTIONS(2541), + [anon_sym_static_assert] = ACTIONS(2541), + [anon_sym_concept] = ACTIONS(2541), + [anon_sym_co_return] = ACTIONS(2541), + [anon_sym_co_yield] = ACTIONS(2541), + [anon_sym_co_await] = ACTIONS(2541), + [anon_sym_new] = ACTIONS(2541), + [anon_sym_requires] = ACTIONS(2541), + [sym_this] = ACTIONS(2541), + [sym_nullptr] = ACTIONS(2541), + [sym_raw_string_literal] = ACTIONS(2543), }, - [1082] = { - [sym__declaration_modifiers] = STATE(1899), - [sym__declaration_specifiers] = STATE(4741), - [sym_attribute_specifier] = STATE(1899), - [sym_attribute_declaration] = STATE(1899), - [sym_ms_declspec_modifier] = STATE(1899), - [sym_storage_class_specifier] = STATE(1899), - [sym_type_qualifier] = STATE(1899), - [sym__type_specifier] = STATE(3417), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym_virtual_function_specifier] = STATE(1899), - [sym_dependent_type] = STATE(3139), - [sym_template_type] = STATE(2976), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(5131), - [sym_qualified_type_identifier] = STATE(3198), - [aux_sym__declaration_specifiers_repeat1] = STATE(1899), - [aux_sym_sized_type_specifier_repeat1] = STATE(3184), - [sym_identifier] = ACTIONS(3001), - [anon_sym_COMMA] = ACTIONS(3003), - [anon_sym_BANG] = ACTIONS(3005), - [anon_sym_TILDE] = ACTIONS(3003), - [anon_sym_DASH] = ACTIONS(3005), - [anon_sym_PLUS] = ACTIONS(3005), - [anon_sym_STAR] = ACTIONS(3005), - [anon_sym_SLASH] = ACTIONS(3005), - [anon_sym_PERCENT] = ACTIONS(3005), - [anon_sym_PIPE_PIPE] = ACTIONS(3003), - [anon_sym_AMP_AMP] = ACTIONS(3003), - [anon_sym_PIPE] = ACTIONS(3005), - [anon_sym_CARET] = ACTIONS(3005), - [anon_sym_AMP] = ACTIONS(3005), - [anon_sym_EQ_EQ] = ACTIONS(3003), - [anon_sym_BANG_EQ] = ACTIONS(3003), - [anon_sym_GT] = ACTIONS(3005), - [anon_sym_GT_EQ] = ACTIONS(3003), - [anon_sym_LT_EQ] = ACTIONS(3005), - [anon_sym_LT] = ACTIONS(3005), - [anon_sym_LT_LT] = ACTIONS(3005), - [anon_sym_GT_GT] = ACTIONS(3005), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3007), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1389), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_EQ] = ACTIONS(3005), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(3009), - [anon_sym_unsigned] = ACTIONS(3009), - [anon_sym_long] = ACTIONS(3009), - [anon_sym_short] = ACTIONS(3009), - [sym_primitive_type] = ACTIONS(2809), - [anon_sym_enum] = ACTIONS(3011), - [anon_sym_class] = ACTIONS(3013), - [anon_sym_struct] = ACTIONS(3015), - [anon_sym_union] = ACTIONS(3017), - [anon_sym_STAR_EQ] = ACTIONS(3003), - [anon_sym_SLASH_EQ] = ACTIONS(3003), - [anon_sym_PERCENT_EQ] = ACTIONS(3003), - [anon_sym_PLUS_EQ] = ACTIONS(3003), - [anon_sym_DASH_EQ] = ACTIONS(3003), - [anon_sym_LT_LT_EQ] = ACTIONS(3003), - [anon_sym_GT_GT_EQ] = ACTIONS(3003), - [anon_sym_AMP_EQ] = ACTIONS(3003), - [anon_sym_CARET_EQ] = ACTIONS(3003), - [anon_sym_PIPE_EQ] = ACTIONS(3003), - [anon_sym_LT_EQ_GT] = ACTIONS(3003), - [anon_sym_DASH_DASH] = ACTIONS(3003), - [anon_sym_PLUS_PLUS] = ACTIONS(3003), - [anon_sym_DASH_GT] = ACTIONS(3005), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(105), - [anon_sym_decltype] = ACTIONS(107), - [anon_sym_virtual] = ACTIONS(109), - [anon_sym_typename] = ACTIONS(3019), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3021), - [anon_sym_co_await] = ACTIONS(3005), - [anon_sym_new] = ACTIONS(3021), - [anon_sym_DASH_GT_STAR] = ACTIONS(3003), - [anon_sym_LPAREN_RPAREN] = ACTIONS(3003), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3003), - [anon_sym_DQUOTE_DQUOTE] = ACTIONS(3023), + [678] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token2] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1083] = { - [sym__declaration_modifiers] = STATE(1899), - [sym__declaration_specifiers] = STATE(4741), - [sym_attribute_specifier] = STATE(1899), - [sym_attribute_declaration] = STATE(1899), - [sym_ms_declspec_modifier] = STATE(1899), - [sym_storage_class_specifier] = STATE(1899), - [sym_type_qualifier] = STATE(1899), - [sym__type_specifier] = STATE(3417), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym_virtual_function_specifier] = STATE(1899), - [sym_dependent_type] = STATE(3139), - [sym_template_type] = STATE(2976), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(5131), - [sym_qualified_type_identifier] = STATE(3198), - [aux_sym__declaration_specifiers_repeat1] = STATE(1899), - [aux_sym_sized_type_specifier_repeat1] = STATE(3184), - [sym_identifier] = ACTIONS(3001), - [anon_sym_COMMA] = ACTIONS(3025), - [anon_sym_BANG] = ACTIONS(3027), - [anon_sym_TILDE] = ACTIONS(3025), - [anon_sym_DASH] = ACTIONS(3027), - [anon_sym_PLUS] = ACTIONS(3027), - [anon_sym_STAR] = ACTIONS(3027), - [anon_sym_SLASH] = ACTIONS(3027), - [anon_sym_PERCENT] = ACTIONS(3027), - [anon_sym_PIPE_PIPE] = ACTIONS(3025), - [anon_sym_AMP_AMP] = ACTIONS(3025), - [anon_sym_PIPE] = ACTIONS(3027), - [anon_sym_CARET] = ACTIONS(3027), - [anon_sym_AMP] = ACTIONS(3027), - [anon_sym_EQ_EQ] = ACTIONS(3025), - [anon_sym_BANG_EQ] = ACTIONS(3025), - [anon_sym_GT] = ACTIONS(3027), - [anon_sym_GT_EQ] = ACTIONS(3025), - [anon_sym_LT_EQ] = ACTIONS(3027), - [anon_sym_LT] = ACTIONS(3027), - [anon_sym_LT_LT] = ACTIONS(3027), - [anon_sym_GT_GT] = ACTIONS(3027), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3007), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1389), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_EQ] = ACTIONS(3027), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(3009), - [anon_sym_unsigned] = ACTIONS(3009), - [anon_sym_long] = ACTIONS(3009), - [anon_sym_short] = ACTIONS(3009), - [sym_primitive_type] = ACTIONS(2809), - [anon_sym_enum] = ACTIONS(3011), - [anon_sym_class] = ACTIONS(3013), - [anon_sym_struct] = ACTIONS(3015), - [anon_sym_union] = ACTIONS(3017), - [anon_sym_STAR_EQ] = ACTIONS(3025), - [anon_sym_SLASH_EQ] = ACTIONS(3025), - [anon_sym_PERCENT_EQ] = ACTIONS(3025), - [anon_sym_PLUS_EQ] = ACTIONS(3025), - [anon_sym_DASH_EQ] = ACTIONS(3025), - [anon_sym_LT_LT_EQ] = ACTIONS(3025), - [anon_sym_GT_GT_EQ] = ACTIONS(3025), - [anon_sym_AMP_EQ] = ACTIONS(3025), - [anon_sym_CARET_EQ] = ACTIONS(3025), - [anon_sym_PIPE_EQ] = ACTIONS(3025), - [anon_sym_LT_EQ_GT] = ACTIONS(3025), - [anon_sym_DASH_DASH] = ACTIONS(3025), - [anon_sym_PLUS_PLUS] = ACTIONS(3025), - [anon_sym_DASH_GT] = ACTIONS(3027), + [679] = { + [ts_builtin_sym_end] = ACTIONS(2597), + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(105), - [anon_sym_decltype] = ACTIONS(107), - [anon_sym_virtual] = ACTIONS(109), - [anon_sym_typename] = ACTIONS(3019), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3029), - [anon_sym_co_await] = ACTIONS(3027), - [anon_sym_new] = ACTIONS(3029), - [anon_sym_DASH_GT_STAR] = ACTIONS(3025), - [anon_sym_LPAREN_RPAREN] = ACTIONS(3025), - [anon_sym_LBRACK_RBRACK] = ACTIONS(3025), - [anon_sym_DQUOTE_DQUOTE] = ACTIONS(3031), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1084] = { - [sym__expression] = STATE(3430), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_initializer_list] = STATE(3429), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2308), - [anon_sym_COMMA] = ACTIONS(2308), - [anon_sym_RPAREN] = ACTIONS(2308), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_SLASH] = ACTIONS(2316), - [anon_sym_PERCENT] = ACTIONS(2308), - [anon_sym_PIPE_PIPE] = ACTIONS(2308), - [anon_sym_AMP_AMP] = ACTIONS(2308), - [anon_sym_PIPE] = ACTIONS(2316), - [anon_sym_CARET] = ACTIONS(2308), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_EQ_EQ] = ACTIONS(2308), - [anon_sym_BANG_EQ] = ACTIONS(2308), - [anon_sym_GT] = ACTIONS(2316), - [anon_sym_GT_EQ] = ACTIONS(2308), - [anon_sym_LT_EQ] = ACTIONS(2316), - [anon_sym_LT] = ACTIONS(2316), - [anon_sym_LT_LT] = ACTIONS(2308), - [anon_sym_GT_GT] = ACTIONS(2308), - [anon_sym_SEMI] = ACTIONS(2308), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1465), - [anon_sym_RBRACE] = ACTIONS(2308), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_QMARK] = ACTIONS(2308), - [anon_sym_LT_EQ_GT] = ACTIONS(2308), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(2316), - [anon_sym_DASH_GT] = ACTIONS(2308), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [680] = { + [ts_builtin_sym_end] = ACTIONS(2561), + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1085] = { - [sym__expression] = STATE(3722), - [sym_conditional_expression] = STATE(3881), - [sym_assignment_expression] = STATE(3881), - [sym_pointer_expression] = STATE(2977), - [sym_unary_expression] = STATE(3881), - [sym_binary_expression] = STATE(3881), - [sym_update_expression] = STATE(3881), - [sym_cast_expression] = STATE(3881), - [sym_sizeof_expression] = STATE(3881), - [sym_subscript_expression] = STATE(2977), - [sym_call_expression] = STATE(2977), - [sym_field_expression] = STATE(2977), - [sym_compound_literal_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(2977), - [sym_initializer_list] = STATE(3900), - [sym_char_literal] = STATE(3701), - [sym_concatenated_string] = STATE(3701), - [sym_string_literal] = STATE(3219), - [sym__class_name] = STATE(6063), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3881), - [sym_co_await_expression] = STATE(3881), - [sym_new_expression] = STATE(3881), - [sym_delete_expression] = STATE(3881), - [sym_requires_clause] = STATE(3881), - [sym_requires_expression] = STATE(3881), - [sym_lambda_expression] = STATE(3881), - [sym_lambda_capture_specifier] = STATE(4519), - [sym_fold_expression] = STATE(3881), - [sym_parameter_pack_expansion] = STATE(3881), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4642), - [sym_qualified_identifier] = STATE(2977), - [sym_qualified_type_identifier] = STATE(6063), - [sym_user_defined_literal] = STATE(3881), - [sym_identifier] = ACTIONS(3035), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2308), - [anon_sym_COMMA] = ACTIONS(2308), - [anon_sym_LPAREN2] = ACTIONS(2531), - [anon_sym_BANG] = ACTIONS(2535), - [anon_sym_TILDE] = ACTIONS(2533), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_STAR] = ACTIONS(2537), - [anon_sym_SLASH] = ACTIONS(2316), - [anon_sym_PERCENT] = ACTIONS(2308), - [anon_sym_PIPE_PIPE] = ACTIONS(2308), - [anon_sym_AMP_AMP] = ACTIONS(2308), - [anon_sym_PIPE] = ACTIONS(2316), - [anon_sym_CARET] = ACTIONS(2308), - [anon_sym_AMP] = ACTIONS(2839), - [anon_sym_EQ_EQ] = ACTIONS(2308), - [anon_sym_BANG_EQ] = ACTIONS(2308), - [anon_sym_GT] = ACTIONS(2316), - [anon_sym_GT_EQ] = ACTIONS(2316), - [anon_sym_LT_EQ] = ACTIONS(2316), - [anon_sym_LT] = ACTIONS(2316), - [anon_sym_LT_LT] = ACTIONS(2308), - [anon_sym_GT_GT] = ACTIONS(2316), - [anon_sym_COLON_COLON] = ACTIONS(2539), - [anon_sym_LBRACE] = ACTIONS(3037), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(2845), - [anon_sym_QMARK] = ACTIONS(2308), - [anon_sym_LT_EQ_GT] = ACTIONS(2308), - [anon_sym_DASH_DASH] = ACTIONS(2553), - [anon_sym_PLUS_PLUS] = ACTIONS(2553), - [anon_sym_sizeof] = ACTIONS(2555), - [anon_sym_DOT] = ACTIONS(2316), - [anon_sym_DASH_GT] = ACTIONS(2308), - [sym_number_literal] = ACTIONS(2557), - [anon_sym_L_SQUOTE] = ACTIONS(2559), - [anon_sym_u_SQUOTE] = ACTIONS(2559), - [anon_sym_U_SQUOTE] = ACTIONS(2559), - [anon_sym_u8_SQUOTE] = ACTIONS(2559), - [anon_sym_SQUOTE] = ACTIONS(2559), + [681] = { + [ts_builtin_sym_end] = ACTIONS(2561), + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), [anon_sym_L_DQUOTE] = ACTIONS(2561), [anon_sym_u_DQUOTE] = ACTIONS(2561), [anon_sym_U_DQUOTE] = ACTIONS(2561), [anon_sym_u8_DQUOTE] = ACTIONS(2561), [anon_sym_DQUOTE] = ACTIONS(2561), - [sym_true] = ACTIONS(2563), - [sym_false] = ACTIONS(2563), - [sym_null] = ACTIONS(2563), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_GT2] = ACTIONS(2308), - [anon_sym_delete] = ACTIONS(2573), - [anon_sym_co_await] = ACTIONS(2575), - [anon_sym_new] = ACTIONS(2577), - [anon_sym_requires] = ACTIONS(2579), - [sym_this] = ACTIONS(2563), - [sym_nullptr] = ACTIONS(2563), - [sym_raw_string_literal] = ACTIONS(2581), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1086] = { - [sym__expression] = STATE(3430), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2981), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2981), - [sym_call_expression] = STATE(2981), - [sym_field_expression] = STATE(2981), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2981), - [sym_initializer_list] = STATE(3429), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2981), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3039), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2308), - [anon_sym_COMMA] = ACTIONS(2308), - [anon_sym_LPAREN2] = ACTIONS(3041), - [anon_sym_BANG] = ACTIONS(3043), - [anon_sym_TILDE] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_SLASH] = ACTIONS(2316), - [anon_sym_PERCENT] = ACTIONS(2308), - [anon_sym_PIPE_PIPE] = ACTIONS(2308), - [anon_sym_AMP_AMP] = ACTIONS(2308), - [anon_sym_PIPE] = ACTIONS(2316), - [anon_sym_CARET] = ACTIONS(2308), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_EQ_EQ] = ACTIONS(2308), - [anon_sym_BANG_EQ] = ACTIONS(2308), - [anon_sym_GT] = ACTIONS(2316), - [anon_sym_GT_EQ] = ACTIONS(2308), - [anon_sym_LT_EQ] = ACTIONS(2316), - [anon_sym_LT] = ACTIONS(2316), - [anon_sym_LT_LT] = ACTIONS(2308), - [anon_sym_GT_GT] = ACTIONS(2308), - [anon_sym_COLON_COLON] = ACTIONS(3047), - [anon_sym_LBRACE] = ACTIONS(1465), - [anon_sym_LBRACK] = ACTIONS(2272), - [anon_sym_RBRACK] = ACTIONS(2308), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_QMARK] = ACTIONS(2308), - [anon_sym_LT_EQ_GT] = ACTIONS(2308), - [anon_sym_DASH_DASH] = ACTIONS(3049), - [anon_sym_PLUS_PLUS] = ACTIONS(3049), - [anon_sym_sizeof] = ACTIONS(3051), - [anon_sym_DOT] = ACTIONS(2316), - [anon_sym_DASH_GT] = ACTIONS(2308), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3053), - [anon_sym_co_await] = ACTIONS(3055), - [anon_sym_new] = ACTIONS(3057), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [682] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token2] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1087] = { - [sym__expression] = STATE(3906), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(3196), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(3196), - [sym_call_expression] = STATE(3196), - [sym_field_expression] = STATE(3196), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(3196), - [sym_initializer_list] = STATE(3429), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(3196), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3059), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2308), - [anon_sym_LPAREN2] = ACTIONS(3061), - [anon_sym_BANG] = ACTIONS(3063), - [anon_sym_TILDE] = ACTIONS(3065), - [anon_sym_DASH] = ACTIONS(3063), - [anon_sym_PLUS] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_SLASH] = ACTIONS(2316), - [anon_sym_PERCENT] = ACTIONS(2308), - [anon_sym_PIPE_PIPE] = ACTIONS(2308), - [anon_sym_AMP_AMP] = ACTIONS(2308), - [anon_sym_PIPE] = ACTIONS(2316), - [anon_sym_CARET] = ACTIONS(2308), - [anon_sym_AMP] = ACTIONS(2897), - [anon_sym_EQ_EQ] = ACTIONS(2308), - [anon_sym_BANG_EQ] = ACTIONS(2308), - [anon_sym_GT] = ACTIONS(2316), - [anon_sym_GT_EQ] = ACTIONS(2308), - [anon_sym_LT_EQ] = ACTIONS(2316), - [anon_sym_LT] = ACTIONS(2316), - [anon_sym_LT_LT] = ACTIONS(2308), - [anon_sym_GT_GT] = ACTIONS(2308), - [anon_sym_COLON_COLON] = ACTIONS(3069), - [anon_sym_LBRACE] = ACTIONS(1465), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_COLON] = ACTIONS(2316), - [anon_sym_QMARK] = ACTIONS(2308), - [anon_sym_LT_EQ_GT] = ACTIONS(2308), - [anon_sym_DASH_DASH] = ACTIONS(3071), - [anon_sym_PLUS_PLUS] = ACTIONS(3071), - [anon_sym_sizeof] = ACTIONS(3073), - [anon_sym_DOT] = ACTIONS(2316), - [anon_sym_DASH_GT] = ACTIONS(2308), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [683] = { + [ts_builtin_sym_end] = ACTIONS(2597), + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3075), - [anon_sym_co_await] = ACTIONS(3077), - [anon_sym_new] = ACTIONS(3079), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1088] = { - [sym__declaration_modifiers] = STATE(1892), - [sym__declaration_specifiers] = STATE(2998), - [sym_attribute_specifier] = STATE(1892), - [sym_attribute_declaration] = STATE(1892), - [sym_ms_declspec_modifier] = STATE(1892), - [sym_ms_based_modifier] = STATE(6716), - [sym__declarator] = STATE(5157), - [sym__abstract_declarator] = STATE(5498), - [sym_parenthesized_declarator] = STATE(4825), - [sym_abstract_parenthesized_declarator] = STATE(4832), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_abstract_pointer_declarator] = STATE(4832), - [sym_function_declarator] = STATE(4825), - [sym_abstract_function_declarator] = STATE(4832), - [sym_array_declarator] = STATE(4825), - [sym_abstract_array_declarator] = STATE(4832), - [sym_storage_class_specifier] = STATE(1892), - [sym_type_qualifier] = STATE(1892), - [sym__type_specifier] = STATE(2596), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_parameter_list] = STATE(4080), - [sym_parameter_declaration] = STATE(5626), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym_virtual_function_specifier] = STATE(1892), - [sym_dependent_type] = STATE(3139), - [sym_optional_parameter_declaration] = STATE(5626), - [sym_variadic_parameter_declaration] = STATE(5626), - [sym_reference_declarator] = STATE(4825), - [sym_abstract_reference_declarator] = STATE(4832), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(2976), - [sym_template_function] = STATE(4825), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4665), - [sym_qualified_identifier] = STATE(4825), - [sym_qualified_type_identifier] = STATE(3198), - [sym_operator_name] = STATE(4825), - [aux_sym__declaration_specifiers_repeat1] = STATE(1892), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [sym_identifier] = ACTIONS(3081), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3083), - [anon_sym_RPAREN] = ACTIONS(3085), - [anon_sym_LPAREN2] = ACTIONS(3087), - [anon_sym_TILDE] = ACTIONS(1517), - [anon_sym_STAR] = ACTIONS(3089), - [anon_sym_AMP_AMP] = ACTIONS(3091), - [anon_sym_AMP] = ACTIONS(3093), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3095), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1389), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(3097), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(2809), - [anon_sym_enum] = ACTIONS(1427), - [anon_sym_class] = ACTIONS(1429), - [anon_sym_struct] = ACTIONS(1431), - [anon_sym_union] = ACTIONS(1433), + [684] = { + [ts_builtin_sym_end] = ACTIONS(2597), + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(105), - [anon_sym_decltype] = ACTIONS(107), - [anon_sym_virtual] = ACTIONS(109), - [anon_sym_typename] = ACTIONS(1447), - [anon_sym_template] = ACTIONS(972), - [anon_sym_operator] = ACTIONS(1497), - }, - [1089] = { - [sym_identifier] = ACTIONS(3099), - [anon_sym_LPAREN2] = ACTIONS(3102), - [anon_sym_BANG] = ACTIONS(3105), - [anon_sym_TILDE] = ACTIONS(3102), - [anon_sym_DASH] = ACTIONS(3107), - [anon_sym_PLUS] = ACTIONS(3107), - [anon_sym_STAR] = ACTIONS(3102), - [anon_sym_AMP_AMP] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3099), - [anon_sym_SEMI] = ACTIONS(3105), - [anon_sym_extern] = ACTIONS(3111), - [anon_sym___attribute__] = ACTIONS(3111), - [anon_sym_COLON_COLON] = ACTIONS(3102), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3102), - [anon_sym___declspec] = ACTIONS(3111), - [anon_sym___based] = ACTIONS(3111), - [anon_sym_LBRACE] = ACTIONS(3105), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_static] = ACTIONS(3111), - [anon_sym_register] = ACTIONS(3111), - [anon_sym_inline] = ACTIONS(3111), - [anon_sym_thread_local] = ACTIONS(3111), - [anon_sym_const] = ACTIONS(3111), - [anon_sym_volatile] = ACTIONS(3111), - [anon_sym_restrict] = ACTIONS(3111), - [anon_sym__Atomic] = ACTIONS(3111), - [anon_sym_mutable] = ACTIONS(3111), - [anon_sym_constexpr] = ACTIONS(3111), - [anon_sym_constinit] = ACTIONS(3111), - [anon_sym_consteval] = ACTIONS(3111), - [anon_sym_signed] = ACTIONS(3111), - [anon_sym_unsigned] = ACTIONS(3111), - [anon_sym_long] = ACTIONS(3111), - [anon_sym_short] = ACTIONS(3111), - [sym_primitive_type] = ACTIONS(3099), - [anon_sym_enum] = ACTIONS(3111), - [anon_sym_class] = ACTIONS(3111), - [anon_sym_struct] = ACTIONS(3111), - [anon_sym_union] = ACTIONS(3111), - [anon_sym_if] = ACTIONS(3107), - [anon_sym_switch] = ACTIONS(3107), - [anon_sym_case] = ACTIONS(3107), - [anon_sym_default] = ACTIONS(3107), - [anon_sym_while] = ACTIONS(3107), - [anon_sym_do] = ACTIONS(3107), - [anon_sym_for] = ACTIONS(3107), - [anon_sym_return] = ACTIONS(3107), - [anon_sym_break] = ACTIONS(3107), - [anon_sym_continue] = ACTIONS(3107), - [anon_sym_goto] = ACTIONS(3107), - [anon_sym_DASH_DASH] = ACTIONS(3105), - [anon_sym_PLUS_PLUS] = ACTIONS(3105), - [anon_sym_sizeof] = ACTIONS(3107), - [sym_number_literal] = ACTIONS(3105), - [anon_sym_L_SQUOTE] = ACTIONS(3105), - [anon_sym_u_SQUOTE] = ACTIONS(3105), - [anon_sym_U_SQUOTE] = ACTIONS(3105), - [anon_sym_u8_SQUOTE] = ACTIONS(3105), - [anon_sym_SQUOTE] = ACTIONS(3105), - [anon_sym_L_DQUOTE] = ACTIONS(3105), - [anon_sym_u_DQUOTE] = ACTIONS(3105), - [anon_sym_U_DQUOTE] = ACTIONS(3105), - [anon_sym_u8_DQUOTE] = ACTIONS(3105), - [anon_sym_DQUOTE] = ACTIONS(3105), - [sym_true] = ACTIONS(3107), - [sym_false] = ACTIONS(3107), - [sym_null] = ACTIONS(3107), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3111), - [anon_sym_decltype] = ACTIONS(3111), - [anon_sym_virtual] = ACTIONS(3111), - [anon_sym_explicit] = ACTIONS(3111), - [anon_sym_typename] = ACTIONS(3111), - [anon_sym_template] = ACTIONS(3099), - [anon_sym_operator] = ACTIONS(3111), - [anon_sym_try] = ACTIONS(3107), - [anon_sym_delete] = ACTIONS(3107), - [anon_sym_throw] = ACTIONS(3107), - [anon_sym_co_return] = ACTIONS(3107), - [anon_sym_co_yield] = ACTIONS(3107), - [anon_sym_co_await] = ACTIONS(3107), - [anon_sym_new] = ACTIONS(3107), - [anon_sym_requires] = ACTIONS(3107), - [sym_this] = ACTIONS(3107), - [sym_nullptr] = ACTIONS(3107), - [sym_raw_string_literal] = ACTIONS(3105), - }, - [1090] = { - [sym_identifier] = ACTIONS(3113), - [anon_sym_LPAREN2] = ACTIONS(3115), - [anon_sym_BANG] = ACTIONS(3115), - [anon_sym_TILDE] = ACTIONS(3115), - [anon_sym_DASH] = ACTIONS(3113), - [anon_sym_PLUS] = ACTIONS(3113), - [anon_sym_STAR] = ACTIONS(3115), - [anon_sym_AMP_AMP] = ACTIONS(3115), - [anon_sym_AMP] = ACTIONS(3113), - [anon_sym_SEMI] = ACTIONS(3115), - [anon_sym_extern] = ACTIONS(3113), - [anon_sym___attribute__] = ACTIONS(3113), - [anon_sym_COLON_COLON] = ACTIONS(3115), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3115), - [anon_sym___declspec] = ACTIONS(3113), - [anon_sym___based] = ACTIONS(3113), - [anon_sym_LBRACE] = ACTIONS(3115), - [anon_sym_LBRACK] = ACTIONS(3113), - [anon_sym_static] = ACTIONS(3113), - [anon_sym_register] = ACTIONS(3113), - [anon_sym_inline] = ACTIONS(3113), - [anon_sym_thread_local] = ACTIONS(3113), - [anon_sym_const] = ACTIONS(3113), - [anon_sym_volatile] = ACTIONS(3113), - [anon_sym_restrict] = ACTIONS(3113), - [anon_sym__Atomic] = ACTIONS(3113), - [anon_sym_mutable] = ACTIONS(3113), - [anon_sym_constexpr] = ACTIONS(3113), - [anon_sym_constinit] = ACTIONS(3113), - [anon_sym_consteval] = ACTIONS(3113), - [anon_sym_signed] = ACTIONS(3113), - [anon_sym_unsigned] = ACTIONS(3113), - [anon_sym_long] = ACTIONS(3113), - [anon_sym_short] = ACTIONS(3113), - [sym_primitive_type] = ACTIONS(3113), - [anon_sym_enum] = ACTIONS(3113), - [anon_sym_class] = ACTIONS(3113), - [anon_sym_struct] = ACTIONS(3113), - [anon_sym_union] = ACTIONS(3113), - [anon_sym_if] = ACTIONS(3113), - [anon_sym_switch] = ACTIONS(3113), - [anon_sym_case] = ACTIONS(3113), - [anon_sym_default] = ACTIONS(3113), - [anon_sym_while] = ACTIONS(3113), - [anon_sym_do] = ACTIONS(3113), - [anon_sym_for] = ACTIONS(3113), - [anon_sym_return] = ACTIONS(3113), - [anon_sym_break] = ACTIONS(3113), - [anon_sym_continue] = ACTIONS(3113), - [anon_sym_goto] = ACTIONS(3113), - [anon_sym_DASH_DASH] = ACTIONS(3115), - [anon_sym_PLUS_PLUS] = ACTIONS(3115), - [anon_sym_sizeof] = ACTIONS(3113), - [sym_number_literal] = ACTIONS(3115), - [anon_sym_L_SQUOTE] = ACTIONS(3115), - [anon_sym_u_SQUOTE] = ACTIONS(3115), - [anon_sym_U_SQUOTE] = ACTIONS(3115), - [anon_sym_u8_SQUOTE] = ACTIONS(3115), - [anon_sym_SQUOTE] = ACTIONS(3115), - [anon_sym_L_DQUOTE] = ACTIONS(3115), - [anon_sym_u_DQUOTE] = ACTIONS(3115), - [anon_sym_U_DQUOTE] = ACTIONS(3115), - [anon_sym_u8_DQUOTE] = ACTIONS(3115), - [anon_sym_DQUOTE] = ACTIONS(3115), - [sym_true] = ACTIONS(3113), - [sym_false] = ACTIONS(3113), - [sym_null] = ACTIONS(3113), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3113), - [anon_sym_decltype] = ACTIONS(3113), - [anon_sym_virtual] = ACTIONS(3113), - [anon_sym_explicit] = ACTIONS(3113), - [anon_sym_typename] = ACTIONS(3113), - [anon_sym_template] = ACTIONS(3113), - [anon_sym_operator] = ACTIONS(3113), - [anon_sym_try] = ACTIONS(3113), - [anon_sym_delete] = ACTIONS(3113), - [anon_sym_throw] = ACTIONS(3113), - [anon_sym_co_return] = ACTIONS(3113), - [anon_sym_co_yield] = ACTIONS(3113), - [anon_sym_co_await] = ACTIONS(3113), - [anon_sym_new] = ACTIONS(3113), - [anon_sym_requires] = ACTIONS(3113), - [sym_this] = ACTIONS(3113), - [sym_nullptr] = ACTIONS(3113), - [sym_raw_string_literal] = ACTIONS(3115), - }, - [1091] = { - [sym_identifier] = ACTIONS(3117), - [anon_sym_LPAREN2] = ACTIONS(3119), - [anon_sym_BANG] = ACTIONS(3119), - [anon_sym_TILDE] = ACTIONS(3119), - [anon_sym_DASH] = ACTIONS(3117), - [anon_sym_PLUS] = ACTIONS(3117), - [anon_sym_STAR] = ACTIONS(3119), - [anon_sym_AMP_AMP] = ACTIONS(3119), - [anon_sym_AMP] = ACTIONS(3117), - [anon_sym_SEMI] = ACTIONS(3119), - [anon_sym_extern] = ACTIONS(3117), - [anon_sym___attribute__] = ACTIONS(3117), - [anon_sym_COLON_COLON] = ACTIONS(3119), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3119), - [anon_sym___declspec] = ACTIONS(3117), - [anon_sym___based] = ACTIONS(3117), - [anon_sym_LBRACE] = ACTIONS(3119), - [anon_sym_LBRACK] = ACTIONS(3117), - [anon_sym_static] = ACTIONS(3117), - [anon_sym_register] = ACTIONS(3117), - [anon_sym_inline] = ACTIONS(3117), - [anon_sym_thread_local] = ACTIONS(3117), - [anon_sym_const] = ACTIONS(3117), - [anon_sym_volatile] = ACTIONS(3117), - [anon_sym_restrict] = ACTIONS(3117), - [anon_sym__Atomic] = ACTIONS(3117), - [anon_sym_mutable] = ACTIONS(3117), - [anon_sym_constexpr] = ACTIONS(3117), - [anon_sym_constinit] = ACTIONS(3117), - [anon_sym_consteval] = ACTIONS(3117), - [anon_sym_signed] = ACTIONS(3117), - [anon_sym_unsigned] = ACTIONS(3117), - [anon_sym_long] = ACTIONS(3117), - [anon_sym_short] = ACTIONS(3117), - [sym_primitive_type] = ACTIONS(3117), - [anon_sym_enum] = ACTIONS(3117), - [anon_sym_class] = ACTIONS(3117), - [anon_sym_struct] = ACTIONS(3117), - [anon_sym_union] = ACTIONS(3117), - [anon_sym_if] = ACTIONS(3117), - [anon_sym_switch] = ACTIONS(3117), - [anon_sym_case] = ACTIONS(3117), - [anon_sym_default] = ACTIONS(3117), - [anon_sym_while] = ACTIONS(3117), - [anon_sym_do] = ACTIONS(3117), - [anon_sym_for] = ACTIONS(3117), - [anon_sym_return] = ACTIONS(3117), - [anon_sym_break] = ACTIONS(3117), - [anon_sym_continue] = ACTIONS(3117), - [anon_sym_goto] = ACTIONS(3117), - [anon_sym_DASH_DASH] = ACTIONS(3119), - [anon_sym_PLUS_PLUS] = ACTIONS(3119), - [anon_sym_sizeof] = ACTIONS(3117), - [sym_number_literal] = ACTIONS(3119), - [anon_sym_L_SQUOTE] = ACTIONS(3119), - [anon_sym_u_SQUOTE] = ACTIONS(3119), - [anon_sym_U_SQUOTE] = ACTIONS(3119), - [anon_sym_u8_SQUOTE] = ACTIONS(3119), - [anon_sym_SQUOTE] = ACTIONS(3119), - [anon_sym_L_DQUOTE] = ACTIONS(3119), - [anon_sym_u_DQUOTE] = ACTIONS(3119), - [anon_sym_U_DQUOTE] = ACTIONS(3119), - [anon_sym_u8_DQUOTE] = ACTIONS(3119), - [anon_sym_DQUOTE] = ACTIONS(3119), - [sym_true] = ACTIONS(3117), - [sym_false] = ACTIONS(3117), - [sym_null] = ACTIONS(3117), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3117), - [anon_sym_decltype] = ACTIONS(3117), - [anon_sym_virtual] = ACTIONS(3117), - [anon_sym_explicit] = ACTIONS(3117), - [anon_sym_typename] = ACTIONS(3117), - [anon_sym_template] = ACTIONS(3117), - [anon_sym_operator] = ACTIONS(3117), - [anon_sym_try] = ACTIONS(3117), - [anon_sym_delete] = ACTIONS(3117), - [anon_sym_throw] = ACTIONS(3117), - [anon_sym_co_return] = ACTIONS(3117), - [anon_sym_co_yield] = ACTIONS(3117), - [anon_sym_co_await] = ACTIONS(3117), - [anon_sym_new] = ACTIONS(3117), - [anon_sym_requires] = ACTIONS(3117), - [sym_this] = ACTIONS(3117), - [sym_nullptr] = ACTIONS(3117), - [sym_raw_string_literal] = ACTIONS(3119), - }, - [1092] = { - [sym_ms_based_modifier] = STATE(6716), - [sym__declarator] = STATE(5033), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4825), - [sym_array_declarator] = STATE(4825), - [sym__expression] = STATE(2738), - [sym_conditional_expression] = STATE(2765), - [sym_assignment_expression] = STATE(2765), - [sym_pointer_expression] = STATE(2827), - [sym_unary_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_update_expression] = STATE(2765), - [sym_cast_expression] = STATE(2765), - [sym_sizeof_expression] = STATE(2765), - [sym_subscript_expression] = STATE(2827), - [sym_call_expression] = STATE(2827), - [sym_field_expression] = STATE(2827), - [sym_compound_literal_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2827), - [sym_char_literal] = STATE(2674), - [sym_concatenated_string] = STATE(2674), - [sym_string_literal] = STATE(2093), - [sym__class_name] = STATE(6297), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2693), - [sym_co_await_expression] = STATE(2765), - [sym_new_expression] = STATE(2765), - [sym_delete_expression] = STATE(2765), - [sym_requires_clause] = STATE(2765), - [sym_requires_expression] = STATE(2765), - [sym_lambda_expression] = STATE(2765), - [sym_lambda_capture_specifier] = STATE(4512), - [sym_fold_expression] = STATE(2765), - [sym_parameter_pack_expansion] = STATE(2765), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4644), - [sym_qualified_identifier] = STATE(2698), - [sym_qualified_type_identifier] = STATE(6297), - [sym_operator_name] = STATE(4825), - [sym_user_defined_literal] = STATE(2765), - [sym_identifier] = ACTIONS(2923), - [anon_sym_LPAREN2] = ACTIONS(1469), - [anon_sym_BANG] = ACTIONS(1417), - [anon_sym_TILDE] = ACTIONS(1471), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1473), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1475), - [anon_sym_COLON_COLON] = ACTIONS(1423), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1477), - [sym_primitive_type] = ACTIONS(2369), - [anon_sym_DASH_DASH] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [anon_sym_sizeof] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(1439), - [anon_sym_L_SQUOTE] = ACTIONS(1441), - [anon_sym_u_SQUOTE] = ACTIONS(1441), - [anon_sym_U_SQUOTE] = ACTIONS(1441), - [anon_sym_u8_SQUOTE] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1441), - [anon_sym_L_DQUOTE] = ACTIONS(1443), - [anon_sym_u_DQUOTE] = ACTIONS(1443), - [anon_sym_U_DQUOTE] = ACTIONS(1443), - [anon_sym_u8_DQUOTE] = ACTIONS(1443), - [anon_sym_DQUOTE] = ACTIONS(1443), - [sym_true] = ACTIONS(1445), - [sym_false] = ACTIONS(1445), - [sym_null] = ACTIONS(1445), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_operator] = ACTIONS(1497), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_co_await] = ACTIONS(1451), - [anon_sym_new] = ACTIONS(1453), - [anon_sym_requires] = ACTIONS(1455), - [sym_this] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(1445), - [sym_raw_string_literal] = ACTIONS(1457), - }, - [1093] = { - [sym_catch_clause] = STATE(1093), - [aux_sym_constructor_try_statement_repeat1] = STATE(1093), - [sym_identifier] = ACTIONS(2263), - [anon_sym_LPAREN2] = ACTIONS(2265), - [anon_sym_BANG] = ACTIONS(2265), - [anon_sym_TILDE] = ACTIONS(2265), - [anon_sym_DASH] = ACTIONS(2263), - [anon_sym_PLUS] = ACTIONS(2263), - [anon_sym_STAR] = ACTIONS(2265), - [anon_sym_AMP] = ACTIONS(2265), - [anon_sym_SEMI] = ACTIONS(2265), - [anon_sym_typedef] = ACTIONS(2263), - [anon_sym_extern] = ACTIONS(2263), - [anon_sym___attribute__] = ACTIONS(2263), - [anon_sym_COLON_COLON] = ACTIONS(2265), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2265), - [anon_sym___declspec] = ACTIONS(2263), - [anon_sym_LBRACE] = ACTIONS(2265), - [anon_sym_LBRACK] = ACTIONS(2263), - [anon_sym_static] = ACTIONS(2263), - [anon_sym_register] = ACTIONS(2263), - [anon_sym_inline] = ACTIONS(2263), - [anon_sym_thread_local] = ACTIONS(2263), - [anon_sym_const] = ACTIONS(2263), - [anon_sym_volatile] = ACTIONS(2263), - [anon_sym_restrict] = ACTIONS(2263), - [anon_sym__Atomic] = ACTIONS(2263), - [anon_sym_mutable] = ACTIONS(2263), - [anon_sym_constexpr] = ACTIONS(2263), - [anon_sym_constinit] = ACTIONS(2263), - [anon_sym_consteval] = ACTIONS(2263), - [anon_sym_signed] = ACTIONS(2263), - [anon_sym_unsigned] = ACTIONS(2263), - [anon_sym_long] = ACTIONS(2263), - [anon_sym_short] = ACTIONS(2263), - [sym_primitive_type] = ACTIONS(2263), - [anon_sym_enum] = ACTIONS(2263), - [anon_sym_class] = ACTIONS(2263), - [anon_sym_struct] = ACTIONS(2263), - [anon_sym_union] = ACTIONS(2263), - [anon_sym_if] = ACTIONS(2263), - [anon_sym_else] = ACTIONS(2263), - [anon_sym_switch] = ACTIONS(2263), - [anon_sym_while] = ACTIONS(2263), - [anon_sym_do] = ACTIONS(2263), - [anon_sym_for] = ACTIONS(2263), - [anon_sym_return] = ACTIONS(2263), - [anon_sym_break] = ACTIONS(2263), - [anon_sym_continue] = ACTIONS(2263), - [anon_sym_goto] = ACTIONS(2263), - [anon_sym_DASH_DASH] = ACTIONS(2265), - [anon_sym_PLUS_PLUS] = ACTIONS(2265), - [anon_sym_sizeof] = ACTIONS(2263), - [sym_number_literal] = ACTIONS(2265), - [anon_sym_L_SQUOTE] = ACTIONS(2265), - [anon_sym_u_SQUOTE] = ACTIONS(2265), - [anon_sym_U_SQUOTE] = ACTIONS(2265), - [anon_sym_u8_SQUOTE] = ACTIONS(2265), - [anon_sym_SQUOTE] = ACTIONS(2265), - [anon_sym_L_DQUOTE] = ACTIONS(2265), - [anon_sym_u_DQUOTE] = ACTIONS(2265), - [anon_sym_U_DQUOTE] = ACTIONS(2265), - [anon_sym_u8_DQUOTE] = ACTIONS(2265), - [anon_sym_DQUOTE] = ACTIONS(2265), - [sym_true] = ACTIONS(2263), - [sym_false] = ACTIONS(2263), - [sym_null] = ACTIONS(2263), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2263), - [anon_sym_decltype] = ACTIONS(2263), - [anon_sym_virtual] = ACTIONS(2263), - [anon_sym_typename] = ACTIONS(2263), - [anon_sym_template] = ACTIONS(2263), - [anon_sym_try] = ACTIONS(2263), - [anon_sym_delete] = ACTIONS(2263), - [anon_sym_throw] = ACTIONS(2263), - [anon_sym_co_return] = ACTIONS(2263), - [anon_sym_co_yield] = ACTIONS(2263), - [anon_sym_catch] = ACTIONS(3121), - [anon_sym_co_await] = ACTIONS(2263), - [anon_sym_new] = ACTIONS(2263), - [anon_sym_requires] = ACTIONS(2263), - [sym_this] = ACTIONS(2263), - [sym_nullptr] = ACTIONS(2263), - [sym_raw_string_literal] = ACTIONS(2265), - }, - [1094] = { - [sym_catch_clause] = STATE(1093), - [aux_sym_constructor_try_statement_repeat1] = STATE(1093), - [sym_identifier] = ACTIONS(2257), - [anon_sym_LPAREN2] = ACTIONS(2259), - [anon_sym_BANG] = ACTIONS(2259), - [anon_sym_TILDE] = ACTIONS(2259), - [anon_sym_DASH] = ACTIONS(2257), - [anon_sym_PLUS] = ACTIONS(2257), - [anon_sym_STAR] = ACTIONS(2259), - [anon_sym_AMP] = ACTIONS(2259), - [anon_sym_SEMI] = ACTIONS(2259), - [anon_sym_typedef] = ACTIONS(2257), - [anon_sym_extern] = ACTIONS(2257), - [anon_sym___attribute__] = ACTIONS(2257), - [anon_sym_COLON_COLON] = ACTIONS(2259), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2259), - [anon_sym___declspec] = ACTIONS(2257), - [anon_sym_LBRACE] = ACTIONS(2259), - [anon_sym_LBRACK] = ACTIONS(2257), - [anon_sym_static] = ACTIONS(2257), - [anon_sym_register] = ACTIONS(2257), - [anon_sym_inline] = ACTIONS(2257), - [anon_sym_thread_local] = ACTIONS(2257), - [anon_sym_const] = ACTIONS(2257), - [anon_sym_volatile] = ACTIONS(2257), - [anon_sym_restrict] = ACTIONS(2257), - [anon_sym__Atomic] = ACTIONS(2257), - [anon_sym_mutable] = ACTIONS(2257), - [anon_sym_constexpr] = ACTIONS(2257), - [anon_sym_constinit] = ACTIONS(2257), - [anon_sym_consteval] = ACTIONS(2257), - [anon_sym_signed] = ACTIONS(2257), - [anon_sym_unsigned] = ACTIONS(2257), - [anon_sym_long] = ACTIONS(2257), - [anon_sym_short] = ACTIONS(2257), - [sym_primitive_type] = ACTIONS(2257), - [anon_sym_enum] = ACTIONS(2257), - [anon_sym_class] = ACTIONS(2257), - [anon_sym_struct] = ACTIONS(2257), - [anon_sym_union] = ACTIONS(2257), - [anon_sym_if] = ACTIONS(2257), - [anon_sym_else] = ACTIONS(2257), - [anon_sym_switch] = ACTIONS(2257), - [anon_sym_while] = ACTIONS(2257), - [anon_sym_do] = ACTIONS(2257), - [anon_sym_for] = ACTIONS(2257), - [anon_sym_return] = ACTIONS(2257), - [anon_sym_break] = ACTIONS(2257), - [anon_sym_continue] = ACTIONS(2257), - [anon_sym_goto] = ACTIONS(2257), - [anon_sym_DASH_DASH] = ACTIONS(2259), - [anon_sym_PLUS_PLUS] = ACTIONS(2259), - [anon_sym_sizeof] = ACTIONS(2257), - [sym_number_literal] = ACTIONS(2259), - [anon_sym_L_SQUOTE] = ACTIONS(2259), - [anon_sym_u_SQUOTE] = ACTIONS(2259), - [anon_sym_U_SQUOTE] = ACTIONS(2259), - [anon_sym_u8_SQUOTE] = ACTIONS(2259), - [anon_sym_SQUOTE] = ACTIONS(2259), - [anon_sym_L_DQUOTE] = ACTIONS(2259), - [anon_sym_u_DQUOTE] = ACTIONS(2259), - [anon_sym_U_DQUOTE] = ACTIONS(2259), - [anon_sym_u8_DQUOTE] = ACTIONS(2259), - [anon_sym_DQUOTE] = ACTIONS(2259), - [sym_true] = ACTIONS(2257), - [sym_false] = ACTIONS(2257), - [sym_null] = ACTIONS(2257), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2257), - [anon_sym_decltype] = ACTIONS(2257), - [anon_sym_virtual] = ACTIONS(2257), - [anon_sym_typename] = ACTIONS(2257), - [anon_sym_template] = ACTIONS(2257), - [anon_sym_try] = ACTIONS(2257), - [anon_sym_delete] = ACTIONS(2257), - [anon_sym_throw] = ACTIONS(2257), - [anon_sym_co_return] = ACTIONS(2257), - [anon_sym_co_yield] = ACTIONS(2257), - [anon_sym_catch] = ACTIONS(3124), - [anon_sym_co_await] = ACTIONS(2257), - [anon_sym_new] = ACTIONS(2257), - [anon_sym_requires] = ACTIONS(2257), - [sym_this] = ACTIONS(2257), - [sym_nullptr] = ACTIONS(2257), - [sym_raw_string_literal] = ACTIONS(2259), - }, - [1095] = { - [sym_ms_based_modifier] = STATE(6716), - [sym__declarator] = STATE(5033), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4825), - [sym_array_declarator] = STATE(4825), - [sym__expression] = STATE(2558), - [sym_conditional_expression] = STATE(2541), - [sym_assignment_expression] = STATE(2541), - [sym_pointer_expression] = STATE(2531), - [sym_unary_expression] = STATE(2541), - [sym_binary_expression] = STATE(2541), - [sym_update_expression] = STATE(2541), - [sym_cast_expression] = STATE(2541), - [sym_sizeof_expression] = STATE(2541), - [sym_subscript_expression] = STATE(2531), - [sym_call_expression] = STATE(2531), - [sym_field_expression] = STATE(2531), - [sym_compound_literal_expression] = STATE(2541), - [sym_parenthesized_expression] = STATE(2531), - [sym_char_literal] = STATE(2481), - [sym_concatenated_string] = STATE(2481), - [sym_string_literal] = STATE(2063), - [sym__class_name] = STATE(6239), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2814), - [sym_co_await_expression] = STATE(2541), - [sym_new_expression] = STATE(2541), - [sym_delete_expression] = STATE(2541), - [sym_requires_clause] = STATE(2541), - [sym_requires_expression] = STATE(2541), - [sym_lambda_expression] = STATE(2541), - [sym_lambda_capture_specifier] = STATE(4508), - [sym_fold_expression] = STATE(2541), - [sym_parameter_pack_expansion] = STATE(2541), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4651), - [sym_qualified_identifier] = STATE(2821), - [sym_qualified_type_identifier] = STATE(6239), - [sym_operator_name] = STATE(4825), - [sym_user_defined_literal] = STATE(2541), - [sym_identifier] = ACTIONS(2911), - [anon_sym_LPAREN2] = ACTIONS(2913), - [anon_sym_BANG] = ACTIONS(2314), - [anon_sym_TILDE] = ACTIONS(2915), - [anon_sym_DASH] = ACTIONS(2312), - [anon_sym_PLUS] = ACTIONS(2312), - [anon_sym_STAR] = ACTIONS(27), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(2318), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1477), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(2322), - [anon_sym_PLUS_PLUS] = ACTIONS(2322), - [anon_sym_sizeof] = ACTIONS(2324), - [sym_number_literal] = ACTIONS(2326), - [anon_sym_L_SQUOTE] = ACTIONS(2328), - [anon_sym_u_SQUOTE] = ACTIONS(2328), - [anon_sym_U_SQUOTE] = ACTIONS(2328), - [anon_sym_u8_SQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2328), - [anon_sym_L_DQUOTE] = ACTIONS(2330), - [anon_sym_u_DQUOTE] = ACTIONS(2330), - [anon_sym_U_DQUOTE] = ACTIONS(2330), - [anon_sym_u8_DQUOTE] = ACTIONS(2330), - [anon_sym_DQUOTE] = ACTIONS(2330), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_operator] = ACTIONS(1497), - [anon_sym_delete] = ACTIONS(2334), - [anon_sym_co_await] = ACTIONS(2336), - [anon_sym_new] = ACTIONS(2338), - [anon_sym_requires] = ACTIONS(2340), - [sym_this] = ACTIONS(2332), - [sym_nullptr] = ACTIONS(2332), - [sym_raw_string_literal] = ACTIONS(2342), - }, - [1096] = { - [sym_identifier] = ACTIONS(2287), - [anon_sym_LPAREN2] = ACTIONS(2289), - [anon_sym_BANG] = ACTIONS(2289), - [anon_sym_TILDE] = ACTIONS(2289), - [anon_sym_DASH] = ACTIONS(2287), - [anon_sym_PLUS] = ACTIONS(2287), - [anon_sym_STAR] = ACTIONS(2289), - [anon_sym_AMP] = ACTIONS(2289), - [anon_sym_SEMI] = ACTIONS(2289), - [anon_sym_typedef] = ACTIONS(2287), - [anon_sym_extern] = ACTIONS(2287), - [anon_sym___attribute__] = ACTIONS(2287), - [anon_sym_COLON_COLON] = ACTIONS(2289), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2289), - [anon_sym___declspec] = ACTIONS(2287), - [anon_sym_LBRACE] = ACTIONS(2289), - [anon_sym_LBRACK] = ACTIONS(2287), - [anon_sym_static] = ACTIONS(2287), - [anon_sym_register] = ACTIONS(2287), - [anon_sym_inline] = ACTIONS(2287), - [anon_sym_thread_local] = ACTIONS(2287), - [anon_sym_const] = ACTIONS(2287), - [anon_sym_volatile] = ACTIONS(2287), - [anon_sym_restrict] = ACTIONS(2287), - [anon_sym__Atomic] = ACTIONS(2287), - [anon_sym_mutable] = ACTIONS(2287), - [anon_sym_constexpr] = ACTIONS(2287), - [anon_sym_constinit] = ACTIONS(2287), - [anon_sym_consteval] = ACTIONS(2287), - [anon_sym_signed] = ACTIONS(2287), - [anon_sym_unsigned] = ACTIONS(2287), - [anon_sym_long] = ACTIONS(2287), - [anon_sym_short] = ACTIONS(2287), - [sym_primitive_type] = ACTIONS(2287), - [anon_sym_enum] = ACTIONS(2287), - [anon_sym_class] = ACTIONS(2287), - [anon_sym_struct] = ACTIONS(2287), - [anon_sym_union] = ACTIONS(2287), - [anon_sym_if] = ACTIONS(2287), - [anon_sym_else] = ACTIONS(2287), - [anon_sym_switch] = ACTIONS(2287), - [anon_sym_while] = ACTIONS(2287), - [anon_sym_do] = ACTIONS(2287), - [anon_sym_for] = ACTIONS(2287), - [anon_sym_return] = ACTIONS(2287), - [anon_sym_break] = ACTIONS(2287), - [anon_sym_continue] = ACTIONS(2287), - [anon_sym_goto] = ACTIONS(2287), - [anon_sym_DASH_DASH] = ACTIONS(2289), - [anon_sym_PLUS_PLUS] = ACTIONS(2289), - [anon_sym_sizeof] = ACTIONS(2287), - [sym_number_literal] = ACTIONS(2289), - [anon_sym_L_SQUOTE] = ACTIONS(2289), - [anon_sym_u_SQUOTE] = ACTIONS(2289), - [anon_sym_U_SQUOTE] = ACTIONS(2289), - [anon_sym_u8_SQUOTE] = ACTIONS(2289), - [anon_sym_SQUOTE] = ACTIONS(2289), - [anon_sym_L_DQUOTE] = ACTIONS(2289), - [anon_sym_u_DQUOTE] = ACTIONS(2289), - [anon_sym_U_DQUOTE] = ACTIONS(2289), - [anon_sym_u8_DQUOTE] = ACTIONS(2289), - [anon_sym_DQUOTE] = ACTIONS(2289), - [sym_true] = ACTIONS(2287), - [sym_false] = ACTIONS(2287), - [sym_null] = ACTIONS(2287), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2287), - [anon_sym_decltype] = ACTIONS(2287), - [anon_sym_virtual] = ACTIONS(2287), - [anon_sym_typename] = ACTIONS(2287), - [anon_sym_template] = ACTIONS(2287), - [anon_sym_try] = ACTIONS(2287), - [anon_sym_delete] = ACTIONS(2287), - [anon_sym_throw] = ACTIONS(2287), - [anon_sym_co_return] = ACTIONS(2287), - [anon_sym_co_yield] = ACTIONS(2287), - [anon_sym_catch] = ACTIONS(2287), - [anon_sym_co_await] = ACTIONS(2287), - [anon_sym_new] = ACTIONS(2287), - [anon_sym_requires] = ACTIONS(2287), - [sym_this] = ACTIONS(2287), - [sym_nullptr] = ACTIONS(2287), - [sym_raw_string_literal] = ACTIONS(2289), - }, - [1097] = { - [sym_identifier] = ACTIONS(2302), - [anon_sym_LPAREN2] = ACTIONS(2304), - [anon_sym_BANG] = ACTIONS(2304), - [anon_sym_TILDE] = ACTIONS(2304), - [anon_sym_DASH] = ACTIONS(2302), - [anon_sym_PLUS] = ACTIONS(2302), - [anon_sym_STAR] = ACTIONS(2304), - [anon_sym_AMP] = ACTIONS(2304), - [anon_sym_SEMI] = ACTIONS(2304), - [anon_sym_typedef] = ACTIONS(2302), - [anon_sym_extern] = ACTIONS(2302), - [anon_sym___attribute__] = ACTIONS(2302), - [anon_sym_COLON_COLON] = ACTIONS(2304), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2304), - [anon_sym___declspec] = ACTIONS(2302), - [anon_sym_LBRACE] = ACTIONS(2304), - [anon_sym_LBRACK] = ACTIONS(2302), - [anon_sym_static] = ACTIONS(2302), - [anon_sym_register] = ACTIONS(2302), - [anon_sym_inline] = ACTIONS(2302), - [anon_sym_thread_local] = ACTIONS(2302), - [anon_sym_const] = ACTIONS(2302), - [anon_sym_volatile] = ACTIONS(2302), - [anon_sym_restrict] = ACTIONS(2302), - [anon_sym__Atomic] = ACTIONS(2302), - [anon_sym_mutable] = ACTIONS(2302), - [anon_sym_constexpr] = ACTIONS(2302), - [anon_sym_constinit] = ACTIONS(2302), - [anon_sym_consteval] = ACTIONS(2302), - [anon_sym_signed] = ACTIONS(2302), - [anon_sym_unsigned] = ACTIONS(2302), - [anon_sym_long] = ACTIONS(2302), - [anon_sym_short] = ACTIONS(2302), - [sym_primitive_type] = ACTIONS(2302), - [anon_sym_enum] = ACTIONS(2302), - [anon_sym_class] = ACTIONS(2302), - [anon_sym_struct] = ACTIONS(2302), - [anon_sym_union] = ACTIONS(2302), - [anon_sym_if] = ACTIONS(2302), - [anon_sym_else] = ACTIONS(2302), - [anon_sym_switch] = ACTIONS(2302), - [anon_sym_while] = ACTIONS(2302), - [anon_sym_do] = ACTIONS(2302), - [anon_sym_for] = ACTIONS(2302), - [anon_sym_return] = ACTIONS(2302), - [anon_sym_break] = ACTIONS(2302), - [anon_sym_continue] = ACTIONS(2302), - [anon_sym_goto] = ACTIONS(2302), - [anon_sym_DASH_DASH] = ACTIONS(2304), - [anon_sym_PLUS_PLUS] = ACTIONS(2304), - [anon_sym_sizeof] = ACTIONS(2302), - [sym_number_literal] = ACTIONS(2304), - [anon_sym_L_SQUOTE] = ACTIONS(2304), - [anon_sym_u_SQUOTE] = ACTIONS(2304), - [anon_sym_U_SQUOTE] = ACTIONS(2304), - [anon_sym_u8_SQUOTE] = ACTIONS(2304), - [anon_sym_SQUOTE] = ACTIONS(2304), - [anon_sym_L_DQUOTE] = ACTIONS(2304), - [anon_sym_u_DQUOTE] = ACTIONS(2304), - [anon_sym_U_DQUOTE] = ACTIONS(2304), - [anon_sym_u8_DQUOTE] = ACTIONS(2304), - [anon_sym_DQUOTE] = ACTIONS(2304), - [sym_true] = ACTIONS(2302), - [sym_false] = ACTIONS(2302), - [sym_null] = ACTIONS(2302), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2302), - [anon_sym_decltype] = ACTIONS(2302), - [anon_sym_virtual] = ACTIONS(2302), - [anon_sym_typename] = ACTIONS(2302), - [anon_sym_template] = ACTIONS(2302), - [anon_sym_try] = ACTIONS(2302), - [anon_sym_delete] = ACTIONS(2302), - [anon_sym_throw] = ACTIONS(2302), - [anon_sym_co_return] = ACTIONS(2302), - [anon_sym_co_yield] = ACTIONS(2302), - [anon_sym_catch] = ACTIONS(2302), - [anon_sym_co_await] = ACTIONS(2302), - [anon_sym_new] = ACTIONS(2302), - [anon_sym_requires] = ACTIONS(2302), - [sym_this] = ACTIONS(2302), - [sym_nullptr] = ACTIONS(2302), - [sym_raw_string_literal] = ACTIONS(2304), - }, - [1098] = { - [sym_identifier] = ACTIONS(2291), - [anon_sym_LPAREN2] = ACTIONS(2293), - [anon_sym_BANG] = ACTIONS(2293), - [anon_sym_TILDE] = ACTIONS(2293), - [anon_sym_DASH] = ACTIONS(2291), - [anon_sym_PLUS] = ACTIONS(2291), - [anon_sym_STAR] = ACTIONS(2293), - [anon_sym_AMP] = ACTIONS(2293), - [anon_sym_SEMI] = ACTIONS(2293), - [anon_sym_typedef] = ACTIONS(2291), - [anon_sym_extern] = ACTIONS(2291), - [anon_sym___attribute__] = ACTIONS(2291), - [anon_sym_COLON_COLON] = ACTIONS(2293), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2293), - [anon_sym___declspec] = ACTIONS(2291), - [anon_sym_LBRACE] = ACTIONS(2293), - [anon_sym_LBRACK] = ACTIONS(2291), - [anon_sym_static] = ACTIONS(2291), - [anon_sym_register] = ACTIONS(2291), - [anon_sym_inline] = ACTIONS(2291), - [anon_sym_thread_local] = ACTIONS(2291), - [anon_sym_const] = ACTIONS(2291), - [anon_sym_volatile] = ACTIONS(2291), - [anon_sym_restrict] = ACTIONS(2291), - [anon_sym__Atomic] = ACTIONS(2291), - [anon_sym_mutable] = ACTIONS(2291), - [anon_sym_constexpr] = ACTIONS(2291), - [anon_sym_constinit] = ACTIONS(2291), - [anon_sym_consteval] = ACTIONS(2291), - [anon_sym_signed] = ACTIONS(2291), - [anon_sym_unsigned] = ACTIONS(2291), - [anon_sym_long] = ACTIONS(2291), - [anon_sym_short] = ACTIONS(2291), - [sym_primitive_type] = ACTIONS(2291), - [anon_sym_enum] = ACTIONS(2291), - [anon_sym_class] = ACTIONS(2291), - [anon_sym_struct] = ACTIONS(2291), - [anon_sym_union] = ACTIONS(2291), - [anon_sym_if] = ACTIONS(2291), - [anon_sym_else] = ACTIONS(2291), - [anon_sym_switch] = ACTIONS(2291), - [anon_sym_while] = ACTIONS(2291), - [anon_sym_do] = ACTIONS(2291), - [anon_sym_for] = ACTIONS(2291), - [anon_sym_return] = ACTIONS(2291), - [anon_sym_break] = ACTIONS(2291), - [anon_sym_continue] = ACTIONS(2291), - [anon_sym_goto] = ACTIONS(2291), - [anon_sym_DASH_DASH] = ACTIONS(2293), - [anon_sym_PLUS_PLUS] = ACTIONS(2293), - [anon_sym_sizeof] = ACTIONS(2291), - [sym_number_literal] = ACTIONS(2293), - [anon_sym_L_SQUOTE] = ACTIONS(2293), - [anon_sym_u_SQUOTE] = ACTIONS(2293), - [anon_sym_U_SQUOTE] = ACTIONS(2293), - [anon_sym_u8_SQUOTE] = ACTIONS(2293), - [anon_sym_SQUOTE] = ACTIONS(2293), - [anon_sym_L_DQUOTE] = ACTIONS(2293), - [anon_sym_u_DQUOTE] = ACTIONS(2293), - [anon_sym_U_DQUOTE] = ACTIONS(2293), - [anon_sym_u8_DQUOTE] = ACTIONS(2293), - [anon_sym_DQUOTE] = ACTIONS(2293), - [sym_true] = ACTIONS(2291), - [sym_false] = ACTIONS(2291), - [sym_null] = ACTIONS(2291), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2291), - [anon_sym_decltype] = ACTIONS(2291), - [anon_sym_virtual] = ACTIONS(2291), - [anon_sym_typename] = ACTIONS(2291), - [anon_sym_template] = ACTIONS(2291), - [anon_sym_try] = ACTIONS(2291), - [anon_sym_delete] = ACTIONS(2291), - [anon_sym_throw] = ACTIONS(2291), - [anon_sym_co_return] = ACTIONS(2291), - [anon_sym_co_yield] = ACTIONS(2291), - [anon_sym_catch] = ACTIONS(2291), - [anon_sym_co_await] = ACTIONS(2291), - [anon_sym_new] = ACTIONS(2291), - [anon_sym_requires] = ACTIONS(2291), - [sym_this] = ACTIONS(2291), - [sym_nullptr] = ACTIONS(2291), - [sym_raw_string_literal] = ACTIONS(2293), - }, - [1099] = { - [sym_identifier] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2349), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [1100] = { - [sym_identifier] = ACTIONS(2387), - [anon_sym_LPAREN2] = ACTIONS(2389), - [anon_sym_BANG] = ACTIONS(2389), - [anon_sym_TILDE] = ACTIONS(2389), - [anon_sym_DASH] = ACTIONS(2387), - [anon_sym_PLUS] = ACTIONS(2387), - [anon_sym_STAR] = ACTIONS(2389), - [anon_sym_AMP] = ACTIONS(2389), - [anon_sym_SEMI] = ACTIONS(2389), - [anon_sym_typedef] = ACTIONS(2387), - [anon_sym_extern] = ACTIONS(2387), - [anon_sym___attribute__] = ACTIONS(2387), - [anon_sym_COLON_COLON] = ACTIONS(2389), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2389), - [anon_sym___declspec] = ACTIONS(2387), - [anon_sym_LBRACE] = ACTIONS(2389), - [anon_sym_LBRACK] = ACTIONS(2387), - [anon_sym_static] = ACTIONS(2387), - [anon_sym_register] = ACTIONS(2387), - [anon_sym_inline] = ACTIONS(2387), - [anon_sym_thread_local] = ACTIONS(2387), - [anon_sym_const] = ACTIONS(2387), - [anon_sym_volatile] = ACTIONS(2387), - [anon_sym_restrict] = ACTIONS(2387), - [anon_sym__Atomic] = ACTIONS(2387), - [anon_sym_mutable] = ACTIONS(2387), - [anon_sym_constexpr] = ACTIONS(2387), - [anon_sym_constinit] = ACTIONS(2387), - [anon_sym_consteval] = ACTIONS(2387), - [anon_sym_signed] = ACTIONS(2387), - [anon_sym_unsigned] = ACTIONS(2387), - [anon_sym_long] = ACTIONS(2387), - [anon_sym_short] = ACTIONS(2387), - [sym_primitive_type] = ACTIONS(2387), - [anon_sym_enum] = ACTIONS(2387), - [anon_sym_class] = ACTIONS(2387), - [anon_sym_struct] = ACTIONS(2387), - [anon_sym_union] = ACTIONS(2387), - [anon_sym_if] = ACTIONS(2387), - [anon_sym_else] = ACTIONS(2387), - [anon_sym_switch] = ACTIONS(2387), - [anon_sym_while] = ACTIONS(2387), - [anon_sym_do] = ACTIONS(2387), - [anon_sym_for] = ACTIONS(2387), - [anon_sym_return] = ACTIONS(2387), - [anon_sym_break] = ACTIONS(2387), - [anon_sym_continue] = ACTIONS(2387), - [anon_sym_goto] = ACTIONS(2387), - [anon_sym_DASH_DASH] = ACTIONS(2389), - [anon_sym_PLUS_PLUS] = ACTIONS(2389), - [anon_sym_sizeof] = ACTIONS(2387), - [sym_number_literal] = ACTIONS(2389), - [anon_sym_L_SQUOTE] = ACTIONS(2389), - [anon_sym_u_SQUOTE] = ACTIONS(2389), - [anon_sym_U_SQUOTE] = ACTIONS(2389), - [anon_sym_u8_SQUOTE] = ACTIONS(2389), - [anon_sym_SQUOTE] = ACTIONS(2389), - [anon_sym_L_DQUOTE] = ACTIONS(2389), - [anon_sym_u_DQUOTE] = ACTIONS(2389), - [anon_sym_U_DQUOTE] = ACTIONS(2389), - [anon_sym_u8_DQUOTE] = ACTIONS(2389), - [anon_sym_DQUOTE] = ACTIONS(2389), - [sym_true] = ACTIONS(2387), - [sym_false] = ACTIONS(2387), - [sym_null] = ACTIONS(2387), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2387), - [anon_sym_decltype] = ACTIONS(2387), - [anon_sym_virtual] = ACTIONS(2387), - [anon_sym_typename] = ACTIONS(2387), - [anon_sym_template] = ACTIONS(2387), - [anon_sym_try] = ACTIONS(2387), - [anon_sym_delete] = ACTIONS(2387), - [anon_sym_throw] = ACTIONS(2387), - [anon_sym_co_return] = ACTIONS(2387), - [anon_sym_co_yield] = ACTIONS(2387), - [anon_sym_co_await] = ACTIONS(2387), - [anon_sym_new] = ACTIONS(2387), - [anon_sym_requires] = ACTIONS(2387), - [sym_this] = ACTIONS(2387), - [sym_nullptr] = ACTIONS(2387), - [sym_raw_string_literal] = ACTIONS(2389), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1101] = { - [sym_identifier] = ACTIONS(2371), - [anon_sym_LPAREN2] = ACTIONS(2373), - [anon_sym_BANG] = ACTIONS(2373), - [anon_sym_TILDE] = ACTIONS(2373), - [anon_sym_DASH] = ACTIONS(2371), - [anon_sym_PLUS] = ACTIONS(2371), - [anon_sym_STAR] = ACTIONS(2373), - [anon_sym_AMP] = ACTIONS(2373), - [anon_sym_SEMI] = ACTIONS(2373), - [anon_sym_typedef] = ACTIONS(2371), - [anon_sym_extern] = ACTIONS(2371), - [anon_sym___attribute__] = ACTIONS(2371), - [anon_sym_COLON_COLON] = ACTIONS(2373), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2373), - [anon_sym___declspec] = ACTIONS(2371), - [anon_sym_LBRACE] = ACTIONS(2373), - [anon_sym_LBRACK] = ACTIONS(2371), - [anon_sym_static] = ACTIONS(2371), - [anon_sym_register] = ACTIONS(2371), - [anon_sym_inline] = ACTIONS(2371), - [anon_sym_thread_local] = ACTIONS(2371), - [anon_sym_const] = ACTIONS(2371), - [anon_sym_volatile] = ACTIONS(2371), - [anon_sym_restrict] = ACTIONS(2371), - [anon_sym__Atomic] = ACTIONS(2371), - [anon_sym_mutable] = ACTIONS(2371), - [anon_sym_constexpr] = ACTIONS(2371), - [anon_sym_constinit] = ACTIONS(2371), - [anon_sym_consteval] = ACTIONS(2371), - [anon_sym_signed] = ACTIONS(2371), - [anon_sym_unsigned] = ACTIONS(2371), - [anon_sym_long] = ACTIONS(2371), - [anon_sym_short] = ACTIONS(2371), - [sym_primitive_type] = ACTIONS(2371), - [anon_sym_enum] = ACTIONS(2371), - [anon_sym_class] = ACTIONS(2371), - [anon_sym_struct] = ACTIONS(2371), - [anon_sym_union] = ACTIONS(2371), - [anon_sym_if] = ACTIONS(2371), - [anon_sym_else] = ACTIONS(2371), - [anon_sym_switch] = ACTIONS(2371), - [anon_sym_while] = ACTIONS(2371), - [anon_sym_do] = ACTIONS(2371), - [anon_sym_for] = ACTIONS(2371), - [anon_sym_return] = ACTIONS(2371), - [anon_sym_break] = ACTIONS(2371), - [anon_sym_continue] = ACTIONS(2371), - [anon_sym_goto] = ACTIONS(2371), - [anon_sym_DASH_DASH] = ACTIONS(2373), - [anon_sym_PLUS_PLUS] = ACTIONS(2373), - [anon_sym_sizeof] = ACTIONS(2371), - [sym_number_literal] = ACTIONS(2373), - [anon_sym_L_SQUOTE] = ACTIONS(2373), - [anon_sym_u_SQUOTE] = ACTIONS(2373), - [anon_sym_U_SQUOTE] = ACTIONS(2373), - [anon_sym_u8_SQUOTE] = ACTIONS(2373), - [anon_sym_SQUOTE] = ACTIONS(2373), - [anon_sym_L_DQUOTE] = ACTIONS(2373), - [anon_sym_u_DQUOTE] = ACTIONS(2373), - [anon_sym_U_DQUOTE] = ACTIONS(2373), - [anon_sym_u8_DQUOTE] = ACTIONS(2373), - [anon_sym_DQUOTE] = ACTIONS(2373), - [sym_true] = ACTIONS(2371), - [sym_false] = ACTIONS(2371), - [sym_null] = ACTIONS(2371), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2371), - [anon_sym_decltype] = ACTIONS(2371), - [anon_sym_virtual] = ACTIONS(2371), - [anon_sym_typename] = ACTIONS(2371), - [anon_sym_template] = ACTIONS(2371), - [anon_sym_try] = ACTIONS(2371), - [anon_sym_delete] = ACTIONS(2371), - [anon_sym_throw] = ACTIONS(2371), - [anon_sym_co_return] = ACTIONS(2371), - [anon_sym_co_yield] = ACTIONS(2371), - [anon_sym_co_await] = ACTIONS(2371), - [anon_sym_new] = ACTIONS(2371), - [anon_sym_requires] = ACTIONS(2371), - [sym_this] = ACTIONS(2371), - [sym_nullptr] = ACTIONS(2371), - [sym_raw_string_literal] = ACTIONS(2373), + [685] = { + [ts_builtin_sym_end] = ACTIONS(2561), + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1102] = { - [sym_identifier] = ACTIONS(2515), - [anon_sym_LPAREN2] = ACTIONS(2517), - [anon_sym_BANG] = ACTIONS(2517), - [anon_sym_TILDE] = ACTIONS(2517), - [anon_sym_DASH] = ACTIONS(2515), - [anon_sym_PLUS] = ACTIONS(2515), - [anon_sym_STAR] = ACTIONS(2517), - [anon_sym_AMP] = ACTIONS(2517), - [anon_sym_SEMI] = ACTIONS(2517), - [anon_sym_typedef] = ACTIONS(2515), - [anon_sym_extern] = ACTIONS(2515), - [anon_sym___attribute__] = ACTIONS(2515), - [anon_sym_COLON_COLON] = ACTIONS(2517), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2517), - [anon_sym___declspec] = ACTIONS(2515), - [anon_sym_LBRACE] = ACTIONS(2517), - [anon_sym_LBRACK] = ACTIONS(2515), - [anon_sym_static] = ACTIONS(2515), - [anon_sym_register] = ACTIONS(2515), - [anon_sym_inline] = ACTIONS(2515), - [anon_sym_thread_local] = ACTIONS(2515), - [anon_sym_const] = ACTIONS(2515), - [anon_sym_volatile] = ACTIONS(2515), - [anon_sym_restrict] = ACTIONS(2515), - [anon_sym__Atomic] = ACTIONS(2515), - [anon_sym_mutable] = ACTIONS(2515), - [anon_sym_constexpr] = ACTIONS(2515), - [anon_sym_constinit] = ACTIONS(2515), - [anon_sym_consteval] = ACTIONS(2515), - [anon_sym_signed] = ACTIONS(2515), - [anon_sym_unsigned] = ACTIONS(2515), - [anon_sym_long] = ACTIONS(2515), - [anon_sym_short] = ACTIONS(2515), - [sym_primitive_type] = ACTIONS(2515), - [anon_sym_enum] = ACTIONS(2515), - [anon_sym_class] = ACTIONS(2515), - [anon_sym_struct] = ACTIONS(2515), - [anon_sym_union] = ACTIONS(2515), - [anon_sym_if] = ACTIONS(2515), - [anon_sym_else] = ACTIONS(2515), - [anon_sym_switch] = ACTIONS(2515), - [anon_sym_while] = ACTIONS(2515), - [anon_sym_do] = ACTIONS(2515), - [anon_sym_for] = ACTIONS(2515), - [anon_sym_return] = ACTIONS(2515), - [anon_sym_break] = ACTIONS(2515), - [anon_sym_continue] = ACTIONS(2515), - [anon_sym_goto] = ACTIONS(2515), - [anon_sym_DASH_DASH] = ACTIONS(2517), - [anon_sym_PLUS_PLUS] = ACTIONS(2517), - [anon_sym_sizeof] = ACTIONS(2515), - [sym_number_literal] = ACTIONS(2517), - [anon_sym_L_SQUOTE] = ACTIONS(2517), - [anon_sym_u_SQUOTE] = ACTIONS(2517), - [anon_sym_U_SQUOTE] = ACTIONS(2517), - [anon_sym_u8_SQUOTE] = ACTIONS(2517), - [anon_sym_SQUOTE] = ACTIONS(2517), - [anon_sym_L_DQUOTE] = ACTIONS(2517), - [anon_sym_u_DQUOTE] = ACTIONS(2517), - [anon_sym_U_DQUOTE] = ACTIONS(2517), - [anon_sym_u8_DQUOTE] = ACTIONS(2517), - [anon_sym_DQUOTE] = ACTIONS(2517), - [sym_true] = ACTIONS(2515), - [sym_false] = ACTIONS(2515), - [sym_null] = ACTIONS(2515), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2515), - [anon_sym_decltype] = ACTIONS(2515), - [anon_sym_virtual] = ACTIONS(2515), - [anon_sym_typename] = ACTIONS(2515), - [anon_sym_template] = ACTIONS(2515), - [anon_sym_try] = ACTIONS(2515), - [anon_sym_delete] = ACTIONS(2515), - [anon_sym_throw] = ACTIONS(2515), - [anon_sym_co_return] = ACTIONS(2515), - [anon_sym_co_yield] = ACTIONS(2515), - [anon_sym_co_await] = ACTIONS(2515), - [anon_sym_new] = ACTIONS(2515), - [anon_sym_requires] = ACTIONS(2515), - [sym_this] = ACTIONS(2515), - [sym_nullptr] = ACTIONS(2515), - [sym_raw_string_literal] = ACTIONS(2517), + [686] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token2] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1103] = { - [sym_identifier] = ACTIONS(2433), - [anon_sym_LPAREN2] = ACTIONS(2435), - [anon_sym_BANG] = ACTIONS(2435), - [anon_sym_TILDE] = ACTIONS(2435), - [anon_sym_DASH] = ACTIONS(2433), - [anon_sym_PLUS] = ACTIONS(2433), - [anon_sym_STAR] = ACTIONS(2435), - [anon_sym_AMP] = ACTIONS(2435), - [anon_sym_SEMI] = ACTIONS(2435), - [anon_sym_typedef] = ACTIONS(2433), - [anon_sym_extern] = ACTIONS(2433), - [anon_sym___attribute__] = ACTIONS(2433), - [anon_sym_COLON_COLON] = ACTIONS(2435), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2435), - [anon_sym___declspec] = ACTIONS(2433), - [anon_sym_LBRACE] = ACTIONS(2435), - [anon_sym_LBRACK] = ACTIONS(2433), - [anon_sym_static] = ACTIONS(2433), - [anon_sym_register] = ACTIONS(2433), - [anon_sym_inline] = ACTIONS(2433), - [anon_sym_thread_local] = ACTIONS(2433), - [anon_sym_const] = ACTIONS(2433), - [anon_sym_volatile] = ACTIONS(2433), - [anon_sym_restrict] = ACTIONS(2433), - [anon_sym__Atomic] = ACTIONS(2433), - [anon_sym_mutable] = ACTIONS(2433), - [anon_sym_constexpr] = ACTIONS(2433), - [anon_sym_constinit] = ACTIONS(2433), - [anon_sym_consteval] = ACTIONS(2433), - [anon_sym_signed] = ACTIONS(2433), - [anon_sym_unsigned] = ACTIONS(2433), - [anon_sym_long] = ACTIONS(2433), - [anon_sym_short] = ACTIONS(2433), - [sym_primitive_type] = ACTIONS(2433), - [anon_sym_enum] = ACTIONS(2433), - [anon_sym_class] = ACTIONS(2433), - [anon_sym_struct] = ACTIONS(2433), - [anon_sym_union] = ACTIONS(2433), - [anon_sym_if] = ACTIONS(2433), - [anon_sym_else] = ACTIONS(2433), - [anon_sym_switch] = ACTIONS(2433), - [anon_sym_while] = ACTIONS(2433), - [anon_sym_do] = ACTIONS(2433), - [anon_sym_for] = ACTIONS(2433), - [anon_sym_return] = ACTIONS(2433), - [anon_sym_break] = ACTIONS(2433), - [anon_sym_continue] = ACTIONS(2433), - [anon_sym_goto] = ACTIONS(2433), - [anon_sym_DASH_DASH] = ACTIONS(2435), - [anon_sym_PLUS_PLUS] = ACTIONS(2435), - [anon_sym_sizeof] = ACTIONS(2433), - [sym_number_literal] = ACTIONS(2435), - [anon_sym_L_SQUOTE] = ACTIONS(2435), - [anon_sym_u_SQUOTE] = ACTIONS(2435), - [anon_sym_U_SQUOTE] = ACTIONS(2435), - [anon_sym_u8_SQUOTE] = ACTIONS(2435), - [anon_sym_SQUOTE] = ACTIONS(2435), - [anon_sym_L_DQUOTE] = ACTIONS(2435), - [anon_sym_u_DQUOTE] = ACTIONS(2435), - [anon_sym_U_DQUOTE] = ACTIONS(2435), - [anon_sym_u8_DQUOTE] = ACTIONS(2435), - [anon_sym_DQUOTE] = ACTIONS(2435), - [sym_true] = ACTIONS(2433), - [sym_false] = ACTIONS(2433), - [sym_null] = ACTIONS(2433), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2433), - [anon_sym_decltype] = ACTIONS(2433), - [anon_sym_virtual] = ACTIONS(2433), - [anon_sym_typename] = ACTIONS(2433), - [anon_sym_template] = ACTIONS(2433), - [anon_sym_try] = ACTIONS(2433), - [anon_sym_delete] = ACTIONS(2433), - [anon_sym_throw] = ACTIONS(2433), - [anon_sym_co_return] = ACTIONS(2433), - [anon_sym_co_yield] = ACTIONS(2433), - [anon_sym_co_await] = ACTIONS(2433), - [anon_sym_new] = ACTIONS(2433), - [anon_sym_requires] = ACTIONS(2433), - [sym_this] = ACTIONS(2433), - [sym_nullptr] = ACTIONS(2433), - [sym_raw_string_literal] = ACTIONS(2435), + [687] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token2] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1104] = { - [sym_identifier] = ACTIONS(2397), - [anon_sym_LPAREN2] = ACTIONS(2399), - [anon_sym_BANG] = ACTIONS(2399), - [anon_sym_TILDE] = ACTIONS(2399), - [anon_sym_DASH] = ACTIONS(2397), - [anon_sym_PLUS] = ACTIONS(2397), - [anon_sym_STAR] = ACTIONS(2399), - [anon_sym_AMP] = ACTIONS(2399), - [anon_sym_SEMI] = ACTIONS(2399), - [anon_sym_typedef] = ACTIONS(2397), - [anon_sym_extern] = ACTIONS(2397), - [anon_sym___attribute__] = ACTIONS(2397), - [anon_sym_COLON_COLON] = ACTIONS(2399), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2399), - [anon_sym___declspec] = ACTIONS(2397), - [anon_sym_LBRACE] = ACTIONS(2399), - [anon_sym_LBRACK] = ACTIONS(2397), - [anon_sym_static] = ACTIONS(2397), - [anon_sym_register] = ACTIONS(2397), - [anon_sym_inline] = ACTIONS(2397), - [anon_sym_thread_local] = ACTIONS(2397), - [anon_sym_const] = ACTIONS(2397), - [anon_sym_volatile] = ACTIONS(2397), - [anon_sym_restrict] = ACTIONS(2397), - [anon_sym__Atomic] = ACTIONS(2397), - [anon_sym_mutable] = ACTIONS(2397), - [anon_sym_constexpr] = ACTIONS(2397), - [anon_sym_constinit] = ACTIONS(2397), - [anon_sym_consteval] = ACTIONS(2397), - [anon_sym_signed] = ACTIONS(2397), - [anon_sym_unsigned] = ACTIONS(2397), - [anon_sym_long] = ACTIONS(2397), - [anon_sym_short] = ACTIONS(2397), - [sym_primitive_type] = ACTIONS(2397), - [anon_sym_enum] = ACTIONS(2397), - [anon_sym_class] = ACTIONS(2397), - [anon_sym_struct] = ACTIONS(2397), - [anon_sym_union] = ACTIONS(2397), - [anon_sym_if] = ACTIONS(2397), - [anon_sym_else] = ACTIONS(2397), - [anon_sym_switch] = ACTIONS(2397), - [anon_sym_while] = ACTIONS(2397), - [anon_sym_do] = ACTIONS(2397), - [anon_sym_for] = ACTIONS(2397), - [anon_sym_return] = ACTIONS(2397), - [anon_sym_break] = ACTIONS(2397), - [anon_sym_continue] = ACTIONS(2397), - [anon_sym_goto] = ACTIONS(2397), - [anon_sym_DASH_DASH] = ACTIONS(2399), - [anon_sym_PLUS_PLUS] = ACTIONS(2399), - [anon_sym_sizeof] = ACTIONS(2397), - [sym_number_literal] = ACTIONS(2399), - [anon_sym_L_SQUOTE] = ACTIONS(2399), - [anon_sym_u_SQUOTE] = ACTIONS(2399), - [anon_sym_U_SQUOTE] = ACTIONS(2399), - [anon_sym_u8_SQUOTE] = ACTIONS(2399), - [anon_sym_SQUOTE] = ACTIONS(2399), - [anon_sym_L_DQUOTE] = ACTIONS(2399), - [anon_sym_u_DQUOTE] = ACTIONS(2399), - [anon_sym_U_DQUOTE] = ACTIONS(2399), - [anon_sym_u8_DQUOTE] = ACTIONS(2399), - [anon_sym_DQUOTE] = ACTIONS(2399), - [sym_true] = ACTIONS(2397), - [sym_false] = ACTIONS(2397), - [sym_null] = ACTIONS(2397), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2397), - [anon_sym_decltype] = ACTIONS(2397), - [anon_sym_virtual] = ACTIONS(2397), - [anon_sym_typename] = ACTIONS(2397), - [anon_sym_template] = ACTIONS(2397), - [anon_sym_try] = ACTIONS(2397), - [anon_sym_delete] = ACTIONS(2397), - [anon_sym_throw] = ACTIONS(2397), - [anon_sym_co_return] = ACTIONS(2397), - [anon_sym_co_yield] = ACTIONS(2397), - [anon_sym_co_await] = ACTIONS(2397), - [anon_sym_new] = ACTIONS(2397), - [anon_sym_requires] = ACTIONS(2397), - [sym_this] = ACTIONS(2397), - [sym_nullptr] = ACTIONS(2397), - [sym_raw_string_literal] = ACTIONS(2399), + [688] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token2] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1105] = { - [sym_type_qualifier] = STATE(1124), - [sym__expression] = STATE(3865), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2981), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2981), - [sym_call_expression] = STATE(2981), - [sym_field_expression] = STATE(2981), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2981), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2981), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_type_definition_repeat1] = STATE(1124), - [sym_identifier] = ACTIONS(3039), - [anon_sym_LPAREN2] = ACTIONS(3041), - [anon_sym_BANG] = ACTIONS(3045), - [anon_sym_TILDE] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(3126), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(3047), - [anon_sym_LBRACK] = ACTIONS(2272), - [anon_sym_RBRACK] = ACTIONS(3128), - [anon_sym_const] = ACTIONS(3130), - [anon_sym_volatile] = ACTIONS(3130), - [anon_sym_restrict] = ACTIONS(3130), - [anon_sym__Atomic] = ACTIONS(3130), - [anon_sym_mutable] = ACTIONS(3130), - [anon_sym_constexpr] = ACTIONS(3130), - [anon_sym_constinit] = ACTIONS(3130), - [anon_sym_consteval] = ACTIONS(3130), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3049), - [anon_sym_PLUS_PLUS] = ACTIONS(3049), - [anon_sym_sizeof] = ACTIONS(3051), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [689] = { + [ts_builtin_sym_end] = ACTIONS(2597), + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3053), - [anon_sym_co_await] = ACTIONS(3055), - [anon_sym_new] = ACTIONS(3057), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1106] = { - [sym_identifier] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2407), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), + [690] = { + [ts_builtin_sym_end] = ACTIONS(2597), + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - [sym_raw_string_literal] = ACTIONS(2407), - }, - [1107] = { - [sym_identifier] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2461), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1108] = { - [sym_identifier] = ACTIONS(2405), - [anon_sym_LPAREN2] = ACTIONS(2407), - [anon_sym_BANG] = ACTIONS(2407), - [anon_sym_TILDE] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_PLUS] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2407), - [anon_sym_AMP] = ACTIONS(2407), - [anon_sym_SEMI] = ACTIONS(2407), - [anon_sym_typedef] = ACTIONS(2405), - [anon_sym_extern] = ACTIONS(2405), - [anon_sym___attribute__] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2407), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), - [anon_sym___declspec] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2407), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_static] = ACTIONS(2405), - [anon_sym_register] = ACTIONS(2405), - [anon_sym_inline] = ACTIONS(2405), - [anon_sym_thread_local] = ACTIONS(2405), - [anon_sym_const] = ACTIONS(2405), - [anon_sym_volatile] = ACTIONS(2405), - [anon_sym_restrict] = ACTIONS(2405), - [anon_sym__Atomic] = ACTIONS(2405), - [anon_sym_mutable] = ACTIONS(2405), - [anon_sym_constexpr] = ACTIONS(2405), - [anon_sym_constinit] = ACTIONS(2405), - [anon_sym_consteval] = ACTIONS(2405), - [anon_sym_signed] = ACTIONS(2405), - [anon_sym_unsigned] = ACTIONS(2405), - [anon_sym_long] = ACTIONS(2405), - [anon_sym_short] = ACTIONS(2405), - [sym_primitive_type] = ACTIONS(2405), - [anon_sym_enum] = ACTIONS(2405), - [anon_sym_class] = ACTIONS(2405), - [anon_sym_struct] = ACTIONS(2405), - [anon_sym_union] = ACTIONS(2405), - [anon_sym_if] = ACTIONS(2405), - [anon_sym_else] = ACTIONS(2405), - [anon_sym_switch] = ACTIONS(2405), - [anon_sym_while] = ACTIONS(2405), - [anon_sym_do] = ACTIONS(2405), - [anon_sym_for] = ACTIONS(2405), - [anon_sym_return] = ACTIONS(2405), - [anon_sym_break] = ACTIONS(2405), - [anon_sym_continue] = ACTIONS(2405), - [anon_sym_goto] = ACTIONS(2405), - [anon_sym_DASH_DASH] = ACTIONS(2407), - [anon_sym_PLUS_PLUS] = ACTIONS(2407), - [anon_sym_sizeof] = ACTIONS(2405), - [sym_number_literal] = ACTIONS(2407), - [anon_sym_L_SQUOTE] = ACTIONS(2407), - [anon_sym_u_SQUOTE] = ACTIONS(2407), - [anon_sym_U_SQUOTE] = ACTIONS(2407), - [anon_sym_u8_SQUOTE] = ACTIONS(2407), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_L_DQUOTE] = ACTIONS(2407), - [anon_sym_u_DQUOTE] = ACTIONS(2407), - [anon_sym_U_DQUOTE] = ACTIONS(2407), - [anon_sym_u8_DQUOTE] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym_true] = ACTIONS(2405), - [sym_false] = ACTIONS(2405), - [sym_null] = ACTIONS(2405), + [691] = { + [ts_builtin_sym_end] = ACTIONS(2597), + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2405), - [anon_sym_decltype] = ACTIONS(2405), - [anon_sym_virtual] = ACTIONS(2405), - [anon_sym_typename] = ACTIONS(2405), - [anon_sym_template] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2405), - [anon_sym_delete] = ACTIONS(2405), - [anon_sym_throw] = ACTIONS(2405), - [anon_sym_co_return] = ACTIONS(2405), - [anon_sym_co_yield] = ACTIONS(2405), - [anon_sym_co_await] = ACTIONS(2405), - [anon_sym_new] = ACTIONS(2405), - [anon_sym_requires] = ACTIONS(2405), - [sym_this] = ACTIONS(2405), - [sym_nullptr] = ACTIONS(2405), - [sym_raw_string_literal] = ACTIONS(2407), - }, - [1109] = { - [sym_identifier] = ACTIONS(2421), - [anon_sym_LPAREN2] = ACTIONS(2423), - [anon_sym_BANG] = ACTIONS(2423), - [anon_sym_TILDE] = ACTIONS(2423), - [anon_sym_DASH] = ACTIONS(2421), - [anon_sym_PLUS] = ACTIONS(2421), - [anon_sym_STAR] = ACTIONS(2423), - [anon_sym_AMP] = ACTIONS(2423), - [anon_sym_SEMI] = ACTIONS(2423), - [anon_sym_typedef] = ACTIONS(2421), - [anon_sym_extern] = ACTIONS(2421), - [anon_sym___attribute__] = ACTIONS(2421), - [anon_sym_COLON_COLON] = ACTIONS(2423), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2423), - [anon_sym___declspec] = ACTIONS(2421), - [anon_sym_LBRACE] = ACTIONS(2423), - [anon_sym_LBRACK] = ACTIONS(2421), - [anon_sym_static] = ACTIONS(2421), - [anon_sym_register] = ACTIONS(2421), - [anon_sym_inline] = ACTIONS(2421), - [anon_sym_thread_local] = ACTIONS(2421), - [anon_sym_const] = ACTIONS(2421), - [anon_sym_volatile] = ACTIONS(2421), - [anon_sym_restrict] = ACTIONS(2421), - [anon_sym__Atomic] = ACTIONS(2421), - [anon_sym_mutable] = ACTIONS(2421), - [anon_sym_constexpr] = ACTIONS(2421), - [anon_sym_constinit] = ACTIONS(2421), - [anon_sym_consteval] = ACTIONS(2421), - [anon_sym_signed] = ACTIONS(2421), - [anon_sym_unsigned] = ACTIONS(2421), - [anon_sym_long] = ACTIONS(2421), - [anon_sym_short] = ACTIONS(2421), - [sym_primitive_type] = ACTIONS(2421), - [anon_sym_enum] = ACTIONS(2421), - [anon_sym_class] = ACTIONS(2421), - [anon_sym_struct] = ACTIONS(2421), - [anon_sym_union] = ACTIONS(2421), - [anon_sym_if] = ACTIONS(2421), - [anon_sym_else] = ACTIONS(2421), - [anon_sym_switch] = ACTIONS(2421), - [anon_sym_while] = ACTIONS(2421), - [anon_sym_do] = ACTIONS(2421), - [anon_sym_for] = ACTIONS(2421), - [anon_sym_return] = ACTIONS(2421), - [anon_sym_break] = ACTIONS(2421), - [anon_sym_continue] = ACTIONS(2421), - [anon_sym_goto] = ACTIONS(2421), - [anon_sym_DASH_DASH] = ACTIONS(2423), - [anon_sym_PLUS_PLUS] = ACTIONS(2423), - [anon_sym_sizeof] = ACTIONS(2421), - [sym_number_literal] = ACTIONS(2423), - [anon_sym_L_SQUOTE] = ACTIONS(2423), - [anon_sym_u_SQUOTE] = ACTIONS(2423), - [anon_sym_U_SQUOTE] = ACTIONS(2423), - [anon_sym_u8_SQUOTE] = ACTIONS(2423), - [anon_sym_SQUOTE] = ACTIONS(2423), - [anon_sym_L_DQUOTE] = ACTIONS(2423), - [anon_sym_u_DQUOTE] = ACTIONS(2423), - [anon_sym_U_DQUOTE] = ACTIONS(2423), - [anon_sym_u8_DQUOTE] = ACTIONS(2423), - [anon_sym_DQUOTE] = ACTIONS(2423), - [sym_true] = ACTIONS(2421), - [sym_false] = ACTIONS(2421), - [sym_null] = ACTIONS(2421), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2421), - [anon_sym_decltype] = ACTIONS(2421), - [anon_sym_virtual] = ACTIONS(2421), - [anon_sym_typename] = ACTIONS(2421), - [anon_sym_template] = ACTIONS(2421), - [anon_sym_try] = ACTIONS(2421), - [anon_sym_delete] = ACTIONS(2421), - [anon_sym_throw] = ACTIONS(2421), - [anon_sym_co_return] = ACTIONS(2421), - [anon_sym_co_yield] = ACTIONS(2421), - [anon_sym_co_await] = ACTIONS(2421), - [anon_sym_new] = ACTIONS(2421), - [anon_sym_requires] = ACTIONS(2421), - [sym_this] = ACTIONS(2421), - [sym_nullptr] = ACTIONS(2421), - [sym_raw_string_literal] = ACTIONS(2423), - }, - [1110] = { - [sym_identifier] = ACTIONS(2393), - [anon_sym_LPAREN2] = ACTIONS(2395), - [anon_sym_BANG] = ACTIONS(2395), - [anon_sym_TILDE] = ACTIONS(2395), - [anon_sym_DASH] = ACTIONS(2393), - [anon_sym_PLUS] = ACTIONS(2393), - [anon_sym_STAR] = ACTIONS(2395), - [anon_sym_AMP] = ACTIONS(2395), - [anon_sym_SEMI] = ACTIONS(2395), - [anon_sym_typedef] = ACTIONS(2393), - [anon_sym_extern] = ACTIONS(2393), - [anon_sym___attribute__] = ACTIONS(2393), - [anon_sym_COLON_COLON] = ACTIONS(2395), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2395), - [anon_sym___declspec] = ACTIONS(2393), - [anon_sym_LBRACE] = ACTIONS(2395), - [anon_sym_LBRACK] = ACTIONS(2393), - [anon_sym_static] = ACTIONS(2393), - [anon_sym_register] = ACTIONS(2393), - [anon_sym_inline] = ACTIONS(2393), - [anon_sym_thread_local] = ACTIONS(2393), - [anon_sym_const] = ACTIONS(2393), - [anon_sym_volatile] = ACTIONS(2393), - [anon_sym_restrict] = ACTIONS(2393), - [anon_sym__Atomic] = ACTIONS(2393), - [anon_sym_mutable] = ACTIONS(2393), - [anon_sym_constexpr] = ACTIONS(2393), - [anon_sym_constinit] = ACTIONS(2393), - [anon_sym_consteval] = ACTIONS(2393), - [anon_sym_signed] = ACTIONS(2393), - [anon_sym_unsigned] = ACTIONS(2393), - [anon_sym_long] = ACTIONS(2393), - [anon_sym_short] = ACTIONS(2393), - [sym_primitive_type] = ACTIONS(2393), - [anon_sym_enum] = ACTIONS(2393), - [anon_sym_class] = ACTIONS(2393), - [anon_sym_struct] = ACTIONS(2393), - [anon_sym_union] = ACTIONS(2393), - [anon_sym_if] = ACTIONS(2393), - [anon_sym_else] = ACTIONS(2393), - [anon_sym_switch] = ACTIONS(2393), - [anon_sym_while] = ACTIONS(2393), - [anon_sym_do] = ACTIONS(2393), - [anon_sym_for] = ACTIONS(2393), - [anon_sym_return] = ACTIONS(2393), - [anon_sym_break] = ACTIONS(2393), - [anon_sym_continue] = ACTIONS(2393), - [anon_sym_goto] = ACTIONS(2393), - [anon_sym_DASH_DASH] = ACTIONS(2395), - [anon_sym_PLUS_PLUS] = ACTIONS(2395), - [anon_sym_sizeof] = ACTIONS(2393), - [sym_number_literal] = ACTIONS(2395), - [anon_sym_L_SQUOTE] = ACTIONS(2395), - [anon_sym_u_SQUOTE] = ACTIONS(2395), - [anon_sym_U_SQUOTE] = ACTIONS(2395), - [anon_sym_u8_SQUOTE] = ACTIONS(2395), - [anon_sym_SQUOTE] = ACTIONS(2395), - [anon_sym_L_DQUOTE] = ACTIONS(2395), - [anon_sym_u_DQUOTE] = ACTIONS(2395), - [anon_sym_U_DQUOTE] = ACTIONS(2395), - [anon_sym_u8_DQUOTE] = ACTIONS(2395), - [anon_sym_DQUOTE] = ACTIONS(2395), - [sym_true] = ACTIONS(2393), - [sym_false] = ACTIONS(2393), - [sym_null] = ACTIONS(2393), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2393), - [anon_sym_decltype] = ACTIONS(2393), - [anon_sym_virtual] = ACTIONS(2393), - [anon_sym_typename] = ACTIONS(2393), - [anon_sym_template] = ACTIONS(2393), - [anon_sym_try] = ACTIONS(2393), - [anon_sym_delete] = ACTIONS(2393), - [anon_sym_throw] = ACTIONS(2393), - [anon_sym_co_return] = ACTIONS(2393), - [anon_sym_co_yield] = ACTIONS(2393), - [anon_sym_co_await] = ACTIONS(2393), - [anon_sym_new] = ACTIONS(2393), - [anon_sym_requires] = ACTIONS(2393), - [sym_this] = ACTIONS(2393), - [sym_nullptr] = ACTIONS(2393), - [sym_raw_string_literal] = ACTIONS(2395), - }, - [1111] = { - [sym_identifier] = ACTIONS(2495), - [anon_sym_LPAREN2] = ACTIONS(2497), - [anon_sym_BANG] = ACTIONS(2497), - [anon_sym_TILDE] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2495), - [anon_sym_PLUS] = ACTIONS(2495), - [anon_sym_STAR] = ACTIONS(2497), - [anon_sym_AMP] = ACTIONS(2497), - [anon_sym_SEMI] = ACTIONS(2497), - [anon_sym_typedef] = ACTIONS(2495), - [anon_sym_extern] = ACTIONS(2495), - [anon_sym___attribute__] = ACTIONS(2495), - [anon_sym_COLON_COLON] = ACTIONS(2497), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2497), - [anon_sym___declspec] = ACTIONS(2495), - [anon_sym_LBRACE] = ACTIONS(2497), - [anon_sym_LBRACK] = ACTIONS(2495), - [anon_sym_static] = ACTIONS(2495), - [anon_sym_register] = ACTIONS(2495), - [anon_sym_inline] = ACTIONS(2495), - [anon_sym_thread_local] = ACTIONS(2495), - [anon_sym_const] = ACTIONS(2495), - [anon_sym_volatile] = ACTIONS(2495), - [anon_sym_restrict] = ACTIONS(2495), - [anon_sym__Atomic] = ACTIONS(2495), - [anon_sym_mutable] = ACTIONS(2495), - [anon_sym_constexpr] = ACTIONS(2495), - [anon_sym_constinit] = ACTIONS(2495), - [anon_sym_consteval] = ACTIONS(2495), - [anon_sym_signed] = ACTIONS(2495), - [anon_sym_unsigned] = ACTIONS(2495), - [anon_sym_long] = ACTIONS(2495), - [anon_sym_short] = ACTIONS(2495), - [sym_primitive_type] = ACTIONS(2495), - [anon_sym_enum] = ACTIONS(2495), - [anon_sym_class] = ACTIONS(2495), - [anon_sym_struct] = ACTIONS(2495), - [anon_sym_union] = ACTIONS(2495), - [anon_sym_if] = ACTIONS(2495), - [anon_sym_else] = ACTIONS(2495), - [anon_sym_switch] = ACTIONS(2495), - [anon_sym_while] = ACTIONS(2495), - [anon_sym_do] = ACTIONS(2495), - [anon_sym_for] = ACTIONS(2495), - [anon_sym_return] = ACTIONS(2495), - [anon_sym_break] = ACTIONS(2495), - [anon_sym_continue] = ACTIONS(2495), - [anon_sym_goto] = ACTIONS(2495), - [anon_sym_DASH_DASH] = ACTIONS(2497), - [anon_sym_PLUS_PLUS] = ACTIONS(2497), - [anon_sym_sizeof] = ACTIONS(2495), - [sym_number_literal] = ACTIONS(2497), - [anon_sym_L_SQUOTE] = ACTIONS(2497), - [anon_sym_u_SQUOTE] = ACTIONS(2497), - [anon_sym_U_SQUOTE] = ACTIONS(2497), - [anon_sym_u8_SQUOTE] = ACTIONS(2497), - [anon_sym_SQUOTE] = ACTIONS(2497), - [anon_sym_L_DQUOTE] = ACTIONS(2497), - [anon_sym_u_DQUOTE] = ACTIONS(2497), - [anon_sym_U_DQUOTE] = ACTIONS(2497), - [anon_sym_u8_DQUOTE] = ACTIONS(2497), - [anon_sym_DQUOTE] = ACTIONS(2497), - [sym_true] = ACTIONS(2495), - [sym_false] = ACTIONS(2495), - [sym_null] = ACTIONS(2495), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2495), - [anon_sym_decltype] = ACTIONS(2495), - [anon_sym_virtual] = ACTIONS(2495), - [anon_sym_typename] = ACTIONS(2495), - [anon_sym_template] = ACTIONS(2495), - [anon_sym_try] = ACTIONS(2495), - [anon_sym_delete] = ACTIONS(2495), - [anon_sym_throw] = ACTIONS(2495), - [anon_sym_co_return] = ACTIONS(2495), - [anon_sym_co_yield] = ACTIONS(2495), - [anon_sym_co_await] = ACTIONS(2495), - [anon_sym_new] = ACTIONS(2495), - [anon_sym_requires] = ACTIONS(2495), - [sym_this] = ACTIONS(2495), - [sym_nullptr] = ACTIONS(2495), - [sym_raw_string_literal] = ACTIONS(2497), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1112] = { - [sym_type_qualifier] = STATE(1232), - [sym__expression] = STATE(3835), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2981), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2981), - [sym_call_expression] = STATE(2981), - [sym_field_expression] = STATE(2981), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2981), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2981), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_type_definition_repeat1] = STATE(1232), - [sym_identifier] = ACTIONS(3039), - [anon_sym_LPAREN2] = ACTIONS(3041), - [anon_sym_BANG] = ACTIONS(3045), - [anon_sym_TILDE] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(3132), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(3047), - [anon_sym_LBRACK] = ACTIONS(2272), - [anon_sym_RBRACK] = ACTIONS(3134), - [anon_sym_const] = ACTIONS(3130), - [anon_sym_volatile] = ACTIONS(3130), - [anon_sym_restrict] = ACTIONS(3130), - [anon_sym__Atomic] = ACTIONS(3130), - [anon_sym_mutable] = ACTIONS(3130), - [anon_sym_constexpr] = ACTIONS(3130), - [anon_sym_constinit] = ACTIONS(3130), - [anon_sym_consteval] = ACTIONS(3130), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3049), - [anon_sym_PLUS_PLUS] = ACTIONS(3049), - [anon_sym_sizeof] = ACTIONS(3051), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [692] = { + [sym_identifier] = ACTIONS(2499), + [aux_sym_preproc_include_token1] = ACTIONS(2499), + [aux_sym_preproc_def_token1] = ACTIONS(2499), + [aux_sym_preproc_if_token1] = ACTIONS(2499), + [aux_sym_preproc_if_token2] = ACTIONS(2499), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2499), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2499), + [sym_preproc_directive] = ACTIONS(2499), + [anon_sym_LPAREN2] = ACTIONS(2501), + [anon_sym_BANG] = ACTIONS(2501), + [anon_sym_TILDE] = ACTIONS(2501), + [anon_sym_DASH] = ACTIONS(2499), + [anon_sym_PLUS] = ACTIONS(2499), + [anon_sym_STAR] = ACTIONS(2501), + [anon_sym_AMP_AMP] = ACTIONS(2501), + [anon_sym_AMP] = ACTIONS(2499), + [anon_sym_SEMI] = ACTIONS(2501), + [anon_sym_typedef] = ACTIONS(2499), + [anon_sym_extern] = ACTIONS(2499), + [anon_sym___attribute__] = ACTIONS(2499), + [anon_sym_COLON_COLON] = ACTIONS(2501), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2501), + [anon_sym___declspec] = ACTIONS(2499), + [anon_sym___based] = ACTIONS(2499), + [anon_sym___cdecl] = ACTIONS(2499), + [anon_sym___clrcall] = ACTIONS(2499), + [anon_sym___stdcall] = ACTIONS(2499), + [anon_sym___fastcall] = ACTIONS(2499), + [anon_sym___thiscall] = ACTIONS(2499), + [anon_sym___vectorcall] = ACTIONS(2499), + [anon_sym_LBRACE] = ACTIONS(2501), + [anon_sym_LBRACK] = ACTIONS(2499), + [anon_sym_static] = ACTIONS(2499), + [anon_sym_register] = ACTIONS(2499), + [anon_sym_inline] = ACTIONS(2499), + [anon_sym_thread_local] = ACTIONS(2499), + [anon_sym_const] = ACTIONS(2499), + [anon_sym_volatile] = ACTIONS(2499), + [anon_sym_restrict] = ACTIONS(2499), + [anon_sym__Atomic] = ACTIONS(2499), + [anon_sym_mutable] = ACTIONS(2499), + [anon_sym_constexpr] = ACTIONS(2499), + [anon_sym_constinit] = ACTIONS(2499), + [anon_sym_consteval] = ACTIONS(2499), + [anon_sym_signed] = ACTIONS(2499), + [anon_sym_unsigned] = ACTIONS(2499), + [anon_sym_long] = ACTIONS(2499), + [anon_sym_short] = ACTIONS(2499), + [sym_primitive_type] = ACTIONS(2499), + [anon_sym_enum] = ACTIONS(2499), + [anon_sym_class] = ACTIONS(2499), + [anon_sym_struct] = ACTIONS(2499), + [anon_sym_union] = ACTIONS(2499), + [anon_sym_if] = ACTIONS(2499), + [anon_sym_else] = ACTIONS(2499), + [anon_sym_switch] = ACTIONS(2499), + [anon_sym_case] = ACTIONS(2499), + [anon_sym_default] = ACTIONS(2499), + [anon_sym_while] = ACTIONS(2499), + [anon_sym_do] = ACTIONS(2499), + [anon_sym_for] = ACTIONS(2499), + [anon_sym_return] = ACTIONS(2499), + [anon_sym_break] = ACTIONS(2499), + [anon_sym_continue] = ACTIONS(2499), + [anon_sym_goto] = ACTIONS(2499), + [anon_sym_not] = ACTIONS(2499), + [anon_sym_compl] = ACTIONS(2499), + [anon_sym_DASH_DASH] = ACTIONS(2501), + [anon_sym_PLUS_PLUS] = ACTIONS(2501), + [anon_sym_sizeof] = ACTIONS(2499), + [sym_number_literal] = ACTIONS(2501), + [anon_sym_L_SQUOTE] = ACTIONS(2501), + [anon_sym_u_SQUOTE] = ACTIONS(2501), + [anon_sym_U_SQUOTE] = ACTIONS(2501), + [anon_sym_u8_SQUOTE] = ACTIONS(2501), + [anon_sym_SQUOTE] = ACTIONS(2501), + [anon_sym_L_DQUOTE] = ACTIONS(2501), + [anon_sym_u_DQUOTE] = ACTIONS(2501), + [anon_sym_U_DQUOTE] = ACTIONS(2501), + [anon_sym_u8_DQUOTE] = ACTIONS(2501), + [anon_sym_DQUOTE] = ACTIONS(2501), + [sym_true] = ACTIONS(2499), + [sym_false] = ACTIONS(2499), + [sym_null] = ACTIONS(2499), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3053), - [anon_sym_co_await] = ACTIONS(3055), - [anon_sym_new] = ACTIONS(3057), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2499), + [anon_sym_decltype] = ACTIONS(2499), + [anon_sym_virtual] = ACTIONS(2499), + [anon_sym_explicit] = ACTIONS(2499), + [anon_sym_typename] = ACTIONS(2499), + [anon_sym_template] = ACTIONS(2499), + [anon_sym_operator] = ACTIONS(2499), + [anon_sym_try] = ACTIONS(2499), + [anon_sym_delete] = ACTIONS(2499), + [anon_sym_throw] = ACTIONS(2499), + [anon_sym_namespace] = ACTIONS(2499), + [anon_sym_using] = ACTIONS(2499), + [anon_sym_static_assert] = ACTIONS(2499), + [anon_sym_concept] = ACTIONS(2499), + [anon_sym_co_return] = ACTIONS(2499), + [anon_sym_co_yield] = ACTIONS(2499), + [anon_sym_co_await] = ACTIONS(2499), + [anon_sym_new] = ACTIONS(2499), + [anon_sym_requires] = ACTIONS(2499), + [sym_this] = ACTIONS(2499), + [sym_nullptr] = ACTIONS(2499), + [sym_raw_string_literal] = ACTIONS(2501), }, - [1113] = { - [sym_type_qualifier] = STATE(2268), - [sym__expression] = STATE(3880), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2981), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2981), - [sym_call_expression] = STATE(2981), - [sym_field_expression] = STATE(2981), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2981), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2981), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_type_definition_repeat1] = STATE(2268), - [sym_identifier] = ACTIONS(3039), - [anon_sym_LPAREN2] = ACTIONS(3041), - [anon_sym_BANG] = ACTIONS(3045), - [anon_sym_TILDE] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(3136), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(3047), - [anon_sym_LBRACK] = ACTIONS(2272), - [anon_sym_RBRACK] = ACTIONS(3138), - [anon_sym_const] = ACTIONS(3130), - [anon_sym_volatile] = ACTIONS(3130), - [anon_sym_restrict] = ACTIONS(3130), - [anon_sym__Atomic] = ACTIONS(3130), - [anon_sym_mutable] = ACTIONS(3130), - [anon_sym_constexpr] = ACTIONS(3130), - [anon_sym_constinit] = ACTIONS(3130), - [anon_sym_consteval] = ACTIONS(3130), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3049), - [anon_sym_PLUS_PLUS] = ACTIONS(3049), - [anon_sym_sizeof] = ACTIONS(3051), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [693] = { + [ts_builtin_sym_end] = ACTIONS(2597), + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3053), - [anon_sym_co_await] = ACTIONS(3055), - [anon_sym_new] = ACTIONS(3057), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), - }, - [1114] = { - [sym_identifier] = ACTIONS(2409), - [anon_sym_LPAREN2] = ACTIONS(2411), - [anon_sym_BANG] = ACTIONS(2411), - [anon_sym_TILDE] = ACTIONS(2411), - [anon_sym_DASH] = ACTIONS(2409), - [anon_sym_PLUS] = ACTIONS(2409), - [anon_sym_STAR] = ACTIONS(2411), - [anon_sym_AMP] = ACTIONS(2411), - [anon_sym_SEMI] = ACTIONS(2411), - [anon_sym_typedef] = ACTIONS(2409), - [anon_sym_extern] = ACTIONS(2409), - [anon_sym___attribute__] = ACTIONS(2409), - [anon_sym_COLON_COLON] = ACTIONS(2411), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2411), - [anon_sym___declspec] = ACTIONS(2409), - [anon_sym_LBRACE] = ACTIONS(2411), - [anon_sym_LBRACK] = ACTIONS(2409), - [anon_sym_static] = ACTIONS(2409), - [anon_sym_register] = ACTIONS(2409), - [anon_sym_inline] = ACTIONS(2409), - [anon_sym_thread_local] = ACTIONS(2409), - [anon_sym_const] = ACTIONS(2409), - [anon_sym_volatile] = ACTIONS(2409), - [anon_sym_restrict] = ACTIONS(2409), - [anon_sym__Atomic] = ACTIONS(2409), - [anon_sym_mutable] = ACTIONS(2409), - [anon_sym_constexpr] = ACTIONS(2409), - [anon_sym_constinit] = ACTIONS(2409), - [anon_sym_consteval] = ACTIONS(2409), - [anon_sym_signed] = ACTIONS(2409), - [anon_sym_unsigned] = ACTIONS(2409), - [anon_sym_long] = ACTIONS(2409), - [anon_sym_short] = ACTIONS(2409), - [sym_primitive_type] = ACTIONS(2409), - [anon_sym_enum] = ACTIONS(2409), - [anon_sym_class] = ACTIONS(2409), - [anon_sym_struct] = ACTIONS(2409), - [anon_sym_union] = ACTIONS(2409), - [anon_sym_if] = ACTIONS(2409), - [anon_sym_else] = ACTIONS(2409), - [anon_sym_switch] = ACTIONS(2409), - [anon_sym_while] = ACTIONS(2409), - [anon_sym_do] = ACTIONS(2409), - [anon_sym_for] = ACTIONS(2409), - [anon_sym_return] = ACTIONS(2409), - [anon_sym_break] = ACTIONS(2409), - [anon_sym_continue] = ACTIONS(2409), - [anon_sym_goto] = ACTIONS(2409), - [anon_sym_DASH_DASH] = ACTIONS(2411), - [anon_sym_PLUS_PLUS] = ACTIONS(2411), - [anon_sym_sizeof] = ACTIONS(2409), - [sym_number_literal] = ACTIONS(2411), - [anon_sym_L_SQUOTE] = ACTIONS(2411), - [anon_sym_u_SQUOTE] = ACTIONS(2411), - [anon_sym_U_SQUOTE] = ACTIONS(2411), - [anon_sym_u8_SQUOTE] = ACTIONS(2411), - [anon_sym_SQUOTE] = ACTIONS(2411), - [anon_sym_L_DQUOTE] = ACTIONS(2411), - [anon_sym_u_DQUOTE] = ACTIONS(2411), - [anon_sym_U_DQUOTE] = ACTIONS(2411), - [anon_sym_u8_DQUOTE] = ACTIONS(2411), - [anon_sym_DQUOTE] = ACTIONS(2411), - [sym_true] = ACTIONS(2409), - [sym_false] = ACTIONS(2409), - [sym_null] = ACTIONS(2409), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2409), - [anon_sym_decltype] = ACTIONS(2409), - [anon_sym_virtual] = ACTIONS(2409), - [anon_sym_typename] = ACTIONS(2409), - [anon_sym_template] = ACTIONS(2409), - [anon_sym_try] = ACTIONS(2409), - [anon_sym_delete] = ACTIONS(2409), - [anon_sym_throw] = ACTIONS(2409), - [anon_sym_co_return] = ACTIONS(2409), - [anon_sym_co_yield] = ACTIONS(2409), - [anon_sym_co_await] = ACTIONS(2409), - [anon_sym_new] = ACTIONS(2409), - [anon_sym_requires] = ACTIONS(2409), - [sym_this] = ACTIONS(2409), - [sym_nullptr] = ACTIONS(2409), - [sym_raw_string_literal] = ACTIONS(2411), - }, - [1115] = { - [sym_identifier] = ACTIONS(2413), - [anon_sym_LPAREN2] = ACTIONS(2415), - [anon_sym_BANG] = ACTIONS(2415), - [anon_sym_TILDE] = ACTIONS(2415), - [anon_sym_DASH] = ACTIONS(2413), - [anon_sym_PLUS] = ACTIONS(2413), - [anon_sym_STAR] = ACTIONS(2415), - [anon_sym_AMP] = ACTIONS(2415), - [anon_sym_SEMI] = ACTIONS(2415), - [anon_sym_typedef] = ACTIONS(2413), - [anon_sym_extern] = ACTIONS(2413), - [anon_sym___attribute__] = ACTIONS(2413), - [anon_sym_COLON_COLON] = ACTIONS(2415), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2415), - [anon_sym___declspec] = ACTIONS(2413), - [anon_sym_LBRACE] = ACTIONS(2415), - [anon_sym_LBRACK] = ACTIONS(2413), - [anon_sym_static] = ACTIONS(2413), - [anon_sym_register] = ACTIONS(2413), - [anon_sym_inline] = ACTIONS(2413), - [anon_sym_thread_local] = ACTIONS(2413), - [anon_sym_const] = ACTIONS(2413), - [anon_sym_volatile] = ACTIONS(2413), - [anon_sym_restrict] = ACTIONS(2413), - [anon_sym__Atomic] = ACTIONS(2413), - [anon_sym_mutable] = ACTIONS(2413), - [anon_sym_constexpr] = ACTIONS(2413), - [anon_sym_constinit] = ACTIONS(2413), - [anon_sym_consteval] = ACTIONS(2413), - [anon_sym_signed] = ACTIONS(2413), - [anon_sym_unsigned] = ACTIONS(2413), - [anon_sym_long] = ACTIONS(2413), - [anon_sym_short] = ACTIONS(2413), - [sym_primitive_type] = ACTIONS(2413), - [anon_sym_enum] = ACTIONS(2413), - [anon_sym_class] = ACTIONS(2413), - [anon_sym_struct] = ACTIONS(2413), - [anon_sym_union] = ACTIONS(2413), - [anon_sym_if] = ACTIONS(2413), - [anon_sym_else] = ACTIONS(2413), - [anon_sym_switch] = ACTIONS(2413), - [anon_sym_while] = ACTIONS(2413), - [anon_sym_do] = ACTIONS(2413), - [anon_sym_for] = ACTIONS(2413), - [anon_sym_return] = ACTIONS(2413), - [anon_sym_break] = ACTIONS(2413), - [anon_sym_continue] = ACTIONS(2413), - [anon_sym_goto] = ACTIONS(2413), - [anon_sym_DASH_DASH] = ACTIONS(2415), - [anon_sym_PLUS_PLUS] = ACTIONS(2415), - [anon_sym_sizeof] = ACTIONS(2413), - [sym_number_literal] = ACTIONS(2415), - [anon_sym_L_SQUOTE] = ACTIONS(2415), - [anon_sym_u_SQUOTE] = ACTIONS(2415), - [anon_sym_U_SQUOTE] = ACTIONS(2415), - [anon_sym_u8_SQUOTE] = ACTIONS(2415), - [anon_sym_SQUOTE] = ACTIONS(2415), - [anon_sym_L_DQUOTE] = ACTIONS(2415), - [anon_sym_u_DQUOTE] = ACTIONS(2415), - [anon_sym_U_DQUOTE] = ACTIONS(2415), - [anon_sym_u8_DQUOTE] = ACTIONS(2415), - [anon_sym_DQUOTE] = ACTIONS(2415), - [sym_true] = ACTIONS(2413), - [sym_false] = ACTIONS(2413), - [sym_null] = ACTIONS(2413), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2413), - [anon_sym_decltype] = ACTIONS(2413), - [anon_sym_virtual] = ACTIONS(2413), - [anon_sym_typename] = ACTIONS(2413), - [anon_sym_template] = ACTIONS(2413), - [anon_sym_try] = ACTIONS(2413), - [anon_sym_delete] = ACTIONS(2413), - [anon_sym_throw] = ACTIONS(2413), - [anon_sym_co_return] = ACTIONS(2413), - [anon_sym_co_yield] = ACTIONS(2413), - [anon_sym_co_await] = ACTIONS(2413), - [anon_sym_new] = ACTIONS(2413), - [anon_sym_requires] = ACTIONS(2413), - [sym_this] = ACTIONS(2413), - [sym_nullptr] = ACTIONS(2413), - [sym_raw_string_literal] = ACTIONS(2415), - }, - [1116] = { - [sym_identifier] = ACTIONS(2417), - [anon_sym_LPAREN2] = ACTIONS(2419), - [anon_sym_BANG] = ACTIONS(2419), - [anon_sym_TILDE] = ACTIONS(2419), - [anon_sym_DASH] = ACTIONS(2417), - [anon_sym_PLUS] = ACTIONS(2417), - [anon_sym_STAR] = ACTIONS(2419), - [anon_sym_AMP] = ACTIONS(2419), - [anon_sym_SEMI] = ACTIONS(2419), - [anon_sym_typedef] = ACTIONS(2417), - [anon_sym_extern] = ACTIONS(2417), - [anon_sym___attribute__] = ACTIONS(2417), - [anon_sym_COLON_COLON] = ACTIONS(2419), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2419), - [anon_sym___declspec] = ACTIONS(2417), - [anon_sym_LBRACE] = ACTIONS(2419), - [anon_sym_LBRACK] = ACTIONS(2417), - [anon_sym_static] = ACTIONS(2417), - [anon_sym_register] = ACTIONS(2417), - [anon_sym_inline] = ACTIONS(2417), - [anon_sym_thread_local] = ACTIONS(2417), - [anon_sym_const] = ACTIONS(2417), - [anon_sym_volatile] = ACTIONS(2417), - [anon_sym_restrict] = ACTIONS(2417), - [anon_sym__Atomic] = ACTIONS(2417), - [anon_sym_mutable] = ACTIONS(2417), - [anon_sym_constexpr] = ACTIONS(2417), - [anon_sym_constinit] = ACTIONS(2417), - [anon_sym_consteval] = ACTIONS(2417), - [anon_sym_signed] = ACTIONS(2417), - [anon_sym_unsigned] = ACTIONS(2417), - [anon_sym_long] = ACTIONS(2417), - [anon_sym_short] = ACTIONS(2417), - [sym_primitive_type] = ACTIONS(2417), - [anon_sym_enum] = ACTIONS(2417), - [anon_sym_class] = ACTIONS(2417), - [anon_sym_struct] = ACTIONS(2417), - [anon_sym_union] = ACTIONS(2417), - [anon_sym_if] = ACTIONS(2417), - [anon_sym_else] = ACTIONS(2417), - [anon_sym_switch] = ACTIONS(2417), - [anon_sym_while] = ACTIONS(2417), - [anon_sym_do] = ACTIONS(2417), - [anon_sym_for] = ACTIONS(2417), - [anon_sym_return] = ACTIONS(2417), - [anon_sym_break] = ACTIONS(2417), - [anon_sym_continue] = ACTIONS(2417), - [anon_sym_goto] = ACTIONS(2417), - [anon_sym_DASH_DASH] = ACTIONS(2419), - [anon_sym_PLUS_PLUS] = ACTIONS(2419), - [anon_sym_sizeof] = ACTIONS(2417), - [sym_number_literal] = ACTIONS(2419), - [anon_sym_L_SQUOTE] = ACTIONS(2419), - [anon_sym_u_SQUOTE] = ACTIONS(2419), - [anon_sym_U_SQUOTE] = ACTIONS(2419), - [anon_sym_u8_SQUOTE] = ACTIONS(2419), - [anon_sym_SQUOTE] = ACTIONS(2419), - [anon_sym_L_DQUOTE] = ACTIONS(2419), - [anon_sym_u_DQUOTE] = ACTIONS(2419), - [anon_sym_U_DQUOTE] = ACTIONS(2419), - [anon_sym_u8_DQUOTE] = ACTIONS(2419), - [anon_sym_DQUOTE] = ACTIONS(2419), - [sym_true] = ACTIONS(2417), - [sym_false] = ACTIONS(2417), - [sym_null] = ACTIONS(2417), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2417), - [anon_sym_decltype] = ACTIONS(2417), - [anon_sym_virtual] = ACTIONS(2417), - [anon_sym_typename] = ACTIONS(2417), - [anon_sym_template] = ACTIONS(2417), - [anon_sym_try] = ACTIONS(2417), - [anon_sym_delete] = ACTIONS(2417), - [anon_sym_throw] = ACTIONS(2417), - [anon_sym_co_return] = ACTIONS(2417), - [anon_sym_co_yield] = ACTIONS(2417), - [anon_sym_co_await] = ACTIONS(2417), - [anon_sym_new] = ACTIONS(2417), - [anon_sym_requires] = ACTIONS(2417), - [sym_this] = ACTIONS(2417), - [sym_nullptr] = ACTIONS(2417), - [sym_raw_string_literal] = ACTIONS(2419), - }, - [1117] = { - [sym_identifier] = ACTIONS(2425), - [anon_sym_LPAREN2] = ACTIONS(2427), - [anon_sym_BANG] = ACTIONS(2427), - [anon_sym_TILDE] = ACTIONS(2427), - [anon_sym_DASH] = ACTIONS(2425), - [anon_sym_PLUS] = ACTIONS(2425), - [anon_sym_STAR] = ACTIONS(2427), - [anon_sym_AMP] = ACTIONS(2427), - [anon_sym_SEMI] = ACTIONS(2427), - [anon_sym_typedef] = ACTIONS(2425), - [anon_sym_extern] = ACTIONS(2425), - [anon_sym___attribute__] = ACTIONS(2425), - [anon_sym_COLON_COLON] = ACTIONS(2427), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2427), - [anon_sym___declspec] = ACTIONS(2425), - [anon_sym_LBRACE] = ACTIONS(2427), - [anon_sym_LBRACK] = ACTIONS(2425), - [anon_sym_static] = ACTIONS(2425), - [anon_sym_register] = ACTIONS(2425), - [anon_sym_inline] = ACTIONS(2425), - [anon_sym_thread_local] = ACTIONS(2425), - [anon_sym_const] = ACTIONS(2425), - [anon_sym_volatile] = ACTIONS(2425), - [anon_sym_restrict] = ACTIONS(2425), - [anon_sym__Atomic] = ACTIONS(2425), - [anon_sym_mutable] = ACTIONS(2425), - [anon_sym_constexpr] = ACTIONS(2425), - [anon_sym_constinit] = ACTIONS(2425), - [anon_sym_consteval] = ACTIONS(2425), - [anon_sym_signed] = ACTIONS(2425), - [anon_sym_unsigned] = ACTIONS(2425), - [anon_sym_long] = ACTIONS(2425), - [anon_sym_short] = ACTIONS(2425), - [sym_primitive_type] = ACTIONS(2425), - [anon_sym_enum] = ACTIONS(2425), - [anon_sym_class] = ACTIONS(2425), - [anon_sym_struct] = ACTIONS(2425), - [anon_sym_union] = ACTIONS(2425), - [anon_sym_if] = ACTIONS(2425), - [anon_sym_else] = ACTIONS(2425), - [anon_sym_switch] = ACTIONS(2425), - [anon_sym_while] = ACTIONS(2425), - [anon_sym_do] = ACTIONS(2425), - [anon_sym_for] = ACTIONS(2425), - [anon_sym_return] = ACTIONS(2425), - [anon_sym_break] = ACTIONS(2425), - [anon_sym_continue] = ACTIONS(2425), - [anon_sym_goto] = ACTIONS(2425), - [anon_sym_DASH_DASH] = ACTIONS(2427), - [anon_sym_PLUS_PLUS] = ACTIONS(2427), - [anon_sym_sizeof] = ACTIONS(2425), - [sym_number_literal] = ACTIONS(2427), - [anon_sym_L_SQUOTE] = ACTIONS(2427), - [anon_sym_u_SQUOTE] = ACTIONS(2427), - [anon_sym_U_SQUOTE] = ACTIONS(2427), - [anon_sym_u8_SQUOTE] = ACTIONS(2427), - [anon_sym_SQUOTE] = ACTIONS(2427), - [anon_sym_L_DQUOTE] = ACTIONS(2427), - [anon_sym_u_DQUOTE] = ACTIONS(2427), - [anon_sym_U_DQUOTE] = ACTIONS(2427), - [anon_sym_u8_DQUOTE] = ACTIONS(2427), - [anon_sym_DQUOTE] = ACTIONS(2427), - [sym_true] = ACTIONS(2425), - [sym_false] = ACTIONS(2425), - [sym_null] = ACTIONS(2425), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2425), - [anon_sym_decltype] = ACTIONS(2425), - [anon_sym_virtual] = ACTIONS(2425), - [anon_sym_typename] = ACTIONS(2425), - [anon_sym_template] = ACTIONS(2425), - [anon_sym_try] = ACTIONS(2425), - [anon_sym_delete] = ACTIONS(2425), - [anon_sym_throw] = ACTIONS(2425), - [anon_sym_co_return] = ACTIONS(2425), - [anon_sym_co_yield] = ACTIONS(2425), - [anon_sym_co_await] = ACTIONS(2425), - [anon_sym_new] = ACTIONS(2425), - [anon_sym_requires] = ACTIONS(2425), - [sym_this] = ACTIONS(2425), - [sym_nullptr] = ACTIONS(2425), - [sym_raw_string_literal] = ACTIONS(2427), - }, - [1118] = { - [sym_identifier] = ACTIONS(2429), - [anon_sym_LPAREN2] = ACTIONS(2431), - [anon_sym_BANG] = ACTIONS(2431), - [anon_sym_TILDE] = ACTIONS(2431), - [anon_sym_DASH] = ACTIONS(2429), - [anon_sym_PLUS] = ACTIONS(2429), - [anon_sym_STAR] = ACTIONS(2431), - [anon_sym_AMP] = ACTIONS(2431), - [anon_sym_SEMI] = ACTIONS(2431), - [anon_sym_typedef] = ACTIONS(2429), - [anon_sym_extern] = ACTIONS(2429), - [anon_sym___attribute__] = ACTIONS(2429), - [anon_sym_COLON_COLON] = ACTIONS(2431), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2431), - [anon_sym___declspec] = ACTIONS(2429), - [anon_sym_LBRACE] = ACTIONS(2431), - [anon_sym_LBRACK] = ACTIONS(2429), - [anon_sym_static] = ACTIONS(2429), - [anon_sym_register] = ACTIONS(2429), - [anon_sym_inline] = ACTIONS(2429), - [anon_sym_thread_local] = ACTIONS(2429), - [anon_sym_const] = ACTIONS(2429), - [anon_sym_volatile] = ACTIONS(2429), - [anon_sym_restrict] = ACTIONS(2429), - [anon_sym__Atomic] = ACTIONS(2429), - [anon_sym_mutable] = ACTIONS(2429), - [anon_sym_constexpr] = ACTIONS(2429), - [anon_sym_constinit] = ACTIONS(2429), - [anon_sym_consteval] = ACTIONS(2429), - [anon_sym_signed] = ACTIONS(2429), - [anon_sym_unsigned] = ACTIONS(2429), - [anon_sym_long] = ACTIONS(2429), - [anon_sym_short] = ACTIONS(2429), - [sym_primitive_type] = ACTIONS(2429), - [anon_sym_enum] = ACTIONS(2429), - [anon_sym_class] = ACTIONS(2429), - [anon_sym_struct] = ACTIONS(2429), - [anon_sym_union] = ACTIONS(2429), - [anon_sym_if] = ACTIONS(2429), - [anon_sym_else] = ACTIONS(2429), - [anon_sym_switch] = ACTIONS(2429), - [anon_sym_while] = ACTIONS(2429), - [anon_sym_do] = ACTIONS(2429), - [anon_sym_for] = ACTIONS(2429), - [anon_sym_return] = ACTIONS(2429), - [anon_sym_break] = ACTIONS(2429), - [anon_sym_continue] = ACTIONS(2429), - [anon_sym_goto] = ACTIONS(2429), - [anon_sym_DASH_DASH] = ACTIONS(2431), - [anon_sym_PLUS_PLUS] = ACTIONS(2431), - [anon_sym_sizeof] = ACTIONS(2429), - [sym_number_literal] = ACTIONS(2431), - [anon_sym_L_SQUOTE] = ACTIONS(2431), - [anon_sym_u_SQUOTE] = ACTIONS(2431), - [anon_sym_U_SQUOTE] = ACTIONS(2431), - [anon_sym_u8_SQUOTE] = ACTIONS(2431), - [anon_sym_SQUOTE] = ACTIONS(2431), - [anon_sym_L_DQUOTE] = ACTIONS(2431), - [anon_sym_u_DQUOTE] = ACTIONS(2431), - [anon_sym_U_DQUOTE] = ACTIONS(2431), - [anon_sym_u8_DQUOTE] = ACTIONS(2431), - [anon_sym_DQUOTE] = ACTIONS(2431), - [sym_true] = ACTIONS(2429), - [sym_false] = ACTIONS(2429), - [sym_null] = ACTIONS(2429), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2429), - [anon_sym_decltype] = ACTIONS(2429), - [anon_sym_virtual] = ACTIONS(2429), - [anon_sym_typename] = ACTIONS(2429), - [anon_sym_template] = ACTIONS(2429), - [anon_sym_try] = ACTIONS(2429), - [anon_sym_delete] = ACTIONS(2429), - [anon_sym_throw] = ACTIONS(2429), - [anon_sym_co_return] = ACTIONS(2429), - [anon_sym_co_yield] = ACTIONS(2429), - [anon_sym_co_await] = ACTIONS(2429), - [anon_sym_new] = ACTIONS(2429), - [anon_sym_requires] = ACTIONS(2429), - [sym_this] = ACTIONS(2429), - [sym_nullptr] = ACTIONS(2429), - [sym_raw_string_literal] = ACTIONS(2431), - }, - [1119] = { - [sym_identifier] = ACTIONS(2443), - [anon_sym_LPAREN2] = ACTIONS(2445), - [anon_sym_BANG] = ACTIONS(2445), - [anon_sym_TILDE] = ACTIONS(2445), - [anon_sym_DASH] = ACTIONS(2443), - [anon_sym_PLUS] = ACTIONS(2443), - [anon_sym_STAR] = ACTIONS(2445), - [anon_sym_AMP] = ACTIONS(2445), - [anon_sym_SEMI] = ACTIONS(2445), - [anon_sym_typedef] = ACTIONS(2443), - [anon_sym_extern] = ACTIONS(2443), - [anon_sym___attribute__] = ACTIONS(2443), - [anon_sym_COLON_COLON] = ACTIONS(2445), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2445), - [anon_sym___declspec] = ACTIONS(2443), - [anon_sym_LBRACE] = ACTIONS(2445), - [anon_sym_LBRACK] = ACTIONS(2443), - [anon_sym_static] = ACTIONS(2443), - [anon_sym_register] = ACTIONS(2443), - [anon_sym_inline] = ACTIONS(2443), - [anon_sym_thread_local] = ACTIONS(2443), - [anon_sym_const] = ACTIONS(2443), - [anon_sym_volatile] = ACTIONS(2443), - [anon_sym_restrict] = ACTIONS(2443), - [anon_sym__Atomic] = ACTIONS(2443), - [anon_sym_mutable] = ACTIONS(2443), - [anon_sym_constexpr] = ACTIONS(2443), - [anon_sym_constinit] = ACTIONS(2443), - [anon_sym_consteval] = ACTIONS(2443), - [anon_sym_signed] = ACTIONS(2443), - [anon_sym_unsigned] = ACTIONS(2443), - [anon_sym_long] = ACTIONS(2443), - [anon_sym_short] = ACTIONS(2443), - [sym_primitive_type] = ACTIONS(2443), - [anon_sym_enum] = ACTIONS(2443), - [anon_sym_class] = ACTIONS(2443), - [anon_sym_struct] = ACTIONS(2443), - [anon_sym_union] = ACTIONS(2443), - [anon_sym_if] = ACTIONS(2443), - [anon_sym_else] = ACTIONS(2443), - [anon_sym_switch] = ACTIONS(2443), - [anon_sym_while] = ACTIONS(2443), - [anon_sym_do] = ACTIONS(2443), - [anon_sym_for] = ACTIONS(2443), - [anon_sym_return] = ACTIONS(2443), - [anon_sym_break] = ACTIONS(2443), - [anon_sym_continue] = ACTIONS(2443), - [anon_sym_goto] = ACTIONS(2443), - [anon_sym_DASH_DASH] = ACTIONS(2445), - [anon_sym_PLUS_PLUS] = ACTIONS(2445), - [anon_sym_sizeof] = ACTIONS(2443), - [sym_number_literal] = ACTIONS(2445), - [anon_sym_L_SQUOTE] = ACTIONS(2445), - [anon_sym_u_SQUOTE] = ACTIONS(2445), - [anon_sym_U_SQUOTE] = ACTIONS(2445), - [anon_sym_u8_SQUOTE] = ACTIONS(2445), - [anon_sym_SQUOTE] = ACTIONS(2445), - [anon_sym_L_DQUOTE] = ACTIONS(2445), - [anon_sym_u_DQUOTE] = ACTIONS(2445), - [anon_sym_U_DQUOTE] = ACTIONS(2445), - [anon_sym_u8_DQUOTE] = ACTIONS(2445), - [anon_sym_DQUOTE] = ACTIONS(2445), - [sym_true] = ACTIONS(2443), - [sym_false] = ACTIONS(2443), - [sym_null] = ACTIONS(2443), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2443), - [anon_sym_decltype] = ACTIONS(2443), - [anon_sym_virtual] = ACTIONS(2443), - [anon_sym_typename] = ACTIONS(2443), - [anon_sym_template] = ACTIONS(2443), - [anon_sym_try] = ACTIONS(2443), - [anon_sym_delete] = ACTIONS(2443), - [anon_sym_throw] = ACTIONS(2443), - [anon_sym_co_return] = ACTIONS(2443), - [anon_sym_co_yield] = ACTIONS(2443), - [anon_sym_co_await] = ACTIONS(2443), - [anon_sym_new] = ACTIONS(2443), - [anon_sym_requires] = ACTIONS(2443), - [sym_this] = ACTIONS(2443), - [sym_nullptr] = ACTIONS(2443), - [sym_raw_string_literal] = ACTIONS(2445), - }, - [1120] = { - [sym_identifier] = ACTIONS(2483), - [anon_sym_LPAREN2] = ACTIONS(2485), - [anon_sym_BANG] = ACTIONS(2485), - [anon_sym_TILDE] = ACTIONS(2485), - [anon_sym_DASH] = ACTIONS(2483), - [anon_sym_PLUS] = ACTIONS(2483), - [anon_sym_STAR] = ACTIONS(2485), - [anon_sym_AMP] = ACTIONS(2485), - [anon_sym_SEMI] = ACTIONS(2485), - [anon_sym_typedef] = ACTIONS(2483), - [anon_sym_extern] = ACTIONS(2483), - [anon_sym___attribute__] = ACTIONS(2483), - [anon_sym_COLON_COLON] = ACTIONS(2485), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2485), - [anon_sym___declspec] = ACTIONS(2483), - [anon_sym_LBRACE] = ACTIONS(2485), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_static] = ACTIONS(2483), - [anon_sym_register] = ACTIONS(2483), - [anon_sym_inline] = ACTIONS(2483), - [anon_sym_thread_local] = ACTIONS(2483), - [anon_sym_const] = ACTIONS(2483), - [anon_sym_volatile] = ACTIONS(2483), - [anon_sym_restrict] = ACTIONS(2483), - [anon_sym__Atomic] = ACTIONS(2483), - [anon_sym_mutable] = ACTIONS(2483), - [anon_sym_constexpr] = ACTIONS(2483), - [anon_sym_constinit] = ACTIONS(2483), - [anon_sym_consteval] = ACTIONS(2483), - [anon_sym_signed] = ACTIONS(2483), - [anon_sym_unsigned] = ACTIONS(2483), - [anon_sym_long] = ACTIONS(2483), - [anon_sym_short] = ACTIONS(2483), - [sym_primitive_type] = ACTIONS(2483), - [anon_sym_enum] = ACTIONS(2483), - [anon_sym_class] = ACTIONS(2483), - [anon_sym_struct] = ACTIONS(2483), - [anon_sym_union] = ACTIONS(2483), - [anon_sym_if] = ACTIONS(2483), - [anon_sym_else] = ACTIONS(2483), - [anon_sym_switch] = ACTIONS(2483), - [anon_sym_while] = ACTIONS(2483), - [anon_sym_do] = ACTIONS(2483), - [anon_sym_for] = ACTIONS(2483), - [anon_sym_return] = ACTIONS(2483), - [anon_sym_break] = ACTIONS(2483), - [anon_sym_continue] = ACTIONS(2483), - [anon_sym_goto] = ACTIONS(2483), - [anon_sym_DASH_DASH] = ACTIONS(2485), - [anon_sym_PLUS_PLUS] = ACTIONS(2485), - [anon_sym_sizeof] = ACTIONS(2483), - [sym_number_literal] = ACTIONS(2485), - [anon_sym_L_SQUOTE] = ACTIONS(2485), - [anon_sym_u_SQUOTE] = ACTIONS(2485), - [anon_sym_U_SQUOTE] = ACTIONS(2485), - [anon_sym_u8_SQUOTE] = ACTIONS(2485), - [anon_sym_SQUOTE] = ACTIONS(2485), - [anon_sym_L_DQUOTE] = ACTIONS(2485), - [anon_sym_u_DQUOTE] = ACTIONS(2485), - [anon_sym_U_DQUOTE] = ACTIONS(2485), - [anon_sym_u8_DQUOTE] = ACTIONS(2485), - [anon_sym_DQUOTE] = ACTIONS(2485), - [sym_true] = ACTIONS(2483), - [sym_false] = ACTIONS(2483), - [sym_null] = ACTIONS(2483), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2483), - [anon_sym_decltype] = ACTIONS(2483), - [anon_sym_virtual] = ACTIONS(2483), - [anon_sym_typename] = ACTIONS(2483), - [anon_sym_template] = ACTIONS(2483), - [anon_sym_try] = ACTIONS(2483), - [anon_sym_delete] = ACTIONS(2483), - [anon_sym_throw] = ACTIONS(2483), - [anon_sym_co_return] = ACTIONS(2483), - [anon_sym_co_yield] = ACTIONS(2483), - [anon_sym_co_await] = ACTIONS(2483), - [anon_sym_new] = ACTIONS(2483), - [anon_sym_requires] = ACTIONS(2483), - [sym_this] = ACTIONS(2483), - [sym_nullptr] = ACTIONS(2483), - [sym_raw_string_literal] = ACTIONS(2485), - }, - [1121] = { - [sym_identifier] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2461), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [1122] = { - [sym_identifier] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2461), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1123] = { - [sym_type_qualifier] = STATE(2268), - [sym__expression] = STATE(3950), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2981), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2981), - [sym_call_expression] = STATE(2981), - [sym_field_expression] = STATE(2981), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2981), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2981), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_type_definition_repeat1] = STATE(2268), - [sym_identifier] = ACTIONS(3039), - [anon_sym_LPAREN2] = ACTIONS(3041), - [anon_sym_BANG] = ACTIONS(3045), - [anon_sym_TILDE] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(3140), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(3047), - [anon_sym_LBRACK] = ACTIONS(2272), - [anon_sym_RBRACK] = ACTIONS(3142), - [anon_sym_const] = ACTIONS(3130), - [anon_sym_volatile] = ACTIONS(3130), - [anon_sym_restrict] = ACTIONS(3130), - [anon_sym__Atomic] = ACTIONS(3130), - [anon_sym_mutable] = ACTIONS(3130), - [anon_sym_constexpr] = ACTIONS(3130), - [anon_sym_constinit] = ACTIONS(3130), - [anon_sym_consteval] = ACTIONS(3130), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3049), - [anon_sym_PLUS_PLUS] = ACTIONS(3049), - [anon_sym_sizeof] = ACTIONS(3051), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3053), - [anon_sym_co_await] = ACTIONS(3055), - [anon_sym_new] = ACTIONS(3057), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [694] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token2] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1124] = { - [sym_type_qualifier] = STATE(2268), - [sym__expression] = STATE(3915), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2981), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2981), - [sym_call_expression] = STATE(2981), - [sym_field_expression] = STATE(2981), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2981), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2981), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_type_definition_repeat1] = STATE(2268), - [sym_identifier] = ACTIONS(3039), - [anon_sym_LPAREN2] = ACTIONS(3041), - [anon_sym_BANG] = ACTIONS(3045), - [anon_sym_TILDE] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(3144), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(3047), - [anon_sym_LBRACK] = ACTIONS(2272), - [anon_sym_RBRACK] = ACTIONS(3146), - [anon_sym_const] = ACTIONS(3130), - [anon_sym_volatile] = ACTIONS(3130), - [anon_sym_restrict] = ACTIONS(3130), - [anon_sym__Atomic] = ACTIONS(3130), - [anon_sym_mutable] = ACTIONS(3130), - [anon_sym_constexpr] = ACTIONS(3130), - [anon_sym_constinit] = ACTIONS(3130), - [anon_sym_consteval] = ACTIONS(3130), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3049), - [anon_sym_PLUS_PLUS] = ACTIONS(3049), - [anon_sym_sizeof] = ACTIONS(3051), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3053), - [anon_sym_co_await] = ACTIONS(3055), - [anon_sym_new] = ACTIONS(3057), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [695] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token2] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1125] = { - [sym_identifier] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2461), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), + [696] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token2] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1126] = { - [sym_identifier] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2461), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [1127] = { - [sym_type_qualifier] = STATE(1186), - [sym__expression] = STATE(3917), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2981), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2981), - [sym_call_expression] = STATE(2981), - [sym_field_expression] = STATE(2981), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2981), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2981), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_type_definition_repeat1] = STATE(1186), - [sym_identifier] = ACTIONS(3039), - [anon_sym_LPAREN2] = ACTIONS(3041), - [anon_sym_BANG] = ACTIONS(3045), - [anon_sym_TILDE] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(3148), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(3047), - [anon_sym_LBRACK] = ACTIONS(2272), - [anon_sym_RBRACK] = ACTIONS(3150), - [anon_sym_const] = ACTIONS(3130), - [anon_sym_volatile] = ACTIONS(3130), - [anon_sym_restrict] = ACTIONS(3130), - [anon_sym__Atomic] = ACTIONS(3130), - [anon_sym_mutable] = ACTIONS(3130), - [anon_sym_constexpr] = ACTIONS(3130), - [anon_sym_constinit] = ACTIONS(3130), - [anon_sym_consteval] = ACTIONS(3130), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3049), - [anon_sym_PLUS_PLUS] = ACTIONS(3049), - [anon_sym_sizeof] = ACTIONS(3051), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [697] = { + [ts_builtin_sym_end] = ACTIONS(2597), + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3053), - [anon_sym_co_await] = ACTIONS(3055), - [anon_sym_new] = ACTIONS(3057), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1128] = { - [sym_identifier] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2461), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), + [698] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token2] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1129] = { - [sym_identifier] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2461), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), + [699] = { + [ts_builtin_sym_end] = ACTIONS(2597), + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1130] = { - [sym_identifier] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2461), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), + [700] = { + [ts_builtin_sym_end] = ACTIONS(2561), + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1131] = { - [sym_identifier] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2461), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), + [701] = { + [ts_builtin_sym_end] = ACTIONS(2561), + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1132] = { - [sym_identifier] = ACTIONS(2519), - [anon_sym_LPAREN2] = ACTIONS(2521), - [anon_sym_BANG] = ACTIONS(2521), - [anon_sym_TILDE] = ACTIONS(2521), - [anon_sym_DASH] = ACTIONS(2519), - [anon_sym_PLUS] = ACTIONS(2519), - [anon_sym_STAR] = ACTIONS(2521), - [anon_sym_AMP] = ACTIONS(2521), - [anon_sym_SEMI] = ACTIONS(2521), - [anon_sym_typedef] = ACTIONS(2519), - [anon_sym_extern] = ACTIONS(2519), - [anon_sym___attribute__] = ACTIONS(2519), - [anon_sym_COLON_COLON] = ACTIONS(2521), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2521), - [anon_sym___declspec] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(2521), - [anon_sym_LBRACK] = ACTIONS(2519), - [anon_sym_static] = ACTIONS(2519), - [anon_sym_register] = ACTIONS(2519), - [anon_sym_inline] = ACTIONS(2519), - [anon_sym_thread_local] = ACTIONS(2519), - [anon_sym_const] = ACTIONS(2519), - [anon_sym_volatile] = ACTIONS(2519), - [anon_sym_restrict] = ACTIONS(2519), - [anon_sym__Atomic] = ACTIONS(2519), - [anon_sym_mutable] = ACTIONS(2519), - [anon_sym_constexpr] = ACTIONS(2519), - [anon_sym_constinit] = ACTIONS(2519), - [anon_sym_consteval] = ACTIONS(2519), - [anon_sym_signed] = ACTIONS(2519), - [anon_sym_unsigned] = ACTIONS(2519), - [anon_sym_long] = ACTIONS(2519), - [anon_sym_short] = ACTIONS(2519), - [sym_primitive_type] = ACTIONS(2519), - [anon_sym_enum] = ACTIONS(2519), - [anon_sym_class] = ACTIONS(2519), - [anon_sym_struct] = ACTIONS(2519), - [anon_sym_union] = ACTIONS(2519), - [anon_sym_if] = ACTIONS(2519), - [anon_sym_else] = ACTIONS(3152), - [anon_sym_switch] = ACTIONS(2519), - [anon_sym_while] = ACTIONS(2519), - [anon_sym_do] = ACTIONS(2519), - [anon_sym_for] = ACTIONS(2519), - [anon_sym_return] = ACTIONS(2519), - [anon_sym_break] = ACTIONS(2519), - [anon_sym_continue] = ACTIONS(2519), - [anon_sym_goto] = ACTIONS(2519), - [anon_sym_DASH_DASH] = ACTIONS(2521), - [anon_sym_PLUS_PLUS] = ACTIONS(2521), - [anon_sym_sizeof] = ACTIONS(2519), - [sym_number_literal] = ACTIONS(2521), - [anon_sym_L_SQUOTE] = ACTIONS(2521), - [anon_sym_u_SQUOTE] = ACTIONS(2521), - [anon_sym_U_SQUOTE] = ACTIONS(2521), - [anon_sym_u8_SQUOTE] = ACTIONS(2521), - [anon_sym_SQUOTE] = ACTIONS(2521), - [anon_sym_L_DQUOTE] = ACTIONS(2521), - [anon_sym_u_DQUOTE] = ACTIONS(2521), - [anon_sym_U_DQUOTE] = ACTIONS(2521), - [anon_sym_u8_DQUOTE] = ACTIONS(2521), - [anon_sym_DQUOTE] = ACTIONS(2521), - [sym_true] = ACTIONS(2519), - [sym_false] = ACTIONS(2519), - [sym_null] = ACTIONS(2519), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2519), - [anon_sym_decltype] = ACTIONS(2519), - [anon_sym_virtual] = ACTIONS(2519), - [anon_sym_typename] = ACTIONS(2519), - [anon_sym_template] = ACTIONS(2519), - [anon_sym_try] = ACTIONS(2519), - [anon_sym_delete] = ACTIONS(2519), - [anon_sym_throw] = ACTIONS(2519), - [anon_sym_co_return] = ACTIONS(2519), - [anon_sym_co_yield] = ACTIONS(2519), - [anon_sym_co_await] = ACTIONS(2519), - [anon_sym_new] = ACTIONS(2519), - [anon_sym_requires] = ACTIONS(2519), - [sym_this] = ACTIONS(2519), - [sym_nullptr] = ACTIONS(2519), - [sym_raw_string_literal] = ACTIONS(2521), + [702] = { + [ts_builtin_sym_end] = ACTIONS(2597), + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1133] = { - [sym_identifier] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2461), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), + [703] = { + [ts_builtin_sym_end] = ACTIONS(2597), + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1134] = { - [sym_identifier] = ACTIONS(3113), - [anon_sym_LPAREN2] = ACTIONS(3115), - [anon_sym_BANG] = ACTIONS(3115), - [anon_sym_TILDE] = ACTIONS(3115), - [anon_sym_DASH] = ACTIONS(3113), - [anon_sym_PLUS] = ACTIONS(3113), - [anon_sym_STAR] = ACTIONS(3115), - [anon_sym_AMP] = ACTIONS(3115), - [anon_sym_SEMI] = ACTIONS(3115), - [anon_sym_extern] = ACTIONS(3113), - [anon_sym___attribute__] = ACTIONS(3113), - [anon_sym_COLON_COLON] = ACTIONS(3115), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3115), - [anon_sym___declspec] = ACTIONS(3113), - [anon_sym_LBRACE] = ACTIONS(3115), - [anon_sym_LBRACK] = ACTIONS(3113), - [anon_sym_static] = ACTIONS(3113), - [anon_sym_register] = ACTIONS(3113), - [anon_sym_inline] = ACTIONS(3113), - [anon_sym_thread_local] = ACTIONS(3113), - [anon_sym_const] = ACTIONS(3113), - [anon_sym_volatile] = ACTIONS(3113), - [anon_sym_restrict] = ACTIONS(3113), - [anon_sym__Atomic] = ACTIONS(3113), - [anon_sym_mutable] = ACTIONS(3113), - [anon_sym_constexpr] = ACTIONS(3113), - [anon_sym_constinit] = ACTIONS(3113), - [anon_sym_consteval] = ACTIONS(3113), - [anon_sym_signed] = ACTIONS(3113), - [anon_sym_unsigned] = ACTIONS(3113), - [anon_sym_long] = ACTIONS(3113), - [anon_sym_short] = ACTIONS(3113), - [sym_primitive_type] = ACTIONS(3113), - [anon_sym_enum] = ACTIONS(3113), - [anon_sym_class] = ACTIONS(3113), - [anon_sym_struct] = ACTIONS(3113), - [anon_sym_union] = ACTIONS(3113), - [anon_sym_if] = ACTIONS(3113), - [anon_sym_switch] = ACTIONS(3113), - [anon_sym_case] = ACTIONS(3113), - [anon_sym_default] = ACTIONS(3113), - [anon_sym_while] = ACTIONS(3113), - [anon_sym_do] = ACTIONS(3113), - [anon_sym_for] = ACTIONS(3113), - [anon_sym_return] = ACTIONS(3113), - [anon_sym_break] = ACTIONS(3113), - [anon_sym_continue] = ACTIONS(3113), - [anon_sym_goto] = ACTIONS(3113), - [anon_sym_DASH_DASH] = ACTIONS(3115), - [anon_sym_PLUS_PLUS] = ACTIONS(3115), - [anon_sym_sizeof] = ACTIONS(3113), - [sym_number_literal] = ACTIONS(3115), - [anon_sym_L_SQUOTE] = ACTIONS(3115), - [anon_sym_u_SQUOTE] = ACTIONS(3115), - [anon_sym_U_SQUOTE] = ACTIONS(3115), - [anon_sym_u8_SQUOTE] = ACTIONS(3115), - [anon_sym_SQUOTE] = ACTIONS(3115), - [anon_sym_L_DQUOTE] = ACTIONS(3115), - [anon_sym_u_DQUOTE] = ACTIONS(3115), - [anon_sym_U_DQUOTE] = ACTIONS(3115), - [anon_sym_u8_DQUOTE] = ACTIONS(3115), - [anon_sym_DQUOTE] = ACTIONS(3115), - [sym_true] = ACTIONS(3113), - [sym_false] = ACTIONS(3113), - [sym_null] = ACTIONS(3113), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3113), - [anon_sym_decltype] = ACTIONS(3113), - [anon_sym_virtual] = ACTIONS(3113), - [anon_sym_typename] = ACTIONS(3113), - [anon_sym_template] = ACTIONS(3113), - [anon_sym_try] = ACTIONS(3113), - [anon_sym_delete] = ACTIONS(3113), - [anon_sym_throw] = ACTIONS(3113), - [anon_sym_co_return] = ACTIONS(3113), - [anon_sym_co_yield] = ACTIONS(3113), - [anon_sym_co_await] = ACTIONS(3113), - [anon_sym_new] = ACTIONS(3113), - [anon_sym_requires] = ACTIONS(3113), - [sym_this] = ACTIONS(3113), - [sym_nullptr] = ACTIONS(3113), - [sym_raw_string_literal] = ACTIONS(3115), + [704] = { + [sym_identifier] = ACTIONS(2555), + [aux_sym_preproc_include_token1] = ACTIONS(2555), + [aux_sym_preproc_def_token1] = ACTIONS(2555), + [aux_sym_preproc_if_token1] = ACTIONS(2555), + [aux_sym_preproc_if_token2] = ACTIONS(2555), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2555), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2555), + [sym_preproc_directive] = ACTIONS(2555), + [anon_sym_LPAREN2] = ACTIONS(2557), + [anon_sym_BANG] = ACTIONS(2557), + [anon_sym_TILDE] = ACTIONS(2557), + [anon_sym_DASH] = ACTIONS(2555), + [anon_sym_PLUS] = ACTIONS(2555), + [anon_sym_STAR] = ACTIONS(2557), + [anon_sym_AMP_AMP] = ACTIONS(2557), + [anon_sym_AMP] = ACTIONS(2555), + [anon_sym_SEMI] = ACTIONS(2557), + [anon_sym_typedef] = ACTIONS(2555), + [anon_sym_extern] = ACTIONS(2555), + [anon_sym___attribute__] = ACTIONS(2555), + [anon_sym_COLON_COLON] = ACTIONS(2557), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2557), + [anon_sym___declspec] = ACTIONS(2555), + [anon_sym___based] = ACTIONS(2555), + [anon_sym___cdecl] = ACTIONS(2555), + [anon_sym___clrcall] = ACTIONS(2555), + [anon_sym___stdcall] = ACTIONS(2555), + [anon_sym___fastcall] = ACTIONS(2555), + [anon_sym___thiscall] = ACTIONS(2555), + [anon_sym___vectorcall] = ACTIONS(2555), + [anon_sym_LBRACE] = ACTIONS(2557), + [anon_sym_LBRACK] = ACTIONS(2555), + [anon_sym_static] = ACTIONS(2555), + [anon_sym_register] = ACTIONS(2555), + [anon_sym_inline] = ACTIONS(2555), + [anon_sym_thread_local] = ACTIONS(2555), + [anon_sym_const] = ACTIONS(2555), + [anon_sym_volatile] = ACTIONS(2555), + [anon_sym_restrict] = ACTIONS(2555), + [anon_sym__Atomic] = ACTIONS(2555), + [anon_sym_mutable] = ACTIONS(2555), + [anon_sym_constexpr] = ACTIONS(2555), + [anon_sym_constinit] = ACTIONS(2555), + [anon_sym_consteval] = ACTIONS(2555), + [anon_sym_signed] = ACTIONS(2555), + [anon_sym_unsigned] = ACTIONS(2555), + [anon_sym_long] = ACTIONS(2555), + [anon_sym_short] = ACTIONS(2555), + [sym_primitive_type] = ACTIONS(2555), + [anon_sym_enum] = ACTIONS(2555), + [anon_sym_class] = ACTIONS(2555), + [anon_sym_struct] = ACTIONS(2555), + [anon_sym_union] = ACTIONS(2555), + [anon_sym_if] = ACTIONS(2555), + [anon_sym_else] = ACTIONS(2555), + [anon_sym_switch] = ACTIONS(2555), + [anon_sym_case] = ACTIONS(2555), + [anon_sym_default] = ACTIONS(2555), + [anon_sym_while] = ACTIONS(2555), + [anon_sym_do] = ACTIONS(2555), + [anon_sym_for] = ACTIONS(2555), + [anon_sym_return] = ACTIONS(2555), + [anon_sym_break] = ACTIONS(2555), + [anon_sym_continue] = ACTIONS(2555), + [anon_sym_goto] = ACTIONS(2555), + [anon_sym_not] = ACTIONS(2555), + [anon_sym_compl] = ACTIONS(2555), + [anon_sym_DASH_DASH] = ACTIONS(2557), + [anon_sym_PLUS_PLUS] = ACTIONS(2557), + [anon_sym_sizeof] = ACTIONS(2555), + [sym_number_literal] = ACTIONS(2557), + [anon_sym_L_SQUOTE] = ACTIONS(2557), + [anon_sym_u_SQUOTE] = ACTIONS(2557), + [anon_sym_U_SQUOTE] = ACTIONS(2557), + [anon_sym_u8_SQUOTE] = ACTIONS(2557), + [anon_sym_SQUOTE] = ACTIONS(2557), + [anon_sym_L_DQUOTE] = ACTIONS(2557), + [anon_sym_u_DQUOTE] = ACTIONS(2557), + [anon_sym_U_DQUOTE] = ACTIONS(2557), + [anon_sym_u8_DQUOTE] = ACTIONS(2557), + [anon_sym_DQUOTE] = ACTIONS(2557), + [sym_true] = ACTIONS(2555), + [sym_false] = ACTIONS(2555), + [sym_null] = ACTIONS(2555), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2555), + [anon_sym_decltype] = ACTIONS(2555), + [anon_sym_virtual] = ACTIONS(2555), + [anon_sym_explicit] = ACTIONS(2555), + [anon_sym_typename] = ACTIONS(2555), + [anon_sym_template] = ACTIONS(2555), + [anon_sym_operator] = ACTIONS(2555), + [anon_sym_try] = ACTIONS(2555), + [anon_sym_delete] = ACTIONS(2555), + [anon_sym_throw] = ACTIONS(2555), + [anon_sym_namespace] = ACTIONS(2555), + [anon_sym_using] = ACTIONS(2555), + [anon_sym_static_assert] = ACTIONS(2555), + [anon_sym_concept] = ACTIONS(2555), + [anon_sym_co_return] = ACTIONS(2555), + [anon_sym_co_yield] = ACTIONS(2555), + [anon_sym_co_await] = ACTIONS(2555), + [anon_sym_new] = ACTIONS(2555), + [anon_sym_requires] = ACTIONS(2555), + [sym_this] = ACTIONS(2555), + [sym_nullptr] = ACTIONS(2555), + [sym_raw_string_literal] = ACTIONS(2557), }, - [1135] = { - [sym_type_qualifier] = STATE(1123), - [sym__expression] = STATE(3866), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2981), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2981), - [sym_call_expression] = STATE(2981), - [sym_field_expression] = STATE(2981), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2981), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2981), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_type_definition_repeat1] = STATE(1123), - [sym_identifier] = ACTIONS(3039), - [anon_sym_LPAREN2] = ACTIONS(3041), - [anon_sym_BANG] = ACTIONS(3045), - [anon_sym_TILDE] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(3154), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(3047), - [anon_sym_LBRACK] = ACTIONS(2272), - [anon_sym_RBRACK] = ACTIONS(3156), - [anon_sym_const] = ACTIONS(3130), - [anon_sym_volatile] = ACTIONS(3130), - [anon_sym_restrict] = ACTIONS(3130), - [anon_sym__Atomic] = ACTIONS(3130), - [anon_sym_mutable] = ACTIONS(3130), - [anon_sym_constexpr] = ACTIONS(3130), - [anon_sym_constinit] = ACTIONS(3130), - [anon_sym_consteval] = ACTIONS(3130), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3049), - [anon_sym_PLUS_PLUS] = ACTIONS(3049), - [anon_sym_sizeof] = ACTIONS(3051), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3053), - [anon_sym_co_await] = ACTIONS(3055), - [anon_sym_new] = ACTIONS(3057), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [705] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token2] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1136] = { - [sym_identifier] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2461), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), + [706] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token2] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1137] = { - [sym_type_qualifier] = STATE(2268), - [sym__expression] = STATE(3864), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2981), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2981), - [sym_call_expression] = STATE(2981), - [sym_field_expression] = STATE(2981), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2981), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2981), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_type_definition_repeat1] = STATE(2268), - [sym_identifier] = ACTIONS(3039), - [anon_sym_LPAREN2] = ACTIONS(3041), - [anon_sym_BANG] = ACTIONS(3045), - [anon_sym_TILDE] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(3158), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(3047), - [anon_sym_LBRACK] = ACTIONS(2272), - [anon_sym_RBRACK] = ACTIONS(3160), - [anon_sym_const] = ACTIONS(3130), - [anon_sym_volatile] = ACTIONS(3130), - [anon_sym_restrict] = ACTIONS(3130), - [anon_sym__Atomic] = ACTIONS(3130), - [anon_sym_mutable] = ACTIONS(3130), - [anon_sym_constexpr] = ACTIONS(3130), - [anon_sym_constinit] = ACTIONS(3130), - [anon_sym_consteval] = ACTIONS(3130), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3049), - [anon_sym_PLUS_PLUS] = ACTIONS(3049), - [anon_sym_sizeof] = ACTIONS(3051), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [707] = { + [ts_builtin_sym_end] = ACTIONS(2597), + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3053), - [anon_sym_co_await] = ACTIONS(3055), - [anon_sym_new] = ACTIONS(3057), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1138] = { - [sym_identifier] = ACTIONS(2471), - [anon_sym_LPAREN2] = ACTIONS(2473), - [anon_sym_BANG] = ACTIONS(2473), - [anon_sym_TILDE] = ACTIONS(2473), - [anon_sym_DASH] = ACTIONS(2471), - [anon_sym_PLUS] = ACTIONS(2471), - [anon_sym_STAR] = ACTIONS(2473), - [anon_sym_AMP] = ACTIONS(2473), - [anon_sym_SEMI] = ACTIONS(2473), - [anon_sym_typedef] = ACTIONS(2471), - [anon_sym_extern] = ACTIONS(2471), - [anon_sym___attribute__] = ACTIONS(2471), - [anon_sym_COLON_COLON] = ACTIONS(2473), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2473), - [anon_sym___declspec] = ACTIONS(2471), - [anon_sym_LBRACE] = ACTIONS(2473), - [anon_sym_LBRACK] = ACTIONS(2471), - [anon_sym_static] = ACTIONS(2471), - [anon_sym_register] = ACTIONS(2471), - [anon_sym_inline] = ACTIONS(2471), - [anon_sym_thread_local] = ACTIONS(2471), - [anon_sym_const] = ACTIONS(2471), - [anon_sym_volatile] = ACTIONS(2471), - [anon_sym_restrict] = ACTIONS(2471), - [anon_sym__Atomic] = ACTIONS(2471), - [anon_sym_mutable] = ACTIONS(2471), - [anon_sym_constexpr] = ACTIONS(2471), - [anon_sym_constinit] = ACTIONS(2471), - [anon_sym_consteval] = ACTIONS(2471), - [anon_sym_signed] = ACTIONS(2471), - [anon_sym_unsigned] = ACTIONS(2471), - [anon_sym_long] = ACTIONS(2471), - [anon_sym_short] = ACTIONS(2471), - [sym_primitive_type] = ACTIONS(2471), - [anon_sym_enum] = ACTIONS(2471), - [anon_sym_class] = ACTIONS(2471), - [anon_sym_struct] = ACTIONS(2471), - [anon_sym_union] = ACTIONS(2471), - [anon_sym_if] = ACTIONS(2471), - [anon_sym_else] = ACTIONS(2471), - [anon_sym_switch] = ACTIONS(2471), - [anon_sym_while] = ACTIONS(2471), - [anon_sym_do] = ACTIONS(2471), - [anon_sym_for] = ACTIONS(2471), - [anon_sym_return] = ACTIONS(2471), - [anon_sym_break] = ACTIONS(2471), - [anon_sym_continue] = ACTIONS(2471), - [anon_sym_goto] = ACTIONS(2471), - [anon_sym_DASH_DASH] = ACTIONS(2473), - [anon_sym_PLUS_PLUS] = ACTIONS(2473), - [anon_sym_sizeof] = ACTIONS(2471), - [sym_number_literal] = ACTIONS(2473), - [anon_sym_L_SQUOTE] = ACTIONS(2473), - [anon_sym_u_SQUOTE] = ACTIONS(2473), - [anon_sym_U_SQUOTE] = ACTIONS(2473), - [anon_sym_u8_SQUOTE] = ACTIONS(2473), - [anon_sym_SQUOTE] = ACTIONS(2473), - [anon_sym_L_DQUOTE] = ACTIONS(2473), - [anon_sym_u_DQUOTE] = ACTIONS(2473), - [anon_sym_U_DQUOTE] = ACTIONS(2473), - [anon_sym_u8_DQUOTE] = ACTIONS(2473), - [anon_sym_DQUOTE] = ACTIONS(2473), - [sym_true] = ACTIONS(2471), - [sym_false] = ACTIONS(2471), - [sym_null] = ACTIONS(2471), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2471), - [anon_sym_decltype] = ACTIONS(2471), - [anon_sym_virtual] = ACTIONS(2471), - [anon_sym_typename] = ACTIONS(2471), - [anon_sym_template] = ACTIONS(2471), - [anon_sym_try] = ACTIONS(2471), - [anon_sym_delete] = ACTIONS(2471), - [anon_sym_throw] = ACTIONS(2471), - [anon_sym_co_return] = ACTIONS(2471), - [anon_sym_co_yield] = ACTIONS(2471), - [anon_sym_co_await] = ACTIONS(2471), - [anon_sym_new] = ACTIONS(2471), - [anon_sym_requires] = ACTIONS(2471), - [sym_this] = ACTIONS(2471), - [sym_nullptr] = ACTIONS(2471), - [sym_raw_string_literal] = ACTIONS(2473), + [708] = { + [sym_identifier] = ACTIONS(2563), + [aux_sym_preproc_include_token1] = ACTIONS(2563), + [aux_sym_preproc_def_token1] = ACTIONS(2563), + [aux_sym_preproc_if_token1] = ACTIONS(2563), + [aux_sym_preproc_if_token2] = ACTIONS(2563), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2563), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2563), + [sym_preproc_directive] = ACTIONS(2563), + [anon_sym_LPAREN2] = ACTIONS(2565), + [anon_sym_BANG] = ACTIONS(2565), + [anon_sym_TILDE] = ACTIONS(2565), + [anon_sym_DASH] = ACTIONS(2563), + [anon_sym_PLUS] = ACTIONS(2563), + [anon_sym_STAR] = ACTIONS(2565), + [anon_sym_AMP_AMP] = ACTIONS(2565), + [anon_sym_AMP] = ACTIONS(2563), + [anon_sym_SEMI] = ACTIONS(2565), + [anon_sym_typedef] = ACTIONS(2563), + [anon_sym_extern] = ACTIONS(2563), + [anon_sym___attribute__] = ACTIONS(2563), + [anon_sym_COLON_COLON] = ACTIONS(2565), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2565), + [anon_sym___declspec] = ACTIONS(2563), + [anon_sym___based] = ACTIONS(2563), + [anon_sym___cdecl] = ACTIONS(2563), + [anon_sym___clrcall] = ACTIONS(2563), + [anon_sym___stdcall] = ACTIONS(2563), + [anon_sym___fastcall] = ACTIONS(2563), + [anon_sym___thiscall] = ACTIONS(2563), + [anon_sym___vectorcall] = ACTIONS(2563), + [anon_sym_LBRACE] = ACTIONS(2565), + [anon_sym_LBRACK] = ACTIONS(2563), + [anon_sym_static] = ACTIONS(2563), + [anon_sym_register] = ACTIONS(2563), + [anon_sym_inline] = ACTIONS(2563), + [anon_sym_thread_local] = ACTIONS(2563), + [anon_sym_const] = ACTIONS(2563), + [anon_sym_volatile] = ACTIONS(2563), + [anon_sym_restrict] = ACTIONS(2563), + [anon_sym__Atomic] = ACTIONS(2563), + [anon_sym_mutable] = ACTIONS(2563), + [anon_sym_constexpr] = ACTIONS(2563), + [anon_sym_constinit] = ACTIONS(2563), + [anon_sym_consteval] = ACTIONS(2563), + [anon_sym_signed] = ACTIONS(2563), + [anon_sym_unsigned] = ACTIONS(2563), + [anon_sym_long] = ACTIONS(2563), + [anon_sym_short] = ACTIONS(2563), + [sym_primitive_type] = ACTIONS(2563), + [anon_sym_enum] = ACTIONS(2563), + [anon_sym_class] = ACTIONS(2563), + [anon_sym_struct] = ACTIONS(2563), + [anon_sym_union] = ACTIONS(2563), + [anon_sym_if] = ACTIONS(2563), + [anon_sym_else] = ACTIONS(2563), + [anon_sym_switch] = ACTIONS(2563), + [anon_sym_case] = ACTIONS(2563), + [anon_sym_default] = ACTIONS(2563), + [anon_sym_while] = ACTIONS(2563), + [anon_sym_do] = ACTIONS(2563), + [anon_sym_for] = ACTIONS(2563), + [anon_sym_return] = ACTIONS(2563), + [anon_sym_break] = ACTIONS(2563), + [anon_sym_continue] = ACTIONS(2563), + [anon_sym_goto] = ACTIONS(2563), + [anon_sym_not] = ACTIONS(2563), + [anon_sym_compl] = ACTIONS(2563), + [anon_sym_DASH_DASH] = ACTIONS(2565), + [anon_sym_PLUS_PLUS] = ACTIONS(2565), + [anon_sym_sizeof] = ACTIONS(2563), + [sym_number_literal] = ACTIONS(2565), + [anon_sym_L_SQUOTE] = ACTIONS(2565), + [anon_sym_u_SQUOTE] = ACTIONS(2565), + [anon_sym_U_SQUOTE] = ACTIONS(2565), + [anon_sym_u8_SQUOTE] = ACTIONS(2565), + [anon_sym_SQUOTE] = ACTIONS(2565), + [anon_sym_L_DQUOTE] = ACTIONS(2565), + [anon_sym_u_DQUOTE] = ACTIONS(2565), + [anon_sym_U_DQUOTE] = ACTIONS(2565), + [anon_sym_u8_DQUOTE] = ACTIONS(2565), + [anon_sym_DQUOTE] = ACTIONS(2565), + [sym_true] = ACTIONS(2563), + [sym_false] = ACTIONS(2563), + [sym_null] = ACTIONS(2563), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2563), + [anon_sym_decltype] = ACTIONS(2563), + [anon_sym_virtual] = ACTIONS(2563), + [anon_sym_explicit] = ACTIONS(2563), + [anon_sym_typename] = ACTIONS(2563), + [anon_sym_template] = ACTIONS(2563), + [anon_sym_operator] = ACTIONS(2563), + [anon_sym_try] = ACTIONS(2563), + [anon_sym_delete] = ACTIONS(2563), + [anon_sym_throw] = ACTIONS(2563), + [anon_sym_namespace] = ACTIONS(2563), + [anon_sym_using] = ACTIONS(2563), + [anon_sym_static_assert] = ACTIONS(2563), + [anon_sym_concept] = ACTIONS(2563), + [anon_sym_co_return] = ACTIONS(2563), + [anon_sym_co_yield] = ACTIONS(2563), + [anon_sym_co_await] = ACTIONS(2563), + [anon_sym_new] = ACTIONS(2563), + [anon_sym_requires] = ACTIONS(2563), + [sym_this] = ACTIONS(2563), + [sym_nullptr] = ACTIONS(2563), + [sym_raw_string_literal] = ACTIONS(2565), }, - [1139] = { - [sym_identifier] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2461), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), + [709] = { + [ts_builtin_sym_end] = ACTIONS(2597), + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1140] = { - [sym_identifier] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2461), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), + [710] = { + [ts_builtin_sym_end] = ACTIONS(2625), + [sym_identifier] = ACTIONS(2623), + [aux_sym_preproc_include_token1] = ACTIONS(2623), + [aux_sym_preproc_def_token1] = ACTIONS(2623), + [aux_sym_preproc_if_token1] = ACTIONS(2623), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2623), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2623), + [sym_preproc_directive] = ACTIONS(2623), + [anon_sym_LPAREN2] = ACTIONS(2625), + [anon_sym_BANG] = ACTIONS(2625), + [anon_sym_TILDE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(2623), + [anon_sym_PLUS] = ACTIONS(2623), + [anon_sym_STAR] = ACTIONS(2625), + [anon_sym_AMP_AMP] = ACTIONS(2625), + [anon_sym_AMP] = ACTIONS(2623), + [anon_sym_SEMI] = ACTIONS(2625), + [anon_sym_typedef] = ACTIONS(2623), + [anon_sym_extern] = ACTIONS(2623), + [anon_sym___attribute__] = ACTIONS(2623), + [anon_sym_COLON_COLON] = ACTIONS(2625), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2625), + [anon_sym___declspec] = ACTIONS(2623), + [anon_sym___based] = ACTIONS(2623), + [anon_sym___cdecl] = ACTIONS(2623), + [anon_sym___clrcall] = ACTIONS(2623), + [anon_sym___stdcall] = ACTIONS(2623), + [anon_sym___fastcall] = ACTIONS(2623), + [anon_sym___thiscall] = ACTIONS(2623), + [anon_sym___vectorcall] = ACTIONS(2623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_LBRACK] = ACTIONS(2623), + [anon_sym_static] = ACTIONS(2623), + [anon_sym_register] = ACTIONS(2623), + [anon_sym_inline] = ACTIONS(2623), + [anon_sym_thread_local] = ACTIONS(2623), + [anon_sym_const] = ACTIONS(2623), + [anon_sym_volatile] = ACTIONS(2623), + [anon_sym_restrict] = ACTIONS(2623), + [anon_sym__Atomic] = ACTIONS(2623), + [anon_sym_mutable] = ACTIONS(2623), + [anon_sym_constexpr] = ACTIONS(2623), + [anon_sym_constinit] = ACTIONS(2623), + [anon_sym_consteval] = ACTIONS(2623), + [anon_sym_signed] = ACTIONS(2623), + [anon_sym_unsigned] = ACTIONS(2623), + [anon_sym_long] = ACTIONS(2623), + [anon_sym_short] = ACTIONS(2623), + [sym_primitive_type] = ACTIONS(2623), + [anon_sym_enum] = ACTIONS(2623), + [anon_sym_class] = ACTIONS(2623), + [anon_sym_struct] = ACTIONS(2623), + [anon_sym_union] = ACTIONS(2623), + [anon_sym_if] = ACTIONS(2623), + [anon_sym_else] = ACTIONS(2623), + [anon_sym_switch] = ACTIONS(2623), + [anon_sym_case] = ACTIONS(2623), + [anon_sym_default] = ACTIONS(2623), + [anon_sym_while] = ACTIONS(2623), + [anon_sym_do] = ACTIONS(2623), + [anon_sym_for] = ACTIONS(2623), + [anon_sym_return] = ACTIONS(2623), + [anon_sym_break] = ACTIONS(2623), + [anon_sym_continue] = ACTIONS(2623), + [anon_sym_goto] = ACTIONS(2623), + [anon_sym_not] = ACTIONS(2623), + [anon_sym_compl] = ACTIONS(2623), + [anon_sym_DASH_DASH] = ACTIONS(2625), + [anon_sym_PLUS_PLUS] = ACTIONS(2625), + [anon_sym_sizeof] = ACTIONS(2623), + [sym_number_literal] = ACTIONS(2625), + [anon_sym_L_SQUOTE] = ACTIONS(2625), + [anon_sym_u_SQUOTE] = ACTIONS(2625), + [anon_sym_U_SQUOTE] = ACTIONS(2625), + [anon_sym_u8_SQUOTE] = ACTIONS(2625), + [anon_sym_SQUOTE] = ACTIONS(2625), + [anon_sym_L_DQUOTE] = ACTIONS(2625), + [anon_sym_u_DQUOTE] = ACTIONS(2625), + [anon_sym_U_DQUOTE] = ACTIONS(2625), + [anon_sym_u8_DQUOTE] = ACTIONS(2625), + [anon_sym_DQUOTE] = ACTIONS(2625), + [sym_true] = ACTIONS(2623), + [sym_false] = ACTIONS(2623), + [sym_null] = ACTIONS(2623), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2623), + [anon_sym_decltype] = ACTIONS(2623), + [anon_sym_virtual] = ACTIONS(2623), + [anon_sym_explicit] = ACTIONS(2623), + [anon_sym_typename] = ACTIONS(2623), + [anon_sym_template] = ACTIONS(2623), + [anon_sym_operator] = ACTIONS(2623), + [anon_sym_try] = ACTIONS(2623), + [anon_sym_delete] = ACTIONS(2623), + [anon_sym_throw] = ACTIONS(2623), + [anon_sym_namespace] = ACTIONS(2623), + [anon_sym_using] = ACTIONS(2623), + [anon_sym_static_assert] = ACTIONS(2623), + [anon_sym_concept] = ACTIONS(2623), + [anon_sym_co_return] = ACTIONS(2623), + [anon_sym_co_yield] = ACTIONS(2623), + [anon_sym_co_await] = ACTIONS(2623), + [anon_sym_new] = ACTIONS(2623), + [anon_sym_requires] = ACTIONS(2623), + [sym_this] = ACTIONS(2623), + [sym_nullptr] = ACTIONS(2623), + [sym_raw_string_literal] = ACTIONS(2625), }, - [1141] = { - [sym_identifier] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2461), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), + [711] = { + [ts_builtin_sym_end] = ACTIONS(2597), + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1142] = { - [sym_identifier] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2461), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), + [712] = { + [ts_builtin_sym_end] = ACTIONS(2621), + [sym_identifier] = ACTIONS(2619), + [aux_sym_preproc_include_token1] = ACTIONS(2619), + [aux_sym_preproc_def_token1] = ACTIONS(2619), + [aux_sym_preproc_if_token1] = ACTIONS(2619), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2619), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2619), + [sym_preproc_directive] = ACTIONS(2619), + [anon_sym_LPAREN2] = ACTIONS(2621), + [anon_sym_BANG] = ACTIONS(2621), + [anon_sym_TILDE] = ACTIONS(2621), + [anon_sym_DASH] = ACTIONS(2619), + [anon_sym_PLUS] = ACTIONS(2619), + [anon_sym_STAR] = ACTIONS(2621), + [anon_sym_AMP_AMP] = ACTIONS(2621), + [anon_sym_AMP] = ACTIONS(2619), + [anon_sym_SEMI] = ACTIONS(2621), + [anon_sym_typedef] = ACTIONS(2619), + [anon_sym_extern] = ACTIONS(2619), + [anon_sym___attribute__] = ACTIONS(2619), + [anon_sym_COLON_COLON] = ACTIONS(2621), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2621), + [anon_sym___declspec] = ACTIONS(2619), + [anon_sym___based] = ACTIONS(2619), + [anon_sym___cdecl] = ACTIONS(2619), + [anon_sym___clrcall] = ACTIONS(2619), + [anon_sym___stdcall] = ACTIONS(2619), + [anon_sym___fastcall] = ACTIONS(2619), + [anon_sym___thiscall] = ACTIONS(2619), + [anon_sym___vectorcall] = ACTIONS(2619), + [anon_sym_LBRACE] = ACTIONS(2621), + [anon_sym_LBRACK] = ACTIONS(2619), + [anon_sym_static] = ACTIONS(2619), + [anon_sym_register] = ACTIONS(2619), + [anon_sym_inline] = ACTIONS(2619), + [anon_sym_thread_local] = ACTIONS(2619), + [anon_sym_const] = ACTIONS(2619), + [anon_sym_volatile] = ACTIONS(2619), + [anon_sym_restrict] = ACTIONS(2619), + [anon_sym__Atomic] = ACTIONS(2619), + [anon_sym_mutable] = ACTIONS(2619), + [anon_sym_constexpr] = ACTIONS(2619), + [anon_sym_constinit] = ACTIONS(2619), + [anon_sym_consteval] = ACTIONS(2619), + [anon_sym_signed] = ACTIONS(2619), + [anon_sym_unsigned] = ACTIONS(2619), + [anon_sym_long] = ACTIONS(2619), + [anon_sym_short] = ACTIONS(2619), + [sym_primitive_type] = ACTIONS(2619), + [anon_sym_enum] = ACTIONS(2619), + [anon_sym_class] = ACTIONS(2619), + [anon_sym_struct] = ACTIONS(2619), + [anon_sym_union] = ACTIONS(2619), + [anon_sym_if] = ACTIONS(2619), + [anon_sym_else] = ACTIONS(2619), + [anon_sym_switch] = ACTIONS(2619), + [anon_sym_case] = ACTIONS(2619), + [anon_sym_default] = ACTIONS(2619), + [anon_sym_while] = ACTIONS(2619), + [anon_sym_do] = ACTIONS(2619), + [anon_sym_for] = ACTIONS(2619), + [anon_sym_return] = ACTIONS(2619), + [anon_sym_break] = ACTIONS(2619), + [anon_sym_continue] = ACTIONS(2619), + [anon_sym_goto] = ACTIONS(2619), + [anon_sym_not] = ACTIONS(2619), + [anon_sym_compl] = ACTIONS(2619), + [anon_sym_DASH_DASH] = ACTIONS(2621), + [anon_sym_PLUS_PLUS] = ACTIONS(2621), + [anon_sym_sizeof] = ACTIONS(2619), + [sym_number_literal] = ACTIONS(2621), + [anon_sym_L_SQUOTE] = ACTIONS(2621), + [anon_sym_u_SQUOTE] = ACTIONS(2621), + [anon_sym_U_SQUOTE] = ACTIONS(2621), + [anon_sym_u8_SQUOTE] = ACTIONS(2621), + [anon_sym_SQUOTE] = ACTIONS(2621), + [anon_sym_L_DQUOTE] = ACTIONS(2621), + [anon_sym_u_DQUOTE] = ACTIONS(2621), + [anon_sym_U_DQUOTE] = ACTIONS(2621), + [anon_sym_u8_DQUOTE] = ACTIONS(2621), + [anon_sym_DQUOTE] = ACTIONS(2621), + [sym_true] = ACTIONS(2619), + [sym_false] = ACTIONS(2619), + [sym_null] = ACTIONS(2619), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2619), + [anon_sym_decltype] = ACTIONS(2619), + [anon_sym_virtual] = ACTIONS(2619), + [anon_sym_explicit] = ACTIONS(2619), + [anon_sym_typename] = ACTIONS(2619), + [anon_sym_template] = ACTIONS(2619), + [anon_sym_operator] = ACTIONS(2619), + [anon_sym_try] = ACTIONS(2619), + [anon_sym_delete] = ACTIONS(2619), + [anon_sym_throw] = ACTIONS(2619), + [anon_sym_namespace] = ACTIONS(2619), + [anon_sym_using] = ACTIONS(2619), + [anon_sym_static_assert] = ACTIONS(2619), + [anon_sym_concept] = ACTIONS(2619), + [anon_sym_co_return] = ACTIONS(2619), + [anon_sym_co_yield] = ACTIONS(2619), + [anon_sym_co_await] = ACTIONS(2619), + [anon_sym_new] = ACTIONS(2619), + [anon_sym_requires] = ACTIONS(2619), + [sym_this] = ACTIONS(2619), + [sym_nullptr] = ACTIONS(2619), + [sym_raw_string_literal] = ACTIONS(2621), }, - [1143] = { - [sym_identifier] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2461), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), + [713] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token2] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1144] = { - [sym_identifier] = ACTIONS(2467), - [anon_sym_LPAREN2] = ACTIONS(2469), - [anon_sym_BANG] = ACTIONS(2469), - [anon_sym_TILDE] = ACTIONS(2469), - [anon_sym_DASH] = ACTIONS(2467), - [anon_sym_PLUS] = ACTIONS(2467), - [anon_sym_STAR] = ACTIONS(2469), - [anon_sym_AMP] = ACTIONS(2469), - [anon_sym_SEMI] = ACTIONS(2469), - [anon_sym_typedef] = ACTIONS(2467), - [anon_sym_extern] = ACTIONS(2467), - [anon_sym___attribute__] = ACTIONS(2467), - [anon_sym_COLON_COLON] = ACTIONS(2469), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2469), - [anon_sym___declspec] = ACTIONS(2467), - [anon_sym_LBRACE] = ACTIONS(2469), - [anon_sym_LBRACK] = ACTIONS(2467), - [anon_sym_static] = ACTIONS(2467), - [anon_sym_register] = ACTIONS(2467), - [anon_sym_inline] = ACTIONS(2467), - [anon_sym_thread_local] = ACTIONS(2467), - [anon_sym_const] = ACTIONS(2467), - [anon_sym_volatile] = ACTIONS(2467), - [anon_sym_restrict] = ACTIONS(2467), - [anon_sym__Atomic] = ACTIONS(2467), - [anon_sym_mutable] = ACTIONS(2467), - [anon_sym_constexpr] = ACTIONS(2467), - [anon_sym_constinit] = ACTIONS(2467), - [anon_sym_consteval] = ACTIONS(2467), - [anon_sym_signed] = ACTIONS(2467), - [anon_sym_unsigned] = ACTIONS(2467), - [anon_sym_long] = ACTIONS(2467), - [anon_sym_short] = ACTIONS(2467), - [sym_primitive_type] = ACTIONS(2467), - [anon_sym_enum] = ACTIONS(2467), - [anon_sym_class] = ACTIONS(2467), - [anon_sym_struct] = ACTIONS(2467), - [anon_sym_union] = ACTIONS(2467), - [anon_sym_if] = ACTIONS(2467), - [anon_sym_else] = ACTIONS(2467), - [anon_sym_switch] = ACTIONS(2467), - [anon_sym_while] = ACTIONS(2467), - [anon_sym_do] = ACTIONS(2467), - [anon_sym_for] = ACTIONS(2467), - [anon_sym_return] = ACTIONS(2467), - [anon_sym_break] = ACTIONS(2467), - [anon_sym_continue] = ACTIONS(2467), - [anon_sym_goto] = ACTIONS(2467), - [anon_sym_DASH_DASH] = ACTIONS(2469), - [anon_sym_PLUS_PLUS] = ACTIONS(2469), - [anon_sym_sizeof] = ACTIONS(2467), - [sym_number_literal] = ACTIONS(2469), - [anon_sym_L_SQUOTE] = ACTIONS(2469), - [anon_sym_u_SQUOTE] = ACTIONS(2469), - [anon_sym_U_SQUOTE] = ACTIONS(2469), - [anon_sym_u8_SQUOTE] = ACTIONS(2469), - [anon_sym_SQUOTE] = ACTIONS(2469), - [anon_sym_L_DQUOTE] = ACTIONS(2469), - [anon_sym_u_DQUOTE] = ACTIONS(2469), - [anon_sym_U_DQUOTE] = ACTIONS(2469), - [anon_sym_u8_DQUOTE] = ACTIONS(2469), - [anon_sym_DQUOTE] = ACTIONS(2469), - [sym_true] = ACTIONS(2467), - [sym_false] = ACTIONS(2467), - [sym_null] = ACTIONS(2467), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2467), - [anon_sym_decltype] = ACTIONS(2467), - [anon_sym_virtual] = ACTIONS(2467), - [anon_sym_typename] = ACTIONS(2467), - [anon_sym_template] = ACTIONS(2467), - [anon_sym_try] = ACTIONS(2467), - [anon_sym_delete] = ACTIONS(2467), - [anon_sym_throw] = ACTIONS(2467), - [anon_sym_co_return] = ACTIONS(2467), - [anon_sym_co_yield] = ACTIONS(2467), - [anon_sym_co_await] = ACTIONS(2467), - [anon_sym_new] = ACTIONS(2467), - [anon_sym_requires] = ACTIONS(2467), - [sym_this] = ACTIONS(2467), - [sym_nullptr] = ACTIONS(2467), - [sym_raw_string_literal] = ACTIONS(2469), + [714] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token2] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1145] = { - [sym_identifier] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2461), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), + [715] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token2] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1146] = { - [sym_identifier] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2461), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), + [716] = { + [ts_builtin_sym_end] = ACTIONS(2561), + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1147] = { - [sym_identifier] = ACTIONS(3099), - [anon_sym_LPAREN2] = ACTIONS(3105), - [anon_sym_BANG] = ACTIONS(3105), - [anon_sym_TILDE] = ACTIONS(3105), - [anon_sym_DASH] = ACTIONS(3107), - [anon_sym_PLUS] = ACTIONS(3107), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_AMP] = ACTIONS(3105), - [anon_sym_SEMI] = ACTIONS(3105), - [anon_sym_extern] = ACTIONS(3111), - [anon_sym___attribute__] = ACTIONS(3111), - [anon_sym_COLON_COLON] = ACTIONS(3102), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3102), - [anon_sym___declspec] = ACTIONS(3111), - [anon_sym_LBRACE] = ACTIONS(3105), - [anon_sym_LBRACK] = ACTIONS(3107), - [anon_sym_static] = ACTIONS(3111), - [anon_sym_register] = ACTIONS(3111), - [anon_sym_inline] = ACTIONS(3111), - [anon_sym_thread_local] = ACTIONS(3111), - [anon_sym_const] = ACTIONS(3111), - [anon_sym_volatile] = ACTIONS(3111), - [anon_sym_restrict] = ACTIONS(3111), - [anon_sym__Atomic] = ACTIONS(3111), - [anon_sym_mutable] = ACTIONS(3111), - [anon_sym_constexpr] = ACTIONS(3111), - [anon_sym_constinit] = ACTIONS(3111), - [anon_sym_consteval] = ACTIONS(3111), - [anon_sym_signed] = ACTIONS(3111), - [anon_sym_unsigned] = ACTIONS(3111), - [anon_sym_long] = ACTIONS(3111), - [anon_sym_short] = ACTIONS(3111), - [sym_primitive_type] = ACTIONS(3099), - [anon_sym_enum] = ACTIONS(3111), - [anon_sym_class] = ACTIONS(3111), - [anon_sym_struct] = ACTIONS(3111), - [anon_sym_union] = ACTIONS(3111), - [anon_sym_if] = ACTIONS(3107), - [anon_sym_switch] = ACTIONS(3107), - [anon_sym_case] = ACTIONS(3107), - [anon_sym_default] = ACTIONS(3107), - [anon_sym_while] = ACTIONS(3107), - [anon_sym_do] = ACTIONS(3107), - [anon_sym_for] = ACTIONS(3107), - [anon_sym_return] = ACTIONS(3107), - [anon_sym_break] = ACTIONS(3107), - [anon_sym_continue] = ACTIONS(3107), - [anon_sym_goto] = ACTIONS(3107), - [anon_sym_DASH_DASH] = ACTIONS(3105), - [anon_sym_PLUS_PLUS] = ACTIONS(3105), - [anon_sym_sizeof] = ACTIONS(3107), - [sym_number_literal] = ACTIONS(3105), - [anon_sym_L_SQUOTE] = ACTIONS(3105), - [anon_sym_u_SQUOTE] = ACTIONS(3105), - [anon_sym_U_SQUOTE] = ACTIONS(3105), - [anon_sym_u8_SQUOTE] = ACTIONS(3105), - [anon_sym_SQUOTE] = ACTIONS(3105), - [anon_sym_L_DQUOTE] = ACTIONS(3105), - [anon_sym_u_DQUOTE] = ACTIONS(3105), - [anon_sym_U_DQUOTE] = ACTIONS(3105), - [anon_sym_u8_DQUOTE] = ACTIONS(3105), - [anon_sym_DQUOTE] = ACTIONS(3105), - [sym_true] = ACTIONS(3107), - [sym_false] = ACTIONS(3107), - [sym_null] = ACTIONS(3107), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3111), - [anon_sym_decltype] = ACTIONS(3111), - [anon_sym_virtual] = ACTIONS(3111), - [anon_sym_typename] = ACTIONS(3111), - [anon_sym_template] = ACTIONS(3099), - [anon_sym_try] = ACTIONS(3107), - [anon_sym_delete] = ACTIONS(3107), - [anon_sym_throw] = ACTIONS(3107), - [anon_sym_co_return] = ACTIONS(3107), - [anon_sym_co_yield] = ACTIONS(3107), - [anon_sym_co_await] = ACTIONS(3107), - [anon_sym_new] = ACTIONS(3107), - [anon_sym_requires] = ACTIONS(3107), - [sym_this] = ACTIONS(3107), - [sym_nullptr] = ACTIONS(3107), - [sym_raw_string_literal] = ACTIONS(3105), + [717] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token2] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1148] = { - [sym_type_qualifier] = STATE(2268), - [sym__expression] = STATE(3850), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2981), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2981), - [sym_call_expression] = STATE(2981), - [sym_field_expression] = STATE(2981), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2981), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2981), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_type_definition_repeat1] = STATE(2268), - [sym_identifier] = ACTIONS(3039), - [anon_sym_LPAREN2] = ACTIONS(3041), - [anon_sym_BANG] = ACTIONS(3045), - [anon_sym_TILDE] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(3162), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(3047), - [anon_sym_LBRACK] = ACTIONS(2272), - [anon_sym_RBRACK] = ACTIONS(3164), - [anon_sym_const] = ACTIONS(3130), - [anon_sym_volatile] = ACTIONS(3130), - [anon_sym_restrict] = ACTIONS(3130), - [anon_sym__Atomic] = ACTIONS(3130), - [anon_sym_mutable] = ACTIONS(3130), - [anon_sym_constexpr] = ACTIONS(3130), - [anon_sym_constinit] = ACTIONS(3130), - [anon_sym_consteval] = ACTIONS(3130), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3049), - [anon_sym_PLUS_PLUS] = ACTIONS(3049), - [anon_sym_sizeof] = ACTIONS(3051), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [718] = { + [ts_builtin_sym_end] = ACTIONS(2597), + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3053), - [anon_sym_co_await] = ACTIONS(3055), - [anon_sym_new] = ACTIONS(3057), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), - }, - [1149] = { - [sym_identifier] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2461), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1150] = { - [sym_identifier] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2461), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), + [719] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token2] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1151] = { - [sym_identifier] = ACTIONS(2351), - [anon_sym_LPAREN2] = ACTIONS(2353), - [anon_sym_BANG] = ACTIONS(2353), - [anon_sym_TILDE] = ACTIONS(2353), - [anon_sym_DASH] = ACTIONS(2351), - [anon_sym_PLUS] = ACTIONS(2351), - [anon_sym_STAR] = ACTIONS(2353), - [anon_sym_AMP] = ACTIONS(2353), - [anon_sym_SEMI] = ACTIONS(2353), - [anon_sym_typedef] = ACTIONS(2351), - [anon_sym_extern] = ACTIONS(2351), - [anon_sym___attribute__] = ACTIONS(2351), - [anon_sym_COLON_COLON] = ACTIONS(2353), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2353), - [anon_sym___declspec] = ACTIONS(2351), - [anon_sym_LBRACE] = ACTIONS(2353), - [anon_sym_LBRACK] = ACTIONS(2351), - [anon_sym_static] = ACTIONS(2351), - [anon_sym_register] = ACTIONS(2351), - [anon_sym_inline] = ACTIONS(2351), - [anon_sym_thread_local] = ACTIONS(2351), - [anon_sym_const] = ACTIONS(2351), - [anon_sym_volatile] = ACTIONS(2351), - [anon_sym_restrict] = ACTIONS(2351), - [anon_sym__Atomic] = ACTIONS(2351), - [anon_sym_mutable] = ACTIONS(2351), - [anon_sym_constexpr] = ACTIONS(2351), - [anon_sym_constinit] = ACTIONS(2351), - [anon_sym_consteval] = ACTIONS(2351), - [anon_sym_signed] = ACTIONS(2351), - [anon_sym_unsigned] = ACTIONS(2351), - [anon_sym_long] = ACTIONS(2351), - [anon_sym_short] = ACTIONS(2351), - [sym_primitive_type] = ACTIONS(2351), - [anon_sym_enum] = ACTIONS(2351), - [anon_sym_class] = ACTIONS(2351), - [anon_sym_struct] = ACTIONS(2351), - [anon_sym_union] = ACTIONS(2351), - [anon_sym_if] = ACTIONS(2351), - [anon_sym_else] = ACTIONS(2351), - [anon_sym_switch] = ACTIONS(2351), - [anon_sym_while] = ACTIONS(2351), - [anon_sym_do] = ACTIONS(2351), - [anon_sym_for] = ACTIONS(2351), - [anon_sym_return] = ACTIONS(2351), - [anon_sym_break] = ACTIONS(2351), - [anon_sym_continue] = ACTIONS(2351), - [anon_sym_goto] = ACTIONS(2351), - [anon_sym_DASH_DASH] = ACTIONS(2353), - [anon_sym_PLUS_PLUS] = ACTIONS(2353), - [anon_sym_sizeof] = ACTIONS(2351), - [sym_number_literal] = ACTIONS(2353), - [anon_sym_L_SQUOTE] = ACTIONS(2353), - [anon_sym_u_SQUOTE] = ACTIONS(2353), - [anon_sym_U_SQUOTE] = ACTIONS(2353), - [anon_sym_u8_SQUOTE] = ACTIONS(2353), - [anon_sym_SQUOTE] = ACTIONS(2353), - [anon_sym_L_DQUOTE] = ACTIONS(2353), - [anon_sym_u_DQUOTE] = ACTIONS(2353), - [anon_sym_U_DQUOTE] = ACTIONS(2353), - [anon_sym_u8_DQUOTE] = ACTIONS(2353), - [anon_sym_DQUOTE] = ACTIONS(2353), - [sym_true] = ACTIONS(2351), - [sym_false] = ACTIONS(2351), - [sym_null] = ACTIONS(2351), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2351), - [anon_sym_decltype] = ACTIONS(2351), - [anon_sym_virtual] = ACTIONS(2351), - [anon_sym_typename] = ACTIONS(2351), - [anon_sym_template] = ACTIONS(2351), - [anon_sym_try] = ACTIONS(2351), - [anon_sym_delete] = ACTIONS(2351), - [anon_sym_throw] = ACTIONS(2351), - [anon_sym_co_return] = ACTIONS(2351), - [anon_sym_co_yield] = ACTIONS(2351), - [anon_sym_co_await] = ACTIONS(2351), - [anon_sym_new] = ACTIONS(2351), - [anon_sym_requires] = ACTIONS(2351), - [sym_this] = ACTIONS(2351), - [sym_nullptr] = ACTIONS(2351), - [sym_raw_string_literal] = ACTIONS(2353), - }, - [1152] = { - [sym_identifier] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2461), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [1153] = { - [sym_identifier] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2461), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [1154] = { - [sym_identifier] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2461), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [1155] = { - [sym_identifier] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2461), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), - }, - [1156] = { - [sym_identifier] = ACTIONS(2507), - [anon_sym_LPAREN2] = ACTIONS(2509), - [anon_sym_BANG] = ACTIONS(2509), - [anon_sym_TILDE] = ACTIONS(2509), - [anon_sym_DASH] = ACTIONS(2507), - [anon_sym_PLUS] = ACTIONS(2507), - [anon_sym_STAR] = ACTIONS(2509), - [anon_sym_AMP] = ACTIONS(2509), - [anon_sym_SEMI] = ACTIONS(2509), - [anon_sym_typedef] = ACTIONS(2507), - [anon_sym_extern] = ACTIONS(2507), - [anon_sym___attribute__] = ACTIONS(2507), - [anon_sym_COLON_COLON] = ACTIONS(2509), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2509), - [anon_sym___declspec] = ACTIONS(2507), - [anon_sym_LBRACE] = ACTIONS(2509), - [anon_sym_LBRACK] = ACTIONS(2507), - [anon_sym_static] = ACTIONS(2507), - [anon_sym_register] = ACTIONS(2507), - [anon_sym_inline] = ACTIONS(2507), - [anon_sym_thread_local] = ACTIONS(2507), - [anon_sym_const] = ACTIONS(2507), - [anon_sym_volatile] = ACTIONS(2507), - [anon_sym_restrict] = ACTIONS(2507), - [anon_sym__Atomic] = ACTIONS(2507), - [anon_sym_mutable] = ACTIONS(2507), - [anon_sym_constexpr] = ACTIONS(2507), - [anon_sym_constinit] = ACTIONS(2507), - [anon_sym_consteval] = ACTIONS(2507), - [anon_sym_signed] = ACTIONS(2507), - [anon_sym_unsigned] = ACTIONS(2507), - [anon_sym_long] = ACTIONS(2507), - [anon_sym_short] = ACTIONS(2507), - [sym_primitive_type] = ACTIONS(2507), - [anon_sym_enum] = ACTIONS(2507), - [anon_sym_class] = ACTIONS(2507), - [anon_sym_struct] = ACTIONS(2507), - [anon_sym_union] = ACTIONS(2507), - [anon_sym_if] = ACTIONS(2507), - [anon_sym_else] = ACTIONS(2507), - [anon_sym_switch] = ACTIONS(2507), - [anon_sym_while] = ACTIONS(2507), - [anon_sym_do] = ACTIONS(2507), - [anon_sym_for] = ACTIONS(2507), - [anon_sym_return] = ACTIONS(2507), - [anon_sym_break] = ACTIONS(2507), - [anon_sym_continue] = ACTIONS(2507), - [anon_sym_goto] = ACTIONS(2507), - [anon_sym_DASH_DASH] = ACTIONS(2509), - [anon_sym_PLUS_PLUS] = ACTIONS(2509), - [anon_sym_sizeof] = ACTIONS(2507), - [sym_number_literal] = ACTIONS(2509), - [anon_sym_L_SQUOTE] = ACTIONS(2509), - [anon_sym_u_SQUOTE] = ACTIONS(2509), - [anon_sym_U_SQUOTE] = ACTIONS(2509), - [anon_sym_u8_SQUOTE] = ACTIONS(2509), - [anon_sym_SQUOTE] = ACTIONS(2509), - [anon_sym_L_DQUOTE] = ACTIONS(2509), - [anon_sym_u_DQUOTE] = ACTIONS(2509), - [anon_sym_U_DQUOTE] = ACTIONS(2509), - [anon_sym_u8_DQUOTE] = ACTIONS(2509), - [anon_sym_DQUOTE] = ACTIONS(2509), - [sym_true] = ACTIONS(2507), - [sym_false] = ACTIONS(2507), - [sym_null] = ACTIONS(2507), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2507), - [anon_sym_decltype] = ACTIONS(2507), - [anon_sym_virtual] = ACTIONS(2507), - [anon_sym_typename] = ACTIONS(2507), - [anon_sym_template] = ACTIONS(2507), - [anon_sym_try] = ACTIONS(2507), - [anon_sym_delete] = ACTIONS(2507), - [anon_sym_throw] = ACTIONS(2507), - [anon_sym_co_return] = ACTIONS(2507), - [anon_sym_co_yield] = ACTIONS(2507), - [anon_sym_co_await] = ACTIONS(2507), - [anon_sym_new] = ACTIONS(2507), - [anon_sym_requires] = ACTIONS(2507), - [sym_this] = ACTIONS(2507), - [sym_nullptr] = ACTIONS(2507), - [sym_raw_string_literal] = ACTIONS(2509), + [720] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_RBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1157] = { - [sym_identifier] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2461), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), + [721] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_RBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1158] = { - [sym_identifier] = ACTIONS(2503), - [anon_sym_LPAREN2] = ACTIONS(2505), - [anon_sym_BANG] = ACTIONS(2505), - [anon_sym_TILDE] = ACTIONS(2505), - [anon_sym_DASH] = ACTIONS(2503), - [anon_sym_PLUS] = ACTIONS(2503), - [anon_sym_STAR] = ACTIONS(2505), - [anon_sym_AMP] = ACTIONS(2505), - [anon_sym_SEMI] = ACTIONS(2505), - [anon_sym_typedef] = ACTIONS(2503), - [anon_sym_extern] = ACTIONS(2503), - [anon_sym___attribute__] = ACTIONS(2503), - [anon_sym_COLON_COLON] = ACTIONS(2505), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2505), - [anon_sym___declspec] = ACTIONS(2503), - [anon_sym_LBRACE] = ACTIONS(2505), - [anon_sym_LBRACK] = ACTIONS(2503), - [anon_sym_static] = ACTIONS(2503), - [anon_sym_register] = ACTIONS(2503), - [anon_sym_inline] = ACTIONS(2503), - [anon_sym_thread_local] = ACTIONS(2503), - [anon_sym_const] = ACTIONS(2503), - [anon_sym_volatile] = ACTIONS(2503), - [anon_sym_restrict] = ACTIONS(2503), - [anon_sym__Atomic] = ACTIONS(2503), - [anon_sym_mutable] = ACTIONS(2503), - [anon_sym_constexpr] = ACTIONS(2503), - [anon_sym_constinit] = ACTIONS(2503), - [anon_sym_consteval] = ACTIONS(2503), - [anon_sym_signed] = ACTIONS(2503), - [anon_sym_unsigned] = ACTIONS(2503), - [anon_sym_long] = ACTIONS(2503), - [anon_sym_short] = ACTIONS(2503), - [sym_primitive_type] = ACTIONS(2503), - [anon_sym_enum] = ACTIONS(2503), - [anon_sym_class] = ACTIONS(2503), - [anon_sym_struct] = ACTIONS(2503), - [anon_sym_union] = ACTIONS(2503), - [anon_sym_if] = ACTIONS(2503), - [anon_sym_else] = ACTIONS(2503), - [anon_sym_switch] = ACTIONS(2503), - [anon_sym_while] = ACTIONS(2503), - [anon_sym_do] = ACTIONS(2503), - [anon_sym_for] = ACTIONS(2503), - [anon_sym_return] = ACTIONS(2503), - [anon_sym_break] = ACTIONS(2503), - [anon_sym_continue] = ACTIONS(2503), - [anon_sym_goto] = ACTIONS(2503), - [anon_sym_DASH_DASH] = ACTIONS(2505), - [anon_sym_PLUS_PLUS] = ACTIONS(2505), - [anon_sym_sizeof] = ACTIONS(2503), - [sym_number_literal] = ACTIONS(2505), - [anon_sym_L_SQUOTE] = ACTIONS(2505), - [anon_sym_u_SQUOTE] = ACTIONS(2505), - [anon_sym_U_SQUOTE] = ACTIONS(2505), - [anon_sym_u8_SQUOTE] = ACTIONS(2505), - [anon_sym_SQUOTE] = ACTIONS(2505), - [anon_sym_L_DQUOTE] = ACTIONS(2505), - [anon_sym_u_DQUOTE] = ACTIONS(2505), - [anon_sym_U_DQUOTE] = ACTIONS(2505), - [anon_sym_u8_DQUOTE] = ACTIONS(2505), - [anon_sym_DQUOTE] = ACTIONS(2505), - [sym_true] = ACTIONS(2503), - [sym_false] = ACTIONS(2503), - [sym_null] = ACTIONS(2503), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2503), - [anon_sym_decltype] = ACTIONS(2503), - [anon_sym_virtual] = ACTIONS(2503), - [anon_sym_typename] = ACTIONS(2503), - [anon_sym_template] = ACTIONS(2503), - [anon_sym_try] = ACTIONS(2503), - [anon_sym_delete] = ACTIONS(2503), - [anon_sym_throw] = ACTIONS(2503), - [anon_sym_co_return] = ACTIONS(2503), - [anon_sym_co_yield] = ACTIONS(2503), - [anon_sym_co_await] = ACTIONS(2503), - [anon_sym_new] = ACTIONS(2503), - [anon_sym_requires] = ACTIONS(2503), - [sym_this] = ACTIONS(2503), - [sym_nullptr] = ACTIONS(2503), - [sym_raw_string_literal] = ACTIONS(2505), + [722] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_RBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1159] = { - [sym_identifier] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2461), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), + [723] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_RBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1160] = { - [sym_identifier] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2461), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), + [724] = { + [ts_builtin_sym_end] = ACTIONS(2561), + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1161] = { - [sym_identifier] = ACTIONS(2499), - [anon_sym_LPAREN2] = ACTIONS(2501), - [anon_sym_BANG] = ACTIONS(2501), - [anon_sym_TILDE] = ACTIONS(2501), - [anon_sym_DASH] = ACTIONS(2499), - [anon_sym_PLUS] = ACTIONS(2499), - [anon_sym_STAR] = ACTIONS(2501), - [anon_sym_AMP] = ACTIONS(2501), - [anon_sym_SEMI] = ACTIONS(2501), - [anon_sym_typedef] = ACTIONS(2499), - [anon_sym_extern] = ACTIONS(2499), - [anon_sym___attribute__] = ACTIONS(2499), - [anon_sym_COLON_COLON] = ACTIONS(2501), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2501), - [anon_sym___declspec] = ACTIONS(2499), - [anon_sym_LBRACE] = ACTIONS(2501), - [anon_sym_LBRACK] = ACTIONS(2499), - [anon_sym_static] = ACTIONS(2499), - [anon_sym_register] = ACTIONS(2499), - [anon_sym_inline] = ACTIONS(2499), - [anon_sym_thread_local] = ACTIONS(2499), - [anon_sym_const] = ACTIONS(2499), - [anon_sym_volatile] = ACTIONS(2499), - [anon_sym_restrict] = ACTIONS(2499), - [anon_sym__Atomic] = ACTIONS(2499), - [anon_sym_mutable] = ACTIONS(2499), - [anon_sym_constexpr] = ACTIONS(2499), - [anon_sym_constinit] = ACTIONS(2499), - [anon_sym_consteval] = ACTIONS(2499), - [anon_sym_signed] = ACTIONS(2499), - [anon_sym_unsigned] = ACTIONS(2499), - [anon_sym_long] = ACTIONS(2499), - [anon_sym_short] = ACTIONS(2499), - [sym_primitive_type] = ACTIONS(2499), - [anon_sym_enum] = ACTIONS(2499), - [anon_sym_class] = ACTIONS(2499), - [anon_sym_struct] = ACTIONS(2499), - [anon_sym_union] = ACTIONS(2499), - [anon_sym_if] = ACTIONS(2499), - [anon_sym_else] = ACTIONS(2499), - [anon_sym_switch] = ACTIONS(2499), - [anon_sym_while] = ACTIONS(2499), - [anon_sym_do] = ACTIONS(2499), - [anon_sym_for] = ACTIONS(2499), - [anon_sym_return] = ACTIONS(2499), - [anon_sym_break] = ACTIONS(2499), - [anon_sym_continue] = ACTIONS(2499), - [anon_sym_goto] = ACTIONS(2499), - [anon_sym_DASH_DASH] = ACTIONS(2501), - [anon_sym_PLUS_PLUS] = ACTIONS(2501), - [anon_sym_sizeof] = ACTIONS(2499), - [sym_number_literal] = ACTIONS(2501), - [anon_sym_L_SQUOTE] = ACTIONS(2501), - [anon_sym_u_SQUOTE] = ACTIONS(2501), - [anon_sym_U_SQUOTE] = ACTIONS(2501), - [anon_sym_u8_SQUOTE] = ACTIONS(2501), - [anon_sym_SQUOTE] = ACTIONS(2501), - [anon_sym_L_DQUOTE] = ACTIONS(2501), - [anon_sym_u_DQUOTE] = ACTIONS(2501), - [anon_sym_U_DQUOTE] = ACTIONS(2501), - [anon_sym_u8_DQUOTE] = ACTIONS(2501), - [anon_sym_DQUOTE] = ACTIONS(2501), - [sym_true] = ACTIONS(2499), - [sym_false] = ACTIONS(2499), - [sym_null] = ACTIONS(2499), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2499), - [anon_sym_decltype] = ACTIONS(2499), - [anon_sym_virtual] = ACTIONS(2499), - [anon_sym_typename] = ACTIONS(2499), - [anon_sym_template] = ACTIONS(2499), - [anon_sym_try] = ACTIONS(2499), - [anon_sym_delete] = ACTIONS(2499), - [anon_sym_throw] = ACTIONS(2499), - [anon_sym_co_return] = ACTIONS(2499), - [anon_sym_co_yield] = ACTIONS(2499), - [anon_sym_co_await] = ACTIONS(2499), - [anon_sym_new] = ACTIONS(2499), - [anon_sym_requires] = ACTIONS(2499), - [sym_this] = ACTIONS(2499), - [sym_nullptr] = ACTIONS(2499), - [sym_raw_string_literal] = ACTIONS(2501), + [725] = { + [ts_builtin_sym_end] = ACTIONS(2561), + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1162] = { - [sym_type_qualifier] = STATE(1148), - [sym__expression] = STATE(3934), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2981), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2981), - [sym_call_expression] = STATE(2981), - [sym_field_expression] = STATE(2981), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2981), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2981), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_type_definition_repeat1] = STATE(1148), - [sym_identifier] = ACTIONS(3039), - [anon_sym_LPAREN2] = ACTIONS(3041), - [anon_sym_BANG] = ACTIONS(3045), - [anon_sym_TILDE] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(3166), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(3047), - [anon_sym_LBRACK] = ACTIONS(2272), - [anon_sym_RBRACK] = ACTIONS(3168), - [anon_sym_const] = ACTIONS(3130), - [anon_sym_volatile] = ACTIONS(3130), - [anon_sym_restrict] = ACTIONS(3130), - [anon_sym__Atomic] = ACTIONS(3130), - [anon_sym_mutable] = ACTIONS(3130), - [anon_sym_constexpr] = ACTIONS(3130), - [anon_sym_constinit] = ACTIONS(3130), - [anon_sym_consteval] = ACTIONS(3130), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3049), - [anon_sym_PLUS_PLUS] = ACTIONS(3049), - [anon_sym_sizeof] = ACTIONS(3051), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3053), - [anon_sym_co_await] = ACTIONS(3055), - [anon_sym_new] = ACTIONS(3057), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [726] = { + [ts_builtin_sym_end] = ACTIONS(2519), + [sym_identifier] = ACTIONS(2517), + [aux_sym_preproc_include_token1] = ACTIONS(2517), + [aux_sym_preproc_def_token1] = ACTIONS(2517), + [aux_sym_preproc_if_token1] = ACTIONS(2517), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2517), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2517), + [sym_preproc_directive] = ACTIONS(2517), + [anon_sym_LPAREN2] = ACTIONS(2519), + [anon_sym_BANG] = ACTIONS(2519), + [anon_sym_TILDE] = ACTIONS(2519), + [anon_sym_DASH] = ACTIONS(2517), + [anon_sym_PLUS] = ACTIONS(2517), + [anon_sym_STAR] = ACTIONS(2519), + [anon_sym_AMP_AMP] = ACTIONS(2519), + [anon_sym_AMP] = ACTIONS(2517), + [anon_sym_SEMI] = ACTIONS(2519), + [anon_sym_typedef] = ACTIONS(2517), + [anon_sym_extern] = ACTIONS(2517), + [anon_sym___attribute__] = ACTIONS(2517), + [anon_sym_COLON_COLON] = ACTIONS(2519), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2519), + [anon_sym___declspec] = ACTIONS(2517), + [anon_sym___based] = ACTIONS(2517), + [anon_sym___cdecl] = ACTIONS(2517), + [anon_sym___clrcall] = ACTIONS(2517), + [anon_sym___stdcall] = ACTIONS(2517), + [anon_sym___fastcall] = ACTIONS(2517), + [anon_sym___thiscall] = ACTIONS(2517), + [anon_sym___vectorcall] = ACTIONS(2517), + [anon_sym_LBRACE] = ACTIONS(2519), + [anon_sym_LBRACK] = ACTIONS(2517), + [anon_sym_static] = ACTIONS(2517), + [anon_sym_register] = ACTIONS(2517), + [anon_sym_inline] = ACTIONS(2517), + [anon_sym_thread_local] = ACTIONS(2517), + [anon_sym_const] = ACTIONS(2517), + [anon_sym_volatile] = ACTIONS(2517), + [anon_sym_restrict] = ACTIONS(2517), + [anon_sym__Atomic] = ACTIONS(2517), + [anon_sym_mutable] = ACTIONS(2517), + [anon_sym_constexpr] = ACTIONS(2517), + [anon_sym_constinit] = ACTIONS(2517), + [anon_sym_consteval] = ACTIONS(2517), + [anon_sym_signed] = ACTIONS(2517), + [anon_sym_unsigned] = ACTIONS(2517), + [anon_sym_long] = ACTIONS(2517), + [anon_sym_short] = ACTIONS(2517), + [sym_primitive_type] = ACTIONS(2517), + [anon_sym_enum] = ACTIONS(2517), + [anon_sym_class] = ACTIONS(2517), + [anon_sym_struct] = ACTIONS(2517), + [anon_sym_union] = ACTIONS(2517), + [anon_sym_if] = ACTIONS(2517), + [anon_sym_else] = ACTIONS(2517), + [anon_sym_switch] = ACTIONS(2517), + [anon_sym_case] = ACTIONS(2517), + [anon_sym_default] = ACTIONS(2517), + [anon_sym_while] = ACTIONS(2517), + [anon_sym_do] = ACTIONS(2517), + [anon_sym_for] = ACTIONS(2517), + [anon_sym_return] = ACTIONS(2517), + [anon_sym_break] = ACTIONS(2517), + [anon_sym_continue] = ACTIONS(2517), + [anon_sym_goto] = ACTIONS(2517), + [anon_sym_not] = ACTIONS(2517), + [anon_sym_compl] = ACTIONS(2517), + [anon_sym_DASH_DASH] = ACTIONS(2519), + [anon_sym_PLUS_PLUS] = ACTIONS(2519), + [anon_sym_sizeof] = ACTIONS(2517), + [sym_number_literal] = ACTIONS(2519), + [anon_sym_L_SQUOTE] = ACTIONS(2519), + [anon_sym_u_SQUOTE] = ACTIONS(2519), + [anon_sym_U_SQUOTE] = ACTIONS(2519), + [anon_sym_u8_SQUOTE] = ACTIONS(2519), + [anon_sym_SQUOTE] = ACTIONS(2519), + [anon_sym_L_DQUOTE] = ACTIONS(2519), + [anon_sym_u_DQUOTE] = ACTIONS(2519), + [anon_sym_U_DQUOTE] = ACTIONS(2519), + [anon_sym_u8_DQUOTE] = ACTIONS(2519), + [anon_sym_DQUOTE] = ACTIONS(2519), + [sym_true] = ACTIONS(2517), + [sym_false] = ACTIONS(2517), + [sym_null] = ACTIONS(2517), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2517), + [anon_sym_decltype] = ACTIONS(2517), + [anon_sym_virtual] = ACTIONS(2517), + [anon_sym_explicit] = ACTIONS(2517), + [anon_sym_typename] = ACTIONS(2517), + [anon_sym_template] = ACTIONS(2517), + [anon_sym_operator] = ACTIONS(2517), + [anon_sym_try] = ACTIONS(2517), + [anon_sym_delete] = ACTIONS(2517), + [anon_sym_throw] = ACTIONS(2517), + [anon_sym_namespace] = ACTIONS(2517), + [anon_sym_using] = ACTIONS(2517), + [anon_sym_static_assert] = ACTIONS(2517), + [anon_sym_concept] = ACTIONS(2517), + [anon_sym_co_return] = ACTIONS(2517), + [anon_sym_co_yield] = ACTIONS(2517), + [anon_sym_co_await] = ACTIONS(2517), + [anon_sym_new] = ACTIONS(2517), + [anon_sym_requires] = ACTIONS(2517), + [sym_this] = ACTIONS(2517), + [sym_nullptr] = ACTIONS(2517), + [sym_raw_string_literal] = ACTIONS(2519), }, - [1163] = { - [sym_identifier] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2461), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), + [727] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_RBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1164] = { - [sym_identifier] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2461), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), + [728] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_RBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1165] = { - [sym_identifier] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2461), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), + [729] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_RBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1166] = { - [sym_identifier] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2461), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), + [730] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_RBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1167] = { - [sym_identifier] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2461), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), + [731] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_RBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1168] = { - [sym_identifier] = ACTIONS(2491), - [anon_sym_LPAREN2] = ACTIONS(2493), - [anon_sym_BANG] = ACTIONS(2493), - [anon_sym_TILDE] = ACTIONS(2493), - [anon_sym_DASH] = ACTIONS(2491), - [anon_sym_PLUS] = ACTIONS(2491), - [anon_sym_STAR] = ACTIONS(2493), - [anon_sym_AMP] = ACTIONS(2493), - [anon_sym_SEMI] = ACTIONS(2493), - [anon_sym_typedef] = ACTIONS(2491), - [anon_sym_extern] = ACTIONS(2491), - [anon_sym___attribute__] = ACTIONS(2491), - [anon_sym_COLON_COLON] = ACTIONS(2493), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2493), - [anon_sym___declspec] = ACTIONS(2491), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_LBRACK] = ACTIONS(2491), - [anon_sym_static] = ACTIONS(2491), - [anon_sym_register] = ACTIONS(2491), - [anon_sym_inline] = ACTIONS(2491), - [anon_sym_thread_local] = ACTIONS(2491), - [anon_sym_const] = ACTIONS(2491), - [anon_sym_volatile] = ACTIONS(2491), - [anon_sym_restrict] = ACTIONS(2491), - [anon_sym__Atomic] = ACTIONS(2491), - [anon_sym_mutable] = ACTIONS(2491), - [anon_sym_constexpr] = ACTIONS(2491), - [anon_sym_constinit] = ACTIONS(2491), - [anon_sym_consteval] = ACTIONS(2491), - [anon_sym_signed] = ACTIONS(2491), - [anon_sym_unsigned] = ACTIONS(2491), - [anon_sym_long] = ACTIONS(2491), - [anon_sym_short] = ACTIONS(2491), - [sym_primitive_type] = ACTIONS(2491), - [anon_sym_enum] = ACTIONS(2491), - [anon_sym_class] = ACTIONS(2491), - [anon_sym_struct] = ACTIONS(2491), - [anon_sym_union] = ACTIONS(2491), - [anon_sym_if] = ACTIONS(2491), - [anon_sym_else] = ACTIONS(2491), - [anon_sym_switch] = ACTIONS(2491), - [anon_sym_while] = ACTIONS(2491), - [anon_sym_do] = ACTIONS(2491), - [anon_sym_for] = ACTIONS(2491), - [anon_sym_return] = ACTIONS(2491), - [anon_sym_break] = ACTIONS(2491), - [anon_sym_continue] = ACTIONS(2491), - [anon_sym_goto] = ACTIONS(2491), - [anon_sym_DASH_DASH] = ACTIONS(2493), - [anon_sym_PLUS_PLUS] = ACTIONS(2493), - [anon_sym_sizeof] = ACTIONS(2491), - [sym_number_literal] = ACTIONS(2493), - [anon_sym_L_SQUOTE] = ACTIONS(2493), - [anon_sym_u_SQUOTE] = ACTIONS(2493), - [anon_sym_U_SQUOTE] = ACTIONS(2493), - [anon_sym_u8_SQUOTE] = ACTIONS(2493), - [anon_sym_SQUOTE] = ACTIONS(2493), - [anon_sym_L_DQUOTE] = ACTIONS(2493), - [anon_sym_u_DQUOTE] = ACTIONS(2493), - [anon_sym_U_DQUOTE] = ACTIONS(2493), - [anon_sym_u8_DQUOTE] = ACTIONS(2493), - [anon_sym_DQUOTE] = ACTIONS(2493), - [sym_true] = ACTIONS(2491), - [sym_false] = ACTIONS(2491), - [sym_null] = ACTIONS(2491), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2491), - [anon_sym_decltype] = ACTIONS(2491), - [anon_sym_virtual] = ACTIONS(2491), - [anon_sym_typename] = ACTIONS(2491), - [anon_sym_template] = ACTIONS(2491), - [anon_sym_try] = ACTIONS(2491), - [anon_sym_delete] = ACTIONS(2491), - [anon_sym_throw] = ACTIONS(2491), - [anon_sym_co_return] = ACTIONS(2491), - [anon_sym_co_yield] = ACTIONS(2491), - [anon_sym_co_await] = ACTIONS(2491), - [anon_sym_new] = ACTIONS(2491), - [anon_sym_requires] = ACTIONS(2491), - [sym_this] = ACTIONS(2491), - [sym_nullptr] = ACTIONS(2491), - [sym_raw_string_literal] = ACTIONS(2493), + [732] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_RBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1169] = { - [sym_identifier] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2461), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), + [733] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_RBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1170] = { - [sym_identifier] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2461), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), + [734] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_RBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1171] = { - [sym_identifier] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2461), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), + [735] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_RBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1172] = { - [sym_identifier] = ACTIONS(2487), - [anon_sym_LPAREN2] = ACTIONS(2489), - [anon_sym_BANG] = ACTIONS(2489), - [anon_sym_TILDE] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_STAR] = ACTIONS(2489), - [anon_sym_AMP] = ACTIONS(2489), - [anon_sym_SEMI] = ACTIONS(2489), - [anon_sym_typedef] = ACTIONS(2487), - [anon_sym_extern] = ACTIONS(2487), - [anon_sym___attribute__] = ACTIONS(2487), - [anon_sym_COLON_COLON] = ACTIONS(2489), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2489), - [anon_sym___declspec] = ACTIONS(2487), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_LBRACK] = ACTIONS(2487), - [anon_sym_static] = ACTIONS(2487), - [anon_sym_register] = ACTIONS(2487), - [anon_sym_inline] = ACTIONS(2487), - [anon_sym_thread_local] = ACTIONS(2487), - [anon_sym_const] = ACTIONS(2487), - [anon_sym_volatile] = ACTIONS(2487), - [anon_sym_restrict] = ACTIONS(2487), - [anon_sym__Atomic] = ACTIONS(2487), - [anon_sym_mutable] = ACTIONS(2487), - [anon_sym_constexpr] = ACTIONS(2487), - [anon_sym_constinit] = ACTIONS(2487), - [anon_sym_consteval] = ACTIONS(2487), - [anon_sym_signed] = ACTIONS(2487), - [anon_sym_unsigned] = ACTIONS(2487), - [anon_sym_long] = ACTIONS(2487), - [anon_sym_short] = ACTIONS(2487), - [sym_primitive_type] = ACTIONS(2487), - [anon_sym_enum] = ACTIONS(2487), - [anon_sym_class] = ACTIONS(2487), - [anon_sym_struct] = ACTIONS(2487), - [anon_sym_union] = ACTIONS(2487), - [anon_sym_if] = ACTIONS(2487), - [anon_sym_else] = ACTIONS(2487), - [anon_sym_switch] = ACTIONS(2487), - [anon_sym_while] = ACTIONS(2487), - [anon_sym_do] = ACTIONS(2487), - [anon_sym_for] = ACTIONS(2487), - [anon_sym_return] = ACTIONS(2487), - [anon_sym_break] = ACTIONS(2487), - [anon_sym_continue] = ACTIONS(2487), - [anon_sym_goto] = ACTIONS(2487), - [anon_sym_DASH_DASH] = ACTIONS(2489), - [anon_sym_PLUS_PLUS] = ACTIONS(2489), - [anon_sym_sizeof] = ACTIONS(2487), - [sym_number_literal] = ACTIONS(2489), - [anon_sym_L_SQUOTE] = ACTIONS(2489), - [anon_sym_u_SQUOTE] = ACTIONS(2489), - [anon_sym_U_SQUOTE] = ACTIONS(2489), - [anon_sym_u8_SQUOTE] = ACTIONS(2489), - [anon_sym_SQUOTE] = ACTIONS(2489), - [anon_sym_L_DQUOTE] = ACTIONS(2489), - [anon_sym_u_DQUOTE] = ACTIONS(2489), - [anon_sym_U_DQUOTE] = ACTIONS(2489), - [anon_sym_u8_DQUOTE] = ACTIONS(2489), - [anon_sym_DQUOTE] = ACTIONS(2489), - [sym_true] = ACTIONS(2487), - [sym_false] = ACTIONS(2487), - [sym_null] = ACTIONS(2487), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2487), - [anon_sym_decltype] = ACTIONS(2487), - [anon_sym_virtual] = ACTIONS(2487), - [anon_sym_typename] = ACTIONS(2487), - [anon_sym_template] = ACTIONS(2487), - [anon_sym_try] = ACTIONS(2487), - [anon_sym_delete] = ACTIONS(2487), - [anon_sym_throw] = ACTIONS(2487), - [anon_sym_co_return] = ACTIONS(2487), - [anon_sym_co_yield] = ACTIONS(2487), - [anon_sym_co_await] = ACTIONS(2487), - [anon_sym_new] = ACTIONS(2487), - [anon_sym_requires] = ACTIONS(2487), - [sym_this] = ACTIONS(2487), - [sym_nullptr] = ACTIONS(2487), - [sym_raw_string_literal] = ACTIONS(2489), + [736] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_RBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1173] = { - [sym_identifier] = ACTIONS(2463), - [anon_sym_LPAREN2] = ACTIONS(2465), - [anon_sym_BANG] = ACTIONS(2465), - [anon_sym_TILDE] = ACTIONS(2465), - [anon_sym_DASH] = ACTIONS(2463), - [anon_sym_PLUS] = ACTIONS(2463), - [anon_sym_STAR] = ACTIONS(2465), - [anon_sym_AMP] = ACTIONS(2465), - [anon_sym_SEMI] = ACTIONS(2465), - [anon_sym_typedef] = ACTIONS(2463), - [anon_sym_extern] = ACTIONS(2463), - [anon_sym___attribute__] = ACTIONS(2463), - [anon_sym_COLON_COLON] = ACTIONS(2465), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2465), - [anon_sym___declspec] = ACTIONS(2463), - [anon_sym_LBRACE] = ACTIONS(2465), - [anon_sym_LBRACK] = ACTIONS(2463), - [anon_sym_static] = ACTIONS(2463), - [anon_sym_register] = ACTIONS(2463), - [anon_sym_inline] = ACTIONS(2463), - [anon_sym_thread_local] = ACTIONS(2463), - [anon_sym_const] = ACTIONS(2463), - [anon_sym_volatile] = ACTIONS(2463), - [anon_sym_restrict] = ACTIONS(2463), - [anon_sym__Atomic] = ACTIONS(2463), - [anon_sym_mutable] = ACTIONS(2463), - [anon_sym_constexpr] = ACTIONS(2463), - [anon_sym_constinit] = ACTIONS(2463), - [anon_sym_consteval] = ACTIONS(2463), - [anon_sym_signed] = ACTIONS(2463), - [anon_sym_unsigned] = ACTIONS(2463), - [anon_sym_long] = ACTIONS(2463), - [anon_sym_short] = ACTIONS(2463), - [sym_primitive_type] = ACTIONS(2463), - [anon_sym_enum] = ACTIONS(2463), - [anon_sym_class] = ACTIONS(2463), - [anon_sym_struct] = ACTIONS(2463), - [anon_sym_union] = ACTIONS(2463), - [anon_sym_if] = ACTIONS(2463), - [anon_sym_else] = ACTIONS(2463), - [anon_sym_switch] = ACTIONS(2463), - [anon_sym_while] = ACTIONS(2463), - [anon_sym_do] = ACTIONS(2463), - [anon_sym_for] = ACTIONS(2463), - [anon_sym_return] = ACTIONS(2463), - [anon_sym_break] = ACTIONS(2463), - [anon_sym_continue] = ACTIONS(2463), - [anon_sym_goto] = ACTIONS(2463), - [anon_sym_DASH_DASH] = ACTIONS(2465), - [anon_sym_PLUS_PLUS] = ACTIONS(2465), - [anon_sym_sizeof] = ACTIONS(2463), - [sym_number_literal] = ACTIONS(2465), - [anon_sym_L_SQUOTE] = ACTIONS(2465), - [anon_sym_u_SQUOTE] = ACTIONS(2465), - [anon_sym_U_SQUOTE] = ACTIONS(2465), - [anon_sym_u8_SQUOTE] = ACTIONS(2465), - [anon_sym_SQUOTE] = ACTIONS(2465), - [anon_sym_L_DQUOTE] = ACTIONS(2465), - [anon_sym_u_DQUOTE] = ACTIONS(2465), - [anon_sym_U_DQUOTE] = ACTIONS(2465), - [anon_sym_u8_DQUOTE] = ACTIONS(2465), - [anon_sym_DQUOTE] = ACTIONS(2465), - [sym_true] = ACTIONS(2463), - [sym_false] = ACTIONS(2463), - [sym_null] = ACTIONS(2463), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2463), - [anon_sym_decltype] = ACTIONS(2463), - [anon_sym_virtual] = ACTIONS(2463), - [anon_sym_typename] = ACTIONS(2463), - [anon_sym_template] = ACTIONS(2463), - [anon_sym_try] = ACTIONS(2463), - [anon_sym_delete] = ACTIONS(2463), - [anon_sym_throw] = ACTIONS(2463), - [anon_sym_co_return] = ACTIONS(2463), - [anon_sym_co_yield] = ACTIONS(2463), - [anon_sym_co_await] = ACTIONS(2463), - [anon_sym_new] = ACTIONS(2463), - [anon_sym_requires] = ACTIONS(2463), - [sym_this] = ACTIONS(2463), - [sym_nullptr] = ACTIONS(2463), - [sym_raw_string_literal] = ACTIONS(2465), + [737] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_RBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1174] = { - [sym_identifier] = ACTIONS(2451), - [anon_sym_LPAREN2] = ACTIONS(2453), - [anon_sym_BANG] = ACTIONS(2453), - [anon_sym_TILDE] = ACTIONS(2453), - [anon_sym_DASH] = ACTIONS(2451), - [anon_sym_PLUS] = ACTIONS(2451), - [anon_sym_STAR] = ACTIONS(2453), - [anon_sym_AMP] = ACTIONS(2453), - [anon_sym_SEMI] = ACTIONS(2453), - [anon_sym_typedef] = ACTIONS(2451), - [anon_sym_extern] = ACTIONS(2451), - [anon_sym___attribute__] = ACTIONS(2451), - [anon_sym_COLON_COLON] = ACTIONS(2453), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2453), - [anon_sym___declspec] = ACTIONS(2451), - [anon_sym_LBRACE] = ACTIONS(2453), - [anon_sym_LBRACK] = ACTIONS(2451), - [anon_sym_static] = ACTIONS(2451), - [anon_sym_register] = ACTIONS(2451), - [anon_sym_inline] = ACTIONS(2451), - [anon_sym_thread_local] = ACTIONS(2451), - [anon_sym_const] = ACTIONS(2451), - [anon_sym_volatile] = ACTIONS(2451), - [anon_sym_restrict] = ACTIONS(2451), - [anon_sym__Atomic] = ACTIONS(2451), - [anon_sym_mutable] = ACTIONS(2451), - [anon_sym_constexpr] = ACTIONS(2451), - [anon_sym_constinit] = ACTIONS(2451), - [anon_sym_consteval] = ACTIONS(2451), - [anon_sym_signed] = ACTIONS(2451), - [anon_sym_unsigned] = ACTIONS(2451), - [anon_sym_long] = ACTIONS(2451), - [anon_sym_short] = ACTIONS(2451), - [sym_primitive_type] = ACTIONS(2451), - [anon_sym_enum] = ACTIONS(2451), - [anon_sym_class] = ACTIONS(2451), - [anon_sym_struct] = ACTIONS(2451), - [anon_sym_union] = ACTIONS(2451), - [anon_sym_if] = ACTIONS(2451), - [anon_sym_else] = ACTIONS(2451), - [anon_sym_switch] = ACTIONS(2451), - [anon_sym_while] = ACTIONS(2451), - [anon_sym_do] = ACTIONS(2451), - [anon_sym_for] = ACTIONS(2451), - [anon_sym_return] = ACTIONS(2451), - [anon_sym_break] = ACTIONS(2451), - [anon_sym_continue] = ACTIONS(2451), - [anon_sym_goto] = ACTIONS(2451), - [anon_sym_DASH_DASH] = ACTIONS(2453), - [anon_sym_PLUS_PLUS] = ACTIONS(2453), - [anon_sym_sizeof] = ACTIONS(2451), - [sym_number_literal] = ACTIONS(2453), - [anon_sym_L_SQUOTE] = ACTIONS(2453), - [anon_sym_u_SQUOTE] = ACTIONS(2453), - [anon_sym_U_SQUOTE] = ACTIONS(2453), - [anon_sym_u8_SQUOTE] = ACTIONS(2453), - [anon_sym_SQUOTE] = ACTIONS(2453), - [anon_sym_L_DQUOTE] = ACTIONS(2453), - [anon_sym_u_DQUOTE] = ACTIONS(2453), - [anon_sym_U_DQUOTE] = ACTIONS(2453), - [anon_sym_u8_DQUOTE] = ACTIONS(2453), - [anon_sym_DQUOTE] = ACTIONS(2453), - [sym_true] = ACTIONS(2451), - [sym_false] = ACTIONS(2451), - [sym_null] = ACTIONS(2451), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2451), - [anon_sym_decltype] = ACTIONS(2451), - [anon_sym_virtual] = ACTIONS(2451), - [anon_sym_typename] = ACTIONS(2451), - [anon_sym_template] = ACTIONS(2451), - [anon_sym_try] = ACTIONS(2451), - [anon_sym_delete] = ACTIONS(2451), - [anon_sym_throw] = ACTIONS(2451), - [anon_sym_co_return] = ACTIONS(2451), - [anon_sym_co_yield] = ACTIONS(2451), - [anon_sym_co_await] = ACTIONS(2451), - [anon_sym_new] = ACTIONS(2451), - [anon_sym_requires] = ACTIONS(2451), - [sym_this] = ACTIONS(2451), - [sym_nullptr] = ACTIONS(2451), - [sym_raw_string_literal] = ACTIONS(2453), + [738] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_RBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1175] = { - [sym_identifier] = ACTIONS(2447), - [anon_sym_LPAREN2] = ACTIONS(2449), - [anon_sym_BANG] = ACTIONS(2449), - [anon_sym_TILDE] = ACTIONS(2449), - [anon_sym_DASH] = ACTIONS(2447), - [anon_sym_PLUS] = ACTIONS(2447), - [anon_sym_STAR] = ACTIONS(2449), - [anon_sym_AMP] = ACTIONS(2449), - [anon_sym_SEMI] = ACTIONS(2449), - [anon_sym_typedef] = ACTIONS(2447), - [anon_sym_extern] = ACTIONS(2447), - [anon_sym___attribute__] = ACTIONS(2447), - [anon_sym_COLON_COLON] = ACTIONS(2449), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2449), - [anon_sym___declspec] = ACTIONS(2447), - [anon_sym_LBRACE] = ACTIONS(2449), - [anon_sym_LBRACK] = ACTIONS(2447), - [anon_sym_static] = ACTIONS(2447), - [anon_sym_register] = ACTIONS(2447), - [anon_sym_inline] = ACTIONS(2447), - [anon_sym_thread_local] = ACTIONS(2447), - [anon_sym_const] = ACTIONS(2447), - [anon_sym_volatile] = ACTIONS(2447), - [anon_sym_restrict] = ACTIONS(2447), - [anon_sym__Atomic] = ACTIONS(2447), - [anon_sym_mutable] = ACTIONS(2447), - [anon_sym_constexpr] = ACTIONS(2447), - [anon_sym_constinit] = ACTIONS(2447), - [anon_sym_consteval] = ACTIONS(2447), - [anon_sym_signed] = ACTIONS(2447), - [anon_sym_unsigned] = ACTIONS(2447), - [anon_sym_long] = ACTIONS(2447), - [anon_sym_short] = ACTIONS(2447), - [sym_primitive_type] = ACTIONS(2447), - [anon_sym_enum] = ACTIONS(2447), - [anon_sym_class] = ACTIONS(2447), - [anon_sym_struct] = ACTIONS(2447), - [anon_sym_union] = ACTIONS(2447), - [anon_sym_if] = ACTIONS(2447), - [anon_sym_else] = ACTIONS(2447), - [anon_sym_switch] = ACTIONS(2447), - [anon_sym_while] = ACTIONS(2447), - [anon_sym_do] = ACTIONS(2447), - [anon_sym_for] = ACTIONS(2447), - [anon_sym_return] = ACTIONS(2447), - [anon_sym_break] = ACTIONS(2447), - [anon_sym_continue] = ACTIONS(2447), - [anon_sym_goto] = ACTIONS(2447), - [anon_sym_DASH_DASH] = ACTIONS(2449), - [anon_sym_PLUS_PLUS] = ACTIONS(2449), - [anon_sym_sizeof] = ACTIONS(2447), - [sym_number_literal] = ACTIONS(2449), - [anon_sym_L_SQUOTE] = ACTIONS(2449), - [anon_sym_u_SQUOTE] = ACTIONS(2449), - [anon_sym_U_SQUOTE] = ACTIONS(2449), - [anon_sym_u8_SQUOTE] = ACTIONS(2449), - [anon_sym_SQUOTE] = ACTIONS(2449), - [anon_sym_L_DQUOTE] = ACTIONS(2449), - [anon_sym_u_DQUOTE] = ACTIONS(2449), - [anon_sym_U_DQUOTE] = ACTIONS(2449), - [anon_sym_u8_DQUOTE] = ACTIONS(2449), - [anon_sym_DQUOTE] = ACTIONS(2449), - [sym_true] = ACTIONS(2447), - [sym_false] = ACTIONS(2447), - [sym_null] = ACTIONS(2447), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2447), - [anon_sym_decltype] = ACTIONS(2447), - [anon_sym_virtual] = ACTIONS(2447), - [anon_sym_typename] = ACTIONS(2447), - [anon_sym_template] = ACTIONS(2447), - [anon_sym_try] = ACTIONS(2447), - [anon_sym_delete] = ACTIONS(2447), - [anon_sym_throw] = ACTIONS(2447), - [anon_sym_co_return] = ACTIONS(2447), - [anon_sym_co_yield] = ACTIONS(2447), - [anon_sym_co_await] = ACTIONS(2447), - [anon_sym_new] = ACTIONS(2447), - [anon_sym_requires] = ACTIONS(2447), - [sym_this] = ACTIONS(2447), - [sym_nullptr] = ACTIONS(2447), - [sym_raw_string_literal] = ACTIONS(2449), + [739] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_RBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1176] = { - [sym_identifier] = ACTIONS(2437), - [anon_sym_LPAREN2] = ACTIONS(2439), - [anon_sym_BANG] = ACTIONS(2439), - [anon_sym_TILDE] = ACTIONS(2439), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2439), - [anon_sym_AMP] = ACTIONS(2439), - [anon_sym_SEMI] = ACTIONS(2439), - [anon_sym_typedef] = ACTIONS(2437), - [anon_sym_extern] = ACTIONS(2437), - [anon_sym___attribute__] = ACTIONS(2437), - [anon_sym_COLON_COLON] = ACTIONS(2439), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2439), - [anon_sym___declspec] = ACTIONS(2437), - [anon_sym_LBRACE] = ACTIONS(2439), - [anon_sym_LBRACK] = ACTIONS(2437), - [anon_sym_static] = ACTIONS(2437), - [anon_sym_register] = ACTIONS(2437), - [anon_sym_inline] = ACTIONS(2437), - [anon_sym_thread_local] = ACTIONS(2437), - [anon_sym_const] = ACTIONS(2437), - [anon_sym_volatile] = ACTIONS(2437), - [anon_sym_restrict] = ACTIONS(2437), - [anon_sym__Atomic] = ACTIONS(2437), - [anon_sym_mutable] = ACTIONS(2437), - [anon_sym_constexpr] = ACTIONS(2437), - [anon_sym_constinit] = ACTIONS(2437), - [anon_sym_consteval] = ACTIONS(2437), - [anon_sym_signed] = ACTIONS(2437), - [anon_sym_unsigned] = ACTIONS(2437), - [anon_sym_long] = ACTIONS(2437), - [anon_sym_short] = ACTIONS(2437), - [sym_primitive_type] = ACTIONS(2437), - [anon_sym_enum] = ACTIONS(2437), - [anon_sym_class] = ACTIONS(2437), - [anon_sym_struct] = ACTIONS(2437), - [anon_sym_union] = ACTIONS(2437), - [anon_sym_if] = ACTIONS(2437), - [anon_sym_else] = ACTIONS(3170), - [anon_sym_switch] = ACTIONS(2437), - [anon_sym_while] = ACTIONS(2437), - [anon_sym_do] = ACTIONS(2437), - [anon_sym_for] = ACTIONS(2437), - [anon_sym_return] = ACTIONS(2437), - [anon_sym_break] = ACTIONS(2437), - [anon_sym_continue] = ACTIONS(2437), - [anon_sym_goto] = ACTIONS(2437), - [anon_sym_DASH_DASH] = ACTIONS(2439), - [anon_sym_PLUS_PLUS] = ACTIONS(2439), - [anon_sym_sizeof] = ACTIONS(2437), - [sym_number_literal] = ACTIONS(2439), - [anon_sym_L_SQUOTE] = ACTIONS(2439), - [anon_sym_u_SQUOTE] = ACTIONS(2439), - [anon_sym_U_SQUOTE] = ACTIONS(2439), - [anon_sym_u8_SQUOTE] = ACTIONS(2439), - [anon_sym_SQUOTE] = ACTIONS(2439), - [anon_sym_L_DQUOTE] = ACTIONS(2439), - [anon_sym_u_DQUOTE] = ACTIONS(2439), - [anon_sym_U_DQUOTE] = ACTIONS(2439), - [anon_sym_u8_DQUOTE] = ACTIONS(2439), - [anon_sym_DQUOTE] = ACTIONS(2439), - [sym_true] = ACTIONS(2437), - [sym_false] = ACTIONS(2437), - [sym_null] = ACTIONS(2437), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2437), - [anon_sym_decltype] = ACTIONS(2437), - [anon_sym_virtual] = ACTIONS(2437), - [anon_sym_typename] = ACTIONS(2437), - [anon_sym_template] = ACTIONS(2437), - [anon_sym_try] = ACTIONS(2437), - [anon_sym_delete] = ACTIONS(2437), - [anon_sym_throw] = ACTIONS(2437), - [anon_sym_co_return] = ACTIONS(2437), - [anon_sym_co_yield] = ACTIONS(2437), - [anon_sym_co_await] = ACTIONS(2437), - [anon_sym_new] = ACTIONS(2437), - [anon_sym_requires] = ACTIONS(2437), - [sym_this] = ACTIONS(2437), - [sym_nullptr] = ACTIONS(2437), - [sym_raw_string_literal] = ACTIONS(2439), + [740] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_RBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1177] = { - [sym_identifier] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2461), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), + [741] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_RBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1178] = { - [sym_type_qualifier] = STATE(1137), - [sym__expression] = STATE(3803), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2981), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2981), - [sym_call_expression] = STATE(2981), - [sym_field_expression] = STATE(2981), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2981), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2981), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_type_definition_repeat1] = STATE(1137), - [sym_identifier] = ACTIONS(3039), - [anon_sym_LPAREN2] = ACTIONS(3041), - [anon_sym_BANG] = ACTIONS(3045), - [anon_sym_TILDE] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(3172), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(3047), - [anon_sym_LBRACK] = ACTIONS(2272), - [anon_sym_RBRACK] = ACTIONS(3174), - [anon_sym_const] = ACTIONS(3130), - [anon_sym_volatile] = ACTIONS(3130), - [anon_sym_restrict] = ACTIONS(3130), - [anon_sym__Atomic] = ACTIONS(3130), - [anon_sym_mutable] = ACTIONS(3130), - [anon_sym_constexpr] = ACTIONS(3130), - [anon_sym_constinit] = ACTIONS(3130), - [anon_sym_consteval] = ACTIONS(3130), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3049), - [anon_sym_PLUS_PLUS] = ACTIONS(3049), - [anon_sym_sizeof] = ACTIONS(3051), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3053), - [anon_sym_co_await] = ACTIONS(3055), - [anon_sym_new] = ACTIONS(3057), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [742] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_RBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1179] = { - [sym_identifier] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2461), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), + [743] = { + [ts_builtin_sym_end] = ACTIONS(2561), + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1180] = { - [sym_identifier] = ACTIONS(2459), - [anon_sym_LPAREN2] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_TILDE] = ACTIONS(2461), - [anon_sym_DASH] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2459), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2461), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_typedef] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym___attribute__] = ACTIONS(2459), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2461), - [anon_sym___declspec] = ACTIONS(2459), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_inline] = ACTIONS(2459), - [anon_sym_thread_local] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_volatile] = ACTIONS(2459), - [anon_sym_restrict] = ACTIONS(2459), - [anon_sym__Atomic] = ACTIONS(2459), - [anon_sym_mutable] = ACTIONS(2459), - [anon_sym_constexpr] = ACTIONS(2459), - [anon_sym_constinit] = ACTIONS(2459), - [anon_sym_consteval] = ACTIONS(2459), - [anon_sym_signed] = ACTIONS(2459), - [anon_sym_unsigned] = ACTIONS(2459), - [anon_sym_long] = ACTIONS(2459), - [anon_sym_short] = ACTIONS(2459), - [sym_primitive_type] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_class] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_switch] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_goto] = ACTIONS(2459), - [anon_sym_DASH_DASH] = ACTIONS(2461), - [anon_sym_PLUS_PLUS] = ACTIONS(2461), - [anon_sym_sizeof] = ACTIONS(2459), - [sym_number_literal] = ACTIONS(2461), - [anon_sym_L_SQUOTE] = ACTIONS(2461), - [anon_sym_u_SQUOTE] = ACTIONS(2461), - [anon_sym_U_SQUOTE] = ACTIONS(2461), - [anon_sym_u8_SQUOTE] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2461), - [anon_sym_L_DQUOTE] = ACTIONS(2461), - [anon_sym_u_DQUOTE] = ACTIONS(2461), - [anon_sym_U_DQUOTE] = ACTIONS(2461), - [anon_sym_u8_DQUOTE] = ACTIONS(2461), - [anon_sym_DQUOTE] = ACTIONS(2461), - [sym_true] = ACTIONS(2459), - [sym_false] = ACTIONS(2459), - [sym_null] = ACTIONS(2459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2459), - [anon_sym_decltype] = ACTIONS(2459), - [anon_sym_virtual] = ACTIONS(2459), - [anon_sym_typename] = ACTIONS(2459), - [anon_sym_template] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_delete] = ACTIONS(2459), - [anon_sym_throw] = ACTIONS(2459), - [anon_sym_co_return] = ACTIONS(2459), - [anon_sym_co_yield] = ACTIONS(2459), - [anon_sym_co_await] = ACTIONS(2459), - [anon_sym_new] = ACTIONS(2459), - [anon_sym_requires] = ACTIONS(2459), - [sym_this] = ACTIONS(2459), - [sym_nullptr] = ACTIONS(2459), - [sym_raw_string_literal] = ACTIONS(2461), + [744] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_RBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1181] = { - [sym_identifier] = ACTIONS(2479), - [anon_sym_LPAREN2] = ACTIONS(2481), - [anon_sym_BANG] = ACTIONS(2481), - [anon_sym_TILDE] = ACTIONS(2481), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_AMP] = ACTIONS(2481), - [anon_sym_SEMI] = ACTIONS(2481), - [anon_sym_typedef] = ACTIONS(2479), - [anon_sym_extern] = ACTIONS(2479), - [anon_sym___attribute__] = ACTIONS(2479), - [anon_sym_COLON_COLON] = ACTIONS(2481), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2481), - [anon_sym___declspec] = ACTIONS(2479), - [anon_sym_LBRACE] = ACTIONS(2481), - [anon_sym_LBRACK] = ACTIONS(2479), - [anon_sym_static] = ACTIONS(2479), - [anon_sym_register] = ACTIONS(2479), - [anon_sym_inline] = ACTIONS(2479), - [anon_sym_thread_local] = ACTIONS(2479), - [anon_sym_const] = ACTIONS(2479), - [anon_sym_volatile] = ACTIONS(2479), - [anon_sym_restrict] = ACTIONS(2479), - [anon_sym__Atomic] = ACTIONS(2479), - [anon_sym_mutable] = ACTIONS(2479), - [anon_sym_constexpr] = ACTIONS(2479), - [anon_sym_constinit] = ACTIONS(2479), - [anon_sym_consteval] = ACTIONS(2479), - [anon_sym_signed] = ACTIONS(2479), - [anon_sym_unsigned] = ACTIONS(2479), - [anon_sym_long] = ACTIONS(2479), - [anon_sym_short] = ACTIONS(2479), - [sym_primitive_type] = ACTIONS(2479), - [anon_sym_enum] = ACTIONS(2479), - [anon_sym_class] = ACTIONS(2479), - [anon_sym_struct] = ACTIONS(2479), - [anon_sym_union] = ACTIONS(2479), - [anon_sym_if] = ACTIONS(2479), - [anon_sym_else] = ACTIONS(2479), - [anon_sym_switch] = ACTIONS(2479), - [anon_sym_while] = ACTIONS(2479), - [anon_sym_do] = ACTIONS(2479), - [anon_sym_for] = ACTIONS(2479), - [anon_sym_return] = ACTIONS(2479), - [anon_sym_break] = ACTIONS(2479), - [anon_sym_continue] = ACTIONS(2479), - [anon_sym_goto] = ACTIONS(2479), - [anon_sym_DASH_DASH] = ACTIONS(2481), - [anon_sym_PLUS_PLUS] = ACTIONS(2481), - [anon_sym_sizeof] = ACTIONS(2479), - [sym_number_literal] = ACTIONS(2481), - [anon_sym_L_SQUOTE] = ACTIONS(2481), - [anon_sym_u_SQUOTE] = ACTIONS(2481), - [anon_sym_U_SQUOTE] = ACTIONS(2481), - [anon_sym_u8_SQUOTE] = ACTIONS(2481), - [anon_sym_SQUOTE] = ACTIONS(2481), - [anon_sym_L_DQUOTE] = ACTIONS(2481), - [anon_sym_u_DQUOTE] = ACTIONS(2481), - [anon_sym_U_DQUOTE] = ACTIONS(2481), - [anon_sym_u8_DQUOTE] = ACTIONS(2481), - [anon_sym_DQUOTE] = ACTIONS(2481), - [sym_true] = ACTIONS(2479), - [sym_false] = ACTIONS(2479), - [sym_null] = ACTIONS(2479), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2479), - [anon_sym_decltype] = ACTIONS(2479), - [anon_sym_virtual] = ACTIONS(2479), - [anon_sym_typename] = ACTIONS(2479), - [anon_sym_template] = ACTIONS(2479), - [anon_sym_try] = ACTIONS(2479), - [anon_sym_delete] = ACTIONS(2479), - [anon_sym_throw] = ACTIONS(2479), - [anon_sym_co_return] = ACTIONS(2479), - [anon_sym_co_yield] = ACTIONS(2479), - [anon_sym_co_await] = ACTIONS(2479), - [anon_sym_new] = ACTIONS(2479), - [anon_sym_requires] = ACTIONS(2479), - [sym_this] = ACTIONS(2479), - [sym_nullptr] = ACTIONS(2479), - [sym_raw_string_literal] = ACTIONS(2481), + [745] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_RBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1182] = { - [sym_identifier] = ACTIONS(2475), - [anon_sym_LPAREN2] = ACTIONS(2477), - [anon_sym_BANG] = ACTIONS(2477), - [anon_sym_TILDE] = ACTIONS(2477), - [anon_sym_DASH] = ACTIONS(2475), - [anon_sym_PLUS] = ACTIONS(2475), - [anon_sym_STAR] = ACTIONS(2477), - [anon_sym_AMP] = ACTIONS(2477), - [anon_sym_SEMI] = ACTIONS(2477), - [anon_sym_typedef] = ACTIONS(2475), - [anon_sym_extern] = ACTIONS(2475), - [anon_sym___attribute__] = ACTIONS(2475), - [anon_sym_COLON_COLON] = ACTIONS(2477), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2477), - [anon_sym___declspec] = ACTIONS(2475), - [anon_sym_LBRACE] = ACTIONS(2477), - [anon_sym_LBRACK] = ACTIONS(2475), - [anon_sym_static] = ACTIONS(2475), - [anon_sym_register] = ACTIONS(2475), - [anon_sym_inline] = ACTIONS(2475), - [anon_sym_thread_local] = ACTIONS(2475), - [anon_sym_const] = ACTIONS(2475), - [anon_sym_volatile] = ACTIONS(2475), - [anon_sym_restrict] = ACTIONS(2475), - [anon_sym__Atomic] = ACTIONS(2475), - [anon_sym_mutable] = ACTIONS(2475), - [anon_sym_constexpr] = ACTIONS(2475), - [anon_sym_constinit] = ACTIONS(2475), - [anon_sym_consteval] = ACTIONS(2475), - [anon_sym_signed] = ACTIONS(2475), - [anon_sym_unsigned] = ACTIONS(2475), - [anon_sym_long] = ACTIONS(2475), - [anon_sym_short] = ACTIONS(2475), - [sym_primitive_type] = ACTIONS(2475), - [anon_sym_enum] = ACTIONS(2475), - [anon_sym_class] = ACTIONS(2475), - [anon_sym_struct] = ACTIONS(2475), - [anon_sym_union] = ACTIONS(2475), - [anon_sym_if] = ACTIONS(2475), - [anon_sym_else] = ACTIONS(2475), - [anon_sym_switch] = ACTIONS(2475), - [anon_sym_while] = ACTIONS(2475), - [anon_sym_do] = ACTIONS(2475), - [anon_sym_for] = ACTIONS(2475), - [anon_sym_return] = ACTIONS(2475), - [anon_sym_break] = ACTIONS(2475), - [anon_sym_continue] = ACTIONS(2475), - [anon_sym_goto] = ACTIONS(2475), - [anon_sym_DASH_DASH] = ACTIONS(2477), - [anon_sym_PLUS_PLUS] = ACTIONS(2477), - [anon_sym_sizeof] = ACTIONS(2475), - [sym_number_literal] = ACTIONS(2477), - [anon_sym_L_SQUOTE] = ACTIONS(2477), - [anon_sym_u_SQUOTE] = ACTIONS(2477), - [anon_sym_U_SQUOTE] = ACTIONS(2477), - [anon_sym_u8_SQUOTE] = ACTIONS(2477), - [anon_sym_SQUOTE] = ACTIONS(2477), - [anon_sym_L_DQUOTE] = ACTIONS(2477), - [anon_sym_u_DQUOTE] = ACTIONS(2477), - [anon_sym_U_DQUOTE] = ACTIONS(2477), - [anon_sym_u8_DQUOTE] = ACTIONS(2477), - [anon_sym_DQUOTE] = ACTIONS(2477), - [sym_true] = ACTIONS(2475), - [sym_false] = ACTIONS(2475), - [sym_null] = ACTIONS(2475), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2475), - [anon_sym_decltype] = ACTIONS(2475), - [anon_sym_virtual] = ACTIONS(2475), - [anon_sym_typename] = ACTIONS(2475), - [anon_sym_template] = ACTIONS(2475), - [anon_sym_try] = ACTIONS(2475), - [anon_sym_delete] = ACTIONS(2475), - [anon_sym_throw] = ACTIONS(2475), - [anon_sym_co_return] = ACTIONS(2475), - [anon_sym_co_yield] = ACTIONS(2475), - [anon_sym_co_await] = ACTIONS(2475), - [anon_sym_new] = ACTIONS(2475), - [anon_sym_requires] = ACTIONS(2475), - [sym_this] = ACTIONS(2475), - [sym_nullptr] = ACTIONS(2475), - [sym_raw_string_literal] = ACTIONS(2477), + [746] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_RBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1183] = { - [sym_identifier] = ACTIONS(2351), - [anon_sym_LPAREN2] = ACTIONS(2353), - [anon_sym_BANG] = ACTIONS(2353), - [anon_sym_TILDE] = ACTIONS(2353), - [anon_sym_DASH] = ACTIONS(2351), - [anon_sym_PLUS] = ACTIONS(2351), - [anon_sym_STAR] = ACTIONS(2353), - [anon_sym_AMP] = ACTIONS(2353), - [anon_sym_SEMI] = ACTIONS(2353), - [anon_sym_typedef] = ACTIONS(2351), - [anon_sym_extern] = ACTIONS(2351), - [anon_sym___attribute__] = ACTIONS(2351), - [anon_sym_COLON_COLON] = ACTIONS(2353), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2353), - [anon_sym___declspec] = ACTIONS(2351), - [anon_sym_LBRACE] = ACTIONS(2353), - [anon_sym_LBRACK] = ACTIONS(2351), - [anon_sym_static] = ACTIONS(2351), - [anon_sym_register] = ACTIONS(2351), - [anon_sym_inline] = ACTIONS(2351), - [anon_sym_thread_local] = ACTIONS(2351), - [anon_sym_const] = ACTIONS(2351), - [anon_sym_volatile] = ACTIONS(2351), - [anon_sym_restrict] = ACTIONS(2351), - [anon_sym__Atomic] = ACTIONS(2351), - [anon_sym_mutable] = ACTIONS(2351), - [anon_sym_constexpr] = ACTIONS(2351), - [anon_sym_constinit] = ACTIONS(2351), - [anon_sym_consteval] = ACTIONS(2351), - [anon_sym_signed] = ACTIONS(2351), - [anon_sym_unsigned] = ACTIONS(2351), - [anon_sym_long] = ACTIONS(2351), - [anon_sym_short] = ACTIONS(2351), - [sym_primitive_type] = ACTIONS(2351), - [anon_sym_enum] = ACTIONS(2351), - [anon_sym_class] = ACTIONS(2351), - [anon_sym_struct] = ACTIONS(2351), - [anon_sym_union] = ACTIONS(2351), - [anon_sym_if] = ACTIONS(2351), - [anon_sym_else] = ACTIONS(2351), - [anon_sym_switch] = ACTIONS(2351), - [anon_sym_while] = ACTIONS(2351), - [anon_sym_do] = ACTIONS(2351), - [anon_sym_for] = ACTIONS(2351), - [anon_sym_return] = ACTIONS(2351), - [anon_sym_break] = ACTIONS(2351), - [anon_sym_continue] = ACTIONS(2351), - [anon_sym_goto] = ACTIONS(2351), - [anon_sym_DASH_DASH] = ACTIONS(2353), - [anon_sym_PLUS_PLUS] = ACTIONS(2353), - [anon_sym_sizeof] = ACTIONS(2351), - [sym_number_literal] = ACTIONS(2353), - [anon_sym_L_SQUOTE] = ACTIONS(2353), - [anon_sym_u_SQUOTE] = ACTIONS(2353), - [anon_sym_U_SQUOTE] = ACTIONS(2353), - [anon_sym_u8_SQUOTE] = ACTIONS(2353), - [anon_sym_SQUOTE] = ACTIONS(2353), - [anon_sym_L_DQUOTE] = ACTIONS(2353), - [anon_sym_u_DQUOTE] = ACTIONS(2353), - [anon_sym_U_DQUOTE] = ACTIONS(2353), - [anon_sym_u8_DQUOTE] = ACTIONS(2353), - [anon_sym_DQUOTE] = ACTIONS(2353), - [sym_true] = ACTIONS(2351), - [sym_false] = ACTIONS(2351), - [sym_null] = ACTIONS(2351), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2351), - [anon_sym_decltype] = ACTIONS(2351), - [anon_sym_virtual] = ACTIONS(2351), - [anon_sym_typename] = ACTIONS(2351), - [anon_sym_template] = ACTIONS(2351), - [anon_sym_try] = ACTIONS(2351), - [anon_sym_delete] = ACTIONS(2351), - [anon_sym_throw] = ACTIONS(2351), - [anon_sym_co_return] = ACTIONS(2351), - [anon_sym_co_yield] = ACTIONS(2351), - [anon_sym_co_await] = ACTIONS(2351), - [anon_sym_new] = ACTIONS(2351), - [anon_sym_requires] = ACTIONS(2351), - [sym_this] = ACTIONS(2351), - [sym_nullptr] = ACTIONS(2351), - [sym_raw_string_literal] = ACTIONS(2353), + [747] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_RBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1184] = { - [sym_identifier] = ACTIONS(2455), - [anon_sym_LPAREN2] = ACTIONS(2457), - [anon_sym_BANG] = ACTIONS(2457), - [anon_sym_TILDE] = ACTIONS(2457), - [anon_sym_DASH] = ACTIONS(2455), - [anon_sym_PLUS] = ACTIONS(2455), - [anon_sym_STAR] = ACTIONS(2457), - [anon_sym_AMP] = ACTIONS(2457), - [anon_sym_SEMI] = ACTIONS(2457), - [anon_sym_typedef] = ACTIONS(2455), - [anon_sym_extern] = ACTIONS(2455), - [anon_sym___attribute__] = ACTIONS(2455), - [anon_sym_COLON_COLON] = ACTIONS(2457), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2457), - [anon_sym___declspec] = ACTIONS(2455), - [anon_sym_LBRACE] = ACTIONS(2457), - [anon_sym_LBRACK] = ACTIONS(2455), - [anon_sym_static] = ACTIONS(2455), - [anon_sym_register] = ACTIONS(2455), - [anon_sym_inline] = ACTIONS(2455), - [anon_sym_thread_local] = ACTIONS(2455), - [anon_sym_const] = ACTIONS(2455), - [anon_sym_volatile] = ACTIONS(2455), - [anon_sym_restrict] = ACTIONS(2455), - [anon_sym__Atomic] = ACTIONS(2455), - [anon_sym_mutable] = ACTIONS(2455), - [anon_sym_constexpr] = ACTIONS(2455), - [anon_sym_constinit] = ACTIONS(2455), - [anon_sym_consteval] = ACTIONS(2455), - [anon_sym_signed] = ACTIONS(2455), - [anon_sym_unsigned] = ACTIONS(2455), - [anon_sym_long] = ACTIONS(2455), - [anon_sym_short] = ACTIONS(2455), - [sym_primitive_type] = ACTIONS(2455), - [anon_sym_enum] = ACTIONS(2455), - [anon_sym_class] = ACTIONS(2455), - [anon_sym_struct] = ACTIONS(2455), - [anon_sym_union] = ACTIONS(2455), - [anon_sym_if] = ACTIONS(2455), - [anon_sym_else] = ACTIONS(2455), - [anon_sym_switch] = ACTIONS(2455), - [anon_sym_while] = ACTIONS(2455), - [anon_sym_do] = ACTIONS(2455), - [anon_sym_for] = ACTIONS(2455), - [anon_sym_return] = ACTIONS(2455), - [anon_sym_break] = ACTIONS(2455), - [anon_sym_continue] = ACTIONS(2455), - [anon_sym_goto] = ACTIONS(2455), - [anon_sym_DASH_DASH] = ACTIONS(2457), - [anon_sym_PLUS_PLUS] = ACTIONS(2457), - [anon_sym_sizeof] = ACTIONS(2455), - [sym_number_literal] = ACTIONS(2457), - [anon_sym_L_SQUOTE] = ACTIONS(2457), - [anon_sym_u_SQUOTE] = ACTIONS(2457), - [anon_sym_U_SQUOTE] = ACTIONS(2457), - [anon_sym_u8_SQUOTE] = ACTIONS(2457), - [anon_sym_SQUOTE] = ACTIONS(2457), - [anon_sym_L_DQUOTE] = ACTIONS(2457), - [anon_sym_u_DQUOTE] = ACTIONS(2457), - [anon_sym_U_DQUOTE] = ACTIONS(2457), - [anon_sym_u8_DQUOTE] = ACTIONS(2457), - [anon_sym_DQUOTE] = ACTIONS(2457), - [sym_true] = ACTIONS(2455), - [sym_false] = ACTIONS(2455), - [sym_null] = ACTIONS(2455), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2455), - [anon_sym_decltype] = ACTIONS(2455), - [anon_sym_virtual] = ACTIONS(2455), - [anon_sym_typename] = ACTIONS(2455), - [anon_sym_template] = ACTIONS(2455), - [anon_sym_try] = ACTIONS(2455), - [anon_sym_delete] = ACTIONS(2455), - [anon_sym_throw] = ACTIONS(2455), - [anon_sym_co_return] = ACTIONS(2455), - [anon_sym_co_yield] = ACTIONS(2455), - [anon_sym_co_await] = ACTIONS(2455), - [anon_sym_new] = ACTIONS(2455), - [anon_sym_requires] = ACTIONS(2455), - [sym_this] = ACTIONS(2455), - [sym_nullptr] = ACTIONS(2455), - [sym_raw_string_literal] = ACTIONS(2457), + [748] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_RBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1185] = { - [sym_identifier] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2349), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), + [749] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_RBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1186] = { - [sym_type_qualifier] = STATE(2268), - [sym__expression] = STATE(3923), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2981), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2981), - [sym_call_expression] = STATE(2981), - [sym_field_expression] = STATE(2981), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2981), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2981), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_type_definition_repeat1] = STATE(2268), - [sym_identifier] = ACTIONS(3039), - [anon_sym_LPAREN2] = ACTIONS(3041), - [anon_sym_BANG] = ACTIONS(3045), - [anon_sym_TILDE] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(3176), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(3047), - [anon_sym_LBRACK] = ACTIONS(2272), - [anon_sym_RBRACK] = ACTIONS(3178), - [anon_sym_const] = ACTIONS(3130), - [anon_sym_volatile] = ACTIONS(3130), - [anon_sym_restrict] = ACTIONS(3130), - [anon_sym__Atomic] = ACTIONS(3130), - [anon_sym_mutable] = ACTIONS(3130), - [anon_sym_constexpr] = ACTIONS(3130), - [anon_sym_constinit] = ACTIONS(3130), - [anon_sym_consteval] = ACTIONS(3130), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3049), - [anon_sym_PLUS_PLUS] = ACTIONS(3049), - [anon_sym_sizeof] = ACTIONS(3051), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [750] = { + [ts_builtin_sym_end] = ACTIONS(2649), + [sym_identifier] = ACTIONS(2647), + [aux_sym_preproc_include_token1] = ACTIONS(2647), + [aux_sym_preproc_def_token1] = ACTIONS(2647), + [aux_sym_preproc_if_token1] = ACTIONS(2647), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2647), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2647), + [sym_preproc_directive] = ACTIONS(2647), + [anon_sym_LPAREN2] = ACTIONS(2649), + [anon_sym_BANG] = ACTIONS(2649), + [anon_sym_TILDE] = ACTIONS(2649), + [anon_sym_DASH] = ACTIONS(2647), + [anon_sym_PLUS] = ACTIONS(2647), + [anon_sym_STAR] = ACTIONS(2649), + [anon_sym_AMP_AMP] = ACTIONS(2649), + [anon_sym_AMP] = ACTIONS(2647), + [anon_sym_SEMI] = ACTIONS(2649), + [anon_sym_typedef] = ACTIONS(2647), + [anon_sym_extern] = ACTIONS(2647), + [anon_sym___attribute__] = ACTIONS(2647), + [anon_sym_COLON_COLON] = ACTIONS(2649), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2649), + [anon_sym___declspec] = ACTIONS(2647), + [anon_sym___based] = ACTIONS(2647), + [anon_sym___cdecl] = ACTIONS(2647), + [anon_sym___clrcall] = ACTIONS(2647), + [anon_sym___stdcall] = ACTIONS(2647), + [anon_sym___fastcall] = ACTIONS(2647), + [anon_sym___thiscall] = ACTIONS(2647), + [anon_sym___vectorcall] = ACTIONS(2647), + [anon_sym_LBRACE] = ACTIONS(2649), + [anon_sym_LBRACK] = ACTIONS(2647), + [anon_sym_static] = ACTIONS(2647), + [anon_sym_register] = ACTIONS(2647), + [anon_sym_inline] = ACTIONS(2647), + [anon_sym_thread_local] = ACTIONS(2647), + [anon_sym_const] = ACTIONS(2647), + [anon_sym_volatile] = ACTIONS(2647), + [anon_sym_restrict] = ACTIONS(2647), + [anon_sym__Atomic] = ACTIONS(2647), + [anon_sym_mutable] = ACTIONS(2647), + [anon_sym_constexpr] = ACTIONS(2647), + [anon_sym_constinit] = ACTIONS(2647), + [anon_sym_consteval] = ACTIONS(2647), + [anon_sym_signed] = ACTIONS(2647), + [anon_sym_unsigned] = ACTIONS(2647), + [anon_sym_long] = ACTIONS(2647), + [anon_sym_short] = ACTIONS(2647), + [sym_primitive_type] = ACTIONS(2647), + [anon_sym_enum] = ACTIONS(2647), + [anon_sym_class] = ACTIONS(2647), + [anon_sym_struct] = ACTIONS(2647), + [anon_sym_union] = ACTIONS(2647), + [anon_sym_if] = ACTIONS(2647), + [anon_sym_else] = ACTIONS(2647), + [anon_sym_switch] = ACTIONS(2647), + [anon_sym_case] = ACTIONS(2647), + [anon_sym_default] = ACTIONS(2647), + [anon_sym_while] = ACTIONS(2647), + [anon_sym_do] = ACTIONS(2647), + [anon_sym_for] = ACTIONS(2647), + [anon_sym_return] = ACTIONS(2647), + [anon_sym_break] = ACTIONS(2647), + [anon_sym_continue] = ACTIONS(2647), + [anon_sym_goto] = ACTIONS(2647), + [anon_sym_not] = ACTIONS(2647), + [anon_sym_compl] = ACTIONS(2647), + [anon_sym_DASH_DASH] = ACTIONS(2649), + [anon_sym_PLUS_PLUS] = ACTIONS(2649), + [anon_sym_sizeof] = ACTIONS(2647), + [sym_number_literal] = ACTIONS(2649), + [anon_sym_L_SQUOTE] = ACTIONS(2649), + [anon_sym_u_SQUOTE] = ACTIONS(2649), + [anon_sym_U_SQUOTE] = ACTIONS(2649), + [anon_sym_u8_SQUOTE] = ACTIONS(2649), + [anon_sym_SQUOTE] = ACTIONS(2649), + [anon_sym_L_DQUOTE] = ACTIONS(2649), + [anon_sym_u_DQUOTE] = ACTIONS(2649), + [anon_sym_U_DQUOTE] = ACTIONS(2649), + [anon_sym_u8_DQUOTE] = ACTIONS(2649), + [anon_sym_DQUOTE] = ACTIONS(2649), + [sym_true] = ACTIONS(2647), + [sym_false] = ACTIONS(2647), + [sym_null] = ACTIONS(2647), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3053), - [anon_sym_co_await] = ACTIONS(3055), - [anon_sym_new] = ACTIONS(3057), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), - }, - [1187] = { - [sym_identifier] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2349), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [1188] = { - [sym_identifier] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2349), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [1189] = { - [sym_identifier] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2349), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [1190] = { - [sym_identifier] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2349), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [1191] = { - [sym_identifier] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2349), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [1192] = { - [sym_identifier] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2349), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [1193] = { - [sym_identifier] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2349), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [1194] = { - [sym_identifier] = ACTIONS(3117), - [anon_sym_LPAREN2] = ACTIONS(3119), - [anon_sym_BANG] = ACTIONS(3119), - [anon_sym_TILDE] = ACTIONS(3119), - [anon_sym_DASH] = ACTIONS(3117), - [anon_sym_PLUS] = ACTIONS(3117), - [anon_sym_STAR] = ACTIONS(3119), - [anon_sym_AMP] = ACTIONS(3119), - [anon_sym_SEMI] = ACTIONS(3119), - [anon_sym_extern] = ACTIONS(3117), - [anon_sym___attribute__] = ACTIONS(3117), - [anon_sym_COLON_COLON] = ACTIONS(3119), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3119), - [anon_sym___declspec] = ACTIONS(3117), - [anon_sym_LBRACE] = ACTIONS(3119), - [anon_sym_LBRACK] = ACTIONS(3117), - [anon_sym_static] = ACTIONS(3117), - [anon_sym_register] = ACTIONS(3117), - [anon_sym_inline] = ACTIONS(3117), - [anon_sym_thread_local] = ACTIONS(3117), - [anon_sym_const] = ACTIONS(3117), - [anon_sym_volatile] = ACTIONS(3117), - [anon_sym_restrict] = ACTIONS(3117), - [anon_sym__Atomic] = ACTIONS(3117), - [anon_sym_mutable] = ACTIONS(3117), - [anon_sym_constexpr] = ACTIONS(3117), - [anon_sym_constinit] = ACTIONS(3117), - [anon_sym_consteval] = ACTIONS(3117), - [anon_sym_signed] = ACTIONS(3117), - [anon_sym_unsigned] = ACTIONS(3117), - [anon_sym_long] = ACTIONS(3117), - [anon_sym_short] = ACTIONS(3117), - [sym_primitive_type] = ACTIONS(3117), - [anon_sym_enum] = ACTIONS(3117), - [anon_sym_class] = ACTIONS(3117), - [anon_sym_struct] = ACTIONS(3117), - [anon_sym_union] = ACTIONS(3117), - [anon_sym_if] = ACTIONS(3117), - [anon_sym_switch] = ACTIONS(3117), - [anon_sym_case] = ACTIONS(3117), - [anon_sym_default] = ACTIONS(3117), - [anon_sym_while] = ACTIONS(3117), - [anon_sym_do] = ACTIONS(3117), - [anon_sym_for] = ACTIONS(3117), - [anon_sym_return] = ACTIONS(3117), - [anon_sym_break] = ACTIONS(3117), - [anon_sym_continue] = ACTIONS(3117), - [anon_sym_goto] = ACTIONS(3117), - [anon_sym_DASH_DASH] = ACTIONS(3119), - [anon_sym_PLUS_PLUS] = ACTIONS(3119), - [anon_sym_sizeof] = ACTIONS(3117), - [sym_number_literal] = ACTIONS(3119), - [anon_sym_L_SQUOTE] = ACTIONS(3119), - [anon_sym_u_SQUOTE] = ACTIONS(3119), - [anon_sym_U_SQUOTE] = ACTIONS(3119), - [anon_sym_u8_SQUOTE] = ACTIONS(3119), - [anon_sym_SQUOTE] = ACTIONS(3119), - [anon_sym_L_DQUOTE] = ACTIONS(3119), - [anon_sym_u_DQUOTE] = ACTIONS(3119), - [anon_sym_U_DQUOTE] = ACTIONS(3119), - [anon_sym_u8_DQUOTE] = ACTIONS(3119), - [anon_sym_DQUOTE] = ACTIONS(3119), - [sym_true] = ACTIONS(3117), - [sym_false] = ACTIONS(3117), - [sym_null] = ACTIONS(3117), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3117), - [anon_sym_decltype] = ACTIONS(3117), - [anon_sym_virtual] = ACTIONS(3117), - [anon_sym_typename] = ACTIONS(3117), - [anon_sym_template] = ACTIONS(3117), - [anon_sym_try] = ACTIONS(3117), - [anon_sym_delete] = ACTIONS(3117), - [anon_sym_throw] = ACTIONS(3117), - [anon_sym_co_return] = ACTIONS(3117), - [anon_sym_co_yield] = ACTIONS(3117), - [anon_sym_co_await] = ACTIONS(3117), - [anon_sym_new] = ACTIONS(3117), - [anon_sym_requires] = ACTIONS(3117), - [sym_this] = ACTIONS(3117), - [sym_nullptr] = ACTIONS(3117), - [sym_raw_string_literal] = ACTIONS(3119), - }, - [1195] = { - [sym_identifier] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2349), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [1196] = { - [sym_identifier] = ACTIONS(2401), - [anon_sym_LPAREN2] = ACTIONS(2403), - [anon_sym_BANG] = ACTIONS(2403), - [anon_sym_TILDE] = ACTIONS(2403), - [anon_sym_DASH] = ACTIONS(2401), - [anon_sym_PLUS] = ACTIONS(2401), - [anon_sym_STAR] = ACTIONS(2403), - [anon_sym_AMP] = ACTIONS(2403), - [anon_sym_SEMI] = ACTIONS(2403), - [anon_sym_typedef] = ACTIONS(2401), - [anon_sym_extern] = ACTIONS(2401), - [anon_sym___attribute__] = ACTIONS(2401), - [anon_sym_COLON_COLON] = ACTIONS(2403), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2403), - [anon_sym___declspec] = ACTIONS(2401), - [anon_sym_LBRACE] = ACTIONS(2403), - [anon_sym_LBRACK] = ACTIONS(2401), - [anon_sym_static] = ACTIONS(2401), - [anon_sym_register] = ACTIONS(2401), - [anon_sym_inline] = ACTIONS(2401), - [anon_sym_thread_local] = ACTIONS(2401), - [anon_sym_const] = ACTIONS(2401), - [anon_sym_volatile] = ACTIONS(2401), - [anon_sym_restrict] = ACTIONS(2401), - [anon_sym__Atomic] = ACTIONS(2401), - [anon_sym_mutable] = ACTIONS(2401), - [anon_sym_constexpr] = ACTIONS(2401), - [anon_sym_constinit] = ACTIONS(2401), - [anon_sym_consteval] = ACTIONS(2401), - [anon_sym_signed] = ACTIONS(2401), - [anon_sym_unsigned] = ACTIONS(2401), - [anon_sym_long] = ACTIONS(2401), - [anon_sym_short] = ACTIONS(2401), - [sym_primitive_type] = ACTIONS(2401), - [anon_sym_enum] = ACTIONS(2401), - [anon_sym_class] = ACTIONS(2401), - [anon_sym_struct] = ACTIONS(2401), - [anon_sym_union] = ACTIONS(2401), - [anon_sym_if] = ACTIONS(2401), - [anon_sym_else] = ACTIONS(2401), - [anon_sym_switch] = ACTIONS(2401), - [anon_sym_while] = ACTIONS(2401), - [anon_sym_do] = ACTIONS(2401), - [anon_sym_for] = ACTIONS(2401), - [anon_sym_return] = ACTIONS(2401), - [anon_sym_break] = ACTIONS(2401), - [anon_sym_continue] = ACTIONS(2401), - [anon_sym_goto] = ACTIONS(2401), - [anon_sym_DASH_DASH] = ACTIONS(2403), - [anon_sym_PLUS_PLUS] = ACTIONS(2403), - [anon_sym_sizeof] = ACTIONS(2401), - [sym_number_literal] = ACTIONS(2403), - [anon_sym_L_SQUOTE] = ACTIONS(2403), - [anon_sym_u_SQUOTE] = ACTIONS(2403), - [anon_sym_U_SQUOTE] = ACTIONS(2403), - [anon_sym_u8_SQUOTE] = ACTIONS(2403), - [anon_sym_SQUOTE] = ACTIONS(2403), - [anon_sym_L_DQUOTE] = ACTIONS(2403), - [anon_sym_u_DQUOTE] = ACTIONS(2403), - [anon_sym_U_DQUOTE] = ACTIONS(2403), - [anon_sym_u8_DQUOTE] = ACTIONS(2403), - [anon_sym_DQUOTE] = ACTIONS(2403), - [sym_true] = ACTIONS(2401), - [sym_false] = ACTIONS(2401), - [sym_null] = ACTIONS(2401), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2401), - [anon_sym_decltype] = ACTIONS(2401), - [anon_sym_virtual] = ACTIONS(2401), - [anon_sym_typename] = ACTIONS(2401), - [anon_sym_template] = ACTIONS(2401), - [anon_sym_try] = ACTIONS(2401), - [anon_sym_delete] = ACTIONS(2401), - [anon_sym_throw] = ACTIONS(2401), - [anon_sym_co_return] = ACTIONS(2401), - [anon_sym_co_yield] = ACTIONS(2401), - [anon_sym_co_await] = ACTIONS(2401), - [anon_sym_new] = ACTIONS(2401), - [anon_sym_requires] = ACTIONS(2401), - [sym_this] = ACTIONS(2401), - [sym_nullptr] = ACTIONS(2401), - [sym_raw_string_literal] = ACTIONS(2403), - }, - [1197] = { - [sym_identifier] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2349), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [1198] = { - [sym_identifier] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2349), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [1199] = { - [sym_identifier] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2349), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [1200] = { - [sym_identifier] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2349), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [1201] = { - [sym_identifier] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2349), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [1202] = { - [sym_identifier] = ACTIONS(2511), - [anon_sym_LPAREN2] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2511), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2513), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_typedef] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym___attribute__] = ACTIONS(2511), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2513), - [anon_sym___declspec] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_register] = ACTIONS(2511), - [anon_sym_inline] = ACTIONS(2511), - [anon_sym_thread_local] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_volatile] = ACTIONS(2511), - [anon_sym_restrict] = ACTIONS(2511), - [anon_sym__Atomic] = ACTIONS(2511), - [anon_sym_mutable] = ACTIONS(2511), - [anon_sym_constexpr] = ACTIONS(2511), - [anon_sym_constinit] = ACTIONS(2511), - [anon_sym_consteval] = ACTIONS(2511), - [anon_sym_signed] = ACTIONS(2511), - [anon_sym_unsigned] = ACTIONS(2511), - [anon_sym_long] = ACTIONS(2511), - [anon_sym_short] = ACTIONS(2511), - [sym_primitive_type] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_switch] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_do] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_goto] = ACTIONS(2511), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_sizeof] = ACTIONS(2511), - [sym_number_literal] = ACTIONS(2513), - [anon_sym_L_SQUOTE] = ACTIONS(2513), - [anon_sym_u_SQUOTE] = ACTIONS(2513), - [anon_sym_U_SQUOTE] = ACTIONS(2513), - [anon_sym_u8_SQUOTE] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2513), - [anon_sym_L_DQUOTE] = ACTIONS(2513), - [anon_sym_u_DQUOTE] = ACTIONS(2513), - [anon_sym_U_DQUOTE] = ACTIONS(2513), - [anon_sym_u8_DQUOTE] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym_true] = ACTIONS(2511), - [sym_false] = ACTIONS(2511), - [sym_null] = ACTIONS(2511), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2511), - [anon_sym_decltype] = ACTIONS(2511), - [anon_sym_virtual] = ACTIONS(2511), - [anon_sym_typename] = ACTIONS(2511), - [anon_sym_template] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [anon_sym_delete] = ACTIONS(2511), - [anon_sym_throw] = ACTIONS(2511), - [anon_sym_co_return] = ACTIONS(2511), - [anon_sym_co_yield] = ACTIONS(2511), - [anon_sym_co_await] = ACTIONS(2511), - [anon_sym_new] = ACTIONS(2511), - [anon_sym_requires] = ACTIONS(2511), - [sym_this] = ACTIONS(2511), - [sym_nullptr] = ACTIONS(2511), - [sym_raw_string_literal] = ACTIONS(2513), - }, - [1203] = { - [sym_identifier] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2349), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [1204] = { - [sym_identifier] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2349), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [1205] = { - [sym_identifier] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2349), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [1206] = { - [sym_identifier] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2349), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [1207] = { - [sym_identifier] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2349), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [1208] = { - [sym_identifier] = ACTIONS(2355), - [anon_sym_LPAREN2] = ACTIONS(2357), - [anon_sym_BANG] = ACTIONS(2357), - [anon_sym_TILDE] = ACTIONS(2357), - [anon_sym_DASH] = ACTIONS(2355), - [anon_sym_PLUS] = ACTIONS(2355), - [anon_sym_STAR] = ACTIONS(2357), - [anon_sym_AMP] = ACTIONS(2357), - [anon_sym_SEMI] = ACTIONS(2357), - [anon_sym_typedef] = ACTIONS(2355), - [anon_sym_extern] = ACTIONS(2355), - [anon_sym___attribute__] = ACTIONS(2355), - [anon_sym_COLON_COLON] = ACTIONS(2357), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2357), - [anon_sym___declspec] = ACTIONS(2355), - [anon_sym_LBRACE] = ACTIONS(2357), - [anon_sym_LBRACK] = ACTIONS(2355), - [anon_sym_static] = ACTIONS(2355), - [anon_sym_register] = ACTIONS(2355), - [anon_sym_inline] = ACTIONS(2355), - [anon_sym_thread_local] = ACTIONS(2355), - [anon_sym_const] = ACTIONS(2355), - [anon_sym_volatile] = ACTIONS(2355), - [anon_sym_restrict] = ACTIONS(2355), - [anon_sym__Atomic] = ACTIONS(2355), - [anon_sym_mutable] = ACTIONS(2355), - [anon_sym_constexpr] = ACTIONS(2355), - [anon_sym_constinit] = ACTIONS(2355), - [anon_sym_consteval] = ACTIONS(2355), - [anon_sym_signed] = ACTIONS(2355), - [anon_sym_unsigned] = ACTIONS(2355), - [anon_sym_long] = ACTIONS(2355), - [anon_sym_short] = ACTIONS(2355), - [sym_primitive_type] = ACTIONS(2355), - [anon_sym_enum] = ACTIONS(2355), - [anon_sym_class] = ACTIONS(2355), - [anon_sym_struct] = ACTIONS(2355), - [anon_sym_union] = ACTIONS(2355), - [anon_sym_if] = ACTIONS(2355), - [anon_sym_else] = ACTIONS(2355), - [anon_sym_switch] = ACTIONS(2355), - [anon_sym_while] = ACTIONS(2355), - [anon_sym_do] = ACTIONS(2355), - [anon_sym_for] = ACTIONS(2355), - [anon_sym_return] = ACTIONS(2355), - [anon_sym_break] = ACTIONS(2355), - [anon_sym_continue] = ACTIONS(2355), - [anon_sym_goto] = ACTIONS(2355), - [anon_sym_DASH_DASH] = ACTIONS(2357), - [anon_sym_PLUS_PLUS] = ACTIONS(2357), - [anon_sym_sizeof] = ACTIONS(2355), - [sym_number_literal] = ACTIONS(2357), - [anon_sym_L_SQUOTE] = ACTIONS(2357), - [anon_sym_u_SQUOTE] = ACTIONS(2357), - [anon_sym_U_SQUOTE] = ACTIONS(2357), - [anon_sym_u8_SQUOTE] = ACTIONS(2357), - [anon_sym_SQUOTE] = ACTIONS(2357), - [anon_sym_L_DQUOTE] = ACTIONS(2357), - [anon_sym_u_DQUOTE] = ACTIONS(2357), - [anon_sym_U_DQUOTE] = ACTIONS(2357), - [anon_sym_u8_DQUOTE] = ACTIONS(2357), - [anon_sym_DQUOTE] = ACTIONS(2357), - [sym_true] = ACTIONS(2355), - [sym_false] = ACTIONS(2355), - [sym_null] = ACTIONS(2355), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2355), - [anon_sym_decltype] = ACTIONS(2355), - [anon_sym_virtual] = ACTIONS(2355), - [anon_sym_typename] = ACTIONS(2355), - [anon_sym_template] = ACTIONS(2355), - [anon_sym_try] = ACTIONS(2355), - [anon_sym_delete] = ACTIONS(2355), - [anon_sym_throw] = ACTIONS(2355), - [anon_sym_co_return] = ACTIONS(2355), - [anon_sym_co_yield] = ACTIONS(2355), - [anon_sym_co_await] = ACTIONS(2355), - [anon_sym_new] = ACTIONS(2355), - [anon_sym_requires] = ACTIONS(2355), - [sym_this] = ACTIONS(2355), - [sym_nullptr] = ACTIONS(2355), - [sym_raw_string_literal] = ACTIONS(2357), - }, - [1209] = { - [sym_identifier] = ACTIONS(2359), - [anon_sym_LPAREN2] = ACTIONS(2361), - [anon_sym_BANG] = ACTIONS(2361), - [anon_sym_TILDE] = ACTIONS(2361), - [anon_sym_DASH] = ACTIONS(2359), - [anon_sym_PLUS] = ACTIONS(2359), - [anon_sym_STAR] = ACTIONS(2361), - [anon_sym_AMP] = ACTIONS(2361), - [anon_sym_SEMI] = ACTIONS(2361), - [anon_sym_typedef] = ACTIONS(2359), - [anon_sym_extern] = ACTIONS(2359), - [anon_sym___attribute__] = ACTIONS(2359), - [anon_sym_COLON_COLON] = ACTIONS(2361), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2361), - [anon_sym___declspec] = ACTIONS(2359), - [anon_sym_LBRACE] = ACTIONS(2361), - [anon_sym_LBRACK] = ACTIONS(2359), - [anon_sym_static] = ACTIONS(2359), - [anon_sym_register] = ACTIONS(2359), - [anon_sym_inline] = ACTIONS(2359), - [anon_sym_thread_local] = ACTIONS(2359), - [anon_sym_const] = ACTIONS(2359), - [anon_sym_volatile] = ACTIONS(2359), - [anon_sym_restrict] = ACTIONS(2359), - [anon_sym__Atomic] = ACTIONS(2359), - [anon_sym_mutable] = ACTIONS(2359), - [anon_sym_constexpr] = ACTIONS(2359), - [anon_sym_constinit] = ACTIONS(2359), - [anon_sym_consteval] = ACTIONS(2359), - [anon_sym_signed] = ACTIONS(2359), - [anon_sym_unsigned] = ACTIONS(2359), - [anon_sym_long] = ACTIONS(2359), - [anon_sym_short] = ACTIONS(2359), - [sym_primitive_type] = ACTIONS(2359), - [anon_sym_enum] = ACTIONS(2359), - [anon_sym_class] = ACTIONS(2359), - [anon_sym_struct] = ACTIONS(2359), - [anon_sym_union] = ACTIONS(2359), - [anon_sym_if] = ACTIONS(2359), - [anon_sym_else] = ACTIONS(2359), - [anon_sym_switch] = ACTIONS(2359), - [anon_sym_while] = ACTIONS(2359), - [anon_sym_do] = ACTIONS(2359), - [anon_sym_for] = ACTIONS(2359), - [anon_sym_return] = ACTIONS(2359), - [anon_sym_break] = ACTIONS(2359), - [anon_sym_continue] = ACTIONS(2359), - [anon_sym_goto] = ACTIONS(2359), - [anon_sym_DASH_DASH] = ACTIONS(2361), - [anon_sym_PLUS_PLUS] = ACTIONS(2361), - [anon_sym_sizeof] = ACTIONS(2359), - [sym_number_literal] = ACTIONS(2361), - [anon_sym_L_SQUOTE] = ACTIONS(2361), - [anon_sym_u_SQUOTE] = ACTIONS(2361), - [anon_sym_U_SQUOTE] = ACTIONS(2361), - [anon_sym_u8_SQUOTE] = ACTIONS(2361), - [anon_sym_SQUOTE] = ACTIONS(2361), - [anon_sym_L_DQUOTE] = ACTIONS(2361), - [anon_sym_u_DQUOTE] = ACTIONS(2361), - [anon_sym_U_DQUOTE] = ACTIONS(2361), - [anon_sym_u8_DQUOTE] = ACTIONS(2361), - [anon_sym_DQUOTE] = ACTIONS(2361), - [sym_true] = ACTIONS(2359), - [sym_false] = ACTIONS(2359), - [sym_null] = ACTIONS(2359), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2359), - [anon_sym_decltype] = ACTIONS(2359), - [anon_sym_virtual] = ACTIONS(2359), - [anon_sym_typename] = ACTIONS(2359), - [anon_sym_template] = ACTIONS(2359), - [anon_sym_try] = ACTIONS(2359), - [anon_sym_delete] = ACTIONS(2359), - [anon_sym_throw] = ACTIONS(2359), - [anon_sym_co_return] = ACTIONS(2359), - [anon_sym_co_yield] = ACTIONS(2359), - [anon_sym_co_await] = ACTIONS(2359), - [anon_sym_new] = ACTIONS(2359), - [anon_sym_requires] = ACTIONS(2359), - [sym_this] = ACTIONS(2359), - [sym_nullptr] = ACTIONS(2359), - [sym_raw_string_literal] = ACTIONS(2361), - }, - [1210] = { - [sym_identifier] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2349), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [1211] = { - [sym_identifier] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2349), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [1212] = { - [sym_identifier] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2349), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), - }, - [1213] = { - [sym_identifier] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2349), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), + [sym_auto] = ACTIONS(2647), + [anon_sym_decltype] = ACTIONS(2647), + [anon_sym_virtual] = ACTIONS(2647), + [anon_sym_explicit] = ACTIONS(2647), + [anon_sym_typename] = ACTIONS(2647), + [anon_sym_template] = ACTIONS(2647), + [anon_sym_operator] = ACTIONS(2647), + [anon_sym_try] = ACTIONS(2647), + [anon_sym_delete] = ACTIONS(2647), + [anon_sym_throw] = ACTIONS(2647), + [anon_sym_namespace] = ACTIONS(2647), + [anon_sym_using] = ACTIONS(2647), + [anon_sym_static_assert] = ACTIONS(2647), + [anon_sym_concept] = ACTIONS(2647), + [anon_sym_co_return] = ACTIONS(2647), + [anon_sym_co_yield] = ACTIONS(2647), + [anon_sym_co_await] = ACTIONS(2647), + [anon_sym_new] = ACTIONS(2647), + [anon_sym_requires] = ACTIONS(2647), + [sym_this] = ACTIONS(2647), + [sym_nullptr] = ACTIONS(2647), + [sym_raw_string_literal] = ACTIONS(2649), }, - [1214] = { - [sym_identifier] = ACTIONS(2375), - [anon_sym_LPAREN2] = ACTIONS(2377), - [anon_sym_BANG] = ACTIONS(2377), - [anon_sym_TILDE] = ACTIONS(2377), - [anon_sym_DASH] = ACTIONS(2375), - [anon_sym_PLUS] = ACTIONS(2375), - [anon_sym_STAR] = ACTIONS(2377), - [anon_sym_AMP] = ACTIONS(2377), - [anon_sym_SEMI] = ACTIONS(2377), - [anon_sym_typedef] = ACTIONS(2375), - [anon_sym_extern] = ACTIONS(2375), - [anon_sym___attribute__] = ACTIONS(2375), - [anon_sym_COLON_COLON] = ACTIONS(2377), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2377), - [anon_sym___declspec] = ACTIONS(2375), - [anon_sym_LBRACE] = ACTIONS(2377), - [anon_sym_LBRACK] = ACTIONS(2375), - [anon_sym_static] = ACTIONS(2375), - [anon_sym_register] = ACTIONS(2375), - [anon_sym_inline] = ACTIONS(2375), - [anon_sym_thread_local] = ACTIONS(2375), - [anon_sym_const] = ACTIONS(2375), - [anon_sym_volatile] = ACTIONS(2375), - [anon_sym_restrict] = ACTIONS(2375), - [anon_sym__Atomic] = ACTIONS(2375), - [anon_sym_mutable] = ACTIONS(2375), - [anon_sym_constexpr] = ACTIONS(2375), - [anon_sym_constinit] = ACTIONS(2375), - [anon_sym_consteval] = ACTIONS(2375), - [anon_sym_signed] = ACTIONS(2375), - [anon_sym_unsigned] = ACTIONS(2375), - [anon_sym_long] = ACTIONS(2375), - [anon_sym_short] = ACTIONS(2375), - [sym_primitive_type] = ACTIONS(2375), - [anon_sym_enum] = ACTIONS(2375), - [anon_sym_class] = ACTIONS(2375), - [anon_sym_struct] = ACTIONS(2375), - [anon_sym_union] = ACTIONS(2375), - [anon_sym_if] = ACTIONS(2375), - [anon_sym_else] = ACTIONS(2375), - [anon_sym_switch] = ACTIONS(2375), - [anon_sym_while] = ACTIONS(2375), - [anon_sym_do] = ACTIONS(2375), - [anon_sym_for] = ACTIONS(2375), - [anon_sym_return] = ACTIONS(2375), - [anon_sym_break] = ACTIONS(2375), - [anon_sym_continue] = ACTIONS(2375), - [anon_sym_goto] = ACTIONS(2375), - [anon_sym_DASH_DASH] = ACTIONS(2377), - [anon_sym_PLUS_PLUS] = ACTIONS(2377), - [anon_sym_sizeof] = ACTIONS(2375), - [sym_number_literal] = ACTIONS(2377), - [anon_sym_L_SQUOTE] = ACTIONS(2377), - [anon_sym_u_SQUOTE] = ACTIONS(2377), - [anon_sym_U_SQUOTE] = ACTIONS(2377), - [anon_sym_u8_SQUOTE] = ACTIONS(2377), - [anon_sym_SQUOTE] = ACTIONS(2377), - [anon_sym_L_DQUOTE] = ACTIONS(2377), - [anon_sym_u_DQUOTE] = ACTIONS(2377), - [anon_sym_U_DQUOTE] = ACTIONS(2377), - [anon_sym_u8_DQUOTE] = ACTIONS(2377), - [anon_sym_DQUOTE] = ACTIONS(2377), - [sym_true] = ACTIONS(2375), - [sym_false] = ACTIONS(2375), - [sym_null] = ACTIONS(2375), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2375), - [anon_sym_decltype] = ACTIONS(2375), - [anon_sym_virtual] = ACTIONS(2375), - [anon_sym_typename] = ACTIONS(2375), - [anon_sym_template] = ACTIONS(2375), - [anon_sym_try] = ACTIONS(2375), - [anon_sym_delete] = ACTIONS(2375), - [anon_sym_throw] = ACTIONS(2375), - [anon_sym_co_return] = ACTIONS(2375), - [anon_sym_co_yield] = ACTIONS(2375), - [anon_sym_co_await] = ACTIONS(2375), - [anon_sym_new] = ACTIONS(2375), - [anon_sym_requires] = ACTIONS(2375), - [sym_this] = ACTIONS(2375), - [sym_nullptr] = ACTIONS(2375), - [sym_raw_string_literal] = ACTIONS(2377), + [751] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_RBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1215] = { - [sym_identifier] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2349), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), + [752] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_RBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1216] = { - [sym_identifier] = ACTIONS(2379), - [anon_sym_LPAREN2] = ACTIONS(2381), - [anon_sym_BANG] = ACTIONS(2381), - [anon_sym_TILDE] = ACTIONS(2381), - [anon_sym_DASH] = ACTIONS(2379), - [anon_sym_PLUS] = ACTIONS(2379), - [anon_sym_STAR] = ACTIONS(2381), - [anon_sym_AMP] = ACTIONS(2381), - [anon_sym_SEMI] = ACTIONS(2381), - [anon_sym_typedef] = ACTIONS(2379), - [anon_sym_extern] = ACTIONS(2379), - [anon_sym___attribute__] = ACTIONS(2379), - [anon_sym_COLON_COLON] = ACTIONS(2381), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2381), - [anon_sym___declspec] = ACTIONS(2379), - [anon_sym_LBRACE] = ACTIONS(2381), - [anon_sym_LBRACK] = ACTIONS(2379), - [anon_sym_static] = ACTIONS(2379), - [anon_sym_register] = ACTIONS(2379), - [anon_sym_inline] = ACTIONS(2379), - [anon_sym_thread_local] = ACTIONS(2379), - [anon_sym_const] = ACTIONS(2379), - [anon_sym_volatile] = ACTIONS(2379), - [anon_sym_restrict] = ACTIONS(2379), - [anon_sym__Atomic] = ACTIONS(2379), - [anon_sym_mutable] = ACTIONS(2379), - [anon_sym_constexpr] = ACTIONS(2379), - [anon_sym_constinit] = ACTIONS(2379), - [anon_sym_consteval] = ACTIONS(2379), - [anon_sym_signed] = ACTIONS(2379), - [anon_sym_unsigned] = ACTIONS(2379), - [anon_sym_long] = ACTIONS(2379), - [anon_sym_short] = ACTIONS(2379), - [sym_primitive_type] = ACTIONS(2379), - [anon_sym_enum] = ACTIONS(2379), - [anon_sym_class] = ACTIONS(2379), - [anon_sym_struct] = ACTIONS(2379), - [anon_sym_union] = ACTIONS(2379), - [anon_sym_if] = ACTIONS(2379), - [anon_sym_else] = ACTIONS(2379), - [anon_sym_switch] = ACTIONS(2379), - [anon_sym_while] = ACTIONS(2379), - [anon_sym_do] = ACTIONS(2379), - [anon_sym_for] = ACTIONS(2379), - [anon_sym_return] = ACTIONS(2379), - [anon_sym_break] = ACTIONS(2379), - [anon_sym_continue] = ACTIONS(2379), - [anon_sym_goto] = ACTIONS(2379), - [anon_sym_DASH_DASH] = ACTIONS(2381), - [anon_sym_PLUS_PLUS] = ACTIONS(2381), - [anon_sym_sizeof] = ACTIONS(2379), - [sym_number_literal] = ACTIONS(2381), - [anon_sym_L_SQUOTE] = ACTIONS(2381), - [anon_sym_u_SQUOTE] = ACTIONS(2381), - [anon_sym_U_SQUOTE] = ACTIONS(2381), - [anon_sym_u8_SQUOTE] = ACTIONS(2381), - [anon_sym_SQUOTE] = ACTIONS(2381), - [anon_sym_L_DQUOTE] = ACTIONS(2381), - [anon_sym_u_DQUOTE] = ACTIONS(2381), - [anon_sym_U_DQUOTE] = ACTIONS(2381), - [anon_sym_u8_DQUOTE] = ACTIONS(2381), - [anon_sym_DQUOTE] = ACTIONS(2381), - [sym_true] = ACTIONS(2379), - [sym_false] = ACTIONS(2379), - [sym_null] = ACTIONS(2379), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2379), - [anon_sym_decltype] = ACTIONS(2379), - [anon_sym_virtual] = ACTIONS(2379), - [anon_sym_typename] = ACTIONS(2379), - [anon_sym_template] = ACTIONS(2379), - [anon_sym_try] = ACTIONS(2379), - [anon_sym_delete] = ACTIONS(2379), - [anon_sym_throw] = ACTIONS(2379), - [anon_sym_co_return] = ACTIONS(2379), - [anon_sym_co_yield] = ACTIONS(2379), - [anon_sym_co_await] = ACTIONS(2379), - [anon_sym_new] = ACTIONS(2379), - [anon_sym_requires] = ACTIONS(2379), - [sym_this] = ACTIONS(2379), - [sym_nullptr] = ACTIONS(2379), - [sym_raw_string_literal] = ACTIONS(2381), + [753] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_RBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1217] = { - [sym_identifier] = ACTIONS(2383), - [anon_sym_LPAREN2] = ACTIONS(2385), - [anon_sym_BANG] = ACTIONS(2385), - [anon_sym_TILDE] = ACTIONS(2385), - [anon_sym_DASH] = ACTIONS(2383), - [anon_sym_PLUS] = ACTIONS(2383), - [anon_sym_STAR] = ACTIONS(2385), - [anon_sym_AMP] = ACTIONS(2385), - [anon_sym_SEMI] = ACTIONS(2385), - [anon_sym_typedef] = ACTIONS(2383), - [anon_sym_extern] = ACTIONS(2383), - [anon_sym___attribute__] = ACTIONS(2383), - [anon_sym_COLON_COLON] = ACTIONS(2385), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2385), - [anon_sym___declspec] = ACTIONS(2383), - [anon_sym_LBRACE] = ACTIONS(2385), - [anon_sym_LBRACK] = ACTIONS(2383), - [anon_sym_static] = ACTIONS(2383), - [anon_sym_register] = ACTIONS(2383), - [anon_sym_inline] = ACTIONS(2383), - [anon_sym_thread_local] = ACTIONS(2383), - [anon_sym_const] = ACTIONS(2383), - [anon_sym_volatile] = ACTIONS(2383), - [anon_sym_restrict] = ACTIONS(2383), - [anon_sym__Atomic] = ACTIONS(2383), - [anon_sym_mutable] = ACTIONS(2383), - [anon_sym_constexpr] = ACTIONS(2383), - [anon_sym_constinit] = ACTIONS(2383), - [anon_sym_consteval] = ACTIONS(2383), - [anon_sym_signed] = ACTIONS(2383), - [anon_sym_unsigned] = ACTIONS(2383), - [anon_sym_long] = ACTIONS(2383), - [anon_sym_short] = ACTIONS(2383), - [sym_primitive_type] = ACTIONS(2383), - [anon_sym_enum] = ACTIONS(2383), - [anon_sym_class] = ACTIONS(2383), - [anon_sym_struct] = ACTIONS(2383), - [anon_sym_union] = ACTIONS(2383), - [anon_sym_if] = ACTIONS(2383), - [anon_sym_else] = ACTIONS(2383), - [anon_sym_switch] = ACTIONS(2383), - [anon_sym_while] = ACTIONS(2383), - [anon_sym_do] = ACTIONS(2383), - [anon_sym_for] = ACTIONS(2383), - [anon_sym_return] = ACTIONS(2383), - [anon_sym_break] = ACTIONS(2383), - [anon_sym_continue] = ACTIONS(2383), - [anon_sym_goto] = ACTIONS(2383), - [anon_sym_DASH_DASH] = ACTIONS(2385), - [anon_sym_PLUS_PLUS] = ACTIONS(2385), - [anon_sym_sizeof] = ACTIONS(2383), - [sym_number_literal] = ACTIONS(2385), - [anon_sym_L_SQUOTE] = ACTIONS(2385), - [anon_sym_u_SQUOTE] = ACTIONS(2385), - [anon_sym_U_SQUOTE] = ACTIONS(2385), - [anon_sym_u8_SQUOTE] = ACTIONS(2385), - [anon_sym_SQUOTE] = ACTIONS(2385), - [anon_sym_L_DQUOTE] = ACTIONS(2385), - [anon_sym_u_DQUOTE] = ACTIONS(2385), - [anon_sym_U_DQUOTE] = ACTIONS(2385), - [anon_sym_u8_DQUOTE] = ACTIONS(2385), - [anon_sym_DQUOTE] = ACTIONS(2385), - [sym_true] = ACTIONS(2383), - [sym_false] = ACTIONS(2383), - [sym_null] = ACTIONS(2383), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2383), - [anon_sym_decltype] = ACTIONS(2383), - [anon_sym_virtual] = ACTIONS(2383), - [anon_sym_typename] = ACTIONS(2383), - [anon_sym_template] = ACTIONS(2383), - [anon_sym_try] = ACTIONS(2383), - [anon_sym_delete] = ACTIONS(2383), - [anon_sym_throw] = ACTIONS(2383), - [anon_sym_co_return] = ACTIONS(2383), - [anon_sym_co_yield] = ACTIONS(2383), - [anon_sym_co_await] = ACTIONS(2383), - [anon_sym_new] = ACTIONS(2383), - [anon_sym_requires] = ACTIONS(2383), - [sym_this] = ACTIONS(2383), - [sym_nullptr] = ACTIONS(2383), - [sym_raw_string_literal] = ACTIONS(2385), + [754] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_RBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1218] = { - [sym_identifier] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2349), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), + [755] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_RBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1219] = { - [sym_identifier] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2349), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), + [756] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_RBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1220] = { - [sym_identifier] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2349), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), + [757] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_RBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1221] = { - [sym_identifier] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2349), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), + [758] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_RBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1222] = { - [sym_identifier] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2349), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), + [759] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_RBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1223] = { - [sym_identifier] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2349), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), + [760] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_RBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1224] = { - [sym_identifier] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2349), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), + [761] = { + [ts_builtin_sym_end] = ACTIONS(2561), + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1225] = { - [sym_identifier] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2349), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), + [762] = { + [ts_builtin_sym_end] = ACTIONS(2561), + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1226] = { - [sym_identifier] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2349), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), + [763] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token2] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1227] = { - [sym_identifier] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2349), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), + [764] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_RBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1228] = { - [sym_identifier] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2349), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), + [765] = { + [sym_identifier] = ACTIONS(2579), + [aux_sym_preproc_include_token1] = ACTIONS(2579), + [aux_sym_preproc_def_token1] = ACTIONS(2579), + [aux_sym_preproc_if_token1] = ACTIONS(2579), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2579), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2579), + [sym_preproc_directive] = ACTIONS(2579), + [anon_sym_LPAREN2] = ACTIONS(2581), + [anon_sym_BANG] = ACTIONS(2581), + [anon_sym_TILDE] = ACTIONS(2581), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_STAR] = ACTIONS(2581), + [anon_sym_AMP_AMP] = ACTIONS(2581), + [anon_sym_AMP] = ACTIONS(2579), + [anon_sym_SEMI] = ACTIONS(2581), + [anon_sym_typedef] = ACTIONS(2579), + [anon_sym_extern] = ACTIONS(2579), + [anon_sym___attribute__] = ACTIONS(2579), + [anon_sym_COLON_COLON] = ACTIONS(2581), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2581), + [anon_sym___declspec] = ACTIONS(2579), + [anon_sym___based] = ACTIONS(2579), + [anon_sym___cdecl] = ACTIONS(2579), + [anon_sym___clrcall] = ACTIONS(2579), + [anon_sym___stdcall] = ACTIONS(2579), + [anon_sym___fastcall] = ACTIONS(2579), + [anon_sym___thiscall] = ACTIONS(2579), + [anon_sym___vectorcall] = ACTIONS(2579), + [anon_sym_LBRACE] = ACTIONS(2581), + [anon_sym_RBRACE] = ACTIONS(2581), + [anon_sym_LBRACK] = ACTIONS(2579), + [anon_sym_static] = ACTIONS(2579), + [anon_sym_register] = ACTIONS(2579), + [anon_sym_inline] = ACTIONS(2579), + [anon_sym_thread_local] = ACTIONS(2579), + [anon_sym_const] = ACTIONS(2579), + [anon_sym_volatile] = ACTIONS(2579), + [anon_sym_restrict] = ACTIONS(2579), + [anon_sym__Atomic] = ACTIONS(2579), + [anon_sym_mutable] = ACTIONS(2579), + [anon_sym_constexpr] = ACTIONS(2579), + [anon_sym_constinit] = ACTIONS(2579), + [anon_sym_consteval] = ACTIONS(2579), + [anon_sym_signed] = ACTIONS(2579), + [anon_sym_unsigned] = ACTIONS(2579), + [anon_sym_long] = ACTIONS(2579), + [anon_sym_short] = ACTIONS(2579), + [sym_primitive_type] = ACTIONS(2579), + [anon_sym_enum] = ACTIONS(2579), + [anon_sym_class] = ACTIONS(2579), + [anon_sym_struct] = ACTIONS(2579), + [anon_sym_union] = ACTIONS(2579), + [anon_sym_if] = ACTIONS(2579), + [anon_sym_else] = ACTIONS(2579), + [anon_sym_switch] = ACTIONS(2579), + [anon_sym_case] = ACTIONS(2579), + [anon_sym_default] = ACTIONS(2579), + [anon_sym_while] = ACTIONS(2579), + [anon_sym_do] = ACTIONS(2579), + [anon_sym_for] = ACTIONS(2579), + [anon_sym_return] = ACTIONS(2579), + [anon_sym_break] = ACTIONS(2579), + [anon_sym_continue] = ACTIONS(2579), + [anon_sym_goto] = ACTIONS(2579), + [anon_sym_not] = ACTIONS(2579), + [anon_sym_compl] = ACTIONS(2579), + [anon_sym_DASH_DASH] = ACTIONS(2581), + [anon_sym_PLUS_PLUS] = ACTIONS(2581), + [anon_sym_sizeof] = ACTIONS(2579), + [sym_number_literal] = ACTIONS(2581), + [anon_sym_L_SQUOTE] = ACTIONS(2581), + [anon_sym_u_SQUOTE] = ACTIONS(2581), + [anon_sym_U_SQUOTE] = ACTIONS(2581), + [anon_sym_u8_SQUOTE] = ACTIONS(2581), + [anon_sym_SQUOTE] = ACTIONS(2581), + [anon_sym_L_DQUOTE] = ACTIONS(2581), + [anon_sym_u_DQUOTE] = ACTIONS(2581), + [anon_sym_U_DQUOTE] = ACTIONS(2581), + [anon_sym_u8_DQUOTE] = ACTIONS(2581), + [anon_sym_DQUOTE] = ACTIONS(2581), + [sym_true] = ACTIONS(2579), + [sym_false] = ACTIONS(2579), + [sym_null] = ACTIONS(2579), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2579), + [anon_sym_decltype] = ACTIONS(2579), + [anon_sym_virtual] = ACTIONS(2579), + [anon_sym_explicit] = ACTIONS(2579), + [anon_sym_typename] = ACTIONS(2579), + [anon_sym_template] = ACTIONS(2579), + [anon_sym_operator] = ACTIONS(2579), + [anon_sym_try] = ACTIONS(2579), + [anon_sym_delete] = ACTIONS(2579), + [anon_sym_throw] = ACTIONS(2579), + [anon_sym_namespace] = ACTIONS(2579), + [anon_sym_using] = ACTIONS(2579), + [anon_sym_static_assert] = ACTIONS(2579), + [anon_sym_concept] = ACTIONS(2579), + [anon_sym_co_return] = ACTIONS(2579), + [anon_sym_co_yield] = ACTIONS(2579), + [anon_sym_co_await] = ACTIONS(2579), + [anon_sym_new] = ACTIONS(2579), + [anon_sym_requires] = ACTIONS(2579), + [sym_this] = ACTIONS(2579), + [sym_nullptr] = ACTIONS(2579), + [sym_raw_string_literal] = ACTIONS(2581), }, - [1229] = { - [sym_identifier] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2349), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), + [766] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token2] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1230] = { - [sym_identifier] = ACTIONS(2347), - [anon_sym_LPAREN2] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_TILDE] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_PLUS] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2349), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_typedef] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym___attribute__] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2349), - [anon_sym___declspec] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_register] = ACTIONS(2347), - [anon_sym_inline] = ACTIONS(2347), - [anon_sym_thread_local] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_volatile] = ACTIONS(2347), - [anon_sym_restrict] = ACTIONS(2347), - [anon_sym__Atomic] = ACTIONS(2347), - [anon_sym_mutable] = ACTIONS(2347), - [anon_sym_constexpr] = ACTIONS(2347), - [anon_sym_constinit] = ACTIONS(2347), - [anon_sym_consteval] = ACTIONS(2347), - [anon_sym_signed] = ACTIONS(2347), - [anon_sym_unsigned] = ACTIONS(2347), - [anon_sym_long] = ACTIONS(2347), - [anon_sym_short] = ACTIONS(2347), - [sym_primitive_type] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_class] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_else] = ACTIONS(2347), - [anon_sym_switch] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_do] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_goto] = ACTIONS(2347), - [anon_sym_DASH_DASH] = ACTIONS(2349), - [anon_sym_PLUS_PLUS] = ACTIONS(2349), - [anon_sym_sizeof] = ACTIONS(2347), - [sym_number_literal] = ACTIONS(2349), - [anon_sym_L_SQUOTE] = ACTIONS(2349), - [anon_sym_u_SQUOTE] = ACTIONS(2349), - [anon_sym_U_SQUOTE] = ACTIONS(2349), - [anon_sym_u8_SQUOTE] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_L_DQUOTE] = ACTIONS(2349), - [anon_sym_u_DQUOTE] = ACTIONS(2349), - [anon_sym_U_DQUOTE] = ACTIONS(2349), - [anon_sym_u8_DQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym_true] = ACTIONS(2347), - [sym_false] = ACTIONS(2347), - [sym_null] = ACTIONS(2347), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2347), - [anon_sym_decltype] = ACTIONS(2347), - [anon_sym_virtual] = ACTIONS(2347), - [anon_sym_typename] = ACTIONS(2347), - [anon_sym_template] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [anon_sym_delete] = ACTIONS(2347), - [anon_sym_throw] = ACTIONS(2347), - [anon_sym_co_return] = ACTIONS(2347), - [anon_sym_co_yield] = ACTIONS(2347), - [anon_sym_co_await] = ACTIONS(2347), - [anon_sym_new] = ACTIONS(2347), - [anon_sym_requires] = ACTIONS(2347), - [sym_this] = ACTIONS(2347), - [sym_nullptr] = ACTIONS(2347), - [sym_raw_string_literal] = ACTIONS(2349), + [767] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token2] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1231] = { - [sym_type_qualifier] = STATE(1113), - [sym__expression] = STATE(3814), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2981), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2981), - [sym_call_expression] = STATE(2981), - [sym_field_expression] = STATE(2981), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2981), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2981), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_type_definition_repeat1] = STATE(1113), - [sym_identifier] = ACTIONS(3039), - [anon_sym_LPAREN2] = ACTIONS(3041), - [anon_sym_BANG] = ACTIONS(3045), - [anon_sym_TILDE] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(3180), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(3047), - [anon_sym_LBRACK] = ACTIONS(2272), - [anon_sym_RBRACK] = ACTIONS(3182), - [anon_sym_const] = ACTIONS(3130), - [anon_sym_volatile] = ACTIONS(3130), - [anon_sym_restrict] = ACTIONS(3130), - [anon_sym__Atomic] = ACTIONS(3130), - [anon_sym_mutable] = ACTIONS(3130), - [anon_sym_constexpr] = ACTIONS(3130), - [anon_sym_constinit] = ACTIONS(3130), - [anon_sym_consteval] = ACTIONS(3130), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3049), - [anon_sym_PLUS_PLUS] = ACTIONS(3049), - [anon_sym_sizeof] = ACTIONS(3051), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3053), - [anon_sym_co_await] = ACTIONS(3055), - [anon_sym_new] = ACTIONS(3057), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [768] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token2] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1232] = { - [sym_type_qualifier] = STATE(2268), - [sym__expression] = STATE(3810), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2981), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2981), - [sym_call_expression] = STATE(2981), - [sym_field_expression] = STATE(2981), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2981), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2981), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_type_definition_repeat1] = STATE(2268), - [sym_identifier] = ACTIONS(3039), - [anon_sym_LPAREN2] = ACTIONS(3041), - [anon_sym_BANG] = ACTIONS(3045), - [anon_sym_TILDE] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(3184), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(3047), - [anon_sym_LBRACK] = ACTIONS(2272), - [anon_sym_RBRACK] = ACTIONS(3186), - [anon_sym_const] = ACTIONS(3130), - [anon_sym_volatile] = ACTIONS(3130), - [anon_sym_restrict] = ACTIONS(3130), - [anon_sym__Atomic] = ACTIONS(3130), - [anon_sym_mutable] = ACTIONS(3130), - [anon_sym_constexpr] = ACTIONS(3130), - [anon_sym_constinit] = ACTIONS(3130), - [anon_sym_consteval] = ACTIONS(3130), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3049), - [anon_sym_PLUS_PLUS] = ACTIONS(3049), - [anon_sym_sizeof] = ACTIONS(3051), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [769] = { + [sym_identifier] = ACTIONS(2587), + [aux_sym_preproc_include_token1] = ACTIONS(2587), + [aux_sym_preproc_def_token1] = ACTIONS(2587), + [aux_sym_preproc_if_token1] = ACTIONS(2587), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2587), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2587), + [sym_preproc_directive] = ACTIONS(2587), + [anon_sym_LPAREN2] = ACTIONS(2589), + [anon_sym_BANG] = ACTIONS(2589), + [anon_sym_TILDE] = ACTIONS(2589), + [anon_sym_DASH] = ACTIONS(2587), + [anon_sym_PLUS] = ACTIONS(2587), + [anon_sym_STAR] = ACTIONS(2589), + [anon_sym_AMP_AMP] = ACTIONS(2589), + [anon_sym_AMP] = ACTIONS(2587), + [anon_sym_SEMI] = ACTIONS(2589), + [anon_sym_typedef] = ACTIONS(2587), + [anon_sym_extern] = ACTIONS(2587), + [anon_sym___attribute__] = ACTIONS(2587), + [anon_sym_COLON_COLON] = ACTIONS(2589), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2589), + [anon_sym___declspec] = ACTIONS(2587), + [anon_sym___based] = ACTIONS(2587), + [anon_sym___cdecl] = ACTIONS(2587), + [anon_sym___clrcall] = ACTIONS(2587), + [anon_sym___stdcall] = ACTIONS(2587), + [anon_sym___fastcall] = ACTIONS(2587), + [anon_sym___thiscall] = ACTIONS(2587), + [anon_sym___vectorcall] = ACTIONS(2587), + [anon_sym_LBRACE] = ACTIONS(2589), + [anon_sym_RBRACE] = ACTIONS(2589), + [anon_sym_LBRACK] = ACTIONS(2587), + [anon_sym_static] = ACTIONS(2587), + [anon_sym_register] = ACTIONS(2587), + [anon_sym_inline] = ACTIONS(2587), + [anon_sym_thread_local] = ACTIONS(2587), + [anon_sym_const] = ACTIONS(2587), + [anon_sym_volatile] = ACTIONS(2587), + [anon_sym_restrict] = ACTIONS(2587), + [anon_sym__Atomic] = ACTIONS(2587), + [anon_sym_mutable] = ACTIONS(2587), + [anon_sym_constexpr] = ACTIONS(2587), + [anon_sym_constinit] = ACTIONS(2587), + [anon_sym_consteval] = ACTIONS(2587), + [anon_sym_signed] = ACTIONS(2587), + [anon_sym_unsigned] = ACTIONS(2587), + [anon_sym_long] = ACTIONS(2587), + [anon_sym_short] = ACTIONS(2587), + [sym_primitive_type] = ACTIONS(2587), + [anon_sym_enum] = ACTIONS(2587), + [anon_sym_class] = ACTIONS(2587), + [anon_sym_struct] = ACTIONS(2587), + [anon_sym_union] = ACTIONS(2587), + [anon_sym_if] = ACTIONS(2587), + [anon_sym_else] = ACTIONS(2587), + [anon_sym_switch] = ACTIONS(2587), + [anon_sym_case] = ACTIONS(2587), + [anon_sym_default] = ACTIONS(2587), + [anon_sym_while] = ACTIONS(2587), + [anon_sym_do] = ACTIONS(2587), + [anon_sym_for] = ACTIONS(2587), + [anon_sym_return] = ACTIONS(2587), + [anon_sym_break] = ACTIONS(2587), + [anon_sym_continue] = ACTIONS(2587), + [anon_sym_goto] = ACTIONS(2587), + [anon_sym_not] = ACTIONS(2587), + [anon_sym_compl] = ACTIONS(2587), + [anon_sym_DASH_DASH] = ACTIONS(2589), + [anon_sym_PLUS_PLUS] = ACTIONS(2589), + [anon_sym_sizeof] = ACTIONS(2587), + [sym_number_literal] = ACTIONS(2589), + [anon_sym_L_SQUOTE] = ACTIONS(2589), + [anon_sym_u_SQUOTE] = ACTIONS(2589), + [anon_sym_U_SQUOTE] = ACTIONS(2589), + [anon_sym_u8_SQUOTE] = ACTIONS(2589), + [anon_sym_SQUOTE] = ACTIONS(2589), + [anon_sym_L_DQUOTE] = ACTIONS(2589), + [anon_sym_u_DQUOTE] = ACTIONS(2589), + [anon_sym_U_DQUOTE] = ACTIONS(2589), + [anon_sym_u8_DQUOTE] = ACTIONS(2589), + [anon_sym_DQUOTE] = ACTIONS(2589), + [sym_true] = ACTIONS(2587), + [sym_false] = ACTIONS(2587), + [sym_null] = ACTIONS(2587), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3053), - [anon_sym_co_await] = ACTIONS(3055), - [anon_sym_new] = ACTIONS(3057), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2587), + [anon_sym_decltype] = ACTIONS(2587), + [anon_sym_virtual] = ACTIONS(2587), + [anon_sym_explicit] = ACTIONS(2587), + [anon_sym_typename] = ACTIONS(2587), + [anon_sym_template] = ACTIONS(2587), + [anon_sym_operator] = ACTIONS(2587), + [anon_sym_try] = ACTIONS(2587), + [anon_sym_delete] = ACTIONS(2587), + [anon_sym_throw] = ACTIONS(2587), + [anon_sym_namespace] = ACTIONS(2587), + [anon_sym_using] = ACTIONS(2587), + [anon_sym_static_assert] = ACTIONS(2587), + [anon_sym_concept] = ACTIONS(2587), + [anon_sym_co_return] = ACTIONS(2587), + [anon_sym_co_yield] = ACTIONS(2587), + [anon_sym_co_await] = ACTIONS(2587), + [anon_sym_new] = ACTIONS(2587), + [anon_sym_requires] = ACTIONS(2587), + [sym_this] = ACTIONS(2587), + [sym_nullptr] = ACTIONS(2587), + [sym_raw_string_literal] = ACTIONS(2589), }, - [1233] = { - [sym_type_qualifier] = STATE(1124), - [sym__expression] = STATE(3865), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2981), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2981), - [sym_call_expression] = STATE(2981), - [sym_field_expression] = STATE(2981), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2981), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2981), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_type_definition_repeat1] = STATE(1124), - [sym_identifier] = ACTIONS(3188), - [anon_sym_LPAREN2] = ACTIONS(3041), - [anon_sym_BANG] = ACTIONS(3045), - [anon_sym_TILDE] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(3126), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(3047), - [anon_sym_LBRACK] = ACTIONS(2272), - [anon_sym_RBRACK] = ACTIONS(3128), - [anon_sym_const] = ACTIONS(3130), - [anon_sym_volatile] = ACTIONS(3130), - [anon_sym_restrict] = ACTIONS(3130), - [anon_sym__Atomic] = ACTIONS(3130), - [anon_sym_mutable] = ACTIONS(3130), - [anon_sym_constexpr] = ACTIONS(3130), - [anon_sym_constinit] = ACTIONS(3130), - [anon_sym_consteval] = ACTIONS(3130), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3049), - [anon_sym_PLUS_PLUS] = ACTIONS(3049), - [anon_sym_sizeof] = ACTIONS(3051), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [770] = { + [sym_identifier] = ACTIONS(2591), + [aux_sym_preproc_include_token1] = ACTIONS(2591), + [aux_sym_preproc_def_token1] = ACTIONS(2591), + [aux_sym_preproc_if_token1] = ACTIONS(2591), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2591), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2591), + [sym_preproc_directive] = ACTIONS(2591), + [anon_sym_LPAREN2] = ACTIONS(2593), + [anon_sym_BANG] = ACTIONS(2593), + [anon_sym_TILDE] = ACTIONS(2593), + [anon_sym_DASH] = ACTIONS(2591), + [anon_sym_PLUS] = ACTIONS(2591), + [anon_sym_STAR] = ACTIONS(2593), + [anon_sym_AMP_AMP] = ACTIONS(2593), + [anon_sym_AMP] = ACTIONS(2591), + [anon_sym_SEMI] = ACTIONS(2593), + [anon_sym_typedef] = ACTIONS(2591), + [anon_sym_extern] = ACTIONS(2591), + [anon_sym___attribute__] = ACTIONS(2591), + [anon_sym_COLON_COLON] = ACTIONS(2593), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2593), + [anon_sym___declspec] = ACTIONS(2591), + [anon_sym___based] = ACTIONS(2591), + [anon_sym___cdecl] = ACTIONS(2591), + [anon_sym___clrcall] = ACTIONS(2591), + [anon_sym___stdcall] = ACTIONS(2591), + [anon_sym___fastcall] = ACTIONS(2591), + [anon_sym___thiscall] = ACTIONS(2591), + [anon_sym___vectorcall] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2593), + [anon_sym_RBRACE] = ACTIONS(2593), + [anon_sym_LBRACK] = ACTIONS(2591), + [anon_sym_static] = ACTIONS(2591), + [anon_sym_register] = ACTIONS(2591), + [anon_sym_inline] = ACTIONS(2591), + [anon_sym_thread_local] = ACTIONS(2591), + [anon_sym_const] = ACTIONS(2591), + [anon_sym_volatile] = ACTIONS(2591), + [anon_sym_restrict] = ACTIONS(2591), + [anon_sym__Atomic] = ACTIONS(2591), + [anon_sym_mutable] = ACTIONS(2591), + [anon_sym_constexpr] = ACTIONS(2591), + [anon_sym_constinit] = ACTIONS(2591), + [anon_sym_consteval] = ACTIONS(2591), + [anon_sym_signed] = ACTIONS(2591), + [anon_sym_unsigned] = ACTIONS(2591), + [anon_sym_long] = ACTIONS(2591), + [anon_sym_short] = ACTIONS(2591), + [sym_primitive_type] = ACTIONS(2591), + [anon_sym_enum] = ACTIONS(2591), + [anon_sym_class] = ACTIONS(2591), + [anon_sym_struct] = ACTIONS(2591), + [anon_sym_union] = ACTIONS(2591), + [anon_sym_if] = ACTIONS(2591), + [anon_sym_else] = ACTIONS(2591), + [anon_sym_switch] = ACTIONS(2591), + [anon_sym_case] = ACTIONS(2591), + [anon_sym_default] = ACTIONS(2591), + [anon_sym_while] = ACTIONS(2591), + [anon_sym_do] = ACTIONS(2591), + [anon_sym_for] = ACTIONS(2591), + [anon_sym_return] = ACTIONS(2591), + [anon_sym_break] = ACTIONS(2591), + [anon_sym_continue] = ACTIONS(2591), + [anon_sym_goto] = ACTIONS(2591), + [anon_sym_not] = ACTIONS(2591), + [anon_sym_compl] = ACTIONS(2591), + [anon_sym_DASH_DASH] = ACTIONS(2593), + [anon_sym_PLUS_PLUS] = ACTIONS(2593), + [anon_sym_sizeof] = ACTIONS(2591), + [sym_number_literal] = ACTIONS(2593), + [anon_sym_L_SQUOTE] = ACTIONS(2593), + [anon_sym_u_SQUOTE] = ACTIONS(2593), + [anon_sym_U_SQUOTE] = ACTIONS(2593), + [anon_sym_u8_SQUOTE] = ACTIONS(2593), + [anon_sym_SQUOTE] = ACTIONS(2593), + [anon_sym_L_DQUOTE] = ACTIONS(2593), + [anon_sym_u_DQUOTE] = ACTIONS(2593), + [anon_sym_U_DQUOTE] = ACTIONS(2593), + [anon_sym_u8_DQUOTE] = ACTIONS(2593), + [anon_sym_DQUOTE] = ACTIONS(2593), + [sym_true] = ACTIONS(2591), + [sym_false] = ACTIONS(2591), + [sym_null] = ACTIONS(2591), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3053), - [anon_sym_co_await] = ACTIONS(3055), - [anon_sym_new] = ACTIONS(3057), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2591), + [anon_sym_decltype] = ACTIONS(2591), + [anon_sym_virtual] = ACTIONS(2591), + [anon_sym_explicit] = ACTIONS(2591), + [anon_sym_typename] = ACTIONS(2591), + [anon_sym_template] = ACTIONS(2591), + [anon_sym_operator] = ACTIONS(2591), + [anon_sym_try] = ACTIONS(2591), + [anon_sym_delete] = ACTIONS(2591), + [anon_sym_throw] = ACTIONS(2591), + [anon_sym_namespace] = ACTIONS(2591), + [anon_sym_using] = ACTIONS(2591), + [anon_sym_static_assert] = ACTIONS(2591), + [anon_sym_concept] = ACTIONS(2591), + [anon_sym_co_return] = ACTIONS(2591), + [anon_sym_co_yield] = ACTIONS(2591), + [anon_sym_co_await] = ACTIONS(2591), + [anon_sym_new] = ACTIONS(2591), + [anon_sym_requires] = ACTIONS(2591), + [sym_this] = ACTIONS(2591), + [sym_nullptr] = ACTIONS(2591), + [sym_raw_string_literal] = ACTIONS(2593), }, - [1234] = { - [sym_expression_statement] = STATE(3116), - [sym__expression] = STATE(3768), - [sym_comma_expression] = STATE(6902), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_type_requirement] = STATE(1249), - [sym_compound_requirement] = STATE(1249), - [sym__requirement] = STATE(1249), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_requirement_seq_repeat1] = STATE(1249), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3192), - [anon_sym_RBRACE] = ACTIONS(3194), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_typename] = ACTIONS(3196), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), - }, - [1235] = { - [sym_expression_statement] = STATE(3116), - [sym__expression] = STATE(3768), - [sym_comma_expression] = STATE(6902), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_type_requirement] = STATE(1249), - [sym_compound_requirement] = STATE(1249), - [sym__requirement] = STATE(1249), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_requirement_seq_repeat1] = STATE(1249), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3192), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_typename] = ACTIONS(3196), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), - }, - [1236] = { - [sym_expression_statement] = STATE(3116), - [sym__expression] = STATE(3768), - [sym_comma_expression] = STATE(6902), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_type_requirement] = STATE(1237), - [sym_compound_requirement] = STATE(1237), - [sym__requirement] = STATE(1237), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_requirement_seq_repeat1] = STATE(1237), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3192), - [anon_sym_RBRACE] = ACTIONS(3200), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_typename] = ACTIONS(3196), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), - }, - [1237] = { - [sym_expression_statement] = STATE(3116), - [sym__expression] = STATE(3768), - [sym_comma_expression] = STATE(6902), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_type_requirement] = STATE(1249), - [sym_compound_requirement] = STATE(1249), - [sym__requirement] = STATE(1249), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_requirement_seq_repeat1] = STATE(1249), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3192), - [anon_sym_RBRACE] = ACTIONS(3202), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [771] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_RBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [anon_sym_typename] = ACTIONS(3196), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1238] = { - [sym_expression_statement] = STATE(3116), - [sym__expression] = STATE(3768), - [sym_comma_expression] = STATE(6902), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_type_requirement] = STATE(1249), - [sym_compound_requirement] = STATE(1249), - [sym__requirement] = STATE(1249), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_requirement_seq_repeat1] = STATE(1249), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3192), - [anon_sym_RBRACE] = ACTIONS(3204), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [772] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_RBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [anon_sym_typename] = ACTIONS(3196), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1239] = { - [sym_expression_statement] = STATE(3116), - [sym__expression] = STATE(3768), - [sym_comma_expression] = STATE(6902), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_type_requirement] = STATE(1245), - [sym_compound_requirement] = STATE(1245), - [sym__requirement] = STATE(1245), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_requirement_seq_repeat1] = STATE(1245), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3192), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [773] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_RBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [anon_sym_typename] = ACTIONS(3196), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1240] = { - [sym_expression_statement] = STATE(3116), - [sym__expression] = STATE(3768), - [sym_comma_expression] = STATE(6902), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_type_requirement] = STATE(1248), - [sym_compound_requirement] = STATE(1248), - [sym__requirement] = STATE(1248), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_requirement_seq_repeat1] = STATE(1248), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3192), - [anon_sym_RBRACE] = ACTIONS(3208), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [774] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_RBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [anon_sym_typename] = ACTIONS(3196), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1241] = { - [sym_expression_statement] = STATE(3116), - [sym__expression] = STATE(3768), - [sym_comma_expression] = STATE(6902), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_type_requirement] = STATE(1247), - [sym_compound_requirement] = STATE(1247), - [sym__requirement] = STATE(1247), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_requirement_seq_repeat1] = STATE(1247), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3192), - [anon_sym_RBRACE] = ACTIONS(3210), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [775] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_RBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [anon_sym_typename] = ACTIONS(3196), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1242] = { - [sym_expression_statement] = STATE(3116), - [sym__expression] = STATE(3768), - [sym_comma_expression] = STATE(6902), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_type_requirement] = STATE(1238), - [sym_compound_requirement] = STATE(1238), - [sym__requirement] = STATE(1238), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_requirement_seq_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3192), - [anon_sym_RBRACE] = ACTIONS(3212), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [776] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_RBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [anon_sym_typename] = ACTIONS(3196), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1243] = { - [sym_expression_statement] = STATE(3116), - [sym__expression] = STATE(3768), - [sym_comma_expression] = STATE(6902), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_type_requirement] = STATE(1235), - [sym_compound_requirement] = STATE(1235), - [sym__requirement] = STATE(1235), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_requirement_seq_repeat1] = STATE(1235), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3192), - [anon_sym_RBRACE] = ACTIONS(3214), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [777] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_RBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [anon_sym_typename] = ACTIONS(3196), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1244] = { - [sym_expression_statement] = STATE(3116), - [sym__expression] = STATE(3768), - [sym_comma_expression] = STATE(6902), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_type_requirement] = STATE(1234), - [sym_compound_requirement] = STATE(1234), - [sym__requirement] = STATE(1234), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_requirement_seq_repeat1] = STATE(1234), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3192), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_typename] = ACTIONS(3196), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), - }, - [1245] = { - [sym_expression_statement] = STATE(3116), - [sym__expression] = STATE(3768), - [sym_comma_expression] = STATE(6902), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_type_requirement] = STATE(1249), - [sym_compound_requirement] = STATE(1249), - [sym__requirement] = STATE(1249), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_requirement_seq_repeat1] = STATE(1249), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3192), - [anon_sym_RBRACE] = ACTIONS(3218), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [778] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_RBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [anon_sym_typename] = ACTIONS(3196), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1246] = { - [sym_expression_statement] = STATE(3116), - [sym__expression] = STATE(3768), - [sym_comma_expression] = STATE(6902), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_type_requirement] = STATE(1249), - [sym_compound_requirement] = STATE(1249), - [sym__requirement] = STATE(1249), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_requirement_seq_repeat1] = STATE(1249), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3192), - [anon_sym_RBRACE] = ACTIONS(3220), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [779] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_RBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [anon_sym_typename] = ACTIONS(3196), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1247] = { - [sym_expression_statement] = STATE(3116), - [sym__expression] = STATE(3768), - [sym_comma_expression] = STATE(6902), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_type_requirement] = STATE(1249), - [sym_compound_requirement] = STATE(1249), - [sym__requirement] = STATE(1249), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_requirement_seq_repeat1] = STATE(1249), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3192), - [anon_sym_RBRACE] = ACTIONS(3222), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [780] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_RBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [anon_sym_typename] = ACTIONS(3196), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1248] = { - [sym_expression_statement] = STATE(3116), - [sym__expression] = STATE(3768), - [sym_comma_expression] = STATE(6902), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_type_requirement] = STATE(1249), - [sym_compound_requirement] = STATE(1249), - [sym__requirement] = STATE(1249), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_requirement_seq_repeat1] = STATE(1249), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3192), - [anon_sym_RBRACE] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [781] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_RBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [anon_sym_typename] = ACTIONS(3196), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), - }, - [1249] = { - [sym_expression_statement] = STATE(3116), - [sym__expression] = STATE(3768), - [sym_comma_expression] = STATE(6902), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_type_requirement] = STATE(1249), - [sym_compound_requirement] = STATE(1249), - [sym__requirement] = STATE(1249), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_requirement_seq_repeat1] = STATE(1249), - [sym_identifier] = ACTIONS(3226), - [anon_sym_LPAREN2] = ACTIONS(3229), - [anon_sym_BANG] = ACTIONS(3232), - [anon_sym_TILDE] = ACTIONS(3232), - [anon_sym_DASH] = ACTIONS(3235), - [anon_sym_PLUS] = ACTIONS(3235), - [anon_sym_STAR] = ACTIONS(3238), - [anon_sym_AMP] = ACTIONS(3238), - [anon_sym_SEMI] = ACTIONS(3241), - [anon_sym_COLON_COLON] = ACTIONS(3244), - [anon_sym_LBRACE] = ACTIONS(3247), - [anon_sym_RBRACE] = ACTIONS(3250), - [anon_sym_LBRACK] = ACTIONS(3252), - [sym_primitive_type] = ACTIONS(3255), - [anon_sym_DASH_DASH] = ACTIONS(3258), - [anon_sym_PLUS_PLUS] = ACTIONS(3258), - [anon_sym_sizeof] = ACTIONS(3261), - [sym_number_literal] = ACTIONS(3264), - [anon_sym_L_SQUOTE] = ACTIONS(3267), - [anon_sym_u_SQUOTE] = ACTIONS(3267), - [anon_sym_U_SQUOTE] = ACTIONS(3267), - [anon_sym_u8_SQUOTE] = ACTIONS(3267), - [anon_sym_SQUOTE] = ACTIONS(3267), - [anon_sym_L_DQUOTE] = ACTIONS(3270), - [anon_sym_u_DQUOTE] = ACTIONS(3270), - [anon_sym_U_DQUOTE] = ACTIONS(3270), - [anon_sym_u8_DQUOTE] = ACTIONS(3270), - [anon_sym_DQUOTE] = ACTIONS(3270), - [sym_true] = ACTIONS(3273), - [sym_false] = ACTIONS(3273), - [sym_null] = ACTIONS(3273), - [sym_comment] = ACTIONS(3), - [anon_sym_typename] = ACTIONS(3276), - [anon_sym_template] = ACTIONS(3279), - [anon_sym_delete] = ACTIONS(3282), - [anon_sym_co_await] = ACTIONS(3285), - [anon_sym_new] = ACTIONS(3288), - [anon_sym_requires] = ACTIONS(3291), - [sym_this] = ACTIONS(3273), - [sym_nullptr] = ACTIONS(3273), - [sym_raw_string_literal] = ACTIONS(3294), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1250] = { - [sym_expression_statement] = STATE(3116), - [sym__expression] = STATE(3768), - [sym_comma_expression] = STATE(6902), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_type_requirement] = STATE(1246), - [sym_compound_requirement] = STATE(1246), - [sym__requirement] = STATE(1246), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_requirement_seq_repeat1] = STATE(1246), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3192), - [anon_sym_RBRACE] = ACTIONS(3297), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [782] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_RBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [anon_sym_typename] = ACTIONS(3196), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1251] = { - [sym__expression] = STATE(3551), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_initializer_list] = STATE(5619), - [sym_initializer_pair] = STATE(5619), - [sym_subscript_designator] = STATE(5180), - [sym_field_designator] = STATE(5180), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_initializer_pair_repeat1] = STATE(5180), - [sym_identifier] = ACTIONS(3033), - [anon_sym_COMMA] = ACTIONS(3299), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1465), - [anon_sym_RBRACE] = ACTIONS(3301), - [anon_sym_LBRACK] = ACTIONS(3303), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(193), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [783] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_RBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1252] = { - [sym__expression] = STATE(3535), - [sym_comma_expression] = STATE(6251), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_initializer_list] = STATE(6140), - [sym_initializer_pair] = STATE(6140), - [sym_subscript_designator] = STATE(5180), - [sym_field_designator] = STATE(5180), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_initializer_pair_repeat1] = STATE(5180), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1465), - [anon_sym_RBRACE] = ACTIONS(3305), - [anon_sym_LBRACK] = ACTIONS(3303), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(193), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [784] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_RBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1253] = { - [sym__declaration_modifiers] = STATE(1894), - [sym__declaration_specifiers] = STATE(4027), - [sym_attribute_specifier] = STATE(1894), - [sym_attribute_declaration] = STATE(1894), - [sym_ms_declspec_modifier] = STATE(1894), - [sym_ms_based_modifier] = STATE(6716), - [sym__declarator] = STATE(5073), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4825), - [sym_array_declarator] = STATE(4825), - [sym_storage_class_specifier] = STATE(1894), - [sym_type_qualifier] = STATE(1894), - [sym__type_specifier] = STATE(2596), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym_virtual_function_specifier] = STATE(1894), - [sym_dependent_type] = STATE(3139), - [sym_template_parameter_list] = STATE(608), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(3604), - [sym_template_function] = STATE(4825), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4645), - [sym_qualified_identifier] = STATE(4825), - [sym_qualified_type_identifier] = STATE(3198), - [sym_operator_name] = STATE(4825), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [sym_identifier] = ACTIONS(3307), - [anon_sym_LPAREN2] = ACTIONS(1515), - [anon_sym_TILDE] = ACTIONS(1517), - [anon_sym_STAR] = ACTIONS(1519), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1521), - [anon_sym_LT] = ACTIONS(3309), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3311), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1389), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1527), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(2809), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(105), - [anon_sym_decltype] = ACTIONS(107), - [anon_sym_virtual] = ACTIONS(109), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(972), - [anon_sym_operator] = ACTIONS(1497), - }, - [1254] = { - [sym__declaration_modifiers] = STATE(1894), - [sym__declaration_specifiers] = STATE(4058), - [sym_attribute_specifier] = STATE(1894), - [sym_attribute_declaration] = STATE(1894), - [sym_ms_declspec_modifier] = STATE(1894), - [sym_ms_based_modifier] = STATE(6716), - [sym__declarator] = STATE(5138), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4825), - [sym_array_declarator] = STATE(4825), - [sym_storage_class_specifier] = STATE(1894), - [sym_type_qualifier] = STATE(1894), - [sym__type_specifier] = STATE(2596), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym_virtual_function_specifier] = STATE(1894), - [sym_dependent_type] = STATE(3139), - [sym_template_parameter_list] = STATE(808), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(3604), - [sym_template_function] = STATE(4825), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4645), - [sym_qualified_identifier] = STATE(4825), - [sym_qualified_type_identifier] = STATE(3198), - [sym_operator_name] = STATE(4825), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [sym_identifier] = ACTIONS(3307), - [anon_sym_LPAREN2] = ACTIONS(1515), - [anon_sym_TILDE] = ACTIONS(1517), - [anon_sym_STAR] = ACTIONS(1519), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1521), - [anon_sym_LT] = ACTIONS(3309), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3311), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1389), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1527), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(2809), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(105), - [anon_sym_decltype] = ACTIONS(107), - [anon_sym_virtual] = ACTIONS(109), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(972), - [anon_sym_operator] = ACTIONS(1497), - }, - [1255] = { - [sym__expression] = STATE(3547), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_initializer_list] = STATE(5767), - [sym_initializer_pair] = STATE(5767), - [sym_subscript_designator] = STATE(5180), - [sym_field_designator] = STATE(5180), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_initializer_pair_repeat1] = STATE(5180), - [sym_identifier] = ACTIONS(3033), - [anon_sym_COMMA] = ACTIONS(3313), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1465), - [anon_sym_RBRACE] = ACTIONS(3315), - [anon_sym_LBRACK] = ACTIONS(3303), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(193), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [785] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_RBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1256] = { - [sym__expression] = STATE(3554), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_initializer_list] = STATE(5675), - [sym_initializer_pair] = STATE(5675), - [sym_subscript_designator] = STATE(5180), - [sym_field_designator] = STATE(5180), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_initializer_pair_repeat1] = STATE(5180), - [sym_identifier] = ACTIONS(3033), - [anon_sym_COMMA] = ACTIONS(3317), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1465), - [anon_sym_RBRACE] = ACTIONS(3319), - [anon_sym_LBRACK] = ACTIONS(3303), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(193), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [786] = { + [ts_builtin_sym_end] = ACTIONS(2641), + [sym_identifier] = ACTIONS(2639), + [aux_sym_preproc_include_token1] = ACTIONS(2639), + [aux_sym_preproc_def_token1] = ACTIONS(2639), + [aux_sym_preproc_if_token1] = ACTIONS(2639), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2639), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2639), + [sym_preproc_directive] = ACTIONS(2639), + [anon_sym_LPAREN2] = ACTIONS(2641), + [anon_sym_BANG] = ACTIONS(2641), + [anon_sym_TILDE] = ACTIONS(2641), + [anon_sym_DASH] = ACTIONS(2639), + [anon_sym_PLUS] = ACTIONS(2639), + [anon_sym_STAR] = ACTIONS(2641), + [anon_sym_AMP_AMP] = ACTIONS(2641), + [anon_sym_AMP] = ACTIONS(2639), + [anon_sym_SEMI] = ACTIONS(2641), + [anon_sym_typedef] = ACTIONS(2639), + [anon_sym_extern] = ACTIONS(2639), + [anon_sym___attribute__] = ACTIONS(2639), + [anon_sym_COLON_COLON] = ACTIONS(2641), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2641), + [anon_sym___declspec] = ACTIONS(2639), + [anon_sym___based] = ACTIONS(2639), + [anon_sym___cdecl] = ACTIONS(2639), + [anon_sym___clrcall] = ACTIONS(2639), + [anon_sym___stdcall] = ACTIONS(2639), + [anon_sym___fastcall] = ACTIONS(2639), + [anon_sym___thiscall] = ACTIONS(2639), + [anon_sym___vectorcall] = ACTIONS(2639), + [anon_sym_LBRACE] = ACTIONS(2641), + [anon_sym_LBRACK] = ACTIONS(2639), + [anon_sym_static] = ACTIONS(2639), + [anon_sym_register] = ACTIONS(2639), + [anon_sym_inline] = ACTIONS(2639), + [anon_sym_thread_local] = ACTIONS(2639), + [anon_sym_const] = ACTIONS(2639), + [anon_sym_volatile] = ACTIONS(2639), + [anon_sym_restrict] = ACTIONS(2639), + [anon_sym__Atomic] = ACTIONS(2639), + [anon_sym_mutable] = ACTIONS(2639), + [anon_sym_constexpr] = ACTIONS(2639), + [anon_sym_constinit] = ACTIONS(2639), + [anon_sym_consteval] = ACTIONS(2639), + [anon_sym_signed] = ACTIONS(2639), + [anon_sym_unsigned] = ACTIONS(2639), + [anon_sym_long] = ACTIONS(2639), + [anon_sym_short] = ACTIONS(2639), + [sym_primitive_type] = ACTIONS(2639), + [anon_sym_enum] = ACTIONS(2639), + [anon_sym_class] = ACTIONS(2639), + [anon_sym_struct] = ACTIONS(2639), + [anon_sym_union] = ACTIONS(2639), + [anon_sym_if] = ACTIONS(2639), + [anon_sym_else] = ACTIONS(2639), + [anon_sym_switch] = ACTIONS(2639), + [anon_sym_case] = ACTIONS(2639), + [anon_sym_default] = ACTIONS(2639), + [anon_sym_while] = ACTIONS(2639), + [anon_sym_do] = ACTIONS(2639), + [anon_sym_for] = ACTIONS(2639), + [anon_sym_return] = ACTIONS(2639), + [anon_sym_break] = ACTIONS(2639), + [anon_sym_continue] = ACTIONS(2639), + [anon_sym_goto] = ACTIONS(2639), + [anon_sym_not] = ACTIONS(2639), + [anon_sym_compl] = ACTIONS(2639), + [anon_sym_DASH_DASH] = ACTIONS(2641), + [anon_sym_PLUS_PLUS] = ACTIONS(2641), + [anon_sym_sizeof] = ACTIONS(2639), + [sym_number_literal] = ACTIONS(2641), + [anon_sym_L_SQUOTE] = ACTIONS(2641), + [anon_sym_u_SQUOTE] = ACTIONS(2641), + [anon_sym_U_SQUOTE] = ACTIONS(2641), + [anon_sym_u8_SQUOTE] = ACTIONS(2641), + [anon_sym_SQUOTE] = ACTIONS(2641), + [anon_sym_L_DQUOTE] = ACTIONS(2641), + [anon_sym_u_DQUOTE] = ACTIONS(2641), + [anon_sym_U_DQUOTE] = ACTIONS(2641), + [anon_sym_u8_DQUOTE] = ACTIONS(2641), + [anon_sym_DQUOTE] = ACTIONS(2641), + [sym_true] = ACTIONS(2639), + [sym_false] = ACTIONS(2639), + [sym_null] = ACTIONS(2639), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2639), + [anon_sym_decltype] = ACTIONS(2639), + [anon_sym_virtual] = ACTIONS(2639), + [anon_sym_explicit] = ACTIONS(2639), + [anon_sym_typename] = ACTIONS(2639), + [anon_sym_template] = ACTIONS(2639), + [anon_sym_operator] = ACTIONS(2639), + [anon_sym_try] = ACTIONS(2639), + [anon_sym_delete] = ACTIONS(2639), + [anon_sym_throw] = ACTIONS(2639), + [anon_sym_namespace] = ACTIONS(2639), + [anon_sym_using] = ACTIONS(2639), + [anon_sym_static_assert] = ACTIONS(2639), + [anon_sym_concept] = ACTIONS(2639), + [anon_sym_co_return] = ACTIONS(2639), + [anon_sym_co_yield] = ACTIONS(2639), + [anon_sym_co_await] = ACTIONS(2639), + [anon_sym_new] = ACTIONS(2639), + [anon_sym_requires] = ACTIONS(2639), + [sym_this] = ACTIONS(2639), + [sym_nullptr] = ACTIONS(2639), + [sym_raw_string_literal] = ACTIONS(2641), }, - [1257] = { - [sym__declaration_modifiers] = STATE(1894), - [sym__declaration_specifiers] = STATE(4045), - [sym_attribute_specifier] = STATE(1894), - [sym_attribute_declaration] = STATE(1894), - [sym_ms_declspec_modifier] = STATE(1894), - [sym_ms_based_modifier] = STATE(6716), - [sym__declarator] = STATE(5087), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4825), - [sym_array_declarator] = STATE(4825), - [sym_storage_class_specifier] = STATE(1894), - [sym_type_qualifier] = STATE(1894), - [sym__type_specifier] = STATE(2596), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym_virtual_function_specifier] = STATE(1894), - [sym_dependent_type] = STATE(3139), - [sym_template_parameter_list] = STATE(883), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(3604), - [sym_template_function] = STATE(4825), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4645), - [sym_qualified_identifier] = STATE(4825), - [sym_qualified_type_identifier] = STATE(3198), - [sym_operator_name] = STATE(4825), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [sym_identifier] = ACTIONS(3307), - [anon_sym_LPAREN2] = ACTIONS(1515), - [anon_sym_TILDE] = ACTIONS(1517), - [anon_sym_STAR] = ACTIONS(1519), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1521), - [anon_sym_LT] = ACTIONS(3309), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3311), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1389), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1527), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(2809), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), + [787] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_RBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(105), - [anon_sym_decltype] = ACTIONS(107), - [anon_sym_virtual] = ACTIONS(109), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(972), - [anon_sym_operator] = ACTIONS(1497), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1258] = { - [sym__expression] = STATE(3533), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_initializer_list] = STATE(5702), - [sym_initializer_pair] = STATE(5702), - [sym_subscript_designator] = STATE(5180), - [sym_field_designator] = STATE(5180), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_initializer_pair_repeat1] = STATE(5180), - [sym_identifier] = ACTIONS(3033), - [anon_sym_COMMA] = ACTIONS(151), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1465), - [anon_sym_RBRACE] = ACTIONS(3321), - [anon_sym_LBRACK] = ACTIONS(3303), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(193), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [788] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_RBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1259] = { - [sym__expression] = STATE(3517), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_initializer_list] = STATE(5722), - [sym_initializer_pair] = STATE(5722), - [sym_subscript_designator] = STATE(5180), - [sym_field_designator] = STATE(5180), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_initializer_pair_repeat1] = STATE(5180), - [sym_identifier] = ACTIONS(3033), - [anon_sym_COMMA] = ACTIONS(3323), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1465), - [anon_sym_RBRACE] = ACTIONS(3325), - [anon_sym_LBRACK] = ACTIONS(3303), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(193), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [789] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_RBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1260] = { - [sym__declaration_modifiers] = STATE(1894), - [sym__declaration_specifiers] = STATE(4043), - [sym_attribute_specifier] = STATE(1894), - [sym_attribute_declaration] = STATE(1894), - [sym_ms_declspec_modifier] = STATE(1894), - [sym_ms_based_modifier] = STATE(6716), - [sym__declarator] = STATE(5170), - [sym_parenthesized_declarator] = STATE(4825), - [sym_attributed_declarator] = STATE(4825), - [sym_pointer_declarator] = STATE(4825), - [sym_function_declarator] = STATE(4825), - [sym_array_declarator] = STATE(4825), - [sym_storage_class_specifier] = STATE(1894), - [sym_type_qualifier] = STATE(1894), - [sym__type_specifier] = STATE(2596), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym_virtual_function_specifier] = STATE(1894), - [sym_dependent_type] = STATE(3139), - [sym_template_parameter_list] = STATE(704), - [sym_reference_declarator] = STATE(4825), - [sym_structured_binding_declarator] = STATE(4825), - [sym_template_type] = STATE(3604), - [sym_template_function] = STATE(4825), - [sym_destructor_name] = STATE(4825), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4645), - [sym_qualified_identifier] = STATE(4825), - [sym_qualified_type_identifier] = STATE(3198), - [sym_operator_name] = STATE(4825), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [sym_identifier] = ACTIONS(3307), - [anon_sym_LPAREN2] = ACTIONS(1515), - [anon_sym_TILDE] = ACTIONS(1517), - [anon_sym_STAR] = ACTIONS(1519), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(1521), - [anon_sym_LT] = ACTIONS(3309), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3311), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1389), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___based] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1527), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(2809), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_struct] = ACTIONS(67), - [anon_sym_union] = ACTIONS(69), + [790] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_RBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(105), - [anon_sym_decltype] = ACTIONS(107), - [anon_sym_virtual] = ACTIONS(109), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(972), - [anon_sym_operator] = ACTIONS(1497), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1261] = { - [sym__expression] = STATE(3569), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_initializer_list] = STATE(6140), - [sym_initializer_pair] = STATE(6140), - [sym_subscript_designator] = STATE(5180), - [sym_field_designator] = STATE(5180), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_initializer_pair_repeat1] = STATE(5180), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1465), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3303), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(193), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [791] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_RBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1262] = { - [sym__expression] = STATE(3569), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_initializer_list] = STATE(6140), - [sym_initializer_pair] = STATE(6140), - [sym_subscript_designator] = STATE(5180), - [sym_field_designator] = STATE(5180), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_initializer_pair_repeat1] = STATE(5180), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1465), - [anon_sym_RBRACE] = ACTIONS(3329), - [anon_sym_LBRACK] = ACTIONS(3303), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(193), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), - }, - [1263] = { - [sym__expression] = STATE(3569), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_initializer_list] = STATE(6140), - [sym_initializer_pair] = STATE(6140), - [sym_subscript_designator] = STATE(5180), - [sym_field_designator] = STATE(5180), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_initializer_pair_repeat1] = STATE(5180), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1465), - [anon_sym_RBRACE] = ACTIONS(3331), - [anon_sym_LBRACK] = ACTIONS(3303), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(193), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), - }, - [1264] = { - [sym__expression] = STATE(3569), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_initializer_list] = STATE(6140), - [sym_initializer_pair] = STATE(6140), - [sym_subscript_designator] = STATE(5180), - [sym_field_designator] = STATE(5180), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_initializer_pair_repeat1] = STATE(5180), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1465), - [anon_sym_RBRACE] = ACTIONS(3333), - [anon_sym_LBRACK] = ACTIONS(3303), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(193), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [792] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_RBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1265] = { - [sym__expression] = STATE(3569), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_initializer_list] = STATE(6140), - [sym_initializer_pair] = STATE(6140), - [sym_subscript_designator] = STATE(5180), - [sym_field_designator] = STATE(5180), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_initializer_pair_repeat1] = STATE(5180), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1465), - [anon_sym_RBRACE] = ACTIONS(3335), - [anon_sym_LBRACK] = ACTIONS(3303), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(193), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [793] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_RBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1266] = { - [sym__expression] = STATE(3569), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_initializer_list] = STATE(6140), - [sym_initializer_pair] = STATE(6140), - [sym_subscript_designator] = STATE(5180), - [sym_field_designator] = STATE(5180), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_initializer_pair_repeat1] = STATE(5180), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1465), - [anon_sym_RBRACE] = ACTIONS(3337), - [anon_sym_LBRACK] = ACTIONS(3303), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(193), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [794] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_RBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1267] = { - [sym__expression] = STATE(3569), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_initializer_list] = STATE(6140), - [sym_initializer_pair] = STATE(6140), - [sym_subscript_designator] = STATE(5180), - [sym_field_designator] = STATE(5180), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_initializer_pair_repeat1] = STATE(5180), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1465), - [anon_sym_RBRACE] = ACTIONS(3339), - [anon_sym_LBRACK] = ACTIONS(3303), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(193), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [795] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_RBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1268] = { - [sym__expression] = STATE(3569), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_initializer_list] = STATE(6140), - [sym_initializer_pair] = STATE(6140), - [sym_subscript_designator] = STATE(5180), - [sym_field_designator] = STATE(5180), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_initializer_pair_repeat1] = STATE(5180), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1465), - [anon_sym_RBRACE] = ACTIONS(3305), - [anon_sym_LBRACK] = ACTIONS(3303), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(193), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [796] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_RBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1269] = { - [sym__expression] = STATE(3569), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_initializer_list] = STATE(6140), - [sym_initializer_pair] = STATE(6140), - [sym_subscript_designator] = STATE(5180), - [sym_field_designator] = STATE(5180), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_initializer_pair_repeat1] = STATE(5180), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1465), - [anon_sym_RBRACE] = ACTIONS(3341), - [anon_sym_LBRACK] = ACTIONS(3303), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(193), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [797] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_RBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1270] = { - [sym__expression] = STATE(3569), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_initializer_list] = STATE(6140), - [sym_initializer_pair] = STATE(6140), - [sym_subscript_designator] = STATE(5180), - [sym_field_designator] = STATE(5180), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_initializer_pair_repeat1] = STATE(5180), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1465), - [anon_sym_RBRACE] = ACTIONS(3343), - [anon_sym_LBRACK] = ACTIONS(3303), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(193), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [798] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_RBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1271] = { - [sym__expression] = STATE(3569), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_initializer_list] = STATE(6140), - [sym_initializer_pair] = STATE(6140), - [sym_subscript_designator] = STATE(5180), - [sym_field_designator] = STATE(5180), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [aux_sym_initializer_pair_repeat1] = STATE(5180), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1465), - [anon_sym_LBRACK] = ACTIONS(3303), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [anon_sym_DOT] = ACTIONS(193), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), - }, - [1272] = { - [sym__expression] = STATE(3727), - [sym_comma_expression] = STATE(6451), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_initializer_list] = STATE(6451), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(3345), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1465), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), - }, - [1273] = { - [sym__expression] = STATE(3751), - [sym_comma_expression] = STATE(6928), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_initializer_list] = STATE(6928), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(3347), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1465), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), - }, - [1274] = { - [sym__expression] = STATE(2471), - [sym_conditional_expression] = STATE(2765), - [sym_assignment_expression] = STATE(2765), - [sym_pointer_expression] = STATE(2827), - [sym_unary_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_update_expression] = STATE(2765), - [sym_cast_expression] = STATE(2765), - [sym_sizeof_expression] = STATE(2765), - [sym_subscript_expression] = STATE(2827), - [sym_call_expression] = STATE(2827), - [sym_field_expression] = STATE(2827), - [sym_compound_literal_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2827), - [sym_char_literal] = STATE(2674), - [sym_concatenated_string] = STATE(2674), - [sym_string_literal] = STATE(2093), - [sym__class_name] = STATE(6297), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2765), - [sym_co_await_expression] = STATE(2765), - [sym_new_expression] = STATE(2765), - [sym_delete_expression] = STATE(2765), - [sym_requires_clause] = STATE(2765), - [sym_requires_expression] = STATE(2765), - [sym_lambda_expression] = STATE(2765), - [sym_lambda_capture_specifier] = STATE(4512), - [sym__unary_left_fold] = STATE(6556), - [sym__unary_right_fold] = STATE(6703), - [sym__binary_fold] = STATE(6568), - [sym_fold_expression] = STATE(2765), - [sym_parameter_pack_expansion] = STATE(2765), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4648), - [sym_qualified_identifier] = STATE(2827), - [sym_qualified_type_identifier] = STATE(6297), - [sym_user_defined_literal] = STATE(2765), - [sym_identifier] = ACTIONS(2363), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1411), - [anon_sym_LPAREN2] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1417), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_COLON_COLON] = ACTIONS(1423), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(2369), - [anon_sym_DASH_DASH] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [anon_sym_sizeof] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(1439), - [anon_sym_L_SQUOTE] = ACTIONS(1441), - [anon_sym_u_SQUOTE] = ACTIONS(1441), - [anon_sym_U_SQUOTE] = ACTIONS(1441), - [anon_sym_u8_SQUOTE] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1441), - [anon_sym_L_DQUOTE] = ACTIONS(1443), - [anon_sym_u_DQUOTE] = ACTIONS(1443), - [anon_sym_U_DQUOTE] = ACTIONS(1443), - [anon_sym_u8_DQUOTE] = ACTIONS(1443), - [anon_sym_DQUOTE] = ACTIONS(1443), - [sym_true] = ACTIONS(1445), - [sym_false] = ACTIONS(1445), - [sym_null] = ACTIONS(1445), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_co_await] = ACTIONS(1451), - [anon_sym_new] = ACTIONS(1453), - [anon_sym_requires] = ACTIONS(1455), - [sym_this] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(1445), - [sym_raw_string_literal] = ACTIONS(1457), - }, - [1275] = { - [sym__expression] = STATE(3583), - [sym_comma_expression] = STATE(6645), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_initializer_list] = STATE(6645), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(3349), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1465), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [799] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_RBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), - }, - [1276] = { - [sym__expression] = STATE(2380), - [sym_conditional_expression] = STATE(2765), - [sym_assignment_expression] = STATE(2765), - [sym_pointer_expression] = STATE(2827), - [sym_unary_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_update_expression] = STATE(2765), - [sym_cast_expression] = STATE(2765), - [sym_sizeof_expression] = STATE(2765), - [sym_subscript_expression] = STATE(2827), - [sym_call_expression] = STATE(2827), - [sym_field_expression] = STATE(2827), - [sym_compound_literal_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2827), - [sym_char_literal] = STATE(2674), - [sym_concatenated_string] = STATE(2674), - [sym_string_literal] = STATE(2093), - [sym__class_name] = STATE(6297), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2765), - [sym_co_await_expression] = STATE(2765), - [sym_new_expression] = STATE(2765), - [sym_delete_expression] = STATE(2765), - [sym_requires_clause] = STATE(2765), - [sym_requires_expression] = STATE(2765), - [sym_lambda_expression] = STATE(2765), - [sym_lambda_capture_specifier] = STATE(4512), - [sym__unary_left_fold] = STATE(6480), - [sym__unary_right_fold] = STATE(6479), - [sym__binary_fold] = STATE(6474), - [sym_fold_expression] = STATE(2765), - [sym_parameter_pack_expansion] = STATE(2765), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4648), - [sym_qualified_identifier] = STATE(2827), - [sym_qualified_type_identifier] = STATE(6297), - [sym_user_defined_literal] = STATE(2765), - [sym_identifier] = ACTIONS(2363), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1411), - [anon_sym_LPAREN2] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1417), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_COLON_COLON] = ACTIONS(1423), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(2369), - [anon_sym_DASH_DASH] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [anon_sym_sizeof] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(1439), - [anon_sym_L_SQUOTE] = ACTIONS(1441), - [anon_sym_u_SQUOTE] = ACTIONS(1441), - [anon_sym_U_SQUOTE] = ACTIONS(1441), - [anon_sym_u8_SQUOTE] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1441), - [anon_sym_L_DQUOTE] = ACTIONS(1443), - [anon_sym_u_DQUOTE] = ACTIONS(1443), - [anon_sym_U_DQUOTE] = ACTIONS(1443), - [anon_sym_u8_DQUOTE] = ACTIONS(1443), - [anon_sym_DQUOTE] = ACTIONS(1443), - [sym_true] = ACTIONS(1445), - [sym_false] = ACTIONS(1445), - [sym_null] = ACTIONS(1445), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_co_await] = ACTIONS(1451), - [anon_sym_new] = ACTIONS(1453), - [anon_sym_requires] = ACTIONS(1455), - [sym_this] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(1445), - [sym_raw_string_literal] = ACTIONS(1457), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1277] = { - [sym__expression] = STATE(3693), - [sym_comma_expression] = STATE(6446), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_initializer_list] = STATE(6446), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(3351), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1465), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [800] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_RBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), - }, - [1278] = { - [sym__expression] = STATE(2334), - [sym_conditional_expression] = STATE(2765), - [sym_assignment_expression] = STATE(2765), - [sym_pointer_expression] = STATE(2827), - [sym_unary_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_update_expression] = STATE(2765), - [sym_cast_expression] = STATE(2765), - [sym_sizeof_expression] = STATE(2765), - [sym_subscript_expression] = STATE(2827), - [sym_call_expression] = STATE(2827), - [sym_field_expression] = STATE(2827), - [sym_compound_literal_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2827), - [sym_char_literal] = STATE(2674), - [sym_concatenated_string] = STATE(2674), - [sym_string_literal] = STATE(2093), - [sym__class_name] = STATE(6297), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2765), - [sym_co_await_expression] = STATE(2765), - [sym_new_expression] = STATE(2765), - [sym_delete_expression] = STATE(2765), - [sym_requires_clause] = STATE(2765), - [sym_requires_expression] = STATE(2765), - [sym_lambda_expression] = STATE(2765), - [sym_lambda_capture_specifier] = STATE(4512), - [sym__unary_left_fold] = STATE(6786), - [sym__unary_right_fold] = STATE(6787), - [sym__binary_fold] = STATE(6789), - [sym_fold_expression] = STATE(2765), - [sym_parameter_pack_expansion] = STATE(2765), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4648), - [sym_qualified_identifier] = STATE(2827), - [sym_qualified_type_identifier] = STATE(6297), - [sym_user_defined_literal] = STATE(2765), - [sym_identifier] = ACTIONS(2363), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1411), - [anon_sym_LPAREN2] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1417), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_COLON_COLON] = ACTIONS(1423), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(2369), - [anon_sym_DASH_DASH] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [anon_sym_sizeof] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(1439), - [anon_sym_L_SQUOTE] = ACTIONS(1441), - [anon_sym_u_SQUOTE] = ACTIONS(1441), - [anon_sym_U_SQUOTE] = ACTIONS(1441), - [anon_sym_u8_SQUOTE] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1441), - [anon_sym_L_DQUOTE] = ACTIONS(1443), - [anon_sym_u_DQUOTE] = ACTIONS(1443), - [anon_sym_U_DQUOTE] = ACTIONS(1443), - [anon_sym_u8_DQUOTE] = ACTIONS(1443), - [anon_sym_DQUOTE] = ACTIONS(1443), - [sym_true] = ACTIONS(1445), - [sym_false] = ACTIONS(1445), - [sym_null] = ACTIONS(1445), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_co_await] = ACTIONS(1451), - [anon_sym_new] = ACTIONS(1453), - [anon_sym_requires] = ACTIONS(1455), - [sym_this] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(1445), - [sym_raw_string_literal] = ACTIONS(1457), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1279] = { - [sym__expression] = STATE(3765), - [sym_comma_expression] = STATE(6619), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_initializer_list] = STATE(6619), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(3353), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1465), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [801] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_RBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), - }, - [1280] = { - [sym__expression] = STATE(2364), - [sym_conditional_expression] = STATE(2765), - [sym_assignment_expression] = STATE(2765), - [sym_pointer_expression] = STATE(2827), - [sym_unary_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_update_expression] = STATE(2765), - [sym_cast_expression] = STATE(2765), - [sym_sizeof_expression] = STATE(2765), - [sym_subscript_expression] = STATE(2827), - [sym_call_expression] = STATE(2827), - [sym_field_expression] = STATE(2827), - [sym_compound_literal_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2827), - [sym_char_literal] = STATE(2674), - [sym_concatenated_string] = STATE(2674), - [sym_string_literal] = STATE(2093), - [sym__class_name] = STATE(6297), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2765), - [sym_co_await_expression] = STATE(2765), - [sym_new_expression] = STATE(2765), - [sym_delete_expression] = STATE(2765), - [sym_requires_clause] = STATE(2765), - [sym_requires_expression] = STATE(2765), - [sym_lambda_expression] = STATE(2765), - [sym_lambda_capture_specifier] = STATE(4512), - [sym__unary_left_fold] = STATE(6482), - [sym__unary_right_fold] = STATE(6484), - [sym__binary_fold] = STATE(6498), - [sym_fold_expression] = STATE(2765), - [sym_parameter_pack_expansion] = STATE(2765), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4648), - [sym_qualified_identifier] = STATE(2827), - [sym_qualified_type_identifier] = STATE(6297), - [sym_user_defined_literal] = STATE(2765), - [sym_identifier] = ACTIONS(2363), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1411), - [anon_sym_LPAREN2] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1417), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_COLON_COLON] = ACTIONS(1423), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(2369), - [anon_sym_DASH_DASH] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [anon_sym_sizeof] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(1439), - [anon_sym_L_SQUOTE] = ACTIONS(1441), - [anon_sym_u_SQUOTE] = ACTIONS(1441), - [anon_sym_U_SQUOTE] = ACTIONS(1441), - [anon_sym_u8_SQUOTE] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1441), - [anon_sym_L_DQUOTE] = ACTIONS(1443), - [anon_sym_u_DQUOTE] = ACTIONS(1443), - [anon_sym_U_DQUOTE] = ACTIONS(1443), - [anon_sym_u8_DQUOTE] = ACTIONS(1443), - [anon_sym_DQUOTE] = ACTIONS(1443), - [sym_true] = ACTIONS(1445), - [sym_false] = ACTIONS(1445), - [sym_null] = ACTIONS(1445), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_co_await] = ACTIONS(1451), - [anon_sym_new] = ACTIONS(1453), - [anon_sym_requires] = ACTIONS(1455), - [sym_this] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(1445), - [sym_raw_string_literal] = ACTIONS(1457), - }, - [1281] = { - [sym__expression] = STATE(2414), - [sym_conditional_expression] = STATE(2765), - [sym_assignment_expression] = STATE(2765), - [sym_pointer_expression] = STATE(2827), - [sym_unary_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_update_expression] = STATE(2765), - [sym_cast_expression] = STATE(2765), - [sym_sizeof_expression] = STATE(2765), - [sym_subscript_expression] = STATE(2827), - [sym_call_expression] = STATE(2827), - [sym_field_expression] = STATE(2827), - [sym_compound_literal_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2827), - [sym_char_literal] = STATE(2674), - [sym_concatenated_string] = STATE(2674), - [sym_string_literal] = STATE(2093), - [sym__class_name] = STATE(6297), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2765), - [sym_co_await_expression] = STATE(2765), - [sym_new_expression] = STATE(2765), - [sym_delete_expression] = STATE(2765), - [sym_requires_clause] = STATE(2765), - [sym_requires_expression] = STATE(2765), - [sym_lambda_expression] = STATE(2765), - [sym_lambda_capture_specifier] = STATE(4512), - [sym__unary_left_fold] = STATE(6890), - [sym__unary_right_fold] = STATE(6893), - [sym__binary_fold] = STATE(6894), - [sym_fold_expression] = STATE(2765), - [sym_parameter_pack_expansion] = STATE(2765), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4648), - [sym_qualified_identifier] = STATE(2827), - [sym_qualified_type_identifier] = STATE(6297), - [sym_user_defined_literal] = STATE(2765), - [sym_identifier] = ACTIONS(2363), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1411), - [anon_sym_LPAREN2] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1417), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_COLON_COLON] = ACTIONS(1423), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(2369), - [anon_sym_DASH_DASH] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [anon_sym_sizeof] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(1439), - [anon_sym_L_SQUOTE] = ACTIONS(1441), - [anon_sym_u_SQUOTE] = ACTIONS(1441), - [anon_sym_U_SQUOTE] = ACTIONS(1441), - [anon_sym_u8_SQUOTE] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1441), - [anon_sym_L_DQUOTE] = ACTIONS(1443), - [anon_sym_u_DQUOTE] = ACTIONS(1443), - [anon_sym_U_DQUOTE] = ACTIONS(1443), - [anon_sym_u8_DQUOTE] = ACTIONS(1443), - [anon_sym_DQUOTE] = ACTIONS(1443), - [sym_true] = ACTIONS(1445), - [sym_false] = ACTIONS(1445), - [sym_null] = ACTIONS(1445), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_co_await] = ACTIONS(1451), - [anon_sym_new] = ACTIONS(1453), - [anon_sym_requires] = ACTIONS(1455), - [sym_this] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(1445), - [sym_raw_string_literal] = ACTIONS(1457), - }, - [1282] = { - [sym__expression] = STATE(2496), - [sym_conditional_expression] = STATE(2765), - [sym_assignment_expression] = STATE(2765), - [sym_pointer_expression] = STATE(2827), - [sym_unary_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_update_expression] = STATE(2765), - [sym_cast_expression] = STATE(2765), - [sym_sizeof_expression] = STATE(2765), - [sym_subscript_expression] = STATE(2827), - [sym_call_expression] = STATE(2827), - [sym_field_expression] = STATE(2827), - [sym_compound_literal_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2827), - [sym_char_literal] = STATE(2674), - [sym_concatenated_string] = STATE(2674), - [sym_string_literal] = STATE(2093), - [sym__class_name] = STATE(6297), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2765), - [sym_co_await_expression] = STATE(2765), - [sym_new_expression] = STATE(2765), - [sym_delete_expression] = STATE(2765), - [sym_requires_clause] = STATE(2765), - [sym_requires_expression] = STATE(2765), - [sym_lambda_expression] = STATE(2765), - [sym_lambda_capture_specifier] = STATE(4512), - [sym__unary_left_fold] = STATE(6907), - [sym__unary_right_fold] = STATE(6913), - [sym__binary_fold] = STATE(6914), - [sym_fold_expression] = STATE(2765), - [sym_parameter_pack_expansion] = STATE(2765), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4648), - [sym_qualified_identifier] = STATE(2827), - [sym_qualified_type_identifier] = STATE(6297), - [sym_user_defined_literal] = STATE(2765), - [sym_identifier] = ACTIONS(2363), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1411), - [anon_sym_LPAREN2] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1417), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_COLON_COLON] = ACTIONS(1423), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(2369), - [anon_sym_DASH_DASH] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [anon_sym_sizeof] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(1439), - [anon_sym_L_SQUOTE] = ACTIONS(1441), - [anon_sym_u_SQUOTE] = ACTIONS(1441), - [anon_sym_U_SQUOTE] = ACTIONS(1441), - [anon_sym_u8_SQUOTE] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1441), - [anon_sym_L_DQUOTE] = ACTIONS(1443), - [anon_sym_u_DQUOTE] = ACTIONS(1443), - [anon_sym_U_DQUOTE] = ACTIONS(1443), - [anon_sym_u8_DQUOTE] = ACTIONS(1443), - [anon_sym_DQUOTE] = ACTIONS(1443), - [sym_true] = ACTIONS(1445), - [sym_false] = ACTIONS(1445), - [sym_null] = ACTIONS(1445), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_co_await] = ACTIONS(1451), - [anon_sym_new] = ACTIONS(1453), - [anon_sym_requires] = ACTIONS(1455), - [sym_this] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(1445), - [sym_raw_string_literal] = ACTIONS(1457), - }, - [1283] = { - [sym__expression] = STATE(2514), - [sym_conditional_expression] = STATE(2765), - [sym_assignment_expression] = STATE(2765), - [sym_pointer_expression] = STATE(2827), - [sym_unary_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_update_expression] = STATE(2765), - [sym_cast_expression] = STATE(2765), - [sym_sizeof_expression] = STATE(2765), - [sym_subscript_expression] = STATE(2827), - [sym_call_expression] = STATE(2827), - [sym_field_expression] = STATE(2827), - [sym_compound_literal_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2827), - [sym_char_literal] = STATE(2674), - [sym_concatenated_string] = STATE(2674), - [sym_string_literal] = STATE(2093), - [sym__class_name] = STATE(6297), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2765), - [sym_co_await_expression] = STATE(2765), - [sym_new_expression] = STATE(2765), - [sym_delete_expression] = STATE(2765), - [sym_requires_clause] = STATE(2765), - [sym_requires_expression] = STATE(2765), - [sym_lambda_expression] = STATE(2765), - [sym_lambda_capture_specifier] = STATE(4512), - [sym__unary_left_fold] = STATE(6598), - [sym__unary_right_fold] = STATE(6600), - [sym__binary_fold] = STATE(6603), - [sym_fold_expression] = STATE(2765), - [sym_parameter_pack_expansion] = STATE(2765), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4648), - [sym_qualified_identifier] = STATE(2827), - [sym_qualified_type_identifier] = STATE(6297), - [sym_user_defined_literal] = STATE(2765), - [sym_identifier] = ACTIONS(2363), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1411), - [anon_sym_LPAREN2] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1417), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_COLON_COLON] = ACTIONS(1423), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(2369), - [anon_sym_DASH_DASH] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [anon_sym_sizeof] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(1439), - [anon_sym_L_SQUOTE] = ACTIONS(1441), - [anon_sym_u_SQUOTE] = ACTIONS(1441), - [anon_sym_U_SQUOTE] = ACTIONS(1441), - [anon_sym_u8_SQUOTE] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1441), - [anon_sym_L_DQUOTE] = ACTIONS(1443), - [anon_sym_u_DQUOTE] = ACTIONS(1443), - [anon_sym_U_DQUOTE] = ACTIONS(1443), - [anon_sym_u8_DQUOTE] = ACTIONS(1443), - [anon_sym_DQUOTE] = ACTIONS(1443), - [sym_true] = ACTIONS(1445), - [sym_false] = ACTIONS(1445), - [sym_null] = ACTIONS(1445), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_co_await] = ACTIONS(1451), - [anon_sym_new] = ACTIONS(1453), - [anon_sym_requires] = ACTIONS(1455), - [sym_this] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(1445), - [sym_raw_string_literal] = ACTIONS(1457), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1284] = { - [sym__expression] = STATE(3599), - [sym_comma_expression] = STATE(6802), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_initializer_list] = STATE(6802), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(3355), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1465), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [802] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_RBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), - }, - [1285] = { - [sym__expression] = STATE(2516), - [sym_conditional_expression] = STATE(2765), - [sym_assignment_expression] = STATE(2765), - [sym_pointer_expression] = STATE(2827), - [sym_unary_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_update_expression] = STATE(2765), - [sym_cast_expression] = STATE(2765), - [sym_sizeof_expression] = STATE(2765), - [sym_subscript_expression] = STATE(2827), - [sym_call_expression] = STATE(2827), - [sym_field_expression] = STATE(2827), - [sym_compound_literal_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2827), - [sym_char_literal] = STATE(2674), - [sym_concatenated_string] = STATE(2674), - [sym_string_literal] = STATE(2093), - [sym__class_name] = STATE(6297), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2765), - [sym_co_await_expression] = STATE(2765), - [sym_new_expression] = STATE(2765), - [sym_delete_expression] = STATE(2765), - [sym_requires_clause] = STATE(2765), - [sym_requires_expression] = STATE(2765), - [sym_lambda_expression] = STATE(2765), - [sym_lambda_capture_specifier] = STATE(4512), - [sym__unary_left_fold] = STATE(6567), - [sym__unary_right_fold] = STATE(6566), - [sym__binary_fold] = STATE(6564), - [sym_fold_expression] = STATE(2765), - [sym_parameter_pack_expansion] = STATE(2765), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4648), - [sym_qualified_identifier] = STATE(2827), - [sym_qualified_type_identifier] = STATE(6297), - [sym_user_defined_literal] = STATE(2765), - [sym_identifier] = ACTIONS(2363), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1411), - [anon_sym_LPAREN2] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1417), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_COLON_COLON] = ACTIONS(1423), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(2369), - [anon_sym_DASH_DASH] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [anon_sym_sizeof] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(1439), - [anon_sym_L_SQUOTE] = ACTIONS(1441), - [anon_sym_u_SQUOTE] = ACTIONS(1441), - [anon_sym_U_SQUOTE] = ACTIONS(1441), - [anon_sym_u8_SQUOTE] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1441), - [anon_sym_L_DQUOTE] = ACTIONS(1443), - [anon_sym_u_DQUOTE] = ACTIONS(1443), - [anon_sym_U_DQUOTE] = ACTIONS(1443), - [anon_sym_u8_DQUOTE] = ACTIONS(1443), - [anon_sym_DQUOTE] = ACTIONS(1443), - [sym_true] = ACTIONS(1445), - [sym_false] = ACTIONS(1445), - [sym_null] = ACTIONS(1445), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_co_await] = ACTIONS(1451), - [anon_sym_new] = ACTIONS(1453), - [anon_sym_requires] = ACTIONS(1455), - [sym_this] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(1445), - [sym_raw_string_literal] = ACTIONS(1457), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1286] = { - [sym__expression] = STATE(3537), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2981), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2981), - [sym_call_expression] = STATE(2981), - [sym_field_expression] = STATE(2981), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2981), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_lambda_default_capture] = STATE(6332), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2981), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3039), - [anon_sym_LPAREN2] = ACTIONS(3041), - [anon_sym_BANG] = ACTIONS(3045), - [anon_sym_TILDE] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(3357), - [anon_sym_COLON_COLON] = ACTIONS(3047), - [anon_sym_LBRACK] = ACTIONS(2272), - [anon_sym_RBRACK] = ACTIONS(3359), - [anon_sym_EQ] = ACTIONS(3361), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3049), - [anon_sym_PLUS_PLUS] = ACTIONS(3049), - [anon_sym_sizeof] = ACTIONS(3051), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [803] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_RBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3053), - [anon_sym_co_await] = ACTIONS(3055), - [anon_sym_new] = ACTIONS(3057), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1287] = { - [sym__expression] = STATE(3537), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2981), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2981), - [sym_call_expression] = STATE(2981), - [sym_field_expression] = STATE(2981), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2981), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_lambda_default_capture] = STATE(6332), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2981), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3039), - [anon_sym_LPAREN2] = ACTIONS(3041), - [anon_sym_BANG] = ACTIONS(3045), - [anon_sym_TILDE] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(3357), - [anon_sym_COLON_COLON] = ACTIONS(3047), - [anon_sym_LBRACK] = ACTIONS(2272), - [anon_sym_RBRACK] = ACTIONS(3363), - [anon_sym_EQ] = ACTIONS(3361), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3049), - [anon_sym_PLUS_PLUS] = ACTIONS(3049), - [anon_sym_sizeof] = ACTIONS(3051), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [804] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_RBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3053), - [anon_sym_co_await] = ACTIONS(3055), - [anon_sym_new] = ACTIONS(3057), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1288] = { - [sym__declaration_modifiers] = STATE(1892), - [sym__declaration_specifiers] = STATE(2998), - [sym_attribute_specifier] = STATE(1892), - [sym_attribute_declaration] = STATE(1892), - [sym_ms_declspec_modifier] = STATE(1892), - [sym__abstract_declarator] = STATE(5428), - [sym_abstract_parenthesized_declarator] = STATE(4832), - [sym_abstract_pointer_declarator] = STATE(4832), - [sym_abstract_function_declarator] = STATE(4832), - [sym_abstract_array_declarator] = STATE(4832), - [sym_storage_class_specifier] = STATE(1892), - [sym_type_qualifier] = STATE(1892), - [sym__type_specifier] = STATE(2596), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_parameter_list] = STATE(4080), - [sym_parameter_declaration] = STATE(5660), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym_virtual_function_specifier] = STATE(1892), - [sym_dependent_type] = STATE(3139), - [sym_optional_parameter_declaration] = STATE(5660), - [sym_variadic_parameter_declaration] = STATE(5660), - [sym_abstract_reference_declarator] = STATE(4832), - [sym_template_type] = STATE(2976), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(5144), - [sym_qualified_type_identifier] = STATE(3198), - [aux_sym__declaration_specifiers_repeat1] = STATE(1892), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [sym_identifier] = ACTIONS(3365), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1461), - [anon_sym_RPAREN] = ACTIONS(3367), - [anon_sym_LPAREN2] = ACTIONS(3369), - [anon_sym_STAR] = ACTIONS(3371), - [anon_sym_AMP_AMP] = ACTIONS(3373), - [anon_sym_AMP] = ACTIONS(3375), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3377), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1389), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3379), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(2809), - [anon_sym_enum] = ACTIONS(1427), - [anon_sym_class] = ACTIONS(1429), - [anon_sym_struct] = ACTIONS(1431), - [anon_sym_union] = ACTIONS(1433), + [805] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_RBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(105), - [anon_sym_decltype] = ACTIONS(107), - [anon_sym_virtual] = ACTIONS(109), - [anon_sym_typename] = ACTIONS(1447), - [anon_sym_template] = ACTIONS(972), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1289] = { - [sym__expression] = STATE(2918), - [sym_conditional_expression] = STATE(3000), - [sym_assignment_expression] = STATE(3000), - [sym_pointer_expression] = STATE(3006), - [sym_unary_expression] = STATE(3000), - [sym_binary_expression] = STATE(3000), - [sym_update_expression] = STATE(3000), - [sym_cast_expression] = STATE(3000), - [sym_sizeof_expression] = STATE(3000), - [sym_subscript_expression] = STATE(3006), - [sym_call_expression] = STATE(3006), - [sym_field_expression] = STATE(3006), - [sym_compound_literal_expression] = STATE(3000), - [sym_parenthesized_expression] = STATE(3006), - [sym_char_literal] = STATE(2896), - [sym_concatenated_string] = STATE(2896), - [sym_string_literal] = STATE(2154), - [sym__class_name] = STATE(5849), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3000), - [sym_co_await_expression] = STATE(3000), - [sym_new_expression] = STATE(3000), - [sym_delete_expression] = STATE(3000), - [sym_requires_clause] = STATE(3000), - [sym_requires_expression] = STATE(3000), - [sym_lambda_expression] = STATE(3000), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3000), - [sym_parameter_pack_expansion] = STATE(3000), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4642), - [sym_qualified_identifier] = STATE(3006), - [sym_qualified_type_identifier] = STATE(5849), - [sym_user_defined_literal] = STATE(3000), - [sym_identifier] = ACTIONS(2831), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(2837), - [anon_sym_TILDE] = ACTIONS(2837), - [anon_sym_DASH] = ACTIONS(2835), - [anon_sym_PLUS] = ACTIONS(2835), - [anon_sym_STAR] = ACTIONS(3381), - [anon_sym_AMP_AMP] = ACTIONS(3381), - [anon_sym_AMP] = ACTIONS(3383), - [anon_sym_LT] = ACTIONS(3381), - [anon_sym_COLON_COLON] = ACTIONS(2841), - [anon_sym_LBRACE] = ACTIONS(3381), - [anon_sym_LBRACK] = ACTIONS(3381), - [sym_primitive_type] = ACTIONS(2845), - [anon_sym_DASH_DASH] = ACTIONS(2847), - [anon_sym_PLUS_PLUS] = ACTIONS(2847), - [anon_sym_sizeof] = ACTIONS(2849), - [sym_number_literal] = ACTIONS(2851), - [anon_sym_L_SQUOTE] = ACTIONS(2853), - [anon_sym_u_SQUOTE] = ACTIONS(2853), - [anon_sym_U_SQUOTE] = ACTIONS(2853), - [anon_sym_u8_SQUOTE] = ACTIONS(2853), - [anon_sym_SQUOTE] = ACTIONS(2853), - [anon_sym_L_DQUOTE] = ACTIONS(2855), - [anon_sym_u_DQUOTE] = ACTIONS(2855), - [anon_sym_U_DQUOTE] = ACTIONS(2855), - [anon_sym_u8_DQUOTE] = ACTIONS(2855), - [anon_sym_DQUOTE] = ACTIONS(2855), - [sym_true] = ACTIONS(2857), - [sym_false] = ACTIONS(2857), - [sym_null] = ACTIONS(2857), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_co_await] = ACTIONS(2861), - [anon_sym_new] = ACTIONS(2863), - [anon_sym_requires] = ACTIONS(2865), - [sym_this] = ACTIONS(2857), - [sym_nullptr] = ACTIONS(2857), - [sym_raw_string_literal] = ACTIONS(2867), - }, - [1290] = { - [sym__expression] = STATE(3832), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_initializer_list] = STATE(6714), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1465), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_default] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3387), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), - }, - [1291] = { - [sym__expression] = STATE(3537), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2981), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2981), - [sym_call_expression] = STATE(2981), - [sym_field_expression] = STATE(2981), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2981), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_lambda_default_capture] = STATE(6332), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2981), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3039), - [anon_sym_LPAREN2] = ACTIONS(3041), - [anon_sym_BANG] = ACTIONS(3045), - [anon_sym_TILDE] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(3357), - [anon_sym_COLON_COLON] = ACTIONS(3047), - [anon_sym_LBRACK] = ACTIONS(2272), - [anon_sym_RBRACK] = ACTIONS(3389), - [anon_sym_EQ] = ACTIONS(3361), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3049), - [anon_sym_PLUS_PLUS] = ACTIONS(3049), - [anon_sym_sizeof] = ACTIONS(3051), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [806] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_RBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3053), - [anon_sym_co_await] = ACTIONS(3055), - [anon_sym_new] = ACTIONS(3057), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1292] = { - [sym__expression] = STATE(3555), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_initializer_list] = STATE(5633), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_RPAREN] = ACTIONS(3391), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1465), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [807] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_RBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1293] = { - [sym__expression] = STATE(3553), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_initializer_list] = STATE(5673), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_RPAREN] = ACTIONS(3393), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1465), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [808] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token2] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1294] = { - [sym__expression] = STATE(3537), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2981), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2981), - [sym_call_expression] = STATE(2981), - [sym_field_expression] = STATE(2981), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2981), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_lambda_default_capture] = STATE(6332), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2981), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3039), - [anon_sym_LPAREN2] = ACTIONS(3041), - [anon_sym_BANG] = ACTIONS(3045), - [anon_sym_TILDE] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(3357), - [anon_sym_COLON_COLON] = ACTIONS(3047), - [anon_sym_LBRACK] = ACTIONS(2272), - [anon_sym_RBRACK] = ACTIONS(3395), - [anon_sym_EQ] = ACTIONS(3361), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3049), - [anon_sym_PLUS_PLUS] = ACTIONS(3049), - [anon_sym_sizeof] = ACTIONS(3051), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [809] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_RBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3053), - [anon_sym_co_await] = ACTIONS(3055), - [anon_sym_new] = ACTIONS(3057), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1295] = { - [sym__expression] = STATE(3537), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2981), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2981), - [sym_call_expression] = STATE(2981), - [sym_field_expression] = STATE(2981), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2981), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_lambda_default_capture] = STATE(6332), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2981), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3039), - [anon_sym_LPAREN2] = ACTIONS(3041), - [anon_sym_BANG] = ACTIONS(3045), - [anon_sym_TILDE] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(3357), - [anon_sym_COLON_COLON] = ACTIONS(3047), - [anon_sym_LBRACK] = ACTIONS(2272), - [anon_sym_RBRACK] = ACTIONS(3397), - [anon_sym_EQ] = ACTIONS(3361), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3049), - [anon_sym_PLUS_PLUS] = ACTIONS(3049), - [anon_sym_sizeof] = ACTIONS(3051), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [810] = { + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_RBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3053), - [anon_sym_co_await] = ACTIONS(3055), - [anon_sym_new] = ACTIONS(3057), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), - }, - [1296] = { - [sym__expression] = STATE(2628), - [sym_conditional_expression] = STATE(2765), - [sym_assignment_expression] = STATE(2765), - [sym_pointer_expression] = STATE(2827), - [sym_unary_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_update_expression] = STATE(2765), - [sym_cast_expression] = STATE(2765), - [sym_sizeof_expression] = STATE(2765), - [sym_subscript_expression] = STATE(2827), - [sym_call_expression] = STATE(2827), - [sym_field_expression] = STATE(2827), - [sym_compound_literal_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2827), - [sym_char_literal] = STATE(2674), - [sym_concatenated_string] = STATE(2674), - [sym_string_literal] = STATE(2093), - [sym__class_name] = STATE(6297), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2765), - [sym_co_await_expression] = STATE(2765), - [sym_new_expression] = STATE(2765), - [sym_delete_expression] = STATE(2765), - [sym_requires_clause] = STATE(2765), - [sym_requires_expression] = STATE(2765), - [sym_lambda_expression] = STATE(2765), - [sym_lambda_capture_specifier] = STATE(4512), - [sym_fold_expression] = STATE(2765), - [sym_parameter_pack_expansion] = STATE(2765), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4648), - [sym_qualified_identifier] = STATE(2827), - [sym_qualified_type_identifier] = STATE(6297), - [sym_user_defined_literal] = STATE(2765), - [sym_identifier] = ACTIONS(2363), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(1417), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(3381), - [anon_sym_AMP_AMP] = ACTIONS(3381), - [anon_sym_AMP] = ACTIONS(3383), - [anon_sym_LT] = ACTIONS(3381), - [anon_sym_COLON_COLON] = ACTIONS(1423), - [anon_sym_LBRACE] = ACTIONS(3381), - [anon_sym_LBRACK] = ACTIONS(3381), - [sym_primitive_type] = ACTIONS(2369), - [anon_sym_DASH_DASH] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [anon_sym_sizeof] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(1439), - [anon_sym_L_SQUOTE] = ACTIONS(1441), - [anon_sym_u_SQUOTE] = ACTIONS(1441), - [anon_sym_U_SQUOTE] = ACTIONS(1441), - [anon_sym_u8_SQUOTE] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1441), - [anon_sym_L_DQUOTE] = ACTIONS(1443), - [anon_sym_u_DQUOTE] = ACTIONS(1443), - [anon_sym_U_DQUOTE] = ACTIONS(1443), - [anon_sym_u8_DQUOTE] = ACTIONS(1443), - [anon_sym_DQUOTE] = ACTIONS(1443), - [sym_true] = ACTIONS(1445), - [sym_false] = ACTIONS(1445), - [sym_null] = ACTIONS(1445), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_co_await] = ACTIONS(1451), - [anon_sym_new] = ACTIONS(1453), - [anon_sym_requires] = ACTIONS(1455), - [sym_this] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(1445), - [sym_raw_string_literal] = ACTIONS(1457), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1297] = { - [sym__expression] = STATE(3537), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2981), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2981), - [sym_call_expression] = STATE(2981), - [sym_field_expression] = STATE(2981), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2981), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_lambda_default_capture] = STATE(6332), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2981), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3039), - [anon_sym_LPAREN2] = ACTIONS(3041), - [anon_sym_BANG] = ACTIONS(3045), - [anon_sym_TILDE] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(3357), - [anon_sym_COLON_COLON] = ACTIONS(3047), - [anon_sym_LBRACK] = ACTIONS(2272), - [anon_sym_RBRACK] = ACTIONS(3399), - [anon_sym_EQ] = ACTIONS(3361), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3049), - [anon_sym_PLUS_PLUS] = ACTIONS(3049), - [anon_sym_sizeof] = ACTIONS(3051), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3053), - [anon_sym_co_await] = ACTIONS(3055), - [anon_sym_new] = ACTIONS(3057), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [811] = { + [sym_identifier] = ACTIONS(2599), + [aux_sym_preproc_include_token1] = ACTIONS(2599), + [aux_sym_preproc_def_token1] = ACTIONS(2599), + [aux_sym_preproc_if_token1] = ACTIONS(2599), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2599), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2599), + [sym_preproc_directive] = ACTIONS(2599), + [anon_sym_LPAREN2] = ACTIONS(2601), + [anon_sym_BANG] = ACTIONS(2601), + [anon_sym_TILDE] = ACTIONS(2601), + [anon_sym_DASH] = ACTIONS(2599), + [anon_sym_PLUS] = ACTIONS(2599), + [anon_sym_STAR] = ACTIONS(2601), + [anon_sym_AMP_AMP] = ACTIONS(2601), + [anon_sym_AMP] = ACTIONS(2599), + [anon_sym_SEMI] = ACTIONS(2601), + [anon_sym_typedef] = ACTIONS(2599), + [anon_sym_extern] = ACTIONS(2599), + [anon_sym___attribute__] = ACTIONS(2599), + [anon_sym_COLON_COLON] = ACTIONS(2601), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2601), + [anon_sym___declspec] = ACTIONS(2599), + [anon_sym___based] = ACTIONS(2599), + [anon_sym___cdecl] = ACTIONS(2599), + [anon_sym___clrcall] = ACTIONS(2599), + [anon_sym___stdcall] = ACTIONS(2599), + [anon_sym___fastcall] = ACTIONS(2599), + [anon_sym___thiscall] = ACTIONS(2599), + [anon_sym___vectorcall] = ACTIONS(2599), + [anon_sym_LBRACE] = ACTIONS(2601), + [anon_sym_RBRACE] = ACTIONS(2601), + [anon_sym_LBRACK] = ACTIONS(2599), + [anon_sym_static] = ACTIONS(2599), + [anon_sym_register] = ACTIONS(2599), + [anon_sym_inline] = ACTIONS(2599), + [anon_sym_thread_local] = ACTIONS(2599), + [anon_sym_const] = ACTIONS(2599), + [anon_sym_volatile] = ACTIONS(2599), + [anon_sym_restrict] = ACTIONS(2599), + [anon_sym__Atomic] = ACTIONS(2599), + [anon_sym_mutable] = ACTIONS(2599), + [anon_sym_constexpr] = ACTIONS(2599), + [anon_sym_constinit] = ACTIONS(2599), + [anon_sym_consteval] = ACTIONS(2599), + [anon_sym_signed] = ACTIONS(2599), + [anon_sym_unsigned] = ACTIONS(2599), + [anon_sym_long] = ACTIONS(2599), + [anon_sym_short] = ACTIONS(2599), + [sym_primitive_type] = ACTIONS(2599), + [anon_sym_enum] = ACTIONS(2599), + [anon_sym_class] = ACTIONS(2599), + [anon_sym_struct] = ACTIONS(2599), + [anon_sym_union] = ACTIONS(2599), + [anon_sym_if] = ACTIONS(2599), + [anon_sym_else] = ACTIONS(2599), + [anon_sym_switch] = ACTIONS(2599), + [anon_sym_case] = ACTIONS(2599), + [anon_sym_default] = ACTIONS(2599), + [anon_sym_while] = ACTIONS(2599), + [anon_sym_do] = ACTIONS(2599), + [anon_sym_for] = ACTIONS(2599), + [anon_sym_return] = ACTIONS(2599), + [anon_sym_break] = ACTIONS(2599), + [anon_sym_continue] = ACTIONS(2599), + [anon_sym_goto] = ACTIONS(2599), + [anon_sym_not] = ACTIONS(2599), + [anon_sym_compl] = ACTIONS(2599), + [anon_sym_DASH_DASH] = ACTIONS(2601), + [anon_sym_PLUS_PLUS] = ACTIONS(2601), + [anon_sym_sizeof] = ACTIONS(2599), + [sym_number_literal] = ACTIONS(2601), + [anon_sym_L_SQUOTE] = ACTIONS(2601), + [anon_sym_u_SQUOTE] = ACTIONS(2601), + [anon_sym_U_SQUOTE] = ACTIONS(2601), + [anon_sym_u8_SQUOTE] = ACTIONS(2601), + [anon_sym_SQUOTE] = ACTIONS(2601), + [anon_sym_L_DQUOTE] = ACTIONS(2601), + [anon_sym_u_DQUOTE] = ACTIONS(2601), + [anon_sym_U_DQUOTE] = ACTIONS(2601), + [anon_sym_u8_DQUOTE] = ACTIONS(2601), + [anon_sym_DQUOTE] = ACTIONS(2601), + [sym_true] = ACTIONS(2599), + [sym_false] = ACTIONS(2599), + [sym_null] = ACTIONS(2599), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2599), + [anon_sym_decltype] = ACTIONS(2599), + [anon_sym_virtual] = ACTIONS(2599), + [anon_sym_explicit] = ACTIONS(2599), + [anon_sym_typename] = ACTIONS(2599), + [anon_sym_template] = ACTIONS(2599), + [anon_sym_operator] = ACTIONS(2599), + [anon_sym_try] = ACTIONS(2599), + [anon_sym_delete] = ACTIONS(2599), + [anon_sym_throw] = ACTIONS(2599), + [anon_sym_namespace] = ACTIONS(2599), + [anon_sym_using] = ACTIONS(2599), + [anon_sym_static_assert] = ACTIONS(2599), + [anon_sym_concept] = ACTIONS(2599), + [anon_sym_co_return] = ACTIONS(2599), + [anon_sym_co_yield] = ACTIONS(2599), + [anon_sym_co_await] = ACTIONS(2599), + [anon_sym_new] = ACTIONS(2599), + [anon_sym_requires] = ACTIONS(2599), + [sym_this] = ACTIONS(2599), + [sym_nullptr] = ACTIONS(2599), + [sym_raw_string_literal] = ACTIONS(2601), }, - [1298] = { - [sym__expression] = STATE(3537), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2981), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2981), - [sym_call_expression] = STATE(2981), - [sym_field_expression] = STATE(2981), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2981), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_lambda_default_capture] = STATE(6332), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2981), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3039), - [anon_sym_LPAREN2] = ACTIONS(3041), - [anon_sym_BANG] = ACTIONS(3045), - [anon_sym_TILDE] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(3357), - [anon_sym_COLON_COLON] = ACTIONS(3047), - [anon_sym_LBRACK] = ACTIONS(2272), - [anon_sym_RBRACK] = ACTIONS(3401), - [anon_sym_EQ] = ACTIONS(3361), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3049), - [anon_sym_PLUS_PLUS] = ACTIONS(3049), - [anon_sym_sizeof] = ACTIONS(3051), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3053), - [anon_sym_co_await] = ACTIONS(3055), - [anon_sym_new] = ACTIONS(3057), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [812] = { + [sym_identifier] = ACTIONS(2603), + [aux_sym_preproc_include_token1] = ACTIONS(2603), + [aux_sym_preproc_def_token1] = ACTIONS(2603), + [aux_sym_preproc_if_token1] = ACTIONS(2603), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2603), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2603), + [sym_preproc_directive] = ACTIONS(2603), + [anon_sym_LPAREN2] = ACTIONS(2605), + [anon_sym_BANG] = ACTIONS(2605), + [anon_sym_TILDE] = ACTIONS(2605), + [anon_sym_DASH] = ACTIONS(2603), + [anon_sym_PLUS] = ACTIONS(2603), + [anon_sym_STAR] = ACTIONS(2605), + [anon_sym_AMP_AMP] = ACTIONS(2605), + [anon_sym_AMP] = ACTIONS(2603), + [anon_sym_SEMI] = ACTIONS(2605), + [anon_sym_typedef] = ACTIONS(2603), + [anon_sym_extern] = ACTIONS(2603), + [anon_sym___attribute__] = ACTIONS(2603), + [anon_sym_COLON_COLON] = ACTIONS(2605), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2605), + [anon_sym___declspec] = ACTIONS(2603), + [anon_sym___based] = ACTIONS(2603), + [anon_sym___cdecl] = ACTIONS(2603), + [anon_sym___clrcall] = ACTIONS(2603), + [anon_sym___stdcall] = ACTIONS(2603), + [anon_sym___fastcall] = ACTIONS(2603), + [anon_sym___thiscall] = ACTIONS(2603), + [anon_sym___vectorcall] = ACTIONS(2603), + [anon_sym_LBRACE] = ACTIONS(2605), + [anon_sym_RBRACE] = ACTIONS(2605), + [anon_sym_LBRACK] = ACTIONS(2603), + [anon_sym_static] = ACTIONS(2603), + [anon_sym_register] = ACTIONS(2603), + [anon_sym_inline] = ACTIONS(2603), + [anon_sym_thread_local] = ACTIONS(2603), + [anon_sym_const] = ACTIONS(2603), + [anon_sym_volatile] = ACTIONS(2603), + [anon_sym_restrict] = ACTIONS(2603), + [anon_sym__Atomic] = ACTIONS(2603), + [anon_sym_mutable] = ACTIONS(2603), + [anon_sym_constexpr] = ACTIONS(2603), + [anon_sym_constinit] = ACTIONS(2603), + [anon_sym_consteval] = ACTIONS(2603), + [anon_sym_signed] = ACTIONS(2603), + [anon_sym_unsigned] = ACTIONS(2603), + [anon_sym_long] = ACTIONS(2603), + [anon_sym_short] = ACTIONS(2603), + [sym_primitive_type] = ACTIONS(2603), + [anon_sym_enum] = ACTIONS(2603), + [anon_sym_class] = ACTIONS(2603), + [anon_sym_struct] = ACTIONS(2603), + [anon_sym_union] = ACTIONS(2603), + [anon_sym_if] = ACTIONS(2603), + [anon_sym_else] = ACTIONS(2603), + [anon_sym_switch] = ACTIONS(2603), + [anon_sym_case] = ACTIONS(2603), + [anon_sym_default] = ACTIONS(2603), + [anon_sym_while] = ACTIONS(2603), + [anon_sym_do] = ACTIONS(2603), + [anon_sym_for] = ACTIONS(2603), + [anon_sym_return] = ACTIONS(2603), + [anon_sym_break] = ACTIONS(2603), + [anon_sym_continue] = ACTIONS(2603), + [anon_sym_goto] = ACTIONS(2603), + [anon_sym_not] = ACTIONS(2603), + [anon_sym_compl] = ACTIONS(2603), + [anon_sym_DASH_DASH] = ACTIONS(2605), + [anon_sym_PLUS_PLUS] = ACTIONS(2605), + [anon_sym_sizeof] = ACTIONS(2603), + [sym_number_literal] = ACTIONS(2605), + [anon_sym_L_SQUOTE] = ACTIONS(2605), + [anon_sym_u_SQUOTE] = ACTIONS(2605), + [anon_sym_U_SQUOTE] = ACTIONS(2605), + [anon_sym_u8_SQUOTE] = ACTIONS(2605), + [anon_sym_SQUOTE] = ACTIONS(2605), + [anon_sym_L_DQUOTE] = ACTIONS(2605), + [anon_sym_u_DQUOTE] = ACTIONS(2605), + [anon_sym_U_DQUOTE] = ACTIONS(2605), + [anon_sym_u8_DQUOTE] = ACTIONS(2605), + [anon_sym_DQUOTE] = ACTIONS(2605), + [sym_true] = ACTIONS(2603), + [sym_false] = ACTIONS(2603), + [sym_null] = ACTIONS(2603), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2603), + [anon_sym_decltype] = ACTIONS(2603), + [anon_sym_virtual] = ACTIONS(2603), + [anon_sym_explicit] = ACTIONS(2603), + [anon_sym_typename] = ACTIONS(2603), + [anon_sym_template] = ACTIONS(2603), + [anon_sym_operator] = ACTIONS(2603), + [anon_sym_try] = ACTIONS(2603), + [anon_sym_delete] = ACTIONS(2603), + [anon_sym_throw] = ACTIONS(2603), + [anon_sym_namespace] = ACTIONS(2603), + [anon_sym_using] = ACTIONS(2603), + [anon_sym_static_assert] = ACTIONS(2603), + [anon_sym_concept] = ACTIONS(2603), + [anon_sym_co_return] = ACTIONS(2603), + [anon_sym_co_yield] = ACTIONS(2603), + [anon_sym_co_await] = ACTIONS(2603), + [anon_sym_new] = ACTIONS(2603), + [anon_sym_requires] = ACTIONS(2603), + [sym_this] = ACTIONS(2603), + [sym_nullptr] = ACTIONS(2603), + [sym_raw_string_literal] = ACTIONS(2605), }, - [1299] = { - [sym__expression] = STATE(3574), - [sym_conditional_expression] = STATE(3881), - [sym_assignment_expression] = STATE(3881), - [sym_pointer_expression] = STATE(2977), - [sym_unary_expression] = STATE(3881), - [sym_binary_expression] = STATE(3881), - [sym_update_expression] = STATE(3881), - [sym_cast_expression] = STATE(3881), - [sym_sizeof_expression] = STATE(3881), - [sym_subscript_expression] = STATE(2977), - [sym_call_expression] = STATE(2977), - [sym_field_expression] = STATE(2977), - [sym_compound_literal_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(2977), - [sym_char_literal] = STATE(3701), - [sym_concatenated_string] = STATE(3701), - [sym_string_literal] = STATE(3219), - [sym__class_name] = STATE(6063), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3881), - [sym_co_await_expression] = STATE(3881), - [sym_new_expression] = STATE(3881), - [sym_delete_expression] = STATE(3881), - [sym_requires_clause] = STATE(3881), - [sym_requires_expression] = STATE(3881), - [sym_lambda_expression] = STATE(3881), - [sym_lambda_capture_specifier] = STATE(4519), - [sym_fold_expression] = STATE(3881), - [sym_parameter_pack_expansion] = STATE(3881), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4642), - [sym_qualified_identifier] = STATE(2977), - [sym_qualified_type_identifier] = STATE(6063), - [sym_user_defined_literal] = STATE(3881), - [sym_identifier] = ACTIONS(3035), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(2533), - [anon_sym_TILDE] = ACTIONS(2533), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_STAR] = ACTIONS(3381), - [anon_sym_AMP_AMP] = ACTIONS(3381), - [anon_sym_AMP] = ACTIONS(3383), - [anon_sym_LT] = ACTIONS(3381), - [anon_sym_COLON_COLON] = ACTIONS(2539), - [anon_sym_LBRACE] = ACTIONS(3381), - [anon_sym_LBRACK] = ACTIONS(3381), - [sym_primitive_type] = ACTIONS(2845), - [anon_sym_DASH_DASH] = ACTIONS(2553), - [anon_sym_PLUS_PLUS] = ACTIONS(2553), - [anon_sym_sizeof] = ACTIONS(2555), - [sym_number_literal] = ACTIONS(2557), - [anon_sym_L_SQUOTE] = ACTIONS(2559), - [anon_sym_u_SQUOTE] = ACTIONS(2559), - [anon_sym_U_SQUOTE] = ACTIONS(2559), - [anon_sym_u8_SQUOTE] = ACTIONS(2559), - [anon_sym_SQUOTE] = ACTIONS(2559), + [813] = { + [ts_builtin_sym_end] = ACTIONS(2561), + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), [anon_sym_L_DQUOTE] = ACTIONS(2561), [anon_sym_u_DQUOTE] = ACTIONS(2561), [anon_sym_U_DQUOTE] = ACTIONS(2561), [anon_sym_u8_DQUOTE] = ACTIONS(2561), [anon_sym_DQUOTE] = ACTIONS(2561), - [sym_true] = ACTIONS(2563), - [sym_false] = ACTIONS(2563), - [sym_null] = ACTIONS(2563), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2573), - [anon_sym_co_await] = ACTIONS(2575), - [anon_sym_new] = ACTIONS(2577), - [anon_sym_requires] = ACTIONS(2579), - [sym_this] = ACTIONS(2563), - [sym_nullptr] = ACTIONS(2563), - [sym_raw_string_literal] = ACTIONS(2581), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1300] = { - [sym__expression] = STATE(3537), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2981), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2981), - [sym_call_expression] = STATE(2981), - [sym_field_expression] = STATE(2981), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2981), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_lambda_default_capture] = STATE(6332), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2981), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3039), - [anon_sym_LPAREN2] = ACTIONS(3041), - [anon_sym_BANG] = ACTIONS(3045), - [anon_sym_TILDE] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(3357), - [anon_sym_COLON_COLON] = ACTIONS(3047), - [anon_sym_LBRACK] = ACTIONS(2272), - [anon_sym_RBRACK] = ACTIONS(3403), - [anon_sym_EQ] = ACTIONS(3361), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3049), - [anon_sym_PLUS_PLUS] = ACTIONS(3049), - [anon_sym_sizeof] = ACTIONS(3051), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3053), - [anon_sym_co_await] = ACTIONS(3055), - [anon_sym_new] = ACTIONS(3057), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [814] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token2] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1301] = { - [sym__expression] = STATE(3537), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2981), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2981), - [sym_call_expression] = STATE(2981), - [sym_field_expression] = STATE(2981), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2981), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_lambda_default_capture] = STATE(6332), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2981), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3039), - [anon_sym_LPAREN2] = ACTIONS(3041), - [anon_sym_BANG] = ACTIONS(3045), - [anon_sym_TILDE] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(3357), - [anon_sym_COLON_COLON] = ACTIONS(3047), - [anon_sym_LBRACK] = ACTIONS(2272), - [anon_sym_RBRACK] = ACTIONS(3405), - [anon_sym_EQ] = ACTIONS(3361), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3049), - [anon_sym_PLUS_PLUS] = ACTIONS(3049), - [anon_sym_sizeof] = ACTIONS(3051), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3053), - [anon_sym_co_await] = ACTIONS(3055), - [anon_sym_new] = ACTIONS(3057), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [815] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token2] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1302] = { - [sym__expression] = STATE(3537), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2981), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2981), - [sym_call_expression] = STATE(2981), - [sym_field_expression] = STATE(2981), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2981), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_lambda_default_capture] = STATE(6332), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2981), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3039), - [anon_sym_LPAREN2] = ACTIONS(3041), - [anon_sym_BANG] = ACTIONS(3045), - [anon_sym_TILDE] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(3357), - [anon_sym_COLON_COLON] = ACTIONS(3047), - [anon_sym_LBRACK] = ACTIONS(2272), - [anon_sym_RBRACK] = ACTIONS(3407), - [anon_sym_EQ] = ACTIONS(3361), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3049), - [anon_sym_PLUS_PLUS] = ACTIONS(3049), - [anon_sym_sizeof] = ACTIONS(3051), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3053), - [anon_sym_co_await] = ACTIONS(3055), - [anon_sym_new] = ACTIONS(3057), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [816] = { + [sym_identifier] = ACTIONS(2611), + [aux_sym_preproc_include_token1] = ACTIONS(2611), + [aux_sym_preproc_def_token1] = ACTIONS(2611), + [aux_sym_preproc_if_token1] = ACTIONS(2611), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2611), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2611), + [sym_preproc_directive] = ACTIONS(2611), + [anon_sym_LPAREN2] = ACTIONS(2613), + [anon_sym_BANG] = ACTIONS(2613), + [anon_sym_TILDE] = ACTIONS(2613), + [anon_sym_DASH] = ACTIONS(2611), + [anon_sym_PLUS] = ACTIONS(2611), + [anon_sym_STAR] = ACTIONS(2613), + [anon_sym_AMP_AMP] = ACTIONS(2613), + [anon_sym_AMP] = ACTIONS(2611), + [anon_sym_SEMI] = ACTIONS(2613), + [anon_sym_typedef] = ACTIONS(2611), + [anon_sym_extern] = ACTIONS(2611), + [anon_sym___attribute__] = ACTIONS(2611), + [anon_sym_COLON_COLON] = ACTIONS(2613), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2613), + [anon_sym___declspec] = ACTIONS(2611), + [anon_sym___based] = ACTIONS(2611), + [anon_sym___cdecl] = ACTIONS(2611), + [anon_sym___clrcall] = ACTIONS(2611), + [anon_sym___stdcall] = ACTIONS(2611), + [anon_sym___fastcall] = ACTIONS(2611), + [anon_sym___thiscall] = ACTIONS(2611), + [anon_sym___vectorcall] = ACTIONS(2611), + [anon_sym_LBRACE] = ACTIONS(2613), + [anon_sym_RBRACE] = ACTIONS(2613), + [anon_sym_LBRACK] = ACTIONS(2611), + [anon_sym_static] = ACTIONS(2611), + [anon_sym_register] = ACTIONS(2611), + [anon_sym_inline] = ACTIONS(2611), + [anon_sym_thread_local] = ACTIONS(2611), + [anon_sym_const] = ACTIONS(2611), + [anon_sym_volatile] = ACTIONS(2611), + [anon_sym_restrict] = ACTIONS(2611), + [anon_sym__Atomic] = ACTIONS(2611), + [anon_sym_mutable] = ACTIONS(2611), + [anon_sym_constexpr] = ACTIONS(2611), + [anon_sym_constinit] = ACTIONS(2611), + [anon_sym_consteval] = ACTIONS(2611), + [anon_sym_signed] = ACTIONS(2611), + [anon_sym_unsigned] = ACTIONS(2611), + [anon_sym_long] = ACTIONS(2611), + [anon_sym_short] = ACTIONS(2611), + [sym_primitive_type] = ACTIONS(2611), + [anon_sym_enum] = ACTIONS(2611), + [anon_sym_class] = ACTIONS(2611), + [anon_sym_struct] = ACTIONS(2611), + [anon_sym_union] = ACTIONS(2611), + [anon_sym_if] = ACTIONS(2611), + [anon_sym_else] = ACTIONS(2611), + [anon_sym_switch] = ACTIONS(2611), + [anon_sym_case] = ACTIONS(2611), + [anon_sym_default] = ACTIONS(2611), + [anon_sym_while] = ACTIONS(2611), + [anon_sym_do] = ACTIONS(2611), + [anon_sym_for] = ACTIONS(2611), + [anon_sym_return] = ACTIONS(2611), + [anon_sym_break] = ACTIONS(2611), + [anon_sym_continue] = ACTIONS(2611), + [anon_sym_goto] = ACTIONS(2611), + [anon_sym_not] = ACTIONS(2611), + [anon_sym_compl] = ACTIONS(2611), + [anon_sym_DASH_DASH] = ACTIONS(2613), + [anon_sym_PLUS_PLUS] = ACTIONS(2613), + [anon_sym_sizeof] = ACTIONS(2611), + [sym_number_literal] = ACTIONS(2613), + [anon_sym_L_SQUOTE] = ACTIONS(2613), + [anon_sym_u_SQUOTE] = ACTIONS(2613), + [anon_sym_U_SQUOTE] = ACTIONS(2613), + [anon_sym_u8_SQUOTE] = ACTIONS(2613), + [anon_sym_SQUOTE] = ACTIONS(2613), + [anon_sym_L_DQUOTE] = ACTIONS(2613), + [anon_sym_u_DQUOTE] = ACTIONS(2613), + [anon_sym_U_DQUOTE] = ACTIONS(2613), + [anon_sym_u8_DQUOTE] = ACTIONS(2613), + [anon_sym_DQUOTE] = ACTIONS(2613), + [sym_true] = ACTIONS(2611), + [sym_false] = ACTIONS(2611), + [sym_null] = ACTIONS(2611), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2611), + [anon_sym_decltype] = ACTIONS(2611), + [anon_sym_virtual] = ACTIONS(2611), + [anon_sym_explicit] = ACTIONS(2611), + [anon_sym_typename] = ACTIONS(2611), + [anon_sym_template] = ACTIONS(2611), + [anon_sym_operator] = ACTIONS(2611), + [anon_sym_try] = ACTIONS(2611), + [anon_sym_delete] = ACTIONS(2611), + [anon_sym_throw] = ACTIONS(2611), + [anon_sym_namespace] = ACTIONS(2611), + [anon_sym_using] = ACTIONS(2611), + [anon_sym_static_assert] = ACTIONS(2611), + [anon_sym_concept] = ACTIONS(2611), + [anon_sym_co_return] = ACTIONS(2611), + [anon_sym_co_yield] = ACTIONS(2611), + [anon_sym_co_await] = ACTIONS(2611), + [anon_sym_new] = ACTIONS(2611), + [anon_sym_requires] = ACTIONS(2611), + [sym_this] = ACTIONS(2611), + [sym_nullptr] = ACTIONS(2611), + [sym_raw_string_literal] = ACTIONS(2613), }, - [1303] = { - [sym__expression] = STATE(3038), - [sym_conditional_expression] = STATE(2541), - [sym_assignment_expression] = STATE(2541), - [sym_pointer_expression] = STATE(2531), - [sym_unary_expression] = STATE(2541), - [sym_binary_expression] = STATE(2541), - [sym_update_expression] = STATE(2541), - [sym_cast_expression] = STATE(2541), - [sym_sizeof_expression] = STATE(2541), - [sym_subscript_expression] = STATE(2531), - [sym_call_expression] = STATE(2531), - [sym_field_expression] = STATE(2531), - [sym_compound_literal_expression] = STATE(2541), - [sym_parenthesized_expression] = STATE(2531), - [sym_char_literal] = STATE(2481), - [sym_concatenated_string] = STATE(2481), - [sym_string_literal] = STATE(2063), - [sym__class_name] = STATE(6239), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2541), - [sym_co_await_expression] = STATE(2541), - [sym_new_expression] = STATE(2541), - [sym_delete_expression] = STATE(2541), - [sym_requires_clause] = STATE(2541), - [sym_requires_expression] = STATE(2541), - [sym_lambda_expression] = STATE(2541), - [sym_lambda_capture_specifier] = STATE(4508), - [sym_fold_expression] = STATE(2541), - [sym_parameter_pack_expansion] = STATE(2541), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2531), - [sym_qualified_type_identifier] = STATE(6239), - [sym_user_defined_literal] = STATE(2541), - [sym_identifier] = ACTIONS(2306), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(2895), - [anon_sym_TILDE] = ACTIONS(2895), - [anon_sym_DASH] = ACTIONS(2893), - [anon_sym_PLUS] = ACTIONS(2893), - [anon_sym_STAR] = ACTIONS(3381), - [anon_sym_AMP_AMP] = ACTIONS(3381), - [anon_sym_AMP] = ACTIONS(3383), - [anon_sym_LT] = ACTIONS(3381), - [anon_sym_COLON_COLON] = ACTIONS(2899), - [anon_sym_LBRACE] = ACTIONS(3381), - [anon_sym_LBRACK] = ACTIONS(3381), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(2901), - [anon_sym_PLUS_PLUS] = ACTIONS(2901), - [anon_sym_sizeof] = ACTIONS(2903), - [sym_number_literal] = ACTIONS(2326), - [anon_sym_L_SQUOTE] = ACTIONS(2328), - [anon_sym_u_SQUOTE] = ACTIONS(2328), - [anon_sym_U_SQUOTE] = ACTIONS(2328), - [anon_sym_u8_SQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2328), - [anon_sym_L_DQUOTE] = ACTIONS(2330), - [anon_sym_u_DQUOTE] = ACTIONS(2330), - [anon_sym_U_DQUOTE] = ACTIONS(2330), - [anon_sym_u8_DQUOTE] = ACTIONS(2330), - [anon_sym_DQUOTE] = ACTIONS(2330), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2905), - [anon_sym_co_await] = ACTIONS(2907), - [anon_sym_new] = ACTIONS(2909), - [anon_sym_requires] = ACTIONS(2340), - [sym_this] = ACTIONS(2332), - [sym_nullptr] = ACTIONS(2332), - [sym_raw_string_literal] = ACTIONS(2342), + [817] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token2] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1304] = { - [sym__expression] = STATE(3516), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_initializer_list] = STATE(5716), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_RPAREN] = ACTIONS(3409), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1465), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [818] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token2] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1305] = { - [sym__expression] = STATE(2618), - [sym_conditional_expression] = STATE(2541), - [sym_assignment_expression] = STATE(2541), - [sym_pointer_expression] = STATE(2531), - [sym_unary_expression] = STATE(2541), - [sym_binary_expression] = STATE(2541), - [sym_update_expression] = STATE(2541), - [sym_cast_expression] = STATE(2541), - [sym_sizeof_expression] = STATE(2541), - [sym_subscript_expression] = STATE(2531), - [sym_call_expression] = STATE(2531), - [sym_field_expression] = STATE(2531), - [sym_compound_literal_expression] = STATE(2541), - [sym_parenthesized_expression] = STATE(2531), - [sym_char_literal] = STATE(2481), - [sym_concatenated_string] = STATE(2481), - [sym_string_literal] = STATE(2063), - [sym__class_name] = STATE(6239), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2541), - [sym_co_await_expression] = STATE(2541), - [sym_new_expression] = STATE(2541), - [sym_delete_expression] = STATE(2541), - [sym_requires_clause] = STATE(2541), - [sym_requires_expression] = STATE(2541), - [sym_lambda_expression] = STATE(2541), - [sym_lambda_capture_specifier] = STATE(4508), - [sym_fold_expression] = STATE(2541), - [sym_parameter_pack_expansion] = STATE(2541), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2531), - [sym_qualified_type_identifier] = STATE(6239), - [sym_user_defined_literal] = STATE(2541), - [sym_identifier] = ACTIONS(2306), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(2314), - [anon_sym_TILDE] = ACTIONS(2314), - [anon_sym_DASH] = ACTIONS(2312), - [anon_sym_PLUS] = ACTIONS(2312), - [anon_sym_STAR] = ACTIONS(3381), - [anon_sym_AMP_AMP] = ACTIONS(3381), - [anon_sym_AMP] = ACTIONS(3383), - [anon_sym_LT] = ACTIONS(3381), - [anon_sym_COLON_COLON] = ACTIONS(2318), - [anon_sym_LBRACE] = ACTIONS(3381), - [anon_sym_LBRACK] = ACTIONS(3381), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(2322), - [anon_sym_PLUS_PLUS] = ACTIONS(2322), - [anon_sym_sizeof] = ACTIONS(2324), - [sym_number_literal] = ACTIONS(2326), - [anon_sym_L_SQUOTE] = ACTIONS(2328), - [anon_sym_u_SQUOTE] = ACTIONS(2328), - [anon_sym_U_SQUOTE] = ACTIONS(2328), - [anon_sym_u8_SQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2328), - [anon_sym_L_DQUOTE] = ACTIONS(2330), - [anon_sym_u_DQUOTE] = ACTIONS(2330), - [anon_sym_U_DQUOTE] = ACTIONS(2330), - [anon_sym_u8_DQUOTE] = ACTIONS(2330), - [anon_sym_DQUOTE] = ACTIONS(2330), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2334), - [anon_sym_co_await] = ACTIONS(2336), - [anon_sym_new] = ACTIONS(2338), - [anon_sym_requires] = ACTIONS(2340), - [sym_this] = ACTIONS(2332), - [sym_nullptr] = ACTIONS(2332), - [sym_raw_string_literal] = ACTIONS(2342), + [819] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token2] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1306] = { - [sym__expression] = STATE(3540), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_initializer_list] = STATE(5617), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_RPAREN] = ACTIONS(3411), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1465), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [820] = { + [sym_identifier] = ACTIONS(2627), + [aux_sym_preproc_include_token1] = ACTIONS(2627), + [aux_sym_preproc_def_token1] = ACTIONS(2627), + [aux_sym_preproc_if_token1] = ACTIONS(2627), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2627), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2627), + [sym_preproc_directive] = ACTIONS(2627), + [anon_sym_LPAREN2] = ACTIONS(2629), + [anon_sym_BANG] = ACTIONS(2629), + [anon_sym_TILDE] = ACTIONS(2629), + [anon_sym_DASH] = ACTIONS(2627), + [anon_sym_PLUS] = ACTIONS(2627), + [anon_sym_STAR] = ACTIONS(2629), + [anon_sym_AMP_AMP] = ACTIONS(2629), + [anon_sym_AMP] = ACTIONS(2627), + [anon_sym_SEMI] = ACTIONS(2629), + [anon_sym_typedef] = ACTIONS(2627), + [anon_sym_extern] = ACTIONS(2627), + [anon_sym___attribute__] = ACTIONS(2627), + [anon_sym_COLON_COLON] = ACTIONS(2629), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2629), + [anon_sym___declspec] = ACTIONS(2627), + [anon_sym___based] = ACTIONS(2627), + [anon_sym___cdecl] = ACTIONS(2627), + [anon_sym___clrcall] = ACTIONS(2627), + [anon_sym___stdcall] = ACTIONS(2627), + [anon_sym___fastcall] = ACTIONS(2627), + [anon_sym___thiscall] = ACTIONS(2627), + [anon_sym___vectorcall] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(2629), + [anon_sym_RBRACE] = ACTIONS(2629), + [anon_sym_LBRACK] = ACTIONS(2627), + [anon_sym_static] = ACTIONS(2627), + [anon_sym_register] = ACTIONS(2627), + [anon_sym_inline] = ACTIONS(2627), + [anon_sym_thread_local] = ACTIONS(2627), + [anon_sym_const] = ACTIONS(2627), + [anon_sym_volatile] = ACTIONS(2627), + [anon_sym_restrict] = ACTIONS(2627), + [anon_sym__Atomic] = ACTIONS(2627), + [anon_sym_mutable] = ACTIONS(2627), + [anon_sym_constexpr] = ACTIONS(2627), + [anon_sym_constinit] = ACTIONS(2627), + [anon_sym_consteval] = ACTIONS(2627), + [anon_sym_signed] = ACTIONS(2627), + [anon_sym_unsigned] = ACTIONS(2627), + [anon_sym_long] = ACTIONS(2627), + [anon_sym_short] = ACTIONS(2627), + [sym_primitive_type] = ACTIONS(2627), + [anon_sym_enum] = ACTIONS(2627), + [anon_sym_class] = ACTIONS(2627), + [anon_sym_struct] = ACTIONS(2627), + [anon_sym_union] = ACTIONS(2627), + [anon_sym_if] = ACTIONS(2627), + [anon_sym_else] = ACTIONS(2627), + [anon_sym_switch] = ACTIONS(2627), + [anon_sym_case] = ACTIONS(2627), + [anon_sym_default] = ACTIONS(2627), + [anon_sym_while] = ACTIONS(2627), + [anon_sym_do] = ACTIONS(2627), + [anon_sym_for] = ACTIONS(2627), + [anon_sym_return] = ACTIONS(2627), + [anon_sym_break] = ACTIONS(2627), + [anon_sym_continue] = ACTIONS(2627), + [anon_sym_goto] = ACTIONS(2627), + [anon_sym_not] = ACTIONS(2627), + [anon_sym_compl] = ACTIONS(2627), + [anon_sym_DASH_DASH] = ACTIONS(2629), + [anon_sym_PLUS_PLUS] = ACTIONS(2629), + [anon_sym_sizeof] = ACTIONS(2627), + [sym_number_literal] = ACTIONS(2629), + [anon_sym_L_SQUOTE] = ACTIONS(2629), + [anon_sym_u_SQUOTE] = ACTIONS(2629), + [anon_sym_U_SQUOTE] = ACTIONS(2629), + [anon_sym_u8_SQUOTE] = ACTIONS(2629), + [anon_sym_SQUOTE] = ACTIONS(2629), + [anon_sym_L_DQUOTE] = ACTIONS(2629), + [anon_sym_u_DQUOTE] = ACTIONS(2629), + [anon_sym_U_DQUOTE] = ACTIONS(2629), + [anon_sym_u8_DQUOTE] = ACTIONS(2629), + [anon_sym_DQUOTE] = ACTIONS(2629), + [sym_true] = ACTIONS(2627), + [sym_false] = ACTIONS(2627), + [sym_null] = ACTIONS(2627), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2627), + [anon_sym_decltype] = ACTIONS(2627), + [anon_sym_virtual] = ACTIONS(2627), + [anon_sym_explicit] = ACTIONS(2627), + [anon_sym_typename] = ACTIONS(2627), + [anon_sym_template] = ACTIONS(2627), + [anon_sym_operator] = ACTIONS(2627), + [anon_sym_try] = ACTIONS(2627), + [anon_sym_delete] = ACTIONS(2627), + [anon_sym_throw] = ACTIONS(2627), + [anon_sym_namespace] = ACTIONS(2627), + [anon_sym_using] = ACTIONS(2627), + [anon_sym_static_assert] = ACTIONS(2627), + [anon_sym_concept] = ACTIONS(2627), + [anon_sym_co_return] = ACTIONS(2627), + [anon_sym_co_yield] = ACTIONS(2627), + [anon_sym_co_await] = ACTIONS(2627), + [anon_sym_new] = ACTIONS(2627), + [anon_sym_requires] = ACTIONS(2627), + [sym_this] = ACTIONS(2627), + [sym_nullptr] = ACTIONS(2627), + [sym_raw_string_literal] = ACTIONS(2629), }, - [1307] = { - [sym__expression] = STATE(3041), - [sym_conditional_expression] = STATE(2541), - [sym_assignment_expression] = STATE(2541), - [sym_pointer_expression] = STATE(2531), - [sym_unary_expression] = STATE(2541), - [sym_binary_expression] = STATE(2541), - [sym_update_expression] = STATE(2541), - [sym_cast_expression] = STATE(2541), - [sym_sizeof_expression] = STATE(2541), - [sym_subscript_expression] = STATE(2531), - [sym_call_expression] = STATE(2531), - [sym_field_expression] = STATE(2531), - [sym_compound_literal_expression] = STATE(2541), - [sym_parenthesized_expression] = STATE(2531), - [sym_char_literal] = STATE(2481), - [sym_concatenated_string] = STATE(2481), - [sym_string_literal] = STATE(2063), - [sym__class_name] = STATE(6239), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2541), - [sym_co_await_expression] = STATE(2541), - [sym_new_expression] = STATE(2541), - [sym_delete_expression] = STATE(2541), - [sym_requires_clause] = STATE(2541), - [sym_requires_expression] = STATE(2541), - [sym_lambda_expression] = STATE(2541), - [sym_lambda_capture_specifier] = STATE(4508), - [sym_fold_expression] = STATE(2541), - [sym_parameter_pack_expansion] = STATE(2541), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2531), - [sym_qualified_type_identifier] = STATE(6239), - [sym_user_defined_literal] = STATE(2541), - [sym_identifier] = ACTIONS(2306), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(2895), - [anon_sym_TILDE] = ACTIONS(2895), - [anon_sym_DASH] = ACTIONS(2893), - [anon_sym_PLUS] = ACTIONS(2893), - [anon_sym_STAR] = ACTIONS(3381), - [anon_sym_AMP_AMP] = ACTIONS(3381), - [anon_sym_AMP] = ACTIONS(3383), - [anon_sym_LT] = ACTIONS(3381), - [anon_sym_COLON_COLON] = ACTIONS(2899), - [anon_sym_LBRACE] = ACTIONS(3381), - [anon_sym_LBRACK] = ACTIONS(3381), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(2901), - [anon_sym_PLUS_PLUS] = ACTIONS(2901), - [anon_sym_sizeof] = ACTIONS(2903), - [sym_number_literal] = ACTIONS(2326), - [anon_sym_L_SQUOTE] = ACTIONS(2328), - [anon_sym_u_SQUOTE] = ACTIONS(2328), - [anon_sym_U_SQUOTE] = ACTIONS(2328), - [anon_sym_u8_SQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2328), - [anon_sym_L_DQUOTE] = ACTIONS(2330), - [anon_sym_u_DQUOTE] = ACTIONS(2330), - [anon_sym_U_DQUOTE] = ACTIONS(2330), - [anon_sym_u8_DQUOTE] = ACTIONS(2330), - [anon_sym_DQUOTE] = ACTIONS(2330), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2905), - [anon_sym_co_await] = ACTIONS(2907), - [anon_sym_new] = ACTIONS(2909), - [anon_sym_requires] = ACTIONS(2340), - [sym_this] = ACTIONS(2332), - [sym_nullptr] = ACTIONS(2332), - [sym_raw_string_literal] = ACTIONS(2342), + [821] = { + [sym_identifier] = ACTIONS(2631), + [aux_sym_preproc_include_token1] = ACTIONS(2631), + [aux_sym_preproc_def_token1] = ACTIONS(2631), + [aux_sym_preproc_if_token1] = ACTIONS(2631), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2631), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2631), + [sym_preproc_directive] = ACTIONS(2631), + [anon_sym_LPAREN2] = ACTIONS(2633), + [anon_sym_BANG] = ACTIONS(2633), + [anon_sym_TILDE] = ACTIONS(2633), + [anon_sym_DASH] = ACTIONS(2631), + [anon_sym_PLUS] = ACTIONS(2631), + [anon_sym_STAR] = ACTIONS(2633), + [anon_sym_AMP_AMP] = ACTIONS(2633), + [anon_sym_AMP] = ACTIONS(2631), + [anon_sym_SEMI] = ACTIONS(2633), + [anon_sym_typedef] = ACTIONS(2631), + [anon_sym_extern] = ACTIONS(2631), + [anon_sym___attribute__] = ACTIONS(2631), + [anon_sym_COLON_COLON] = ACTIONS(2633), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2633), + [anon_sym___declspec] = ACTIONS(2631), + [anon_sym___based] = ACTIONS(2631), + [anon_sym___cdecl] = ACTIONS(2631), + [anon_sym___clrcall] = ACTIONS(2631), + [anon_sym___stdcall] = ACTIONS(2631), + [anon_sym___fastcall] = ACTIONS(2631), + [anon_sym___thiscall] = ACTIONS(2631), + [anon_sym___vectorcall] = ACTIONS(2631), + [anon_sym_LBRACE] = ACTIONS(2633), + [anon_sym_RBRACE] = ACTIONS(2633), + [anon_sym_LBRACK] = ACTIONS(2631), + [anon_sym_static] = ACTIONS(2631), + [anon_sym_register] = ACTIONS(2631), + [anon_sym_inline] = ACTIONS(2631), + [anon_sym_thread_local] = ACTIONS(2631), + [anon_sym_const] = ACTIONS(2631), + [anon_sym_volatile] = ACTIONS(2631), + [anon_sym_restrict] = ACTIONS(2631), + [anon_sym__Atomic] = ACTIONS(2631), + [anon_sym_mutable] = ACTIONS(2631), + [anon_sym_constexpr] = ACTIONS(2631), + [anon_sym_constinit] = ACTIONS(2631), + [anon_sym_consteval] = ACTIONS(2631), + [anon_sym_signed] = ACTIONS(2631), + [anon_sym_unsigned] = ACTIONS(2631), + [anon_sym_long] = ACTIONS(2631), + [anon_sym_short] = ACTIONS(2631), + [sym_primitive_type] = ACTIONS(2631), + [anon_sym_enum] = ACTIONS(2631), + [anon_sym_class] = ACTIONS(2631), + [anon_sym_struct] = ACTIONS(2631), + [anon_sym_union] = ACTIONS(2631), + [anon_sym_if] = ACTIONS(2631), + [anon_sym_else] = ACTIONS(2631), + [anon_sym_switch] = ACTIONS(2631), + [anon_sym_case] = ACTIONS(2631), + [anon_sym_default] = ACTIONS(2631), + [anon_sym_while] = ACTIONS(2631), + [anon_sym_do] = ACTIONS(2631), + [anon_sym_for] = ACTIONS(2631), + [anon_sym_return] = ACTIONS(2631), + [anon_sym_break] = ACTIONS(2631), + [anon_sym_continue] = ACTIONS(2631), + [anon_sym_goto] = ACTIONS(2631), + [anon_sym_not] = ACTIONS(2631), + [anon_sym_compl] = ACTIONS(2631), + [anon_sym_DASH_DASH] = ACTIONS(2633), + [anon_sym_PLUS_PLUS] = ACTIONS(2633), + [anon_sym_sizeof] = ACTIONS(2631), + [sym_number_literal] = ACTIONS(2633), + [anon_sym_L_SQUOTE] = ACTIONS(2633), + [anon_sym_u_SQUOTE] = ACTIONS(2633), + [anon_sym_U_SQUOTE] = ACTIONS(2633), + [anon_sym_u8_SQUOTE] = ACTIONS(2633), + [anon_sym_SQUOTE] = ACTIONS(2633), + [anon_sym_L_DQUOTE] = ACTIONS(2633), + [anon_sym_u_DQUOTE] = ACTIONS(2633), + [anon_sym_U_DQUOTE] = ACTIONS(2633), + [anon_sym_u8_DQUOTE] = ACTIONS(2633), + [anon_sym_DQUOTE] = ACTIONS(2633), + [sym_true] = ACTIONS(2631), + [sym_false] = ACTIONS(2631), + [sym_null] = ACTIONS(2631), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2631), + [anon_sym_decltype] = ACTIONS(2631), + [anon_sym_virtual] = ACTIONS(2631), + [anon_sym_explicit] = ACTIONS(2631), + [anon_sym_typename] = ACTIONS(2631), + [anon_sym_template] = ACTIONS(2631), + [anon_sym_operator] = ACTIONS(2631), + [anon_sym_try] = ACTIONS(2631), + [anon_sym_delete] = ACTIONS(2631), + [anon_sym_throw] = ACTIONS(2631), + [anon_sym_namespace] = ACTIONS(2631), + [anon_sym_using] = ACTIONS(2631), + [anon_sym_static_assert] = ACTIONS(2631), + [anon_sym_concept] = ACTIONS(2631), + [anon_sym_co_return] = ACTIONS(2631), + [anon_sym_co_yield] = ACTIONS(2631), + [anon_sym_co_await] = ACTIONS(2631), + [anon_sym_new] = ACTIONS(2631), + [anon_sym_requires] = ACTIONS(2631), + [sym_this] = ACTIONS(2631), + [sym_nullptr] = ACTIONS(2631), + [sym_raw_string_literal] = ACTIONS(2633), }, - [1308] = { - [sym__expression] = STATE(3943), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_initializer_list] = STATE(6719), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1465), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_default] = ACTIONS(3413), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3415), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [822] = { + [ts_builtin_sym_end] = ACTIONS(2561), + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1309] = { - [sym__expression] = STATE(3546), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_initializer_list] = STATE(5779), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_RPAREN] = ACTIONS(3417), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1465), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [823] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token2] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1310] = { - [sym__expression] = STATE(3538), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2981), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2981), - [sym_call_expression] = STATE(2981), - [sym_field_expression] = STATE(2981), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2981), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_lambda_default_capture] = STATE(6332), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2981), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3039), - [anon_sym_LPAREN2] = ACTIONS(3041), - [anon_sym_BANG] = ACTIONS(3045), - [anon_sym_TILDE] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(3357), - [anon_sym_COLON_COLON] = ACTIONS(3047), - [anon_sym_LBRACK] = ACTIONS(2272), - [anon_sym_RBRACK] = ACTIONS(3389), - [anon_sym_EQ] = ACTIONS(3361), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3049), - [anon_sym_PLUS_PLUS] = ACTIONS(3049), - [anon_sym_sizeof] = ACTIONS(3051), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [824] = { + [sym_identifier] = ACTIONS(2639), + [aux_sym_preproc_include_token1] = ACTIONS(2639), + [aux_sym_preproc_def_token1] = ACTIONS(2639), + [aux_sym_preproc_if_token1] = ACTIONS(2639), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2639), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2639), + [sym_preproc_directive] = ACTIONS(2639), + [anon_sym_LPAREN2] = ACTIONS(2641), + [anon_sym_BANG] = ACTIONS(2641), + [anon_sym_TILDE] = ACTIONS(2641), + [anon_sym_DASH] = ACTIONS(2639), + [anon_sym_PLUS] = ACTIONS(2639), + [anon_sym_STAR] = ACTIONS(2641), + [anon_sym_AMP_AMP] = ACTIONS(2641), + [anon_sym_AMP] = ACTIONS(2639), + [anon_sym_SEMI] = ACTIONS(2641), + [anon_sym_typedef] = ACTIONS(2639), + [anon_sym_extern] = ACTIONS(2639), + [anon_sym___attribute__] = ACTIONS(2639), + [anon_sym_COLON_COLON] = ACTIONS(2641), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2641), + [anon_sym___declspec] = ACTIONS(2639), + [anon_sym___based] = ACTIONS(2639), + [anon_sym___cdecl] = ACTIONS(2639), + [anon_sym___clrcall] = ACTIONS(2639), + [anon_sym___stdcall] = ACTIONS(2639), + [anon_sym___fastcall] = ACTIONS(2639), + [anon_sym___thiscall] = ACTIONS(2639), + [anon_sym___vectorcall] = ACTIONS(2639), + [anon_sym_LBRACE] = ACTIONS(2641), + [anon_sym_RBRACE] = ACTIONS(2641), + [anon_sym_LBRACK] = ACTIONS(2639), + [anon_sym_static] = ACTIONS(2639), + [anon_sym_register] = ACTIONS(2639), + [anon_sym_inline] = ACTIONS(2639), + [anon_sym_thread_local] = ACTIONS(2639), + [anon_sym_const] = ACTIONS(2639), + [anon_sym_volatile] = ACTIONS(2639), + [anon_sym_restrict] = ACTIONS(2639), + [anon_sym__Atomic] = ACTIONS(2639), + [anon_sym_mutable] = ACTIONS(2639), + [anon_sym_constexpr] = ACTIONS(2639), + [anon_sym_constinit] = ACTIONS(2639), + [anon_sym_consteval] = ACTIONS(2639), + [anon_sym_signed] = ACTIONS(2639), + [anon_sym_unsigned] = ACTIONS(2639), + [anon_sym_long] = ACTIONS(2639), + [anon_sym_short] = ACTIONS(2639), + [sym_primitive_type] = ACTIONS(2639), + [anon_sym_enum] = ACTIONS(2639), + [anon_sym_class] = ACTIONS(2639), + [anon_sym_struct] = ACTIONS(2639), + [anon_sym_union] = ACTIONS(2639), + [anon_sym_if] = ACTIONS(2639), + [anon_sym_else] = ACTIONS(2639), + [anon_sym_switch] = ACTIONS(2639), + [anon_sym_case] = ACTIONS(2639), + [anon_sym_default] = ACTIONS(2639), + [anon_sym_while] = ACTIONS(2639), + [anon_sym_do] = ACTIONS(2639), + [anon_sym_for] = ACTIONS(2639), + [anon_sym_return] = ACTIONS(2639), + [anon_sym_break] = ACTIONS(2639), + [anon_sym_continue] = ACTIONS(2639), + [anon_sym_goto] = ACTIONS(2639), + [anon_sym_not] = ACTIONS(2639), + [anon_sym_compl] = ACTIONS(2639), + [anon_sym_DASH_DASH] = ACTIONS(2641), + [anon_sym_PLUS_PLUS] = ACTIONS(2641), + [anon_sym_sizeof] = ACTIONS(2639), + [sym_number_literal] = ACTIONS(2641), + [anon_sym_L_SQUOTE] = ACTIONS(2641), + [anon_sym_u_SQUOTE] = ACTIONS(2641), + [anon_sym_U_SQUOTE] = ACTIONS(2641), + [anon_sym_u8_SQUOTE] = ACTIONS(2641), + [anon_sym_SQUOTE] = ACTIONS(2641), + [anon_sym_L_DQUOTE] = ACTIONS(2641), + [anon_sym_u_DQUOTE] = ACTIONS(2641), + [anon_sym_U_DQUOTE] = ACTIONS(2641), + [anon_sym_u8_DQUOTE] = ACTIONS(2641), + [anon_sym_DQUOTE] = ACTIONS(2641), + [sym_true] = ACTIONS(2639), + [sym_false] = ACTIONS(2639), + [sym_null] = ACTIONS(2639), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3053), - [anon_sym_co_await] = ACTIONS(3055), - [anon_sym_new] = ACTIONS(3057), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2639), + [anon_sym_decltype] = ACTIONS(2639), + [anon_sym_virtual] = ACTIONS(2639), + [anon_sym_explicit] = ACTIONS(2639), + [anon_sym_typename] = ACTIONS(2639), + [anon_sym_template] = ACTIONS(2639), + [anon_sym_operator] = ACTIONS(2639), + [anon_sym_try] = ACTIONS(2639), + [anon_sym_delete] = ACTIONS(2639), + [anon_sym_throw] = ACTIONS(2639), + [anon_sym_namespace] = ACTIONS(2639), + [anon_sym_using] = ACTIONS(2639), + [anon_sym_static_assert] = ACTIONS(2639), + [anon_sym_concept] = ACTIONS(2639), + [anon_sym_co_return] = ACTIONS(2639), + [anon_sym_co_yield] = ACTIONS(2639), + [anon_sym_co_await] = ACTIONS(2639), + [anon_sym_new] = ACTIONS(2639), + [anon_sym_requires] = ACTIONS(2639), + [sym_this] = ACTIONS(2639), + [sym_nullptr] = ACTIONS(2639), + [sym_raw_string_literal] = ACTIONS(2641), }, - [1311] = { - [sym__expression] = STATE(3537), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2981), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2981), - [sym_call_expression] = STATE(2981), - [sym_field_expression] = STATE(2981), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2981), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_lambda_default_capture] = STATE(6332), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2981), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3039), - [anon_sym_LPAREN2] = ACTIONS(3041), - [anon_sym_BANG] = ACTIONS(3045), - [anon_sym_TILDE] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(3357), - [anon_sym_COLON_COLON] = ACTIONS(3047), - [anon_sym_LBRACK] = ACTIONS(2272), - [anon_sym_RBRACK] = ACTIONS(3419), - [anon_sym_EQ] = ACTIONS(3361), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3049), - [anon_sym_PLUS_PLUS] = ACTIONS(3049), - [anon_sym_sizeof] = ACTIONS(3051), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3053), - [anon_sym_co_await] = ACTIONS(3055), - [anon_sym_new] = ACTIONS(3057), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), - }, - [1312] = { - [sym__expression] = STATE(3477), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(3381), - [anon_sym_AMP_AMP] = ACTIONS(3381), - [anon_sym_AMP] = ACTIONS(3383), - [anon_sym_LT] = ACTIONS(3381), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3381), - [anon_sym_LBRACK] = ACTIONS(3381), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [825] = { + [sym_identifier] = ACTIONS(2643), + [aux_sym_preproc_include_token1] = ACTIONS(2643), + [aux_sym_preproc_def_token1] = ACTIONS(2643), + [aux_sym_preproc_if_token1] = ACTIONS(2643), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2643), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2643), + [sym_preproc_directive] = ACTIONS(2643), + [anon_sym_LPAREN2] = ACTIONS(2645), + [anon_sym_BANG] = ACTIONS(2645), + [anon_sym_TILDE] = ACTIONS(2645), + [anon_sym_DASH] = ACTIONS(2643), + [anon_sym_PLUS] = ACTIONS(2643), + [anon_sym_STAR] = ACTIONS(2645), + [anon_sym_AMP_AMP] = ACTIONS(2645), + [anon_sym_AMP] = ACTIONS(2643), + [anon_sym_SEMI] = ACTIONS(2645), + [anon_sym_typedef] = ACTIONS(2643), + [anon_sym_extern] = ACTIONS(2643), + [anon_sym___attribute__] = ACTIONS(2643), + [anon_sym_COLON_COLON] = ACTIONS(2645), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2645), + [anon_sym___declspec] = ACTIONS(2643), + [anon_sym___based] = ACTIONS(2643), + [anon_sym___cdecl] = ACTIONS(2643), + [anon_sym___clrcall] = ACTIONS(2643), + [anon_sym___stdcall] = ACTIONS(2643), + [anon_sym___fastcall] = ACTIONS(2643), + [anon_sym___thiscall] = ACTIONS(2643), + [anon_sym___vectorcall] = ACTIONS(2643), + [anon_sym_LBRACE] = ACTIONS(2645), + [anon_sym_RBRACE] = ACTIONS(2645), + [anon_sym_LBRACK] = ACTIONS(2643), + [anon_sym_static] = ACTIONS(2643), + [anon_sym_register] = ACTIONS(2643), + [anon_sym_inline] = ACTIONS(2643), + [anon_sym_thread_local] = ACTIONS(2643), + [anon_sym_const] = ACTIONS(2643), + [anon_sym_volatile] = ACTIONS(2643), + [anon_sym_restrict] = ACTIONS(2643), + [anon_sym__Atomic] = ACTIONS(2643), + [anon_sym_mutable] = ACTIONS(2643), + [anon_sym_constexpr] = ACTIONS(2643), + [anon_sym_constinit] = ACTIONS(2643), + [anon_sym_consteval] = ACTIONS(2643), + [anon_sym_signed] = ACTIONS(2643), + [anon_sym_unsigned] = ACTIONS(2643), + [anon_sym_long] = ACTIONS(2643), + [anon_sym_short] = ACTIONS(2643), + [sym_primitive_type] = ACTIONS(2643), + [anon_sym_enum] = ACTIONS(2643), + [anon_sym_class] = ACTIONS(2643), + [anon_sym_struct] = ACTIONS(2643), + [anon_sym_union] = ACTIONS(2643), + [anon_sym_if] = ACTIONS(2643), + [anon_sym_else] = ACTIONS(2643), + [anon_sym_switch] = ACTIONS(2643), + [anon_sym_case] = ACTIONS(2643), + [anon_sym_default] = ACTIONS(2643), + [anon_sym_while] = ACTIONS(2643), + [anon_sym_do] = ACTIONS(2643), + [anon_sym_for] = ACTIONS(2643), + [anon_sym_return] = ACTIONS(2643), + [anon_sym_break] = ACTIONS(2643), + [anon_sym_continue] = ACTIONS(2643), + [anon_sym_goto] = ACTIONS(2643), + [anon_sym_not] = ACTIONS(2643), + [anon_sym_compl] = ACTIONS(2643), + [anon_sym_DASH_DASH] = ACTIONS(2645), + [anon_sym_PLUS_PLUS] = ACTIONS(2645), + [anon_sym_sizeof] = ACTIONS(2643), + [sym_number_literal] = ACTIONS(2645), + [anon_sym_L_SQUOTE] = ACTIONS(2645), + [anon_sym_u_SQUOTE] = ACTIONS(2645), + [anon_sym_U_SQUOTE] = ACTIONS(2645), + [anon_sym_u8_SQUOTE] = ACTIONS(2645), + [anon_sym_SQUOTE] = ACTIONS(2645), + [anon_sym_L_DQUOTE] = ACTIONS(2645), + [anon_sym_u_DQUOTE] = ACTIONS(2645), + [anon_sym_U_DQUOTE] = ACTIONS(2645), + [anon_sym_u8_DQUOTE] = ACTIONS(2645), + [anon_sym_DQUOTE] = ACTIONS(2645), + [sym_true] = ACTIONS(2643), + [sym_false] = ACTIONS(2643), + [sym_null] = ACTIONS(2643), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2643), + [anon_sym_decltype] = ACTIONS(2643), + [anon_sym_virtual] = ACTIONS(2643), + [anon_sym_explicit] = ACTIONS(2643), + [anon_sym_typename] = ACTIONS(2643), + [anon_sym_template] = ACTIONS(2643), + [anon_sym_operator] = ACTIONS(2643), + [anon_sym_try] = ACTIONS(2643), + [anon_sym_delete] = ACTIONS(2643), + [anon_sym_throw] = ACTIONS(2643), + [anon_sym_namespace] = ACTIONS(2643), + [anon_sym_using] = ACTIONS(2643), + [anon_sym_static_assert] = ACTIONS(2643), + [anon_sym_concept] = ACTIONS(2643), + [anon_sym_co_return] = ACTIONS(2643), + [anon_sym_co_yield] = ACTIONS(2643), + [anon_sym_co_await] = ACTIONS(2643), + [anon_sym_new] = ACTIONS(2643), + [anon_sym_requires] = ACTIONS(2643), + [sym_this] = ACTIONS(2643), + [sym_nullptr] = ACTIONS(2643), + [sym_raw_string_literal] = ACTIONS(2645), }, - [1313] = { - [sym__expression] = STATE(3537), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2981), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2981), - [sym_call_expression] = STATE(2981), - [sym_field_expression] = STATE(2981), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2981), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_lambda_default_capture] = STATE(6332), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2981), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3039), - [anon_sym_LPAREN2] = ACTIONS(3041), - [anon_sym_BANG] = ACTIONS(3045), - [anon_sym_TILDE] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(3357), - [anon_sym_COLON_COLON] = ACTIONS(3047), - [anon_sym_LBRACK] = ACTIONS(2272), - [anon_sym_RBRACK] = ACTIONS(3421), - [anon_sym_EQ] = ACTIONS(3361), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3049), - [anon_sym_PLUS_PLUS] = ACTIONS(3049), - [anon_sym_sizeof] = ACTIONS(3051), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3053), - [anon_sym_co_await] = ACTIONS(3055), - [anon_sym_new] = ACTIONS(3057), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [826] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token2] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1314] = { - [sym__expression] = STATE(3488), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(3381), - [anon_sym_AMP_AMP] = ACTIONS(3381), - [anon_sym_AMP] = ACTIONS(3383), - [anon_sym_LT] = ACTIONS(3381), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(3381), - [anon_sym_LBRACK] = ACTIONS(3381), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [827] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token2] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1315] = { - [sym__expression] = STATE(3537), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2981), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2981), - [sym_call_expression] = STATE(2981), - [sym_field_expression] = STATE(2981), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2981), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_lambda_default_capture] = STATE(6332), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2981), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3039), - [anon_sym_LPAREN2] = ACTIONS(3041), - [anon_sym_BANG] = ACTIONS(3045), - [anon_sym_TILDE] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(3357), - [anon_sym_COLON_COLON] = ACTIONS(3047), - [anon_sym_LBRACK] = ACTIONS(2272), - [anon_sym_RBRACK] = ACTIONS(3423), - [anon_sym_EQ] = ACTIONS(3361), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3049), - [anon_sym_PLUS_PLUS] = ACTIONS(3049), - [anon_sym_sizeof] = ACTIONS(3051), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [828] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token2] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), + }, + [829] = { + [sym_identifier] = ACTIONS(2651), + [aux_sym_preproc_include_token1] = ACTIONS(2651), + [aux_sym_preproc_def_token1] = ACTIONS(2651), + [aux_sym_preproc_if_token1] = ACTIONS(2651), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2651), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2651), + [sym_preproc_directive] = ACTIONS(2651), + [anon_sym_LPAREN2] = ACTIONS(2653), + [anon_sym_BANG] = ACTIONS(2653), + [anon_sym_TILDE] = ACTIONS(2653), + [anon_sym_DASH] = ACTIONS(2651), + [anon_sym_PLUS] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2653), + [anon_sym_AMP_AMP] = ACTIONS(2653), + [anon_sym_AMP] = ACTIONS(2651), + [anon_sym_SEMI] = ACTIONS(2653), + [anon_sym_typedef] = ACTIONS(2651), + [anon_sym_extern] = ACTIONS(2651), + [anon_sym___attribute__] = ACTIONS(2651), + [anon_sym_COLON_COLON] = ACTIONS(2653), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2653), + [anon_sym___declspec] = ACTIONS(2651), + [anon_sym___based] = ACTIONS(2651), + [anon_sym___cdecl] = ACTIONS(2651), + [anon_sym___clrcall] = ACTIONS(2651), + [anon_sym___stdcall] = ACTIONS(2651), + [anon_sym___fastcall] = ACTIONS(2651), + [anon_sym___thiscall] = ACTIONS(2651), + [anon_sym___vectorcall] = ACTIONS(2651), + [anon_sym_LBRACE] = ACTIONS(2653), + [anon_sym_RBRACE] = ACTIONS(2653), + [anon_sym_LBRACK] = ACTIONS(2651), + [anon_sym_static] = ACTIONS(2651), + [anon_sym_register] = ACTIONS(2651), + [anon_sym_inline] = ACTIONS(2651), + [anon_sym_thread_local] = ACTIONS(2651), + [anon_sym_const] = ACTIONS(2651), + [anon_sym_volatile] = ACTIONS(2651), + [anon_sym_restrict] = ACTIONS(2651), + [anon_sym__Atomic] = ACTIONS(2651), + [anon_sym_mutable] = ACTIONS(2651), + [anon_sym_constexpr] = ACTIONS(2651), + [anon_sym_constinit] = ACTIONS(2651), + [anon_sym_consteval] = ACTIONS(2651), + [anon_sym_signed] = ACTIONS(2651), + [anon_sym_unsigned] = ACTIONS(2651), + [anon_sym_long] = ACTIONS(2651), + [anon_sym_short] = ACTIONS(2651), + [sym_primitive_type] = ACTIONS(2651), + [anon_sym_enum] = ACTIONS(2651), + [anon_sym_class] = ACTIONS(2651), + [anon_sym_struct] = ACTIONS(2651), + [anon_sym_union] = ACTIONS(2651), + [anon_sym_if] = ACTIONS(2651), + [anon_sym_else] = ACTIONS(2651), + [anon_sym_switch] = ACTIONS(2651), + [anon_sym_case] = ACTIONS(2651), + [anon_sym_default] = ACTIONS(2651), + [anon_sym_while] = ACTIONS(2651), + [anon_sym_do] = ACTIONS(2651), + [anon_sym_for] = ACTIONS(2651), + [anon_sym_return] = ACTIONS(2651), + [anon_sym_break] = ACTIONS(2651), + [anon_sym_continue] = ACTIONS(2651), + [anon_sym_goto] = ACTIONS(2651), + [anon_sym_not] = ACTIONS(2651), + [anon_sym_compl] = ACTIONS(2651), + [anon_sym_DASH_DASH] = ACTIONS(2653), + [anon_sym_PLUS_PLUS] = ACTIONS(2653), + [anon_sym_sizeof] = ACTIONS(2651), + [sym_number_literal] = ACTIONS(2653), + [anon_sym_L_SQUOTE] = ACTIONS(2653), + [anon_sym_u_SQUOTE] = ACTIONS(2653), + [anon_sym_U_SQUOTE] = ACTIONS(2653), + [anon_sym_u8_SQUOTE] = ACTIONS(2653), + [anon_sym_SQUOTE] = ACTIONS(2653), + [anon_sym_L_DQUOTE] = ACTIONS(2653), + [anon_sym_u_DQUOTE] = ACTIONS(2653), + [anon_sym_U_DQUOTE] = ACTIONS(2653), + [anon_sym_u8_DQUOTE] = ACTIONS(2653), + [anon_sym_DQUOTE] = ACTIONS(2653), + [sym_true] = ACTIONS(2651), + [sym_false] = ACTIONS(2651), + [sym_null] = ACTIONS(2651), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3053), - [anon_sym_co_await] = ACTIONS(3055), - [anon_sym_new] = ACTIONS(3057), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2651), + [anon_sym_decltype] = ACTIONS(2651), + [anon_sym_virtual] = ACTIONS(2651), + [anon_sym_explicit] = ACTIONS(2651), + [anon_sym_typename] = ACTIONS(2651), + [anon_sym_template] = ACTIONS(2651), + [anon_sym_operator] = ACTIONS(2651), + [anon_sym_try] = ACTIONS(2651), + [anon_sym_delete] = ACTIONS(2651), + [anon_sym_throw] = ACTIONS(2651), + [anon_sym_namespace] = ACTIONS(2651), + [anon_sym_using] = ACTIONS(2651), + [anon_sym_static_assert] = ACTIONS(2651), + [anon_sym_concept] = ACTIONS(2651), + [anon_sym_co_return] = ACTIONS(2651), + [anon_sym_co_yield] = ACTIONS(2651), + [anon_sym_co_await] = ACTIONS(2651), + [anon_sym_new] = ACTIONS(2651), + [anon_sym_requires] = ACTIONS(2651), + [sym_this] = ACTIONS(2651), + [sym_nullptr] = ACTIONS(2651), + [sym_raw_string_literal] = ACTIONS(2653), }, - [1316] = { - [sym__expression] = STATE(3537), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2981), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2981), - [sym_call_expression] = STATE(2981), - [sym_field_expression] = STATE(2981), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2981), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_lambda_default_capture] = STATE(6332), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2981), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3039), - [anon_sym_LPAREN2] = ACTIONS(3041), - [anon_sym_BANG] = ACTIONS(3045), - [anon_sym_TILDE] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(3357), - [anon_sym_COLON_COLON] = ACTIONS(3047), - [anon_sym_LBRACK] = ACTIONS(2272), - [anon_sym_RBRACK] = ACTIONS(3425), - [anon_sym_EQ] = ACTIONS(3361), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3049), - [anon_sym_PLUS_PLUS] = ACTIONS(3049), - [anon_sym_sizeof] = ACTIONS(3051), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [830] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token2] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), + }, + [831] = { + [ts_builtin_sym_end] = ACTIONS(2597), + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3053), - [anon_sym_co_await] = ACTIONS(3055), - [anon_sym_new] = ACTIONS(3057), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1317] = { - [sym__expression] = STATE(3537), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2981), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2981), - [sym_call_expression] = STATE(2981), - [sym_field_expression] = STATE(2981), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2981), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_lambda_default_capture] = STATE(6332), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2981), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3039), - [anon_sym_LPAREN2] = ACTIONS(3041), - [anon_sym_BANG] = ACTIONS(3045), - [anon_sym_TILDE] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(3357), - [anon_sym_COLON_COLON] = ACTIONS(3047), - [anon_sym_LBRACK] = ACTIONS(2272), - [anon_sym_RBRACK] = ACTIONS(3427), - [anon_sym_EQ] = ACTIONS(3361), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3049), - [anon_sym_PLUS_PLUS] = ACTIONS(3049), - [anon_sym_sizeof] = ACTIONS(3051), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [832] = { + [sym_identifier] = ACTIONS(2567), + [aux_sym_preproc_include_token1] = ACTIONS(2567), + [aux_sym_preproc_def_token1] = ACTIONS(2567), + [aux_sym_preproc_if_token1] = ACTIONS(2567), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2567), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2567), + [sym_preproc_directive] = ACTIONS(2567), + [anon_sym_LPAREN2] = ACTIONS(2569), + [anon_sym_BANG] = ACTIONS(2569), + [anon_sym_TILDE] = ACTIONS(2569), + [anon_sym_DASH] = ACTIONS(2567), + [anon_sym_PLUS] = ACTIONS(2567), + [anon_sym_STAR] = ACTIONS(2569), + [anon_sym_AMP_AMP] = ACTIONS(2569), + [anon_sym_AMP] = ACTIONS(2567), + [anon_sym_SEMI] = ACTIONS(2569), + [anon_sym_typedef] = ACTIONS(2567), + [anon_sym_extern] = ACTIONS(2567), + [anon_sym___attribute__] = ACTIONS(2567), + [anon_sym_COLON_COLON] = ACTIONS(2569), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2569), + [anon_sym___declspec] = ACTIONS(2567), + [anon_sym___based] = ACTIONS(2567), + [anon_sym___cdecl] = ACTIONS(2567), + [anon_sym___clrcall] = ACTIONS(2567), + [anon_sym___stdcall] = ACTIONS(2567), + [anon_sym___fastcall] = ACTIONS(2567), + [anon_sym___thiscall] = ACTIONS(2567), + [anon_sym___vectorcall] = ACTIONS(2567), + [anon_sym_LBRACE] = ACTIONS(2569), + [anon_sym_RBRACE] = ACTIONS(2569), + [anon_sym_LBRACK] = ACTIONS(2567), + [anon_sym_static] = ACTIONS(2567), + [anon_sym_register] = ACTIONS(2567), + [anon_sym_inline] = ACTIONS(2567), + [anon_sym_thread_local] = ACTIONS(2567), + [anon_sym_const] = ACTIONS(2567), + [anon_sym_volatile] = ACTIONS(2567), + [anon_sym_restrict] = ACTIONS(2567), + [anon_sym__Atomic] = ACTIONS(2567), + [anon_sym_mutable] = ACTIONS(2567), + [anon_sym_constexpr] = ACTIONS(2567), + [anon_sym_constinit] = ACTIONS(2567), + [anon_sym_consteval] = ACTIONS(2567), + [anon_sym_signed] = ACTIONS(2567), + [anon_sym_unsigned] = ACTIONS(2567), + [anon_sym_long] = ACTIONS(2567), + [anon_sym_short] = ACTIONS(2567), + [sym_primitive_type] = ACTIONS(2567), + [anon_sym_enum] = ACTIONS(2567), + [anon_sym_class] = ACTIONS(2567), + [anon_sym_struct] = ACTIONS(2567), + [anon_sym_union] = ACTIONS(2567), + [anon_sym_if] = ACTIONS(2567), + [anon_sym_else] = ACTIONS(2567), + [anon_sym_switch] = ACTIONS(2567), + [anon_sym_case] = ACTIONS(2567), + [anon_sym_default] = ACTIONS(2567), + [anon_sym_while] = ACTIONS(2567), + [anon_sym_do] = ACTIONS(2567), + [anon_sym_for] = ACTIONS(2567), + [anon_sym_return] = ACTIONS(2567), + [anon_sym_break] = ACTIONS(2567), + [anon_sym_continue] = ACTIONS(2567), + [anon_sym_goto] = ACTIONS(2567), + [anon_sym_not] = ACTIONS(2567), + [anon_sym_compl] = ACTIONS(2567), + [anon_sym_DASH_DASH] = ACTIONS(2569), + [anon_sym_PLUS_PLUS] = ACTIONS(2569), + [anon_sym_sizeof] = ACTIONS(2567), + [sym_number_literal] = ACTIONS(2569), + [anon_sym_L_SQUOTE] = ACTIONS(2569), + [anon_sym_u_SQUOTE] = ACTIONS(2569), + [anon_sym_U_SQUOTE] = ACTIONS(2569), + [anon_sym_u8_SQUOTE] = ACTIONS(2569), + [anon_sym_SQUOTE] = ACTIONS(2569), + [anon_sym_L_DQUOTE] = ACTIONS(2569), + [anon_sym_u_DQUOTE] = ACTIONS(2569), + [anon_sym_U_DQUOTE] = ACTIONS(2569), + [anon_sym_u8_DQUOTE] = ACTIONS(2569), + [anon_sym_DQUOTE] = ACTIONS(2569), + [sym_true] = ACTIONS(2567), + [sym_false] = ACTIONS(2567), + [sym_null] = ACTIONS(2567), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2567), + [anon_sym_decltype] = ACTIONS(2567), + [anon_sym_virtual] = ACTIONS(2567), + [anon_sym_explicit] = ACTIONS(2567), + [anon_sym_typename] = ACTIONS(2567), + [anon_sym_template] = ACTIONS(2567), + [anon_sym_operator] = ACTIONS(2567), + [anon_sym_try] = ACTIONS(2567), + [anon_sym_delete] = ACTIONS(2567), + [anon_sym_throw] = ACTIONS(2567), + [anon_sym_namespace] = ACTIONS(2567), + [anon_sym_using] = ACTIONS(2567), + [anon_sym_static_assert] = ACTIONS(2567), + [anon_sym_concept] = ACTIONS(2567), + [anon_sym_co_return] = ACTIONS(2567), + [anon_sym_co_yield] = ACTIONS(2567), + [anon_sym_co_await] = ACTIONS(2567), + [anon_sym_new] = ACTIONS(2567), + [anon_sym_requires] = ACTIONS(2567), + [sym_this] = ACTIONS(2567), + [sym_nullptr] = ACTIONS(2567), + [sym_raw_string_literal] = ACTIONS(2569), + }, + [833] = { + [sym_identifier] = ACTIONS(2547), + [aux_sym_preproc_include_token1] = ACTIONS(2547), + [aux_sym_preproc_def_token1] = ACTIONS(2547), + [aux_sym_preproc_if_token1] = ACTIONS(2547), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2547), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2547), + [sym_preproc_directive] = ACTIONS(2547), + [anon_sym_LPAREN2] = ACTIONS(2549), + [anon_sym_BANG] = ACTIONS(2549), + [anon_sym_TILDE] = ACTIONS(2549), + [anon_sym_DASH] = ACTIONS(2547), + [anon_sym_PLUS] = ACTIONS(2547), + [anon_sym_STAR] = ACTIONS(2549), + [anon_sym_AMP_AMP] = ACTIONS(2549), + [anon_sym_AMP] = ACTIONS(2547), + [anon_sym_SEMI] = ACTIONS(2549), + [anon_sym_typedef] = ACTIONS(2547), + [anon_sym_extern] = ACTIONS(2547), + [anon_sym___attribute__] = ACTIONS(2547), + [anon_sym_COLON_COLON] = ACTIONS(2549), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2549), + [anon_sym___declspec] = ACTIONS(2547), + [anon_sym___based] = ACTIONS(2547), + [anon_sym___cdecl] = ACTIONS(2547), + [anon_sym___clrcall] = ACTIONS(2547), + [anon_sym___stdcall] = ACTIONS(2547), + [anon_sym___fastcall] = ACTIONS(2547), + [anon_sym___thiscall] = ACTIONS(2547), + [anon_sym___vectorcall] = ACTIONS(2547), + [anon_sym_LBRACE] = ACTIONS(2549), + [anon_sym_RBRACE] = ACTIONS(2549), + [anon_sym_LBRACK] = ACTIONS(2547), + [anon_sym_static] = ACTIONS(2547), + [anon_sym_register] = ACTIONS(2547), + [anon_sym_inline] = ACTIONS(2547), + [anon_sym_thread_local] = ACTIONS(2547), + [anon_sym_const] = ACTIONS(2547), + [anon_sym_volatile] = ACTIONS(2547), + [anon_sym_restrict] = ACTIONS(2547), + [anon_sym__Atomic] = ACTIONS(2547), + [anon_sym_mutable] = ACTIONS(2547), + [anon_sym_constexpr] = ACTIONS(2547), + [anon_sym_constinit] = ACTIONS(2547), + [anon_sym_consteval] = ACTIONS(2547), + [anon_sym_signed] = ACTIONS(2547), + [anon_sym_unsigned] = ACTIONS(2547), + [anon_sym_long] = ACTIONS(2547), + [anon_sym_short] = ACTIONS(2547), + [sym_primitive_type] = ACTIONS(2547), + [anon_sym_enum] = ACTIONS(2547), + [anon_sym_class] = ACTIONS(2547), + [anon_sym_struct] = ACTIONS(2547), + [anon_sym_union] = ACTIONS(2547), + [anon_sym_if] = ACTIONS(2547), + [anon_sym_else] = ACTIONS(2547), + [anon_sym_switch] = ACTIONS(2547), + [anon_sym_case] = ACTIONS(2547), + [anon_sym_default] = ACTIONS(2547), + [anon_sym_while] = ACTIONS(2547), + [anon_sym_do] = ACTIONS(2547), + [anon_sym_for] = ACTIONS(2547), + [anon_sym_return] = ACTIONS(2547), + [anon_sym_break] = ACTIONS(2547), + [anon_sym_continue] = ACTIONS(2547), + [anon_sym_goto] = ACTIONS(2547), + [anon_sym_not] = ACTIONS(2547), + [anon_sym_compl] = ACTIONS(2547), + [anon_sym_DASH_DASH] = ACTIONS(2549), + [anon_sym_PLUS_PLUS] = ACTIONS(2549), + [anon_sym_sizeof] = ACTIONS(2547), + [sym_number_literal] = ACTIONS(2549), + [anon_sym_L_SQUOTE] = ACTIONS(2549), + [anon_sym_u_SQUOTE] = ACTIONS(2549), + [anon_sym_U_SQUOTE] = ACTIONS(2549), + [anon_sym_u8_SQUOTE] = ACTIONS(2549), + [anon_sym_SQUOTE] = ACTIONS(2549), + [anon_sym_L_DQUOTE] = ACTIONS(2549), + [anon_sym_u_DQUOTE] = ACTIONS(2549), + [anon_sym_U_DQUOTE] = ACTIONS(2549), + [anon_sym_u8_DQUOTE] = ACTIONS(2549), + [anon_sym_DQUOTE] = ACTIONS(2549), + [sym_true] = ACTIONS(2547), + [sym_false] = ACTIONS(2547), + [sym_null] = ACTIONS(2547), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2547), + [anon_sym_decltype] = ACTIONS(2547), + [anon_sym_virtual] = ACTIONS(2547), + [anon_sym_explicit] = ACTIONS(2547), + [anon_sym_typename] = ACTIONS(2547), + [anon_sym_template] = ACTIONS(2547), + [anon_sym_operator] = ACTIONS(2547), + [anon_sym_try] = ACTIONS(2547), + [anon_sym_delete] = ACTIONS(2547), + [anon_sym_throw] = ACTIONS(2547), + [anon_sym_namespace] = ACTIONS(2547), + [anon_sym_using] = ACTIONS(2547), + [anon_sym_static_assert] = ACTIONS(2547), + [anon_sym_concept] = ACTIONS(2547), + [anon_sym_co_return] = ACTIONS(2547), + [anon_sym_co_yield] = ACTIONS(2547), + [anon_sym_co_await] = ACTIONS(2547), + [anon_sym_new] = ACTIONS(2547), + [anon_sym_requires] = ACTIONS(2547), + [sym_this] = ACTIONS(2547), + [sym_nullptr] = ACTIONS(2547), + [sym_raw_string_literal] = ACTIONS(2549), + }, + [834] = { + [sym_identifier] = ACTIONS(2615), + [aux_sym_preproc_include_token1] = ACTIONS(2615), + [aux_sym_preproc_def_token1] = ACTIONS(2615), + [aux_sym_preproc_if_token1] = ACTIONS(2615), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2615), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2615), + [sym_preproc_directive] = ACTIONS(2615), + [anon_sym_LPAREN2] = ACTIONS(2617), + [anon_sym_BANG] = ACTIONS(2617), + [anon_sym_TILDE] = ACTIONS(2617), + [anon_sym_DASH] = ACTIONS(2615), + [anon_sym_PLUS] = ACTIONS(2615), + [anon_sym_STAR] = ACTIONS(2617), + [anon_sym_AMP_AMP] = ACTIONS(2617), + [anon_sym_AMP] = ACTIONS(2615), + [anon_sym_SEMI] = ACTIONS(2617), + [anon_sym_typedef] = ACTIONS(2615), + [anon_sym_extern] = ACTIONS(2615), + [anon_sym___attribute__] = ACTIONS(2615), + [anon_sym_COLON_COLON] = ACTIONS(2617), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2617), + [anon_sym___declspec] = ACTIONS(2615), + [anon_sym___based] = ACTIONS(2615), + [anon_sym___cdecl] = ACTIONS(2615), + [anon_sym___clrcall] = ACTIONS(2615), + [anon_sym___stdcall] = ACTIONS(2615), + [anon_sym___fastcall] = ACTIONS(2615), + [anon_sym___thiscall] = ACTIONS(2615), + [anon_sym___vectorcall] = ACTIONS(2615), + [anon_sym_LBRACE] = ACTIONS(2617), + [anon_sym_RBRACE] = ACTIONS(2617), + [anon_sym_LBRACK] = ACTIONS(2615), + [anon_sym_static] = ACTIONS(2615), + [anon_sym_register] = ACTIONS(2615), + [anon_sym_inline] = ACTIONS(2615), + [anon_sym_thread_local] = ACTIONS(2615), + [anon_sym_const] = ACTIONS(2615), + [anon_sym_volatile] = ACTIONS(2615), + [anon_sym_restrict] = ACTIONS(2615), + [anon_sym__Atomic] = ACTIONS(2615), + [anon_sym_mutable] = ACTIONS(2615), + [anon_sym_constexpr] = ACTIONS(2615), + [anon_sym_constinit] = ACTIONS(2615), + [anon_sym_consteval] = ACTIONS(2615), + [anon_sym_signed] = ACTIONS(2615), + [anon_sym_unsigned] = ACTIONS(2615), + [anon_sym_long] = ACTIONS(2615), + [anon_sym_short] = ACTIONS(2615), + [sym_primitive_type] = ACTIONS(2615), + [anon_sym_enum] = ACTIONS(2615), + [anon_sym_class] = ACTIONS(2615), + [anon_sym_struct] = ACTIONS(2615), + [anon_sym_union] = ACTIONS(2615), + [anon_sym_if] = ACTIONS(2615), + [anon_sym_else] = ACTIONS(2615), + [anon_sym_switch] = ACTIONS(2615), + [anon_sym_case] = ACTIONS(2615), + [anon_sym_default] = ACTIONS(2615), + [anon_sym_while] = ACTIONS(2615), + [anon_sym_do] = ACTIONS(2615), + [anon_sym_for] = ACTIONS(2615), + [anon_sym_return] = ACTIONS(2615), + [anon_sym_break] = ACTIONS(2615), + [anon_sym_continue] = ACTIONS(2615), + [anon_sym_goto] = ACTIONS(2615), + [anon_sym_not] = ACTIONS(2615), + [anon_sym_compl] = ACTIONS(2615), + [anon_sym_DASH_DASH] = ACTIONS(2617), + [anon_sym_PLUS_PLUS] = ACTIONS(2617), + [anon_sym_sizeof] = ACTIONS(2615), + [sym_number_literal] = ACTIONS(2617), + [anon_sym_L_SQUOTE] = ACTIONS(2617), + [anon_sym_u_SQUOTE] = ACTIONS(2617), + [anon_sym_U_SQUOTE] = ACTIONS(2617), + [anon_sym_u8_SQUOTE] = ACTIONS(2617), + [anon_sym_SQUOTE] = ACTIONS(2617), + [anon_sym_L_DQUOTE] = ACTIONS(2617), + [anon_sym_u_DQUOTE] = ACTIONS(2617), + [anon_sym_U_DQUOTE] = ACTIONS(2617), + [anon_sym_u8_DQUOTE] = ACTIONS(2617), + [anon_sym_DQUOTE] = ACTIONS(2617), + [sym_true] = ACTIONS(2615), + [sym_false] = ACTIONS(2615), + [sym_null] = ACTIONS(2615), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2615), + [anon_sym_decltype] = ACTIONS(2615), + [anon_sym_virtual] = ACTIONS(2615), + [anon_sym_explicit] = ACTIONS(2615), + [anon_sym_typename] = ACTIONS(2615), + [anon_sym_template] = ACTIONS(2615), + [anon_sym_operator] = ACTIONS(2615), + [anon_sym_try] = ACTIONS(2615), + [anon_sym_delete] = ACTIONS(2615), + [anon_sym_throw] = ACTIONS(2615), + [anon_sym_namespace] = ACTIONS(2615), + [anon_sym_using] = ACTIONS(2615), + [anon_sym_static_assert] = ACTIONS(2615), + [anon_sym_concept] = ACTIONS(2615), + [anon_sym_co_return] = ACTIONS(2615), + [anon_sym_co_yield] = ACTIONS(2615), + [anon_sym_co_await] = ACTIONS(2615), + [anon_sym_new] = ACTIONS(2615), + [anon_sym_requires] = ACTIONS(2615), + [sym_this] = ACTIONS(2615), + [sym_nullptr] = ACTIONS(2615), + [sym_raw_string_literal] = ACTIONS(2617), + }, + [835] = { + [ts_builtin_sym_end] = ACTIONS(2561), + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), + }, + [836] = { + [ts_builtin_sym_end] = ACTIONS(2561), + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), + }, + [837] = { + [ts_builtin_sym_end] = ACTIONS(2561), + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), + }, + [838] = { + [ts_builtin_sym_end] = ACTIONS(2561), + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), + }, + [839] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token2] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), + }, + [840] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token2] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), + }, + [841] = { + [ts_builtin_sym_end] = ACTIONS(2561), + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), + }, + [842] = { + [ts_builtin_sym_end] = ACTIONS(2561), + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), + }, + [843] = { + [sym_identifier] = ACTIONS(2607), + [aux_sym_preproc_include_token1] = ACTIONS(2607), + [aux_sym_preproc_def_token1] = ACTIONS(2607), + [aux_sym_preproc_if_token1] = ACTIONS(2607), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2607), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2607), + [sym_preproc_directive] = ACTIONS(2607), + [anon_sym_LPAREN2] = ACTIONS(2609), + [anon_sym_BANG] = ACTIONS(2609), + [anon_sym_TILDE] = ACTIONS(2609), + [anon_sym_DASH] = ACTIONS(2607), + [anon_sym_PLUS] = ACTIONS(2607), + [anon_sym_STAR] = ACTIONS(2609), + [anon_sym_AMP_AMP] = ACTIONS(2609), + [anon_sym_AMP] = ACTIONS(2607), + [anon_sym_SEMI] = ACTIONS(2609), + [anon_sym_typedef] = ACTIONS(2607), + [anon_sym_extern] = ACTIONS(2607), + [anon_sym___attribute__] = ACTIONS(2607), + [anon_sym_COLON_COLON] = ACTIONS(2609), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2609), + [anon_sym___declspec] = ACTIONS(2607), + [anon_sym___based] = ACTIONS(2607), + [anon_sym___cdecl] = ACTIONS(2607), + [anon_sym___clrcall] = ACTIONS(2607), + [anon_sym___stdcall] = ACTIONS(2607), + [anon_sym___fastcall] = ACTIONS(2607), + [anon_sym___thiscall] = ACTIONS(2607), + [anon_sym___vectorcall] = ACTIONS(2607), + [anon_sym_LBRACE] = ACTIONS(2609), + [anon_sym_RBRACE] = ACTIONS(2609), + [anon_sym_LBRACK] = ACTIONS(2607), + [anon_sym_static] = ACTIONS(2607), + [anon_sym_register] = ACTIONS(2607), + [anon_sym_inline] = ACTIONS(2607), + [anon_sym_thread_local] = ACTIONS(2607), + [anon_sym_const] = ACTIONS(2607), + [anon_sym_volatile] = ACTIONS(2607), + [anon_sym_restrict] = ACTIONS(2607), + [anon_sym__Atomic] = ACTIONS(2607), + [anon_sym_mutable] = ACTIONS(2607), + [anon_sym_constexpr] = ACTIONS(2607), + [anon_sym_constinit] = ACTIONS(2607), + [anon_sym_consteval] = ACTIONS(2607), + [anon_sym_signed] = ACTIONS(2607), + [anon_sym_unsigned] = ACTIONS(2607), + [anon_sym_long] = ACTIONS(2607), + [anon_sym_short] = ACTIONS(2607), + [sym_primitive_type] = ACTIONS(2607), + [anon_sym_enum] = ACTIONS(2607), + [anon_sym_class] = ACTIONS(2607), + [anon_sym_struct] = ACTIONS(2607), + [anon_sym_union] = ACTIONS(2607), + [anon_sym_if] = ACTIONS(2607), + [anon_sym_else] = ACTIONS(2607), + [anon_sym_switch] = ACTIONS(2607), + [anon_sym_case] = ACTIONS(2607), + [anon_sym_default] = ACTIONS(2607), + [anon_sym_while] = ACTIONS(2607), + [anon_sym_do] = ACTIONS(2607), + [anon_sym_for] = ACTIONS(2607), + [anon_sym_return] = ACTIONS(2607), + [anon_sym_break] = ACTIONS(2607), + [anon_sym_continue] = ACTIONS(2607), + [anon_sym_goto] = ACTIONS(2607), + [anon_sym_not] = ACTIONS(2607), + [anon_sym_compl] = ACTIONS(2607), + [anon_sym_DASH_DASH] = ACTIONS(2609), + [anon_sym_PLUS_PLUS] = ACTIONS(2609), + [anon_sym_sizeof] = ACTIONS(2607), + [sym_number_literal] = ACTIONS(2609), + [anon_sym_L_SQUOTE] = ACTIONS(2609), + [anon_sym_u_SQUOTE] = ACTIONS(2609), + [anon_sym_U_SQUOTE] = ACTIONS(2609), + [anon_sym_u8_SQUOTE] = ACTIONS(2609), + [anon_sym_SQUOTE] = ACTIONS(2609), + [anon_sym_L_DQUOTE] = ACTIONS(2609), + [anon_sym_u_DQUOTE] = ACTIONS(2609), + [anon_sym_U_DQUOTE] = ACTIONS(2609), + [anon_sym_u8_DQUOTE] = ACTIONS(2609), + [anon_sym_DQUOTE] = ACTIONS(2609), + [sym_true] = ACTIONS(2607), + [sym_false] = ACTIONS(2607), + [sym_null] = ACTIONS(2607), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2607), + [anon_sym_decltype] = ACTIONS(2607), + [anon_sym_virtual] = ACTIONS(2607), + [anon_sym_explicit] = ACTIONS(2607), + [anon_sym_typename] = ACTIONS(2607), + [anon_sym_template] = ACTIONS(2607), + [anon_sym_operator] = ACTIONS(2607), + [anon_sym_try] = ACTIONS(2607), + [anon_sym_delete] = ACTIONS(2607), + [anon_sym_throw] = ACTIONS(2607), + [anon_sym_namespace] = ACTIONS(2607), + [anon_sym_using] = ACTIONS(2607), + [anon_sym_static_assert] = ACTIONS(2607), + [anon_sym_concept] = ACTIONS(2607), + [anon_sym_co_return] = ACTIONS(2607), + [anon_sym_co_yield] = ACTIONS(2607), + [anon_sym_co_await] = ACTIONS(2607), + [anon_sym_new] = ACTIONS(2607), + [anon_sym_requires] = ACTIONS(2607), + [sym_this] = ACTIONS(2607), + [sym_nullptr] = ACTIONS(2607), + [sym_raw_string_literal] = ACTIONS(2609), + }, + [844] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token2] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), + }, + [845] = { + [sym_identifier] = ACTIONS(2575), + [aux_sym_preproc_include_token1] = ACTIONS(2575), + [aux_sym_preproc_def_token1] = ACTIONS(2575), + [aux_sym_preproc_if_token1] = ACTIONS(2575), + [aux_sym_preproc_if_token2] = ACTIONS(2575), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2575), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2575), + [sym_preproc_directive] = ACTIONS(2575), + [anon_sym_LPAREN2] = ACTIONS(2577), + [anon_sym_BANG] = ACTIONS(2577), + [anon_sym_TILDE] = ACTIONS(2577), + [anon_sym_DASH] = ACTIONS(2575), + [anon_sym_PLUS] = ACTIONS(2575), + [anon_sym_STAR] = ACTIONS(2577), + [anon_sym_AMP_AMP] = ACTIONS(2577), + [anon_sym_AMP] = ACTIONS(2575), + [anon_sym_SEMI] = ACTIONS(2577), + [anon_sym_typedef] = ACTIONS(2575), + [anon_sym_extern] = ACTIONS(2575), + [anon_sym___attribute__] = ACTIONS(2575), + [anon_sym_COLON_COLON] = ACTIONS(2577), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2577), + [anon_sym___declspec] = ACTIONS(2575), + [anon_sym___based] = ACTIONS(2575), + [anon_sym___cdecl] = ACTIONS(2575), + [anon_sym___clrcall] = ACTIONS(2575), + [anon_sym___stdcall] = ACTIONS(2575), + [anon_sym___fastcall] = ACTIONS(2575), + [anon_sym___thiscall] = ACTIONS(2575), + [anon_sym___vectorcall] = ACTIONS(2575), + [anon_sym_LBRACE] = ACTIONS(2577), + [anon_sym_LBRACK] = ACTIONS(2575), + [anon_sym_static] = ACTIONS(2575), + [anon_sym_register] = ACTIONS(2575), + [anon_sym_inline] = ACTIONS(2575), + [anon_sym_thread_local] = ACTIONS(2575), + [anon_sym_const] = ACTIONS(2575), + [anon_sym_volatile] = ACTIONS(2575), + [anon_sym_restrict] = ACTIONS(2575), + [anon_sym__Atomic] = ACTIONS(2575), + [anon_sym_mutable] = ACTIONS(2575), + [anon_sym_constexpr] = ACTIONS(2575), + [anon_sym_constinit] = ACTIONS(2575), + [anon_sym_consteval] = ACTIONS(2575), + [anon_sym_signed] = ACTIONS(2575), + [anon_sym_unsigned] = ACTIONS(2575), + [anon_sym_long] = ACTIONS(2575), + [anon_sym_short] = ACTIONS(2575), + [sym_primitive_type] = ACTIONS(2575), + [anon_sym_enum] = ACTIONS(2575), + [anon_sym_class] = ACTIONS(2575), + [anon_sym_struct] = ACTIONS(2575), + [anon_sym_union] = ACTIONS(2575), + [anon_sym_if] = ACTIONS(2575), + [anon_sym_else] = ACTIONS(2575), + [anon_sym_switch] = ACTIONS(2575), + [anon_sym_case] = ACTIONS(2575), + [anon_sym_default] = ACTIONS(2575), + [anon_sym_while] = ACTIONS(2575), + [anon_sym_do] = ACTIONS(2575), + [anon_sym_for] = ACTIONS(2575), + [anon_sym_return] = ACTIONS(2575), + [anon_sym_break] = ACTIONS(2575), + [anon_sym_continue] = ACTIONS(2575), + [anon_sym_goto] = ACTIONS(2575), + [anon_sym_not] = ACTIONS(2575), + [anon_sym_compl] = ACTIONS(2575), + [anon_sym_DASH_DASH] = ACTIONS(2577), + [anon_sym_PLUS_PLUS] = ACTIONS(2577), + [anon_sym_sizeof] = ACTIONS(2575), + [sym_number_literal] = ACTIONS(2577), + [anon_sym_L_SQUOTE] = ACTIONS(2577), + [anon_sym_u_SQUOTE] = ACTIONS(2577), + [anon_sym_U_SQUOTE] = ACTIONS(2577), + [anon_sym_u8_SQUOTE] = ACTIONS(2577), + [anon_sym_SQUOTE] = ACTIONS(2577), + [anon_sym_L_DQUOTE] = ACTIONS(2577), + [anon_sym_u_DQUOTE] = ACTIONS(2577), + [anon_sym_U_DQUOTE] = ACTIONS(2577), + [anon_sym_u8_DQUOTE] = ACTIONS(2577), + [anon_sym_DQUOTE] = ACTIONS(2577), + [sym_true] = ACTIONS(2575), + [sym_false] = ACTIONS(2575), + [sym_null] = ACTIONS(2575), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2575), + [anon_sym_decltype] = ACTIONS(2575), + [anon_sym_virtual] = ACTIONS(2575), + [anon_sym_explicit] = ACTIONS(2575), + [anon_sym_typename] = ACTIONS(2575), + [anon_sym_template] = ACTIONS(2575), + [anon_sym_operator] = ACTIONS(2575), + [anon_sym_try] = ACTIONS(2575), + [anon_sym_delete] = ACTIONS(2575), + [anon_sym_throw] = ACTIONS(2575), + [anon_sym_namespace] = ACTIONS(2575), + [anon_sym_using] = ACTIONS(2575), + [anon_sym_static_assert] = ACTIONS(2575), + [anon_sym_concept] = ACTIONS(2575), + [anon_sym_co_return] = ACTIONS(2575), + [anon_sym_co_yield] = ACTIONS(2575), + [anon_sym_co_await] = ACTIONS(2575), + [anon_sym_new] = ACTIONS(2575), + [anon_sym_requires] = ACTIONS(2575), + [sym_this] = ACTIONS(2575), + [sym_nullptr] = ACTIONS(2575), + [sym_raw_string_literal] = ACTIONS(2577), + }, + [846] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token2] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), + }, + [847] = { + [ts_builtin_sym_end] = ACTIONS(2495), + [sym_identifier] = ACTIONS(2493), + [aux_sym_preproc_include_token1] = ACTIONS(2493), + [aux_sym_preproc_def_token1] = ACTIONS(2493), + [aux_sym_preproc_if_token1] = ACTIONS(2493), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2493), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2493), + [sym_preproc_directive] = ACTIONS(2493), + [anon_sym_LPAREN2] = ACTIONS(2495), + [anon_sym_BANG] = ACTIONS(2495), + [anon_sym_TILDE] = ACTIONS(2495), + [anon_sym_DASH] = ACTIONS(2493), + [anon_sym_PLUS] = ACTIONS(2493), + [anon_sym_STAR] = ACTIONS(2495), + [anon_sym_AMP_AMP] = ACTIONS(2495), + [anon_sym_AMP] = ACTIONS(2493), + [anon_sym_SEMI] = ACTIONS(2495), + [anon_sym_typedef] = ACTIONS(2493), + [anon_sym_extern] = ACTIONS(2493), + [anon_sym___attribute__] = ACTIONS(2493), + [anon_sym_COLON_COLON] = ACTIONS(2495), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2495), + [anon_sym___declspec] = ACTIONS(2493), + [anon_sym___based] = ACTIONS(2493), + [anon_sym___cdecl] = ACTIONS(2493), + [anon_sym___clrcall] = ACTIONS(2493), + [anon_sym___stdcall] = ACTIONS(2493), + [anon_sym___fastcall] = ACTIONS(2493), + [anon_sym___thiscall] = ACTIONS(2493), + [anon_sym___vectorcall] = ACTIONS(2493), + [anon_sym_LBRACE] = ACTIONS(2495), + [anon_sym_LBRACK] = ACTIONS(2493), + [anon_sym_static] = ACTIONS(2493), + [anon_sym_register] = ACTIONS(2493), + [anon_sym_inline] = ACTIONS(2493), + [anon_sym_thread_local] = ACTIONS(2493), + [anon_sym_const] = ACTIONS(2493), + [anon_sym_volatile] = ACTIONS(2493), + [anon_sym_restrict] = ACTIONS(2493), + [anon_sym__Atomic] = ACTIONS(2493), + [anon_sym_mutable] = ACTIONS(2493), + [anon_sym_constexpr] = ACTIONS(2493), + [anon_sym_constinit] = ACTIONS(2493), + [anon_sym_consteval] = ACTIONS(2493), + [anon_sym_signed] = ACTIONS(2493), + [anon_sym_unsigned] = ACTIONS(2493), + [anon_sym_long] = ACTIONS(2493), + [anon_sym_short] = ACTIONS(2493), + [sym_primitive_type] = ACTIONS(2493), + [anon_sym_enum] = ACTIONS(2493), + [anon_sym_class] = ACTIONS(2493), + [anon_sym_struct] = ACTIONS(2493), + [anon_sym_union] = ACTIONS(2493), + [anon_sym_if] = ACTIONS(2493), + [anon_sym_else] = ACTIONS(2949), + [anon_sym_switch] = ACTIONS(2493), + [anon_sym_case] = ACTIONS(2493), + [anon_sym_default] = ACTIONS(2493), + [anon_sym_while] = ACTIONS(2493), + [anon_sym_do] = ACTIONS(2493), + [anon_sym_for] = ACTIONS(2493), + [anon_sym_return] = ACTIONS(2493), + [anon_sym_break] = ACTIONS(2493), + [anon_sym_continue] = ACTIONS(2493), + [anon_sym_goto] = ACTIONS(2493), + [anon_sym_not] = ACTIONS(2493), + [anon_sym_compl] = ACTIONS(2493), + [anon_sym_DASH_DASH] = ACTIONS(2495), + [anon_sym_PLUS_PLUS] = ACTIONS(2495), + [anon_sym_sizeof] = ACTIONS(2493), + [sym_number_literal] = ACTIONS(2495), + [anon_sym_L_SQUOTE] = ACTIONS(2495), + [anon_sym_u_SQUOTE] = ACTIONS(2495), + [anon_sym_U_SQUOTE] = ACTIONS(2495), + [anon_sym_u8_SQUOTE] = ACTIONS(2495), + [anon_sym_SQUOTE] = ACTIONS(2495), + [anon_sym_L_DQUOTE] = ACTIONS(2495), + [anon_sym_u_DQUOTE] = ACTIONS(2495), + [anon_sym_U_DQUOTE] = ACTIONS(2495), + [anon_sym_u8_DQUOTE] = ACTIONS(2495), + [anon_sym_DQUOTE] = ACTIONS(2495), + [sym_true] = ACTIONS(2493), + [sym_false] = ACTIONS(2493), + [sym_null] = ACTIONS(2493), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2493), + [anon_sym_decltype] = ACTIONS(2493), + [anon_sym_virtual] = ACTIONS(2493), + [anon_sym_explicit] = ACTIONS(2493), + [anon_sym_typename] = ACTIONS(2493), + [anon_sym_template] = ACTIONS(2493), + [anon_sym_operator] = ACTIONS(2493), + [anon_sym_try] = ACTIONS(2493), + [anon_sym_delete] = ACTIONS(2493), + [anon_sym_throw] = ACTIONS(2493), + [anon_sym_namespace] = ACTIONS(2493), + [anon_sym_using] = ACTIONS(2493), + [anon_sym_static_assert] = ACTIONS(2493), + [anon_sym_concept] = ACTIONS(2493), + [anon_sym_co_return] = ACTIONS(2493), + [anon_sym_co_yield] = ACTIONS(2493), + [anon_sym_co_await] = ACTIONS(2493), + [anon_sym_new] = ACTIONS(2493), + [anon_sym_requires] = ACTIONS(2493), + [sym_this] = ACTIONS(2493), + [sym_nullptr] = ACTIONS(2493), + [sym_raw_string_literal] = ACTIONS(2495), + }, + [848] = { + [sym_identifier] = ACTIONS(2559), + [aux_sym_preproc_include_token1] = ACTIONS(2559), + [aux_sym_preproc_def_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token1] = ACTIONS(2559), + [aux_sym_preproc_if_token2] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2559), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2559), + [sym_preproc_directive] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP_AMP] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym___based] = ACTIONS(2559), + [anon_sym___cdecl] = ACTIONS(2559), + [anon_sym___clrcall] = ACTIONS(2559), + [anon_sym___stdcall] = ACTIONS(2559), + [anon_sym___fastcall] = ACTIONS(2559), + [anon_sym___thiscall] = ACTIONS(2559), + [anon_sym___vectorcall] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_case] = ACTIONS(2559), + [anon_sym_default] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_explicit] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_operator] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_namespace] = ACTIONS(2559), + [anon_sym_using] = ACTIONS(2559), + [anon_sym_static_assert] = ACTIONS(2559), + [anon_sym_concept] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), + }, + [849] = { + [ts_builtin_sym_end] = ACTIONS(2629), + [sym_identifier] = ACTIONS(2627), + [aux_sym_preproc_include_token1] = ACTIONS(2627), + [aux_sym_preproc_def_token1] = ACTIONS(2627), + [aux_sym_preproc_if_token1] = ACTIONS(2627), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2627), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2627), + [sym_preproc_directive] = ACTIONS(2627), + [anon_sym_LPAREN2] = ACTIONS(2629), + [anon_sym_BANG] = ACTIONS(2629), + [anon_sym_TILDE] = ACTIONS(2629), + [anon_sym_DASH] = ACTIONS(2627), + [anon_sym_PLUS] = ACTIONS(2627), + [anon_sym_STAR] = ACTIONS(2629), + [anon_sym_AMP_AMP] = ACTIONS(2629), + [anon_sym_AMP] = ACTIONS(2627), + [anon_sym_SEMI] = ACTIONS(2629), + [anon_sym_typedef] = ACTIONS(2627), + [anon_sym_extern] = ACTIONS(2627), + [anon_sym___attribute__] = ACTIONS(2627), + [anon_sym_COLON_COLON] = ACTIONS(2629), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2629), + [anon_sym___declspec] = ACTIONS(2627), + [anon_sym___based] = ACTIONS(2627), + [anon_sym___cdecl] = ACTIONS(2627), + [anon_sym___clrcall] = ACTIONS(2627), + [anon_sym___stdcall] = ACTIONS(2627), + [anon_sym___fastcall] = ACTIONS(2627), + [anon_sym___thiscall] = ACTIONS(2627), + [anon_sym___vectorcall] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(2629), + [anon_sym_LBRACK] = ACTIONS(2627), + [anon_sym_static] = ACTIONS(2627), + [anon_sym_register] = ACTIONS(2627), + [anon_sym_inline] = ACTIONS(2627), + [anon_sym_thread_local] = ACTIONS(2627), + [anon_sym_const] = ACTIONS(2627), + [anon_sym_volatile] = ACTIONS(2627), + [anon_sym_restrict] = ACTIONS(2627), + [anon_sym__Atomic] = ACTIONS(2627), + [anon_sym_mutable] = ACTIONS(2627), + [anon_sym_constexpr] = ACTIONS(2627), + [anon_sym_constinit] = ACTIONS(2627), + [anon_sym_consteval] = ACTIONS(2627), + [anon_sym_signed] = ACTIONS(2627), + [anon_sym_unsigned] = ACTIONS(2627), + [anon_sym_long] = ACTIONS(2627), + [anon_sym_short] = ACTIONS(2627), + [sym_primitive_type] = ACTIONS(2627), + [anon_sym_enum] = ACTIONS(2627), + [anon_sym_class] = ACTIONS(2627), + [anon_sym_struct] = ACTIONS(2627), + [anon_sym_union] = ACTIONS(2627), + [anon_sym_if] = ACTIONS(2627), + [anon_sym_else] = ACTIONS(2627), + [anon_sym_switch] = ACTIONS(2627), + [anon_sym_case] = ACTIONS(2627), + [anon_sym_default] = ACTIONS(2627), + [anon_sym_while] = ACTIONS(2627), + [anon_sym_do] = ACTIONS(2627), + [anon_sym_for] = ACTIONS(2627), + [anon_sym_return] = ACTIONS(2627), + [anon_sym_break] = ACTIONS(2627), + [anon_sym_continue] = ACTIONS(2627), + [anon_sym_goto] = ACTIONS(2627), + [anon_sym_not] = ACTIONS(2627), + [anon_sym_compl] = ACTIONS(2627), + [anon_sym_DASH_DASH] = ACTIONS(2629), + [anon_sym_PLUS_PLUS] = ACTIONS(2629), + [anon_sym_sizeof] = ACTIONS(2627), + [sym_number_literal] = ACTIONS(2629), + [anon_sym_L_SQUOTE] = ACTIONS(2629), + [anon_sym_u_SQUOTE] = ACTIONS(2629), + [anon_sym_U_SQUOTE] = ACTIONS(2629), + [anon_sym_u8_SQUOTE] = ACTIONS(2629), + [anon_sym_SQUOTE] = ACTIONS(2629), + [anon_sym_L_DQUOTE] = ACTIONS(2629), + [anon_sym_u_DQUOTE] = ACTIONS(2629), + [anon_sym_U_DQUOTE] = ACTIONS(2629), + [anon_sym_u8_DQUOTE] = ACTIONS(2629), + [anon_sym_DQUOTE] = ACTIONS(2629), + [sym_true] = ACTIONS(2627), + [sym_false] = ACTIONS(2627), + [sym_null] = ACTIONS(2627), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2627), + [anon_sym_decltype] = ACTIONS(2627), + [anon_sym_virtual] = ACTIONS(2627), + [anon_sym_explicit] = ACTIONS(2627), + [anon_sym_typename] = ACTIONS(2627), + [anon_sym_template] = ACTIONS(2627), + [anon_sym_operator] = ACTIONS(2627), + [anon_sym_try] = ACTIONS(2627), + [anon_sym_delete] = ACTIONS(2627), + [anon_sym_throw] = ACTIONS(2627), + [anon_sym_namespace] = ACTIONS(2627), + [anon_sym_using] = ACTIONS(2627), + [anon_sym_static_assert] = ACTIONS(2627), + [anon_sym_concept] = ACTIONS(2627), + [anon_sym_co_return] = ACTIONS(2627), + [anon_sym_co_yield] = ACTIONS(2627), + [anon_sym_co_await] = ACTIONS(2627), + [anon_sym_new] = ACTIONS(2627), + [anon_sym_requires] = ACTIONS(2627), + [sym_this] = ACTIONS(2627), + [sym_nullptr] = ACTIONS(2627), + [sym_raw_string_literal] = ACTIONS(2629), + }, + [850] = { + [ts_builtin_sym_end] = ACTIONS(2633), + [sym_identifier] = ACTIONS(2631), + [aux_sym_preproc_include_token1] = ACTIONS(2631), + [aux_sym_preproc_def_token1] = ACTIONS(2631), + [aux_sym_preproc_if_token1] = ACTIONS(2631), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2631), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2631), + [sym_preproc_directive] = ACTIONS(2631), + [anon_sym_LPAREN2] = ACTIONS(2633), + [anon_sym_BANG] = ACTIONS(2633), + [anon_sym_TILDE] = ACTIONS(2633), + [anon_sym_DASH] = ACTIONS(2631), + [anon_sym_PLUS] = ACTIONS(2631), + [anon_sym_STAR] = ACTIONS(2633), + [anon_sym_AMP_AMP] = ACTIONS(2633), + [anon_sym_AMP] = ACTIONS(2631), + [anon_sym_SEMI] = ACTIONS(2633), + [anon_sym_typedef] = ACTIONS(2631), + [anon_sym_extern] = ACTIONS(2631), + [anon_sym___attribute__] = ACTIONS(2631), + [anon_sym_COLON_COLON] = ACTIONS(2633), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2633), + [anon_sym___declspec] = ACTIONS(2631), + [anon_sym___based] = ACTIONS(2631), + [anon_sym___cdecl] = ACTIONS(2631), + [anon_sym___clrcall] = ACTIONS(2631), + [anon_sym___stdcall] = ACTIONS(2631), + [anon_sym___fastcall] = ACTIONS(2631), + [anon_sym___thiscall] = ACTIONS(2631), + [anon_sym___vectorcall] = ACTIONS(2631), + [anon_sym_LBRACE] = ACTIONS(2633), + [anon_sym_LBRACK] = ACTIONS(2631), + [anon_sym_static] = ACTIONS(2631), + [anon_sym_register] = ACTIONS(2631), + [anon_sym_inline] = ACTIONS(2631), + [anon_sym_thread_local] = ACTIONS(2631), + [anon_sym_const] = ACTIONS(2631), + [anon_sym_volatile] = ACTIONS(2631), + [anon_sym_restrict] = ACTIONS(2631), + [anon_sym__Atomic] = ACTIONS(2631), + [anon_sym_mutable] = ACTIONS(2631), + [anon_sym_constexpr] = ACTIONS(2631), + [anon_sym_constinit] = ACTIONS(2631), + [anon_sym_consteval] = ACTIONS(2631), + [anon_sym_signed] = ACTIONS(2631), + [anon_sym_unsigned] = ACTIONS(2631), + [anon_sym_long] = ACTIONS(2631), + [anon_sym_short] = ACTIONS(2631), + [sym_primitive_type] = ACTIONS(2631), + [anon_sym_enum] = ACTIONS(2631), + [anon_sym_class] = ACTIONS(2631), + [anon_sym_struct] = ACTIONS(2631), + [anon_sym_union] = ACTIONS(2631), + [anon_sym_if] = ACTIONS(2631), + [anon_sym_else] = ACTIONS(2631), + [anon_sym_switch] = ACTIONS(2631), + [anon_sym_case] = ACTIONS(2631), + [anon_sym_default] = ACTIONS(2631), + [anon_sym_while] = ACTIONS(2631), + [anon_sym_do] = ACTIONS(2631), + [anon_sym_for] = ACTIONS(2631), + [anon_sym_return] = ACTIONS(2631), + [anon_sym_break] = ACTIONS(2631), + [anon_sym_continue] = ACTIONS(2631), + [anon_sym_goto] = ACTIONS(2631), + [anon_sym_not] = ACTIONS(2631), + [anon_sym_compl] = ACTIONS(2631), + [anon_sym_DASH_DASH] = ACTIONS(2633), + [anon_sym_PLUS_PLUS] = ACTIONS(2633), + [anon_sym_sizeof] = ACTIONS(2631), + [sym_number_literal] = ACTIONS(2633), + [anon_sym_L_SQUOTE] = ACTIONS(2633), + [anon_sym_u_SQUOTE] = ACTIONS(2633), + [anon_sym_U_SQUOTE] = ACTIONS(2633), + [anon_sym_u8_SQUOTE] = ACTIONS(2633), + [anon_sym_SQUOTE] = ACTIONS(2633), + [anon_sym_L_DQUOTE] = ACTIONS(2633), + [anon_sym_u_DQUOTE] = ACTIONS(2633), + [anon_sym_U_DQUOTE] = ACTIONS(2633), + [anon_sym_u8_DQUOTE] = ACTIONS(2633), + [anon_sym_DQUOTE] = ACTIONS(2633), + [sym_true] = ACTIONS(2631), + [sym_false] = ACTIONS(2631), + [sym_null] = ACTIONS(2631), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2631), + [anon_sym_decltype] = ACTIONS(2631), + [anon_sym_virtual] = ACTIONS(2631), + [anon_sym_explicit] = ACTIONS(2631), + [anon_sym_typename] = ACTIONS(2631), + [anon_sym_template] = ACTIONS(2631), + [anon_sym_operator] = ACTIONS(2631), + [anon_sym_try] = ACTIONS(2631), + [anon_sym_delete] = ACTIONS(2631), + [anon_sym_throw] = ACTIONS(2631), + [anon_sym_namespace] = ACTIONS(2631), + [anon_sym_using] = ACTIONS(2631), + [anon_sym_static_assert] = ACTIONS(2631), + [anon_sym_concept] = ACTIONS(2631), + [anon_sym_co_return] = ACTIONS(2631), + [anon_sym_co_yield] = ACTIONS(2631), + [anon_sym_co_await] = ACTIONS(2631), + [anon_sym_new] = ACTIONS(2631), + [anon_sym_requires] = ACTIONS(2631), + [sym_this] = ACTIONS(2631), + [sym_nullptr] = ACTIONS(2631), + [sym_raw_string_literal] = ACTIONS(2633), + }, + [851] = { + [ts_builtin_sym_end] = ACTIONS(2609), + [sym_identifier] = ACTIONS(2607), + [aux_sym_preproc_include_token1] = ACTIONS(2607), + [aux_sym_preproc_def_token1] = ACTIONS(2607), + [aux_sym_preproc_if_token1] = ACTIONS(2607), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2607), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2607), + [sym_preproc_directive] = ACTIONS(2607), + [anon_sym_LPAREN2] = ACTIONS(2609), + [anon_sym_BANG] = ACTIONS(2609), + [anon_sym_TILDE] = ACTIONS(2609), + [anon_sym_DASH] = ACTIONS(2607), + [anon_sym_PLUS] = ACTIONS(2607), + [anon_sym_STAR] = ACTIONS(2609), + [anon_sym_AMP_AMP] = ACTIONS(2609), + [anon_sym_AMP] = ACTIONS(2607), + [anon_sym_SEMI] = ACTIONS(2609), + [anon_sym_typedef] = ACTIONS(2607), + [anon_sym_extern] = ACTIONS(2607), + [anon_sym___attribute__] = ACTIONS(2607), + [anon_sym_COLON_COLON] = ACTIONS(2609), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2609), + [anon_sym___declspec] = ACTIONS(2607), + [anon_sym___based] = ACTIONS(2607), + [anon_sym___cdecl] = ACTIONS(2607), + [anon_sym___clrcall] = ACTIONS(2607), + [anon_sym___stdcall] = ACTIONS(2607), + [anon_sym___fastcall] = ACTIONS(2607), + [anon_sym___thiscall] = ACTIONS(2607), + [anon_sym___vectorcall] = ACTIONS(2607), + [anon_sym_LBRACE] = ACTIONS(2609), + [anon_sym_LBRACK] = ACTIONS(2607), + [anon_sym_static] = ACTIONS(2607), + [anon_sym_register] = ACTIONS(2607), + [anon_sym_inline] = ACTIONS(2607), + [anon_sym_thread_local] = ACTIONS(2607), + [anon_sym_const] = ACTIONS(2607), + [anon_sym_volatile] = ACTIONS(2607), + [anon_sym_restrict] = ACTIONS(2607), + [anon_sym__Atomic] = ACTIONS(2607), + [anon_sym_mutable] = ACTIONS(2607), + [anon_sym_constexpr] = ACTIONS(2607), + [anon_sym_constinit] = ACTIONS(2607), + [anon_sym_consteval] = ACTIONS(2607), + [anon_sym_signed] = ACTIONS(2607), + [anon_sym_unsigned] = ACTIONS(2607), + [anon_sym_long] = ACTIONS(2607), + [anon_sym_short] = ACTIONS(2607), + [sym_primitive_type] = ACTIONS(2607), + [anon_sym_enum] = ACTIONS(2607), + [anon_sym_class] = ACTIONS(2607), + [anon_sym_struct] = ACTIONS(2607), + [anon_sym_union] = ACTIONS(2607), + [anon_sym_if] = ACTIONS(2607), + [anon_sym_else] = ACTIONS(2607), + [anon_sym_switch] = ACTIONS(2607), + [anon_sym_case] = ACTIONS(2607), + [anon_sym_default] = ACTIONS(2607), + [anon_sym_while] = ACTIONS(2607), + [anon_sym_do] = ACTIONS(2607), + [anon_sym_for] = ACTIONS(2607), + [anon_sym_return] = ACTIONS(2607), + [anon_sym_break] = ACTIONS(2607), + [anon_sym_continue] = ACTIONS(2607), + [anon_sym_goto] = ACTIONS(2607), + [anon_sym_not] = ACTIONS(2607), + [anon_sym_compl] = ACTIONS(2607), + [anon_sym_DASH_DASH] = ACTIONS(2609), + [anon_sym_PLUS_PLUS] = ACTIONS(2609), + [anon_sym_sizeof] = ACTIONS(2607), + [sym_number_literal] = ACTIONS(2609), + [anon_sym_L_SQUOTE] = ACTIONS(2609), + [anon_sym_u_SQUOTE] = ACTIONS(2609), + [anon_sym_U_SQUOTE] = ACTIONS(2609), + [anon_sym_u8_SQUOTE] = ACTIONS(2609), + [anon_sym_SQUOTE] = ACTIONS(2609), + [anon_sym_L_DQUOTE] = ACTIONS(2609), + [anon_sym_u_DQUOTE] = ACTIONS(2609), + [anon_sym_U_DQUOTE] = ACTIONS(2609), + [anon_sym_u8_DQUOTE] = ACTIONS(2609), + [anon_sym_DQUOTE] = ACTIONS(2609), + [sym_true] = ACTIONS(2607), + [sym_false] = ACTIONS(2607), + [sym_null] = ACTIONS(2607), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2607), + [anon_sym_decltype] = ACTIONS(2607), + [anon_sym_virtual] = ACTIONS(2607), + [anon_sym_explicit] = ACTIONS(2607), + [anon_sym_typename] = ACTIONS(2607), + [anon_sym_template] = ACTIONS(2607), + [anon_sym_operator] = ACTIONS(2607), + [anon_sym_try] = ACTIONS(2607), + [anon_sym_delete] = ACTIONS(2607), + [anon_sym_throw] = ACTIONS(2607), + [anon_sym_namespace] = ACTIONS(2607), + [anon_sym_using] = ACTIONS(2607), + [anon_sym_static_assert] = ACTIONS(2607), + [anon_sym_concept] = ACTIONS(2607), + [anon_sym_co_return] = ACTIONS(2607), + [anon_sym_co_yield] = ACTIONS(2607), + [anon_sym_co_await] = ACTIONS(2607), + [anon_sym_new] = ACTIONS(2607), + [anon_sym_requires] = ACTIONS(2607), + [sym_this] = ACTIONS(2607), + [sym_nullptr] = ACTIONS(2607), + [sym_raw_string_literal] = ACTIONS(2609), + }, + [852] = { + [sym_identifier] = ACTIONS(2525), + [aux_sym_preproc_include_token1] = ACTIONS(2525), + [aux_sym_preproc_def_token1] = ACTIONS(2525), + [aux_sym_preproc_if_token1] = ACTIONS(2525), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2525), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2525), + [sym_preproc_directive] = ACTIONS(2525), + [anon_sym_LPAREN2] = ACTIONS(2527), + [anon_sym_BANG] = ACTIONS(2527), + [anon_sym_TILDE] = ACTIONS(2527), + [anon_sym_DASH] = ACTIONS(2525), + [anon_sym_PLUS] = ACTIONS(2525), + [anon_sym_STAR] = ACTIONS(2527), + [anon_sym_AMP_AMP] = ACTIONS(2527), + [anon_sym_AMP] = ACTIONS(2525), + [anon_sym_SEMI] = ACTIONS(2527), + [anon_sym_typedef] = ACTIONS(2525), + [anon_sym_extern] = ACTIONS(2525), + [anon_sym___attribute__] = ACTIONS(2525), + [anon_sym_COLON_COLON] = ACTIONS(2527), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2527), + [anon_sym___declspec] = ACTIONS(2525), + [anon_sym___based] = ACTIONS(2525), + [anon_sym___cdecl] = ACTIONS(2525), + [anon_sym___clrcall] = ACTIONS(2525), + [anon_sym___stdcall] = ACTIONS(2525), + [anon_sym___fastcall] = ACTIONS(2525), + [anon_sym___thiscall] = ACTIONS(2525), + [anon_sym___vectorcall] = ACTIONS(2525), + [anon_sym_LBRACE] = ACTIONS(2527), + [anon_sym_RBRACE] = ACTIONS(2527), + [anon_sym_LBRACK] = ACTIONS(2525), + [anon_sym_static] = ACTIONS(2525), + [anon_sym_register] = ACTIONS(2525), + [anon_sym_inline] = ACTIONS(2525), + [anon_sym_thread_local] = ACTIONS(2525), + [anon_sym_const] = ACTIONS(2525), + [anon_sym_volatile] = ACTIONS(2525), + [anon_sym_restrict] = ACTIONS(2525), + [anon_sym__Atomic] = ACTIONS(2525), + [anon_sym_mutable] = ACTIONS(2525), + [anon_sym_constexpr] = ACTIONS(2525), + [anon_sym_constinit] = ACTIONS(2525), + [anon_sym_consteval] = ACTIONS(2525), + [anon_sym_signed] = ACTIONS(2525), + [anon_sym_unsigned] = ACTIONS(2525), + [anon_sym_long] = ACTIONS(2525), + [anon_sym_short] = ACTIONS(2525), + [sym_primitive_type] = ACTIONS(2525), + [anon_sym_enum] = ACTIONS(2525), + [anon_sym_class] = ACTIONS(2525), + [anon_sym_struct] = ACTIONS(2525), + [anon_sym_union] = ACTIONS(2525), + [anon_sym_if] = ACTIONS(2525), + [anon_sym_else] = ACTIONS(2525), + [anon_sym_switch] = ACTIONS(2525), + [anon_sym_case] = ACTIONS(2525), + [anon_sym_default] = ACTIONS(2525), + [anon_sym_while] = ACTIONS(2525), + [anon_sym_do] = ACTIONS(2525), + [anon_sym_for] = ACTIONS(2525), + [anon_sym_return] = ACTIONS(2525), + [anon_sym_break] = ACTIONS(2525), + [anon_sym_continue] = ACTIONS(2525), + [anon_sym_goto] = ACTIONS(2525), + [anon_sym_not] = ACTIONS(2525), + [anon_sym_compl] = ACTIONS(2525), + [anon_sym_DASH_DASH] = ACTIONS(2527), + [anon_sym_PLUS_PLUS] = ACTIONS(2527), + [anon_sym_sizeof] = ACTIONS(2525), + [sym_number_literal] = ACTIONS(2527), + [anon_sym_L_SQUOTE] = ACTIONS(2527), + [anon_sym_u_SQUOTE] = ACTIONS(2527), + [anon_sym_U_SQUOTE] = ACTIONS(2527), + [anon_sym_u8_SQUOTE] = ACTIONS(2527), + [anon_sym_SQUOTE] = ACTIONS(2527), + [anon_sym_L_DQUOTE] = ACTIONS(2527), + [anon_sym_u_DQUOTE] = ACTIONS(2527), + [anon_sym_U_DQUOTE] = ACTIONS(2527), + [anon_sym_u8_DQUOTE] = ACTIONS(2527), + [anon_sym_DQUOTE] = ACTIONS(2527), + [sym_true] = ACTIONS(2525), + [sym_false] = ACTIONS(2525), + [sym_null] = ACTIONS(2525), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3053), - [anon_sym_co_await] = ACTIONS(3055), - [anon_sym_new] = ACTIONS(3057), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2525), + [anon_sym_decltype] = ACTIONS(2525), + [anon_sym_virtual] = ACTIONS(2525), + [anon_sym_explicit] = ACTIONS(2525), + [anon_sym_typename] = ACTIONS(2525), + [anon_sym_template] = ACTIONS(2525), + [anon_sym_operator] = ACTIONS(2525), + [anon_sym_try] = ACTIONS(2525), + [anon_sym_delete] = ACTIONS(2525), + [anon_sym_throw] = ACTIONS(2525), + [anon_sym_namespace] = ACTIONS(2525), + [anon_sym_using] = ACTIONS(2525), + [anon_sym_static_assert] = ACTIONS(2525), + [anon_sym_concept] = ACTIONS(2525), + [anon_sym_co_return] = ACTIONS(2525), + [anon_sym_co_yield] = ACTIONS(2525), + [anon_sym_co_await] = ACTIONS(2525), + [anon_sym_new] = ACTIONS(2525), + [anon_sym_requires] = ACTIONS(2525), + [sym_this] = ACTIONS(2525), + [sym_nullptr] = ACTIONS(2525), + [sym_raw_string_literal] = ACTIONS(2527), }, - [1318] = { - [sym__expression] = STATE(3562), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_initializer_list] = STATE(5520), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_RPAREN] = ACTIONS(3429), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1465), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [853] = { + [sym_identifier] = ACTIONS(2521), + [aux_sym_preproc_include_token1] = ACTIONS(2521), + [aux_sym_preproc_def_token1] = ACTIONS(2521), + [aux_sym_preproc_if_token1] = ACTIONS(2521), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2521), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2521), + [sym_preproc_directive] = ACTIONS(2521), + [anon_sym_LPAREN2] = ACTIONS(2523), + [anon_sym_BANG] = ACTIONS(2523), + [anon_sym_TILDE] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2521), + [anon_sym_PLUS] = ACTIONS(2521), + [anon_sym_STAR] = ACTIONS(2523), + [anon_sym_AMP_AMP] = ACTIONS(2523), + [anon_sym_AMP] = ACTIONS(2521), + [anon_sym_SEMI] = ACTIONS(2523), + [anon_sym_typedef] = ACTIONS(2521), + [anon_sym_extern] = ACTIONS(2521), + [anon_sym___attribute__] = ACTIONS(2521), + [anon_sym_COLON_COLON] = ACTIONS(2523), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2523), + [anon_sym___declspec] = ACTIONS(2521), + [anon_sym___based] = ACTIONS(2521), + [anon_sym___cdecl] = ACTIONS(2521), + [anon_sym___clrcall] = ACTIONS(2521), + [anon_sym___stdcall] = ACTIONS(2521), + [anon_sym___fastcall] = ACTIONS(2521), + [anon_sym___thiscall] = ACTIONS(2521), + [anon_sym___vectorcall] = ACTIONS(2521), + [anon_sym_LBRACE] = ACTIONS(2523), + [anon_sym_RBRACE] = ACTIONS(2523), + [anon_sym_LBRACK] = ACTIONS(2521), + [anon_sym_static] = ACTIONS(2521), + [anon_sym_register] = ACTIONS(2521), + [anon_sym_inline] = ACTIONS(2521), + [anon_sym_thread_local] = ACTIONS(2521), + [anon_sym_const] = ACTIONS(2521), + [anon_sym_volatile] = ACTIONS(2521), + [anon_sym_restrict] = ACTIONS(2521), + [anon_sym__Atomic] = ACTIONS(2521), + [anon_sym_mutable] = ACTIONS(2521), + [anon_sym_constexpr] = ACTIONS(2521), + [anon_sym_constinit] = ACTIONS(2521), + [anon_sym_consteval] = ACTIONS(2521), + [anon_sym_signed] = ACTIONS(2521), + [anon_sym_unsigned] = ACTIONS(2521), + [anon_sym_long] = ACTIONS(2521), + [anon_sym_short] = ACTIONS(2521), + [sym_primitive_type] = ACTIONS(2521), + [anon_sym_enum] = ACTIONS(2521), + [anon_sym_class] = ACTIONS(2521), + [anon_sym_struct] = ACTIONS(2521), + [anon_sym_union] = ACTIONS(2521), + [anon_sym_if] = ACTIONS(2521), + [anon_sym_else] = ACTIONS(2521), + [anon_sym_switch] = ACTIONS(2521), + [anon_sym_case] = ACTIONS(2521), + [anon_sym_default] = ACTIONS(2521), + [anon_sym_while] = ACTIONS(2521), + [anon_sym_do] = ACTIONS(2521), + [anon_sym_for] = ACTIONS(2521), + [anon_sym_return] = ACTIONS(2521), + [anon_sym_break] = ACTIONS(2521), + [anon_sym_continue] = ACTIONS(2521), + [anon_sym_goto] = ACTIONS(2521), + [anon_sym_not] = ACTIONS(2521), + [anon_sym_compl] = ACTIONS(2521), + [anon_sym_DASH_DASH] = ACTIONS(2523), + [anon_sym_PLUS_PLUS] = ACTIONS(2523), + [anon_sym_sizeof] = ACTIONS(2521), + [sym_number_literal] = ACTIONS(2523), + [anon_sym_L_SQUOTE] = ACTIONS(2523), + [anon_sym_u_SQUOTE] = ACTIONS(2523), + [anon_sym_U_SQUOTE] = ACTIONS(2523), + [anon_sym_u8_SQUOTE] = ACTIONS(2523), + [anon_sym_SQUOTE] = ACTIONS(2523), + [anon_sym_L_DQUOTE] = ACTIONS(2523), + [anon_sym_u_DQUOTE] = ACTIONS(2523), + [anon_sym_U_DQUOTE] = ACTIONS(2523), + [anon_sym_u8_DQUOTE] = ACTIONS(2523), + [anon_sym_DQUOTE] = ACTIONS(2523), + [sym_true] = ACTIONS(2521), + [sym_false] = ACTIONS(2521), + [sym_null] = ACTIONS(2521), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2521), + [anon_sym_decltype] = ACTIONS(2521), + [anon_sym_virtual] = ACTIONS(2521), + [anon_sym_explicit] = ACTIONS(2521), + [anon_sym_typename] = ACTIONS(2521), + [anon_sym_template] = ACTIONS(2521), + [anon_sym_operator] = ACTIONS(2521), + [anon_sym_try] = ACTIONS(2521), + [anon_sym_delete] = ACTIONS(2521), + [anon_sym_throw] = ACTIONS(2521), + [anon_sym_namespace] = ACTIONS(2521), + [anon_sym_using] = ACTIONS(2521), + [anon_sym_static_assert] = ACTIONS(2521), + [anon_sym_concept] = ACTIONS(2521), + [anon_sym_co_return] = ACTIONS(2521), + [anon_sym_co_yield] = ACTIONS(2521), + [anon_sym_co_await] = ACTIONS(2521), + [anon_sym_new] = ACTIONS(2521), + [anon_sym_requires] = ACTIONS(2521), + [sym_this] = ACTIONS(2521), + [sym_nullptr] = ACTIONS(2521), + [sym_raw_string_literal] = ACTIONS(2523), + }, + [854] = { + [ts_builtin_sym_end] = ACTIONS(2645), + [sym_identifier] = ACTIONS(2643), + [aux_sym_preproc_include_token1] = ACTIONS(2643), + [aux_sym_preproc_def_token1] = ACTIONS(2643), + [aux_sym_preproc_if_token1] = ACTIONS(2643), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2643), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2643), + [sym_preproc_directive] = ACTIONS(2643), + [anon_sym_LPAREN2] = ACTIONS(2645), + [anon_sym_BANG] = ACTIONS(2645), + [anon_sym_TILDE] = ACTIONS(2645), + [anon_sym_DASH] = ACTIONS(2643), + [anon_sym_PLUS] = ACTIONS(2643), + [anon_sym_STAR] = ACTIONS(2645), + [anon_sym_AMP_AMP] = ACTIONS(2645), + [anon_sym_AMP] = ACTIONS(2643), + [anon_sym_SEMI] = ACTIONS(2645), + [anon_sym_typedef] = ACTIONS(2643), + [anon_sym_extern] = ACTIONS(2643), + [anon_sym___attribute__] = ACTIONS(2643), + [anon_sym_COLON_COLON] = ACTIONS(2645), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2645), + [anon_sym___declspec] = ACTIONS(2643), + [anon_sym___based] = ACTIONS(2643), + [anon_sym___cdecl] = ACTIONS(2643), + [anon_sym___clrcall] = ACTIONS(2643), + [anon_sym___stdcall] = ACTIONS(2643), + [anon_sym___fastcall] = ACTIONS(2643), + [anon_sym___thiscall] = ACTIONS(2643), + [anon_sym___vectorcall] = ACTIONS(2643), + [anon_sym_LBRACE] = ACTIONS(2645), + [anon_sym_LBRACK] = ACTIONS(2643), + [anon_sym_static] = ACTIONS(2643), + [anon_sym_register] = ACTIONS(2643), + [anon_sym_inline] = ACTIONS(2643), + [anon_sym_thread_local] = ACTIONS(2643), + [anon_sym_const] = ACTIONS(2643), + [anon_sym_volatile] = ACTIONS(2643), + [anon_sym_restrict] = ACTIONS(2643), + [anon_sym__Atomic] = ACTIONS(2643), + [anon_sym_mutable] = ACTIONS(2643), + [anon_sym_constexpr] = ACTIONS(2643), + [anon_sym_constinit] = ACTIONS(2643), + [anon_sym_consteval] = ACTIONS(2643), + [anon_sym_signed] = ACTIONS(2643), + [anon_sym_unsigned] = ACTIONS(2643), + [anon_sym_long] = ACTIONS(2643), + [anon_sym_short] = ACTIONS(2643), + [sym_primitive_type] = ACTIONS(2643), + [anon_sym_enum] = ACTIONS(2643), + [anon_sym_class] = ACTIONS(2643), + [anon_sym_struct] = ACTIONS(2643), + [anon_sym_union] = ACTIONS(2643), + [anon_sym_if] = ACTIONS(2643), + [anon_sym_else] = ACTIONS(2643), + [anon_sym_switch] = ACTIONS(2643), + [anon_sym_case] = ACTIONS(2643), + [anon_sym_default] = ACTIONS(2643), + [anon_sym_while] = ACTIONS(2643), + [anon_sym_do] = ACTIONS(2643), + [anon_sym_for] = ACTIONS(2643), + [anon_sym_return] = ACTIONS(2643), + [anon_sym_break] = ACTIONS(2643), + [anon_sym_continue] = ACTIONS(2643), + [anon_sym_goto] = ACTIONS(2643), + [anon_sym_not] = ACTIONS(2643), + [anon_sym_compl] = ACTIONS(2643), + [anon_sym_DASH_DASH] = ACTIONS(2645), + [anon_sym_PLUS_PLUS] = ACTIONS(2645), + [anon_sym_sizeof] = ACTIONS(2643), + [sym_number_literal] = ACTIONS(2645), + [anon_sym_L_SQUOTE] = ACTIONS(2645), + [anon_sym_u_SQUOTE] = ACTIONS(2645), + [anon_sym_U_SQUOTE] = ACTIONS(2645), + [anon_sym_u8_SQUOTE] = ACTIONS(2645), + [anon_sym_SQUOTE] = ACTIONS(2645), + [anon_sym_L_DQUOTE] = ACTIONS(2645), + [anon_sym_u_DQUOTE] = ACTIONS(2645), + [anon_sym_U_DQUOTE] = ACTIONS(2645), + [anon_sym_u8_DQUOTE] = ACTIONS(2645), + [anon_sym_DQUOTE] = ACTIONS(2645), + [sym_true] = ACTIONS(2643), + [sym_false] = ACTIONS(2643), + [sym_null] = ACTIONS(2643), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2643), + [anon_sym_decltype] = ACTIONS(2643), + [anon_sym_virtual] = ACTIONS(2643), + [anon_sym_explicit] = ACTIONS(2643), + [anon_sym_typename] = ACTIONS(2643), + [anon_sym_template] = ACTIONS(2643), + [anon_sym_operator] = ACTIONS(2643), + [anon_sym_try] = ACTIONS(2643), + [anon_sym_delete] = ACTIONS(2643), + [anon_sym_throw] = ACTIONS(2643), + [anon_sym_namespace] = ACTIONS(2643), + [anon_sym_using] = ACTIONS(2643), + [anon_sym_static_assert] = ACTIONS(2643), + [anon_sym_concept] = ACTIONS(2643), + [anon_sym_co_return] = ACTIONS(2643), + [anon_sym_co_yield] = ACTIONS(2643), + [anon_sym_co_await] = ACTIONS(2643), + [anon_sym_new] = ACTIONS(2643), + [anon_sym_requires] = ACTIONS(2643), + [sym_this] = ACTIONS(2643), + [sym_nullptr] = ACTIONS(2643), + [sym_raw_string_literal] = ACTIONS(2645), }, - [1319] = { - [sym__declaration_modifiers] = STATE(1892), - [sym__declaration_specifiers] = STATE(2998), - [sym_attribute_specifier] = STATE(1892), - [sym_attribute_declaration] = STATE(1892), - [sym_ms_declspec_modifier] = STATE(1892), - [sym__abstract_declarator] = STATE(5498), - [sym_abstract_parenthesized_declarator] = STATE(4832), - [sym_abstract_pointer_declarator] = STATE(4832), - [sym_abstract_function_declarator] = STATE(4832), - [sym_abstract_array_declarator] = STATE(4832), - [sym_storage_class_specifier] = STATE(1892), - [sym_type_qualifier] = STATE(1892), - [sym__type_specifier] = STATE(2596), + [855] = { + [sym_identifier] = ACTIONS(2619), + [aux_sym_preproc_include_token1] = ACTIONS(2619), + [aux_sym_preproc_def_token1] = ACTIONS(2619), + [aux_sym_preproc_if_token1] = ACTIONS(2619), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2619), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2619), + [sym_preproc_directive] = ACTIONS(2619), + [anon_sym_LPAREN2] = ACTIONS(2621), + [anon_sym_BANG] = ACTIONS(2621), + [anon_sym_TILDE] = ACTIONS(2621), + [anon_sym_DASH] = ACTIONS(2619), + [anon_sym_PLUS] = ACTIONS(2619), + [anon_sym_STAR] = ACTIONS(2621), + [anon_sym_AMP_AMP] = ACTIONS(2621), + [anon_sym_AMP] = ACTIONS(2619), + [anon_sym_SEMI] = ACTIONS(2621), + [anon_sym_typedef] = ACTIONS(2619), + [anon_sym_extern] = ACTIONS(2619), + [anon_sym___attribute__] = ACTIONS(2619), + [anon_sym_COLON_COLON] = ACTIONS(2621), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2621), + [anon_sym___declspec] = ACTIONS(2619), + [anon_sym___based] = ACTIONS(2619), + [anon_sym___cdecl] = ACTIONS(2619), + [anon_sym___clrcall] = ACTIONS(2619), + [anon_sym___stdcall] = ACTIONS(2619), + [anon_sym___fastcall] = ACTIONS(2619), + [anon_sym___thiscall] = ACTIONS(2619), + [anon_sym___vectorcall] = ACTIONS(2619), + [anon_sym_LBRACE] = ACTIONS(2621), + [anon_sym_RBRACE] = ACTIONS(2621), + [anon_sym_LBRACK] = ACTIONS(2619), + [anon_sym_static] = ACTIONS(2619), + [anon_sym_register] = ACTIONS(2619), + [anon_sym_inline] = ACTIONS(2619), + [anon_sym_thread_local] = ACTIONS(2619), + [anon_sym_const] = ACTIONS(2619), + [anon_sym_volatile] = ACTIONS(2619), + [anon_sym_restrict] = ACTIONS(2619), + [anon_sym__Atomic] = ACTIONS(2619), + [anon_sym_mutable] = ACTIONS(2619), + [anon_sym_constexpr] = ACTIONS(2619), + [anon_sym_constinit] = ACTIONS(2619), + [anon_sym_consteval] = ACTIONS(2619), + [anon_sym_signed] = ACTIONS(2619), + [anon_sym_unsigned] = ACTIONS(2619), + [anon_sym_long] = ACTIONS(2619), + [anon_sym_short] = ACTIONS(2619), + [sym_primitive_type] = ACTIONS(2619), + [anon_sym_enum] = ACTIONS(2619), + [anon_sym_class] = ACTIONS(2619), + [anon_sym_struct] = ACTIONS(2619), + [anon_sym_union] = ACTIONS(2619), + [anon_sym_if] = ACTIONS(2619), + [anon_sym_else] = ACTIONS(2619), + [anon_sym_switch] = ACTIONS(2619), + [anon_sym_case] = ACTIONS(2619), + [anon_sym_default] = ACTIONS(2619), + [anon_sym_while] = ACTIONS(2619), + [anon_sym_do] = ACTIONS(2619), + [anon_sym_for] = ACTIONS(2619), + [anon_sym_return] = ACTIONS(2619), + [anon_sym_break] = ACTIONS(2619), + [anon_sym_continue] = ACTIONS(2619), + [anon_sym_goto] = ACTIONS(2619), + [anon_sym_not] = ACTIONS(2619), + [anon_sym_compl] = ACTIONS(2619), + [anon_sym_DASH_DASH] = ACTIONS(2621), + [anon_sym_PLUS_PLUS] = ACTIONS(2621), + [anon_sym_sizeof] = ACTIONS(2619), + [sym_number_literal] = ACTIONS(2621), + [anon_sym_L_SQUOTE] = ACTIONS(2621), + [anon_sym_u_SQUOTE] = ACTIONS(2621), + [anon_sym_U_SQUOTE] = ACTIONS(2621), + [anon_sym_u8_SQUOTE] = ACTIONS(2621), + [anon_sym_SQUOTE] = ACTIONS(2621), + [anon_sym_L_DQUOTE] = ACTIONS(2621), + [anon_sym_u_DQUOTE] = ACTIONS(2621), + [anon_sym_U_DQUOTE] = ACTIONS(2621), + [anon_sym_u8_DQUOTE] = ACTIONS(2621), + [anon_sym_DQUOTE] = ACTIONS(2621), + [sym_true] = ACTIONS(2619), + [sym_false] = ACTIONS(2619), + [sym_null] = ACTIONS(2619), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2619), + [anon_sym_decltype] = ACTIONS(2619), + [anon_sym_virtual] = ACTIONS(2619), + [anon_sym_explicit] = ACTIONS(2619), + [anon_sym_typename] = ACTIONS(2619), + [anon_sym_template] = ACTIONS(2619), + [anon_sym_operator] = ACTIONS(2619), + [anon_sym_try] = ACTIONS(2619), + [anon_sym_delete] = ACTIONS(2619), + [anon_sym_throw] = ACTIONS(2619), + [anon_sym_namespace] = ACTIONS(2619), + [anon_sym_using] = ACTIONS(2619), + [anon_sym_static_assert] = ACTIONS(2619), + [anon_sym_concept] = ACTIONS(2619), + [anon_sym_co_return] = ACTIONS(2619), + [anon_sym_co_yield] = ACTIONS(2619), + [anon_sym_co_await] = ACTIONS(2619), + [anon_sym_new] = ACTIONS(2619), + [anon_sym_requires] = ACTIONS(2619), + [sym_this] = ACTIONS(2619), + [sym_nullptr] = ACTIONS(2619), + [sym_raw_string_literal] = ACTIONS(2621), + }, + [856] = { + [sym_identifier] = ACTIONS(2623), + [aux_sym_preproc_include_token1] = ACTIONS(2623), + [aux_sym_preproc_def_token1] = ACTIONS(2623), + [aux_sym_preproc_if_token1] = ACTIONS(2623), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2623), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2623), + [sym_preproc_directive] = ACTIONS(2623), + [anon_sym_LPAREN2] = ACTIONS(2625), + [anon_sym_BANG] = ACTIONS(2625), + [anon_sym_TILDE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(2623), + [anon_sym_PLUS] = ACTIONS(2623), + [anon_sym_STAR] = ACTIONS(2625), + [anon_sym_AMP_AMP] = ACTIONS(2625), + [anon_sym_AMP] = ACTIONS(2623), + [anon_sym_SEMI] = ACTIONS(2625), + [anon_sym_typedef] = ACTIONS(2623), + [anon_sym_extern] = ACTIONS(2623), + [anon_sym___attribute__] = ACTIONS(2623), + [anon_sym_COLON_COLON] = ACTIONS(2625), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2625), + [anon_sym___declspec] = ACTIONS(2623), + [anon_sym___based] = ACTIONS(2623), + [anon_sym___cdecl] = ACTIONS(2623), + [anon_sym___clrcall] = ACTIONS(2623), + [anon_sym___stdcall] = ACTIONS(2623), + [anon_sym___fastcall] = ACTIONS(2623), + [anon_sym___thiscall] = ACTIONS(2623), + [anon_sym___vectorcall] = ACTIONS(2623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_RBRACE] = ACTIONS(2625), + [anon_sym_LBRACK] = ACTIONS(2623), + [anon_sym_static] = ACTIONS(2623), + [anon_sym_register] = ACTIONS(2623), + [anon_sym_inline] = ACTIONS(2623), + [anon_sym_thread_local] = ACTIONS(2623), + [anon_sym_const] = ACTIONS(2623), + [anon_sym_volatile] = ACTIONS(2623), + [anon_sym_restrict] = ACTIONS(2623), + [anon_sym__Atomic] = ACTIONS(2623), + [anon_sym_mutable] = ACTIONS(2623), + [anon_sym_constexpr] = ACTIONS(2623), + [anon_sym_constinit] = ACTIONS(2623), + [anon_sym_consteval] = ACTIONS(2623), + [anon_sym_signed] = ACTIONS(2623), + [anon_sym_unsigned] = ACTIONS(2623), + [anon_sym_long] = ACTIONS(2623), + [anon_sym_short] = ACTIONS(2623), + [sym_primitive_type] = ACTIONS(2623), + [anon_sym_enum] = ACTIONS(2623), + [anon_sym_class] = ACTIONS(2623), + [anon_sym_struct] = ACTIONS(2623), + [anon_sym_union] = ACTIONS(2623), + [anon_sym_if] = ACTIONS(2623), + [anon_sym_else] = ACTIONS(2623), + [anon_sym_switch] = ACTIONS(2623), + [anon_sym_case] = ACTIONS(2623), + [anon_sym_default] = ACTIONS(2623), + [anon_sym_while] = ACTIONS(2623), + [anon_sym_do] = ACTIONS(2623), + [anon_sym_for] = ACTIONS(2623), + [anon_sym_return] = ACTIONS(2623), + [anon_sym_break] = ACTIONS(2623), + [anon_sym_continue] = ACTIONS(2623), + [anon_sym_goto] = ACTIONS(2623), + [anon_sym_not] = ACTIONS(2623), + [anon_sym_compl] = ACTIONS(2623), + [anon_sym_DASH_DASH] = ACTIONS(2625), + [anon_sym_PLUS_PLUS] = ACTIONS(2625), + [anon_sym_sizeof] = ACTIONS(2623), + [sym_number_literal] = ACTIONS(2625), + [anon_sym_L_SQUOTE] = ACTIONS(2625), + [anon_sym_u_SQUOTE] = ACTIONS(2625), + [anon_sym_U_SQUOTE] = ACTIONS(2625), + [anon_sym_u8_SQUOTE] = ACTIONS(2625), + [anon_sym_SQUOTE] = ACTIONS(2625), + [anon_sym_L_DQUOTE] = ACTIONS(2625), + [anon_sym_u_DQUOTE] = ACTIONS(2625), + [anon_sym_U_DQUOTE] = ACTIONS(2625), + [anon_sym_u8_DQUOTE] = ACTIONS(2625), + [anon_sym_DQUOTE] = ACTIONS(2625), + [sym_true] = ACTIONS(2623), + [sym_false] = ACTIONS(2623), + [sym_null] = ACTIONS(2623), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2623), + [anon_sym_decltype] = ACTIONS(2623), + [anon_sym_virtual] = ACTIONS(2623), + [anon_sym_explicit] = ACTIONS(2623), + [anon_sym_typename] = ACTIONS(2623), + [anon_sym_template] = ACTIONS(2623), + [anon_sym_operator] = ACTIONS(2623), + [anon_sym_try] = ACTIONS(2623), + [anon_sym_delete] = ACTIONS(2623), + [anon_sym_throw] = ACTIONS(2623), + [anon_sym_namespace] = ACTIONS(2623), + [anon_sym_using] = ACTIONS(2623), + [anon_sym_static_assert] = ACTIONS(2623), + [anon_sym_concept] = ACTIONS(2623), + [anon_sym_co_return] = ACTIONS(2623), + [anon_sym_co_yield] = ACTIONS(2623), + [anon_sym_co_await] = ACTIONS(2623), + [anon_sym_new] = ACTIONS(2623), + [anon_sym_requires] = ACTIONS(2623), + [sym_this] = ACTIONS(2623), + [sym_nullptr] = ACTIONS(2623), + [sym_raw_string_literal] = ACTIONS(2625), + }, + [857] = { + [sym_identifier] = ACTIONS(2476), + [aux_sym_preproc_include_token1] = ACTIONS(2476), + [aux_sym_preproc_def_token1] = ACTIONS(2476), + [anon_sym_COMMA] = ACTIONS(2507), + [aux_sym_preproc_if_token1] = ACTIONS(2476), + [aux_sym_preproc_if_token2] = ACTIONS(2476), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2476), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2476), + [sym_preproc_directive] = ACTIONS(2476), + [anon_sym_LPAREN2] = ACTIONS(2478), + [anon_sym_BANG] = ACTIONS(2478), + [anon_sym_TILDE] = ACTIONS(2478), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_STAR] = ACTIONS(2478), + [anon_sym_AMP_AMP] = ACTIONS(2478), + [anon_sym_AMP] = ACTIONS(2476), + [anon_sym_SEMI] = ACTIONS(2507), + [anon_sym_typedef] = ACTIONS(2476), + [anon_sym_extern] = ACTIONS(2476), + [anon_sym___attribute__] = ACTIONS(2476), + [anon_sym_COLON_COLON] = ACTIONS(2478), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2478), + [anon_sym___declspec] = ACTIONS(2476), + [anon_sym___based] = ACTIONS(2476), + [anon_sym___cdecl] = ACTIONS(2476), + [anon_sym___clrcall] = ACTIONS(2476), + [anon_sym___stdcall] = ACTIONS(2476), + [anon_sym___fastcall] = ACTIONS(2476), + [anon_sym___thiscall] = ACTIONS(2476), + [anon_sym___vectorcall] = ACTIONS(2476), + [anon_sym_LBRACE] = ACTIONS(2478), + [anon_sym_LBRACK] = ACTIONS(2476), + [anon_sym_static] = ACTIONS(2476), + [anon_sym_register] = ACTIONS(2476), + [anon_sym_inline] = ACTIONS(2476), + [anon_sym_thread_local] = ACTIONS(2476), + [anon_sym_const] = ACTIONS(2476), + [anon_sym_volatile] = ACTIONS(2476), + [anon_sym_restrict] = ACTIONS(2476), + [anon_sym__Atomic] = ACTIONS(2476), + [anon_sym_mutable] = ACTIONS(2476), + [anon_sym_constexpr] = ACTIONS(2476), + [anon_sym_constinit] = ACTIONS(2476), + [anon_sym_consteval] = ACTIONS(2476), + [anon_sym_signed] = ACTIONS(2476), + [anon_sym_unsigned] = ACTIONS(2476), + [anon_sym_long] = ACTIONS(2476), + [anon_sym_short] = ACTIONS(2476), + [sym_primitive_type] = ACTIONS(2476), + [anon_sym_enum] = ACTIONS(2476), + [anon_sym_class] = ACTIONS(2476), + [anon_sym_struct] = ACTIONS(2476), + [anon_sym_union] = ACTIONS(2476), + [anon_sym_if] = ACTIONS(2476), + [anon_sym_switch] = ACTIONS(2476), + [anon_sym_case] = ACTIONS(2476), + [anon_sym_default] = ACTIONS(2476), + [anon_sym_while] = ACTIONS(2476), + [anon_sym_do] = ACTIONS(2476), + [anon_sym_for] = ACTIONS(2476), + [anon_sym_return] = ACTIONS(2476), + [anon_sym_break] = ACTIONS(2476), + [anon_sym_continue] = ACTIONS(2476), + [anon_sym_goto] = ACTIONS(2476), + [anon_sym_not] = ACTIONS(2476), + [anon_sym_compl] = ACTIONS(2476), + [anon_sym_DASH_DASH] = ACTIONS(2478), + [anon_sym_PLUS_PLUS] = ACTIONS(2478), + [anon_sym_sizeof] = ACTIONS(2476), + [sym_number_literal] = ACTIONS(2478), + [anon_sym_L_SQUOTE] = ACTIONS(2478), + [anon_sym_u_SQUOTE] = ACTIONS(2478), + [anon_sym_U_SQUOTE] = ACTIONS(2478), + [anon_sym_u8_SQUOTE] = ACTIONS(2478), + [anon_sym_SQUOTE] = ACTIONS(2478), + [anon_sym_L_DQUOTE] = ACTIONS(2478), + [anon_sym_u_DQUOTE] = ACTIONS(2478), + [anon_sym_U_DQUOTE] = ACTIONS(2478), + [anon_sym_u8_DQUOTE] = ACTIONS(2478), + [anon_sym_DQUOTE] = ACTIONS(2478), + [sym_true] = ACTIONS(2476), + [sym_false] = ACTIONS(2476), + [sym_null] = ACTIONS(2476), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2476), + [anon_sym_decltype] = ACTIONS(2476), + [anon_sym_virtual] = ACTIONS(2476), + [anon_sym_explicit] = ACTIONS(2476), + [anon_sym_typename] = ACTIONS(2476), + [anon_sym_template] = ACTIONS(2476), + [anon_sym_operator] = ACTIONS(2476), + [anon_sym_try] = ACTIONS(2476), + [anon_sym_delete] = ACTIONS(2476), + [anon_sym_throw] = ACTIONS(2476), + [anon_sym_namespace] = ACTIONS(2476), + [anon_sym_using] = ACTIONS(2476), + [anon_sym_static_assert] = ACTIONS(2476), + [anon_sym_concept] = ACTIONS(2476), + [anon_sym_co_return] = ACTIONS(2476), + [anon_sym_co_yield] = ACTIONS(2476), + [anon_sym_co_await] = ACTIONS(2476), + [anon_sym_new] = ACTIONS(2476), + [anon_sym_requires] = ACTIONS(2476), + [sym_this] = ACTIONS(2476), + [sym_nullptr] = ACTIONS(2476), + [sym_raw_string_literal] = ACTIONS(2478), + }, + [858] = { + [sym_identifier] = ACTIONS(2607), + [aux_sym_preproc_include_token1] = ACTIONS(2607), + [aux_sym_preproc_def_token1] = ACTIONS(2607), + [aux_sym_preproc_if_token1] = ACTIONS(2607), + [aux_sym_preproc_if_token2] = ACTIONS(2607), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2607), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2607), + [sym_preproc_directive] = ACTIONS(2607), + [anon_sym_LPAREN2] = ACTIONS(2609), + [anon_sym_BANG] = ACTIONS(2609), + [anon_sym_TILDE] = ACTIONS(2609), + [anon_sym_DASH] = ACTIONS(2607), + [anon_sym_PLUS] = ACTIONS(2607), + [anon_sym_STAR] = ACTIONS(2609), + [anon_sym_AMP_AMP] = ACTIONS(2609), + [anon_sym_AMP] = ACTIONS(2607), + [anon_sym_SEMI] = ACTIONS(2609), + [anon_sym_typedef] = ACTIONS(2607), + [anon_sym_extern] = ACTIONS(2607), + [anon_sym___attribute__] = ACTIONS(2607), + [anon_sym_COLON_COLON] = ACTIONS(2609), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2609), + [anon_sym___declspec] = ACTIONS(2607), + [anon_sym___based] = ACTIONS(2607), + [anon_sym___cdecl] = ACTIONS(2607), + [anon_sym___clrcall] = ACTIONS(2607), + [anon_sym___stdcall] = ACTIONS(2607), + [anon_sym___fastcall] = ACTIONS(2607), + [anon_sym___thiscall] = ACTIONS(2607), + [anon_sym___vectorcall] = ACTIONS(2607), + [anon_sym_LBRACE] = ACTIONS(2609), + [anon_sym_LBRACK] = ACTIONS(2607), + [anon_sym_static] = ACTIONS(2607), + [anon_sym_register] = ACTIONS(2607), + [anon_sym_inline] = ACTIONS(2607), + [anon_sym_thread_local] = ACTIONS(2607), + [anon_sym_const] = ACTIONS(2607), + [anon_sym_volatile] = ACTIONS(2607), + [anon_sym_restrict] = ACTIONS(2607), + [anon_sym__Atomic] = ACTIONS(2607), + [anon_sym_mutable] = ACTIONS(2607), + [anon_sym_constexpr] = ACTIONS(2607), + [anon_sym_constinit] = ACTIONS(2607), + [anon_sym_consteval] = ACTIONS(2607), + [anon_sym_signed] = ACTIONS(2607), + [anon_sym_unsigned] = ACTIONS(2607), + [anon_sym_long] = ACTIONS(2607), + [anon_sym_short] = ACTIONS(2607), + [sym_primitive_type] = ACTIONS(2607), + [anon_sym_enum] = ACTIONS(2607), + [anon_sym_class] = ACTIONS(2607), + [anon_sym_struct] = ACTIONS(2607), + [anon_sym_union] = ACTIONS(2607), + [anon_sym_if] = ACTIONS(2607), + [anon_sym_else] = ACTIONS(2607), + [anon_sym_switch] = ACTIONS(2607), + [anon_sym_case] = ACTIONS(2607), + [anon_sym_default] = ACTIONS(2607), + [anon_sym_while] = ACTIONS(2607), + [anon_sym_do] = ACTIONS(2607), + [anon_sym_for] = ACTIONS(2607), + [anon_sym_return] = ACTIONS(2607), + [anon_sym_break] = ACTIONS(2607), + [anon_sym_continue] = ACTIONS(2607), + [anon_sym_goto] = ACTIONS(2607), + [anon_sym_not] = ACTIONS(2607), + [anon_sym_compl] = ACTIONS(2607), + [anon_sym_DASH_DASH] = ACTIONS(2609), + [anon_sym_PLUS_PLUS] = ACTIONS(2609), + [anon_sym_sizeof] = ACTIONS(2607), + [sym_number_literal] = ACTIONS(2609), + [anon_sym_L_SQUOTE] = ACTIONS(2609), + [anon_sym_u_SQUOTE] = ACTIONS(2609), + [anon_sym_U_SQUOTE] = ACTIONS(2609), + [anon_sym_u8_SQUOTE] = ACTIONS(2609), + [anon_sym_SQUOTE] = ACTIONS(2609), + [anon_sym_L_DQUOTE] = ACTIONS(2609), + [anon_sym_u_DQUOTE] = ACTIONS(2609), + [anon_sym_U_DQUOTE] = ACTIONS(2609), + [anon_sym_u8_DQUOTE] = ACTIONS(2609), + [anon_sym_DQUOTE] = ACTIONS(2609), + [sym_true] = ACTIONS(2607), + [sym_false] = ACTIONS(2607), + [sym_null] = ACTIONS(2607), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2607), + [anon_sym_decltype] = ACTIONS(2607), + [anon_sym_virtual] = ACTIONS(2607), + [anon_sym_explicit] = ACTIONS(2607), + [anon_sym_typename] = ACTIONS(2607), + [anon_sym_template] = ACTIONS(2607), + [anon_sym_operator] = ACTIONS(2607), + [anon_sym_try] = ACTIONS(2607), + [anon_sym_delete] = ACTIONS(2607), + [anon_sym_throw] = ACTIONS(2607), + [anon_sym_namespace] = ACTIONS(2607), + [anon_sym_using] = ACTIONS(2607), + [anon_sym_static_assert] = ACTIONS(2607), + [anon_sym_concept] = ACTIONS(2607), + [anon_sym_co_return] = ACTIONS(2607), + [anon_sym_co_yield] = ACTIONS(2607), + [anon_sym_co_await] = ACTIONS(2607), + [anon_sym_new] = ACTIONS(2607), + [anon_sym_requires] = ACTIONS(2607), + [sym_this] = ACTIONS(2607), + [sym_nullptr] = ACTIONS(2607), + [sym_raw_string_literal] = ACTIONS(2609), + }, + [859] = { + [sym_identifier] = ACTIONS(2635), + [aux_sym_preproc_include_token1] = ACTIONS(2635), + [aux_sym_preproc_def_token1] = ACTIONS(2635), + [aux_sym_preproc_if_token1] = ACTIONS(2635), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2635), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2635), + [sym_preproc_directive] = ACTIONS(2635), + [anon_sym_LPAREN2] = ACTIONS(2637), + [anon_sym_BANG] = ACTIONS(2637), + [anon_sym_TILDE] = ACTIONS(2637), + [anon_sym_DASH] = ACTIONS(2635), + [anon_sym_PLUS] = ACTIONS(2635), + [anon_sym_STAR] = ACTIONS(2637), + [anon_sym_AMP_AMP] = ACTIONS(2637), + [anon_sym_AMP] = ACTIONS(2635), + [anon_sym_SEMI] = ACTIONS(2637), + [anon_sym_typedef] = ACTIONS(2635), + [anon_sym_extern] = ACTIONS(2635), + [anon_sym___attribute__] = ACTIONS(2635), + [anon_sym_COLON_COLON] = ACTIONS(2637), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2637), + [anon_sym___declspec] = ACTIONS(2635), + [anon_sym___based] = ACTIONS(2635), + [anon_sym___cdecl] = ACTIONS(2635), + [anon_sym___clrcall] = ACTIONS(2635), + [anon_sym___stdcall] = ACTIONS(2635), + [anon_sym___fastcall] = ACTIONS(2635), + [anon_sym___thiscall] = ACTIONS(2635), + [anon_sym___vectorcall] = ACTIONS(2635), + [anon_sym_LBRACE] = ACTIONS(2637), + [anon_sym_RBRACE] = ACTIONS(2637), + [anon_sym_LBRACK] = ACTIONS(2635), + [anon_sym_static] = ACTIONS(2635), + [anon_sym_register] = ACTIONS(2635), + [anon_sym_inline] = ACTIONS(2635), + [anon_sym_thread_local] = ACTIONS(2635), + [anon_sym_const] = ACTIONS(2635), + [anon_sym_volatile] = ACTIONS(2635), + [anon_sym_restrict] = ACTIONS(2635), + [anon_sym__Atomic] = ACTIONS(2635), + [anon_sym_mutable] = ACTIONS(2635), + [anon_sym_constexpr] = ACTIONS(2635), + [anon_sym_constinit] = ACTIONS(2635), + [anon_sym_consteval] = ACTIONS(2635), + [anon_sym_signed] = ACTIONS(2635), + [anon_sym_unsigned] = ACTIONS(2635), + [anon_sym_long] = ACTIONS(2635), + [anon_sym_short] = ACTIONS(2635), + [sym_primitive_type] = ACTIONS(2635), + [anon_sym_enum] = ACTIONS(2635), + [anon_sym_class] = ACTIONS(2635), + [anon_sym_struct] = ACTIONS(2635), + [anon_sym_union] = ACTIONS(2635), + [anon_sym_if] = ACTIONS(2635), + [anon_sym_else] = ACTIONS(2635), + [anon_sym_switch] = ACTIONS(2635), + [anon_sym_case] = ACTIONS(2635), + [anon_sym_default] = ACTIONS(2635), + [anon_sym_while] = ACTIONS(2635), + [anon_sym_do] = ACTIONS(2635), + [anon_sym_for] = ACTIONS(2635), + [anon_sym_return] = ACTIONS(2635), + [anon_sym_break] = ACTIONS(2635), + [anon_sym_continue] = ACTIONS(2635), + [anon_sym_goto] = ACTIONS(2635), + [anon_sym_not] = ACTIONS(2635), + [anon_sym_compl] = ACTIONS(2635), + [anon_sym_DASH_DASH] = ACTIONS(2637), + [anon_sym_PLUS_PLUS] = ACTIONS(2637), + [anon_sym_sizeof] = ACTIONS(2635), + [sym_number_literal] = ACTIONS(2637), + [anon_sym_L_SQUOTE] = ACTIONS(2637), + [anon_sym_u_SQUOTE] = ACTIONS(2637), + [anon_sym_U_SQUOTE] = ACTIONS(2637), + [anon_sym_u8_SQUOTE] = ACTIONS(2637), + [anon_sym_SQUOTE] = ACTIONS(2637), + [anon_sym_L_DQUOTE] = ACTIONS(2637), + [anon_sym_u_DQUOTE] = ACTIONS(2637), + [anon_sym_U_DQUOTE] = ACTIONS(2637), + [anon_sym_u8_DQUOTE] = ACTIONS(2637), + [anon_sym_DQUOTE] = ACTIONS(2637), + [sym_true] = ACTIONS(2635), + [sym_false] = ACTIONS(2635), + [sym_null] = ACTIONS(2635), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2635), + [anon_sym_decltype] = ACTIONS(2635), + [anon_sym_virtual] = ACTIONS(2635), + [anon_sym_explicit] = ACTIONS(2635), + [anon_sym_typename] = ACTIONS(2635), + [anon_sym_template] = ACTIONS(2635), + [anon_sym_operator] = ACTIONS(2635), + [anon_sym_try] = ACTIONS(2635), + [anon_sym_delete] = ACTIONS(2635), + [anon_sym_throw] = ACTIONS(2635), + [anon_sym_namespace] = ACTIONS(2635), + [anon_sym_using] = ACTIONS(2635), + [anon_sym_static_assert] = ACTIONS(2635), + [anon_sym_concept] = ACTIONS(2635), + [anon_sym_co_return] = ACTIONS(2635), + [anon_sym_co_yield] = ACTIONS(2635), + [anon_sym_co_await] = ACTIONS(2635), + [anon_sym_new] = ACTIONS(2635), + [anon_sym_requires] = ACTIONS(2635), + [sym_this] = ACTIONS(2635), + [sym_nullptr] = ACTIONS(2635), + [sym_raw_string_literal] = ACTIONS(2637), + }, + [860] = { + [sym_type_qualifier] = STATE(3373), + [sym__type_specifier] = STATE(4189), [sym_sized_type_specifier] = STATE(3139), [sym_enum_specifier] = STATE(3139), [sym_struct_specifier] = STATE(3139), [sym_union_specifier] = STATE(3139), - [sym_parameter_list] = STATE(4080), - [sym_parameter_declaration] = STATE(5626), + [sym__expression] = STATE(3761), + [sym_conditional_expression] = STATE(3865), + [sym_assignment_expression] = STATE(3865), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3865), + [sym_binary_expression] = STATE(3865), + [sym_update_expression] = STATE(3865), + [sym_cast_expression] = STATE(3865), + [sym_type_descriptor] = STATE(6004), + [sym_sizeof_expression] = STATE(3865), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3865), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3707), + [sym_concatenated_string] = STATE(3707), + [sym_string_literal] = STATE(3250), [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), + [sym_decltype_auto] = STATE(3138), [sym_decltype] = STATE(3139), [sym_class_specifier] = STATE(3139), - [sym_virtual_function_specifier] = STATE(1892), + [sym__class_name] = STATE(6539), [sym_dependent_type] = STATE(3139), - [sym_optional_parameter_declaration] = STATE(5626), - [sym_variadic_parameter_declaration] = STATE(5626), - [sym_abstract_reference_declarator] = STATE(4832), - [sym_template_type] = STATE(2976), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(5144), - [sym_qualified_type_identifier] = STATE(3198), - [aux_sym__declaration_specifiers_repeat1] = STATE(1892), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [sym_identifier] = ACTIONS(3365), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3083), - [anon_sym_RPAREN] = ACTIONS(3085), - [anon_sym_LPAREN2] = ACTIONS(3369), - [anon_sym_STAR] = ACTIONS(3371), - [anon_sym_AMP_AMP] = ACTIONS(3373), - [anon_sym_AMP] = ACTIONS(3375), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3377), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1389), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_LBRACK] = ACTIONS(3379), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), + [sym_template_type] = STATE(4443), + [sym_template_function] = STATE(3865), + [sym_co_await_expression] = STATE(3865), + [sym_new_expression] = STATE(3865), + [sym_delete_expression] = STATE(3865), + [sym_requires_clause] = STATE(3865), + [sym_requires_expression] = STATE(3865), + [sym_lambda_expression] = STATE(3865), + [sym_lambda_capture_specifier] = STATE(4789), + [sym_fold_expression] = STATE(3865), + [sym_parameter_pack_expansion] = STATE(3865), + [sym_type_parameter_pack_expansion] = STATE(6592), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4919), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(4514), + [sym_user_defined_literal] = STATE(3865), + [aux_sym_type_definition_repeat1] = STATE(3373), + [aux_sym_sized_type_specifier_repeat1] = STATE(2300), + [sym_identifier] = ACTIONS(2663), + [anon_sym_LPAREN2] = ACTIONS(2665), + [anon_sym_BANG] = ACTIONS(2667), + [anon_sym_TILDE] = ACTIONS(2667), + [anon_sym_DASH] = ACTIONS(2669), + [anon_sym_PLUS] = ACTIONS(2669), + [anon_sym_STAR] = ACTIONS(2671), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_COLON_COLON] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(1713), [anon_sym_const] = ACTIONS(57), [anon_sym_volatile] = ACTIONS(57), [anon_sym_restrict] = ACTIONS(57), @@ -171675,14335 +131825,22736 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_constexpr] = ACTIONS(57), [anon_sym_constinit] = ACTIONS(57), [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(2809), - [anon_sym_enum] = ACTIONS(1427), - [anon_sym_class] = ACTIONS(1429), - [anon_sym_struct] = ACTIONS(1431), - [anon_sym_union] = ACTIONS(1433), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(105), - [anon_sym_decltype] = ACTIONS(107), - [anon_sym_virtual] = ACTIONS(109), - [anon_sym_typename] = ACTIONS(1447), - [anon_sym_template] = ACTIONS(972), - }, - [1320] = { - [sym__expression] = STATE(2641), - [sym_conditional_expression] = STATE(2765), - [sym_assignment_expression] = STATE(2765), - [sym_pointer_expression] = STATE(2827), - [sym_unary_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_update_expression] = STATE(2765), - [sym_cast_expression] = STATE(2765), - [sym_sizeof_expression] = STATE(2765), - [sym_subscript_expression] = STATE(2827), - [sym_call_expression] = STATE(2827), - [sym_field_expression] = STATE(2827), - [sym_compound_literal_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2827), - [sym_char_literal] = STATE(2674), - [sym_concatenated_string] = STATE(2674), - [sym_string_literal] = STATE(2093), - [sym__class_name] = STATE(6297), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2765), - [sym_co_await_expression] = STATE(2765), - [sym_new_expression] = STATE(2765), - [sym_delete_expression] = STATE(2765), - [sym_requires_clause] = STATE(2765), - [sym_requires_expression] = STATE(2765), - [sym_lambda_expression] = STATE(2765), - [sym_lambda_capture_specifier] = STATE(4512), - [sym_fold_expression] = STATE(2765), - [sym_parameter_pack_expansion] = STATE(2765), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4648), - [sym_qualified_identifier] = STATE(2827), - [sym_qualified_type_identifier] = STATE(6297), - [sym_user_defined_literal] = STATE(2765), - [sym_identifier] = ACTIONS(2363), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(1417), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(3381), - [anon_sym_AMP_AMP] = ACTIONS(3381), - [anon_sym_AMP] = ACTIONS(3383), - [anon_sym_LT] = ACTIONS(3381), - [anon_sym_COLON_COLON] = ACTIONS(1423), - [anon_sym_LBRACE] = ACTIONS(3381), - [anon_sym_LBRACK] = ACTIONS(3381), - [sym_primitive_type] = ACTIONS(2369), - [anon_sym_DASH_DASH] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [anon_sym_sizeof] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(1439), - [anon_sym_L_SQUOTE] = ACTIONS(1441), - [anon_sym_u_SQUOTE] = ACTIONS(1441), - [anon_sym_U_SQUOTE] = ACTIONS(1441), - [anon_sym_u8_SQUOTE] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1441), - [anon_sym_L_DQUOTE] = ACTIONS(1443), - [anon_sym_u_DQUOTE] = ACTIONS(1443), - [anon_sym_U_DQUOTE] = ACTIONS(1443), - [anon_sym_u8_DQUOTE] = ACTIONS(1443), - [anon_sym_DQUOTE] = ACTIONS(1443), - [sym_true] = ACTIONS(1445), - [sym_false] = ACTIONS(1445), - [sym_null] = ACTIONS(1445), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_co_await] = ACTIONS(1451), - [anon_sym_new] = ACTIONS(1453), - [anon_sym_requires] = ACTIONS(1455), - [sym_this] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(1445), - [sym_raw_string_literal] = ACTIONS(1457), - }, - [1321] = { - [sym__expression] = STATE(2870), - [sym_conditional_expression] = STATE(3000), - [sym_assignment_expression] = STATE(3000), - [sym_pointer_expression] = STATE(3006), - [sym_unary_expression] = STATE(3000), - [sym_binary_expression] = STATE(3000), - [sym_update_expression] = STATE(3000), - [sym_cast_expression] = STATE(3000), - [sym_sizeof_expression] = STATE(3000), - [sym_subscript_expression] = STATE(3006), - [sym_call_expression] = STATE(3006), - [sym_field_expression] = STATE(3006), - [sym_compound_literal_expression] = STATE(3000), - [sym_parenthesized_expression] = STATE(3006), - [sym_char_literal] = STATE(2896), - [sym_concatenated_string] = STATE(2896), - [sym_string_literal] = STATE(2154), - [sym__class_name] = STATE(5849), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3000), - [sym_co_await_expression] = STATE(3000), - [sym_new_expression] = STATE(3000), - [sym_delete_expression] = STATE(3000), - [sym_requires_clause] = STATE(3000), - [sym_requires_expression] = STATE(3000), - [sym_lambda_expression] = STATE(3000), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3000), - [sym_parameter_pack_expansion] = STATE(3000), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4642), - [sym_qualified_identifier] = STATE(3006), - [sym_qualified_type_identifier] = STATE(5849), - [sym_user_defined_literal] = STATE(3000), - [sym_identifier] = ACTIONS(2831), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(2837), - [anon_sym_TILDE] = ACTIONS(2837), - [anon_sym_DASH] = ACTIONS(2835), - [anon_sym_PLUS] = ACTIONS(2835), - [anon_sym_STAR] = ACTIONS(3381), - [anon_sym_AMP_AMP] = ACTIONS(3381), - [anon_sym_AMP] = ACTIONS(3383), - [anon_sym_LT] = ACTIONS(3381), - [anon_sym_COLON_COLON] = ACTIONS(2841), - [anon_sym_LBRACE] = ACTIONS(3381), - [anon_sym_LBRACK] = ACTIONS(3381), - [sym_primitive_type] = ACTIONS(2845), - [anon_sym_DASH_DASH] = ACTIONS(2847), - [anon_sym_PLUS_PLUS] = ACTIONS(2847), - [anon_sym_sizeof] = ACTIONS(2849), - [sym_number_literal] = ACTIONS(2851), - [anon_sym_L_SQUOTE] = ACTIONS(2853), - [anon_sym_u_SQUOTE] = ACTIONS(2853), - [anon_sym_U_SQUOTE] = ACTIONS(2853), - [anon_sym_u8_SQUOTE] = ACTIONS(2853), - [anon_sym_SQUOTE] = ACTIONS(2853), - [anon_sym_L_DQUOTE] = ACTIONS(2855), - [anon_sym_u_DQUOTE] = ACTIONS(2855), - [anon_sym_U_DQUOTE] = ACTIONS(2855), - [anon_sym_u8_DQUOTE] = ACTIONS(2855), - [anon_sym_DQUOTE] = ACTIONS(2855), - [sym_true] = ACTIONS(2857), - [sym_false] = ACTIONS(2857), - [sym_null] = ACTIONS(2857), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_co_await] = ACTIONS(2861), - [anon_sym_new] = ACTIONS(2863), - [anon_sym_requires] = ACTIONS(2865), - [sym_this] = ACTIONS(2857), - [sym_nullptr] = ACTIONS(2857), - [sym_raw_string_literal] = ACTIONS(2867), - }, - [1322] = { - [sym__expression] = STATE(3538), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2981), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2981), - [sym_call_expression] = STATE(2981), - [sym_field_expression] = STATE(2981), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2981), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_lambda_default_capture] = STATE(6332), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2981), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3431), - [anon_sym_LPAREN2] = ACTIONS(3041), - [anon_sym_BANG] = ACTIONS(3045), - [anon_sym_TILDE] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(3357), - [anon_sym_COLON_COLON] = ACTIONS(3047), - [anon_sym_LBRACK] = ACTIONS(2272), - [anon_sym_RBRACK] = ACTIONS(3389), - [anon_sym_EQ] = ACTIONS(3361), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3049), - [anon_sym_PLUS_PLUS] = ACTIONS(3049), - [anon_sym_sizeof] = ACTIONS(3051), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [anon_sym_signed] = ACTIONS(2675), + [anon_sym_unsigned] = ACTIONS(2675), + [anon_sym_long] = ACTIONS(2675), + [anon_sym_short] = ACTIONS(2675), + [sym_primitive_type] = ACTIONS(2677), + [anon_sym_enum] = ACTIONS(2679), + [anon_sym_class] = ACTIONS(2681), + [anon_sym_struct] = ACTIONS(2683), + [anon_sym_union] = ACTIONS(2685), + [anon_sym_not] = ACTIONS(2669), + [anon_sym_compl] = ACTIONS(2669), + [anon_sym_DASH_DASH] = ACTIONS(2687), + [anon_sym_PLUS_PLUS] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2689), + [sym_number_literal] = ACTIONS(2691), + [anon_sym_L_SQUOTE] = ACTIONS(2693), + [anon_sym_u_SQUOTE] = ACTIONS(2693), + [anon_sym_U_SQUOTE] = ACTIONS(2693), + [anon_sym_u8_SQUOTE] = ACTIONS(2693), + [anon_sym_SQUOTE] = ACTIONS(2693), + [anon_sym_L_DQUOTE] = ACTIONS(2695), + [anon_sym_u_DQUOTE] = ACTIONS(2695), + [anon_sym_U_DQUOTE] = ACTIONS(2695), + [anon_sym_u8_DQUOTE] = ACTIONS(2695), + [anon_sym_DQUOTE] = ACTIONS(2695), + [sym_true] = ACTIONS(2697), + [sym_false] = ACTIONS(2697), + [sym_null] = ACTIONS(2697), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3053), - [anon_sym_co_await] = ACTIONS(3055), - [anon_sym_new] = ACTIONS(3057), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2699), + [anon_sym_decltype] = ACTIONS(2701), + [anon_sym_typename] = ACTIONS(2703), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(2707), + [anon_sym_co_await] = ACTIONS(2709), + [anon_sym_new] = ACTIONS(2711), + [anon_sym_requires] = ACTIONS(2713), + [sym_this] = ACTIONS(2697), + [sym_nullptr] = ACTIONS(2697), + [sym_raw_string_literal] = ACTIONS(2715), }, - [1323] = { - [sym__expression] = STATE(3799), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(3196), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(3196), - [sym_call_expression] = STATE(3196), - [sym_field_expression] = STATE(3196), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(3196), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(3196), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3065), - [anon_sym_TILDE] = ACTIONS(3065), - [anon_sym_DASH] = ACTIONS(3063), - [anon_sym_PLUS] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3381), - [anon_sym_AMP_AMP] = ACTIONS(3381), - [anon_sym_AMP] = ACTIONS(3383), - [anon_sym_LT] = ACTIONS(3381), - [anon_sym_COLON_COLON] = ACTIONS(3069), - [anon_sym_LBRACE] = ACTIONS(3381), - [anon_sym_LBRACK] = ACTIONS(3381), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3071), - [anon_sym_PLUS_PLUS] = ACTIONS(3071), - [anon_sym_sizeof] = ACTIONS(3073), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3075), - [anon_sym_co_await] = ACTIONS(3077), - [anon_sym_new] = ACTIONS(3079), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [861] = { + [sym_identifier] = ACTIONS(2635), + [aux_sym_preproc_include_token1] = ACTIONS(2635), + [aux_sym_preproc_def_token1] = ACTIONS(2635), + [aux_sym_preproc_if_token1] = ACTIONS(2635), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2635), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2635), + [sym_preproc_directive] = ACTIONS(2635), + [anon_sym_LPAREN2] = ACTIONS(2637), + [anon_sym_BANG] = ACTIONS(2637), + [anon_sym_TILDE] = ACTIONS(2637), + [anon_sym_DASH] = ACTIONS(2635), + [anon_sym_PLUS] = ACTIONS(2635), + [anon_sym_STAR] = ACTIONS(2637), + [anon_sym_AMP_AMP] = ACTIONS(2637), + [anon_sym_AMP] = ACTIONS(2635), + [anon_sym_SEMI] = ACTIONS(2637), + [anon_sym_typedef] = ACTIONS(2635), + [anon_sym_extern] = ACTIONS(2635), + [anon_sym___attribute__] = ACTIONS(2635), + [anon_sym_COLON_COLON] = ACTIONS(2637), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2637), + [anon_sym___declspec] = ACTIONS(2635), + [anon_sym___based] = ACTIONS(2635), + [anon_sym___cdecl] = ACTIONS(2635), + [anon_sym___clrcall] = ACTIONS(2635), + [anon_sym___stdcall] = ACTIONS(2635), + [anon_sym___fastcall] = ACTIONS(2635), + [anon_sym___thiscall] = ACTIONS(2635), + [anon_sym___vectorcall] = ACTIONS(2635), + [anon_sym_LBRACE] = ACTIONS(2637), + [anon_sym_RBRACE] = ACTIONS(2637), + [anon_sym_LBRACK] = ACTIONS(2635), + [anon_sym_static] = ACTIONS(2635), + [anon_sym_register] = ACTIONS(2635), + [anon_sym_inline] = ACTIONS(2635), + [anon_sym_thread_local] = ACTIONS(2635), + [anon_sym_const] = ACTIONS(2635), + [anon_sym_volatile] = ACTIONS(2635), + [anon_sym_restrict] = ACTIONS(2635), + [anon_sym__Atomic] = ACTIONS(2635), + [anon_sym_mutable] = ACTIONS(2635), + [anon_sym_constexpr] = ACTIONS(2635), + [anon_sym_constinit] = ACTIONS(2635), + [anon_sym_consteval] = ACTIONS(2635), + [anon_sym_signed] = ACTIONS(2635), + [anon_sym_unsigned] = ACTIONS(2635), + [anon_sym_long] = ACTIONS(2635), + [anon_sym_short] = ACTIONS(2635), + [sym_primitive_type] = ACTIONS(2635), + [anon_sym_enum] = ACTIONS(2635), + [anon_sym_class] = ACTIONS(2635), + [anon_sym_struct] = ACTIONS(2635), + [anon_sym_union] = ACTIONS(2635), + [anon_sym_if] = ACTIONS(2635), + [anon_sym_else] = ACTIONS(2635), + [anon_sym_switch] = ACTIONS(2635), + [anon_sym_case] = ACTIONS(2635), + [anon_sym_default] = ACTIONS(2635), + [anon_sym_while] = ACTIONS(2635), + [anon_sym_do] = ACTIONS(2635), + [anon_sym_for] = ACTIONS(2635), + [anon_sym_return] = ACTIONS(2635), + [anon_sym_break] = ACTIONS(2635), + [anon_sym_continue] = ACTIONS(2635), + [anon_sym_goto] = ACTIONS(2635), + [anon_sym_not] = ACTIONS(2635), + [anon_sym_compl] = ACTIONS(2635), + [anon_sym_DASH_DASH] = ACTIONS(2637), + [anon_sym_PLUS_PLUS] = ACTIONS(2637), + [anon_sym_sizeof] = ACTIONS(2635), + [sym_number_literal] = ACTIONS(2637), + [anon_sym_L_SQUOTE] = ACTIONS(2637), + [anon_sym_u_SQUOTE] = ACTIONS(2637), + [anon_sym_U_SQUOTE] = ACTIONS(2637), + [anon_sym_u8_SQUOTE] = ACTIONS(2637), + [anon_sym_SQUOTE] = ACTIONS(2637), + [anon_sym_L_DQUOTE] = ACTIONS(2637), + [anon_sym_u_DQUOTE] = ACTIONS(2637), + [anon_sym_U_DQUOTE] = ACTIONS(2637), + [anon_sym_u8_DQUOTE] = ACTIONS(2637), + [anon_sym_DQUOTE] = ACTIONS(2637), + [sym_true] = ACTIONS(2635), + [sym_false] = ACTIONS(2635), + [sym_null] = ACTIONS(2635), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2635), + [anon_sym_decltype] = ACTIONS(2635), + [anon_sym_virtual] = ACTIONS(2635), + [anon_sym_explicit] = ACTIONS(2635), + [anon_sym_typename] = ACTIONS(2635), + [anon_sym_template] = ACTIONS(2635), + [anon_sym_operator] = ACTIONS(2635), + [anon_sym_try] = ACTIONS(2635), + [anon_sym_delete] = ACTIONS(2635), + [anon_sym_throw] = ACTIONS(2635), + [anon_sym_namespace] = ACTIONS(2635), + [anon_sym_using] = ACTIONS(2635), + [anon_sym_static_assert] = ACTIONS(2635), + [anon_sym_concept] = ACTIONS(2635), + [anon_sym_co_return] = ACTIONS(2635), + [anon_sym_co_yield] = ACTIONS(2635), + [anon_sym_co_await] = ACTIONS(2635), + [anon_sym_new] = ACTIONS(2635), + [anon_sym_requires] = ACTIONS(2635), + [sym_this] = ACTIONS(2635), + [sym_nullptr] = ACTIONS(2635), + [sym_raw_string_literal] = ACTIONS(2637), }, - [1324] = { - [sym__expression] = STATE(2601), - [sym_conditional_expression] = STATE(2541), - [sym_assignment_expression] = STATE(2541), - [sym_pointer_expression] = STATE(2531), - [sym_unary_expression] = STATE(2541), - [sym_binary_expression] = STATE(2541), - [sym_update_expression] = STATE(2541), - [sym_cast_expression] = STATE(2541), - [sym_sizeof_expression] = STATE(2541), - [sym_subscript_expression] = STATE(2531), - [sym_call_expression] = STATE(2531), - [sym_field_expression] = STATE(2531), - [sym_compound_literal_expression] = STATE(2541), - [sym_parenthesized_expression] = STATE(2531), - [sym_char_literal] = STATE(2481), - [sym_concatenated_string] = STATE(2481), - [sym_string_literal] = STATE(2063), - [sym__class_name] = STATE(6239), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2541), - [sym_co_await_expression] = STATE(2541), - [sym_new_expression] = STATE(2541), - [sym_delete_expression] = STATE(2541), - [sym_requires_clause] = STATE(2541), - [sym_requires_expression] = STATE(2541), - [sym_lambda_expression] = STATE(2541), - [sym_lambda_capture_specifier] = STATE(4508), - [sym_fold_expression] = STATE(2541), - [sym_parameter_pack_expansion] = STATE(2541), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2531), - [sym_qualified_type_identifier] = STATE(6239), - [sym_user_defined_literal] = STATE(2541), - [sym_identifier] = ACTIONS(2306), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(2314), - [anon_sym_TILDE] = ACTIONS(2314), - [anon_sym_DASH] = ACTIONS(2312), - [anon_sym_PLUS] = ACTIONS(2312), - [anon_sym_STAR] = ACTIONS(3381), - [anon_sym_AMP_AMP] = ACTIONS(3381), - [anon_sym_AMP] = ACTIONS(3383), - [anon_sym_LT] = ACTIONS(3381), - [anon_sym_COLON_COLON] = ACTIONS(2318), - [anon_sym_LBRACE] = ACTIONS(3381), - [anon_sym_LBRACK] = ACTIONS(3381), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(2322), - [anon_sym_PLUS_PLUS] = ACTIONS(2322), - [anon_sym_sizeof] = ACTIONS(2324), - [sym_number_literal] = ACTIONS(2326), - [anon_sym_L_SQUOTE] = ACTIONS(2328), - [anon_sym_u_SQUOTE] = ACTIONS(2328), - [anon_sym_U_SQUOTE] = ACTIONS(2328), - [anon_sym_u8_SQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2328), - [anon_sym_L_DQUOTE] = ACTIONS(2330), - [anon_sym_u_DQUOTE] = ACTIONS(2330), - [anon_sym_U_DQUOTE] = ACTIONS(2330), - [anon_sym_u8_DQUOTE] = ACTIONS(2330), - [anon_sym_DQUOTE] = ACTIONS(2330), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2334), - [anon_sym_co_await] = ACTIONS(2336), - [anon_sym_new] = ACTIONS(2338), - [anon_sym_requires] = ACTIONS(2340), - [sym_this] = ACTIONS(2332), - [sym_nullptr] = ACTIONS(2332), - [sym_raw_string_literal] = ACTIONS(2342), + [862] = { + [sym_identifier] = ACTIONS(2476), + [aux_sym_preproc_include_token1] = ACTIONS(2476), + [aux_sym_preproc_def_token1] = ACTIONS(2476), + [anon_sym_COMMA] = ACTIONS(2507), + [aux_sym_preproc_if_token1] = ACTIONS(2476), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2476), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2476), + [sym_preproc_directive] = ACTIONS(2476), + [anon_sym_LPAREN2] = ACTIONS(2478), + [anon_sym_BANG] = ACTIONS(2478), + [anon_sym_TILDE] = ACTIONS(2478), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_STAR] = ACTIONS(2478), + [anon_sym_AMP_AMP] = ACTIONS(2478), + [anon_sym_AMP] = ACTIONS(2476), + [anon_sym_SEMI] = ACTIONS(2507), + [anon_sym_typedef] = ACTIONS(2476), + [anon_sym_extern] = ACTIONS(2476), + [anon_sym___attribute__] = ACTIONS(2476), + [anon_sym_COLON_COLON] = ACTIONS(2478), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2478), + [anon_sym___declspec] = ACTIONS(2476), + [anon_sym___based] = ACTIONS(2476), + [anon_sym___cdecl] = ACTIONS(2476), + [anon_sym___clrcall] = ACTIONS(2476), + [anon_sym___stdcall] = ACTIONS(2476), + [anon_sym___fastcall] = ACTIONS(2476), + [anon_sym___thiscall] = ACTIONS(2476), + [anon_sym___vectorcall] = ACTIONS(2476), + [anon_sym_LBRACE] = ACTIONS(2478), + [anon_sym_RBRACE] = ACTIONS(2478), + [anon_sym_LBRACK] = ACTIONS(2476), + [anon_sym_static] = ACTIONS(2476), + [anon_sym_register] = ACTIONS(2476), + [anon_sym_inline] = ACTIONS(2476), + [anon_sym_thread_local] = ACTIONS(2476), + [anon_sym_const] = ACTIONS(2476), + [anon_sym_volatile] = ACTIONS(2476), + [anon_sym_restrict] = ACTIONS(2476), + [anon_sym__Atomic] = ACTIONS(2476), + [anon_sym_mutable] = ACTIONS(2476), + [anon_sym_constexpr] = ACTIONS(2476), + [anon_sym_constinit] = ACTIONS(2476), + [anon_sym_consteval] = ACTIONS(2476), + [anon_sym_signed] = ACTIONS(2476), + [anon_sym_unsigned] = ACTIONS(2476), + [anon_sym_long] = ACTIONS(2476), + [anon_sym_short] = ACTIONS(2476), + [sym_primitive_type] = ACTIONS(2476), + [anon_sym_enum] = ACTIONS(2476), + [anon_sym_class] = ACTIONS(2476), + [anon_sym_struct] = ACTIONS(2476), + [anon_sym_union] = ACTIONS(2476), + [anon_sym_if] = ACTIONS(2476), + [anon_sym_switch] = ACTIONS(2476), + [anon_sym_case] = ACTIONS(2476), + [anon_sym_default] = ACTIONS(2476), + [anon_sym_while] = ACTIONS(2476), + [anon_sym_do] = ACTIONS(2476), + [anon_sym_for] = ACTIONS(2476), + [anon_sym_return] = ACTIONS(2476), + [anon_sym_break] = ACTIONS(2476), + [anon_sym_continue] = ACTIONS(2476), + [anon_sym_goto] = ACTIONS(2476), + [anon_sym_not] = ACTIONS(2476), + [anon_sym_compl] = ACTIONS(2476), + [anon_sym_DASH_DASH] = ACTIONS(2478), + [anon_sym_PLUS_PLUS] = ACTIONS(2478), + [anon_sym_sizeof] = ACTIONS(2476), + [sym_number_literal] = ACTIONS(2478), + [anon_sym_L_SQUOTE] = ACTIONS(2478), + [anon_sym_u_SQUOTE] = ACTIONS(2478), + [anon_sym_U_SQUOTE] = ACTIONS(2478), + [anon_sym_u8_SQUOTE] = ACTIONS(2478), + [anon_sym_SQUOTE] = ACTIONS(2478), + [anon_sym_L_DQUOTE] = ACTIONS(2478), + [anon_sym_u_DQUOTE] = ACTIONS(2478), + [anon_sym_U_DQUOTE] = ACTIONS(2478), + [anon_sym_u8_DQUOTE] = ACTIONS(2478), + [anon_sym_DQUOTE] = ACTIONS(2478), + [sym_true] = ACTIONS(2476), + [sym_false] = ACTIONS(2476), + [sym_null] = ACTIONS(2476), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2476), + [anon_sym_decltype] = ACTIONS(2476), + [anon_sym_virtual] = ACTIONS(2476), + [anon_sym_explicit] = ACTIONS(2476), + [anon_sym_typename] = ACTIONS(2476), + [anon_sym_template] = ACTIONS(2476), + [anon_sym_operator] = ACTIONS(2476), + [anon_sym_try] = ACTIONS(2476), + [anon_sym_delete] = ACTIONS(2476), + [anon_sym_throw] = ACTIONS(2476), + [anon_sym_namespace] = ACTIONS(2476), + [anon_sym_using] = ACTIONS(2476), + [anon_sym_static_assert] = ACTIONS(2476), + [anon_sym_concept] = ACTIONS(2476), + [anon_sym_co_return] = ACTIONS(2476), + [anon_sym_co_yield] = ACTIONS(2476), + [anon_sym_co_await] = ACTIONS(2476), + [anon_sym_new] = ACTIONS(2476), + [anon_sym_requires] = ACTIONS(2476), + [sym_this] = ACTIONS(2476), + [sym_nullptr] = ACTIONS(2476), + [sym_raw_string_literal] = ACTIONS(2478), }, - [1325] = { - [sym__expression] = STATE(3769), - [sym_conditional_expression] = STATE(3881), - [sym_assignment_expression] = STATE(3881), - [sym_pointer_expression] = STATE(2977), - [sym_unary_expression] = STATE(3881), - [sym_binary_expression] = STATE(3881), - [sym_update_expression] = STATE(3881), - [sym_cast_expression] = STATE(3881), - [sym_sizeof_expression] = STATE(3881), - [sym_subscript_expression] = STATE(2977), - [sym_call_expression] = STATE(2977), - [sym_field_expression] = STATE(2977), - [sym_compound_literal_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(2977), - [sym_char_literal] = STATE(3701), - [sym_concatenated_string] = STATE(3701), - [sym_string_literal] = STATE(3219), - [sym__class_name] = STATE(6063), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3881), - [sym_co_await_expression] = STATE(3881), - [sym_new_expression] = STATE(3881), - [sym_delete_expression] = STATE(3881), - [sym_requires_clause] = STATE(3881), - [sym_requires_expression] = STATE(3881), - [sym_lambda_expression] = STATE(3881), - [sym_lambda_capture_specifier] = STATE(4519), - [sym_fold_expression] = STATE(3881), - [sym_parameter_pack_expansion] = STATE(3881), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4642), - [sym_qualified_identifier] = STATE(2977), - [sym_qualified_type_identifier] = STATE(6063), - [sym_user_defined_literal] = STATE(3881), - [sym_identifier] = ACTIONS(3035), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(2533), - [anon_sym_TILDE] = ACTIONS(2533), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_STAR] = ACTIONS(3381), - [anon_sym_AMP_AMP] = ACTIONS(3381), - [anon_sym_AMP] = ACTIONS(3383), - [anon_sym_LT] = ACTIONS(3381), - [anon_sym_COLON_COLON] = ACTIONS(2539), - [anon_sym_LBRACE] = ACTIONS(3381), - [anon_sym_LBRACK] = ACTIONS(3381), - [sym_primitive_type] = ACTIONS(2845), + [863] = { + [sym_identifier] = ACTIONS(2551), + [aux_sym_preproc_include_token1] = ACTIONS(2551), + [aux_sym_preproc_def_token1] = ACTIONS(2551), + [aux_sym_preproc_if_token1] = ACTIONS(2551), + [aux_sym_preproc_if_token2] = ACTIONS(2551), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2551), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2551), + [sym_preproc_directive] = ACTIONS(2551), + [anon_sym_LPAREN2] = ACTIONS(2553), + [anon_sym_BANG] = ACTIONS(2553), + [anon_sym_TILDE] = ACTIONS(2553), + [anon_sym_DASH] = ACTIONS(2551), + [anon_sym_PLUS] = ACTIONS(2551), + [anon_sym_STAR] = ACTIONS(2553), + [anon_sym_AMP_AMP] = ACTIONS(2553), + [anon_sym_AMP] = ACTIONS(2551), + [anon_sym_SEMI] = ACTIONS(2553), + [anon_sym_typedef] = ACTIONS(2551), + [anon_sym_extern] = ACTIONS(2551), + [anon_sym___attribute__] = ACTIONS(2551), + [anon_sym_COLON_COLON] = ACTIONS(2553), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2553), + [anon_sym___declspec] = ACTIONS(2551), + [anon_sym___based] = ACTIONS(2551), + [anon_sym___cdecl] = ACTIONS(2551), + [anon_sym___clrcall] = ACTIONS(2551), + [anon_sym___stdcall] = ACTIONS(2551), + [anon_sym___fastcall] = ACTIONS(2551), + [anon_sym___thiscall] = ACTIONS(2551), + [anon_sym___vectorcall] = ACTIONS(2551), + [anon_sym_LBRACE] = ACTIONS(2553), + [anon_sym_LBRACK] = ACTIONS(2551), + [anon_sym_static] = ACTIONS(2551), + [anon_sym_register] = ACTIONS(2551), + [anon_sym_inline] = ACTIONS(2551), + [anon_sym_thread_local] = ACTIONS(2551), + [anon_sym_const] = ACTIONS(2551), + [anon_sym_volatile] = ACTIONS(2551), + [anon_sym_restrict] = ACTIONS(2551), + [anon_sym__Atomic] = ACTIONS(2551), + [anon_sym_mutable] = ACTIONS(2551), + [anon_sym_constexpr] = ACTIONS(2551), + [anon_sym_constinit] = ACTIONS(2551), + [anon_sym_consteval] = ACTIONS(2551), + [anon_sym_signed] = ACTIONS(2551), + [anon_sym_unsigned] = ACTIONS(2551), + [anon_sym_long] = ACTIONS(2551), + [anon_sym_short] = ACTIONS(2551), + [sym_primitive_type] = ACTIONS(2551), + [anon_sym_enum] = ACTIONS(2551), + [anon_sym_class] = ACTIONS(2551), + [anon_sym_struct] = ACTIONS(2551), + [anon_sym_union] = ACTIONS(2551), + [anon_sym_if] = ACTIONS(2551), + [anon_sym_else] = ACTIONS(2551), + [anon_sym_switch] = ACTIONS(2551), + [anon_sym_case] = ACTIONS(2551), + [anon_sym_default] = ACTIONS(2551), + [anon_sym_while] = ACTIONS(2551), + [anon_sym_do] = ACTIONS(2551), + [anon_sym_for] = ACTIONS(2551), + [anon_sym_return] = ACTIONS(2551), + [anon_sym_break] = ACTIONS(2551), + [anon_sym_continue] = ACTIONS(2551), + [anon_sym_goto] = ACTIONS(2551), + [anon_sym_not] = ACTIONS(2551), + [anon_sym_compl] = ACTIONS(2551), [anon_sym_DASH_DASH] = ACTIONS(2553), [anon_sym_PLUS_PLUS] = ACTIONS(2553), - [anon_sym_sizeof] = ACTIONS(2555), - [sym_number_literal] = ACTIONS(2557), - [anon_sym_L_SQUOTE] = ACTIONS(2559), - [anon_sym_u_SQUOTE] = ACTIONS(2559), - [anon_sym_U_SQUOTE] = ACTIONS(2559), - [anon_sym_u8_SQUOTE] = ACTIONS(2559), - [anon_sym_SQUOTE] = ACTIONS(2559), - [anon_sym_L_DQUOTE] = ACTIONS(2561), - [anon_sym_u_DQUOTE] = ACTIONS(2561), - [anon_sym_U_DQUOTE] = ACTIONS(2561), - [anon_sym_u8_DQUOTE] = ACTIONS(2561), - [anon_sym_DQUOTE] = ACTIONS(2561), - [sym_true] = ACTIONS(2563), - [sym_false] = ACTIONS(2563), - [sym_null] = ACTIONS(2563), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2573), - [anon_sym_co_await] = ACTIONS(2575), - [anon_sym_new] = ACTIONS(2577), - [anon_sym_requires] = ACTIONS(2579), - [sym_this] = ACTIONS(2563), - [sym_nullptr] = ACTIONS(2563), - [sym_raw_string_literal] = ACTIONS(2581), - }, - [1326] = { - [sym__expression] = STATE(3798), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(3196), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(3196), - [sym_call_expression] = STATE(3196), - [sym_field_expression] = STATE(3196), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(3196), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(3196), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3065), - [anon_sym_TILDE] = ACTIONS(3065), - [anon_sym_DASH] = ACTIONS(3063), - [anon_sym_PLUS] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3381), - [anon_sym_AMP_AMP] = ACTIONS(3381), - [anon_sym_AMP] = ACTIONS(3383), - [anon_sym_LT] = ACTIONS(3381), - [anon_sym_COLON_COLON] = ACTIONS(3069), - [anon_sym_LBRACE] = ACTIONS(3381), - [anon_sym_LBRACK] = ACTIONS(3381), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3071), - [anon_sym_PLUS_PLUS] = ACTIONS(3071), - [anon_sym_sizeof] = ACTIONS(3073), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3075), - [anon_sym_co_await] = ACTIONS(3077), - [anon_sym_new] = ACTIONS(3079), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), - }, - [1327] = { - [sym__expression] = STATE(3686), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2981), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2981), - [sym_call_expression] = STATE(2981), - [sym_field_expression] = STATE(2981), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2981), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2981), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3039), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3045), - [anon_sym_TILDE] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(3381), - [anon_sym_AMP_AMP] = ACTIONS(3381), - [anon_sym_AMP] = ACTIONS(3383), - [anon_sym_LT] = ACTIONS(3381), - [anon_sym_COLON_COLON] = ACTIONS(3047), - [anon_sym_LBRACE] = ACTIONS(3381), - [anon_sym_LBRACK] = ACTIONS(3381), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3049), - [anon_sym_PLUS_PLUS] = ACTIONS(3049), - [anon_sym_sizeof] = ACTIONS(3051), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3053), - [anon_sym_co_await] = ACTIONS(3055), - [anon_sym_new] = ACTIONS(3057), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), - }, - [1328] = { - [sym__expression] = STATE(3688), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2981), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2981), - [sym_call_expression] = STATE(2981), - [sym_field_expression] = STATE(2981), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2981), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2981), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3039), - [anon_sym_LPAREN2] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3045), - [anon_sym_TILDE] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(3381), - [anon_sym_AMP_AMP] = ACTIONS(3381), - [anon_sym_AMP] = ACTIONS(3383), - [anon_sym_LT] = ACTIONS(3381), - [anon_sym_COLON_COLON] = ACTIONS(3047), - [anon_sym_LBRACE] = ACTIONS(3381), - [anon_sym_LBRACK] = ACTIONS(3381), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3049), - [anon_sym_PLUS_PLUS] = ACTIONS(3049), - [anon_sym_sizeof] = ACTIONS(3051), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3053), - [anon_sym_co_await] = ACTIONS(3055), - [anon_sym_new] = ACTIONS(3057), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [anon_sym_sizeof] = ACTIONS(2551), + [sym_number_literal] = ACTIONS(2553), + [anon_sym_L_SQUOTE] = ACTIONS(2553), + [anon_sym_u_SQUOTE] = ACTIONS(2553), + [anon_sym_U_SQUOTE] = ACTIONS(2553), + [anon_sym_u8_SQUOTE] = ACTIONS(2553), + [anon_sym_SQUOTE] = ACTIONS(2553), + [anon_sym_L_DQUOTE] = ACTIONS(2553), + [anon_sym_u_DQUOTE] = ACTIONS(2553), + [anon_sym_U_DQUOTE] = ACTIONS(2553), + [anon_sym_u8_DQUOTE] = ACTIONS(2553), + [anon_sym_DQUOTE] = ACTIONS(2553), + [sym_true] = ACTIONS(2551), + [sym_false] = ACTIONS(2551), + [sym_null] = ACTIONS(2551), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2551), + [anon_sym_decltype] = ACTIONS(2551), + [anon_sym_virtual] = ACTIONS(2551), + [anon_sym_explicit] = ACTIONS(2551), + [anon_sym_typename] = ACTIONS(2551), + [anon_sym_template] = ACTIONS(2551), + [anon_sym_operator] = ACTIONS(2551), + [anon_sym_try] = ACTIONS(2551), + [anon_sym_delete] = ACTIONS(2551), + [anon_sym_throw] = ACTIONS(2551), + [anon_sym_namespace] = ACTIONS(2551), + [anon_sym_using] = ACTIONS(2551), + [anon_sym_static_assert] = ACTIONS(2551), + [anon_sym_concept] = ACTIONS(2551), + [anon_sym_co_return] = ACTIONS(2551), + [anon_sym_co_yield] = ACTIONS(2551), + [anon_sym_co_await] = ACTIONS(2551), + [anon_sym_new] = ACTIONS(2551), + [anon_sym_requires] = ACTIONS(2551), + [sym_this] = ACTIONS(2551), + [sym_nullptr] = ACTIONS(2551), + [sym_raw_string_literal] = ACTIONS(2553), }, - [1329] = { - [sym__expression] = STATE(3537), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2981), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2981), - [sym_call_expression] = STATE(2981), - [sym_field_expression] = STATE(2981), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2981), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_lambda_default_capture] = STATE(6332), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2981), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3431), - [anon_sym_LPAREN2] = ACTIONS(3041), - [anon_sym_BANG] = ACTIONS(3045), - [anon_sym_TILDE] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(3357), - [anon_sym_COLON_COLON] = ACTIONS(3047), - [anon_sym_LBRACK] = ACTIONS(2272), - [anon_sym_RBRACK] = ACTIONS(3389), - [anon_sym_EQ] = ACTIONS(3361), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3049), - [anon_sym_PLUS_PLUS] = ACTIONS(3049), - [anon_sym_sizeof] = ACTIONS(3051), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3053), - [anon_sym_co_await] = ACTIONS(3055), - [anon_sym_new] = ACTIONS(3057), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), - }, - [1330] = { - [sym__expression] = STATE(3537), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2981), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2981), - [sym_call_expression] = STATE(2981), - [sym_field_expression] = STATE(2981), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2981), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_lambda_default_capture] = STATE(6332), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2981), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3039), - [anon_sym_LPAREN2] = ACTIONS(3041), - [anon_sym_BANG] = ACTIONS(3045), - [anon_sym_TILDE] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(3357), - [anon_sym_COLON_COLON] = ACTIONS(3047), - [anon_sym_LBRACK] = ACTIONS(2272), - [anon_sym_RBRACK] = ACTIONS(3433), - [anon_sym_EQ] = ACTIONS(3361), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3049), - [anon_sym_PLUS_PLUS] = ACTIONS(3049), - [anon_sym_sizeof] = ACTIONS(3051), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3053), - [anon_sym_co_await] = ACTIONS(3055), - [anon_sym_new] = ACTIONS(3057), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), - }, - [1331] = { - [sym__expression] = STATE(3952), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_initializer_list] = STATE(6540), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1465), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_default] = ACTIONS(3435), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [864] = { + [sym_identifier] = ACTIONS(2647), + [aux_sym_preproc_include_token1] = ACTIONS(2647), + [aux_sym_preproc_def_token1] = ACTIONS(2647), + [aux_sym_preproc_if_token1] = ACTIONS(2647), + [aux_sym_preproc_if_token2] = ACTIONS(2647), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2647), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2647), + [sym_preproc_directive] = ACTIONS(2647), + [anon_sym_LPAREN2] = ACTIONS(2649), + [anon_sym_BANG] = ACTIONS(2649), + [anon_sym_TILDE] = ACTIONS(2649), + [anon_sym_DASH] = ACTIONS(2647), + [anon_sym_PLUS] = ACTIONS(2647), + [anon_sym_STAR] = ACTIONS(2649), + [anon_sym_AMP_AMP] = ACTIONS(2649), + [anon_sym_AMP] = ACTIONS(2647), + [anon_sym_SEMI] = ACTIONS(2649), + [anon_sym_typedef] = ACTIONS(2647), + [anon_sym_extern] = ACTIONS(2647), + [anon_sym___attribute__] = ACTIONS(2647), + [anon_sym_COLON_COLON] = ACTIONS(2649), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2649), + [anon_sym___declspec] = ACTIONS(2647), + [anon_sym___based] = ACTIONS(2647), + [anon_sym___cdecl] = ACTIONS(2647), + [anon_sym___clrcall] = ACTIONS(2647), + [anon_sym___stdcall] = ACTIONS(2647), + [anon_sym___fastcall] = ACTIONS(2647), + [anon_sym___thiscall] = ACTIONS(2647), + [anon_sym___vectorcall] = ACTIONS(2647), + [anon_sym_LBRACE] = ACTIONS(2649), + [anon_sym_LBRACK] = ACTIONS(2647), + [anon_sym_static] = ACTIONS(2647), + [anon_sym_register] = ACTIONS(2647), + [anon_sym_inline] = ACTIONS(2647), + [anon_sym_thread_local] = ACTIONS(2647), + [anon_sym_const] = ACTIONS(2647), + [anon_sym_volatile] = ACTIONS(2647), + [anon_sym_restrict] = ACTIONS(2647), + [anon_sym__Atomic] = ACTIONS(2647), + [anon_sym_mutable] = ACTIONS(2647), + [anon_sym_constexpr] = ACTIONS(2647), + [anon_sym_constinit] = ACTIONS(2647), + [anon_sym_consteval] = ACTIONS(2647), + [anon_sym_signed] = ACTIONS(2647), + [anon_sym_unsigned] = ACTIONS(2647), + [anon_sym_long] = ACTIONS(2647), + [anon_sym_short] = ACTIONS(2647), + [sym_primitive_type] = ACTIONS(2647), + [anon_sym_enum] = ACTIONS(2647), + [anon_sym_class] = ACTIONS(2647), + [anon_sym_struct] = ACTIONS(2647), + [anon_sym_union] = ACTIONS(2647), + [anon_sym_if] = ACTIONS(2647), + [anon_sym_else] = ACTIONS(2647), + [anon_sym_switch] = ACTIONS(2647), + [anon_sym_case] = ACTIONS(2647), + [anon_sym_default] = ACTIONS(2647), + [anon_sym_while] = ACTIONS(2647), + [anon_sym_do] = ACTIONS(2647), + [anon_sym_for] = ACTIONS(2647), + [anon_sym_return] = ACTIONS(2647), + [anon_sym_break] = ACTIONS(2647), + [anon_sym_continue] = ACTIONS(2647), + [anon_sym_goto] = ACTIONS(2647), + [anon_sym_not] = ACTIONS(2647), + [anon_sym_compl] = ACTIONS(2647), + [anon_sym_DASH_DASH] = ACTIONS(2649), + [anon_sym_PLUS_PLUS] = ACTIONS(2649), + [anon_sym_sizeof] = ACTIONS(2647), + [sym_number_literal] = ACTIONS(2649), + [anon_sym_L_SQUOTE] = ACTIONS(2649), + [anon_sym_u_SQUOTE] = ACTIONS(2649), + [anon_sym_U_SQUOTE] = ACTIONS(2649), + [anon_sym_u8_SQUOTE] = ACTIONS(2649), + [anon_sym_SQUOTE] = ACTIONS(2649), + [anon_sym_L_DQUOTE] = ACTIONS(2649), + [anon_sym_u_DQUOTE] = ACTIONS(2649), + [anon_sym_U_DQUOTE] = ACTIONS(2649), + [anon_sym_u8_DQUOTE] = ACTIONS(2649), + [anon_sym_DQUOTE] = ACTIONS(2649), + [sym_true] = ACTIONS(2647), + [sym_false] = ACTIONS(2647), + [sym_null] = ACTIONS(2647), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3437), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2647), + [anon_sym_decltype] = ACTIONS(2647), + [anon_sym_virtual] = ACTIONS(2647), + [anon_sym_explicit] = ACTIONS(2647), + [anon_sym_typename] = ACTIONS(2647), + [anon_sym_template] = ACTIONS(2647), + [anon_sym_operator] = ACTIONS(2647), + [anon_sym_try] = ACTIONS(2647), + [anon_sym_delete] = ACTIONS(2647), + [anon_sym_throw] = ACTIONS(2647), + [anon_sym_namespace] = ACTIONS(2647), + [anon_sym_using] = ACTIONS(2647), + [anon_sym_static_assert] = ACTIONS(2647), + [anon_sym_concept] = ACTIONS(2647), + [anon_sym_co_return] = ACTIONS(2647), + [anon_sym_co_yield] = ACTIONS(2647), + [anon_sym_co_await] = ACTIONS(2647), + [anon_sym_new] = ACTIONS(2647), + [anon_sym_requires] = ACTIONS(2647), + [sym_this] = ACTIONS(2647), + [sym_nullptr] = ACTIONS(2647), + [sym_raw_string_literal] = ACTIONS(2649), }, - [1332] = { - [sym__expression] = STATE(3537), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2981), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2981), - [sym_call_expression] = STATE(2981), - [sym_field_expression] = STATE(2981), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2981), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_lambda_default_capture] = STATE(6332), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2981), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3039), - [anon_sym_LPAREN2] = ACTIONS(3041), - [anon_sym_BANG] = ACTIONS(3045), - [anon_sym_TILDE] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(3357), - [anon_sym_COLON_COLON] = ACTIONS(3047), - [anon_sym_LBRACK] = ACTIONS(2272), - [anon_sym_RBRACK] = ACTIONS(3439), - [anon_sym_EQ] = ACTIONS(3361), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3049), - [anon_sym_PLUS_PLUS] = ACTIONS(3049), - [anon_sym_sizeof] = ACTIONS(3051), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3053), - [anon_sym_co_await] = ACTIONS(3055), - [anon_sym_new] = ACTIONS(3057), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [865] = { + [sym_identifier] = ACTIONS(2623), + [aux_sym_preproc_include_token1] = ACTIONS(2623), + [aux_sym_preproc_def_token1] = ACTIONS(2623), + [aux_sym_preproc_if_token1] = ACTIONS(2623), + [aux_sym_preproc_if_token2] = ACTIONS(2623), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2623), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2623), + [sym_preproc_directive] = ACTIONS(2623), + [anon_sym_LPAREN2] = ACTIONS(2625), + [anon_sym_BANG] = ACTIONS(2625), + [anon_sym_TILDE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(2623), + [anon_sym_PLUS] = ACTIONS(2623), + [anon_sym_STAR] = ACTIONS(2625), + [anon_sym_AMP_AMP] = ACTIONS(2625), + [anon_sym_AMP] = ACTIONS(2623), + [anon_sym_SEMI] = ACTIONS(2625), + [anon_sym_typedef] = ACTIONS(2623), + [anon_sym_extern] = ACTIONS(2623), + [anon_sym___attribute__] = ACTIONS(2623), + [anon_sym_COLON_COLON] = ACTIONS(2625), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2625), + [anon_sym___declspec] = ACTIONS(2623), + [anon_sym___based] = ACTIONS(2623), + [anon_sym___cdecl] = ACTIONS(2623), + [anon_sym___clrcall] = ACTIONS(2623), + [anon_sym___stdcall] = ACTIONS(2623), + [anon_sym___fastcall] = ACTIONS(2623), + [anon_sym___thiscall] = ACTIONS(2623), + [anon_sym___vectorcall] = ACTIONS(2623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_LBRACK] = ACTIONS(2623), + [anon_sym_static] = ACTIONS(2623), + [anon_sym_register] = ACTIONS(2623), + [anon_sym_inline] = ACTIONS(2623), + [anon_sym_thread_local] = ACTIONS(2623), + [anon_sym_const] = ACTIONS(2623), + [anon_sym_volatile] = ACTIONS(2623), + [anon_sym_restrict] = ACTIONS(2623), + [anon_sym__Atomic] = ACTIONS(2623), + [anon_sym_mutable] = ACTIONS(2623), + [anon_sym_constexpr] = ACTIONS(2623), + [anon_sym_constinit] = ACTIONS(2623), + [anon_sym_consteval] = ACTIONS(2623), + [anon_sym_signed] = ACTIONS(2623), + [anon_sym_unsigned] = ACTIONS(2623), + [anon_sym_long] = ACTIONS(2623), + [anon_sym_short] = ACTIONS(2623), + [sym_primitive_type] = ACTIONS(2623), + [anon_sym_enum] = ACTIONS(2623), + [anon_sym_class] = ACTIONS(2623), + [anon_sym_struct] = ACTIONS(2623), + [anon_sym_union] = ACTIONS(2623), + [anon_sym_if] = ACTIONS(2623), + [anon_sym_else] = ACTIONS(2623), + [anon_sym_switch] = ACTIONS(2623), + [anon_sym_case] = ACTIONS(2623), + [anon_sym_default] = ACTIONS(2623), + [anon_sym_while] = ACTIONS(2623), + [anon_sym_do] = ACTIONS(2623), + [anon_sym_for] = ACTIONS(2623), + [anon_sym_return] = ACTIONS(2623), + [anon_sym_break] = ACTIONS(2623), + [anon_sym_continue] = ACTIONS(2623), + [anon_sym_goto] = ACTIONS(2623), + [anon_sym_not] = ACTIONS(2623), + [anon_sym_compl] = ACTIONS(2623), + [anon_sym_DASH_DASH] = ACTIONS(2625), + [anon_sym_PLUS_PLUS] = ACTIONS(2625), + [anon_sym_sizeof] = ACTIONS(2623), + [sym_number_literal] = ACTIONS(2625), + [anon_sym_L_SQUOTE] = ACTIONS(2625), + [anon_sym_u_SQUOTE] = ACTIONS(2625), + [anon_sym_U_SQUOTE] = ACTIONS(2625), + [anon_sym_u8_SQUOTE] = ACTIONS(2625), + [anon_sym_SQUOTE] = ACTIONS(2625), + [anon_sym_L_DQUOTE] = ACTIONS(2625), + [anon_sym_u_DQUOTE] = ACTIONS(2625), + [anon_sym_U_DQUOTE] = ACTIONS(2625), + [anon_sym_u8_DQUOTE] = ACTIONS(2625), + [anon_sym_DQUOTE] = ACTIONS(2625), + [sym_true] = ACTIONS(2623), + [sym_false] = ACTIONS(2623), + [sym_null] = ACTIONS(2623), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2623), + [anon_sym_decltype] = ACTIONS(2623), + [anon_sym_virtual] = ACTIONS(2623), + [anon_sym_explicit] = ACTIONS(2623), + [anon_sym_typename] = ACTIONS(2623), + [anon_sym_template] = ACTIONS(2623), + [anon_sym_operator] = ACTIONS(2623), + [anon_sym_try] = ACTIONS(2623), + [anon_sym_delete] = ACTIONS(2623), + [anon_sym_throw] = ACTIONS(2623), + [anon_sym_namespace] = ACTIONS(2623), + [anon_sym_using] = ACTIONS(2623), + [anon_sym_static_assert] = ACTIONS(2623), + [anon_sym_concept] = ACTIONS(2623), + [anon_sym_co_return] = ACTIONS(2623), + [anon_sym_co_yield] = ACTIONS(2623), + [anon_sym_co_await] = ACTIONS(2623), + [anon_sym_new] = ACTIONS(2623), + [anon_sym_requires] = ACTIONS(2623), + [sym_this] = ACTIONS(2623), + [sym_nullptr] = ACTIONS(2623), + [sym_raw_string_literal] = ACTIONS(2625), }, - [1333] = { - [sym__expression] = STATE(3577), - [sym_comma_expression] = STATE(6678), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_RPAREN] = ACTIONS(3441), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [866] = { + [sym_identifier] = ACTIONS(2619), + [aux_sym_preproc_include_token1] = ACTIONS(2619), + [aux_sym_preproc_def_token1] = ACTIONS(2619), + [aux_sym_preproc_if_token1] = ACTIONS(2619), + [aux_sym_preproc_if_token2] = ACTIONS(2619), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2619), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2619), + [sym_preproc_directive] = ACTIONS(2619), + [anon_sym_LPAREN2] = ACTIONS(2621), + [anon_sym_BANG] = ACTIONS(2621), + [anon_sym_TILDE] = ACTIONS(2621), + [anon_sym_DASH] = ACTIONS(2619), + [anon_sym_PLUS] = ACTIONS(2619), + [anon_sym_STAR] = ACTIONS(2621), + [anon_sym_AMP_AMP] = ACTIONS(2621), + [anon_sym_AMP] = ACTIONS(2619), + [anon_sym_SEMI] = ACTIONS(2621), + [anon_sym_typedef] = ACTIONS(2619), + [anon_sym_extern] = ACTIONS(2619), + [anon_sym___attribute__] = ACTIONS(2619), + [anon_sym_COLON_COLON] = ACTIONS(2621), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2621), + [anon_sym___declspec] = ACTIONS(2619), + [anon_sym___based] = ACTIONS(2619), + [anon_sym___cdecl] = ACTIONS(2619), + [anon_sym___clrcall] = ACTIONS(2619), + [anon_sym___stdcall] = ACTIONS(2619), + [anon_sym___fastcall] = ACTIONS(2619), + [anon_sym___thiscall] = ACTIONS(2619), + [anon_sym___vectorcall] = ACTIONS(2619), + [anon_sym_LBRACE] = ACTIONS(2621), + [anon_sym_LBRACK] = ACTIONS(2619), + [anon_sym_static] = ACTIONS(2619), + [anon_sym_register] = ACTIONS(2619), + [anon_sym_inline] = ACTIONS(2619), + [anon_sym_thread_local] = ACTIONS(2619), + [anon_sym_const] = ACTIONS(2619), + [anon_sym_volatile] = ACTIONS(2619), + [anon_sym_restrict] = ACTIONS(2619), + [anon_sym__Atomic] = ACTIONS(2619), + [anon_sym_mutable] = ACTIONS(2619), + [anon_sym_constexpr] = ACTIONS(2619), + [anon_sym_constinit] = ACTIONS(2619), + [anon_sym_consteval] = ACTIONS(2619), + [anon_sym_signed] = ACTIONS(2619), + [anon_sym_unsigned] = ACTIONS(2619), + [anon_sym_long] = ACTIONS(2619), + [anon_sym_short] = ACTIONS(2619), + [sym_primitive_type] = ACTIONS(2619), + [anon_sym_enum] = ACTIONS(2619), + [anon_sym_class] = ACTIONS(2619), + [anon_sym_struct] = ACTIONS(2619), + [anon_sym_union] = ACTIONS(2619), + [anon_sym_if] = ACTIONS(2619), + [anon_sym_else] = ACTIONS(2619), + [anon_sym_switch] = ACTIONS(2619), + [anon_sym_case] = ACTIONS(2619), + [anon_sym_default] = ACTIONS(2619), + [anon_sym_while] = ACTIONS(2619), + [anon_sym_do] = ACTIONS(2619), + [anon_sym_for] = ACTIONS(2619), + [anon_sym_return] = ACTIONS(2619), + [anon_sym_break] = ACTIONS(2619), + [anon_sym_continue] = ACTIONS(2619), + [anon_sym_goto] = ACTIONS(2619), + [anon_sym_not] = ACTIONS(2619), + [anon_sym_compl] = ACTIONS(2619), + [anon_sym_DASH_DASH] = ACTIONS(2621), + [anon_sym_PLUS_PLUS] = ACTIONS(2621), + [anon_sym_sizeof] = ACTIONS(2619), + [sym_number_literal] = ACTIONS(2621), + [anon_sym_L_SQUOTE] = ACTIONS(2621), + [anon_sym_u_SQUOTE] = ACTIONS(2621), + [anon_sym_U_SQUOTE] = ACTIONS(2621), + [anon_sym_u8_SQUOTE] = ACTIONS(2621), + [anon_sym_SQUOTE] = ACTIONS(2621), + [anon_sym_L_DQUOTE] = ACTIONS(2621), + [anon_sym_u_DQUOTE] = ACTIONS(2621), + [anon_sym_U_DQUOTE] = ACTIONS(2621), + [anon_sym_u8_DQUOTE] = ACTIONS(2621), + [anon_sym_DQUOTE] = ACTIONS(2621), + [sym_true] = ACTIONS(2619), + [sym_false] = ACTIONS(2619), + [sym_null] = ACTIONS(2619), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2619), + [anon_sym_decltype] = ACTIONS(2619), + [anon_sym_virtual] = ACTIONS(2619), + [anon_sym_explicit] = ACTIONS(2619), + [anon_sym_typename] = ACTIONS(2619), + [anon_sym_template] = ACTIONS(2619), + [anon_sym_operator] = ACTIONS(2619), + [anon_sym_try] = ACTIONS(2619), + [anon_sym_delete] = ACTIONS(2619), + [anon_sym_throw] = ACTIONS(2619), + [anon_sym_namespace] = ACTIONS(2619), + [anon_sym_using] = ACTIONS(2619), + [anon_sym_static_assert] = ACTIONS(2619), + [anon_sym_concept] = ACTIONS(2619), + [anon_sym_co_return] = ACTIONS(2619), + [anon_sym_co_yield] = ACTIONS(2619), + [anon_sym_co_await] = ACTIONS(2619), + [anon_sym_new] = ACTIONS(2619), + [anon_sym_requires] = ACTIONS(2619), + [sym_this] = ACTIONS(2619), + [sym_nullptr] = ACTIONS(2619), + [sym_raw_string_literal] = ACTIONS(2621), }, - [1334] = { - [sym__expression] = STATE(3627), - [sym_comma_expression] = STATE(6731), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_RPAREN] = ACTIONS(3443), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [867] = { + [sym_identifier] = ACTIONS(2615), + [aux_sym_preproc_include_token1] = ACTIONS(2615), + [aux_sym_preproc_def_token1] = ACTIONS(2615), + [aux_sym_preproc_if_token1] = ACTIONS(2615), + [aux_sym_preproc_if_token2] = ACTIONS(2615), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2615), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2615), + [sym_preproc_directive] = ACTIONS(2615), + [anon_sym_LPAREN2] = ACTIONS(2617), + [anon_sym_BANG] = ACTIONS(2617), + [anon_sym_TILDE] = ACTIONS(2617), + [anon_sym_DASH] = ACTIONS(2615), + [anon_sym_PLUS] = ACTIONS(2615), + [anon_sym_STAR] = ACTIONS(2617), + [anon_sym_AMP_AMP] = ACTIONS(2617), + [anon_sym_AMP] = ACTIONS(2615), + [anon_sym_SEMI] = ACTIONS(2617), + [anon_sym_typedef] = ACTIONS(2615), + [anon_sym_extern] = ACTIONS(2615), + [anon_sym___attribute__] = ACTIONS(2615), + [anon_sym_COLON_COLON] = ACTIONS(2617), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2617), + [anon_sym___declspec] = ACTIONS(2615), + [anon_sym___based] = ACTIONS(2615), + [anon_sym___cdecl] = ACTIONS(2615), + [anon_sym___clrcall] = ACTIONS(2615), + [anon_sym___stdcall] = ACTIONS(2615), + [anon_sym___fastcall] = ACTIONS(2615), + [anon_sym___thiscall] = ACTIONS(2615), + [anon_sym___vectorcall] = ACTIONS(2615), + [anon_sym_LBRACE] = ACTIONS(2617), + [anon_sym_LBRACK] = ACTIONS(2615), + [anon_sym_static] = ACTIONS(2615), + [anon_sym_register] = ACTIONS(2615), + [anon_sym_inline] = ACTIONS(2615), + [anon_sym_thread_local] = ACTIONS(2615), + [anon_sym_const] = ACTIONS(2615), + [anon_sym_volatile] = ACTIONS(2615), + [anon_sym_restrict] = ACTIONS(2615), + [anon_sym__Atomic] = ACTIONS(2615), + [anon_sym_mutable] = ACTIONS(2615), + [anon_sym_constexpr] = ACTIONS(2615), + [anon_sym_constinit] = ACTIONS(2615), + [anon_sym_consteval] = ACTIONS(2615), + [anon_sym_signed] = ACTIONS(2615), + [anon_sym_unsigned] = ACTIONS(2615), + [anon_sym_long] = ACTIONS(2615), + [anon_sym_short] = ACTIONS(2615), + [sym_primitive_type] = ACTIONS(2615), + [anon_sym_enum] = ACTIONS(2615), + [anon_sym_class] = ACTIONS(2615), + [anon_sym_struct] = ACTIONS(2615), + [anon_sym_union] = ACTIONS(2615), + [anon_sym_if] = ACTIONS(2615), + [anon_sym_else] = ACTIONS(2615), + [anon_sym_switch] = ACTIONS(2615), + [anon_sym_case] = ACTIONS(2615), + [anon_sym_default] = ACTIONS(2615), + [anon_sym_while] = ACTIONS(2615), + [anon_sym_do] = ACTIONS(2615), + [anon_sym_for] = ACTIONS(2615), + [anon_sym_return] = ACTIONS(2615), + [anon_sym_break] = ACTIONS(2615), + [anon_sym_continue] = ACTIONS(2615), + [anon_sym_goto] = ACTIONS(2615), + [anon_sym_not] = ACTIONS(2615), + [anon_sym_compl] = ACTIONS(2615), + [anon_sym_DASH_DASH] = ACTIONS(2617), + [anon_sym_PLUS_PLUS] = ACTIONS(2617), + [anon_sym_sizeof] = ACTIONS(2615), + [sym_number_literal] = ACTIONS(2617), + [anon_sym_L_SQUOTE] = ACTIONS(2617), + [anon_sym_u_SQUOTE] = ACTIONS(2617), + [anon_sym_U_SQUOTE] = ACTIONS(2617), + [anon_sym_u8_SQUOTE] = ACTIONS(2617), + [anon_sym_SQUOTE] = ACTIONS(2617), + [anon_sym_L_DQUOTE] = ACTIONS(2617), + [anon_sym_u_DQUOTE] = ACTIONS(2617), + [anon_sym_U_DQUOTE] = ACTIONS(2617), + [anon_sym_u8_DQUOTE] = ACTIONS(2617), + [anon_sym_DQUOTE] = ACTIONS(2617), + [sym_true] = ACTIONS(2615), + [sym_false] = ACTIONS(2615), + [sym_null] = ACTIONS(2615), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2615), + [anon_sym_decltype] = ACTIONS(2615), + [anon_sym_virtual] = ACTIONS(2615), + [anon_sym_explicit] = ACTIONS(2615), + [anon_sym_typename] = ACTIONS(2615), + [anon_sym_template] = ACTIONS(2615), + [anon_sym_operator] = ACTIONS(2615), + [anon_sym_try] = ACTIONS(2615), + [anon_sym_delete] = ACTIONS(2615), + [anon_sym_throw] = ACTIONS(2615), + [anon_sym_namespace] = ACTIONS(2615), + [anon_sym_using] = ACTIONS(2615), + [anon_sym_static_assert] = ACTIONS(2615), + [anon_sym_concept] = ACTIONS(2615), + [anon_sym_co_return] = ACTIONS(2615), + [anon_sym_co_yield] = ACTIONS(2615), + [anon_sym_co_await] = ACTIONS(2615), + [anon_sym_new] = ACTIONS(2615), + [anon_sym_requires] = ACTIONS(2615), + [sym_this] = ACTIONS(2615), + [sym_nullptr] = ACTIONS(2615), + [sym_raw_string_literal] = ACTIONS(2617), }, - [1335] = { - [sym__expression] = STATE(3637), - [sym_comma_expression] = STATE(6426), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_RPAREN] = ACTIONS(3445), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [868] = { + [sym_identifier] = ACTIONS(2493), + [aux_sym_preproc_include_token1] = ACTIONS(2493), + [aux_sym_preproc_def_token1] = ACTIONS(2493), + [aux_sym_preproc_if_token1] = ACTIONS(2493), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2493), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2493), + [sym_preproc_directive] = ACTIONS(2493), + [anon_sym_LPAREN2] = ACTIONS(2495), + [anon_sym_BANG] = ACTIONS(2495), + [anon_sym_TILDE] = ACTIONS(2495), + [anon_sym_DASH] = ACTIONS(2493), + [anon_sym_PLUS] = ACTIONS(2493), + [anon_sym_STAR] = ACTIONS(2495), + [anon_sym_AMP_AMP] = ACTIONS(2495), + [anon_sym_AMP] = ACTIONS(2493), + [anon_sym_SEMI] = ACTIONS(2495), + [anon_sym_typedef] = ACTIONS(2493), + [anon_sym_extern] = ACTIONS(2493), + [anon_sym___attribute__] = ACTIONS(2493), + [anon_sym_COLON_COLON] = ACTIONS(2495), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2495), + [anon_sym___declspec] = ACTIONS(2493), + [anon_sym___based] = ACTIONS(2493), + [anon_sym___cdecl] = ACTIONS(2493), + [anon_sym___clrcall] = ACTIONS(2493), + [anon_sym___stdcall] = ACTIONS(2493), + [anon_sym___fastcall] = ACTIONS(2493), + [anon_sym___thiscall] = ACTIONS(2493), + [anon_sym___vectorcall] = ACTIONS(2493), + [anon_sym_LBRACE] = ACTIONS(2495), + [anon_sym_RBRACE] = ACTIONS(2495), + [anon_sym_LBRACK] = ACTIONS(2493), + [anon_sym_static] = ACTIONS(2493), + [anon_sym_register] = ACTIONS(2493), + [anon_sym_inline] = ACTIONS(2493), + [anon_sym_thread_local] = ACTIONS(2493), + [anon_sym_const] = ACTIONS(2493), + [anon_sym_volatile] = ACTIONS(2493), + [anon_sym_restrict] = ACTIONS(2493), + [anon_sym__Atomic] = ACTIONS(2493), + [anon_sym_mutable] = ACTIONS(2493), + [anon_sym_constexpr] = ACTIONS(2493), + [anon_sym_constinit] = ACTIONS(2493), + [anon_sym_consteval] = ACTIONS(2493), + [anon_sym_signed] = ACTIONS(2493), + [anon_sym_unsigned] = ACTIONS(2493), + [anon_sym_long] = ACTIONS(2493), + [anon_sym_short] = ACTIONS(2493), + [sym_primitive_type] = ACTIONS(2493), + [anon_sym_enum] = ACTIONS(2493), + [anon_sym_class] = ACTIONS(2493), + [anon_sym_struct] = ACTIONS(2493), + [anon_sym_union] = ACTIONS(2493), + [anon_sym_if] = ACTIONS(2493), + [anon_sym_else] = ACTIONS(2951), + [anon_sym_switch] = ACTIONS(2493), + [anon_sym_case] = ACTIONS(2493), + [anon_sym_default] = ACTIONS(2493), + [anon_sym_while] = ACTIONS(2493), + [anon_sym_do] = ACTIONS(2493), + [anon_sym_for] = ACTIONS(2493), + [anon_sym_return] = ACTIONS(2493), + [anon_sym_break] = ACTIONS(2493), + [anon_sym_continue] = ACTIONS(2493), + [anon_sym_goto] = ACTIONS(2493), + [anon_sym_not] = ACTIONS(2493), + [anon_sym_compl] = ACTIONS(2493), + [anon_sym_DASH_DASH] = ACTIONS(2495), + [anon_sym_PLUS_PLUS] = ACTIONS(2495), + [anon_sym_sizeof] = ACTIONS(2493), + [sym_number_literal] = ACTIONS(2495), + [anon_sym_L_SQUOTE] = ACTIONS(2495), + [anon_sym_u_SQUOTE] = ACTIONS(2495), + [anon_sym_U_SQUOTE] = ACTIONS(2495), + [anon_sym_u8_SQUOTE] = ACTIONS(2495), + [anon_sym_SQUOTE] = ACTIONS(2495), + [anon_sym_L_DQUOTE] = ACTIONS(2495), + [anon_sym_u_DQUOTE] = ACTIONS(2495), + [anon_sym_U_DQUOTE] = ACTIONS(2495), + [anon_sym_u8_DQUOTE] = ACTIONS(2495), + [anon_sym_DQUOTE] = ACTIONS(2495), + [sym_true] = ACTIONS(2493), + [sym_false] = ACTIONS(2493), + [sym_null] = ACTIONS(2493), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2493), + [anon_sym_decltype] = ACTIONS(2493), + [anon_sym_virtual] = ACTIONS(2493), + [anon_sym_explicit] = ACTIONS(2493), + [anon_sym_typename] = ACTIONS(2493), + [anon_sym_template] = ACTIONS(2493), + [anon_sym_operator] = ACTIONS(2493), + [anon_sym_try] = ACTIONS(2493), + [anon_sym_delete] = ACTIONS(2493), + [anon_sym_throw] = ACTIONS(2493), + [anon_sym_namespace] = ACTIONS(2493), + [anon_sym_using] = ACTIONS(2493), + [anon_sym_static_assert] = ACTIONS(2493), + [anon_sym_concept] = ACTIONS(2493), + [anon_sym_co_return] = ACTIONS(2493), + [anon_sym_co_yield] = ACTIONS(2493), + [anon_sym_co_await] = ACTIONS(2493), + [anon_sym_new] = ACTIONS(2493), + [anon_sym_requires] = ACTIONS(2493), + [sym_this] = ACTIONS(2493), + [sym_nullptr] = ACTIONS(2493), + [sym_raw_string_literal] = ACTIONS(2495), }, - [1336] = { - [sym__expression] = STATE(3430), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_initializer_list] = STATE(3429), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1465), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [869] = { + [ts_builtin_sym_end] = ACTIONS(2653), + [sym_identifier] = ACTIONS(2651), + [aux_sym_preproc_include_token1] = ACTIONS(2651), + [aux_sym_preproc_def_token1] = ACTIONS(2651), + [aux_sym_preproc_if_token1] = ACTIONS(2651), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2651), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2651), + [sym_preproc_directive] = ACTIONS(2651), + [anon_sym_LPAREN2] = ACTIONS(2653), + [anon_sym_BANG] = ACTIONS(2653), + [anon_sym_TILDE] = ACTIONS(2653), + [anon_sym_DASH] = ACTIONS(2651), + [anon_sym_PLUS] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2653), + [anon_sym_AMP_AMP] = ACTIONS(2653), + [anon_sym_AMP] = ACTIONS(2651), + [anon_sym_SEMI] = ACTIONS(2653), + [anon_sym_typedef] = ACTIONS(2651), + [anon_sym_extern] = ACTIONS(2651), + [anon_sym___attribute__] = ACTIONS(2651), + [anon_sym_COLON_COLON] = ACTIONS(2653), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2653), + [anon_sym___declspec] = ACTIONS(2651), + [anon_sym___based] = ACTIONS(2651), + [anon_sym___cdecl] = ACTIONS(2651), + [anon_sym___clrcall] = ACTIONS(2651), + [anon_sym___stdcall] = ACTIONS(2651), + [anon_sym___fastcall] = ACTIONS(2651), + [anon_sym___thiscall] = ACTIONS(2651), + [anon_sym___vectorcall] = ACTIONS(2651), + [anon_sym_LBRACE] = ACTIONS(2653), + [anon_sym_LBRACK] = ACTIONS(2651), + [anon_sym_static] = ACTIONS(2651), + [anon_sym_register] = ACTIONS(2651), + [anon_sym_inline] = ACTIONS(2651), + [anon_sym_thread_local] = ACTIONS(2651), + [anon_sym_const] = ACTIONS(2651), + [anon_sym_volatile] = ACTIONS(2651), + [anon_sym_restrict] = ACTIONS(2651), + [anon_sym__Atomic] = ACTIONS(2651), + [anon_sym_mutable] = ACTIONS(2651), + [anon_sym_constexpr] = ACTIONS(2651), + [anon_sym_constinit] = ACTIONS(2651), + [anon_sym_consteval] = ACTIONS(2651), + [anon_sym_signed] = ACTIONS(2651), + [anon_sym_unsigned] = ACTIONS(2651), + [anon_sym_long] = ACTIONS(2651), + [anon_sym_short] = ACTIONS(2651), + [sym_primitive_type] = ACTIONS(2651), + [anon_sym_enum] = ACTIONS(2651), + [anon_sym_class] = ACTIONS(2651), + [anon_sym_struct] = ACTIONS(2651), + [anon_sym_union] = ACTIONS(2651), + [anon_sym_if] = ACTIONS(2651), + [anon_sym_else] = ACTIONS(2651), + [anon_sym_switch] = ACTIONS(2651), + [anon_sym_case] = ACTIONS(2651), + [anon_sym_default] = ACTIONS(2651), + [anon_sym_while] = ACTIONS(2651), + [anon_sym_do] = ACTIONS(2651), + [anon_sym_for] = ACTIONS(2651), + [anon_sym_return] = ACTIONS(2651), + [anon_sym_break] = ACTIONS(2651), + [anon_sym_continue] = ACTIONS(2651), + [anon_sym_goto] = ACTIONS(2651), + [anon_sym_not] = ACTIONS(2651), + [anon_sym_compl] = ACTIONS(2651), + [anon_sym_DASH_DASH] = ACTIONS(2653), + [anon_sym_PLUS_PLUS] = ACTIONS(2653), + [anon_sym_sizeof] = ACTIONS(2651), + [sym_number_literal] = ACTIONS(2653), + [anon_sym_L_SQUOTE] = ACTIONS(2653), + [anon_sym_u_SQUOTE] = ACTIONS(2653), + [anon_sym_U_SQUOTE] = ACTIONS(2653), + [anon_sym_u8_SQUOTE] = ACTIONS(2653), + [anon_sym_SQUOTE] = ACTIONS(2653), + [anon_sym_L_DQUOTE] = ACTIONS(2653), + [anon_sym_u_DQUOTE] = ACTIONS(2653), + [anon_sym_U_DQUOTE] = ACTIONS(2653), + [anon_sym_u8_DQUOTE] = ACTIONS(2653), + [anon_sym_DQUOTE] = ACTIONS(2653), + [sym_true] = ACTIONS(2651), + [sym_false] = ACTIONS(2651), + [sym_null] = ACTIONS(2651), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2651), + [anon_sym_decltype] = ACTIONS(2651), + [anon_sym_virtual] = ACTIONS(2651), + [anon_sym_explicit] = ACTIONS(2651), + [anon_sym_typename] = ACTIONS(2651), + [anon_sym_template] = ACTIONS(2651), + [anon_sym_operator] = ACTIONS(2651), + [anon_sym_try] = ACTIONS(2651), + [anon_sym_delete] = ACTIONS(2651), + [anon_sym_throw] = ACTIONS(2651), + [anon_sym_namespace] = ACTIONS(2651), + [anon_sym_using] = ACTIONS(2651), + [anon_sym_static_assert] = ACTIONS(2651), + [anon_sym_concept] = ACTIONS(2651), + [anon_sym_co_return] = ACTIONS(2651), + [anon_sym_co_yield] = ACTIONS(2651), + [anon_sym_co_await] = ACTIONS(2651), + [anon_sym_new] = ACTIONS(2651), + [anon_sym_requires] = ACTIONS(2651), + [sym_this] = ACTIONS(2651), + [sym_nullptr] = ACTIONS(2651), + [sym_raw_string_literal] = ACTIONS(2653), }, - [1337] = { - [sym__expression] = STATE(3767), - [sym_comma_expression] = STATE(6728), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_RPAREN] = ACTIONS(3447), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [870] = { + [sym_identifier] = ACTIONS(2647), + [aux_sym_preproc_include_token1] = ACTIONS(2647), + [aux_sym_preproc_def_token1] = ACTIONS(2647), + [aux_sym_preproc_if_token1] = ACTIONS(2647), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2647), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2647), + [sym_preproc_directive] = ACTIONS(2647), + [anon_sym_LPAREN2] = ACTIONS(2649), + [anon_sym_BANG] = ACTIONS(2649), + [anon_sym_TILDE] = ACTIONS(2649), + [anon_sym_DASH] = ACTIONS(2647), + [anon_sym_PLUS] = ACTIONS(2647), + [anon_sym_STAR] = ACTIONS(2649), + [anon_sym_AMP_AMP] = ACTIONS(2649), + [anon_sym_AMP] = ACTIONS(2647), + [anon_sym_SEMI] = ACTIONS(2649), + [anon_sym_typedef] = ACTIONS(2647), + [anon_sym_extern] = ACTIONS(2647), + [anon_sym___attribute__] = ACTIONS(2647), + [anon_sym_COLON_COLON] = ACTIONS(2649), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2649), + [anon_sym___declspec] = ACTIONS(2647), + [anon_sym___based] = ACTIONS(2647), + [anon_sym___cdecl] = ACTIONS(2647), + [anon_sym___clrcall] = ACTIONS(2647), + [anon_sym___stdcall] = ACTIONS(2647), + [anon_sym___fastcall] = ACTIONS(2647), + [anon_sym___thiscall] = ACTIONS(2647), + [anon_sym___vectorcall] = ACTIONS(2647), + [anon_sym_LBRACE] = ACTIONS(2649), + [anon_sym_RBRACE] = ACTIONS(2649), + [anon_sym_LBRACK] = ACTIONS(2647), + [anon_sym_static] = ACTIONS(2647), + [anon_sym_register] = ACTIONS(2647), + [anon_sym_inline] = ACTIONS(2647), + [anon_sym_thread_local] = ACTIONS(2647), + [anon_sym_const] = ACTIONS(2647), + [anon_sym_volatile] = ACTIONS(2647), + [anon_sym_restrict] = ACTIONS(2647), + [anon_sym__Atomic] = ACTIONS(2647), + [anon_sym_mutable] = ACTIONS(2647), + [anon_sym_constexpr] = ACTIONS(2647), + [anon_sym_constinit] = ACTIONS(2647), + [anon_sym_consteval] = ACTIONS(2647), + [anon_sym_signed] = ACTIONS(2647), + [anon_sym_unsigned] = ACTIONS(2647), + [anon_sym_long] = ACTIONS(2647), + [anon_sym_short] = ACTIONS(2647), + [sym_primitive_type] = ACTIONS(2647), + [anon_sym_enum] = ACTIONS(2647), + [anon_sym_class] = ACTIONS(2647), + [anon_sym_struct] = ACTIONS(2647), + [anon_sym_union] = ACTIONS(2647), + [anon_sym_if] = ACTIONS(2647), + [anon_sym_else] = ACTIONS(2647), + [anon_sym_switch] = ACTIONS(2647), + [anon_sym_case] = ACTIONS(2647), + [anon_sym_default] = ACTIONS(2647), + [anon_sym_while] = ACTIONS(2647), + [anon_sym_do] = ACTIONS(2647), + [anon_sym_for] = ACTIONS(2647), + [anon_sym_return] = ACTIONS(2647), + [anon_sym_break] = ACTIONS(2647), + [anon_sym_continue] = ACTIONS(2647), + [anon_sym_goto] = ACTIONS(2647), + [anon_sym_not] = ACTIONS(2647), + [anon_sym_compl] = ACTIONS(2647), + [anon_sym_DASH_DASH] = ACTIONS(2649), + [anon_sym_PLUS_PLUS] = ACTIONS(2649), + [anon_sym_sizeof] = ACTIONS(2647), + [sym_number_literal] = ACTIONS(2649), + [anon_sym_L_SQUOTE] = ACTIONS(2649), + [anon_sym_u_SQUOTE] = ACTIONS(2649), + [anon_sym_U_SQUOTE] = ACTIONS(2649), + [anon_sym_u8_SQUOTE] = ACTIONS(2649), + [anon_sym_SQUOTE] = ACTIONS(2649), + [anon_sym_L_DQUOTE] = ACTIONS(2649), + [anon_sym_u_DQUOTE] = ACTIONS(2649), + [anon_sym_U_DQUOTE] = ACTIONS(2649), + [anon_sym_u8_DQUOTE] = ACTIONS(2649), + [anon_sym_DQUOTE] = ACTIONS(2649), + [sym_true] = ACTIONS(2647), + [sym_false] = ACTIONS(2647), + [sym_null] = ACTIONS(2647), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2647), + [anon_sym_decltype] = ACTIONS(2647), + [anon_sym_virtual] = ACTIONS(2647), + [anon_sym_explicit] = ACTIONS(2647), + [anon_sym_typename] = ACTIONS(2647), + [anon_sym_template] = ACTIONS(2647), + [anon_sym_operator] = ACTIONS(2647), + [anon_sym_try] = ACTIONS(2647), + [anon_sym_delete] = ACTIONS(2647), + [anon_sym_throw] = ACTIONS(2647), + [anon_sym_namespace] = ACTIONS(2647), + [anon_sym_using] = ACTIONS(2647), + [anon_sym_static_assert] = ACTIONS(2647), + [anon_sym_concept] = ACTIONS(2647), + [anon_sym_co_return] = ACTIONS(2647), + [anon_sym_co_yield] = ACTIONS(2647), + [anon_sym_co_await] = ACTIONS(2647), + [anon_sym_new] = ACTIONS(2647), + [anon_sym_requires] = ACTIONS(2647), + [sym_this] = ACTIONS(2647), + [sym_nullptr] = ACTIONS(2647), + [sym_raw_string_literal] = ACTIONS(2649), }, - [1338] = { - [sym__expression] = STATE(3792), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_initializer_list] = STATE(6727), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1465), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [871] = { + [sym_identifier] = ACTIONS(2583), + [aux_sym_preproc_include_token1] = ACTIONS(2583), + [aux_sym_preproc_def_token1] = ACTIONS(2583), + [aux_sym_preproc_if_token1] = ACTIONS(2583), + [aux_sym_preproc_if_token2] = ACTIONS(2583), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2583), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2583), + [sym_preproc_directive] = ACTIONS(2583), + [anon_sym_LPAREN2] = ACTIONS(2585), + [anon_sym_BANG] = ACTIONS(2585), + [anon_sym_TILDE] = ACTIONS(2585), + [anon_sym_DASH] = ACTIONS(2583), + [anon_sym_PLUS] = ACTIONS(2583), + [anon_sym_STAR] = ACTIONS(2585), + [anon_sym_AMP_AMP] = ACTIONS(2585), + [anon_sym_AMP] = ACTIONS(2583), + [anon_sym_SEMI] = ACTIONS(2585), + [anon_sym_typedef] = ACTIONS(2583), + [anon_sym_extern] = ACTIONS(2583), + [anon_sym___attribute__] = ACTIONS(2583), + [anon_sym_COLON_COLON] = ACTIONS(2585), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2585), + [anon_sym___declspec] = ACTIONS(2583), + [anon_sym___based] = ACTIONS(2583), + [anon_sym___cdecl] = ACTIONS(2583), + [anon_sym___clrcall] = ACTIONS(2583), + [anon_sym___stdcall] = ACTIONS(2583), + [anon_sym___fastcall] = ACTIONS(2583), + [anon_sym___thiscall] = ACTIONS(2583), + [anon_sym___vectorcall] = ACTIONS(2583), + [anon_sym_LBRACE] = ACTIONS(2585), + [anon_sym_LBRACK] = ACTIONS(2583), + [anon_sym_static] = ACTIONS(2583), + [anon_sym_register] = ACTIONS(2583), + [anon_sym_inline] = ACTIONS(2583), + [anon_sym_thread_local] = ACTIONS(2583), + [anon_sym_const] = ACTIONS(2583), + [anon_sym_volatile] = ACTIONS(2583), + [anon_sym_restrict] = ACTIONS(2583), + [anon_sym__Atomic] = ACTIONS(2583), + [anon_sym_mutable] = ACTIONS(2583), + [anon_sym_constexpr] = ACTIONS(2583), + [anon_sym_constinit] = ACTIONS(2583), + [anon_sym_consteval] = ACTIONS(2583), + [anon_sym_signed] = ACTIONS(2583), + [anon_sym_unsigned] = ACTIONS(2583), + [anon_sym_long] = ACTIONS(2583), + [anon_sym_short] = ACTIONS(2583), + [sym_primitive_type] = ACTIONS(2583), + [anon_sym_enum] = ACTIONS(2583), + [anon_sym_class] = ACTIONS(2583), + [anon_sym_struct] = ACTIONS(2583), + [anon_sym_union] = ACTIONS(2583), + [anon_sym_if] = ACTIONS(2583), + [anon_sym_else] = ACTIONS(2583), + [anon_sym_switch] = ACTIONS(2583), + [anon_sym_case] = ACTIONS(2583), + [anon_sym_default] = ACTIONS(2583), + [anon_sym_while] = ACTIONS(2583), + [anon_sym_do] = ACTIONS(2583), + [anon_sym_for] = ACTIONS(2583), + [anon_sym_return] = ACTIONS(2583), + [anon_sym_break] = ACTIONS(2583), + [anon_sym_continue] = ACTIONS(2583), + [anon_sym_goto] = ACTIONS(2583), + [anon_sym_not] = ACTIONS(2583), + [anon_sym_compl] = ACTIONS(2583), + [anon_sym_DASH_DASH] = ACTIONS(2585), + [anon_sym_PLUS_PLUS] = ACTIONS(2585), + [anon_sym_sizeof] = ACTIONS(2583), + [sym_number_literal] = ACTIONS(2585), + [anon_sym_L_SQUOTE] = ACTIONS(2585), + [anon_sym_u_SQUOTE] = ACTIONS(2585), + [anon_sym_U_SQUOTE] = ACTIONS(2585), + [anon_sym_u8_SQUOTE] = ACTIONS(2585), + [anon_sym_SQUOTE] = ACTIONS(2585), + [anon_sym_L_DQUOTE] = ACTIONS(2585), + [anon_sym_u_DQUOTE] = ACTIONS(2585), + [anon_sym_U_DQUOTE] = ACTIONS(2585), + [anon_sym_u8_DQUOTE] = ACTIONS(2585), + [anon_sym_DQUOTE] = ACTIONS(2585), + [sym_true] = ACTIONS(2583), + [sym_false] = ACTIONS(2583), + [sym_null] = ACTIONS(2583), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2583), + [anon_sym_decltype] = ACTIONS(2583), + [anon_sym_virtual] = ACTIONS(2583), + [anon_sym_explicit] = ACTIONS(2583), + [anon_sym_typename] = ACTIONS(2583), + [anon_sym_template] = ACTIONS(2583), + [anon_sym_operator] = ACTIONS(2583), + [anon_sym_try] = ACTIONS(2583), + [anon_sym_delete] = ACTIONS(2583), + [anon_sym_throw] = ACTIONS(2583), + [anon_sym_namespace] = ACTIONS(2583), + [anon_sym_using] = ACTIONS(2583), + [anon_sym_static_assert] = ACTIONS(2583), + [anon_sym_concept] = ACTIONS(2583), + [anon_sym_co_return] = ACTIONS(2583), + [anon_sym_co_yield] = ACTIONS(2583), + [anon_sym_co_await] = ACTIONS(2583), + [anon_sym_new] = ACTIONS(2583), + [anon_sym_requires] = ACTIONS(2583), + [sym_this] = ACTIONS(2583), + [sym_nullptr] = ACTIONS(2583), + [sym_raw_string_literal] = ACTIONS(2585), }, - [1339] = { - [sym__expression] = STATE(3763), - [sym_comma_expression] = STATE(6759), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_RPAREN] = ACTIONS(3449), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [872] = { + [sym_identifier] = ACTIONS(2655), + [aux_sym_preproc_include_token1] = ACTIONS(2655), + [aux_sym_preproc_def_token1] = ACTIONS(2655), + [aux_sym_preproc_if_token1] = ACTIONS(2655), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2655), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2655), + [sym_preproc_directive] = ACTIONS(2655), + [anon_sym_LPAREN2] = ACTIONS(2657), + [anon_sym_BANG] = ACTIONS(2657), + [anon_sym_TILDE] = ACTIONS(2657), + [anon_sym_DASH] = ACTIONS(2655), + [anon_sym_PLUS] = ACTIONS(2655), + [anon_sym_STAR] = ACTIONS(2657), + [anon_sym_AMP_AMP] = ACTIONS(2657), + [anon_sym_AMP] = ACTIONS(2655), + [anon_sym_SEMI] = ACTIONS(2657), + [anon_sym_typedef] = ACTIONS(2655), + [anon_sym_extern] = ACTIONS(2655), + [anon_sym___attribute__] = ACTIONS(2655), + [anon_sym_COLON_COLON] = ACTIONS(2657), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2657), + [anon_sym___declspec] = ACTIONS(2655), + [anon_sym___based] = ACTIONS(2655), + [anon_sym___cdecl] = ACTIONS(2655), + [anon_sym___clrcall] = ACTIONS(2655), + [anon_sym___stdcall] = ACTIONS(2655), + [anon_sym___fastcall] = ACTIONS(2655), + [anon_sym___thiscall] = ACTIONS(2655), + [anon_sym___vectorcall] = ACTIONS(2655), + [anon_sym_LBRACE] = ACTIONS(2657), + [anon_sym_RBRACE] = ACTIONS(2657), + [anon_sym_LBRACK] = ACTIONS(2655), + [anon_sym_static] = ACTIONS(2655), + [anon_sym_register] = ACTIONS(2655), + [anon_sym_inline] = ACTIONS(2655), + [anon_sym_thread_local] = ACTIONS(2655), + [anon_sym_const] = ACTIONS(2655), + [anon_sym_volatile] = ACTIONS(2655), + [anon_sym_restrict] = ACTIONS(2655), + [anon_sym__Atomic] = ACTIONS(2655), + [anon_sym_mutable] = ACTIONS(2655), + [anon_sym_constexpr] = ACTIONS(2655), + [anon_sym_constinit] = ACTIONS(2655), + [anon_sym_consteval] = ACTIONS(2655), + [anon_sym_signed] = ACTIONS(2655), + [anon_sym_unsigned] = ACTIONS(2655), + [anon_sym_long] = ACTIONS(2655), + [anon_sym_short] = ACTIONS(2655), + [sym_primitive_type] = ACTIONS(2655), + [anon_sym_enum] = ACTIONS(2655), + [anon_sym_class] = ACTIONS(2655), + [anon_sym_struct] = ACTIONS(2655), + [anon_sym_union] = ACTIONS(2655), + [anon_sym_if] = ACTIONS(2655), + [anon_sym_else] = ACTIONS(2655), + [anon_sym_switch] = ACTIONS(2655), + [anon_sym_case] = ACTIONS(2655), + [anon_sym_default] = ACTIONS(2655), + [anon_sym_while] = ACTIONS(2655), + [anon_sym_do] = ACTIONS(2655), + [anon_sym_for] = ACTIONS(2655), + [anon_sym_return] = ACTIONS(2655), + [anon_sym_break] = ACTIONS(2655), + [anon_sym_continue] = ACTIONS(2655), + [anon_sym_goto] = ACTIONS(2655), + [anon_sym_not] = ACTIONS(2655), + [anon_sym_compl] = ACTIONS(2655), + [anon_sym_DASH_DASH] = ACTIONS(2657), + [anon_sym_PLUS_PLUS] = ACTIONS(2657), + [anon_sym_sizeof] = ACTIONS(2655), + [sym_number_literal] = ACTIONS(2657), + [anon_sym_L_SQUOTE] = ACTIONS(2657), + [anon_sym_u_SQUOTE] = ACTIONS(2657), + [anon_sym_U_SQUOTE] = ACTIONS(2657), + [anon_sym_u8_SQUOTE] = ACTIONS(2657), + [anon_sym_SQUOTE] = ACTIONS(2657), + [anon_sym_L_DQUOTE] = ACTIONS(2657), + [anon_sym_u_DQUOTE] = ACTIONS(2657), + [anon_sym_U_DQUOTE] = ACTIONS(2657), + [anon_sym_u8_DQUOTE] = ACTIONS(2657), + [anon_sym_DQUOTE] = ACTIONS(2657), + [sym_true] = ACTIONS(2655), + [sym_false] = ACTIONS(2655), + [sym_null] = ACTIONS(2655), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2655), + [anon_sym_decltype] = ACTIONS(2655), + [anon_sym_virtual] = ACTIONS(2655), + [anon_sym_explicit] = ACTIONS(2655), + [anon_sym_typename] = ACTIONS(2655), + [anon_sym_template] = ACTIONS(2655), + [anon_sym_operator] = ACTIONS(2655), + [anon_sym_try] = ACTIONS(2655), + [anon_sym_delete] = ACTIONS(2655), + [anon_sym_throw] = ACTIONS(2655), + [anon_sym_namespace] = ACTIONS(2655), + [anon_sym_using] = ACTIONS(2655), + [anon_sym_static_assert] = ACTIONS(2655), + [anon_sym_concept] = ACTIONS(2655), + [anon_sym_co_return] = ACTIONS(2655), + [anon_sym_co_yield] = ACTIONS(2655), + [anon_sym_co_await] = ACTIONS(2655), + [anon_sym_new] = ACTIONS(2655), + [anon_sym_requires] = ACTIONS(2655), + [sym_this] = ACTIONS(2655), + [sym_nullptr] = ACTIONS(2655), + [sym_raw_string_literal] = ACTIONS(2657), }, - [1340] = { - [sym__expression] = STATE(3625), - [sym_comma_expression] = STATE(6435), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_RPAREN] = ACTIONS(3451), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [873] = { + [ts_builtin_sym_end] = ACTIONS(2569), + [sym_identifier] = ACTIONS(2567), + [aux_sym_preproc_include_token1] = ACTIONS(2567), + [aux_sym_preproc_def_token1] = ACTIONS(2567), + [aux_sym_preproc_if_token1] = ACTIONS(2567), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2567), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2567), + [sym_preproc_directive] = ACTIONS(2567), + [anon_sym_LPAREN2] = ACTIONS(2569), + [anon_sym_BANG] = ACTIONS(2569), + [anon_sym_TILDE] = ACTIONS(2569), + [anon_sym_DASH] = ACTIONS(2567), + [anon_sym_PLUS] = ACTIONS(2567), + [anon_sym_STAR] = ACTIONS(2569), + [anon_sym_AMP_AMP] = ACTIONS(2569), + [anon_sym_AMP] = ACTIONS(2567), + [anon_sym_SEMI] = ACTIONS(2569), + [anon_sym_typedef] = ACTIONS(2567), + [anon_sym_extern] = ACTIONS(2567), + [anon_sym___attribute__] = ACTIONS(2567), + [anon_sym_COLON_COLON] = ACTIONS(2569), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2569), + [anon_sym___declspec] = ACTIONS(2567), + [anon_sym___based] = ACTIONS(2567), + [anon_sym___cdecl] = ACTIONS(2567), + [anon_sym___clrcall] = ACTIONS(2567), + [anon_sym___stdcall] = ACTIONS(2567), + [anon_sym___fastcall] = ACTIONS(2567), + [anon_sym___thiscall] = ACTIONS(2567), + [anon_sym___vectorcall] = ACTIONS(2567), + [anon_sym_LBRACE] = ACTIONS(2569), + [anon_sym_LBRACK] = ACTIONS(2567), + [anon_sym_static] = ACTIONS(2567), + [anon_sym_register] = ACTIONS(2567), + [anon_sym_inline] = ACTIONS(2567), + [anon_sym_thread_local] = ACTIONS(2567), + [anon_sym_const] = ACTIONS(2567), + [anon_sym_volatile] = ACTIONS(2567), + [anon_sym_restrict] = ACTIONS(2567), + [anon_sym__Atomic] = ACTIONS(2567), + [anon_sym_mutable] = ACTIONS(2567), + [anon_sym_constexpr] = ACTIONS(2567), + [anon_sym_constinit] = ACTIONS(2567), + [anon_sym_consteval] = ACTIONS(2567), + [anon_sym_signed] = ACTIONS(2567), + [anon_sym_unsigned] = ACTIONS(2567), + [anon_sym_long] = ACTIONS(2567), + [anon_sym_short] = ACTIONS(2567), + [sym_primitive_type] = ACTIONS(2567), + [anon_sym_enum] = ACTIONS(2567), + [anon_sym_class] = ACTIONS(2567), + [anon_sym_struct] = ACTIONS(2567), + [anon_sym_union] = ACTIONS(2567), + [anon_sym_if] = ACTIONS(2567), + [anon_sym_else] = ACTIONS(2567), + [anon_sym_switch] = ACTIONS(2567), + [anon_sym_case] = ACTIONS(2567), + [anon_sym_default] = ACTIONS(2567), + [anon_sym_while] = ACTIONS(2567), + [anon_sym_do] = ACTIONS(2567), + [anon_sym_for] = ACTIONS(2567), + [anon_sym_return] = ACTIONS(2567), + [anon_sym_break] = ACTIONS(2567), + [anon_sym_continue] = ACTIONS(2567), + [anon_sym_goto] = ACTIONS(2567), + [anon_sym_not] = ACTIONS(2567), + [anon_sym_compl] = ACTIONS(2567), + [anon_sym_DASH_DASH] = ACTIONS(2569), + [anon_sym_PLUS_PLUS] = ACTIONS(2569), + [anon_sym_sizeof] = ACTIONS(2567), + [sym_number_literal] = ACTIONS(2569), + [anon_sym_L_SQUOTE] = ACTIONS(2569), + [anon_sym_u_SQUOTE] = ACTIONS(2569), + [anon_sym_U_SQUOTE] = ACTIONS(2569), + [anon_sym_u8_SQUOTE] = ACTIONS(2569), + [anon_sym_SQUOTE] = ACTIONS(2569), + [anon_sym_L_DQUOTE] = ACTIONS(2569), + [anon_sym_u_DQUOTE] = ACTIONS(2569), + [anon_sym_U_DQUOTE] = ACTIONS(2569), + [anon_sym_u8_DQUOTE] = ACTIONS(2569), + [anon_sym_DQUOTE] = ACTIONS(2569), + [sym_true] = ACTIONS(2567), + [sym_false] = ACTIONS(2567), + [sym_null] = ACTIONS(2567), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2567), + [anon_sym_decltype] = ACTIONS(2567), + [anon_sym_virtual] = ACTIONS(2567), + [anon_sym_explicit] = ACTIONS(2567), + [anon_sym_typename] = ACTIONS(2567), + [anon_sym_template] = ACTIONS(2567), + [anon_sym_operator] = ACTIONS(2567), + [anon_sym_try] = ACTIONS(2567), + [anon_sym_delete] = ACTIONS(2567), + [anon_sym_throw] = ACTIONS(2567), + [anon_sym_namespace] = ACTIONS(2567), + [anon_sym_using] = ACTIONS(2567), + [anon_sym_static_assert] = ACTIONS(2567), + [anon_sym_concept] = ACTIONS(2567), + [anon_sym_co_return] = ACTIONS(2567), + [anon_sym_co_yield] = ACTIONS(2567), + [anon_sym_co_await] = ACTIONS(2567), + [anon_sym_new] = ACTIONS(2567), + [anon_sym_requires] = ACTIONS(2567), + [sym_this] = ACTIONS(2567), + [sym_nullptr] = ACTIONS(2567), + [sym_raw_string_literal] = ACTIONS(2569), }, - [1341] = { - [sym__expression] = STATE(3515), - [sym_comma_expression] = STATE(6251), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3453), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [874] = { + [sym_identifier] = ACTIONS(2655), + [aux_sym_preproc_include_token1] = ACTIONS(2655), + [aux_sym_preproc_def_token1] = ACTIONS(2655), + [aux_sym_preproc_if_token1] = ACTIONS(2655), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2655), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2655), + [sym_preproc_directive] = ACTIONS(2655), + [anon_sym_LPAREN2] = ACTIONS(2657), + [anon_sym_BANG] = ACTIONS(2657), + [anon_sym_TILDE] = ACTIONS(2657), + [anon_sym_DASH] = ACTIONS(2655), + [anon_sym_PLUS] = ACTIONS(2655), + [anon_sym_STAR] = ACTIONS(2657), + [anon_sym_AMP_AMP] = ACTIONS(2657), + [anon_sym_AMP] = ACTIONS(2655), + [anon_sym_SEMI] = ACTIONS(2657), + [anon_sym_typedef] = ACTIONS(2655), + [anon_sym_extern] = ACTIONS(2655), + [anon_sym___attribute__] = ACTIONS(2655), + [anon_sym_COLON_COLON] = ACTIONS(2657), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2657), + [anon_sym___declspec] = ACTIONS(2655), + [anon_sym___based] = ACTIONS(2655), + [anon_sym___cdecl] = ACTIONS(2655), + [anon_sym___clrcall] = ACTIONS(2655), + [anon_sym___stdcall] = ACTIONS(2655), + [anon_sym___fastcall] = ACTIONS(2655), + [anon_sym___thiscall] = ACTIONS(2655), + [anon_sym___vectorcall] = ACTIONS(2655), + [anon_sym_LBRACE] = ACTIONS(2657), + [anon_sym_RBRACE] = ACTIONS(2657), + [anon_sym_LBRACK] = ACTIONS(2655), + [anon_sym_static] = ACTIONS(2655), + [anon_sym_register] = ACTIONS(2655), + [anon_sym_inline] = ACTIONS(2655), + [anon_sym_thread_local] = ACTIONS(2655), + [anon_sym_const] = ACTIONS(2655), + [anon_sym_volatile] = ACTIONS(2655), + [anon_sym_restrict] = ACTIONS(2655), + [anon_sym__Atomic] = ACTIONS(2655), + [anon_sym_mutable] = ACTIONS(2655), + [anon_sym_constexpr] = ACTIONS(2655), + [anon_sym_constinit] = ACTIONS(2655), + [anon_sym_consteval] = ACTIONS(2655), + [anon_sym_signed] = ACTIONS(2655), + [anon_sym_unsigned] = ACTIONS(2655), + [anon_sym_long] = ACTIONS(2655), + [anon_sym_short] = ACTIONS(2655), + [sym_primitive_type] = ACTIONS(2655), + [anon_sym_enum] = ACTIONS(2655), + [anon_sym_class] = ACTIONS(2655), + [anon_sym_struct] = ACTIONS(2655), + [anon_sym_union] = ACTIONS(2655), + [anon_sym_if] = ACTIONS(2655), + [anon_sym_else] = ACTIONS(2655), + [anon_sym_switch] = ACTIONS(2655), + [anon_sym_case] = ACTIONS(2655), + [anon_sym_default] = ACTIONS(2655), + [anon_sym_while] = ACTIONS(2655), + [anon_sym_do] = ACTIONS(2655), + [anon_sym_for] = ACTIONS(2655), + [anon_sym_return] = ACTIONS(2655), + [anon_sym_break] = ACTIONS(2655), + [anon_sym_continue] = ACTIONS(2655), + [anon_sym_goto] = ACTIONS(2655), + [anon_sym_not] = ACTIONS(2655), + [anon_sym_compl] = ACTIONS(2655), + [anon_sym_DASH_DASH] = ACTIONS(2657), + [anon_sym_PLUS_PLUS] = ACTIONS(2657), + [anon_sym_sizeof] = ACTIONS(2655), + [sym_number_literal] = ACTIONS(2657), + [anon_sym_L_SQUOTE] = ACTIONS(2657), + [anon_sym_u_SQUOTE] = ACTIONS(2657), + [anon_sym_U_SQUOTE] = ACTIONS(2657), + [anon_sym_u8_SQUOTE] = ACTIONS(2657), + [anon_sym_SQUOTE] = ACTIONS(2657), + [anon_sym_L_DQUOTE] = ACTIONS(2657), + [anon_sym_u_DQUOTE] = ACTIONS(2657), + [anon_sym_U_DQUOTE] = ACTIONS(2657), + [anon_sym_u8_DQUOTE] = ACTIONS(2657), + [anon_sym_DQUOTE] = ACTIONS(2657), + [sym_true] = ACTIONS(2655), + [sym_false] = ACTIONS(2655), + [sym_null] = ACTIONS(2655), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2655), + [anon_sym_decltype] = ACTIONS(2655), + [anon_sym_virtual] = ACTIONS(2655), + [anon_sym_explicit] = ACTIONS(2655), + [anon_sym_typename] = ACTIONS(2655), + [anon_sym_template] = ACTIONS(2655), + [anon_sym_operator] = ACTIONS(2655), + [anon_sym_try] = ACTIONS(2655), + [anon_sym_delete] = ACTIONS(2655), + [anon_sym_throw] = ACTIONS(2655), + [anon_sym_namespace] = ACTIONS(2655), + [anon_sym_using] = ACTIONS(2655), + [anon_sym_static_assert] = ACTIONS(2655), + [anon_sym_concept] = ACTIONS(2655), + [anon_sym_co_return] = ACTIONS(2655), + [anon_sym_co_yield] = ACTIONS(2655), + [anon_sym_co_await] = ACTIONS(2655), + [anon_sym_new] = ACTIONS(2655), + [anon_sym_requires] = ACTIONS(2655), + [sym_this] = ACTIONS(2655), + [sym_nullptr] = ACTIONS(2655), + [sym_raw_string_literal] = ACTIONS(2657), }, - [1342] = { - [sym__expression] = STATE(3896), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_initializer_list] = STATE(6577), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1465), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), - }, - [1343] = { - [sym__expression] = STATE(3669), - [sym_comma_expression] = STATE(6441), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_RPAREN] = ACTIONS(3456), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), - }, - [1344] = { - [sym__expression] = STATE(3764), - [sym_comma_expression] = STATE(6726), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_RPAREN] = ACTIONS(3458), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [875] = { + [sym_identifier] = ACTIONS(2503), + [aux_sym_preproc_include_token1] = ACTIONS(2503), + [aux_sym_preproc_def_token1] = ACTIONS(2503), + [aux_sym_preproc_if_token1] = ACTIONS(2503), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2503), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2503), + [sym_preproc_directive] = ACTIONS(2503), + [anon_sym_LPAREN2] = ACTIONS(2505), + [anon_sym_BANG] = ACTIONS(2505), + [anon_sym_TILDE] = ACTIONS(2505), + [anon_sym_DASH] = ACTIONS(2503), + [anon_sym_PLUS] = ACTIONS(2503), + [anon_sym_STAR] = ACTIONS(2505), + [anon_sym_AMP_AMP] = ACTIONS(2505), + [anon_sym_AMP] = ACTIONS(2503), + [anon_sym_SEMI] = ACTIONS(2505), + [anon_sym_typedef] = ACTIONS(2503), + [anon_sym_extern] = ACTIONS(2503), + [anon_sym___attribute__] = ACTIONS(2503), + [anon_sym_COLON_COLON] = ACTIONS(2505), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2505), + [anon_sym___declspec] = ACTIONS(2503), + [anon_sym___based] = ACTIONS(2503), + [anon_sym___cdecl] = ACTIONS(2503), + [anon_sym___clrcall] = ACTIONS(2503), + [anon_sym___stdcall] = ACTIONS(2503), + [anon_sym___fastcall] = ACTIONS(2503), + [anon_sym___thiscall] = ACTIONS(2503), + [anon_sym___vectorcall] = ACTIONS(2503), + [anon_sym_LBRACE] = ACTIONS(2505), + [anon_sym_RBRACE] = ACTIONS(2505), + [anon_sym_LBRACK] = ACTIONS(2503), + [anon_sym_static] = ACTIONS(2503), + [anon_sym_register] = ACTIONS(2503), + [anon_sym_inline] = ACTIONS(2503), + [anon_sym_thread_local] = ACTIONS(2503), + [anon_sym_const] = ACTIONS(2503), + [anon_sym_volatile] = ACTIONS(2503), + [anon_sym_restrict] = ACTIONS(2503), + [anon_sym__Atomic] = ACTIONS(2503), + [anon_sym_mutable] = ACTIONS(2503), + [anon_sym_constexpr] = ACTIONS(2503), + [anon_sym_constinit] = ACTIONS(2503), + [anon_sym_consteval] = ACTIONS(2503), + [anon_sym_signed] = ACTIONS(2503), + [anon_sym_unsigned] = ACTIONS(2503), + [anon_sym_long] = ACTIONS(2503), + [anon_sym_short] = ACTIONS(2503), + [sym_primitive_type] = ACTIONS(2503), + [anon_sym_enum] = ACTIONS(2503), + [anon_sym_class] = ACTIONS(2503), + [anon_sym_struct] = ACTIONS(2503), + [anon_sym_union] = ACTIONS(2503), + [anon_sym_if] = ACTIONS(2503), + [anon_sym_else] = ACTIONS(2503), + [anon_sym_switch] = ACTIONS(2503), + [anon_sym_case] = ACTIONS(2503), + [anon_sym_default] = ACTIONS(2503), + [anon_sym_while] = ACTIONS(2503), + [anon_sym_do] = ACTIONS(2503), + [anon_sym_for] = ACTIONS(2503), + [anon_sym_return] = ACTIONS(2503), + [anon_sym_break] = ACTIONS(2503), + [anon_sym_continue] = ACTIONS(2503), + [anon_sym_goto] = ACTIONS(2503), + [anon_sym_not] = ACTIONS(2503), + [anon_sym_compl] = ACTIONS(2503), + [anon_sym_DASH_DASH] = ACTIONS(2505), + [anon_sym_PLUS_PLUS] = ACTIONS(2505), + [anon_sym_sizeof] = ACTIONS(2503), + [sym_number_literal] = ACTIONS(2505), + [anon_sym_L_SQUOTE] = ACTIONS(2505), + [anon_sym_u_SQUOTE] = ACTIONS(2505), + [anon_sym_U_SQUOTE] = ACTIONS(2505), + [anon_sym_u8_SQUOTE] = ACTIONS(2505), + [anon_sym_SQUOTE] = ACTIONS(2505), + [anon_sym_L_DQUOTE] = ACTIONS(2505), + [anon_sym_u_DQUOTE] = ACTIONS(2505), + [anon_sym_U_DQUOTE] = ACTIONS(2505), + [anon_sym_u8_DQUOTE] = ACTIONS(2505), + [anon_sym_DQUOTE] = ACTIONS(2505), + [sym_true] = ACTIONS(2503), + [sym_false] = ACTIONS(2503), + [sym_null] = ACTIONS(2503), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2503), + [anon_sym_decltype] = ACTIONS(2503), + [anon_sym_virtual] = ACTIONS(2503), + [anon_sym_explicit] = ACTIONS(2503), + [anon_sym_typename] = ACTIONS(2503), + [anon_sym_template] = ACTIONS(2503), + [anon_sym_operator] = ACTIONS(2503), + [anon_sym_try] = ACTIONS(2503), + [anon_sym_delete] = ACTIONS(2503), + [anon_sym_throw] = ACTIONS(2503), + [anon_sym_namespace] = ACTIONS(2503), + [anon_sym_using] = ACTIONS(2503), + [anon_sym_static_assert] = ACTIONS(2503), + [anon_sym_concept] = ACTIONS(2503), + [anon_sym_co_return] = ACTIONS(2503), + [anon_sym_co_yield] = ACTIONS(2503), + [anon_sym_co_await] = ACTIONS(2503), + [anon_sym_new] = ACTIONS(2503), + [anon_sym_requires] = ACTIONS(2503), + [sym_this] = ACTIONS(2503), + [sym_nullptr] = ACTIONS(2503), + [sym_raw_string_literal] = ACTIONS(2505), }, - [1345] = { - [sym__expression] = STATE(3932), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_initializer_list] = STATE(6400), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1465), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [876] = { + [sym_identifier] = ACTIONS(2509), + [aux_sym_preproc_include_token1] = ACTIONS(2509), + [aux_sym_preproc_def_token1] = ACTIONS(2509), + [aux_sym_preproc_if_token1] = ACTIONS(2509), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2509), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2509), + [sym_preproc_directive] = ACTIONS(2509), + [anon_sym_LPAREN2] = ACTIONS(2511), + [anon_sym_BANG] = ACTIONS(2511), + [anon_sym_TILDE] = ACTIONS(2511), + [anon_sym_DASH] = ACTIONS(2509), + [anon_sym_PLUS] = ACTIONS(2509), + [anon_sym_STAR] = ACTIONS(2511), + [anon_sym_AMP_AMP] = ACTIONS(2511), + [anon_sym_AMP] = ACTIONS(2509), + [anon_sym_SEMI] = ACTIONS(2511), + [anon_sym_typedef] = ACTIONS(2509), + [anon_sym_extern] = ACTIONS(2509), + [anon_sym___attribute__] = ACTIONS(2509), + [anon_sym_COLON_COLON] = ACTIONS(2511), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2511), + [anon_sym___declspec] = ACTIONS(2509), + [anon_sym___based] = ACTIONS(2509), + [anon_sym___cdecl] = ACTIONS(2509), + [anon_sym___clrcall] = ACTIONS(2509), + [anon_sym___stdcall] = ACTIONS(2509), + [anon_sym___fastcall] = ACTIONS(2509), + [anon_sym___thiscall] = ACTIONS(2509), + [anon_sym___vectorcall] = ACTIONS(2509), + [anon_sym_LBRACE] = ACTIONS(2511), + [anon_sym_RBRACE] = ACTIONS(2511), + [anon_sym_LBRACK] = ACTIONS(2509), + [anon_sym_static] = ACTIONS(2509), + [anon_sym_register] = ACTIONS(2509), + [anon_sym_inline] = ACTIONS(2509), + [anon_sym_thread_local] = ACTIONS(2509), + [anon_sym_const] = ACTIONS(2509), + [anon_sym_volatile] = ACTIONS(2509), + [anon_sym_restrict] = ACTIONS(2509), + [anon_sym__Atomic] = ACTIONS(2509), + [anon_sym_mutable] = ACTIONS(2509), + [anon_sym_constexpr] = ACTIONS(2509), + [anon_sym_constinit] = ACTIONS(2509), + [anon_sym_consteval] = ACTIONS(2509), + [anon_sym_signed] = ACTIONS(2509), + [anon_sym_unsigned] = ACTIONS(2509), + [anon_sym_long] = ACTIONS(2509), + [anon_sym_short] = ACTIONS(2509), + [sym_primitive_type] = ACTIONS(2509), + [anon_sym_enum] = ACTIONS(2509), + [anon_sym_class] = ACTIONS(2509), + [anon_sym_struct] = ACTIONS(2509), + [anon_sym_union] = ACTIONS(2509), + [anon_sym_if] = ACTIONS(2509), + [anon_sym_else] = ACTIONS(2509), + [anon_sym_switch] = ACTIONS(2509), + [anon_sym_case] = ACTIONS(2509), + [anon_sym_default] = ACTIONS(2509), + [anon_sym_while] = ACTIONS(2509), + [anon_sym_do] = ACTIONS(2509), + [anon_sym_for] = ACTIONS(2509), + [anon_sym_return] = ACTIONS(2509), + [anon_sym_break] = ACTIONS(2509), + [anon_sym_continue] = ACTIONS(2509), + [anon_sym_goto] = ACTIONS(2509), + [anon_sym_not] = ACTIONS(2509), + [anon_sym_compl] = ACTIONS(2509), + [anon_sym_DASH_DASH] = ACTIONS(2511), + [anon_sym_PLUS_PLUS] = ACTIONS(2511), + [anon_sym_sizeof] = ACTIONS(2509), + [sym_number_literal] = ACTIONS(2511), + [anon_sym_L_SQUOTE] = ACTIONS(2511), + [anon_sym_u_SQUOTE] = ACTIONS(2511), + [anon_sym_U_SQUOTE] = ACTIONS(2511), + [anon_sym_u8_SQUOTE] = ACTIONS(2511), + [anon_sym_SQUOTE] = ACTIONS(2511), + [anon_sym_L_DQUOTE] = ACTIONS(2511), + [anon_sym_u_DQUOTE] = ACTIONS(2511), + [anon_sym_U_DQUOTE] = ACTIONS(2511), + [anon_sym_u8_DQUOTE] = ACTIONS(2511), + [anon_sym_DQUOTE] = ACTIONS(2511), + [sym_true] = ACTIONS(2509), + [sym_false] = ACTIONS(2509), + [sym_null] = ACTIONS(2509), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2509), + [anon_sym_decltype] = ACTIONS(2509), + [anon_sym_virtual] = ACTIONS(2509), + [anon_sym_explicit] = ACTIONS(2509), + [anon_sym_typename] = ACTIONS(2509), + [anon_sym_template] = ACTIONS(2509), + [anon_sym_operator] = ACTIONS(2509), + [anon_sym_try] = ACTIONS(2509), + [anon_sym_delete] = ACTIONS(2509), + [anon_sym_throw] = ACTIONS(2509), + [anon_sym_namespace] = ACTIONS(2509), + [anon_sym_using] = ACTIONS(2509), + [anon_sym_static_assert] = ACTIONS(2509), + [anon_sym_concept] = ACTIONS(2509), + [anon_sym_co_return] = ACTIONS(2509), + [anon_sym_co_yield] = ACTIONS(2509), + [anon_sym_co_await] = ACTIONS(2509), + [anon_sym_new] = ACTIONS(2509), + [anon_sym_requires] = ACTIONS(2509), + [sym_this] = ACTIONS(2509), + [sym_nullptr] = ACTIONS(2509), + [sym_raw_string_literal] = ACTIONS(2511), }, - [1346] = { - [sym__expression] = STATE(3631), - [sym_comma_expression] = STATE(6548), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_RPAREN] = ACTIONS(3460), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [877] = { + [sym_identifier] = ACTIONS(2513), + [aux_sym_preproc_include_token1] = ACTIONS(2513), + [aux_sym_preproc_def_token1] = ACTIONS(2513), + [aux_sym_preproc_if_token1] = ACTIONS(2513), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2513), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2513), + [sym_preproc_directive] = ACTIONS(2513), + [anon_sym_LPAREN2] = ACTIONS(2515), + [anon_sym_BANG] = ACTIONS(2515), + [anon_sym_TILDE] = ACTIONS(2515), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_STAR] = ACTIONS(2515), + [anon_sym_AMP_AMP] = ACTIONS(2515), + [anon_sym_AMP] = ACTIONS(2513), + [anon_sym_SEMI] = ACTIONS(2515), + [anon_sym_typedef] = ACTIONS(2513), + [anon_sym_extern] = ACTIONS(2513), + [anon_sym___attribute__] = ACTIONS(2513), + [anon_sym_COLON_COLON] = ACTIONS(2515), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2515), + [anon_sym___declspec] = ACTIONS(2513), + [anon_sym___based] = ACTIONS(2513), + [anon_sym___cdecl] = ACTIONS(2513), + [anon_sym___clrcall] = ACTIONS(2513), + [anon_sym___stdcall] = ACTIONS(2513), + [anon_sym___fastcall] = ACTIONS(2513), + [anon_sym___thiscall] = ACTIONS(2513), + [anon_sym___vectorcall] = ACTIONS(2513), + [anon_sym_LBRACE] = ACTIONS(2515), + [anon_sym_RBRACE] = ACTIONS(2515), + [anon_sym_LBRACK] = ACTIONS(2513), + [anon_sym_static] = ACTIONS(2513), + [anon_sym_register] = ACTIONS(2513), + [anon_sym_inline] = ACTIONS(2513), + [anon_sym_thread_local] = ACTIONS(2513), + [anon_sym_const] = ACTIONS(2513), + [anon_sym_volatile] = ACTIONS(2513), + [anon_sym_restrict] = ACTIONS(2513), + [anon_sym__Atomic] = ACTIONS(2513), + [anon_sym_mutable] = ACTIONS(2513), + [anon_sym_constexpr] = ACTIONS(2513), + [anon_sym_constinit] = ACTIONS(2513), + [anon_sym_consteval] = ACTIONS(2513), + [anon_sym_signed] = ACTIONS(2513), + [anon_sym_unsigned] = ACTIONS(2513), + [anon_sym_long] = ACTIONS(2513), + [anon_sym_short] = ACTIONS(2513), + [sym_primitive_type] = ACTIONS(2513), + [anon_sym_enum] = ACTIONS(2513), + [anon_sym_class] = ACTIONS(2513), + [anon_sym_struct] = ACTIONS(2513), + [anon_sym_union] = ACTIONS(2513), + [anon_sym_if] = ACTIONS(2513), + [anon_sym_else] = ACTIONS(2513), + [anon_sym_switch] = ACTIONS(2513), + [anon_sym_case] = ACTIONS(2513), + [anon_sym_default] = ACTIONS(2513), + [anon_sym_while] = ACTIONS(2513), + [anon_sym_do] = ACTIONS(2513), + [anon_sym_for] = ACTIONS(2513), + [anon_sym_return] = ACTIONS(2513), + [anon_sym_break] = ACTIONS(2513), + [anon_sym_continue] = ACTIONS(2513), + [anon_sym_goto] = ACTIONS(2513), + [anon_sym_not] = ACTIONS(2513), + [anon_sym_compl] = ACTIONS(2513), + [anon_sym_DASH_DASH] = ACTIONS(2515), + [anon_sym_PLUS_PLUS] = ACTIONS(2515), + [anon_sym_sizeof] = ACTIONS(2513), + [sym_number_literal] = ACTIONS(2515), + [anon_sym_L_SQUOTE] = ACTIONS(2515), + [anon_sym_u_SQUOTE] = ACTIONS(2515), + [anon_sym_U_SQUOTE] = ACTIONS(2515), + [anon_sym_u8_SQUOTE] = ACTIONS(2515), + [anon_sym_SQUOTE] = ACTIONS(2515), + [anon_sym_L_DQUOTE] = ACTIONS(2515), + [anon_sym_u_DQUOTE] = ACTIONS(2515), + [anon_sym_U_DQUOTE] = ACTIONS(2515), + [anon_sym_u8_DQUOTE] = ACTIONS(2515), + [anon_sym_DQUOTE] = ACTIONS(2515), + [sym_true] = ACTIONS(2513), + [sym_false] = ACTIONS(2513), + [sym_null] = ACTIONS(2513), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2513), + [anon_sym_decltype] = ACTIONS(2513), + [anon_sym_virtual] = ACTIONS(2513), + [anon_sym_explicit] = ACTIONS(2513), + [anon_sym_typename] = ACTIONS(2513), + [anon_sym_template] = ACTIONS(2513), + [anon_sym_operator] = ACTIONS(2513), + [anon_sym_try] = ACTIONS(2513), + [anon_sym_delete] = ACTIONS(2513), + [anon_sym_throw] = ACTIONS(2513), + [anon_sym_namespace] = ACTIONS(2513), + [anon_sym_using] = ACTIONS(2513), + [anon_sym_static_assert] = ACTIONS(2513), + [anon_sym_concept] = ACTIONS(2513), + [anon_sym_co_return] = ACTIONS(2513), + [anon_sym_co_yield] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2513), + [anon_sym_new] = ACTIONS(2513), + [anon_sym_requires] = ACTIONS(2513), + [sym_this] = ACTIONS(2513), + [sym_nullptr] = ACTIONS(2513), + [sym_raw_string_literal] = ACTIONS(2515), }, - [1347] = { - [sym__expression] = STATE(3958), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_initializer_list] = STATE(6553), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1465), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [878] = { + [ts_builtin_sym_end] = ACTIONS(2549), + [sym_identifier] = ACTIONS(2547), + [aux_sym_preproc_include_token1] = ACTIONS(2547), + [aux_sym_preproc_def_token1] = ACTIONS(2547), + [aux_sym_preproc_if_token1] = ACTIONS(2547), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2547), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2547), + [sym_preproc_directive] = ACTIONS(2547), + [anon_sym_LPAREN2] = ACTIONS(2549), + [anon_sym_BANG] = ACTIONS(2549), + [anon_sym_TILDE] = ACTIONS(2549), + [anon_sym_DASH] = ACTIONS(2547), + [anon_sym_PLUS] = ACTIONS(2547), + [anon_sym_STAR] = ACTIONS(2549), + [anon_sym_AMP_AMP] = ACTIONS(2549), + [anon_sym_AMP] = ACTIONS(2547), + [anon_sym_SEMI] = ACTIONS(2549), + [anon_sym_typedef] = ACTIONS(2547), + [anon_sym_extern] = ACTIONS(2547), + [anon_sym___attribute__] = ACTIONS(2547), + [anon_sym_COLON_COLON] = ACTIONS(2549), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2549), + [anon_sym___declspec] = ACTIONS(2547), + [anon_sym___based] = ACTIONS(2547), + [anon_sym___cdecl] = ACTIONS(2547), + [anon_sym___clrcall] = ACTIONS(2547), + [anon_sym___stdcall] = ACTIONS(2547), + [anon_sym___fastcall] = ACTIONS(2547), + [anon_sym___thiscall] = ACTIONS(2547), + [anon_sym___vectorcall] = ACTIONS(2547), + [anon_sym_LBRACE] = ACTIONS(2549), + [anon_sym_LBRACK] = ACTIONS(2547), + [anon_sym_static] = ACTIONS(2547), + [anon_sym_register] = ACTIONS(2547), + [anon_sym_inline] = ACTIONS(2547), + [anon_sym_thread_local] = ACTIONS(2547), + [anon_sym_const] = ACTIONS(2547), + [anon_sym_volatile] = ACTIONS(2547), + [anon_sym_restrict] = ACTIONS(2547), + [anon_sym__Atomic] = ACTIONS(2547), + [anon_sym_mutable] = ACTIONS(2547), + [anon_sym_constexpr] = ACTIONS(2547), + [anon_sym_constinit] = ACTIONS(2547), + [anon_sym_consteval] = ACTIONS(2547), + [anon_sym_signed] = ACTIONS(2547), + [anon_sym_unsigned] = ACTIONS(2547), + [anon_sym_long] = ACTIONS(2547), + [anon_sym_short] = ACTIONS(2547), + [sym_primitive_type] = ACTIONS(2547), + [anon_sym_enum] = ACTIONS(2547), + [anon_sym_class] = ACTIONS(2547), + [anon_sym_struct] = ACTIONS(2547), + [anon_sym_union] = ACTIONS(2547), + [anon_sym_if] = ACTIONS(2547), + [anon_sym_else] = ACTIONS(2547), + [anon_sym_switch] = ACTIONS(2547), + [anon_sym_case] = ACTIONS(2547), + [anon_sym_default] = ACTIONS(2547), + [anon_sym_while] = ACTIONS(2547), + [anon_sym_do] = ACTIONS(2547), + [anon_sym_for] = ACTIONS(2547), + [anon_sym_return] = ACTIONS(2547), + [anon_sym_break] = ACTIONS(2547), + [anon_sym_continue] = ACTIONS(2547), + [anon_sym_goto] = ACTIONS(2547), + [anon_sym_not] = ACTIONS(2547), + [anon_sym_compl] = ACTIONS(2547), + [anon_sym_DASH_DASH] = ACTIONS(2549), + [anon_sym_PLUS_PLUS] = ACTIONS(2549), + [anon_sym_sizeof] = ACTIONS(2547), + [sym_number_literal] = ACTIONS(2549), + [anon_sym_L_SQUOTE] = ACTIONS(2549), + [anon_sym_u_SQUOTE] = ACTIONS(2549), + [anon_sym_U_SQUOTE] = ACTIONS(2549), + [anon_sym_u8_SQUOTE] = ACTIONS(2549), + [anon_sym_SQUOTE] = ACTIONS(2549), + [anon_sym_L_DQUOTE] = ACTIONS(2549), + [anon_sym_u_DQUOTE] = ACTIONS(2549), + [anon_sym_U_DQUOTE] = ACTIONS(2549), + [anon_sym_u8_DQUOTE] = ACTIONS(2549), + [anon_sym_DQUOTE] = ACTIONS(2549), + [sym_true] = ACTIONS(2547), + [sym_false] = ACTIONS(2547), + [sym_null] = ACTIONS(2547), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2547), + [anon_sym_decltype] = ACTIONS(2547), + [anon_sym_virtual] = ACTIONS(2547), + [anon_sym_explicit] = ACTIONS(2547), + [anon_sym_typename] = ACTIONS(2547), + [anon_sym_template] = ACTIONS(2547), + [anon_sym_operator] = ACTIONS(2547), + [anon_sym_try] = ACTIONS(2547), + [anon_sym_delete] = ACTIONS(2547), + [anon_sym_throw] = ACTIONS(2547), + [anon_sym_namespace] = ACTIONS(2547), + [anon_sym_using] = ACTIONS(2547), + [anon_sym_static_assert] = ACTIONS(2547), + [anon_sym_concept] = ACTIONS(2547), + [anon_sym_co_return] = ACTIONS(2547), + [anon_sym_co_yield] = ACTIONS(2547), + [anon_sym_co_await] = ACTIONS(2547), + [anon_sym_new] = ACTIONS(2547), + [anon_sym_requires] = ACTIONS(2547), + [sym_this] = ACTIONS(2547), + [sym_nullptr] = ACTIONS(2547), + [sym_raw_string_literal] = ACTIONS(2549), }, - [1348] = { - [sym__expression] = STATE(3939), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_initializer_list] = STATE(6417), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1465), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [879] = { + [sym_identifier] = ACTIONS(2517), + [aux_sym_preproc_include_token1] = ACTIONS(2517), + [aux_sym_preproc_def_token1] = ACTIONS(2517), + [aux_sym_preproc_if_token1] = ACTIONS(2517), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2517), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2517), + [sym_preproc_directive] = ACTIONS(2517), + [anon_sym_LPAREN2] = ACTIONS(2519), + [anon_sym_BANG] = ACTIONS(2519), + [anon_sym_TILDE] = ACTIONS(2519), + [anon_sym_DASH] = ACTIONS(2517), + [anon_sym_PLUS] = ACTIONS(2517), + [anon_sym_STAR] = ACTIONS(2519), + [anon_sym_AMP_AMP] = ACTIONS(2519), + [anon_sym_AMP] = ACTIONS(2517), + [anon_sym_SEMI] = ACTIONS(2519), + [anon_sym_typedef] = ACTIONS(2517), + [anon_sym_extern] = ACTIONS(2517), + [anon_sym___attribute__] = ACTIONS(2517), + [anon_sym_COLON_COLON] = ACTIONS(2519), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2519), + [anon_sym___declspec] = ACTIONS(2517), + [anon_sym___based] = ACTIONS(2517), + [anon_sym___cdecl] = ACTIONS(2517), + [anon_sym___clrcall] = ACTIONS(2517), + [anon_sym___stdcall] = ACTIONS(2517), + [anon_sym___fastcall] = ACTIONS(2517), + [anon_sym___thiscall] = ACTIONS(2517), + [anon_sym___vectorcall] = ACTIONS(2517), + [anon_sym_LBRACE] = ACTIONS(2519), + [anon_sym_RBRACE] = ACTIONS(2519), + [anon_sym_LBRACK] = ACTIONS(2517), + [anon_sym_static] = ACTIONS(2517), + [anon_sym_register] = ACTIONS(2517), + [anon_sym_inline] = ACTIONS(2517), + [anon_sym_thread_local] = ACTIONS(2517), + [anon_sym_const] = ACTIONS(2517), + [anon_sym_volatile] = ACTIONS(2517), + [anon_sym_restrict] = ACTIONS(2517), + [anon_sym__Atomic] = ACTIONS(2517), + [anon_sym_mutable] = ACTIONS(2517), + [anon_sym_constexpr] = ACTIONS(2517), + [anon_sym_constinit] = ACTIONS(2517), + [anon_sym_consteval] = ACTIONS(2517), + [anon_sym_signed] = ACTIONS(2517), + [anon_sym_unsigned] = ACTIONS(2517), + [anon_sym_long] = ACTIONS(2517), + [anon_sym_short] = ACTIONS(2517), + [sym_primitive_type] = ACTIONS(2517), + [anon_sym_enum] = ACTIONS(2517), + [anon_sym_class] = ACTIONS(2517), + [anon_sym_struct] = ACTIONS(2517), + [anon_sym_union] = ACTIONS(2517), + [anon_sym_if] = ACTIONS(2517), + [anon_sym_else] = ACTIONS(2517), + [anon_sym_switch] = ACTIONS(2517), + [anon_sym_case] = ACTIONS(2517), + [anon_sym_default] = ACTIONS(2517), + [anon_sym_while] = ACTIONS(2517), + [anon_sym_do] = ACTIONS(2517), + [anon_sym_for] = ACTIONS(2517), + [anon_sym_return] = ACTIONS(2517), + [anon_sym_break] = ACTIONS(2517), + [anon_sym_continue] = ACTIONS(2517), + [anon_sym_goto] = ACTIONS(2517), + [anon_sym_not] = ACTIONS(2517), + [anon_sym_compl] = ACTIONS(2517), + [anon_sym_DASH_DASH] = ACTIONS(2519), + [anon_sym_PLUS_PLUS] = ACTIONS(2519), + [anon_sym_sizeof] = ACTIONS(2517), + [sym_number_literal] = ACTIONS(2519), + [anon_sym_L_SQUOTE] = ACTIONS(2519), + [anon_sym_u_SQUOTE] = ACTIONS(2519), + [anon_sym_U_SQUOTE] = ACTIONS(2519), + [anon_sym_u8_SQUOTE] = ACTIONS(2519), + [anon_sym_SQUOTE] = ACTIONS(2519), + [anon_sym_L_DQUOTE] = ACTIONS(2519), + [anon_sym_u_DQUOTE] = ACTIONS(2519), + [anon_sym_U_DQUOTE] = ACTIONS(2519), + [anon_sym_u8_DQUOTE] = ACTIONS(2519), + [anon_sym_DQUOTE] = ACTIONS(2519), + [sym_true] = ACTIONS(2517), + [sym_false] = ACTIONS(2517), + [sym_null] = ACTIONS(2517), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2517), + [anon_sym_decltype] = ACTIONS(2517), + [anon_sym_virtual] = ACTIONS(2517), + [anon_sym_explicit] = ACTIONS(2517), + [anon_sym_typename] = ACTIONS(2517), + [anon_sym_template] = ACTIONS(2517), + [anon_sym_operator] = ACTIONS(2517), + [anon_sym_try] = ACTIONS(2517), + [anon_sym_delete] = ACTIONS(2517), + [anon_sym_throw] = ACTIONS(2517), + [anon_sym_namespace] = ACTIONS(2517), + [anon_sym_using] = ACTIONS(2517), + [anon_sym_static_assert] = ACTIONS(2517), + [anon_sym_concept] = ACTIONS(2517), + [anon_sym_co_return] = ACTIONS(2517), + [anon_sym_co_yield] = ACTIONS(2517), + [anon_sym_co_await] = ACTIONS(2517), + [anon_sym_new] = ACTIONS(2517), + [anon_sym_requires] = ACTIONS(2517), + [sym_this] = ACTIONS(2517), + [sym_nullptr] = ACTIONS(2517), + [sym_raw_string_literal] = ACTIONS(2519), }, - [1349] = { - [sym__expression] = STATE(3802), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_initializer_list] = STATE(6889), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1465), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [880] = { + [sym_identifier] = ACTIONS(2529), + [aux_sym_preproc_include_token1] = ACTIONS(2529), + [aux_sym_preproc_def_token1] = ACTIONS(2529), + [aux_sym_preproc_if_token1] = ACTIONS(2529), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2529), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2529), + [sym_preproc_directive] = ACTIONS(2529), + [anon_sym_LPAREN2] = ACTIONS(2531), + [anon_sym_BANG] = ACTIONS(2531), + [anon_sym_TILDE] = ACTIONS(2531), + [anon_sym_DASH] = ACTIONS(2529), + [anon_sym_PLUS] = ACTIONS(2529), + [anon_sym_STAR] = ACTIONS(2531), + [anon_sym_AMP_AMP] = ACTIONS(2531), + [anon_sym_AMP] = ACTIONS(2529), + [anon_sym_SEMI] = ACTIONS(2531), + [anon_sym_typedef] = ACTIONS(2529), + [anon_sym_extern] = ACTIONS(2529), + [anon_sym___attribute__] = ACTIONS(2529), + [anon_sym_COLON_COLON] = ACTIONS(2531), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2531), + [anon_sym___declspec] = ACTIONS(2529), + [anon_sym___based] = ACTIONS(2529), + [anon_sym___cdecl] = ACTIONS(2529), + [anon_sym___clrcall] = ACTIONS(2529), + [anon_sym___stdcall] = ACTIONS(2529), + [anon_sym___fastcall] = ACTIONS(2529), + [anon_sym___thiscall] = ACTIONS(2529), + [anon_sym___vectorcall] = ACTIONS(2529), + [anon_sym_LBRACE] = ACTIONS(2531), + [anon_sym_RBRACE] = ACTIONS(2531), + [anon_sym_LBRACK] = ACTIONS(2529), + [anon_sym_static] = ACTIONS(2529), + [anon_sym_register] = ACTIONS(2529), + [anon_sym_inline] = ACTIONS(2529), + [anon_sym_thread_local] = ACTIONS(2529), + [anon_sym_const] = ACTIONS(2529), + [anon_sym_volatile] = ACTIONS(2529), + [anon_sym_restrict] = ACTIONS(2529), + [anon_sym__Atomic] = ACTIONS(2529), + [anon_sym_mutable] = ACTIONS(2529), + [anon_sym_constexpr] = ACTIONS(2529), + [anon_sym_constinit] = ACTIONS(2529), + [anon_sym_consteval] = ACTIONS(2529), + [anon_sym_signed] = ACTIONS(2529), + [anon_sym_unsigned] = ACTIONS(2529), + [anon_sym_long] = ACTIONS(2529), + [anon_sym_short] = ACTIONS(2529), + [sym_primitive_type] = ACTIONS(2529), + [anon_sym_enum] = ACTIONS(2529), + [anon_sym_class] = ACTIONS(2529), + [anon_sym_struct] = ACTIONS(2529), + [anon_sym_union] = ACTIONS(2529), + [anon_sym_if] = ACTIONS(2529), + [anon_sym_else] = ACTIONS(2529), + [anon_sym_switch] = ACTIONS(2529), + [anon_sym_case] = ACTIONS(2529), + [anon_sym_default] = ACTIONS(2529), + [anon_sym_while] = ACTIONS(2529), + [anon_sym_do] = ACTIONS(2529), + [anon_sym_for] = ACTIONS(2529), + [anon_sym_return] = ACTIONS(2529), + [anon_sym_break] = ACTIONS(2529), + [anon_sym_continue] = ACTIONS(2529), + [anon_sym_goto] = ACTIONS(2529), + [anon_sym_not] = ACTIONS(2529), + [anon_sym_compl] = ACTIONS(2529), + [anon_sym_DASH_DASH] = ACTIONS(2531), + [anon_sym_PLUS_PLUS] = ACTIONS(2531), + [anon_sym_sizeof] = ACTIONS(2529), + [sym_number_literal] = ACTIONS(2531), + [anon_sym_L_SQUOTE] = ACTIONS(2531), + [anon_sym_u_SQUOTE] = ACTIONS(2531), + [anon_sym_U_SQUOTE] = ACTIONS(2531), + [anon_sym_u8_SQUOTE] = ACTIONS(2531), + [anon_sym_SQUOTE] = ACTIONS(2531), + [anon_sym_L_DQUOTE] = ACTIONS(2531), + [anon_sym_u_DQUOTE] = ACTIONS(2531), + [anon_sym_U_DQUOTE] = ACTIONS(2531), + [anon_sym_u8_DQUOTE] = ACTIONS(2531), + [anon_sym_DQUOTE] = ACTIONS(2531), + [sym_true] = ACTIONS(2529), + [sym_false] = ACTIONS(2529), + [sym_null] = ACTIONS(2529), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2529), + [anon_sym_decltype] = ACTIONS(2529), + [anon_sym_virtual] = ACTIONS(2529), + [anon_sym_explicit] = ACTIONS(2529), + [anon_sym_typename] = ACTIONS(2529), + [anon_sym_template] = ACTIONS(2529), + [anon_sym_operator] = ACTIONS(2529), + [anon_sym_try] = ACTIONS(2529), + [anon_sym_delete] = ACTIONS(2529), + [anon_sym_throw] = ACTIONS(2529), + [anon_sym_namespace] = ACTIONS(2529), + [anon_sym_using] = ACTIONS(2529), + [anon_sym_static_assert] = ACTIONS(2529), + [anon_sym_concept] = ACTIONS(2529), + [anon_sym_co_return] = ACTIONS(2529), + [anon_sym_co_yield] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2529), + [anon_sym_new] = ACTIONS(2529), + [anon_sym_requires] = ACTIONS(2529), + [sym_this] = ACTIONS(2529), + [sym_nullptr] = ACTIONS(2529), + [sym_raw_string_literal] = ACTIONS(2531), }, - [1350] = { - [sym__expression] = STATE(3628), - [sym_comma_expression] = STATE(6549), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_RPAREN] = ACTIONS(3462), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [881] = { + [sym_identifier] = ACTIONS(2533), + [aux_sym_preproc_include_token1] = ACTIONS(2533), + [aux_sym_preproc_def_token1] = ACTIONS(2533), + [aux_sym_preproc_if_token1] = ACTIONS(2533), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2533), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2533), + [sym_preproc_directive] = ACTIONS(2533), + [anon_sym_LPAREN2] = ACTIONS(2535), + [anon_sym_BANG] = ACTIONS(2535), + [anon_sym_TILDE] = ACTIONS(2535), + [anon_sym_DASH] = ACTIONS(2533), + [anon_sym_PLUS] = ACTIONS(2533), + [anon_sym_STAR] = ACTIONS(2535), + [anon_sym_AMP_AMP] = ACTIONS(2535), + [anon_sym_AMP] = ACTIONS(2533), + [anon_sym_SEMI] = ACTIONS(2535), + [anon_sym_typedef] = ACTIONS(2533), + [anon_sym_extern] = ACTIONS(2533), + [anon_sym___attribute__] = ACTIONS(2533), + [anon_sym_COLON_COLON] = ACTIONS(2535), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2535), + [anon_sym___declspec] = ACTIONS(2533), + [anon_sym___based] = ACTIONS(2533), + [anon_sym___cdecl] = ACTIONS(2533), + [anon_sym___clrcall] = ACTIONS(2533), + [anon_sym___stdcall] = ACTIONS(2533), + [anon_sym___fastcall] = ACTIONS(2533), + [anon_sym___thiscall] = ACTIONS(2533), + [anon_sym___vectorcall] = ACTIONS(2533), + [anon_sym_LBRACE] = ACTIONS(2535), + [anon_sym_RBRACE] = ACTIONS(2535), + [anon_sym_LBRACK] = ACTIONS(2533), + [anon_sym_static] = ACTIONS(2533), + [anon_sym_register] = ACTIONS(2533), + [anon_sym_inline] = ACTIONS(2533), + [anon_sym_thread_local] = ACTIONS(2533), + [anon_sym_const] = ACTIONS(2533), + [anon_sym_volatile] = ACTIONS(2533), + [anon_sym_restrict] = ACTIONS(2533), + [anon_sym__Atomic] = ACTIONS(2533), + [anon_sym_mutable] = ACTIONS(2533), + [anon_sym_constexpr] = ACTIONS(2533), + [anon_sym_constinit] = ACTIONS(2533), + [anon_sym_consteval] = ACTIONS(2533), + [anon_sym_signed] = ACTIONS(2533), + [anon_sym_unsigned] = ACTIONS(2533), + [anon_sym_long] = ACTIONS(2533), + [anon_sym_short] = ACTIONS(2533), + [sym_primitive_type] = ACTIONS(2533), + [anon_sym_enum] = ACTIONS(2533), + [anon_sym_class] = ACTIONS(2533), + [anon_sym_struct] = ACTIONS(2533), + [anon_sym_union] = ACTIONS(2533), + [anon_sym_if] = ACTIONS(2533), + [anon_sym_else] = ACTIONS(2533), + [anon_sym_switch] = ACTIONS(2533), + [anon_sym_case] = ACTIONS(2533), + [anon_sym_default] = ACTIONS(2533), + [anon_sym_while] = ACTIONS(2533), + [anon_sym_do] = ACTIONS(2533), + [anon_sym_for] = ACTIONS(2533), + [anon_sym_return] = ACTIONS(2533), + [anon_sym_break] = ACTIONS(2533), + [anon_sym_continue] = ACTIONS(2533), + [anon_sym_goto] = ACTIONS(2533), + [anon_sym_not] = ACTIONS(2533), + [anon_sym_compl] = ACTIONS(2533), + [anon_sym_DASH_DASH] = ACTIONS(2535), + [anon_sym_PLUS_PLUS] = ACTIONS(2535), + [anon_sym_sizeof] = ACTIONS(2533), + [sym_number_literal] = ACTIONS(2535), + [anon_sym_L_SQUOTE] = ACTIONS(2535), + [anon_sym_u_SQUOTE] = ACTIONS(2535), + [anon_sym_U_SQUOTE] = ACTIONS(2535), + [anon_sym_u8_SQUOTE] = ACTIONS(2535), + [anon_sym_SQUOTE] = ACTIONS(2535), + [anon_sym_L_DQUOTE] = ACTIONS(2535), + [anon_sym_u_DQUOTE] = ACTIONS(2535), + [anon_sym_U_DQUOTE] = ACTIONS(2535), + [anon_sym_u8_DQUOTE] = ACTIONS(2535), + [anon_sym_DQUOTE] = ACTIONS(2535), + [sym_true] = ACTIONS(2533), + [sym_false] = ACTIONS(2533), + [sym_null] = ACTIONS(2533), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2533), + [anon_sym_decltype] = ACTIONS(2533), + [anon_sym_virtual] = ACTIONS(2533), + [anon_sym_explicit] = ACTIONS(2533), + [anon_sym_typename] = ACTIONS(2533), + [anon_sym_template] = ACTIONS(2533), + [anon_sym_operator] = ACTIONS(2533), + [anon_sym_try] = ACTIONS(2533), + [anon_sym_delete] = ACTIONS(2533), + [anon_sym_throw] = ACTIONS(2533), + [anon_sym_namespace] = ACTIONS(2533), + [anon_sym_using] = ACTIONS(2533), + [anon_sym_static_assert] = ACTIONS(2533), + [anon_sym_concept] = ACTIONS(2533), + [anon_sym_co_return] = ACTIONS(2533), + [anon_sym_co_yield] = ACTIONS(2533), + [anon_sym_co_await] = ACTIONS(2533), + [anon_sym_new] = ACTIONS(2533), + [anon_sym_requires] = ACTIONS(2533), + [sym_this] = ACTIONS(2533), + [sym_nullptr] = ACTIONS(2533), + [sym_raw_string_literal] = ACTIONS(2535), }, - [1351] = { - [sym__expression] = STATE(3918), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_initializer_list] = STATE(6488), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1465), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [882] = { + [sym_identifier] = ACTIONS(2537), + [aux_sym_preproc_include_token1] = ACTIONS(2537), + [aux_sym_preproc_def_token1] = ACTIONS(2537), + [aux_sym_preproc_if_token1] = ACTIONS(2537), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2537), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2537), + [sym_preproc_directive] = ACTIONS(2537), + [anon_sym_LPAREN2] = ACTIONS(2539), + [anon_sym_BANG] = ACTIONS(2539), + [anon_sym_TILDE] = ACTIONS(2539), + [anon_sym_DASH] = ACTIONS(2537), + [anon_sym_PLUS] = ACTIONS(2537), + [anon_sym_STAR] = ACTIONS(2539), + [anon_sym_AMP_AMP] = ACTIONS(2539), + [anon_sym_AMP] = ACTIONS(2537), + [anon_sym_SEMI] = ACTIONS(2539), + [anon_sym_typedef] = ACTIONS(2537), + [anon_sym_extern] = ACTIONS(2537), + [anon_sym___attribute__] = ACTIONS(2537), + [anon_sym_COLON_COLON] = ACTIONS(2539), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2539), + [anon_sym___declspec] = ACTIONS(2537), + [anon_sym___based] = ACTIONS(2537), + [anon_sym___cdecl] = ACTIONS(2537), + [anon_sym___clrcall] = ACTIONS(2537), + [anon_sym___stdcall] = ACTIONS(2537), + [anon_sym___fastcall] = ACTIONS(2537), + [anon_sym___thiscall] = ACTIONS(2537), + [anon_sym___vectorcall] = ACTIONS(2537), + [anon_sym_LBRACE] = ACTIONS(2539), + [anon_sym_RBRACE] = ACTIONS(2539), + [anon_sym_LBRACK] = ACTIONS(2537), + [anon_sym_static] = ACTIONS(2537), + [anon_sym_register] = ACTIONS(2537), + [anon_sym_inline] = ACTIONS(2537), + [anon_sym_thread_local] = ACTIONS(2537), + [anon_sym_const] = ACTIONS(2537), + [anon_sym_volatile] = ACTIONS(2537), + [anon_sym_restrict] = ACTIONS(2537), + [anon_sym__Atomic] = ACTIONS(2537), + [anon_sym_mutable] = ACTIONS(2537), + [anon_sym_constexpr] = ACTIONS(2537), + [anon_sym_constinit] = ACTIONS(2537), + [anon_sym_consteval] = ACTIONS(2537), + [anon_sym_signed] = ACTIONS(2537), + [anon_sym_unsigned] = ACTIONS(2537), + [anon_sym_long] = ACTIONS(2537), + [anon_sym_short] = ACTIONS(2537), + [sym_primitive_type] = ACTIONS(2537), + [anon_sym_enum] = ACTIONS(2537), + [anon_sym_class] = ACTIONS(2537), + [anon_sym_struct] = ACTIONS(2537), + [anon_sym_union] = ACTIONS(2537), + [anon_sym_if] = ACTIONS(2537), + [anon_sym_else] = ACTIONS(2537), + [anon_sym_switch] = ACTIONS(2537), + [anon_sym_case] = ACTIONS(2537), + [anon_sym_default] = ACTIONS(2537), + [anon_sym_while] = ACTIONS(2537), + [anon_sym_do] = ACTIONS(2537), + [anon_sym_for] = ACTIONS(2537), + [anon_sym_return] = ACTIONS(2537), + [anon_sym_break] = ACTIONS(2537), + [anon_sym_continue] = ACTIONS(2537), + [anon_sym_goto] = ACTIONS(2537), + [anon_sym_not] = ACTIONS(2537), + [anon_sym_compl] = ACTIONS(2537), + [anon_sym_DASH_DASH] = ACTIONS(2539), + [anon_sym_PLUS_PLUS] = ACTIONS(2539), + [anon_sym_sizeof] = ACTIONS(2537), + [sym_number_literal] = ACTIONS(2539), + [anon_sym_L_SQUOTE] = ACTIONS(2539), + [anon_sym_u_SQUOTE] = ACTIONS(2539), + [anon_sym_U_SQUOTE] = ACTIONS(2539), + [anon_sym_u8_SQUOTE] = ACTIONS(2539), + [anon_sym_SQUOTE] = ACTIONS(2539), + [anon_sym_L_DQUOTE] = ACTIONS(2539), + [anon_sym_u_DQUOTE] = ACTIONS(2539), + [anon_sym_U_DQUOTE] = ACTIONS(2539), + [anon_sym_u8_DQUOTE] = ACTIONS(2539), + [anon_sym_DQUOTE] = ACTIONS(2539), + [sym_true] = ACTIONS(2537), + [sym_false] = ACTIONS(2537), + [sym_null] = ACTIONS(2537), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2537), + [anon_sym_decltype] = ACTIONS(2537), + [anon_sym_virtual] = ACTIONS(2537), + [anon_sym_explicit] = ACTIONS(2537), + [anon_sym_typename] = ACTIONS(2537), + [anon_sym_template] = ACTIONS(2537), + [anon_sym_operator] = ACTIONS(2537), + [anon_sym_try] = ACTIONS(2537), + [anon_sym_delete] = ACTIONS(2537), + [anon_sym_throw] = ACTIONS(2537), + [anon_sym_namespace] = ACTIONS(2537), + [anon_sym_using] = ACTIONS(2537), + [anon_sym_static_assert] = ACTIONS(2537), + [anon_sym_concept] = ACTIONS(2537), + [anon_sym_co_return] = ACTIONS(2537), + [anon_sym_co_yield] = ACTIONS(2537), + [anon_sym_co_await] = ACTIONS(2537), + [anon_sym_new] = ACTIONS(2537), + [anon_sym_requires] = ACTIONS(2537), + [sym_this] = ACTIONS(2537), + [sym_nullptr] = ACTIONS(2537), + [sym_raw_string_literal] = ACTIONS(2539), }, - [1352] = { - [sym__expression] = STATE(3581), - [sym_comma_expression] = STATE(6640), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_RPAREN] = ACTIONS(3464), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [883] = { + [ts_builtin_sym_end] = ACTIONS(2597), + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1353] = { - [sym__expression] = STATE(3809), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_initializer_list] = STATE(6882), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1465), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [884] = { + [ts_builtin_sym_end] = ACTIONS(2597), + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1354] = { - [sym__expression] = STATE(3610), - [sym_comma_expression] = STATE(6555), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_RPAREN] = ACTIONS(3466), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [885] = { + [sym_identifier] = ACTIONS(2489), + [aux_sym_preproc_include_token1] = ACTIONS(2489), + [aux_sym_preproc_def_token1] = ACTIONS(2489), + [aux_sym_preproc_if_token1] = ACTIONS(2489), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2489), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2489), + [sym_preproc_directive] = ACTIONS(2489), + [anon_sym_LPAREN2] = ACTIONS(2491), + [anon_sym_BANG] = ACTIONS(2491), + [anon_sym_TILDE] = ACTIONS(2491), + [anon_sym_DASH] = ACTIONS(2489), + [anon_sym_PLUS] = ACTIONS(2489), + [anon_sym_STAR] = ACTIONS(2491), + [anon_sym_AMP_AMP] = ACTIONS(2491), + [anon_sym_AMP] = ACTIONS(2489), + [anon_sym_SEMI] = ACTIONS(2491), + [anon_sym_typedef] = ACTIONS(2489), + [anon_sym_extern] = ACTIONS(2489), + [anon_sym___attribute__] = ACTIONS(2489), + [anon_sym_COLON_COLON] = ACTIONS(2491), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2491), + [anon_sym___declspec] = ACTIONS(2489), + [anon_sym___based] = ACTIONS(2489), + [anon_sym___cdecl] = ACTIONS(2489), + [anon_sym___clrcall] = ACTIONS(2489), + [anon_sym___stdcall] = ACTIONS(2489), + [anon_sym___fastcall] = ACTIONS(2489), + [anon_sym___thiscall] = ACTIONS(2489), + [anon_sym___vectorcall] = ACTIONS(2489), + [anon_sym_LBRACE] = ACTIONS(2491), + [anon_sym_RBRACE] = ACTIONS(2491), + [anon_sym_LBRACK] = ACTIONS(2489), + [anon_sym_static] = ACTIONS(2489), + [anon_sym_register] = ACTIONS(2489), + [anon_sym_inline] = ACTIONS(2489), + [anon_sym_thread_local] = ACTIONS(2489), + [anon_sym_const] = ACTIONS(2489), + [anon_sym_volatile] = ACTIONS(2489), + [anon_sym_restrict] = ACTIONS(2489), + [anon_sym__Atomic] = ACTIONS(2489), + [anon_sym_mutable] = ACTIONS(2489), + [anon_sym_constexpr] = ACTIONS(2489), + [anon_sym_constinit] = ACTIONS(2489), + [anon_sym_consteval] = ACTIONS(2489), + [anon_sym_signed] = ACTIONS(2489), + [anon_sym_unsigned] = ACTIONS(2489), + [anon_sym_long] = ACTIONS(2489), + [anon_sym_short] = ACTIONS(2489), + [sym_primitive_type] = ACTIONS(2489), + [anon_sym_enum] = ACTIONS(2489), + [anon_sym_class] = ACTIONS(2489), + [anon_sym_struct] = ACTIONS(2489), + [anon_sym_union] = ACTIONS(2489), + [anon_sym_if] = ACTIONS(2489), + [anon_sym_else] = ACTIONS(2489), + [anon_sym_switch] = ACTIONS(2489), + [anon_sym_case] = ACTIONS(2489), + [anon_sym_default] = ACTIONS(2489), + [anon_sym_while] = ACTIONS(2489), + [anon_sym_do] = ACTIONS(2489), + [anon_sym_for] = ACTIONS(2489), + [anon_sym_return] = ACTIONS(2489), + [anon_sym_break] = ACTIONS(2489), + [anon_sym_continue] = ACTIONS(2489), + [anon_sym_goto] = ACTIONS(2489), + [anon_sym_not] = ACTIONS(2489), + [anon_sym_compl] = ACTIONS(2489), + [anon_sym_DASH_DASH] = ACTIONS(2491), + [anon_sym_PLUS_PLUS] = ACTIONS(2491), + [anon_sym_sizeof] = ACTIONS(2489), + [sym_number_literal] = ACTIONS(2491), + [anon_sym_L_SQUOTE] = ACTIONS(2491), + [anon_sym_u_SQUOTE] = ACTIONS(2491), + [anon_sym_U_SQUOTE] = ACTIONS(2491), + [anon_sym_u8_SQUOTE] = ACTIONS(2491), + [anon_sym_SQUOTE] = ACTIONS(2491), + [anon_sym_L_DQUOTE] = ACTIONS(2491), + [anon_sym_u_DQUOTE] = ACTIONS(2491), + [anon_sym_U_DQUOTE] = ACTIONS(2491), + [anon_sym_u8_DQUOTE] = ACTIONS(2491), + [anon_sym_DQUOTE] = ACTIONS(2491), + [sym_true] = ACTIONS(2489), + [sym_false] = ACTIONS(2489), + [sym_null] = ACTIONS(2489), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2489), + [anon_sym_decltype] = ACTIONS(2489), + [anon_sym_virtual] = ACTIONS(2489), + [anon_sym_explicit] = ACTIONS(2489), + [anon_sym_typename] = ACTIONS(2489), + [anon_sym_template] = ACTIONS(2489), + [anon_sym_operator] = ACTIONS(2489), + [anon_sym_try] = ACTIONS(2489), + [anon_sym_delete] = ACTIONS(2489), + [anon_sym_throw] = ACTIONS(2489), + [anon_sym_namespace] = ACTIONS(2489), + [anon_sym_using] = ACTIONS(2489), + [anon_sym_static_assert] = ACTIONS(2489), + [anon_sym_concept] = ACTIONS(2489), + [anon_sym_co_return] = ACTIONS(2489), + [anon_sym_co_yield] = ACTIONS(2489), + [anon_sym_co_await] = ACTIONS(2489), + [anon_sym_new] = ACTIONS(2489), + [anon_sym_requires] = ACTIONS(2489), + [sym_this] = ACTIONS(2489), + [sym_nullptr] = ACTIONS(2489), + [sym_raw_string_literal] = ACTIONS(2491), }, - [1355] = { - [sym__expression] = STATE(2558), - [sym_conditional_expression] = STATE(2541), - [sym_assignment_expression] = STATE(2541), - [sym_pointer_expression] = STATE(2531), - [sym_unary_expression] = STATE(2541), - [sym_binary_expression] = STATE(2541), - [sym_update_expression] = STATE(2541), - [sym_cast_expression] = STATE(2541), - [sym_sizeof_expression] = STATE(2541), - [sym_subscript_expression] = STATE(2531), - [sym_call_expression] = STATE(2531), - [sym_field_expression] = STATE(2531), - [sym_compound_literal_expression] = STATE(2541), - [sym_parenthesized_expression] = STATE(2531), - [sym_char_literal] = STATE(2481), - [sym_concatenated_string] = STATE(2481), - [sym_string_literal] = STATE(2063), - [sym__class_name] = STATE(6239), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2541), - [sym_co_await_expression] = STATE(2541), - [sym_new_expression] = STATE(2541), - [sym_delete_expression] = STATE(2541), - [sym_requires_clause] = STATE(2541), - [sym_requires_expression] = STATE(2541), - [sym_lambda_expression] = STATE(2541), - [sym_lambda_capture_specifier] = STATE(4508), - [sym_fold_expression] = STATE(2541), - [sym_parameter_pack_expansion] = STATE(2541), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2531), - [sym_qualified_type_identifier] = STATE(6239), - [sym_user_defined_literal] = STATE(2541), - [sym_identifier] = ACTIONS(2306), - [anon_sym_COMMA] = ACTIONS(3468), - [anon_sym_LPAREN2] = ACTIONS(2310), - [anon_sym_BANG] = ACTIONS(2314), - [anon_sym_TILDE] = ACTIONS(2314), - [anon_sym_DASH] = ACTIONS(2312), - [anon_sym_PLUS] = ACTIONS(2312), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(2318), - [anon_sym_LBRACK] = ACTIONS(2272), - [anon_sym_RBRACK] = ACTIONS(3468), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(2322), - [anon_sym_PLUS_PLUS] = ACTIONS(2322), - [anon_sym_sizeof] = ACTIONS(2324), - [sym_number_literal] = ACTIONS(2326), - [anon_sym_L_SQUOTE] = ACTIONS(2328), - [anon_sym_u_SQUOTE] = ACTIONS(2328), - [anon_sym_U_SQUOTE] = ACTIONS(2328), - [anon_sym_u8_SQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2328), - [anon_sym_L_DQUOTE] = ACTIONS(2330), - [anon_sym_u_DQUOTE] = ACTIONS(2330), - [anon_sym_U_DQUOTE] = ACTIONS(2330), - [anon_sym_u8_DQUOTE] = ACTIONS(2330), - [anon_sym_DQUOTE] = ACTIONS(2330), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2334), - [anon_sym_co_await] = ACTIONS(2336), - [anon_sym_new] = ACTIONS(2338), - [anon_sym_requires] = ACTIONS(2340), - [sym_this] = ACTIONS(2332), - [sym_nullptr] = ACTIONS(2332), - [sym_raw_string_literal] = ACTIONS(2342), + [886] = { + [sym_identifier] = ACTIONS(2541), + [aux_sym_preproc_include_token1] = ACTIONS(2541), + [aux_sym_preproc_def_token1] = ACTIONS(2541), + [aux_sym_preproc_if_token1] = ACTIONS(2541), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2541), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2541), + [sym_preproc_directive] = ACTIONS(2541), + [anon_sym_LPAREN2] = ACTIONS(2543), + [anon_sym_BANG] = ACTIONS(2543), + [anon_sym_TILDE] = ACTIONS(2543), + [anon_sym_DASH] = ACTIONS(2541), + [anon_sym_PLUS] = ACTIONS(2541), + [anon_sym_STAR] = ACTIONS(2543), + [anon_sym_AMP_AMP] = ACTIONS(2543), + [anon_sym_AMP] = ACTIONS(2541), + [anon_sym_SEMI] = ACTIONS(2543), + [anon_sym_typedef] = ACTIONS(2541), + [anon_sym_extern] = ACTIONS(2541), + [anon_sym___attribute__] = ACTIONS(2541), + [anon_sym_COLON_COLON] = ACTIONS(2543), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2543), + [anon_sym___declspec] = ACTIONS(2541), + [anon_sym___based] = ACTIONS(2541), + [anon_sym___cdecl] = ACTIONS(2541), + [anon_sym___clrcall] = ACTIONS(2541), + [anon_sym___stdcall] = ACTIONS(2541), + [anon_sym___fastcall] = ACTIONS(2541), + [anon_sym___thiscall] = ACTIONS(2541), + [anon_sym___vectorcall] = ACTIONS(2541), + [anon_sym_LBRACE] = ACTIONS(2543), + [anon_sym_RBRACE] = ACTIONS(2543), + [anon_sym_LBRACK] = ACTIONS(2541), + [anon_sym_static] = ACTIONS(2541), + [anon_sym_register] = ACTIONS(2541), + [anon_sym_inline] = ACTIONS(2541), + [anon_sym_thread_local] = ACTIONS(2541), + [anon_sym_const] = ACTIONS(2541), + [anon_sym_volatile] = ACTIONS(2541), + [anon_sym_restrict] = ACTIONS(2541), + [anon_sym__Atomic] = ACTIONS(2541), + [anon_sym_mutable] = ACTIONS(2541), + [anon_sym_constexpr] = ACTIONS(2541), + [anon_sym_constinit] = ACTIONS(2541), + [anon_sym_consteval] = ACTIONS(2541), + [anon_sym_signed] = ACTIONS(2541), + [anon_sym_unsigned] = ACTIONS(2541), + [anon_sym_long] = ACTIONS(2541), + [anon_sym_short] = ACTIONS(2541), + [sym_primitive_type] = ACTIONS(2541), + [anon_sym_enum] = ACTIONS(2541), + [anon_sym_class] = ACTIONS(2541), + [anon_sym_struct] = ACTIONS(2541), + [anon_sym_union] = ACTIONS(2541), + [anon_sym_if] = ACTIONS(2541), + [anon_sym_else] = ACTIONS(2953), + [anon_sym_switch] = ACTIONS(2541), + [anon_sym_case] = ACTIONS(2541), + [anon_sym_default] = ACTIONS(2541), + [anon_sym_while] = ACTIONS(2541), + [anon_sym_do] = ACTIONS(2541), + [anon_sym_for] = ACTIONS(2541), + [anon_sym_return] = ACTIONS(2541), + [anon_sym_break] = ACTIONS(2541), + [anon_sym_continue] = ACTIONS(2541), + [anon_sym_goto] = ACTIONS(2541), + [anon_sym_not] = ACTIONS(2541), + [anon_sym_compl] = ACTIONS(2541), + [anon_sym_DASH_DASH] = ACTIONS(2543), + [anon_sym_PLUS_PLUS] = ACTIONS(2543), + [anon_sym_sizeof] = ACTIONS(2541), + [sym_number_literal] = ACTIONS(2543), + [anon_sym_L_SQUOTE] = ACTIONS(2543), + [anon_sym_u_SQUOTE] = ACTIONS(2543), + [anon_sym_U_SQUOTE] = ACTIONS(2543), + [anon_sym_u8_SQUOTE] = ACTIONS(2543), + [anon_sym_SQUOTE] = ACTIONS(2543), + [anon_sym_L_DQUOTE] = ACTIONS(2543), + [anon_sym_u_DQUOTE] = ACTIONS(2543), + [anon_sym_U_DQUOTE] = ACTIONS(2543), + [anon_sym_u8_DQUOTE] = ACTIONS(2543), + [anon_sym_DQUOTE] = ACTIONS(2543), + [sym_true] = ACTIONS(2541), + [sym_false] = ACTIONS(2541), + [sym_null] = ACTIONS(2541), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2541), + [anon_sym_decltype] = ACTIONS(2541), + [anon_sym_virtual] = ACTIONS(2541), + [anon_sym_explicit] = ACTIONS(2541), + [anon_sym_typename] = ACTIONS(2541), + [anon_sym_template] = ACTIONS(2541), + [anon_sym_operator] = ACTIONS(2541), + [anon_sym_try] = ACTIONS(2541), + [anon_sym_delete] = ACTIONS(2541), + [anon_sym_throw] = ACTIONS(2541), + [anon_sym_namespace] = ACTIONS(2541), + [anon_sym_using] = ACTIONS(2541), + [anon_sym_static_assert] = ACTIONS(2541), + [anon_sym_concept] = ACTIONS(2541), + [anon_sym_co_return] = ACTIONS(2541), + [anon_sym_co_yield] = ACTIONS(2541), + [anon_sym_co_await] = ACTIONS(2541), + [anon_sym_new] = ACTIONS(2541), + [anon_sym_requires] = ACTIONS(2541), + [sym_this] = ACTIONS(2541), + [sym_nullptr] = ACTIONS(2541), + [sym_raw_string_literal] = ACTIONS(2543), }, - [1356] = { - [sym__expression] = STATE(3653), - [sym_comma_expression] = STATE(6509), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_RPAREN] = ACTIONS(3470), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [887] = { + [ts_builtin_sym_end] = ACTIONS(2617), + [sym_identifier] = ACTIONS(2615), + [aux_sym_preproc_include_token1] = ACTIONS(2615), + [aux_sym_preproc_def_token1] = ACTIONS(2615), + [aux_sym_preproc_if_token1] = ACTIONS(2615), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2615), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2615), + [sym_preproc_directive] = ACTIONS(2615), + [anon_sym_LPAREN2] = ACTIONS(2617), + [anon_sym_BANG] = ACTIONS(2617), + [anon_sym_TILDE] = ACTIONS(2617), + [anon_sym_DASH] = ACTIONS(2615), + [anon_sym_PLUS] = ACTIONS(2615), + [anon_sym_STAR] = ACTIONS(2617), + [anon_sym_AMP_AMP] = ACTIONS(2617), + [anon_sym_AMP] = ACTIONS(2615), + [anon_sym_SEMI] = ACTIONS(2617), + [anon_sym_typedef] = ACTIONS(2615), + [anon_sym_extern] = ACTIONS(2615), + [anon_sym___attribute__] = ACTIONS(2615), + [anon_sym_COLON_COLON] = ACTIONS(2617), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2617), + [anon_sym___declspec] = ACTIONS(2615), + [anon_sym___based] = ACTIONS(2615), + [anon_sym___cdecl] = ACTIONS(2615), + [anon_sym___clrcall] = ACTIONS(2615), + [anon_sym___stdcall] = ACTIONS(2615), + [anon_sym___fastcall] = ACTIONS(2615), + [anon_sym___thiscall] = ACTIONS(2615), + [anon_sym___vectorcall] = ACTIONS(2615), + [anon_sym_LBRACE] = ACTIONS(2617), + [anon_sym_LBRACK] = ACTIONS(2615), + [anon_sym_static] = ACTIONS(2615), + [anon_sym_register] = ACTIONS(2615), + [anon_sym_inline] = ACTIONS(2615), + [anon_sym_thread_local] = ACTIONS(2615), + [anon_sym_const] = ACTIONS(2615), + [anon_sym_volatile] = ACTIONS(2615), + [anon_sym_restrict] = ACTIONS(2615), + [anon_sym__Atomic] = ACTIONS(2615), + [anon_sym_mutable] = ACTIONS(2615), + [anon_sym_constexpr] = ACTIONS(2615), + [anon_sym_constinit] = ACTIONS(2615), + [anon_sym_consteval] = ACTIONS(2615), + [anon_sym_signed] = ACTIONS(2615), + [anon_sym_unsigned] = ACTIONS(2615), + [anon_sym_long] = ACTIONS(2615), + [anon_sym_short] = ACTIONS(2615), + [sym_primitive_type] = ACTIONS(2615), + [anon_sym_enum] = ACTIONS(2615), + [anon_sym_class] = ACTIONS(2615), + [anon_sym_struct] = ACTIONS(2615), + [anon_sym_union] = ACTIONS(2615), + [anon_sym_if] = ACTIONS(2615), + [anon_sym_else] = ACTIONS(2615), + [anon_sym_switch] = ACTIONS(2615), + [anon_sym_case] = ACTIONS(2615), + [anon_sym_default] = ACTIONS(2615), + [anon_sym_while] = ACTIONS(2615), + [anon_sym_do] = ACTIONS(2615), + [anon_sym_for] = ACTIONS(2615), + [anon_sym_return] = ACTIONS(2615), + [anon_sym_break] = ACTIONS(2615), + [anon_sym_continue] = ACTIONS(2615), + [anon_sym_goto] = ACTIONS(2615), + [anon_sym_not] = ACTIONS(2615), + [anon_sym_compl] = ACTIONS(2615), + [anon_sym_DASH_DASH] = ACTIONS(2617), + [anon_sym_PLUS_PLUS] = ACTIONS(2617), + [anon_sym_sizeof] = ACTIONS(2615), + [sym_number_literal] = ACTIONS(2617), + [anon_sym_L_SQUOTE] = ACTIONS(2617), + [anon_sym_u_SQUOTE] = ACTIONS(2617), + [anon_sym_U_SQUOTE] = ACTIONS(2617), + [anon_sym_u8_SQUOTE] = ACTIONS(2617), + [anon_sym_SQUOTE] = ACTIONS(2617), + [anon_sym_L_DQUOTE] = ACTIONS(2617), + [anon_sym_u_DQUOTE] = ACTIONS(2617), + [anon_sym_U_DQUOTE] = ACTIONS(2617), + [anon_sym_u8_DQUOTE] = ACTIONS(2617), + [anon_sym_DQUOTE] = ACTIONS(2617), + [sym_true] = ACTIONS(2615), + [sym_false] = ACTIONS(2615), + [sym_null] = ACTIONS(2615), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2615), + [anon_sym_decltype] = ACTIONS(2615), + [anon_sym_virtual] = ACTIONS(2615), + [anon_sym_explicit] = ACTIONS(2615), + [anon_sym_typename] = ACTIONS(2615), + [anon_sym_template] = ACTIONS(2615), + [anon_sym_operator] = ACTIONS(2615), + [anon_sym_try] = ACTIONS(2615), + [anon_sym_delete] = ACTIONS(2615), + [anon_sym_throw] = ACTIONS(2615), + [anon_sym_namespace] = ACTIONS(2615), + [anon_sym_using] = ACTIONS(2615), + [anon_sym_static_assert] = ACTIONS(2615), + [anon_sym_concept] = ACTIONS(2615), + [anon_sym_co_return] = ACTIONS(2615), + [anon_sym_co_yield] = ACTIONS(2615), + [anon_sym_co_await] = ACTIONS(2615), + [anon_sym_new] = ACTIONS(2615), + [anon_sym_requires] = ACTIONS(2615), + [sym_this] = ACTIONS(2615), + [sym_nullptr] = ACTIONS(2615), + [sym_raw_string_literal] = ACTIONS(2617), }, - [1357] = { - [sym__expression] = STATE(2852), - [sym_conditional_expression] = STATE(3000), - [sym_assignment_expression] = STATE(3000), - [sym_pointer_expression] = STATE(3006), - [sym_unary_expression] = STATE(3000), - [sym_binary_expression] = STATE(3000), - [sym_update_expression] = STATE(3000), - [sym_cast_expression] = STATE(3000), - [sym_sizeof_expression] = STATE(3000), - [sym_subscript_expression] = STATE(3006), - [sym_call_expression] = STATE(3006), - [sym_field_expression] = STATE(3006), - [sym_compound_literal_expression] = STATE(3000), - [sym_parenthesized_expression] = STATE(3006), - [sym_initializer_list] = STATE(3015), - [sym_char_literal] = STATE(2896), - [sym_concatenated_string] = STATE(2896), - [sym_string_literal] = STATE(2154), - [sym__class_name] = STATE(5849), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3000), - [sym_co_await_expression] = STATE(3000), - [sym_new_expression] = STATE(3000), - [sym_delete_expression] = STATE(3000), - [sym_requires_clause] = STATE(3000), - [sym_requires_expression] = STATE(3000), - [sym_lambda_expression] = STATE(3000), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3000), - [sym_parameter_pack_expansion] = STATE(3000), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4642), - [sym_qualified_identifier] = STATE(3006), - [sym_qualified_type_identifier] = STATE(5849), - [sym_user_defined_literal] = STATE(3000), - [sym_identifier] = ACTIONS(2831), - [anon_sym_LPAREN2] = ACTIONS(2833), - [anon_sym_BANG] = ACTIONS(2837), - [anon_sym_TILDE] = ACTIONS(2837), - [anon_sym_DASH] = ACTIONS(2835), - [anon_sym_PLUS] = ACTIONS(2835), - [anon_sym_STAR] = ACTIONS(2537), - [anon_sym_AMP] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(2841), - [anon_sym_LBRACE] = ACTIONS(2843), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(2845), - [anon_sym_DASH_DASH] = ACTIONS(2847), - [anon_sym_PLUS_PLUS] = ACTIONS(2847), - [anon_sym_sizeof] = ACTIONS(2849), - [sym_number_literal] = ACTIONS(2851), - [anon_sym_L_SQUOTE] = ACTIONS(2853), - [anon_sym_u_SQUOTE] = ACTIONS(2853), - [anon_sym_U_SQUOTE] = ACTIONS(2853), - [anon_sym_u8_SQUOTE] = ACTIONS(2853), - [anon_sym_SQUOTE] = ACTIONS(2853), - [anon_sym_L_DQUOTE] = ACTIONS(2855), - [anon_sym_u_DQUOTE] = ACTIONS(2855), - [anon_sym_U_DQUOTE] = ACTIONS(2855), - [anon_sym_u8_DQUOTE] = ACTIONS(2855), - [anon_sym_DQUOTE] = ACTIONS(2855), - [sym_true] = ACTIONS(2857), - [sym_false] = ACTIONS(2857), - [sym_null] = ACTIONS(2857), + [888] = { + [ts_builtin_sym_end] = ACTIONS(2597), + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_co_await] = ACTIONS(2861), - [anon_sym_new] = ACTIONS(2863), - [anon_sym_requires] = ACTIONS(2865), - [sym_this] = ACTIONS(2857), - [sym_nullptr] = ACTIONS(2857), - [sym_raw_string_literal] = ACTIONS(2867), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1358] = { - [sym__expression] = STATE(3557), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_initializer_list] = STATE(6211), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1465), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [889] = { + [ts_builtin_sym_end] = ACTIONS(2597), + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1359] = { - [sym__expression] = STATE(3722), - [sym_conditional_expression] = STATE(3881), - [sym_assignment_expression] = STATE(3881), - [sym_pointer_expression] = STATE(2977), - [sym_unary_expression] = STATE(3881), - [sym_binary_expression] = STATE(3881), - [sym_update_expression] = STATE(3881), - [sym_cast_expression] = STATE(3881), - [sym_sizeof_expression] = STATE(3881), - [sym_subscript_expression] = STATE(2977), - [sym_call_expression] = STATE(2977), - [sym_field_expression] = STATE(2977), - [sym_compound_literal_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(2977), - [sym_initializer_list] = STATE(3900), - [sym_char_literal] = STATE(3701), - [sym_concatenated_string] = STATE(3701), - [sym_string_literal] = STATE(3219), - [sym__class_name] = STATE(6063), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3881), - [sym_co_await_expression] = STATE(3881), - [sym_new_expression] = STATE(3881), - [sym_delete_expression] = STATE(3881), - [sym_requires_clause] = STATE(3881), - [sym_requires_expression] = STATE(3881), - [sym_lambda_expression] = STATE(3881), - [sym_lambda_capture_specifier] = STATE(4519), - [sym_fold_expression] = STATE(3881), - [sym_parameter_pack_expansion] = STATE(3881), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4642), - [sym_qualified_identifier] = STATE(2977), - [sym_qualified_type_identifier] = STATE(6063), - [sym_user_defined_literal] = STATE(3881), - [sym_identifier] = ACTIONS(3035), - [anon_sym_LPAREN2] = ACTIONS(2531), - [anon_sym_BANG] = ACTIONS(2533), - [anon_sym_TILDE] = ACTIONS(2533), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_STAR] = ACTIONS(2537), - [anon_sym_AMP] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(2539), - [anon_sym_LBRACE] = ACTIONS(3037), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(2845), - [anon_sym_DASH_DASH] = ACTIONS(2553), - [anon_sym_PLUS_PLUS] = ACTIONS(2553), + [890] = { + [sym_identifier] = ACTIONS(2499), + [aux_sym_preproc_include_token1] = ACTIONS(2499), + [aux_sym_preproc_def_token1] = ACTIONS(2499), + [aux_sym_preproc_if_token1] = ACTIONS(2499), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2499), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2499), + [sym_preproc_directive] = ACTIONS(2499), + [anon_sym_LPAREN2] = ACTIONS(2501), + [anon_sym_BANG] = ACTIONS(2501), + [anon_sym_TILDE] = ACTIONS(2501), + [anon_sym_DASH] = ACTIONS(2499), + [anon_sym_PLUS] = ACTIONS(2499), + [anon_sym_STAR] = ACTIONS(2501), + [anon_sym_AMP_AMP] = ACTIONS(2501), + [anon_sym_AMP] = ACTIONS(2499), + [anon_sym_SEMI] = ACTIONS(2501), + [anon_sym_typedef] = ACTIONS(2499), + [anon_sym_extern] = ACTIONS(2499), + [anon_sym___attribute__] = ACTIONS(2499), + [anon_sym_COLON_COLON] = ACTIONS(2501), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2501), + [anon_sym___declspec] = ACTIONS(2499), + [anon_sym___based] = ACTIONS(2499), + [anon_sym___cdecl] = ACTIONS(2499), + [anon_sym___clrcall] = ACTIONS(2499), + [anon_sym___stdcall] = ACTIONS(2499), + [anon_sym___fastcall] = ACTIONS(2499), + [anon_sym___thiscall] = ACTIONS(2499), + [anon_sym___vectorcall] = ACTIONS(2499), + [anon_sym_LBRACE] = ACTIONS(2501), + [anon_sym_RBRACE] = ACTIONS(2501), + [anon_sym_LBRACK] = ACTIONS(2499), + [anon_sym_static] = ACTIONS(2499), + [anon_sym_register] = ACTIONS(2499), + [anon_sym_inline] = ACTIONS(2499), + [anon_sym_thread_local] = ACTIONS(2499), + [anon_sym_const] = ACTIONS(2499), + [anon_sym_volatile] = ACTIONS(2499), + [anon_sym_restrict] = ACTIONS(2499), + [anon_sym__Atomic] = ACTIONS(2499), + [anon_sym_mutable] = ACTIONS(2499), + [anon_sym_constexpr] = ACTIONS(2499), + [anon_sym_constinit] = ACTIONS(2499), + [anon_sym_consteval] = ACTIONS(2499), + [anon_sym_signed] = ACTIONS(2499), + [anon_sym_unsigned] = ACTIONS(2499), + [anon_sym_long] = ACTIONS(2499), + [anon_sym_short] = ACTIONS(2499), + [sym_primitive_type] = ACTIONS(2499), + [anon_sym_enum] = ACTIONS(2499), + [anon_sym_class] = ACTIONS(2499), + [anon_sym_struct] = ACTIONS(2499), + [anon_sym_union] = ACTIONS(2499), + [anon_sym_if] = ACTIONS(2499), + [anon_sym_else] = ACTIONS(2499), + [anon_sym_switch] = ACTIONS(2499), + [anon_sym_case] = ACTIONS(2499), + [anon_sym_default] = ACTIONS(2499), + [anon_sym_while] = ACTIONS(2499), + [anon_sym_do] = ACTIONS(2499), + [anon_sym_for] = ACTIONS(2499), + [anon_sym_return] = ACTIONS(2499), + [anon_sym_break] = ACTIONS(2499), + [anon_sym_continue] = ACTIONS(2499), + [anon_sym_goto] = ACTIONS(2499), + [anon_sym_not] = ACTIONS(2499), + [anon_sym_compl] = ACTIONS(2499), + [anon_sym_DASH_DASH] = ACTIONS(2501), + [anon_sym_PLUS_PLUS] = ACTIONS(2501), + [anon_sym_sizeof] = ACTIONS(2499), + [sym_number_literal] = ACTIONS(2501), + [anon_sym_L_SQUOTE] = ACTIONS(2501), + [anon_sym_u_SQUOTE] = ACTIONS(2501), + [anon_sym_U_SQUOTE] = ACTIONS(2501), + [anon_sym_u8_SQUOTE] = ACTIONS(2501), + [anon_sym_SQUOTE] = ACTIONS(2501), + [anon_sym_L_DQUOTE] = ACTIONS(2501), + [anon_sym_u_DQUOTE] = ACTIONS(2501), + [anon_sym_U_DQUOTE] = ACTIONS(2501), + [anon_sym_u8_DQUOTE] = ACTIONS(2501), + [anon_sym_DQUOTE] = ACTIONS(2501), + [sym_true] = ACTIONS(2499), + [sym_false] = ACTIONS(2499), + [sym_null] = ACTIONS(2499), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2499), + [anon_sym_decltype] = ACTIONS(2499), + [anon_sym_virtual] = ACTIONS(2499), + [anon_sym_explicit] = ACTIONS(2499), + [anon_sym_typename] = ACTIONS(2499), + [anon_sym_template] = ACTIONS(2499), + [anon_sym_operator] = ACTIONS(2499), + [anon_sym_try] = ACTIONS(2499), + [anon_sym_delete] = ACTIONS(2499), + [anon_sym_throw] = ACTIONS(2499), + [anon_sym_namespace] = ACTIONS(2499), + [anon_sym_using] = ACTIONS(2499), + [anon_sym_static_assert] = ACTIONS(2499), + [anon_sym_concept] = ACTIONS(2499), + [anon_sym_co_return] = ACTIONS(2499), + [anon_sym_co_yield] = ACTIONS(2499), + [anon_sym_co_await] = ACTIONS(2499), + [anon_sym_new] = ACTIONS(2499), + [anon_sym_requires] = ACTIONS(2499), + [sym_this] = ACTIONS(2499), + [sym_nullptr] = ACTIONS(2499), + [sym_raw_string_literal] = ACTIONS(2501), + }, + [891] = { + [ts_builtin_sym_end] = ACTIONS(2478), + [sym_identifier] = ACTIONS(2476), + [aux_sym_preproc_include_token1] = ACTIONS(2476), + [aux_sym_preproc_def_token1] = ACTIONS(2476), + [anon_sym_COMMA] = ACTIONS(2507), + [aux_sym_preproc_if_token1] = ACTIONS(2476), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2476), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2476), + [sym_preproc_directive] = ACTIONS(2476), + [anon_sym_LPAREN2] = ACTIONS(2478), + [anon_sym_BANG] = ACTIONS(2478), + [anon_sym_TILDE] = ACTIONS(2478), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_STAR] = ACTIONS(2478), + [anon_sym_AMP_AMP] = ACTIONS(2478), + [anon_sym_AMP] = ACTIONS(2476), + [anon_sym_SEMI] = ACTIONS(2507), + [anon_sym_typedef] = ACTIONS(2476), + [anon_sym_extern] = ACTIONS(2476), + [anon_sym___attribute__] = ACTIONS(2476), + [anon_sym_COLON_COLON] = ACTIONS(2478), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2478), + [anon_sym___declspec] = ACTIONS(2476), + [anon_sym___based] = ACTIONS(2476), + [anon_sym___cdecl] = ACTIONS(2476), + [anon_sym___clrcall] = ACTIONS(2476), + [anon_sym___stdcall] = ACTIONS(2476), + [anon_sym___fastcall] = ACTIONS(2476), + [anon_sym___thiscall] = ACTIONS(2476), + [anon_sym___vectorcall] = ACTIONS(2476), + [anon_sym_LBRACE] = ACTIONS(2478), + [anon_sym_LBRACK] = ACTIONS(2476), + [anon_sym_static] = ACTIONS(2476), + [anon_sym_register] = ACTIONS(2476), + [anon_sym_inline] = ACTIONS(2476), + [anon_sym_thread_local] = ACTIONS(2476), + [anon_sym_const] = ACTIONS(2476), + [anon_sym_volatile] = ACTIONS(2476), + [anon_sym_restrict] = ACTIONS(2476), + [anon_sym__Atomic] = ACTIONS(2476), + [anon_sym_mutable] = ACTIONS(2476), + [anon_sym_constexpr] = ACTIONS(2476), + [anon_sym_constinit] = ACTIONS(2476), + [anon_sym_consteval] = ACTIONS(2476), + [anon_sym_signed] = ACTIONS(2476), + [anon_sym_unsigned] = ACTIONS(2476), + [anon_sym_long] = ACTIONS(2476), + [anon_sym_short] = ACTIONS(2476), + [sym_primitive_type] = ACTIONS(2476), + [anon_sym_enum] = ACTIONS(2476), + [anon_sym_class] = ACTIONS(2476), + [anon_sym_struct] = ACTIONS(2476), + [anon_sym_union] = ACTIONS(2476), + [anon_sym_if] = ACTIONS(2476), + [anon_sym_switch] = ACTIONS(2476), + [anon_sym_case] = ACTIONS(2476), + [anon_sym_default] = ACTIONS(2476), + [anon_sym_while] = ACTIONS(2476), + [anon_sym_do] = ACTIONS(2476), + [anon_sym_for] = ACTIONS(2476), + [anon_sym_return] = ACTIONS(2476), + [anon_sym_break] = ACTIONS(2476), + [anon_sym_continue] = ACTIONS(2476), + [anon_sym_goto] = ACTIONS(2476), + [anon_sym_not] = ACTIONS(2476), + [anon_sym_compl] = ACTIONS(2476), + [anon_sym_DASH_DASH] = ACTIONS(2478), + [anon_sym_PLUS_PLUS] = ACTIONS(2478), + [anon_sym_sizeof] = ACTIONS(2476), + [sym_number_literal] = ACTIONS(2478), + [anon_sym_L_SQUOTE] = ACTIONS(2478), + [anon_sym_u_SQUOTE] = ACTIONS(2478), + [anon_sym_U_SQUOTE] = ACTIONS(2478), + [anon_sym_u8_SQUOTE] = ACTIONS(2478), + [anon_sym_SQUOTE] = ACTIONS(2478), + [anon_sym_L_DQUOTE] = ACTIONS(2478), + [anon_sym_u_DQUOTE] = ACTIONS(2478), + [anon_sym_U_DQUOTE] = ACTIONS(2478), + [anon_sym_u8_DQUOTE] = ACTIONS(2478), + [anon_sym_DQUOTE] = ACTIONS(2478), + [sym_true] = ACTIONS(2476), + [sym_false] = ACTIONS(2476), + [sym_null] = ACTIONS(2476), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2476), + [anon_sym_decltype] = ACTIONS(2476), + [anon_sym_virtual] = ACTIONS(2476), + [anon_sym_explicit] = ACTIONS(2476), + [anon_sym_typename] = ACTIONS(2476), + [anon_sym_template] = ACTIONS(2476), + [anon_sym_operator] = ACTIONS(2476), + [anon_sym_try] = ACTIONS(2476), + [anon_sym_delete] = ACTIONS(2476), + [anon_sym_throw] = ACTIONS(2476), + [anon_sym_namespace] = ACTIONS(2476), + [anon_sym_using] = ACTIONS(2476), + [anon_sym_static_assert] = ACTIONS(2476), + [anon_sym_concept] = ACTIONS(2476), + [anon_sym_co_return] = ACTIONS(2476), + [anon_sym_co_yield] = ACTIONS(2476), + [anon_sym_co_await] = ACTIONS(2476), + [anon_sym_new] = ACTIONS(2476), + [anon_sym_requires] = ACTIONS(2476), + [sym_this] = ACTIONS(2476), + [sym_nullptr] = ACTIONS(2476), + [sym_raw_string_literal] = ACTIONS(2478), + }, + [892] = { + [ts_builtin_sym_end] = ACTIONS(2597), + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), + }, + [893] = { + [ts_builtin_sym_end] = ACTIONS(2637), + [sym_identifier] = ACTIONS(2635), + [aux_sym_preproc_include_token1] = ACTIONS(2635), + [aux_sym_preproc_def_token1] = ACTIONS(2635), + [aux_sym_preproc_if_token1] = ACTIONS(2635), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2635), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2635), + [sym_preproc_directive] = ACTIONS(2635), + [anon_sym_LPAREN2] = ACTIONS(2637), + [anon_sym_BANG] = ACTIONS(2637), + [anon_sym_TILDE] = ACTIONS(2637), + [anon_sym_DASH] = ACTIONS(2635), + [anon_sym_PLUS] = ACTIONS(2635), + [anon_sym_STAR] = ACTIONS(2637), + [anon_sym_AMP_AMP] = ACTIONS(2637), + [anon_sym_AMP] = ACTIONS(2635), + [anon_sym_SEMI] = ACTIONS(2637), + [anon_sym_typedef] = ACTIONS(2635), + [anon_sym_extern] = ACTIONS(2635), + [anon_sym___attribute__] = ACTIONS(2635), + [anon_sym_COLON_COLON] = ACTIONS(2637), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2637), + [anon_sym___declspec] = ACTIONS(2635), + [anon_sym___based] = ACTIONS(2635), + [anon_sym___cdecl] = ACTIONS(2635), + [anon_sym___clrcall] = ACTIONS(2635), + [anon_sym___stdcall] = ACTIONS(2635), + [anon_sym___fastcall] = ACTIONS(2635), + [anon_sym___thiscall] = ACTIONS(2635), + [anon_sym___vectorcall] = ACTIONS(2635), + [anon_sym_LBRACE] = ACTIONS(2637), + [anon_sym_LBRACK] = ACTIONS(2635), + [anon_sym_static] = ACTIONS(2635), + [anon_sym_register] = ACTIONS(2635), + [anon_sym_inline] = ACTIONS(2635), + [anon_sym_thread_local] = ACTIONS(2635), + [anon_sym_const] = ACTIONS(2635), + [anon_sym_volatile] = ACTIONS(2635), + [anon_sym_restrict] = ACTIONS(2635), + [anon_sym__Atomic] = ACTIONS(2635), + [anon_sym_mutable] = ACTIONS(2635), + [anon_sym_constexpr] = ACTIONS(2635), + [anon_sym_constinit] = ACTIONS(2635), + [anon_sym_consteval] = ACTIONS(2635), + [anon_sym_signed] = ACTIONS(2635), + [anon_sym_unsigned] = ACTIONS(2635), + [anon_sym_long] = ACTIONS(2635), + [anon_sym_short] = ACTIONS(2635), + [sym_primitive_type] = ACTIONS(2635), + [anon_sym_enum] = ACTIONS(2635), + [anon_sym_class] = ACTIONS(2635), + [anon_sym_struct] = ACTIONS(2635), + [anon_sym_union] = ACTIONS(2635), + [anon_sym_if] = ACTIONS(2635), + [anon_sym_else] = ACTIONS(2635), + [anon_sym_switch] = ACTIONS(2635), + [anon_sym_case] = ACTIONS(2635), + [anon_sym_default] = ACTIONS(2635), + [anon_sym_while] = ACTIONS(2635), + [anon_sym_do] = ACTIONS(2635), + [anon_sym_for] = ACTIONS(2635), + [anon_sym_return] = ACTIONS(2635), + [anon_sym_break] = ACTIONS(2635), + [anon_sym_continue] = ACTIONS(2635), + [anon_sym_goto] = ACTIONS(2635), + [anon_sym_not] = ACTIONS(2635), + [anon_sym_compl] = ACTIONS(2635), + [anon_sym_DASH_DASH] = ACTIONS(2637), + [anon_sym_PLUS_PLUS] = ACTIONS(2637), + [anon_sym_sizeof] = ACTIONS(2635), + [sym_number_literal] = ACTIONS(2637), + [anon_sym_L_SQUOTE] = ACTIONS(2637), + [anon_sym_u_SQUOTE] = ACTIONS(2637), + [anon_sym_U_SQUOTE] = ACTIONS(2637), + [anon_sym_u8_SQUOTE] = ACTIONS(2637), + [anon_sym_SQUOTE] = ACTIONS(2637), + [anon_sym_L_DQUOTE] = ACTIONS(2637), + [anon_sym_u_DQUOTE] = ACTIONS(2637), + [anon_sym_U_DQUOTE] = ACTIONS(2637), + [anon_sym_u8_DQUOTE] = ACTIONS(2637), + [anon_sym_DQUOTE] = ACTIONS(2637), + [sym_true] = ACTIONS(2635), + [sym_false] = ACTIONS(2635), + [sym_null] = ACTIONS(2635), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2635), + [anon_sym_decltype] = ACTIONS(2635), + [anon_sym_virtual] = ACTIONS(2635), + [anon_sym_explicit] = ACTIONS(2635), + [anon_sym_typename] = ACTIONS(2635), + [anon_sym_template] = ACTIONS(2635), + [anon_sym_operator] = ACTIONS(2635), + [anon_sym_try] = ACTIONS(2635), + [anon_sym_delete] = ACTIONS(2635), + [anon_sym_throw] = ACTIONS(2635), + [anon_sym_namespace] = ACTIONS(2635), + [anon_sym_using] = ACTIONS(2635), + [anon_sym_static_assert] = ACTIONS(2635), + [anon_sym_concept] = ACTIONS(2635), + [anon_sym_co_return] = ACTIONS(2635), + [anon_sym_co_yield] = ACTIONS(2635), + [anon_sym_co_await] = ACTIONS(2635), + [anon_sym_new] = ACTIONS(2635), + [anon_sym_requires] = ACTIONS(2635), + [sym_this] = ACTIONS(2635), + [sym_nullptr] = ACTIONS(2635), + [sym_raw_string_literal] = ACTIONS(2637), + }, + [894] = { + [ts_builtin_sym_end] = ACTIONS(2637), + [sym_identifier] = ACTIONS(2635), + [aux_sym_preproc_include_token1] = ACTIONS(2635), + [aux_sym_preproc_def_token1] = ACTIONS(2635), + [aux_sym_preproc_if_token1] = ACTIONS(2635), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2635), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2635), + [sym_preproc_directive] = ACTIONS(2635), + [anon_sym_LPAREN2] = ACTIONS(2637), + [anon_sym_BANG] = ACTIONS(2637), + [anon_sym_TILDE] = ACTIONS(2637), + [anon_sym_DASH] = ACTIONS(2635), + [anon_sym_PLUS] = ACTIONS(2635), + [anon_sym_STAR] = ACTIONS(2637), + [anon_sym_AMP_AMP] = ACTIONS(2637), + [anon_sym_AMP] = ACTIONS(2635), + [anon_sym_SEMI] = ACTIONS(2637), + [anon_sym_typedef] = ACTIONS(2635), + [anon_sym_extern] = ACTIONS(2635), + [anon_sym___attribute__] = ACTIONS(2635), + [anon_sym_COLON_COLON] = ACTIONS(2637), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2637), + [anon_sym___declspec] = ACTIONS(2635), + [anon_sym___based] = ACTIONS(2635), + [anon_sym___cdecl] = ACTIONS(2635), + [anon_sym___clrcall] = ACTIONS(2635), + [anon_sym___stdcall] = ACTIONS(2635), + [anon_sym___fastcall] = ACTIONS(2635), + [anon_sym___thiscall] = ACTIONS(2635), + [anon_sym___vectorcall] = ACTIONS(2635), + [anon_sym_LBRACE] = ACTIONS(2637), + [anon_sym_LBRACK] = ACTIONS(2635), + [anon_sym_static] = ACTIONS(2635), + [anon_sym_register] = ACTIONS(2635), + [anon_sym_inline] = ACTIONS(2635), + [anon_sym_thread_local] = ACTIONS(2635), + [anon_sym_const] = ACTIONS(2635), + [anon_sym_volatile] = ACTIONS(2635), + [anon_sym_restrict] = ACTIONS(2635), + [anon_sym__Atomic] = ACTIONS(2635), + [anon_sym_mutable] = ACTIONS(2635), + [anon_sym_constexpr] = ACTIONS(2635), + [anon_sym_constinit] = ACTIONS(2635), + [anon_sym_consteval] = ACTIONS(2635), + [anon_sym_signed] = ACTIONS(2635), + [anon_sym_unsigned] = ACTIONS(2635), + [anon_sym_long] = ACTIONS(2635), + [anon_sym_short] = ACTIONS(2635), + [sym_primitive_type] = ACTIONS(2635), + [anon_sym_enum] = ACTIONS(2635), + [anon_sym_class] = ACTIONS(2635), + [anon_sym_struct] = ACTIONS(2635), + [anon_sym_union] = ACTIONS(2635), + [anon_sym_if] = ACTIONS(2635), + [anon_sym_else] = ACTIONS(2635), + [anon_sym_switch] = ACTIONS(2635), + [anon_sym_case] = ACTIONS(2635), + [anon_sym_default] = ACTIONS(2635), + [anon_sym_while] = ACTIONS(2635), + [anon_sym_do] = ACTIONS(2635), + [anon_sym_for] = ACTIONS(2635), + [anon_sym_return] = ACTIONS(2635), + [anon_sym_break] = ACTIONS(2635), + [anon_sym_continue] = ACTIONS(2635), + [anon_sym_goto] = ACTIONS(2635), + [anon_sym_not] = ACTIONS(2635), + [anon_sym_compl] = ACTIONS(2635), + [anon_sym_DASH_DASH] = ACTIONS(2637), + [anon_sym_PLUS_PLUS] = ACTIONS(2637), + [anon_sym_sizeof] = ACTIONS(2635), + [sym_number_literal] = ACTIONS(2637), + [anon_sym_L_SQUOTE] = ACTIONS(2637), + [anon_sym_u_SQUOTE] = ACTIONS(2637), + [anon_sym_U_SQUOTE] = ACTIONS(2637), + [anon_sym_u8_SQUOTE] = ACTIONS(2637), + [anon_sym_SQUOTE] = ACTIONS(2637), + [anon_sym_L_DQUOTE] = ACTIONS(2637), + [anon_sym_u_DQUOTE] = ACTIONS(2637), + [anon_sym_U_DQUOTE] = ACTIONS(2637), + [anon_sym_u8_DQUOTE] = ACTIONS(2637), + [anon_sym_DQUOTE] = ACTIONS(2637), + [sym_true] = ACTIONS(2635), + [sym_false] = ACTIONS(2635), + [sym_null] = ACTIONS(2635), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2635), + [anon_sym_decltype] = ACTIONS(2635), + [anon_sym_virtual] = ACTIONS(2635), + [anon_sym_explicit] = ACTIONS(2635), + [anon_sym_typename] = ACTIONS(2635), + [anon_sym_template] = ACTIONS(2635), + [anon_sym_operator] = ACTIONS(2635), + [anon_sym_try] = ACTIONS(2635), + [anon_sym_delete] = ACTIONS(2635), + [anon_sym_throw] = ACTIONS(2635), + [anon_sym_namespace] = ACTIONS(2635), + [anon_sym_using] = ACTIONS(2635), + [anon_sym_static_assert] = ACTIONS(2635), + [anon_sym_concept] = ACTIONS(2635), + [anon_sym_co_return] = ACTIONS(2635), + [anon_sym_co_yield] = ACTIONS(2635), + [anon_sym_co_await] = ACTIONS(2635), + [anon_sym_new] = ACTIONS(2635), + [anon_sym_requires] = ACTIONS(2635), + [sym_this] = ACTIONS(2635), + [sym_nullptr] = ACTIONS(2635), + [sym_raw_string_literal] = ACTIONS(2637), + }, + [895] = { + [sym_identifier] = ACTIONS(2551), + [aux_sym_preproc_include_token1] = ACTIONS(2551), + [aux_sym_preproc_def_token1] = ACTIONS(2551), + [aux_sym_preproc_if_token1] = ACTIONS(2551), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2551), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2551), + [sym_preproc_directive] = ACTIONS(2551), + [anon_sym_LPAREN2] = ACTIONS(2553), + [anon_sym_BANG] = ACTIONS(2553), + [anon_sym_TILDE] = ACTIONS(2553), + [anon_sym_DASH] = ACTIONS(2551), + [anon_sym_PLUS] = ACTIONS(2551), + [anon_sym_STAR] = ACTIONS(2553), + [anon_sym_AMP_AMP] = ACTIONS(2553), + [anon_sym_AMP] = ACTIONS(2551), + [anon_sym_SEMI] = ACTIONS(2553), + [anon_sym_typedef] = ACTIONS(2551), + [anon_sym_extern] = ACTIONS(2551), + [anon_sym___attribute__] = ACTIONS(2551), + [anon_sym_COLON_COLON] = ACTIONS(2553), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2553), + [anon_sym___declspec] = ACTIONS(2551), + [anon_sym___based] = ACTIONS(2551), + [anon_sym___cdecl] = ACTIONS(2551), + [anon_sym___clrcall] = ACTIONS(2551), + [anon_sym___stdcall] = ACTIONS(2551), + [anon_sym___fastcall] = ACTIONS(2551), + [anon_sym___thiscall] = ACTIONS(2551), + [anon_sym___vectorcall] = ACTIONS(2551), + [anon_sym_LBRACE] = ACTIONS(2553), + [anon_sym_RBRACE] = ACTIONS(2553), + [anon_sym_LBRACK] = ACTIONS(2551), + [anon_sym_static] = ACTIONS(2551), + [anon_sym_register] = ACTIONS(2551), + [anon_sym_inline] = ACTIONS(2551), + [anon_sym_thread_local] = ACTIONS(2551), + [anon_sym_const] = ACTIONS(2551), + [anon_sym_volatile] = ACTIONS(2551), + [anon_sym_restrict] = ACTIONS(2551), + [anon_sym__Atomic] = ACTIONS(2551), + [anon_sym_mutable] = ACTIONS(2551), + [anon_sym_constexpr] = ACTIONS(2551), + [anon_sym_constinit] = ACTIONS(2551), + [anon_sym_consteval] = ACTIONS(2551), + [anon_sym_signed] = ACTIONS(2551), + [anon_sym_unsigned] = ACTIONS(2551), + [anon_sym_long] = ACTIONS(2551), + [anon_sym_short] = ACTIONS(2551), + [sym_primitive_type] = ACTIONS(2551), + [anon_sym_enum] = ACTIONS(2551), + [anon_sym_class] = ACTIONS(2551), + [anon_sym_struct] = ACTIONS(2551), + [anon_sym_union] = ACTIONS(2551), + [anon_sym_if] = ACTIONS(2551), + [anon_sym_else] = ACTIONS(2551), + [anon_sym_switch] = ACTIONS(2551), + [anon_sym_case] = ACTIONS(2551), + [anon_sym_default] = ACTIONS(2551), + [anon_sym_while] = ACTIONS(2551), + [anon_sym_do] = ACTIONS(2551), + [anon_sym_for] = ACTIONS(2551), + [anon_sym_return] = ACTIONS(2551), + [anon_sym_break] = ACTIONS(2551), + [anon_sym_continue] = ACTIONS(2551), + [anon_sym_goto] = ACTIONS(2551), + [anon_sym_not] = ACTIONS(2551), + [anon_sym_compl] = ACTIONS(2551), + [anon_sym_DASH_DASH] = ACTIONS(2553), + [anon_sym_PLUS_PLUS] = ACTIONS(2553), + [anon_sym_sizeof] = ACTIONS(2551), + [sym_number_literal] = ACTIONS(2553), + [anon_sym_L_SQUOTE] = ACTIONS(2553), + [anon_sym_u_SQUOTE] = ACTIONS(2553), + [anon_sym_U_SQUOTE] = ACTIONS(2553), + [anon_sym_u8_SQUOTE] = ACTIONS(2553), + [anon_sym_SQUOTE] = ACTIONS(2553), + [anon_sym_L_DQUOTE] = ACTIONS(2553), + [anon_sym_u_DQUOTE] = ACTIONS(2553), + [anon_sym_U_DQUOTE] = ACTIONS(2553), + [anon_sym_u8_DQUOTE] = ACTIONS(2553), + [anon_sym_DQUOTE] = ACTIONS(2553), + [sym_true] = ACTIONS(2551), + [sym_false] = ACTIONS(2551), + [sym_null] = ACTIONS(2551), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2551), + [anon_sym_decltype] = ACTIONS(2551), + [anon_sym_virtual] = ACTIONS(2551), + [anon_sym_explicit] = ACTIONS(2551), + [anon_sym_typename] = ACTIONS(2551), + [anon_sym_template] = ACTIONS(2551), + [anon_sym_operator] = ACTIONS(2551), + [anon_sym_try] = ACTIONS(2551), + [anon_sym_delete] = ACTIONS(2551), + [anon_sym_throw] = ACTIONS(2551), + [anon_sym_namespace] = ACTIONS(2551), + [anon_sym_using] = ACTIONS(2551), + [anon_sym_static_assert] = ACTIONS(2551), + [anon_sym_concept] = ACTIONS(2551), + [anon_sym_co_return] = ACTIONS(2551), + [anon_sym_co_yield] = ACTIONS(2551), + [anon_sym_co_await] = ACTIONS(2551), + [anon_sym_new] = ACTIONS(2551), + [anon_sym_requires] = ACTIONS(2551), + [sym_this] = ACTIONS(2551), + [sym_nullptr] = ACTIONS(2551), + [sym_raw_string_literal] = ACTIONS(2553), + }, + [896] = { + [sym_identifier] = ACTIONS(2555), + [aux_sym_preproc_include_token1] = ACTIONS(2555), + [aux_sym_preproc_def_token1] = ACTIONS(2555), + [aux_sym_preproc_if_token1] = ACTIONS(2555), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2555), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2555), + [sym_preproc_directive] = ACTIONS(2555), + [anon_sym_LPAREN2] = ACTIONS(2557), + [anon_sym_BANG] = ACTIONS(2557), + [anon_sym_TILDE] = ACTIONS(2557), + [anon_sym_DASH] = ACTIONS(2555), + [anon_sym_PLUS] = ACTIONS(2555), + [anon_sym_STAR] = ACTIONS(2557), + [anon_sym_AMP_AMP] = ACTIONS(2557), + [anon_sym_AMP] = ACTIONS(2555), + [anon_sym_SEMI] = ACTIONS(2557), + [anon_sym_typedef] = ACTIONS(2555), + [anon_sym_extern] = ACTIONS(2555), + [anon_sym___attribute__] = ACTIONS(2555), + [anon_sym_COLON_COLON] = ACTIONS(2557), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2557), + [anon_sym___declspec] = ACTIONS(2555), + [anon_sym___based] = ACTIONS(2555), + [anon_sym___cdecl] = ACTIONS(2555), + [anon_sym___clrcall] = ACTIONS(2555), + [anon_sym___stdcall] = ACTIONS(2555), + [anon_sym___fastcall] = ACTIONS(2555), + [anon_sym___thiscall] = ACTIONS(2555), + [anon_sym___vectorcall] = ACTIONS(2555), + [anon_sym_LBRACE] = ACTIONS(2557), + [anon_sym_RBRACE] = ACTIONS(2557), + [anon_sym_LBRACK] = ACTIONS(2555), + [anon_sym_static] = ACTIONS(2555), + [anon_sym_register] = ACTIONS(2555), + [anon_sym_inline] = ACTIONS(2555), + [anon_sym_thread_local] = ACTIONS(2555), + [anon_sym_const] = ACTIONS(2555), + [anon_sym_volatile] = ACTIONS(2555), + [anon_sym_restrict] = ACTIONS(2555), + [anon_sym__Atomic] = ACTIONS(2555), + [anon_sym_mutable] = ACTIONS(2555), + [anon_sym_constexpr] = ACTIONS(2555), + [anon_sym_constinit] = ACTIONS(2555), + [anon_sym_consteval] = ACTIONS(2555), + [anon_sym_signed] = ACTIONS(2555), + [anon_sym_unsigned] = ACTIONS(2555), + [anon_sym_long] = ACTIONS(2555), + [anon_sym_short] = ACTIONS(2555), + [sym_primitive_type] = ACTIONS(2555), + [anon_sym_enum] = ACTIONS(2555), + [anon_sym_class] = ACTIONS(2555), + [anon_sym_struct] = ACTIONS(2555), + [anon_sym_union] = ACTIONS(2555), + [anon_sym_if] = ACTIONS(2555), + [anon_sym_else] = ACTIONS(2555), + [anon_sym_switch] = ACTIONS(2555), + [anon_sym_case] = ACTIONS(2555), + [anon_sym_default] = ACTIONS(2555), + [anon_sym_while] = ACTIONS(2555), + [anon_sym_do] = ACTIONS(2555), + [anon_sym_for] = ACTIONS(2555), + [anon_sym_return] = ACTIONS(2555), + [anon_sym_break] = ACTIONS(2555), + [anon_sym_continue] = ACTIONS(2555), + [anon_sym_goto] = ACTIONS(2555), + [anon_sym_not] = ACTIONS(2555), + [anon_sym_compl] = ACTIONS(2555), + [anon_sym_DASH_DASH] = ACTIONS(2557), + [anon_sym_PLUS_PLUS] = ACTIONS(2557), [anon_sym_sizeof] = ACTIONS(2555), [sym_number_literal] = ACTIONS(2557), - [anon_sym_L_SQUOTE] = ACTIONS(2559), - [anon_sym_u_SQUOTE] = ACTIONS(2559), - [anon_sym_U_SQUOTE] = ACTIONS(2559), - [anon_sym_u8_SQUOTE] = ACTIONS(2559), - [anon_sym_SQUOTE] = ACTIONS(2559), - [anon_sym_L_DQUOTE] = ACTIONS(2561), - [anon_sym_u_DQUOTE] = ACTIONS(2561), - [anon_sym_U_DQUOTE] = ACTIONS(2561), - [anon_sym_u8_DQUOTE] = ACTIONS(2561), - [anon_sym_DQUOTE] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2557), + [anon_sym_u_SQUOTE] = ACTIONS(2557), + [anon_sym_U_SQUOTE] = ACTIONS(2557), + [anon_sym_u8_SQUOTE] = ACTIONS(2557), + [anon_sym_SQUOTE] = ACTIONS(2557), + [anon_sym_L_DQUOTE] = ACTIONS(2557), + [anon_sym_u_DQUOTE] = ACTIONS(2557), + [anon_sym_U_DQUOTE] = ACTIONS(2557), + [anon_sym_u8_DQUOTE] = ACTIONS(2557), + [anon_sym_DQUOTE] = ACTIONS(2557), + [sym_true] = ACTIONS(2555), + [sym_false] = ACTIONS(2555), + [sym_null] = ACTIONS(2555), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2555), + [anon_sym_decltype] = ACTIONS(2555), + [anon_sym_virtual] = ACTIONS(2555), + [anon_sym_explicit] = ACTIONS(2555), + [anon_sym_typename] = ACTIONS(2555), + [anon_sym_template] = ACTIONS(2555), + [anon_sym_operator] = ACTIONS(2555), + [anon_sym_try] = ACTIONS(2555), + [anon_sym_delete] = ACTIONS(2555), + [anon_sym_throw] = ACTIONS(2555), + [anon_sym_namespace] = ACTIONS(2555), + [anon_sym_using] = ACTIONS(2555), + [anon_sym_static_assert] = ACTIONS(2555), + [anon_sym_concept] = ACTIONS(2555), + [anon_sym_co_return] = ACTIONS(2555), + [anon_sym_co_yield] = ACTIONS(2555), + [anon_sym_co_await] = ACTIONS(2555), + [anon_sym_new] = ACTIONS(2555), + [anon_sym_requires] = ACTIONS(2555), + [sym_this] = ACTIONS(2555), + [sym_nullptr] = ACTIONS(2555), + [sym_raw_string_literal] = ACTIONS(2557), + }, + [897] = { + [sym_identifier] = ACTIONS(2563), + [aux_sym_preproc_include_token1] = ACTIONS(2563), + [aux_sym_preproc_def_token1] = ACTIONS(2563), + [aux_sym_preproc_if_token1] = ACTIONS(2563), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2563), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2563), + [sym_preproc_directive] = ACTIONS(2563), + [anon_sym_LPAREN2] = ACTIONS(2565), + [anon_sym_BANG] = ACTIONS(2565), + [anon_sym_TILDE] = ACTIONS(2565), + [anon_sym_DASH] = ACTIONS(2563), + [anon_sym_PLUS] = ACTIONS(2563), + [anon_sym_STAR] = ACTIONS(2565), + [anon_sym_AMP_AMP] = ACTIONS(2565), + [anon_sym_AMP] = ACTIONS(2563), + [anon_sym_SEMI] = ACTIONS(2565), + [anon_sym_typedef] = ACTIONS(2563), + [anon_sym_extern] = ACTIONS(2563), + [anon_sym___attribute__] = ACTIONS(2563), + [anon_sym_COLON_COLON] = ACTIONS(2565), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2565), + [anon_sym___declspec] = ACTIONS(2563), + [anon_sym___based] = ACTIONS(2563), + [anon_sym___cdecl] = ACTIONS(2563), + [anon_sym___clrcall] = ACTIONS(2563), + [anon_sym___stdcall] = ACTIONS(2563), + [anon_sym___fastcall] = ACTIONS(2563), + [anon_sym___thiscall] = ACTIONS(2563), + [anon_sym___vectorcall] = ACTIONS(2563), + [anon_sym_LBRACE] = ACTIONS(2565), + [anon_sym_RBRACE] = ACTIONS(2565), + [anon_sym_LBRACK] = ACTIONS(2563), + [anon_sym_static] = ACTIONS(2563), + [anon_sym_register] = ACTIONS(2563), + [anon_sym_inline] = ACTIONS(2563), + [anon_sym_thread_local] = ACTIONS(2563), + [anon_sym_const] = ACTIONS(2563), + [anon_sym_volatile] = ACTIONS(2563), + [anon_sym_restrict] = ACTIONS(2563), + [anon_sym__Atomic] = ACTIONS(2563), + [anon_sym_mutable] = ACTIONS(2563), + [anon_sym_constexpr] = ACTIONS(2563), + [anon_sym_constinit] = ACTIONS(2563), + [anon_sym_consteval] = ACTIONS(2563), + [anon_sym_signed] = ACTIONS(2563), + [anon_sym_unsigned] = ACTIONS(2563), + [anon_sym_long] = ACTIONS(2563), + [anon_sym_short] = ACTIONS(2563), + [sym_primitive_type] = ACTIONS(2563), + [anon_sym_enum] = ACTIONS(2563), + [anon_sym_class] = ACTIONS(2563), + [anon_sym_struct] = ACTIONS(2563), + [anon_sym_union] = ACTIONS(2563), + [anon_sym_if] = ACTIONS(2563), + [anon_sym_else] = ACTIONS(2563), + [anon_sym_switch] = ACTIONS(2563), + [anon_sym_case] = ACTIONS(2563), + [anon_sym_default] = ACTIONS(2563), + [anon_sym_while] = ACTIONS(2563), + [anon_sym_do] = ACTIONS(2563), + [anon_sym_for] = ACTIONS(2563), + [anon_sym_return] = ACTIONS(2563), + [anon_sym_break] = ACTIONS(2563), + [anon_sym_continue] = ACTIONS(2563), + [anon_sym_goto] = ACTIONS(2563), + [anon_sym_not] = ACTIONS(2563), + [anon_sym_compl] = ACTIONS(2563), + [anon_sym_DASH_DASH] = ACTIONS(2565), + [anon_sym_PLUS_PLUS] = ACTIONS(2565), + [anon_sym_sizeof] = ACTIONS(2563), + [sym_number_literal] = ACTIONS(2565), + [anon_sym_L_SQUOTE] = ACTIONS(2565), + [anon_sym_u_SQUOTE] = ACTIONS(2565), + [anon_sym_U_SQUOTE] = ACTIONS(2565), + [anon_sym_u8_SQUOTE] = ACTIONS(2565), + [anon_sym_SQUOTE] = ACTIONS(2565), + [anon_sym_L_DQUOTE] = ACTIONS(2565), + [anon_sym_u_DQUOTE] = ACTIONS(2565), + [anon_sym_U_DQUOTE] = ACTIONS(2565), + [anon_sym_u8_DQUOTE] = ACTIONS(2565), + [anon_sym_DQUOTE] = ACTIONS(2565), [sym_true] = ACTIONS(2563), [sym_false] = ACTIONS(2563), [sym_null] = ACTIONS(2563), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2573), - [anon_sym_co_await] = ACTIONS(2575), - [anon_sym_new] = ACTIONS(2577), - [anon_sym_requires] = ACTIONS(2579), + [sym_auto] = ACTIONS(2563), + [anon_sym_decltype] = ACTIONS(2563), + [anon_sym_virtual] = ACTIONS(2563), + [anon_sym_explicit] = ACTIONS(2563), + [anon_sym_typename] = ACTIONS(2563), + [anon_sym_template] = ACTIONS(2563), + [anon_sym_operator] = ACTIONS(2563), + [anon_sym_try] = ACTIONS(2563), + [anon_sym_delete] = ACTIONS(2563), + [anon_sym_throw] = ACTIONS(2563), + [anon_sym_namespace] = ACTIONS(2563), + [anon_sym_using] = ACTIONS(2563), + [anon_sym_static_assert] = ACTIONS(2563), + [anon_sym_concept] = ACTIONS(2563), + [anon_sym_co_return] = ACTIONS(2563), + [anon_sym_co_yield] = ACTIONS(2563), + [anon_sym_co_await] = ACTIONS(2563), + [anon_sym_new] = ACTIONS(2563), + [anon_sym_requires] = ACTIONS(2563), [sym_this] = ACTIONS(2563), [sym_nullptr] = ACTIONS(2563), - [sym_raw_string_literal] = ACTIONS(2581), + [sym_raw_string_literal] = ACTIONS(2565), }, - [1360] = { - [sym__expression] = STATE(2602), - [sym_conditional_expression] = STATE(2541), - [sym_assignment_expression] = STATE(2541), - [sym_pointer_expression] = STATE(2531), - [sym_unary_expression] = STATE(2541), - [sym_binary_expression] = STATE(2541), - [sym_update_expression] = STATE(2541), - [sym_cast_expression] = STATE(2541), - [sym_sizeof_expression] = STATE(2541), - [sym_subscript_expression] = STATE(2531), - [sym_call_expression] = STATE(2531), - [sym_field_expression] = STATE(2531), - [sym_compound_literal_expression] = STATE(2541), - [sym_parenthesized_expression] = STATE(2531), - [sym_initializer_list] = STATE(2606), - [sym_char_literal] = STATE(2481), - [sym_concatenated_string] = STATE(2481), - [sym_string_literal] = STATE(2063), - [sym__class_name] = STATE(6239), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2541), - [sym_co_await_expression] = STATE(2541), - [sym_new_expression] = STATE(2541), - [sym_delete_expression] = STATE(2541), - [sym_requires_clause] = STATE(2541), - [sym_requires_expression] = STATE(2541), - [sym_lambda_expression] = STATE(2541), - [sym_lambda_capture_specifier] = STATE(4508), - [sym_fold_expression] = STATE(2541), - [sym_parameter_pack_expansion] = STATE(2541), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2531), - [sym_qualified_type_identifier] = STATE(6239), - [sym_user_defined_literal] = STATE(2541), - [sym_identifier] = ACTIONS(2306), - [anon_sym_LPAREN2] = ACTIONS(2310), - [anon_sym_BANG] = ACTIONS(2314), - [anon_sym_TILDE] = ACTIONS(2314), - [anon_sym_DASH] = ACTIONS(2312), - [anon_sym_PLUS] = ACTIONS(2312), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(2318), - [anon_sym_LBRACE] = ACTIONS(2320), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(2322), - [anon_sym_PLUS_PLUS] = ACTIONS(2322), - [anon_sym_sizeof] = ACTIONS(2324), - [sym_number_literal] = ACTIONS(2326), - [anon_sym_L_SQUOTE] = ACTIONS(2328), - [anon_sym_u_SQUOTE] = ACTIONS(2328), - [anon_sym_U_SQUOTE] = ACTIONS(2328), - [anon_sym_u8_SQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2328), - [anon_sym_L_DQUOTE] = ACTIONS(2330), - [anon_sym_u_DQUOTE] = ACTIONS(2330), - [anon_sym_U_DQUOTE] = ACTIONS(2330), - [anon_sym_u8_DQUOTE] = ACTIONS(2330), - [anon_sym_DQUOTE] = ACTIONS(2330), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2334), - [anon_sym_co_await] = ACTIONS(2336), - [anon_sym_new] = ACTIONS(2338), - [anon_sym_requires] = ACTIONS(2340), - [sym_this] = ACTIONS(2332), - [sym_nullptr] = ACTIONS(2332), - [sym_raw_string_literal] = ACTIONS(2342), + [898] = { + [ts_builtin_sym_end] = ACTIONS(2523), + [sym_identifier] = ACTIONS(2521), + [aux_sym_preproc_include_token1] = ACTIONS(2521), + [aux_sym_preproc_def_token1] = ACTIONS(2521), + [aux_sym_preproc_if_token1] = ACTIONS(2521), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2521), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2521), + [sym_preproc_directive] = ACTIONS(2521), + [anon_sym_LPAREN2] = ACTIONS(2523), + [anon_sym_BANG] = ACTIONS(2523), + [anon_sym_TILDE] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2521), + [anon_sym_PLUS] = ACTIONS(2521), + [anon_sym_STAR] = ACTIONS(2523), + [anon_sym_AMP_AMP] = ACTIONS(2523), + [anon_sym_AMP] = ACTIONS(2521), + [anon_sym_SEMI] = ACTIONS(2523), + [anon_sym_typedef] = ACTIONS(2521), + [anon_sym_extern] = ACTIONS(2521), + [anon_sym___attribute__] = ACTIONS(2521), + [anon_sym_COLON_COLON] = ACTIONS(2523), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2523), + [anon_sym___declspec] = ACTIONS(2521), + [anon_sym___based] = ACTIONS(2521), + [anon_sym___cdecl] = ACTIONS(2521), + [anon_sym___clrcall] = ACTIONS(2521), + [anon_sym___stdcall] = ACTIONS(2521), + [anon_sym___fastcall] = ACTIONS(2521), + [anon_sym___thiscall] = ACTIONS(2521), + [anon_sym___vectorcall] = ACTIONS(2521), + [anon_sym_LBRACE] = ACTIONS(2523), + [anon_sym_LBRACK] = ACTIONS(2521), + [anon_sym_static] = ACTIONS(2521), + [anon_sym_register] = ACTIONS(2521), + [anon_sym_inline] = ACTIONS(2521), + [anon_sym_thread_local] = ACTIONS(2521), + [anon_sym_const] = ACTIONS(2521), + [anon_sym_volatile] = ACTIONS(2521), + [anon_sym_restrict] = ACTIONS(2521), + [anon_sym__Atomic] = ACTIONS(2521), + [anon_sym_mutable] = ACTIONS(2521), + [anon_sym_constexpr] = ACTIONS(2521), + [anon_sym_constinit] = ACTIONS(2521), + [anon_sym_consteval] = ACTIONS(2521), + [anon_sym_signed] = ACTIONS(2521), + [anon_sym_unsigned] = ACTIONS(2521), + [anon_sym_long] = ACTIONS(2521), + [anon_sym_short] = ACTIONS(2521), + [sym_primitive_type] = ACTIONS(2521), + [anon_sym_enum] = ACTIONS(2521), + [anon_sym_class] = ACTIONS(2521), + [anon_sym_struct] = ACTIONS(2521), + [anon_sym_union] = ACTIONS(2521), + [anon_sym_if] = ACTIONS(2521), + [anon_sym_else] = ACTIONS(2521), + [anon_sym_switch] = ACTIONS(2521), + [anon_sym_case] = ACTIONS(2521), + [anon_sym_default] = ACTIONS(2521), + [anon_sym_while] = ACTIONS(2521), + [anon_sym_do] = ACTIONS(2521), + [anon_sym_for] = ACTIONS(2521), + [anon_sym_return] = ACTIONS(2521), + [anon_sym_break] = ACTIONS(2521), + [anon_sym_continue] = ACTIONS(2521), + [anon_sym_goto] = ACTIONS(2521), + [anon_sym_not] = ACTIONS(2521), + [anon_sym_compl] = ACTIONS(2521), + [anon_sym_DASH_DASH] = ACTIONS(2523), + [anon_sym_PLUS_PLUS] = ACTIONS(2523), + [anon_sym_sizeof] = ACTIONS(2521), + [sym_number_literal] = ACTIONS(2523), + [anon_sym_L_SQUOTE] = ACTIONS(2523), + [anon_sym_u_SQUOTE] = ACTIONS(2523), + [anon_sym_U_SQUOTE] = ACTIONS(2523), + [anon_sym_u8_SQUOTE] = ACTIONS(2523), + [anon_sym_SQUOTE] = ACTIONS(2523), + [anon_sym_L_DQUOTE] = ACTIONS(2523), + [anon_sym_u_DQUOTE] = ACTIONS(2523), + [anon_sym_U_DQUOTE] = ACTIONS(2523), + [anon_sym_u8_DQUOTE] = ACTIONS(2523), + [anon_sym_DQUOTE] = ACTIONS(2523), + [sym_true] = ACTIONS(2521), + [sym_false] = ACTIONS(2521), + [sym_null] = ACTIONS(2521), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2521), + [anon_sym_decltype] = ACTIONS(2521), + [anon_sym_virtual] = ACTIONS(2521), + [anon_sym_explicit] = ACTIONS(2521), + [anon_sym_typename] = ACTIONS(2521), + [anon_sym_template] = ACTIONS(2521), + [anon_sym_operator] = ACTIONS(2521), + [anon_sym_try] = ACTIONS(2521), + [anon_sym_delete] = ACTIONS(2521), + [anon_sym_throw] = ACTIONS(2521), + [anon_sym_namespace] = ACTIONS(2521), + [anon_sym_using] = ACTIONS(2521), + [anon_sym_static_assert] = ACTIONS(2521), + [anon_sym_concept] = ACTIONS(2521), + [anon_sym_co_return] = ACTIONS(2521), + [anon_sym_co_yield] = ACTIONS(2521), + [anon_sym_co_await] = ACTIONS(2521), + [anon_sym_new] = ACTIONS(2521), + [anon_sym_requires] = ACTIONS(2521), + [sym_this] = ACTIONS(2521), + [sym_nullptr] = ACTIONS(2521), + [sym_raw_string_literal] = ACTIONS(2523), }, - [1361] = { - [sym__expression] = STATE(3616), - [sym_comma_expression] = STATE(6749), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_RPAREN] = ACTIONS(3472), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [899] = { + [sym_identifier] = ACTIONS(2571), + [aux_sym_preproc_include_token1] = ACTIONS(2571), + [aux_sym_preproc_def_token1] = ACTIONS(2571), + [aux_sym_preproc_if_token1] = ACTIONS(2571), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2571), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2571), + [sym_preproc_directive] = ACTIONS(2571), + [anon_sym_LPAREN2] = ACTIONS(2573), + [anon_sym_BANG] = ACTIONS(2573), + [anon_sym_TILDE] = ACTIONS(2573), + [anon_sym_DASH] = ACTIONS(2571), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_STAR] = ACTIONS(2573), + [anon_sym_AMP_AMP] = ACTIONS(2573), + [anon_sym_AMP] = ACTIONS(2571), + [anon_sym_SEMI] = ACTIONS(2573), + [anon_sym_typedef] = ACTIONS(2571), + [anon_sym_extern] = ACTIONS(2571), + [anon_sym___attribute__] = ACTIONS(2571), + [anon_sym_COLON_COLON] = ACTIONS(2573), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2573), + [anon_sym___declspec] = ACTIONS(2571), + [anon_sym___based] = ACTIONS(2571), + [anon_sym___cdecl] = ACTIONS(2571), + [anon_sym___clrcall] = ACTIONS(2571), + [anon_sym___stdcall] = ACTIONS(2571), + [anon_sym___fastcall] = ACTIONS(2571), + [anon_sym___thiscall] = ACTIONS(2571), + [anon_sym___vectorcall] = ACTIONS(2571), + [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_RBRACE] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(2571), + [anon_sym_static] = ACTIONS(2571), + [anon_sym_register] = ACTIONS(2571), + [anon_sym_inline] = ACTIONS(2571), + [anon_sym_thread_local] = ACTIONS(2571), + [anon_sym_const] = ACTIONS(2571), + [anon_sym_volatile] = ACTIONS(2571), + [anon_sym_restrict] = ACTIONS(2571), + [anon_sym__Atomic] = ACTIONS(2571), + [anon_sym_mutable] = ACTIONS(2571), + [anon_sym_constexpr] = ACTIONS(2571), + [anon_sym_constinit] = ACTIONS(2571), + [anon_sym_consteval] = ACTIONS(2571), + [anon_sym_signed] = ACTIONS(2571), + [anon_sym_unsigned] = ACTIONS(2571), + [anon_sym_long] = ACTIONS(2571), + [anon_sym_short] = ACTIONS(2571), + [sym_primitive_type] = ACTIONS(2571), + [anon_sym_enum] = ACTIONS(2571), + [anon_sym_class] = ACTIONS(2571), + [anon_sym_struct] = ACTIONS(2571), + [anon_sym_union] = ACTIONS(2571), + [anon_sym_if] = ACTIONS(2571), + [anon_sym_else] = ACTIONS(2571), + [anon_sym_switch] = ACTIONS(2571), + [anon_sym_case] = ACTIONS(2571), + [anon_sym_default] = ACTIONS(2571), + [anon_sym_while] = ACTIONS(2571), + [anon_sym_do] = ACTIONS(2571), + [anon_sym_for] = ACTIONS(2571), + [anon_sym_return] = ACTIONS(2571), + [anon_sym_break] = ACTIONS(2571), + [anon_sym_continue] = ACTIONS(2571), + [anon_sym_goto] = ACTIONS(2571), + [anon_sym_not] = ACTIONS(2571), + [anon_sym_compl] = ACTIONS(2571), + [anon_sym_DASH_DASH] = ACTIONS(2573), + [anon_sym_PLUS_PLUS] = ACTIONS(2573), + [anon_sym_sizeof] = ACTIONS(2571), + [sym_number_literal] = ACTIONS(2573), + [anon_sym_L_SQUOTE] = ACTIONS(2573), + [anon_sym_u_SQUOTE] = ACTIONS(2573), + [anon_sym_U_SQUOTE] = ACTIONS(2573), + [anon_sym_u8_SQUOTE] = ACTIONS(2573), + [anon_sym_SQUOTE] = ACTIONS(2573), + [anon_sym_L_DQUOTE] = ACTIONS(2573), + [anon_sym_u_DQUOTE] = ACTIONS(2573), + [anon_sym_U_DQUOTE] = ACTIONS(2573), + [anon_sym_u8_DQUOTE] = ACTIONS(2573), + [anon_sym_DQUOTE] = ACTIONS(2573), + [sym_true] = ACTIONS(2571), + [sym_false] = ACTIONS(2571), + [sym_null] = ACTIONS(2571), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2571), + [anon_sym_decltype] = ACTIONS(2571), + [anon_sym_virtual] = ACTIONS(2571), + [anon_sym_explicit] = ACTIONS(2571), + [anon_sym_typename] = ACTIONS(2571), + [anon_sym_template] = ACTIONS(2571), + [anon_sym_operator] = ACTIONS(2571), + [anon_sym_try] = ACTIONS(2571), + [anon_sym_delete] = ACTIONS(2571), + [anon_sym_throw] = ACTIONS(2571), + [anon_sym_namespace] = ACTIONS(2571), + [anon_sym_using] = ACTIONS(2571), + [anon_sym_static_assert] = ACTIONS(2571), + [anon_sym_concept] = ACTIONS(2571), + [anon_sym_co_return] = ACTIONS(2571), + [anon_sym_co_yield] = ACTIONS(2571), + [anon_sym_co_await] = ACTIONS(2571), + [anon_sym_new] = ACTIONS(2571), + [anon_sym_requires] = ACTIONS(2571), + [sym_this] = ACTIONS(2571), + [sym_nullptr] = ACTIONS(2571), + [sym_raw_string_literal] = ACTIONS(2573), }, - [1362] = { - [sym__expression] = STATE(3601), - [sym_comma_expression] = STATE(6576), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_RPAREN] = ACTIONS(3474), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [900] = { + [sym_identifier] = ACTIONS(2575), + [aux_sym_preproc_include_token1] = ACTIONS(2575), + [aux_sym_preproc_def_token1] = ACTIONS(2575), + [aux_sym_preproc_if_token1] = ACTIONS(2575), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2575), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2575), + [sym_preproc_directive] = ACTIONS(2575), + [anon_sym_LPAREN2] = ACTIONS(2577), + [anon_sym_BANG] = ACTIONS(2577), + [anon_sym_TILDE] = ACTIONS(2577), + [anon_sym_DASH] = ACTIONS(2575), + [anon_sym_PLUS] = ACTIONS(2575), + [anon_sym_STAR] = ACTIONS(2577), + [anon_sym_AMP_AMP] = ACTIONS(2577), + [anon_sym_AMP] = ACTIONS(2575), + [anon_sym_SEMI] = ACTIONS(2577), + [anon_sym_typedef] = ACTIONS(2575), + [anon_sym_extern] = ACTIONS(2575), + [anon_sym___attribute__] = ACTIONS(2575), + [anon_sym_COLON_COLON] = ACTIONS(2577), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2577), + [anon_sym___declspec] = ACTIONS(2575), + [anon_sym___based] = ACTIONS(2575), + [anon_sym___cdecl] = ACTIONS(2575), + [anon_sym___clrcall] = ACTIONS(2575), + [anon_sym___stdcall] = ACTIONS(2575), + [anon_sym___fastcall] = ACTIONS(2575), + [anon_sym___thiscall] = ACTIONS(2575), + [anon_sym___vectorcall] = ACTIONS(2575), + [anon_sym_LBRACE] = ACTIONS(2577), + [anon_sym_RBRACE] = ACTIONS(2577), + [anon_sym_LBRACK] = ACTIONS(2575), + [anon_sym_static] = ACTIONS(2575), + [anon_sym_register] = ACTIONS(2575), + [anon_sym_inline] = ACTIONS(2575), + [anon_sym_thread_local] = ACTIONS(2575), + [anon_sym_const] = ACTIONS(2575), + [anon_sym_volatile] = ACTIONS(2575), + [anon_sym_restrict] = ACTIONS(2575), + [anon_sym__Atomic] = ACTIONS(2575), + [anon_sym_mutable] = ACTIONS(2575), + [anon_sym_constexpr] = ACTIONS(2575), + [anon_sym_constinit] = ACTIONS(2575), + [anon_sym_consteval] = ACTIONS(2575), + [anon_sym_signed] = ACTIONS(2575), + [anon_sym_unsigned] = ACTIONS(2575), + [anon_sym_long] = ACTIONS(2575), + [anon_sym_short] = ACTIONS(2575), + [sym_primitive_type] = ACTIONS(2575), + [anon_sym_enum] = ACTIONS(2575), + [anon_sym_class] = ACTIONS(2575), + [anon_sym_struct] = ACTIONS(2575), + [anon_sym_union] = ACTIONS(2575), + [anon_sym_if] = ACTIONS(2575), + [anon_sym_else] = ACTIONS(2575), + [anon_sym_switch] = ACTIONS(2575), + [anon_sym_case] = ACTIONS(2575), + [anon_sym_default] = ACTIONS(2575), + [anon_sym_while] = ACTIONS(2575), + [anon_sym_do] = ACTIONS(2575), + [anon_sym_for] = ACTIONS(2575), + [anon_sym_return] = ACTIONS(2575), + [anon_sym_break] = ACTIONS(2575), + [anon_sym_continue] = ACTIONS(2575), + [anon_sym_goto] = ACTIONS(2575), + [anon_sym_not] = ACTIONS(2575), + [anon_sym_compl] = ACTIONS(2575), + [anon_sym_DASH_DASH] = ACTIONS(2577), + [anon_sym_PLUS_PLUS] = ACTIONS(2577), + [anon_sym_sizeof] = ACTIONS(2575), + [sym_number_literal] = ACTIONS(2577), + [anon_sym_L_SQUOTE] = ACTIONS(2577), + [anon_sym_u_SQUOTE] = ACTIONS(2577), + [anon_sym_U_SQUOTE] = ACTIONS(2577), + [anon_sym_u8_SQUOTE] = ACTIONS(2577), + [anon_sym_SQUOTE] = ACTIONS(2577), + [anon_sym_L_DQUOTE] = ACTIONS(2577), + [anon_sym_u_DQUOTE] = ACTIONS(2577), + [anon_sym_U_DQUOTE] = ACTIONS(2577), + [anon_sym_u8_DQUOTE] = ACTIONS(2577), + [anon_sym_DQUOTE] = ACTIONS(2577), + [sym_true] = ACTIONS(2575), + [sym_false] = ACTIONS(2575), + [sym_null] = ACTIONS(2575), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2575), + [anon_sym_decltype] = ACTIONS(2575), + [anon_sym_virtual] = ACTIONS(2575), + [anon_sym_explicit] = ACTIONS(2575), + [anon_sym_typename] = ACTIONS(2575), + [anon_sym_template] = ACTIONS(2575), + [anon_sym_operator] = ACTIONS(2575), + [anon_sym_try] = ACTIONS(2575), + [anon_sym_delete] = ACTIONS(2575), + [anon_sym_throw] = ACTIONS(2575), + [anon_sym_namespace] = ACTIONS(2575), + [anon_sym_using] = ACTIONS(2575), + [anon_sym_static_assert] = ACTIONS(2575), + [anon_sym_concept] = ACTIONS(2575), + [anon_sym_co_return] = ACTIONS(2575), + [anon_sym_co_yield] = ACTIONS(2575), + [anon_sym_co_await] = ACTIONS(2575), + [anon_sym_new] = ACTIONS(2575), + [anon_sym_requires] = ACTIONS(2575), + [sym_this] = ACTIONS(2575), + [sym_nullptr] = ACTIONS(2575), + [sym_raw_string_literal] = ACTIONS(2577), }, - [1363] = { - [sym__expression] = STATE(3595), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_initializer_list] = STATE(6133), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1465), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [901] = { + [sym_identifier] = ACTIONS(2583), + [aux_sym_preproc_include_token1] = ACTIONS(2583), + [aux_sym_preproc_def_token1] = ACTIONS(2583), + [aux_sym_preproc_if_token1] = ACTIONS(2583), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2583), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2583), + [sym_preproc_directive] = ACTIONS(2583), + [anon_sym_LPAREN2] = ACTIONS(2585), + [anon_sym_BANG] = ACTIONS(2585), + [anon_sym_TILDE] = ACTIONS(2585), + [anon_sym_DASH] = ACTIONS(2583), + [anon_sym_PLUS] = ACTIONS(2583), + [anon_sym_STAR] = ACTIONS(2585), + [anon_sym_AMP_AMP] = ACTIONS(2585), + [anon_sym_AMP] = ACTIONS(2583), + [anon_sym_SEMI] = ACTIONS(2585), + [anon_sym_typedef] = ACTIONS(2583), + [anon_sym_extern] = ACTIONS(2583), + [anon_sym___attribute__] = ACTIONS(2583), + [anon_sym_COLON_COLON] = ACTIONS(2585), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2585), + [anon_sym___declspec] = ACTIONS(2583), + [anon_sym___based] = ACTIONS(2583), + [anon_sym___cdecl] = ACTIONS(2583), + [anon_sym___clrcall] = ACTIONS(2583), + [anon_sym___stdcall] = ACTIONS(2583), + [anon_sym___fastcall] = ACTIONS(2583), + [anon_sym___thiscall] = ACTIONS(2583), + [anon_sym___vectorcall] = ACTIONS(2583), + [anon_sym_LBRACE] = ACTIONS(2585), + [anon_sym_RBRACE] = ACTIONS(2585), + [anon_sym_LBRACK] = ACTIONS(2583), + [anon_sym_static] = ACTIONS(2583), + [anon_sym_register] = ACTIONS(2583), + [anon_sym_inline] = ACTIONS(2583), + [anon_sym_thread_local] = ACTIONS(2583), + [anon_sym_const] = ACTIONS(2583), + [anon_sym_volatile] = ACTIONS(2583), + [anon_sym_restrict] = ACTIONS(2583), + [anon_sym__Atomic] = ACTIONS(2583), + [anon_sym_mutable] = ACTIONS(2583), + [anon_sym_constexpr] = ACTIONS(2583), + [anon_sym_constinit] = ACTIONS(2583), + [anon_sym_consteval] = ACTIONS(2583), + [anon_sym_signed] = ACTIONS(2583), + [anon_sym_unsigned] = ACTIONS(2583), + [anon_sym_long] = ACTIONS(2583), + [anon_sym_short] = ACTIONS(2583), + [sym_primitive_type] = ACTIONS(2583), + [anon_sym_enum] = ACTIONS(2583), + [anon_sym_class] = ACTIONS(2583), + [anon_sym_struct] = ACTIONS(2583), + [anon_sym_union] = ACTIONS(2583), + [anon_sym_if] = ACTIONS(2583), + [anon_sym_else] = ACTIONS(2583), + [anon_sym_switch] = ACTIONS(2583), + [anon_sym_case] = ACTIONS(2583), + [anon_sym_default] = ACTIONS(2583), + [anon_sym_while] = ACTIONS(2583), + [anon_sym_do] = ACTIONS(2583), + [anon_sym_for] = ACTIONS(2583), + [anon_sym_return] = ACTIONS(2583), + [anon_sym_break] = ACTIONS(2583), + [anon_sym_continue] = ACTIONS(2583), + [anon_sym_goto] = ACTIONS(2583), + [anon_sym_not] = ACTIONS(2583), + [anon_sym_compl] = ACTIONS(2583), + [anon_sym_DASH_DASH] = ACTIONS(2585), + [anon_sym_PLUS_PLUS] = ACTIONS(2585), + [anon_sym_sizeof] = ACTIONS(2583), + [sym_number_literal] = ACTIONS(2585), + [anon_sym_L_SQUOTE] = ACTIONS(2585), + [anon_sym_u_SQUOTE] = ACTIONS(2585), + [anon_sym_U_SQUOTE] = ACTIONS(2585), + [anon_sym_u8_SQUOTE] = ACTIONS(2585), + [anon_sym_SQUOTE] = ACTIONS(2585), + [anon_sym_L_DQUOTE] = ACTIONS(2585), + [anon_sym_u_DQUOTE] = ACTIONS(2585), + [anon_sym_U_DQUOTE] = ACTIONS(2585), + [anon_sym_u8_DQUOTE] = ACTIONS(2585), + [anon_sym_DQUOTE] = ACTIONS(2585), + [sym_true] = ACTIONS(2583), + [sym_false] = ACTIONS(2583), + [sym_null] = ACTIONS(2583), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2583), + [anon_sym_decltype] = ACTIONS(2583), + [anon_sym_virtual] = ACTIONS(2583), + [anon_sym_explicit] = ACTIONS(2583), + [anon_sym_typename] = ACTIONS(2583), + [anon_sym_template] = ACTIONS(2583), + [anon_sym_operator] = ACTIONS(2583), + [anon_sym_try] = ACTIONS(2583), + [anon_sym_delete] = ACTIONS(2583), + [anon_sym_throw] = ACTIONS(2583), + [anon_sym_namespace] = ACTIONS(2583), + [anon_sym_using] = ACTIONS(2583), + [anon_sym_static_assert] = ACTIONS(2583), + [anon_sym_concept] = ACTIONS(2583), + [anon_sym_co_return] = ACTIONS(2583), + [anon_sym_co_yield] = ACTIONS(2583), + [anon_sym_co_await] = ACTIONS(2583), + [anon_sym_new] = ACTIONS(2583), + [anon_sym_requires] = ACTIONS(2583), + [sym_this] = ACTIONS(2583), + [sym_nullptr] = ACTIONS(2583), + [sym_raw_string_literal] = ACTIONS(2585), }, - [1364] = { - [sym__expression] = STATE(3906), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(3196), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(3196), - [sym_call_expression] = STATE(3196), - [sym_field_expression] = STATE(3196), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(3196), - [sym_initializer_list] = STATE(3429), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(3196), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN2] = ACTIONS(3061), - [anon_sym_BANG] = ACTIONS(3065), - [anon_sym_TILDE] = ACTIONS(3065), - [anon_sym_DASH] = ACTIONS(3063), - [anon_sym_PLUS] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(3069), - [anon_sym_LBRACE] = ACTIONS(1465), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3071), - [anon_sym_PLUS_PLUS] = ACTIONS(3071), - [anon_sym_sizeof] = ACTIONS(3073), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [902] = { + [ts_builtin_sym_end] = ACTIONS(2597), + [sym_identifier] = ACTIONS(2595), + [aux_sym_preproc_include_token1] = ACTIONS(2595), + [aux_sym_preproc_def_token1] = ACTIONS(2595), + [aux_sym_preproc_if_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2595), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2595), + [sym_preproc_directive] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP_AMP] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym___based] = ACTIONS(2595), + [anon_sym___cdecl] = ACTIONS(2595), + [anon_sym___clrcall] = ACTIONS(2595), + [anon_sym___stdcall] = ACTIONS(2595), + [anon_sym___fastcall] = ACTIONS(2595), + [anon_sym___thiscall] = ACTIONS(2595), + [anon_sym___vectorcall] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_case] = ACTIONS(2595), + [anon_sym_default] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3075), - [anon_sym_co_await] = ACTIONS(3077), - [anon_sym_new] = ACTIONS(3079), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_explicit] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_operator] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_using] = ACTIONS(2595), + [anon_sym_static_assert] = ACTIONS(2595), + [anon_sym_concept] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1365] = { - [sym__expression] = STATE(3812), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_initializer_list] = STATE(6746), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1465), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [903] = { + [ts_builtin_sym_end] = ACTIONS(2501), + [sym_identifier] = ACTIONS(2499), + [aux_sym_preproc_include_token1] = ACTIONS(2499), + [aux_sym_preproc_def_token1] = ACTIONS(2499), + [aux_sym_preproc_if_token1] = ACTIONS(2499), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2499), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2499), + [sym_preproc_directive] = ACTIONS(2499), + [anon_sym_LPAREN2] = ACTIONS(2501), + [anon_sym_BANG] = ACTIONS(2501), + [anon_sym_TILDE] = ACTIONS(2501), + [anon_sym_DASH] = ACTIONS(2499), + [anon_sym_PLUS] = ACTIONS(2499), + [anon_sym_STAR] = ACTIONS(2501), + [anon_sym_AMP_AMP] = ACTIONS(2501), + [anon_sym_AMP] = ACTIONS(2499), + [anon_sym_SEMI] = ACTIONS(2501), + [anon_sym_typedef] = ACTIONS(2499), + [anon_sym_extern] = ACTIONS(2499), + [anon_sym___attribute__] = ACTIONS(2499), + [anon_sym_COLON_COLON] = ACTIONS(2501), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2501), + [anon_sym___declspec] = ACTIONS(2499), + [anon_sym___based] = ACTIONS(2499), + [anon_sym___cdecl] = ACTIONS(2499), + [anon_sym___clrcall] = ACTIONS(2499), + [anon_sym___stdcall] = ACTIONS(2499), + [anon_sym___fastcall] = ACTIONS(2499), + [anon_sym___thiscall] = ACTIONS(2499), + [anon_sym___vectorcall] = ACTIONS(2499), + [anon_sym_LBRACE] = ACTIONS(2501), + [anon_sym_LBRACK] = ACTIONS(2499), + [anon_sym_static] = ACTIONS(2499), + [anon_sym_register] = ACTIONS(2499), + [anon_sym_inline] = ACTIONS(2499), + [anon_sym_thread_local] = ACTIONS(2499), + [anon_sym_const] = ACTIONS(2499), + [anon_sym_volatile] = ACTIONS(2499), + [anon_sym_restrict] = ACTIONS(2499), + [anon_sym__Atomic] = ACTIONS(2499), + [anon_sym_mutable] = ACTIONS(2499), + [anon_sym_constexpr] = ACTIONS(2499), + [anon_sym_constinit] = ACTIONS(2499), + [anon_sym_consteval] = ACTIONS(2499), + [anon_sym_signed] = ACTIONS(2499), + [anon_sym_unsigned] = ACTIONS(2499), + [anon_sym_long] = ACTIONS(2499), + [anon_sym_short] = ACTIONS(2499), + [sym_primitive_type] = ACTIONS(2499), + [anon_sym_enum] = ACTIONS(2499), + [anon_sym_class] = ACTIONS(2499), + [anon_sym_struct] = ACTIONS(2499), + [anon_sym_union] = ACTIONS(2499), + [anon_sym_if] = ACTIONS(2499), + [anon_sym_else] = ACTIONS(2499), + [anon_sym_switch] = ACTIONS(2499), + [anon_sym_case] = ACTIONS(2499), + [anon_sym_default] = ACTIONS(2499), + [anon_sym_while] = ACTIONS(2499), + [anon_sym_do] = ACTIONS(2499), + [anon_sym_for] = ACTIONS(2499), + [anon_sym_return] = ACTIONS(2499), + [anon_sym_break] = ACTIONS(2499), + [anon_sym_continue] = ACTIONS(2499), + [anon_sym_goto] = ACTIONS(2499), + [anon_sym_not] = ACTIONS(2499), + [anon_sym_compl] = ACTIONS(2499), + [anon_sym_DASH_DASH] = ACTIONS(2501), + [anon_sym_PLUS_PLUS] = ACTIONS(2501), + [anon_sym_sizeof] = ACTIONS(2499), + [sym_number_literal] = ACTIONS(2501), + [anon_sym_L_SQUOTE] = ACTIONS(2501), + [anon_sym_u_SQUOTE] = ACTIONS(2501), + [anon_sym_U_SQUOTE] = ACTIONS(2501), + [anon_sym_u8_SQUOTE] = ACTIONS(2501), + [anon_sym_SQUOTE] = ACTIONS(2501), + [anon_sym_L_DQUOTE] = ACTIONS(2501), + [anon_sym_u_DQUOTE] = ACTIONS(2501), + [anon_sym_U_DQUOTE] = ACTIONS(2501), + [anon_sym_u8_DQUOTE] = ACTIONS(2501), + [anon_sym_DQUOTE] = ACTIONS(2501), + [sym_true] = ACTIONS(2499), + [sym_false] = ACTIONS(2499), + [sym_null] = ACTIONS(2499), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2499), + [anon_sym_decltype] = ACTIONS(2499), + [anon_sym_virtual] = ACTIONS(2499), + [anon_sym_explicit] = ACTIONS(2499), + [anon_sym_typename] = ACTIONS(2499), + [anon_sym_template] = ACTIONS(2499), + [anon_sym_operator] = ACTIONS(2499), + [anon_sym_try] = ACTIONS(2499), + [anon_sym_delete] = ACTIONS(2499), + [anon_sym_throw] = ACTIONS(2499), + [anon_sym_namespace] = ACTIONS(2499), + [anon_sym_using] = ACTIONS(2499), + [anon_sym_static_assert] = ACTIONS(2499), + [anon_sym_concept] = ACTIONS(2499), + [anon_sym_co_return] = ACTIONS(2499), + [anon_sym_co_yield] = ACTIONS(2499), + [anon_sym_co_await] = ACTIONS(2499), + [anon_sym_new] = ACTIONS(2499), + [anon_sym_requires] = ACTIONS(2499), + [sym_this] = ACTIONS(2499), + [sym_nullptr] = ACTIONS(2499), + [sym_raw_string_literal] = ACTIONS(2501), }, - [1366] = { - [sym__expression] = STATE(3626), - [sym_comma_expression] = STATE(6736), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_RPAREN] = ACTIONS(3476), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [904] = { + [ts_builtin_sym_end] = ACTIONS(2527), + [sym_identifier] = ACTIONS(2525), + [aux_sym_preproc_include_token1] = ACTIONS(2525), + [aux_sym_preproc_def_token1] = ACTIONS(2525), + [aux_sym_preproc_if_token1] = ACTIONS(2525), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2525), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2525), + [sym_preproc_directive] = ACTIONS(2525), + [anon_sym_LPAREN2] = ACTIONS(2527), + [anon_sym_BANG] = ACTIONS(2527), + [anon_sym_TILDE] = ACTIONS(2527), + [anon_sym_DASH] = ACTIONS(2525), + [anon_sym_PLUS] = ACTIONS(2525), + [anon_sym_STAR] = ACTIONS(2527), + [anon_sym_AMP_AMP] = ACTIONS(2527), + [anon_sym_AMP] = ACTIONS(2525), + [anon_sym_SEMI] = ACTIONS(2527), + [anon_sym_typedef] = ACTIONS(2525), + [anon_sym_extern] = ACTIONS(2525), + [anon_sym___attribute__] = ACTIONS(2525), + [anon_sym_COLON_COLON] = ACTIONS(2527), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2527), + [anon_sym___declspec] = ACTIONS(2525), + [anon_sym___based] = ACTIONS(2525), + [anon_sym___cdecl] = ACTIONS(2525), + [anon_sym___clrcall] = ACTIONS(2525), + [anon_sym___stdcall] = ACTIONS(2525), + [anon_sym___fastcall] = ACTIONS(2525), + [anon_sym___thiscall] = ACTIONS(2525), + [anon_sym___vectorcall] = ACTIONS(2525), + [anon_sym_LBRACE] = ACTIONS(2527), + [anon_sym_LBRACK] = ACTIONS(2525), + [anon_sym_static] = ACTIONS(2525), + [anon_sym_register] = ACTIONS(2525), + [anon_sym_inline] = ACTIONS(2525), + [anon_sym_thread_local] = ACTIONS(2525), + [anon_sym_const] = ACTIONS(2525), + [anon_sym_volatile] = ACTIONS(2525), + [anon_sym_restrict] = ACTIONS(2525), + [anon_sym__Atomic] = ACTIONS(2525), + [anon_sym_mutable] = ACTIONS(2525), + [anon_sym_constexpr] = ACTIONS(2525), + [anon_sym_constinit] = ACTIONS(2525), + [anon_sym_consteval] = ACTIONS(2525), + [anon_sym_signed] = ACTIONS(2525), + [anon_sym_unsigned] = ACTIONS(2525), + [anon_sym_long] = ACTIONS(2525), + [anon_sym_short] = ACTIONS(2525), + [sym_primitive_type] = ACTIONS(2525), + [anon_sym_enum] = ACTIONS(2525), + [anon_sym_class] = ACTIONS(2525), + [anon_sym_struct] = ACTIONS(2525), + [anon_sym_union] = ACTIONS(2525), + [anon_sym_if] = ACTIONS(2525), + [anon_sym_else] = ACTIONS(2525), + [anon_sym_switch] = ACTIONS(2525), + [anon_sym_case] = ACTIONS(2525), + [anon_sym_default] = ACTIONS(2525), + [anon_sym_while] = ACTIONS(2525), + [anon_sym_do] = ACTIONS(2525), + [anon_sym_for] = ACTIONS(2525), + [anon_sym_return] = ACTIONS(2525), + [anon_sym_break] = ACTIONS(2525), + [anon_sym_continue] = ACTIONS(2525), + [anon_sym_goto] = ACTIONS(2525), + [anon_sym_not] = ACTIONS(2525), + [anon_sym_compl] = ACTIONS(2525), + [anon_sym_DASH_DASH] = ACTIONS(2527), + [anon_sym_PLUS_PLUS] = ACTIONS(2527), + [anon_sym_sizeof] = ACTIONS(2525), + [sym_number_literal] = ACTIONS(2527), + [anon_sym_L_SQUOTE] = ACTIONS(2527), + [anon_sym_u_SQUOTE] = ACTIONS(2527), + [anon_sym_U_SQUOTE] = ACTIONS(2527), + [anon_sym_u8_SQUOTE] = ACTIONS(2527), + [anon_sym_SQUOTE] = ACTIONS(2527), + [anon_sym_L_DQUOTE] = ACTIONS(2527), + [anon_sym_u_DQUOTE] = ACTIONS(2527), + [anon_sym_U_DQUOTE] = ACTIONS(2527), + [anon_sym_u8_DQUOTE] = ACTIONS(2527), + [anon_sym_DQUOTE] = ACTIONS(2527), + [sym_true] = ACTIONS(2525), + [sym_false] = ACTIONS(2525), + [sym_null] = ACTIONS(2525), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2525), + [anon_sym_decltype] = ACTIONS(2525), + [anon_sym_virtual] = ACTIONS(2525), + [anon_sym_explicit] = ACTIONS(2525), + [anon_sym_typename] = ACTIONS(2525), + [anon_sym_template] = ACTIONS(2525), + [anon_sym_operator] = ACTIONS(2525), + [anon_sym_try] = ACTIONS(2525), + [anon_sym_delete] = ACTIONS(2525), + [anon_sym_throw] = ACTIONS(2525), + [anon_sym_namespace] = ACTIONS(2525), + [anon_sym_using] = ACTIONS(2525), + [anon_sym_static_assert] = ACTIONS(2525), + [anon_sym_concept] = ACTIONS(2525), + [anon_sym_co_return] = ACTIONS(2525), + [anon_sym_co_yield] = ACTIONS(2525), + [anon_sym_co_await] = ACTIONS(2525), + [anon_sym_new] = ACTIONS(2525), + [anon_sym_requires] = ACTIONS(2525), + [sym_this] = ACTIONS(2525), + [sym_nullptr] = ACTIONS(2525), + [sym_raw_string_literal] = ACTIONS(2527), }, - [1367] = { - [sym__expression] = STATE(3649), - [sym_comma_expression] = STATE(6514), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_RPAREN] = ACTIONS(3478), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [905] = { + [ts_builtin_sym_end] = ACTIONS(2743), + [sym_identifier] = ACTIONS(2741), + [aux_sym_preproc_include_token1] = ACTIONS(2741), + [aux_sym_preproc_def_token1] = ACTIONS(2741), + [aux_sym_preproc_if_token1] = ACTIONS(2741), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2741), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2741), + [sym_preproc_directive] = ACTIONS(2741), + [anon_sym_LPAREN2] = ACTIONS(2743), + [anon_sym_BANG] = ACTIONS(2743), + [anon_sym_TILDE] = ACTIONS(2743), + [anon_sym_DASH] = ACTIONS(2741), + [anon_sym_PLUS] = ACTIONS(2741), + [anon_sym_STAR] = ACTIONS(2743), + [anon_sym_AMP_AMP] = ACTIONS(2743), + [anon_sym_AMP] = ACTIONS(2741), + [anon_sym_SEMI] = ACTIONS(2743), + [anon_sym_typedef] = ACTIONS(2741), + [anon_sym_extern] = ACTIONS(2741), + [anon_sym___attribute__] = ACTIONS(2741), + [anon_sym_COLON_COLON] = ACTIONS(2743), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2743), + [anon_sym___declspec] = ACTIONS(2741), + [anon_sym___based] = ACTIONS(2741), + [anon_sym___cdecl] = ACTIONS(2741), + [anon_sym___clrcall] = ACTIONS(2741), + [anon_sym___stdcall] = ACTIONS(2741), + [anon_sym___fastcall] = ACTIONS(2741), + [anon_sym___thiscall] = ACTIONS(2741), + [anon_sym___vectorcall] = ACTIONS(2741), + [anon_sym_LBRACE] = ACTIONS(2743), + [anon_sym_LBRACK] = ACTIONS(2741), + [anon_sym_static] = ACTIONS(2741), + [anon_sym_register] = ACTIONS(2741), + [anon_sym_inline] = ACTIONS(2741), + [anon_sym_thread_local] = ACTIONS(2741), + [anon_sym_const] = ACTIONS(2741), + [anon_sym_volatile] = ACTIONS(2741), + [anon_sym_restrict] = ACTIONS(2741), + [anon_sym__Atomic] = ACTIONS(2741), + [anon_sym_mutable] = ACTIONS(2741), + [anon_sym_constexpr] = ACTIONS(2741), + [anon_sym_constinit] = ACTIONS(2741), + [anon_sym_consteval] = ACTIONS(2741), + [anon_sym_signed] = ACTIONS(2741), + [anon_sym_unsigned] = ACTIONS(2741), + [anon_sym_long] = ACTIONS(2741), + [anon_sym_short] = ACTIONS(2741), + [sym_primitive_type] = ACTIONS(2741), + [anon_sym_enum] = ACTIONS(2741), + [anon_sym_class] = ACTIONS(2741), + [anon_sym_struct] = ACTIONS(2741), + [anon_sym_union] = ACTIONS(2741), + [anon_sym_if] = ACTIONS(2741), + [anon_sym_switch] = ACTIONS(2741), + [anon_sym_case] = ACTIONS(2741), + [anon_sym_default] = ACTIONS(2741), + [anon_sym_while] = ACTIONS(2741), + [anon_sym_do] = ACTIONS(2741), + [anon_sym_for] = ACTIONS(2741), + [anon_sym_return] = ACTIONS(2741), + [anon_sym_break] = ACTIONS(2741), + [anon_sym_continue] = ACTIONS(2741), + [anon_sym_goto] = ACTIONS(2741), + [anon_sym_not] = ACTIONS(2741), + [anon_sym_compl] = ACTIONS(2741), + [anon_sym_DASH_DASH] = ACTIONS(2743), + [anon_sym_PLUS_PLUS] = ACTIONS(2743), + [anon_sym_sizeof] = ACTIONS(2741), + [sym_number_literal] = ACTIONS(2743), + [anon_sym_L_SQUOTE] = ACTIONS(2743), + [anon_sym_u_SQUOTE] = ACTIONS(2743), + [anon_sym_U_SQUOTE] = ACTIONS(2743), + [anon_sym_u8_SQUOTE] = ACTIONS(2743), + [anon_sym_SQUOTE] = ACTIONS(2743), + [anon_sym_L_DQUOTE] = ACTIONS(2743), + [anon_sym_u_DQUOTE] = ACTIONS(2743), + [anon_sym_U_DQUOTE] = ACTIONS(2743), + [anon_sym_u8_DQUOTE] = ACTIONS(2743), + [anon_sym_DQUOTE] = ACTIONS(2743), + [sym_true] = ACTIONS(2741), + [sym_false] = ACTIONS(2741), + [sym_null] = ACTIONS(2741), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2741), + [anon_sym_decltype] = ACTIONS(2741), + [anon_sym_virtual] = ACTIONS(2741), + [anon_sym_explicit] = ACTIONS(2741), + [anon_sym_typename] = ACTIONS(2741), + [anon_sym_template] = ACTIONS(2741), + [anon_sym_operator] = ACTIONS(2741), + [anon_sym_try] = ACTIONS(2741), + [anon_sym_delete] = ACTIONS(2741), + [anon_sym_throw] = ACTIONS(2741), + [anon_sym_namespace] = ACTIONS(2741), + [anon_sym_using] = ACTIONS(2741), + [anon_sym_static_assert] = ACTIONS(2741), + [anon_sym_concept] = ACTIONS(2741), + [anon_sym_co_return] = ACTIONS(2741), + [anon_sym_co_yield] = ACTIONS(2741), + [anon_sym_co_await] = ACTIONS(2741), + [anon_sym_new] = ACTIONS(2741), + [anon_sym_requires] = ACTIONS(2741), + [sym_this] = ACTIONS(2741), + [sym_nullptr] = ACTIONS(2741), + [sym_raw_string_literal] = ACTIONS(2743), }, - [1368] = { - [sym__expression] = STATE(3652), - [sym_comma_expression] = STATE(6404), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_RPAREN] = ACTIONS(3480), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [906] = { + [sym_identifier] = ACTIONS(2761), + [aux_sym_preproc_include_token1] = ACTIONS(2761), + [aux_sym_preproc_def_token1] = ACTIONS(2761), + [aux_sym_preproc_if_token1] = ACTIONS(2761), + [aux_sym_preproc_if_token2] = ACTIONS(2761), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2761), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2761), + [sym_preproc_directive] = ACTIONS(2761), + [anon_sym_LPAREN2] = ACTIONS(2763), + [anon_sym_BANG] = ACTIONS(2763), + [anon_sym_TILDE] = ACTIONS(2763), + [anon_sym_DASH] = ACTIONS(2761), + [anon_sym_PLUS] = ACTIONS(2761), + [anon_sym_STAR] = ACTIONS(2763), + [anon_sym_AMP_AMP] = ACTIONS(2763), + [anon_sym_AMP] = ACTIONS(2761), + [anon_sym_SEMI] = ACTIONS(2763), + [anon_sym_typedef] = ACTIONS(2761), + [anon_sym_extern] = ACTIONS(2761), + [anon_sym___attribute__] = ACTIONS(2761), + [anon_sym_COLON_COLON] = ACTIONS(2763), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2763), + [anon_sym___declspec] = ACTIONS(2761), + [anon_sym___based] = ACTIONS(2761), + [anon_sym___cdecl] = ACTIONS(2761), + [anon_sym___clrcall] = ACTIONS(2761), + [anon_sym___stdcall] = ACTIONS(2761), + [anon_sym___fastcall] = ACTIONS(2761), + [anon_sym___thiscall] = ACTIONS(2761), + [anon_sym___vectorcall] = ACTIONS(2761), + [anon_sym_LBRACE] = ACTIONS(2763), + [anon_sym_LBRACK] = ACTIONS(2761), + [anon_sym_static] = ACTIONS(2761), + [anon_sym_register] = ACTIONS(2761), + [anon_sym_inline] = ACTIONS(2761), + [anon_sym_thread_local] = ACTIONS(2761), + [anon_sym_const] = ACTIONS(2761), + [anon_sym_volatile] = ACTIONS(2761), + [anon_sym_restrict] = ACTIONS(2761), + [anon_sym__Atomic] = ACTIONS(2761), + [anon_sym_mutable] = ACTIONS(2761), + [anon_sym_constexpr] = ACTIONS(2761), + [anon_sym_constinit] = ACTIONS(2761), + [anon_sym_consteval] = ACTIONS(2761), + [anon_sym_signed] = ACTIONS(2761), + [anon_sym_unsigned] = ACTIONS(2761), + [anon_sym_long] = ACTIONS(2761), + [anon_sym_short] = ACTIONS(2761), + [sym_primitive_type] = ACTIONS(2761), + [anon_sym_enum] = ACTIONS(2761), + [anon_sym_class] = ACTIONS(2761), + [anon_sym_struct] = ACTIONS(2761), + [anon_sym_union] = ACTIONS(2761), + [anon_sym_if] = ACTIONS(2761), + [anon_sym_switch] = ACTIONS(2761), + [anon_sym_case] = ACTIONS(2761), + [anon_sym_default] = ACTIONS(2761), + [anon_sym_while] = ACTIONS(2761), + [anon_sym_do] = ACTIONS(2761), + [anon_sym_for] = ACTIONS(2761), + [anon_sym_return] = ACTIONS(2761), + [anon_sym_break] = ACTIONS(2761), + [anon_sym_continue] = ACTIONS(2761), + [anon_sym_goto] = ACTIONS(2761), + [anon_sym_not] = ACTIONS(2761), + [anon_sym_compl] = ACTIONS(2761), + [anon_sym_DASH_DASH] = ACTIONS(2763), + [anon_sym_PLUS_PLUS] = ACTIONS(2763), + [anon_sym_sizeof] = ACTIONS(2761), + [sym_number_literal] = ACTIONS(2763), + [anon_sym_L_SQUOTE] = ACTIONS(2763), + [anon_sym_u_SQUOTE] = ACTIONS(2763), + [anon_sym_U_SQUOTE] = ACTIONS(2763), + [anon_sym_u8_SQUOTE] = ACTIONS(2763), + [anon_sym_SQUOTE] = ACTIONS(2763), + [anon_sym_L_DQUOTE] = ACTIONS(2763), + [anon_sym_u_DQUOTE] = ACTIONS(2763), + [anon_sym_U_DQUOTE] = ACTIONS(2763), + [anon_sym_u8_DQUOTE] = ACTIONS(2763), + [anon_sym_DQUOTE] = ACTIONS(2763), + [sym_true] = ACTIONS(2761), + [sym_false] = ACTIONS(2761), + [sym_null] = ACTIONS(2761), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2761), + [anon_sym_decltype] = ACTIONS(2761), + [anon_sym_virtual] = ACTIONS(2761), + [anon_sym_explicit] = ACTIONS(2761), + [anon_sym_typename] = ACTIONS(2761), + [anon_sym_template] = ACTIONS(2761), + [anon_sym_operator] = ACTIONS(2761), + [anon_sym_try] = ACTIONS(2761), + [anon_sym_delete] = ACTIONS(2761), + [anon_sym_throw] = ACTIONS(2761), + [anon_sym_namespace] = ACTIONS(2761), + [anon_sym_using] = ACTIONS(2761), + [anon_sym_static_assert] = ACTIONS(2761), + [anon_sym_concept] = ACTIONS(2761), + [anon_sym_co_return] = ACTIONS(2761), + [anon_sym_co_yield] = ACTIONS(2761), + [anon_sym_co_await] = ACTIONS(2761), + [anon_sym_new] = ACTIONS(2761), + [anon_sym_requires] = ACTIONS(2761), + [sym_this] = ACTIONS(2761), + [sym_nullptr] = ACTIONS(2761), + [sym_raw_string_literal] = ACTIONS(2763), }, - [1369] = { - [sym__expression] = STATE(3954), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_initializer_list] = STATE(6658), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1465), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [907] = { + [ts_builtin_sym_end] = ACTIONS(2905), + [sym_identifier] = ACTIONS(2903), + [aux_sym_preproc_include_token1] = ACTIONS(2903), + [aux_sym_preproc_def_token1] = ACTIONS(2903), + [aux_sym_preproc_if_token1] = ACTIONS(2903), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2903), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2903), + [sym_preproc_directive] = ACTIONS(2903), + [anon_sym_LPAREN2] = ACTIONS(2905), + [anon_sym_BANG] = ACTIONS(2905), + [anon_sym_TILDE] = ACTIONS(2905), + [anon_sym_DASH] = ACTIONS(2903), + [anon_sym_PLUS] = ACTIONS(2903), + [anon_sym_STAR] = ACTIONS(2905), + [anon_sym_AMP_AMP] = ACTIONS(2905), + [anon_sym_AMP] = ACTIONS(2903), + [anon_sym_SEMI] = ACTIONS(2905), + [anon_sym_typedef] = ACTIONS(2903), + [anon_sym_extern] = ACTIONS(2903), + [anon_sym___attribute__] = ACTIONS(2903), + [anon_sym_COLON_COLON] = ACTIONS(2905), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2905), + [anon_sym___declspec] = ACTIONS(2903), + [anon_sym___based] = ACTIONS(2903), + [anon_sym___cdecl] = ACTIONS(2903), + [anon_sym___clrcall] = ACTIONS(2903), + [anon_sym___stdcall] = ACTIONS(2903), + [anon_sym___fastcall] = ACTIONS(2903), + [anon_sym___thiscall] = ACTIONS(2903), + [anon_sym___vectorcall] = ACTIONS(2903), + [anon_sym_LBRACE] = ACTIONS(2905), + [anon_sym_LBRACK] = ACTIONS(2903), + [anon_sym_static] = ACTIONS(2903), + [anon_sym_register] = ACTIONS(2903), + [anon_sym_inline] = ACTIONS(2903), + [anon_sym_thread_local] = ACTIONS(2903), + [anon_sym_const] = ACTIONS(2903), + [anon_sym_volatile] = ACTIONS(2903), + [anon_sym_restrict] = ACTIONS(2903), + [anon_sym__Atomic] = ACTIONS(2903), + [anon_sym_mutable] = ACTIONS(2903), + [anon_sym_constexpr] = ACTIONS(2903), + [anon_sym_constinit] = ACTIONS(2903), + [anon_sym_consteval] = ACTIONS(2903), + [anon_sym_signed] = ACTIONS(2903), + [anon_sym_unsigned] = ACTIONS(2903), + [anon_sym_long] = ACTIONS(2903), + [anon_sym_short] = ACTIONS(2903), + [sym_primitive_type] = ACTIONS(2903), + [anon_sym_enum] = ACTIONS(2903), + [anon_sym_class] = ACTIONS(2903), + [anon_sym_struct] = ACTIONS(2903), + [anon_sym_union] = ACTIONS(2903), + [anon_sym_if] = ACTIONS(2903), + [anon_sym_switch] = ACTIONS(2903), + [anon_sym_case] = ACTIONS(2903), + [anon_sym_default] = ACTIONS(2903), + [anon_sym_while] = ACTIONS(2903), + [anon_sym_do] = ACTIONS(2903), + [anon_sym_for] = ACTIONS(2903), + [anon_sym_return] = ACTIONS(2903), + [anon_sym_break] = ACTIONS(2903), + [anon_sym_continue] = ACTIONS(2903), + [anon_sym_goto] = ACTIONS(2903), + [anon_sym_not] = ACTIONS(2903), + [anon_sym_compl] = ACTIONS(2903), + [anon_sym_DASH_DASH] = ACTIONS(2905), + [anon_sym_PLUS_PLUS] = ACTIONS(2905), + [anon_sym_sizeof] = ACTIONS(2903), + [sym_number_literal] = ACTIONS(2905), + [anon_sym_L_SQUOTE] = ACTIONS(2905), + [anon_sym_u_SQUOTE] = ACTIONS(2905), + [anon_sym_U_SQUOTE] = ACTIONS(2905), + [anon_sym_u8_SQUOTE] = ACTIONS(2905), + [anon_sym_SQUOTE] = ACTIONS(2905), + [anon_sym_L_DQUOTE] = ACTIONS(2905), + [anon_sym_u_DQUOTE] = ACTIONS(2905), + [anon_sym_U_DQUOTE] = ACTIONS(2905), + [anon_sym_u8_DQUOTE] = ACTIONS(2905), + [anon_sym_DQUOTE] = ACTIONS(2905), + [sym_true] = ACTIONS(2903), + [sym_false] = ACTIONS(2903), + [sym_null] = ACTIONS(2903), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2903), + [anon_sym_decltype] = ACTIONS(2903), + [anon_sym_virtual] = ACTIONS(2903), + [anon_sym_explicit] = ACTIONS(2903), + [anon_sym_typename] = ACTIONS(2903), + [anon_sym_template] = ACTIONS(2903), + [anon_sym_operator] = ACTIONS(2903), + [anon_sym_try] = ACTIONS(2903), + [anon_sym_delete] = ACTIONS(2903), + [anon_sym_throw] = ACTIONS(2903), + [anon_sym_namespace] = ACTIONS(2903), + [anon_sym_using] = ACTIONS(2903), + [anon_sym_static_assert] = ACTIONS(2903), + [anon_sym_concept] = ACTIONS(2903), + [anon_sym_co_return] = ACTIONS(2903), + [anon_sym_co_yield] = ACTIONS(2903), + [anon_sym_co_await] = ACTIONS(2903), + [anon_sym_new] = ACTIONS(2903), + [anon_sym_requires] = ACTIONS(2903), + [sym_this] = ACTIONS(2903), + [sym_nullptr] = ACTIONS(2903), + [sym_raw_string_literal] = ACTIONS(2905), }, - [1370] = { - [sym__expression] = STATE(3623), - [sym_comma_expression] = STATE(6493), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_RPAREN] = ACTIONS(3482), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [908] = { + [ts_builtin_sym_end] = ACTIONS(2855), + [sym_identifier] = ACTIONS(2853), + [aux_sym_preproc_include_token1] = ACTIONS(2853), + [aux_sym_preproc_def_token1] = ACTIONS(2853), + [aux_sym_preproc_if_token1] = ACTIONS(2853), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2853), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2853), + [sym_preproc_directive] = ACTIONS(2853), + [anon_sym_LPAREN2] = ACTIONS(2855), + [anon_sym_BANG] = ACTIONS(2855), + [anon_sym_TILDE] = ACTIONS(2855), + [anon_sym_DASH] = ACTIONS(2853), + [anon_sym_PLUS] = ACTIONS(2853), + [anon_sym_STAR] = ACTIONS(2855), + [anon_sym_AMP_AMP] = ACTIONS(2855), + [anon_sym_AMP] = ACTIONS(2853), + [anon_sym_SEMI] = ACTIONS(2855), + [anon_sym_typedef] = ACTIONS(2853), + [anon_sym_extern] = ACTIONS(2853), + [anon_sym___attribute__] = ACTIONS(2853), + [anon_sym_COLON_COLON] = ACTIONS(2855), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2855), + [anon_sym___declspec] = ACTIONS(2853), + [anon_sym___based] = ACTIONS(2853), + [anon_sym___cdecl] = ACTIONS(2853), + [anon_sym___clrcall] = ACTIONS(2853), + [anon_sym___stdcall] = ACTIONS(2853), + [anon_sym___fastcall] = ACTIONS(2853), + [anon_sym___thiscall] = ACTIONS(2853), + [anon_sym___vectorcall] = ACTIONS(2853), + [anon_sym_LBRACE] = ACTIONS(2855), + [anon_sym_LBRACK] = ACTIONS(2853), + [anon_sym_static] = ACTIONS(2853), + [anon_sym_register] = ACTIONS(2853), + [anon_sym_inline] = ACTIONS(2853), + [anon_sym_thread_local] = ACTIONS(2853), + [anon_sym_const] = ACTIONS(2853), + [anon_sym_volatile] = ACTIONS(2853), + [anon_sym_restrict] = ACTIONS(2853), + [anon_sym__Atomic] = ACTIONS(2853), + [anon_sym_mutable] = ACTIONS(2853), + [anon_sym_constexpr] = ACTIONS(2853), + [anon_sym_constinit] = ACTIONS(2853), + [anon_sym_consteval] = ACTIONS(2853), + [anon_sym_signed] = ACTIONS(2853), + [anon_sym_unsigned] = ACTIONS(2853), + [anon_sym_long] = ACTIONS(2853), + [anon_sym_short] = ACTIONS(2853), + [sym_primitive_type] = ACTIONS(2853), + [anon_sym_enum] = ACTIONS(2853), + [anon_sym_class] = ACTIONS(2853), + [anon_sym_struct] = ACTIONS(2853), + [anon_sym_union] = ACTIONS(2853), + [anon_sym_if] = ACTIONS(2853), + [anon_sym_switch] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2853), + [anon_sym_default] = ACTIONS(2853), + [anon_sym_while] = ACTIONS(2853), + [anon_sym_do] = ACTIONS(2853), + [anon_sym_for] = ACTIONS(2853), + [anon_sym_return] = ACTIONS(2853), + [anon_sym_break] = ACTIONS(2853), + [anon_sym_continue] = ACTIONS(2853), + [anon_sym_goto] = ACTIONS(2853), + [anon_sym_not] = ACTIONS(2853), + [anon_sym_compl] = ACTIONS(2853), + [anon_sym_DASH_DASH] = ACTIONS(2855), + [anon_sym_PLUS_PLUS] = ACTIONS(2855), + [anon_sym_sizeof] = ACTIONS(2853), + [sym_number_literal] = ACTIONS(2855), + [anon_sym_L_SQUOTE] = ACTIONS(2855), + [anon_sym_u_SQUOTE] = ACTIONS(2855), + [anon_sym_U_SQUOTE] = ACTIONS(2855), + [anon_sym_u8_SQUOTE] = ACTIONS(2855), + [anon_sym_SQUOTE] = ACTIONS(2855), + [anon_sym_L_DQUOTE] = ACTIONS(2855), + [anon_sym_u_DQUOTE] = ACTIONS(2855), + [anon_sym_U_DQUOTE] = ACTIONS(2855), + [anon_sym_u8_DQUOTE] = ACTIONS(2855), + [anon_sym_DQUOTE] = ACTIONS(2855), + [sym_true] = ACTIONS(2853), + [sym_false] = ACTIONS(2853), + [sym_null] = ACTIONS(2853), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2853), + [anon_sym_decltype] = ACTIONS(2853), + [anon_sym_virtual] = ACTIONS(2853), + [anon_sym_explicit] = ACTIONS(2853), + [anon_sym_typename] = ACTIONS(2853), + [anon_sym_template] = ACTIONS(2853), + [anon_sym_operator] = ACTIONS(2853), + [anon_sym_try] = ACTIONS(2853), + [anon_sym_delete] = ACTIONS(2853), + [anon_sym_throw] = ACTIONS(2853), + [anon_sym_namespace] = ACTIONS(2853), + [anon_sym_using] = ACTIONS(2853), + [anon_sym_static_assert] = ACTIONS(2853), + [anon_sym_concept] = ACTIONS(2853), + [anon_sym_co_return] = ACTIONS(2853), + [anon_sym_co_yield] = ACTIONS(2853), + [anon_sym_co_await] = ACTIONS(2853), + [anon_sym_new] = ACTIONS(2853), + [anon_sym_requires] = ACTIONS(2853), + [sym_this] = ACTIONS(2853), + [sym_nullptr] = ACTIONS(2853), + [sym_raw_string_literal] = ACTIONS(2855), }, - [1371] = { - [sym__expression] = STATE(3630), - [sym_comma_expression] = STATE(6729), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_RPAREN] = ACTIONS(3484), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [909] = { + [sym_identifier] = ACTIONS(2883), + [aux_sym_preproc_include_token1] = ACTIONS(2883), + [aux_sym_preproc_def_token1] = ACTIONS(2883), + [aux_sym_preproc_if_token1] = ACTIONS(2883), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2883), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2883), + [sym_preproc_directive] = ACTIONS(2883), + [anon_sym_LPAREN2] = ACTIONS(2885), + [anon_sym_BANG] = ACTIONS(2885), + [anon_sym_TILDE] = ACTIONS(2885), + [anon_sym_DASH] = ACTIONS(2883), + [anon_sym_PLUS] = ACTIONS(2883), + [anon_sym_STAR] = ACTIONS(2885), + [anon_sym_AMP_AMP] = ACTIONS(2885), + [anon_sym_AMP] = ACTIONS(2883), + [anon_sym_SEMI] = ACTIONS(2885), + [anon_sym_typedef] = ACTIONS(2883), + [anon_sym_extern] = ACTIONS(2883), + [anon_sym___attribute__] = ACTIONS(2883), + [anon_sym_COLON_COLON] = ACTIONS(2885), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2885), + [anon_sym___declspec] = ACTIONS(2883), + [anon_sym___based] = ACTIONS(2883), + [anon_sym___cdecl] = ACTIONS(2883), + [anon_sym___clrcall] = ACTIONS(2883), + [anon_sym___stdcall] = ACTIONS(2883), + [anon_sym___fastcall] = ACTIONS(2883), + [anon_sym___thiscall] = ACTIONS(2883), + [anon_sym___vectorcall] = ACTIONS(2883), + [anon_sym_LBRACE] = ACTIONS(2885), + [anon_sym_RBRACE] = ACTIONS(2885), + [anon_sym_LBRACK] = ACTIONS(2883), + [anon_sym_static] = ACTIONS(2883), + [anon_sym_register] = ACTIONS(2883), + [anon_sym_inline] = ACTIONS(2883), + [anon_sym_thread_local] = ACTIONS(2883), + [anon_sym_const] = ACTIONS(2883), + [anon_sym_volatile] = ACTIONS(2883), + [anon_sym_restrict] = ACTIONS(2883), + [anon_sym__Atomic] = ACTIONS(2883), + [anon_sym_mutable] = ACTIONS(2883), + [anon_sym_constexpr] = ACTIONS(2883), + [anon_sym_constinit] = ACTIONS(2883), + [anon_sym_consteval] = ACTIONS(2883), + [anon_sym_signed] = ACTIONS(2883), + [anon_sym_unsigned] = ACTIONS(2883), + [anon_sym_long] = ACTIONS(2883), + [anon_sym_short] = ACTIONS(2883), + [sym_primitive_type] = ACTIONS(2883), + [anon_sym_enum] = ACTIONS(2883), + [anon_sym_class] = ACTIONS(2883), + [anon_sym_struct] = ACTIONS(2883), + [anon_sym_union] = ACTIONS(2883), + [anon_sym_if] = ACTIONS(2883), + [anon_sym_switch] = ACTIONS(2883), + [anon_sym_case] = ACTIONS(2883), + [anon_sym_default] = ACTIONS(2883), + [anon_sym_while] = ACTIONS(2883), + [anon_sym_do] = ACTIONS(2883), + [anon_sym_for] = ACTIONS(2883), + [anon_sym_return] = ACTIONS(2883), + [anon_sym_break] = ACTIONS(2883), + [anon_sym_continue] = ACTIONS(2883), + [anon_sym_goto] = ACTIONS(2883), + [anon_sym_not] = ACTIONS(2883), + [anon_sym_compl] = ACTIONS(2883), + [anon_sym_DASH_DASH] = ACTIONS(2885), + [anon_sym_PLUS_PLUS] = ACTIONS(2885), + [anon_sym_sizeof] = ACTIONS(2883), + [sym_number_literal] = ACTIONS(2885), + [anon_sym_L_SQUOTE] = ACTIONS(2885), + [anon_sym_u_SQUOTE] = ACTIONS(2885), + [anon_sym_U_SQUOTE] = ACTIONS(2885), + [anon_sym_u8_SQUOTE] = ACTIONS(2885), + [anon_sym_SQUOTE] = ACTIONS(2885), + [anon_sym_L_DQUOTE] = ACTIONS(2885), + [anon_sym_u_DQUOTE] = ACTIONS(2885), + [anon_sym_U_DQUOTE] = ACTIONS(2885), + [anon_sym_u8_DQUOTE] = ACTIONS(2885), + [anon_sym_DQUOTE] = ACTIONS(2885), + [sym_true] = ACTIONS(2883), + [sym_false] = ACTIONS(2883), + [sym_null] = ACTIONS(2883), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2883), + [anon_sym_decltype] = ACTIONS(2883), + [anon_sym_virtual] = ACTIONS(2883), + [anon_sym_explicit] = ACTIONS(2883), + [anon_sym_typename] = ACTIONS(2883), + [anon_sym_template] = ACTIONS(2883), + [anon_sym_operator] = ACTIONS(2883), + [anon_sym_try] = ACTIONS(2883), + [anon_sym_delete] = ACTIONS(2883), + [anon_sym_throw] = ACTIONS(2883), + [anon_sym_namespace] = ACTIONS(2883), + [anon_sym_using] = ACTIONS(2883), + [anon_sym_static_assert] = ACTIONS(2883), + [anon_sym_concept] = ACTIONS(2883), + [anon_sym_co_return] = ACTIONS(2883), + [anon_sym_co_yield] = ACTIONS(2883), + [anon_sym_co_await] = ACTIONS(2883), + [anon_sym_new] = ACTIONS(2883), + [anon_sym_requires] = ACTIONS(2883), + [sym_this] = ACTIONS(2883), + [sym_nullptr] = ACTIONS(2883), + [sym_raw_string_literal] = ACTIONS(2885), + }, + [910] = { + [sym_identifier] = ACTIONS(2857), + [aux_sym_preproc_include_token1] = ACTIONS(2857), + [aux_sym_preproc_def_token1] = ACTIONS(2857), + [aux_sym_preproc_if_token1] = ACTIONS(2857), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2857), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2857), + [sym_preproc_directive] = ACTIONS(2857), + [anon_sym_LPAREN2] = ACTIONS(2859), + [anon_sym_BANG] = ACTIONS(2859), + [anon_sym_TILDE] = ACTIONS(2859), + [anon_sym_DASH] = ACTIONS(2857), + [anon_sym_PLUS] = ACTIONS(2857), + [anon_sym_STAR] = ACTIONS(2859), + [anon_sym_AMP_AMP] = ACTIONS(2859), + [anon_sym_AMP] = ACTIONS(2857), + [anon_sym_SEMI] = ACTIONS(2859), + [anon_sym_typedef] = ACTIONS(2857), + [anon_sym_extern] = ACTIONS(2857), + [anon_sym___attribute__] = ACTIONS(2857), + [anon_sym_COLON_COLON] = ACTIONS(2859), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2859), + [anon_sym___declspec] = ACTIONS(2857), + [anon_sym___based] = ACTIONS(2857), + [anon_sym___cdecl] = ACTIONS(2857), + [anon_sym___clrcall] = ACTIONS(2857), + [anon_sym___stdcall] = ACTIONS(2857), + [anon_sym___fastcall] = ACTIONS(2857), + [anon_sym___thiscall] = ACTIONS(2857), + [anon_sym___vectorcall] = ACTIONS(2857), + [anon_sym_LBRACE] = ACTIONS(2859), + [anon_sym_RBRACE] = ACTIONS(2859), + [anon_sym_LBRACK] = ACTIONS(2857), + [anon_sym_static] = ACTIONS(2857), + [anon_sym_register] = ACTIONS(2857), + [anon_sym_inline] = ACTIONS(2857), + [anon_sym_thread_local] = ACTIONS(2857), + [anon_sym_const] = ACTIONS(2857), + [anon_sym_volatile] = ACTIONS(2857), + [anon_sym_restrict] = ACTIONS(2857), + [anon_sym__Atomic] = ACTIONS(2857), + [anon_sym_mutable] = ACTIONS(2857), + [anon_sym_constexpr] = ACTIONS(2857), + [anon_sym_constinit] = ACTIONS(2857), + [anon_sym_consteval] = ACTIONS(2857), + [anon_sym_signed] = ACTIONS(2857), + [anon_sym_unsigned] = ACTIONS(2857), + [anon_sym_long] = ACTIONS(2857), + [anon_sym_short] = ACTIONS(2857), + [sym_primitive_type] = ACTIONS(2857), + [anon_sym_enum] = ACTIONS(2857), + [anon_sym_class] = ACTIONS(2857), + [anon_sym_struct] = ACTIONS(2857), + [anon_sym_union] = ACTIONS(2857), + [anon_sym_if] = ACTIONS(2857), + [anon_sym_switch] = ACTIONS(2857), + [anon_sym_case] = ACTIONS(2857), + [anon_sym_default] = ACTIONS(2857), + [anon_sym_while] = ACTIONS(2857), + [anon_sym_do] = ACTIONS(2857), + [anon_sym_for] = ACTIONS(2857), + [anon_sym_return] = ACTIONS(2857), + [anon_sym_break] = ACTIONS(2857), + [anon_sym_continue] = ACTIONS(2857), + [anon_sym_goto] = ACTIONS(2857), + [anon_sym_not] = ACTIONS(2857), + [anon_sym_compl] = ACTIONS(2857), + [anon_sym_DASH_DASH] = ACTIONS(2859), + [anon_sym_PLUS_PLUS] = ACTIONS(2859), + [anon_sym_sizeof] = ACTIONS(2857), + [sym_number_literal] = ACTIONS(2859), + [anon_sym_L_SQUOTE] = ACTIONS(2859), + [anon_sym_u_SQUOTE] = ACTIONS(2859), + [anon_sym_U_SQUOTE] = ACTIONS(2859), + [anon_sym_u8_SQUOTE] = ACTIONS(2859), + [anon_sym_SQUOTE] = ACTIONS(2859), + [anon_sym_L_DQUOTE] = ACTIONS(2859), + [anon_sym_u_DQUOTE] = ACTIONS(2859), + [anon_sym_U_DQUOTE] = ACTIONS(2859), + [anon_sym_u8_DQUOTE] = ACTIONS(2859), + [anon_sym_DQUOTE] = ACTIONS(2859), + [sym_true] = ACTIONS(2857), + [sym_false] = ACTIONS(2857), + [sym_null] = ACTIONS(2857), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2857), + [anon_sym_decltype] = ACTIONS(2857), + [anon_sym_virtual] = ACTIONS(2857), + [anon_sym_explicit] = ACTIONS(2857), + [anon_sym_typename] = ACTIONS(2857), + [anon_sym_template] = ACTIONS(2857), + [anon_sym_operator] = ACTIONS(2857), + [anon_sym_try] = ACTIONS(2857), + [anon_sym_delete] = ACTIONS(2857), + [anon_sym_throw] = ACTIONS(2857), + [anon_sym_namespace] = ACTIONS(2857), + [anon_sym_using] = ACTIONS(2857), + [anon_sym_static_assert] = ACTIONS(2857), + [anon_sym_concept] = ACTIONS(2857), + [anon_sym_co_return] = ACTIONS(2857), + [anon_sym_co_yield] = ACTIONS(2857), + [anon_sym_co_await] = ACTIONS(2857), + [anon_sym_new] = ACTIONS(2857), + [anon_sym_requires] = ACTIONS(2857), + [sym_this] = ACTIONS(2857), + [sym_nullptr] = ACTIONS(2857), + [sym_raw_string_literal] = ACTIONS(2859), }, - [1372] = { - [sym__expression] = STATE(3639), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_initializer_list] = STATE(6179), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1465), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [911] = { + [sym_identifier] = ACTIONS(2801), + [aux_sym_preproc_include_token1] = ACTIONS(2801), + [aux_sym_preproc_def_token1] = ACTIONS(2801), + [aux_sym_preproc_if_token1] = ACTIONS(2801), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2801), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2801), + [sym_preproc_directive] = ACTIONS(2801), + [anon_sym_LPAREN2] = ACTIONS(2803), + [anon_sym_BANG] = ACTIONS(2803), + [anon_sym_TILDE] = ACTIONS(2803), + [anon_sym_DASH] = ACTIONS(2801), + [anon_sym_PLUS] = ACTIONS(2801), + [anon_sym_STAR] = ACTIONS(2803), + [anon_sym_AMP_AMP] = ACTIONS(2803), + [anon_sym_AMP] = ACTIONS(2801), + [anon_sym_SEMI] = ACTIONS(2803), + [anon_sym_typedef] = ACTIONS(2801), + [anon_sym_extern] = ACTIONS(2801), + [anon_sym___attribute__] = ACTIONS(2801), + [anon_sym_COLON_COLON] = ACTIONS(2803), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2803), + [anon_sym___declspec] = ACTIONS(2801), + [anon_sym___based] = ACTIONS(2801), + [anon_sym___cdecl] = ACTIONS(2801), + [anon_sym___clrcall] = ACTIONS(2801), + [anon_sym___stdcall] = ACTIONS(2801), + [anon_sym___fastcall] = ACTIONS(2801), + [anon_sym___thiscall] = ACTIONS(2801), + [anon_sym___vectorcall] = ACTIONS(2801), + [anon_sym_LBRACE] = ACTIONS(2803), + [anon_sym_RBRACE] = ACTIONS(2803), + [anon_sym_LBRACK] = ACTIONS(2801), + [anon_sym_static] = ACTIONS(2801), + [anon_sym_register] = ACTIONS(2801), + [anon_sym_inline] = ACTIONS(2801), + [anon_sym_thread_local] = ACTIONS(2801), + [anon_sym_const] = ACTIONS(2801), + [anon_sym_volatile] = ACTIONS(2801), + [anon_sym_restrict] = ACTIONS(2801), + [anon_sym__Atomic] = ACTIONS(2801), + [anon_sym_mutable] = ACTIONS(2801), + [anon_sym_constexpr] = ACTIONS(2801), + [anon_sym_constinit] = ACTIONS(2801), + [anon_sym_consteval] = ACTIONS(2801), + [anon_sym_signed] = ACTIONS(2801), + [anon_sym_unsigned] = ACTIONS(2801), + [anon_sym_long] = ACTIONS(2801), + [anon_sym_short] = ACTIONS(2801), + [sym_primitive_type] = ACTIONS(2801), + [anon_sym_enum] = ACTIONS(2801), + [anon_sym_class] = ACTIONS(2801), + [anon_sym_struct] = ACTIONS(2801), + [anon_sym_union] = ACTIONS(2801), + [anon_sym_if] = ACTIONS(2801), + [anon_sym_switch] = ACTIONS(2801), + [anon_sym_case] = ACTIONS(2801), + [anon_sym_default] = ACTIONS(2801), + [anon_sym_while] = ACTIONS(2801), + [anon_sym_do] = ACTIONS(2801), + [anon_sym_for] = ACTIONS(2801), + [anon_sym_return] = ACTIONS(2801), + [anon_sym_break] = ACTIONS(2801), + [anon_sym_continue] = ACTIONS(2801), + [anon_sym_goto] = ACTIONS(2801), + [anon_sym_not] = ACTIONS(2801), + [anon_sym_compl] = ACTIONS(2801), + [anon_sym_DASH_DASH] = ACTIONS(2803), + [anon_sym_PLUS_PLUS] = ACTIONS(2803), + [anon_sym_sizeof] = ACTIONS(2801), + [sym_number_literal] = ACTIONS(2803), + [anon_sym_L_SQUOTE] = ACTIONS(2803), + [anon_sym_u_SQUOTE] = ACTIONS(2803), + [anon_sym_U_SQUOTE] = ACTIONS(2803), + [anon_sym_u8_SQUOTE] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2803), + [anon_sym_L_DQUOTE] = ACTIONS(2803), + [anon_sym_u_DQUOTE] = ACTIONS(2803), + [anon_sym_U_DQUOTE] = ACTIONS(2803), + [anon_sym_u8_DQUOTE] = ACTIONS(2803), + [anon_sym_DQUOTE] = ACTIONS(2803), + [sym_true] = ACTIONS(2801), + [sym_false] = ACTIONS(2801), + [sym_null] = ACTIONS(2801), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2801), + [anon_sym_decltype] = ACTIONS(2801), + [anon_sym_virtual] = ACTIONS(2801), + [anon_sym_explicit] = ACTIONS(2801), + [anon_sym_typename] = ACTIONS(2801), + [anon_sym_template] = ACTIONS(2801), + [anon_sym_operator] = ACTIONS(2801), + [anon_sym_try] = ACTIONS(2801), + [anon_sym_delete] = ACTIONS(2801), + [anon_sym_throw] = ACTIONS(2801), + [anon_sym_namespace] = ACTIONS(2801), + [anon_sym_using] = ACTIONS(2801), + [anon_sym_static_assert] = ACTIONS(2801), + [anon_sym_concept] = ACTIONS(2801), + [anon_sym_co_return] = ACTIONS(2801), + [anon_sym_co_yield] = ACTIONS(2801), + [anon_sym_co_await] = ACTIONS(2801), + [anon_sym_new] = ACTIONS(2801), + [anon_sym_requires] = ACTIONS(2801), + [sym_this] = ACTIONS(2801), + [sym_nullptr] = ACTIONS(2801), + [sym_raw_string_literal] = ACTIONS(2803), }, - [1373] = { - [sym__expression] = STATE(3905), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_initializer_list] = STATE(6575), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1465), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [912] = { + [sym_identifier] = ACTIONS(2797), + [aux_sym_preproc_include_token1] = ACTIONS(2797), + [aux_sym_preproc_def_token1] = ACTIONS(2797), + [aux_sym_preproc_if_token1] = ACTIONS(2797), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2797), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2797), + [sym_preproc_directive] = ACTIONS(2797), + [anon_sym_LPAREN2] = ACTIONS(2799), + [anon_sym_BANG] = ACTIONS(2799), + [anon_sym_TILDE] = ACTIONS(2799), + [anon_sym_DASH] = ACTIONS(2797), + [anon_sym_PLUS] = ACTIONS(2797), + [anon_sym_STAR] = ACTIONS(2799), + [anon_sym_AMP_AMP] = ACTIONS(2799), + [anon_sym_AMP] = ACTIONS(2797), + [anon_sym_SEMI] = ACTIONS(2799), + [anon_sym_typedef] = ACTIONS(2797), + [anon_sym_extern] = ACTIONS(2797), + [anon_sym___attribute__] = ACTIONS(2797), + [anon_sym_COLON_COLON] = ACTIONS(2799), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2799), + [anon_sym___declspec] = ACTIONS(2797), + [anon_sym___based] = ACTIONS(2797), + [anon_sym___cdecl] = ACTIONS(2797), + [anon_sym___clrcall] = ACTIONS(2797), + [anon_sym___stdcall] = ACTIONS(2797), + [anon_sym___fastcall] = ACTIONS(2797), + [anon_sym___thiscall] = ACTIONS(2797), + [anon_sym___vectorcall] = ACTIONS(2797), + [anon_sym_LBRACE] = ACTIONS(2799), + [anon_sym_RBRACE] = ACTIONS(2799), + [anon_sym_LBRACK] = ACTIONS(2797), + [anon_sym_static] = ACTIONS(2797), + [anon_sym_register] = ACTIONS(2797), + [anon_sym_inline] = ACTIONS(2797), + [anon_sym_thread_local] = ACTIONS(2797), + [anon_sym_const] = ACTIONS(2797), + [anon_sym_volatile] = ACTIONS(2797), + [anon_sym_restrict] = ACTIONS(2797), + [anon_sym__Atomic] = ACTIONS(2797), + [anon_sym_mutable] = ACTIONS(2797), + [anon_sym_constexpr] = ACTIONS(2797), + [anon_sym_constinit] = ACTIONS(2797), + [anon_sym_consteval] = ACTIONS(2797), + [anon_sym_signed] = ACTIONS(2797), + [anon_sym_unsigned] = ACTIONS(2797), + [anon_sym_long] = ACTIONS(2797), + [anon_sym_short] = ACTIONS(2797), + [sym_primitive_type] = ACTIONS(2797), + [anon_sym_enum] = ACTIONS(2797), + [anon_sym_class] = ACTIONS(2797), + [anon_sym_struct] = ACTIONS(2797), + [anon_sym_union] = ACTIONS(2797), + [anon_sym_if] = ACTIONS(2797), + [anon_sym_switch] = ACTIONS(2797), + [anon_sym_case] = ACTIONS(2797), + [anon_sym_default] = ACTIONS(2797), + [anon_sym_while] = ACTIONS(2797), + [anon_sym_do] = ACTIONS(2797), + [anon_sym_for] = ACTIONS(2797), + [anon_sym_return] = ACTIONS(2797), + [anon_sym_break] = ACTIONS(2797), + [anon_sym_continue] = ACTIONS(2797), + [anon_sym_goto] = ACTIONS(2797), + [anon_sym_not] = ACTIONS(2797), + [anon_sym_compl] = ACTIONS(2797), + [anon_sym_DASH_DASH] = ACTIONS(2799), + [anon_sym_PLUS_PLUS] = ACTIONS(2799), + [anon_sym_sizeof] = ACTIONS(2797), + [sym_number_literal] = ACTIONS(2799), + [anon_sym_L_SQUOTE] = ACTIONS(2799), + [anon_sym_u_SQUOTE] = ACTIONS(2799), + [anon_sym_U_SQUOTE] = ACTIONS(2799), + [anon_sym_u8_SQUOTE] = ACTIONS(2799), + [anon_sym_SQUOTE] = ACTIONS(2799), + [anon_sym_L_DQUOTE] = ACTIONS(2799), + [anon_sym_u_DQUOTE] = ACTIONS(2799), + [anon_sym_U_DQUOTE] = ACTIONS(2799), + [anon_sym_u8_DQUOTE] = ACTIONS(2799), + [anon_sym_DQUOTE] = ACTIONS(2799), + [sym_true] = ACTIONS(2797), + [sym_false] = ACTIONS(2797), + [sym_null] = ACTIONS(2797), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2797), + [anon_sym_decltype] = ACTIONS(2797), + [anon_sym_virtual] = ACTIONS(2797), + [anon_sym_explicit] = ACTIONS(2797), + [anon_sym_typename] = ACTIONS(2797), + [anon_sym_template] = ACTIONS(2797), + [anon_sym_operator] = ACTIONS(2797), + [anon_sym_try] = ACTIONS(2797), + [anon_sym_delete] = ACTIONS(2797), + [anon_sym_throw] = ACTIONS(2797), + [anon_sym_namespace] = ACTIONS(2797), + [anon_sym_using] = ACTIONS(2797), + [anon_sym_static_assert] = ACTIONS(2797), + [anon_sym_concept] = ACTIONS(2797), + [anon_sym_co_return] = ACTIONS(2797), + [anon_sym_co_yield] = ACTIONS(2797), + [anon_sym_co_await] = ACTIONS(2797), + [anon_sym_new] = ACTIONS(2797), + [anon_sym_requires] = ACTIONS(2797), + [sym_this] = ACTIONS(2797), + [sym_nullptr] = ACTIONS(2797), + [sym_raw_string_literal] = ACTIONS(2799), }, - [1374] = { - [sym__expression] = STATE(3622), - [sym_comma_expression] = STATE(6521), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_RPAREN] = ACTIONS(3486), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [913] = { + [sym_identifier] = ACTIONS(2789), + [aux_sym_preproc_include_token1] = ACTIONS(2789), + [aux_sym_preproc_def_token1] = ACTIONS(2789), + [aux_sym_preproc_if_token1] = ACTIONS(2789), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2789), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2789), + [sym_preproc_directive] = ACTIONS(2789), + [anon_sym_LPAREN2] = ACTIONS(2791), + [anon_sym_BANG] = ACTIONS(2791), + [anon_sym_TILDE] = ACTIONS(2791), + [anon_sym_DASH] = ACTIONS(2789), + [anon_sym_PLUS] = ACTIONS(2789), + [anon_sym_STAR] = ACTIONS(2791), + [anon_sym_AMP_AMP] = ACTIONS(2791), + [anon_sym_AMP] = ACTIONS(2789), + [anon_sym_SEMI] = ACTIONS(2791), + [anon_sym_typedef] = ACTIONS(2789), + [anon_sym_extern] = ACTIONS(2789), + [anon_sym___attribute__] = ACTIONS(2789), + [anon_sym_COLON_COLON] = ACTIONS(2791), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2791), + [anon_sym___declspec] = ACTIONS(2789), + [anon_sym___based] = ACTIONS(2789), + [anon_sym___cdecl] = ACTIONS(2789), + [anon_sym___clrcall] = ACTIONS(2789), + [anon_sym___stdcall] = ACTIONS(2789), + [anon_sym___fastcall] = ACTIONS(2789), + [anon_sym___thiscall] = ACTIONS(2789), + [anon_sym___vectorcall] = ACTIONS(2789), + [anon_sym_LBRACE] = ACTIONS(2791), + [anon_sym_RBRACE] = ACTIONS(2791), + [anon_sym_LBRACK] = ACTIONS(2789), + [anon_sym_static] = ACTIONS(2789), + [anon_sym_register] = ACTIONS(2789), + [anon_sym_inline] = ACTIONS(2789), + [anon_sym_thread_local] = ACTIONS(2789), + [anon_sym_const] = ACTIONS(2789), + [anon_sym_volatile] = ACTIONS(2789), + [anon_sym_restrict] = ACTIONS(2789), + [anon_sym__Atomic] = ACTIONS(2789), + [anon_sym_mutable] = ACTIONS(2789), + [anon_sym_constexpr] = ACTIONS(2789), + [anon_sym_constinit] = ACTIONS(2789), + [anon_sym_consteval] = ACTIONS(2789), + [anon_sym_signed] = ACTIONS(2789), + [anon_sym_unsigned] = ACTIONS(2789), + [anon_sym_long] = ACTIONS(2789), + [anon_sym_short] = ACTIONS(2789), + [sym_primitive_type] = ACTIONS(2789), + [anon_sym_enum] = ACTIONS(2789), + [anon_sym_class] = ACTIONS(2789), + [anon_sym_struct] = ACTIONS(2789), + [anon_sym_union] = ACTIONS(2789), + [anon_sym_if] = ACTIONS(2789), + [anon_sym_switch] = ACTIONS(2789), + [anon_sym_case] = ACTIONS(2789), + [anon_sym_default] = ACTIONS(2789), + [anon_sym_while] = ACTIONS(2789), + [anon_sym_do] = ACTIONS(2789), + [anon_sym_for] = ACTIONS(2789), + [anon_sym_return] = ACTIONS(2789), + [anon_sym_break] = ACTIONS(2789), + [anon_sym_continue] = ACTIONS(2789), + [anon_sym_goto] = ACTIONS(2789), + [anon_sym_not] = ACTIONS(2789), + [anon_sym_compl] = ACTIONS(2789), + [anon_sym_DASH_DASH] = ACTIONS(2791), + [anon_sym_PLUS_PLUS] = ACTIONS(2791), + [anon_sym_sizeof] = ACTIONS(2789), + [sym_number_literal] = ACTIONS(2791), + [anon_sym_L_SQUOTE] = ACTIONS(2791), + [anon_sym_u_SQUOTE] = ACTIONS(2791), + [anon_sym_U_SQUOTE] = ACTIONS(2791), + [anon_sym_u8_SQUOTE] = ACTIONS(2791), + [anon_sym_SQUOTE] = ACTIONS(2791), + [anon_sym_L_DQUOTE] = ACTIONS(2791), + [anon_sym_u_DQUOTE] = ACTIONS(2791), + [anon_sym_U_DQUOTE] = ACTIONS(2791), + [anon_sym_u8_DQUOTE] = ACTIONS(2791), + [anon_sym_DQUOTE] = ACTIONS(2791), + [sym_true] = ACTIONS(2789), + [sym_false] = ACTIONS(2789), + [sym_null] = ACTIONS(2789), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2789), + [anon_sym_decltype] = ACTIONS(2789), + [anon_sym_virtual] = ACTIONS(2789), + [anon_sym_explicit] = ACTIONS(2789), + [anon_sym_typename] = ACTIONS(2789), + [anon_sym_template] = ACTIONS(2789), + [anon_sym_operator] = ACTIONS(2789), + [anon_sym_try] = ACTIONS(2789), + [anon_sym_delete] = ACTIONS(2789), + [anon_sym_throw] = ACTIONS(2789), + [anon_sym_namespace] = ACTIONS(2789), + [anon_sym_using] = ACTIONS(2789), + [anon_sym_static_assert] = ACTIONS(2789), + [anon_sym_concept] = ACTIONS(2789), + [anon_sym_co_return] = ACTIONS(2789), + [anon_sym_co_yield] = ACTIONS(2789), + [anon_sym_co_await] = ACTIONS(2789), + [anon_sym_new] = ACTIONS(2789), + [anon_sym_requires] = ACTIONS(2789), + [sym_this] = ACTIONS(2789), + [sym_nullptr] = ACTIONS(2789), + [sym_raw_string_literal] = ACTIONS(2791), }, - [1375] = { - [sym__expression] = STATE(3603), - [sym_comma_expression] = STATE(6554), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_RPAREN] = ACTIONS(3488), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [914] = { + [ts_builtin_sym_end] = ACTIONS(2859), + [sym_identifier] = ACTIONS(2857), + [aux_sym_preproc_include_token1] = ACTIONS(2857), + [aux_sym_preproc_def_token1] = ACTIONS(2857), + [aux_sym_preproc_if_token1] = ACTIONS(2857), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2857), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2857), + [sym_preproc_directive] = ACTIONS(2857), + [anon_sym_LPAREN2] = ACTIONS(2859), + [anon_sym_BANG] = ACTIONS(2859), + [anon_sym_TILDE] = ACTIONS(2859), + [anon_sym_DASH] = ACTIONS(2857), + [anon_sym_PLUS] = ACTIONS(2857), + [anon_sym_STAR] = ACTIONS(2859), + [anon_sym_AMP_AMP] = ACTIONS(2859), + [anon_sym_AMP] = ACTIONS(2857), + [anon_sym_SEMI] = ACTIONS(2859), + [anon_sym_typedef] = ACTIONS(2857), + [anon_sym_extern] = ACTIONS(2857), + [anon_sym___attribute__] = ACTIONS(2857), + [anon_sym_COLON_COLON] = ACTIONS(2859), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2859), + [anon_sym___declspec] = ACTIONS(2857), + [anon_sym___based] = ACTIONS(2857), + [anon_sym___cdecl] = ACTIONS(2857), + [anon_sym___clrcall] = ACTIONS(2857), + [anon_sym___stdcall] = ACTIONS(2857), + [anon_sym___fastcall] = ACTIONS(2857), + [anon_sym___thiscall] = ACTIONS(2857), + [anon_sym___vectorcall] = ACTIONS(2857), + [anon_sym_LBRACE] = ACTIONS(2859), + [anon_sym_LBRACK] = ACTIONS(2857), + [anon_sym_static] = ACTIONS(2857), + [anon_sym_register] = ACTIONS(2857), + [anon_sym_inline] = ACTIONS(2857), + [anon_sym_thread_local] = ACTIONS(2857), + [anon_sym_const] = ACTIONS(2857), + [anon_sym_volatile] = ACTIONS(2857), + [anon_sym_restrict] = ACTIONS(2857), + [anon_sym__Atomic] = ACTIONS(2857), + [anon_sym_mutable] = ACTIONS(2857), + [anon_sym_constexpr] = ACTIONS(2857), + [anon_sym_constinit] = ACTIONS(2857), + [anon_sym_consteval] = ACTIONS(2857), + [anon_sym_signed] = ACTIONS(2857), + [anon_sym_unsigned] = ACTIONS(2857), + [anon_sym_long] = ACTIONS(2857), + [anon_sym_short] = ACTIONS(2857), + [sym_primitive_type] = ACTIONS(2857), + [anon_sym_enum] = ACTIONS(2857), + [anon_sym_class] = ACTIONS(2857), + [anon_sym_struct] = ACTIONS(2857), + [anon_sym_union] = ACTIONS(2857), + [anon_sym_if] = ACTIONS(2857), + [anon_sym_switch] = ACTIONS(2857), + [anon_sym_case] = ACTIONS(2857), + [anon_sym_default] = ACTIONS(2857), + [anon_sym_while] = ACTIONS(2857), + [anon_sym_do] = ACTIONS(2857), + [anon_sym_for] = ACTIONS(2857), + [anon_sym_return] = ACTIONS(2857), + [anon_sym_break] = ACTIONS(2857), + [anon_sym_continue] = ACTIONS(2857), + [anon_sym_goto] = ACTIONS(2857), + [anon_sym_not] = ACTIONS(2857), + [anon_sym_compl] = ACTIONS(2857), + [anon_sym_DASH_DASH] = ACTIONS(2859), + [anon_sym_PLUS_PLUS] = ACTIONS(2859), + [anon_sym_sizeof] = ACTIONS(2857), + [sym_number_literal] = ACTIONS(2859), + [anon_sym_L_SQUOTE] = ACTIONS(2859), + [anon_sym_u_SQUOTE] = ACTIONS(2859), + [anon_sym_U_SQUOTE] = ACTIONS(2859), + [anon_sym_u8_SQUOTE] = ACTIONS(2859), + [anon_sym_SQUOTE] = ACTIONS(2859), + [anon_sym_L_DQUOTE] = ACTIONS(2859), + [anon_sym_u_DQUOTE] = ACTIONS(2859), + [anon_sym_U_DQUOTE] = ACTIONS(2859), + [anon_sym_u8_DQUOTE] = ACTIONS(2859), + [anon_sym_DQUOTE] = ACTIONS(2859), + [sym_true] = ACTIONS(2857), + [sym_false] = ACTIONS(2857), + [sym_null] = ACTIONS(2857), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2857), + [anon_sym_decltype] = ACTIONS(2857), + [anon_sym_virtual] = ACTIONS(2857), + [anon_sym_explicit] = ACTIONS(2857), + [anon_sym_typename] = ACTIONS(2857), + [anon_sym_template] = ACTIONS(2857), + [anon_sym_operator] = ACTIONS(2857), + [anon_sym_try] = ACTIONS(2857), + [anon_sym_delete] = ACTIONS(2857), + [anon_sym_throw] = ACTIONS(2857), + [anon_sym_namespace] = ACTIONS(2857), + [anon_sym_using] = ACTIONS(2857), + [anon_sym_static_assert] = ACTIONS(2857), + [anon_sym_concept] = ACTIONS(2857), + [anon_sym_co_return] = ACTIONS(2857), + [anon_sym_co_yield] = ACTIONS(2857), + [anon_sym_co_await] = ACTIONS(2857), + [anon_sym_new] = ACTIONS(2857), + [anon_sym_requires] = ACTIONS(2857), + [sym_this] = ACTIONS(2857), + [sym_nullptr] = ACTIONS(2857), + [sym_raw_string_literal] = ACTIONS(2859), }, - [1376] = { - [sym__expression] = STATE(3646), - [sym_comma_expression] = STATE(6707), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_RPAREN] = ACTIONS(3490), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [915] = { + [sym_identifier] = ACTIONS(2853), + [aux_sym_preproc_include_token1] = ACTIONS(2853), + [aux_sym_preproc_def_token1] = ACTIONS(2853), + [aux_sym_preproc_if_token1] = ACTIONS(2853), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2853), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2853), + [sym_preproc_directive] = ACTIONS(2853), + [anon_sym_LPAREN2] = ACTIONS(2855), + [anon_sym_BANG] = ACTIONS(2855), + [anon_sym_TILDE] = ACTIONS(2855), + [anon_sym_DASH] = ACTIONS(2853), + [anon_sym_PLUS] = ACTIONS(2853), + [anon_sym_STAR] = ACTIONS(2855), + [anon_sym_AMP_AMP] = ACTIONS(2855), + [anon_sym_AMP] = ACTIONS(2853), + [anon_sym_SEMI] = ACTIONS(2855), + [anon_sym_typedef] = ACTIONS(2853), + [anon_sym_extern] = ACTIONS(2853), + [anon_sym___attribute__] = ACTIONS(2853), + [anon_sym_COLON_COLON] = ACTIONS(2855), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2855), + [anon_sym___declspec] = ACTIONS(2853), + [anon_sym___based] = ACTIONS(2853), + [anon_sym___cdecl] = ACTIONS(2853), + [anon_sym___clrcall] = ACTIONS(2853), + [anon_sym___stdcall] = ACTIONS(2853), + [anon_sym___fastcall] = ACTIONS(2853), + [anon_sym___thiscall] = ACTIONS(2853), + [anon_sym___vectorcall] = ACTIONS(2853), + [anon_sym_LBRACE] = ACTIONS(2855), + [anon_sym_RBRACE] = ACTIONS(2855), + [anon_sym_LBRACK] = ACTIONS(2853), + [anon_sym_static] = ACTIONS(2853), + [anon_sym_register] = ACTIONS(2853), + [anon_sym_inline] = ACTIONS(2853), + [anon_sym_thread_local] = ACTIONS(2853), + [anon_sym_const] = ACTIONS(2853), + [anon_sym_volatile] = ACTIONS(2853), + [anon_sym_restrict] = ACTIONS(2853), + [anon_sym__Atomic] = ACTIONS(2853), + [anon_sym_mutable] = ACTIONS(2853), + [anon_sym_constexpr] = ACTIONS(2853), + [anon_sym_constinit] = ACTIONS(2853), + [anon_sym_consteval] = ACTIONS(2853), + [anon_sym_signed] = ACTIONS(2853), + [anon_sym_unsigned] = ACTIONS(2853), + [anon_sym_long] = ACTIONS(2853), + [anon_sym_short] = ACTIONS(2853), + [sym_primitive_type] = ACTIONS(2853), + [anon_sym_enum] = ACTIONS(2853), + [anon_sym_class] = ACTIONS(2853), + [anon_sym_struct] = ACTIONS(2853), + [anon_sym_union] = ACTIONS(2853), + [anon_sym_if] = ACTIONS(2853), + [anon_sym_switch] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2853), + [anon_sym_default] = ACTIONS(2853), + [anon_sym_while] = ACTIONS(2853), + [anon_sym_do] = ACTIONS(2853), + [anon_sym_for] = ACTIONS(2853), + [anon_sym_return] = ACTIONS(2853), + [anon_sym_break] = ACTIONS(2853), + [anon_sym_continue] = ACTIONS(2853), + [anon_sym_goto] = ACTIONS(2853), + [anon_sym_not] = ACTIONS(2853), + [anon_sym_compl] = ACTIONS(2853), + [anon_sym_DASH_DASH] = ACTIONS(2855), + [anon_sym_PLUS_PLUS] = ACTIONS(2855), + [anon_sym_sizeof] = ACTIONS(2853), + [sym_number_literal] = ACTIONS(2855), + [anon_sym_L_SQUOTE] = ACTIONS(2855), + [anon_sym_u_SQUOTE] = ACTIONS(2855), + [anon_sym_U_SQUOTE] = ACTIONS(2855), + [anon_sym_u8_SQUOTE] = ACTIONS(2855), + [anon_sym_SQUOTE] = ACTIONS(2855), + [anon_sym_L_DQUOTE] = ACTIONS(2855), + [anon_sym_u_DQUOTE] = ACTIONS(2855), + [anon_sym_U_DQUOTE] = ACTIONS(2855), + [anon_sym_u8_DQUOTE] = ACTIONS(2855), + [anon_sym_DQUOTE] = ACTIONS(2855), + [sym_true] = ACTIONS(2853), + [sym_false] = ACTIONS(2853), + [sym_null] = ACTIONS(2853), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2853), + [anon_sym_decltype] = ACTIONS(2853), + [anon_sym_virtual] = ACTIONS(2853), + [anon_sym_explicit] = ACTIONS(2853), + [anon_sym_typename] = ACTIONS(2853), + [anon_sym_template] = ACTIONS(2853), + [anon_sym_operator] = ACTIONS(2853), + [anon_sym_try] = ACTIONS(2853), + [anon_sym_delete] = ACTIONS(2853), + [anon_sym_throw] = ACTIONS(2853), + [anon_sym_namespace] = ACTIONS(2853), + [anon_sym_using] = ACTIONS(2853), + [anon_sym_static_assert] = ACTIONS(2853), + [anon_sym_concept] = ACTIONS(2853), + [anon_sym_co_return] = ACTIONS(2853), + [anon_sym_co_yield] = ACTIONS(2853), + [anon_sym_co_await] = ACTIONS(2853), + [anon_sym_new] = ACTIONS(2853), + [anon_sym_requires] = ACTIONS(2853), + [sym_this] = ACTIONS(2853), + [sym_nullptr] = ACTIONS(2853), + [sym_raw_string_literal] = ACTIONS(2855), }, - [1377] = { - [sym__expression] = STATE(3647), - [sym_comma_expression] = STATE(6704), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_RPAREN] = ACTIONS(3492), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [916] = { + [sym_identifier] = ACTIONS(2879), + [aux_sym_preproc_include_token1] = ACTIONS(2879), + [aux_sym_preproc_def_token1] = ACTIONS(2879), + [aux_sym_preproc_if_token1] = ACTIONS(2879), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2879), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2879), + [sym_preproc_directive] = ACTIONS(2879), + [anon_sym_LPAREN2] = ACTIONS(2881), + [anon_sym_BANG] = ACTIONS(2881), + [anon_sym_TILDE] = ACTIONS(2881), + [anon_sym_DASH] = ACTIONS(2879), + [anon_sym_PLUS] = ACTIONS(2879), + [anon_sym_STAR] = ACTIONS(2881), + [anon_sym_AMP_AMP] = ACTIONS(2881), + [anon_sym_AMP] = ACTIONS(2879), + [anon_sym_SEMI] = ACTIONS(2881), + [anon_sym_typedef] = ACTIONS(2879), + [anon_sym_extern] = ACTIONS(2879), + [anon_sym___attribute__] = ACTIONS(2879), + [anon_sym_COLON_COLON] = ACTIONS(2881), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2881), + [anon_sym___declspec] = ACTIONS(2879), + [anon_sym___based] = ACTIONS(2879), + [anon_sym___cdecl] = ACTIONS(2879), + [anon_sym___clrcall] = ACTIONS(2879), + [anon_sym___stdcall] = ACTIONS(2879), + [anon_sym___fastcall] = ACTIONS(2879), + [anon_sym___thiscall] = ACTIONS(2879), + [anon_sym___vectorcall] = ACTIONS(2879), + [anon_sym_LBRACE] = ACTIONS(2881), + [anon_sym_RBRACE] = ACTIONS(2881), + [anon_sym_LBRACK] = ACTIONS(2879), + [anon_sym_static] = ACTIONS(2879), + [anon_sym_register] = ACTIONS(2879), + [anon_sym_inline] = ACTIONS(2879), + [anon_sym_thread_local] = ACTIONS(2879), + [anon_sym_const] = ACTIONS(2879), + [anon_sym_volatile] = ACTIONS(2879), + [anon_sym_restrict] = ACTIONS(2879), + [anon_sym__Atomic] = ACTIONS(2879), + [anon_sym_mutable] = ACTIONS(2879), + [anon_sym_constexpr] = ACTIONS(2879), + [anon_sym_constinit] = ACTIONS(2879), + [anon_sym_consteval] = ACTIONS(2879), + [anon_sym_signed] = ACTIONS(2879), + [anon_sym_unsigned] = ACTIONS(2879), + [anon_sym_long] = ACTIONS(2879), + [anon_sym_short] = ACTIONS(2879), + [sym_primitive_type] = ACTIONS(2879), + [anon_sym_enum] = ACTIONS(2879), + [anon_sym_class] = ACTIONS(2879), + [anon_sym_struct] = ACTIONS(2879), + [anon_sym_union] = ACTIONS(2879), + [anon_sym_if] = ACTIONS(2879), + [anon_sym_switch] = ACTIONS(2879), + [anon_sym_case] = ACTIONS(2879), + [anon_sym_default] = ACTIONS(2879), + [anon_sym_while] = ACTIONS(2879), + [anon_sym_do] = ACTIONS(2879), + [anon_sym_for] = ACTIONS(2879), + [anon_sym_return] = ACTIONS(2879), + [anon_sym_break] = ACTIONS(2879), + [anon_sym_continue] = ACTIONS(2879), + [anon_sym_goto] = ACTIONS(2879), + [anon_sym_not] = ACTIONS(2879), + [anon_sym_compl] = ACTIONS(2879), + [anon_sym_DASH_DASH] = ACTIONS(2881), + [anon_sym_PLUS_PLUS] = ACTIONS(2881), + [anon_sym_sizeof] = ACTIONS(2879), + [sym_number_literal] = ACTIONS(2881), + [anon_sym_L_SQUOTE] = ACTIONS(2881), + [anon_sym_u_SQUOTE] = ACTIONS(2881), + [anon_sym_U_SQUOTE] = ACTIONS(2881), + [anon_sym_u8_SQUOTE] = ACTIONS(2881), + [anon_sym_SQUOTE] = ACTIONS(2881), + [anon_sym_L_DQUOTE] = ACTIONS(2881), + [anon_sym_u_DQUOTE] = ACTIONS(2881), + [anon_sym_U_DQUOTE] = ACTIONS(2881), + [anon_sym_u8_DQUOTE] = ACTIONS(2881), + [anon_sym_DQUOTE] = ACTIONS(2881), + [sym_true] = ACTIONS(2879), + [sym_false] = ACTIONS(2879), + [sym_null] = ACTIONS(2879), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2879), + [anon_sym_decltype] = ACTIONS(2879), + [anon_sym_virtual] = ACTIONS(2879), + [anon_sym_explicit] = ACTIONS(2879), + [anon_sym_typename] = ACTIONS(2879), + [anon_sym_template] = ACTIONS(2879), + [anon_sym_operator] = ACTIONS(2879), + [anon_sym_try] = ACTIONS(2879), + [anon_sym_delete] = ACTIONS(2879), + [anon_sym_throw] = ACTIONS(2879), + [anon_sym_namespace] = ACTIONS(2879), + [anon_sym_using] = ACTIONS(2879), + [anon_sym_static_assert] = ACTIONS(2879), + [anon_sym_concept] = ACTIONS(2879), + [anon_sym_co_return] = ACTIONS(2879), + [anon_sym_co_yield] = ACTIONS(2879), + [anon_sym_co_await] = ACTIONS(2879), + [anon_sym_new] = ACTIONS(2879), + [anon_sym_requires] = ACTIONS(2879), + [sym_this] = ACTIONS(2879), + [sym_nullptr] = ACTIONS(2879), + [sym_raw_string_literal] = ACTIONS(2881), }, - [1378] = { - [sym__expression] = STATE(3050), - [sym_conditional_expression] = STATE(2541), - [sym_assignment_expression] = STATE(2541), - [sym_pointer_expression] = STATE(2531), - [sym_unary_expression] = STATE(2541), - [sym_binary_expression] = STATE(2541), - [sym_update_expression] = STATE(2541), - [sym_cast_expression] = STATE(2541), - [sym_sizeof_expression] = STATE(2541), - [sym_subscript_expression] = STATE(2531), - [sym_call_expression] = STATE(2531), - [sym_field_expression] = STATE(2531), - [sym_compound_literal_expression] = STATE(2541), - [sym_parenthesized_expression] = STATE(2531), - [sym_initializer_list] = STATE(2606), - [sym_char_literal] = STATE(2481), - [sym_concatenated_string] = STATE(2481), - [sym_string_literal] = STATE(2063), - [sym__class_name] = STATE(6239), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2541), - [sym_co_await_expression] = STATE(2541), - [sym_new_expression] = STATE(2541), - [sym_delete_expression] = STATE(2541), - [sym_requires_clause] = STATE(2541), - [sym_requires_expression] = STATE(2541), - [sym_lambda_expression] = STATE(2541), - [sym_lambda_capture_specifier] = STATE(4508), - [sym_fold_expression] = STATE(2541), - [sym_parameter_pack_expansion] = STATE(2541), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2531), - [sym_qualified_type_identifier] = STATE(6239), - [sym_user_defined_literal] = STATE(2541), - [sym_identifier] = ACTIONS(2306), - [anon_sym_LPAREN2] = ACTIONS(2891), - [anon_sym_BANG] = ACTIONS(2895), - [anon_sym_TILDE] = ACTIONS(2895), - [anon_sym_DASH] = ACTIONS(2893), - [anon_sym_PLUS] = ACTIONS(2893), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(2899), - [anon_sym_LBRACE] = ACTIONS(2320), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(2901), - [anon_sym_PLUS_PLUS] = ACTIONS(2901), - [anon_sym_sizeof] = ACTIONS(2903), - [sym_number_literal] = ACTIONS(2326), - [anon_sym_L_SQUOTE] = ACTIONS(2328), - [anon_sym_u_SQUOTE] = ACTIONS(2328), - [anon_sym_U_SQUOTE] = ACTIONS(2328), - [anon_sym_u8_SQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2328), - [anon_sym_L_DQUOTE] = ACTIONS(2330), - [anon_sym_u_DQUOTE] = ACTIONS(2330), - [anon_sym_U_DQUOTE] = ACTIONS(2330), - [anon_sym_u8_DQUOTE] = ACTIONS(2330), - [anon_sym_DQUOTE] = ACTIONS(2330), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2905), - [anon_sym_co_await] = ACTIONS(2907), - [anon_sym_new] = ACTIONS(2909), - [anon_sym_requires] = ACTIONS(2340), - [sym_this] = ACTIONS(2332), - [sym_nullptr] = ACTIONS(2332), - [sym_raw_string_literal] = ACTIONS(2342), + [917] = { + [sym_identifier] = ACTIONS(2785), + [aux_sym_preproc_include_token1] = ACTIONS(2785), + [aux_sym_preproc_def_token1] = ACTIONS(2785), + [aux_sym_preproc_if_token1] = ACTIONS(2785), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2785), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2785), + [sym_preproc_directive] = ACTIONS(2785), + [anon_sym_LPAREN2] = ACTIONS(2787), + [anon_sym_BANG] = ACTIONS(2787), + [anon_sym_TILDE] = ACTIONS(2787), + [anon_sym_DASH] = ACTIONS(2785), + [anon_sym_PLUS] = ACTIONS(2785), + [anon_sym_STAR] = ACTIONS(2787), + [anon_sym_AMP_AMP] = ACTIONS(2787), + [anon_sym_AMP] = ACTIONS(2785), + [anon_sym_SEMI] = ACTIONS(2787), + [anon_sym_typedef] = ACTIONS(2785), + [anon_sym_extern] = ACTIONS(2785), + [anon_sym___attribute__] = ACTIONS(2785), + [anon_sym_COLON_COLON] = ACTIONS(2787), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2787), + [anon_sym___declspec] = ACTIONS(2785), + [anon_sym___based] = ACTIONS(2785), + [anon_sym___cdecl] = ACTIONS(2785), + [anon_sym___clrcall] = ACTIONS(2785), + [anon_sym___stdcall] = ACTIONS(2785), + [anon_sym___fastcall] = ACTIONS(2785), + [anon_sym___thiscall] = ACTIONS(2785), + [anon_sym___vectorcall] = ACTIONS(2785), + [anon_sym_LBRACE] = ACTIONS(2787), + [anon_sym_RBRACE] = ACTIONS(2787), + [anon_sym_LBRACK] = ACTIONS(2785), + [anon_sym_static] = ACTIONS(2785), + [anon_sym_register] = ACTIONS(2785), + [anon_sym_inline] = ACTIONS(2785), + [anon_sym_thread_local] = ACTIONS(2785), + [anon_sym_const] = ACTIONS(2785), + [anon_sym_volatile] = ACTIONS(2785), + [anon_sym_restrict] = ACTIONS(2785), + [anon_sym__Atomic] = ACTIONS(2785), + [anon_sym_mutable] = ACTIONS(2785), + [anon_sym_constexpr] = ACTIONS(2785), + [anon_sym_constinit] = ACTIONS(2785), + [anon_sym_consteval] = ACTIONS(2785), + [anon_sym_signed] = ACTIONS(2785), + [anon_sym_unsigned] = ACTIONS(2785), + [anon_sym_long] = ACTIONS(2785), + [anon_sym_short] = ACTIONS(2785), + [sym_primitive_type] = ACTIONS(2785), + [anon_sym_enum] = ACTIONS(2785), + [anon_sym_class] = ACTIONS(2785), + [anon_sym_struct] = ACTIONS(2785), + [anon_sym_union] = ACTIONS(2785), + [anon_sym_if] = ACTIONS(2785), + [anon_sym_switch] = ACTIONS(2785), + [anon_sym_case] = ACTIONS(2785), + [anon_sym_default] = ACTIONS(2785), + [anon_sym_while] = ACTIONS(2785), + [anon_sym_do] = ACTIONS(2785), + [anon_sym_for] = ACTIONS(2785), + [anon_sym_return] = ACTIONS(2785), + [anon_sym_break] = ACTIONS(2785), + [anon_sym_continue] = ACTIONS(2785), + [anon_sym_goto] = ACTIONS(2785), + [anon_sym_not] = ACTIONS(2785), + [anon_sym_compl] = ACTIONS(2785), + [anon_sym_DASH_DASH] = ACTIONS(2787), + [anon_sym_PLUS_PLUS] = ACTIONS(2787), + [anon_sym_sizeof] = ACTIONS(2785), + [sym_number_literal] = ACTIONS(2787), + [anon_sym_L_SQUOTE] = ACTIONS(2787), + [anon_sym_u_SQUOTE] = ACTIONS(2787), + [anon_sym_U_SQUOTE] = ACTIONS(2787), + [anon_sym_u8_SQUOTE] = ACTIONS(2787), + [anon_sym_SQUOTE] = ACTIONS(2787), + [anon_sym_L_DQUOTE] = ACTIONS(2787), + [anon_sym_u_DQUOTE] = ACTIONS(2787), + [anon_sym_U_DQUOTE] = ACTIONS(2787), + [anon_sym_u8_DQUOTE] = ACTIONS(2787), + [anon_sym_DQUOTE] = ACTIONS(2787), + [sym_true] = ACTIONS(2785), + [sym_false] = ACTIONS(2785), + [sym_null] = ACTIONS(2785), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2785), + [anon_sym_decltype] = ACTIONS(2785), + [anon_sym_virtual] = ACTIONS(2785), + [anon_sym_explicit] = ACTIONS(2785), + [anon_sym_typename] = ACTIONS(2785), + [anon_sym_template] = ACTIONS(2785), + [anon_sym_operator] = ACTIONS(2785), + [anon_sym_try] = ACTIONS(2785), + [anon_sym_delete] = ACTIONS(2785), + [anon_sym_throw] = ACTIONS(2785), + [anon_sym_namespace] = ACTIONS(2785), + [anon_sym_using] = ACTIONS(2785), + [anon_sym_static_assert] = ACTIONS(2785), + [anon_sym_concept] = ACTIONS(2785), + [anon_sym_co_return] = ACTIONS(2785), + [anon_sym_co_yield] = ACTIONS(2785), + [anon_sym_co_await] = ACTIONS(2785), + [anon_sym_new] = ACTIONS(2785), + [anon_sym_requires] = ACTIONS(2785), + [sym_this] = ACTIONS(2785), + [sym_nullptr] = ACTIONS(2785), + [sym_raw_string_literal] = ACTIONS(2787), }, - [1379] = { - [sym__expression] = STATE(3430), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2981), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2981), - [sym_call_expression] = STATE(2981), - [sym_field_expression] = STATE(2981), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2981), - [sym_initializer_list] = STATE(3429), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2981), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3039), - [anon_sym_LPAREN2] = ACTIONS(3041), - [anon_sym_BANG] = ACTIONS(3045), - [anon_sym_TILDE] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(3047), - [anon_sym_LBRACE] = ACTIONS(1465), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3049), - [anon_sym_PLUS_PLUS] = ACTIONS(3049), - [anon_sym_sizeof] = ACTIONS(3051), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3053), - [anon_sym_co_await] = ACTIONS(3055), - [anon_sym_new] = ACTIONS(3057), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [918] = { + [sym_identifier] = ACTIONS(2781), + [aux_sym_preproc_include_token1] = ACTIONS(2781), + [aux_sym_preproc_def_token1] = ACTIONS(2781), + [aux_sym_preproc_if_token1] = ACTIONS(2781), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2781), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2781), + [sym_preproc_directive] = ACTIONS(2781), + [anon_sym_LPAREN2] = ACTIONS(2783), + [anon_sym_BANG] = ACTIONS(2783), + [anon_sym_TILDE] = ACTIONS(2783), + [anon_sym_DASH] = ACTIONS(2781), + [anon_sym_PLUS] = ACTIONS(2781), + [anon_sym_STAR] = ACTIONS(2783), + [anon_sym_AMP_AMP] = ACTIONS(2783), + [anon_sym_AMP] = ACTIONS(2781), + [anon_sym_SEMI] = ACTIONS(2783), + [anon_sym_typedef] = ACTIONS(2781), + [anon_sym_extern] = ACTIONS(2781), + [anon_sym___attribute__] = ACTIONS(2781), + [anon_sym_COLON_COLON] = ACTIONS(2783), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2783), + [anon_sym___declspec] = ACTIONS(2781), + [anon_sym___based] = ACTIONS(2781), + [anon_sym___cdecl] = ACTIONS(2781), + [anon_sym___clrcall] = ACTIONS(2781), + [anon_sym___stdcall] = ACTIONS(2781), + [anon_sym___fastcall] = ACTIONS(2781), + [anon_sym___thiscall] = ACTIONS(2781), + [anon_sym___vectorcall] = ACTIONS(2781), + [anon_sym_LBRACE] = ACTIONS(2783), + [anon_sym_RBRACE] = ACTIONS(2783), + [anon_sym_LBRACK] = ACTIONS(2781), + [anon_sym_static] = ACTIONS(2781), + [anon_sym_register] = ACTIONS(2781), + [anon_sym_inline] = ACTIONS(2781), + [anon_sym_thread_local] = ACTIONS(2781), + [anon_sym_const] = ACTIONS(2781), + [anon_sym_volatile] = ACTIONS(2781), + [anon_sym_restrict] = ACTIONS(2781), + [anon_sym__Atomic] = ACTIONS(2781), + [anon_sym_mutable] = ACTIONS(2781), + [anon_sym_constexpr] = ACTIONS(2781), + [anon_sym_constinit] = ACTIONS(2781), + [anon_sym_consteval] = ACTIONS(2781), + [anon_sym_signed] = ACTIONS(2781), + [anon_sym_unsigned] = ACTIONS(2781), + [anon_sym_long] = ACTIONS(2781), + [anon_sym_short] = ACTIONS(2781), + [sym_primitive_type] = ACTIONS(2781), + [anon_sym_enum] = ACTIONS(2781), + [anon_sym_class] = ACTIONS(2781), + [anon_sym_struct] = ACTIONS(2781), + [anon_sym_union] = ACTIONS(2781), + [anon_sym_if] = ACTIONS(2781), + [anon_sym_switch] = ACTIONS(2781), + [anon_sym_case] = ACTIONS(2781), + [anon_sym_default] = ACTIONS(2781), + [anon_sym_while] = ACTIONS(2781), + [anon_sym_do] = ACTIONS(2781), + [anon_sym_for] = ACTIONS(2781), + [anon_sym_return] = ACTIONS(2781), + [anon_sym_break] = ACTIONS(2781), + [anon_sym_continue] = ACTIONS(2781), + [anon_sym_goto] = ACTIONS(2781), + [anon_sym_not] = ACTIONS(2781), + [anon_sym_compl] = ACTIONS(2781), + [anon_sym_DASH_DASH] = ACTIONS(2783), + [anon_sym_PLUS_PLUS] = ACTIONS(2783), + [anon_sym_sizeof] = ACTIONS(2781), + [sym_number_literal] = ACTIONS(2783), + [anon_sym_L_SQUOTE] = ACTIONS(2783), + [anon_sym_u_SQUOTE] = ACTIONS(2783), + [anon_sym_U_SQUOTE] = ACTIONS(2783), + [anon_sym_u8_SQUOTE] = ACTIONS(2783), + [anon_sym_SQUOTE] = ACTIONS(2783), + [anon_sym_L_DQUOTE] = ACTIONS(2783), + [anon_sym_u_DQUOTE] = ACTIONS(2783), + [anon_sym_U_DQUOTE] = ACTIONS(2783), + [anon_sym_u8_DQUOTE] = ACTIONS(2783), + [anon_sym_DQUOTE] = ACTIONS(2783), + [sym_true] = ACTIONS(2781), + [sym_false] = ACTIONS(2781), + [sym_null] = ACTIONS(2781), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2781), + [anon_sym_decltype] = ACTIONS(2781), + [anon_sym_virtual] = ACTIONS(2781), + [anon_sym_explicit] = ACTIONS(2781), + [anon_sym_typename] = ACTIONS(2781), + [anon_sym_template] = ACTIONS(2781), + [anon_sym_operator] = ACTIONS(2781), + [anon_sym_try] = ACTIONS(2781), + [anon_sym_delete] = ACTIONS(2781), + [anon_sym_throw] = ACTIONS(2781), + [anon_sym_namespace] = ACTIONS(2781), + [anon_sym_using] = ACTIONS(2781), + [anon_sym_static_assert] = ACTIONS(2781), + [anon_sym_concept] = ACTIONS(2781), + [anon_sym_co_return] = ACTIONS(2781), + [anon_sym_co_yield] = ACTIONS(2781), + [anon_sym_co_await] = ACTIONS(2781), + [anon_sym_new] = ACTIONS(2781), + [anon_sym_requires] = ACTIONS(2781), + [sym_this] = ACTIONS(2781), + [sym_nullptr] = ACTIONS(2781), + [sym_raw_string_literal] = ACTIONS(2783), }, - [1380] = { - [sym__expression] = STATE(2662), - [sym_conditional_expression] = STATE(2765), - [sym_assignment_expression] = STATE(2765), - [sym_pointer_expression] = STATE(2827), - [sym_unary_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_update_expression] = STATE(2765), - [sym_cast_expression] = STATE(2765), - [sym_sizeof_expression] = STATE(2765), - [sym_subscript_expression] = STATE(2827), - [sym_call_expression] = STATE(2827), - [sym_field_expression] = STATE(2827), - [sym_compound_literal_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2827), - [sym_initializer_list] = STATE(2822), - [sym_char_literal] = STATE(2674), - [sym_concatenated_string] = STATE(2674), - [sym_string_literal] = STATE(2093), - [sym__class_name] = STATE(6297), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2765), - [sym_co_await_expression] = STATE(2765), - [sym_new_expression] = STATE(2765), - [sym_delete_expression] = STATE(2765), - [sym_requires_clause] = STATE(2765), - [sym_requires_expression] = STATE(2765), - [sym_lambda_expression] = STATE(2765), - [sym_lambda_capture_specifier] = STATE(4512), - [sym_fold_expression] = STATE(2765), - [sym_parameter_pack_expansion] = STATE(2765), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4648), - [sym_qualified_identifier] = STATE(2827), - [sym_qualified_type_identifier] = STATE(6297), - [sym_user_defined_literal] = STATE(2765), - [sym_identifier] = ACTIONS(2363), - [anon_sym_LPAREN2] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1417), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_COLON_COLON] = ACTIONS(1423), - [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(2369), - [anon_sym_DASH_DASH] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [anon_sym_sizeof] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(1439), - [anon_sym_L_SQUOTE] = ACTIONS(1441), - [anon_sym_u_SQUOTE] = ACTIONS(1441), - [anon_sym_U_SQUOTE] = ACTIONS(1441), - [anon_sym_u8_SQUOTE] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1441), - [anon_sym_L_DQUOTE] = ACTIONS(1443), - [anon_sym_u_DQUOTE] = ACTIONS(1443), - [anon_sym_U_DQUOTE] = ACTIONS(1443), - [anon_sym_u8_DQUOTE] = ACTIONS(1443), - [anon_sym_DQUOTE] = ACTIONS(1443), - [sym_true] = ACTIONS(1445), - [sym_false] = ACTIONS(1445), - [sym_null] = ACTIONS(1445), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_co_await] = ACTIONS(1451), - [anon_sym_new] = ACTIONS(1453), - [anon_sym_requires] = ACTIONS(1455), - [sym_this] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(1445), - [sym_raw_string_literal] = ACTIONS(1457), + [919] = { + [sym_identifier] = ACTIONS(2849), + [aux_sym_preproc_include_token1] = ACTIONS(2849), + [aux_sym_preproc_def_token1] = ACTIONS(2849), + [aux_sym_preproc_if_token1] = ACTIONS(2849), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2849), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2849), + [sym_preproc_directive] = ACTIONS(2849), + [anon_sym_LPAREN2] = ACTIONS(2851), + [anon_sym_BANG] = ACTIONS(2851), + [anon_sym_TILDE] = ACTIONS(2851), + [anon_sym_DASH] = ACTIONS(2849), + [anon_sym_PLUS] = ACTIONS(2849), + [anon_sym_STAR] = ACTIONS(2851), + [anon_sym_AMP_AMP] = ACTIONS(2851), + [anon_sym_AMP] = ACTIONS(2849), + [anon_sym_SEMI] = ACTIONS(2851), + [anon_sym_typedef] = ACTIONS(2849), + [anon_sym_extern] = ACTIONS(2849), + [anon_sym___attribute__] = ACTIONS(2849), + [anon_sym_COLON_COLON] = ACTIONS(2851), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2851), + [anon_sym___declspec] = ACTIONS(2849), + [anon_sym___based] = ACTIONS(2849), + [anon_sym___cdecl] = ACTIONS(2849), + [anon_sym___clrcall] = ACTIONS(2849), + [anon_sym___stdcall] = ACTIONS(2849), + [anon_sym___fastcall] = ACTIONS(2849), + [anon_sym___thiscall] = ACTIONS(2849), + [anon_sym___vectorcall] = ACTIONS(2849), + [anon_sym_LBRACE] = ACTIONS(2851), + [anon_sym_RBRACE] = ACTIONS(2851), + [anon_sym_LBRACK] = ACTIONS(2849), + [anon_sym_static] = ACTIONS(2849), + [anon_sym_register] = ACTIONS(2849), + [anon_sym_inline] = ACTIONS(2849), + [anon_sym_thread_local] = ACTIONS(2849), + [anon_sym_const] = ACTIONS(2849), + [anon_sym_volatile] = ACTIONS(2849), + [anon_sym_restrict] = ACTIONS(2849), + [anon_sym__Atomic] = ACTIONS(2849), + [anon_sym_mutable] = ACTIONS(2849), + [anon_sym_constexpr] = ACTIONS(2849), + [anon_sym_constinit] = ACTIONS(2849), + [anon_sym_consteval] = ACTIONS(2849), + [anon_sym_signed] = ACTIONS(2849), + [anon_sym_unsigned] = ACTIONS(2849), + [anon_sym_long] = ACTIONS(2849), + [anon_sym_short] = ACTIONS(2849), + [sym_primitive_type] = ACTIONS(2849), + [anon_sym_enum] = ACTIONS(2849), + [anon_sym_class] = ACTIONS(2849), + [anon_sym_struct] = ACTIONS(2849), + [anon_sym_union] = ACTIONS(2849), + [anon_sym_if] = ACTIONS(2849), + [anon_sym_switch] = ACTIONS(2849), + [anon_sym_case] = ACTIONS(2849), + [anon_sym_default] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2849), + [anon_sym_do] = ACTIONS(2849), + [anon_sym_for] = ACTIONS(2849), + [anon_sym_return] = ACTIONS(2849), + [anon_sym_break] = ACTIONS(2849), + [anon_sym_continue] = ACTIONS(2849), + [anon_sym_goto] = ACTIONS(2849), + [anon_sym_not] = ACTIONS(2849), + [anon_sym_compl] = ACTIONS(2849), + [anon_sym_DASH_DASH] = ACTIONS(2851), + [anon_sym_PLUS_PLUS] = ACTIONS(2851), + [anon_sym_sizeof] = ACTIONS(2849), + [sym_number_literal] = ACTIONS(2851), + [anon_sym_L_SQUOTE] = ACTIONS(2851), + [anon_sym_u_SQUOTE] = ACTIONS(2851), + [anon_sym_U_SQUOTE] = ACTIONS(2851), + [anon_sym_u8_SQUOTE] = ACTIONS(2851), + [anon_sym_SQUOTE] = ACTIONS(2851), + [anon_sym_L_DQUOTE] = ACTIONS(2851), + [anon_sym_u_DQUOTE] = ACTIONS(2851), + [anon_sym_U_DQUOTE] = ACTIONS(2851), + [anon_sym_u8_DQUOTE] = ACTIONS(2851), + [anon_sym_DQUOTE] = ACTIONS(2851), + [sym_true] = ACTIONS(2849), + [sym_false] = ACTIONS(2849), + [sym_null] = ACTIONS(2849), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2849), + [anon_sym_decltype] = ACTIONS(2849), + [anon_sym_virtual] = ACTIONS(2849), + [anon_sym_explicit] = ACTIONS(2849), + [anon_sym_typename] = ACTIONS(2849), + [anon_sym_template] = ACTIONS(2849), + [anon_sym_operator] = ACTIONS(2849), + [anon_sym_try] = ACTIONS(2849), + [anon_sym_delete] = ACTIONS(2849), + [anon_sym_throw] = ACTIONS(2849), + [anon_sym_namespace] = ACTIONS(2849), + [anon_sym_using] = ACTIONS(2849), + [anon_sym_static_assert] = ACTIONS(2849), + [anon_sym_concept] = ACTIONS(2849), + [anon_sym_co_return] = ACTIONS(2849), + [anon_sym_co_yield] = ACTIONS(2849), + [anon_sym_co_await] = ACTIONS(2849), + [anon_sym_new] = ACTIONS(2849), + [anon_sym_requires] = ACTIONS(2849), + [sym_this] = ACTIONS(2849), + [sym_nullptr] = ACTIONS(2849), + [sym_raw_string_literal] = ACTIONS(2851), }, - [1381] = { - [sym__expression] = STATE(3744), - [sym_comma_expression] = STATE(6873), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_RPAREN] = ACTIONS(3494), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [920] = { + [sym_identifier] = ACTIONS(2845), + [aux_sym_preproc_include_token1] = ACTIONS(2845), + [aux_sym_preproc_def_token1] = ACTIONS(2845), + [aux_sym_preproc_if_token1] = ACTIONS(2845), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2845), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2845), + [sym_preproc_directive] = ACTIONS(2845), + [anon_sym_LPAREN2] = ACTIONS(2847), + [anon_sym_BANG] = ACTIONS(2847), + [anon_sym_TILDE] = ACTIONS(2847), + [anon_sym_DASH] = ACTIONS(2845), + [anon_sym_PLUS] = ACTIONS(2845), + [anon_sym_STAR] = ACTIONS(2847), + [anon_sym_AMP_AMP] = ACTIONS(2847), + [anon_sym_AMP] = ACTIONS(2845), + [anon_sym_SEMI] = ACTIONS(2847), + [anon_sym_typedef] = ACTIONS(2845), + [anon_sym_extern] = ACTIONS(2845), + [anon_sym___attribute__] = ACTIONS(2845), + [anon_sym_COLON_COLON] = ACTIONS(2847), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2847), + [anon_sym___declspec] = ACTIONS(2845), + [anon_sym___based] = ACTIONS(2845), + [anon_sym___cdecl] = ACTIONS(2845), + [anon_sym___clrcall] = ACTIONS(2845), + [anon_sym___stdcall] = ACTIONS(2845), + [anon_sym___fastcall] = ACTIONS(2845), + [anon_sym___thiscall] = ACTIONS(2845), + [anon_sym___vectorcall] = ACTIONS(2845), + [anon_sym_LBRACE] = ACTIONS(2847), + [anon_sym_RBRACE] = ACTIONS(2847), + [anon_sym_LBRACK] = ACTIONS(2845), + [anon_sym_static] = ACTIONS(2845), + [anon_sym_register] = ACTIONS(2845), + [anon_sym_inline] = ACTIONS(2845), + [anon_sym_thread_local] = ACTIONS(2845), + [anon_sym_const] = ACTIONS(2845), + [anon_sym_volatile] = ACTIONS(2845), + [anon_sym_restrict] = ACTIONS(2845), + [anon_sym__Atomic] = ACTIONS(2845), + [anon_sym_mutable] = ACTIONS(2845), + [anon_sym_constexpr] = ACTIONS(2845), + [anon_sym_constinit] = ACTIONS(2845), + [anon_sym_consteval] = ACTIONS(2845), + [anon_sym_signed] = ACTIONS(2845), + [anon_sym_unsigned] = ACTIONS(2845), + [anon_sym_long] = ACTIONS(2845), + [anon_sym_short] = ACTIONS(2845), + [sym_primitive_type] = ACTIONS(2845), + [anon_sym_enum] = ACTIONS(2845), + [anon_sym_class] = ACTIONS(2845), + [anon_sym_struct] = ACTIONS(2845), + [anon_sym_union] = ACTIONS(2845), + [anon_sym_if] = ACTIONS(2845), + [anon_sym_switch] = ACTIONS(2845), + [anon_sym_case] = ACTIONS(2845), + [anon_sym_default] = ACTIONS(2845), + [anon_sym_while] = ACTIONS(2845), + [anon_sym_do] = ACTIONS(2845), + [anon_sym_for] = ACTIONS(2845), + [anon_sym_return] = ACTIONS(2845), + [anon_sym_break] = ACTIONS(2845), + [anon_sym_continue] = ACTIONS(2845), + [anon_sym_goto] = ACTIONS(2845), + [anon_sym_not] = ACTIONS(2845), + [anon_sym_compl] = ACTIONS(2845), + [anon_sym_DASH_DASH] = ACTIONS(2847), + [anon_sym_PLUS_PLUS] = ACTIONS(2847), + [anon_sym_sizeof] = ACTIONS(2845), + [sym_number_literal] = ACTIONS(2847), + [anon_sym_L_SQUOTE] = ACTIONS(2847), + [anon_sym_u_SQUOTE] = ACTIONS(2847), + [anon_sym_U_SQUOTE] = ACTIONS(2847), + [anon_sym_u8_SQUOTE] = ACTIONS(2847), + [anon_sym_SQUOTE] = ACTIONS(2847), + [anon_sym_L_DQUOTE] = ACTIONS(2847), + [anon_sym_u_DQUOTE] = ACTIONS(2847), + [anon_sym_U_DQUOTE] = ACTIONS(2847), + [anon_sym_u8_DQUOTE] = ACTIONS(2847), + [anon_sym_DQUOTE] = ACTIONS(2847), + [sym_true] = ACTIONS(2845), + [sym_false] = ACTIONS(2845), + [sym_null] = ACTIONS(2845), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2845), + [anon_sym_decltype] = ACTIONS(2845), + [anon_sym_virtual] = ACTIONS(2845), + [anon_sym_explicit] = ACTIONS(2845), + [anon_sym_typename] = ACTIONS(2845), + [anon_sym_template] = ACTIONS(2845), + [anon_sym_operator] = ACTIONS(2845), + [anon_sym_try] = ACTIONS(2845), + [anon_sym_delete] = ACTIONS(2845), + [anon_sym_throw] = ACTIONS(2845), + [anon_sym_namespace] = ACTIONS(2845), + [anon_sym_using] = ACTIONS(2845), + [anon_sym_static_assert] = ACTIONS(2845), + [anon_sym_concept] = ACTIONS(2845), + [anon_sym_co_return] = ACTIONS(2845), + [anon_sym_co_yield] = ACTIONS(2845), + [anon_sym_co_await] = ACTIONS(2845), + [anon_sym_new] = ACTIONS(2845), + [anon_sym_requires] = ACTIONS(2845), + [sym_this] = ACTIONS(2845), + [sym_nullptr] = ACTIONS(2845), + [sym_raw_string_literal] = ACTIONS(2847), }, - [1382] = { - [sym__expression] = STATE(3910), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_initializer_list] = STATE(6698), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1465), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [921] = { + [ts_builtin_sym_end] = ACTIONS(2735), + [sym_identifier] = ACTIONS(2733), + [aux_sym_preproc_include_token1] = ACTIONS(2733), + [aux_sym_preproc_def_token1] = ACTIONS(2733), + [aux_sym_preproc_if_token1] = ACTIONS(2733), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2733), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2733), + [sym_preproc_directive] = ACTIONS(2733), + [anon_sym_LPAREN2] = ACTIONS(2735), + [anon_sym_BANG] = ACTIONS(2735), + [anon_sym_TILDE] = ACTIONS(2735), + [anon_sym_DASH] = ACTIONS(2733), + [anon_sym_PLUS] = ACTIONS(2733), + [anon_sym_STAR] = ACTIONS(2735), + [anon_sym_AMP_AMP] = ACTIONS(2735), + [anon_sym_AMP] = ACTIONS(2733), + [anon_sym_SEMI] = ACTIONS(2735), + [anon_sym_typedef] = ACTIONS(2733), + [anon_sym_extern] = ACTIONS(2733), + [anon_sym___attribute__] = ACTIONS(2733), + [anon_sym_COLON_COLON] = ACTIONS(2735), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2735), + [anon_sym___declspec] = ACTIONS(2733), + [anon_sym___based] = ACTIONS(2733), + [anon_sym___cdecl] = ACTIONS(2733), + [anon_sym___clrcall] = ACTIONS(2733), + [anon_sym___stdcall] = ACTIONS(2733), + [anon_sym___fastcall] = ACTIONS(2733), + [anon_sym___thiscall] = ACTIONS(2733), + [anon_sym___vectorcall] = ACTIONS(2733), + [anon_sym_LBRACE] = ACTIONS(2735), + [anon_sym_LBRACK] = ACTIONS(2733), + [anon_sym_static] = ACTIONS(2733), + [anon_sym_register] = ACTIONS(2733), + [anon_sym_inline] = ACTIONS(2733), + [anon_sym_thread_local] = ACTIONS(2733), + [anon_sym_const] = ACTIONS(2733), + [anon_sym_volatile] = ACTIONS(2733), + [anon_sym_restrict] = ACTIONS(2733), + [anon_sym__Atomic] = ACTIONS(2733), + [anon_sym_mutable] = ACTIONS(2733), + [anon_sym_constexpr] = ACTIONS(2733), + [anon_sym_constinit] = ACTIONS(2733), + [anon_sym_consteval] = ACTIONS(2733), + [anon_sym_signed] = ACTIONS(2733), + [anon_sym_unsigned] = ACTIONS(2733), + [anon_sym_long] = ACTIONS(2733), + [anon_sym_short] = ACTIONS(2733), + [sym_primitive_type] = ACTIONS(2733), + [anon_sym_enum] = ACTIONS(2733), + [anon_sym_class] = ACTIONS(2733), + [anon_sym_struct] = ACTIONS(2733), + [anon_sym_union] = ACTIONS(2733), + [anon_sym_if] = ACTIONS(2733), + [anon_sym_switch] = ACTIONS(2733), + [anon_sym_case] = ACTIONS(2733), + [anon_sym_default] = ACTIONS(2733), + [anon_sym_while] = ACTIONS(2733), + [anon_sym_do] = ACTIONS(2733), + [anon_sym_for] = ACTIONS(2733), + [anon_sym_return] = ACTIONS(2733), + [anon_sym_break] = ACTIONS(2733), + [anon_sym_continue] = ACTIONS(2733), + [anon_sym_goto] = ACTIONS(2733), + [anon_sym_not] = ACTIONS(2733), + [anon_sym_compl] = ACTIONS(2733), + [anon_sym_DASH_DASH] = ACTIONS(2735), + [anon_sym_PLUS_PLUS] = ACTIONS(2735), + [anon_sym_sizeof] = ACTIONS(2733), + [sym_number_literal] = ACTIONS(2735), + [anon_sym_L_SQUOTE] = ACTIONS(2735), + [anon_sym_u_SQUOTE] = ACTIONS(2735), + [anon_sym_U_SQUOTE] = ACTIONS(2735), + [anon_sym_u8_SQUOTE] = ACTIONS(2735), + [anon_sym_SQUOTE] = ACTIONS(2735), + [anon_sym_L_DQUOTE] = ACTIONS(2735), + [anon_sym_u_DQUOTE] = ACTIONS(2735), + [anon_sym_U_DQUOTE] = ACTIONS(2735), + [anon_sym_u8_DQUOTE] = ACTIONS(2735), + [anon_sym_DQUOTE] = ACTIONS(2735), + [sym_true] = ACTIONS(2733), + [sym_false] = ACTIONS(2733), + [sym_null] = ACTIONS(2733), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2733), + [anon_sym_decltype] = ACTIONS(2733), + [anon_sym_virtual] = ACTIONS(2733), + [anon_sym_explicit] = ACTIONS(2733), + [anon_sym_typename] = ACTIONS(2733), + [anon_sym_template] = ACTIONS(2733), + [anon_sym_operator] = ACTIONS(2733), + [anon_sym_try] = ACTIONS(2733), + [anon_sym_delete] = ACTIONS(2733), + [anon_sym_throw] = ACTIONS(2733), + [anon_sym_namespace] = ACTIONS(2733), + [anon_sym_using] = ACTIONS(2733), + [anon_sym_static_assert] = ACTIONS(2733), + [anon_sym_concept] = ACTIONS(2733), + [anon_sym_co_return] = ACTIONS(2733), + [anon_sym_co_yield] = ACTIONS(2733), + [anon_sym_co_await] = ACTIONS(2733), + [anon_sym_new] = ACTIONS(2733), + [anon_sym_requires] = ACTIONS(2733), + [sym_this] = ACTIONS(2733), + [sym_nullptr] = ACTIONS(2733), + [sym_raw_string_literal] = ACTIONS(2735), }, - [1383] = { - [sym__expression] = STATE(3811), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2981), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2981), - [sym_call_expression] = STATE(2981), - [sym_field_expression] = STATE(2981), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2981), - [sym_initializer_list] = STATE(6394), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2981), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3039), - [anon_sym_LPAREN2] = ACTIONS(3041), - [anon_sym_BANG] = ACTIONS(3045), - [anon_sym_TILDE] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(3047), - [anon_sym_LBRACE] = ACTIONS(1465), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3049), - [anon_sym_PLUS_PLUS] = ACTIONS(3049), - [anon_sym_sizeof] = ACTIONS(3051), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3053), - [anon_sym_co_await] = ACTIONS(3055), - [anon_sym_new] = ACTIONS(3057), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [922] = { + [sym_identifier] = ACTIONS(2875), + [aux_sym_preproc_include_token1] = ACTIONS(2875), + [aux_sym_preproc_def_token1] = ACTIONS(2875), + [aux_sym_preproc_if_token1] = ACTIONS(2875), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2875), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2875), + [sym_preproc_directive] = ACTIONS(2875), + [anon_sym_LPAREN2] = ACTIONS(2877), + [anon_sym_BANG] = ACTIONS(2877), + [anon_sym_TILDE] = ACTIONS(2877), + [anon_sym_DASH] = ACTIONS(2875), + [anon_sym_PLUS] = ACTIONS(2875), + [anon_sym_STAR] = ACTIONS(2877), + [anon_sym_AMP_AMP] = ACTIONS(2877), + [anon_sym_AMP] = ACTIONS(2875), + [anon_sym_SEMI] = ACTIONS(2877), + [anon_sym_typedef] = ACTIONS(2875), + [anon_sym_extern] = ACTIONS(2875), + [anon_sym___attribute__] = ACTIONS(2875), + [anon_sym_COLON_COLON] = ACTIONS(2877), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2877), + [anon_sym___declspec] = ACTIONS(2875), + [anon_sym___based] = ACTIONS(2875), + [anon_sym___cdecl] = ACTIONS(2875), + [anon_sym___clrcall] = ACTIONS(2875), + [anon_sym___stdcall] = ACTIONS(2875), + [anon_sym___fastcall] = ACTIONS(2875), + [anon_sym___thiscall] = ACTIONS(2875), + [anon_sym___vectorcall] = ACTIONS(2875), + [anon_sym_LBRACE] = ACTIONS(2877), + [anon_sym_RBRACE] = ACTIONS(2877), + [anon_sym_LBRACK] = ACTIONS(2875), + [anon_sym_static] = ACTIONS(2875), + [anon_sym_register] = ACTIONS(2875), + [anon_sym_inline] = ACTIONS(2875), + [anon_sym_thread_local] = ACTIONS(2875), + [anon_sym_const] = ACTIONS(2875), + [anon_sym_volatile] = ACTIONS(2875), + [anon_sym_restrict] = ACTIONS(2875), + [anon_sym__Atomic] = ACTIONS(2875), + [anon_sym_mutable] = ACTIONS(2875), + [anon_sym_constexpr] = ACTIONS(2875), + [anon_sym_constinit] = ACTIONS(2875), + [anon_sym_consteval] = ACTIONS(2875), + [anon_sym_signed] = ACTIONS(2875), + [anon_sym_unsigned] = ACTIONS(2875), + [anon_sym_long] = ACTIONS(2875), + [anon_sym_short] = ACTIONS(2875), + [sym_primitive_type] = ACTIONS(2875), + [anon_sym_enum] = ACTIONS(2875), + [anon_sym_class] = ACTIONS(2875), + [anon_sym_struct] = ACTIONS(2875), + [anon_sym_union] = ACTIONS(2875), + [anon_sym_if] = ACTIONS(2875), + [anon_sym_switch] = ACTIONS(2875), + [anon_sym_case] = ACTIONS(2875), + [anon_sym_default] = ACTIONS(2875), + [anon_sym_while] = ACTIONS(2875), + [anon_sym_do] = ACTIONS(2875), + [anon_sym_for] = ACTIONS(2875), + [anon_sym_return] = ACTIONS(2875), + [anon_sym_break] = ACTIONS(2875), + [anon_sym_continue] = ACTIONS(2875), + [anon_sym_goto] = ACTIONS(2875), + [anon_sym_not] = ACTIONS(2875), + [anon_sym_compl] = ACTIONS(2875), + [anon_sym_DASH_DASH] = ACTIONS(2877), + [anon_sym_PLUS_PLUS] = ACTIONS(2877), + [anon_sym_sizeof] = ACTIONS(2875), + [sym_number_literal] = ACTIONS(2877), + [anon_sym_L_SQUOTE] = ACTIONS(2877), + [anon_sym_u_SQUOTE] = ACTIONS(2877), + [anon_sym_U_SQUOTE] = ACTIONS(2877), + [anon_sym_u8_SQUOTE] = ACTIONS(2877), + [anon_sym_SQUOTE] = ACTIONS(2877), + [anon_sym_L_DQUOTE] = ACTIONS(2877), + [anon_sym_u_DQUOTE] = ACTIONS(2877), + [anon_sym_U_DQUOTE] = ACTIONS(2877), + [anon_sym_u8_DQUOTE] = ACTIONS(2877), + [anon_sym_DQUOTE] = ACTIONS(2877), + [sym_true] = ACTIONS(2875), + [sym_false] = ACTIONS(2875), + [sym_null] = ACTIONS(2875), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2875), + [anon_sym_decltype] = ACTIONS(2875), + [anon_sym_virtual] = ACTIONS(2875), + [anon_sym_explicit] = ACTIONS(2875), + [anon_sym_typename] = ACTIONS(2875), + [anon_sym_template] = ACTIONS(2875), + [anon_sym_operator] = ACTIONS(2875), + [anon_sym_try] = ACTIONS(2875), + [anon_sym_delete] = ACTIONS(2875), + [anon_sym_throw] = ACTIONS(2875), + [anon_sym_namespace] = ACTIONS(2875), + [anon_sym_using] = ACTIONS(2875), + [anon_sym_static_assert] = ACTIONS(2875), + [anon_sym_concept] = ACTIONS(2875), + [anon_sym_co_return] = ACTIONS(2875), + [anon_sym_co_yield] = ACTIONS(2875), + [anon_sym_co_await] = ACTIONS(2875), + [anon_sym_new] = ACTIONS(2875), + [anon_sym_requires] = ACTIONS(2875), + [sym_this] = ACTIONS(2875), + [sym_nullptr] = ACTIONS(2875), + [sym_raw_string_literal] = ACTIONS(2877), }, - [1384] = { - [sym__expression] = STATE(3666), - [sym_comma_expression] = STATE(6517), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_RPAREN] = ACTIONS(3496), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [923] = { + [sym_identifier] = ACTIONS(2895), + [aux_sym_preproc_include_token1] = ACTIONS(2895), + [aux_sym_preproc_def_token1] = ACTIONS(2895), + [aux_sym_preproc_if_token1] = ACTIONS(2895), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2895), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2895), + [sym_preproc_directive] = ACTIONS(2895), + [anon_sym_LPAREN2] = ACTIONS(2897), + [anon_sym_BANG] = ACTIONS(2897), + [anon_sym_TILDE] = ACTIONS(2897), + [anon_sym_DASH] = ACTIONS(2895), + [anon_sym_PLUS] = ACTIONS(2895), + [anon_sym_STAR] = ACTIONS(2897), + [anon_sym_AMP_AMP] = ACTIONS(2897), + [anon_sym_AMP] = ACTIONS(2895), + [anon_sym_SEMI] = ACTIONS(2897), + [anon_sym_typedef] = ACTIONS(2895), + [anon_sym_extern] = ACTIONS(2895), + [anon_sym___attribute__] = ACTIONS(2895), + [anon_sym_COLON_COLON] = ACTIONS(2897), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2897), + [anon_sym___declspec] = ACTIONS(2895), + [anon_sym___based] = ACTIONS(2895), + [anon_sym___cdecl] = ACTIONS(2895), + [anon_sym___clrcall] = ACTIONS(2895), + [anon_sym___stdcall] = ACTIONS(2895), + [anon_sym___fastcall] = ACTIONS(2895), + [anon_sym___thiscall] = ACTIONS(2895), + [anon_sym___vectorcall] = ACTIONS(2895), + [anon_sym_LBRACE] = ACTIONS(2897), + [anon_sym_RBRACE] = ACTIONS(2897), + [anon_sym_LBRACK] = ACTIONS(2895), + [anon_sym_static] = ACTIONS(2895), + [anon_sym_register] = ACTIONS(2895), + [anon_sym_inline] = ACTIONS(2895), + [anon_sym_thread_local] = ACTIONS(2895), + [anon_sym_const] = ACTIONS(2895), + [anon_sym_volatile] = ACTIONS(2895), + [anon_sym_restrict] = ACTIONS(2895), + [anon_sym__Atomic] = ACTIONS(2895), + [anon_sym_mutable] = ACTIONS(2895), + [anon_sym_constexpr] = ACTIONS(2895), + [anon_sym_constinit] = ACTIONS(2895), + [anon_sym_consteval] = ACTIONS(2895), + [anon_sym_signed] = ACTIONS(2895), + [anon_sym_unsigned] = ACTIONS(2895), + [anon_sym_long] = ACTIONS(2895), + [anon_sym_short] = ACTIONS(2895), + [sym_primitive_type] = ACTIONS(2895), + [anon_sym_enum] = ACTIONS(2895), + [anon_sym_class] = ACTIONS(2895), + [anon_sym_struct] = ACTIONS(2895), + [anon_sym_union] = ACTIONS(2895), + [anon_sym_if] = ACTIONS(2895), + [anon_sym_switch] = ACTIONS(2895), + [anon_sym_case] = ACTIONS(2895), + [anon_sym_default] = ACTIONS(2895), + [anon_sym_while] = ACTIONS(2895), + [anon_sym_do] = ACTIONS(2895), + [anon_sym_for] = ACTIONS(2895), + [anon_sym_return] = ACTIONS(2895), + [anon_sym_break] = ACTIONS(2895), + [anon_sym_continue] = ACTIONS(2895), + [anon_sym_goto] = ACTIONS(2895), + [anon_sym_not] = ACTIONS(2895), + [anon_sym_compl] = ACTIONS(2895), + [anon_sym_DASH_DASH] = ACTIONS(2897), + [anon_sym_PLUS_PLUS] = ACTIONS(2897), + [anon_sym_sizeof] = ACTIONS(2895), + [sym_number_literal] = ACTIONS(2897), + [anon_sym_L_SQUOTE] = ACTIONS(2897), + [anon_sym_u_SQUOTE] = ACTIONS(2897), + [anon_sym_U_SQUOTE] = ACTIONS(2897), + [anon_sym_u8_SQUOTE] = ACTIONS(2897), + [anon_sym_SQUOTE] = ACTIONS(2897), + [anon_sym_L_DQUOTE] = ACTIONS(2897), + [anon_sym_u_DQUOTE] = ACTIONS(2897), + [anon_sym_U_DQUOTE] = ACTIONS(2897), + [anon_sym_u8_DQUOTE] = ACTIONS(2897), + [anon_sym_DQUOTE] = ACTIONS(2897), + [sym_true] = ACTIONS(2895), + [sym_false] = ACTIONS(2895), + [sym_null] = ACTIONS(2895), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2895), + [anon_sym_decltype] = ACTIONS(2895), + [anon_sym_virtual] = ACTIONS(2895), + [anon_sym_explicit] = ACTIONS(2895), + [anon_sym_typename] = ACTIONS(2895), + [anon_sym_template] = ACTIONS(2895), + [anon_sym_operator] = ACTIONS(2895), + [anon_sym_try] = ACTIONS(2895), + [anon_sym_delete] = ACTIONS(2895), + [anon_sym_throw] = ACTIONS(2895), + [anon_sym_namespace] = ACTIONS(2895), + [anon_sym_using] = ACTIONS(2895), + [anon_sym_static_assert] = ACTIONS(2895), + [anon_sym_concept] = ACTIONS(2895), + [anon_sym_co_return] = ACTIONS(2895), + [anon_sym_co_yield] = ACTIONS(2895), + [anon_sym_co_await] = ACTIONS(2895), + [anon_sym_new] = ACTIONS(2895), + [anon_sym_requires] = ACTIONS(2895), + [sym_this] = ACTIONS(2895), + [sym_nullptr] = ACTIONS(2895), + [sym_raw_string_literal] = ACTIONS(2897), }, - [1385] = { - [sym__expression] = STATE(3959), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_initializer_list] = STATE(6385), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1465), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [924] = { + [sym_identifier] = ACTIONS(2869), + [aux_sym_preproc_include_token1] = ACTIONS(2869), + [aux_sym_preproc_def_token1] = ACTIONS(2869), + [aux_sym_preproc_if_token1] = ACTIONS(2869), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2869), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2869), + [sym_preproc_directive] = ACTIONS(2869), + [anon_sym_LPAREN2] = ACTIONS(2871), + [anon_sym_BANG] = ACTIONS(2871), + [anon_sym_TILDE] = ACTIONS(2871), + [anon_sym_DASH] = ACTIONS(2869), + [anon_sym_PLUS] = ACTIONS(2869), + [anon_sym_STAR] = ACTIONS(2871), + [anon_sym_AMP_AMP] = ACTIONS(2871), + [anon_sym_AMP] = ACTIONS(2869), + [anon_sym_SEMI] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2869), + [anon_sym_extern] = ACTIONS(2869), + [anon_sym___attribute__] = ACTIONS(2869), + [anon_sym_COLON_COLON] = ACTIONS(2871), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2871), + [anon_sym___declspec] = ACTIONS(2869), + [anon_sym___based] = ACTIONS(2869), + [anon_sym___cdecl] = ACTIONS(2869), + [anon_sym___clrcall] = ACTIONS(2869), + [anon_sym___stdcall] = ACTIONS(2869), + [anon_sym___fastcall] = ACTIONS(2869), + [anon_sym___thiscall] = ACTIONS(2869), + [anon_sym___vectorcall] = ACTIONS(2869), + [anon_sym_LBRACE] = ACTIONS(2871), + [anon_sym_RBRACE] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2869), + [anon_sym_static] = ACTIONS(2869), + [anon_sym_register] = ACTIONS(2869), + [anon_sym_inline] = ACTIONS(2869), + [anon_sym_thread_local] = ACTIONS(2869), + [anon_sym_const] = ACTIONS(2869), + [anon_sym_volatile] = ACTIONS(2869), + [anon_sym_restrict] = ACTIONS(2869), + [anon_sym__Atomic] = ACTIONS(2869), + [anon_sym_mutable] = ACTIONS(2869), + [anon_sym_constexpr] = ACTIONS(2869), + [anon_sym_constinit] = ACTIONS(2869), + [anon_sym_consteval] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2869), + [anon_sym_unsigned] = ACTIONS(2869), + [anon_sym_long] = ACTIONS(2869), + [anon_sym_short] = ACTIONS(2869), + [sym_primitive_type] = ACTIONS(2869), + [anon_sym_enum] = ACTIONS(2869), + [anon_sym_class] = ACTIONS(2869), + [anon_sym_struct] = ACTIONS(2869), + [anon_sym_union] = ACTIONS(2869), + [anon_sym_if] = ACTIONS(2869), + [anon_sym_switch] = ACTIONS(2869), + [anon_sym_case] = ACTIONS(2869), + [anon_sym_default] = ACTIONS(2869), + [anon_sym_while] = ACTIONS(2869), + [anon_sym_do] = ACTIONS(2869), + [anon_sym_for] = ACTIONS(2869), + [anon_sym_return] = ACTIONS(2869), + [anon_sym_break] = ACTIONS(2869), + [anon_sym_continue] = ACTIONS(2869), + [anon_sym_goto] = ACTIONS(2869), + [anon_sym_not] = ACTIONS(2869), + [anon_sym_compl] = ACTIONS(2869), + [anon_sym_DASH_DASH] = ACTIONS(2871), + [anon_sym_PLUS_PLUS] = ACTIONS(2871), + [anon_sym_sizeof] = ACTIONS(2869), + [sym_number_literal] = ACTIONS(2871), + [anon_sym_L_SQUOTE] = ACTIONS(2871), + [anon_sym_u_SQUOTE] = ACTIONS(2871), + [anon_sym_U_SQUOTE] = ACTIONS(2871), + [anon_sym_u8_SQUOTE] = ACTIONS(2871), + [anon_sym_SQUOTE] = ACTIONS(2871), + [anon_sym_L_DQUOTE] = ACTIONS(2871), + [anon_sym_u_DQUOTE] = ACTIONS(2871), + [anon_sym_U_DQUOTE] = ACTIONS(2871), + [anon_sym_u8_DQUOTE] = ACTIONS(2871), + [anon_sym_DQUOTE] = ACTIONS(2871), + [sym_true] = ACTIONS(2869), + [sym_false] = ACTIONS(2869), + [sym_null] = ACTIONS(2869), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2869), + [anon_sym_decltype] = ACTIONS(2869), + [anon_sym_virtual] = ACTIONS(2869), + [anon_sym_explicit] = ACTIONS(2869), + [anon_sym_typename] = ACTIONS(2869), + [anon_sym_template] = ACTIONS(2869), + [anon_sym_operator] = ACTIONS(2869), + [anon_sym_try] = ACTIONS(2869), + [anon_sym_delete] = ACTIONS(2869), + [anon_sym_throw] = ACTIONS(2869), + [anon_sym_namespace] = ACTIONS(2869), + [anon_sym_using] = ACTIONS(2869), + [anon_sym_static_assert] = ACTIONS(2869), + [anon_sym_concept] = ACTIONS(2869), + [anon_sym_co_return] = ACTIONS(2869), + [anon_sym_co_yield] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2869), + [anon_sym_new] = ACTIONS(2869), + [anon_sym_requires] = ACTIONS(2869), + [sym_this] = ACTIONS(2869), + [sym_nullptr] = ACTIONS(2869), + [sym_raw_string_literal] = ACTIONS(2871), }, - [1386] = { - [sym__expression] = STATE(3743), - [sym_comma_expression] = STATE(6875), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_RPAREN] = ACTIONS(3498), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [925] = { + [sym_identifier] = ACTIONS(2865), + [aux_sym_preproc_include_token1] = ACTIONS(2865), + [aux_sym_preproc_def_token1] = ACTIONS(2865), + [aux_sym_preproc_if_token1] = ACTIONS(2865), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2865), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2865), + [sym_preproc_directive] = ACTIONS(2865), + [anon_sym_LPAREN2] = ACTIONS(2867), + [anon_sym_BANG] = ACTIONS(2867), + [anon_sym_TILDE] = ACTIONS(2867), + [anon_sym_DASH] = ACTIONS(2865), + [anon_sym_PLUS] = ACTIONS(2865), + [anon_sym_STAR] = ACTIONS(2867), + [anon_sym_AMP_AMP] = ACTIONS(2867), + [anon_sym_AMP] = ACTIONS(2865), + [anon_sym_SEMI] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2865), + [anon_sym_extern] = ACTIONS(2865), + [anon_sym___attribute__] = ACTIONS(2865), + [anon_sym_COLON_COLON] = ACTIONS(2867), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2867), + [anon_sym___declspec] = ACTIONS(2865), + [anon_sym___based] = ACTIONS(2865), + [anon_sym___cdecl] = ACTIONS(2865), + [anon_sym___clrcall] = ACTIONS(2865), + [anon_sym___stdcall] = ACTIONS(2865), + [anon_sym___fastcall] = ACTIONS(2865), + [anon_sym___thiscall] = ACTIONS(2865), + [anon_sym___vectorcall] = ACTIONS(2865), + [anon_sym_LBRACE] = ACTIONS(2867), + [anon_sym_RBRACE] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2865), + [anon_sym_static] = ACTIONS(2865), + [anon_sym_register] = ACTIONS(2865), + [anon_sym_inline] = ACTIONS(2865), + [anon_sym_thread_local] = ACTIONS(2865), + [anon_sym_const] = ACTIONS(2865), + [anon_sym_volatile] = ACTIONS(2865), + [anon_sym_restrict] = ACTIONS(2865), + [anon_sym__Atomic] = ACTIONS(2865), + [anon_sym_mutable] = ACTIONS(2865), + [anon_sym_constexpr] = ACTIONS(2865), + [anon_sym_constinit] = ACTIONS(2865), + [anon_sym_consteval] = ACTIONS(2865), + [anon_sym_signed] = ACTIONS(2865), + [anon_sym_unsigned] = ACTIONS(2865), + [anon_sym_long] = ACTIONS(2865), + [anon_sym_short] = ACTIONS(2865), + [sym_primitive_type] = ACTIONS(2865), + [anon_sym_enum] = ACTIONS(2865), + [anon_sym_class] = ACTIONS(2865), + [anon_sym_struct] = ACTIONS(2865), + [anon_sym_union] = ACTIONS(2865), + [anon_sym_if] = ACTIONS(2865), + [anon_sym_switch] = ACTIONS(2865), + [anon_sym_case] = ACTIONS(2865), + [anon_sym_default] = ACTIONS(2865), + [anon_sym_while] = ACTIONS(2865), + [anon_sym_do] = ACTIONS(2865), + [anon_sym_for] = ACTIONS(2865), + [anon_sym_return] = ACTIONS(2865), + [anon_sym_break] = ACTIONS(2865), + [anon_sym_continue] = ACTIONS(2865), + [anon_sym_goto] = ACTIONS(2865), + [anon_sym_not] = ACTIONS(2865), + [anon_sym_compl] = ACTIONS(2865), + [anon_sym_DASH_DASH] = ACTIONS(2867), + [anon_sym_PLUS_PLUS] = ACTIONS(2867), + [anon_sym_sizeof] = ACTIONS(2865), + [sym_number_literal] = ACTIONS(2867), + [anon_sym_L_SQUOTE] = ACTIONS(2867), + [anon_sym_u_SQUOTE] = ACTIONS(2867), + [anon_sym_U_SQUOTE] = ACTIONS(2867), + [anon_sym_u8_SQUOTE] = ACTIONS(2867), + [anon_sym_SQUOTE] = ACTIONS(2867), + [anon_sym_L_DQUOTE] = ACTIONS(2867), + [anon_sym_u_DQUOTE] = ACTIONS(2867), + [anon_sym_U_DQUOTE] = ACTIONS(2867), + [anon_sym_u8_DQUOTE] = ACTIONS(2867), + [anon_sym_DQUOTE] = ACTIONS(2867), + [sym_true] = ACTIONS(2865), + [sym_false] = ACTIONS(2865), + [sym_null] = ACTIONS(2865), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2865), + [anon_sym_decltype] = ACTIONS(2865), + [anon_sym_virtual] = ACTIONS(2865), + [anon_sym_explicit] = ACTIONS(2865), + [anon_sym_typename] = ACTIONS(2865), + [anon_sym_template] = ACTIONS(2865), + [anon_sym_operator] = ACTIONS(2865), + [anon_sym_try] = ACTIONS(2865), + [anon_sym_delete] = ACTIONS(2865), + [anon_sym_throw] = ACTIONS(2865), + [anon_sym_namespace] = ACTIONS(2865), + [anon_sym_using] = ACTIONS(2865), + [anon_sym_static_assert] = ACTIONS(2865), + [anon_sym_concept] = ACTIONS(2865), + [anon_sym_co_return] = ACTIONS(2865), + [anon_sym_co_yield] = ACTIONS(2865), + [anon_sym_co_await] = ACTIONS(2865), + [anon_sym_new] = ACTIONS(2865), + [anon_sym_requires] = ACTIONS(2865), + [sym_this] = ACTIONS(2865), + [sym_nullptr] = ACTIONS(2865), + [sym_raw_string_literal] = ACTIONS(2867), }, - [1387] = { - [sym__expression] = STATE(3648), - [sym_comma_expression] = STATE(6411), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_RPAREN] = ACTIONS(3500), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [926] = { + [sym_identifier] = ACTIONS(2861), + [aux_sym_preproc_include_token1] = ACTIONS(2861), + [aux_sym_preproc_def_token1] = ACTIONS(2861), + [aux_sym_preproc_if_token1] = ACTIONS(2861), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2861), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2861), + [sym_preproc_directive] = ACTIONS(2861), + [anon_sym_LPAREN2] = ACTIONS(2863), + [anon_sym_BANG] = ACTIONS(2863), + [anon_sym_TILDE] = ACTIONS(2863), + [anon_sym_DASH] = ACTIONS(2861), + [anon_sym_PLUS] = ACTIONS(2861), + [anon_sym_STAR] = ACTIONS(2863), + [anon_sym_AMP_AMP] = ACTIONS(2863), + [anon_sym_AMP] = ACTIONS(2861), + [anon_sym_SEMI] = ACTIONS(2863), + [anon_sym_typedef] = ACTIONS(2861), + [anon_sym_extern] = ACTIONS(2861), + [anon_sym___attribute__] = ACTIONS(2861), + [anon_sym_COLON_COLON] = ACTIONS(2863), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2863), + [anon_sym___declspec] = ACTIONS(2861), + [anon_sym___based] = ACTIONS(2861), + [anon_sym___cdecl] = ACTIONS(2861), + [anon_sym___clrcall] = ACTIONS(2861), + [anon_sym___stdcall] = ACTIONS(2861), + [anon_sym___fastcall] = ACTIONS(2861), + [anon_sym___thiscall] = ACTIONS(2861), + [anon_sym___vectorcall] = ACTIONS(2861), + [anon_sym_LBRACE] = ACTIONS(2863), + [anon_sym_RBRACE] = ACTIONS(2863), + [anon_sym_LBRACK] = ACTIONS(2861), + [anon_sym_static] = ACTIONS(2861), + [anon_sym_register] = ACTIONS(2861), + [anon_sym_inline] = ACTIONS(2861), + [anon_sym_thread_local] = ACTIONS(2861), + [anon_sym_const] = ACTIONS(2861), + [anon_sym_volatile] = ACTIONS(2861), + [anon_sym_restrict] = ACTIONS(2861), + [anon_sym__Atomic] = ACTIONS(2861), + [anon_sym_mutable] = ACTIONS(2861), + [anon_sym_constexpr] = ACTIONS(2861), + [anon_sym_constinit] = ACTIONS(2861), + [anon_sym_consteval] = ACTIONS(2861), + [anon_sym_signed] = ACTIONS(2861), + [anon_sym_unsigned] = ACTIONS(2861), + [anon_sym_long] = ACTIONS(2861), + [anon_sym_short] = ACTIONS(2861), + [sym_primitive_type] = ACTIONS(2861), + [anon_sym_enum] = ACTIONS(2861), + [anon_sym_class] = ACTIONS(2861), + [anon_sym_struct] = ACTIONS(2861), + [anon_sym_union] = ACTIONS(2861), + [anon_sym_if] = ACTIONS(2861), + [anon_sym_switch] = ACTIONS(2861), + [anon_sym_case] = ACTIONS(2861), + [anon_sym_default] = ACTIONS(2861), + [anon_sym_while] = ACTIONS(2861), + [anon_sym_do] = ACTIONS(2861), + [anon_sym_for] = ACTIONS(2861), + [anon_sym_return] = ACTIONS(2861), + [anon_sym_break] = ACTIONS(2861), + [anon_sym_continue] = ACTIONS(2861), + [anon_sym_goto] = ACTIONS(2861), + [anon_sym_not] = ACTIONS(2861), + [anon_sym_compl] = ACTIONS(2861), + [anon_sym_DASH_DASH] = ACTIONS(2863), + [anon_sym_PLUS_PLUS] = ACTIONS(2863), + [anon_sym_sizeof] = ACTIONS(2861), + [sym_number_literal] = ACTIONS(2863), + [anon_sym_L_SQUOTE] = ACTIONS(2863), + [anon_sym_u_SQUOTE] = ACTIONS(2863), + [anon_sym_U_SQUOTE] = ACTIONS(2863), + [anon_sym_u8_SQUOTE] = ACTIONS(2863), + [anon_sym_SQUOTE] = ACTIONS(2863), + [anon_sym_L_DQUOTE] = ACTIONS(2863), + [anon_sym_u_DQUOTE] = ACTIONS(2863), + [anon_sym_U_DQUOTE] = ACTIONS(2863), + [anon_sym_u8_DQUOTE] = ACTIONS(2863), + [anon_sym_DQUOTE] = ACTIONS(2863), + [sym_true] = ACTIONS(2861), + [sym_false] = ACTIONS(2861), + [sym_null] = ACTIONS(2861), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2861), + [anon_sym_decltype] = ACTIONS(2861), + [anon_sym_virtual] = ACTIONS(2861), + [anon_sym_explicit] = ACTIONS(2861), + [anon_sym_typename] = ACTIONS(2861), + [anon_sym_template] = ACTIONS(2861), + [anon_sym_operator] = ACTIONS(2861), + [anon_sym_try] = ACTIONS(2861), + [anon_sym_delete] = ACTIONS(2861), + [anon_sym_throw] = ACTIONS(2861), + [anon_sym_namespace] = ACTIONS(2861), + [anon_sym_using] = ACTIONS(2861), + [anon_sym_static_assert] = ACTIONS(2861), + [anon_sym_concept] = ACTIONS(2861), + [anon_sym_co_return] = ACTIONS(2861), + [anon_sym_co_yield] = ACTIONS(2861), + [anon_sym_co_await] = ACTIONS(2861), + [anon_sym_new] = ACTIONS(2861), + [anon_sym_requires] = ACTIONS(2861), + [sym_this] = ACTIONS(2861), + [sym_nullptr] = ACTIONS(2861), + [sym_raw_string_literal] = ACTIONS(2863), }, - [1388] = { - [sym__expression] = STATE(3656), - [sym_comma_expression] = STATE(6398), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_RPAREN] = ACTIONS(3502), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [927] = { + [ts_builtin_sym_end] = ACTIONS(2795), + [sym_identifier] = ACTIONS(2793), + [aux_sym_preproc_include_token1] = ACTIONS(2793), + [aux_sym_preproc_def_token1] = ACTIONS(2793), + [aux_sym_preproc_if_token1] = ACTIONS(2793), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2793), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2793), + [sym_preproc_directive] = ACTIONS(2793), + [anon_sym_LPAREN2] = ACTIONS(2795), + [anon_sym_BANG] = ACTIONS(2795), + [anon_sym_TILDE] = ACTIONS(2795), + [anon_sym_DASH] = ACTIONS(2793), + [anon_sym_PLUS] = ACTIONS(2793), + [anon_sym_STAR] = ACTIONS(2795), + [anon_sym_AMP_AMP] = ACTIONS(2795), + [anon_sym_AMP] = ACTIONS(2793), + [anon_sym_SEMI] = ACTIONS(2795), + [anon_sym_typedef] = ACTIONS(2793), + [anon_sym_extern] = ACTIONS(2793), + [anon_sym___attribute__] = ACTIONS(2793), + [anon_sym_COLON_COLON] = ACTIONS(2795), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2795), + [anon_sym___declspec] = ACTIONS(2793), + [anon_sym___based] = ACTIONS(2793), + [anon_sym___cdecl] = ACTIONS(2793), + [anon_sym___clrcall] = ACTIONS(2793), + [anon_sym___stdcall] = ACTIONS(2793), + [anon_sym___fastcall] = ACTIONS(2793), + [anon_sym___thiscall] = ACTIONS(2793), + [anon_sym___vectorcall] = ACTIONS(2793), + [anon_sym_LBRACE] = ACTIONS(2795), + [anon_sym_LBRACK] = ACTIONS(2793), + [anon_sym_static] = ACTIONS(2793), + [anon_sym_register] = ACTIONS(2793), + [anon_sym_inline] = ACTIONS(2793), + [anon_sym_thread_local] = ACTIONS(2793), + [anon_sym_const] = ACTIONS(2793), + [anon_sym_volatile] = ACTIONS(2793), + [anon_sym_restrict] = ACTIONS(2793), + [anon_sym__Atomic] = ACTIONS(2793), + [anon_sym_mutable] = ACTIONS(2793), + [anon_sym_constexpr] = ACTIONS(2793), + [anon_sym_constinit] = ACTIONS(2793), + [anon_sym_consteval] = ACTIONS(2793), + [anon_sym_signed] = ACTIONS(2793), + [anon_sym_unsigned] = ACTIONS(2793), + [anon_sym_long] = ACTIONS(2793), + [anon_sym_short] = ACTIONS(2793), + [sym_primitive_type] = ACTIONS(2793), + [anon_sym_enum] = ACTIONS(2793), + [anon_sym_class] = ACTIONS(2793), + [anon_sym_struct] = ACTIONS(2793), + [anon_sym_union] = ACTIONS(2793), + [anon_sym_if] = ACTIONS(2793), + [anon_sym_switch] = ACTIONS(2793), + [anon_sym_case] = ACTIONS(2793), + [anon_sym_default] = ACTIONS(2793), + [anon_sym_while] = ACTIONS(2793), + [anon_sym_do] = ACTIONS(2793), + [anon_sym_for] = ACTIONS(2793), + [anon_sym_return] = ACTIONS(2793), + [anon_sym_break] = ACTIONS(2793), + [anon_sym_continue] = ACTIONS(2793), + [anon_sym_goto] = ACTIONS(2793), + [anon_sym_not] = ACTIONS(2793), + [anon_sym_compl] = ACTIONS(2793), + [anon_sym_DASH_DASH] = ACTIONS(2795), + [anon_sym_PLUS_PLUS] = ACTIONS(2795), + [anon_sym_sizeof] = ACTIONS(2793), + [sym_number_literal] = ACTIONS(2795), + [anon_sym_L_SQUOTE] = ACTIONS(2795), + [anon_sym_u_SQUOTE] = ACTIONS(2795), + [anon_sym_U_SQUOTE] = ACTIONS(2795), + [anon_sym_u8_SQUOTE] = ACTIONS(2795), + [anon_sym_SQUOTE] = ACTIONS(2795), + [anon_sym_L_DQUOTE] = ACTIONS(2795), + [anon_sym_u_DQUOTE] = ACTIONS(2795), + [anon_sym_U_DQUOTE] = ACTIONS(2795), + [anon_sym_u8_DQUOTE] = ACTIONS(2795), + [anon_sym_DQUOTE] = ACTIONS(2795), + [sym_true] = ACTIONS(2793), + [sym_false] = ACTIONS(2793), + [sym_null] = ACTIONS(2793), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2793), + [anon_sym_decltype] = ACTIONS(2793), + [anon_sym_virtual] = ACTIONS(2793), + [anon_sym_explicit] = ACTIONS(2793), + [anon_sym_typename] = ACTIONS(2793), + [anon_sym_template] = ACTIONS(2793), + [anon_sym_operator] = ACTIONS(2793), + [anon_sym_try] = ACTIONS(2793), + [anon_sym_delete] = ACTIONS(2793), + [anon_sym_throw] = ACTIONS(2793), + [anon_sym_namespace] = ACTIONS(2793), + [anon_sym_using] = ACTIONS(2793), + [anon_sym_static_assert] = ACTIONS(2793), + [anon_sym_concept] = ACTIONS(2793), + [anon_sym_co_return] = ACTIONS(2793), + [anon_sym_co_yield] = ACTIONS(2793), + [anon_sym_co_await] = ACTIONS(2793), + [anon_sym_new] = ACTIONS(2793), + [anon_sym_requires] = ACTIONS(2793), + [sym_this] = ACTIONS(2793), + [sym_nullptr] = ACTIONS(2793), + [sym_raw_string_literal] = ACTIONS(2795), }, - [1389] = { - [sym__expression] = STATE(3944), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_initializer_list] = STATE(6769), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1465), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [928] = { + [sym_identifier] = ACTIONS(2861), + [aux_sym_preproc_include_token1] = ACTIONS(2861), + [aux_sym_preproc_def_token1] = ACTIONS(2861), + [aux_sym_preproc_if_token1] = ACTIONS(2861), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2861), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2861), + [sym_preproc_directive] = ACTIONS(2861), + [anon_sym_LPAREN2] = ACTIONS(2863), + [anon_sym_BANG] = ACTIONS(2863), + [anon_sym_TILDE] = ACTIONS(2863), + [anon_sym_DASH] = ACTIONS(2861), + [anon_sym_PLUS] = ACTIONS(2861), + [anon_sym_STAR] = ACTIONS(2863), + [anon_sym_AMP_AMP] = ACTIONS(2863), + [anon_sym_AMP] = ACTIONS(2861), + [anon_sym_SEMI] = ACTIONS(2863), + [anon_sym_typedef] = ACTIONS(2861), + [anon_sym_extern] = ACTIONS(2861), + [anon_sym___attribute__] = ACTIONS(2861), + [anon_sym_COLON_COLON] = ACTIONS(2863), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2863), + [anon_sym___declspec] = ACTIONS(2861), + [anon_sym___based] = ACTIONS(2861), + [anon_sym___cdecl] = ACTIONS(2861), + [anon_sym___clrcall] = ACTIONS(2861), + [anon_sym___stdcall] = ACTIONS(2861), + [anon_sym___fastcall] = ACTIONS(2861), + [anon_sym___thiscall] = ACTIONS(2861), + [anon_sym___vectorcall] = ACTIONS(2861), + [anon_sym_LBRACE] = ACTIONS(2863), + [anon_sym_RBRACE] = ACTIONS(2863), + [anon_sym_LBRACK] = ACTIONS(2861), + [anon_sym_static] = ACTIONS(2861), + [anon_sym_register] = ACTIONS(2861), + [anon_sym_inline] = ACTIONS(2861), + [anon_sym_thread_local] = ACTIONS(2861), + [anon_sym_const] = ACTIONS(2861), + [anon_sym_volatile] = ACTIONS(2861), + [anon_sym_restrict] = ACTIONS(2861), + [anon_sym__Atomic] = ACTIONS(2861), + [anon_sym_mutable] = ACTIONS(2861), + [anon_sym_constexpr] = ACTIONS(2861), + [anon_sym_constinit] = ACTIONS(2861), + [anon_sym_consteval] = ACTIONS(2861), + [anon_sym_signed] = ACTIONS(2861), + [anon_sym_unsigned] = ACTIONS(2861), + [anon_sym_long] = ACTIONS(2861), + [anon_sym_short] = ACTIONS(2861), + [sym_primitive_type] = ACTIONS(2861), + [anon_sym_enum] = ACTIONS(2861), + [anon_sym_class] = ACTIONS(2861), + [anon_sym_struct] = ACTIONS(2861), + [anon_sym_union] = ACTIONS(2861), + [anon_sym_if] = ACTIONS(2861), + [anon_sym_switch] = ACTIONS(2861), + [anon_sym_case] = ACTIONS(2861), + [anon_sym_default] = ACTIONS(2861), + [anon_sym_while] = ACTIONS(2861), + [anon_sym_do] = ACTIONS(2861), + [anon_sym_for] = ACTIONS(2861), + [anon_sym_return] = ACTIONS(2861), + [anon_sym_break] = ACTIONS(2861), + [anon_sym_continue] = ACTIONS(2861), + [anon_sym_goto] = ACTIONS(2861), + [anon_sym_not] = ACTIONS(2861), + [anon_sym_compl] = ACTIONS(2861), + [anon_sym_DASH_DASH] = ACTIONS(2863), + [anon_sym_PLUS_PLUS] = ACTIONS(2863), + [anon_sym_sizeof] = ACTIONS(2861), + [sym_number_literal] = ACTIONS(2863), + [anon_sym_L_SQUOTE] = ACTIONS(2863), + [anon_sym_u_SQUOTE] = ACTIONS(2863), + [anon_sym_U_SQUOTE] = ACTIONS(2863), + [anon_sym_u8_SQUOTE] = ACTIONS(2863), + [anon_sym_SQUOTE] = ACTIONS(2863), + [anon_sym_L_DQUOTE] = ACTIONS(2863), + [anon_sym_u_DQUOTE] = ACTIONS(2863), + [anon_sym_U_DQUOTE] = ACTIONS(2863), + [anon_sym_u8_DQUOTE] = ACTIONS(2863), + [anon_sym_DQUOTE] = ACTIONS(2863), + [sym_true] = ACTIONS(2861), + [sym_false] = ACTIONS(2861), + [sym_null] = ACTIONS(2861), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2861), + [anon_sym_decltype] = ACTIONS(2861), + [anon_sym_virtual] = ACTIONS(2861), + [anon_sym_explicit] = ACTIONS(2861), + [anon_sym_typename] = ACTIONS(2861), + [anon_sym_template] = ACTIONS(2861), + [anon_sym_operator] = ACTIONS(2861), + [anon_sym_try] = ACTIONS(2861), + [anon_sym_delete] = ACTIONS(2861), + [anon_sym_throw] = ACTIONS(2861), + [anon_sym_namespace] = ACTIONS(2861), + [anon_sym_using] = ACTIONS(2861), + [anon_sym_static_assert] = ACTIONS(2861), + [anon_sym_concept] = ACTIONS(2861), + [anon_sym_co_return] = ACTIONS(2861), + [anon_sym_co_yield] = ACTIONS(2861), + [anon_sym_co_await] = ACTIONS(2861), + [anon_sym_new] = ACTIONS(2861), + [anon_sym_requires] = ACTIONS(2861), + [sym_this] = ACTIONS(2861), + [sym_nullptr] = ACTIONS(2861), + [sym_raw_string_literal] = ACTIONS(2863), }, - [1390] = { - [sym__expression] = STATE(3961), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_initializer_list] = STATE(6748), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1465), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [929] = { + [sym_identifier] = ACTIONS(2777), + [aux_sym_preproc_include_token1] = ACTIONS(2777), + [aux_sym_preproc_def_token1] = ACTIONS(2777), + [aux_sym_preproc_if_token1] = ACTIONS(2777), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2777), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2777), + [sym_preproc_directive] = ACTIONS(2777), + [anon_sym_LPAREN2] = ACTIONS(2779), + [anon_sym_BANG] = ACTIONS(2779), + [anon_sym_TILDE] = ACTIONS(2779), + [anon_sym_DASH] = ACTIONS(2777), + [anon_sym_PLUS] = ACTIONS(2777), + [anon_sym_STAR] = ACTIONS(2779), + [anon_sym_AMP_AMP] = ACTIONS(2779), + [anon_sym_AMP] = ACTIONS(2777), + [anon_sym_SEMI] = ACTIONS(2779), + [anon_sym_typedef] = ACTIONS(2777), + [anon_sym_extern] = ACTIONS(2777), + [anon_sym___attribute__] = ACTIONS(2777), + [anon_sym_COLON_COLON] = ACTIONS(2779), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2779), + [anon_sym___declspec] = ACTIONS(2777), + [anon_sym___based] = ACTIONS(2777), + [anon_sym___cdecl] = ACTIONS(2777), + [anon_sym___clrcall] = ACTIONS(2777), + [anon_sym___stdcall] = ACTIONS(2777), + [anon_sym___fastcall] = ACTIONS(2777), + [anon_sym___thiscall] = ACTIONS(2777), + [anon_sym___vectorcall] = ACTIONS(2777), + [anon_sym_LBRACE] = ACTIONS(2779), + [anon_sym_RBRACE] = ACTIONS(2779), + [anon_sym_LBRACK] = ACTIONS(2777), + [anon_sym_static] = ACTIONS(2777), + [anon_sym_register] = ACTIONS(2777), + [anon_sym_inline] = ACTIONS(2777), + [anon_sym_thread_local] = ACTIONS(2777), + [anon_sym_const] = ACTIONS(2777), + [anon_sym_volatile] = ACTIONS(2777), + [anon_sym_restrict] = ACTIONS(2777), + [anon_sym__Atomic] = ACTIONS(2777), + [anon_sym_mutable] = ACTIONS(2777), + [anon_sym_constexpr] = ACTIONS(2777), + [anon_sym_constinit] = ACTIONS(2777), + [anon_sym_consteval] = ACTIONS(2777), + [anon_sym_signed] = ACTIONS(2777), + [anon_sym_unsigned] = ACTIONS(2777), + [anon_sym_long] = ACTIONS(2777), + [anon_sym_short] = ACTIONS(2777), + [sym_primitive_type] = ACTIONS(2777), + [anon_sym_enum] = ACTIONS(2777), + [anon_sym_class] = ACTIONS(2777), + [anon_sym_struct] = ACTIONS(2777), + [anon_sym_union] = ACTIONS(2777), + [anon_sym_if] = ACTIONS(2777), + [anon_sym_switch] = ACTIONS(2777), + [anon_sym_case] = ACTIONS(2777), + [anon_sym_default] = ACTIONS(2777), + [anon_sym_while] = ACTIONS(2777), + [anon_sym_do] = ACTIONS(2777), + [anon_sym_for] = ACTIONS(2777), + [anon_sym_return] = ACTIONS(2777), + [anon_sym_break] = ACTIONS(2777), + [anon_sym_continue] = ACTIONS(2777), + [anon_sym_goto] = ACTIONS(2777), + [anon_sym_not] = ACTIONS(2777), + [anon_sym_compl] = ACTIONS(2777), + [anon_sym_DASH_DASH] = ACTIONS(2779), + [anon_sym_PLUS_PLUS] = ACTIONS(2779), + [anon_sym_sizeof] = ACTIONS(2777), + [sym_number_literal] = ACTIONS(2779), + [anon_sym_L_SQUOTE] = ACTIONS(2779), + [anon_sym_u_SQUOTE] = ACTIONS(2779), + [anon_sym_U_SQUOTE] = ACTIONS(2779), + [anon_sym_u8_SQUOTE] = ACTIONS(2779), + [anon_sym_SQUOTE] = ACTIONS(2779), + [anon_sym_L_DQUOTE] = ACTIONS(2779), + [anon_sym_u_DQUOTE] = ACTIONS(2779), + [anon_sym_U_DQUOTE] = ACTIONS(2779), + [anon_sym_u8_DQUOTE] = ACTIONS(2779), + [anon_sym_DQUOTE] = ACTIONS(2779), + [sym_true] = ACTIONS(2777), + [sym_false] = ACTIONS(2777), + [sym_null] = ACTIONS(2777), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2777), + [anon_sym_decltype] = ACTIONS(2777), + [anon_sym_virtual] = ACTIONS(2777), + [anon_sym_explicit] = ACTIONS(2777), + [anon_sym_typename] = ACTIONS(2777), + [anon_sym_template] = ACTIONS(2777), + [anon_sym_operator] = ACTIONS(2777), + [anon_sym_try] = ACTIONS(2777), + [anon_sym_delete] = ACTIONS(2777), + [anon_sym_throw] = ACTIONS(2777), + [anon_sym_namespace] = ACTIONS(2777), + [anon_sym_using] = ACTIONS(2777), + [anon_sym_static_assert] = ACTIONS(2777), + [anon_sym_concept] = ACTIONS(2777), + [anon_sym_co_return] = ACTIONS(2777), + [anon_sym_co_yield] = ACTIONS(2777), + [anon_sym_co_await] = ACTIONS(2777), + [anon_sym_new] = ACTIONS(2777), + [anon_sym_requires] = ACTIONS(2777), + [sym_this] = ACTIONS(2777), + [sym_nullptr] = ACTIONS(2777), + [sym_raw_string_literal] = ACTIONS(2779), }, - [1391] = { - [sym__expression] = STATE(3816), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_initializer_list] = STATE(6751), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1465), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [930] = { + [sym_identifier] = ACTIONS(2773), + [aux_sym_preproc_include_token1] = ACTIONS(2773), + [aux_sym_preproc_def_token1] = ACTIONS(2773), + [aux_sym_preproc_if_token1] = ACTIONS(2773), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2773), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2773), + [sym_preproc_directive] = ACTIONS(2773), + [anon_sym_LPAREN2] = ACTIONS(2775), + [anon_sym_BANG] = ACTIONS(2775), + [anon_sym_TILDE] = ACTIONS(2775), + [anon_sym_DASH] = ACTIONS(2773), + [anon_sym_PLUS] = ACTIONS(2773), + [anon_sym_STAR] = ACTIONS(2775), + [anon_sym_AMP_AMP] = ACTIONS(2775), + [anon_sym_AMP] = ACTIONS(2773), + [anon_sym_SEMI] = ACTIONS(2775), + [anon_sym_typedef] = ACTIONS(2773), + [anon_sym_extern] = ACTIONS(2773), + [anon_sym___attribute__] = ACTIONS(2773), + [anon_sym_COLON_COLON] = ACTIONS(2775), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2775), + [anon_sym___declspec] = ACTIONS(2773), + [anon_sym___based] = ACTIONS(2773), + [anon_sym___cdecl] = ACTIONS(2773), + [anon_sym___clrcall] = ACTIONS(2773), + [anon_sym___stdcall] = ACTIONS(2773), + [anon_sym___fastcall] = ACTIONS(2773), + [anon_sym___thiscall] = ACTIONS(2773), + [anon_sym___vectorcall] = ACTIONS(2773), + [anon_sym_LBRACE] = ACTIONS(2775), + [anon_sym_RBRACE] = ACTIONS(2775), + [anon_sym_LBRACK] = ACTIONS(2773), + [anon_sym_static] = ACTIONS(2773), + [anon_sym_register] = ACTIONS(2773), + [anon_sym_inline] = ACTIONS(2773), + [anon_sym_thread_local] = ACTIONS(2773), + [anon_sym_const] = ACTIONS(2773), + [anon_sym_volatile] = ACTIONS(2773), + [anon_sym_restrict] = ACTIONS(2773), + [anon_sym__Atomic] = ACTIONS(2773), + [anon_sym_mutable] = ACTIONS(2773), + [anon_sym_constexpr] = ACTIONS(2773), + [anon_sym_constinit] = ACTIONS(2773), + [anon_sym_consteval] = ACTIONS(2773), + [anon_sym_signed] = ACTIONS(2773), + [anon_sym_unsigned] = ACTIONS(2773), + [anon_sym_long] = ACTIONS(2773), + [anon_sym_short] = ACTIONS(2773), + [sym_primitive_type] = ACTIONS(2773), + [anon_sym_enum] = ACTIONS(2773), + [anon_sym_class] = ACTIONS(2773), + [anon_sym_struct] = ACTIONS(2773), + [anon_sym_union] = ACTIONS(2773), + [anon_sym_if] = ACTIONS(2773), + [anon_sym_switch] = ACTIONS(2773), + [anon_sym_case] = ACTIONS(2773), + [anon_sym_default] = ACTIONS(2773), + [anon_sym_while] = ACTIONS(2773), + [anon_sym_do] = ACTIONS(2773), + [anon_sym_for] = ACTIONS(2773), + [anon_sym_return] = ACTIONS(2773), + [anon_sym_break] = ACTIONS(2773), + [anon_sym_continue] = ACTIONS(2773), + [anon_sym_goto] = ACTIONS(2773), + [anon_sym_not] = ACTIONS(2773), + [anon_sym_compl] = ACTIONS(2773), + [anon_sym_DASH_DASH] = ACTIONS(2775), + [anon_sym_PLUS_PLUS] = ACTIONS(2775), + [anon_sym_sizeof] = ACTIONS(2773), + [sym_number_literal] = ACTIONS(2775), + [anon_sym_L_SQUOTE] = ACTIONS(2775), + [anon_sym_u_SQUOTE] = ACTIONS(2775), + [anon_sym_U_SQUOTE] = ACTIONS(2775), + [anon_sym_u8_SQUOTE] = ACTIONS(2775), + [anon_sym_SQUOTE] = ACTIONS(2775), + [anon_sym_L_DQUOTE] = ACTIONS(2775), + [anon_sym_u_DQUOTE] = ACTIONS(2775), + [anon_sym_U_DQUOTE] = ACTIONS(2775), + [anon_sym_u8_DQUOTE] = ACTIONS(2775), + [anon_sym_DQUOTE] = ACTIONS(2775), + [sym_true] = ACTIONS(2773), + [sym_false] = ACTIONS(2773), + [sym_null] = ACTIONS(2773), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2773), + [anon_sym_decltype] = ACTIONS(2773), + [anon_sym_virtual] = ACTIONS(2773), + [anon_sym_explicit] = ACTIONS(2773), + [anon_sym_typename] = ACTIONS(2773), + [anon_sym_template] = ACTIONS(2773), + [anon_sym_operator] = ACTIONS(2773), + [anon_sym_try] = ACTIONS(2773), + [anon_sym_delete] = ACTIONS(2773), + [anon_sym_throw] = ACTIONS(2773), + [anon_sym_namespace] = ACTIONS(2773), + [anon_sym_using] = ACTIONS(2773), + [anon_sym_static_assert] = ACTIONS(2773), + [anon_sym_concept] = ACTIONS(2773), + [anon_sym_co_return] = ACTIONS(2773), + [anon_sym_co_yield] = ACTIONS(2773), + [anon_sym_co_await] = ACTIONS(2773), + [anon_sym_new] = ACTIONS(2773), + [anon_sym_requires] = ACTIONS(2773), + [sym_this] = ACTIONS(2773), + [sym_nullptr] = ACTIONS(2773), + [sym_raw_string_literal] = ACTIONS(2775), }, - [1392] = { - [sym__expression] = STATE(3758), - [sym_comma_expression] = STATE(6750), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_RPAREN] = ACTIONS(3504), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [931] = { + [sym_identifier] = ACTIONS(2769), + [aux_sym_preproc_include_token1] = ACTIONS(2769), + [aux_sym_preproc_def_token1] = ACTIONS(2769), + [aux_sym_preproc_if_token1] = ACTIONS(2769), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2769), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2769), + [sym_preproc_directive] = ACTIONS(2769), + [anon_sym_LPAREN2] = ACTIONS(2771), + [anon_sym_BANG] = ACTIONS(2771), + [anon_sym_TILDE] = ACTIONS(2771), + [anon_sym_DASH] = ACTIONS(2769), + [anon_sym_PLUS] = ACTIONS(2769), + [anon_sym_STAR] = ACTIONS(2771), + [anon_sym_AMP_AMP] = ACTIONS(2771), + [anon_sym_AMP] = ACTIONS(2769), + [anon_sym_SEMI] = ACTIONS(2771), + [anon_sym_typedef] = ACTIONS(2769), + [anon_sym_extern] = ACTIONS(2769), + [anon_sym___attribute__] = ACTIONS(2769), + [anon_sym_COLON_COLON] = ACTIONS(2771), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2771), + [anon_sym___declspec] = ACTIONS(2769), + [anon_sym___based] = ACTIONS(2769), + [anon_sym___cdecl] = ACTIONS(2769), + [anon_sym___clrcall] = ACTIONS(2769), + [anon_sym___stdcall] = ACTIONS(2769), + [anon_sym___fastcall] = ACTIONS(2769), + [anon_sym___thiscall] = ACTIONS(2769), + [anon_sym___vectorcall] = ACTIONS(2769), + [anon_sym_LBRACE] = ACTIONS(2771), + [anon_sym_RBRACE] = ACTIONS(2771), + [anon_sym_LBRACK] = ACTIONS(2769), + [anon_sym_static] = ACTIONS(2769), + [anon_sym_register] = ACTIONS(2769), + [anon_sym_inline] = ACTIONS(2769), + [anon_sym_thread_local] = ACTIONS(2769), + [anon_sym_const] = ACTIONS(2769), + [anon_sym_volatile] = ACTIONS(2769), + [anon_sym_restrict] = ACTIONS(2769), + [anon_sym__Atomic] = ACTIONS(2769), + [anon_sym_mutable] = ACTIONS(2769), + [anon_sym_constexpr] = ACTIONS(2769), + [anon_sym_constinit] = ACTIONS(2769), + [anon_sym_consteval] = ACTIONS(2769), + [anon_sym_signed] = ACTIONS(2769), + [anon_sym_unsigned] = ACTIONS(2769), + [anon_sym_long] = ACTIONS(2769), + [anon_sym_short] = ACTIONS(2769), + [sym_primitive_type] = ACTIONS(2769), + [anon_sym_enum] = ACTIONS(2769), + [anon_sym_class] = ACTIONS(2769), + [anon_sym_struct] = ACTIONS(2769), + [anon_sym_union] = ACTIONS(2769), + [anon_sym_if] = ACTIONS(2769), + [anon_sym_switch] = ACTIONS(2769), + [anon_sym_case] = ACTIONS(2769), + [anon_sym_default] = ACTIONS(2769), + [anon_sym_while] = ACTIONS(2769), + [anon_sym_do] = ACTIONS(2769), + [anon_sym_for] = ACTIONS(2769), + [anon_sym_return] = ACTIONS(2769), + [anon_sym_break] = ACTIONS(2769), + [anon_sym_continue] = ACTIONS(2769), + [anon_sym_goto] = ACTIONS(2769), + [anon_sym_not] = ACTIONS(2769), + [anon_sym_compl] = ACTIONS(2769), + [anon_sym_DASH_DASH] = ACTIONS(2771), + [anon_sym_PLUS_PLUS] = ACTIONS(2771), + [anon_sym_sizeof] = ACTIONS(2769), + [sym_number_literal] = ACTIONS(2771), + [anon_sym_L_SQUOTE] = ACTIONS(2771), + [anon_sym_u_SQUOTE] = ACTIONS(2771), + [anon_sym_U_SQUOTE] = ACTIONS(2771), + [anon_sym_u8_SQUOTE] = ACTIONS(2771), + [anon_sym_SQUOTE] = ACTIONS(2771), + [anon_sym_L_DQUOTE] = ACTIONS(2771), + [anon_sym_u_DQUOTE] = ACTIONS(2771), + [anon_sym_U_DQUOTE] = ACTIONS(2771), + [anon_sym_u8_DQUOTE] = ACTIONS(2771), + [anon_sym_DQUOTE] = ACTIONS(2771), + [sym_true] = ACTIONS(2769), + [sym_false] = ACTIONS(2769), + [sym_null] = ACTIONS(2769), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2769), + [anon_sym_decltype] = ACTIONS(2769), + [anon_sym_virtual] = ACTIONS(2769), + [anon_sym_explicit] = ACTIONS(2769), + [anon_sym_typename] = ACTIONS(2769), + [anon_sym_template] = ACTIONS(2769), + [anon_sym_operator] = ACTIONS(2769), + [anon_sym_try] = ACTIONS(2769), + [anon_sym_delete] = ACTIONS(2769), + [anon_sym_throw] = ACTIONS(2769), + [anon_sym_namespace] = ACTIONS(2769), + [anon_sym_using] = ACTIONS(2769), + [anon_sym_static_assert] = ACTIONS(2769), + [anon_sym_concept] = ACTIONS(2769), + [anon_sym_co_return] = ACTIONS(2769), + [anon_sym_co_yield] = ACTIONS(2769), + [anon_sym_co_await] = ACTIONS(2769), + [anon_sym_new] = ACTIONS(2769), + [anon_sym_requires] = ACTIONS(2769), + [sym_this] = ACTIONS(2769), + [sym_nullptr] = ACTIONS(2769), + [sym_raw_string_literal] = ACTIONS(2771), }, - [1393] = { - [sym__expression] = STATE(3589), - [sym_comma_expression] = STATE(6559), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_RPAREN] = ACTIONS(3506), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [932] = { + [sym_identifier] = ACTIONS(2765), + [aux_sym_preproc_include_token1] = ACTIONS(2765), + [aux_sym_preproc_def_token1] = ACTIONS(2765), + [aux_sym_preproc_if_token1] = ACTIONS(2765), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2765), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2765), + [sym_preproc_directive] = ACTIONS(2765), + [anon_sym_LPAREN2] = ACTIONS(2767), + [anon_sym_BANG] = ACTIONS(2767), + [anon_sym_TILDE] = ACTIONS(2767), + [anon_sym_DASH] = ACTIONS(2765), + [anon_sym_PLUS] = ACTIONS(2765), + [anon_sym_STAR] = ACTIONS(2767), + [anon_sym_AMP_AMP] = ACTIONS(2767), + [anon_sym_AMP] = ACTIONS(2765), + [anon_sym_SEMI] = ACTIONS(2767), + [anon_sym_typedef] = ACTIONS(2765), + [anon_sym_extern] = ACTIONS(2765), + [anon_sym___attribute__] = ACTIONS(2765), + [anon_sym_COLON_COLON] = ACTIONS(2767), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2767), + [anon_sym___declspec] = ACTIONS(2765), + [anon_sym___based] = ACTIONS(2765), + [anon_sym___cdecl] = ACTIONS(2765), + [anon_sym___clrcall] = ACTIONS(2765), + [anon_sym___stdcall] = ACTIONS(2765), + [anon_sym___fastcall] = ACTIONS(2765), + [anon_sym___thiscall] = ACTIONS(2765), + [anon_sym___vectorcall] = ACTIONS(2765), + [anon_sym_LBRACE] = ACTIONS(2767), + [anon_sym_RBRACE] = ACTIONS(2767), + [anon_sym_LBRACK] = ACTIONS(2765), + [anon_sym_static] = ACTIONS(2765), + [anon_sym_register] = ACTIONS(2765), + [anon_sym_inline] = ACTIONS(2765), + [anon_sym_thread_local] = ACTIONS(2765), + [anon_sym_const] = ACTIONS(2765), + [anon_sym_volatile] = ACTIONS(2765), + [anon_sym_restrict] = ACTIONS(2765), + [anon_sym__Atomic] = ACTIONS(2765), + [anon_sym_mutable] = ACTIONS(2765), + [anon_sym_constexpr] = ACTIONS(2765), + [anon_sym_constinit] = ACTIONS(2765), + [anon_sym_consteval] = ACTIONS(2765), + [anon_sym_signed] = ACTIONS(2765), + [anon_sym_unsigned] = ACTIONS(2765), + [anon_sym_long] = ACTIONS(2765), + [anon_sym_short] = ACTIONS(2765), + [sym_primitive_type] = ACTIONS(2765), + [anon_sym_enum] = ACTIONS(2765), + [anon_sym_class] = ACTIONS(2765), + [anon_sym_struct] = ACTIONS(2765), + [anon_sym_union] = ACTIONS(2765), + [anon_sym_if] = ACTIONS(2765), + [anon_sym_switch] = ACTIONS(2765), + [anon_sym_case] = ACTIONS(2765), + [anon_sym_default] = ACTIONS(2765), + [anon_sym_while] = ACTIONS(2765), + [anon_sym_do] = ACTIONS(2765), + [anon_sym_for] = ACTIONS(2765), + [anon_sym_return] = ACTIONS(2765), + [anon_sym_break] = ACTIONS(2765), + [anon_sym_continue] = ACTIONS(2765), + [anon_sym_goto] = ACTIONS(2765), + [anon_sym_not] = ACTIONS(2765), + [anon_sym_compl] = ACTIONS(2765), + [anon_sym_DASH_DASH] = ACTIONS(2767), + [anon_sym_PLUS_PLUS] = ACTIONS(2767), + [anon_sym_sizeof] = ACTIONS(2765), + [sym_number_literal] = ACTIONS(2767), + [anon_sym_L_SQUOTE] = ACTIONS(2767), + [anon_sym_u_SQUOTE] = ACTIONS(2767), + [anon_sym_U_SQUOTE] = ACTIONS(2767), + [anon_sym_u8_SQUOTE] = ACTIONS(2767), + [anon_sym_SQUOTE] = ACTIONS(2767), + [anon_sym_L_DQUOTE] = ACTIONS(2767), + [anon_sym_u_DQUOTE] = ACTIONS(2767), + [anon_sym_U_DQUOTE] = ACTIONS(2767), + [anon_sym_u8_DQUOTE] = ACTIONS(2767), + [anon_sym_DQUOTE] = ACTIONS(2767), + [sym_true] = ACTIONS(2765), + [sym_false] = ACTIONS(2765), + [sym_null] = ACTIONS(2765), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2765), + [anon_sym_decltype] = ACTIONS(2765), + [anon_sym_virtual] = ACTIONS(2765), + [anon_sym_explicit] = ACTIONS(2765), + [anon_sym_typename] = ACTIONS(2765), + [anon_sym_template] = ACTIONS(2765), + [anon_sym_operator] = ACTIONS(2765), + [anon_sym_try] = ACTIONS(2765), + [anon_sym_delete] = ACTIONS(2765), + [anon_sym_throw] = ACTIONS(2765), + [anon_sym_namespace] = ACTIONS(2765), + [anon_sym_using] = ACTIONS(2765), + [anon_sym_static_assert] = ACTIONS(2765), + [anon_sym_concept] = ACTIONS(2765), + [anon_sym_co_return] = ACTIONS(2765), + [anon_sym_co_yield] = ACTIONS(2765), + [anon_sym_co_await] = ACTIONS(2765), + [anon_sym_new] = ACTIONS(2765), + [anon_sym_requires] = ACTIONS(2765), + [sym_this] = ACTIONS(2765), + [sym_nullptr] = ACTIONS(2765), + [sym_raw_string_literal] = ACTIONS(2767), }, - [1394] = { - [sym__expression] = STATE(3861), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2981), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2981), - [sym_call_expression] = STATE(2981), - [sym_field_expression] = STATE(2981), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2981), - [sym_initializer_list] = STATE(6667), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2981), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3039), - [anon_sym_LPAREN2] = ACTIONS(3041), - [anon_sym_BANG] = ACTIONS(3045), - [anon_sym_TILDE] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(3047), - [anon_sym_LBRACE] = ACTIONS(1465), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3049), - [anon_sym_PLUS_PLUS] = ACTIONS(3049), - [anon_sym_sizeof] = ACTIONS(3051), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3053), - [anon_sym_co_await] = ACTIONS(3055), - [anon_sym_new] = ACTIONS(3057), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [933] = { + [sym_identifier] = ACTIONS(2761), + [aux_sym_preproc_include_token1] = ACTIONS(2761), + [aux_sym_preproc_def_token1] = ACTIONS(2761), + [aux_sym_preproc_if_token1] = ACTIONS(2761), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2761), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2761), + [sym_preproc_directive] = ACTIONS(2761), + [anon_sym_LPAREN2] = ACTIONS(2763), + [anon_sym_BANG] = ACTIONS(2763), + [anon_sym_TILDE] = ACTIONS(2763), + [anon_sym_DASH] = ACTIONS(2761), + [anon_sym_PLUS] = ACTIONS(2761), + [anon_sym_STAR] = ACTIONS(2763), + [anon_sym_AMP_AMP] = ACTIONS(2763), + [anon_sym_AMP] = ACTIONS(2761), + [anon_sym_SEMI] = ACTIONS(2763), + [anon_sym_typedef] = ACTIONS(2761), + [anon_sym_extern] = ACTIONS(2761), + [anon_sym___attribute__] = ACTIONS(2761), + [anon_sym_COLON_COLON] = ACTIONS(2763), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2763), + [anon_sym___declspec] = ACTIONS(2761), + [anon_sym___based] = ACTIONS(2761), + [anon_sym___cdecl] = ACTIONS(2761), + [anon_sym___clrcall] = ACTIONS(2761), + [anon_sym___stdcall] = ACTIONS(2761), + [anon_sym___fastcall] = ACTIONS(2761), + [anon_sym___thiscall] = ACTIONS(2761), + [anon_sym___vectorcall] = ACTIONS(2761), + [anon_sym_LBRACE] = ACTIONS(2763), + [anon_sym_RBRACE] = ACTIONS(2763), + [anon_sym_LBRACK] = ACTIONS(2761), + [anon_sym_static] = ACTIONS(2761), + [anon_sym_register] = ACTIONS(2761), + [anon_sym_inline] = ACTIONS(2761), + [anon_sym_thread_local] = ACTIONS(2761), + [anon_sym_const] = ACTIONS(2761), + [anon_sym_volatile] = ACTIONS(2761), + [anon_sym_restrict] = ACTIONS(2761), + [anon_sym__Atomic] = ACTIONS(2761), + [anon_sym_mutable] = ACTIONS(2761), + [anon_sym_constexpr] = ACTIONS(2761), + [anon_sym_constinit] = ACTIONS(2761), + [anon_sym_consteval] = ACTIONS(2761), + [anon_sym_signed] = ACTIONS(2761), + [anon_sym_unsigned] = ACTIONS(2761), + [anon_sym_long] = ACTIONS(2761), + [anon_sym_short] = ACTIONS(2761), + [sym_primitive_type] = ACTIONS(2761), + [anon_sym_enum] = ACTIONS(2761), + [anon_sym_class] = ACTIONS(2761), + [anon_sym_struct] = ACTIONS(2761), + [anon_sym_union] = ACTIONS(2761), + [anon_sym_if] = ACTIONS(2761), + [anon_sym_switch] = ACTIONS(2761), + [anon_sym_case] = ACTIONS(2761), + [anon_sym_default] = ACTIONS(2761), + [anon_sym_while] = ACTIONS(2761), + [anon_sym_do] = ACTIONS(2761), + [anon_sym_for] = ACTIONS(2761), + [anon_sym_return] = ACTIONS(2761), + [anon_sym_break] = ACTIONS(2761), + [anon_sym_continue] = ACTIONS(2761), + [anon_sym_goto] = ACTIONS(2761), + [anon_sym_not] = ACTIONS(2761), + [anon_sym_compl] = ACTIONS(2761), + [anon_sym_DASH_DASH] = ACTIONS(2763), + [anon_sym_PLUS_PLUS] = ACTIONS(2763), + [anon_sym_sizeof] = ACTIONS(2761), + [sym_number_literal] = ACTIONS(2763), + [anon_sym_L_SQUOTE] = ACTIONS(2763), + [anon_sym_u_SQUOTE] = ACTIONS(2763), + [anon_sym_U_SQUOTE] = ACTIONS(2763), + [anon_sym_u8_SQUOTE] = ACTIONS(2763), + [anon_sym_SQUOTE] = ACTIONS(2763), + [anon_sym_L_DQUOTE] = ACTIONS(2763), + [anon_sym_u_DQUOTE] = ACTIONS(2763), + [anon_sym_U_DQUOTE] = ACTIONS(2763), + [anon_sym_u8_DQUOTE] = ACTIONS(2763), + [anon_sym_DQUOTE] = ACTIONS(2763), + [sym_true] = ACTIONS(2761), + [sym_false] = ACTIONS(2761), + [sym_null] = ACTIONS(2761), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2761), + [anon_sym_decltype] = ACTIONS(2761), + [anon_sym_virtual] = ACTIONS(2761), + [anon_sym_explicit] = ACTIONS(2761), + [anon_sym_typename] = ACTIONS(2761), + [anon_sym_template] = ACTIONS(2761), + [anon_sym_operator] = ACTIONS(2761), + [anon_sym_try] = ACTIONS(2761), + [anon_sym_delete] = ACTIONS(2761), + [anon_sym_throw] = ACTIONS(2761), + [anon_sym_namespace] = ACTIONS(2761), + [anon_sym_using] = ACTIONS(2761), + [anon_sym_static_assert] = ACTIONS(2761), + [anon_sym_concept] = ACTIONS(2761), + [anon_sym_co_return] = ACTIONS(2761), + [anon_sym_co_yield] = ACTIONS(2761), + [anon_sym_co_await] = ACTIONS(2761), + [anon_sym_new] = ACTIONS(2761), + [anon_sym_requires] = ACTIONS(2761), + [sym_this] = ACTIONS(2761), + [sym_nullptr] = ACTIONS(2761), + [sym_raw_string_literal] = ACTIONS(2763), }, - [1395] = { - [sym__expression] = STATE(3770), - [sym_comma_expression] = STATE(6880), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_RPAREN] = ACTIONS(3508), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [934] = { + [sym_identifier] = ACTIONS(2841), + [aux_sym_preproc_include_token1] = ACTIONS(2841), + [aux_sym_preproc_def_token1] = ACTIONS(2841), + [aux_sym_preproc_if_token1] = ACTIONS(2841), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2841), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2841), + [sym_preproc_directive] = ACTIONS(2841), + [anon_sym_LPAREN2] = ACTIONS(2843), + [anon_sym_BANG] = ACTIONS(2843), + [anon_sym_TILDE] = ACTIONS(2843), + [anon_sym_DASH] = ACTIONS(2841), + [anon_sym_PLUS] = ACTIONS(2841), + [anon_sym_STAR] = ACTIONS(2843), + [anon_sym_AMP_AMP] = ACTIONS(2843), + [anon_sym_AMP] = ACTIONS(2841), + [anon_sym_SEMI] = ACTIONS(2843), + [anon_sym_typedef] = ACTIONS(2841), + [anon_sym_extern] = ACTIONS(2841), + [anon_sym___attribute__] = ACTIONS(2841), + [anon_sym_COLON_COLON] = ACTIONS(2843), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2843), + [anon_sym___declspec] = ACTIONS(2841), + [anon_sym___based] = ACTIONS(2841), + [anon_sym___cdecl] = ACTIONS(2841), + [anon_sym___clrcall] = ACTIONS(2841), + [anon_sym___stdcall] = ACTIONS(2841), + [anon_sym___fastcall] = ACTIONS(2841), + [anon_sym___thiscall] = ACTIONS(2841), + [anon_sym___vectorcall] = ACTIONS(2841), + [anon_sym_LBRACE] = ACTIONS(2843), + [anon_sym_RBRACE] = ACTIONS(2843), + [anon_sym_LBRACK] = ACTIONS(2841), + [anon_sym_static] = ACTIONS(2841), + [anon_sym_register] = ACTIONS(2841), + [anon_sym_inline] = ACTIONS(2841), + [anon_sym_thread_local] = ACTIONS(2841), + [anon_sym_const] = ACTIONS(2841), + [anon_sym_volatile] = ACTIONS(2841), + [anon_sym_restrict] = ACTIONS(2841), + [anon_sym__Atomic] = ACTIONS(2841), + [anon_sym_mutable] = ACTIONS(2841), + [anon_sym_constexpr] = ACTIONS(2841), + [anon_sym_constinit] = ACTIONS(2841), + [anon_sym_consteval] = ACTIONS(2841), + [anon_sym_signed] = ACTIONS(2841), + [anon_sym_unsigned] = ACTIONS(2841), + [anon_sym_long] = ACTIONS(2841), + [anon_sym_short] = ACTIONS(2841), + [sym_primitive_type] = ACTIONS(2841), + [anon_sym_enum] = ACTIONS(2841), + [anon_sym_class] = ACTIONS(2841), + [anon_sym_struct] = ACTIONS(2841), + [anon_sym_union] = ACTIONS(2841), + [anon_sym_if] = ACTIONS(2841), + [anon_sym_switch] = ACTIONS(2841), + [anon_sym_case] = ACTIONS(2841), + [anon_sym_default] = ACTIONS(2841), + [anon_sym_while] = ACTIONS(2841), + [anon_sym_do] = ACTIONS(2841), + [anon_sym_for] = ACTIONS(2841), + [anon_sym_return] = ACTIONS(2841), + [anon_sym_break] = ACTIONS(2841), + [anon_sym_continue] = ACTIONS(2841), + [anon_sym_goto] = ACTIONS(2841), + [anon_sym_not] = ACTIONS(2841), + [anon_sym_compl] = ACTIONS(2841), + [anon_sym_DASH_DASH] = ACTIONS(2843), + [anon_sym_PLUS_PLUS] = ACTIONS(2843), + [anon_sym_sizeof] = ACTIONS(2841), + [sym_number_literal] = ACTIONS(2843), + [anon_sym_L_SQUOTE] = ACTIONS(2843), + [anon_sym_u_SQUOTE] = ACTIONS(2843), + [anon_sym_U_SQUOTE] = ACTIONS(2843), + [anon_sym_u8_SQUOTE] = ACTIONS(2843), + [anon_sym_SQUOTE] = ACTIONS(2843), + [anon_sym_L_DQUOTE] = ACTIONS(2843), + [anon_sym_u_DQUOTE] = ACTIONS(2843), + [anon_sym_U_DQUOTE] = ACTIONS(2843), + [anon_sym_u8_DQUOTE] = ACTIONS(2843), + [anon_sym_DQUOTE] = ACTIONS(2843), + [sym_true] = ACTIONS(2841), + [sym_false] = ACTIONS(2841), + [sym_null] = ACTIONS(2841), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2841), + [anon_sym_decltype] = ACTIONS(2841), + [anon_sym_virtual] = ACTIONS(2841), + [anon_sym_explicit] = ACTIONS(2841), + [anon_sym_typename] = ACTIONS(2841), + [anon_sym_template] = ACTIONS(2841), + [anon_sym_operator] = ACTIONS(2841), + [anon_sym_try] = ACTIONS(2841), + [anon_sym_delete] = ACTIONS(2841), + [anon_sym_throw] = ACTIONS(2841), + [anon_sym_namespace] = ACTIONS(2841), + [anon_sym_using] = ACTIONS(2841), + [anon_sym_static_assert] = ACTIONS(2841), + [anon_sym_concept] = ACTIONS(2841), + [anon_sym_co_return] = ACTIONS(2841), + [anon_sym_co_yield] = ACTIONS(2841), + [anon_sym_co_await] = ACTIONS(2841), + [anon_sym_new] = ACTIONS(2841), + [anon_sym_requires] = ACTIONS(2841), + [sym_this] = ACTIONS(2841), + [sym_nullptr] = ACTIONS(2841), + [sym_raw_string_literal] = ACTIONS(2843), }, - [1396] = { - [sym__expression] = STATE(3708), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_initializer_list] = STATE(6211), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1465), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [935] = { + [ts_builtin_sym_end] = ACTIONS(2909), + [sym_identifier] = ACTIONS(2907), + [aux_sym_preproc_include_token1] = ACTIONS(2907), + [aux_sym_preproc_def_token1] = ACTIONS(2907), + [aux_sym_preproc_if_token1] = ACTIONS(2907), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2907), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2907), + [sym_preproc_directive] = ACTIONS(2907), + [anon_sym_LPAREN2] = ACTIONS(2909), + [anon_sym_BANG] = ACTIONS(2909), + [anon_sym_TILDE] = ACTIONS(2909), + [anon_sym_DASH] = ACTIONS(2907), + [anon_sym_PLUS] = ACTIONS(2907), + [anon_sym_STAR] = ACTIONS(2909), + [anon_sym_AMP_AMP] = ACTIONS(2909), + [anon_sym_AMP] = ACTIONS(2907), + [anon_sym_SEMI] = ACTIONS(2909), + [anon_sym_typedef] = ACTIONS(2907), + [anon_sym_extern] = ACTIONS(2907), + [anon_sym___attribute__] = ACTIONS(2907), + [anon_sym_COLON_COLON] = ACTIONS(2909), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2909), + [anon_sym___declspec] = ACTIONS(2907), + [anon_sym___based] = ACTIONS(2907), + [anon_sym___cdecl] = ACTIONS(2907), + [anon_sym___clrcall] = ACTIONS(2907), + [anon_sym___stdcall] = ACTIONS(2907), + [anon_sym___fastcall] = ACTIONS(2907), + [anon_sym___thiscall] = ACTIONS(2907), + [anon_sym___vectorcall] = ACTIONS(2907), + [anon_sym_LBRACE] = ACTIONS(2909), + [anon_sym_LBRACK] = ACTIONS(2907), + [anon_sym_static] = ACTIONS(2907), + [anon_sym_register] = ACTIONS(2907), + [anon_sym_inline] = ACTIONS(2907), + [anon_sym_thread_local] = ACTIONS(2907), + [anon_sym_const] = ACTIONS(2907), + [anon_sym_volatile] = ACTIONS(2907), + [anon_sym_restrict] = ACTIONS(2907), + [anon_sym__Atomic] = ACTIONS(2907), + [anon_sym_mutable] = ACTIONS(2907), + [anon_sym_constexpr] = ACTIONS(2907), + [anon_sym_constinit] = ACTIONS(2907), + [anon_sym_consteval] = ACTIONS(2907), + [anon_sym_signed] = ACTIONS(2907), + [anon_sym_unsigned] = ACTIONS(2907), + [anon_sym_long] = ACTIONS(2907), + [anon_sym_short] = ACTIONS(2907), + [sym_primitive_type] = ACTIONS(2907), + [anon_sym_enum] = ACTIONS(2907), + [anon_sym_class] = ACTIONS(2907), + [anon_sym_struct] = ACTIONS(2907), + [anon_sym_union] = ACTIONS(2907), + [anon_sym_if] = ACTIONS(2907), + [anon_sym_switch] = ACTIONS(2907), + [anon_sym_case] = ACTIONS(2907), + [anon_sym_default] = ACTIONS(2907), + [anon_sym_while] = ACTIONS(2907), + [anon_sym_do] = ACTIONS(2907), + [anon_sym_for] = ACTIONS(2907), + [anon_sym_return] = ACTIONS(2907), + [anon_sym_break] = ACTIONS(2907), + [anon_sym_continue] = ACTIONS(2907), + [anon_sym_goto] = ACTIONS(2907), + [anon_sym_not] = ACTIONS(2907), + [anon_sym_compl] = ACTIONS(2907), + [anon_sym_DASH_DASH] = ACTIONS(2909), + [anon_sym_PLUS_PLUS] = ACTIONS(2909), + [anon_sym_sizeof] = ACTIONS(2907), + [sym_number_literal] = ACTIONS(2909), + [anon_sym_L_SQUOTE] = ACTIONS(2909), + [anon_sym_u_SQUOTE] = ACTIONS(2909), + [anon_sym_U_SQUOTE] = ACTIONS(2909), + [anon_sym_u8_SQUOTE] = ACTIONS(2909), + [anon_sym_SQUOTE] = ACTIONS(2909), + [anon_sym_L_DQUOTE] = ACTIONS(2909), + [anon_sym_u_DQUOTE] = ACTIONS(2909), + [anon_sym_U_DQUOTE] = ACTIONS(2909), + [anon_sym_u8_DQUOTE] = ACTIONS(2909), + [anon_sym_DQUOTE] = ACTIONS(2909), + [sym_true] = ACTIONS(2907), + [sym_false] = ACTIONS(2907), + [sym_null] = ACTIONS(2907), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2907), + [anon_sym_decltype] = ACTIONS(2907), + [anon_sym_virtual] = ACTIONS(2907), + [anon_sym_explicit] = ACTIONS(2907), + [anon_sym_typename] = ACTIONS(2907), + [anon_sym_template] = ACTIONS(2907), + [anon_sym_operator] = ACTIONS(2907), + [anon_sym_try] = ACTIONS(2907), + [anon_sym_delete] = ACTIONS(2907), + [anon_sym_throw] = ACTIONS(2907), + [anon_sym_namespace] = ACTIONS(2907), + [anon_sym_using] = ACTIONS(2907), + [anon_sym_static_assert] = ACTIONS(2907), + [anon_sym_concept] = ACTIONS(2907), + [anon_sym_co_return] = ACTIONS(2907), + [anon_sym_co_yield] = ACTIONS(2907), + [anon_sym_co_await] = ACTIONS(2907), + [anon_sym_new] = ACTIONS(2907), + [anon_sym_requires] = ACTIONS(2907), + [sym_this] = ACTIONS(2907), + [sym_nullptr] = ACTIONS(2907), + [sym_raw_string_literal] = ACTIONS(2909), }, - [1397] = { - [sym__expression] = STATE(3793), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2981), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2981), - [sym_call_expression] = STATE(2981), - [sym_field_expression] = STATE(2981), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2981), - [sym_initializer_list] = STATE(6526), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2981), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3039), - [anon_sym_LPAREN2] = ACTIONS(3041), - [anon_sym_BANG] = ACTIONS(3045), - [anon_sym_TILDE] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(3047), - [anon_sym_LBRACE] = ACTIONS(1465), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3049), - [anon_sym_PLUS_PLUS] = ACTIONS(3049), - [anon_sym_sizeof] = ACTIONS(3051), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3053), - [anon_sym_co_await] = ACTIONS(3055), - [anon_sym_new] = ACTIONS(3057), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [936] = { + [sym_identifier] = ACTIONS(2837), + [aux_sym_preproc_include_token1] = ACTIONS(2837), + [aux_sym_preproc_def_token1] = ACTIONS(2837), + [aux_sym_preproc_if_token1] = ACTIONS(2837), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2837), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2837), + [sym_preproc_directive] = ACTIONS(2837), + [anon_sym_LPAREN2] = ACTIONS(2839), + [anon_sym_BANG] = ACTIONS(2839), + [anon_sym_TILDE] = ACTIONS(2839), + [anon_sym_DASH] = ACTIONS(2837), + [anon_sym_PLUS] = ACTIONS(2837), + [anon_sym_STAR] = ACTIONS(2839), + [anon_sym_AMP_AMP] = ACTIONS(2839), + [anon_sym_AMP] = ACTIONS(2837), + [anon_sym_SEMI] = ACTIONS(2839), + [anon_sym_typedef] = ACTIONS(2837), + [anon_sym_extern] = ACTIONS(2837), + [anon_sym___attribute__] = ACTIONS(2837), + [anon_sym_COLON_COLON] = ACTIONS(2839), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2839), + [anon_sym___declspec] = ACTIONS(2837), + [anon_sym___based] = ACTIONS(2837), + [anon_sym___cdecl] = ACTIONS(2837), + [anon_sym___clrcall] = ACTIONS(2837), + [anon_sym___stdcall] = ACTIONS(2837), + [anon_sym___fastcall] = ACTIONS(2837), + [anon_sym___thiscall] = ACTIONS(2837), + [anon_sym___vectorcall] = ACTIONS(2837), + [anon_sym_LBRACE] = ACTIONS(2839), + [anon_sym_RBRACE] = ACTIONS(2839), + [anon_sym_LBRACK] = ACTIONS(2837), + [anon_sym_static] = ACTIONS(2837), + [anon_sym_register] = ACTIONS(2837), + [anon_sym_inline] = ACTIONS(2837), + [anon_sym_thread_local] = ACTIONS(2837), + [anon_sym_const] = ACTIONS(2837), + [anon_sym_volatile] = ACTIONS(2837), + [anon_sym_restrict] = ACTIONS(2837), + [anon_sym__Atomic] = ACTIONS(2837), + [anon_sym_mutable] = ACTIONS(2837), + [anon_sym_constexpr] = ACTIONS(2837), + [anon_sym_constinit] = ACTIONS(2837), + [anon_sym_consteval] = ACTIONS(2837), + [anon_sym_signed] = ACTIONS(2837), + [anon_sym_unsigned] = ACTIONS(2837), + [anon_sym_long] = ACTIONS(2837), + [anon_sym_short] = ACTIONS(2837), + [sym_primitive_type] = ACTIONS(2837), + [anon_sym_enum] = ACTIONS(2837), + [anon_sym_class] = ACTIONS(2837), + [anon_sym_struct] = ACTIONS(2837), + [anon_sym_union] = ACTIONS(2837), + [anon_sym_if] = ACTIONS(2837), + [anon_sym_switch] = ACTIONS(2837), + [anon_sym_case] = ACTIONS(2837), + [anon_sym_default] = ACTIONS(2837), + [anon_sym_while] = ACTIONS(2837), + [anon_sym_do] = ACTIONS(2837), + [anon_sym_for] = ACTIONS(2837), + [anon_sym_return] = ACTIONS(2837), + [anon_sym_break] = ACTIONS(2837), + [anon_sym_continue] = ACTIONS(2837), + [anon_sym_goto] = ACTIONS(2837), + [anon_sym_not] = ACTIONS(2837), + [anon_sym_compl] = ACTIONS(2837), + [anon_sym_DASH_DASH] = ACTIONS(2839), + [anon_sym_PLUS_PLUS] = ACTIONS(2839), + [anon_sym_sizeof] = ACTIONS(2837), + [sym_number_literal] = ACTIONS(2839), + [anon_sym_L_SQUOTE] = ACTIONS(2839), + [anon_sym_u_SQUOTE] = ACTIONS(2839), + [anon_sym_U_SQUOTE] = ACTIONS(2839), + [anon_sym_u8_SQUOTE] = ACTIONS(2839), + [anon_sym_SQUOTE] = ACTIONS(2839), + [anon_sym_L_DQUOTE] = ACTIONS(2839), + [anon_sym_u_DQUOTE] = ACTIONS(2839), + [anon_sym_U_DQUOTE] = ACTIONS(2839), + [anon_sym_u8_DQUOTE] = ACTIONS(2839), + [anon_sym_DQUOTE] = ACTIONS(2839), + [sym_true] = ACTIONS(2837), + [sym_false] = ACTIONS(2837), + [sym_null] = ACTIONS(2837), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2837), + [anon_sym_decltype] = ACTIONS(2837), + [anon_sym_virtual] = ACTIONS(2837), + [anon_sym_explicit] = ACTIONS(2837), + [anon_sym_typename] = ACTIONS(2837), + [anon_sym_template] = ACTIONS(2837), + [anon_sym_operator] = ACTIONS(2837), + [anon_sym_try] = ACTIONS(2837), + [anon_sym_delete] = ACTIONS(2837), + [anon_sym_throw] = ACTIONS(2837), + [anon_sym_namespace] = ACTIONS(2837), + [anon_sym_using] = ACTIONS(2837), + [anon_sym_static_assert] = ACTIONS(2837), + [anon_sym_concept] = ACTIONS(2837), + [anon_sym_co_return] = ACTIONS(2837), + [anon_sym_co_yield] = ACTIONS(2837), + [anon_sym_co_await] = ACTIONS(2837), + [anon_sym_new] = ACTIONS(2837), + [anon_sym_requires] = ACTIONS(2837), + [sym_this] = ACTIONS(2837), + [sym_nullptr] = ACTIONS(2837), + [sym_raw_string_literal] = ACTIONS(2839), }, - [1398] = { - [sym__expression] = STATE(3755), - [sym_comma_expression] = STATE(6881), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_RPAREN] = ACTIONS(3510), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [937] = { + [sym_identifier] = ACTIONS(2833), + [aux_sym_preproc_include_token1] = ACTIONS(2833), + [aux_sym_preproc_def_token1] = ACTIONS(2833), + [aux_sym_preproc_if_token1] = ACTIONS(2833), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2833), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2833), + [sym_preproc_directive] = ACTIONS(2833), + [anon_sym_LPAREN2] = ACTIONS(2835), + [anon_sym_BANG] = ACTIONS(2835), + [anon_sym_TILDE] = ACTIONS(2835), + [anon_sym_DASH] = ACTIONS(2833), + [anon_sym_PLUS] = ACTIONS(2833), + [anon_sym_STAR] = ACTIONS(2835), + [anon_sym_AMP_AMP] = ACTIONS(2835), + [anon_sym_AMP] = ACTIONS(2833), + [anon_sym_SEMI] = ACTIONS(2835), + [anon_sym_typedef] = ACTIONS(2833), + [anon_sym_extern] = ACTIONS(2833), + [anon_sym___attribute__] = ACTIONS(2833), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2835), + [anon_sym___declspec] = ACTIONS(2833), + [anon_sym___based] = ACTIONS(2833), + [anon_sym___cdecl] = ACTIONS(2833), + [anon_sym___clrcall] = ACTIONS(2833), + [anon_sym___stdcall] = ACTIONS(2833), + [anon_sym___fastcall] = ACTIONS(2833), + [anon_sym___thiscall] = ACTIONS(2833), + [anon_sym___vectorcall] = ACTIONS(2833), + [anon_sym_LBRACE] = ACTIONS(2835), + [anon_sym_RBRACE] = ACTIONS(2835), + [anon_sym_LBRACK] = ACTIONS(2833), + [anon_sym_static] = ACTIONS(2833), + [anon_sym_register] = ACTIONS(2833), + [anon_sym_inline] = ACTIONS(2833), + [anon_sym_thread_local] = ACTIONS(2833), + [anon_sym_const] = ACTIONS(2833), + [anon_sym_volatile] = ACTIONS(2833), + [anon_sym_restrict] = ACTIONS(2833), + [anon_sym__Atomic] = ACTIONS(2833), + [anon_sym_mutable] = ACTIONS(2833), + [anon_sym_constexpr] = ACTIONS(2833), + [anon_sym_constinit] = ACTIONS(2833), + [anon_sym_consteval] = ACTIONS(2833), + [anon_sym_signed] = ACTIONS(2833), + [anon_sym_unsigned] = ACTIONS(2833), + [anon_sym_long] = ACTIONS(2833), + [anon_sym_short] = ACTIONS(2833), + [sym_primitive_type] = ACTIONS(2833), + [anon_sym_enum] = ACTIONS(2833), + [anon_sym_class] = ACTIONS(2833), + [anon_sym_struct] = ACTIONS(2833), + [anon_sym_union] = ACTIONS(2833), + [anon_sym_if] = ACTIONS(2833), + [anon_sym_switch] = ACTIONS(2833), + [anon_sym_case] = ACTIONS(2833), + [anon_sym_default] = ACTIONS(2833), + [anon_sym_while] = ACTIONS(2833), + [anon_sym_do] = ACTIONS(2833), + [anon_sym_for] = ACTIONS(2833), + [anon_sym_return] = ACTIONS(2833), + [anon_sym_break] = ACTIONS(2833), + [anon_sym_continue] = ACTIONS(2833), + [anon_sym_goto] = ACTIONS(2833), + [anon_sym_not] = ACTIONS(2833), + [anon_sym_compl] = ACTIONS(2833), + [anon_sym_DASH_DASH] = ACTIONS(2835), + [anon_sym_PLUS_PLUS] = ACTIONS(2835), + [anon_sym_sizeof] = ACTIONS(2833), + [sym_number_literal] = ACTIONS(2835), + [anon_sym_L_SQUOTE] = ACTIONS(2835), + [anon_sym_u_SQUOTE] = ACTIONS(2835), + [anon_sym_U_SQUOTE] = ACTIONS(2835), + [anon_sym_u8_SQUOTE] = ACTIONS(2835), + [anon_sym_SQUOTE] = ACTIONS(2835), + [anon_sym_L_DQUOTE] = ACTIONS(2835), + [anon_sym_u_DQUOTE] = ACTIONS(2835), + [anon_sym_U_DQUOTE] = ACTIONS(2835), + [anon_sym_u8_DQUOTE] = ACTIONS(2835), + [anon_sym_DQUOTE] = ACTIONS(2835), + [sym_true] = ACTIONS(2833), + [sym_false] = ACTIONS(2833), + [sym_null] = ACTIONS(2833), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2833), + [anon_sym_decltype] = ACTIONS(2833), + [anon_sym_virtual] = ACTIONS(2833), + [anon_sym_explicit] = ACTIONS(2833), + [anon_sym_typename] = ACTIONS(2833), + [anon_sym_template] = ACTIONS(2833), + [anon_sym_operator] = ACTIONS(2833), + [anon_sym_try] = ACTIONS(2833), + [anon_sym_delete] = ACTIONS(2833), + [anon_sym_throw] = ACTIONS(2833), + [anon_sym_namespace] = ACTIONS(2833), + [anon_sym_using] = ACTIONS(2833), + [anon_sym_static_assert] = ACTIONS(2833), + [anon_sym_concept] = ACTIONS(2833), + [anon_sym_co_return] = ACTIONS(2833), + [anon_sym_co_yield] = ACTIONS(2833), + [anon_sym_co_await] = ACTIONS(2833), + [anon_sym_new] = ACTIONS(2833), + [anon_sym_requires] = ACTIONS(2833), + [sym_this] = ACTIONS(2833), + [sym_nullptr] = ACTIONS(2833), + [sym_raw_string_literal] = ACTIONS(2835), }, - [1399] = { - [sym__expression] = STATE(3762), - [sym_comma_expression] = STATE(6888), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_RPAREN] = ACTIONS(3512), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [938] = { + [sym_identifier] = ACTIONS(2757), + [aux_sym_preproc_include_token1] = ACTIONS(2757), + [aux_sym_preproc_def_token1] = ACTIONS(2757), + [aux_sym_preproc_if_token1] = ACTIONS(2757), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2757), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2757), + [sym_preproc_directive] = ACTIONS(2757), + [anon_sym_LPAREN2] = ACTIONS(2759), + [anon_sym_BANG] = ACTIONS(2759), + [anon_sym_TILDE] = ACTIONS(2759), + [anon_sym_DASH] = ACTIONS(2757), + [anon_sym_PLUS] = ACTIONS(2757), + [anon_sym_STAR] = ACTIONS(2759), + [anon_sym_AMP_AMP] = ACTIONS(2759), + [anon_sym_AMP] = ACTIONS(2757), + [anon_sym_SEMI] = ACTIONS(2759), + [anon_sym_typedef] = ACTIONS(2757), + [anon_sym_extern] = ACTIONS(2757), + [anon_sym___attribute__] = ACTIONS(2757), + [anon_sym_COLON_COLON] = ACTIONS(2759), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2759), + [anon_sym___declspec] = ACTIONS(2757), + [anon_sym___based] = ACTIONS(2757), + [anon_sym___cdecl] = ACTIONS(2757), + [anon_sym___clrcall] = ACTIONS(2757), + [anon_sym___stdcall] = ACTIONS(2757), + [anon_sym___fastcall] = ACTIONS(2757), + [anon_sym___thiscall] = ACTIONS(2757), + [anon_sym___vectorcall] = ACTIONS(2757), + [anon_sym_LBRACE] = ACTIONS(2759), + [anon_sym_RBRACE] = ACTIONS(2759), + [anon_sym_LBRACK] = ACTIONS(2757), + [anon_sym_static] = ACTIONS(2757), + [anon_sym_register] = ACTIONS(2757), + [anon_sym_inline] = ACTIONS(2757), + [anon_sym_thread_local] = ACTIONS(2757), + [anon_sym_const] = ACTIONS(2757), + [anon_sym_volatile] = ACTIONS(2757), + [anon_sym_restrict] = ACTIONS(2757), + [anon_sym__Atomic] = ACTIONS(2757), + [anon_sym_mutable] = ACTIONS(2757), + [anon_sym_constexpr] = ACTIONS(2757), + [anon_sym_constinit] = ACTIONS(2757), + [anon_sym_consteval] = ACTIONS(2757), + [anon_sym_signed] = ACTIONS(2757), + [anon_sym_unsigned] = ACTIONS(2757), + [anon_sym_long] = ACTIONS(2757), + [anon_sym_short] = ACTIONS(2757), + [sym_primitive_type] = ACTIONS(2757), + [anon_sym_enum] = ACTIONS(2757), + [anon_sym_class] = ACTIONS(2757), + [anon_sym_struct] = ACTIONS(2757), + [anon_sym_union] = ACTIONS(2757), + [anon_sym_if] = ACTIONS(2757), + [anon_sym_switch] = ACTIONS(2757), + [anon_sym_case] = ACTIONS(2757), + [anon_sym_default] = ACTIONS(2757), + [anon_sym_while] = ACTIONS(2757), + [anon_sym_do] = ACTIONS(2757), + [anon_sym_for] = ACTIONS(2757), + [anon_sym_return] = ACTIONS(2757), + [anon_sym_break] = ACTIONS(2757), + [anon_sym_continue] = ACTIONS(2757), + [anon_sym_goto] = ACTIONS(2757), + [anon_sym_not] = ACTIONS(2757), + [anon_sym_compl] = ACTIONS(2757), + [anon_sym_DASH_DASH] = ACTIONS(2759), + [anon_sym_PLUS_PLUS] = ACTIONS(2759), + [anon_sym_sizeof] = ACTIONS(2757), + [sym_number_literal] = ACTIONS(2759), + [anon_sym_L_SQUOTE] = ACTIONS(2759), + [anon_sym_u_SQUOTE] = ACTIONS(2759), + [anon_sym_U_SQUOTE] = ACTIONS(2759), + [anon_sym_u8_SQUOTE] = ACTIONS(2759), + [anon_sym_SQUOTE] = ACTIONS(2759), + [anon_sym_L_DQUOTE] = ACTIONS(2759), + [anon_sym_u_DQUOTE] = ACTIONS(2759), + [anon_sym_U_DQUOTE] = ACTIONS(2759), + [anon_sym_u8_DQUOTE] = ACTIONS(2759), + [anon_sym_DQUOTE] = ACTIONS(2759), + [sym_true] = ACTIONS(2757), + [sym_false] = ACTIONS(2757), + [sym_null] = ACTIONS(2757), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2757), + [anon_sym_decltype] = ACTIONS(2757), + [anon_sym_virtual] = ACTIONS(2757), + [anon_sym_explicit] = ACTIONS(2757), + [anon_sym_typename] = ACTIONS(2757), + [anon_sym_template] = ACTIONS(2757), + [anon_sym_operator] = ACTIONS(2757), + [anon_sym_try] = ACTIONS(2757), + [anon_sym_delete] = ACTIONS(2757), + [anon_sym_throw] = ACTIONS(2757), + [anon_sym_namespace] = ACTIONS(2757), + [anon_sym_using] = ACTIONS(2757), + [anon_sym_static_assert] = ACTIONS(2757), + [anon_sym_concept] = ACTIONS(2757), + [anon_sym_co_return] = ACTIONS(2757), + [anon_sym_co_yield] = ACTIONS(2757), + [anon_sym_co_await] = ACTIONS(2757), + [anon_sym_new] = ACTIONS(2757), + [anon_sym_requires] = ACTIONS(2757), + [sym_this] = ACTIONS(2757), + [sym_nullptr] = ACTIONS(2757), + [sym_raw_string_literal] = ACTIONS(2759), }, - [1400] = { - [sym__expression] = STATE(3945), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_initializer_list] = STATE(6420), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1465), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [939] = { + [sym_identifier] = ACTIONS(2753), + [aux_sym_preproc_include_token1] = ACTIONS(2753), + [aux_sym_preproc_def_token1] = ACTIONS(2753), + [aux_sym_preproc_if_token1] = ACTIONS(2753), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2753), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2753), + [sym_preproc_directive] = ACTIONS(2753), + [anon_sym_LPAREN2] = ACTIONS(2755), + [anon_sym_BANG] = ACTIONS(2755), + [anon_sym_TILDE] = ACTIONS(2755), + [anon_sym_DASH] = ACTIONS(2753), + [anon_sym_PLUS] = ACTIONS(2753), + [anon_sym_STAR] = ACTIONS(2755), + [anon_sym_AMP_AMP] = ACTIONS(2755), + [anon_sym_AMP] = ACTIONS(2753), + [anon_sym_SEMI] = ACTIONS(2755), + [anon_sym_typedef] = ACTIONS(2753), + [anon_sym_extern] = ACTIONS(2753), + [anon_sym___attribute__] = ACTIONS(2753), + [anon_sym_COLON_COLON] = ACTIONS(2755), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2755), + [anon_sym___declspec] = ACTIONS(2753), + [anon_sym___based] = ACTIONS(2753), + [anon_sym___cdecl] = ACTIONS(2753), + [anon_sym___clrcall] = ACTIONS(2753), + [anon_sym___stdcall] = ACTIONS(2753), + [anon_sym___fastcall] = ACTIONS(2753), + [anon_sym___thiscall] = ACTIONS(2753), + [anon_sym___vectorcall] = ACTIONS(2753), + [anon_sym_LBRACE] = ACTIONS(2755), + [anon_sym_RBRACE] = ACTIONS(2755), + [anon_sym_LBRACK] = ACTIONS(2753), + [anon_sym_static] = ACTIONS(2753), + [anon_sym_register] = ACTIONS(2753), + [anon_sym_inline] = ACTIONS(2753), + [anon_sym_thread_local] = ACTIONS(2753), + [anon_sym_const] = ACTIONS(2753), + [anon_sym_volatile] = ACTIONS(2753), + [anon_sym_restrict] = ACTIONS(2753), + [anon_sym__Atomic] = ACTIONS(2753), + [anon_sym_mutable] = ACTIONS(2753), + [anon_sym_constexpr] = ACTIONS(2753), + [anon_sym_constinit] = ACTIONS(2753), + [anon_sym_consteval] = ACTIONS(2753), + [anon_sym_signed] = ACTIONS(2753), + [anon_sym_unsigned] = ACTIONS(2753), + [anon_sym_long] = ACTIONS(2753), + [anon_sym_short] = ACTIONS(2753), + [sym_primitive_type] = ACTIONS(2753), + [anon_sym_enum] = ACTIONS(2753), + [anon_sym_class] = ACTIONS(2753), + [anon_sym_struct] = ACTIONS(2753), + [anon_sym_union] = ACTIONS(2753), + [anon_sym_if] = ACTIONS(2753), + [anon_sym_switch] = ACTIONS(2753), + [anon_sym_case] = ACTIONS(2753), + [anon_sym_default] = ACTIONS(2753), + [anon_sym_while] = ACTIONS(2753), + [anon_sym_do] = ACTIONS(2753), + [anon_sym_for] = ACTIONS(2753), + [anon_sym_return] = ACTIONS(2753), + [anon_sym_break] = ACTIONS(2753), + [anon_sym_continue] = ACTIONS(2753), + [anon_sym_goto] = ACTIONS(2753), + [anon_sym_not] = ACTIONS(2753), + [anon_sym_compl] = ACTIONS(2753), + [anon_sym_DASH_DASH] = ACTIONS(2755), + [anon_sym_PLUS_PLUS] = ACTIONS(2755), + [anon_sym_sizeof] = ACTIONS(2753), + [sym_number_literal] = ACTIONS(2755), + [anon_sym_L_SQUOTE] = ACTIONS(2755), + [anon_sym_u_SQUOTE] = ACTIONS(2755), + [anon_sym_U_SQUOTE] = ACTIONS(2755), + [anon_sym_u8_SQUOTE] = ACTIONS(2755), + [anon_sym_SQUOTE] = ACTIONS(2755), + [anon_sym_L_DQUOTE] = ACTIONS(2755), + [anon_sym_u_DQUOTE] = ACTIONS(2755), + [anon_sym_U_DQUOTE] = ACTIONS(2755), + [anon_sym_u8_DQUOTE] = ACTIONS(2755), + [anon_sym_DQUOTE] = ACTIONS(2755), + [sym_true] = ACTIONS(2753), + [sym_false] = ACTIONS(2753), + [sym_null] = ACTIONS(2753), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2753), + [anon_sym_decltype] = ACTIONS(2753), + [anon_sym_virtual] = ACTIONS(2753), + [anon_sym_explicit] = ACTIONS(2753), + [anon_sym_typename] = ACTIONS(2753), + [anon_sym_template] = ACTIONS(2753), + [anon_sym_operator] = ACTIONS(2753), + [anon_sym_try] = ACTIONS(2753), + [anon_sym_delete] = ACTIONS(2753), + [anon_sym_throw] = ACTIONS(2753), + [anon_sym_namespace] = ACTIONS(2753), + [anon_sym_using] = ACTIONS(2753), + [anon_sym_static_assert] = ACTIONS(2753), + [anon_sym_concept] = ACTIONS(2753), + [anon_sym_co_return] = ACTIONS(2753), + [anon_sym_co_yield] = ACTIONS(2753), + [anon_sym_co_await] = ACTIONS(2753), + [anon_sym_new] = ACTIONS(2753), + [anon_sym_requires] = ACTIONS(2753), + [sym_this] = ACTIONS(2753), + [sym_nullptr] = ACTIONS(2753), + [sym_raw_string_literal] = ACTIONS(2755), }, - [1401] = { - [sym__expression] = STATE(3655), - [sym_comma_expression] = STATE(6399), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_RPAREN] = ACTIONS(3514), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [940] = { + [ts_builtin_sym_end] = ACTIONS(2913), + [sym_identifier] = ACTIONS(2911), + [aux_sym_preproc_include_token1] = ACTIONS(2911), + [aux_sym_preproc_def_token1] = ACTIONS(2911), + [aux_sym_preproc_if_token1] = ACTIONS(2911), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2911), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2911), + [sym_preproc_directive] = ACTIONS(2911), + [anon_sym_LPAREN2] = ACTIONS(2913), + [anon_sym_BANG] = ACTIONS(2913), + [anon_sym_TILDE] = ACTIONS(2913), + [anon_sym_DASH] = ACTIONS(2911), + [anon_sym_PLUS] = ACTIONS(2911), + [anon_sym_STAR] = ACTIONS(2913), + [anon_sym_AMP_AMP] = ACTIONS(2913), + [anon_sym_AMP] = ACTIONS(2911), + [anon_sym_SEMI] = ACTIONS(2913), + [anon_sym_typedef] = ACTIONS(2911), + [anon_sym_extern] = ACTIONS(2911), + [anon_sym___attribute__] = ACTIONS(2911), + [anon_sym_COLON_COLON] = ACTIONS(2913), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2913), + [anon_sym___declspec] = ACTIONS(2911), + [anon_sym___based] = ACTIONS(2911), + [anon_sym___cdecl] = ACTIONS(2911), + [anon_sym___clrcall] = ACTIONS(2911), + [anon_sym___stdcall] = ACTIONS(2911), + [anon_sym___fastcall] = ACTIONS(2911), + [anon_sym___thiscall] = ACTIONS(2911), + [anon_sym___vectorcall] = ACTIONS(2911), + [anon_sym_LBRACE] = ACTIONS(2913), + [anon_sym_LBRACK] = ACTIONS(2911), + [anon_sym_static] = ACTIONS(2911), + [anon_sym_register] = ACTIONS(2911), + [anon_sym_inline] = ACTIONS(2911), + [anon_sym_thread_local] = ACTIONS(2911), + [anon_sym_const] = ACTIONS(2911), + [anon_sym_volatile] = ACTIONS(2911), + [anon_sym_restrict] = ACTIONS(2911), + [anon_sym__Atomic] = ACTIONS(2911), + [anon_sym_mutable] = ACTIONS(2911), + [anon_sym_constexpr] = ACTIONS(2911), + [anon_sym_constinit] = ACTIONS(2911), + [anon_sym_consteval] = ACTIONS(2911), + [anon_sym_signed] = ACTIONS(2911), + [anon_sym_unsigned] = ACTIONS(2911), + [anon_sym_long] = ACTIONS(2911), + [anon_sym_short] = ACTIONS(2911), + [sym_primitive_type] = ACTIONS(2911), + [anon_sym_enum] = ACTIONS(2911), + [anon_sym_class] = ACTIONS(2911), + [anon_sym_struct] = ACTIONS(2911), + [anon_sym_union] = ACTIONS(2911), + [anon_sym_if] = ACTIONS(2911), + [anon_sym_switch] = ACTIONS(2911), + [anon_sym_case] = ACTIONS(2911), + [anon_sym_default] = ACTIONS(2911), + [anon_sym_while] = ACTIONS(2911), + [anon_sym_do] = ACTIONS(2911), + [anon_sym_for] = ACTIONS(2911), + [anon_sym_return] = ACTIONS(2911), + [anon_sym_break] = ACTIONS(2911), + [anon_sym_continue] = ACTIONS(2911), + [anon_sym_goto] = ACTIONS(2911), + [anon_sym_not] = ACTIONS(2911), + [anon_sym_compl] = ACTIONS(2911), + [anon_sym_DASH_DASH] = ACTIONS(2913), + [anon_sym_PLUS_PLUS] = ACTIONS(2913), + [anon_sym_sizeof] = ACTIONS(2911), + [sym_number_literal] = ACTIONS(2913), + [anon_sym_L_SQUOTE] = ACTIONS(2913), + [anon_sym_u_SQUOTE] = ACTIONS(2913), + [anon_sym_U_SQUOTE] = ACTIONS(2913), + [anon_sym_u8_SQUOTE] = ACTIONS(2913), + [anon_sym_SQUOTE] = ACTIONS(2913), + [anon_sym_L_DQUOTE] = ACTIONS(2913), + [anon_sym_u_DQUOTE] = ACTIONS(2913), + [anon_sym_U_DQUOTE] = ACTIONS(2913), + [anon_sym_u8_DQUOTE] = ACTIONS(2913), + [anon_sym_DQUOTE] = ACTIONS(2913), + [sym_true] = ACTIONS(2911), + [sym_false] = ACTIONS(2911), + [sym_null] = ACTIONS(2911), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2911), + [anon_sym_decltype] = ACTIONS(2911), + [anon_sym_virtual] = ACTIONS(2911), + [anon_sym_explicit] = ACTIONS(2911), + [anon_sym_typename] = ACTIONS(2911), + [anon_sym_template] = ACTIONS(2911), + [anon_sym_operator] = ACTIONS(2911), + [anon_sym_try] = ACTIONS(2911), + [anon_sym_delete] = ACTIONS(2911), + [anon_sym_throw] = ACTIONS(2911), + [anon_sym_namespace] = ACTIONS(2911), + [anon_sym_using] = ACTIONS(2911), + [anon_sym_static_assert] = ACTIONS(2911), + [anon_sym_concept] = ACTIONS(2911), + [anon_sym_co_return] = ACTIONS(2911), + [anon_sym_co_yield] = ACTIONS(2911), + [anon_sym_co_await] = ACTIONS(2911), + [anon_sym_new] = ACTIONS(2911), + [anon_sym_requires] = ACTIONS(2911), + [sym_this] = ACTIONS(2911), + [sym_nullptr] = ACTIONS(2911), + [sym_raw_string_literal] = ACTIONS(2913), }, - [1402] = { - [sym__expression] = STATE(3745), - [sym_comma_expression] = STATE(6886), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_RPAREN] = ACTIONS(3516), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [941] = { + [sym_identifier] = ACTIONS(2829), + [aux_sym_preproc_include_token1] = ACTIONS(2829), + [aux_sym_preproc_def_token1] = ACTIONS(2829), + [aux_sym_preproc_if_token1] = ACTIONS(2829), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2829), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2829), + [sym_preproc_directive] = ACTIONS(2829), + [anon_sym_LPAREN2] = ACTIONS(2831), + [anon_sym_BANG] = ACTIONS(2831), + [anon_sym_TILDE] = ACTIONS(2831), + [anon_sym_DASH] = ACTIONS(2829), + [anon_sym_PLUS] = ACTIONS(2829), + [anon_sym_STAR] = ACTIONS(2831), + [anon_sym_AMP_AMP] = ACTIONS(2831), + [anon_sym_AMP] = ACTIONS(2829), + [anon_sym_SEMI] = ACTIONS(2831), + [anon_sym_typedef] = ACTIONS(2829), + [anon_sym_extern] = ACTIONS(2829), + [anon_sym___attribute__] = ACTIONS(2829), + [anon_sym_COLON_COLON] = ACTIONS(2831), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2831), + [anon_sym___declspec] = ACTIONS(2829), + [anon_sym___based] = ACTIONS(2829), + [anon_sym___cdecl] = ACTIONS(2829), + [anon_sym___clrcall] = ACTIONS(2829), + [anon_sym___stdcall] = ACTIONS(2829), + [anon_sym___fastcall] = ACTIONS(2829), + [anon_sym___thiscall] = ACTIONS(2829), + [anon_sym___vectorcall] = ACTIONS(2829), + [anon_sym_LBRACE] = ACTIONS(2831), + [anon_sym_RBRACE] = ACTIONS(2831), + [anon_sym_LBRACK] = ACTIONS(2829), + [anon_sym_static] = ACTIONS(2829), + [anon_sym_register] = ACTIONS(2829), + [anon_sym_inline] = ACTIONS(2829), + [anon_sym_thread_local] = ACTIONS(2829), + [anon_sym_const] = ACTIONS(2829), + [anon_sym_volatile] = ACTIONS(2829), + [anon_sym_restrict] = ACTIONS(2829), + [anon_sym__Atomic] = ACTIONS(2829), + [anon_sym_mutable] = ACTIONS(2829), + [anon_sym_constexpr] = ACTIONS(2829), + [anon_sym_constinit] = ACTIONS(2829), + [anon_sym_consteval] = ACTIONS(2829), + [anon_sym_signed] = ACTIONS(2829), + [anon_sym_unsigned] = ACTIONS(2829), + [anon_sym_long] = ACTIONS(2829), + [anon_sym_short] = ACTIONS(2829), + [sym_primitive_type] = ACTIONS(2829), + [anon_sym_enum] = ACTIONS(2829), + [anon_sym_class] = ACTIONS(2829), + [anon_sym_struct] = ACTIONS(2829), + [anon_sym_union] = ACTIONS(2829), + [anon_sym_if] = ACTIONS(2829), + [anon_sym_switch] = ACTIONS(2829), + [anon_sym_case] = ACTIONS(2829), + [anon_sym_default] = ACTIONS(2829), + [anon_sym_while] = ACTIONS(2829), + [anon_sym_do] = ACTIONS(2829), + [anon_sym_for] = ACTIONS(2829), + [anon_sym_return] = ACTIONS(2829), + [anon_sym_break] = ACTIONS(2829), + [anon_sym_continue] = ACTIONS(2829), + [anon_sym_goto] = ACTIONS(2829), + [anon_sym_not] = ACTIONS(2829), + [anon_sym_compl] = ACTIONS(2829), + [anon_sym_DASH_DASH] = ACTIONS(2831), + [anon_sym_PLUS_PLUS] = ACTIONS(2831), + [anon_sym_sizeof] = ACTIONS(2829), + [sym_number_literal] = ACTIONS(2831), + [anon_sym_L_SQUOTE] = ACTIONS(2831), + [anon_sym_u_SQUOTE] = ACTIONS(2831), + [anon_sym_U_SQUOTE] = ACTIONS(2831), + [anon_sym_u8_SQUOTE] = ACTIONS(2831), + [anon_sym_SQUOTE] = ACTIONS(2831), + [anon_sym_L_DQUOTE] = ACTIONS(2831), + [anon_sym_u_DQUOTE] = ACTIONS(2831), + [anon_sym_U_DQUOTE] = ACTIONS(2831), + [anon_sym_u8_DQUOTE] = ACTIONS(2831), + [anon_sym_DQUOTE] = ACTIONS(2831), + [sym_true] = ACTIONS(2829), + [sym_false] = ACTIONS(2829), + [sym_null] = ACTIONS(2829), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2829), + [anon_sym_decltype] = ACTIONS(2829), + [anon_sym_virtual] = ACTIONS(2829), + [anon_sym_explicit] = ACTIONS(2829), + [anon_sym_typename] = ACTIONS(2829), + [anon_sym_template] = ACTIONS(2829), + [anon_sym_operator] = ACTIONS(2829), + [anon_sym_try] = ACTIONS(2829), + [anon_sym_delete] = ACTIONS(2829), + [anon_sym_throw] = ACTIONS(2829), + [anon_sym_namespace] = ACTIONS(2829), + [anon_sym_using] = ACTIONS(2829), + [anon_sym_static_assert] = ACTIONS(2829), + [anon_sym_concept] = ACTIONS(2829), + [anon_sym_co_return] = ACTIONS(2829), + [anon_sym_co_yield] = ACTIONS(2829), + [anon_sym_co_await] = ACTIONS(2829), + [anon_sym_new] = ACTIONS(2829), + [anon_sym_requires] = ACTIONS(2829), + [sym_this] = ACTIONS(2829), + [sym_nullptr] = ACTIONS(2829), + [sym_raw_string_literal] = ACTIONS(2831), }, - [1403] = { - [sym__expression] = STATE(3956), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_initializer_list] = STATE(6378), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACE] = ACTIONS(1465), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [942] = { + [ts_builtin_sym_end] = ACTIONS(2917), + [sym_identifier] = ACTIONS(2915), + [aux_sym_preproc_include_token1] = ACTIONS(2915), + [aux_sym_preproc_def_token1] = ACTIONS(2915), + [aux_sym_preproc_if_token1] = ACTIONS(2915), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2915), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2915), + [sym_preproc_directive] = ACTIONS(2915), + [anon_sym_LPAREN2] = ACTIONS(2917), + [anon_sym_BANG] = ACTIONS(2917), + [anon_sym_TILDE] = ACTIONS(2917), + [anon_sym_DASH] = ACTIONS(2915), + [anon_sym_PLUS] = ACTIONS(2915), + [anon_sym_STAR] = ACTIONS(2917), + [anon_sym_AMP_AMP] = ACTIONS(2917), + [anon_sym_AMP] = ACTIONS(2915), + [anon_sym_SEMI] = ACTIONS(2917), + [anon_sym_typedef] = ACTIONS(2915), + [anon_sym_extern] = ACTIONS(2915), + [anon_sym___attribute__] = ACTIONS(2915), + [anon_sym_COLON_COLON] = ACTIONS(2917), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2917), + [anon_sym___declspec] = ACTIONS(2915), + [anon_sym___based] = ACTIONS(2915), + [anon_sym___cdecl] = ACTIONS(2915), + [anon_sym___clrcall] = ACTIONS(2915), + [anon_sym___stdcall] = ACTIONS(2915), + [anon_sym___fastcall] = ACTIONS(2915), + [anon_sym___thiscall] = ACTIONS(2915), + [anon_sym___vectorcall] = ACTIONS(2915), + [anon_sym_LBRACE] = ACTIONS(2917), + [anon_sym_LBRACK] = ACTIONS(2915), + [anon_sym_static] = ACTIONS(2915), + [anon_sym_register] = ACTIONS(2915), + [anon_sym_inline] = ACTIONS(2915), + [anon_sym_thread_local] = ACTIONS(2915), + [anon_sym_const] = ACTIONS(2915), + [anon_sym_volatile] = ACTIONS(2915), + [anon_sym_restrict] = ACTIONS(2915), + [anon_sym__Atomic] = ACTIONS(2915), + [anon_sym_mutable] = ACTIONS(2915), + [anon_sym_constexpr] = ACTIONS(2915), + [anon_sym_constinit] = ACTIONS(2915), + [anon_sym_consteval] = ACTIONS(2915), + [anon_sym_signed] = ACTIONS(2915), + [anon_sym_unsigned] = ACTIONS(2915), + [anon_sym_long] = ACTIONS(2915), + [anon_sym_short] = ACTIONS(2915), + [sym_primitive_type] = ACTIONS(2915), + [anon_sym_enum] = ACTIONS(2915), + [anon_sym_class] = ACTIONS(2915), + [anon_sym_struct] = ACTIONS(2915), + [anon_sym_union] = ACTIONS(2915), + [anon_sym_if] = ACTIONS(2915), + [anon_sym_switch] = ACTIONS(2915), + [anon_sym_case] = ACTIONS(2915), + [anon_sym_default] = ACTIONS(2915), + [anon_sym_while] = ACTIONS(2915), + [anon_sym_do] = ACTIONS(2915), + [anon_sym_for] = ACTIONS(2915), + [anon_sym_return] = ACTIONS(2915), + [anon_sym_break] = ACTIONS(2915), + [anon_sym_continue] = ACTIONS(2915), + [anon_sym_goto] = ACTIONS(2915), + [anon_sym_not] = ACTIONS(2915), + [anon_sym_compl] = ACTIONS(2915), + [anon_sym_DASH_DASH] = ACTIONS(2917), + [anon_sym_PLUS_PLUS] = ACTIONS(2917), + [anon_sym_sizeof] = ACTIONS(2915), + [sym_number_literal] = ACTIONS(2917), + [anon_sym_L_SQUOTE] = ACTIONS(2917), + [anon_sym_u_SQUOTE] = ACTIONS(2917), + [anon_sym_U_SQUOTE] = ACTIONS(2917), + [anon_sym_u8_SQUOTE] = ACTIONS(2917), + [anon_sym_SQUOTE] = ACTIONS(2917), + [anon_sym_L_DQUOTE] = ACTIONS(2917), + [anon_sym_u_DQUOTE] = ACTIONS(2917), + [anon_sym_U_DQUOTE] = ACTIONS(2917), + [anon_sym_u8_DQUOTE] = ACTIONS(2917), + [anon_sym_DQUOTE] = ACTIONS(2917), + [sym_true] = ACTIONS(2915), + [sym_false] = ACTIONS(2915), + [sym_null] = ACTIONS(2915), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2915), + [anon_sym_decltype] = ACTIONS(2915), + [anon_sym_virtual] = ACTIONS(2915), + [anon_sym_explicit] = ACTIONS(2915), + [anon_sym_typename] = ACTIONS(2915), + [anon_sym_template] = ACTIONS(2915), + [anon_sym_operator] = ACTIONS(2915), + [anon_sym_try] = ACTIONS(2915), + [anon_sym_delete] = ACTIONS(2915), + [anon_sym_throw] = ACTIONS(2915), + [anon_sym_namespace] = ACTIONS(2915), + [anon_sym_using] = ACTIONS(2915), + [anon_sym_static_assert] = ACTIONS(2915), + [anon_sym_concept] = ACTIONS(2915), + [anon_sym_co_return] = ACTIONS(2915), + [anon_sym_co_yield] = ACTIONS(2915), + [anon_sym_co_await] = ACTIONS(2915), + [anon_sym_new] = ACTIONS(2915), + [anon_sym_requires] = ACTIONS(2915), + [sym_this] = ACTIONS(2915), + [sym_nullptr] = ACTIONS(2915), + [sym_raw_string_literal] = ACTIONS(2917), }, - [1404] = { - [sym__expression] = STATE(2729), - [sym_conditional_expression] = STATE(2765), - [sym_assignment_expression] = STATE(2765), - [sym_pointer_expression] = STATE(2827), - [sym_unary_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_update_expression] = STATE(2765), - [sym_cast_expression] = STATE(2765), - [sym_sizeof_expression] = STATE(2765), - [sym_subscript_expression] = STATE(2827), - [sym_call_expression] = STATE(2827), - [sym_field_expression] = STATE(2827), - [sym_compound_literal_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2827), - [sym_char_literal] = STATE(2674), - [sym_concatenated_string] = STATE(2674), - [sym_string_literal] = STATE(2093), - [sym__class_name] = STATE(6297), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2765), - [sym_co_await_expression] = STATE(2765), - [sym_new_expression] = STATE(2765), - [sym_delete_expression] = STATE(2765), - [sym_requires_clause] = STATE(2765), - [sym_requires_expression] = STATE(2765), - [sym_lambda_expression] = STATE(2765), - [sym_lambda_capture_specifier] = STATE(4512), - [sym_fold_expression] = STATE(2765), - [sym_parameter_pack_expansion] = STATE(2765), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4648), - [sym_qualified_identifier] = STATE(2827), - [sym_qualified_type_identifier] = STATE(6297), - [sym_user_defined_literal] = STATE(2765), - [sym_identifier] = ACTIONS(2363), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3518), - [anon_sym_LPAREN2] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1417), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_COLON_COLON] = ACTIONS(1423), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(2369), - [anon_sym_DASH_DASH] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [anon_sym_sizeof] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(1439), - [anon_sym_L_SQUOTE] = ACTIONS(1441), - [anon_sym_u_SQUOTE] = ACTIONS(1441), - [anon_sym_U_SQUOTE] = ACTIONS(1441), - [anon_sym_u8_SQUOTE] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1441), - [anon_sym_L_DQUOTE] = ACTIONS(1443), - [anon_sym_u_DQUOTE] = ACTIONS(1443), - [anon_sym_U_DQUOTE] = ACTIONS(1443), - [anon_sym_u8_DQUOTE] = ACTIONS(1443), - [anon_sym_DQUOTE] = ACTIONS(1443), - [sym_true] = ACTIONS(1445), - [sym_false] = ACTIONS(1445), - [sym_null] = ACTIONS(1445), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_co_await] = ACTIONS(1451), - [anon_sym_new] = ACTIONS(1453), - [anon_sym_requires] = ACTIONS(1455), - [sym_this] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(1445), - [sym_raw_string_literal] = ACTIONS(1457), + [943] = { + [sym_identifier] = ACTIONS(2825), + [aux_sym_preproc_include_token1] = ACTIONS(2825), + [aux_sym_preproc_def_token1] = ACTIONS(2825), + [aux_sym_preproc_if_token1] = ACTIONS(2825), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2825), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2825), + [sym_preproc_directive] = ACTIONS(2825), + [anon_sym_LPAREN2] = ACTIONS(2827), + [anon_sym_BANG] = ACTIONS(2827), + [anon_sym_TILDE] = ACTIONS(2827), + [anon_sym_DASH] = ACTIONS(2825), + [anon_sym_PLUS] = ACTIONS(2825), + [anon_sym_STAR] = ACTIONS(2827), + [anon_sym_AMP_AMP] = ACTIONS(2827), + [anon_sym_AMP] = ACTIONS(2825), + [anon_sym_SEMI] = ACTIONS(2827), + [anon_sym_typedef] = ACTIONS(2825), + [anon_sym_extern] = ACTIONS(2825), + [anon_sym___attribute__] = ACTIONS(2825), + [anon_sym_COLON_COLON] = ACTIONS(2827), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2827), + [anon_sym___declspec] = ACTIONS(2825), + [anon_sym___based] = ACTIONS(2825), + [anon_sym___cdecl] = ACTIONS(2825), + [anon_sym___clrcall] = ACTIONS(2825), + [anon_sym___stdcall] = ACTIONS(2825), + [anon_sym___fastcall] = ACTIONS(2825), + [anon_sym___thiscall] = ACTIONS(2825), + [anon_sym___vectorcall] = ACTIONS(2825), + [anon_sym_LBRACE] = ACTIONS(2827), + [anon_sym_RBRACE] = ACTIONS(2827), + [anon_sym_LBRACK] = ACTIONS(2825), + [anon_sym_static] = ACTIONS(2825), + [anon_sym_register] = ACTIONS(2825), + [anon_sym_inline] = ACTIONS(2825), + [anon_sym_thread_local] = ACTIONS(2825), + [anon_sym_const] = ACTIONS(2825), + [anon_sym_volatile] = ACTIONS(2825), + [anon_sym_restrict] = ACTIONS(2825), + [anon_sym__Atomic] = ACTIONS(2825), + [anon_sym_mutable] = ACTIONS(2825), + [anon_sym_constexpr] = ACTIONS(2825), + [anon_sym_constinit] = ACTIONS(2825), + [anon_sym_consteval] = ACTIONS(2825), + [anon_sym_signed] = ACTIONS(2825), + [anon_sym_unsigned] = ACTIONS(2825), + [anon_sym_long] = ACTIONS(2825), + [anon_sym_short] = ACTIONS(2825), + [sym_primitive_type] = ACTIONS(2825), + [anon_sym_enum] = ACTIONS(2825), + [anon_sym_class] = ACTIONS(2825), + [anon_sym_struct] = ACTIONS(2825), + [anon_sym_union] = ACTIONS(2825), + [anon_sym_if] = ACTIONS(2825), + [anon_sym_switch] = ACTIONS(2825), + [anon_sym_case] = ACTIONS(2825), + [anon_sym_default] = ACTIONS(2825), + [anon_sym_while] = ACTIONS(2825), + [anon_sym_do] = ACTIONS(2825), + [anon_sym_for] = ACTIONS(2825), + [anon_sym_return] = ACTIONS(2825), + [anon_sym_break] = ACTIONS(2825), + [anon_sym_continue] = ACTIONS(2825), + [anon_sym_goto] = ACTIONS(2825), + [anon_sym_not] = ACTIONS(2825), + [anon_sym_compl] = ACTIONS(2825), + [anon_sym_DASH_DASH] = ACTIONS(2827), + [anon_sym_PLUS_PLUS] = ACTIONS(2827), + [anon_sym_sizeof] = ACTIONS(2825), + [sym_number_literal] = ACTIONS(2827), + [anon_sym_L_SQUOTE] = ACTIONS(2827), + [anon_sym_u_SQUOTE] = ACTIONS(2827), + [anon_sym_U_SQUOTE] = ACTIONS(2827), + [anon_sym_u8_SQUOTE] = ACTIONS(2827), + [anon_sym_SQUOTE] = ACTIONS(2827), + [anon_sym_L_DQUOTE] = ACTIONS(2827), + [anon_sym_u_DQUOTE] = ACTIONS(2827), + [anon_sym_U_DQUOTE] = ACTIONS(2827), + [anon_sym_u8_DQUOTE] = ACTIONS(2827), + [anon_sym_DQUOTE] = ACTIONS(2827), + [sym_true] = ACTIONS(2825), + [sym_false] = ACTIONS(2825), + [sym_null] = ACTIONS(2825), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2825), + [anon_sym_decltype] = ACTIONS(2825), + [anon_sym_virtual] = ACTIONS(2825), + [anon_sym_explicit] = ACTIONS(2825), + [anon_sym_typename] = ACTIONS(2825), + [anon_sym_template] = ACTIONS(2825), + [anon_sym_operator] = ACTIONS(2825), + [anon_sym_try] = ACTIONS(2825), + [anon_sym_delete] = ACTIONS(2825), + [anon_sym_throw] = ACTIONS(2825), + [anon_sym_namespace] = ACTIONS(2825), + [anon_sym_using] = ACTIONS(2825), + [anon_sym_static_assert] = ACTIONS(2825), + [anon_sym_concept] = ACTIONS(2825), + [anon_sym_co_return] = ACTIONS(2825), + [anon_sym_co_yield] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(2825), + [anon_sym_new] = ACTIONS(2825), + [anon_sym_requires] = ACTIONS(2825), + [sym_this] = ACTIONS(2825), + [sym_nullptr] = ACTIONS(2825), + [sym_raw_string_literal] = ACTIONS(2827), }, - [1405] = { - [sym__expression] = STATE(3586), - [sym_comma_expression] = STATE(6584), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [944] = { + [sym_identifier] = ACTIONS(2821), + [aux_sym_preproc_include_token1] = ACTIONS(2821), + [aux_sym_preproc_def_token1] = ACTIONS(2821), + [aux_sym_preproc_if_token1] = ACTIONS(2821), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2821), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2821), + [sym_preproc_directive] = ACTIONS(2821), + [anon_sym_LPAREN2] = ACTIONS(2823), + [anon_sym_BANG] = ACTIONS(2823), + [anon_sym_TILDE] = ACTIONS(2823), + [anon_sym_DASH] = ACTIONS(2821), + [anon_sym_PLUS] = ACTIONS(2821), + [anon_sym_STAR] = ACTIONS(2823), + [anon_sym_AMP_AMP] = ACTIONS(2823), + [anon_sym_AMP] = ACTIONS(2821), + [anon_sym_SEMI] = ACTIONS(2823), + [anon_sym_typedef] = ACTIONS(2821), + [anon_sym_extern] = ACTIONS(2821), + [anon_sym___attribute__] = ACTIONS(2821), + [anon_sym_COLON_COLON] = ACTIONS(2823), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2823), + [anon_sym___declspec] = ACTIONS(2821), + [anon_sym___based] = ACTIONS(2821), + [anon_sym___cdecl] = ACTIONS(2821), + [anon_sym___clrcall] = ACTIONS(2821), + [anon_sym___stdcall] = ACTIONS(2821), + [anon_sym___fastcall] = ACTIONS(2821), + [anon_sym___thiscall] = ACTIONS(2821), + [anon_sym___vectorcall] = ACTIONS(2821), + [anon_sym_LBRACE] = ACTIONS(2823), + [anon_sym_RBRACE] = ACTIONS(2823), + [anon_sym_LBRACK] = ACTIONS(2821), + [anon_sym_static] = ACTIONS(2821), + [anon_sym_register] = ACTIONS(2821), + [anon_sym_inline] = ACTIONS(2821), + [anon_sym_thread_local] = ACTIONS(2821), + [anon_sym_const] = ACTIONS(2821), + [anon_sym_volatile] = ACTIONS(2821), + [anon_sym_restrict] = ACTIONS(2821), + [anon_sym__Atomic] = ACTIONS(2821), + [anon_sym_mutable] = ACTIONS(2821), + [anon_sym_constexpr] = ACTIONS(2821), + [anon_sym_constinit] = ACTIONS(2821), + [anon_sym_consteval] = ACTIONS(2821), + [anon_sym_signed] = ACTIONS(2821), + [anon_sym_unsigned] = ACTIONS(2821), + [anon_sym_long] = ACTIONS(2821), + [anon_sym_short] = ACTIONS(2821), + [sym_primitive_type] = ACTIONS(2821), + [anon_sym_enum] = ACTIONS(2821), + [anon_sym_class] = ACTIONS(2821), + [anon_sym_struct] = ACTIONS(2821), + [anon_sym_union] = ACTIONS(2821), + [anon_sym_if] = ACTIONS(2821), + [anon_sym_switch] = ACTIONS(2821), + [anon_sym_case] = ACTIONS(2821), + [anon_sym_default] = ACTIONS(2821), + [anon_sym_while] = ACTIONS(2821), + [anon_sym_do] = ACTIONS(2821), + [anon_sym_for] = ACTIONS(2821), + [anon_sym_return] = ACTIONS(2821), + [anon_sym_break] = ACTIONS(2821), + [anon_sym_continue] = ACTIONS(2821), + [anon_sym_goto] = ACTIONS(2821), + [anon_sym_not] = ACTIONS(2821), + [anon_sym_compl] = ACTIONS(2821), + [anon_sym_DASH_DASH] = ACTIONS(2823), + [anon_sym_PLUS_PLUS] = ACTIONS(2823), + [anon_sym_sizeof] = ACTIONS(2821), + [sym_number_literal] = ACTIONS(2823), + [anon_sym_L_SQUOTE] = ACTIONS(2823), + [anon_sym_u_SQUOTE] = ACTIONS(2823), + [anon_sym_U_SQUOTE] = ACTIONS(2823), + [anon_sym_u8_SQUOTE] = ACTIONS(2823), + [anon_sym_SQUOTE] = ACTIONS(2823), + [anon_sym_L_DQUOTE] = ACTIONS(2823), + [anon_sym_u_DQUOTE] = ACTIONS(2823), + [anon_sym_U_DQUOTE] = ACTIONS(2823), + [anon_sym_u8_DQUOTE] = ACTIONS(2823), + [anon_sym_DQUOTE] = ACTIONS(2823), + [sym_true] = ACTIONS(2821), + [sym_false] = ACTIONS(2821), + [sym_null] = ACTIONS(2821), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2821), + [anon_sym_decltype] = ACTIONS(2821), + [anon_sym_virtual] = ACTIONS(2821), + [anon_sym_explicit] = ACTIONS(2821), + [anon_sym_typename] = ACTIONS(2821), + [anon_sym_template] = ACTIONS(2821), + [anon_sym_operator] = ACTIONS(2821), + [anon_sym_try] = ACTIONS(2821), + [anon_sym_delete] = ACTIONS(2821), + [anon_sym_throw] = ACTIONS(2821), + [anon_sym_namespace] = ACTIONS(2821), + [anon_sym_using] = ACTIONS(2821), + [anon_sym_static_assert] = ACTIONS(2821), + [anon_sym_concept] = ACTIONS(2821), + [anon_sym_co_return] = ACTIONS(2821), + [anon_sym_co_yield] = ACTIONS(2821), + [anon_sym_co_await] = ACTIONS(2821), + [anon_sym_new] = ACTIONS(2821), + [anon_sym_requires] = ACTIONS(2821), + [sym_this] = ACTIONS(2821), + [sym_nullptr] = ACTIONS(2821), + [sym_raw_string_literal] = ACTIONS(2823), }, - [1406] = { - [sym__expression] = STATE(3948), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(3521), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [945] = { + [ts_builtin_sym_end] = ACTIONS(2863), + [sym_identifier] = ACTIONS(2861), + [aux_sym_preproc_include_token1] = ACTIONS(2861), + [aux_sym_preproc_def_token1] = ACTIONS(2861), + [aux_sym_preproc_if_token1] = ACTIONS(2861), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2861), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2861), + [sym_preproc_directive] = ACTIONS(2861), + [anon_sym_LPAREN2] = ACTIONS(2863), + [anon_sym_BANG] = ACTIONS(2863), + [anon_sym_TILDE] = ACTIONS(2863), + [anon_sym_DASH] = ACTIONS(2861), + [anon_sym_PLUS] = ACTIONS(2861), + [anon_sym_STAR] = ACTIONS(2863), + [anon_sym_AMP_AMP] = ACTIONS(2863), + [anon_sym_AMP] = ACTIONS(2861), + [anon_sym_SEMI] = ACTIONS(2863), + [anon_sym_typedef] = ACTIONS(2861), + [anon_sym_extern] = ACTIONS(2861), + [anon_sym___attribute__] = ACTIONS(2861), + [anon_sym_COLON_COLON] = ACTIONS(2863), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2863), + [anon_sym___declspec] = ACTIONS(2861), + [anon_sym___based] = ACTIONS(2861), + [anon_sym___cdecl] = ACTIONS(2861), + [anon_sym___clrcall] = ACTIONS(2861), + [anon_sym___stdcall] = ACTIONS(2861), + [anon_sym___fastcall] = ACTIONS(2861), + [anon_sym___thiscall] = ACTIONS(2861), + [anon_sym___vectorcall] = ACTIONS(2861), + [anon_sym_LBRACE] = ACTIONS(2863), + [anon_sym_LBRACK] = ACTIONS(2861), + [anon_sym_static] = ACTIONS(2861), + [anon_sym_register] = ACTIONS(2861), + [anon_sym_inline] = ACTIONS(2861), + [anon_sym_thread_local] = ACTIONS(2861), + [anon_sym_const] = ACTIONS(2861), + [anon_sym_volatile] = ACTIONS(2861), + [anon_sym_restrict] = ACTIONS(2861), + [anon_sym__Atomic] = ACTIONS(2861), + [anon_sym_mutable] = ACTIONS(2861), + [anon_sym_constexpr] = ACTIONS(2861), + [anon_sym_constinit] = ACTIONS(2861), + [anon_sym_consteval] = ACTIONS(2861), + [anon_sym_signed] = ACTIONS(2861), + [anon_sym_unsigned] = ACTIONS(2861), + [anon_sym_long] = ACTIONS(2861), + [anon_sym_short] = ACTIONS(2861), + [sym_primitive_type] = ACTIONS(2861), + [anon_sym_enum] = ACTIONS(2861), + [anon_sym_class] = ACTIONS(2861), + [anon_sym_struct] = ACTIONS(2861), + [anon_sym_union] = ACTIONS(2861), + [anon_sym_if] = ACTIONS(2861), + [anon_sym_switch] = ACTIONS(2861), + [anon_sym_case] = ACTIONS(2861), + [anon_sym_default] = ACTIONS(2861), + [anon_sym_while] = ACTIONS(2861), + [anon_sym_do] = ACTIONS(2861), + [anon_sym_for] = ACTIONS(2861), + [anon_sym_return] = ACTIONS(2861), + [anon_sym_break] = ACTIONS(2861), + [anon_sym_continue] = ACTIONS(2861), + [anon_sym_goto] = ACTIONS(2861), + [anon_sym_not] = ACTIONS(2861), + [anon_sym_compl] = ACTIONS(2861), + [anon_sym_DASH_DASH] = ACTIONS(2863), + [anon_sym_PLUS_PLUS] = ACTIONS(2863), + [anon_sym_sizeof] = ACTIONS(2861), + [sym_number_literal] = ACTIONS(2863), + [anon_sym_L_SQUOTE] = ACTIONS(2863), + [anon_sym_u_SQUOTE] = ACTIONS(2863), + [anon_sym_U_SQUOTE] = ACTIONS(2863), + [anon_sym_u8_SQUOTE] = ACTIONS(2863), + [anon_sym_SQUOTE] = ACTIONS(2863), + [anon_sym_L_DQUOTE] = ACTIONS(2863), + [anon_sym_u_DQUOTE] = ACTIONS(2863), + [anon_sym_U_DQUOTE] = ACTIONS(2863), + [anon_sym_u8_DQUOTE] = ACTIONS(2863), + [anon_sym_DQUOTE] = ACTIONS(2863), + [sym_true] = ACTIONS(2861), + [sym_false] = ACTIONS(2861), + [sym_null] = ACTIONS(2861), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2861), + [anon_sym_decltype] = ACTIONS(2861), + [anon_sym_virtual] = ACTIONS(2861), + [anon_sym_explicit] = ACTIONS(2861), + [anon_sym_typename] = ACTIONS(2861), + [anon_sym_template] = ACTIONS(2861), + [anon_sym_operator] = ACTIONS(2861), + [anon_sym_try] = ACTIONS(2861), + [anon_sym_delete] = ACTIONS(2861), + [anon_sym_throw] = ACTIONS(2861), + [anon_sym_namespace] = ACTIONS(2861), + [anon_sym_using] = ACTIONS(2861), + [anon_sym_static_assert] = ACTIONS(2861), + [anon_sym_concept] = ACTIONS(2861), + [anon_sym_co_return] = ACTIONS(2861), + [anon_sym_co_yield] = ACTIONS(2861), + [anon_sym_co_await] = ACTIONS(2861), + [anon_sym_new] = ACTIONS(2861), + [anon_sym_requires] = ACTIONS(2861), + [sym_this] = ACTIONS(2861), + [sym_nullptr] = ACTIONS(2861), + [sym_raw_string_literal] = ACTIONS(2863), }, - [1407] = { - [sym__expression] = STATE(2558), - [sym_conditional_expression] = STATE(2541), - [sym_assignment_expression] = STATE(2541), - [sym_pointer_expression] = STATE(2531), - [sym_unary_expression] = STATE(2541), - [sym_binary_expression] = STATE(2541), - [sym_update_expression] = STATE(2541), - [sym_cast_expression] = STATE(2541), - [sym_sizeof_expression] = STATE(2541), - [sym_subscript_expression] = STATE(2531), - [sym_call_expression] = STATE(2531), - [sym_field_expression] = STATE(2531), - [sym_compound_literal_expression] = STATE(2541), - [sym_parenthesized_expression] = STATE(2531), - [sym_char_literal] = STATE(2481), - [sym_concatenated_string] = STATE(2481), - [sym_string_literal] = STATE(2063), - [sym__class_name] = STATE(6239), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2541), - [sym_co_await_expression] = STATE(2541), - [sym_new_expression] = STATE(2541), - [sym_delete_expression] = STATE(2541), - [sym_requires_clause] = STATE(2541), - [sym_requires_expression] = STATE(2541), - [sym_lambda_expression] = STATE(2541), - [sym_lambda_capture_specifier] = STATE(4508), - [sym_fold_expression] = STATE(2541), - [sym_parameter_pack_expansion] = STATE(2541), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2531), - [sym_qualified_type_identifier] = STATE(6239), - [sym_user_defined_literal] = STATE(2541), - [sym_identifier] = ACTIONS(2306), - [anon_sym_LPAREN2] = ACTIONS(2310), - [anon_sym_BANG] = ACTIONS(2314), - [anon_sym_TILDE] = ACTIONS(2314), - [anon_sym_DASH] = ACTIONS(2312), - [anon_sym_PLUS] = ACTIONS(2312), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(2318), - [anon_sym_LBRACK] = ACTIONS(2272), - [anon_sym_RBRACK] = ACTIONS(3523), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(2322), - [anon_sym_PLUS_PLUS] = ACTIONS(2322), - [anon_sym_sizeof] = ACTIONS(2324), - [sym_number_literal] = ACTIONS(2326), - [anon_sym_L_SQUOTE] = ACTIONS(2328), - [anon_sym_u_SQUOTE] = ACTIONS(2328), - [anon_sym_U_SQUOTE] = ACTIONS(2328), - [anon_sym_u8_SQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2328), - [anon_sym_L_DQUOTE] = ACTIONS(2330), - [anon_sym_u_DQUOTE] = ACTIONS(2330), - [anon_sym_U_DQUOTE] = ACTIONS(2330), - [anon_sym_u8_DQUOTE] = ACTIONS(2330), - [anon_sym_DQUOTE] = ACTIONS(2330), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2334), - [anon_sym_co_await] = ACTIONS(2336), - [anon_sym_new] = ACTIONS(2338), - [anon_sym_requires] = ACTIONS(2340), - [sym_this] = ACTIONS(2332), - [sym_nullptr] = ACTIONS(2332), - [sym_raw_string_literal] = ACTIONS(2342), + [946] = { + [ts_builtin_sym_end] = ACTIONS(2863), + [sym_identifier] = ACTIONS(2861), + [aux_sym_preproc_include_token1] = ACTIONS(2861), + [aux_sym_preproc_def_token1] = ACTIONS(2861), + [aux_sym_preproc_if_token1] = ACTIONS(2861), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2861), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2861), + [sym_preproc_directive] = ACTIONS(2861), + [anon_sym_LPAREN2] = ACTIONS(2863), + [anon_sym_BANG] = ACTIONS(2863), + [anon_sym_TILDE] = ACTIONS(2863), + [anon_sym_DASH] = ACTIONS(2861), + [anon_sym_PLUS] = ACTIONS(2861), + [anon_sym_STAR] = ACTIONS(2863), + [anon_sym_AMP_AMP] = ACTIONS(2863), + [anon_sym_AMP] = ACTIONS(2861), + [anon_sym_SEMI] = ACTIONS(2863), + [anon_sym_typedef] = ACTIONS(2861), + [anon_sym_extern] = ACTIONS(2861), + [anon_sym___attribute__] = ACTIONS(2861), + [anon_sym_COLON_COLON] = ACTIONS(2863), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2863), + [anon_sym___declspec] = ACTIONS(2861), + [anon_sym___based] = ACTIONS(2861), + [anon_sym___cdecl] = ACTIONS(2861), + [anon_sym___clrcall] = ACTIONS(2861), + [anon_sym___stdcall] = ACTIONS(2861), + [anon_sym___fastcall] = ACTIONS(2861), + [anon_sym___thiscall] = ACTIONS(2861), + [anon_sym___vectorcall] = ACTIONS(2861), + [anon_sym_LBRACE] = ACTIONS(2863), + [anon_sym_LBRACK] = ACTIONS(2861), + [anon_sym_static] = ACTIONS(2861), + [anon_sym_register] = ACTIONS(2861), + [anon_sym_inline] = ACTIONS(2861), + [anon_sym_thread_local] = ACTIONS(2861), + [anon_sym_const] = ACTIONS(2861), + [anon_sym_volatile] = ACTIONS(2861), + [anon_sym_restrict] = ACTIONS(2861), + [anon_sym__Atomic] = ACTIONS(2861), + [anon_sym_mutable] = ACTIONS(2861), + [anon_sym_constexpr] = ACTIONS(2861), + [anon_sym_constinit] = ACTIONS(2861), + [anon_sym_consteval] = ACTIONS(2861), + [anon_sym_signed] = ACTIONS(2861), + [anon_sym_unsigned] = ACTIONS(2861), + [anon_sym_long] = ACTIONS(2861), + [anon_sym_short] = ACTIONS(2861), + [sym_primitive_type] = ACTIONS(2861), + [anon_sym_enum] = ACTIONS(2861), + [anon_sym_class] = ACTIONS(2861), + [anon_sym_struct] = ACTIONS(2861), + [anon_sym_union] = ACTIONS(2861), + [anon_sym_if] = ACTIONS(2861), + [anon_sym_switch] = ACTIONS(2861), + [anon_sym_case] = ACTIONS(2861), + [anon_sym_default] = ACTIONS(2861), + [anon_sym_while] = ACTIONS(2861), + [anon_sym_do] = ACTIONS(2861), + [anon_sym_for] = ACTIONS(2861), + [anon_sym_return] = ACTIONS(2861), + [anon_sym_break] = ACTIONS(2861), + [anon_sym_continue] = ACTIONS(2861), + [anon_sym_goto] = ACTIONS(2861), + [anon_sym_not] = ACTIONS(2861), + [anon_sym_compl] = ACTIONS(2861), + [anon_sym_DASH_DASH] = ACTIONS(2863), + [anon_sym_PLUS_PLUS] = ACTIONS(2863), + [anon_sym_sizeof] = ACTIONS(2861), + [sym_number_literal] = ACTIONS(2863), + [anon_sym_L_SQUOTE] = ACTIONS(2863), + [anon_sym_u_SQUOTE] = ACTIONS(2863), + [anon_sym_U_SQUOTE] = ACTIONS(2863), + [anon_sym_u8_SQUOTE] = ACTIONS(2863), + [anon_sym_SQUOTE] = ACTIONS(2863), + [anon_sym_L_DQUOTE] = ACTIONS(2863), + [anon_sym_u_DQUOTE] = ACTIONS(2863), + [anon_sym_U_DQUOTE] = ACTIONS(2863), + [anon_sym_u8_DQUOTE] = ACTIONS(2863), + [anon_sym_DQUOTE] = ACTIONS(2863), + [sym_true] = ACTIONS(2861), + [sym_false] = ACTIONS(2861), + [sym_null] = ACTIONS(2861), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2861), + [anon_sym_decltype] = ACTIONS(2861), + [anon_sym_virtual] = ACTIONS(2861), + [anon_sym_explicit] = ACTIONS(2861), + [anon_sym_typename] = ACTIONS(2861), + [anon_sym_template] = ACTIONS(2861), + [anon_sym_operator] = ACTIONS(2861), + [anon_sym_try] = ACTIONS(2861), + [anon_sym_delete] = ACTIONS(2861), + [anon_sym_throw] = ACTIONS(2861), + [anon_sym_namespace] = ACTIONS(2861), + [anon_sym_using] = ACTIONS(2861), + [anon_sym_static_assert] = ACTIONS(2861), + [anon_sym_concept] = ACTIONS(2861), + [anon_sym_co_return] = ACTIONS(2861), + [anon_sym_co_yield] = ACTIONS(2861), + [anon_sym_co_await] = ACTIONS(2861), + [anon_sym_new] = ACTIONS(2861), + [anon_sym_requires] = ACTIONS(2861), + [sym_this] = ACTIONS(2861), + [sym_nullptr] = ACTIONS(2861), + [sym_raw_string_literal] = ACTIONS(2863), }, - [1408] = { - [sym__expression] = STATE(3822), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(3196), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(3196), - [sym_call_expression] = STATE(3196), - [sym_field_expression] = STATE(3196), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(3196), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(3196), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3059), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3525), - [anon_sym_LPAREN2] = ACTIONS(3527), - [anon_sym_BANG] = ACTIONS(3065), - [anon_sym_TILDE] = ACTIONS(3065), - [anon_sym_DASH] = ACTIONS(3063), - [anon_sym_PLUS] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(3069), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3071), - [anon_sym_PLUS_PLUS] = ACTIONS(3071), - [anon_sym_sizeof] = ACTIONS(3073), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3075), - [anon_sym_co_await] = ACTIONS(3077), - [anon_sym_new] = ACTIONS(3079), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [947] = { + [sym_identifier] = ACTIONS(2749), + [aux_sym_preproc_include_token1] = ACTIONS(2749), + [aux_sym_preproc_def_token1] = ACTIONS(2749), + [aux_sym_preproc_if_token1] = ACTIONS(2749), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2749), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2749), + [sym_preproc_directive] = ACTIONS(2749), + [anon_sym_LPAREN2] = ACTIONS(2751), + [anon_sym_BANG] = ACTIONS(2751), + [anon_sym_TILDE] = ACTIONS(2751), + [anon_sym_DASH] = ACTIONS(2749), + [anon_sym_PLUS] = ACTIONS(2749), + [anon_sym_STAR] = ACTIONS(2751), + [anon_sym_AMP_AMP] = ACTIONS(2751), + [anon_sym_AMP] = ACTIONS(2749), + [anon_sym_SEMI] = ACTIONS(2751), + [anon_sym_typedef] = ACTIONS(2749), + [anon_sym_extern] = ACTIONS(2749), + [anon_sym___attribute__] = ACTIONS(2749), + [anon_sym_COLON_COLON] = ACTIONS(2751), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2751), + [anon_sym___declspec] = ACTIONS(2749), + [anon_sym___based] = ACTIONS(2749), + [anon_sym___cdecl] = ACTIONS(2749), + [anon_sym___clrcall] = ACTIONS(2749), + [anon_sym___stdcall] = ACTIONS(2749), + [anon_sym___fastcall] = ACTIONS(2749), + [anon_sym___thiscall] = ACTIONS(2749), + [anon_sym___vectorcall] = ACTIONS(2749), + [anon_sym_LBRACE] = ACTIONS(2751), + [anon_sym_RBRACE] = ACTIONS(2751), + [anon_sym_LBRACK] = ACTIONS(2749), + [anon_sym_static] = ACTIONS(2749), + [anon_sym_register] = ACTIONS(2749), + [anon_sym_inline] = ACTIONS(2749), + [anon_sym_thread_local] = ACTIONS(2749), + [anon_sym_const] = ACTIONS(2749), + [anon_sym_volatile] = ACTIONS(2749), + [anon_sym_restrict] = ACTIONS(2749), + [anon_sym__Atomic] = ACTIONS(2749), + [anon_sym_mutable] = ACTIONS(2749), + [anon_sym_constexpr] = ACTIONS(2749), + [anon_sym_constinit] = ACTIONS(2749), + [anon_sym_consteval] = ACTIONS(2749), + [anon_sym_signed] = ACTIONS(2749), + [anon_sym_unsigned] = ACTIONS(2749), + [anon_sym_long] = ACTIONS(2749), + [anon_sym_short] = ACTIONS(2749), + [sym_primitive_type] = ACTIONS(2749), + [anon_sym_enum] = ACTIONS(2749), + [anon_sym_class] = ACTIONS(2749), + [anon_sym_struct] = ACTIONS(2749), + [anon_sym_union] = ACTIONS(2749), + [anon_sym_if] = ACTIONS(2749), + [anon_sym_switch] = ACTIONS(2749), + [anon_sym_case] = ACTIONS(2749), + [anon_sym_default] = ACTIONS(2749), + [anon_sym_while] = ACTIONS(2749), + [anon_sym_do] = ACTIONS(2749), + [anon_sym_for] = ACTIONS(2749), + [anon_sym_return] = ACTIONS(2749), + [anon_sym_break] = ACTIONS(2749), + [anon_sym_continue] = ACTIONS(2749), + [anon_sym_goto] = ACTIONS(2749), + [anon_sym_not] = ACTIONS(2749), + [anon_sym_compl] = ACTIONS(2749), + [anon_sym_DASH_DASH] = ACTIONS(2751), + [anon_sym_PLUS_PLUS] = ACTIONS(2751), + [anon_sym_sizeof] = ACTIONS(2749), + [sym_number_literal] = ACTIONS(2751), + [anon_sym_L_SQUOTE] = ACTIONS(2751), + [anon_sym_u_SQUOTE] = ACTIONS(2751), + [anon_sym_U_SQUOTE] = ACTIONS(2751), + [anon_sym_u8_SQUOTE] = ACTIONS(2751), + [anon_sym_SQUOTE] = ACTIONS(2751), + [anon_sym_L_DQUOTE] = ACTIONS(2751), + [anon_sym_u_DQUOTE] = ACTIONS(2751), + [anon_sym_U_DQUOTE] = ACTIONS(2751), + [anon_sym_u8_DQUOTE] = ACTIONS(2751), + [anon_sym_DQUOTE] = ACTIONS(2751), + [sym_true] = ACTIONS(2749), + [sym_false] = ACTIONS(2749), + [sym_null] = ACTIONS(2749), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2749), + [anon_sym_decltype] = ACTIONS(2749), + [anon_sym_virtual] = ACTIONS(2749), + [anon_sym_explicit] = ACTIONS(2749), + [anon_sym_typename] = ACTIONS(2749), + [anon_sym_template] = ACTIONS(2749), + [anon_sym_operator] = ACTIONS(2749), + [anon_sym_try] = ACTIONS(2749), + [anon_sym_delete] = ACTIONS(2749), + [anon_sym_throw] = ACTIONS(2749), + [anon_sym_namespace] = ACTIONS(2749), + [anon_sym_using] = ACTIONS(2749), + [anon_sym_static_assert] = ACTIONS(2749), + [anon_sym_concept] = ACTIONS(2749), + [anon_sym_co_return] = ACTIONS(2749), + [anon_sym_co_yield] = ACTIONS(2749), + [anon_sym_co_await] = ACTIONS(2749), + [anon_sym_new] = ACTIONS(2749), + [anon_sym_requires] = ACTIONS(2749), + [sym_this] = ACTIONS(2749), + [sym_nullptr] = ACTIONS(2749), + [sym_raw_string_literal] = ACTIONS(2751), }, - [1409] = { - [sym__expression] = STATE(3897), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3529), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [948] = { + [sym_identifier] = ACTIONS(2745), + [aux_sym_preproc_include_token1] = ACTIONS(2745), + [aux_sym_preproc_def_token1] = ACTIONS(2745), + [aux_sym_preproc_if_token1] = ACTIONS(2745), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2745), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2745), + [sym_preproc_directive] = ACTIONS(2745), + [anon_sym_LPAREN2] = ACTIONS(2747), + [anon_sym_BANG] = ACTIONS(2747), + [anon_sym_TILDE] = ACTIONS(2747), + [anon_sym_DASH] = ACTIONS(2745), + [anon_sym_PLUS] = ACTIONS(2745), + [anon_sym_STAR] = ACTIONS(2747), + [anon_sym_AMP_AMP] = ACTIONS(2747), + [anon_sym_AMP] = ACTIONS(2745), + [anon_sym_SEMI] = ACTIONS(2747), + [anon_sym_typedef] = ACTIONS(2745), + [anon_sym_extern] = ACTIONS(2745), + [anon_sym___attribute__] = ACTIONS(2745), + [anon_sym_COLON_COLON] = ACTIONS(2747), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2747), + [anon_sym___declspec] = ACTIONS(2745), + [anon_sym___based] = ACTIONS(2745), + [anon_sym___cdecl] = ACTIONS(2745), + [anon_sym___clrcall] = ACTIONS(2745), + [anon_sym___stdcall] = ACTIONS(2745), + [anon_sym___fastcall] = ACTIONS(2745), + [anon_sym___thiscall] = ACTIONS(2745), + [anon_sym___vectorcall] = ACTIONS(2745), + [anon_sym_LBRACE] = ACTIONS(2747), + [anon_sym_RBRACE] = ACTIONS(2747), + [anon_sym_LBRACK] = ACTIONS(2745), + [anon_sym_static] = ACTIONS(2745), + [anon_sym_register] = ACTIONS(2745), + [anon_sym_inline] = ACTIONS(2745), + [anon_sym_thread_local] = ACTIONS(2745), + [anon_sym_const] = ACTIONS(2745), + [anon_sym_volatile] = ACTIONS(2745), + [anon_sym_restrict] = ACTIONS(2745), + [anon_sym__Atomic] = ACTIONS(2745), + [anon_sym_mutable] = ACTIONS(2745), + [anon_sym_constexpr] = ACTIONS(2745), + [anon_sym_constinit] = ACTIONS(2745), + [anon_sym_consteval] = ACTIONS(2745), + [anon_sym_signed] = ACTIONS(2745), + [anon_sym_unsigned] = ACTIONS(2745), + [anon_sym_long] = ACTIONS(2745), + [anon_sym_short] = ACTIONS(2745), + [sym_primitive_type] = ACTIONS(2745), + [anon_sym_enum] = ACTIONS(2745), + [anon_sym_class] = ACTIONS(2745), + [anon_sym_struct] = ACTIONS(2745), + [anon_sym_union] = ACTIONS(2745), + [anon_sym_if] = ACTIONS(2745), + [anon_sym_switch] = ACTIONS(2745), + [anon_sym_case] = ACTIONS(2745), + [anon_sym_default] = ACTIONS(2745), + [anon_sym_while] = ACTIONS(2745), + [anon_sym_do] = ACTIONS(2745), + [anon_sym_for] = ACTIONS(2745), + [anon_sym_return] = ACTIONS(2745), + [anon_sym_break] = ACTIONS(2745), + [anon_sym_continue] = ACTIONS(2745), + [anon_sym_goto] = ACTIONS(2745), + [anon_sym_not] = ACTIONS(2745), + [anon_sym_compl] = ACTIONS(2745), + [anon_sym_DASH_DASH] = ACTIONS(2747), + [anon_sym_PLUS_PLUS] = ACTIONS(2747), + [anon_sym_sizeof] = ACTIONS(2745), + [sym_number_literal] = ACTIONS(2747), + [anon_sym_L_SQUOTE] = ACTIONS(2747), + [anon_sym_u_SQUOTE] = ACTIONS(2747), + [anon_sym_U_SQUOTE] = ACTIONS(2747), + [anon_sym_u8_SQUOTE] = ACTIONS(2747), + [anon_sym_SQUOTE] = ACTIONS(2747), + [anon_sym_L_DQUOTE] = ACTIONS(2747), + [anon_sym_u_DQUOTE] = ACTIONS(2747), + [anon_sym_U_DQUOTE] = ACTIONS(2747), + [anon_sym_u8_DQUOTE] = ACTIONS(2747), + [anon_sym_DQUOTE] = ACTIONS(2747), + [sym_true] = ACTIONS(2745), + [sym_false] = ACTIONS(2745), + [sym_null] = ACTIONS(2745), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2745), + [anon_sym_decltype] = ACTIONS(2745), + [anon_sym_virtual] = ACTIONS(2745), + [anon_sym_explicit] = ACTIONS(2745), + [anon_sym_typename] = ACTIONS(2745), + [anon_sym_template] = ACTIONS(2745), + [anon_sym_operator] = ACTIONS(2745), + [anon_sym_try] = ACTIONS(2745), + [anon_sym_delete] = ACTIONS(2745), + [anon_sym_throw] = ACTIONS(2745), + [anon_sym_namespace] = ACTIONS(2745), + [anon_sym_using] = ACTIONS(2745), + [anon_sym_static_assert] = ACTIONS(2745), + [anon_sym_concept] = ACTIONS(2745), + [anon_sym_co_return] = ACTIONS(2745), + [anon_sym_co_yield] = ACTIONS(2745), + [anon_sym_co_await] = ACTIONS(2745), + [anon_sym_new] = ACTIONS(2745), + [anon_sym_requires] = ACTIONS(2745), + [sym_this] = ACTIONS(2745), + [sym_nullptr] = ACTIONS(2745), + [sym_raw_string_literal] = ACTIONS(2747), }, - [1410] = { - [sym__expression] = STATE(3960), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(3531), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [949] = { + [sym_identifier] = ACTIONS(2741), + [aux_sym_preproc_include_token1] = ACTIONS(2741), + [aux_sym_preproc_def_token1] = ACTIONS(2741), + [aux_sym_preproc_if_token1] = ACTIONS(2741), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2741), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2741), + [sym_preproc_directive] = ACTIONS(2741), + [anon_sym_LPAREN2] = ACTIONS(2743), + [anon_sym_BANG] = ACTIONS(2743), + [anon_sym_TILDE] = ACTIONS(2743), + [anon_sym_DASH] = ACTIONS(2741), + [anon_sym_PLUS] = ACTIONS(2741), + [anon_sym_STAR] = ACTIONS(2743), + [anon_sym_AMP_AMP] = ACTIONS(2743), + [anon_sym_AMP] = ACTIONS(2741), + [anon_sym_SEMI] = ACTIONS(2743), + [anon_sym_typedef] = ACTIONS(2741), + [anon_sym_extern] = ACTIONS(2741), + [anon_sym___attribute__] = ACTIONS(2741), + [anon_sym_COLON_COLON] = ACTIONS(2743), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2743), + [anon_sym___declspec] = ACTIONS(2741), + [anon_sym___based] = ACTIONS(2741), + [anon_sym___cdecl] = ACTIONS(2741), + [anon_sym___clrcall] = ACTIONS(2741), + [anon_sym___stdcall] = ACTIONS(2741), + [anon_sym___fastcall] = ACTIONS(2741), + [anon_sym___thiscall] = ACTIONS(2741), + [anon_sym___vectorcall] = ACTIONS(2741), + [anon_sym_LBRACE] = ACTIONS(2743), + [anon_sym_RBRACE] = ACTIONS(2743), + [anon_sym_LBRACK] = ACTIONS(2741), + [anon_sym_static] = ACTIONS(2741), + [anon_sym_register] = ACTIONS(2741), + [anon_sym_inline] = ACTIONS(2741), + [anon_sym_thread_local] = ACTIONS(2741), + [anon_sym_const] = ACTIONS(2741), + [anon_sym_volatile] = ACTIONS(2741), + [anon_sym_restrict] = ACTIONS(2741), + [anon_sym__Atomic] = ACTIONS(2741), + [anon_sym_mutable] = ACTIONS(2741), + [anon_sym_constexpr] = ACTIONS(2741), + [anon_sym_constinit] = ACTIONS(2741), + [anon_sym_consteval] = ACTIONS(2741), + [anon_sym_signed] = ACTIONS(2741), + [anon_sym_unsigned] = ACTIONS(2741), + [anon_sym_long] = ACTIONS(2741), + [anon_sym_short] = ACTIONS(2741), + [sym_primitive_type] = ACTIONS(2741), + [anon_sym_enum] = ACTIONS(2741), + [anon_sym_class] = ACTIONS(2741), + [anon_sym_struct] = ACTIONS(2741), + [anon_sym_union] = ACTIONS(2741), + [anon_sym_if] = ACTIONS(2741), + [anon_sym_switch] = ACTIONS(2741), + [anon_sym_case] = ACTIONS(2741), + [anon_sym_default] = ACTIONS(2741), + [anon_sym_while] = ACTIONS(2741), + [anon_sym_do] = ACTIONS(2741), + [anon_sym_for] = ACTIONS(2741), + [anon_sym_return] = ACTIONS(2741), + [anon_sym_break] = ACTIONS(2741), + [anon_sym_continue] = ACTIONS(2741), + [anon_sym_goto] = ACTIONS(2741), + [anon_sym_not] = ACTIONS(2741), + [anon_sym_compl] = ACTIONS(2741), + [anon_sym_DASH_DASH] = ACTIONS(2743), + [anon_sym_PLUS_PLUS] = ACTIONS(2743), + [anon_sym_sizeof] = ACTIONS(2741), + [sym_number_literal] = ACTIONS(2743), + [anon_sym_L_SQUOTE] = ACTIONS(2743), + [anon_sym_u_SQUOTE] = ACTIONS(2743), + [anon_sym_U_SQUOTE] = ACTIONS(2743), + [anon_sym_u8_SQUOTE] = ACTIONS(2743), + [anon_sym_SQUOTE] = ACTIONS(2743), + [anon_sym_L_DQUOTE] = ACTIONS(2743), + [anon_sym_u_DQUOTE] = ACTIONS(2743), + [anon_sym_U_DQUOTE] = ACTIONS(2743), + [anon_sym_u8_DQUOTE] = ACTIONS(2743), + [anon_sym_DQUOTE] = ACTIONS(2743), + [sym_true] = ACTIONS(2741), + [sym_false] = ACTIONS(2741), + [sym_null] = ACTIONS(2741), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2741), + [anon_sym_decltype] = ACTIONS(2741), + [anon_sym_virtual] = ACTIONS(2741), + [anon_sym_explicit] = ACTIONS(2741), + [anon_sym_typename] = ACTIONS(2741), + [anon_sym_template] = ACTIONS(2741), + [anon_sym_operator] = ACTIONS(2741), + [anon_sym_try] = ACTIONS(2741), + [anon_sym_delete] = ACTIONS(2741), + [anon_sym_throw] = ACTIONS(2741), + [anon_sym_namespace] = ACTIONS(2741), + [anon_sym_using] = ACTIONS(2741), + [anon_sym_static_assert] = ACTIONS(2741), + [anon_sym_concept] = ACTIONS(2741), + [anon_sym_co_return] = ACTIONS(2741), + [anon_sym_co_yield] = ACTIONS(2741), + [anon_sym_co_await] = ACTIONS(2741), + [anon_sym_new] = ACTIONS(2741), + [anon_sym_requires] = ACTIONS(2741), + [sym_this] = ACTIONS(2741), + [sym_nullptr] = ACTIONS(2741), + [sym_raw_string_literal] = ACTIONS(2743), }, - [1411] = { - [sym__expression] = STATE(2709), - [sym_conditional_expression] = STATE(2765), - [sym_assignment_expression] = STATE(2765), - [sym_pointer_expression] = STATE(2827), - [sym_unary_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_update_expression] = STATE(2765), - [sym_cast_expression] = STATE(2765), - [sym_sizeof_expression] = STATE(2765), - [sym_subscript_expression] = STATE(2827), - [sym_call_expression] = STATE(2827), - [sym_field_expression] = STATE(2827), - [sym_compound_literal_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2827), - [sym_char_literal] = STATE(2674), - [sym_concatenated_string] = STATE(2674), - [sym_string_literal] = STATE(2093), - [sym__class_name] = STATE(6297), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2765), - [sym_co_await_expression] = STATE(2765), - [sym_new_expression] = STATE(2765), - [sym_delete_expression] = STATE(2765), - [sym_requires_clause] = STATE(2765), - [sym_requires_expression] = STATE(2765), - [sym_lambda_expression] = STATE(2765), - [sym_lambda_capture_specifier] = STATE(4512), - [sym_fold_expression] = STATE(2765), - [sym_parameter_pack_expansion] = STATE(2765), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4648), - [sym_qualified_identifier] = STATE(2827), - [sym_qualified_type_identifier] = STATE(6297), - [sym_user_defined_literal] = STATE(2765), - [sym_identifier] = ACTIONS(2363), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3533), - [anon_sym_LPAREN2] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1417), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_COLON_COLON] = ACTIONS(1423), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(2369), - [anon_sym_DASH_DASH] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [anon_sym_sizeof] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(1439), - [anon_sym_L_SQUOTE] = ACTIONS(1441), - [anon_sym_u_SQUOTE] = ACTIONS(1441), - [anon_sym_U_SQUOTE] = ACTIONS(1441), - [anon_sym_u8_SQUOTE] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1441), - [anon_sym_L_DQUOTE] = ACTIONS(1443), - [anon_sym_u_DQUOTE] = ACTIONS(1443), - [anon_sym_U_DQUOTE] = ACTIONS(1443), - [anon_sym_u8_DQUOTE] = ACTIONS(1443), - [anon_sym_DQUOTE] = ACTIONS(1443), - [sym_true] = ACTIONS(1445), - [sym_false] = ACTIONS(1445), - [sym_null] = ACTIONS(1445), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_co_await] = ACTIONS(1451), - [anon_sym_new] = ACTIONS(1453), - [anon_sym_requires] = ACTIONS(1455), - [sym_this] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(1445), - [sym_raw_string_literal] = ACTIONS(1457), + [950] = { + [sym_identifier] = ACTIONS(2891), + [aux_sym_preproc_include_token1] = ACTIONS(2891), + [aux_sym_preproc_def_token1] = ACTIONS(2891), + [aux_sym_preproc_if_token1] = ACTIONS(2891), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2891), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2891), + [sym_preproc_directive] = ACTIONS(2891), + [anon_sym_LPAREN2] = ACTIONS(2893), + [anon_sym_BANG] = ACTIONS(2893), + [anon_sym_TILDE] = ACTIONS(2893), + [anon_sym_DASH] = ACTIONS(2891), + [anon_sym_PLUS] = ACTIONS(2891), + [anon_sym_STAR] = ACTIONS(2893), + [anon_sym_AMP_AMP] = ACTIONS(2893), + [anon_sym_AMP] = ACTIONS(2891), + [anon_sym_SEMI] = ACTIONS(2893), + [anon_sym_typedef] = ACTIONS(2891), + [anon_sym_extern] = ACTIONS(2891), + [anon_sym___attribute__] = ACTIONS(2891), + [anon_sym_COLON_COLON] = ACTIONS(2893), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2893), + [anon_sym___declspec] = ACTIONS(2891), + [anon_sym___based] = ACTIONS(2891), + [anon_sym___cdecl] = ACTIONS(2891), + [anon_sym___clrcall] = ACTIONS(2891), + [anon_sym___stdcall] = ACTIONS(2891), + [anon_sym___fastcall] = ACTIONS(2891), + [anon_sym___thiscall] = ACTIONS(2891), + [anon_sym___vectorcall] = ACTIONS(2891), + [anon_sym_LBRACE] = ACTIONS(2893), + [anon_sym_RBRACE] = ACTIONS(2893), + [anon_sym_LBRACK] = ACTIONS(2891), + [anon_sym_static] = ACTIONS(2891), + [anon_sym_register] = ACTIONS(2891), + [anon_sym_inline] = ACTIONS(2891), + [anon_sym_thread_local] = ACTIONS(2891), + [anon_sym_const] = ACTIONS(2891), + [anon_sym_volatile] = ACTIONS(2891), + [anon_sym_restrict] = ACTIONS(2891), + [anon_sym__Atomic] = ACTIONS(2891), + [anon_sym_mutable] = ACTIONS(2891), + [anon_sym_constexpr] = ACTIONS(2891), + [anon_sym_constinit] = ACTIONS(2891), + [anon_sym_consteval] = ACTIONS(2891), + [anon_sym_signed] = ACTIONS(2891), + [anon_sym_unsigned] = ACTIONS(2891), + [anon_sym_long] = ACTIONS(2891), + [anon_sym_short] = ACTIONS(2891), + [sym_primitive_type] = ACTIONS(2891), + [anon_sym_enum] = ACTIONS(2891), + [anon_sym_class] = ACTIONS(2891), + [anon_sym_struct] = ACTIONS(2891), + [anon_sym_union] = ACTIONS(2891), + [anon_sym_if] = ACTIONS(2891), + [anon_sym_switch] = ACTIONS(2891), + [anon_sym_case] = ACTIONS(2891), + [anon_sym_default] = ACTIONS(2891), + [anon_sym_while] = ACTIONS(2891), + [anon_sym_do] = ACTIONS(2891), + [anon_sym_for] = ACTIONS(2891), + [anon_sym_return] = ACTIONS(2891), + [anon_sym_break] = ACTIONS(2891), + [anon_sym_continue] = ACTIONS(2891), + [anon_sym_goto] = ACTIONS(2891), + [anon_sym_not] = ACTIONS(2891), + [anon_sym_compl] = ACTIONS(2891), + [anon_sym_DASH_DASH] = ACTIONS(2893), + [anon_sym_PLUS_PLUS] = ACTIONS(2893), + [anon_sym_sizeof] = ACTIONS(2891), + [sym_number_literal] = ACTIONS(2893), + [anon_sym_L_SQUOTE] = ACTIONS(2893), + [anon_sym_u_SQUOTE] = ACTIONS(2893), + [anon_sym_U_SQUOTE] = ACTIONS(2893), + [anon_sym_u8_SQUOTE] = ACTIONS(2893), + [anon_sym_SQUOTE] = ACTIONS(2893), + [anon_sym_L_DQUOTE] = ACTIONS(2893), + [anon_sym_u_DQUOTE] = ACTIONS(2893), + [anon_sym_U_DQUOTE] = ACTIONS(2893), + [anon_sym_u8_DQUOTE] = ACTIONS(2893), + [anon_sym_DQUOTE] = ACTIONS(2893), + [sym_true] = ACTIONS(2891), + [sym_false] = ACTIONS(2891), + [sym_null] = ACTIONS(2891), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2891), + [anon_sym_decltype] = ACTIONS(2891), + [anon_sym_virtual] = ACTIONS(2891), + [anon_sym_explicit] = ACTIONS(2891), + [anon_sym_typename] = ACTIONS(2891), + [anon_sym_template] = ACTIONS(2891), + [anon_sym_operator] = ACTIONS(2891), + [anon_sym_try] = ACTIONS(2891), + [anon_sym_delete] = ACTIONS(2891), + [anon_sym_throw] = ACTIONS(2891), + [anon_sym_namespace] = ACTIONS(2891), + [anon_sym_using] = ACTIONS(2891), + [anon_sym_static_assert] = ACTIONS(2891), + [anon_sym_concept] = ACTIONS(2891), + [anon_sym_co_return] = ACTIONS(2891), + [anon_sym_co_yield] = ACTIONS(2891), + [anon_sym_co_await] = ACTIONS(2891), + [anon_sym_new] = ACTIONS(2891), + [anon_sym_requires] = ACTIONS(2891), + [sym_this] = ACTIONS(2891), + [sym_nullptr] = ACTIONS(2891), + [sym_raw_string_literal] = ACTIONS(2893), }, - [1412] = { - [sym__expression] = STATE(2709), - [sym_conditional_expression] = STATE(2765), - [sym_assignment_expression] = STATE(2765), - [sym_pointer_expression] = STATE(2827), - [sym_unary_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_update_expression] = STATE(2765), - [sym_cast_expression] = STATE(2765), - [sym_sizeof_expression] = STATE(2765), - [sym_subscript_expression] = STATE(2827), - [sym_call_expression] = STATE(2827), - [sym_field_expression] = STATE(2827), - [sym_compound_literal_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2827), - [sym_char_literal] = STATE(2674), - [sym_concatenated_string] = STATE(2674), - [sym_string_literal] = STATE(2093), - [sym__class_name] = STATE(6297), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2765), - [sym_co_await_expression] = STATE(2765), - [sym_new_expression] = STATE(2765), - [sym_delete_expression] = STATE(2765), - [sym_requires_clause] = STATE(2765), - [sym_requires_expression] = STATE(2765), - [sym_lambda_expression] = STATE(2765), - [sym_lambda_capture_specifier] = STATE(4512), - [sym_fold_expression] = STATE(2765), - [sym_parameter_pack_expansion] = STATE(2765), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4648), - [sym_qualified_identifier] = STATE(2827), - [sym_qualified_type_identifier] = STATE(6297), - [sym_user_defined_literal] = STATE(2765), - [sym_identifier] = ACTIONS(2363), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3536), - [anon_sym_LPAREN2] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1417), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_COLON_COLON] = ACTIONS(1423), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(2369), - [anon_sym_DASH_DASH] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [anon_sym_sizeof] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(1439), - [anon_sym_L_SQUOTE] = ACTIONS(1441), - [anon_sym_u_SQUOTE] = ACTIONS(1441), - [anon_sym_U_SQUOTE] = ACTIONS(1441), - [anon_sym_u8_SQUOTE] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1441), - [anon_sym_L_DQUOTE] = ACTIONS(1443), - [anon_sym_u_DQUOTE] = ACTIONS(1443), - [anon_sym_U_DQUOTE] = ACTIONS(1443), - [anon_sym_u8_DQUOTE] = ACTIONS(1443), - [anon_sym_DQUOTE] = ACTIONS(1443), - [sym_true] = ACTIONS(1445), - [sym_false] = ACTIONS(1445), - [sym_null] = ACTIONS(1445), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_co_await] = ACTIONS(1451), - [anon_sym_new] = ACTIONS(1453), - [anon_sym_requires] = ACTIONS(1455), - [sym_this] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(1445), - [sym_raw_string_literal] = ACTIONS(1457), + [951] = { + [sym_identifier] = ACTIONS(2737), + [aux_sym_preproc_include_token1] = ACTIONS(2737), + [aux_sym_preproc_def_token1] = ACTIONS(2737), + [aux_sym_preproc_if_token1] = ACTIONS(2737), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2737), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2737), + [sym_preproc_directive] = ACTIONS(2737), + [anon_sym_LPAREN2] = ACTIONS(2739), + [anon_sym_BANG] = ACTIONS(2739), + [anon_sym_TILDE] = ACTIONS(2739), + [anon_sym_DASH] = ACTIONS(2737), + [anon_sym_PLUS] = ACTIONS(2737), + [anon_sym_STAR] = ACTIONS(2739), + [anon_sym_AMP_AMP] = ACTIONS(2739), + [anon_sym_AMP] = ACTIONS(2737), + [anon_sym_SEMI] = ACTIONS(2739), + [anon_sym_typedef] = ACTIONS(2737), + [anon_sym_extern] = ACTIONS(2737), + [anon_sym___attribute__] = ACTIONS(2737), + [anon_sym_COLON_COLON] = ACTIONS(2739), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2739), + [anon_sym___declspec] = ACTIONS(2737), + [anon_sym___based] = ACTIONS(2737), + [anon_sym___cdecl] = ACTIONS(2737), + [anon_sym___clrcall] = ACTIONS(2737), + [anon_sym___stdcall] = ACTIONS(2737), + [anon_sym___fastcall] = ACTIONS(2737), + [anon_sym___thiscall] = ACTIONS(2737), + [anon_sym___vectorcall] = ACTIONS(2737), + [anon_sym_LBRACE] = ACTIONS(2739), + [anon_sym_RBRACE] = ACTIONS(2739), + [anon_sym_LBRACK] = ACTIONS(2737), + [anon_sym_static] = ACTIONS(2737), + [anon_sym_register] = ACTIONS(2737), + [anon_sym_inline] = ACTIONS(2737), + [anon_sym_thread_local] = ACTIONS(2737), + [anon_sym_const] = ACTIONS(2737), + [anon_sym_volatile] = ACTIONS(2737), + [anon_sym_restrict] = ACTIONS(2737), + [anon_sym__Atomic] = ACTIONS(2737), + [anon_sym_mutable] = ACTIONS(2737), + [anon_sym_constexpr] = ACTIONS(2737), + [anon_sym_constinit] = ACTIONS(2737), + [anon_sym_consteval] = ACTIONS(2737), + [anon_sym_signed] = ACTIONS(2737), + [anon_sym_unsigned] = ACTIONS(2737), + [anon_sym_long] = ACTIONS(2737), + [anon_sym_short] = ACTIONS(2737), + [sym_primitive_type] = ACTIONS(2737), + [anon_sym_enum] = ACTIONS(2737), + [anon_sym_class] = ACTIONS(2737), + [anon_sym_struct] = ACTIONS(2737), + [anon_sym_union] = ACTIONS(2737), + [anon_sym_if] = ACTIONS(2737), + [anon_sym_switch] = ACTIONS(2737), + [anon_sym_case] = ACTIONS(2737), + [anon_sym_default] = ACTIONS(2737), + [anon_sym_while] = ACTIONS(2737), + [anon_sym_do] = ACTIONS(2737), + [anon_sym_for] = ACTIONS(2737), + [anon_sym_return] = ACTIONS(2737), + [anon_sym_break] = ACTIONS(2737), + [anon_sym_continue] = ACTIONS(2737), + [anon_sym_goto] = ACTIONS(2737), + [anon_sym_not] = ACTIONS(2737), + [anon_sym_compl] = ACTIONS(2737), + [anon_sym_DASH_DASH] = ACTIONS(2739), + [anon_sym_PLUS_PLUS] = ACTIONS(2739), + [anon_sym_sizeof] = ACTIONS(2737), + [sym_number_literal] = ACTIONS(2739), + [anon_sym_L_SQUOTE] = ACTIONS(2739), + [anon_sym_u_SQUOTE] = ACTIONS(2739), + [anon_sym_U_SQUOTE] = ACTIONS(2739), + [anon_sym_u8_SQUOTE] = ACTIONS(2739), + [anon_sym_SQUOTE] = ACTIONS(2739), + [anon_sym_L_DQUOTE] = ACTIONS(2739), + [anon_sym_u_DQUOTE] = ACTIONS(2739), + [anon_sym_U_DQUOTE] = ACTIONS(2739), + [anon_sym_u8_DQUOTE] = ACTIONS(2739), + [anon_sym_DQUOTE] = ACTIONS(2739), + [sym_true] = ACTIONS(2737), + [sym_false] = ACTIONS(2737), + [sym_null] = ACTIONS(2737), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2737), + [anon_sym_decltype] = ACTIONS(2737), + [anon_sym_virtual] = ACTIONS(2737), + [anon_sym_explicit] = ACTIONS(2737), + [anon_sym_typename] = ACTIONS(2737), + [anon_sym_template] = ACTIONS(2737), + [anon_sym_operator] = ACTIONS(2737), + [anon_sym_try] = ACTIONS(2737), + [anon_sym_delete] = ACTIONS(2737), + [anon_sym_throw] = ACTIONS(2737), + [anon_sym_namespace] = ACTIONS(2737), + [anon_sym_using] = ACTIONS(2737), + [anon_sym_static_assert] = ACTIONS(2737), + [anon_sym_concept] = ACTIONS(2737), + [anon_sym_co_return] = ACTIONS(2737), + [anon_sym_co_yield] = ACTIONS(2737), + [anon_sym_co_await] = ACTIONS(2737), + [anon_sym_new] = ACTIONS(2737), + [anon_sym_requires] = ACTIONS(2737), + [sym_this] = ACTIONS(2737), + [sym_nullptr] = ACTIONS(2737), + [sym_raw_string_literal] = ACTIONS(2739), }, - [1413] = { - [sym__expression] = STATE(2730), - [sym_conditional_expression] = STATE(2765), - [sym_assignment_expression] = STATE(2765), - [sym_pointer_expression] = STATE(2827), - [sym_unary_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_update_expression] = STATE(2765), - [sym_cast_expression] = STATE(2765), - [sym_sizeof_expression] = STATE(2765), - [sym_subscript_expression] = STATE(2827), - [sym_call_expression] = STATE(2827), - [sym_field_expression] = STATE(2827), - [sym_compound_literal_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2827), - [sym_char_literal] = STATE(2674), - [sym_concatenated_string] = STATE(2674), - [sym_string_literal] = STATE(2093), - [sym__class_name] = STATE(6297), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2765), - [sym_co_await_expression] = STATE(2765), - [sym_new_expression] = STATE(2765), - [sym_delete_expression] = STATE(2765), - [sym_requires_clause] = STATE(2765), - [sym_requires_expression] = STATE(2765), - [sym_lambda_expression] = STATE(2765), - [sym_lambda_capture_specifier] = STATE(4512), - [sym_fold_expression] = STATE(2765), - [sym_parameter_pack_expansion] = STATE(2765), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4648), - [sym_qualified_identifier] = STATE(2827), - [sym_qualified_type_identifier] = STATE(6297), - [sym_user_defined_literal] = STATE(2765), - [sym_identifier] = ACTIONS(2363), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3539), - [anon_sym_LPAREN2] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1417), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_COLON_COLON] = ACTIONS(1423), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(2369), - [anon_sym_DASH_DASH] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [anon_sym_sizeof] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(1439), - [anon_sym_L_SQUOTE] = ACTIONS(1441), - [anon_sym_u_SQUOTE] = ACTIONS(1441), - [anon_sym_U_SQUOTE] = ACTIONS(1441), - [anon_sym_u8_SQUOTE] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1441), - [anon_sym_L_DQUOTE] = ACTIONS(1443), - [anon_sym_u_DQUOTE] = ACTIONS(1443), - [anon_sym_U_DQUOTE] = ACTIONS(1443), - [anon_sym_u8_DQUOTE] = ACTIONS(1443), - [anon_sym_DQUOTE] = ACTIONS(1443), - [sym_true] = ACTIONS(1445), - [sym_false] = ACTIONS(1445), - [sym_null] = ACTIONS(1445), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_co_await] = ACTIONS(1451), - [anon_sym_new] = ACTIONS(1453), - [anon_sym_requires] = ACTIONS(1455), - [sym_this] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(1445), - [sym_raw_string_literal] = ACTIONS(1457), + [952] = { + [sym_identifier] = ACTIONS(2817), + [aux_sym_preproc_include_token1] = ACTIONS(2817), + [aux_sym_preproc_def_token1] = ACTIONS(2817), + [aux_sym_preproc_if_token1] = ACTIONS(2817), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2817), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2817), + [sym_preproc_directive] = ACTIONS(2817), + [anon_sym_LPAREN2] = ACTIONS(2819), + [anon_sym_BANG] = ACTIONS(2819), + [anon_sym_TILDE] = ACTIONS(2819), + [anon_sym_DASH] = ACTIONS(2817), + [anon_sym_PLUS] = ACTIONS(2817), + [anon_sym_STAR] = ACTIONS(2819), + [anon_sym_AMP_AMP] = ACTIONS(2819), + [anon_sym_AMP] = ACTIONS(2817), + [anon_sym_SEMI] = ACTIONS(2819), + [anon_sym_typedef] = ACTIONS(2817), + [anon_sym_extern] = ACTIONS(2817), + [anon_sym___attribute__] = ACTIONS(2817), + [anon_sym_COLON_COLON] = ACTIONS(2819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2819), + [anon_sym___declspec] = ACTIONS(2817), + [anon_sym___based] = ACTIONS(2817), + [anon_sym___cdecl] = ACTIONS(2817), + [anon_sym___clrcall] = ACTIONS(2817), + [anon_sym___stdcall] = ACTIONS(2817), + [anon_sym___fastcall] = ACTIONS(2817), + [anon_sym___thiscall] = ACTIONS(2817), + [anon_sym___vectorcall] = ACTIONS(2817), + [anon_sym_LBRACE] = ACTIONS(2819), + [anon_sym_RBRACE] = ACTIONS(2819), + [anon_sym_LBRACK] = ACTIONS(2817), + [anon_sym_static] = ACTIONS(2817), + [anon_sym_register] = ACTIONS(2817), + [anon_sym_inline] = ACTIONS(2817), + [anon_sym_thread_local] = ACTIONS(2817), + [anon_sym_const] = ACTIONS(2817), + [anon_sym_volatile] = ACTIONS(2817), + [anon_sym_restrict] = ACTIONS(2817), + [anon_sym__Atomic] = ACTIONS(2817), + [anon_sym_mutable] = ACTIONS(2817), + [anon_sym_constexpr] = ACTIONS(2817), + [anon_sym_constinit] = ACTIONS(2817), + [anon_sym_consteval] = ACTIONS(2817), + [anon_sym_signed] = ACTIONS(2817), + [anon_sym_unsigned] = ACTIONS(2817), + [anon_sym_long] = ACTIONS(2817), + [anon_sym_short] = ACTIONS(2817), + [sym_primitive_type] = ACTIONS(2817), + [anon_sym_enum] = ACTIONS(2817), + [anon_sym_class] = ACTIONS(2817), + [anon_sym_struct] = ACTIONS(2817), + [anon_sym_union] = ACTIONS(2817), + [anon_sym_if] = ACTIONS(2817), + [anon_sym_switch] = ACTIONS(2817), + [anon_sym_case] = ACTIONS(2817), + [anon_sym_default] = ACTIONS(2817), + [anon_sym_while] = ACTIONS(2817), + [anon_sym_do] = ACTIONS(2817), + [anon_sym_for] = ACTIONS(2817), + [anon_sym_return] = ACTIONS(2817), + [anon_sym_break] = ACTIONS(2817), + [anon_sym_continue] = ACTIONS(2817), + [anon_sym_goto] = ACTIONS(2817), + [anon_sym_not] = ACTIONS(2817), + [anon_sym_compl] = ACTIONS(2817), + [anon_sym_DASH_DASH] = ACTIONS(2819), + [anon_sym_PLUS_PLUS] = ACTIONS(2819), + [anon_sym_sizeof] = ACTIONS(2817), + [sym_number_literal] = ACTIONS(2819), + [anon_sym_L_SQUOTE] = ACTIONS(2819), + [anon_sym_u_SQUOTE] = ACTIONS(2819), + [anon_sym_U_SQUOTE] = ACTIONS(2819), + [anon_sym_u8_SQUOTE] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_L_DQUOTE] = ACTIONS(2819), + [anon_sym_u_DQUOTE] = ACTIONS(2819), + [anon_sym_U_DQUOTE] = ACTIONS(2819), + [anon_sym_u8_DQUOTE] = ACTIONS(2819), + [anon_sym_DQUOTE] = ACTIONS(2819), + [sym_true] = ACTIONS(2817), + [sym_false] = ACTIONS(2817), + [sym_null] = ACTIONS(2817), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2817), + [anon_sym_decltype] = ACTIONS(2817), + [anon_sym_virtual] = ACTIONS(2817), + [anon_sym_explicit] = ACTIONS(2817), + [anon_sym_typename] = ACTIONS(2817), + [anon_sym_template] = ACTIONS(2817), + [anon_sym_operator] = ACTIONS(2817), + [anon_sym_try] = ACTIONS(2817), + [anon_sym_delete] = ACTIONS(2817), + [anon_sym_throw] = ACTIONS(2817), + [anon_sym_namespace] = ACTIONS(2817), + [anon_sym_using] = ACTIONS(2817), + [anon_sym_static_assert] = ACTIONS(2817), + [anon_sym_concept] = ACTIONS(2817), + [anon_sym_co_return] = ACTIONS(2817), + [anon_sym_co_yield] = ACTIONS(2817), + [anon_sym_co_await] = ACTIONS(2817), + [anon_sym_new] = ACTIONS(2817), + [anon_sym_requires] = ACTIONS(2817), + [sym_this] = ACTIONS(2817), + [sym_nullptr] = ACTIONS(2817), + [sym_raw_string_literal] = ACTIONS(2819), }, - [1414] = { - [sym__expression] = STATE(2730), - [sym_conditional_expression] = STATE(2765), - [sym_assignment_expression] = STATE(2765), - [sym_pointer_expression] = STATE(2827), - [sym_unary_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_update_expression] = STATE(2765), - [sym_cast_expression] = STATE(2765), - [sym_sizeof_expression] = STATE(2765), - [sym_subscript_expression] = STATE(2827), - [sym_call_expression] = STATE(2827), - [sym_field_expression] = STATE(2827), - [sym_compound_literal_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2827), - [sym_char_literal] = STATE(2674), - [sym_concatenated_string] = STATE(2674), - [sym_string_literal] = STATE(2093), - [sym__class_name] = STATE(6297), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2765), - [sym_co_await_expression] = STATE(2765), - [sym_new_expression] = STATE(2765), - [sym_delete_expression] = STATE(2765), - [sym_requires_clause] = STATE(2765), - [sym_requires_expression] = STATE(2765), - [sym_lambda_expression] = STATE(2765), - [sym_lambda_capture_specifier] = STATE(4512), - [sym_fold_expression] = STATE(2765), - [sym_parameter_pack_expansion] = STATE(2765), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4648), - [sym_qualified_identifier] = STATE(2827), - [sym_qualified_type_identifier] = STATE(6297), - [sym_user_defined_literal] = STATE(2765), - [sym_identifier] = ACTIONS(2363), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3542), - [anon_sym_LPAREN2] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1417), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_COLON_COLON] = ACTIONS(1423), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(2369), - [anon_sym_DASH_DASH] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [anon_sym_sizeof] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(1439), - [anon_sym_L_SQUOTE] = ACTIONS(1441), - [anon_sym_u_SQUOTE] = ACTIONS(1441), - [anon_sym_U_SQUOTE] = ACTIONS(1441), - [anon_sym_u8_SQUOTE] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1441), - [anon_sym_L_DQUOTE] = ACTIONS(1443), - [anon_sym_u_DQUOTE] = ACTIONS(1443), - [anon_sym_U_DQUOTE] = ACTIONS(1443), - [anon_sym_u8_DQUOTE] = ACTIONS(1443), - [anon_sym_DQUOTE] = ACTIONS(1443), - [sym_true] = ACTIONS(1445), - [sym_false] = ACTIONS(1445), - [sym_null] = ACTIONS(1445), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_co_await] = ACTIONS(1451), - [anon_sym_new] = ACTIONS(1453), - [anon_sym_requires] = ACTIONS(1455), - [sym_this] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(1445), - [sym_raw_string_literal] = ACTIONS(1457), + [953] = { + [sym_identifier] = ACTIONS(2813), + [aux_sym_preproc_include_token1] = ACTIONS(2813), + [aux_sym_preproc_def_token1] = ACTIONS(2813), + [aux_sym_preproc_if_token1] = ACTIONS(2813), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2813), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2813), + [sym_preproc_directive] = ACTIONS(2813), + [anon_sym_LPAREN2] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(2815), + [anon_sym_TILDE] = ACTIONS(2815), + [anon_sym_DASH] = ACTIONS(2813), + [anon_sym_PLUS] = ACTIONS(2813), + [anon_sym_STAR] = ACTIONS(2815), + [anon_sym_AMP_AMP] = ACTIONS(2815), + [anon_sym_AMP] = ACTIONS(2813), + [anon_sym_SEMI] = ACTIONS(2815), + [anon_sym_typedef] = ACTIONS(2813), + [anon_sym_extern] = ACTIONS(2813), + [anon_sym___attribute__] = ACTIONS(2813), + [anon_sym_COLON_COLON] = ACTIONS(2815), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2815), + [anon_sym___declspec] = ACTIONS(2813), + [anon_sym___based] = ACTIONS(2813), + [anon_sym___cdecl] = ACTIONS(2813), + [anon_sym___clrcall] = ACTIONS(2813), + [anon_sym___stdcall] = ACTIONS(2813), + [anon_sym___fastcall] = ACTIONS(2813), + [anon_sym___thiscall] = ACTIONS(2813), + [anon_sym___vectorcall] = ACTIONS(2813), + [anon_sym_LBRACE] = ACTIONS(2815), + [anon_sym_RBRACE] = ACTIONS(2815), + [anon_sym_LBRACK] = ACTIONS(2813), + [anon_sym_static] = ACTIONS(2813), + [anon_sym_register] = ACTIONS(2813), + [anon_sym_inline] = ACTIONS(2813), + [anon_sym_thread_local] = ACTIONS(2813), + [anon_sym_const] = ACTIONS(2813), + [anon_sym_volatile] = ACTIONS(2813), + [anon_sym_restrict] = ACTIONS(2813), + [anon_sym__Atomic] = ACTIONS(2813), + [anon_sym_mutable] = ACTIONS(2813), + [anon_sym_constexpr] = ACTIONS(2813), + [anon_sym_constinit] = ACTIONS(2813), + [anon_sym_consteval] = ACTIONS(2813), + [anon_sym_signed] = ACTIONS(2813), + [anon_sym_unsigned] = ACTIONS(2813), + [anon_sym_long] = ACTIONS(2813), + [anon_sym_short] = ACTIONS(2813), + [sym_primitive_type] = ACTIONS(2813), + [anon_sym_enum] = ACTIONS(2813), + [anon_sym_class] = ACTIONS(2813), + [anon_sym_struct] = ACTIONS(2813), + [anon_sym_union] = ACTIONS(2813), + [anon_sym_if] = ACTIONS(2813), + [anon_sym_switch] = ACTIONS(2813), + [anon_sym_case] = ACTIONS(2813), + [anon_sym_default] = ACTIONS(2813), + [anon_sym_while] = ACTIONS(2813), + [anon_sym_do] = ACTIONS(2813), + [anon_sym_for] = ACTIONS(2813), + [anon_sym_return] = ACTIONS(2813), + [anon_sym_break] = ACTIONS(2813), + [anon_sym_continue] = ACTIONS(2813), + [anon_sym_goto] = ACTIONS(2813), + [anon_sym_not] = ACTIONS(2813), + [anon_sym_compl] = ACTIONS(2813), + [anon_sym_DASH_DASH] = ACTIONS(2815), + [anon_sym_PLUS_PLUS] = ACTIONS(2815), + [anon_sym_sizeof] = ACTIONS(2813), + [sym_number_literal] = ACTIONS(2815), + [anon_sym_L_SQUOTE] = ACTIONS(2815), + [anon_sym_u_SQUOTE] = ACTIONS(2815), + [anon_sym_U_SQUOTE] = ACTIONS(2815), + [anon_sym_u8_SQUOTE] = ACTIONS(2815), + [anon_sym_SQUOTE] = ACTIONS(2815), + [anon_sym_L_DQUOTE] = ACTIONS(2815), + [anon_sym_u_DQUOTE] = ACTIONS(2815), + [anon_sym_U_DQUOTE] = ACTIONS(2815), + [anon_sym_u8_DQUOTE] = ACTIONS(2815), + [anon_sym_DQUOTE] = ACTIONS(2815), + [sym_true] = ACTIONS(2813), + [sym_false] = ACTIONS(2813), + [sym_null] = ACTIONS(2813), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2813), + [anon_sym_decltype] = ACTIONS(2813), + [anon_sym_virtual] = ACTIONS(2813), + [anon_sym_explicit] = ACTIONS(2813), + [anon_sym_typename] = ACTIONS(2813), + [anon_sym_template] = ACTIONS(2813), + [anon_sym_operator] = ACTIONS(2813), + [anon_sym_try] = ACTIONS(2813), + [anon_sym_delete] = ACTIONS(2813), + [anon_sym_throw] = ACTIONS(2813), + [anon_sym_namespace] = ACTIONS(2813), + [anon_sym_using] = ACTIONS(2813), + [anon_sym_static_assert] = ACTIONS(2813), + [anon_sym_concept] = ACTIONS(2813), + [anon_sym_co_return] = ACTIONS(2813), + [anon_sym_co_yield] = ACTIONS(2813), + [anon_sym_co_await] = ACTIONS(2813), + [anon_sym_new] = ACTIONS(2813), + [anon_sym_requires] = ACTIONS(2813), + [sym_this] = ACTIONS(2813), + [sym_nullptr] = ACTIONS(2813), + [sym_raw_string_literal] = ACTIONS(2815), }, - [1415] = { - [sym__expression] = STATE(2730), - [sym_conditional_expression] = STATE(2765), - [sym_assignment_expression] = STATE(2765), - [sym_pointer_expression] = STATE(2827), - [sym_unary_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_update_expression] = STATE(2765), - [sym_cast_expression] = STATE(2765), - [sym_sizeof_expression] = STATE(2765), - [sym_subscript_expression] = STATE(2827), - [sym_call_expression] = STATE(2827), - [sym_field_expression] = STATE(2827), - [sym_compound_literal_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2827), - [sym_char_literal] = STATE(2674), - [sym_concatenated_string] = STATE(2674), - [sym_string_literal] = STATE(2093), - [sym__class_name] = STATE(6297), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2765), - [sym_co_await_expression] = STATE(2765), - [sym_new_expression] = STATE(2765), - [sym_delete_expression] = STATE(2765), - [sym_requires_clause] = STATE(2765), - [sym_requires_expression] = STATE(2765), - [sym_lambda_expression] = STATE(2765), - [sym_lambda_capture_specifier] = STATE(4512), - [sym_fold_expression] = STATE(2765), - [sym_parameter_pack_expansion] = STATE(2765), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4648), - [sym_qualified_identifier] = STATE(2827), - [sym_qualified_type_identifier] = STATE(6297), - [sym_user_defined_literal] = STATE(2765), - [sym_identifier] = ACTIONS(2363), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3545), - [anon_sym_LPAREN2] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1417), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_COLON_COLON] = ACTIONS(1423), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(2369), - [anon_sym_DASH_DASH] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [anon_sym_sizeof] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(1439), - [anon_sym_L_SQUOTE] = ACTIONS(1441), - [anon_sym_u_SQUOTE] = ACTIONS(1441), - [anon_sym_U_SQUOTE] = ACTIONS(1441), - [anon_sym_u8_SQUOTE] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1441), - [anon_sym_L_DQUOTE] = ACTIONS(1443), - [anon_sym_u_DQUOTE] = ACTIONS(1443), - [anon_sym_U_DQUOTE] = ACTIONS(1443), - [anon_sym_u8_DQUOTE] = ACTIONS(1443), - [anon_sym_DQUOTE] = ACTIONS(1443), - [sym_true] = ACTIONS(1445), - [sym_false] = ACTIONS(1445), - [sym_null] = ACTIONS(1445), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_co_await] = ACTIONS(1451), - [anon_sym_new] = ACTIONS(1453), - [anon_sym_requires] = ACTIONS(1455), - [sym_this] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(1445), - [sym_raw_string_literal] = ACTIONS(1457), + [954] = { + [sym_identifier] = ACTIONS(2659), + [aux_sym_preproc_include_token1] = ACTIONS(2659), + [aux_sym_preproc_def_token1] = ACTIONS(2659), + [aux_sym_preproc_if_token1] = ACTIONS(2659), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2659), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2659), + [sym_preproc_directive] = ACTIONS(2659), + [anon_sym_LPAREN2] = ACTIONS(2661), + [anon_sym_BANG] = ACTIONS(2661), + [anon_sym_TILDE] = ACTIONS(2661), + [anon_sym_DASH] = ACTIONS(2659), + [anon_sym_PLUS] = ACTIONS(2659), + [anon_sym_STAR] = ACTIONS(2661), + [anon_sym_AMP_AMP] = ACTIONS(2661), + [anon_sym_AMP] = ACTIONS(2659), + [anon_sym_SEMI] = ACTIONS(2661), + [anon_sym_typedef] = ACTIONS(2659), + [anon_sym_extern] = ACTIONS(2659), + [anon_sym___attribute__] = ACTIONS(2659), + [anon_sym_COLON_COLON] = ACTIONS(2661), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2661), + [anon_sym___declspec] = ACTIONS(2659), + [anon_sym___based] = ACTIONS(2659), + [anon_sym___cdecl] = ACTIONS(2659), + [anon_sym___clrcall] = ACTIONS(2659), + [anon_sym___stdcall] = ACTIONS(2659), + [anon_sym___fastcall] = ACTIONS(2659), + [anon_sym___thiscall] = ACTIONS(2659), + [anon_sym___vectorcall] = ACTIONS(2659), + [anon_sym_LBRACE] = ACTIONS(2661), + [anon_sym_RBRACE] = ACTIONS(2661), + [anon_sym_LBRACK] = ACTIONS(2659), + [anon_sym_static] = ACTIONS(2659), + [anon_sym_register] = ACTIONS(2659), + [anon_sym_inline] = ACTIONS(2659), + [anon_sym_thread_local] = ACTIONS(2659), + [anon_sym_const] = ACTIONS(2659), + [anon_sym_volatile] = ACTIONS(2659), + [anon_sym_restrict] = ACTIONS(2659), + [anon_sym__Atomic] = ACTIONS(2659), + [anon_sym_mutable] = ACTIONS(2659), + [anon_sym_constexpr] = ACTIONS(2659), + [anon_sym_constinit] = ACTIONS(2659), + [anon_sym_consteval] = ACTIONS(2659), + [anon_sym_signed] = ACTIONS(2659), + [anon_sym_unsigned] = ACTIONS(2659), + [anon_sym_long] = ACTIONS(2659), + [anon_sym_short] = ACTIONS(2659), + [sym_primitive_type] = ACTIONS(2659), + [anon_sym_enum] = ACTIONS(2659), + [anon_sym_class] = ACTIONS(2659), + [anon_sym_struct] = ACTIONS(2659), + [anon_sym_union] = ACTIONS(2659), + [anon_sym_if] = ACTIONS(2659), + [anon_sym_switch] = ACTIONS(2659), + [anon_sym_case] = ACTIONS(2659), + [anon_sym_default] = ACTIONS(2659), + [anon_sym_while] = ACTIONS(2659), + [anon_sym_do] = ACTIONS(2659), + [anon_sym_for] = ACTIONS(2659), + [anon_sym_return] = ACTIONS(2659), + [anon_sym_break] = ACTIONS(2659), + [anon_sym_continue] = ACTIONS(2659), + [anon_sym_goto] = ACTIONS(2659), + [anon_sym_not] = ACTIONS(2659), + [anon_sym_compl] = ACTIONS(2659), + [anon_sym_DASH_DASH] = ACTIONS(2661), + [anon_sym_PLUS_PLUS] = ACTIONS(2661), + [anon_sym_sizeof] = ACTIONS(2659), + [sym_number_literal] = ACTIONS(2661), + [anon_sym_L_SQUOTE] = ACTIONS(2661), + [anon_sym_u_SQUOTE] = ACTIONS(2661), + [anon_sym_U_SQUOTE] = ACTIONS(2661), + [anon_sym_u8_SQUOTE] = ACTIONS(2661), + [anon_sym_SQUOTE] = ACTIONS(2661), + [anon_sym_L_DQUOTE] = ACTIONS(2661), + [anon_sym_u_DQUOTE] = ACTIONS(2661), + [anon_sym_U_DQUOTE] = ACTIONS(2661), + [anon_sym_u8_DQUOTE] = ACTIONS(2661), + [anon_sym_DQUOTE] = ACTIONS(2661), + [sym_true] = ACTIONS(2659), + [sym_false] = ACTIONS(2659), + [sym_null] = ACTIONS(2659), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2659), + [anon_sym_decltype] = ACTIONS(2659), + [anon_sym_virtual] = ACTIONS(2659), + [anon_sym_explicit] = ACTIONS(2659), + [anon_sym_typename] = ACTIONS(2659), + [anon_sym_template] = ACTIONS(2659), + [anon_sym_operator] = ACTIONS(2659), + [anon_sym_try] = ACTIONS(2659), + [anon_sym_delete] = ACTIONS(2659), + [anon_sym_throw] = ACTIONS(2659), + [anon_sym_namespace] = ACTIONS(2659), + [anon_sym_using] = ACTIONS(2659), + [anon_sym_static_assert] = ACTIONS(2659), + [anon_sym_concept] = ACTIONS(2659), + [anon_sym_co_return] = ACTIONS(2659), + [anon_sym_co_yield] = ACTIONS(2659), + [anon_sym_co_await] = ACTIONS(2659), + [anon_sym_new] = ACTIONS(2659), + [anon_sym_requires] = ACTIONS(2659), + [sym_this] = ACTIONS(2659), + [sym_nullptr] = ACTIONS(2659), + [sym_raw_string_literal] = ACTIONS(2661), }, - [1416] = { - [sym__expression] = STATE(2735), - [sym_conditional_expression] = STATE(2765), - [sym_assignment_expression] = STATE(2765), - [sym_pointer_expression] = STATE(2827), - [sym_unary_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_update_expression] = STATE(2765), - [sym_cast_expression] = STATE(2765), - [sym_sizeof_expression] = STATE(2765), - [sym_subscript_expression] = STATE(2827), - [sym_call_expression] = STATE(2827), - [sym_field_expression] = STATE(2827), - [sym_compound_literal_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2827), - [sym_char_literal] = STATE(2674), - [sym_concatenated_string] = STATE(2674), - [sym_string_literal] = STATE(2093), - [sym__class_name] = STATE(6297), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2765), - [sym_co_await_expression] = STATE(2765), - [sym_new_expression] = STATE(2765), - [sym_delete_expression] = STATE(2765), - [sym_requires_clause] = STATE(2765), - [sym_requires_expression] = STATE(2765), - [sym_lambda_expression] = STATE(2765), - [sym_lambda_capture_specifier] = STATE(4512), - [sym_fold_expression] = STATE(2765), - [sym_parameter_pack_expansion] = STATE(2765), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4648), - [sym_qualified_identifier] = STATE(2827), - [sym_qualified_type_identifier] = STATE(6297), - [sym_user_defined_literal] = STATE(2765), - [sym_identifier] = ACTIONS(2363), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3548), - [anon_sym_LPAREN2] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1417), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_COLON_COLON] = ACTIONS(1423), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(2369), - [anon_sym_DASH_DASH] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [anon_sym_sizeof] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(1439), - [anon_sym_L_SQUOTE] = ACTIONS(1441), - [anon_sym_u_SQUOTE] = ACTIONS(1441), - [anon_sym_U_SQUOTE] = ACTIONS(1441), - [anon_sym_u8_SQUOTE] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1441), - [anon_sym_L_DQUOTE] = ACTIONS(1443), - [anon_sym_u_DQUOTE] = ACTIONS(1443), - [anon_sym_U_DQUOTE] = ACTIONS(1443), - [anon_sym_u8_DQUOTE] = ACTIONS(1443), - [anon_sym_DQUOTE] = ACTIONS(1443), - [sym_true] = ACTIONS(1445), - [sym_false] = ACTIONS(1445), - [sym_null] = ACTIONS(1445), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_co_await] = ACTIONS(1451), - [anon_sym_new] = ACTIONS(1453), - [anon_sym_requires] = ACTIONS(1455), - [sym_this] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(1445), - [sym_raw_string_literal] = ACTIONS(1457), + [955] = { + [sym_identifier] = ACTIONS(2809), + [aux_sym_preproc_include_token1] = ACTIONS(2809), + [aux_sym_preproc_def_token1] = ACTIONS(2809), + [aux_sym_preproc_if_token1] = ACTIONS(2809), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2809), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2809), + [sym_preproc_directive] = ACTIONS(2809), + [anon_sym_LPAREN2] = ACTIONS(2811), + [anon_sym_BANG] = ACTIONS(2811), + [anon_sym_TILDE] = ACTIONS(2811), + [anon_sym_DASH] = ACTIONS(2809), + [anon_sym_PLUS] = ACTIONS(2809), + [anon_sym_STAR] = ACTIONS(2811), + [anon_sym_AMP_AMP] = ACTIONS(2811), + [anon_sym_AMP] = ACTIONS(2809), + [anon_sym_SEMI] = ACTIONS(2811), + [anon_sym_typedef] = ACTIONS(2809), + [anon_sym_extern] = ACTIONS(2809), + [anon_sym___attribute__] = ACTIONS(2809), + [anon_sym_COLON_COLON] = ACTIONS(2811), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2811), + [anon_sym___declspec] = ACTIONS(2809), + [anon_sym___based] = ACTIONS(2809), + [anon_sym___cdecl] = ACTIONS(2809), + [anon_sym___clrcall] = ACTIONS(2809), + [anon_sym___stdcall] = ACTIONS(2809), + [anon_sym___fastcall] = ACTIONS(2809), + [anon_sym___thiscall] = ACTIONS(2809), + [anon_sym___vectorcall] = ACTIONS(2809), + [anon_sym_LBRACE] = ACTIONS(2811), + [anon_sym_RBRACE] = ACTIONS(2811), + [anon_sym_LBRACK] = ACTIONS(2809), + [anon_sym_static] = ACTIONS(2809), + [anon_sym_register] = ACTIONS(2809), + [anon_sym_inline] = ACTIONS(2809), + [anon_sym_thread_local] = ACTIONS(2809), + [anon_sym_const] = ACTIONS(2809), + [anon_sym_volatile] = ACTIONS(2809), + [anon_sym_restrict] = ACTIONS(2809), + [anon_sym__Atomic] = ACTIONS(2809), + [anon_sym_mutable] = ACTIONS(2809), + [anon_sym_constexpr] = ACTIONS(2809), + [anon_sym_constinit] = ACTIONS(2809), + [anon_sym_consteval] = ACTIONS(2809), + [anon_sym_signed] = ACTIONS(2809), + [anon_sym_unsigned] = ACTIONS(2809), + [anon_sym_long] = ACTIONS(2809), + [anon_sym_short] = ACTIONS(2809), + [sym_primitive_type] = ACTIONS(2809), + [anon_sym_enum] = ACTIONS(2809), + [anon_sym_class] = ACTIONS(2809), + [anon_sym_struct] = ACTIONS(2809), + [anon_sym_union] = ACTIONS(2809), + [anon_sym_if] = ACTIONS(2809), + [anon_sym_switch] = ACTIONS(2809), + [anon_sym_case] = ACTIONS(2809), + [anon_sym_default] = ACTIONS(2809), + [anon_sym_while] = ACTIONS(2809), + [anon_sym_do] = ACTIONS(2809), + [anon_sym_for] = ACTIONS(2809), + [anon_sym_return] = ACTIONS(2809), + [anon_sym_break] = ACTIONS(2809), + [anon_sym_continue] = ACTIONS(2809), + [anon_sym_goto] = ACTIONS(2809), + [anon_sym_not] = ACTIONS(2809), + [anon_sym_compl] = ACTIONS(2809), + [anon_sym_DASH_DASH] = ACTIONS(2811), + [anon_sym_PLUS_PLUS] = ACTIONS(2811), + [anon_sym_sizeof] = ACTIONS(2809), + [sym_number_literal] = ACTIONS(2811), + [anon_sym_L_SQUOTE] = ACTIONS(2811), + [anon_sym_u_SQUOTE] = ACTIONS(2811), + [anon_sym_U_SQUOTE] = ACTIONS(2811), + [anon_sym_u8_SQUOTE] = ACTIONS(2811), + [anon_sym_SQUOTE] = ACTIONS(2811), + [anon_sym_L_DQUOTE] = ACTIONS(2811), + [anon_sym_u_DQUOTE] = ACTIONS(2811), + [anon_sym_U_DQUOTE] = ACTIONS(2811), + [anon_sym_u8_DQUOTE] = ACTIONS(2811), + [anon_sym_DQUOTE] = ACTIONS(2811), + [sym_true] = ACTIONS(2809), + [sym_false] = ACTIONS(2809), + [sym_null] = ACTIONS(2809), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2809), + [anon_sym_decltype] = ACTIONS(2809), + [anon_sym_virtual] = ACTIONS(2809), + [anon_sym_explicit] = ACTIONS(2809), + [anon_sym_typename] = ACTIONS(2809), + [anon_sym_template] = ACTIONS(2809), + [anon_sym_operator] = ACTIONS(2809), + [anon_sym_try] = ACTIONS(2809), + [anon_sym_delete] = ACTIONS(2809), + [anon_sym_throw] = ACTIONS(2809), + [anon_sym_namespace] = ACTIONS(2809), + [anon_sym_using] = ACTIONS(2809), + [anon_sym_static_assert] = ACTIONS(2809), + [anon_sym_concept] = ACTIONS(2809), + [anon_sym_co_return] = ACTIONS(2809), + [anon_sym_co_yield] = ACTIONS(2809), + [anon_sym_co_await] = ACTIONS(2809), + [anon_sym_new] = ACTIONS(2809), + [anon_sym_requires] = ACTIONS(2809), + [sym_this] = ACTIONS(2809), + [sym_nullptr] = ACTIONS(2809), + [sym_raw_string_literal] = ACTIONS(2811), }, - [1417] = { - [sym__expression] = STATE(2735), - [sym_conditional_expression] = STATE(2765), - [sym_assignment_expression] = STATE(2765), - [sym_pointer_expression] = STATE(2827), - [sym_unary_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_update_expression] = STATE(2765), - [sym_cast_expression] = STATE(2765), - [sym_sizeof_expression] = STATE(2765), - [sym_subscript_expression] = STATE(2827), - [sym_call_expression] = STATE(2827), - [sym_field_expression] = STATE(2827), - [sym_compound_literal_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2827), - [sym_char_literal] = STATE(2674), - [sym_concatenated_string] = STATE(2674), - [sym_string_literal] = STATE(2093), - [sym__class_name] = STATE(6297), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2765), - [sym_co_await_expression] = STATE(2765), - [sym_new_expression] = STATE(2765), - [sym_delete_expression] = STATE(2765), - [sym_requires_clause] = STATE(2765), - [sym_requires_expression] = STATE(2765), - [sym_lambda_expression] = STATE(2765), - [sym_lambda_capture_specifier] = STATE(4512), - [sym_fold_expression] = STATE(2765), - [sym_parameter_pack_expansion] = STATE(2765), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4648), - [sym_qualified_identifier] = STATE(2827), - [sym_qualified_type_identifier] = STATE(6297), - [sym_user_defined_literal] = STATE(2765), - [sym_identifier] = ACTIONS(2363), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3551), - [anon_sym_LPAREN2] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1417), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_COLON_COLON] = ACTIONS(1423), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(2369), - [anon_sym_DASH_DASH] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [anon_sym_sizeof] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(1439), - [anon_sym_L_SQUOTE] = ACTIONS(1441), - [anon_sym_u_SQUOTE] = ACTIONS(1441), - [anon_sym_U_SQUOTE] = ACTIONS(1441), - [anon_sym_u8_SQUOTE] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1441), - [anon_sym_L_DQUOTE] = ACTIONS(1443), - [anon_sym_u_DQUOTE] = ACTIONS(1443), - [anon_sym_U_DQUOTE] = ACTIONS(1443), - [anon_sym_u8_DQUOTE] = ACTIONS(1443), - [anon_sym_DQUOTE] = ACTIONS(1443), - [sym_true] = ACTIONS(1445), - [sym_false] = ACTIONS(1445), - [sym_null] = ACTIONS(1445), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_co_await] = ACTIONS(1451), - [anon_sym_new] = ACTIONS(1453), - [anon_sym_requires] = ACTIONS(1455), - [sym_this] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(1445), - [sym_raw_string_literal] = ACTIONS(1457), + [956] = { + [ts_builtin_sym_end] = ACTIONS(2921), + [sym_identifier] = ACTIONS(2919), + [aux_sym_preproc_include_token1] = ACTIONS(2919), + [aux_sym_preproc_def_token1] = ACTIONS(2919), + [aux_sym_preproc_if_token1] = ACTIONS(2919), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2919), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2919), + [sym_preproc_directive] = ACTIONS(2919), + [anon_sym_LPAREN2] = ACTIONS(2921), + [anon_sym_BANG] = ACTIONS(2921), + [anon_sym_TILDE] = ACTIONS(2921), + [anon_sym_DASH] = ACTIONS(2919), + [anon_sym_PLUS] = ACTIONS(2919), + [anon_sym_STAR] = ACTIONS(2921), + [anon_sym_AMP_AMP] = ACTIONS(2921), + [anon_sym_AMP] = ACTIONS(2919), + [anon_sym_SEMI] = ACTIONS(2921), + [anon_sym_typedef] = ACTIONS(2919), + [anon_sym_extern] = ACTIONS(2919), + [anon_sym___attribute__] = ACTIONS(2919), + [anon_sym_COLON_COLON] = ACTIONS(2921), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2921), + [anon_sym___declspec] = ACTIONS(2919), + [anon_sym___based] = ACTIONS(2919), + [anon_sym___cdecl] = ACTIONS(2919), + [anon_sym___clrcall] = ACTIONS(2919), + [anon_sym___stdcall] = ACTIONS(2919), + [anon_sym___fastcall] = ACTIONS(2919), + [anon_sym___thiscall] = ACTIONS(2919), + [anon_sym___vectorcall] = ACTIONS(2919), + [anon_sym_LBRACE] = ACTIONS(2921), + [anon_sym_LBRACK] = ACTIONS(2919), + [anon_sym_static] = ACTIONS(2919), + [anon_sym_register] = ACTIONS(2919), + [anon_sym_inline] = ACTIONS(2919), + [anon_sym_thread_local] = ACTIONS(2919), + [anon_sym_const] = ACTIONS(2919), + [anon_sym_volatile] = ACTIONS(2919), + [anon_sym_restrict] = ACTIONS(2919), + [anon_sym__Atomic] = ACTIONS(2919), + [anon_sym_mutable] = ACTIONS(2919), + [anon_sym_constexpr] = ACTIONS(2919), + [anon_sym_constinit] = ACTIONS(2919), + [anon_sym_consteval] = ACTIONS(2919), + [anon_sym_signed] = ACTIONS(2919), + [anon_sym_unsigned] = ACTIONS(2919), + [anon_sym_long] = ACTIONS(2919), + [anon_sym_short] = ACTIONS(2919), + [sym_primitive_type] = ACTIONS(2919), + [anon_sym_enum] = ACTIONS(2919), + [anon_sym_class] = ACTIONS(2919), + [anon_sym_struct] = ACTIONS(2919), + [anon_sym_union] = ACTIONS(2919), + [anon_sym_if] = ACTIONS(2919), + [anon_sym_switch] = ACTIONS(2919), + [anon_sym_case] = ACTIONS(2919), + [anon_sym_default] = ACTIONS(2919), + [anon_sym_while] = ACTIONS(2919), + [anon_sym_do] = ACTIONS(2919), + [anon_sym_for] = ACTIONS(2919), + [anon_sym_return] = ACTIONS(2919), + [anon_sym_break] = ACTIONS(2919), + [anon_sym_continue] = ACTIONS(2919), + [anon_sym_goto] = ACTIONS(2919), + [anon_sym_not] = ACTIONS(2919), + [anon_sym_compl] = ACTIONS(2919), + [anon_sym_DASH_DASH] = ACTIONS(2921), + [anon_sym_PLUS_PLUS] = ACTIONS(2921), + [anon_sym_sizeof] = ACTIONS(2919), + [sym_number_literal] = ACTIONS(2921), + [anon_sym_L_SQUOTE] = ACTIONS(2921), + [anon_sym_u_SQUOTE] = ACTIONS(2921), + [anon_sym_U_SQUOTE] = ACTIONS(2921), + [anon_sym_u8_SQUOTE] = ACTIONS(2921), + [anon_sym_SQUOTE] = ACTIONS(2921), + [anon_sym_L_DQUOTE] = ACTIONS(2921), + [anon_sym_u_DQUOTE] = ACTIONS(2921), + [anon_sym_U_DQUOTE] = ACTIONS(2921), + [anon_sym_u8_DQUOTE] = ACTIONS(2921), + [anon_sym_DQUOTE] = ACTIONS(2921), + [sym_true] = ACTIONS(2919), + [sym_false] = ACTIONS(2919), + [sym_null] = ACTIONS(2919), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2919), + [anon_sym_decltype] = ACTIONS(2919), + [anon_sym_virtual] = ACTIONS(2919), + [anon_sym_explicit] = ACTIONS(2919), + [anon_sym_typename] = ACTIONS(2919), + [anon_sym_template] = ACTIONS(2919), + [anon_sym_operator] = ACTIONS(2919), + [anon_sym_try] = ACTIONS(2919), + [anon_sym_delete] = ACTIONS(2919), + [anon_sym_throw] = ACTIONS(2919), + [anon_sym_namespace] = ACTIONS(2919), + [anon_sym_using] = ACTIONS(2919), + [anon_sym_static_assert] = ACTIONS(2919), + [anon_sym_concept] = ACTIONS(2919), + [anon_sym_co_return] = ACTIONS(2919), + [anon_sym_co_yield] = ACTIONS(2919), + [anon_sym_co_await] = ACTIONS(2919), + [anon_sym_new] = ACTIONS(2919), + [anon_sym_requires] = ACTIONS(2919), + [sym_this] = ACTIONS(2919), + [sym_nullptr] = ACTIONS(2919), + [sym_raw_string_literal] = ACTIONS(2921), }, - [1418] = { - [sym__expression] = STATE(2711), - [sym_conditional_expression] = STATE(2765), - [sym_assignment_expression] = STATE(2765), - [sym_pointer_expression] = STATE(2827), - [sym_unary_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_update_expression] = STATE(2765), - [sym_cast_expression] = STATE(2765), - [sym_sizeof_expression] = STATE(2765), - [sym_subscript_expression] = STATE(2827), - [sym_call_expression] = STATE(2827), - [sym_field_expression] = STATE(2827), - [sym_compound_literal_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2827), - [sym_char_literal] = STATE(2674), - [sym_concatenated_string] = STATE(2674), - [sym_string_literal] = STATE(2093), - [sym__class_name] = STATE(6297), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2765), - [sym_co_await_expression] = STATE(2765), - [sym_new_expression] = STATE(2765), - [sym_delete_expression] = STATE(2765), - [sym_requires_clause] = STATE(2765), - [sym_requires_expression] = STATE(2765), - [sym_lambda_expression] = STATE(2765), - [sym_lambda_capture_specifier] = STATE(4512), - [sym_fold_expression] = STATE(2765), - [sym_parameter_pack_expansion] = STATE(2765), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4648), - [sym_qualified_identifier] = STATE(2827), - [sym_qualified_type_identifier] = STATE(6297), - [sym_user_defined_literal] = STATE(2765), - [sym_identifier] = ACTIONS(2363), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3554), - [anon_sym_LPAREN2] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1417), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_COLON_COLON] = ACTIONS(1423), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(2369), - [anon_sym_DASH_DASH] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [anon_sym_sizeof] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(1439), - [anon_sym_L_SQUOTE] = ACTIONS(1441), - [anon_sym_u_SQUOTE] = ACTIONS(1441), - [anon_sym_U_SQUOTE] = ACTIONS(1441), - [anon_sym_u8_SQUOTE] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1441), - [anon_sym_L_DQUOTE] = ACTIONS(1443), - [anon_sym_u_DQUOTE] = ACTIONS(1443), - [anon_sym_U_DQUOTE] = ACTIONS(1443), - [anon_sym_u8_DQUOTE] = ACTIONS(1443), - [anon_sym_DQUOTE] = ACTIONS(1443), - [sym_true] = ACTIONS(1445), - [sym_false] = ACTIONS(1445), - [sym_null] = ACTIONS(1445), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_co_await] = ACTIONS(1451), - [anon_sym_new] = ACTIONS(1453), - [anon_sym_requires] = ACTIONS(1455), - [sym_this] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(1445), - [sym_raw_string_literal] = ACTIONS(1457), + [957] = { + [ts_builtin_sym_end] = ACTIONS(2847), + [sym_identifier] = ACTIONS(2845), + [aux_sym_preproc_include_token1] = ACTIONS(2845), + [aux_sym_preproc_def_token1] = ACTIONS(2845), + [aux_sym_preproc_if_token1] = ACTIONS(2845), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2845), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2845), + [sym_preproc_directive] = ACTIONS(2845), + [anon_sym_LPAREN2] = ACTIONS(2847), + [anon_sym_BANG] = ACTIONS(2847), + [anon_sym_TILDE] = ACTIONS(2847), + [anon_sym_DASH] = ACTIONS(2845), + [anon_sym_PLUS] = ACTIONS(2845), + [anon_sym_STAR] = ACTIONS(2847), + [anon_sym_AMP_AMP] = ACTIONS(2847), + [anon_sym_AMP] = ACTIONS(2845), + [anon_sym_SEMI] = ACTIONS(2847), + [anon_sym_typedef] = ACTIONS(2845), + [anon_sym_extern] = ACTIONS(2845), + [anon_sym___attribute__] = ACTIONS(2845), + [anon_sym_COLON_COLON] = ACTIONS(2847), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2847), + [anon_sym___declspec] = ACTIONS(2845), + [anon_sym___based] = ACTIONS(2845), + [anon_sym___cdecl] = ACTIONS(2845), + [anon_sym___clrcall] = ACTIONS(2845), + [anon_sym___stdcall] = ACTIONS(2845), + [anon_sym___fastcall] = ACTIONS(2845), + [anon_sym___thiscall] = ACTIONS(2845), + [anon_sym___vectorcall] = ACTIONS(2845), + [anon_sym_LBRACE] = ACTIONS(2847), + [anon_sym_LBRACK] = ACTIONS(2845), + [anon_sym_static] = ACTIONS(2845), + [anon_sym_register] = ACTIONS(2845), + [anon_sym_inline] = ACTIONS(2845), + [anon_sym_thread_local] = ACTIONS(2845), + [anon_sym_const] = ACTIONS(2845), + [anon_sym_volatile] = ACTIONS(2845), + [anon_sym_restrict] = ACTIONS(2845), + [anon_sym__Atomic] = ACTIONS(2845), + [anon_sym_mutable] = ACTIONS(2845), + [anon_sym_constexpr] = ACTIONS(2845), + [anon_sym_constinit] = ACTIONS(2845), + [anon_sym_consteval] = ACTIONS(2845), + [anon_sym_signed] = ACTIONS(2845), + [anon_sym_unsigned] = ACTIONS(2845), + [anon_sym_long] = ACTIONS(2845), + [anon_sym_short] = ACTIONS(2845), + [sym_primitive_type] = ACTIONS(2845), + [anon_sym_enum] = ACTIONS(2845), + [anon_sym_class] = ACTIONS(2845), + [anon_sym_struct] = ACTIONS(2845), + [anon_sym_union] = ACTIONS(2845), + [anon_sym_if] = ACTIONS(2845), + [anon_sym_switch] = ACTIONS(2845), + [anon_sym_case] = ACTIONS(2845), + [anon_sym_default] = ACTIONS(2845), + [anon_sym_while] = ACTIONS(2845), + [anon_sym_do] = ACTIONS(2845), + [anon_sym_for] = ACTIONS(2845), + [anon_sym_return] = ACTIONS(2845), + [anon_sym_break] = ACTIONS(2845), + [anon_sym_continue] = ACTIONS(2845), + [anon_sym_goto] = ACTIONS(2845), + [anon_sym_not] = ACTIONS(2845), + [anon_sym_compl] = ACTIONS(2845), + [anon_sym_DASH_DASH] = ACTIONS(2847), + [anon_sym_PLUS_PLUS] = ACTIONS(2847), + [anon_sym_sizeof] = ACTIONS(2845), + [sym_number_literal] = ACTIONS(2847), + [anon_sym_L_SQUOTE] = ACTIONS(2847), + [anon_sym_u_SQUOTE] = ACTIONS(2847), + [anon_sym_U_SQUOTE] = ACTIONS(2847), + [anon_sym_u8_SQUOTE] = ACTIONS(2847), + [anon_sym_SQUOTE] = ACTIONS(2847), + [anon_sym_L_DQUOTE] = ACTIONS(2847), + [anon_sym_u_DQUOTE] = ACTIONS(2847), + [anon_sym_U_DQUOTE] = ACTIONS(2847), + [anon_sym_u8_DQUOTE] = ACTIONS(2847), + [anon_sym_DQUOTE] = ACTIONS(2847), + [sym_true] = ACTIONS(2845), + [sym_false] = ACTIONS(2845), + [sym_null] = ACTIONS(2845), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2845), + [anon_sym_decltype] = ACTIONS(2845), + [anon_sym_virtual] = ACTIONS(2845), + [anon_sym_explicit] = ACTIONS(2845), + [anon_sym_typename] = ACTIONS(2845), + [anon_sym_template] = ACTIONS(2845), + [anon_sym_operator] = ACTIONS(2845), + [anon_sym_try] = ACTIONS(2845), + [anon_sym_delete] = ACTIONS(2845), + [anon_sym_throw] = ACTIONS(2845), + [anon_sym_namespace] = ACTIONS(2845), + [anon_sym_using] = ACTIONS(2845), + [anon_sym_static_assert] = ACTIONS(2845), + [anon_sym_concept] = ACTIONS(2845), + [anon_sym_co_return] = ACTIONS(2845), + [anon_sym_co_yield] = ACTIONS(2845), + [anon_sym_co_await] = ACTIONS(2845), + [anon_sym_new] = ACTIONS(2845), + [anon_sym_requires] = ACTIONS(2845), + [sym_this] = ACTIONS(2845), + [sym_nullptr] = ACTIONS(2845), + [sym_raw_string_literal] = ACTIONS(2847), }, - [1419] = { - [sym__expression] = STATE(3779), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(3557), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [958] = { + [sym_identifier] = ACTIONS(2805), + [aux_sym_preproc_include_token1] = ACTIONS(2805), + [aux_sym_preproc_def_token1] = ACTIONS(2805), + [aux_sym_preproc_if_token1] = ACTIONS(2805), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2805), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2805), + [sym_preproc_directive] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(2807), + [anon_sym_BANG] = ACTIONS(2807), + [anon_sym_TILDE] = ACTIONS(2807), + [anon_sym_DASH] = ACTIONS(2805), + [anon_sym_PLUS] = ACTIONS(2805), + [anon_sym_STAR] = ACTIONS(2807), + [anon_sym_AMP_AMP] = ACTIONS(2807), + [anon_sym_AMP] = ACTIONS(2805), + [anon_sym_SEMI] = ACTIONS(2807), + [anon_sym_typedef] = ACTIONS(2805), + [anon_sym_extern] = ACTIONS(2805), + [anon_sym___attribute__] = ACTIONS(2805), + [anon_sym_COLON_COLON] = ACTIONS(2807), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2807), + [anon_sym___declspec] = ACTIONS(2805), + [anon_sym___based] = ACTIONS(2805), + [anon_sym___cdecl] = ACTIONS(2805), + [anon_sym___clrcall] = ACTIONS(2805), + [anon_sym___stdcall] = ACTIONS(2805), + [anon_sym___fastcall] = ACTIONS(2805), + [anon_sym___thiscall] = ACTIONS(2805), + [anon_sym___vectorcall] = ACTIONS(2805), + [anon_sym_LBRACE] = ACTIONS(2807), + [anon_sym_RBRACE] = ACTIONS(2807), + [anon_sym_LBRACK] = ACTIONS(2805), + [anon_sym_static] = ACTIONS(2805), + [anon_sym_register] = ACTIONS(2805), + [anon_sym_inline] = ACTIONS(2805), + [anon_sym_thread_local] = ACTIONS(2805), + [anon_sym_const] = ACTIONS(2805), + [anon_sym_volatile] = ACTIONS(2805), + [anon_sym_restrict] = ACTIONS(2805), + [anon_sym__Atomic] = ACTIONS(2805), + [anon_sym_mutable] = ACTIONS(2805), + [anon_sym_constexpr] = ACTIONS(2805), + [anon_sym_constinit] = ACTIONS(2805), + [anon_sym_consteval] = ACTIONS(2805), + [anon_sym_signed] = ACTIONS(2805), + [anon_sym_unsigned] = ACTIONS(2805), + [anon_sym_long] = ACTIONS(2805), + [anon_sym_short] = ACTIONS(2805), + [sym_primitive_type] = ACTIONS(2805), + [anon_sym_enum] = ACTIONS(2805), + [anon_sym_class] = ACTIONS(2805), + [anon_sym_struct] = ACTIONS(2805), + [anon_sym_union] = ACTIONS(2805), + [anon_sym_if] = ACTIONS(2805), + [anon_sym_switch] = ACTIONS(2805), + [anon_sym_case] = ACTIONS(2805), + [anon_sym_default] = ACTIONS(2805), + [anon_sym_while] = ACTIONS(2805), + [anon_sym_do] = ACTIONS(2805), + [anon_sym_for] = ACTIONS(2805), + [anon_sym_return] = ACTIONS(2805), + [anon_sym_break] = ACTIONS(2805), + [anon_sym_continue] = ACTIONS(2805), + [anon_sym_goto] = ACTIONS(2805), + [anon_sym_not] = ACTIONS(2805), + [anon_sym_compl] = ACTIONS(2805), + [anon_sym_DASH_DASH] = ACTIONS(2807), + [anon_sym_PLUS_PLUS] = ACTIONS(2807), + [anon_sym_sizeof] = ACTIONS(2805), + [sym_number_literal] = ACTIONS(2807), + [anon_sym_L_SQUOTE] = ACTIONS(2807), + [anon_sym_u_SQUOTE] = ACTIONS(2807), + [anon_sym_U_SQUOTE] = ACTIONS(2807), + [anon_sym_u8_SQUOTE] = ACTIONS(2807), + [anon_sym_SQUOTE] = ACTIONS(2807), + [anon_sym_L_DQUOTE] = ACTIONS(2807), + [anon_sym_u_DQUOTE] = ACTIONS(2807), + [anon_sym_U_DQUOTE] = ACTIONS(2807), + [anon_sym_u8_DQUOTE] = ACTIONS(2807), + [anon_sym_DQUOTE] = ACTIONS(2807), + [sym_true] = ACTIONS(2805), + [sym_false] = ACTIONS(2805), + [sym_null] = ACTIONS(2805), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2805), + [anon_sym_decltype] = ACTIONS(2805), + [anon_sym_virtual] = ACTIONS(2805), + [anon_sym_explicit] = ACTIONS(2805), + [anon_sym_typename] = ACTIONS(2805), + [anon_sym_template] = ACTIONS(2805), + [anon_sym_operator] = ACTIONS(2805), + [anon_sym_try] = ACTIONS(2805), + [anon_sym_delete] = ACTIONS(2805), + [anon_sym_throw] = ACTIONS(2805), + [anon_sym_namespace] = ACTIONS(2805), + [anon_sym_using] = ACTIONS(2805), + [anon_sym_static_assert] = ACTIONS(2805), + [anon_sym_concept] = ACTIONS(2805), + [anon_sym_co_return] = ACTIONS(2805), + [anon_sym_co_yield] = ACTIONS(2805), + [anon_sym_co_await] = ACTIONS(2805), + [anon_sym_new] = ACTIONS(2805), + [anon_sym_requires] = ACTIONS(2805), + [sym_this] = ACTIONS(2805), + [sym_nullptr] = ACTIONS(2805), + [sym_raw_string_literal] = ACTIONS(2807), }, - [1420] = { - [sym__expression] = STATE(3778), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(3559), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [959] = { + [ts_builtin_sym_end] = ACTIONS(2851), + [sym_identifier] = ACTIONS(2849), + [aux_sym_preproc_include_token1] = ACTIONS(2849), + [aux_sym_preproc_def_token1] = ACTIONS(2849), + [aux_sym_preproc_if_token1] = ACTIONS(2849), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2849), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2849), + [sym_preproc_directive] = ACTIONS(2849), + [anon_sym_LPAREN2] = ACTIONS(2851), + [anon_sym_BANG] = ACTIONS(2851), + [anon_sym_TILDE] = ACTIONS(2851), + [anon_sym_DASH] = ACTIONS(2849), + [anon_sym_PLUS] = ACTIONS(2849), + [anon_sym_STAR] = ACTIONS(2851), + [anon_sym_AMP_AMP] = ACTIONS(2851), + [anon_sym_AMP] = ACTIONS(2849), + [anon_sym_SEMI] = ACTIONS(2851), + [anon_sym_typedef] = ACTIONS(2849), + [anon_sym_extern] = ACTIONS(2849), + [anon_sym___attribute__] = ACTIONS(2849), + [anon_sym_COLON_COLON] = ACTIONS(2851), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2851), + [anon_sym___declspec] = ACTIONS(2849), + [anon_sym___based] = ACTIONS(2849), + [anon_sym___cdecl] = ACTIONS(2849), + [anon_sym___clrcall] = ACTIONS(2849), + [anon_sym___stdcall] = ACTIONS(2849), + [anon_sym___fastcall] = ACTIONS(2849), + [anon_sym___thiscall] = ACTIONS(2849), + [anon_sym___vectorcall] = ACTIONS(2849), + [anon_sym_LBRACE] = ACTIONS(2851), + [anon_sym_LBRACK] = ACTIONS(2849), + [anon_sym_static] = ACTIONS(2849), + [anon_sym_register] = ACTIONS(2849), + [anon_sym_inline] = ACTIONS(2849), + [anon_sym_thread_local] = ACTIONS(2849), + [anon_sym_const] = ACTIONS(2849), + [anon_sym_volatile] = ACTIONS(2849), + [anon_sym_restrict] = ACTIONS(2849), + [anon_sym__Atomic] = ACTIONS(2849), + [anon_sym_mutable] = ACTIONS(2849), + [anon_sym_constexpr] = ACTIONS(2849), + [anon_sym_constinit] = ACTIONS(2849), + [anon_sym_consteval] = ACTIONS(2849), + [anon_sym_signed] = ACTIONS(2849), + [anon_sym_unsigned] = ACTIONS(2849), + [anon_sym_long] = ACTIONS(2849), + [anon_sym_short] = ACTIONS(2849), + [sym_primitive_type] = ACTIONS(2849), + [anon_sym_enum] = ACTIONS(2849), + [anon_sym_class] = ACTIONS(2849), + [anon_sym_struct] = ACTIONS(2849), + [anon_sym_union] = ACTIONS(2849), + [anon_sym_if] = ACTIONS(2849), + [anon_sym_switch] = ACTIONS(2849), + [anon_sym_case] = ACTIONS(2849), + [anon_sym_default] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2849), + [anon_sym_do] = ACTIONS(2849), + [anon_sym_for] = ACTIONS(2849), + [anon_sym_return] = ACTIONS(2849), + [anon_sym_break] = ACTIONS(2849), + [anon_sym_continue] = ACTIONS(2849), + [anon_sym_goto] = ACTIONS(2849), + [anon_sym_not] = ACTIONS(2849), + [anon_sym_compl] = ACTIONS(2849), + [anon_sym_DASH_DASH] = ACTIONS(2851), + [anon_sym_PLUS_PLUS] = ACTIONS(2851), + [anon_sym_sizeof] = ACTIONS(2849), + [sym_number_literal] = ACTIONS(2851), + [anon_sym_L_SQUOTE] = ACTIONS(2851), + [anon_sym_u_SQUOTE] = ACTIONS(2851), + [anon_sym_U_SQUOTE] = ACTIONS(2851), + [anon_sym_u8_SQUOTE] = ACTIONS(2851), + [anon_sym_SQUOTE] = ACTIONS(2851), + [anon_sym_L_DQUOTE] = ACTIONS(2851), + [anon_sym_u_DQUOTE] = ACTIONS(2851), + [anon_sym_U_DQUOTE] = ACTIONS(2851), + [anon_sym_u8_DQUOTE] = ACTIONS(2851), + [anon_sym_DQUOTE] = ACTIONS(2851), + [sym_true] = ACTIONS(2849), + [sym_false] = ACTIONS(2849), + [sym_null] = ACTIONS(2849), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2849), + [anon_sym_decltype] = ACTIONS(2849), + [anon_sym_virtual] = ACTIONS(2849), + [anon_sym_explicit] = ACTIONS(2849), + [anon_sym_typename] = ACTIONS(2849), + [anon_sym_template] = ACTIONS(2849), + [anon_sym_operator] = ACTIONS(2849), + [anon_sym_try] = ACTIONS(2849), + [anon_sym_delete] = ACTIONS(2849), + [anon_sym_throw] = ACTIONS(2849), + [anon_sym_namespace] = ACTIONS(2849), + [anon_sym_using] = ACTIONS(2849), + [anon_sym_static_assert] = ACTIONS(2849), + [anon_sym_concept] = ACTIONS(2849), + [anon_sym_co_return] = ACTIONS(2849), + [anon_sym_co_yield] = ACTIONS(2849), + [anon_sym_co_await] = ACTIONS(2849), + [anon_sym_new] = ACTIONS(2849), + [anon_sym_requires] = ACTIONS(2849), + [sym_this] = ACTIONS(2849), + [sym_nullptr] = ACTIONS(2849), + [sym_raw_string_literal] = ACTIONS(2851), }, - [1421] = { - [sym__expression] = STATE(3912), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3561), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [960] = { + [sym_identifier] = ACTIONS(2805), + [aux_sym_preproc_include_token1] = ACTIONS(2805), + [aux_sym_preproc_def_token1] = ACTIONS(2805), + [aux_sym_preproc_if_token1] = ACTIONS(2805), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2805), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2805), + [sym_preproc_directive] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(2807), + [anon_sym_BANG] = ACTIONS(2807), + [anon_sym_TILDE] = ACTIONS(2807), + [anon_sym_DASH] = ACTIONS(2805), + [anon_sym_PLUS] = ACTIONS(2805), + [anon_sym_STAR] = ACTIONS(2807), + [anon_sym_AMP_AMP] = ACTIONS(2807), + [anon_sym_AMP] = ACTIONS(2805), + [anon_sym_SEMI] = ACTIONS(2807), + [anon_sym_typedef] = ACTIONS(2805), + [anon_sym_extern] = ACTIONS(2805), + [anon_sym___attribute__] = ACTIONS(2805), + [anon_sym_COLON_COLON] = ACTIONS(2807), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2807), + [anon_sym___declspec] = ACTIONS(2805), + [anon_sym___based] = ACTIONS(2805), + [anon_sym___cdecl] = ACTIONS(2805), + [anon_sym___clrcall] = ACTIONS(2805), + [anon_sym___stdcall] = ACTIONS(2805), + [anon_sym___fastcall] = ACTIONS(2805), + [anon_sym___thiscall] = ACTIONS(2805), + [anon_sym___vectorcall] = ACTIONS(2805), + [anon_sym_LBRACE] = ACTIONS(2807), + [anon_sym_RBRACE] = ACTIONS(2807), + [anon_sym_LBRACK] = ACTIONS(2805), + [anon_sym_static] = ACTIONS(2805), + [anon_sym_register] = ACTIONS(2805), + [anon_sym_inline] = ACTIONS(2805), + [anon_sym_thread_local] = ACTIONS(2805), + [anon_sym_const] = ACTIONS(2805), + [anon_sym_volatile] = ACTIONS(2805), + [anon_sym_restrict] = ACTIONS(2805), + [anon_sym__Atomic] = ACTIONS(2805), + [anon_sym_mutable] = ACTIONS(2805), + [anon_sym_constexpr] = ACTIONS(2805), + [anon_sym_constinit] = ACTIONS(2805), + [anon_sym_consteval] = ACTIONS(2805), + [anon_sym_signed] = ACTIONS(2805), + [anon_sym_unsigned] = ACTIONS(2805), + [anon_sym_long] = ACTIONS(2805), + [anon_sym_short] = ACTIONS(2805), + [sym_primitive_type] = ACTIONS(2805), + [anon_sym_enum] = ACTIONS(2805), + [anon_sym_class] = ACTIONS(2805), + [anon_sym_struct] = ACTIONS(2805), + [anon_sym_union] = ACTIONS(2805), + [anon_sym_if] = ACTIONS(2805), + [anon_sym_switch] = ACTIONS(2805), + [anon_sym_case] = ACTIONS(2805), + [anon_sym_default] = ACTIONS(2805), + [anon_sym_while] = ACTIONS(2805), + [anon_sym_do] = ACTIONS(2805), + [anon_sym_for] = ACTIONS(2805), + [anon_sym_return] = ACTIONS(2805), + [anon_sym_break] = ACTIONS(2805), + [anon_sym_continue] = ACTIONS(2805), + [anon_sym_goto] = ACTIONS(2805), + [anon_sym_not] = ACTIONS(2805), + [anon_sym_compl] = ACTIONS(2805), + [anon_sym_DASH_DASH] = ACTIONS(2807), + [anon_sym_PLUS_PLUS] = ACTIONS(2807), + [anon_sym_sizeof] = ACTIONS(2805), + [sym_number_literal] = ACTIONS(2807), + [anon_sym_L_SQUOTE] = ACTIONS(2807), + [anon_sym_u_SQUOTE] = ACTIONS(2807), + [anon_sym_U_SQUOTE] = ACTIONS(2807), + [anon_sym_u8_SQUOTE] = ACTIONS(2807), + [anon_sym_SQUOTE] = ACTIONS(2807), + [anon_sym_L_DQUOTE] = ACTIONS(2807), + [anon_sym_u_DQUOTE] = ACTIONS(2807), + [anon_sym_U_DQUOTE] = ACTIONS(2807), + [anon_sym_u8_DQUOTE] = ACTIONS(2807), + [anon_sym_DQUOTE] = ACTIONS(2807), + [sym_true] = ACTIONS(2805), + [sym_false] = ACTIONS(2805), + [sym_null] = ACTIONS(2805), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2805), + [anon_sym_decltype] = ACTIONS(2805), + [anon_sym_virtual] = ACTIONS(2805), + [anon_sym_explicit] = ACTIONS(2805), + [anon_sym_typename] = ACTIONS(2805), + [anon_sym_template] = ACTIONS(2805), + [anon_sym_operator] = ACTIONS(2805), + [anon_sym_try] = ACTIONS(2805), + [anon_sym_delete] = ACTIONS(2805), + [anon_sym_throw] = ACTIONS(2805), + [anon_sym_namespace] = ACTIONS(2805), + [anon_sym_using] = ACTIONS(2805), + [anon_sym_static_assert] = ACTIONS(2805), + [anon_sym_concept] = ACTIONS(2805), + [anon_sym_co_return] = ACTIONS(2805), + [anon_sym_co_yield] = ACTIONS(2805), + [anon_sym_co_await] = ACTIONS(2805), + [anon_sym_new] = ACTIONS(2805), + [anon_sym_requires] = ACTIONS(2805), + [sym_this] = ACTIONS(2805), + [sym_nullptr] = ACTIONS(2805), + [sym_raw_string_literal] = ACTIONS(2807), }, - [1422] = { - [sym__expression] = STATE(3819), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(3563), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [961] = { + [sym_identifier] = ACTIONS(2729), + [aux_sym_preproc_include_token1] = ACTIONS(2729), + [aux_sym_preproc_def_token1] = ACTIONS(2729), + [aux_sym_preproc_if_token1] = ACTIONS(2729), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2729), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2729), + [sym_preproc_directive] = ACTIONS(2729), + [anon_sym_LPAREN2] = ACTIONS(2731), + [anon_sym_BANG] = ACTIONS(2731), + [anon_sym_TILDE] = ACTIONS(2731), + [anon_sym_DASH] = ACTIONS(2729), + [anon_sym_PLUS] = ACTIONS(2729), + [anon_sym_STAR] = ACTIONS(2731), + [anon_sym_AMP_AMP] = ACTIONS(2731), + [anon_sym_AMP] = ACTIONS(2729), + [anon_sym_SEMI] = ACTIONS(2731), + [anon_sym_typedef] = ACTIONS(2729), + [anon_sym_extern] = ACTIONS(2729), + [anon_sym___attribute__] = ACTIONS(2729), + [anon_sym_COLON_COLON] = ACTIONS(2731), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2731), + [anon_sym___declspec] = ACTIONS(2729), + [anon_sym___based] = ACTIONS(2729), + [anon_sym___cdecl] = ACTIONS(2729), + [anon_sym___clrcall] = ACTIONS(2729), + [anon_sym___stdcall] = ACTIONS(2729), + [anon_sym___fastcall] = ACTIONS(2729), + [anon_sym___thiscall] = ACTIONS(2729), + [anon_sym___vectorcall] = ACTIONS(2729), + [anon_sym_LBRACE] = ACTIONS(2731), + [anon_sym_RBRACE] = ACTIONS(2731), + [anon_sym_LBRACK] = ACTIONS(2729), + [anon_sym_static] = ACTIONS(2729), + [anon_sym_register] = ACTIONS(2729), + [anon_sym_inline] = ACTIONS(2729), + [anon_sym_thread_local] = ACTIONS(2729), + [anon_sym_const] = ACTIONS(2729), + [anon_sym_volatile] = ACTIONS(2729), + [anon_sym_restrict] = ACTIONS(2729), + [anon_sym__Atomic] = ACTIONS(2729), + [anon_sym_mutable] = ACTIONS(2729), + [anon_sym_constexpr] = ACTIONS(2729), + [anon_sym_constinit] = ACTIONS(2729), + [anon_sym_consteval] = ACTIONS(2729), + [anon_sym_signed] = ACTIONS(2729), + [anon_sym_unsigned] = ACTIONS(2729), + [anon_sym_long] = ACTIONS(2729), + [anon_sym_short] = ACTIONS(2729), + [sym_primitive_type] = ACTIONS(2729), + [anon_sym_enum] = ACTIONS(2729), + [anon_sym_class] = ACTIONS(2729), + [anon_sym_struct] = ACTIONS(2729), + [anon_sym_union] = ACTIONS(2729), + [anon_sym_if] = ACTIONS(2729), + [anon_sym_switch] = ACTIONS(2729), + [anon_sym_case] = ACTIONS(2729), + [anon_sym_default] = ACTIONS(2729), + [anon_sym_while] = ACTIONS(2729), + [anon_sym_do] = ACTIONS(2729), + [anon_sym_for] = ACTIONS(2729), + [anon_sym_return] = ACTIONS(2729), + [anon_sym_break] = ACTIONS(2729), + [anon_sym_continue] = ACTIONS(2729), + [anon_sym_goto] = ACTIONS(2729), + [anon_sym_not] = ACTIONS(2729), + [anon_sym_compl] = ACTIONS(2729), + [anon_sym_DASH_DASH] = ACTIONS(2731), + [anon_sym_PLUS_PLUS] = ACTIONS(2731), + [anon_sym_sizeof] = ACTIONS(2729), + [sym_number_literal] = ACTIONS(2731), + [anon_sym_L_SQUOTE] = ACTIONS(2731), + [anon_sym_u_SQUOTE] = ACTIONS(2731), + [anon_sym_U_SQUOTE] = ACTIONS(2731), + [anon_sym_u8_SQUOTE] = ACTIONS(2731), + [anon_sym_SQUOTE] = ACTIONS(2731), + [anon_sym_L_DQUOTE] = ACTIONS(2731), + [anon_sym_u_DQUOTE] = ACTIONS(2731), + [anon_sym_U_DQUOTE] = ACTIONS(2731), + [anon_sym_u8_DQUOTE] = ACTIONS(2731), + [anon_sym_DQUOTE] = ACTIONS(2731), + [sym_true] = ACTIONS(2729), + [sym_false] = ACTIONS(2729), + [sym_null] = ACTIONS(2729), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2729), + [anon_sym_decltype] = ACTIONS(2729), + [anon_sym_virtual] = ACTIONS(2729), + [anon_sym_explicit] = ACTIONS(2729), + [anon_sym_typename] = ACTIONS(2729), + [anon_sym_template] = ACTIONS(2729), + [anon_sym_operator] = ACTIONS(2729), + [anon_sym_try] = ACTIONS(2729), + [anon_sym_delete] = ACTIONS(2729), + [anon_sym_throw] = ACTIONS(2729), + [anon_sym_namespace] = ACTIONS(2729), + [anon_sym_using] = ACTIONS(2729), + [anon_sym_static_assert] = ACTIONS(2729), + [anon_sym_concept] = ACTIONS(2729), + [anon_sym_co_return] = ACTIONS(2729), + [anon_sym_co_yield] = ACTIONS(2729), + [anon_sym_co_await] = ACTIONS(2729), + [anon_sym_new] = ACTIONS(2729), + [anon_sym_requires] = ACTIONS(2729), + [sym_this] = ACTIONS(2729), + [sym_nullptr] = ACTIONS(2729), + [sym_raw_string_literal] = ACTIONS(2731), }, - [1423] = { - [sym__expression] = STATE(3815), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(3565), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [962] = { + [ts_builtin_sym_end] = ACTIONS(2867), + [sym_identifier] = ACTIONS(2865), + [aux_sym_preproc_include_token1] = ACTIONS(2865), + [aux_sym_preproc_def_token1] = ACTIONS(2865), + [aux_sym_preproc_if_token1] = ACTIONS(2865), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2865), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2865), + [sym_preproc_directive] = ACTIONS(2865), + [anon_sym_LPAREN2] = ACTIONS(2867), + [anon_sym_BANG] = ACTIONS(2867), + [anon_sym_TILDE] = ACTIONS(2867), + [anon_sym_DASH] = ACTIONS(2865), + [anon_sym_PLUS] = ACTIONS(2865), + [anon_sym_STAR] = ACTIONS(2867), + [anon_sym_AMP_AMP] = ACTIONS(2867), + [anon_sym_AMP] = ACTIONS(2865), + [anon_sym_SEMI] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2865), + [anon_sym_extern] = ACTIONS(2865), + [anon_sym___attribute__] = ACTIONS(2865), + [anon_sym_COLON_COLON] = ACTIONS(2867), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2867), + [anon_sym___declspec] = ACTIONS(2865), + [anon_sym___based] = ACTIONS(2865), + [anon_sym___cdecl] = ACTIONS(2865), + [anon_sym___clrcall] = ACTIONS(2865), + [anon_sym___stdcall] = ACTIONS(2865), + [anon_sym___fastcall] = ACTIONS(2865), + [anon_sym___thiscall] = ACTIONS(2865), + [anon_sym___vectorcall] = ACTIONS(2865), + [anon_sym_LBRACE] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2865), + [anon_sym_static] = ACTIONS(2865), + [anon_sym_register] = ACTIONS(2865), + [anon_sym_inline] = ACTIONS(2865), + [anon_sym_thread_local] = ACTIONS(2865), + [anon_sym_const] = ACTIONS(2865), + [anon_sym_volatile] = ACTIONS(2865), + [anon_sym_restrict] = ACTIONS(2865), + [anon_sym__Atomic] = ACTIONS(2865), + [anon_sym_mutable] = ACTIONS(2865), + [anon_sym_constexpr] = ACTIONS(2865), + [anon_sym_constinit] = ACTIONS(2865), + [anon_sym_consteval] = ACTIONS(2865), + [anon_sym_signed] = ACTIONS(2865), + [anon_sym_unsigned] = ACTIONS(2865), + [anon_sym_long] = ACTIONS(2865), + [anon_sym_short] = ACTIONS(2865), + [sym_primitive_type] = ACTIONS(2865), + [anon_sym_enum] = ACTIONS(2865), + [anon_sym_class] = ACTIONS(2865), + [anon_sym_struct] = ACTIONS(2865), + [anon_sym_union] = ACTIONS(2865), + [anon_sym_if] = ACTIONS(2865), + [anon_sym_switch] = ACTIONS(2865), + [anon_sym_case] = ACTIONS(2865), + [anon_sym_default] = ACTIONS(2865), + [anon_sym_while] = ACTIONS(2865), + [anon_sym_do] = ACTIONS(2865), + [anon_sym_for] = ACTIONS(2865), + [anon_sym_return] = ACTIONS(2865), + [anon_sym_break] = ACTIONS(2865), + [anon_sym_continue] = ACTIONS(2865), + [anon_sym_goto] = ACTIONS(2865), + [anon_sym_not] = ACTIONS(2865), + [anon_sym_compl] = ACTIONS(2865), + [anon_sym_DASH_DASH] = ACTIONS(2867), + [anon_sym_PLUS_PLUS] = ACTIONS(2867), + [anon_sym_sizeof] = ACTIONS(2865), + [sym_number_literal] = ACTIONS(2867), + [anon_sym_L_SQUOTE] = ACTIONS(2867), + [anon_sym_u_SQUOTE] = ACTIONS(2867), + [anon_sym_U_SQUOTE] = ACTIONS(2867), + [anon_sym_u8_SQUOTE] = ACTIONS(2867), + [anon_sym_SQUOTE] = ACTIONS(2867), + [anon_sym_L_DQUOTE] = ACTIONS(2867), + [anon_sym_u_DQUOTE] = ACTIONS(2867), + [anon_sym_U_DQUOTE] = ACTIONS(2867), + [anon_sym_u8_DQUOTE] = ACTIONS(2867), + [anon_sym_DQUOTE] = ACTIONS(2867), + [sym_true] = ACTIONS(2865), + [sym_false] = ACTIONS(2865), + [sym_null] = ACTIONS(2865), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2865), + [anon_sym_decltype] = ACTIONS(2865), + [anon_sym_virtual] = ACTIONS(2865), + [anon_sym_explicit] = ACTIONS(2865), + [anon_sym_typename] = ACTIONS(2865), + [anon_sym_template] = ACTIONS(2865), + [anon_sym_operator] = ACTIONS(2865), + [anon_sym_try] = ACTIONS(2865), + [anon_sym_delete] = ACTIONS(2865), + [anon_sym_throw] = ACTIONS(2865), + [anon_sym_namespace] = ACTIONS(2865), + [anon_sym_using] = ACTIONS(2865), + [anon_sym_static_assert] = ACTIONS(2865), + [anon_sym_concept] = ACTIONS(2865), + [anon_sym_co_return] = ACTIONS(2865), + [anon_sym_co_yield] = ACTIONS(2865), + [anon_sym_co_await] = ACTIONS(2865), + [anon_sym_new] = ACTIONS(2865), + [anon_sym_requires] = ACTIONS(2865), + [sym_this] = ACTIONS(2865), + [sym_nullptr] = ACTIONS(2865), + [sym_raw_string_literal] = ACTIONS(2867), }, - [1424] = { - [sym__expression] = STATE(2558), - [sym_conditional_expression] = STATE(2541), - [sym_assignment_expression] = STATE(2541), - [sym_pointer_expression] = STATE(2531), - [sym_unary_expression] = STATE(2541), - [sym_binary_expression] = STATE(2541), - [sym_update_expression] = STATE(2541), - [sym_cast_expression] = STATE(2541), - [sym_sizeof_expression] = STATE(2541), - [sym_subscript_expression] = STATE(2531), - [sym_call_expression] = STATE(2531), - [sym_field_expression] = STATE(2531), - [sym_compound_literal_expression] = STATE(2541), - [sym_parenthesized_expression] = STATE(2531), - [sym_char_literal] = STATE(2481), - [sym_concatenated_string] = STATE(2481), - [sym_string_literal] = STATE(2063), - [sym__class_name] = STATE(6239), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2541), - [sym_co_await_expression] = STATE(2541), - [sym_new_expression] = STATE(2541), - [sym_delete_expression] = STATE(2541), - [sym_requires_clause] = STATE(2541), - [sym_requires_expression] = STATE(2541), - [sym_lambda_expression] = STATE(2541), - [sym_lambda_capture_specifier] = STATE(4508), - [sym_fold_expression] = STATE(2541), - [sym_parameter_pack_expansion] = STATE(2541), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2531), - [sym_qualified_type_identifier] = STATE(6239), - [sym_user_defined_literal] = STATE(2541), - [sym_identifier] = ACTIONS(2306), - [anon_sym_LPAREN2] = ACTIONS(2310), - [anon_sym_BANG] = ACTIONS(2314), - [anon_sym_TILDE] = ACTIONS(2314), - [anon_sym_DASH] = ACTIONS(2312), - [anon_sym_PLUS] = ACTIONS(2312), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(2318), - [anon_sym_LBRACK] = ACTIONS(2272), - [anon_sym_RBRACK] = ACTIONS(3567), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(2322), - [anon_sym_PLUS_PLUS] = ACTIONS(2322), - [anon_sym_sizeof] = ACTIONS(2324), - [sym_number_literal] = ACTIONS(2326), - [anon_sym_L_SQUOTE] = ACTIONS(2328), - [anon_sym_u_SQUOTE] = ACTIONS(2328), - [anon_sym_U_SQUOTE] = ACTIONS(2328), - [anon_sym_u8_SQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2328), - [anon_sym_L_DQUOTE] = ACTIONS(2330), - [anon_sym_u_DQUOTE] = ACTIONS(2330), - [anon_sym_U_DQUOTE] = ACTIONS(2330), - [anon_sym_u8_DQUOTE] = ACTIONS(2330), - [anon_sym_DQUOTE] = ACTIONS(2330), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2334), - [anon_sym_co_await] = ACTIONS(2336), - [anon_sym_new] = ACTIONS(2338), - [anon_sym_requires] = ACTIONS(2340), - [sym_this] = ACTIONS(2332), - [sym_nullptr] = ACTIONS(2332), - [sym_raw_string_literal] = ACTIONS(2342), + [963] = { + [ts_builtin_sym_end] = ACTIONS(2871), + [sym_identifier] = ACTIONS(2869), + [aux_sym_preproc_include_token1] = ACTIONS(2869), + [aux_sym_preproc_def_token1] = ACTIONS(2869), + [aux_sym_preproc_if_token1] = ACTIONS(2869), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2869), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2869), + [sym_preproc_directive] = ACTIONS(2869), + [anon_sym_LPAREN2] = ACTIONS(2871), + [anon_sym_BANG] = ACTIONS(2871), + [anon_sym_TILDE] = ACTIONS(2871), + [anon_sym_DASH] = ACTIONS(2869), + [anon_sym_PLUS] = ACTIONS(2869), + [anon_sym_STAR] = ACTIONS(2871), + [anon_sym_AMP_AMP] = ACTIONS(2871), + [anon_sym_AMP] = ACTIONS(2869), + [anon_sym_SEMI] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2869), + [anon_sym_extern] = ACTIONS(2869), + [anon_sym___attribute__] = ACTIONS(2869), + [anon_sym_COLON_COLON] = ACTIONS(2871), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2871), + [anon_sym___declspec] = ACTIONS(2869), + [anon_sym___based] = ACTIONS(2869), + [anon_sym___cdecl] = ACTIONS(2869), + [anon_sym___clrcall] = ACTIONS(2869), + [anon_sym___stdcall] = ACTIONS(2869), + [anon_sym___fastcall] = ACTIONS(2869), + [anon_sym___thiscall] = ACTIONS(2869), + [anon_sym___vectorcall] = ACTIONS(2869), + [anon_sym_LBRACE] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2869), + [anon_sym_static] = ACTIONS(2869), + [anon_sym_register] = ACTIONS(2869), + [anon_sym_inline] = ACTIONS(2869), + [anon_sym_thread_local] = ACTIONS(2869), + [anon_sym_const] = ACTIONS(2869), + [anon_sym_volatile] = ACTIONS(2869), + [anon_sym_restrict] = ACTIONS(2869), + [anon_sym__Atomic] = ACTIONS(2869), + [anon_sym_mutable] = ACTIONS(2869), + [anon_sym_constexpr] = ACTIONS(2869), + [anon_sym_constinit] = ACTIONS(2869), + [anon_sym_consteval] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2869), + [anon_sym_unsigned] = ACTIONS(2869), + [anon_sym_long] = ACTIONS(2869), + [anon_sym_short] = ACTIONS(2869), + [sym_primitive_type] = ACTIONS(2869), + [anon_sym_enum] = ACTIONS(2869), + [anon_sym_class] = ACTIONS(2869), + [anon_sym_struct] = ACTIONS(2869), + [anon_sym_union] = ACTIONS(2869), + [anon_sym_if] = ACTIONS(2869), + [anon_sym_switch] = ACTIONS(2869), + [anon_sym_case] = ACTIONS(2869), + [anon_sym_default] = ACTIONS(2869), + [anon_sym_while] = ACTIONS(2869), + [anon_sym_do] = ACTIONS(2869), + [anon_sym_for] = ACTIONS(2869), + [anon_sym_return] = ACTIONS(2869), + [anon_sym_break] = ACTIONS(2869), + [anon_sym_continue] = ACTIONS(2869), + [anon_sym_goto] = ACTIONS(2869), + [anon_sym_not] = ACTIONS(2869), + [anon_sym_compl] = ACTIONS(2869), + [anon_sym_DASH_DASH] = ACTIONS(2871), + [anon_sym_PLUS_PLUS] = ACTIONS(2871), + [anon_sym_sizeof] = ACTIONS(2869), + [sym_number_literal] = ACTIONS(2871), + [anon_sym_L_SQUOTE] = ACTIONS(2871), + [anon_sym_u_SQUOTE] = ACTIONS(2871), + [anon_sym_U_SQUOTE] = ACTIONS(2871), + [anon_sym_u8_SQUOTE] = ACTIONS(2871), + [anon_sym_SQUOTE] = ACTIONS(2871), + [anon_sym_L_DQUOTE] = ACTIONS(2871), + [anon_sym_u_DQUOTE] = ACTIONS(2871), + [anon_sym_U_DQUOTE] = ACTIONS(2871), + [anon_sym_u8_DQUOTE] = ACTIONS(2871), + [anon_sym_DQUOTE] = ACTIONS(2871), + [sym_true] = ACTIONS(2869), + [sym_false] = ACTIONS(2869), + [sym_null] = ACTIONS(2869), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2869), + [anon_sym_decltype] = ACTIONS(2869), + [anon_sym_virtual] = ACTIONS(2869), + [anon_sym_explicit] = ACTIONS(2869), + [anon_sym_typename] = ACTIONS(2869), + [anon_sym_template] = ACTIONS(2869), + [anon_sym_operator] = ACTIONS(2869), + [anon_sym_try] = ACTIONS(2869), + [anon_sym_delete] = ACTIONS(2869), + [anon_sym_throw] = ACTIONS(2869), + [anon_sym_namespace] = ACTIONS(2869), + [anon_sym_using] = ACTIONS(2869), + [anon_sym_static_assert] = ACTIONS(2869), + [anon_sym_concept] = ACTIONS(2869), + [anon_sym_co_return] = ACTIONS(2869), + [anon_sym_co_yield] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2869), + [anon_sym_new] = ACTIONS(2869), + [anon_sym_requires] = ACTIONS(2869), + [sym_this] = ACTIONS(2869), + [sym_nullptr] = ACTIONS(2869), + [sym_raw_string_literal] = ACTIONS(2871), }, - [1425] = { - [sym__expression] = STATE(2526), - [sym_conditional_expression] = STATE(2541), - [sym_assignment_expression] = STATE(2541), - [sym_pointer_expression] = STATE(2531), - [sym_unary_expression] = STATE(2541), - [sym_binary_expression] = STATE(2541), - [sym_update_expression] = STATE(2541), - [sym_cast_expression] = STATE(2541), - [sym_sizeof_expression] = STATE(2541), - [sym_subscript_expression] = STATE(2531), - [sym_call_expression] = STATE(2531), - [sym_field_expression] = STATE(2531), - [sym_compound_literal_expression] = STATE(2541), - [sym_parenthesized_expression] = STATE(2531), - [sym_char_literal] = STATE(2481), - [sym_concatenated_string] = STATE(2481), - [sym_string_literal] = STATE(2063), - [sym__class_name] = STATE(6239), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2541), - [sym_co_await_expression] = STATE(2541), - [sym_new_expression] = STATE(2541), - [sym_delete_expression] = STATE(2541), - [sym_requires_clause] = STATE(2541), - [sym_requires_expression] = STATE(2541), - [sym_lambda_expression] = STATE(2541), - [sym_lambda_capture_specifier] = STATE(4508), - [sym_fold_expression] = STATE(2541), - [sym_parameter_pack_expansion] = STATE(2541), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2531), - [sym_qualified_type_identifier] = STATE(6239), - [sym_user_defined_literal] = STATE(2541), - [sym_identifier] = ACTIONS(2306), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3569), - [anon_sym_LPAREN2] = ACTIONS(3571), - [anon_sym_BANG] = ACTIONS(2314), - [anon_sym_TILDE] = ACTIONS(2314), - [anon_sym_DASH] = ACTIONS(2312), - [anon_sym_PLUS] = ACTIONS(2312), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(2318), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(2322), - [anon_sym_PLUS_PLUS] = ACTIONS(2322), - [anon_sym_sizeof] = ACTIONS(2324), - [sym_number_literal] = ACTIONS(2326), - [anon_sym_L_SQUOTE] = ACTIONS(2328), - [anon_sym_u_SQUOTE] = ACTIONS(2328), - [anon_sym_U_SQUOTE] = ACTIONS(2328), - [anon_sym_u8_SQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2328), - [anon_sym_L_DQUOTE] = ACTIONS(2330), - [anon_sym_u_DQUOTE] = ACTIONS(2330), - [anon_sym_U_DQUOTE] = ACTIONS(2330), - [anon_sym_u8_DQUOTE] = ACTIONS(2330), - [anon_sym_DQUOTE] = ACTIONS(2330), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2334), - [anon_sym_co_await] = ACTIONS(2336), - [anon_sym_new] = ACTIONS(2338), - [anon_sym_requires] = ACTIONS(2340), - [sym_this] = ACTIONS(2332), - [sym_nullptr] = ACTIONS(2332), - [sym_raw_string_literal] = ACTIONS(2342), + [964] = { + [sym_identifier] = ACTIONS(2931), + [aux_sym_preproc_include_token1] = ACTIONS(2931), + [aux_sym_preproc_def_token1] = ACTIONS(2931), + [aux_sym_preproc_if_token1] = ACTIONS(2931), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2931), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2931), + [sym_preproc_directive] = ACTIONS(2931), + [anon_sym_LPAREN2] = ACTIONS(2933), + [anon_sym_BANG] = ACTIONS(2933), + [anon_sym_TILDE] = ACTIONS(2933), + [anon_sym_DASH] = ACTIONS(2931), + [anon_sym_PLUS] = ACTIONS(2931), + [anon_sym_STAR] = ACTIONS(2933), + [anon_sym_AMP_AMP] = ACTIONS(2933), + [anon_sym_AMP] = ACTIONS(2931), + [anon_sym_SEMI] = ACTIONS(2933), + [anon_sym_typedef] = ACTIONS(2931), + [anon_sym_extern] = ACTIONS(2931), + [anon_sym___attribute__] = ACTIONS(2931), + [anon_sym_COLON_COLON] = ACTIONS(2933), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2933), + [anon_sym___declspec] = ACTIONS(2931), + [anon_sym___based] = ACTIONS(2931), + [anon_sym___cdecl] = ACTIONS(2931), + [anon_sym___clrcall] = ACTIONS(2931), + [anon_sym___stdcall] = ACTIONS(2931), + [anon_sym___fastcall] = ACTIONS(2931), + [anon_sym___thiscall] = ACTIONS(2931), + [anon_sym___vectorcall] = ACTIONS(2931), + [anon_sym_LBRACE] = ACTIONS(2933), + [anon_sym_RBRACE] = ACTIONS(2933), + [anon_sym_LBRACK] = ACTIONS(2931), + [anon_sym_static] = ACTIONS(2931), + [anon_sym_register] = ACTIONS(2931), + [anon_sym_inline] = ACTIONS(2931), + [anon_sym_thread_local] = ACTIONS(2931), + [anon_sym_const] = ACTIONS(2931), + [anon_sym_volatile] = ACTIONS(2931), + [anon_sym_restrict] = ACTIONS(2931), + [anon_sym__Atomic] = ACTIONS(2931), + [anon_sym_mutable] = ACTIONS(2931), + [anon_sym_constexpr] = ACTIONS(2931), + [anon_sym_constinit] = ACTIONS(2931), + [anon_sym_consteval] = ACTIONS(2931), + [anon_sym_signed] = ACTIONS(2931), + [anon_sym_unsigned] = ACTIONS(2931), + [anon_sym_long] = ACTIONS(2931), + [anon_sym_short] = ACTIONS(2931), + [sym_primitive_type] = ACTIONS(2931), + [anon_sym_enum] = ACTIONS(2931), + [anon_sym_class] = ACTIONS(2931), + [anon_sym_struct] = ACTIONS(2931), + [anon_sym_union] = ACTIONS(2931), + [anon_sym_if] = ACTIONS(2931), + [anon_sym_switch] = ACTIONS(2931), + [anon_sym_case] = ACTIONS(2931), + [anon_sym_default] = ACTIONS(2931), + [anon_sym_while] = ACTIONS(2931), + [anon_sym_do] = ACTIONS(2931), + [anon_sym_for] = ACTIONS(2931), + [anon_sym_return] = ACTIONS(2931), + [anon_sym_break] = ACTIONS(2931), + [anon_sym_continue] = ACTIONS(2931), + [anon_sym_goto] = ACTIONS(2931), + [anon_sym_not] = ACTIONS(2931), + [anon_sym_compl] = ACTIONS(2931), + [anon_sym_DASH_DASH] = ACTIONS(2933), + [anon_sym_PLUS_PLUS] = ACTIONS(2933), + [anon_sym_sizeof] = ACTIONS(2931), + [sym_number_literal] = ACTIONS(2933), + [anon_sym_L_SQUOTE] = ACTIONS(2933), + [anon_sym_u_SQUOTE] = ACTIONS(2933), + [anon_sym_U_SQUOTE] = ACTIONS(2933), + [anon_sym_u8_SQUOTE] = ACTIONS(2933), + [anon_sym_SQUOTE] = ACTIONS(2933), + [anon_sym_L_DQUOTE] = ACTIONS(2933), + [anon_sym_u_DQUOTE] = ACTIONS(2933), + [anon_sym_U_DQUOTE] = ACTIONS(2933), + [anon_sym_u8_DQUOTE] = ACTIONS(2933), + [anon_sym_DQUOTE] = ACTIONS(2933), + [sym_true] = ACTIONS(2931), + [sym_false] = ACTIONS(2931), + [sym_null] = ACTIONS(2931), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2931), + [anon_sym_decltype] = ACTIONS(2931), + [anon_sym_virtual] = ACTIONS(2931), + [anon_sym_explicit] = ACTIONS(2931), + [anon_sym_typename] = ACTIONS(2931), + [anon_sym_template] = ACTIONS(2931), + [anon_sym_operator] = ACTIONS(2931), + [anon_sym_try] = ACTIONS(2931), + [anon_sym_delete] = ACTIONS(2931), + [anon_sym_throw] = ACTIONS(2931), + [anon_sym_namespace] = ACTIONS(2931), + [anon_sym_using] = ACTIONS(2931), + [anon_sym_static_assert] = ACTIONS(2931), + [anon_sym_concept] = ACTIONS(2931), + [anon_sym_co_return] = ACTIONS(2931), + [anon_sym_co_yield] = ACTIONS(2931), + [anon_sym_co_await] = ACTIONS(2931), + [anon_sym_new] = ACTIONS(2931), + [anon_sym_requires] = ACTIONS(2931), + [sym_this] = ACTIONS(2931), + [sym_nullptr] = ACTIONS(2931), + [sym_raw_string_literal] = ACTIONS(2933), }, - [1426] = { - [sym__expression] = STATE(3909), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3573), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [965] = { + [sym_identifier] = ACTIONS(2903), + [aux_sym_preproc_include_token1] = ACTIONS(2903), + [aux_sym_preproc_def_token1] = ACTIONS(2903), + [aux_sym_preproc_if_token1] = ACTIONS(2903), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2903), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2903), + [sym_preproc_directive] = ACTIONS(2903), + [anon_sym_LPAREN2] = ACTIONS(2905), + [anon_sym_BANG] = ACTIONS(2905), + [anon_sym_TILDE] = ACTIONS(2905), + [anon_sym_DASH] = ACTIONS(2903), + [anon_sym_PLUS] = ACTIONS(2903), + [anon_sym_STAR] = ACTIONS(2905), + [anon_sym_AMP_AMP] = ACTIONS(2905), + [anon_sym_AMP] = ACTIONS(2903), + [anon_sym_SEMI] = ACTIONS(2905), + [anon_sym_typedef] = ACTIONS(2903), + [anon_sym_extern] = ACTIONS(2903), + [anon_sym___attribute__] = ACTIONS(2903), + [anon_sym_COLON_COLON] = ACTIONS(2905), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2905), + [anon_sym___declspec] = ACTIONS(2903), + [anon_sym___based] = ACTIONS(2903), + [anon_sym___cdecl] = ACTIONS(2903), + [anon_sym___clrcall] = ACTIONS(2903), + [anon_sym___stdcall] = ACTIONS(2903), + [anon_sym___fastcall] = ACTIONS(2903), + [anon_sym___thiscall] = ACTIONS(2903), + [anon_sym___vectorcall] = ACTIONS(2903), + [anon_sym_LBRACE] = ACTIONS(2905), + [anon_sym_RBRACE] = ACTIONS(2905), + [anon_sym_LBRACK] = ACTIONS(2903), + [anon_sym_static] = ACTIONS(2903), + [anon_sym_register] = ACTIONS(2903), + [anon_sym_inline] = ACTIONS(2903), + [anon_sym_thread_local] = ACTIONS(2903), + [anon_sym_const] = ACTIONS(2903), + [anon_sym_volatile] = ACTIONS(2903), + [anon_sym_restrict] = ACTIONS(2903), + [anon_sym__Atomic] = ACTIONS(2903), + [anon_sym_mutable] = ACTIONS(2903), + [anon_sym_constexpr] = ACTIONS(2903), + [anon_sym_constinit] = ACTIONS(2903), + [anon_sym_consteval] = ACTIONS(2903), + [anon_sym_signed] = ACTIONS(2903), + [anon_sym_unsigned] = ACTIONS(2903), + [anon_sym_long] = ACTIONS(2903), + [anon_sym_short] = ACTIONS(2903), + [sym_primitive_type] = ACTIONS(2903), + [anon_sym_enum] = ACTIONS(2903), + [anon_sym_class] = ACTIONS(2903), + [anon_sym_struct] = ACTIONS(2903), + [anon_sym_union] = ACTIONS(2903), + [anon_sym_if] = ACTIONS(2903), + [anon_sym_switch] = ACTIONS(2903), + [anon_sym_case] = ACTIONS(2903), + [anon_sym_default] = ACTIONS(2903), + [anon_sym_while] = ACTIONS(2903), + [anon_sym_do] = ACTIONS(2903), + [anon_sym_for] = ACTIONS(2903), + [anon_sym_return] = ACTIONS(2903), + [anon_sym_break] = ACTIONS(2903), + [anon_sym_continue] = ACTIONS(2903), + [anon_sym_goto] = ACTIONS(2903), + [anon_sym_not] = ACTIONS(2903), + [anon_sym_compl] = ACTIONS(2903), + [anon_sym_DASH_DASH] = ACTIONS(2905), + [anon_sym_PLUS_PLUS] = ACTIONS(2905), + [anon_sym_sizeof] = ACTIONS(2903), + [sym_number_literal] = ACTIONS(2905), + [anon_sym_L_SQUOTE] = ACTIONS(2905), + [anon_sym_u_SQUOTE] = ACTIONS(2905), + [anon_sym_U_SQUOTE] = ACTIONS(2905), + [anon_sym_u8_SQUOTE] = ACTIONS(2905), + [anon_sym_SQUOTE] = ACTIONS(2905), + [anon_sym_L_DQUOTE] = ACTIONS(2905), + [anon_sym_u_DQUOTE] = ACTIONS(2905), + [anon_sym_U_DQUOTE] = ACTIONS(2905), + [anon_sym_u8_DQUOTE] = ACTIONS(2905), + [anon_sym_DQUOTE] = ACTIONS(2905), + [sym_true] = ACTIONS(2903), + [sym_false] = ACTIONS(2903), + [sym_null] = ACTIONS(2903), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2903), + [anon_sym_decltype] = ACTIONS(2903), + [anon_sym_virtual] = ACTIONS(2903), + [anon_sym_explicit] = ACTIONS(2903), + [anon_sym_typename] = ACTIONS(2903), + [anon_sym_template] = ACTIONS(2903), + [anon_sym_operator] = ACTIONS(2903), + [anon_sym_try] = ACTIONS(2903), + [anon_sym_delete] = ACTIONS(2903), + [anon_sym_throw] = ACTIONS(2903), + [anon_sym_namespace] = ACTIONS(2903), + [anon_sym_using] = ACTIONS(2903), + [anon_sym_static_assert] = ACTIONS(2903), + [anon_sym_concept] = ACTIONS(2903), + [anon_sym_co_return] = ACTIONS(2903), + [anon_sym_co_yield] = ACTIONS(2903), + [anon_sym_co_await] = ACTIONS(2903), + [anon_sym_new] = ACTIONS(2903), + [anon_sym_requires] = ACTIONS(2903), + [sym_this] = ACTIONS(2903), + [sym_nullptr] = ACTIONS(2903), + [sym_raw_string_literal] = ACTIONS(2905), }, - [1427] = { - [sym__expression] = STATE(3794), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3575), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [966] = { + [sym_identifier] = ACTIONS(2907), + [aux_sym_preproc_include_token1] = ACTIONS(2907), + [aux_sym_preproc_def_token1] = ACTIONS(2907), + [aux_sym_preproc_if_token1] = ACTIONS(2907), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2907), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2907), + [sym_preproc_directive] = ACTIONS(2907), + [anon_sym_LPAREN2] = ACTIONS(2909), + [anon_sym_BANG] = ACTIONS(2909), + [anon_sym_TILDE] = ACTIONS(2909), + [anon_sym_DASH] = ACTIONS(2907), + [anon_sym_PLUS] = ACTIONS(2907), + [anon_sym_STAR] = ACTIONS(2909), + [anon_sym_AMP_AMP] = ACTIONS(2909), + [anon_sym_AMP] = ACTIONS(2907), + [anon_sym_SEMI] = ACTIONS(2909), + [anon_sym_typedef] = ACTIONS(2907), + [anon_sym_extern] = ACTIONS(2907), + [anon_sym___attribute__] = ACTIONS(2907), + [anon_sym_COLON_COLON] = ACTIONS(2909), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2909), + [anon_sym___declspec] = ACTIONS(2907), + [anon_sym___based] = ACTIONS(2907), + [anon_sym___cdecl] = ACTIONS(2907), + [anon_sym___clrcall] = ACTIONS(2907), + [anon_sym___stdcall] = ACTIONS(2907), + [anon_sym___fastcall] = ACTIONS(2907), + [anon_sym___thiscall] = ACTIONS(2907), + [anon_sym___vectorcall] = ACTIONS(2907), + [anon_sym_LBRACE] = ACTIONS(2909), + [anon_sym_RBRACE] = ACTIONS(2909), + [anon_sym_LBRACK] = ACTIONS(2907), + [anon_sym_static] = ACTIONS(2907), + [anon_sym_register] = ACTIONS(2907), + [anon_sym_inline] = ACTIONS(2907), + [anon_sym_thread_local] = ACTIONS(2907), + [anon_sym_const] = ACTIONS(2907), + [anon_sym_volatile] = ACTIONS(2907), + [anon_sym_restrict] = ACTIONS(2907), + [anon_sym__Atomic] = ACTIONS(2907), + [anon_sym_mutable] = ACTIONS(2907), + [anon_sym_constexpr] = ACTIONS(2907), + [anon_sym_constinit] = ACTIONS(2907), + [anon_sym_consteval] = ACTIONS(2907), + [anon_sym_signed] = ACTIONS(2907), + [anon_sym_unsigned] = ACTIONS(2907), + [anon_sym_long] = ACTIONS(2907), + [anon_sym_short] = ACTIONS(2907), + [sym_primitive_type] = ACTIONS(2907), + [anon_sym_enum] = ACTIONS(2907), + [anon_sym_class] = ACTIONS(2907), + [anon_sym_struct] = ACTIONS(2907), + [anon_sym_union] = ACTIONS(2907), + [anon_sym_if] = ACTIONS(2907), + [anon_sym_switch] = ACTIONS(2907), + [anon_sym_case] = ACTIONS(2907), + [anon_sym_default] = ACTIONS(2907), + [anon_sym_while] = ACTIONS(2907), + [anon_sym_do] = ACTIONS(2907), + [anon_sym_for] = ACTIONS(2907), + [anon_sym_return] = ACTIONS(2907), + [anon_sym_break] = ACTIONS(2907), + [anon_sym_continue] = ACTIONS(2907), + [anon_sym_goto] = ACTIONS(2907), + [anon_sym_not] = ACTIONS(2907), + [anon_sym_compl] = ACTIONS(2907), + [anon_sym_DASH_DASH] = ACTIONS(2909), + [anon_sym_PLUS_PLUS] = ACTIONS(2909), + [anon_sym_sizeof] = ACTIONS(2907), + [sym_number_literal] = ACTIONS(2909), + [anon_sym_L_SQUOTE] = ACTIONS(2909), + [anon_sym_u_SQUOTE] = ACTIONS(2909), + [anon_sym_U_SQUOTE] = ACTIONS(2909), + [anon_sym_u8_SQUOTE] = ACTIONS(2909), + [anon_sym_SQUOTE] = ACTIONS(2909), + [anon_sym_L_DQUOTE] = ACTIONS(2909), + [anon_sym_u_DQUOTE] = ACTIONS(2909), + [anon_sym_U_DQUOTE] = ACTIONS(2909), + [anon_sym_u8_DQUOTE] = ACTIONS(2909), + [anon_sym_DQUOTE] = ACTIONS(2909), + [sym_true] = ACTIONS(2907), + [sym_false] = ACTIONS(2907), + [sym_null] = ACTIONS(2907), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2907), + [anon_sym_decltype] = ACTIONS(2907), + [anon_sym_virtual] = ACTIONS(2907), + [anon_sym_explicit] = ACTIONS(2907), + [anon_sym_typename] = ACTIONS(2907), + [anon_sym_template] = ACTIONS(2907), + [anon_sym_operator] = ACTIONS(2907), + [anon_sym_try] = ACTIONS(2907), + [anon_sym_delete] = ACTIONS(2907), + [anon_sym_throw] = ACTIONS(2907), + [anon_sym_namespace] = ACTIONS(2907), + [anon_sym_using] = ACTIONS(2907), + [anon_sym_static_assert] = ACTIONS(2907), + [anon_sym_concept] = ACTIONS(2907), + [anon_sym_co_return] = ACTIONS(2907), + [anon_sym_co_yield] = ACTIONS(2907), + [anon_sym_co_await] = ACTIONS(2907), + [anon_sym_new] = ACTIONS(2907), + [anon_sym_requires] = ACTIONS(2907), + [sym_this] = ACTIONS(2907), + [sym_nullptr] = ACTIONS(2907), + [sym_raw_string_literal] = ACTIONS(2909), }, - [1428] = { - [sym__expression] = STATE(3515), - [sym_comma_expression] = STATE(6251), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [967] = { + [sym_identifier] = ACTIONS(2911), + [aux_sym_preproc_include_token1] = ACTIONS(2911), + [aux_sym_preproc_def_token1] = ACTIONS(2911), + [aux_sym_preproc_if_token1] = ACTIONS(2911), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2911), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2911), + [sym_preproc_directive] = ACTIONS(2911), + [anon_sym_LPAREN2] = ACTIONS(2913), + [anon_sym_BANG] = ACTIONS(2913), + [anon_sym_TILDE] = ACTIONS(2913), + [anon_sym_DASH] = ACTIONS(2911), + [anon_sym_PLUS] = ACTIONS(2911), + [anon_sym_STAR] = ACTIONS(2913), + [anon_sym_AMP_AMP] = ACTIONS(2913), + [anon_sym_AMP] = ACTIONS(2911), + [anon_sym_SEMI] = ACTIONS(2913), + [anon_sym_typedef] = ACTIONS(2911), + [anon_sym_extern] = ACTIONS(2911), + [anon_sym___attribute__] = ACTIONS(2911), + [anon_sym_COLON_COLON] = ACTIONS(2913), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2913), + [anon_sym___declspec] = ACTIONS(2911), + [anon_sym___based] = ACTIONS(2911), + [anon_sym___cdecl] = ACTIONS(2911), + [anon_sym___clrcall] = ACTIONS(2911), + [anon_sym___stdcall] = ACTIONS(2911), + [anon_sym___fastcall] = ACTIONS(2911), + [anon_sym___thiscall] = ACTIONS(2911), + [anon_sym___vectorcall] = ACTIONS(2911), + [anon_sym_LBRACE] = ACTIONS(2913), + [anon_sym_RBRACE] = ACTIONS(2913), + [anon_sym_LBRACK] = ACTIONS(2911), + [anon_sym_static] = ACTIONS(2911), + [anon_sym_register] = ACTIONS(2911), + [anon_sym_inline] = ACTIONS(2911), + [anon_sym_thread_local] = ACTIONS(2911), + [anon_sym_const] = ACTIONS(2911), + [anon_sym_volatile] = ACTIONS(2911), + [anon_sym_restrict] = ACTIONS(2911), + [anon_sym__Atomic] = ACTIONS(2911), + [anon_sym_mutable] = ACTIONS(2911), + [anon_sym_constexpr] = ACTIONS(2911), + [anon_sym_constinit] = ACTIONS(2911), + [anon_sym_consteval] = ACTIONS(2911), + [anon_sym_signed] = ACTIONS(2911), + [anon_sym_unsigned] = ACTIONS(2911), + [anon_sym_long] = ACTIONS(2911), + [anon_sym_short] = ACTIONS(2911), + [sym_primitive_type] = ACTIONS(2911), + [anon_sym_enum] = ACTIONS(2911), + [anon_sym_class] = ACTIONS(2911), + [anon_sym_struct] = ACTIONS(2911), + [anon_sym_union] = ACTIONS(2911), + [anon_sym_if] = ACTIONS(2911), + [anon_sym_switch] = ACTIONS(2911), + [anon_sym_case] = ACTIONS(2911), + [anon_sym_default] = ACTIONS(2911), + [anon_sym_while] = ACTIONS(2911), + [anon_sym_do] = ACTIONS(2911), + [anon_sym_for] = ACTIONS(2911), + [anon_sym_return] = ACTIONS(2911), + [anon_sym_break] = ACTIONS(2911), + [anon_sym_continue] = ACTIONS(2911), + [anon_sym_goto] = ACTIONS(2911), + [anon_sym_not] = ACTIONS(2911), + [anon_sym_compl] = ACTIONS(2911), + [anon_sym_DASH_DASH] = ACTIONS(2913), + [anon_sym_PLUS_PLUS] = ACTIONS(2913), + [anon_sym_sizeof] = ACTIONS(2911), + [sym_number_literal] = ACTIONS(2913), + [anon_sym_L_SQUOTE] = ACTIONS(2913), + [anon_sym_u_SQUOTE] = ACTIONS(2913), + [anon_sym_U_SQUOTE] = ACTIONS(2913), + [anon_sym_u8_SQUOTE] = ACTIONS(2913), + [anon_sym_SQUOTE] = ACTIONS(2913), + [anon_sym_L_DQUOTE] = ACTIONS(2913), + [anon_sym_u_DQUOTE] = ACTIONS(2913), + [anon_sym_U_DQUOTE] = ACTIONS(2913), + [anon_sym_u8_DQUOTE] = ACTIONS(2913), + [anon_sym_DQUOTE] = ACTIONS(2913), + [sym_true] = ACTIONS(2911), + [sym_false] = ACTIONS(2911), + [sym_null] = ACTIONS(2911), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2911), + [anon_sym_decltype] = ACTIONS(2911), + [anon_sym_virtual] = ACTIONS(2911), + [anon_sym_explicit] = ACTIONS(2911), + [anon_sym_typename] = ACTIONS(2911), + [anon_sym_template] = ACTIONS(2911), + [anon_sym_operator] = ACTIONS(2911), + [anon_sym_try] = ACTIONS(2911), + [anon_sym_delete] = ACTIONS(2911), + [anon_sym_throw] = ACTIONS(2911), + [anon_sym_namespace] = ACTIONS(2911), + [anon_sym_using] = ACTIONS(2911), + [anon_sym_static_assert] = ACTIONS(2911), + [anon_sym_concept] = ACTIONS(2911), + [anon_sym_co_return] = ACTIONS(2911), + [anon_sym_co_yield] = ACTIONS(2911), + [anon_sym_co_await] = ACTIONS(2911), + [anon_sym_new] = ACTIONS(2911), + [anon_sym_requires] = ACTIONS(2911), + [sym_this] = ACTIONS(2911), + [sym_nullptr] = ACTIONS(2911), + [sym_raw_string_literal] = ACTIONS(2913), }, - [1429] = { - [sym__expression] = STATE(3947), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(3577), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [968] = { + [sym_identifier] = ACTIONS(2915), + [aux_sym_preproc_include_token1] = ACTIONS(2915), + [aux_sym_preproc_def_token1] = ACTIONS(2915), + [aux_sym_preproc_if_token1] = ACTIONS(2915), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2915), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2915), + [sym_preproc_directive] = ACTIONS(2915), + [anon_sym_LPAREN2] = ACTIONS(2917), + [anon_sym_BANG] = ACTIONS(2917), + [anon_sym_TILDE] = ACTIONS(2917), + [anon_sym_DASH] = ACTIONS(2915), + [anon_sym_PLUS] = ACTIONS(2915), + [anon_sym_STAR] = ACTIONS(2917), + [anon_sym_AMP_AMP] = ACTIONS(2917), + [anon_sym_AMP] = ACTIONS(2915), + [anon_sym_SEMI] = ACTIONS(2917), + [anon_sym_typedef] = ACTIONS(2915), + [anon_sym_extern] = ACTIONS(2915), + [anon_sym___attribute__] = ACTIONS(2915), + [anon_sym_COLON_COLON] = ACTIONS(2917), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2917), + [anon_sym___declspec] = ACTIONS(2915), + [anon_sym___based] = ACTIONS(2915), + [anon_sym___cdecl] = ACTIONS(2915), + [anon_sym___clrcall] = ACTIONS(2915), + [anon_sym___stdcall] = ACTIONS(2915), + [anon_sym___fastcall] = ACTIONS(2915), + [anon_sym___thiscall] = ACTIONS(2915), + [anon_sym___vectorcall] = ACTIONS(2915), + [anon_sym_LBRACE] = ACTIONS(2917), + [anon_sym_RBRACE] = ACTIONS(2917), + [anon_sym_LBRACK] = ACTIONS(2915), + [anon_sym_static] = ACTIONS(2915), + [anon_sym_register] = ACTIONS(2915), + [anon_sym_inline] = ACTIONS(2915), + [anon_sym_thread_local] = ACTIONS(2915), + [anon_sym_const] = ACTIONS(2915), + [anon_sym_volatile] = ACTIONS(2915), + [anon_sym_restrict] = ACTIONS(2915), + [anon_sym__Atomic] = ACTIONS(2915), + [anon_sym_mutable] = ACTIONS(2915), + [anon_sym_constexpr] = ACTIONS(2915), + [anon_sym_constinit] = ACTIONS(2915), + [anon_sym_consteval] = ACTIONS(2915), + [anon_sym_signed] = ACTIONS(2915), + [anon_sym_unsigned] = ACTIONS(2915), + [anon_sym_long] = ACTIONS(2915), + [anon_sym_short] = ACTIONS(2915), + [sym_primitive_type] = ACTIONS(2915), + [anon_sym_enum] = ACTIONS(2915), + [anon_sym_class] = ACTIONS(2915), + [anon_sym_struct] = ACTIONS(2915), + [anon_sym_union] = ACTIONS(2915), + [anon_sym_if] = ACTIONS(2915), + [anon_sym_switch] = ACTIONS(2915), + [anon_sym_case] = ACTIONS(2915), + [anon_sym_default] = ACTIONS(2915), + [anon_sym_while] = ACTIONS(2915), + [anon_sym_do] = ACTIONS(2915), + [anon_sym_for] = ACTIONS(2915), + [anon_sym_return] = ACTIONS(2915), + [anon_sym_break] = ACTIONS(2915), + [anon_sym_continue] = ACTIONS(2915), + [anon_sym_goto] = ACTIONS(2915), + [anon_sym_not] = ACTIONS(2915), + [anon_sym_compl] = ACTIONS(2915), + [anon_sym_DASH_DASH] = ACTIONS(2917), + [anon_sym_PLUS_PLUS] = ACTIONS(2917), + [anon_sym_sizeof] = ACTIONS(2915), + [sym_number_literal] = ACTIONS(2917), + [anon_sym_L_SQUOTE] = ACTIONS(2917), + [anon_sym_u_SQUOTE] = ACTIONS(2917), + [anon_sym_U_SQUOTE] = ACTIONS(2917), + [anon_sym_u8_SQUOTE] = ACTIONS(2917), + [anon_sym_SQUOTE] = ACTIONS(2917), + [anon_sym_L_DQUOTE] = ACTIONS(2917), + [anon_sym_u_DQUOTE] = ACTIONS(2917), + [anon_sym_U_DQUOTE] = ACTIONS(2917), + [anon_sym_u8_DQUOTE] = ACTIONS(2917), + [anon_sym_DQUOTE] = ACTIONS(2917), + [sym_true] = ACTIONS(2915), + [sym_false] = ACTIONS(2915), + [sym_null] = ACTIONS(2915), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2915), + [anon_sym_decltype] = ACTIONS(2915), + [anon_sym_virtual] = ACTIONS(2915), + [anon_sym_explicit] = ACTIONS(2915), + [anon_sym_typename] = ACTIONS(2915), + [anon_sym_template] = ACTIONS(2915), + [anon_sym_operator] = ACTIONS(2915), + [anon_sym_try] = ACTIONS(2915), + [anon_sym_delete] = ACTIONS(2915), + [anon_sym_throw] = ACTIONS(2915), + [anon_sym_namespace] = ACTIONS(2915), + [anon_sym_using] = ACTIONS(2915), + [anon_sym_static_assert] = ACTIONS(2915), + [anon_sym_concept] = ACTIONS(2915), + [anon_sym_co_return] = ACTIONS(2915), + [anon_sym_co_yield] = ACTIONS(2915), + [anon_sym_co_await] = ACTIONS(2915), + [anon_sym_new] = ACTIONS(2915), + [anon_sym_requires] = ACTIONS(2915), + [sym_this] = ACTIONS(2915), + [sym_nullptr] = ACTIONS(2915), + [sym_raw_string_literal] = ACTIONS(2917), }, - [1430] = { - [sym__expression] = STATE(3844), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(3579), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [969] = { + [ts_builtin_sym_end] = ACTIONS(2925), + [sym_identifier] = ACTIONS(2923), + [aux_sym_preproc_include_token1] = ACTIONS(2923), + [aux_sym_preproc_def_token1] = ACTIONS(2923), + [aux_sym_preproc_if_token1] = ACTIONS(2923), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2923), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2923), + [sym_preproc_directive] = ACTIONS(2923), + [anon_sym_LPAREN2] = ACTIONS(2925), + [anon_sym_BANG] = ACTIONS(2925), + [anon_sym_TILDE] = ACTIONS(2925), + [anon_sym_DASH] = ACTIONS(2923), + [anon_sym_PLUS] = ACTIONS(2923), + [anon_sym_STAR] = ACTIONS(2925), + [anon_sym_AMP_AMP] = ACTIONS(2925), + [anon_sym_AMP] = ACTIONS(2923), + [anon_sym_SEMI] = ACTIONS(2925), + [anon_sym_typedef] = ACTIONS(2923), + [anon_sym_extern] = ACTIONS(2923), + [anon_sym___attribute__] = ACTIONS(2923), + [anon_sym_COLON_COLON] = ACTIONS(2925), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2925), + [anon_sym___declspec] = ACTIONS(2923), + [anon_sym___based] = ACTIONS(2923), + [anon_sym___cdecl] = ACTIONS(2923), + [anon_sym___clrcall] = ACTIONS(2923), + [anon_sym___stdcall] = ACTIONS(2923), + [anon_sym___fastcall] = ACTIONS(2923), + [anon_sym___thiscall] = ACTIONS(2923), + [anon_sym___vectorcall] = ACTIONS(2923), + [anon_sym_LBRACE] = ACTIONS(2925), + [anon_sym_LBRACK] = ACTIONS(2923), + [anon_sym_static] = ACTIONS(2923), + [anon_sym_register] = ACTIONS(2923), + [anon_sym_inline] = ACTIONS(2923), + [anon_sym_thread_local] = ACTIONS(2923), + [anon_sym_const] = ACTIONS(2923), + [anon_sym_volatile] = ACTIONS(2923), + [anon_sym_restrict] = ACTIONS(2923), + [anon_sym__Atomic] = ACTIONS(2923), + [anon_sym_mutable] = ACTIONS(2923), + [anon_sym_constexpr] = ACTIONS(2923), + [anon_sym_constinit] = ACTIONS(2923), + [anon_sym_consteval] = ACTIONS(2923), + [anon_sym_signed] = ACTIONS(2923), + [anon_sym_unsigned] = ACTIONS(2923), + [anon_sym_long] = ACTIONS(2923), + [anon_sym_short] = ACTIONS(2923), + [sym_primitive_type] = ACTIONS(2923), + [anon_sym_enum] = ACTIONS(2923), + [anon_sym_class] = ACTIONS(2923), + [anon_sym_struct] = ACTIONS(2923), + [anon_sym_union] = ACTIONS(2923), + [anon_sym_if] = ACTIONS(2923), + [anon_sym_switch] = ACTIONS(2923), + [anon_sym_case] = ACTIONS(2923), + [anon_sym_default] = ACTIONS(2923), + [anon_sym_while] = ACTIONS(2923), + [anon_sym_do] = ACTIONS(2923), + [anon_sym_for] = ACTIONS(2923), + [anon_sym_return] = ACTIONS(2923), + [anon_sym_break] = ACTIONS(2923), + [anon_sym_continue] = ACTIONS(2923), + [anon_sym_goto] = ACTIONS(2923), + [anon_sym_not] = ACTIONS(2923), + [anon_sym_compl] = ACTIONS(2923), + [anon_sym_DASH_DASH] = ACTIONS(2925), + [anon_sym_PLUS_PLUS] = ACTIONS(2925), + [anon_sym_sizeof] = ACTIONS(2923), + [sym_number_literal] = ACTIONS(2925), + [anon_sym_L_SQUOTE] = ACTIONS(2925), + [anon_sym_u_SQUOTE] = ACTIONS(2925), + [anon_sym_U_SQUOTE] = ACTIONS(2925), + [anon_sym_u8_SQUOTE] = ACTIONS(2925), + [anon_sym_SQUOTE] = ACTIONS(2925), + [anon_sym_L_DQUOTE] = ACTIONS(2925), + [anon_sym_u_DQUOTE] = ACTIONS(2925), + [anon_sym_U_DQUOTE] = ACTIONS(2925), + [anon_sym_u8_DQUOTE] = ACTIONS(2925), + [anon_sym_DQUOTE] = ACTIONS(2925), + [sym_true] = ACTIONS(2923), + [sym_false] = ACTIONS(2923), + [sym_null] = ACTIONS(2923), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2923), + [anon_sym_decltype] = ACTIONS(2923), + [anon_sym_virtual] = ACTIONS(2923), + [anon_sym_explicit] = ACTIONS(2923), + [anon_sym_typename] = ACTIONS(2923), + [anon_sym_template] = ACTIONS(2923), + [anon_sym_operator] = ACTIONS(2923), + [anon_sym_try] = ACTIONS(2923), + [anon_sym_delete] = ACTIONS(2923), + [anon_sym_throw] = ACTIONS(2923), + [anon_sym_namespace] = ACTIONS(2923), + [anon_sym_using] = ACTIONS(2923), + [anon_sym_static_assert] = ACTIONS(2923), + [anon_sym_concept] = ACTIONS(2923), + [anon_sym_co_return] = ACTIONS(2923), + [anon_sym_co_yield] = ACTIONS(2923), + [anon_sym_co_await] = ACTIONS(2923), + [anon_sym_new] = ACTIONS(2923), + [anon_sym_requires] = ACTIONS(2923), + [sym_this] = ACTIONS(2923), + [sym_nullptr] = ACTIONS(2923), + [sym_raw_string_literal] = ACTIONS(2925), }, - [1431] = { - [sym__expression] = STATE(2558), - [sym_conditional_expression] = STATE(2541), - [sym_assignment_expression] = STATE(2541), - [sym_pointer_expression] = STATE(2531), - [sym_unary_expression] = STATE(2541), - [sym_binary_expression] = STATE(2541), - [sym_update_expression] = STATE(2541), - [sym_cast_expression] = STATE(2541), - [sym_sizeof_expression] = STATE(2541), - [sym_subscript_expression] = STATE(2531), - [sym_call_expression] = STATE(2531), - [sym_field_expression] = STATE(2531), - [sym_compound_literal_expression] = STATE(2541), - [sym_parenthesized_expression] = STATE(2531), - [sym_char_literal] = STATE(2481), - [sym_concatenated_string] = STATE(2481), - [sym_string_literal] = STATE(2063), - [sym__class_name] = STATE(6239), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2541), - [sym_co_await_expression] = STATE(2541), - [sym_new_expression] = STATE(2541), - [sym_delete_expression] = STATE(2541), - [sym_requires_clause] = STATE(2541), - [sym_requires_expression] = STATE(2541), - [sym_lambda_expression] = STATE(2541), - [sym_lambda_capture_specifier] = STATE(4508), - [sym_fold_expression] = STATE(2541), - [sym_parameter_pack_expansion] = STATE(2541), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2531), - [sym_qualified_type_identifier] = STATE(6239), - [sym_user_defined_literal] = STATE(2541), - [sym_identifier] = ACTIONS(2306), - [anon_sym_LPAREN2] = ACTIONS(2310), - [anon_sym_BANG] = ACTIONS(2314), - [anon_sym_TILDE] = ACTIONS(2314), - [anon_sym_DASH] = ACTIONS(2312), - [anon_sym_PLUS] = ACTIONS(2312), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(2318), - [anon_sym_LBRACK] = ACTIONS(2272), - [anon_sym_RBRACK] = ACTIONS(3581), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(2322), - [anon_sym_PLUS_PLUS] = ACTIONS(2322), - [anon_sym_sizeof] = ACTIONS(2324), - [sym_number_literal] = ACTIONS(2326), - [anon_sym_L_SQUOTE] = ACTIONS(2328), - [anon_sym_u_SQUOTE] = ACTIONS(2328), - [anon_sym_U_SQUOTE] = ACTIONS(2328), - [anon_sym_u8_SQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2328), - [anon_sym_L_DQUOTE] = ACTIONS(2330), - [anon_sym_u_DQUOTE] = ACTIONS(2330), - [anon_sym_U_DQUOTE] = ACTIONS(2330), - [anon_sym_u8_DQUOTE] = ACTIONS(2330), - [anon_sym_DQUOTE] = ACTIONS(2330), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2334), - [anon_sym_co_await] = ACTIONS(2336), - [anon_sym_new] = ACTIONS(2338), - [anon_sym_requires] = ACTIONS(2340), - [sym_this] = ACTIONS(2332), - [sym_nullptr] = ACTIONS(2332), - [sym_raw_string_literal] = ACTIONS(2342), + [970] = { + [sym_identifier] = ACTIONS(2919), + [aux_sym_preproc_include_token1] = ACTIONS(2919), + [aux_sym_preproc_def_token1] = ACTIONS(2919), + [aux_sym_preproc_if_token1] = ACTIONS(2919), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2919), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2919), + [sym_preproc_directive] = ACTIONS(2919), + [anon_sym_LPAREN2] = ACTIONS(2921), + [anon_sym_BANG] = ACTIONS(2921), + [anon_sym_TILDE] = ACTIONS(2921), + [anon_sym_DASH] = ACTIONS(2919), + [anon_sym_PLUS] = ACTIONS(2919), + [anon_sym_STAR] = ACTIONS(2921), + [anon_sym_AMP_AMP] = ACTIONS(2921), + [anon_sym_AMP] = ACTIONS(2919), + [anon_sym_SEMI] = ACTIONS(2921), + [anon_sym_typedef] = ACTIONS(2919), + [anon_sym_extern] = ACTIONS(2919), + [anon_sym___attribute__] = ACTIONS(2919), + [anon_sym_COLON_COLON] = ACTIONS(2921), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2921), + [anon_sym___declspec] = ACTIONS(2919), + [anon_sym___based] = ACTIONS(2919), + [anon_sym___cdecl] = ACTIONS(2919), + [anon_sym___clrcall] = ACTIONS(2919), + [anon_sym___stdcall] = ACTIONS(2919), + [anon_sym___fastcall] = ACTIONS(2919), + [anon_sym___thiscall] = ACTIONS(2919), + [anon_sym___vectorcall] = ACTIONS(2919), + [anon_sym_LBRACE] = ACTIONS(2921), + [anon_sym_RBRACE] = ACTIONS(2921), + [anon_sym_LBRACK] = ACTIONS(2919), + [anon_sym_static] = ACTIONS(2919), + [anon_sym_register] = ACTIONS(2919), + [anon_sym_inline] = ACTIONS(2919), + [anon_sym_thread_local] = ACTIONS(2919), + [anon_sym_const] = ACTIONS(2919), + [anon_sym_volatile] = ACTIONS(2919), + [anon_sym_restrict] = ACTIONS(2919), + [anon_sym__Atomic] = ACTIONS(2919), + [anon_sym_mutable] = ACTIONS(2919), + [anon_sym_constexpr] = ACTIONS(2919), + [anon_sym_constinit] = ACTIONS(2919), + [anon_sym_consteval] = ACTIONS(2919), + [anon_sym_signed] = ACTIONS(2919), + [anon_sym_unsigned] = ACTIONS(2919), + [anon_sym_long] = ACTIONS(2919), + [anon_sym_short] = ACTIONS(2919), + [sym_primitive_type] = ACTIONS(2919), + [anon_sym_enum] = ACTIONS(2919), + [anon_sym_class] = ACTIONS(2919), + [anon_sym_struct] = ACTIONS(2919), + [anon_sym_union] = ACTIONS(2919), + [anon_sym_if] = ACTIONS(2919), + [anon_sym_switch] = ACTIONS(2919), + [anon_sym_case] = ACTIONS(2919), + [anon_sym_default] = ACTIONS(2919), + [anon_sym_while] = ACTIONS(2919), + [anon_sym_do] = ACTIONS(2919), + [anon_sym_for] = ACTIONS(2919), + [anon_sym_return] = ACTIONS(2919), + [anon_sym_break] = ACTIONS(2919), + [anon_sym_continue] = ACTIONS(2919), + [anon_sym_goto] = ACTIONS(2919), + [anon_sym_not] = ACTIONS(2919), + [anon_sym_compl] = ACTIONS(2919), + [anon_sym_DASH_DASH] = ACTIONS(2921), + [anon_sym_PLUS_PLUS] = ACTIONS(2921), + [anon_sym_sizeof] = ACTIONS(2919), + [sym_number_literal] = ACTIONS(2921), + [anon_sym_L_SQUOTE] = ACTIONS(2921), + [anon_sym_u_SQUOTE] = ACTIONS(2921), + [anon_sym_U_SQUOTE] = ACTIONS(2921), + [anon_sym_u8_SQUOTE] = ACTIONS(2921), + [anon_sym_SQUOTE] = ACTIONS(2921), + [anon_sym_L_DQUOTE] = ACTIONS(2921), + [anon_sym_u_DQUOTE] = ACTIONS(2921), + [anon_sym_U_DQUOTE] = ACTIONS(2921), + [anon_sym_u8_DQUOTE] = ACTIONS(2921), + [anon_sym_DQUOTE] = ACTIONS(2921), + [sym_true] = ACTIONS(2919), + [sym_false] = ACTIONS(2919), + [sym_null] = ACTIONS(2919), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2919), + [anon_sym_decltype] = ACTIONS(2919), + [anon_sym_virtual] = ACTIONS(2919), + [anon_sym_explicit] = ACTIONS(2919), + [anon_sym_typename] = ACTIONS(2919), + [anon_sym_template] = ACTIONS(2919), + [anon_sym_operator] = ACTIONS(2919), + [anon_sym_try] = ACTIONS(2919), + [anon_sym_delete] = ACTIONS(2919), + [anon_sym_throw] = ACTIONS(2919), + [anon_sym_namespace] = ACTIONS(2919), + [anon_sym_using] = ACTIONS(2919), + [anon_sym_static_assert] = ACTIONS(2919), + [anon_sym_concept] = ACTIONS(2919), + [anon_sym_co_return] = ACTIONS(2919), + [anon_sym_co_yield] = ACTIONS(2919), + [anon_sym_co_await] = ACTIONS(2919), + [anon_sym_new] = ACTIONS(2919), + [anon_sym_requires] = ACTIONS(2919), + [sym_this] = ACTIONS(2919), + [sym_nullptr] = ACTIONS(2919), + [sym_raw_string_literal] = ACTIONS(2921), }, - [1432] = { - [sym__expression] = STATE(3785), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [971] = { + [ts_builtin_sym_end] = ACTIONS(2731), + [sym_identifier] = ACTIONS(2729), + [aux_sym_preproc_include_token1] = ACTIONS(2729), + [aux_sym_preproc_def_token1] = ACTIONS(2729), + [aux_sym_preproc_if_token1] = ACTIONS(2729), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2729), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2729), + [sym_preproc_directive] = ACTIONS(2729), + [anon_sym_LPAREN2] = ACTIONS(2731), + [anon_sym_BANG] = ACTIONS(2731), + [anon_sym_TILDE] = ACTIONS(2731), + [anon_sym_DASH] = ACTIONS(2729), + [anon_sym_PLUS] = ACTIONS(2729), + [anon_sym_STAR] = ACTIONS(2731), + [anon_sym_AMP_AMP] = ACTIONS(2731), + [anon_sym_AMP] = ACTIONS(2729), + [anon_sym_SEMI] = ACTIONS(2731), + [anon_sym_typedef] = ACTIONS(2729), + [anon_sym_extern] = ACTIONS(2729), + [anon_sym___attribute__] = ACTIONS(2729), + [anon_sym_COLON_COLON] = ACTIONS(2731), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2731), + [anon_sym___declspec] = ACTIONS(2729), + [anon_sym___based] = ACTIONS(2729), + [anon_sym___cdecl] = ACTIONS(2729), + [anon_sym___clrcall] = ACTIONS(2729), + [anon_sym___stdcall] = ACTIONS(2729), + [anon_sym___fastcall] = ACTIONS(2729), + [anon_sym___thiscall] = ACTIONS(2729), + [anon_sym___vectorcall] = ACTIONS(2729), + [anon_sym_LBRACE] = ACTIONS(2731), + [anon_sym_LBRACK] = ACTIONS(2729), + [anon_sym_static] = ACTIONS(2729), + [anon_sym_register] = ACTIONS(2729), + [anon_sym_inline] = ACTIONS(2729), + [anon_sym_thread_local] = ACTIONS(2729), + [anon_sym_const] = ACTIONS(2729), + [anon_sym_volatile] = ACTIONS(2729), + [anon_sym_restrict] = ACTIONS(2729), + [anon_sym__Atomic] = ACTIONS(2729), + [anon_sym_mutable] = ACTIONS(2729), + [anon_sym_constexpr] = ACTIONS(2729), + [anon_sym_constinit] = ACTIONS(2729), + [anon_sym_consteval] = ACTIONS(2729), + [anon_sym_signed] = ACTIONS(2729), + [anon_sym_unsigned] = ACTIONS(2729), + [anon_sym_long] = ACTIONS(2729), + [anon_sym_short] = ACTIONS(2729), + [sym_primitive_type] = ACTIONS(2729), + [anon_sym_enum] = ACTIONS(2729), + [anon_sym_class] = ACTIONS(2729), + [anon_sym_struct] = ACTIONS(2729), + [anon_sym_union] = ACTIONS(2729), + [anon_sym_if] = ACTIONS(2729), + [anon_sym_switch] = ACTIONS(2729), + [anon_sym_case] = ACTIONS(2729), + [anon_sym_default] = ACTIONS(2729), + [anon_sym_while] = ACTIONS(2729), + [anon_sym_do] = ACTIONS(2729), + [anon_sym_for] = ACTIONS(2729), + [anon_sym_return] = ACTIONS(2729), + [anon_sym_break] = ACTIONS(2729), + [anon_sym_continue] = ACTIONS(2729), + [anon_sym_goto] = ACTIONS(2729), + [anon_sym_not] = ACTIONS(2729), + [anon_sym_compl] = ACTIONS(2729), + [anon_sym_DASH_DASH] = ACTIONS(2731), + [anon_sym_PLUS_PLUS] = ACTIONS(2731), + [anon_sym_sizeof] = ACTIONS(2729), + [sym_number_literal] = ACTIONS(2731), + [anon_sym_L_SQUOTE] = ACTIONS(2731), + [anon_sym_u_SQUOTE] = ACTIONS(2731), + [anon_sym_U_SQUOTE] = ACTIONS(2731), + [anon_sym_u8_SQUOTE] = ACTIONS(2731), + [anon_sym_SQUOTE] = ACTIONS(2731), + [anon_sym_L_DQUOTE] = ACTIONS(2731), + [anon_sym_u_DQUOTE] = ACTIONS(2731), + [anon_sym_U_DQUOTE] = ACTIONS(2731), + [anon_sym_u8_DQUOTE] = ACTIONS(2731), + [anon_sym_DQUOTE] = ACTIONS(2731), + [sym_true] = ACTIONS(2729), + [sym_false] = ACTIONS(2729), + [sym_null] = ACTIONS(2729), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3583), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2729), + [anon_sym_decltype] = ACTIONS(2729), + [anon_sym_virtual] = ACTIONS(2729), + [anon_sym_explicit] = ACTIONS(2729), + [anon_sym_typename] = ACTIONS(2729), + [anon_sym_template] = ACTIONS(2729), + [anon_sym_operator] = ACTIONS(2729), + [anon_sym_try] = ACTIONS(2729), + [anon_sym_delete] = ACTIONS(2729), + [anon_sym_throw] = ACTIONS(2729), + [anon_sym_namespace] = ACTIONS(2729), + [anon_sym_using] = ACTIONS(2729), + [anon_sym_static_assert] = ACTIONS(2729), + [anon_sym_concept] = ACTIONS(2729), + [anon_sym_co_return] = ACTIONS(2729), + [anon_sym_co_yield] = ACTIONS(2729), + [anon_sym_co_await] = ACTIONS(2729), + [anon_sym_new] = ACTIONS(2729), + [anon_sym_requires] = ACTIONS(2729), + [sym_this] = ACTIONS(2729), + [sym_nullptr] = ACTIONS(2729), + [sym_raw_string_literal] = ACTIONS(2731), }, - [1433] = { - [sym__expression] = STATE(3842), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(3585), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [972] = { + [sym_identifier] = ACTIONS(2923), + [aux_sym_preproc_include_token1] = ACTIONS(2923), + [aux_sym_preproc_def_token1] = ACTIONS(2923), + [aux_sym_preproc_if_token1] = ACTIONS(2923), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2923), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2923), + [sym_preproc_directive] = ACTIONS(2923), + [anon_sym_LPAREN2] = ACTIONS(2925), + [anon_sym_BANG] = ACTIONS(2925), + [anon_sym_TILDE] = ACTIONS(2925), + [anon_sym_DASH] = ACTIONS(2923), + [anon_sym_PLUS] = ACTIONS(2923), + [anon_sym_STAR] = ACTIONS(2925), + [anon_sym_AMP_AMP] = ACTIONS(2925), + [anon_sym_AMP] = ACTIONS(2923), + [anon_sym_SEMI] = ACTIONS(2925), + [anon_sym_typedef] = ACTIONS(2923), + [anon_sym_extern] = ACTIONS(2923), + [anon_sym___attribute__] = ACTIONS(2923), + [anon_sym_COLON_COLON] = ACTIONS(2925), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2925), + [anon_sym___declspec] = ACTIONS(2923), + [anon_sym___based] = ACTIONS(2923), + [anon_sym___cdecl] = ACTIONS(2923), + [anon_sym___clrcall] = ACTIONS(2923), + [anon_sym___stdcall] = ACTIONS(2923), + [anon_sym___fastcall] = ACTIONS(2923), + [anon_sym___thiscall] = ACTIONS(2923), + [anon_sym___vectorcall] = ACTIONS(2923), + [anon_sym_LBRACE] = ACTIONS(2925), + [anon_sym_RBRACE] = ACTIONS(2925), + [anon_sym_LBRACK] = ACTIONS(2923), + [anon_sym_static] = ACTIONS(2923), + [anon_sym_register] = ACTIONS(2923), + [anon_sym_inline] = ACTIONS(2923), + [anon_sym_thread_local] = ACTIONS(2923), + [anon_sym_const] = ACTIONS(2923), + [anon_sym_volatile] = ACTIONS(2923), + [anon_sym_restrict] = ACTIONS(2923), + [anon_sym__Atomic] = ACTIONS(2923), + [anon_sym_mutable] = ACTIONS(2923), + [anon_sym_constexpr] = ACTIONS(2923), + [anon_sym_constinit] = ACTIONS(2923), + [anon_sym_consteval] = ACTIONS(2923), + [anon_sym_signed] = ACTIONS(2923), + [anon_sym_unsigned] = ACTIONS(2923), + [anon_sym_long] = ACTIONS(2923), + [anon_sym_short] = ACTIONS(2923), + [sym_primitive_type] = ACTIONS(2923), + [anon_sym_enum] = ACTIONS(2923), + [anon_sym_class] = ACTIONS(2923), + [anon_sym_struct] = ACTIONS(2923), + [anon_sym_union] = ACTIONS(2923), + [anon_sym_if] = ACTIONS(2923), + [anon_sym_switch] = ACTIONS(2923), + [anon_sym_case] = ACTIONS(2923), + [anon_sym_default] = ACTIONS(2923), + [anon_sym_while] = ACTIONS(2923), + [anon_sym_do] = ACTIONS(2923), + [anon_sym_for] = ACTIONS(2923), + [anon_sym_return] = ACTIONS(2923), + [anon_sym_break] = ACTIONS(2923), + [anon_sym_continue] = ACTIONS(2923), + [anon_sym_goto] = ACTIONS(2923), + [anon_sym_not] = ACTIONS(2923), + [anon_sym_compl] = ACTIONS(2923), + [anon_sym_DASH_DASH] = ACTIONS(2925), + [anon_sym_PLUS_PLUS] = ACTIONS(2925), + [anon_sym_sizeof] = ACTIONS(2923), + [sym_number_literal] = ACTIONS(2925), + [anon_sym_L_SQUOTE] = ACTIONS(2925), + [anon_sym_u_SQUOTE] = ACTIONS(2925), + [anon_sym_U_SQUOTE] = ACTIONS(2925), + [anon_sym_u8_SQUOTE] = ACTIONS(2925), + [anon_sym_SQUOTE] = ACTIONS(2925), + [anon_sym_L_DQUOTE] = ACTIONS(2925), + [anon_sym_u_DQUOTE] = ACTIONS(2925), + [anon_sym_U_DQUOTE] = ACTIONS(2925), + [anon_sym_u8_DQUOTE] = ACTIONS(2925), + [anon_sym_DQUOTE] = ACTIONS(2925), + [sym_true] = ACTIONS(2923), + [sym_false] = ACTIONS(2923), + [sym_null] = ACTIONS(2923), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2923), + [anon_sym_decltype] = ACTIONS(2923), + [anon_sym_virtual] = ACTIONS(2923), + [anon_sym_explicit] = ACTIONS(2923), + [anon_sym_typename] = ACTIONS(2923), + [anon_sym_template] = ACTIONS(2923), + [anon_sym_operator] = ACTIONS(2923), + [anon_sym_try] = ACTIONS(2923), + [anon_sym_delete] = ACTIONS(2923), + [anon_sym_throw] = ACTIONS(2923), + [anon_sym_namespace] = ACTIONS(2923), + [anon_sym_using] = ACTIONS(2923), + [anon_sym_static_assert] = ACTIONS(2923), + [anon_sym_concept] = ACTIONS(2923), + [anon_sym_co_return] = ACTIONS(2923), + [anon_sym_co_yield] = ACTIONS(2923), + [anon_sym_co_await] = ACTIONS(2923), + [anon_sym_new] = ACTIONS(2923), + [anon_sym_requires] = ACTIONS(2923), + [sym_this] = ACTIONS(2923), + [sym_nullptr] = ACTIONS(2923), + [sym_raw_string_literal] = ACTIONS(2925), }, - [1434] = { - [sym__expression] = STATE(3021), - [sym_conditional_expression] = STATE(2541), - [sym_assignment_expression] = STATE(2541), - [sym_pointer_expression] = STATE(2531), - [sym_unary_expression] = STATE(2541), - [sym_binary_expression] = STATE(2541), - [sym_update_expression] = STATE(2541), - [sym_cast_expression] = STATE(2541), - [sym_sizeof_expression] = STATE(2541), - [sym_subscript_expression] = STATE(2531), - [sym_call_expression] = STATE(2531), - [sym_field_expression] = STATE(2531), - [sym_compound_literal_expression] = STATE(2541), - [sym_parenthesized_expression] = STATE(2531), - [sym_char_literal] = STATE(2481), - [sym_concatenated_string] = STATE(2481), - [sym_string_literal] = STATE(2063), - [sym__class_name] = STATE(6239), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2541), - [sym_co_await_expression] = STATE(2541), - [sym_new_expression] = STATE(2541), - [sym_delete_expression] = STATE(2541), - [sym_requires_clause] = STATE(2541), - [sym_requires_expression] = STATE(2541), - [sym_lambda_expression] = STATE(2541), - [sym_lambda_capture_specifier] = STATE(4508), - [sym_fold_expression] = STATE(2541), - [sym_parameter_pack_expansion] = STATE(2541), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2531), - [sym_qualified_type_identifier] = STATE(6239), - [sym_user_defined_literal] = STATE(2541), - [sym_identifier] = ACTIONS(2306), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3569), - [anon_sym_LPAREN2] = ACTIONS(3587), - [anon_sym_BANG] = ACTIONS(2895), - [anon_sym_TILDE] = ACTIONS(2895), - [anon_sym_DASH] = ACTIONS(2893), - [anon_sym_PLUS] = ACTIONS(2893), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(2899), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(2901), - [anon_sym_PLUS_PLUS] = ACTIONS(2901), - [anon_sym_sizeof] = ACTIONS(2903), - [sym_number_literal] = ACTIONS(2326), - [anon_sym_L_SQUOTE] = ACTIONS(2328), - [anon_sym_u_SQUOTE] = ACTIONS(2328), - [anon_sym_U_SQUOTE] = ACTIONS(2328), - [anon_sym_u8_SQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2328), - [anon_sym_L_DQUOTE] = ACTIONS(2330), - [anon_sym_u_DQUOTE] = ACTIONS(2330), - [anon_sym_U_DQUOTE] = ACTIONS(2330), - [anon_sym_u8_DQUOTE] = ACTIONS(2330), - [anon_sym_DQUOTE] = ACTIONS(2330), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2905), + [973] = { + [sym_identifier] = ACTIONS(2907), + [aux_sym_preproc_include_token1] = ACTIONS(2907), + [aux_sym_preproc_def_token1] = ACTIONS(2907), + [aux_sym_preproc_if_token1] = ACTIONS(2907), + [aux_sym_preproc_if_token2] = ACTIONS(2907), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2907), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2907), + [sym_preproc_directive] = ACTIONS(2907), + [anon_sym_LPAREN2] = ACTIONS(2909), + [anon_sym_BANG] = ACTIONS(2909), + [anon_sym_TILDE] = ACTIONS(2909), + [anon_sym_DASH] = ACTIONS(2907), + [anon_sym_PLUS] = ACTIONS(2907), + [anon_sym_STAR] = ACTIONS(2909), + [anon_sym_AMP_AMP] = ACTIONS(2909), + [anon_sym_AMP] = ACTIONS(2907), + [anon_sym_SEMI] = ACTIONS(2909), + [anon_sym_typedef] = ACTIONS(2907), + [anon_sym_extern] = ACTIONS(2907), + [anon_sym___attribute__] = ACTIONS(2907), + [anon_sym_COLON_COLON] = ACTIONS(2909), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2909), + [anon_sym___declspec] = ACTIONS(2907), + [anon_sym___based] = ACTIONS(2907), + [anon_sym___cdecl] = ACTIONS(2907), + [anon_sym___clrcall] = ACTIONS(2907), + [anon_sym___stdcall] = ACTIONS(2907), + [anon_sym___fastcall] = ACTIONS(2907), + [anon_sym___thiscall] = ACTIONS(2907), + [anon_sym___vectorcall] = ACTIONS(2907), + [anon_sym_LBRACE] = ACTIONS(2909), + [anon_sym_LBRACK] = ACTIONS(2907), + [anon_sym_static] = ACTIONS(2907), + [anon_sym_register] = ACTIONS(2907), + [anon_sym_inline] = ACTIONS(2907), + [anon_sym_thread_local] = ACTIONS(2907), + [anon_sym_const] = ACTIONS(2907), + [anon_sym_volatile] = ACTIONS(2907), + [anon_sym_restrict] = ACTIONS(2907), + [anon_sym__Atomic] = ACTIONS(2907), + [anon_sym_mutable] = ACTIONS(2907), + [anon_sym_constexpr] = ACTIONS(2907), + [anon_sym_constinit] = ACTIONS(2907), + [anon_sym_consteval] = ACTIONS(2907), + [anon_sym_signed] = ACTIONS(2907), + [anon_sym_unsigned] = ACTIONS(2907), + [anon_sym_long] = ACTIONS(2907), + [anon_sym_short] = ACTIONS(2907), + [sym_primitive_type] = ACTIONS(2907), + [anon_sym_enum] = ACTIONS(2907), + [anon_sym_class] = ACTIONS(2907), + [anon_sym_struct] = ACTIONS(2907), + [anon_sym_union] = ACTIONS(2907), + [anon_sym_if] = ACTIONS(2907), + [anon_sym_switch] = ACTIONS(2907), + [anon_sym_case] = ACTIONS(2907), + [anon_sym_default] = ACTIONS(2907), + [anon_sym_while] = ACTIONS(2907), + [anon_sym_do] = ACTIONS(2907), + [anon_sym_for] = ACTIONS(2907), + [anon_sym_return] = ACTIONS(2907), + [anon_sym_break] = ACTIONS(2907), + [anon_sym_continue] = ACTIONS(2907), + [anon_sym_goto] = ACTIONS(2907), + [anon_sym_not] = ACTIONS(2907), + [anon_sym_compl] = ACTIONS(2907), + [anon_sym_DASH_DASH] = ACTIONS(2909), + [anon_sym_PLUS_PLUS] = ACTIONS(2909), + [anon_sym_sizeof] = ACTIONS(2907), + [sym_number_literal] = ACTIONS(2909), + [anon_sym_L_SQUOTE] = ACTIONS(2909), + [anon_sym_u_SQUOTE] = ACTIONS(2909), + [anon_sym_U_SQUOTE] = ACTIONS(2909), + [anon_sym_u8_SQUOTE] = ACTIONS(2909), + [anon_sym_SQUOTE] = ACTIONS(2909), + [anon_sym_L_DQUOTE] = ACTIONS(2909), + [anon_sym_u_DQUOTE] = ACTIONS(2909), + [anon_sym_U_DQUOTE] = ACTIONS(2909), + [anon_sym_u8_DQUOTE] = ACTIONS(2909), + [anon_sym_DQUOTE] = ACTIONS(2909), + [sym_true] = ACTIONS(2907), + [sym_false] = ACTIONS(2907), + [sym_null] = ACTIONS(2907), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2907), + [anon_sym_decltype] = ACTIONS(2907), + [anon_sym_virtual] = ACTIONS(2907), + [anon_sym_explicit] = ACTIONS(2907), + [anon_sym_typename] = ACTIONS(2907), + [anon_sym_template] = ACTIONS(2907), + [anon_sym_operator] = ACTIONS(2907), + [anon_sym_try] = ACTIONS(2907), + [anon_sym_delete] = ACTIONS(2907), + [anon_sym_throw] = ACTIONS(2907), + [anon_sym_namespace] = ACTIONS(2907), + [anon_sym_using] = ACTIONS(2907), + [anon_sym_static_assert] = ACTIONS(2907), + [anon_sym_concept] = ACTIONS(2907), + [anon_sym_co_return] = ACTIONS(2907), + [anon_sym_co_yield] = ACTIONS(2907), [anon_sym_co_await] = ACTIONS(2907), - [anon_sym_new] = ACTIONS(2909), - [anon_sym_requires] = ACTIONS(2340), - [sym_this] = ACTIONS(2332), - [sym_nullptr] = ACTIONS(2332), - [sym_raw_string_literal] = ACTIONS(2342), + [anon_sym_new] = ACTIONS(2907), + [anon_sym_requires] = ACTIONS(2907), + [sym_this] = ACTIONS(2907), + [sym_nullptr] = ACTIONS(2907), + [sym_raw_string_literal] = ACTIONS(2909), }, - [1435] = { - [sym__expression] = STATE(3756), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2981), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2981), - [sym_call_expression] = STATE(2981), - [sym_field_expression] = STATE(2981), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2981), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2981), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3039), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3525), - [anon_sym_LPAREN2] = ACTIONS(3589), - [anon_sym_BANG] = ACTIONS(3045), - [anon_sym_TILDE] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(3047), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3049), - [anon_sym_PLUS_PLUS] = ACTIONS(3049), - [anon_sym_sizeof] = ACTIONS(3051), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [974] = { + [sym_identifier] = ACTIONS(2793), + [aux_sym_preproc_include_token1] = ACTIONS(2793), + [aux_sym_preproc_def_token1] = ACTIONS(2793), + [aux_sym_preproc_if_token1] = ACTIONS(2793), + [aux_sym_preproc_if_token2] = ACTIONS(2793), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2793), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2793), + [sym_preproc_directive] = ACTIONS(2793), + [anon_sym_LPAREN2] = ACTIONS(2795), + [anon_sym_BANG] = ACTIONS(2795), + [anon_sym_TILDE] = ACTIONS(2795), + [anon_sym_DASH] = ACTIONS(2793), + [anon_sym_PLUS] = ACTIONS(2793), + [anon_sym_STAR] = ACTIONS(2795), + [anon_sym_AMP_AMP] = ACTIONS(2795), + [anon_sym_AMP] = ACTIONS(2793), + [anon_sym_SEMI] = ACTIONS(2795), + [anon_sym_typedef] = ACTIONS(2793), + [anon_sym_extern] = ACTIONS(2793), + [anon_sym___attribute__] = ACTIONS(2793), + [anon_sym_COLON_COLON] = ACTIONS(2795), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2795), + [anon_sym___declspec] = ACTIONS(2793), + [anon_sym___based] = ACTIONS(2793), + [anon_sym___cdecl] = ACTIONS(2793), + [anon_sym___clrcall] = ACTIONS(2793), + [anon_sym___stdcall] = ACTIONS(2793), + [anon_sym___fastcall] = ACTIONS(2793), + [anon_sym___thiscall] = ACTIONS(2793), + [anon_sym___vectorcall] = ACTIONS(2793), + [anon_sym_LBRACE] = ACTIONS(2795), + [anon_sym_LBRACK] = ACTIONS(2793), + [anon_sym_static] = ACTIONS(2793), + [anon_sym_register] = ACTIONS(2793), + [anon_sym_inline] = ACTIONS(2793), + [anon_sym_thread_local] = ACTIONS(2793), + [anon_sym_const] = ACTIONS(2793), + [anon_sym_volatile] = ACTIONS(2793), + [anon_sym_restrict] = ACTIONS(2793), + [anon_sym__Atomic] = ACTIONS(2793), + [anon_sym_mutable] = ACTIONS(2793), + [anon_sym_constexpr] = ACTIONS(2793), + [anon_sym_constinit] = ACTIONS(2793), + [anon_sym_consteval] = ACTIONS(2793), + [anon_sym_signed] = ACTIONS(2793), + [anon_sym_unsigned] = ACTIONS(2793), + [anon_sym_long] = ACTIONS(2793), + [anon_sym_short] = ACTIONS(2793), + [sym_primitive_type] = ACTIONS(2793), + [anon_sym_enum] = ACTIONS(2793), + [anon_sym_class] = ACTIONS(2793), + [anon_sym_struct] = ACTIONS(2793), + [anon_sym_union] = ACTIONS(2793), + [anon_sym_if] = ACTIONS(2793), + [anon_sym_switch] = ACTIONS(2793), + [anon_sym_case] = ACTIONS(2793), + [anon_sym_default] = ACTIONS(2793), + [anon_sym_while] = ACTIONS(2793), + [anon_sym_do] = ACTIONS(2793), + [anon_sym_for] = ACTIONS(2793), + [anon_sym_return] = ACTIONS(2793), + [anon_sym_break] = ACTIONS(2793), + [anon_sym_continue] = ACTIONS(2793), + [anon_sym_goto] = ACTIONS(2793), + [anon_sym_not] = ACTIONS(2793), + [anon_sym_compl] = ACTIONS(2793), + [anon_sym_DASH_DASH] = ACTIONS(2795), + [anon_sym_PLUS_PLUS] = ACTIONS(2795), + [anon_sym_sizeof] = ACTIONS(2793), + [sym_number_literal] = ACTIONS(2795), + [anon_sym_L_SQUOTE] = ACTIONS(2795), + [anon_sym_u_SQUOTE] = ACTIONS(2795), + [anon_sym_U_SQUOTE] = ACTIONS(2795), + [anon_sym_u8_SQUOTE] = ACTIONS(2795), + [anon_sym_SQUOTE] = ACTIONS(2795), + [anon_sym_L_DQUOTE] = ACTIONS(2795), + [anon_sym_u_DQUOTE] = ACTIONS(2795), + [anon_sym_U_DQUOTE] = ACTIONS(2795), + [anon_sym_u8_DQUOTE] = ACTIONS(2795), + [anon_sym_DQUOTE] = ACTIONS(2795), + [sym_true] = ACTIONS(2793), + [sym_false] = ACTIONS(2793), + [sym_null] = ACTIONS(2793), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3053), - [anon_sym_co_await] = ACTIONS(3055), - [anon_sym_new] = ACTIONS(3057), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2793), + [anon_sym_decltype] = ACTIONS(2793), + [anon_sym_virtual] = ACTIONS(2793), + [anon_sym_explicit] = ACTIONS(2793), + [anon_sym_typename] = ACTIONS(2793), + [anon_sym_template] = ACTIONS(2793), + [anon_sym_operator] = ACTIONS(2793), + [anon_sym_try] = ACTIONS(2793), + [anon_sym_delete] = ACTIONS(2793), + [anon_sym_throw] = ACTIONS(2793), + [anon_sym_namespace] = ACTIONS(2793), + [anon_sym_using] = ACTIONS(2793), + [anon_sym_static_assert] = ACTIONS(2793), + [anon_sym_concept] = ACTIONS(2793), + [anon_sym_co_return] = ACTIONS(2793), + [anon_sym_co_yield] = ACTIONS(2793), + [anon_sym_co_await] = ACTIONS(2793), + [anon_sym_new] = ACTIONS(2793), + [anon_sym_requires] = ACTIONS(2793), + [sym_this] = ACTIONS(2793), + [sym_nullptr] = ACTIONS(2793), + [sym_raw_string_literal] = ACTIONS(2795), }, - [1436] = { - [sym__expression] = STATE(2558), - [sym_conditional_expression] = STATE(2541), - [sym_assignment_expression] = STATE(2541), - [sym_pointer_expression] = STATE(2531), - [sym_unary_expression] = STATE(2541), - [sym_binary_expression] = STATE(2541), - [sym_update_expression] = STATE(2541), - [sym_cast_expression] = STATE(2541), - [sym_sizeof_expression] = STATE(2541), - [sym_subscript_expression] = STATE(2531), - [sym_call_expression] = STATE(2531), - [sym_field_expression] = STATE(2531), - [sym_compound_literal_expression] = STATE(2541), - [sym_parenthesized_expression] = STATE(2531), - [sym_char_literal] = STATE(2481), - [sym_concatenated_string] = STATE(2481), - [sym_string_literal] = STATE(2063), - [sym__class_name] = STATE(6239), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2541), - [sym_co_await_expression] = STATE(2541), - [sym_new_expression] = STATE(2541), - [sym_delete_expression] = STATE(2541), - [sym_requires_clause] = STATE(2541), - [sym_requires_expression] = STATE(2541), - [sym_lambda_expression] = STATE(2541), - [sym_lambda_capture_specifier] = STATE(4508), - [sym_fold_expression] = STATE(2541), - [sym_parameter_pack_expansion] = STATE(2541), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2531), - [sym_qualified_type_identifier] = STATE(6239), - [sym_user_defined_literal] = STATE(2541), - [sym_identifier] = ACTIONS(2306), - [anon_sym_LPAREN2] = ACTIONS(2310), - [anon_sym_BANG] = ACTIONS(2314), - [anon_sym_TILDE] = ACTIONS(2314), - [anon_sym_DASH] = ACTIONS(2312), - [anon_sym_PLUS] = ACTIONS(2312), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(2318), - [anon_sym_LBRACK] = ACTIONS(2272), - [anon_sym_RBRACK] = ACTIONS(3591), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(2322), - [anon_sym_PLUS_PLUS] = ACTIONS(2322), - [anon_sym_sizeof] = ACTIONS(2324), - [sym_number_literal] = ACTIONS(2326), - [anon_sym_L_SQUOTE] = ACTIONS(2328), - [anon_sym_u_SQUOTE] = ACTIONS(2328), - [anon_sym_U_SQUOTE] = ACTIONS(2328), - [anon_sym_u8_SQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2328), - [anon_sym_L_DQUOTE] = ACTIONS(2330), - [anon_sym_u_DQUOTE] = ACTIONS(2330), - [anon_sym_U_DQUOTE] = ACTIONS(2330), - [anon_sym_u8_DQUOTE] = ACTIONS(2330), - [anon_sym_DQUOTE] = ACTIONS(2330), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2334), - [anon_sym_co_await] = ACTIONS(2336), - [anon_sym_new] = ACTIONS(2338), - [anon_sym_requires] = ACTIONS(2340), - [sym_this] = ACTIONS(2332), - [sym_nullptr] = ACTIONS(2332), - [sym_raw_string_literal] = ACTIONS(2342), + [975] = { + [ts_builtin_sym_end] = ACTIONS(2739), + [sym_identifier] = ACTIONS(2737), + [aux_sym_preproc_include_token1] = ACTIONS(2737), + [aux_sym_preproc_def_token1] = ACTIONS(2737), + [aux_sym_preproc_if_token1] = ACTIONS(2737), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2737), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2737), + [sym_preproc_directive] = ACTIONS(2737), + [anon_sym_LPAREN2] = ACTIONS(2739), + [anon_sym_BANG] = ACTIONS(2739), + [anon_sym_TILDE] = ACTIONS(2739), + [anon_sym_DASH] = ACTIONS(2737), + [anon_sym_PLUS] = ACTIONS(2737), + [anon_sym_STAR] = ACTIONS(2739), + [anon_sym_AMP_AMP] = ACTIONS(2739), + [anon_sym_AMP] = ACTIONS(2737), + [anon_sym_SEMI] = ACTIONS(2739), + [anon_sym_typedef] = ACTIONS(2737), + [anon_sym_extern] = ACTIONS(2737), + [anon_sym___attribute__] = ACTIONS(2737), + [anon_sym_COLON_COLON] = ACTIONS(2739), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2739), + [anon_sym___declspec] = ACTIONS(2737), + [anon_sym___based] = ACTIONS(2737), + [anon_sym___cdecl] = ACTIONS(2737), + [anon_sym___clrcall] = ACTIONS(2737), + [anon_sym___stdcall] = ACTIONS(2737), + [anon_sym___fastcall] = ACTIONS(2737), + [anon_sym___thiscall] = ACTIONS(2737), + [anon_sym___vectorcall] = ACTIONS(2737), + [anon_sym_LBRACE] = ACTIONS(2739), + [anon_sym_LBRACK] = ACTIONS(2737), + [anon_sym_static] = ACTIONS(2737), + [anon_sym_register] = ACTIONS(2737), + [anon_sym_inline] = ACTIONS(2737), + [anon_sym_thread_local] = ACTIONS(2737), + [anon_sym_const] = ACTIONS(2737), + [anon_sym_volatile] = ACTIONS(2737), + [anon_sym_restrict] = ACTIONS(2737), + [anon_sym__Atomic] = ACTIONS(2737), + [anon_sym_mutable] = ACTIONS(2737), + [anon_sym_constexpr] = ACTIONS(2737), + [anon_sym_constinit] = ACTIONS(2737), + [anon_sym_consteval] = ACTIONS(2737), + [anon_sym_signed] = ACTIONS(2737), + [anon_sym_unsigned] = ACTIONS(2737), + [anon_sym_long] = ACTIONS(2737), + [anon_sym_short] = ACTIONS(2737), + [sym_primitive_type] = ACTIONS(2737), + [anon_sym_enum] = ACTIONS(2737), + [anon_sym_class] = ACTIONS(2737), + [anon_sym_struct] = ACTIONS(2737), + [anon_sym_union] = ACTIONS(2737), + [anon_sym_if] = ACTIONS(2737), + [anon_sym_switch] = ACTIONS(2737), + [anon_sym_case] = ACTIONS(2737), + [anon_sym_default] = ACTIONS(2737), + [anon_sym_while] = ACTIONS(2737), + [anon_sym_do] = ACTIONS(2737), + [anon_sym_for] = ACTIONS(2737), + [anon_sym_return] = ACTIONS(2737), + [anon_sym_break] = ACTIONS(2737), + [anon_sym_continue] = ACTIONS(2737), + [anon_sym_goto] = ACTIONS(2737), + [anon_sym_not] = ACTIONS(2737), + [anon_sym_compl] = ACTIONS(2737), + [anon_sym_DASH_DASH] = ACTIONS(2739), + [anon_sym_PLUS_PLUS] = ACTIONS(2739), + [anon_sym_sizeof] = ACTIONS(2737), + [sym_number_literal] = ACTIONS(2739), + [anon_sym_L_SQUOTE] = ACTIONS(2739), + [anon_sym_u_SQUOTE] = ACTIONS(2739), + [anon_sym_U_SQUOTE] = ACTIONS(2739), + [anon_sym_u8_SQUOTE] = ACTIONS(2739), + [anon_sym_SQUOTE] = ACTIONS(2739), + [anon_sym_L_DQUOTE] = ACTIONS(2739), + [anon_sym_u_DQUOTE] = ACTIONS(2739), + [anon_sym_U_DQUOTE] = ACTIONS(2739), + [anon_sym_u8_DQUOTE] = ACTIONS(2739), + [anon_sym_DQUOTE] = ACTIONS(2739), + [sym_true] = ACTIONS(2737), + [sym_false] = ACTIONS(2737), + [sym_null] = ACTIONS(2737), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2737), + [anon_sym_decltype] = ACTIONS(2737), + [anon_sym_virtual] = ACTIONS(2737), + [anon_sym_explicit] = ACTIONS(2737), + [anon_sym_typename] = ACTIONS(2737), + [anon_sym_template] = ACTIONS(2737), + [anon_sym_operator] = ACTIONS(2737), + [anon_sym_try] = ACTIONS(2737), + [anon_sym_delete] = ACTIONS(2737), + [anon_sym_throw] = ACTIONS(2737), + [anon_sym_namespace] = ACTIONS(2737), + [anon_sym_using] = ACTIONS(2737), + [anon_sym_static_assert] = ACTIONS(2737), + [anon_sym_concept] = ACTIONS(2737), + [anon_sym_co_return] = ACTIONS(2737), + [anon_sym_co_yield] = ACTIONS(2737), + [anon_sym_co_await] = ACTIONS(2737), + [anon_sym_new] = ACTIONS(2737), + [anon_sym_requires] = ACTIONS(2737), + [sym_this] = ACTIONS(2737), + [sym_nullptr] = ACTIONS(2737), + [sym_raw_string_literal] = ACTIONS(2739), }, - [1437] = { - [sym__expression] = STATE(3872), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(3593), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [976] = { + [sym_identifier] = ACTIONS(2931), + [aux_sym_preproc_include_token1] = ACTIONS(2931), + [aux_sym_preproc_def_token1] = ACTIONS(2931), + [aux_sym_preproc_if_token1] = ACTIONS(2931), + [aux_sym_preproc_if_token2] = ACTIONS(2931), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2931), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2931), + [sym_preproc_directive] = ACTIONS(2931), + [anon_sym_LPAREN2] = ACTIONS(2933), + [anon_sym_BANG] = ACTIONS(2933), + [anon_sym_TILDE] = ACTIONS(2933), + [anon_sym_DASH] = ACTIONS(2931), + [anon_sym_PLUS] = ACTIONS(2931), + [anon_sym_STAR] = ACTIONS(2933), + [anon_sym_AMP_AMP] = ACTIONS(2933), + [anon_sym_AMP] = ACTIONS(2931), + [anon_sym_SEMI] = ACTIONS(2933), + [anon_sym_typedef] = ACTIONS(2931), + [anon_sym_extern] = ACTIONS(2931), + [anon_sym___attribute__] = ACTIONS(2931), + [anon_sym_COLON_COLON] = ACTIONS(2933), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2933), + [anon_sym___declspec] = ACTIONS(2931), + [anon_sym___based] = ACTIONS(2931), + [anon_sym___cdecl] = ACTIONS(2931), + [anon_sym___clrcall] = ACTIONS(2931), + [anon_sym___stdcall] = ACTIONS(2931), + [anon_sym___fastcall] = ACTIONS(2931), + [anon_sym___thiscall] = ACTIONS(2931), + [anon_sym___vectorcall] = ACTIONS(2931), + [anon_sym_LBRACE] = ACTIONS(2933), + [anon_sym_LBRACK] = ACTIONS(2931), + [anon_sym_static] = ACTIONS(2931), + [anon_sym_register] = ACTIONS(2931), + [anon_sym_inline] = ACTIONS(2931), + [anon_sym_thread_local] = ACTIONS(2931), + [anon_sym_const] = ACTIONS(2931), + [anon_sym_volatile] = ACTIONS(2931), + [anon_sym_restrict] = ACTIONS(2931), + [anon_sym__Atomic] = ACTIONS(2931), + [anon_sym_mutable] = ACTIONS(2931), + [anon_sym_constexpr] = ACTIONS(2931), + [anon_sym_constinit] = ACTIONS(2931), + [anon_sym_consteval] = ACTIONS(2931), + [anon_sym_signed] = ACTIONS(2931), + [anon_sym_unsigned] = ACTIONS(2931), + [anon_sym_long] = ACTIONS(2931), + [anon_sym_short] = ACTIONS(2931), + [sym_primitive_type] = ACTIONS(2931), + [anon_sym_enum] = ACTIONS(2931), + [anon_sym_class] = ACTIONS(2931), + [anon_sym_struct] = ACTIONS(2931), + [anon_sym_union] = ACTIONS(2931), + [anon_sym_if] = ACTIONS(2931), + [anon_sym_switch] = ACTIONS(2931), + [anon_sym_case] = ACTIONS(2931), + [anon_sym_default] = ACTIONS(2931), + [anon_sym_while] = ACTIONS(2931), + [anon_sym_do] = ACTIONS(2931), + [anon_sym_for] = ACTIONS(2931), + [anon_sym_return] = ACTIONS(2931), + [anon_sym_break] = ACTIONS(2931), + [anon_sym_continue] = ACTIONS(2931), + [anon_sym_goto] = ACTIONS(2931), + [anon_sym_not] = ACTIONS(2931), + [anon_sym_compl] = ACTIONS(2931), + [anon_sym_DASH_DASH] = ACTIONS(2933), + [anon_sym_PLUS_PLUS] = ACTIONS(2933), + [anon_sym_sizeof] = ACTIONS(2931), + [sym_number_literal] = ACTIONS(2933), + [anon_sym_L_SQUOTE] = ACTIONS(2933), + [anon_sym_u_SQUOTE] = ACTIONS(2933), + [anon_sym_U_SQUOTE] = ACTIONS(2933), + [anon_sym_u8_SQUOTE] = ACTIONS(2933), + [anon_sym_SQUOTE] = ACTIONS(2933), + [anon_sym_L_DQUOTE] = ACTIONS(2933), + [anon_sym_u_DQUOTE] = ACTIONS(2933), + [anon_sym_U_DQUOTE] = ACTIONS(2933), + [anon_sym_u8_DQUOTE] = ACTIONS(2933), + [anon_sym_DQUOTE] = ACTIONS(2933), + [sym_true] = ACTIONS(2931), + [sym_false] = ACTIONS(2931), + [sym_null] = ACTIONS(2931), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2931), + [anon_sym_decltype] = ACTIONS(2931), + [anon_sym_virtual] = ACTIONS(2931), + [anon_sym_explicit] = ACTIONS(2931), + [anon_sym_typename] = ACTIONS(2931), + [anon_sym_template] = ACTIONS(2931), + [anon_sym_operator] = ACTIONS(2931), + [anon_sym_try] = ACTIONS(2931), + [anon_sym_delete] = ACTIONS(2931), + [anon_sym_throw] = ACTIONS(2931), + [anon_sym_namespace] = ACTIONS(2931), + [anon_sym_using] = ACTIONS(2931), + [anon_sym_static_assert] = ACTIONS(2931), + [anon_sym_concept] = ACTIONS(2931), + [anon_sym_co_return] = ACTIONS(2931), + [anon_sym_co_yield] = ACTIONS(2931), + [anon_sym_co_await] = ACTIONS(2931), + [anon_sym_new] = ACTIONS(2931), + [anon_sym_requires] = ACTIONS(2931), + [sym_this] = ACTIONS(2931), + [sym_nullptr] = ACTIONS(2931), + [sym_raw_string_literal] = ACTIONS(2933), }, - [1438] = { - [sym__expression] = STATE(3957), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_RPAREN] = ACTIONS(3595), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), - }, - [1439] = { - [sym__expression] = STATE(3877), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(3597), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), - }, - [1440] = { - [sym__expression] = STATE(2862), - [sym_conditional_expression] = STATE(3000), - [sym_assignment_expression] = STATE(3000), - [sym_pointer_expression] = STATE(3006), - [sym_unary_expression] = STATE(3000), - [sym_binary_expression] = STATE(3000), - [sym_update_expression] = STATE(3000), - [sym_cast_expression] = STATE(3000), - [sym_sizeof_expression] = STATE(3000), - [sym_subscript_expression] = STATE(3006), - [sym_call_expression] = STATE(3006), - [sym_field_expression] = STATE(3006), - [sym_compound_literal_expression] = STATE(3000), - [sym_parenthesized_expression] = STATE(3006), - [sym_char_literal] = STATE(2896), - [sym_concatenated_string] = STATE(2896), - [sym_string_literal] = STATE(2154), - [sym__class_name] = STATE(5849), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3000), - [sym_co_await_expression] = STATE(3000), - [sym_new_expression] = STATE(3000), - [sym_delete_expression] = STATE(3000), - [sym_requires_clause] = STATE(3000), - [sym_requires_expression] = STATE(3000), - [sym_lambda_expression] = STATE(3000), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3000), - [sym_parameter_pack_expansion] = STATE(3000), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4642), - [sym_qualified_identifier] = STATE(3006), - [sym_qualified_type_identifier] = STATE(5849), - [sym_user_defined_literal] = STATE(3000), - [sym_identifier] = ACTIONS(2831), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3599), - [anon_sym_LPAREN2] = ACTIONS(3601), - [anon_sym_BANG] = ACTIONS(2837), - [anon_sym_TILDE] = ACTIONS(2837), - [anon_sym_DASH] = ACTIONS(2835), - [anon_sym_PLUS] = ACTIONS(2835), - [anon_sym_STAR] = ACTIONS(2537), - [anon_sym_AMP] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(2841), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(2845), - [anon_sym_DASH_DASH] = ACTIONS(2847), - [anon_sym_PLUS_PLUS] = ACTIONS(2847), - [anon_sym_sizeof] = ACTIONS(2849), - [sym_number_literal] = ACTIONS(2851), - [anon_sym_L_SQUOTE] = ACTIONS(2853), - [anon_sym_u_SQUOTE] = ACTIONS(2853), - [anon_sym_U_SQUOTE] = ACTIONS(2853), - [anon_sym_u8_SQUOTE] = ACTIONS(2853), - [anon_sym_SQUOTE] = ACTIONS(2853), - [anon_sym_L_DQUOTE] = ACTIONS(2855), - [anon_sym_u_DQUOTE] = ACTIONS(2855), - [anon_sym_U_DQUOTE] = ACTIONS(2855), - [anon_sym_u8_DQUOTE] = ACTIONS(2855), - [anon_sym_DQUOTE] = ACTIONS(2855), - [sym_true] = ACTIONS(2857), - [sym_false] = ACTIONS(2857), - [sym_null] = ACTIONS(2857), + [977] = { + [sym_identifier] = ACTIONS(2733), + [aux_sym_preproc_include_token1] = ACTIONS(2733), + [aux_sym_preproc_def_token1] = ACTIONS(2733), + [aux_sym_preproc_if_token1] = ACTIONS(2733), + [aux_sym_preproc_if_token2] = ACTIONS(2733), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2733), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2733), + [sym_preproc_directive] = ACTIONS(2733), + [anon_sym_LPAREN2] = ACTIONS(2735), + [anon_sym_BANG] = ACTIONS(2735), + [anon_sym_TILDE] = ACTIONS(2735), + [anon_sym_DASH] = ACTIONS(2733), + [anon_sym_PLUS] = ACTIONS(2733), + [anon_sym_STAR] = ACTIONS(2735), + [anon_sym_AMP_AMP] = ACTIONS(2735), + [anon_sym_AMP] = ACTIONS(2733), + [anon_sym_SEMI] = ACTIONS(2735), + [anon_sym_typedef] = ACTIONS(2733), + [anon_sym_extern] = ACTIONS(2733), + [anon_sym___attribute__] = ACTIONS(2733), + [anon_sym_COLON_COLON] = ACTIONS(2735), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2735), + [anon_sym___declspec] = ACTIONS(2733), + [anon_sym___based] = ACTIONS(2733), + [anon_sym___cdecl] = ACTIONS(2733), + [anon_sym___clrcall] = ACTIONS(2733), + [anon_sym___stdcall] = ACTIONS(2733), + [anon_sym___fastcall] = ACTIONS(2733), + [anon_sym___thiscall] = ACTIONS(2733), + [anon_sym___vectorcall] = ACTIONS(2733), + [anon_sym_LBRACE] = ACTIONS(2735), + [anon_sym_LBRACK] = ACTIONS(2733), + [anon_sym_static] = ACTIONS(2733), + [anon_sym_register] = ACTIONS(2733), + [anon_sym_inline] = ACTIONS(2733), + [anon_sym_thread_local] = ACTIONS(2733), + [anon_sym_const] = ACTIONS(2733), + [anon_sym_volatile] = ACTIONS(2733), + [anon_sym_restrict] = ACTIONS(2733), + [anon_sym__Atomic] = ACTIONS(2733), + [anon_sym_mutable] = ACTIONS(2733), + [anon_sym_constexpr] = ACTIONS(2733), + [anon_sym_constinit] = ACTIONS(2733), + [anon_sym_consteval] = ACTIONS(2733), + [anon_sym_signed] = ACTIONS(2733), + [anon_sym_unsigned] = ACTIONS(2733), + [anon_sym_long] = ACTIONS(2733), + [anon_sym_short] = ACTIONS(2733), + [sym_primitive_type] = ACTIONS(2733), + [anon_sym_enum] = ACTIONS(2733), + [anon_sym_class] = ACTIONS(2733), + [anon_sym_struct] = ACTIONS(2733), + [anon_sym_union] = ACTIONS(2733), + [anon_sym_if] = ACTIONS(2733), + [anon_sym_switch] = ACTIONS(2733), + [anon_sym_case] = ACTIONS(2733), + [anon_sym_default] = ACTIONS(2733), + [anon_sym_while] = ACTIONS(2733), + [anon_sym_do] = ACTIONS(2733), + [anon_sym_for] = ACTIONS(2733), + [anon_sym_return] = ACTIONS(2733), + [anon_sym_break] = ACTIONS(2733), + [anon_sym_continue] = ACTIONS(2733), + [anon_sym_goto] = ACTIONS(2733), + [anon_sym_not] = ACTIONS(2733), + [anon_sym_compl] = ACTIONS(2733), + [anon_sym_DASH_DASH] = ACTIONS(2735), + [anon_sym_PLUS_PLUS] = ACTIONS(2735), + [anon_sym_sizeof] = ACTIONS(2733), + [sym_number_literal] = ACTIONS(2735), + [anon_sym_L_SQUOTE] = ACTIONS(2735), + [anon_sym_u_SQUOTE] = ACTIONS(2735), + [anon_sym_U_SQUOTE] = ACTIONS(2735), + [anon_sym_u8_SQUOTE] = ACTIONS(2735), + [anon_sym_SQUOTE] = ACTIONS(2735), + [anon_sym_L_DQUOTE] = ACTIONS(2735), + [anon_sym_u_DQUOTE] = ACTIONS(2735), + [anon_sym_U_DQUOTE] = ACTIONS(2735), + [anon_sym_u8_DQUOTE] = ACTIONS(2735), + [anon_sym_DQUOTE] = ACTIONS(2735), + [sym_true] = ACTIONS(2733), + [sym_false] = ACTIONS(2733), + [sym_null] = ACTIONS(2733), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_co_await] = ACTIONS(2861), - [anon_sym_new] = ACTIONS(2863), - [anon_sym_requires] = ACTIONS(2865), - [sym_this] = ACTIONS(2857), - [sym_nullptr] = ACTIONS(2857), - [sym_raw_string_literal] = ACTIONS(2867), - }, - [1441] = { - [sym__expression] = STATE(2558), - [sym_conditional_expression] = STATE(2541), - [sym_assignment_expression] = STATE(2541), - [sym_pointer_expression] = STATE(2531), - [sym_unary_expression] = STATE(2541), - [sym_binary_expression] = STATE(2541), - [sym_update_expression] = STATE(2541), - [sym_cast_expression] = STATE(2541), - [sym_sizeof_expression] = STATE(2541), - [sym_subscript_expression] = STATE(2531), - [sym_call_expression] = STATE(2531), - [sym_field_expression] = STATE(2531), - [sym_compound_literal_expression] = STATE(2541), - [sym_parenthesized_expression] = STATE(2531), - [sym_char_literal] = STATE(2481), - [sym_concatenated_string] = STATE(2481), - [sym_string_literal] = STATE(2063), - [sym__class_name] = STATE(6239), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2541), - [sym_co_await_expression] = STATE(2541), - [sym_new_expression] = STATE(2541), - [sym_delete_expression] = STATE(2541), - [sym_requires_clause] = STATE(2541), - [sym_requires_expression] = STATE(2541), - [sym_lambda_expression] = STATE(2541), - [sym_lambda_capture_specifier] = STATE(4508), - [sym_fold_expression] = STATE(2541), - [sym_parameter_pack_expansion] = STATE(2541), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2531), - [sym_qualified_type_identifier] = STATE(6239), - [sym_user_defined_literal] = STATE(2541), - [sym_identifier] = ACTIONS(2306), - [anon_sym_LPAREN2] = ACTIONS(2310), - [anon_sym_BANG] = ACTIONS(2314), - [anon_sym_TILDE] = ACTIONS(2314), - [anon_sym_DASH] = ACTIONS(2312), - [anon_sym_PLUS] = ACTIONS(2312), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(2318), - [anon_sym_LBRACK] = ACTIONS(2272), - [anon_sym_RBRACK] = ACTIONS(3603), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(2322), - [anon_sym_PLUS_PLUS] = ACTIONS(2322), - [anon_sym_sizeof] = ACTIONS(2324), - [sym_number_literal] = ACTIONS(2326), - [anon_sym_L_SQUOTE] = ACTIONS(2328), - [anon_sym_u_SQUOTE] = ACTIONS(2328), - [anon_sym_U_SQUOTE] = ACTIONS(2328), - [anon_sym_u8_SQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2328), - [anon_sym_L_DQUOTE] = ACTIONS(2330), - [anon_sym_u_DQUOTE] = ACTIONS(2330), - [anon_sym_U_DQUOTE] = ACTIONS(2330), - [anon_sym_u8_DQUOTE] = ACTIONS(2330), - [anon_sym_DQUOTE] = ACTIONS(2330), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2334), - [anon_sym_co_await] = ACTIONS(2336), - [anon_sym_new] = ACTIONS(2338), - [anon_sym_requires] = ACTIONS(2340), - [sym_this] = ACTIONS(2332), - [sym_nullptr] = ACTIONS(2332), - [sym_raw_string_literal] = ACTIONS(2342), - }, - [1442] = { - [sym__expression] = STATE(2711), - [sym_conditional_expression] = STATE(2765), - [sym_assignment_expression] = STATE(2765), - [sym_pointer_expression] = STATE(2827), - [sym_unary_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_update_expression] = STATE(2765), - [sym_cast_expression] = STATE(2765), - [sym_sizeof_expression] = STATE(2765), - [sym_subscript_expression] = STATE(2827), - [sym_call_expression] = STATE(2827), - [sym_field_expression] = STATE(2827), - [sym_compound_literal_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2827), - [sym_char_literal] = STATE(2674), - [sym_concatenated_string] = STATE(2674), - [sym_string_literal] = STATE(2093), - [sym__class_name] = STATE(6297), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2765), - [sym_co_await_expression] = STATE(2765), - [sym_new_expression] = STATE(2765), - [sym_delete_expression] = STATE(2765), - [sym_requires_clause] = STATE(2765), - [sym_requires_expression] = STATE(2765), - [sym_lambda_expression] = STATE(2765), - [sym_lambda_capture_specifier] = STATE(4512), - [sym_fold_expression] = STATE(2765), - [sym_parameter_pack_expansion] = STATE(2765), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4648), - [sym_qualified_identifier] = STATE(2827), - [sym_qualified_type_identifier] = STATE(6297), - [sym_user_defined_literal] = STATE(2765), - [sym_identifier] = ACTIONS(2363), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3605), - [anon_sym_LPAREN2] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1417), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_COLON_COLON] = ACTIONS(1423), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(2369), - [anon_sym_DASH_DASH] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [anon_sym_sizeof] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(1439), - [anon_sym_L_SQUOTE] = ACTIONS(1441), - [anon_sym_u_SQUOTE] = ACTIONS(1441), - [anon_sym_U_SQUOTE] = ACTIONS(1441), - [anon_sym_u8_SQUOTE] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1441), - [anon_sym_L_DQUOTE] = ACTIONS(1443), - [anon_sym_u_DQUOTE] = ACTIONS(1443), - [anon_sym_U_DQUOTE] = ACTIONS(1443), - [anon_sym_u8_DQUOTE] = ACTIONS(1443), - [anon_sym_DQUOTE] = ACTIONS(1443), - [sym_true] = ACTIONS(1445), - [sym_false] = ACTIONS(1445), - [sym_null] = ACTIONS(1445), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_co_await] = ACTIONS(1451), - [anon_sym_new] = ACTIONS(1453), - [anon_sym_requires] = ACTIONS(1455), - [sym_this] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(1445), - [sym_raw_string_literal] = ACTIONS(1457), - }, - [1443] = { - [sym__expression] = STATE(2558), - [sym_conditional_expression] = STATE(2541), - [sym_assignment_expression] = STATE(2541), - [sym_pointer_expression] = STATE(2531), - [sym_unary_expression] = STATE(2541), - [sym_binary_expression] = STATE(2541), - [sym_update_expression] = STATE(2541), - [sym_cast_expression] = STATE(2541), - [sym_sizeof_expression] = STATE(2541), - [sym_subscript_expression] = STATE(2531), - [sym_call_expression] = STATE(2531), - [sym_field_expression] = STATE(2531), - [sym_compound_literal_expression] = STATE(2541), - [sym_parenthesized_expression] = STATE(2531), - [sym_char_literal] = STATE(2481), - [sym_concatenated_string] = STATE(2481), - [sym_string_literal] = STATE(2063), - [sym__class_name] = STATE(6239), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2541), - [sym_co_await_expression] = STATE(2541), - [sym_new_expression] = STATE(2541), - [sym_delete_expression] = STATE(2541), - [sym_requires_clause] = STATE(2541), - [sym_requires_expression] = STATE(2541), - [sym_lambda_expression] = STATE(2541), - [sym_lambda_capture_specifier] = STATE(4508), - [sym_fold_expression] = STATE(2541), - [sym_parameter_pack_expansion] = STATE(2541), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2531), - [sym_qualified_type_identifier] = STATE(6239), - [sym_user_defined_literal] = STATE(2541), - [sym_identifier] = ACTIONS(2306), - [anon_sym_LPAREN2] = ACTIONS(2310), - [anon_sym_BANG] = ACTIONS(2314), - [anon_sym_TILDE] = ACTIONS(2314), - [anon_sym_DASH] = ACTIONS(2312), - [anon_sym_PLUS] = ACTIONS(2312), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(2318), - [anon_sym_LBRACK] = ACTIONS(2272), - [anon_sym_RBRACK] = ACTIONS(3608), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(2322), - [anon_sym_PLUS_PLUS] = ACTIONS(2322), - [anon_sym_sizeof] = ACTIONS(2324), - [sym_number_literal] = ACTIONS(2326), - [anon_sym_L_SQUOTE] = ACTIONS(2328), - [anon_sym_u_SQUOTE] = ACTIONS(2328), - [anon_sym_U_SQUOTE] = ACTIONS(2328), - [anon_sym_u8_SQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2328), - [anon_sym_L_DQUOTE] = ACTIONS(2330), - [anon_sym_u_DQUOTE] = ACTIONS(2330), - [anon_sym_U_DQUOTE] = ACTIONS(2330), - [anon_sym_u8_DQUOTE] = ACTIONS(2330), - [anon_sym_DQUOTE] = ACTIONS(2330), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2334), - [anon_sym_co_await] = ACTIONS(2336), - [anon_sym_new] = ACTIONS(2338), - [anon_sym_requires] = ACTIONS(2340), - [sym_this] = ACTIONS(2332), - [sym_nullptr] = ACTIONS(2332), - [sym_raw_string_literal] = ACTIONS(2342), + [sym_auto] = ACTIONS(2733), + [anon_sym_decltype] = ACTIONS(2733), + [anon_sym_virtual] = ACTIONS(2733), + [anon_sym_explicit] = ACTIONS(2733), + [anon_sym_typename] = ACTIONS(2733), + [anon_sym_template] = ACTIONS(2733), + [anon_sym_operator] = ACTIONS(2733), + [anon_sym_try] = ACTIONS(2733), + [anon_sym_delete] = ACTIONS(2733), + [anon_sym_throw] = ACTIONS(2733), + [anon_sym_namespace] = ACTIONS(2733), + [anon_sym_using] = ACTIONS(2733), + [anon_sym_static_assert] = ACTIONS(2733), + [anon_sym_concept] = ACTIONS(2733), + [anon_sym_co_return] = ACTIONS(2733), + [anon_sym_co_yield] = ACTIONS(2733), + [anon_sym_co_await] = ACTIONS(2733), + [anon_sym_new] = ACTIONS(2733), + [anon_sym_requires] = ACTIONS(2733), + [sym_this] = ACTIONS(2733), + [sym_nullptr] = ACTIONS(2733), + [sym_raw_string_literal] = ACTIONS(2735), }, - [1444] = { - [sym__expression] = STATE(2558), - [sym_conditional_expression] = STATE(2541), - [sym_assignment_expression] = STATE(2541), - [sym_pointer_expression] = STATE(2531), - [sym_unary_expression] = STATE(2541), - [sym_binary_expression] = STATE(2541), - [sym_update_expression] = STATE(2541), - [sym_cast_expression] = STATE(2541), - [sym_sizeof_expression] = STATE(2541), - [sym_subscript_expression] = STATE(2531), - [sym_call_expression] = STATE(2531), - [sym_field_expression] = STATE(2531), - [sym_compound_literal_expression] = STATE(2541), - [sym_parenthesized_expression] = STATE(2531), - [sym_char_literal] = STATE(2481), - [sym_concatenated_string] = STATE(2481), - [sym_string_literal] = STATE(2063), - [sym__class_name] = STATE(6239), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2541), - [sym_co_await_expression] = STATE(2541), - [sym_new_expression] = STATE(2541), - [sym_delete_expression] = STATE(2541), - [sym_requires_clause] = STATE(2541), - [sym_requires_expression] = STATE(2541), - [sym_lambda_expression] = STATE(2541), - [sym_lambda_capture_specifier] = STATE(4508), - [sym_fold_expression] = STATE(2541), - [sym_parameter_pack_expansion] = STATE(2541), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2531), - [sym_qualified_type_identifier] = STATE(6239), - [sym_user_defined_literal] = STATE(2541), - [sym_identifier] = ACTIONS(2306), - [anon_sym_LPAREN2] = ACTIONS(2310), - [anon_sym_BANG] = ACTIONS(2314), - [anon_sym_TILDE] = ACTIONS(2314), - [anon_sym_DASH] = ACTIONS(2312), - [anon_sym_PLUS] = ACTIONS(2312), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(2318), - [anon_sym_LBRACK] = ACTIONS(2272), - [anon_sym_RBRACK] = ACTIONS(3610), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(2322), - [anon_sym_PLUS_PLUS] = ACTIONS(2322), - [anon_sym_sizeof] = ACTIONS(2324), - [sym_number_literal] = ACTIONS(2326), - [anon_sym_L_SQUOTE] = ACTIONS(2328), - [anon_sym_u_SQUOTE] = ACTIONS(2328), - [anon_sym_U_SQUOTE] = ACTIONS(2328), - [anon_sym_u8_SQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2328), - [anon_sym_L_DQUOTE] = ACTIONS(2330), - [anon_sym_u_DQUOTE] = ACTIONS(2330), - [anon_sym_U_DQUOTE] = ACTIONS(2330), - [anon_sym_u8_DQUOTE] = ACTIONS(2330), - [anon_sym_DQUOTE] = ACTIONS(2330), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2334), - [anon_sym_co_await] = ACTIONS(2336), - [anon_sym_new] = ACTIONS(2338), - [anon_sym_requires] = ACTIONS(2340), - [sym_this] = ACTIONS(2332), - [sym_nullptr] = ACTIONS(2332), - [sym_raw_string_literal] = ACTIONS(2342), + [978] = { + [ts_builtin_sym_end] = ACTIONS(2751), + [sym_identifier] = ACTIONS(2749), + [aux_sym_preproc_include_token1] = ACTIONS(2749), + [aux_sym_preproc_def_token1] = ACTIONS(2749), + [aux_sym_preproc_if_token1] = ACTIONS(2749), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2749), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2749), + [sym_preproc_directive] = ACTIONS(2749), + [anon_sym_LPAREN2] = ACTIONS(2751), + [anon_sym_BANG] = ACTIONS(2751), + [anon_sym_TILDE] = ACTIONS(2751), + [anon_sym_DASH] = ACTIONS(2749), + [anon_sym_PLUS] = ACTIONS(2749), + [anon_sym_STAR] = ACTIONS(2751), + [anon_sym_AMP_AMP] = ACTIONS(2751), + [anon_sym_AMP] = ACTIONS(2749), + [anon_sym_SEMI] = ACTIONS(2751), + [anon_sym_typedef] = ACTIONS(2749), + [anon_sym_extern] = ACTIONS(2749), + [anon_sym___attribute__] = ACTIONS(2749), + [anon_sym_COLON_COLON] = ACTIONS(2751), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2751), + [anon_sym___declspec] = ACTIONS(2749), + [anon_sym___based] = ACTIONS(2749), + [anon_sym___cdecl] = ACTIONS(2749), + [anon_sym___clrcall] = ACTIONS(2749), + [anon_sym___stdcall] = ACTIONS(2749), + [anon_sym___fastcall] = ACTIONS(2749), + [anon_sym___thiscall] = ACTIONS(2749), + [anon_sym___vectorcall] = ACTIONS(2749), + [anon_sym_LBRACE] = ACTIONS(2751), + [anon_sym_LBRACK] = ACTIONS(2749), + [anon_sym_static] = ACTIONS(2749), + [anon_sym_register] = ACTIONS(2749), + [anon_sym_inline] = ACTIONS(2749), + [anon_sym_thread_local] = ACTIONS(2749), + [anon_sym_const] = ACTIONS(2749), + [anon_sym_volatile] = ACTIONS(2749), + [anon_sym_restrict] = ACTIONS(2749), + [anon_sym__Atomic] = ACTIONS(2749), + [anon_sym_mutable] = ACTIONS(2749), + [anon_sym_constexpr] = ACTIONS(2749), + [anon_sym_constinit] = ACTIONS(2749), + [anon_sym_consteval] = ACTIONS(2749), + [anon_sym_signed] = ACTIONS(2749), + [anon_sym_unsigned] = ACTIONS(2749), + [anon_sym_long] = ACTIONS(2749), + [anon_sym_short] = ACTIONS(2749), + [sym_primitive_type] = ACTIONS(2749), + [anon_sym_enum] = ACTIONS(2749), + [anon_sym_class] = ACTIONS(2749), + [anon_sym_struct] = ACTIONS(2749), + [anon_sym_union] = ACTIONS(2749), + [anon_sym_if] = ACTIONS(2749), + [anon_sym_switch] = ACTIONS(2749), + [anon_sym_case] = ACTIONS(2749), + [anon_sym_default] = ACTIONS(2749), + [anon_sym_while] = ACTIONS(2749), + [anon_sym_do] = ACTIONS(2749), + [anon_sym_for] = ACTIONS(2749), + [anon_sym_return] = ACTIONS(2749), + [anon_sym_break] = ACTIONS(2749), + [anon_sym_continue] = ACTIONS(2749), + [anon_sym_goto] = ACTIONS(2749), + [anon_sym_not] = ACTIONS(2749), + [anon_sym_compl] = ACTIONS(2749), + [anon_sym_DASH_DASH] = ACTIONS(2751), + [anon_sym_PLUS_PLUS] = ACTIONS(2751), + [anon_sym_sizeof] = ACTIONS(2749), + [sym_number_literal] = ACTIONS(2751), + [anon_sym_L_SQUOTE] = ACTIONS(2751), + [anon_sym_u_SQUOTE] = ACTIONS(2751), + [anon_sym_U_SQUOTE] = ACTIONS(2751), + [anon_sym_u8_SQUOTE] = ACTIONS(2751), + [anon_sym_SQUOTE] = ACTIONS(2751), + [anon_sym_L_DQUOTE] = ACTIONS(2751), + [anon_sym_u_DQUOTE] = ACTIONS(2751), + [anon_sym_U_DQUOTE] = ACTIONS(2751), + [anon_sym_u8_DQUOTE] = ACTIONS(2751), + [anon_sym_DQUOTE] = ACTIONS(2751), + [sym_true] = ACTIONS(2749), + [sym_false] = ACTIONS(2749), + [sym_null] = ACTIONS(2749), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2749), + [anon_sym_decltype] = ACTIONS(2749), + [anon_sym_virtual] = ACTIONS(2749), + [anon_sym_explicit] = ACTIONS(2749), + [anon_sym_typename] = ACTIONS(2749), + [anon_sym_template] = ACTIONS(2749), + [anon_sym_operator] = ACTIONS(2749), + [anon_sym_try] = ACTIONS(2749), + [anon_sym_delete] = ACTIONS(2749), + [anon_sym_throw] = ACTIONS(2749), + [anon_sym_namespace] = ACTIONS(2749), + [anon_sym_using] = ACTIONS(2749), + [anon_sym_static_assert] = ACTIONS(2749), + [anon_sym_concept] = ACTIONS(2749), + [anon_sym_co_return] = ACTIONS(2749), + [anon_sym_co_yield] = ACTIONS(2749), + [anon_sym_co_await] = ACTIONS(2749), + [anon_sym_new] = ACTIONS(2749), + [anon_sym_requires] = ACTIONS(2749), + [sym_this] = ACTIONS(2749), + [sym_nullptr] = ACTIONS(2749), + [sym_raw_string_literal] = ACTIONS(2751), }, - [1445] = { - [sym__expression] = STATE(2728), - [sym_conditional_expression] = STATE(2765), - [sym_assignment_expression] = STATE(2765), - [sym_pointer_expression] = STATE(2827), - [sym_unary_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_update_expression] = STATE(2765), - [sym_cast_expression] = STATE(2765), - [sym_sizeof_expression] = STATE(2765), - [sym_subscript_expression] = STATE(2827), - [sym_call_expression] = STATE(2827), - [sym_field_expression] = STATE(2827), - [sym_compound_literal_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2827), - [sym_char_literal] = STATE(2674), - [sym_concatenated_string] = STATE(2674), - [sym_string_literal] = STATE(2093), - [sym__class_name] = STATE(6297), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2765), - [sym_co_await_expression] = STATE(2765), - [sym_new_expression] = STATE(2765), - [sym_delete_expression] = STATE(2765), - [sym_requires_clause] = STATE(2765), - [sym_requires_expression] = STATE(2765), - [sym_lambda_expression] = STATE(2765), - [sym_lambda_capture_specifier] = STATE(4512), - [sym_fold_expression] = STATE(2765), - [sym_parameter_pack_expansion] = STATE(2765), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4648), - [sym_qualified_identifier] = STATE(2827), - [sym_qualified_type_identifier] = STATE(6297), - [sym_user_defined_literal] = STATE(2765), - [sym_identifier] = ACTIONS(2363), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3612), - [anon_sym_LPAREN2] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1417), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_COLON_COLON] = ACTIONS(1423), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(2369), - [anon_sym_DASH_DASH] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [anon_sym_sizeof] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(1439), - [anon_sym_L_SQUOTE] = ACTIONS(1441), - [anon_sym_u_SQUOTE] = ACTIONS(1441), - [anon_sym_U_SQUOTE] = ACTIONS(1441), - [anon_sym_u8_SQUOTE] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1441), - [anon_sym_L_DQUOTE] = ACTIONS(1443), - [anon_sym_u_DQUOTE] = ACTIONS(1443), - [anon_sym_U_DQUOTE] = ACTIONS(1443), - [anon_sym_u8_DQUOTE] = ACTIONS(1443), - [anon_sym_DQUOTE] = ACTIONS(1443), - [sym_true] = ACTIONS(1445), - [sym_false] = ACTIONS(1445), - [sym_null] = ACTIONS(1445), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_co_await] = ACTIONS(1451), - [anon_sym_new] = ACTIONS(1453), - [anon_sym_requires] = ACTIONS(1455), - [sym_this] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(1445), - [sym_raw_string_literal] = ACTIONS(1457), + [979] = { + [sym_identifier] = ACTIONS(2919), + [aux_sym_preproc_include_token1] = ACTIONS(2919), + [aux_sym_preproc_def_token1] = ACTIONS(2919), + [aux_sym_preproc_if_token1] = ACTIONS(2919), + [aux_sym_preproc_if_token2] = ACTIONS(2919), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2919), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2919), + [sym_preproc_directive] = ACTIONS(2919), + [anon_sym_LPAREN2] = ACTIONS(2921), + [anon_sym_BANG] = ACTIONS(2921), + [anon_sym_TILDE] = ACTIONS(2921), + [anon_sym_DASH] = ACTIONS(2919), + [anon_sym_PLUS] = ACTIONS(2919), + [anon_sym_STAR] = ACTIONS(2921), + [anon_sym_AMP_AMP] = ACTIONS(2921), + [anon_sym_AMP] = ACTIONS(2919), + [anon_sym_SEMI] = ACTIONS(2921), + [anon_sym_typedef] = ACTIONS(2919), + [anon_sym_extern] = ACTIONS(2919), + [anon_sym___attribute__] = ACTIONS(2919), + [anon_sym_COLON_COLON] = ACTIONS(2921), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2921), + [anon_sym___declspec] = ACTIONS(2919), + [anon_sym___based] = ACTIONS(2919), + [anon_sym___cdecl] = ACTIONS(2919), + [anon_sym___clrcall] = ACTIONS(2919), + [anon_sym___stdcall] = ACTIONS(2919), + [anon_sym___fastcall] = ACTIONS(2919), + [anon_sym___thiscall] = ACTIONS(2919), + [anon_sym___vectorcall] = ACTIONS(2919), + [anon_sym_LBRACE] = ACTIONS(2921), + [anon_sym_LBRACK] = ACTIONS(2919), + [anon_sym_static] = ACTIONS(2919), + [anon_sym_register] = ACTIONS(2919), + [anon_sym_inline] = ACTIONS(2919), + [anon_sym_thread_local] = ACTIONS(2919), + [anon_sym_const] = ACTIONS(2919), + [anon_sym_volatile] = ACTIONS(2919), + [anon_sym_restrict] = ACTIONS(2919), + [anon_sym__Atomic] = ACTIONS(2919), + [anon_sym_mutable] = ACTIONS(2919), + [anon_sym_constexpr] = ACTIONS(2919), + [anon_sym_constinit] = ACTIONS(2919), + [anon_sym_consteval] = ACTIONS(2919), + [anon_sym_signed] = ACTIONS(2919), + [anon_sym_unsigned] = ACTIONS(2919), + [anon_sym_long] = ACTIONS(2919), + [anon_sym_short] = ACTIONS(2919), + [sym_primitive_type] = ACTIONS(2919), + [anon_sym_enum] = ACTIONS(2919), + [anon_sym_class] = ACTIONS(2919), + [anon_sym_struct] = ACTIONS(2919), + [anon_sym_union] = ACTIONS(2919), + [anon_sym_if] = ACTIONS(2919), + [anon_sym_switch] = ACTIONS(2919), + [anon_sym_case] = ACTIONS(2919), + [anon_sym_default] = ACTIONS(2919), + [anon_sym_while] = ACTIONS(2919), + [anon_sym_do] = ACTIONS(2919), + [anon_sym_for] = ACTIONS(2919), + [anon_sym_return] = ACTIONS(2919), + [anon_sym_break] = ACTIONS(2919), + [anon_sym_continue] = ACTIONS(2919), + [anon_sym_goto] = ACTIONS(2919), + [anon_sym_not] = ACTIONS(2919), + [anon_sym_compl] = ACTIONS(2919), + [anon_sym_DASH_DASH] = ACTIONS(2921), + [anon_sym_PLUS_PLUS] = ACTIONS(2921), + [anon_sym_sizeof] = ACTIONS(2919), + [sym_number_literal] = ACTIONS(2921), + [anon_sym_L_SQUOTE] = ACTIONS(2921), + [anon_sym_u_SQUOTE] = ACTIONS(2921), + [anon_sym_U_SQUOTE] = ACTIONS(2921), + [anon_sym_u8_SQUOTE] = ACTIONS(2921), + [anon_sym_SQUOTE] = ACTIONS(2921), + [anon_sym_L_DQUOTE] = ACTIONS(2921), + [anon_sym_u_DQUOTE] = ACTIONS(2921), + [anon_sym_U_DQUOTE] = ACTIONS(2921), + [anon_sym_u8_DQUOTE] = ACTIONS(2921), + [anon_sym_DQUOTE] = ACTIONS(2921), + [sym_true] = ACTIONS(2919), + [sym_false] = ACTIONS(2919), + [sym_null] = ACTIONS(2919), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2919), + [anon_sym_decltype] = ACTIONS(2919), + [anon_sym_virtual] = ACTIONS(2919), + [anon_sym_explicit] = ACTIONS(2919), + [anon_sym_typename] = ACTIONS(2919), + [anon_sym_template] = ACTIONS(2919), + [anon_sym_operator] = ACTIONS(2919), + [anon_sym_try] = ACTIONS(2919), + [anon_sym_delete] = ACTIONS(2919), + [anon_sym_throw] = ACTIONS(2919), + [anon_sym_namespace] = ACTIONS(2919), + [anon_sym_using] = ACTIONS(2919), + [anon_sym_static_assert] = ACTIONS(2919), + [anon_sym_concept] = ACTIONS(2919), + [anon_sym_co_return] = ACTIONS(2919), + [anon_sym_co_yield] = ACTIONS(2919), + [anon_sym_co_await] = ACTIONS(2919), + [anon_sym_new] = ACTIONS(2919), + [anon_sym_requires] = ACTIONS(2919), + [sym_this] = ACTIONS(2919), + [sym_nullptr] = ACTIONS(2919), + [sym_raw_string_literal] = ACTIONS(2921), }, - [1446] = { - [sym__expression] = STATE(3926), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(3615), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [980] = { + [sym_identifier] = ACTIONS(2911), + [aux_sym_preproc_include_token1] = ACTIONS(2911), + [aux_sym_preproc_def_token1] = ACTIONS(2911), + [aux_sym_preproc_if_token1] = ACTIONS(2911), + [aux_sym_preproc_if_token2] = ACTIONS(2911), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2911), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2911), + [sym_preproc_directive] = ACTIONS(2911), + [anon_sym_LPAREN2] = ACTIONS(2913), + [anon_sym_BANG] = ACTIONS(2913), + [anon_sym_TILDE] = ACTIONS(2913), + [anon_sym_DASH] = ACTIONS(2911), + [anon_sym_PLUS] = ACTIONS(2911), + [anon_sym_STAR] = ACTIONS(2913), + [anon_sym_AMP_AMP] = ACTIONS(2913), + [anon_sym_AMP] = ACTIONS(2911), + [anon_sym_SEMI] = ACTIONS(2913), + [anon_sym_typedef] = ACTIONS(2911), + [anon_sym_extern] = ACTIONS(2911), + [anon_sym___attribute__] = ACTIONS(2911), + [anon_sym_COLON_COLON] = ACTIONS(2913), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2913), + [anon_sym___declspec] = ACTIONS(2911), + [anon_sym___based] = ACTIONS(2911), + [anon_sym___cdecl] = ACTIONS(2911), + [anon_sym___clrcall] = ACTIONS(2911), + [anon_sym___stdcall] = ACTIONS(2911), + [anon_sym___fastcall] = ACTIONS(2911), + [anon_sym___thiscall] = ACTIONS(2911), + [anon_sym___vectorcall] = ACTIONS(2911), + [anon_sym_LBRACE] = ACTIONS(2913), + [anon_sym_LBRACK] = ACTIONS(2911), + [anon_sym_static] = ACTIONS(2911), + [anon_sym_register] = ACTIONS(2911), + [anon_sym_inline] = ACTIONS(2911), + [anon_sym_thread_local] = ACTIONS(2911), + [anon_sym_const] = ACTIONS(2911), + [anon_sym_volatile] = ACTIONS(2911), + [anon_sym_restrict] = ACTIONS(2911), + [anon_sym__Atomic] = ACTIONS(2911), + [anon_sym_mutable] = ACTIONS(2911), + [anon_sym_constexpr] = ACTIONS(2911), + [anon_sym_constinit] = ACTIONS(2911), + [anon_sym_consteval] = ACTIONS(2911), + [anon_sym_signed] = ACTIONS(2911), + [anon_sym_unsigned] = ACTIONS(2911), + [anon_sym_long] = ACTIONS(2911), + [anon_sym_short] = ACTIONS(2911), + [sym_primitive_type] = ACTIONS(2911), + [anon_sym_enum] = ACTIONS(2911), + [anon_sym_class] = ACTIONS(2911), + [anon_sym_struct] = ACTIONS(2911), + [anon_sym_union] = ACTIONS(2911), + [anon_sym_if] = ACTIONS(2911), + [anon_sym_switch] = ACTIONS(2911), + [anon_sym_case] = ACTIONS(2911), + [anon_sym_default] = ACTIONS(2911), + [anon_sym_while] = ACTIONS(2911), + [anon_sym_do] = ACTIONS(2911), + [anon_sym_for] = ACTIONS(2911), + [anon_sym_return] = ACTIONS(2911), + [anon_sym_break] = ACTIONS(2911), + [anon_sym_continue] = ACTIONS(2911), + [anon_sym_goto] = ACTIONS(2911), + [anon_sym_not] = ACTIONS(2911), + [anon_sym_compl] = ACTIONS(2911), + [anon_sym_DASH_DASH] = ACTIONS(2913), + [anon_sym_PLUS_PLUS] = ACTIONS(2913), + [anon_sym_sizeof] = ACTIONS(2911), + [sym_number_literal] = ACTIONS(2913), + [anon_sym_L_SQUOTE] = ACTIONS(2913), + [anon_sym_u_SQUOTE] = ACTIONS(2913), + [anon_sym_U_SQUOTE] = ACTIONS(2913), + [anon_sym_u8_SQUOTE] = ACTIONS(2913), + [anon_sym_SQUOTE] = ACTIONS(2913), + [anon_sym_L_DQUOTE] = ACTIONS(2913), + [anon_sym_u_DQUOTE] = ACTIONS(2913), + [anon_sym_U_DQUOTE] = ACTIONS(2913), + [anon_sym_u8_DQUOTE] = ACTIONS(2913), + [anon_sym_DQUOTE] = ACTIONS(2913), + [sym_true] = ACTIONS(2911), + [sym_false] = ACTIONS(2911), + [sym_null] = ACTIONS(2911), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2911), + [anon_sym_decltype] = ACTIONS(2911), + [anon_sym_virtual] = ACTIONS(2911), + [anon_sym_explicit] = ACTIONS(2911), + [anon_sym_typename] = ACTIONS(2911), + [anon_sym_template] = ACTIONS(2911), + [anon_sym_operator] = ACTIONS(2911), + [anon_sym_try] = ACTIONS(2911), + [anon_sym_delete] = ACTIONS(2911), + [anon_sym_throw] = ACTIONS(2911), + [anon_sym_namespace] = ACTIONS(2911), + [anon_sym_using] = ACTIONS(2911), + [anon_sym_static_assert] = ACTIONS(2911), + [anon_sym_concept] = ACTIONS(2911), + [anon_sym_co_return] = ACTIONS(2911), + [anon_sym_co_yield] = ACTIONS(2911), + [anon_sym_co_await] = ACTIONS(2911), + [anon_sym_new] = ACTIONS(2911), + [anon_sym_requires] = ACTIONS(2911), + [sym_this] = ACTIONS(2911), + [sym_nullptr] = ACTIONS(2911), + [sym_raw_string_literal] = ACTIONS(2913), }, - [1447] = { - [sym__expression] = STATE(2711), - [sym_conditional_expression] = STATE(2765), - [sym_assignment_expression] = STATE(2765), - [sym_pointer_expression] = STATE(2827), - [sym_unary_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_update_expression] = STATE(2765), - [sym_cast_expression] = STATE(2765), - [sym_sizeof_expression] = STATE(2765), - [sym_subscript_expression] = STATE(2827), - [sym_call_expression] = STATE(2827), - [sym_field_expression] = STATE(2827), - [sym_compound_literal_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2827), - [sym_char_literal] = STATE(2674), - [sym_concatenated_string] = STATE(2674), - [sym_string_literal] = STATE(2093), - [sym__class_name] = STATE(6297), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2765), - [sym_co_await_expression] = STATE(2765), - [sym_new_expression] = STATE(2765), - [sym_delete_expression] = STATE(2765), - [sym_requires_clause] = STATE(2765), - [sym_requires_expression] = STATE(2765), - [sym_lambda_expression] = STATE(2765), - [sym_lambda_capture_specifier] = STATE(4512), - [sym_fold_expression] = STATE(2765), - [sym_parameter_pack_expansion] = STATE(2765), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4648), - [sym_qualified_identifier] = STATE(2827), - [sym_qualified_type_identifier] = STATE(6297), - [sym_user_defined_literal] = STATE(2765), - [sym_identifier] = ACTIONS(2363), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3617), - [anon_sym_LPAREN2] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1417), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_COLON_COLON] = ACTIONS(1423), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(2369), - [anon_sym_DASH_DASH] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [anon_sym_sizeof] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(1439), - [anon_sym_L_SQUOTE] = ACTIONS(1441), - [anon_sym_u_SQUOTE] = ACTIONS(1441), - [anon_sym_U_SQUOTE] = ACTIONS(1441), - [anon_sym_u8_SQUOTE] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1441), - [anon_sym_L_DQUOTE] = ACTIONS(1443), - [anon_sym_u_DQUOTE] = ACTIONS(1443), - [anon_sym_U_DQUOTE] = ACTIONS(1443), - [anon_sym_u8_DQUOTE] = ACTIONS(1443), - [anon_sym_DQUOTE] = ACTIONS(1443), - [sym_true] = ACTIONS(1445), - [sym_false] = ACTIONS(1445), - [sym_null] = ACTIONS(1445), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_co_await] = ACTIONS(1451), - [anon_sym_new] = ACTIONS(1453), - [anon_sym_requires] = ACTIONS(1455), - [sym_this] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(1445), - [sym_raw_string_literal] = ACTIONS(1457), + [981] = { + [ts_builtin_sym_end] = ACTIONS(2877), + [sym_identifier] = ACTIONS(2875), + [aux_sym_preproc_include_token1] = ACTIONS(2875), + [aux_sym_preproc_def_token1] = ACTIONS(2875), + [aux_sym_preproc_if_token1] = ACTIONS(2875), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2875), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2875), + [sym_preproc_directive] = ACTIONS(2875), + [anon_sym_LPAREN2] = ACTIONS(2877), + [anon_sym_BANG] = ACTIONS(2877), + [anon_sym_TILDE] = ACTIONS(2877), + [anon_sym_DASH] = ACTIONS(2875), + [anon_sym_PLUS] = ACTIONS(2875), + [anon_sym_STAR] = ACTIONS(2877), + [anon_sym_AMP_AMP] = ACTIONS(2877), + [anon_sym_AMP] = ACTIONS(2875), + [anon_sym_SEMI] = ACTIONS(2877), + [anon_sym_typedef] = ACTIONS(2875), + [anon_sym_extern] = ACTIONS(2875), + [anon_sym___attribute__] = ACTIONS(2875), + [anon_sym_COLON_COLON] = ACTIONS(2877), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2877), + [anon_sym___declspec] = ACTIONS(2875), + [anon_sym___based] = ACTIONS(2875), + [anon_sym___cdecl] = ACTIONS(2875), + [anon_sym___clrcall] = ACTIONS(2875), + [anon_sym___stdcall] = ACTIONS(2875), + [anon_sym___fastcall] = ACTIONS(2875), + [anon_sym___thiscall] = ACTIONS(2875), + [anon_sym___vectorcall] = ACTIONS(2875), + [anon_sym_LBRACE] = ACTIONS(2877), + [anon_sym_LBRACK] = ACTIONS(2875), + [anon_sym_static] = ACTIONS(2875), + [anon_sym_register] = ACTIONS(2875), + [anon_sym_inline] = ACTIONS(2875), + [anon_sym_thread_local] = ACTIONS(2875), + [anon_sym_const] = ACTIONS(2875), + [anon_sym_volatile] = ACTIONS(2875), + [anon_sym_restrict] = ACTIONS(2875), + [anon_sym__Atomic] = ACTIONS(2875), + [anon_sym_mutable] = ACTIONS(2875), + [anon_sym_constexpr] = ACTIONS(2875), + [anon_sym_constinit] = ACTIONS(2875), + [anon_sym_consteval] = ACTIONS(2875), + [anon_sym_signed] = ACTIONS(2875), + [anon_sym_unsigned] = ACTIONS(2875), + [anon_sym_long] = ACTIONS(2875), + [anon_sym_short] = ACTIONS(2875), + [sym_primitive_type] = ACTIONS(2875), + [anon_sym_enum] = ACTIONS(2875), + [anon_sym_class] = ACTIONS(2875), + [anon_sym_struct] = ACTIONS(2875), + [anon_sym_union] = ACTIONS(2875), + [anon_sym_if] = ACTIONS(2875), + [anon_sym_switch] = ACTIONS(2875), + [anon_sym_case] = ACTIONS(2875), + [anon_sym_default] = ACTIONS(2875), + [anon_sym_while] = ACTIONS(2875), + [anon_sym_do] = ACTIONS(2875), + [anon_sym_for] = ACTIONS(2875), + [anon_sym_return] = ACTIONS(2875), + [anon_sym_break] = ACTIONS(2875), + [anon_sym_continue] = ACTIONS(2875), + [anon_sym_goto] = ACTIONS(2875), + [anon_sym_not] = ACTIONS(2875), + [anon_sym_compl] = ACTIONS(2875), + [anon_sym_DASH_DASH] = ACTIONS(2877), + [anon_sym_PLUS_PLUS] = ACTIONS(2877), + [anon_sym_sizeof] = ACTIONS(2875), + [sym_number_literal] = ACTIONS(2877), + [anon_sym_L_SQUOTE] = ACTIONS(2877), + [anon_sym_u_SQUOTE] = ACTIONS(2877), + [anon_sym_U_SQUOTE] = ACTIONS(2877), + [anon_sym_u8_SQUOTE] = ACTIONS(2877), + [anon_sym_SQUOTE] = ACTIONS(2877), + [anon_sym_L_DQUOTE] = ACTIONS(2877), + [anon_sym_u_DQUOTE] = ACTIONS(2877), + [anon_sym_U_DQUOTE] = ACTIONS(2877), + [anon_sym_u8_DQUOTE] = ACTIONS(2877), + [anon_sym_DQUOTE] = ACTIONS(2877), + [sym_true] = ACTIONS(2875), + [sym_false] = ACTIONS(2875), + [sym_null] = ACTIONS(2875), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2875), + [anon_sym_decltype] = ACTIONS(2875), + [anon_sym_virtual] = ACTIONS(2875), + [anon_sym_explicit] = ACTIONS(2875), + [anon_sym_typename] = ACTIONS(2875), + [anon_sym_template] = ACTIONS(2875), + [anon_sym_operator] = ACTIONS(2875), + [anon_sym_try] = ACTIONS(2875), + [anon_sym_delete] = ACTIONS(2875), + [anon_sym_throw] = ACTIONS(2875), + [anon_sym_namespace] = ACTIONS(2875), + [anon_sym_using] = ACTIONS(2875), + [anon_sym_static_assert] = ACTIONS(2875), + [anon_sym_concept] = ACTIONS(2875), + [anon_sym_co_return] = ACTIONS(2875), + [anon_sym_co_yield] = ACTIONS(2875), + [anon_sym_co_await] = ACTIONS(2875), + [anon_sym_new] = ACTIONS(2875), + [anon_sym_requires] = ACTIONS(2875), + [sym_this] = ACTIONS(2875), + [sym_nullptr] = ACTIONS(2875), + [sym_raw_string_literal] = ACTIONS(2877), }, - [1448] = { - [sym__expression] = STATE(3471), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(3620), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3622), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [982] = { + [sym_identifier] = ACTIONS(2793), + [aux_sym_preproc_include_token1] = ACTIONS(2793), + [aux_sym_preproc_def_token1] = ACTIONS(2793), + [aux_sym_preproc_if_token1] = ACTIONS(2793), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2793), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2793), + [sym_preproc_directive] = ACTIONS(2793), + [anon_sym_LPAREN2] = ACTIONS(2795), + [anon_sym_BANG] = ACTIONS(2795), + [anon_sym_TILDE] = ACTIONS(2795), + [anon_sym_DASH] = ACTIONS(2793), + [anon_sym_PLUS] = ACTIONS(2793), + [anon_sym_STAR] = ACTIONS(2795), + [anon_sym_AMP_AMP] = ACTIONS(2795), + [anon_sym_AMP] = ACTIONS(2793), + [anon_sym_SEMI] = ACTIONS(2795), + [anon_sym_typedef] = ACTIONS(2793), + [anon_sym_extern] = ACTIONS(2793), + [anon_sym___attribute__] = ACTIONS(2793), + [anon_sym_COLON_COLON] = ACTIONS(2795), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2795), + [anon_sym___declspec] = ACTIONS(2793), + [anon_sym___based] = ACTIONS(2793), + [anon_sym___cdecl] = ACTIONS(2793), + [anon_sym___clrcall] = ACTIONS(2793), + [anon_sym___stdcall] = ACTIONS(2793), + [anon_sym___fastcall] = ACTIONS(2793), + [anon_sym___thiscall] = ACTIONS(2793), + [anon_sym___vectorcall] = ACTIONS(2793), + [anon_sym_LBRACE] = ACTIONS(2795), + [anon_sym_RBRACE] = ACTIONS(2795), + [anon_sym_LBRACK] = ACTIONS(2793), + [anon_sym_static] = ACTIONS(2793), + [anon_sym_register] = ACTIONS(2793), + [anon_sym_inline] = ACTIONS(2793), + [anon_sym_thread_local] = ACTIONS(2793), + [anon_sym_const] = ACTIONS(2793), + [anon_sym_volatile] = ACTIONS(2793), + [anon_sym_restrict] = ACTIONS(2793), + [anon_sym__Atomic] = ACTIONS(2793), + [anon_sym_mutable] = ACTIONS(2793), + [anon_sym_constexpr] = ACTIONS(2793), + [anon_sym_constinit] = ACTIONS(2793), + [anon_sym_consteval] = ACTIONS(2793), + [anon_sym_signed] = ACTIONS(2793), + [anon_sym_unsigned] = ACTIONS(2793), + [anon_sym_long] = ACTIONS(2793), + [anon_sym_short] = ACTIONS(2793), + [sym_primitive_type] = ACTIONS(2793), + [anon_sym_enum] = ACTIONS(2793), + [anon_sym_class] = ACTIONS(2793), + [anon_sym_struct] = ACTIONS(2793), + [anon_sym_union] = ACTIONS(2793), + [anon_sym_if] = ACTIONS(2793), + [anon_sym_switch] = ACTIONS(2793), + [anon_sym_case] = ACTIONS(2793), + [anon_sym_default] = ACTIONS(2793), + [anon_sym_while] = ACTIONS(2793), + [anon_sym_do] = ACTIONS(2793), + [anon_sym_for] = ACTIONS(2793), + [anon_sym_return] = ACTIONS(2793), + [anon_sym_break] = ACTIONS(2793), + [anon_sym_continue] = ACTIONS(2793), + [anon_sym_goto] = ACTIONS(2793), + [anon_sym_not] = ACTIONS(2793), + [anon_sym_compl] = ACTIONS(2793), + [anon_sym_DASH_DASH] = ACTIONS(2795), + [anon_sym_PLUS_PLUS] = ACTIONS(2795), + [anon_sym_sizeof] = ACTIONS(2793), + [sym_number_literal] = ACTIONS(2795), + [anon_sym_L_SQUOTE] = ACTIONS(2795), + [anon_sym_u_SQUOTE] = ACTIONS(2795), + [anon_sym_U_SQUOTE] = ACTIONS(2795), + [anon_sym_u8_SQUOTE] = ACTIONS(2795), + [anon_sym_SQUOTE] = ACTIONS(2795), + [anon_sym_L_DQUOTE] = ACTIONS(2795), + [anon_sym_u_DQUOTE] = ACTIONS(2795), + [anon_sym_U_DQUOTE] = ACTIONS(2795), + [anon_sym_u8_DQUOTE] = ACTIONS(2795), + [anon_sym_DQUOTE] = ACTIONS(2795), + [sym_true] = ACTIONS(2793), + [sym_false] = ACTIONS(2793), + [sym_null] = ACTIONS(2793), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2793), + [anon_sym_decltype] = ACTIONS(2793), + [anon_sym_virtual] = ACTIONS(2793), + [anon_sym_explicit] = ACTIONS(2793), + [anon_sym_typename] = ACTIONS(2793), + [anon_sym_template] = ACTIONS(2793), + [anon_sym_operator] = ACTIONS(2793), + [anon_sym_try] = ACTIONS(2793), + [anon_sym_delete] = ACTIONS(2793), + [anon_sym_throw] = ACTIONS(2793), + [anon_sym_namespace] = ACTIONS(2793), + [anon_sym_using] = ACTIONS(2793), + [anon_sym_static_assert] = ACTIONS(2793), + [anon_sym_concept] = ACTIONS(2793), + [anon_sym_co_return] = ACTIONS(2793), + [anon_sym_co_yield] = ACTIONS(2793), + [anon_sym_co_await] = ACTIONS(2793), + [anon_sym_new] = ACTIONS(2793), + [anon_sym_requires] = ACTIONS(2793), + [sym_this] = ACTIONS(2793), + [sym_nullptr] = ACTIONS(2793), + [sym_raw_string_literal] = ACTIONS(2795), }, - [1449] = { - [sym__expression] = STATE(3849), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3624), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [983] = { + [ts_builtin_sym_end] = ACTIONS(2843), + [sym_identifier] = ACTIONS(2841), + [aux_sym_preproc_include_token1] = ACTIONS(2841), + [aux_sym_preproc_def_token1] = ACTIONS(2841), + [aux_sym_preproc_if_token1] = ACTIONS(2841), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2841), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2841), + [sym_preproc_directive] = ACTIONS(2841), + [anon_sym_LPAREN2] = ACTIONS(2843), + [anon_sym_BANG] = ACTIONS(2843), + [anon_sym_TILDE] = ACTIONS(2843), + [anon_sym_DASH] = ACTIONS(2841), + [anon_sym_PLUS] = ACTIONS(2841), + [anon_sym_STAR] = ACTIONS(2843), + [anon_sym_AMP_AMP] = ACTIONS(2843), + [anon_sym_AMP] = ACTIONS(2841), + [anon_sym_SEMI] = ACTIONS(2843), + [anon_sym_typedef] = ACTIONS(2841), + [anon_sym_extern] = ACTIONS(2841), + [anon_sym___attribute__] = ACTIONS(2841), + [anon_sym_COLON_COLON] = ACTIONS(2843), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2843), + [anon_sym___declspec] = ACTIONS(2841), + [anon_sym___based] = ACTIONS(2841), + [anon_sym___cdecl] = ACTIONS(2841), + [anon_sym___clrcall] = ACTIONS(2841), + [anon_sym___stdcall] = ACTIONS(2841), + [anon_sym___fastcall] = ACTIONS(2841), + [anon_sym___thiscall] = ACTIONS(2841), + [anon_sym___vectorcall] = ACTIONS(2841), + [anon_sym_LBRACE] = ACTIONS(2843), + [anon_sym_LBRACK] = ACTIONS(2841), + [anon_sym_static] = ACTIONS(2841), + [anon_sym_register] = ACTIONS(2841), + [anon_sym_inline] = ACTIONS(2841), + [anon_sym_thread_local] = ACTIONS(2841), + [anon_sym_const] = ACTIONS(2841), + [anon_sym_volatile] = ACTIONS(2841), + [anon_sym_restrict] = ACTIONS(2841), + [anon_sym__Atomic] = ACTIONS(2841), + [anon_sym_mutable] = ACTIONS(2841), + [anon_sym_constexpr] = ACTIONS(2841), + [anon_sym_constinit] = ACTIONS(2841), + [anon_sym_consteval] = ACTIONS(2841), + [anon_sym_signed] = ACTIONS(2841), + [anon_sym_unsigned] = ACTIONS(2841), + [anon_sym_long] = ACTIONS(2841), + [anon_sym_short] = ACTIONS(2841), + [sym_primitive_type] = ACTIONS(2841), + [anon_sym_enum] = ACTIONS(2841), + [anon_sym_class] = ACTIONS(2841), + [anon_sym_struct] = ACTIONS(2841), + [anon_sym_union] = ACTIONS(2841), + [anon_sym_if] = ACTIONS(2841), + [anon_sym_switch] = ACTIONS(2841), + [anon_sym_case] = ACTIONS(2841), + [anon_sym_default] = ACTIONS(2841), + [anon_sym_while] = ACTIONS(2841), + [anon_sym_do] = ACTIONS(2841), + [anon_sym_for] = ACTIONS(2841), + [anon_sym_return] = ACTIONS(2841), + [anon_sym_break] = ACTIONS(2841), + [anon_sym_continue] = ACTIONS(2841), + [anon_sym_goto] = ACTIONS(2841), + [anon_sym_not] = ACTIONS(2841), + [anon_sym_compl] = ACTIONS(2841), + [anon_sym_DASH_DASH] = ACTIONS(2843), + [anon_sym_PLUS_PLUS] = ACTIONS(2843), + [anon_sym_sizeof] = ACTIONS(2841), + [sym_number_literal] = ACTIONS(2843), + [anon_sym_L_SQUOTE] = ACTIONS(2843), + [anon_sym_u_SQUOTE] = ACTIONS(2843), + [anon_sym_U_SQUOTE] = ACTIONS(2843), + [anon_sym_u8_SQUOTE] = ACTIONS(2843), + [anon_sym_SQUOTE] = ACTIONS(2843), + [anon_sym_L_DQUOTE] = ACTIONS(2843), + [anon_sym_u_DQUOTE] = ACTIONS(2843), + [anon_sym_U_DQUOTE] = ACTIONS(2843), + [anon_sym_u8_DQUOTE] = ACTIONS(2843), + [anon_sym_DQUOTE] = ACTIONS(2843), + [sym_true] = ACTIONS(2841), + [sym_false] = ACTIONS(2841), + [sym_null] = ACTIONS(2841), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2841), + [anon_sym_decltype] = ACTIONS(2841), + [anon_sym_virtual] = ACTIONS(2841), + [anon_sym_explicit] = ACTIONS(2841), + [anon_sym_typename] = ACTIONS(2841), + [anon_sym_template] = ACTIONS(2841), + [anon_sym_operator] = ACTIONS(2841), + [anon_sym_try] = ACTIONS(2841), + [anon_sym_delete] = ACTIONS(2841), + [anon_sym_throw] = ACTIONS(2841), + [anon_sym_namespace] = ACTIONS(2841), + [anon_sym_using] = ACTIONS(2841), + [anon_sym_static_assert] = ACTIONS(2841), + [anon_sym_concept] = ACTIONS(2841), + [anon_sym_co_return] = ACTIONS(2841), + [anon_sym_co_yield] = ACTIONS(2841), + [anon_sym_co_await] = ACTIONS(2841), + [anon_sym_new] = ACTIONS(2841), + [anon_sym_requires] = ACTIONS(2841), + [sym_this] = ACTIONS(2841), + [sym_nullptr] = ACTIONS(2841), + [sym_raw_string_literal] = ACTIONS(2843), }, - [1450] = { - [sym__expression] = STATE(2727), - [sym_conditional_expression] = STATE(2765), - [sym_assignment_expression] = STATE(2765), - [sym_pointer_expression] = STATE(2827), - [sym_unary_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_update_expression] = STATE(2765), - [sym_cast_expression] = STATE(2765), - [sym_sizeof_expression] = STATE(2765), - [sym_subscript_expression] = STATE(2827), - [sym_call_expression] = STATE(2827), - [sym_field_expression] = STATE(2827), - [sym_compound_literal_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2827), - [sym_char_literal] = STATE(2674), - [sym_concatenated_string] = STATE(2674), - [sym_string_literal] = STATE(2093), - [sym__class_name] = STATE(6297), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2765), - [sym_co_await_expression] = STATE(2765), - [sym_new_expression] = STATE(2765), - [sym_delete_expression] = STATE(2765), - [sym_requires_clause] = STATE(2765), - [sym_requires_expression] = STATE(2765), - [sym_lambda_expression] = STATE(2765), - [sym_lambda_capture_specifier] = STATE(4512), - [sym_fold_expression] = STATE(2765), - [sym_parameter_pack_expansion] = STATE(2765), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4648), - [sym_qualified_identifier] = STATE(2827), - [sym_qualified_type_identifier] = STATE(6297), - [sym_user_defined_literal] = STATE(2765), - [sym_identifier] = ACTIONS(2363), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3626), - [anon_sym_LPAREN2] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1417), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_COLON_COLON] = ACTIONS(1423), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(2369), - [anon_sym_DASH_DASH] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [anon_sym_sizeof] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(1439), - [anon_sym_L_SQUOTE] = ACTIONS(1441), - [anon_sym_u_SQUOTE] = ACTIONS(1441), - [anon_sym_U_SQUOTE] = ACTIONS(1441), - [anon_sym_u8_SQUOTE] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1441), - [anon_sym_L_DQUOTE] = ACTIONS(1443), - [anon_sym_u_DQUOTE] = ACTIONS(1443), - [anon_sym_U_DQUOTE] = ACTIONS(1443), - [anon_sym_u8_DQUOTE] = ACTIONS(1443), - [anon_sym_DQUOTE] = ACTIONS(1443), - [sym_true] = ACTIONS(1445), - [sym_false] = ACTIONS(1445), - [sym_null] = ACTIONS(1445), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_co_await] = ACTIONS(1451), - [anon_sym_new] = ACTIONS(1453), - [anon_sym_requires] = ACTIONS(1455), - [sym_this] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(1445), - [sym_raw_string_literal] = ACTIONS(1457), + [984] = { + [ts_builtin_sym_end] = ACTIONS(2839), + [sym_identifier] = ACTIONS(2837), + [aux_sym_preproc_include_token1] = ACTIONS(2837), + [aux_sym_preproc_def_token1] = ACTIONS(2837), + [aux_sym_preproc_if_token1] = ACTIONS(2837), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2837), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2837), + [sym_preproc_directive] = ACTIONS(2837), + [anon_sym_LPAREN2] = ACTIONS(2839), + [anon_sym_BANG] = ACTIONS(2839), + [anon_sym_TILDE] = ACTIONS(2839), + [anon_sym_DASH] = ACTIONS(2837), + [anon_sym_PLUS] = ACTIONS(2837), + [anon_sym_STAR] = ACTIONS(2839), + [anon_sym_AMP_AMP] = ACTIONS(2839), + [anon_sym_AMP] = ACTIONS(2837), + [anon_sym_SEMI] = ACTIONS(2839), + [anon_sym_typedef] = ACTIONS(2837), + [anon_sym_extern] = ACTIONS(2837), + [anon_sym___attribute__] = ACTIONS(2837), + [anon_sym_COLON_COLON] = ACTIONS(2839), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2839), + [anon_sym___declspec] = ACTIONS(2837), + [anon_sym___based] = ACTIONS(2837), + [anon_sym___cdecl] = ACTIONS(2837), + [anon_sym___clrcall] = ACTIONS(2837), + [anon_sym___stdcall] = ACTIONS(2837), + [anon_sym___fastcall] = ACTIONS(2837), + [anon_sym___thiscall] = ACTIONS(2837), + [anon_sym___vectorcall] = ACTIONS(2837), + [anon_sym_LBRACE] = ACTIONS(2839), + [anon_sym_LBRACK] = ACTIONS(2837), + [anon_sym_static] = ACTIONS(2837), + [anon_sym_register] = ACTIONS(2837), + [anon_sym_inline] = ACTIONS(2837), + [anon_sym_thread_local] = ACTIONS(2837), + [anon_sym_const] = ACTIONS(2837), + [anon_sym_volatile] = ACTIONS(2837), + [anon_sym_restrict] = ACTIONS(2837), + [anon_sym__Atomic] = ACTIONS(2837), + [anon_sym_mutable] = ACTIONS(2837), + [anon_sym_constexpr] = ACTIONS(2837), + [anon_sym_constinit] = ACTIONS(2837), + [anon_sym_consteval] = ACTIONS(2837), + [anon_sym_signed] = ACTIONS(2837), + [anon_sym_unsigned] = ACTIONS(2837), + [anon_sym_long] = ACTIONS(2837), + [anon_sym_short] = ACTIONS(2837), + [sym_primitive_type] = ACTIONS(2837), + [anon_sym_enum] = ACTIONS(2837), + [anon_sym_class] = ACTIONS(2837), + [anon_sym_struct] = ACTIONS(2837), + [anon_sym_union] = ACTIONS(2837), + [anon_sym_if] = ACTIONS(2837), + [anon_sym_switch] = ACTIONS(2837), + [anon_sym_case] = ACTIONS(2837), + [anon_sym_default] = ACTIONS(2837), + [anon_sym_while] = ACTIONS(2837), + [anon_sym_do] = ACTIONS(2837), + [anon_sym_for] = ACTIONS(2837), + [anon_sym_return] = ACTIONS(2837), + [anon_sym_break] = ACTIONS(2837), + [anon_sym_continue] = ACTIONS(2837), + [anon_sym_goto] = ACTIONS(2837), + [anon_sym_not] = ACTIONS(2837), + [anon_sym_compl] = ACTIONS(2837), + [anon_sym_DASH_DASH] = ACTIONS(2839), + [anon_sym_PLUS_PLUS] = ACTIONS(2839), + [anon_sym_sizeof] = ACTIONS(2837), + [sym_number_literal] = ACTIONS(2839), + [anon_sym_L_SQUOTE] = ACTIONS(2839), + [anon_sym_u_SQUOTE] = ACTIONS(2839), + [anon_sym_U_SQUOTE] = ACTIONS(2839), + [anon_sym_u8_SQUOTE] = ACTIONS(2839), + [anon_sym_SQUOTE] = ACTIONS(2839), + [anon_sym_L_DQUOTE] = ACTIONS(2839), + [anon_sym_u_DQUOTE] = ACTIONS(2839), + [anon_sym_U_DQUOTE] = ACTIONS(2839), + [anon_sym_u8_DQUOTE] = ACTIONS(2839), + [anon_sym_DQUOTE] = ACTIONS(2839), + [sym_true] = ACTIONS(2837), + [sym_false] = ACTIONS(2837), + [sym_null] = ACTIONS(2837), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2837), + [anon_sym_decltype] = ACTIONS(2837), + [anon_sym_virtual] = ACTIONS(2837), + [anon_sym_explicit] = ACTIONS(2837), + [anon_sym_typename] = ACTIONS(2837), + [anon_sym_template] = ACTIONS(2837), + [anon_sym_operator] = ACTIONS(2837), + [anon_sym_try] = ACTIONS(2837), + [anon_sym_delete] = ACTIONS(2837), + [anon_sym_throw] = ACTIONS(2837), + [anon_sym_namespace] = ACTIONS(2837), + [anon_sym_using] = ACTIONS(2837), + [anon_sym_static_assert] = ACTIONS(2837), + [anon_sym_concept] = ACTIONS(2837), + [anon_sym_co_return] = ACTIONS(2837), + [anon_sym_co_yield] = ACTIONS(2837), + [anon_sym_co_await] = ACTIONS(2837), + [anon_sym_new] = ACTIONS(2837), + [anon_sym_requires] = ACTIONS(2837), + [sym_this] = ACTIONS(2837), + [sym_nullptr] = ACTIONS(2837), + [sym_raw_string_literal] = ACTIONS(2839), }, - [1451] = { - [sym__expression] = STATE(3466), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3525), - [anon_sym_LPAREN2] = ACTIONS(3629), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [985] = { + [ts_builtin_sym_end] = ACTIONS(2835), + [sym_identifier] = ACTIONS(2833), + [aux_sym_preproc_include_token1] = ACTIONS(2833), + [aux_sym_preproc_def_token1] = ACTIONS(2833), + [aux_sym_preproc_if_token1] = ACTIONS(2833), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2833), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2833), + [sym_preproc_directive] = ACTIONS(2833), + [anon_sym_LPAREN2] = ACTIONS(2835), + [anon_sym_BANG] = ACTIONS(2835), + [anon_sym_TILDE] = ACTIONS(2835), + [anon_sym_DASH] = ACTIONS(2833), + [anon_sym_PLUS] = ACTIONS(2833), + [anon_sym_STAR] = ACTIONS(2835), + [anon_sym_AMP_AMP] = ACTIONS(2835), + [anon_sym_AMP] = ACTIONS(2833), + [anon_sym_SEMI] = ACTIONS(2835), + [anon_sym_typedef] = ACTIONS(2833), + [anon_sym_extern] = ACTIONS(2833), + [anon_sym___attribute__] = ACTIONS(2833), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2835), + [anon_sym___declspec] = ACTIONS(2833), + [anon_sym___based] = ACTIONS(2833), + [anon_sym___cdecl] = ACTIONS(2833), + [anon_sym___clrcall] = ACTIONS(2833), + [anon_sym___stdcall] = ACTIONS(2833), + [anon_sym___fastcall] = ACTIONS(2833), + [anon_sym___thiscall] = ACTIONS(2833), + [anon_sym___vectorcall] = ACTIONS(2833), + [anon_sym_LBRACE] = ACTIONS(2835), + [anon_sym_LBRACK] = ACTIONS(2833), + [anon_sym_static] = ACTIONS(2833), + [anon_sym_register] = ACTIONS(2833), + [anon_sym_inline] = ACTIONS(2833), + [anon_sym_thread_local] = ACTIONS(2833), + [anon_sym_const] = ACTIONS(2833), + [anon_sym_volatile] = ACTIONS(2833), + [anon_sym_restrict] = ACTIONS(2833), + [anon_sym__Atomic] = ACTIONS(2833), + [anon_sym_mutable] = ACTIONS(2833), + [anon_sym_constexpr] = ACTIONS(2833), + [anon_sym_constinit] = ACTIONS(2833), + [anon_sym_consteval] = ACTIONS(2833), + [anon_sym_signed] = ACTIONS(2833), + [anon_sym_unsigned] = ACTIONS(2833), + [anon_sym_long] = ACTIONS(2833), + [anon_sym_short] = ACTIONS(2833), + [sym_primitive_type] = ACTIONS(2833), + [anon_sym_enum] = ACTIONS(2833), + [anon_sym_class] = ACTIONS(2833), + [anon_sym_struct] = ACTIONS(2833), + [anon_sym_union] = ACTIONS(2833), + [anon_sym_if] = ACTIONS(2833), + [anon_sym_switch] = ACTIONS(2833), + [anon_sym_case] = ACTIONS(2833), + [anon_sym_default] = ACTIONS(2833), + [anon_sym_while] = ACTIONS(2833), + [anon_sym_do] = ACTIONS(2833), + [anon_sym_for] = ACTIONS(2833), + [anon_sym_return] = ACTIONS(2833), + [anon_sym_break] = ACTIONS(2833), + [anon_sym_continue] = ACTIONS(2833), + [anon_sym_goto] = ACTIONS(2833), + [anon_sym_not] = ACTIONS(2833), + [anon_sym_compl] = ACTIONS(2833), + [anon_sym_DASH_DASH] = ACTIONS(2835), + [anon_sym_PLUS_PLUS] = ACTIONS(2835), + [anon_sym_sizeof] = ACTIONS(2833), + [sym_number_literal] = ACTIONS(2835), + [anon_sym_L_SQUOTE] = ACTIONS(2835), + [anon_sym_u_SQUOTE] = ACTIONS(2835), + [anon_sym_U_SQUOTE] = ACTIONS(2835), + [anon_sym_u8_SQUOTE] = ACTIONS(2835), + [anon_sym_SQUOTE] = ACTIONS(2835), + [anon_sym_L_DQUOTE] = ACTIONS(2835), + [anon_sym_u_DQUOTE] = ACTIONS(2835), + [anon_sym_U_DQUOTE] = ACTIONS(2835), + [anon_sym_u8_DQUOTE] = ACTIONS(2835), + [anon_sym_DQUOTE] = ACTIONS(2835), + [sym_true] = ACTIONS(2833), + [sym_false] = ACTIONS(2833), + [sym_null] = ACTIONS(2833), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2833), + [anon_sym_decltype] = ACTIONS(2833), + [anon_sym_virtual] = ACTIONS(2833), + [anon_sym_explicit] = ACTIONS(2833), + [anon_sym_typename] = ACTIONS(2833), + [anon_sym_template] = ACTIONS(2833), + [anon_sym_operator] = ACTIONS(2833), + [anon_sym_try] = ACTIONS(2833), + [anon_sym_delete] = ACTIONS(2833), + [anon_sym_throw] = ACTIONS(2833), + [anon_sym_namespace] = ACTIONS(2833), + [anon_sym_using] = ACTIONS(2833), + [anon_sym_static_assert] = ACTIONS(2833), + [anon_sym_concept] = ACTIONS(2833), + [anon_sym_co_return] = ACTIONS(2833), + [anon_sym_co_yield] = ACTIONS(2833), + [anon_sym_co_await] = ACTIONS(2833), + [anon_sym_new] = ACTIONS(2833), + [anon_sym_requires] = ACTIONS(2833), + [sym_this] = ACTIONS(2833), + [sym_nullptr] = ACTIONS(2833), + [sym_raw_string_literal] = ACTIONS(2835), }, - [1452] = { - [sym__expression] = STATE(3471), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(3631), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3622), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [986] = { + [ts_builtin_sym_end] = ACTIONS(2831), + [sym_identifier] = ACTIONS(2829), + [aux_sym_preproc_include_token1] = ACTIONS(2829), + [aux_sym_preproc_def_token1] = ACTIONS(2829), + [aux_sym_preproc_if_token1] = ACTIONS(2829), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2829), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2829), + [sym_preproc_directive] = ACTIONS(2829), + [anon_sym_LPAREN2] = ACTIONS(2831), + [anon_sym_BANG] = ACTIONS(2831), + [anon_sym_TILDE] = ACTIONS(2831), + [anon_sym_DASH] = ACTIONS(2829), + [anon_sym_PLUS] = ACTIONS(2829), + [anon_sym_STAR] = ACTIONS(2831), + [anon_sym_AMP_AMP] = ACTIONS(2831), + [anon_sym_AMP] = ACTIONS(2829), + [anon_sym_SEMI] = ACTIONS(2831), + [anon_sym_typedef] = ACTIONS(2829), + [anon_sym_extern] = ACTIONS(2829), + [anon_sym___attribute__] = ACTIONS(2829), + [anon_sym_COLON_COLON] = ACTIONS(2831), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2831), + [anon_sym___declspec] = ACTIONS(2829), + [anon_sym___based] = ACTIONS(2829), + [anon_sym___cdecl] = ACTIONS(2829), + [anon_sym___clrcall] = ACTIONS(2829), + [anon_sym___stdcall] = ACTIONS(2829), + [anon_sym___fastcall] = ACTIONS(2829), + [anon_sym___thiscall] = ACTIONS(2829), + [anon_sym___vectorcall] = ACTIONS(2829), + [anon_sym_LBRACE] = ACTIONS(2831), + [anon_sym_LBRACK] = ACTIONS(2829), + [anon_sym_static] = ACTIONS(2829), + [anon_sym_register] = ACTIONS(2829), + [anon_sym_inline] = ACTIONS(2829), + [anon_sym_thread_local] = ACTIONS(2829), + [anon_sym_const] = ACTIONS(2829), + [anon_sym_volatile] = ACTIONS(2829), + [anon_sym_restrict] = ACTIONS(2829), + [anon_sym__Atomic] = ACTIONS(2829), + [anon_sym_mutable] = ACTIONS(2829), + [anon_sym_constexpr] = ACTIONS(2829), + [anon_sym_constinit] = ACTIONS(2829), + [anon_sym_consteval] = ACTIONS(2829), + [anon_sym_signed] = ACTIONS(2829), + [anon_sym_unsigned] = ACTIONS(2829), + [anon_sym_long] = ACTIONS(2829), + [anon_sym_short] = ACTIONS(2829), + [sym_primitive_type] = ACTIONS(2829), + [anon_sym_enum] = ACTIONS(2829), + [anon_sym_class] = ACTIONS(2829), + [anon_sym_struct] = ACTIONS(2829), + [anon_sym_union] = ACTIONS(2829), + [anon_sym_if] = ACTIONS(2829), + [anon_sym_switch] = ACTIONS(2829), + [anon_sym_case] = ACTIONS(2829), + [anon_sym_default] = ACTIONS(2829), + [anon_sym_while] = ACTIONS(2829), + [anon_sym_do] = ACTIONS(2829), + [anon_sym_for] = ACTIONS(2829), + [anon_sym_return] = ACTIONS(2829), + [anon_sym_break] = ACTIONS(2829), + [anon_sym_continue] = ACTIONS(2829), + [anon_sym_goto] = ACTIONS(2829), + [anon_sym_not] = ACTIONS(2829), + [anon_sym_compl] = ACTIONS(2829), + [anon_sym_DASH_DASH] = ACTIONS(2831), + [anon_sym_PLUS_PLUS] = ACTIONS(2831), + [anon_sym_sizeof] = ACTIONS(2829), + [sym_number_literal] = ACTIONS(2831), + [anon_sym_L_SQUOTE] = ACTIONS(2831), + [anon_sym_u_SQUOTE] = ACTIONS(2831), + [anon_sym_U_SQUOTE] = ACTIONS(2831), + [anon_sym_u8_SQUOTE] = ACTIONS(2831), + [anon_sym_SQUOTE] = ACTIONS(2831), + [anon_sym_L_DQUOTE] = ACTIONS(2831), + [anon_sym_u_DQUOTE] = ACTIONS(2831), + [anon_sym_U_DQUOTE] = ACTIONS(2831), + [anon_sym_u8_DQUOTE] = ACTIONS(2831), + [anon_sym_DQUOTE] = ACTIONS(2831), + [sym_true] = ACTIONS(2829), + [sym_false] = ACTIONS(2829), + [sym_null] = ACTIONS(2829), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2829), + [anon_sym_decltype] = ACTIONS(2829), + [anon_sym_virtual] = ACTIONS(2829), + [anon_sym_explicit] = ACTIONS(2829), + [anon_sym_typename] = ACTIONS(2829), + [anon_sym_template] = ACTIONS(2829), + [anon_sym_operator] = ACTIONS(2829), + [anon_sym_try] = ACTIONS(2829), + [anon_sym_delete] = ACTIONS(2829), + [anon_sym_throw] = ACTIONS(2829), + [anon_sym_namespace] = ACTIONS(2829), + [anon_sym_using] = ACTIONS(2829), + [anon_sym_static_assert] = ACTIONS(2829), + [anon_sym_concept] = ACTIONS(2829), + [anon_sym_co_return] = ACTIONS(2829), + [anon_sym_co_yield] = ACTIONS(2829), + [anon_sym_co_await] = ACTIONS(2829), + [anon_sym_new] = ACTIONS(2829), + [anon_sym_requires] = ACTIONS(2829), + [sym_this] = ACTIONS(2829), + [sym_nullptr] = ACTIONS(2829), + [sym_raw_string_literal] = ACTIONS(2831), }, - [1453] = { - [sym__expression] = STATE(3823), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3633), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [987] = { + [ts_builtin_sym_end] = ACTIONS(2827), + [sym_identifier] = ACTIONS(2825), + [aux_sym_preproc_include_token1] = ACTIONS(2825), + [aux_sym_preproc_def_token1] = ACTIONS(2825), + [aux_sym_preproc_if_token1] = ACTIONS(2825), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2825), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2825), + [sym_preproc_directive] = ACTIONS(2825), + [anon_sym_LPAREN2] = ACTIONS(2827), + [anon_sym_BANG] = ACTIONS(2827), + [anon_sym_TILDE] = ACTIONS(2827), + [anon_sym_DASH] = ACTIONS(2825), + [anon_sym_PLUS] = ACTIONS(2825), + [anon_sym_STAR] = ACTIONS(2827), + [anon_sym_AMP_AMP] = ACTIONS(2827), + [anon_sym_AMP] = ACTIONS(2825), + [anon_sym_SEMI] = ACTIONS(2827), + [anon_sym_typedef] = ACTIONS(2825), + [anon_sym_extern] = ACTIONS(2825), + [anon_sym___attribute__] = ACTIONS(2825), + [anon_sym_COLON_COLON] = ACTIONS(2827), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2827), + [anon_sym___declspec] = ACTIONS(2825), + [anon_sym___based] = ACTIONS(2825), + [anon_sym___cdecl] = ACTIONS(2825), + [anon_sym___clrcall] = ACTIONS(2825), + [anon_sym___stdcall] = ACTIONS(2825), + [anon_sym___fastcall] = ACTIONS(2825), + [anon_sym___thiscall] = ACTIONS(2825), + [anon_sym___vectorcall] = ACTIONS(2825), + [anon_sym_LBRACE] = ACTIONS(2827), + [anon_sym_LBRACK] = ACTIONS(2825), + [anon_sym_static] = ACTIONS(2825), + [anon_sym_register] = ACTIONS(2825), + [anon_sym_inline] = ACTIONS(2825), + [anon_sym_thread_local] = ACTIONS(2825), + [anon_sym_const] = ACTIONS(2825), + [anon_sym_volatile] = ACTIONS(2825), + [anon_sym_restrict] = ACTIONS(2825), + [anon_sym__Atomic] = ACTIONS(2825), + [anon_sym_mutable] = ACTIONS(2825), + [anon_sym_constexpr] = ACTIONS(2825), + [anon_sym_constinit] = ACTIONS(2825), + [anon_sym_consteval] = ACTIONS(2825), + [anon_sym_signed] = ACTIONS(2825), + [anon_sym_unsigned] = ACTIONS(2825), + [anon_sym_long] = ACTIONS(2825), + [anon_sym_short] = ACTIONS(2825), + [sym_primitive_type] = ACTIONS(2825), + [anon_sym_enum] = ACTIONS(2825), + [anon_sym_class] = ACTIONS(2825), + [anon_sym_struct] = ACTIONS(2825), + [anon_sym_union] = ACTIONS(2825), + [anon_sym_if] = ACTIONS(2825), + [anon_sym_switch] = ACTIONS(2825), + [anon_sym_case] = ACTIONS(2825), + [anon_sym_default] = ACTIONS(2825), + [anon_sym_while] = ACTIONS(2825), + [anon_sym_do] = ACTIONS(2825), + [anon_sym_for] = ACTIONS(2825), + [anon_sym_return] = ACTIONS(2825), + [anon_sym_break] = ACTIONS(2825), + [anon_sym_continue] = ACTIONS(2825), + [anon_sym_goto] = ACTIONS(2825), + [anon_sym_not] = ACTIONS(2825), + [anon_sym_compl] = ACTIONS(2825), + [anon_sym_DASH_DASH] = ACTIONS(2827), + [anon_sym_PLUS_PLUS] = ACTIONS(2827), + [anon_sym_sizeof] = ACTIONS(2825), + [sym_number_literal] = ACTIONS(2827), + [anon_sym_L_SQUOTE] = ACTIONS(2827), + [anon_sym_u_SQUOTE] = ACTIONS(2827), + [anon_sym_U_SQUOTE] = ACTIONS(2827), + [anon_sym_u8_SQUOTE] = ACTIONS(2827), + [anon_sym_SQUOTE] = ACTIONS(2827), + [anon_sym_L_DQUOTE] = ACTIONS(2827), + [anon_sym_u_DQUOTE] = ACTIONS(2827), + [anon_sym_U_DQUOTE] = ACTIONS(2827), + [anon_sym_u8_DQUOTE] = ACTIONS(2827), + [anon_sym_DQUOTE] = ACTIONS(2827), + [sym_true] = ACTIONS(2825), + [sym_false] = ACTIONS(2825), + [sym_null] = ACTIONS(2825), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2825), + [anon_sym_decltype] = ACTIONS(2825), + [anon_sym_virtual] = ACTIONS(2825), + [anon_sym_explicit] = ACTIONS(2825), + [anon_sym_typename] = ACTIONS(2825), + [anon_sym_template] = ACTIONS(2825), + [anon_sym_operator] = ACTIONS(2825), + [anon_sym_try] = ACTIONS(2825), + [anon_sym_delete] = ACTIONS(2825), + [anon_sym_throw] = ACTIONS(2825), + [anon_sym_namespace] = ACTIONS(2825), + [anon_sym_using] = ACTIONS(2825), + [anon_sym_static_assert] = ACTIONS(2825), + [anon_sym_concept] = ACTIONS(2825), + [anon_sym_co_return] = ACTIONS(2825), + [anon_sym_co_yield] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(2825), + [anon_sym_new] = ACTIONS(2825), + [anon_sym_requires] = ACTIONS(2825), + [sym_this] = ACTIONS(2825), + [sym_nullptr] = ACTIONS(2825), + [sym_raw_string_literal] = ACTIONS(2827), }, - [1454] = { - [sym__expression] = STATE(2558), - [sym_conditional_expression] = STATE(2541), - [sym_assignment_expression] = STATE(2541), - [sym_pointer_expression] = STATE(2531), - [sym_unary_expression] = STATE(2541), - [sym_binary_expression] = STATE(2541), - [sym_update_expression] = STATE(2541), - [sym_cast_expression] = STATE(2541), - [sym_sizeof_expression] = STATE(2541), - [sym_subscript_expression] = STATE(2531), - [sym_call_expression] = STATE(2531), - [sym_field_expression] = STATE(2531), - [sym_compound_literal_expression] = STATE(2541), - [sym_parenthesized_expression] = STATE(2531), - [sym_char_literal] = STATE(2481), - [sym_concatenated_string] = STATE(2481), - [sym_string_literal] = STATE(2063), - [sym__class_name] = STATE(6239), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2541), - [sym_co_await_expression] = STATE(2541), - [sym_new_expression] = STATE(2541), - [sym_delete_expression] = STATE(2541), - [sym_requires_clause] = STATE(2541), - [sym_requires_expression] = STATE(2541), - [sym_lambda_expression] = STATE(2541), - [sym_lambda_capture_specifier] = STATE(4508), - [sym_fold_expression] = STATE(2541), - [sym_parameter_pack_expansion] = STATE(2541), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2531), - [sym_qualified_type_identifier] = STATE(6239), - [sym_user_defined_literal] = STATE(2541), - [sym_identifier] = ACTIONS(2306), - [anon_sym_LPAREN2] = ACTIONS(2310), - [anon_sym_BANG] = ACTIONS(2314), - [anon_sym_TILDE] = ACTIONS(2314), - [anon_sym_DASH] = ACTIONS(2312), - [anon_sym_PLUS] = ACTIONS(2312), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(2318), - [anon_sym_LBRACK] = ACTIONS(2272), - [anon_sym_RBRACK] = ACTIONS(3635), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(2322), - [anon_sym_PLUS_PLUS] = ACTIONS(2322), - [anon_sym_sizeof] = ACTIONS(2324), - [sym_number_literal] = ACTIONS(2326), - [anon_sym_L_SQUOTE] = ACTIONS(2328), - [anon_sym_u_SQUOTE] = ACTIONS(2328), - [anon_sym_U_SQUOTE] = ACTIONS(2328), - [anon_sym_u8_SQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2328), - [anon_sym_L_DQUOTE] = ACTIONS(2330), - [anon_sym_u_DQUOTE] = ACTIONS(2330), - [anon_sym_U_DQUOTE] = ACTIONS(2330), - [anon_sym_u8_DQUOTE] = ACTIONS(2330), - [anon_sym_DQUOTE] = ACTIONS(2330), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2334), - [anon_sym_co_await] = ACTIONS(2336), - [anon_sym_new] = ACTIONS(2338), - [anon_sym_requires] = ACTIONS(2340), - [sym_this] = ACTIONS(2332), - [sym_nullptr] = ACTIONS(2332), - [sym_raw_string_literal] = ACTIONS(2342), + [988] = { + [ts_builtin_sym_end] = ACTIONS(2823), + [sym_identifier] = ACTIONS(2821), + [aux_sym_preproc_include_token1] = ACTIONS(2821), + [aux_sym_preproc_def_token1] = ACTIONS(2821), + [aux_sym_preproc_if_token1] = ACTIONS(2821), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2821), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2821), + [sym_preproc_directive] = ACTIONS(2821), + [anon_sym_LPAREN2] = ACTIONS(2823), + [anon_sym_BANG] = ACTIONS(2823), + [anon_sym_TILDE] = ACTIONS(2823), + [anon_sym_DASH] = ACTIONS(2821), + [anon_sym_PLUS] = ACTIONS(2821), + [anon_sym_STAR] = ACTIONS(2823), + [anon_sym_AMP_AMP] = ACTIONS(2823), + [anon_sym_AMP] = ACTIONS(2821), + [anon_sym_SEMI] = ACTIONS(2823), + [anon_sym_typedef] = ACTIONS(2821), + [anon_sym_extern] = ACTIONS(2821), + [anon_sym___attribute__] = ACTIONS(2821), + [anon_sym_COLON_COLON] = ACTIONS(2823), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2823), + [anon_sym___declspec] = ACTIONS(2821), + [anon_sym___based] = ACTIONS(2821), + [anon_sym___cdecl] = ACTIONS(2821), + [anon_sym___clrcall] = ACTIONS(2821), + [anon_sym___stdcall] = ACTIONS(2821), + [anon_sym___fastcall] = ACTIONS(2821), + [anon_sym___thiscall] = ACTIONS(2821), + [anon_sym___vectorcall] = ACTIONS(2821), + [anon_sym_LBRACE] = ACTIONS(2823), + [anon_sym_LBRACK] = ACTIONS(2821), + [anon_sym_static] = ACTIONS(2821), + [anon_sym_register] = ACTIONS(2821), + [anon_sym_inline] = ACTIONS(2821), + [anon_sym_thread_local] = ACTIONS(2821), + [anon_sym_const] = ACTIONS(2821), + [anon_sym_volatile] = ACTIONS(2821), + [anon_sym_restrict] = ACTIONS(2821), + [anon_sym__Atomic] = ACTIONS(2821), + [anon_sym_mutable] = ACTIONS(2821), + [anon_sym_constexpr] = ACTIONS(2821), + [anon_sym_constinit] = ACTIONS(2821), + [anon_sym_consteval] = ACTIONS(2821), + [anon_sym_signed] = ACTIONS(2821), + [anon_sym_unsigned] = ACTIONS(2821), + [anon_sym_long] = ACTIONS(2821), + [anon_sym_short] = ACTIONS(2821), + [sym_primitive_type] = ACTIONS(2821), + [anon_sym_enum] = ACTIONS(2821), + [anon_sym_class] = ACTIONS(2821), + [anon_sym_struct] = ACTIONS(2821), + [anon_sym_union] = ACTIONS(2821), + [anon_sym_if] = ACTIONS(2821), + [anon_sym_switch] = ACTIONS(2821), + [anon_sym_case] = ACTIONS(2821), + [anon_sym_default] = ACTIONS(2821), + [anon_sym_while] = ACTIONS(2821), + [anon_sym_do] = ACTIONS(2821), + [anon_sym_for] = ACTIONS(2821), + [anon_sym_return] = ACTIONS(2821), + [anon_sym_break] = ACTIONS(2821), + [anon_sym_continue] = ACTIONS(2821), + [anon_sym_goto] = ACTIONS(2821), + [anon_sym_not] = ACTIONS(2821), + [anon_sym_compl] = ACTIONS(2821), + [anon_sym_DASH_DASH] = ACTIONS(2823), + [anon_sym_PLUS_PLUS] = ACTIONS(2823), + [anon_sym_sizeof] = ACTIONS(2821), + [sym_number_literal] = ACTIONS(2823), + [anon_sym_L_SQUOTE] = ACTIONS(2823), + [anon_sym_u_SQUOTE] = ACTIONS(2823), + [anon_sym_U_SQUOTE] = ACTIONS(2823), + [anon_sym_u8_SQUOTE] = ACTIONS(2823), + [anon_sym_SQUOTE] = ACTIONS(2823), + [anon_sym_L_DQUOTE] = ACTIONS(2823), + [anon_sym_u_DQUOTE] = ACTIONS(2823), + [anon_sym_U_DQUOTE] = ACTIONS(2823), + [anon_sym_u8_DQUOTE] = ACTIONS(2823), + [anon_sym_DQUOTE] = ACTIONS(2823), + [sym_true] = ACTIONS(2821), + [sym_false] = ACTIONS(2821), + [sym_null] = ACTIONS(2821), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2821), + [anon_sym_decltype] = ACTIONS(2821), + [anon_sym_virtual] = ACTIONS(2821), + [anon_sym_explicit] = ACTIONS(2821), + [anon_sym_typename] = ACTIONS(2821), + [anon_sym_template] = ACTIONS(2821), + [anon_sym_operator] = ACTIONS(2821), + [anon_sym_try] = ACTIONS(2821), + [anon_sym_delete] = ACTIONS(2821), + [anon_sym_throw] = ACTIONS(2821), + [anon_sym_namespace] = ACTIONS(2821), + [anon_sym_using] = ACTIONS(2821), + [anon_sym_static_assert] = ACTIONS(2821), + [anon_sym_concept] = ACTIONS(2821), + [anon_sym_co_return] = ACTIONS(2821), + [anon_sym_co_yield] = ACTIONS(2821), + [anon_sym_co_await] = ACTIONS(2821), + [anon_sym_new] = ACTIONS(2821), + [anon_sym_requires] = ACTIONS(2821), + [sym_this] = ACTIONS(2821), + [sym_nullptr] = ACTIONS(2821), + [sym_raw_string_literal] = ACTIONS(2823), }, - [1455] = { - [sym__expression] = STATE(2558), - [sym_conditional_expression] = STATE(2541), - [sym_assignment_expression] = STATE(2541), - [sym_pointer_expression] = STATE(2531), - [sym_unary_expression] = STATE(2541), - [sym_binary_expression] = STATE(2541), - [sym_update_expression] = STATE(2541), - [sym_cast_expression] = STATE(2541), - [sym_sizeof_expression] = STATE(2541), - [sym_subscript_expression] = STATE(2531), - [sym_call_expression] = STATE(2531), - [sym_field_expression] = STATE(2531), - [sym_compound_literal_expression] = STATE(2541), - [sym_parenthesized_expression] = STATE(2531), - [sym_char_literal] = STATE(2481), - [sym_concatenated_string] = STATE(2481), - [sym_string_literal] = STATE(2063), - [sym__class_name] = STATE(6239), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2541), - [sym_co_await_expression] = STATE(2541), - [sym_new_expression] = STATE(2541), - [sym_delete_expression] = STATE(2541), - [sym_requires_clause] = STATE(2541), - [sym_requires_expression] = STATE(2541), - [sym_lambda_expression] = STATE(2541), - [sym_lambda_capture_specifier] = STATE(4508), - [sym_fold_expression] = STATE(2541), - [sym_parameter_pack_expansion] = STATE(2541), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2531), - [sym_qualified_type_identifier] = STATE(6239), - [sym_user_defined_literal] = STATE(2541), - [sym_identifier] = ACTIONS(2306), - [anon_sym_LPAREN2] = ACTIONS(2310), - [anon_sym_BANG] = ACTIONS(2314), - [anon_sym_TILDE] = ACTIONS(2314), - [anon_sym_DASH] = ACTIONS(2312), - [anon_sym_PLUS] = ACTIONS(2312), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(2318), - [anon_sym_LBRACK] = ACTIONS(2272), - [anon_sym_RBRACK] = ACTIONS(3637), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(2322), - [anon_sym_PLUS_PLUS] = ACTIONS(2322), - [anon_sym_sizeof] = ACTIONS(2324), - [sym_number_literal] = ACTIONS(2326), - [anon_sym_L_SQUOTE] = ACTIONS(2328), - [anon_sym_u_SQUOTE] = ACTIONS(2328), - [anon_sym_U_SQUOTE] = ACTIONS(2328), - [anon_sym_u8_SQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2328), - [anon_sym_L_DQUOTE] = ACTIONS(2330), - [anon_sym_u_DQUOTE] = ACTIONS(2330), - [anon_sym_U_DQUOTE] = ACTIONS(2330), - [anon_sym_u8_DQUOTE] = ACTIONS(2330), - [anon_sym_DQUOTE] = ACTIONS(2330), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2334), - [anon_sym_co_await] = ACTIONS(2336), - [anon_sym_new] = ACTIONS(2338), - [anon_sym_requires] = ACTIONS(2340), - [sym_this] = ACTIONS(2332), - [sym_nullptr] = ACTIONS(2332), - [sym_raw_string_literal] = ACTIONS(2342), + [989] = { + [ts_builtin_sym_end] = ACTIONS(2819), + [sym_identifier] = ACTIONS(2817), + [aux_sym_preproc_include_token1] = ACTIONS(2817), + [aux_sym_preproc_def_token1] = ACTIONS(2817), + [aux_sym_preproc_if_token1] = ACTIONS(2817), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2817), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2817), + [sym_preproc_directive] = ACTIONS(2817), + [anon_sym_LPAREN2] = ACTIONS(2819), + [anon_sym_BANG] = ACTIONS(2819), + [anon_sym_TILDE] = ACTIONS(2819), + [anon_sym_DASH] = ACTIONS(2817), + [anon_sym_PLUS] = ACTIONS(2817), + [anon_sym_STAR] = ACTIONS(2819), + [anon_sym_AMP_AMP] = ACTIONS(2819), + [anon_sym_AMP] = ACTIONS(2817), + [anon_sym_SEMI] = ACTIONS(2819), + [anon_sym_typedef] = ACTIONS(2817), + [anon_sym_extern] = ACTIONS(2817), + [anon_sym___attribute__] = ACTIONS(2817), + [anon_sym_COLON_COLON] = ACTIONS(2819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2819), + [anon_sym___declspec] = ACTIONS(2817), + [anon_sym___based] = ACTIONS(2817), + [anon_sym___cdecl] = ACTIONS(2817), + [anon_sym___clrcall] = ACTIONS(2817), + [anon_sym___stdcall] = ACTIONS(2817), + [anon_sym___fastcall] = ACTIONS(2817), + [anon_sym___thiscall] = ACTIONS(2817), + [anon_sym___vectorcall] = ACTIONS(2817), + [anon_sym_LBRACE] = ACTIONS(2819), + [anon_sym_LBRACK] = ACTIONS(2817), + [anon_sym_static] = ACTIONS(2817), + [anon_sym_register] = ACTIONS(2817), + [anon_sym_inline] = ACTIONS(2817), + [anon_sym_thread_local] = ACTIONS(2817), + [anon_sym_const] = ACTIONS(2817), + [anon_sym_volatile] = ACTIONS(2817), + [anon_sym_restrict] = ACTIONS(2817), + [anon_sym__Atomic] = ACTIONS(2817), + [anon_sym_mutable] = ACTIONS(2817), + [anon_sym_constexpr] = ACTIONS(2817), + [anon_sym_constinit] = ACTIONS(2817), + [anon_sym_consteval] = ACTIONS(2817), + [anon_sym_signed] = ACTIONS(2817), + [anon_sym_unsigned] = ACTIONS(2817), + [anon_sym_long] = ACTIONS(2817), + [anon_sym_short] = ACTIONS(2817), + [sym_primitive_type] = ACTIONS(2817), + [anon_sym_enum] = ACTIONS(2817), + [anon_sym_class] = ACTIONS(2817), + [anon_sym_struct] = ACTIONS(2817), + [anon_sym_union] = ACTIONS(2817), + [anon_sym_if] = ACTIONS(2817), + [anon_sym_switch] = ACTIONS(2817), + [anon_sym_case] = ACTIONS(2817), + [anon_sym_default] = ACTIONS(2817), + [anon_sym_while] = ACTIONS(2817), + [anon_sym_do] = ACTIONS(2817), + [anon_sym_for] = ACTIONS(2817), + [anon_sym_return] = ACTIONS(2817), + [anon_sym_break] = ACTIONS(2817), + [anon_sym_continue] = ACTIONS(2817), + [anon_sym_goto] = ACTIONS(2817), + [anon_sym_not] = ACTIONS(2817), + [anon_sym_compl] = ACTIONS(2817), + [anon_sym_DASH_DASH] = ACTIONS(2819), + [anon_sym_PLUS_PLUS] = ACTIONS(2819), + [anon_sym_sizeof] = ACTIONS(2817), + [sym_number_literal] = ACTIONS(2819), + [anon_sym_L_SQUOTE] = ACTIONS(2819), + [anon_sym_u_SQUOTE] = ACTIONS(2819), + [anon_sym_U_SQUOTE] = ACTIONS(2819), + [anon_sym_u8_SQUOTE] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_L_DQUOTE] = ACTIONS(2819), + [anon_sym_u_DQUOTE] = ACTIONS(2819), + [anon_sym_U_DQUOTE] = ACTIONS(2819), + [anon_sym_u8_DQUOTE] = ACTIONS(2819), + [anon_sym_DQUOTE] = ACTIONS(2819), + [sym_true] = ACTIONS(2817), + [sym_false] = ACTIONS(2817), + [sym_null] = ACTIONS(2817), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2817), + [anon_sym_decltype] = ACTIONS(2817), + [anon_sym_virtual] = ACTIONS(2817), + [anon_sym_explicit] = ACTIONS(2817), + [anon_sym_typename] = ACTIONS(2817), + [anon_sym_template] = ACTIONS(2817), + [anon_sym_operator] = ACTIONS(2817), + [anon_sym_try] = ACTIONS(2817), + [anon_sym_delete] = ACTIONS(2817), + [anon_sym_throw] = ACTIONS(2817), + [anon_sym_namespace] = ACTIONS(2817), + [anon_sym_using] = ACTIONS(2817), + [anon_sym_static_assert] = ACTIONS(2817), + [anon_sym_concept] = ACTIONS(2817), + [anon_sym_co_return] = ACTIONS(2817), + [anon_sym_co_yield] = ACTIONS(2817), + [anon_sym_co_await] = ACTIONS(2817), + [anon_sym_new] = ACTIONS(2817), + [anon_sym_requires] = ACTIONS(2817), + [sym_this] = ACTIONS(2817), + [sym_nullptr] = ACTIONS(2817), + [sym_raw_string_literal] = ACTIONS(2819), }, - [1456] = { - [sym__expression] = STATE(2558), - [sym_conditional_expression] = STATE(2541), - [sym_assignment_expression] = STATE(2541), - [sym_pointer_expression] = STATE(2531), - [sym_unary_expression] = STATE(2541), - [sym_binary_expression] = STATE(2541), - [sym_update_expression] = STATE(2541), - [sym_cast_expression] = STATE(2541), - [sym_sizeof_expression] = STATE(2541), - [sym_subscript_expression] = STATE(2531), - [sym_call_expression] = STATE(2531), - [sym_field_expression] = STATE(2531), - [sym_compound_literal_expression] = STATE(2541), - [sym_parenthesized_expression] = STATE(2531), - [sym_char_literal] = STATE(2481), - [sym_concatenated_string] = STATE(2481), - [sym_string_literal] = STATE(2063), - [sym__class_name] = STATE(6239), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2541), - [sym_co_await_expression] = STATE(2541), - [sym_new_expression] = STATE(2541), - [sym_delete_expression] = STATE(2541), - [sym_requires_clause] = STATE(2541), - [sym_requires_expression] = STATE(2541), - [sym_lambda_expression] = STATE(2541), - [sym_lambda_capture_specifier] = STATE(4508), - [sym_fold_expression] = STATE(2541), - [sym_parameter_pack_expansion] = STATE(2541), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2531), - [sym_qualified_type_identifier] = STATE(6239), - [sym_user_defined_literal] = STATE(2541), - [sym_identifier] = ACTIONS(2306), - [anon_sym_LPAREN2] = ACTIONS(2310), - [anon_sym_BANG] = ACTIONS(2314), - [anon_sym_TILDE] = ACTIONS(2314), - [anon_sym_DASH] = ACTIONS(2312), - [anon_sym_PLUS] = ACTIONS(2312), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(2318), - [anon_sym_LBRACK] = ACTIONS(2272), - [anon_sym_RBRACK] = ACTIONS(3639), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(2322), - [anon_sym_PLUS_PLUS] = ACTIONS(2322), - [anon_sym_sizeof] = ACTIONS(2324), - [sym_number_literal] = ACTIONS(2326), - [anon_sym_L_SQUOTE] = ACTIONS(2328), - [anon_sym_u_SQUOTE] = ACTIONS(2328), - [anon_sym_U_SQUOTE] = ACTIONS(2328), - [anon_sym_u8_SQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2328), - [anon_sym_L_DQUOTE] = ACTIONS(2330), - [anon_sym_u_DQUOTE] = ACTIONS(2330), - [anon_sym_U_DQUOTE] = ACTIONS(2330), - [anon_sym_u8_DQUOTE] = ACTIONS(2330), - [anon_sym_DQUOTE] = ACTIONS(2330), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2334), - [anon_sym_co_await] = ACTIONS(2336), - [anon_sym_new] = ACTIONS(2338), - [anon_sym_requires] = ACTIONS(2340), - [sym_this] = ACTIONS(2332), - [sym_nullptr] = ACTIONS(2332), - [sym_raw_string_literal] = ACTIONS(2342), + [990] = { + [ts_builtin_sym_end] = ACTIONS(2815), + [sym_identifier] = ACTIONS(2813), + [aux_sym_preproc_include_token1] = ACTIONS(2813), + [aux_sym_preproc_def_token1] = ACTIONS(2813), + [aux_sym_preproc_if_token1] = ACTIONS(2813), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2813), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2813), + [sym_preproc_directive] = ACTIONS(2813), + [anon_sym_LPAREN2] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(2815), + [anon_sym_TILDE] = ACTIONS(2815), + [anon_sym_DASH] = ACTIONS(2813), + [anon_sym_PLUS] = ACTIONS(2813), + [anon_sym_STAR] = ACTIONS(2815), + [anon_sym_AMP_AMP] = ACTIONS(2815), + [anon_sym_AMP] = ACTIONS(2813), + [anon_sym_SEMI] = ACTIONS(2815), + [anon_sym_typedef] = ACTIONS(2813), + [anon_sym_extern] = ACTIONS(2813), + [anon_sym___attribute__] = ACTIONS(2813), + [anon_sym_COLON_COLON] = ACTIONS(2815), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2815), + [anon_sym___declspec] = ACTIONS(2813), + [anon_sym___based] = ACTIONS(2813), + [anon_sym___cdecl] = ACTIONS(2813), + [anon_sym___clrcall] = ACTIONS(2813), + [anon_sym___stdcall] = ACTIONS(2813), + [anon_sym___fastcall] = ACTIONS(2813), + [anon_sym___thiscall] = ACTIONS(2813), + [anon_sym___vectorcall] = ACTIONS(2813), + [anon_sym_LBRACE] = ACTIONS(2815), + [anon_sym_LBRACK] = ACTIONS(2813), + [anon_sym_static] = ACTIONS(2813), + [anon_sym_register] = ACTIONS(2813), + [anon_sym_inline] = ACTIONS(2813), + [anon_sym_thread_local] = ACTIONS(2813), + [anon_sym_const] = ACTIONS(2813), + [anon_sym_volatile] = ACTIONS(2813), + [anon_sym_restrict] = ACTIONS(2813), + [anon_sym__Atomic] = ACTIONS(2813), + [anon_sym_mutable] = ACTIONS(2813), + [anon_sym_constexpr] = ACTIONS(2813), + [anon_sym_constinit] = ACTIONS(2813), + [anon_sym_consteval] = ACTIONS(2813), + [anon_sym_signed] = ACTIONS(2813), + [anon_sym_unsigned] = ACTIONS(2813), + [anon_sym_long] = ACTIONS(2813), + [anon_sym_short] = ACTIONS(2813), + [sym_primitive_type] = ACTIONS(2813), + [anon_sym_enum] = ACTIONS(2813), + [anon_sym_class] = ACTIONS(2813), + [anon_sym_struct] = ACTIONS(2813), + [anon_sym_union] = ACTIONS(2813), + [anon_sym_if] = ACTIONS(2813), + [anon_sym_switch] = ACTIONS(2813), + [anon_sym_case] = ACTIONS(2813), + [anon_sym_default] = ACTIONS(2813), + [anon_sym_while] = ACTIONS(2813), + [anon_sym_do] = ACTIONS(2813), + [anon_sym_for] = ACTIONS(2813), + [anon_sym_return] = ACTIONS(2813), + [anon_sym_break] = ACTIONS(2813), + [anon_sym_continue] = ACTIONS(2813), + [anon_sym_goto] = ACTIONS(2813), + [anon_sym_not] = ACTIONS(2813), + [anon_sym_compl] = ACTIONS(2813), + [anon_sym_DASH_DASH] = ACTIONS(2815), + [anon_sym_PLUS_PLUS] = ACTIONS(2815), + [anon_sym_sizeof] = ACTIONS(2813), + [sym_number_literal] = ACTIONS(2815), + [anon_sym_L_SQUOTE] = ACTIONS(2815), + [anon_sym_u_SQUOTE] = ACTIONS(2815), + [anon_sym_U_SQUOTE] = ACTIONS(2815), + [anon_sym_u8_SQUOTE] = ACTIONS(2815), + [anon_sym_SQUOTE] = ACTIONS(2815), + [anon_sym_L_DQUOTE] = ACTIONS(2815), + [anon_sym_u_DQUOTE] = ACTIONS(2815), + [anon_sym_U_DQUOTE] = ACTIONS(2815), + [anon_sym_u8_DQUOTE] = ACTIONS(2815), + [anon_sym_DQUOTE] = ACTIONS(2815), + [sym_true] = ACTIONS(2813), + [sym_false] = ACTIONS(2813), + [sym_null] = ACTIONS(2813), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2813), + [anon_sym_decltype] = ACTIONS(2813), + [anon_sym_virtual] = ACTIONS(2813), + [anon_sym_explicit] = ACTIONS(2813), + [anon_sym_typename] = ACTIONS(2813), + [anon_sym_template] = ACTIONS(2813), + [anon_sym_operator] = ACTIONS(2813), + [anon_sym_try] = ACTIONS(2813), + [anon_sym_delete] = ACTIONS(2813), + [anon_sym_throw] = ACTIONS(2813), + [anon_sym_namespace] = ACTIONS(2813), + [anon_sym_using] = ACTIONS(2813), + [anon_sym_static_assert] = ACTIONS(2813), + [anon_sym_concept] = ACTIONS(2813), + [anon_sym_co_return] = ACTIONS(2813), + [anon_sym_co_yield] = ACTIONS(2813), + [anon_sym_co_await] = ACTIONS(2813), + [anon_sym_new] = ACTIONS(2813), + [anon_sym_requires] = ACTIONS(2813), + [sym_this] = ACTIONS(2813), + [sym_nullptr] = ACTIONS(2813), + [sym_raw_string_literal] = ACTIONS(2815), }, - [1457] = { - [sym__expression] = STATE(3471), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(3641), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3622), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [991] = { + [ts_builtin_sym_end] = ACTIONS(2661), + [sym_identifier] = ACTIONS(2659), + [aux_sym_preproc_include_token1] = ACTIONS(2659), + [aux_sym_preproc_def_token1] = ACTIONS(2659), + [aux_sym_preproc_if_token1] = ACTIONS(2659), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2659), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2659), + [sym_preproc_directive] = ACTIONS(2659), + [anon_sym_LPAREN2] = ACTIONS(2661), + [anon_sym_BANG] = ACTIONS(2661), + [anon_sym_TILDE] = ACTIONS(2661), + [anon_sym_DASH] = ACTIONS(2659), + [anon_sym_PLUS] = ACTIONS(2659), + [anon_sym_STAR] = ACTIONS(2661), + [anon_sym_AMP_AMP] = ACTIONS(2661), + [anon_sym_AMP] = ACTIONS(2659), + [anon_sym_SEMI] = ACTIONS(2661), + [anon_sym_typedef] = ACTIONS(2659), + [anon_sym_extern] = ACTIONS(2659), + [anon_sym___attribute__] = ACTIONS(2659), + [anon_sym_COLON_COLON] = ACTIONS(2661), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2661), + [anon_sym___declspec] = ACTIONS(2659), + [anon_sym___based] = ACTIONS(2659), + [anon_sym___cdecl] = ACTIONS(2659), + [anon_sym___clrcall] = ACTIONS(2659), + [anon_sym___stdcall] = ACTIONS(2659), + [anon_sym___fastcall] = ACTIONS(2659), + [anon_sym___thiscall] = ACTIONS(2659), + [anon_sym___vectorcall] = ACTIONS(2659), + [anon_sym_LBRACE] = ACTIONS(2661), + [anon_sym_LBRACK] = ACTIONS(2659), + [anon_sym_static] = ACTIONS(2659), + [anon_sym_register] = ACTIONS(2659), + [anon_sym_inline] = ACTIONS(2659), + [anon_sym_thread_local] = ACTIONS(2659), + [anon_sym_const] = ACTIONS(2659), + [anon_sym_volatile] = ACTIONS(2659), + [anon_sym_restrict] = ACTIONS(2659), + [anon_sym__Atomic] = ACTIONS(2659), + [anon_sym_mutable] = ACTIONS(2659), + [anon_sym_constexpr] = ACTIONS(2659), + [anon_sym_constinit] = ACTIONS(2659), + [anon_sym_consteval] = ACTIONS(2659), + [anon_sym_signed] = ACTIONS(2659), + [anon_sym_unsigned] = ACTIONS(2659), + [anon_sym_long] = ACTIONS(2659), + [anon_sym_short] = ACTIONS(2659), + [sym_primitive_type] = ACTIONS(2659), + [anon_sym_enum] = ACTIONS(2659), + [anon_sym_class] = ACTIONS(2659), + [anon_sym_struct] = ACTIONS(2659), + [anon_sym_union] = ACTIONS(2659), + [anon_sym_if] = ACTIONS(2659), + [anon_sym_switch] = ACTIONS(2659), + [anon_sym_case] = ACTIONS(2659), + [anon_sym_default] = ACTIONS(2659), + [anon_sym_while] = ACTIONS(2659), + [anon_sym_do] = ACTIONS(2659), + [anon_sym_for] = ACTIONS(2659), + [anon_sym_return] = ACTIONS(2659), + [anon_sym_break] = ACTIONS(2659), + [anon_sym_continue] = ACTIONS(2659), + [anon_sym_goto] = ACTIONS(2659), + [anon_sym_not] = ACTIONS(2659), + [anon_sym_compl] = ACTIONS(2659), + [anon_sym_DASH_DASH] = ACTIONS(2661), + [anon_sym_PLUS_PLUS] = ACTIONS(2661), + [anon_sym_sizeof] = ACTIONS(2659), + [sym_number_literal] = ACTIONS(2661), + [anon_sym_L_SQUOTE] = ACTIONS(2661), + [anon_sym_u_SQUOTE] = ACTIONS(2661), + [anon_sym_U_SQUOTE] = ACTIONS(2661), + [anon_sym_u8_SQUOTE] = ACTIONS(2661), + [anon_sym_SQUOTE] = ACTIONS(2661), + [anon_sym_L_DQUOTE] = ACTIONS(2661), + [anon_sym_u_DQUOTE] = ACTIONS(2661), + [anon_sym_U_DQUOTE] = ACTIONS(2661), + [anon_sym_u8_DQUOTE] = ACTIONS(2661), + [anon_sym_DQUOTE] = ACTIONS(2661), + [sym_true] = ACTIONS(2659), + [sym_false] = ACTIONS(2659), + [sym_null] = ACTIONS(2659), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2659), + [anon_sym_decltype] = ACTIONS(2659), + [anon_sym_virtual] = ACTIONS(2659), + [anon_sym_explicit] = ACTIONS(2659), + [anon_sym_typename] = ACTIONS(2659), + [anon_sym_template] = ACTIONS(2659), + [anon_sym_operator] = ACTIONS(2659), + [anon_sym_try] = ACTIONS(2659), + [anon_sym_delete] = ACTIONS(2659), + [anon_sym_throw] = ACTIONS(2659), + [anon_sym_namespace] = ACTIONS(2659), + [anon_sym_using] = ACTIONS(2659), + [anon_sym_static_assert] = ACTIONS(2659), + [anon_sym_concept] = ACTIONS(2659), + [anon_sym_co_return] = ACTIONS(2659), + [anon_sym_co_yield] = ACTIONS(2659), + [anon_sym_co_await] = ACTIONS(2659), + [anon_sym_new] = ACTIONS(2659), + [anon_sym_requires] = ACTIONS(2659), + [sym_this] = ACTIONS(2659), + [sym_nullptr] = ACTIONS(2659), + [sym_raw_string_literal] = ACTIONS(2661), }, - [1458] = { - [sym__expression] = STATE(3615), - [sym_conditional_expression] = STATE(3881), - [sym_assignment_expression] = STATE(3881), - [sym_pointer_expression] = STATE(2977), - [sym_unary_expression] = STATE(3881), - [sym_binary_expression] = STATE(3881), - [sym_update_expression] = STATE(3881), - [sym_cast_expression] = STATE(3881), - [sym_sizeof_expression] = STATE(3881), - [sym_subscript_expression] = STATE(2977), - [sym_call_expression] = STATE(2977), - [sym_field_expression] = STATE(2977), - [sym_compound_literal_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(2977), - [sym_char_literal] = STATE(3701), - [sym_concatenated_string] = STATE(3701), - [sym_string_literal] = STATE(3219), - [sym__class_name] = STATE(6063), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3881), - [sym_co_await_expression] = STATE(3881), - [sym_new_expression] = STATE(3881), - [sym_delete_expression] = STATE(3881), - [sym_requires_clause] = STATE(3881), - [sym_requires_expression] = STATE(3881), - [sym_lambda_expression] = STATE(3881), - [sym_lambda_capture_specifier] = STATE(4519), - [sym_fold_expression] = STATE(3881), - [sym_parameter_pack_expansion] = STATE(3881), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4642), - [sym_qualified_identifier] = STATE(2977), - [sym_qualified_type_identifier] = STATE(6063), - [sym_user_defined_literal] = STATE(3881), - [sym_identifier] = ACTIONS(3035), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3643), - [anon_sym_LPAREN2] = ACTIONS(3645), - [anon_sym_BANG] = ACTIONS(2533), - [anon_sym_TILDE] = ACTIONS(2533), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_STAR] = ACTIONS(2537), - [anon_sym_AMP] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(2539), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(2845), - [anon_sym_DASH_DASH] = ACTIONS(2553), - [anon_sym_PLUS_PLUS] = ACTIONS(2553), - [anon_sym_sizeof] = ACTIONS(2555), - [sym_number_literal] = ACTIONS(2557), - [anon_sym_L_SQUOTE] = ACTIONS(2559), - [anon_sym_u_SQUOTE] = ACTIONS(2559), - [anon_sym_U_SQUOTE] = ACTIONS(2559), - [anon_sym_u8_SQUOTE] = ACTIONS(2559), - [anon_sym_SQUOTE] = ACTIONS(2559), - [anon_sym_L_DQUOTE] = ACTIONS(2561), - [anon_sym_u_DQUOTE] = ACTIONS(2561), - [anon_sym_U_DQUOTE] = ACTIONS(2561), - [anon_sym_u8_DQUOTE] = ACTIONS(2561), - [anon_sym_DQUOTE] = ACTIONS(2561), - [sym_true] = ACTIONS(2563), - [sym_false] = ACTIONS(2563), - [sym_null] = ACTIONS(2563), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2573), - [anon_sym_co_await] = ACTIONS(2575), - [anon_sym_new] = ACTIONS(2577), - [anon_sym_requires] = ACTIONS(2579), - [sym_this] = ACTIONS(2563), - [sym_nullptr] = ACTIONS(2563), - [sym_raw_string_literal] = ACTIONS(2581), + [992] = { + [sym_identifier] = ACTIONS(2781), + [aux_sym_preproc_include_token1] = ACTIONS(2781), + [aux_sym_preproc_def_token1] = ACTIONS(2781), + [aux_sym_preproc_if_token1] = ACTIONS(2781), + [aux_sym_preproc_if_token2] = ACTIONS(2781), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2781), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2781), + [sym_preproc_directive] = ACTIONS(2781), + [anon_sym_LPAREN2] = ACTIONS(2783), + [anon_sym_BANG] = ACTIONS(2783), + [anon_sym_TILDE] = ACTIONS(2783), + [anon_sym_DASH] = ACTIONS(2781), + [anon_sym_PLUS] = ACTIONS(2781), + [anon_sym_STAR] = ACTIONS(2783), + [anon_sym_AMP_AMP] = ACTIONS(2783), + [anon_sym_AMP] = ACTIONS(2781), + [anon_sym_SEMI] = ACTIONS(2783), + [anon_sym_typedef] = ACTIONS(2781), + [anon_sym_extern] = ACTIONS(2781), + [anon_sym___attribute__] = ACTIONS(2781), + [anon_sym_COLON_COLON] = ACTIONS(2783), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2783), + [anon_sym___declspec] = ACTIONS(2781), + [anon_sym___based] = ACTIONS(2781), + [anon_sym___cdecl] = ACTIONS(2781), + [anon_sym___clrcall] = ACTIONS(2781), + [anon_sym___stdcall] = ACTIONS(2781), + [anon_sym___fastcall] = ACTIONS(2781), + [anon_sym___thiscall] = ACTIONS(2781), + [anon_sym___vectorcall] = ACTIONS(2781), + [anon_sym_LBRACE] = ACTIONS(2783), + [anon_sym_LBRACK] = ACTIONS(2781), + [anon_sym_static] = ACTIONS(2781), + [anon_sym_register] = ACTIONS(2781), + [anon_sym_inline] = ACTIONS(2781), + [anon_sym_thread_local] = ACTIONS(2781), + [anon_sym_const] = ACTIONS(2781), + [anon_sym_volatile] = ACTIONS(2781), + [anon_sym_restrict] = ACTIONS(2781), + [anon_sym__Atomic] = ACTIONS(2781), + [anon_sym_mutable] = ACTIONS(2781), + [anon_sym_constexpr] = ACTIONS(2781), + [anon_sym_constinit] = ACTIONS(2781), + [anon_sym_consteval] = ACTIONS(2781), + [anon_sym_signed] = ACTIONS(2781), + [anon_sym_unsigned] = ACTIONS(2781), + [anon_sym_long] = ACTIONS(2781), + [anon_sym_short] = ACTIONS(2781), + [sym_primitive_type] = ACTIONS(2781), + [anon_sym_enum] = ACTIONS(2781), + [anon_sym_class] = ACTIONS(2781), + [anon_sym_struct] = ACTIONS(2781), + [anon_sym_union] = ACTIONS(2781), + [anon_sym_if] = ACTIONS(2781), + [anon_sym_switch] = ACTIONS(2781), + [anon_sym_case] = ACTIONS(2781), + [anon_sym_default] = ACTIONS(2781), + [anon_sym_while] = ACTIONS(2781), + [anon_sym_do] = ACTIONS(2781), + [anon_sym_for] = ACTIONS(2781), + [anon_sym_return] = ACTIONS(2781), + [anon_sym_break] = ACTIONS(2781), + [anon_sym_continue] = ACTIONS(2781), + [anon_sym_goto] = ACTIONS(2781), + [anon_sym_not] = ACTIONS(2781), + [anon_sym_compl] = ACTIONS(2781), + [anon_sym_DASH_DASH] = ACTIONS(2783), + [anon_sym_PLUS_PLUS] = ACTIONS(2783), + [anon_sym_sizeof] = ACTIONS(2781), + [sym_number_literal] = ACTIONS(2783), + [anon_sym_L_SQUOTE] = ACTIONS(2783), + [anon_sym_u_SQUOTE] = ACTIONS(2783), + [anon_sym_U_SQUOTE] = ACTIONS(2783), + [anon_sym_u8_SQUOTE] = ACTIONS(2783), + [anon_sym_SQUOTE] = ACTIONS(2783), + [anon_sym_L_DQUOTE] = ACTIONS(2783), + [anon_sym_u_DQUOTE] = ACTIONS(2783), + [anon_sym_U_DQUOTE] = ACTIONS(2783), + [anon_sym_u8_DQUOTE] = ACTIONS(2783), + [anon_sym_DQUOTE] = ACTIONS(2783), + [sym_true] = ACTIONS(2781), + [sym_false] = ACTIONS(2781), + [sym_null] = ACTIONS(2781), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2781), + [anon_sym_decltype] = ACTIONS(2781), + [anon_sym_virtual] = ACTIONS(2781), + [anon_sym_explicit] = ACTIONS(2781), + [anon_sym_typename] = ACTIONS(2781), + [anon_sym_template] = ACTIONS(2781), + [anon_sym_operator] = ACTIONS(2781), + [anon_sym_try] = ACTIONS(2781), + [anon_sym_delete] = ACTIONS(2781), + [anon_sym_throw] = ACTIONS(2781), + [anon_sym_namespace] = ACTIONS(2781), + [anon_sym_using] = ACTIONS(2781), + [anon_sym_static_assert] = ACTIONS(2781), + [anon_sym_concept] = ACTIONS(2781), + [anon_sym_co_return] = ACTIONS(2781), + [anon_sym_co_yield] = ACTIONS(2781), + [anon_sym_co_await] = ACTIONS(2781), + [anon_sym_new] = ACTIONS(2781), + [anon_sym_requires] = ACTIONS(2781), + [sym_this] = ACTIONS(2781), + [sym_nullptr] = ACTIONS(2781), + [sym_raw_string_literal] = ACTIONS(2783), }, - [1459] = { - [sym__expression] = STATE(3882), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [993] = { + [sym_identifier] = ACTIONS(2733), + [aux_sym_preproc_include_token1] = ACTIONS(2733), + [aux_sym_preproc_def_token1] = ACTIONS(2733), + [aux_sym_preproc_if_token1] = ACTIONS(2733), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2733), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2733), + [sym_preproc_directive] = ACTIONS(2733), + [anon_sym_LPAREN2] = ACTIONS(2735), + [anon_sym_BANG] = ACTIONS(2735), + [anon_sym_TILDE] = ACTIONS(2735), + [anon_sym_DASH] = ACTIONS(2733), + [anon_sym_PLUS] = ACTIONS(2733), + [anon_sym_STAR] = ACTIONS(2735), + [anon_sym_AMP_AMP] = ACTIONS(2735), + [anon_sym_AMP] = ACTIONS(2733), + [anon_sym_SEMI] = ACTIONS(2735), + [anon_sym_typedef] = ACTIONS(2733), + [anon_sym_extern] = ACTIONS(2733), + [anon_sym___attribute__] = ACTIONS(2733), + [anon_sym_COLON_COLON] = ACTIONS(2735), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2735), + [anon_sym___declspec] = ACTIONS(2733), + [anon_sym___based] = ACTIONS(2733), + [anon_sym___cdecl] = ACTIONS(2733), + [anon_sym___clrcall] = ACTIONS(2733), + [anon_sym___stdcall] = ACTIONS(2733), + [anon_sym___fastcall] = ACTIONS(2733), + [anon_sym___thiscall] = ACTIONS(2733), + [anon_sym___vectorcall] = ACTIONS(2733), + [anon_sym_LBRACE] = ACTIONS(2735), + [anon_sym_RBRACE] = ACTIONS(2735), + [anon_sym_LBRACK] = ACTIONS(2733), + [anon_sym_static] = ACTIONS(2733), + [anon_sym_register] = ACTIONS(2733), + [anon_sym_inline] = ACTIONS(2733), + [anon_sym_thread_local] = ACTIONS(2733), + [anon_sym_const] = ACTIONS(2733), + [anon_sym_volatile] = ACTIONS(2733), + [anon_sym_restrict] = ACTIONS(2733), + [anon_sym__Atomic] = ACTIONS(2733), + [anon_sym_mutable] = ACTIONS(2733), + [anon_sym_constexpr] = ACTIONS(2733), + [anon_sym_constinit] = ACTIONS(2733), + [anon_sym_consteval] = ACTIONS(2733), + [anon_sym_signed] = ACTIONS(2733), + [anon_sym_unsigned] = ACTIONS(2733), + [anon_sym_long] = ACTIONS(2733), + [anon_sym_short] = ACTIONS(2733), + [sym_primitive_type] = ACTIONS(2733), + [anon_sym_enum] = ACTIONS(2733), + [anon_sym_class] = ACTIONS(2733), + [anon_sym_struct] = ACTIONS(2733), + [anon_sym_union] = ACTIONS(2733), + [anon_sym_if] = ACTIONS(2733), + [anon_sym_switch] = ACTIONS(2733), + [anon_sym_case] = ACTIONS(2733), + [anon_sym_default] = ACTIONS(2733), + [anon_sym_while] = ACTIONS(2733), + [anon_sym_do] = ACTIONS(2733), + [anon_sym_for] = ACTIONS(2733), + [anon_sym_return] = ACTIONS(2733), + [anon_sym_break] = ACTIONS(2733), + [anon_sym_continue] = ACTIONS(2733), + [anon_sym_goto] = ACTIONS(2733), + [anon_sym_not] = ACTIONS(2733), + [anon_sym_compl] = ACTIONS(2733), + [anon_sym_DASH_DASH] = ACTIONS(2735), + [anon_sym_PLUS_PLUS] = ACTIONS(2735), + [anon_sym_sizeof] = ACTIONS(2733), + [sym_number_literal] = ACTIONS(2735), + [anon_sym_L_SQUOTE] = ACTIONS(2735), + [anon_sym_u_SQUOTE] = ACTIONS(2735), + [anon_sym_U_SQUOTE] = ACTIONS(2735), + [anon_sym_u8_SQUOTE] = ACTIONS(2735), + [anon_sym_SQUOTE] = ACTIONS(2735), + [anon_sym_L_DQUOTE] = ACTIONS(2735), + [anon_sym_u_DQUOTE] = ACTIONS(2735), + [anon_sym_U_DQUOTE] = ACTIONS(2735), + [anon_sym_u8_DQUOTE] = ACTIONS(2735), + [anon_sym_DQUOTE] = ACTIONS(2735), + [sym_true] = ACTIONS(2733), + [sym_false] = ACTIONS(2733), + [sym_null] = ACTIONS(2733), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3647), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), - }, - [1460] = { - [sym__expression] = STATE(2714), - [sym_conditional_expression] = STATE(2765), - [sym_assignment_expression] = STATE(2765), - [sym_pointer_expression] = STATE(2827), - [sym_unary_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_update_expression] = STATE(2765), - [sym_cast_expression] = STATE(2765), - [sym_sizeof_expression] = STATE(2765), - [sym_subscript_expression] = STATE(2827), - [sym_call_expression] = STATE(2827), - [sym_field_expression] = STATE(2827), - [sym_compound_literal_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2827), - [sym_char_literal] = STATE(2674), - [sym_concatenated_string] = STATE(2674), - [sym_string_literal] = STATE(2093), - [sym__class_name] = STATE(6297), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2765), - [sym_co_await_expression] = STATE(2765), - [sym_new_expression] = STATE(2765), - [sym_delete_expression] = STATE(2765), - [sym_requires_clause] = STATE(2765), - [sym_requires_expression] = STATE(2765), - [sym_lambda_expression] = STATE(2765), - [sym_lambda_capture_specifier] = STATE(4512), - [sym_fold_expression] = STATE(2765), - [sym_parameter_pack_expansion] = STATE(2765), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4648), - [sym_qualified_identifier] = STATE(2827), - [sym_qualified_type_identifier] = STATE(6297), - [sym_user_defined_literal] = STATE(2765), - [sym_identifier] = ACTIONS(2363), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3649), - [anon_sym_LPAREN2] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1417), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_COLON_COLON] = ACTIONS(1423), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(2369), - [anon_sym_DASH_DASH] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [anon_sym_sizeof] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(1439), - [anon_sym_L_SQUOTE] = ACTIONS(1441), - [anon_sym_u_SQUOTE] = ACTIONS(1441), - [anon_sym_U_SQUOTE] = ACTIONS(1441), - [anon_sym_u8_SQUOTE] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1441), - [anon_sym_L_DQUOTE] = ACTIONS(1443), - [anon_sym_u_DQUOTE] = ACTIONS(1443), - [anon_sym_U_DQUOTE] = ACTIONS(1443), - [anon_sym_u8_DQUOTE] = ACTIONS(1443), - [anon_sym_DQUOTE] = ACTIONS(1443), - [sym_true] = ACTIONS(1445), - [sym_false] = ACTIONS(1445), - [sym_null] = ACTIONS(1445), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_co_await] = ACTIONS(1451), - [anon_sym_new] = ACTIONS(1453), - [anon_sym_requires] = ACTIONS(1455), - [sym_this] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(1445), - [sym_raw_string_literal] = ACTIONS(1457), - }, - [1461] = { - [sym__expression] = STATE(2713), - [sym_conditional_expression] = STATE(2765), - [sym_assignment_expression] = STATE(2765), - [sym_pointer_expression] = STATE(2827), - [sym_unary_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_update_expression] = STATE(2765), - [sym_cast_expression] = STATE(2765), - [sym_sizeof_expression] = STATE(2765), - [sym_subscript_expression] = STATE(2827), - [sym_call_expression] = STATE(2827), - [sym_field_expression] = STATE(2827), - [sym_compound_literal_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2827), - [sym_char_literal] = STATE(2674), - [sym_concatenated_string] = STATE(2674), - [sym_string_literal] = STATE(2093), - [sym__class_name] = STATE(6297), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2765), - [sym_co_await_expression] = STATE(2765), - [sym_new_expression] = STATE(2765), - [sym_delete_expression] = STATE(2765), - [sym_requires_clause] = STATE(2765), - [sym_requires_expression] = STATE(2765), - [sym_lambda_expression] = STATE(2765), - [sym_lambda_capture_specifier] = STATE(4512), - [sym_fold_expression] = STATE(2765), - [sym_parameter_pack_expansion] = STATE(2765), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4648), - [sym_qualified_identifier] = STATE(2827), - [sym_qualified_type_identifier] = STATE(6297), - [sym_user_defined_literal] = STATE(2765), - [sym_identifier] = ACTIONS(2363), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3652), - [anon_sym_LPAREN2] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1417), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_COLON_COLON] = ACTIONS(1423), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(2369), - [anon_sym_DASH_DASH] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [anon_sym_sizeof] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(1439), - [anon_sym_L_SQUOTE] = ACTIONS(1441), - [anon_sym_u_SQUOTE] = ACTIONS(1441), - [anon_sym_U_SQUOTE] = ACTIONS(1441), - [anon_sym_u8_SQUOTE] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1441), - [anon_sym_L_DQUOTE] = ACTIONS(1443), - [anon_sym_u_DQUOTE] = ACTIONS(1443), - [anon_sym_U_DQUOTE] = ACTIONS(1443), - [anon_sym_u8_DQUOTE] = ACTIONS(1443), - [anon_sym_DQUOTE] = ACTIONS(1443), - [sym_true] = ACTIONS(1445), - [sym_false] = ACTIONS(1445), - [sym_null] = ACTIONS(1445), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_co_await] = ACTIONS(1451), - [anon_sym_new] = ACTIONS(1453), - [anon_sym_requires] = ACTIONS(1455), - [sym_this] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(1445), - [sym_raw_string_literal] = ACTIONS(1457), + [sym_auto] = ACTIONS(2733), + [anon_sym_decltype] = ACTIONS(2733), + [anon_sym_virtual] = ACTIONS(2733), + [anon_sym_explicit] = ACTIONS(2733), + [anon_sym_typename] = ACTIONS(2733), + [anon_sym_template] = ACTIONS(2733), + [anon_sym_operator] = ACTIONS(2733), + [anon_sym_try] = ACTIONS(2733), + [anon_sym_delete] = ACTIONS(2733), + [anon_sym_throw] = ACTIONS(2733), + [anon_sym_namespace] = ACTIONS(2733), + [anon_sym_using] = ACTIONS(2733), + [anon_sym_static_assert] = ACTIONS(2733), + [anon_sym_concept] = ACTIONS(2733), + [anon_sym_co_return] = ACTIONS(2733), + [anon_sym_co_yield] = ACTIONS(2733), + [anon_sym_co_await] = ACTIONS(2733), + [anon_sym_new] = ACTIONS(2733), + [anon_sym_requires] = ACTIONS(2733), + [sym_this] = ACTIONS(2733), + [sym_nullptr] = ACTIONS(2733), + [sym_raw_string_literal] = ACTIONS(2735), }, - [1462] = { - [sym__expression] = STATE(2713), - [sym_conditional_expression] = STATE(2765), - [sym_assignment_expression] = STATE(2765), - [sym_pointer_expression] = STATE(2827), - [sym_unary_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_update_expression] = STATE(2765), - [sym_cast_expression] = STATE(2765), - [sym_sizeof_expression] = STATE(2765), - [sym_subscript_expression] = STATE(2827), - [sym_call_expression] = STATE(2827), - [sym_field_expression] = STATE(2827), - [sym_compound_literal_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2827), - [sym_char_literal] = STATE(2674), - [sym_concatenated_string] = STATE(2674), - [sym_string_literal] = STATE(2093), - [sym__class_name] = STATE(6297), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2765), - [sym_co_await_expression] = STATE(2765), - [sym_new_expression] = STATE(2765), - [sym_delete_expression] = STATE(2765), - [sym_requires_clause] = STATE(2765), - [sym_requires_expression] = STATE(2765), - [sym_lambda_expression] = STATE(2765), - [sym_lambda_capture_specifier] = STATE(4512), - [sym_fold_expression] = STATE(2765), - [sym_parameter_pack_expansion] = STATE(2765), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4648), - [sym_qualified_identifier] = STATE(2827), - [sym_qualified_type_identifier] = STATE(6297), - [sym_user_defined_literal] = STATE(2765), - [sym_identifier] = ACTIONS(2363), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3655), - [anon_sym_LPAREN2] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1417), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_COLON_COLON] = ACTIONS(1423), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(2369), - [anon_sym_DASH_DASH] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [anon_sym_sizeof] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(1439), - [anon_sym_L_SQUOTE] = ACTIONS(1441), - [anon_sym_u_SQUOTE] = ACTIONS(1441), - [anon_sym_U_SQUOTE] = ACTIONS(1441), - [anon_sym_u8_SQUOTE] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1441), - [anon_sym_L_DQUOTE] = ACTIONS(1443), - [anon_sym_u_DQUOTE] = ACTIONS(1443), - [anon_sym_U_DQUOTE] = ACTIONS(1443), - [anon_sym_u8_DQUOTE] = ACTIONS(1443), - [anon_sym_DQUOTE] = ACTIONS(1443), - [sym_true] = ACTIONS(1445), - [sym_false] = ACTIONS(1445), - [sym_null] = ACTIONS(1445), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_co_await] = ACTIONS(1451), - [anon_sym_new] = ACTIONS(1453), - [anon_sym_requires] = ACTIONS(1455), - [sym_this] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(1445), - [sym_raw_string_literal] = ACTIONS(1457), + [994] = { + [ts_builtin_sym_end] = ACTIONS(2811), + [sym_identifier] = ACTIONS(2809), + [aux_sym_preproc_include_token1] = ACTIONS(2809), + [aux_sym_preproc_def_token1] = ACTIONS(2809), + [aux_sym_preproc_if_token1] = ACTIONS(2809), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2809), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2809), + [sym_preproc_directive] = ACTIONS(2809), + [anon_sym_LPAREN2] = ACTIONS(2811), + [anon_sym_BANG] = ACTIONS(2811), + [anon_sym_TILDE] = ACTIONS(2811), + [anon_sym_DASH] = ACTIONS(2809), + [anon_sym_PLUS] = ACTIONS(2809), + [anon_sym_STAR] = ACTIONS(2811), + [anon_sym_AMP_AMP] = ACTIONS(2811), + [anon_sym_AMP] = ACTIONS(2809), + [anon_sym_SEMI] = ACTIONS(2811), + [anon_sym_typedef] = ACTIONS(2809), + [anon_sym_extern] = ACTIONS(2809), + [anon_sym___attribute__] = ACTIONS(2809), + [anon_sym_COLON_COLON] = ACTIONS(2811), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2811), + [anon_sym___declspec] = ACTIONS(2809), + [anon_sym___based] = ACTIONS(2809), + [anon_sym___cdecl] = ACTIONS(2809), + [anon_sym___clrcall] = ACTIONS(2809), + [anon_sym___stdcall] = ACTIONS(2809), + [anon_sym___fastcall] = ACTIONS(2809), + [anon_sym___thiscall] = ACTIONS(2809), + [anon_sym___vectorcall] = ACTIONS(2809), + [anon_sym_LBRACE] = ACTIONS(2811), + [anon_sym_LBRACK] = ACTIONS(2809), + [anon_sym_static] = ACTIONS(2809), + [anon_sym_register] = ACTIONS(2809), + [anon_sym_inline] = ACTIONS(2809), + [anon_sym_thread_local] = ACTIONS(2809), + [anon_sym_const] = ACTIONS(2809), + [anon_sym_volatile] = ACTIONS(2809), + [anon_sym_restrict] = ACTIONS(2809), + [anon_sym__Atomic] = ACTIONS(2809), + [anon_sym_mutable] = ACTIONS(2809), + [anon_sym_constexpr] = ACTIONS(2809), + [anon_sym_constinit] = ACTIONS(2809), + [anon_sym_consteval] = ACTIONS(2809), + [anon_sym_signed] = ACTIONS(2809), + [anon_sym_unsigned] = ACTIONS(2809), + [anon_sym_long] = ACTIONS(2809), + [anon_sym_short] = ACTIONS(2809), + [sym_primitive_type] = ACTIONS(2809), + [anon_sym_enum] = ACTIONS(2809), + [anon_sym_class] = ACTIONS(2809), + [anon_sym_struct] = ACTIONS(2809), + [anon_sym_union] = ACTIONS(2809), + [anon_sym_if] = ACTIONS(2809), + [anon_sym_switch] = ACTIONS(2809), + [anon_sym_case] = ACTIONS(2809), + [anon_sym_default] = ACTIONS(2809), + [anon_sym_while] = ACTIONS(2809), + [anon_sym_do] = ACTIONS(2809), + [anon_sym_for] = ACTIONS(2809), + [anon_sym_return] = ACTIONS(2809), + [anon_sym_break] = ACTIONS(2809), + [anon_sym_continue] = ACTIONS(2809), + [anon_sym_goto] = ACTIONS(2809), + [anon_sym_not] = ACTIONS(2809), + [anon_sym_compl] = ACTIONS(2809), + [anon_sym_DASH_DASH] = ACTIONS(2811), + [anon_sym_PLUS_PLUS] = ACTIONS(2811), + [anon_sym_sizeof] = ACTIONS(2809), + [sym_number_literal] = ACTIONS(2811), + [anon_sym_L_SQUOTE] = ACTIONS(2811), + [anon_sym_u_SQUOTE] = ACTIONS(2811), + [anon_sym_U_SQUOTE] = ACTIONS(2811), + [anon_sym_u8_SQUOTE] = ACTIONS(2811), + [anon_sym_SQUOTE] = ACTIONS(2811), + [anon_sym_L_DQUOTE] = ACTIONS(2811), + [anon_sym_u_DQUOTE] = ACTIONS(2811), + [anon_sym_U_DQUOTE] = ACTIONS(2811), + [anon_sym_u8_DQUOTE] = ACTIONS(2811), + [anon_sym_DQUOTE] = ACTIONS(2811), + [sym_true] = ACTIONS(2809), + [sym_false] = ACTIONS(2809), + [sym_null] = ACTIONS(2809), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2809), + [anon_sym_decltype] = ACTIONS(2809), + [anon_sym_virtual] = ACTIONS(2809), + [anon_sym_explicit] = ACTIONS(2809), + [anon_sym_typename] = ACTIONS(2809), + [anon_sym_template] = ACTIONS(2809), + [anon_sym_operator] = ACTIONS(2809), + [anon_sym_try] = ACTIONS(2809), + [anon_sym_delete] = ACTIONS(2809), + [anon_sym_throw] = ACTIONS(2809), + [anon_sym_namespace] = ACTIONS(2809), + [anon_sym_using] = ACTIONS(2809), + [anon_sym_static_assert] = ACTIONS(2809), + [anon_sym_concept] = ACTIONS(2809), + [anon_sym_co_return] = ACTIONS(2809), + [anon_sym_co_yield] = ACTIONS(2809), + [anon_sym_co_await] = ACTIONS(2809), + [anon_sym_new] = ACTIONS(2809), + [anon_sym_requires] = ACTIONS(2809), + [sym_this] = ACTIONS(2809), + [sym_nullptr] = ACTIONS(2809), + [sym_raw_string_literal] = ACTIONS(2811), }, - [1463] = { - [sym__expression] = STATE(2711), - [sym_conditional_expression] = STATE(2765), - [sym_assignment_expression] = STATE(2765), - [sym_pointer_expression] = STATE(2827), - [sym_unary_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_update_expression] = STATE(2765), - [sym_cast_expression] = STATE(2765), - [sym_sizeof_expression] = STATE(2765), - [sym_subscript_expression] = STATE(2827), - [sym_call_expression] = STATE(2827), - [sym_field_expression] = STATE(2827), - [sym_compound_literal_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2827), - [sym_char_literal] = STATE(2674), - [sym_concatenated_string] = STATE(2674), - [sym_string_literal] = STATE(2093), - [sym__class_name] = STATE(6297), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2765), - [sym_co_await_expression] = STATE(2765), - [sym_new_expression] = STATE(2765), - [sym_delete_expression] = STATE(2765), - [sym_requires_clause] = STATE(2765), - [sym_requires_expression] = STATE(2765), - [sym_lambda_expression] = STATE(2765), - [sym_lambda_capture_specifier] = STATE(4512), - [sym_fold_expression] = STATE(2765), - [sym_parameter_pack_expansion] = STATE(2765), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4648), - [sym_qualified_identifier] = STATE(2827), - [sym_qualified_type_identifier] = STATE(6297), - [sym_user_defined_literal] = STATE(2765), - [sym_identifier] = ACTIONS(2363), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3658), - [anon_sym_LPAREN2] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1417), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_COLON_COLON] = ACTIONS(1423), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(2369), - [anon_sym_DASH_DASH] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [anon_sym_sizeof] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(1439), - [anon_sym_L_SQUOTE] = ACTIONS(1441), - [anon_sym_u_SQUOTE] = ACTIONS(1441), - [anon_sym_U_SQUOTE] = ACTIONS(1441), - [anon_sym_u8_SQUOTE] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1441), - [anon_sym_L_DQUOTE] = ACTIONS(1443), - [anon_sym_u_DQUOTE] = ACTIONS(1443), - [anon_sym_U_DQUOTE] = ACTIONS(1443), - [anon_sym_u8_DQUOTE] = ACTIONS(1443), - [anon_sym_DQUOTE] = ACTIONS(1443), - [sym_true] = ACTIONS(1445), - [sym_false] = ACTIONS(1445), - [sym_null] = ACTIONS(1445), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_co_await] = ACTIONS(1451), - [anon_sym_new] = ACTIONS(1453), - [anon_sym_requires] = ACTIONS(1455), - [sym_this] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(1445), - [sym_raw_string_literal] = ACTIONS(1457), + [995] = { + [ts_builtin_sym_end] = ACTIONS(2933), + [sym_identifier] = ACTIONS(2931), + [aux_sym_preproc_include_token1] = ACTIONS(2931), + [aux_sym_preproc_def_token1] = ACTIONS(2931), + [aux_sym_preproc_if_token1] = ACTIONS(2931), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2931), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2931), + [sym_preproc_directive] = ACTIONS(2931), + [anon_sym_LPAREN2] = ACTIONS(2933), + [anon_sym_BANG] = ACTIONS(2933), + [anon_sym_TILDE] = ACTIONS(2933), + [anon_sym_DASH] = ACTIONS(2931), + [anon_sym_PLUS] = ACTIONS(2931), + [anon_sym_STAR] = ACTIONS(2933), + [anon_sym_AMP_AMP] = ACTIONS(2933), + [anon_sym_AMP] = ACTIONS(2931), + [anon_sym_SEMI] = ACTIONS(2933), + [anon_sym_typedef] = ACTIONS(2931), + [anon_sym_extern] = ACTIONS(2931), + [anon_sym___attribute__] = ACTIONS(2931), + [anon_sym_COLON_COLON] = ACTIONS(2933), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2933), + [anon_sym___declspec] = ACTIONS(2931), + [anon_sym___based] = ACTIONS(2931), + [anon_sym___cdecl] = ACTIONS(2931), + [anon_sym___clrcall] = ACTIONS(2931), + [anon_sym___stdcall] = ACTIONS(2931), + [anon_sym___fastcall] = ACTIONS(2931), + [anon_sym___thiscall] = ACTIONS(2931), + [anon_sym___vectorcall] = ACTIONS(2931), + [anon_sym_LBRACE] = ACTIONS(2933), + [anon_sym_LBRACK] = ACTIONS(2931), + [anon_sym_static] = ACTIONS(2931), + [anon_sym_register] = ACTIONS(2931), + [anon_sym_inline] = ACTIONS(2931), + [anon_sym_thread_local] = ACTIONS(2931), + [anon_sym_const] = ACTIONS(2931), + [anon_sym_volatile] = ACTIONS(2931), + [anon_sym_restrict] = ACTIONS(2931), + [anon_sym__Atomic] = ACTIONS(2931), + [anon_sym_mutable] = ACTIONS(2931), + [anon_sym_constexpr] = ACTIONS(2931), + [anon_sym_constinit] = ACTIONS(2931), + [anon_sym_consteval] = ACTIONS(2931), + [anon_sym_signed] = ACTIONS(2931), + [anon_sym_unsigned] = ACTIONS(2931), + [anon_sym_long] = ACTIONS(2931), + [anon_sym_short] = ACTIONS(2931), + [sym_primitive_type] = ACTIONS(2931), + [anon_sym_enum] = ACTIONS(2931), + [anon_sym_class] = ACTIONS(2931), + [anon_sym_struct] = ACTIONS(2931), + [anon_sym_union] = ACTIONS(2931), + [anon_sym_if] = ACTIONS(2931), + [anon_sym_switch] = ACTIONS(2931), + [anon_sym_case] = ACTIONS(2931), + [anon_sym_default] = ACTIONS(2931), + [anon_sym_while] = ACTIONS(2931), + [anon_sym_do] = ACTIONS(2931), + [anon_sym_for] = ACTIONS(2931), + [anon_sym_return] = ACTIONS(2931), + [anon_sym_break] = ACTIONS(2931), + [anon_sym_continue] = ACTIONS(2931), + [anon_sym_goto] = ACTIONS(2931), + [anon_sym_not] = ACTIONS(2931), + [anon_sym_compl] = ACTIONS(2931), + [anon_sym_DASH_DASH] = ACTIONS(2933), + [anon_sym_PLUS_PLUS] = ACTIONS(2933), + [anon_sym_sizeof] = ACTIONS(2931), + [sym_number_literal] = ACTIONS(2933), + [anon_sym_L_SQUOTE] = ACTIONS(2933), + [anon_sym_u_SQUOTE] = ACTIONS(2933), + [anon_sym_U_SQUOTE] = ACTIONS(2933), + [anon_sym_u8_SQUOTE] = ACTIONS(2933), + [anon_sym_SQUOTE] = ACTIONS(2933), + [anon_sym_L_DQUOTE] = ACTIONS(2933), + [anon_sym_u_DQUOTE] = ACTIONS(2933), + [anon_sym_U_DQUOTE] = ACTIONS(2933), + [anon_sym_u8_DQUOTE] = ACTIONS(2933), + [anon_sym_DQUOTE] = ACTIONS(2933), + [sym_true] = ACTIONS(2931), + [sym_false] = ACTIONS(2931), + [sym_null] = ACTIONS(2931), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2931), + [anon_sym_decltype] = ACTIONS(2931), + [anon_sym_virtual] = ACTIONS(2931), + [anon_sym_explicit] = ACTIONS(2931), + [anon_sym_typename] = ACTIONS(2931), + [anon_sym_template] = ACTIONS(2931), + [anon_sym_operator] = ACTIONS(2931), + [anon_sym_try] = ACTIONS(2931), + [anon_sym_delete] = ACTIONS(2931), + [anon_sym_throw] = ACTIONS(2931), + [anon_sym_namespace] = ACTIONS(2931), + [anon_sym_using] = ACTIONS(2931), + [anon_sym_static_assert] = ACTIONS(2931), + [anon_sym_concept] = ACTIONS(2931), + [anon_sym_co_return] = ACTIONS(2931), + [anon_sym_co_yield] = ACTIONS(2931), + [anon_sym_co_await] = ACTIONS(2931), + [anon_sym_new] = ACTIONS(2931), + [anon_sym_requires] = ACTIONS(2931), + [sym_this] = ACTIONS(2931), + [sym_nullptr] = ACTIONS(2931), + [sym_raw_string_literal] = ACTIONS(2933), }, - [1464] = { - [sym__expression] = STATE(2726), - [sym_conditional_expression] = STATE(2765), - [sym_assignment_expression] = STATE(2765), - [sym_pointer_expression] = STATE(2827), - [sym_unary_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_update_expression] = STATE(2765), - [sym_cast_expression] = STATE(2765), - [sym_sizeof_expression] = STATE(2765), - [sym_subscript_expression] = STATE(2827), - [sym_call_expression] = STATE(2827), - [sym_field_expression] = STATE(2827), - [sym_compound_literal_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2827), - [sym_char_literal] = STATE(2674), - [sym_concatenated_string] = STATE(2674), - [sym_string_literal] = STATE(2093), - [sym__class_name] = STATE(6297), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2765), - [sym_co_await_expression] = STATE(2765), - [sym_new_expression] = STATE(2765), - [sym_delete_expression] = STATE(2765), - [sym_requires_clause] = STATE(2765), - [sym_requires_expression] = STATE(2765), - [sym_lambda_expression] = STATE(2765), - [sym_lambda_capture_specifier] = STATE(4512), - [sym_fold_expression] = STATE(2765), - [sym_parameter_pack_expansion] = STATE(2765), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4648), - [sym_qualified_identifier] = STATE(2827), - [sym_qualified_type_identifier] = STATE(6297), - [sym_user_defined_literal] = STATE(2765), - [sym_identifier] = ACTIONS(2363), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3661), - [anon_sym_LPAREN2] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1417), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_COLON_COLON] = ACTIONS(1423), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(2369), - [anon_sym_DASH_DASH] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [anon_sym_sizeof] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(1439), - [anon_sym_L_SQUOTE] = ACTIONS(1441), - [anon_sym_u_SQUOTE] = ACTIONS(1441), - [anon_sym_U_SQUOTE] = ACTIONS(1441), - [anon_sym_u8_SQUOTE] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1441), - [anon_sym_L_DQUOTE] = ACTIONS(1443), - [anon_sym_u_DQUOTE] = ACTIONS(1443), - [anon_sym_U_DQUOTE] = ACTIONS(1443), - [anon_sym_u8_DQUOTE] = ACTIONS(1443), - [anon_sym_DQUOTE] = ACTIONS(1443), - [sym_true] = ACTIONS(1445), - [sym_false] = ACTIONS(1445), - [sym_null] = ACTIONS(1445), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_co_await] = ACTIONS(1451), - [anon_sym_new] = ACTIONS(1453), - [anon_sym_requires] = ACTIONS(1455), - [sym_this] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(1445), - [sym_raw_string_literal] = ACTIONS(1457), + [996] = { + [sym_identifier] = ACTIONS(2883), + [aux_sym_preproc_include_token1] = ACTIONS(2883), + [aux_sym_preproc_def_token1] = ACTIONS(2883), + [aux_sym_preproc_if_token1] = ACTIONS(2883), + [aux_sym_preproc_if_token2] = ACTIONS(2883), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2883), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2883), + [sym_preproc_directive] = ACTIONS(2883), + [anon_sym_LPAREN2] = ACTIONS(2885), + [anon_sym_BANG] = ACTIONS(2885), + [anon_sym_TILDE] = ACTIONS(2885), + [anon_sym_DASH] = ACTIONS(2883), + [anon_sym_PLUS] = ACTIONS(2883), + [anon_sym_STAR] = ACTIONS(2885), + [anon_sym_AMP_AMP] = ACTIONS(2885), + [anon_sym_AMP] = ACTIONS(2883), + [anon_sym_SEMI] = ACTIONS(2885), + [anon_sym_typedef] = ACTIONS(2883), + [anon_sym_extern] = ACTIONS(2883), + [anon_sym___attribute__] = ACTIONS(2883), + [anon_sym_COLON_COLON] = ACTIONS(2885), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2885), + [anon_sym___declspec] = ACTIONS(2883), + [anon_sym___based] = ACTIONS(2883), + [anon_sym___cdecl] = ACTIONS(2883), + [anon_sym___clrcall] = ACTIONS(2883), + [anon_sym___stdcall] = ACTIONS(2883), + [anon_sym___fastcall] = ACTIONS(2883), + [anon_sym___thiscall] = ACTIONS(2883), + [anon_sym___vectorcall] = ACTIONS(2883), + [anon_sym_LBRACE] = ACTIONS(2885), + [anon_sym_LBRACK] = ACTIONS(2883), + [anon_sym_static] = ACTIONS(2883), + [anon_sym_register] = ACTIONS(2883), + [anon_sym_inline] = ACTIONS(2883), + [anon_sym_thread_local] = ACTIONS(2883), + [anon_sym_const] = ACTIONS(2883), + [anon_sym_volatile] = ACTIONS(2883), + [anon_sym_restrict] = ACTIONS(2883), + [anon_sym__Atomic] = ACTIONS(2883), + [anon_sym_mutable] = ACTIONS(2883), + [anon_sym_constexpr] = ACTIONS(2883), + [anon_sym_constinit] = ACTIONS(2883), + [anon_sym_consteval] = ACTIONS(2883), + [anon_sym_signed] = ACTIONS(2883), + [anon_sym_unsigned] = ACTIONS(2883), + [anon_sym_long] = ACTIONS(2883), + [anon_sym_short] = ACTIONS(2883), + [sym_primitive_type] = ACTIONS(2883), + [anon_sym_enum] = ACTIONS(2883), + [anon_sym_class] = ACTIONS(2883), + [anon_sym_struct] = ACTIONS(2883), + [anon_sym_union] = ACTIONS(2883), + [anon_sym_if] = ACTIONS(2883), + [anon_sym_switch] = ACTIONS(2883), + [anon_sym_case] = ACTIONS(2883), + [anon_sym_default] = ACTIONS(2883), + [anon_sym_while] = ACTIONS(2883), + [anon_sym_do] = ACTIONS(2883), + [anon_sym_for] = ACTIONS(2883), + [anon_sym_return] = ACTIONS(2883), + [anon_sym_break] = ACTIONS(2883), + [anon_sym_continue] = ACTIONS(2883), + [anon_sym_goto] = ACTIONS(2883), + [anon_sym_not] = ACTIONS(2883), + [anon_sym_compl] = ACTIONS(2883), + [anon_sym_DASH_DASH] = ACTIONS(2885), + [anon_sym_PLUS_PLUS] = ACTIONS(2885), + [anon_sym_sizeof] = ACTIONS(2883), + [sym_number_literal] = ACTIONS(2885), + [anon_sym_L_SQUOTE] = ACTIONS(2885), + [anon_sym_u_SQUOTE] = ACTIONS(2885), + [anon_sym_U_SQUOTE] = ACTIONS(2885), + [anon_sym_u8_SQUOTE] = ACTIONS(2885), + [anon_sym_SQUOTE] = ACTIONS(2885), + [anon_sym_L_DQUOTE] = ACTIONS(2885), + [anon_sym_u_DQUOTE] = ACTIONS(2885), + [anon_sym_U_DQUOTE] = ACTIONS(2885), + [anon_sym_u8_DQUOTE] = ACTIONS(2885), + [anon_sym_DQUOTE] = ACTIONS(2885), + [sym_true] = ACTIONS(2883), + [sym_false] = ACTIONS(2883), + [sym_null] = ACTIONS(2883), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2883), + [anon_sym_decltype] = ACTIONS(2883), + [anon_sym_virtual] = ACTIONS(2883), + [anon_sym_explicit] = ACTIONS(2883), + [anon_sym_typename] = ACTIONS(2883), + [anon_sym_template] = ACTIONS(2883), + [anon_sym_operator] = ACTIONS(2883), + [anon_sym_try] = ACTIONS(2883), + [anon_sym_delete] = ACTIONS(2883), + [anon_sym_throw] = ACTIONS(2883), + [anon_sym_namespace] = ACTIONS(2883), + [anon_sym_using] = ACTIONS(2883), + [anon_sym_static_assert] = ACTIONS(2883), + [anon_sym_concept] = ACTIONS(2883), + [anon_sym_co_return] = ACTIONS(2883), + [anon_sym_co_yield] = ACTIONS(2883), + [anon_sym_co_await] = ACTIONS(2883), + [anon_sym_new] = ACTIONS(2883), + [anon_sym_requires] = ACTIONS(2883), + [sym_this] = ACTIONS(2883), + [sym_nullptr] = ACTIONS(2883), + [sym_raw_string_literal] = ACTIONS(2885), }, - [1465] = { - [sym__expression] = STATE(2681), - [sym_conditional_expression] = STATE(2765), - [sym_assignment_expression] = STATE(2765), - [sym_pointer_expression] = STATE(2827), - [sym_unary_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_update_expression] = STATE(2765), - [sym_cast_expression] = STATE(2765), - [sym_sizeof_expression] = STATE(2765), - [sym_subscript_expression] = STATE(2827), - [sym_call_expression] = STATE(2827), - [sym_field_expression] = STATE(2827), - [sym_compound_literal_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2827), - [sym_char_literal] = STATE(2674), - [sym_concatenated_string] = STATE(2674), - [sym_string_literal] = STATE(2093), - [sym__class_name] = STATE(6297), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2765), - [sym_co_await_expression] = STATE(2765), - [sym_new_expression] = STATE(2765), - [sym_delete_expression] = STATE(2765), - [sym_requires_clause] = STATE(2765), - [sym_requires_expression] = STATE(2765), - [sym_lambda_expression] = STATE(2765), - [sym_lambda_capture_specifier] = STATE(4512), - [sym_fold_expression] = STATE(2765), - [sym_parameter_pack_expansion] = STATE(2765), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4648), - [sym_qualified_identifier] = STATE(2827), - [sym_qualified_type_identifier] = STATE(6297), - [sym_user_defined_literal] = STATE(2765), - [sym_identifier] = ACTIONS(2363), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3664), - [anon_sym_LPAREN2] = ACTIONS(3666), - [anon_sym_BANG] = ACTIONS(1417), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_COLON_COLON] = ACTIONS(1423), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(2369), - [anon_sym_DASH_DASH] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [anon_sym_sizeof] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(1439), - [anon_sym_L_SQUOTE] = ACTIONS(1441), - [anon_sym_u_SQUOTE] = ACTIONS(1441), - [anon_sym_U_SQUOTE] = ACTIONS(1441), - [anon_sym_u8_SQUOTE] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1441), - [anon_sym_L_DQUOTE] = ACTIONS(1443), - [anon_sym_u_DQUOTE] = ACTIONS(1443), - [anon_sym_U_DQUOTE] = ACTIONS(1443), - [anon_sym_u8_DQUOTE] = ACTIONS(1443), - [anon_sym_DQUOTE] = ACTIONS(1443), - [sym_true] = ACTIONS(1445), - [sym_false] = ACTIONS(1445), - [sym_null] = ACTIONS(1445), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_co_await] = ACTIONS(1451), - [anon_sym_new] = ACTIONS(1453), - [anon_sym_requires] = ACTIONS(1455), - [sym_this] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(1445), - [sym_raw_string_literal] = ACTIONS(1457), + [997] = { + [ts_builtin_sym_end] = ACTIONS(2807), + [sym_identifier] = ACTIONS(2805), + [aux_sym_preproc_include_token1] = ACTIONS(2805), + [aux_sym_preproc_def_token1] = ACTIONS(2805), + [aux_sym_preproc_if_token1] = ACTIONS(2805), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2805), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2805), + [sym_preproc_directive] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(2807), + [anon_sym_BANG] = ACTIONS(2807), + [anon_sym_TILDE] = ACTIONS(2807), + [anon_sym_DASH] = ACTIONS(2805), + [anon_sym_PLUS] = ACTIONS(2805), + [anon_sym_STAR] = ACTIONS(2807), + [anon_sym_AMP_AMP] = ACTIONS(2807), + [anon_sym_AMP] = ACTIONS(2805), + [anon_sym_SEMI] = ACTIONS(2807), + [anon_sym_typedef] = ACTIONS(2805), + [anon_sym_extern] = ACTIONS(2805), + [anon_sym___attribute__] = ACTIONS(2805), + [anon_sym_COLON_COLON] = ACTIONS(2807), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2807), + [anon_sym___declspec] = ACTIONS(2805), + [anon_sym___based] = ACTIONS(2805), + [anon_sym___cdecl] = ACTIONS(2805), + [anon_sym___clrcall] = ACTIONS(2805), + [anon_sym___stdcall] = ACTIONS(2805), + [anon_sym___fastcall] = ACTIONS(2805), + [anon_sym___thiscall] = ACTIONS(2805), + [anon_sym___vectorcall] = ACTIONS(2805), + [anon_sym_LBRACE] = ACTIONS(2807), + [anon_sym_LBRACK] = ACTIONS(2805), + [anon_sym_static] = ACTIONS(2805), + [anon_sym_register] = ACTIONS(2805), + [anon_sym_inline] = ACTIONS(2805), + [anon_sym_thread_local] = ACTIONS(2805), + [anon_sym_const] = ACTIONS(2805), + [anon_sym_volatile] = ACTIONS(2805), + [anon_sym_restrict] = ACTIONS(2805), + [anon_sym__Atomic] = ACTIONS(2805), + [anon_sym_mutable] = ACTIONS(2805), + [anon_sym_constexpr] = ACTIONS(2805), + [anon_sym_constinit] = ACTIONS(2805), + [anon_sym_consteval] = ACTIONS(2805), + [anon_sym_signed] = ACTIONS(2805), + [anon_sym_unsigned] = ACTIONS(2805), + [anon_sym_long] = ACTIONS(2805), + [anon_sym_short] = ACTIONS(2805), + [sym_primitive_type] = ACTIONS(2805), + [anon_sym_enum] = ACTIONS(2805), + [anon_sym_class] = ACTIONS(2805), + [anon_sym_struct] = ACTIONS(2805), + [anon_sym_union] = ACTIONS(2805), + [anon_sym_if] = ACTIONS(2805), + [anon_sym_switch] = ACTIONS(2805), + [anon_sym_case] = ACTIONS(2805), + [anon_sym_default] = ACTIONS(2805), + [anon_sym_while] = ACTIONS(2805), + [anon_sym_do] = ACTIONS(2805), + [anon_sym_for] = ACTIONS(2805), + [anon_sym_return] = ACTIONS(2805), + [anon_sym_break] = ACTIONS(2805), + [anon_sym_continue] = ACTIONS(2805), + [anon_sym_goto] = ACTIONS(2805), + [anon_sym_not] = ACTIONS(2805), + [anon_sym_compl] = ACTIONS(2805), + [anon_sym_DASH_DASH] = ACTIONS(2807), + [anon_sym_PLUS_PLUS] = ACTIONS(2807), + [anon_sym_sizeof] = ACTIONS(2805), + [sym_number_literal] = ACTIONS(2807), + [anon_sym_L_SQUOTE] = ACTIONS(2807), + [anon_sym_u_SQUOTE] = ACTIONS(2807), + [anon_sym_U_SQUOTE] = ACTIONS(2807), + [anon_sym_u8_SQUOTE] = ACTIONS(2807), + [anon_sym_SQUOTE] = ACTIONS(2807), + [anon_sym_L_DQUOTE] = ACTIONS(2807), + [anon_sym_u_DQUOTE] = ACTIONS(2807), + [anon_sym_U_DQUOTE] = ACTIONS(2807), + [anon_sym_u8_DQUOTE] = ACTIONS(2807), + [anon_sym_DQUOTE] = ACTIONS(2807), + [sym_true] = ACTIONS(2805), + [sym_false] = ACTIONS(2805), + [sym_null] = ACTIONS(2805), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2805), + [anon_sym_decltype] = ACTIONS(2805), + [anon_sym_virtual] = ACTIONS(2805), + [anon_sym_explicit] = ACTIONS(2805), + [anon_sym_typename] = ACTIONS(2805), + [anon_sym_template] = ACTIONS(2805), + [anon_sym_operator] = ACTIONS(2805), + [anon_sym_try] = ACTIONS(2805), + [anon_sym_delete] = ACTIONS(2805), + [anon_sym_throw] = ACTIONS(2805), + [anon_sym_namespace] = ACTIONS(2805), + [anon_sym_using] = ACTIONS(2805), + [anon_sym_static_assert] = ACTIONS(2805), + [anon_sym_concept] = ACTIONS(2805), + [anon_sym_co_return] = ACTIONS(2805), + [anon_sym_co_yield] = ACTIONS(2805), + [anon_sym_co_await] = ACTIONS(2805), + [anon_sym_new] = ACTIONS(2805), + [anon_sym_requires] = ACTIONS(2805), + [sym_this] = ACTIONS(2805), + [sym_nullptr] = ACTIONS(2805), + [sym_raw_string_literal] = ACTIONS(2807), }, - [1466] = { - [sym__expression] = STATE(2558), - [sym_conditional_expression] = STATE(2541), - [sym_assignment_expression] = STATE(2541), - [sym_pointer_expression] = STATE(2531), - [sym_unary_expression] = STATE(2541), - [sym_binary_expression] = STATE(2541), - [sym_update_expression] = STATE(2541), - [sym_cast_expression] = STATE(2541), - [sym_sizeof_expression] = STATE(2541), - [sym_subscript_expression] = STATE(2531), - [sym_call_expression] = STATE(2531), - [sym_field_expression] = STATE(2531), - [sym_compound_literal_expression] = STATE(2541), - [sym_parenthesized_expression] = STATE(2531), - [sym_char_literal] = STATE(2481), - [sym_concatenated_string] = STATE(2481), - [sym_string_literal] = STATE(2063), - [sym__class_name] = STATE(6239), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2541), - [sym_co_await_expression] = STATE(2541), - [sym_new_expression] = STATE(2541), - [sym_delete_expression] = STATE(2541), - [sym_requires_clause] = STATE(2541), - [sym_requires_expression] = STATE(2541), - [sym_lambda_expression] = STATE(2541), - [sym_lambda_capture_specifier] = STATE(4508), - [sym_fold_expression] = STATE(2541), - [sym_parameter_pack_expansion] = STATE(2541), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2531), - [sym_qualified_type_identifier] = STATE(6239), - [sym_user_defined_literal] = STATE(2541), - [sym_identifier] = ACTIONS(2306), - [anon_sym_LPAREN2] = ACTIONS(2310), - [anon_sym_BANG] = ACTIONS(2314), - [anon_sym_TILDE] = ACTIONS(2314), - [anon_sym_DASH] = ACTIONS(2312), - [anon_sym_PLUS] = ACTIONS(2312), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(2318), - [anon_sym_LBRACK] = ACTIONS(2272), - [anon_sym_RBRACK] = ACTIONS(3668), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(2322), - [anon_sym_PLUS_PLUS] = ACTIONS(2322), - [anon_sym_sizeof] = ACTIONS(2324), - [sym_number_literal] = ACTIONS(2326), - [anon_sym_L_SQUOTE] = ACTIONS(2328), - [anon_sym_u_SQUOTE] = ACTIONS(2328), - [anon_sym_U_SQUOTE] = ACTIONS(2328), - [anon_sym_u8_SQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2328), - [anon_sym_L_DQUOTE] = ACTIONS(2330), - [anon_sym_u_DQUOTE] = ACTIONS(2330), - [anon_sym_U_DQUOTE] = ACTIONS(2330), - [anon_sym_u8_DQUOTE] = ACTIONS(2330), - [anon_sym_DQUOTE] = ACTIONS(2330), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2334), - [anon_sym_co_await] = ACTIONS(2336), - [anon_sym_new] = ACTIONS(2338), - [anon_sym_requires] = ACTIONS(2340), - [sym_this] = ACTIONS(2332), - [sym_nullptr] = ACTIONS(2332), - [sym_raw_string_literal] = ACTIONS(2342), + [998] = { + [ts_builtin_sym_end] = ACTIONS(2807), + [sym_identifier] = ACTIONS(2805), + [aux_sym_preproc_include_token1] = ACTIONS(2805), + [aux_sym_preproc_def_token1] = ACTIONS(2805), + [aux_sym_preproc_if_token1] = ACTIONS(2805), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2805), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2805), + [sym_preproc_directive] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(2807), + [anon_sym_BANG] = ACTIONS(2807), + [anon_sym_TILDE] = ACTIONS(2807), + [anon_sym_DASH] = ACTIONS(2805), + [anon_sym_PLUS] = ACTIONS(2805), + [anon_sym_STAR] = ACTIONS(2807), + [anon_sym_AMP_AMP] = ACTIONS(2807), + [anon_sym_AMP] = ACTIONS(2805), + [anon_sym_SEMI] = ACTIONS(2807), + [anon_sym_typedef] = ACTIONS(2805), + [anon_sym_extern] = ACTIONS(2805), + [anon_sym___attribute__] = ACTIONS(2805), + [anon_sym_COLON_COLON] = ACTIONS(2807), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2807), + [anon_sym___declspec] = ACTIONS(2805), + [anon_sym___based] = ACTIONS(2805), + [anon_sym___cdecl] = ACTIONS(2805), + [anon_sym___clrcall] = ACTIONS(2805), + [anon_sym___stdcall] = ACTIONS(2805), + [anon_sym___fastcall] = ACTIONS(2805), + [anon_sym___thiscall] = ACTIONS(2805), + [anon_sym___vectorcall] = ACTIONS(2805), + [anon_sym_LBRACE] = ACTIONS(2807), + [anon_sym_LBRACK] = ACTIONS(2805), + [anon_sym_static] = ACTIONS(2805), + [anon_sym_register] = ACTIONS(2805), + [anon_sym_inline] = ACTIONS(2805), + [anon_sym_thread_local] = ACTIONS(2805), + [anon_sym_const] = ACTIONS(2805), + [anon_sym_volatile] = ACTIONS(2805), + [anon_sym_restrict] = ACTIONS(2805), + [anon_sym__Atomic] = ACTIONS(2805), + [anon_sym_mutable] = ACTIONS(2805), + [anon_sym_constexpr] = ACTIONS(2805), + [anon_sym_constinit] = ACTIONS(2805), + [anon_sym_consteval] = ACTIONS(2805), + [anon_sym_signed] = ACTIONS(2805), + [anon_sym_unsigned] = ACTIONS(2805), + [anon_sym_long] = ACTIONS(2805), + [anon_sym_short] = ACTIONS(2805), + [sym_primitive_type] = ACTIONS(2805), + [anon_sym_enum] = ACTIONS(2805), + [anon_sym_class] = ACTIONS(2805), + [anon_sym_struct] = ACTIONS(2805), + [anon_sym_union] = ACTIONS(2805), + [anon_sym_if] = ACTIONS(2805), + [anon_sym_switch] = ACTIONS(2805), + [anon_sym_case] = ACTIONS(2805), + [anon_sym_default] = ACTIONS(2805), + [anon_sym_while] = ACTIONS(2805), + [anon_sym_do] = ACTIONS(2805), + [anon_sym_for] = ACTIONS(2805), + [anon_sym_return] = ACTIONS(2805), + [anon_sym_break] = ACTIONS(2805), + [anon_sym_continue] = ACTIONS(2805), + [anon_sym_goto] = ACTIONS(2805), + [anon_sym_not] = ACTIONS(2805), + [anon_sym_compl] = ACTIONS(2805), + [anon_sym_DASH_DASH] = ACTIONS(2807), + [anon_sym_PLUS_PLUS] = ACTIONS(2807), + [anon_sym_sizeof] = ACTIONS(2805), + [sym_number_literal] = ACTIONS(2807), + [anon_sym_L_SQUOTE] = ACTIONS(2807), + [anon_sym_u_SQUOTE] = ACTIONS(2807), + [anon_sym_U_SQUOTE] = ACTIONS(2807), + [anon_sym_u8_SQUOTE] = ACTIONS(2807), + [anon_sym_SQUOTE] = ACTIONS(2807), + [anon_sym_L_DQUOTE] = ACTIONS(2807), + [anon_sym_u_DQUOTE] = ACTIONS(2807), + [anon_sym_U_DQUOTE] = ACTIONS(2807), + [anon_sym_u8_DQUOTE] = ACTIONS(2807), + [anon_sym_DQUOTE] = ACTIONS(2807), + [sym_true] = ACTIONS(2805), + [sym_false] = ACTIONS(2805), + [sym_null] = ACTIONS(2805), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2805), + [anon_sym_decltype] = ACTIONS(2805), + [anon_sym_virtual] = ACTIONS(2805), + [anon_sym_explicit] = ACTIONS(2805), + [anon_sym_typename] = ACTIONS(2805), + [anon_sym_template] = ACTIONS(2805), + [anon_sym_operator] = ACTIONS(2805), + [anon_sym_try] = ACTIONS(2805), + [anon_sym_delete] = ACTIONS(2805), + [anon_sym_throw] = ACTIONS(2805), + [anon_sym_namespace] = ACTIONS(2805), + [anon_sym_using] = ACTIONS(2805), + [anon_sym_static_assert] = ACTIONS(2805), + [anon_sym_concept] = ACTIONS(2805), + [anon_sym_co_return] = ACTIONS(2805), + [anon_sym_co_yield] = ACTIONS(2805), + [anon_sym_co_await] = ACTIONS(2805), + [anon_sym_new] = ACTIONS(2805), + [anon_sym_requires] = ACTIONS(2805), + [sym_this] = ACTIONS(2805), + [sym_nullptr] = ACTIONS(2805), + [sym_raw_string_literal] = ACTIONS(2807), }, - [1467] = { - [sym__expression] = STATE(2558), - [sym_conditional_expression] = STATE(2541), - [sym_assignment_expression] = STATE(2541), - [sym_pointer_expression] = STATE(2531), - [sym_unary_expression] = STATE(2541), - [sym_binary_expression] = STATE(2541), - [sym_update_expression] = STATE(2541), - [sym_cast_expression] = STATE(2541), - [sym_sizeof_expression] = STATE(2541), - [sym_subscript_expression] = STATE(2531), - [sym_call_expression] = STATE(2531), - [sym_field_expression] = STATE(2531), - [sym_compound_literal_expression] = STATE(2541), - [sym_parenthesized_expression] = STATE(2531), - [sym_char_literal] = STATE(2481), - [sym_concatenated_string] = STATE(2481), - [sym_string_literal] = STATE(2063), - [sym__class_name] = STATE(6239), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2541), - [sym_co_await_expression] = STATE(2541), - [sym_new_expression] = STATE(2541), - [sym_delete_expression] = STATE(2541), - [sym_requires_clause] = STATE(2541), - [sym_requires_expression] = STATE(2541), - [sym_lambda_expression] = STATE(2541), - [sym_lambda_capture_specifier] = STATE(4508), - [sym_fold_expression] = STATE(2541), - [sym_parameter_pack_expansion] = STATE(2541), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2531), - [sym_qualified_type_identifier] = STATE(6239), - [sym_user_defined_literal] = STATE(2541), - [sym_identifier] = ACTIONS(2306), - [anon_sym_LPAREN2] = ACTIONS(2310), - [anon_sym_BANG] = ACTIONS(2314), - [anon_sym_TILDE] = ACTIONS(2314), - [anon_sym_DASH] = ACTIONS(2312), - [anon_sym_PLUS] = ACTIONS(2312), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(2318), - [anon_sym_LBRACK] = ACTIONS(2272), - [anon_sym_RBRACK] = ACTIONS(3670), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(2322), - [anon_sym_PLUS_PLUS] = ACTIONS(2322), - [anon_sym_sizeof] = ACTIONS(2324), - [sym_number_literal] = ACTIONS(2326), - [anon_sym_L_SQUOTE] = ACTIONS(2328), - [anon_sym_u_SQUOTE] = ACTIONS(2328), - [anon_sym_U_SQUOTE] = ACTIONS(2328), - [anon_sym_u8_SQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2328), - [anon_sym_L_DQUOTE] = ACTIONS(2330), - [anon_sym_u_DQUOTE] = ACTIONS(2330), - [anon_sym_U_DQUOTE] = ACTIONS(2330), - [anon_sym_u8_DQUOTE] = ACTIONS(2330), - [anon_sym_DQUOTE] = ACTIONS(2330), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2334), - [anon_sym_co_await] = ACTIONS(2336), - [anon_sym_new] = ACTIONS(2338), - [anon_sym_requires] = ACTIONS(2340), - [sym_this] = ACTIONS(2332), - [sym_nullptr] = ACTIONS(2332), - [sym_raw_string_literal] = ACTIONS(2342), + [999] = { + [ts_builtin_sym_end] = ACTIONS(2803), + [sym_identifier] = ACTIONS(2801), + [aux_sym_preproc_include_token1] = ACTIONS(2801), + [aux_sym_preproc_def_token1] = ACTIONS(2801), + [aux_sym_preproc_if_token1] = ACTIONS(2801), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2801), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2801), + [sym_preproc_directive] = ACTIONS(2801), + [anon_sym_LPAREN2] = ACTIONS(2803), + [anon_sym_BANG] = ACTIONS(2803), + [anon_sym_TILDE] = ACTIONS(2803), + [anon_sym_DASH] = ACTIONS(2801), + [anon_sym_PLUS] = ACTIONS(2801), + [anon_sym_STAR] = ACTIONS(2803), + [anon_sym_AMP_AMP] = ACTIONS(2803), + [anon_sym_AMP] = ACTIONS(2801), + [anon_sym_SEMI] = ACTIONS(2803), + [anon_sym_typedef] = ACTIONS(2801), + [anon_sym_extern] = ACTIONS(2801), + [anon_sym___attribute__] = ACTIONS(2801), + [anon_sym_COLON_COLON] = ACTIONS(2803), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2803), + [anon_sym___declspec] = ACTIONS(2801), + [anon_sym___based] = ACTIONS(2801), + [anon_sym___cdecl] = ACTIONS(2801), + [anon_sym___clrcall] = ACTIONS(2801), + [anon_sym___stdcall] = ACTIONS(2801), + [anon_sym___fastcall] = ACTIONS(2801), + [anon_sym___thiscall] = ACTIONS(2801), + [anon_sym___vectorcall] = ACTIONS(2801), + [anon_sym_LBRACE] = ACTIONS(2803), + [anon_sym_LBRACK] = ACTIONS(2801), + [anon_sym_static] = ACTIONS(2801), + [anon_sym_register] = ACTIONS(2801), + [anon_sym_inline] = ACTIONS(2801), + [anon_sym_thread_local] = ACTIONS(2801), + [anon_sym_const] = ACTIONS(2801), + [anon_sym_volatile] = ACTIONS(2801), + [anon_sym_restrict] = ACTIONS(2801), + [anon_sym__Atomic] = ACTIONS(2801), + [anon_sym_mutable] = ACTIONS(2801), + [anon_sym_constexpr] = ACTIONS(2801), + [anon_sym_constinit] = ACTIONS(2801), + [anon_sym_consteval] = ACTIONS(2801), + [anon_sym_signed] = ACTIONS(2801), + [anon_sym_unsigned] = ACTIONS(2801), + [anon_sym_long] = ACTIONS(2801), + [anon_sym_short] = ACTIONS(2801), + [sym_primitive_type] = ACTIONS(2801), + [anon_sym_enum] = ACTIONS(2801), + [anon_sym_class] = ACTIONS(2801), + [anon_sym_struct] = ACTIONS(2801), + [anon_sym_union] = ACTIONS(2801), + [anon_sym_if] = ACTIONS(2801), + [anon_sym_switch] = ACTIONS(2801), + [anon_sym_case] = ACTIONS(2801), + [anon_sym_default] = ACTIONS(2801), + [anon_sym_while] = ACTIONS(2801), + [anon_sym_do] = ACTIONS(2801), + [anon_sym_for] = ACTIONS(2801), + [anon_sym_return] = ACTIONS(2801), + [anon_sym_break] = ACTIONS(2801), + [anon_sym_continue] = ACTIONS(2801), + [anon_sym_goto] = ACTIONS(2801), + [anon_sym_not] = ACTIONS(2801), + [anon_sym_compl] = ACTIONS(2801), + [anon_sym_DASH_DASH] = ACTIONS(2803), + [anon_sym_PLUS_PLUS] = ACTIONS(2803), + [anon_sym_sizeof] = ACTIONS(2801), + [sym_number_literal] = ACTIONS(2803), + [anon_sym_L_SQUOTE] = ACTIONS(2803), + [anon_sym_u_SQUOTE] = ACTIONS(2803), + [anon_sym_U_SQUOTE] = ACTIONS(2803), + [anon_sym_u8_SQUOTE] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2803), + [anon_sym_L_DQUOTE] = ACTIONS(2803), + [anon_sym_u_DQUOTE] = ACTIONS(2803), + [anon_sym_U_DQUOTE] = ACTIONS(2803), + [anon_sym_u8_DQUOTE] = ACTIONS(2803), + [anon_sym_DQUOTE] = ACTIONS(2803), + [sym_true] = ACTIONS(2801), + [sym_false] = ACTIONS(2801), + [sym_null] = ACTIONS(2801), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2801), + [anon_sym_decltype] = ACTIONS(2801), + [anon_sym_virtual] = ACTIONS(2801), + [anon_sym_explicit] = ACTIONS(2801), + [anon_sym_typename] = ACTIONS(2801), + [anon_sym_template] = ACTIONS(2801), + [anon_sym_operator] = ACTIONS(2801), + [anon_sym_try] = ACTIONS(2801), + [anon_sym_delete] = ACTIONS(2801), + [anon_sym_throw] = ACTIONS(2801), + [anon_sym_namespace] = ACTIONS(2801), + [anon_sym_using] = ACTIONS(2801), + [anon_sym_static_assert] = ACTIONS(2801), + [anon_sym_concept] = ACTIONS(2801), + [anon_sym_co_return] = ACTIONS(2801), + [anon_sym_co_yield] = ACTIONS(2801), + [anon_sym_co_await] = ACTIONS(2801), + [anon_sym_new] = ACTIONS(2801), + [anon_sym_requires] = ACTIONS(2801), + [sym_this] = ACTIONS(2801), + [sym_nullptr] = ACTIONS(2801), + [sym_raw_string_literal] = ACTIONS(2803), }, - [1468] = { - [sym__expression] = STATE(2558), - [sym_conditional_expression] = STATE(2541), - [sym_assignment_expression] = STATE(2541), - [sym_pointer_expression] = STATE(2531), - [sym_unary_expression] = STATE(2541), - [sym_binary_expression] = STATE(2541), - [sym_update_expression] = STATE(2541), - [sym_cast_expression] = STATE(2541), - [sym_sizeof_expression] = STATE(2541), - [sym_subscript_expression] = STATE(2531), - [sym_call_expression] = STATE(2531), - [sym_field_expression] = STATE(2531), - [sym_compound_literal_expression] = STATE(2541), - [sym_parenthesized_expression] = STATE(2531), - [sym_char_literal] = STATE(2481), - [sym_concatenated_string] = STATE(2481), - [sym_string_literal] = STATE(2063), - [sym__class_name] = STATE(6239), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2541), - [sym_co_await_expression] = STATE(2541), - [sym_new_expression] = STATE(2541), - [sym_delete_expression] = STATE(2541), - [sym_requires_clause] = STATE(2541), - [sym_requires_expression] = STATE(2541), - [sym_lambda_expression] = STATE(2541), - [sym_lambda_capture_specifier] = STATE(4508), - [sym_fold_expression] = STATE(2541), - [sym_parameter_pack_expansion] = STATE(2541), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2531), - [sym_qualified_type_identifier] = STATE(6239), - [sym_user_defined_literal] = STATE(2541), - [sym_identifier] = ACTIONS(2306), - [anon_sym_LPAREN2] = ACTIONS(2310), - [anon_sym_BANG] = ACTIONS(2314), - [anon_sym_TILDE] = ACTIONS(2314), - [anon_sym_DASH] = ACTIONS(2312), - [anon_sym_PLUS] = ACTIONS(2312), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(2318), - [anon_sym_LBRACK] = ACTIONS(2272), - [anon_sym_RBRACK] = ACTIONS(3672), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(2322), - [anon_sym_PLUS_PLUS] = ACTIONS(2322), - [anon_sym_sizeof] = ACTIONS(2324), - [sym_number_literal] = ACTIONS(2326), - [anon_sym_L_SQUOTE] = ACTIONS(2328), - [anon_sym_u_SQUOTE] = ACTIONS(2328), - [anon_sym_U_SQUOTE] = ACTIONS(2328), - [anon_sym_u8_SQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2328), - [anon_sym_L_DQUOTE] = ACTIONS(2330), - [anon_sym_u_DQUOTE] = ACTIONS(2330), - [anon_sym_U_DQUOTE] = ACTIONS(2330), - [anon_sym_u8_DQUOTE] = ACTIONS(2330), - [anon_sym_DQUOTE] = ACTIONS(2330), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2334), - [anon_sym_co_await] = ACTIONS(2336), - [anon_sym_new] = ACTIONS(2338), - [anon_sym_requires] = ACTIONS(2340), - [sym_this] = ACTIONS(2332), - [sym_nullptr] = ACTIONS(2332), - [sym_raw_string_literal] = ACTIONS(2342), + [1000] = { + [ts_builtin_sym_end] = ACTIONS(2799), + [sym_identifier] = ACTIONS(2797), + [aux_sym_preproc_include_token1] = ACTIONS(2797), + [aux_sym_preproc_def_token1] = ACTIONS(2797), + [aux_sym_preproc_if_token1] = ACTIONS(2797), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2797), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2797), + [sym_preproc_directive] = ACTIONS(2797), + [anon_sym_LPAREN2] = ACTIONS(2799), + [anon_sym_BANG] = ACTIONS(2799), + [anon_sym_TILDE] = ACTIONS(2799), + [anon_sym_DASH] = ACTIONS(2797), + [anon_sym_PLUS] = ACTIONS(2797), + [anon_sym_STAR] = ACTIONS(2799), + [anon_sym_AMP_AMP] = ACTIONS(2799), + [anon_sym_AMP] = ACTIONS(2797), + [anon_sym_SEMI] = ACTIONS(2799), + [anon_sym_typedef] = ACTIONS(2797), + [anon_sym_extern] = ACTIONS(2797), + [anon_sym___attribute__] = ACTIONS(2797), + [anon_sym_COLON_COLON] = ACTIONS(2799), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2799), + [anon_sym___declspec] = ACTIONS(2797), + [anon_sym___based] = ACTIONS(2797), + [anon_sym___cdecl] = ACTIONS(2797), + [anon_sym___clrcall] = ACTIONS(2797), + [anon_sym___stdcall] = ACTIONS(2797), + [anon_sym___fastcall] = ACTIONS(2797), + [anon_sym___thiscall] = ACTIONS(2797), + [anon_sym___vectorcall] = ACTIONS(2797), + [anon_sym_LBRACE] = ACTIONS(2799), + [anon_sym_LBRACK] = ACTIONS(2797), + [anon_sym_static] = ACTIONS(2797), + [anon_sym_register] = ACTIONS(2797), + [anon_sym_inline] = ACTIONS(2797), + [anon_sym_thread_local] = ACTIONS(2797), + [anon_sym_const] = ACTIONS(2797), + [anon_sym_volatile] = ACTIONS(2797), + [anon_sym_restrict] = ACTIONS(2797), + [anon_sym__Atomic] = ACTIONS(2797), + [anon_sym_mutable] = ACTIONS(2797), + [anon_sym_constexpr] = ACTIONS(2797), + [anon_sym_constinit] = ACTIONS(2797), + [anon_sym_consteval] = ACTIONS(2797), + [anon_sym_signed] = ACTIONS(2797), + [anon_sym_unsigned] = ACTIONS(2797), + [anon_sym_long] = ACTIONS(2797), + [anon_sym_short] = ACTIONS(2797), + [sym_primitive_type] = ACTIONS(2797), + [anon_sym_enum] = ACTIONS(2797), + [anon_sym_class] = ACTIONS(2797), + [anon_sym_struct] = ACTIONS(2797), + [anon_sym_union] = ACTIONS(2797), + [anon_sym_if] = ACTIONS(2797), + [anon_sym_switch] = ACTIONS(2797), + [anon_sym_case] = ACTIONS(2797), + [anon_sym_default] = ACTIONS(2797), + [anon_sym_while] = ACTIONS(2797), + [anon_sym_do] = ACTIONS(2797), + [anon_sym_for] = ACTIONS(2797), + [anon_sym_return] = ACTIONS(2797), + [anon_sym_break] = ACTIONS(2797), + [anon_sym_continue] = ACTIONS(2797), + [anon_sym_goto] = ACTIONS(2797), + [anon_sym_not] = ACTIONS(2797), + [anon_sym_compl] = ACTIONS(2797), + [anon_sym_DASH_DASH] = ACTIONS(2799), + [anon_sym_PLUS_PLUS] = ACTIONS(2799), + [anon_sym_sizeof] = ACTIONS(2797), + [sym_number_literal] = ACTIONS(2799), + [anon_sym_L_SQUOTE] = ACTIONS(2799), + [anon_sym_u_SQUOTE] = ACTIONS(2799), + [anon_sym_U_SQUOTE] = ACTIONS(2799), + [anon_sym_u8_SQUOTE] = ACTIONS(2799), + [anon_sym_SQUOTE] = ACTIONS(2799), + [anon_sym_L_DQUOTE] = ACTIONS(2799), + [anon_sym_u_DQUOTE] = ACTIONS(2799), + [anon_sym_U_DQUOTE] = ACTIONS(2799), + [anon_sym_u8_DQUOTE] = ACTIONS(2799), + [anon_sym_DQUOTE] = ACTIONS(2799), + [sym_true] = ACTIONS(2797), + [sym_false] = ACTIONS(2797), + [sym_null] = ACTIONS(2797), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2797), + [anon_sym_decltype] = ACTIONS(2797), + [anon_sym_virtual] = ACTIONS(2797), + [anon_sym_explicit] = ACTIONS(2797), + [anon_sym_typename] = ACTIONS(2797), + [anon_sym_template] = ACTIONS(2797), + [anon_sym_operator] = ACTIONS(2797), + [anon_sym_try] = ACTIONS(2797), + [anon_sym_delete] = ACTIONS(2797), + [anon_sym_throw] = ACTIONS(2797), + [anon_sym_namespace] = ACTIONS(2797), + [anon_sym_using] = ACTIONS(2797), + [anon_sym_static_assert] = ACTIONS(2797), + [anon_sym_concept] = ACTIONS(2797), + [anon_sym_co_return] = ACTIONS(2797), + [anon_sym_co_yield] = ACTIONS(2797), + [anon_sym_co_await] = ACTIONS(2797), + [anon_sym_new] = ACTIONS(2797), + [anon_sym_requires] = ACTIONS(2797), + [sym_this] = ACTIONS(2797), + [sym_nullptr] = ACTIONS(2797), + [sym_raw_string_literal] = ACTIONS(2799), }, - [1469] = { - [sym__expression] = STATE(2558), - [sym_conditional_expression] = STATE(2541), - [sym_assignment_expression] = STATE(2541), - [sym_pointer_expression] = STATE(2531), - [sym_unary_expression] = STATE(2541), - [sym_binary_expression] = STATE(2541), - [sym_update_expression] = STATE(2541), - [sym_cast_expression] = STATE(2541), - [sym_sizeof_expression] = STATE(2541), - [sym_subscript_expression] = STATE(2531), - [sym_call_expression] = STATE(2531), - [sym_field_expression] = STATE(2531), - [sym_compound_literal_expression] = STATE(2541), - [sym_parenthesized_expression] = STATE(2531), - [sym_char_literal] = STATE(2481), - [sym_concatenated_string] = STATE(2481), - [sym_string_literal] = STATE(2063), - [sym__class_name] = STATE(6239), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2541), - [sym_co_await_expression] = STATE(2541), - [sym_new_expression] = STATE(2541), - [sym_delete_expression] = STATE(2541), - [sym_requires_clause] = STATE(2541), - [sym_requires_expression] = STATE(2541), - [sym_lambda_expression] = STATE(2541), - [sym_lambda_capture_specifier] = STATE(4508), - [sym_fold_expression] = STATE(2541), - [sym_parameter_pack_expansion] = STATE(2541), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2531), - [sym_qualified_type_identifier] = STATE(6239), - [sym_user_defined_literal] = STATE(2541), - [sym_identifier] = ACTIONS(2306), - [anon_sym_LPAREN2] = ACTIONS(2310), - [anon_sym_BANG] = ACTIONS(2314), - [anon_sym_TILDE] = ACTIONS(2314), - [anon_sym_DASH] = ACTIONS(2312), - [anon_sym_PLUS] = ACTIONS(2312), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(2318), - [anon_sym_LBRACK] = ACTIONS(2272), - [anon_sym_RBRACK] = ACTIONS(3674), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(2322), - [anon_sym_PLUS_PLUS] = ACTIONS(2322), - [anon_sym_sizeof] = ACTIONS(2324), - [sym_number_literal] = ACTIONS(2326), - [anon_sym_L_SQUOTE] = ACTIONS(2328), - [anon_sym_u_SQUOTE] = ACTIONS(2328), - [anon_sym_U_SQUOTE] = ACTIONS(2328), - [anon_sym_u8_SQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2328), - [anon_sym_L_DQUOTE] = ACTIONS(2330), - [anon_sym_u_DQUOTE] = ACTIONS(2330), - [anon_sym_U_DQUOTE] = ACTIONS(2330), - [anon_sym_u8_DQUOTE] = ACTIONS(2330), - [anon_sym_DQUOTE] = ACTIONS(2330), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2334), - [anon_sym_co_await] = ACTIONS(2336), - [anon_sym_new] = ACTIONS(2338), - [anon_sym_requires] = ACTIONS(2340), - [sym_this] = ACTIONS(2332), - [sym_nullptr] = ACTIONS(2332), - [sym_raw_string_literal] = ACTIONS(2342), + [1001] = { + [ts_builtin_sym_end] = ACTIONS(2881), + [sym_identifier] = ACTIONS(2879), + [aux_sym_preproc_include_token1] = ACTIONS(2879), + [aux_sym_preproc_def_token1] = ACTIONS(2879), + [aux_sym_preproc_if_token1] = ACTIONS(2879), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2879), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2879), + [sym_preproc_directive] = ACTIONS(2879), + [anon_sym_LPAREN2] = ACTIONS(2881), + [anon_sym_BANG] = ACTIONS(2881), + [anon_sym_TILDE] = ACTIONS(2881), + [anon_sym_DASH] = ACTIONS(2879), + [anon_sym_PLUS] = ACTIONS(2879), + [anon_sym_STAR] = ACTIONS(2881), + [anon_sym_AMP_AMP] = ACTIONS(2881), + [anon_sym_AMP] = ACTIONS(2879), + [anon_sym_SEMI] = ACTIONS(2881), + [anon_sym_typedef] = ACTIONS(2879), + [anon_sym_extern] = ACTIONS(2879), + [anon_sym___attribute__] = ACTIONS(2879), + [anon_sym_COLON_COLON] = ACTIONS(2881), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2881), + [anon_sym___declspec] = ACTIONS(2879), + [anon_sym___based] = ACTIONS(2879), + [anon_sym___cdecl] = ACTIONS(2879), + [anon_sym___clrcall] = ACTIONS(2879), + [anon_sym___stdcall] = ACTIONS(2879), + [anon_sym___fastcall] = ACTIONS(2879), + [anon_sym___thiscall] = ACTIONS(2879), + [anon_sym___vectorcall] = ACTIONS(2879), + [anon_sym_LBRACE] = ACTIONS(2881), + [anon_sym_LBRACK] = ACTIONS(2879), + [anon_sym_static] = ACTIONS(2879), + [anon_sym_register] = ACTIONS(2879), + [anon_sym_inline] = ACTIONS(2879), + [anon_sym_thread_local] = ACTIONS(2879), + [anon_sym_const] = ACTIONS(2879), + [anon_sym_volatile] = ACTIONS(2879), + [anon_sym_restrict] = ACTIONS(2879), + [anon_sym__Atomic] = ACTIONS(2879), + [anon_sym_mutable] = ACTIONS(2879), + [anon_sym_constexpr] = ACTIONS(2879), + [anon_sym_constinit] = ACTIONS(2879), + [anon_sym_consteval] = ACTIONS(2879), + [anon_sym_signed] = ACTIONS(2879), + [anon_sym_unsigned] = ACTIONS(2879), + [anon_sym_long] = ACTIONS(2879), + [anon_sym_short] = ACTIONS(2879), + [sym_primitive_type] = ACTIONS(2879), + [anon_sym_enum] = ACTIONS(2879), + [anon_sym_class] = ACTIONS(2879), + [anon_sym_struct] = ACTIONS(2879), + [anon_sym_union] = ACTIONS(2879), + [anon_sym_if] = ACTIONS(2879), + [anon_sym_switch] = ACTIONS(2879), + [anon_sym_case] = ACTIONS(2879), + [anon_sym_default] = ACTIONS(2879), + [anon_sym_while] = ACTIONS(2879), + [anon_sym_do] = ACTIONS(2879), + [anon_sym_for] = ACTIONS(2879), + [anon_sym_return] = ACTIONS(2879), + [anon_sym_break] = ACTIONS(2879), + [anon_sym_continue] = ACTIONS(2879), + [anon_sym_goto] = ACTIONS(2879), + [anon_sym_not] = ACTIONS(2879), + [anon_sym_compl] = ACTIONS(2879), + [anon_sym_DASH_DASH] = ACTIONS(2881), + [anon_sym_PLUS_PLUS] = ACTIONS(2881), + [anon_sym_sizeof] = ACTIONS(2879), + [sym_number_literal] = ACTIONS(2881), + [anon_sym_L_SQUOTE] = ACTIONS(2881), + [anon_sym_u_SQUOTE] = ACTIONS(2881), + [anon_sym_U_SQUOTE] = ACTIONS(2881), + [anon_sym_u8_SQUOTE] = ACTIONS(2881), + [anon_sym_SQUOTE] = ACTIONS(2881), + [anon_sym_L_DQUOTE] = ACTIONS(2881), + [anon_sym_u_DQUOTE] = ACTIONS(2881), + [anon_sym_U_DQUOTE] = ACTIONS(2881), + [anon_sym_u8_DQUOTE] = ACTIONS(2881), + [anon_sym_DQUOTE] = ACTIONS(2881), + [sym_true] = ACTIONS(2879), + [sym_false] = ACTIONS(2879), + [sym_null] = ACTIONS(2879), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2879), + [anon_sym_decltype] = ACTIONS(2879), + [anon_sym_virtual] = ACTIONS(2879), + [anon_sym_explicit] = ACTIONS(2879), + [anon_sym_typename] = ACTIONS(2879), + [anon_sym_template] = ACTIONS(2879), + [anon_sym_operator] = ACTIONS(2879), + [anon_sym_try] = ACTIONS(2879), + [anon_sym_delete] = ACTIONS(2879), + [anon_sym_throw] = ACTIONS(2879), + [anon_sym_namespace] = ACTIONS(2879), + [anon_sym_using] = ACTIONS(2879), + [anon_sym_static_assert] = ACTIONS(2879), + [anon_sym_concept] = ACTIONS(2879), + [anon_sym_co_return] = ACTIONS(2879), + [anon_sym_co_yield] = ACTIONS(2879), + [anon_sym_co_await] = ACTIONS(2879), + [anon_sym_new] = ACTIONS(2879), + [anon_sym_requires] = ACTIONS(2879), + [sym_this] = ACTIONS(2879), + [sym_nullptr] = ACTIONS(2879), + [sym_raw_string_literal] = ACTIONS(2881), }, - [1470] = { - [sym__expression] = STATE(3942), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_RPAREN] = ACTIONS(3676), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [1002] = { + [ts_builtin_sym_end] = ACTIONS(2791), + [sym_identifier] = ACTIONS(2789), + [aux_sym_preproc_include_token1] = ACTIONS(2789), + [aux_sym_preproc_def_token1] = ACTIONS(2789), + [aux_sym_preproc_if_token1] = ACTIONS(2789), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2789), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2789), + [sym_preproc_directive] = ACTIONS(2789), + [anon_sym_LPAREN2] = ACTIONS(2791), + [anon_sym_BANG] = ACTIONS(2791), + [anon_sym_TILDE] = ACTIONS(2791), + [anon_sym_DASH] = ACTIONS(2789), + [anon_sym_PLUS] = ACTIONS(2789), + [anon_sym_STAR] = ACTIONS(2791), + [anon_sym_AMP_AMP] = ACTIONS(2791), + [anon_sym_AMP] = ACTIONS(2789), + [anon_sym_SEMI] = ACTIONS(2791), + [anon_sym_typedef] = ACTIONS(2789), + [anon_sym_extern] = ACTIONS(2789), + [anon_sym___attribute__] = ACTIONS(2789), + [anon_sym_COLON_COLON] = ACTIONS(2791), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2791), + [anon_sym___declspec] = ACTIONS(2789), + [anon_sym___based] = ACTIONS(2789), + [anon_sym___cdecl] = ACTIONS(2789), + [anon_sym___clrcall] = ACTIONS(2789), + [anon_sym___stdcall] = ACTIONS(2789), + [anon_sym___fastcall] = ACTIONS(2789), + [anon_sym___thiscall] = ACTIONS(2789), + [anon_sym___vectorcall] = ACTIONS(2789), + [anon_sym_LBRACE] = ACTIONS(2791), + [anon_sym_LBRACK] = ACTIONS(2789), + [anon_sym_static] = ACTIONS(2789), + [anon_sym_register] = ACTIONS(2789), + [anon_sym_inline] = ACTIONS(2789), + [anon_sym_thread_local] = ACTIONS(2789), + [anon_sym_const] = ACTIONS(2789), + [anon_sym_volatile] = ACTIONS(2789), + [anon_sym_restrict] = ACTIONS(2789), + [anon_sym__Atomic] = ACTIONS(2789), + [anon_sym_mutable] = ACTIONS(2789), + [anon_sym_constexpr] = ACTIONS(2789), + [anon_sym_constinit] = ACTIONS(2789), + [anon_sym_consteval] = ACTIONS(2789), + [anon_sym_signed] = ACTIONS(2789), + [anon_sym_unsigned] = ACTIONS(2789), + [anon_sym_long] = ACTIONS(2789), + [anon_sym_short] = ACTIONS(2789), + [sym_primitive_type] = ACTIONS(2789), + [anon_sym_enum] = ACTIONS(2789), + [anon_sym_class] = ACTIONS(2789), + [anon_sym_struct] = ACTIONS(2789), + [anon_sym_union] = ACTIONS(2789), + [anon_sym_if] = ACTIONS(2789), + [anon_sym_switch] = ACTIONS(2789), + [anon_sym_case] = ACTIONS(2789), + [anon_sym_default] = ACTIONS(2789), + [anon_sym_while] = ACTIONS(2789), + [anon_sym_do] = ACTIONS(2789), + [anon_sym_for] = ACTIONS(2789), + [anon_sym_return] = ACTIONS(2789), + [anon_sym_break] = ACTIONS(2789), + [anon_sym_continue] = ACTIONS(2789), + [anon_sym_goto] = ACTIONS(2789), + [anon_sym_not] = ACTIONS(2789), + [anon_sym_compl] = ACTIONS(2789), + [anon_sym_DASH_DASH] = ACTIONS(2791), + [anon_sym_PLUS_PLUS] = ACTIONS(2791), + [anon_sym_sizeof] = ACTIONS(2789), + [sym_number_literal] = ACTIONS(2791), + [anon_sym_L_SQUOTE] = ACTIONS(2791), + [anon_sym_u_SQUOTE] = ACTIONS(2791), + [anon_sym_U_SQUOTE] = ACTIONS(2791), + [anon_sym_u8_SQUOTE] = ACTIONS(2791), + [anon_sym_SQUOTE] = ACTIONS(2791), + [anon_sym_L_DQUOTE] = ACTIONS(2791), + [anon_sym_u_DQUOTE] = ACTIONS(2791), + [anon_sym_U_DQUOTE] = ACTIONS(2791), + [anon_sym_u8_DQUOTE] = ACTIONS(2791), + [anon_sym_DQUOTE] = ACTIONS(2791), + [sym_true] = ACTIONS(2789), + [sym_false] = ACTIONS(2789), + [sym_null] = ACTIONS(2789), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2789), + [anon_sym_decltype] = ACTIONS(2789), + [anon_sym_virtual] = ACTIONS(2789), + [anon_sym_explicit] = ACTIONS(2789), + [anon_sym_typename] = ACTIONS(2789), + [anon_sym_template] = ACTIONS(2789), + [anon_sym_operator] = ACTIONS(2789), + [anon_sym_try] = ACTIONS(2789), + [anon_sym_delete] = ACTIONS(2789), + [anon_sym_throw] = ACTIONS(2789), + [anon_sym_namespace] = ACTIONS(2789), + [anon_sym_using] = ACTIONS(2789), + [anon_sym_static_assert] = ACTIONS(2789), + [anon_sym_concept] = ACTIONS(2789), + [anon_sym_co_return] = ACTIONS(2789), + [anon_sym_co_yield] = ACTIONS(2789), + [anon_sym_co_await] = ACTIONS(2789), + [anon_sym_new] = ACTIONS(2789), + [anon_sym_requires] = ACTIONS(2789), + [sym_this] = ACTIONS(2789), + [sym_nullptr] = ACTIONS(2789), + [sym_raw_string_literal] = ACTIONS(2791), }, - [1471] = { - [sym__expression] = STATE(3829), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2981), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2981), - [sym_call_expression] = STATE(2981), - [sym_field_expression] = STATE(2981), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2981), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2981), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3039), - [anon_sym_LPAREN2] = ACTIONS(3041), - [anon_sym_BANG] = ACTIONS(3045), - [anon_sym_TILDE] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(3047), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3049), - [anon_sym_PLUS_PLUS] = ACTIONS(3049), - [anon_sym_sizeof] = ACTIONS(3051), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3053), - [anon_sym_co_await] = ACTIONS(3055), - [anon_sym_new] = ACTIONS(3057), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [1003] = { + [sym_identifier] = ACTIONS(2879), + [aux_sym_preproc_include_token1] = ACTIONS(2879), + [aux_sym_preproc_def_token1] = ACTIONS(2879), + [aux_sym_preproc_if_token1] = ACTIONS(2879), + [aux_sym_preproc_if_token2] = ACTIONS(2879), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2879), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2879), + [sym_preproc_directive] = ACTIONS(2879), + [anon_sym_LPAREN2] = ACTIONS(2881), + [anon_sym_BANG] = ACTIONS(2881), + [anon_sym_TILDE] = ACTIONS(2881), + [anon_sym_DASH] = ACTIONS(2879), + [anon_sym_PLUS] = ACTIONS(2879), + [anon_sym_STAR] = ACTIONS(2881), + [anon_sym_AMP_AMP] = ACTIONS(2881), + [anon_sym_AMP] = ACTIONS(2879), + [anon_sym_SEMI] = ACTIONS(2881), + [anon_sym_typedef] = ACTIONS(2879), + [anon_sym_extern] = ACTIONS(2879), + [anon_sym___attribute__] = ACTIONS(2879), + [anon_sym_COLON_COLON] = ACTIONS(2881), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2881), + [anon_sym___declspec] = ACTIONS(2879), + [anon_sym___based] = ACTIONS(2879), + [anon_sym___cdecl] = ACTIONS(2879), + [anon_sym___clrcall] = ACTIONS(2879), + [anon_sym___stdcall] = ACTIONS(2879), + [anon_sym___fastcall] = ACTIONS(2879), + [anon_sym___thiscall] = ACTIONS(2879), + [anon_sym___vectorcall] = ACTIONS(2879), + [anon_sym_LBRACE] = ACTIONS(2881), + [anon_sym_LBRACK] = ACTIONS(2879), + [anon_sym_static] = ACTIONS(2879), + [anon_sym_register] = ACTIONS(2879), + [anon_sym_inline] = ACTIONS(2879), + [anon_sym_thread_local] = ACTIONS(2879), + [anon_sym_const] = ACTIONS(2879), + [anon_sym_volatile] = ACTIONS(2879), + [anon_sym_restrict] = ACTIONS(2879), + [anon_sym__Atomic] = ACTIONS(2879), + [anon_sym_mutable] = ACTIONS(2879), + [anon_sym_constexpr] = ACTIONS(2879), + [anon_sym_constinit] = ACTIONS(2879), + [anon_sym_consteval] = ACTIONS(2879), + [anon_sym_signed] = ACTIONS(2879), + [anon_sym_unsigned] = ACTIONS(2879), + [anon_sym_long] = ACTIONS(2879), + [anon_sym_short] = ACTIONS(2879), + [sym_primitive_type] = ACTIONS(2879), + [anon_sym_enum] = ACTIONS(2879), + [anon_sym_class] = ACTIONS(2879), + [anon_sym_struct] = ACTIONS(2879), + [anon_sym_union] = ACTIONS(2879), + [anon_sym_if] = ACTIONS(2879), + [anon_sym_switch] = ACTIONS(2879), + [anon_sym_case] = ACTIONS(2879), + [anon_sym_default] = ACTIONS(2879), + [anon_sym_while] = ACTIONS(2879), + [anon_sym_do] = ACTIONS(2879), + [anon_sym_for] = ACTIONS(2879), + [anon_sym_return] = ACTIONS(2879), + [anon_sym_break] = ACTIONS(2879), + [anon_sym_continue] = ACTIONS(2879), + [anon_sym_goto] = ACTIONS(2879), + [anon_sym_not] = ACTIONS(2879), + [anon_sym_compl] = ACTIONS(2879), + [anon_sym_DASH_DASH] = ACTIONS(2881), + [anon_sym_PLUS_PLUS] = ACTIONS(2881), + [anon_sym_sizeof] = ACTIONS(2879), + [sym_number_literal] = ACTIONS(2881), + [anon_sym_L_SQUOTE] = ACTIONS(2881), + [anon_sym_u_SQUOTE] = ACTIONS(2881), + [anon_sym_U_SQUOTE] = ACTIONS(2881), + [anon_sym_u8_SQUOTE] = ACTIONS(2881), + [anon_sym_SQUOTE] = ACTIONS(2881), + [anon_sym_L_DQUOTE] = ACTIONS(2881), + [anon_sym_u_DQUOTE] = ACTIONS(2881), + [anon_sym_U_DQUOTE] = ACTIONS(2881), + [anon_sym_u8_DQUOTE] = ACTIONS(2881), + [anon_sym_DQUOTE] = ACTIONS(2881), + [sym_true] = ACTIONS(2879), + [sym_false] = ACTIONS(2879), + [sym_null] = ACTIONS(2879), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2879), + [anon_sym_decltype] = ACTIONS(2879), + [anon_sym_virtual] = ACTIONS(2879), + [anon_sym_explicit] = ACTIONS(2879), + [anon_sym_typename] = ACTIONS(2879), + [anon_sym_template] = ACTIONS(2879), + [anon_sym_operator] = ACTIONS(2879), + [anon_sym_try] = ACTIONS(2879), + [anon_sym_delete] = ACTIONS(2879), + [anon_sym_throw] = ACTIONS(2879), + [anon_sym_namespace] = ACTIONS(2879), + [anon_sym_using] = ACTIONS(2879), + [anon_sym_static_assert] = ACTIONS(2879), + [anon_sym_concept] = ACTIONS(2879), + [anon_sym_co_return] = ACTIONS(2879), + [anon_sym_co_yield] = ACTIONS(2879), + [anon_sym_co_await] = ACTIONS(2879), + [anon_sym_new] = ACTIONS(2879), + [anon_sym_requires] = ACTIONS(2879), + [sym_this] = ACTIONS(2879), + [sym_nullptr] = ACTIONS(2879), + [sym_raw_string_literal] = ACTIONS(2881), }, - [1472] = { - [sym__expression] = STATE(3425), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [1004] = { + [ts_builtin_sym_end] = ACTIONS(2787), + [sym_identifier] = ACTIONS(2785), + [aux_sym_preproc_include_token1] = ACTIONS(2785), + [aux_sym_preproc_def_token1] = ACTIONS(2785), + [aux_sym_preproc_if_token1] = ACTIONS(2785), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2785), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2785), + [sym_preproc_directive] = ACTIONS(2785), + [anon_sym_LPAREN2] = ACTIONS(2787), + [anon_sym_BANG] = ACTIONS(2787), + [anon_sym_TILDE] = ACTIONS(2787), + [anon_sym_DASH] = ACTIONS(2785), + [anon_sym_PLUS] = ACTIONS(2785), + [anon_sym_STAR] = ACTIONS(2787), + [anon_sym_AMP_AMP] = ACTIONS(2787), + [anon_sym_AMP] = ACTIONS(2785), + [anon_sym_SEMI] = ACTIONS(2787), + [anon_sym_typedef] = ACTIONS(2785), + [anon_sym_extern] = ACTIONS(2785), + [anon_sym___attribute__] = ACTIONS(2785), + [anon_sym_COLON_COLON] = ACTIONS(2787), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2787), + [anon_sym___declspec] = ACTIONS(2785), + [anon_sym___based] = ACTIONS(2785), + [anon_sym___cdecl] = ACTIONS(2785), + [anon_sym___clrcall] = ACTIONS(2785), + [anon_sym___stdcall] = ACTIONS(2785), + [anon_sym___fastcall] = ACTIONS(2785), + [anon_sym___thiscall] = ACTIONS(2785), + [anon_sym___vectorcall] = ACTIONS(2785), + [anon_sym_LBRACE] = ACTIONS(2787), + [anon_sym_LBRACK] = ACTIONS(2785), + [anon_sym_static] = ACTIONS(2785), + [anon_sym_register] = ACTIONS(2785), + [anon_sym_inline] = ACTIONS(2785), + [anon_sym_thread_local] = ACTIONS(2785), + [anon_sym_const] = ACTIONS(2785), + [anon_sym_volatile] = ACTIONS(2785), + [anon_sym_restrict] = ACTIONS(2785), + [anon_sym__Atomic] = ACTIONS(2785), + [anon_sym_mutable] = ACTIONS(2785), + [anon_sym_constexpr] = ACTIONS(2785), + [anon_sym_constinit] = ACTIONS(2785), + [anon_sym_consteval] = ACTIONS(2785), + [anon_sym_signed] = ACTIONS(2785), + [anon_sym_unsigned] = ACTIONS(2785), + [anon_sym_long] = ACTIONS(2785), + [anon_sym_short] = ACTIONS(2785), + [sym_primitive_type] = ACTIONS(2785), + [anon_sym_enum] = ACTIONS(2785), + [anon_sym_class] = ACTIONS(2785), + [anon_sym_struct] = ACTIONS(2785), + [anon_sym_union] = ACTIONS(2785), + [anon_sym_if] = ACTIONS(2785), + [anon_sym_switch] = ACTIONS(2785), + [anon_sym_case] = ACTIONS(2785), + [anon_sym_default] = ACTIONS(2785), + [anon_sym_while] = ACTIONS(2785), + [anon_sym_do] = ACTIONS(2785), + [anon_sym_for] = ACTIONS(2785), + [anon_sym_return] = ACTIONS(2785), + [anon_sym_break] = ACTIONS(2785), + [anon_sym_continue] = ACTIONS(2785), + [anon_sym_goto] = ACTIONS(2785), + [anon_sym_not] = ACTIONS(2785), + [anon_sym_compl] = ACTIONS(2785), + [anon_sym_DASH_DASH] = ACTIONS(2787), + [anon_sym_PLUS_PLUS] = ACTIONS(2787), + [anon_sym_sizeof] = ACTIONS(2785), + [sym_number_literal] = ACTIONS(2787), + [anon_sym_L_SQUOTE] = ACTIONS(2787), + [anon_sym_u_SQUOTE] = ACTIONS(2787), + [anon_sym_U_SQUOTE] = ACTIONS(2787), + [anon_sym_u8_SQUOTE] = ACTIONS(2787), + [anon_sym_SQUOTE] = ACTIONS(2787), + [anon_sym_L_DQUOTE] = ACTIONS(2787), + [anon_sym_u_DQUOTE] = ACTIONS(2787), + [anon_sym_U_DQUOTE] = ACTIONS(2787), + [anon_sym_u8_DQUOTE] = ACTIONS(2787), + [anon_sym_DQUOTE] = ACTIONS(2787), + [sym_true] = ACTIONS(2785), + [sym_false] = ACTIONS(2785), + [sym_null] = ACTIONS(2785), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2785), + [anon_sym_decltype] = ACTIONS(2785), + [anon_sym_virtual] = ACTIONS(2785), + [anon_sym_explicit] = ACTIONS(2785), + [anon_sym_typename] = ACTIONS(2785), + [anon_sym_template] = ACTIONS(2785), + [anon_sym_operator] = ACTIONS(2785), + [anon_sym_try] = ACTIONS(2785), + [anon_sym_delete] = ACTIONS(2785), + [anon_sym_throw] = ACTIONS(2785), + [anon_sym_namespace] = ACTIONS(2785), + [anon_sym_using] = ACTIONS(2785), + [anon_sym_static_assert] = ACTIONS(2785), + [anon_sym_concept] = ACTIONS(2785), + [anon_sym_co_return] = ACTIONS(2785), + [anon_sym_co_yield] = ACTIONS(2785), + [anon_sym_co_await] = ACTIONS(2785), + [anon_sym_new] = ACTIONS(2785), + [anon_sym_requires] = ACTIONS(2785), + [sym_this] = ACTIONS(2785), + [sym_nullptr] = ACTIONS(2785), + [sym_raw_string_literal] = ACTIONS(2787), + }, + [1005] = { + [ts_builtin_sym_end] = ACTIONS(2783), + [sym_identifier] = ACTIONS(2781), + [aux_sym_preproc_include_token1] = ACTIONS(2781), + [aux_sym_preproc_def_token1] = ACTIONS(2781), + [aux_sym_preproc_if_token1] = ACTIONS(2781), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2781), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2781), + [sym_preproc_directive] = ACTIONS(2781), + [anon_sym_LPAREN2] = ACTIONS(2783), + [anon_sym_BANG] = ACTIONS(2783), + [anon_sym_TILDE] = ACTIONS(2783), + [anon_sym_DASH] = ACTIONS(2781), + [anon_sym_PLUS] = ACTIONS(2781), + [anon_sym_STAR] = ACTIONS(2783), + [anon_sym_AMP_AMP] = ACTIONS(2783), + [anon_sym_AMP] = ACTIONS(2781), + [anon_sym_SEMI] = ACTIONS(2783), + [anon_sym_typedef] = ACTIONS(2781), + [anon_sym_extern] = ACTIONS(2781), + [anon_sym___attribute__] = ACTIONS(2781), + [anon_sym_COLON_COLON] = ACTIONS(2783), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2783), + [anon_sym___declspec] = ACTIONS(2781), + [anon_sym___based] = ACTIONS(2781), + [anon_sym___cdecl] = ACTIONS(2781), + [anon_sym___clrcall] = ACTIONS(2781), + [anon_sym___stdcall] = ACTIONS(2781), + [anon_sym___fastcall] = ACTIONS(2781), + [anon_sym___thiscall] = ACTIONS(2781), + [anon_sym___vectorcall] = ACTIONS(2781), + [anon_sym_LBRACE] = ACTIONS(2783), + [anon_sym_LBRACK] = ACTIONS(2781), + [anon_sym_static] = ACTIONS(2781), + [anon_sym_register] = ACTIONS(2781), + [anon_sym_inline] = ACTIONS(2781), + [anon_sym_thread_local] = ACTIONS(2781), + [anon_sym_const] = ACTIONS(2781), + [anon_sym_volatile] = ACTIONS(2781), + [anon_sym_restrict] = ACTIONS(2781), + [anon_sym__Atomic] = ACTIONS(2781), + [anon_sym_mutable] = ACTIONS(2781), + [anon_sym_constexpr] = ACTIONS(2781), + [anon_sym_constinit] = ACTIONS(2781), + [anon_sym_consteval] = ACTIONS(2781), + [anon_sym_signed] = ACTIONS(2781), + [anon_sym_unsigned] = ACTIONS(2781), + [anon_sym_long] = ACTIONS(2781), + [anon_sym_short] = ACTIONS(2781), + [sym_primitive_type] = ACTIONS(2781), + [anon_sym_enum] = ACTIONS(2781), + [anon_sym_class] = ACTIONS(2781), + [anon_sym_struct] = ACTIONS(2781), + [anon_sym_union] = ACTIONS(2781), + [anon_sym_if] = ACTIONS(2781), + [anon_sym_switch] = ACTIONS(2781), + [anon_sym_case] = ACTIONS(2781), + [anon_sym_default] = ACTIONS(2781), + [anon_sym_while] = ACTIONS(2781), + [anon_sym_do] = ACTIONS(2781), + [anon_sym_for] = ACTIONS(2781), + [anon_sym_return] = ACTIONS(2781), + [anon_sym_break] = ACTIONS(2781), + [anon_sym_continue] = ACTIONS(2781), + [anon_sym_goto] = ACTIONS(2781), + [anon_sym_not] = ACTIONS(2781), + [anon_sym_compl] = ACTIONS(2781), + [anon_sym_DASH_DASH] = ACTIONS(2783), + [anon_sym_PLUS_PLUS] = ACTIONS(2783), + [anon_sym_sizeof] = ACTIONS(2781), + [sym_number_literal] = ACTIONS(2783), + [anon_sym_L_SQUOTE] = ACTIONS(2783), + [anon_sym_u_SQUOTE] = ACTIONS(2783), + [anon_sym_U_SQUOTE] = ACTIONS(2783), + [anon_sym_u8_SQUOTE] = ACTIONS(2783), + [anon_sym_SQUOTE] = ACTIONS(2783), + [anon_sym_L_DQUOTE] = ACTIONS(2783), + [anon_sym_u_DQUOTE] = ACTIONS(2783), + [anon_sym_U_DQUOTE] = ACTIONS(2783), + [anon_sym_u8_DQUOTE] = ACTIONS(2783), + [anon_sym_DQUOTE] = ACTIONS(2783), + [sym_true] = ACTIONS(2781), + [sym_false] = ACTIONS(2781), + [sym_null] = ACTIONS(2781), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2781), + [anon_sym_decltype] = ACTIONS(2781), + [anon_sym_virtual] = ACTIONS(2781), + [anon_sym_explicit] = ACTIONS(2781), + [anon_sym_typename] = ACTIONS(2781), + [anon_sym_template] = ACTIONS(2781), + [anon_sym_operator] = ACTIONS(2781), + [anon_sym_try] = ACTIONS(2781), + [anon_sym_delete] = ACTIONS(2781), + [anon_sym_throw] = ACTIONS(2781), + [anon_sym_namespace] = ACTIONS(2781), + [anon_sym_using] = ACTIONS(2781), + [anon_sym_static_assert] = ACTIONS(2781), + [anon_sym_concept] = ACTIONS(2781), + [anon_sym_co_return] = ACTIONS(2781), + [anon_sym_co_yield] = ACTIONS(2781), + [anon_sym_co_await] = ACTIONS(2781), + [anon_sym_new] = ACTIONS(2781), + [anon_sym_requires] = ACTIONS(2781), + [sym_this] = ACTIONS(2781), + [sym_nullptr] = ACTIONS(2781), + [sym_raw_string_literal] = ACTIONS(2783), + }, + [1006] = { + [sym_identifier] = ACTIONS(2737), + [aux_sym_preproc_include_token1] = ACTIONS(2737), + [aux_sym_preproc_def_token1] = ACTIONS(2737), + [aux_sym_preproc_if_token1] = ACTIONS(2737), + [aux_sym_preproc_if_token2] = ACTIONS(2737), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2737), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2737), + [sym_preproc_directive] = ACTIONS(2737), + [anon_sym_LPAREN2] = ACTIONS(2739), + [anon_sym_BANG] = ACTIONS(2739), + [anon_sym_TILDE] = ACTIONS(2739), + [anon_sym_DASH] = ACTIONS(2737), + [anon_sym_PLUS] = ACTIONS(2737), + [anon_sym_STAR] = ACTIONS(2739), + [anon_sym_AMP_AMP] = ACTIONS(2739), + [anon_sym_AMP] = ACTIONS(2737), + [anon_sym_SEMI] = ACTIONS(2739), + [anon_sym_typedef] = ACTIONS(2737), + [anon_sym_extern] = ACTIONS(2737), + [anon_sym___attribute__] = ACTIONS(2737), + [anon_sym_COLON_COLON] = ACTIONS(2739), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2739), + [anon_sym___declspec] = ACTIONS(2737), + [anon_sym___based] = ACTIONS(2737), + [anon_sym___cdecl] = ACTIONS(2737), + [anon_sym___clrcall] = ACTIONS(2737), + [anon_sym___stdcall] = ACTIONS(2737), + [anon_sym___fastcall] = ACTIONS(2737), + [anon_sym___thiscall] = ACTIONS(2737), + [anon_sym___vectorcall] = ACTIONS(2737), + [anon_sym_LBRACE] = ACTIONS(2739), + [anon_sym_LBRACK] = ACTIONS(2737), + [anon_sym_static] = ACTIONS(2737), + [anon_sym_register] = ACTIONS(2737), + [anon_sym_inline] = ACTIONS(2737), + [anon_sym_thread_local] = ACTIONS(2737), + [anon_sym_const] = ACTIONS(2737), + [anon_sym_volatile] = ACTIONS(2737), + [anon_sym_restrict] = ACTIONS(2737), + [anon_sym__Atomic] = ACTIONS(2737), + [anon_sym_mutable] = ACTIONS(2737), + [anon_sym_constexpr] = ACTIONS(2737), + [anon_sym_constinit] = ACTIONS(2737), + [anon_sym_consteval] = ACTIONS(2737), + [anon_sym_signed] = ACTIONS(2737), + [anon_sym_unsigned] = ACTIONS(2737), + [anon_sym_long] = ACTIONS(2737), + [anon_sym_short] = ACTIONS(2737), + [sym_primitive_type] = ACTIONS(2737), + [anon_sym_enum] = ACTIONS(2737), + [anon_sym_class] = ACTIONS(2737), + [anon_sym_struct] = ACTIONS(2737), + [anon_sym_union] = ACTIONS(2737), + [anon_sym_if] = ACTIONS(2737), + [anon_sym_switch] = ACTIONS(2737), + [anon_sym_case] = ACTIONS(2737), + [anon_sym_default] = ACTIONS(2737), + [anon_sym_while] = ACTIONS(2737), + [anon_sym_do] = ACTIONS(2737), + [anon_sym_for] = ACTIONS(2737), + [anon_sym_return] = ACTIONS(2737), + [anon_sym_break] = ACTIONS(2737), + [anon_sym_continue] = ACTIONS(2737), + [anon_sym_goto] = ACTIONS(2737), + [anon_sym_not] = ACTIONS(2737), + [anon_sym_compl] = ACTIONS(2737), + [anon_sym_DASH_DASH] = ACTIONS(2739), + [anon_sym_PLUS_PLUS] = ACTIONS(2739), + [anon_sym_sizeof] = ACTIONS(2737), + [sym_number_literal] = ACTIONS(2739), + [anon_sym_L_SQUOTE] = ACTIONS(2739), + [anon_sym_u_SQUOTE] = ACTIONS(2739), + [anon_sym_U_SQUOTE] = ACTIONS(2739), + [anon_sym_u8_SQUOTE] = ACTIONS(2739), + [anon_sym_SQUOTE] = ACTIONS(2739), + [anon_sym_L_DQUOTE] = ACTIONS(2739), + [anon_sym_u_DQUOTE] = ACTIONS(2739), + [anon_sym_U_DQUOTE] = ACTIONS(2739), + [anon_sym_u8_DQUOTE] = ACTIONS(2739), + [anon_sym_DQUOTE] = ACTIONS(2739), + [sym_true] = ACTIONS(2737), + [sym_false] = ACTIONS(2737), + [sym_null] = ACTIONS(2737), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2737), + [anon_sym_decltype] = ACTIONS(2737), + [anon_sym_virtual] = ACTIONS(2737), + [anon_sym_explicit] = ACTIONS(2737), + [anon_sym_typename] = ACTIONS(2737), + [anon_sym_template] = ACTIONS(2737), + [anon_sym_operator] = ACTIONS(2737), + [anon_sym_try] = ACTIONS(2737), + [anon_sym_delete] = ACTIONS(2737), + [anon_sym_throw] = ACTIONS(2737), + [anon_sym_namespace] = ACTIONS(2737), + [anon_sym_using] = ACTIONS(2737), + [anon_sym_static_assert] = ACTIONS(2737), + [anon_sym_concept] = ACTIONS(2737), + [anon_sym_co_return] = ACTIONS(2737), + [anon_sym_co_yield] = ACTIONS(2737), + [anon_sym_co_await] = ACTIONS(2737), + [anon_sym_new] = ACTIONS(2737), + [anon_sym_requires] = ACTIONS(2737), + [sym_this] = ACTIONS(2737), + [sym_nullptr] = ACTIONS(2737), + [sym_raw_string_literal] = ACTIONS(2739), + }, + [1007] = { + [sym_identifier] = ACTIONS(2749), + [aux_sym_preproc_include_token1] = ACTIONS(2749), + [aux_sym_preproc_def_token1] = ACTIONS(2749), + [aux_sym_preproc_if_token1] = ACTIONS(2749), + [aux_sym_preproc_if_token2] = ACTIONS(2749), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2749), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2749), + [sym_preproc_directive] = ACTIONS(2749), + [anon_sym_LPAREN2] = ACTIONS(2751), + [anon_sym_BANG] = ACTIONS(2751), + [anon_sym_TILDE] = ACTIONS(2751), + [anon_sym_DASH] = ACTIONS(2749), + [anon_sym_PLUS] = ACTIONS(2749), + [anon_sym_STAR] = ACTIONS(2751), + [anon_sym_AMP_AMP] = ACTIONS(2751), + [anon_sym_AMP] = ACTIONS(2749), + [anon_sym_SEMI] = ACTIONS(2751), + [anon_sym_typedef] = ACTIONS(2749), + [anon_sym_extern] = ACTIONS(2749), + [anon_sym___attribute__] = ACTIONS(2749), + [anon_sym_COLON_COLON] = ACTIONS(2751), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2751), + [anon_sym___declspec] = ACTIONS(2749), + [anon_sym___based] = ACTIONS(2749), + [anon_sym___cdecl] = ACTIONS(2749), + [anon_sym___clrcall] = ACTIONS(2749), + [anon_sym___stdcall] = ACTIONS(2749), + [anon_sym___fastcall] = ACTIONS(2749), + [anon_sym___thiscall] = ACTIONS(2749), + [anon_sym___vectorcall] = ACTIONS(2749), + [anon_sym_LBRACE] = ACTIONS(2751), + [anon_sym_LBRACK] = ACTIONS(2749), + [anon_sym_static] = ACTIONS(2749), + [anon_sym_register] = ACTIONS(2749), + [anon_sym_inline] = ACTIONS(2749), + [anon_sym_thread_local] = ACTIONS(2749), + [anon_sym_const] = ACTIONS(2749), + [anon_sym_volatile] = ACTIONS(2749), + [anon_sym_restrict] = ACTIONS(2749), + [anon_sym__Atomic] = ACTIONS(2749), + [anon_sym_mutable] = ACTIONS(2749), + [anon_sym_constexpr] = ACTIONS(2749), + [anon_sym_constinit] = ACTIONS(2749), + [anon_sym_consteval] = ACTIONS(2749), + [anon_sym_signed] = ACTIONS(2749), + [anon_sym_unsigned] = ACTIONS(2749), + [anon_sym_long] = ACTIONS(2749), + [anon_sym_short] = ACTIONS(2749), + [sym_primitive_type] = ACTIONS(2749), + [anon_sym_enum] = ACTIONS(2749), + [anon_sym_class] = ACTIONS(2749), + [anon_sym_struct] = ACTIONS(2749), + [anon_sym_union] = ACTIONS(2749), + [anon_sym_if] = ACTIONS(2749), + [anon_sym_switch] = ACTIONS(2749), + [anon_sym_case] = ACTIONS(2749), + [anon_sym_default] = ACTIONS(2749), + [anon_sym_while] = ACTIONS(2749), + [anon_sym_do] = ACTIONS(2749), + [anon_sym_for] = ACTIONS(2749), + [anon_sym_return] = ACTIONS(2749), + [anon_sym_break] = ACTIONS(2749), + [anon_sym_continue] = ACTIONS(2749), + [anon_sym_goto] = ACTIONS(2749), + [anon_sym_not] = ACTIONS(2749), + [anon_sym_compl] = ACTIONS(2749), + [anon_sym_DASH_DASH] = ACTIONS(2751), + [anon_sym_PLUS_PLUS] = ACTIONS(2751), + [anon_sym_sizeof] = ACTIONS(2749), + [sym_number_literal] = ACTIONS(2751), + [anon_sym_L_SQUOTE] = ACTIONS(2751), + [anon_sym_u_SQUOTE] = ACTIONS(2751), + [anon_sym_U_SQUOTE] = ACTIONS(2751), + [anon_sym_u8_SQUOTE] = ACTIONS(2751), + [anon_sym_SQUOTE] = ACTIONS(2751), + [anon_sym_L_DQUOTE] = ACTIONS(2751), + [anon_sym_u_DQUOTE] = ACTIONS(2751), + [anon_sym_U_DQUOTE] = ACTIONS(2751), + [anon_sym_u8_DQUOTE] = ACTIONS(2751), + [anon_sym_DQUOTE] = ACTIONS(2751), + [sym_true] = ACTIONS(2749), + [sym_false] = ACTIONS(2749), + [sym_null] = ACTIONS(2749), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2749), + [anon_sym_decltype] = ACTIONS(2749), + [anon_sym_virtual] = ACTIONS(2749), + [anon_sym_explicit] = ACTIONS(2749), + [anon_sym_typename] = ACTIONS(2749), + [anon_sym_template] = ACTIONS(2749), + [anon_sym_operator] = ACTIONS(2749), + [anon_sym_try] = ACTIONS(2749), + [anon_sym_delete] = ACTIONS(2749), + [anon_sym_throw] = ACTIONS(2749), + [anon_sym_namespace] = ACTIONS(2749), + [anon_sym_using] = ACTIONS(2749), + [anon_sym_static_assert] = ACTIONS(2749), + [anon_sym_concept] = ACTIONS(2749), + [anon_sym_co_return] = ACTIONS(2749), + [anon_sym_co_yield] = ACTIONS(2749), + [anon_sym_co_await] = ACTIONS(2749), + [anon_sym_new] = ACTIONS(2749), + [anon_sym_requires] = ACTIONS(2749), + [sym_this] = ACTIONS(2749), + [sym_nullptr] = ACTIONS(2749), + [sym_raw_string_literal] = ACTIONS(2751), + }, + [1008] = { + [sym_identifier] = ACTIONS(2887), + [aux_sym_preproc_include_token1] = ACTIONS(2887), + [aux_sym_preproc_def_token1] = ACTIONS(2887), + [aux_sym_preproc_if_token1] = ACTIONS(2887), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2887), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2887), + [sym_preproc_directive] = ACTIONS(2887), + [anon_sym_LPAREN2] = ACTIONS(2889), + [anon_sym_BANG] = ACTIONS(2889), + [anon_sym_TILDE] = ACTIONS(2889), + [anon_sym_DASH] = ACTIONS(2887), + [anon_sym_PLUS] = ACTIONS(2887), + [anon_sym_STAR] = ACTIONS(2889), + [anon_sym_AMP_AMP] = ACTIONS(2889), + [anon_sym_AMP] = ACTIONS(2887), + [anon_sym_SEMI] = ACTIONS(2889), + [anon_sym_typedef] = ACTIONS(2887), + [anon_sym_extern] = ACTIONS(2887), + [anon_sym___attribute__] = ACTIONS(2887), + [anon_sym_COLON_COLON] = ACTIONS(2889), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2889), + [anon_sym___declspec] = ACTIONS(2887), + [anon_sym___based] = ACTIONS(2887), + [anon_sym___cdecl] = ACTIONS(2887), + [anon_sym___clrcall] = ACTIONS(2887), + [anon_sym___stdcall] = ACTIONS(2887), + [anon_sym___fastcall] = ACTIONS(2887), + [anon_sym___thiscall] = ACTIONS(2887), + [anon_sym___vectorcall] = ACTIONS(2887), + [anon_sym_LBRACE] = ACTIONS(2889), + [anon_sym_RBRACE] = ACTIONS(2889), + [anon_sym_LBRACK] = ACTIONS(2887), + [anon_sym_static] = ACTIONS(2887), + [anon_sym_register] = ACTIONS(2887), + [anon_sym_inline] = ACTIONS(2887), + [anon_sym_thread_local] = ACTIONS(2887), + [anon_sym_const] = ACTIONS(2887), + [anon_sym_volatile] = ACTIONS(2887), + [anon_sym_restrict] = ACTIONS(2887), + [anon_sym__Atomic] = ACTIONS(2887), + [anon_sym_mutable] = ACTIONS(2887), + [anon_sym_constexpr] = ACTIONS(2887), + [anon_sym_constinit] = ACTIONS(2887), + [anon_sym_consteval] = ACTIONS(2887), + [anon_sym_signed] = ACTIONS(2887), + [anon_sym_unsigned] = ACTIONS(2887), + [anon_sym_long] = ACTIONS(2887), + [anon_sym_short] = ACTIONS(2887), + [sym_primitive_type] = ACTIONS(2887), + [anon_sym_enum] = ACTIONS(2887), + [anon_sym_class] = ACTIONS(2887), + [anon_sym_struct] = ACTIONS(2887), + [anon_sym_union] = ACTIONS(2887), + [anon_sym_if] = ACTIONS(2887), + [anon_sym_switch] = ACTIONS(2887), + [anon_sym_case] = ACTIONS(2887), + [anon_sym_default] = ACTIONS(2887), + [anon_sym_while] = ACTIONS(2887), + [anon_sym_do] = ACTIONS(2887), + [anon_sym_for] = ACTIONS(2887), + [anon_sym_return] = ACTIONS(2887), + [anon_sym_break] = ACTIONS(2887), + [anon_sym_continue] = ACTIONS(2887), + [anon_sym_goto] = ACTIONS(2887), + [anon_sym_not] = ACTIONS(2887), + [anon_sym_compl] = ACTIONS(2887), + [anon_sym_DASH_DASH] = ACTIONS(2889), + [anon_sym_PLUS_PLUS] = ACTIONS(2889), + [anon_sym_sizeof] = ACTIONS(2887), + [sym_number_literal] = ACTIONS(2889), + [anon_sym_L_SQUOTE] = ACTIONS(2889), + [anon_sym_u_SQUOTE] = ACTIONS(2889), + [anon_sym_U_SQUOTE] = ACTIONS(2889), + [anon_sym_u8_SQUOTE] = ACTIONS(2889), + [anon_sym_SQUOTE] = ACTIONS(2889), + [anon_sym_L_DQUOTE] = ACTIONS(2889), + [anon_sym_u_DQUOTE] = ACTIONS(2889), + [anon_sym_U_DQUOTE] = ACTIONS(2889), + [anon_sym_u8_DQUOTE] = ACTIONS(2889), + [anon_sym_DQUOTE] = ACTIONS(2889), + [sym_true] = ACTIONS(2887), + [sym_false] = ACTIONS(2887), + [sym_null] = ACTIONS(2887), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2887), + [anon_sym_decltype] = ACTIONS(2887), + [anon_sym_virtual] = ACTIONS(2887), + [anon_sym_explicit] = ACTIONS(2887), + [anon_sym_typename] = ACTIONS(2887), + [anon_sym_template] = ACTIONS(2887), + [anon_sym_operator] = ACTIONS(2887), + [anon_sym_try] = ACTIONS(2887), + [anon_sym_delete] = ACTIONS(2887), + [anon_sym_throw] = ACTIONS(2887), + [anon_sym_namespace] = ACTIONS(2887), + [anon_sym_using] = ACTIONS(2887), + [anon_sym_static_assert] = ACTIONS(2887), + [anon_sym_concept] = ACTIONS(2887), + [anon_sym_co_return] = ACTIONS(2887), + [anon_sym_co_yield] = ACTIONS(2887), + [anon_sym_co_await] = ACTIONS(2887), + [anon_sym_new] = ACTIONS(2887), + [anon_sym_requires] = ACTIONS(2887), + [sym_this] = ACTIONS(2887), + [sym_nullptr] = ACTIONS(2887), + [sym_raw_string_literal] = ACTIONS(2889), + }, + [1009] = { + [ts_builtin_sym_end] = ACTIONS(2885), + [sym_identifier] = ACTIONS(2883), + [aux_sym_preproc_include_token1] = ACTIONS(2883), + [aux_sym_preproc_def_token1] = ACTIONS(2883), + [aux_sym_preproc_if_token1] = ACTIONS(2883), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2883), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2883), + [sym_preproc_directive] = ACTIONS(2883), + [anon_sym_LPAREN2] = ACTIONS(2885), + [anon_sym_BANG] = ACTIONS(2885), + [anon_sym_TILDE] = ACTIONS(2885), + [anon_sym_DASH] = ACTIONS(2883), + [anon_sym_PLUS] = ACTIONS(2883), + [anon_sym_STAR] = ACTIONS(2885), + [anon_sym_AMP_AMP] = ACTIONS(2885), + [anon_sym_AMP] = ACTIONS(2883), + [anon_sym_SEMI] = ACTIONS(2885), + [anon_sym_typedef] = ACTIONS(2883), + [anon_sym_extern] = ACTIONS(2883), + [anon_sym___attribute__] = ACTIONS(2883), + [anon_sym_COLON_COLON] = ACTIONS(2885), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2885), + [anon_sym___declspec] = ACTIONS(2883), + [anon_sym___based] = ACTIONS(2883), + [anon_sym___cdecl] = ACTIONS(2883), + [anon_sym___clrcall] = ACTIONS(2883), + [anon_sym___stdcall] = ACTIONS(2883), + [anon_sym___fastcall] = ACTIONS(2883), + [anon_sym___thiscall] = ACTIONS(2883), + [anon_sym___vectorcall] = ACTIONS(2883), + [anon_sym_LBRACE] = ACTIONS(2885), + [anon_sym_LBRACK] = ACTIONS(2883), + [anon_sym_static] = ACTIONS(2883), + [anon_sym_register] = ACTIONS(2883), + [anon_sym_inline] = ACTIONS(2883), + [anon_sym_thread_local] = ACTIONS(2883), + [anon_sym_const] = ACTIONS(2883), + [anon_sym_volatile] = ACTIONS(2883), + [anon_sym_restrict] = ACTIONS(2883), + [anon_sym__Atomic] = ACTIONS(2883), + [anon_sym_mutable] = ACTIONS(2883), + [anon_sym_constexpr] = ACTIONS(2883), + [anon_sym_constinit] = ACTIONS(2883), + [anon_sym_consteval] = ACTIONS(2883), + [anon_sym_signed] = ACTIONS(2883), + [anon_sym_unsigned] = ACTIONS(2883), + [anon_sym_long] = ACTIONS(2883), + [anon_sym_short] = ACTIONS(2883), + [sym_primitive_type] = ACTIONS(2883), + [anon_sym_enum] = ACTIONS(2883), + [anon_sym_class] = ACTIONS(2883), + [anon_sym_struct] = ACTIONS(2883), + [anon_sym_union] = ACTIONS(2883), + [anon_sym_if] = ACTIONS(2883), + [anon_sym_switch] = ACTIONS(2883), + [anon_sym_case] = ACTIONS(2883), + [anon_sym_default] = ACTIONS(2883), + [anon_sym_while] = ACTIONS(2883), + [anon_sym_do] = ACTIONS(2883), + [anon_sym_for] = ACTIONS(2883), + [anon_sym_return] = ACTIONS(2883), + [anon_sym_break] = ACTIONS(2883), + [anon_sym_continue] = ACTIONS(2883), + [anon_sym_goto] = ACTIONS(2883), + [anon_sym_not] = ACTIONS(2883), + [anon_sym_compl] = ACTIONS(2883), + [anon_sym_DASH_DASH] = ACTIONS(2885), + [anon_sym_PLUS_PLUS] = ACTIONS(2885), + [anon_sym_sizeof] = ACTIONS(2883), + [sym_number_literal] = ACTIONS(2885), + [anon_sym_L_SQUOTE] = ACTIONS(2885), + [anon_sym_u_SQUOTE] = ACTIONS(2885), + [anon_sym_U_SQUOTE] = ACTIONS(2885), + [anon_sym_u8_SQUOTE] = ACTIONS(2885), + [anon_sym_SQUOTE] = ACTIONS(2885), + [anon_sym_L_DQUOTE] = ACTIONS(2885), + [anon_sym_u_DQUOTE] = ACTIONS(2885), + [anon_sym_U_DQUOTE] = ACTIONS(2885), + [anon_sym_u8_DQUOTE] = ACTIONS(2885), + [anon_sym_DQUOTE] = ACTIONS(2885), + [sym_true] = ACTIONS(2883), + [sym_false] = ACTIONS(2883), + [sym_null] = ACTIONS(2883), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2883), + [anon_sym_decltype] = ACTIONS(2883), + [anon_sym_virtual] = ACTIONS(2883), + [anon_sym_explicit] = ACTIONS(2883), + [anon_sym_typename] = ACTIONS(2883), + [anon_sym_template] = ACTIONS(2883), + [anon_sym_operator] = ACTIONS(2883), + [anon_sym_try] = ACTIONS(2883), + [anon_sym_delete] = ACTIONS(2883), + [anon_sym_throw] = ACTIONS(2883), + [anon_sym_namespace] = ACTIONS(2883), + [anon_sym_using] = ACTIONS(2883), + [anon_sym_static_assert] = ACTIONS(2883), + [anon_sym_concept] = ACTIONS(2883), + [anon_sym_co_return] = ACTIONS(2883), + [anon_sym_co_yield] = ACTIONS(2883), + [anon_sym_co_await] = ACTIONS(2883), + [anon_sym_new] = ACTIONS(2883), + [anon_sym_requires] = ACTIONS(2883), + [sym_this] = ACTIONS(2883), + [sym_nullptr] = ACTIONS(2883), + [sym_raw_string_literal] = ACTIONS(2885), + }, + [1010] = { + [sym_identifier] = ACTIONS(2769), + [aux_sym_preproc_include_token1] = ACTIONS(2769), + [aux_sym_preproc_def_token1] = ACTIONS(2769), + [aux_sym_preproc_if_token1] = ACTIONS(2769), + [aux_sym_preproc_if_token2] = ACTIONS(2769), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2769), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2769), + [sym_preproc_directive] = ACTIONS(2769), + [anon_sym_LPAREN2] = ACTIONS(2771), + [anon_sym_BANG] = ACTIONS(2771), + [anon_sym_TILDE] = ACTIONS(2771), + [anon_sym_DASH] = ACTIONS(2769), + [anon_sym_PLUS] = ACTIONS(2769), + [anon_sym_STAR] = ACTIONS(2771), + [anon_sym_AMP_AMP] = ACTIONS(2771), + [anon_sym_AMP] = ACTIONS(2769), + [anon_sym_SEMI] = ACTIONS(2771), + [anon_sym_typedef] = ACTIONS(2769), + [anon_sym_extern] = ACTIONS(2769), + [anon_sym___attribute__] = ACTIONS(2769), + [anon_sym_COLON_COLON] = ACTIONS(2771), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2771), + [anon_sym___declspec] = ACTIONS(2769), + [anon_sym___based] = ACTIONS(2769), + [anon_sym___cdecl] = ACTIONS(2769), + [anon_sym___clrcall] = ACTIONS(2769), + [anon_sym___stdcall] = ACTIONS(2769), + [anon_sym___fastcall] = ACTIONS(2769), + [anon_sym___thiscall] = ACTIONS(2769), + [anon_sym___vectorcall] = ACTIONS(2769), + [anon_sym_LBRACE] = ACTIONS(2771), + [anon_sym_LBRACK] = ACTIONS(2769), + [anon_sym_static] = ACTIONS(2769), + [anon_sym_register] = ACTIONS(2769), + [anon_sym_inline] = ACTIONS(2769), + [anon_sym_thread_local] = ACTIONS(2769), + [anon_sym_const] = ACTIONS(2769), + [anon_sym_volatile] = ACTIONS(2769), + [anon_sym_restrict] = ACTIONS(2769), + [anon_sym__Atomic] = ACTIONS(2769), + [anon_sym_mutable] = ACTIONS(2769), + [anon_sym_constexpr] = ACTIONS(2769), + [anon_sym_constinit] = ACTIONS(2769), + [anon_sym_consteval] = ACTIONS(2769), + [anon_sym_signed] = ACTIONS(2769), + [anon_sym_unsigned] = ACTIONS(2769), + [anon_sym_long] = ACTIONS(2769), + [anon_sym_short] = ACTIONS(2769), + [sym_primitive_type] = ACTIONS(2769), + [anon_sym_enum] = ACTIONS(2769), + [anon_sym_class] = ACTIONS(2769), + [anon_sym_struct] = ACTIONS(2769), + [anon_sym_union] = ACTIONS(2769), + [anon_sym_if] = ACTIONS(2769), + [anon_sym_switch] = ACTIONS(2769), + [anon_sym_case] = ACTIONS(2769), + [anon_sym_default] = ACTIONS(2769), + [anon_sym_while] = ACTIONS(2769), + [anon_sym_do] = ACTIONS(2769), + [anon_sym_for] = ACTIONS(2769), + [anon_sym_return] = ACTIONS(2769), + [anon_sym_break] = ACTIONS(2769), + [anon_sym_continue] = ACTIONS(2769), + [anon_sym_goto] = ACTIONS(2769), + [anon_sym_not] = ACTIONS(2769), + [anon_sym_compl] = ACTIONS(2769), + [anon_sym_DASH_DASH] = ACTIONS(2771), + [anon_sym_PLUS_PLUS] = ACTIONS(2771), + [anon_sym_sizeof] = ACTIONS(2769), + [sym_number_literal] = ACTIONS(2771), + [anon_sym_L_SQUOTE] = ACTIONS(2771), + [anon_sym_u_SQUOTE] = ACTIONS(2771), + [anon_sym_U_SQUOTE] = ACTIONS(2771), + [anon_sym_u8_SQUOTE] = ACTIONS(2771), + [anon_sym_SQUOTE] = ACTIONS(2771), + [anon_sym_L_DQUOTE] = ACTIONS(2771), + [anon_sym_u_DQUOTE] = ACTIONS(2771), + [anon_sym_U_DQUOTE] = ACTIONS(2771), + [anon_sym_u8_DQUOTE] = ACTIONS(2771), + [anon_sym_DQUOTE] = ACTIONS(2771), + [sym_true] = ACTIONS(2769), + [sym_false] = ACTIONS(2769), + [sym_null] = ACTIONS(2769), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2769), + [anon_sym_decltype] = ACTIONS(2769), + [anon_sym_virtual] = ACTIONS(2769), + [anon_sym_explicit] = ACTIONS(2769), + [anon_sym_typename] = ACTIONS(2769), + [anon_sym_template] = ACTIONS(2769), + [anon_sym_operator] = ACTIONS(2769), + [anon_sym_try] = ACTIONS(2769), + [anon_sym_delete] = ACTIONS(2769), + [anon_sym_throw] = ACTIONS(2769), + [anon_sym_namespace] = ACTIONS(2769), + [anon_sym_using] = ACTIONS(2769), + [anon_sym_static_assert] = ACTIONS(2769), + [anon_sym_concept] = ACTIONS(2769), + [anon_sym_co_return] = ACTIONS(2769), + [anon_sym_co_yield] = ACTIONS(2769), + [anon_sym_co_await] = ACTIONS(2769), + [anon_sym_new] = ACTIONS(2769), + [anon_sym_requires] = ACTIONS(2769), + [sym_this] = ACTIONS(2769), + [sym_nullptr] = ACTIONS(2769), + [sym_raw_string_literal] = ACTIONS(2771), }, - [1473] = { - [sym__expression] = STATE(3633), - [sym_conditional_expression] = STATE(3881), - [sym_assignment_expression] = STATE(3881), - [sym_pointer_expression] = STATE(2977), - [sym_unary_expression] = STATE(3881), - [sym_binary_expression] = STATE(3881), - [sym_update_expression] = STATE(3881), - [sym_cast_expression] = STATE(3881), - [sym_sizeof_expression] = STATE(3881), - [sym_subscript_expression] = STATE(2977), - [sym_call_expression] = STATE(2977), - [sym_field_expression] = STATE(2977), - [sym_compound_literal_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(2977), - [sym_char_literal] = STATE(3701), - [sym_concatenated_string] = STATE(3701), - [sym_string_literal] = STATE(3219), - [sym__class_name] = STATE(6063), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3881), - [sym_co_await_expression] = STATE(3881), - [sym_new_expression] = STATE(3881), - [sym_delete_expression] = STATE(3881), - [sym_requires_clause] = STATE(3881), - [sym_requires_expression] = STATE(3881), - [sym_lambda_expression] = STATE(3881), - [sym_lambda_capture_specifier] = STATE(4519), - [sym_fold_expression] = STATE(3881), - [sym_parameter_pack_expansion] = STATE(3881), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4642), - [sym_qualified_identifier] = STATE(2977), - [sym_qualified_type_identifier] = STATE(6063), - [sym_user_defined_literal] = STATE(3881), - [sym_identifier] = ACTIONS(3035), - [anon_sym_LPAREN2] = ACTIONS(2531), - [anon_sym_BANG] = ACTIONS(2533), - [anon_sym_TILDE] = ACTIONS(2533), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_STAR] = ACTIONS(2537), - [anon_sym_AMP] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(2539), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(2845), - [anon_sym_DASH_DASH] = ACTIONS(2553), - [anon_sym_PLUS_PLUS] = ACTIONS(2553), - [anon_sym_sizeof] = ACTIONS(2555), - [sym_number_literal] = ACTIONS(2557), - [anon_sym_L_SQUOTE] = ACTIONS(2559), - [anon_sym_u_SQUOTE] = ACTIONS(2559), - [anon_sym_U_SQUOTE] = ACTIONS(2559), - [anon_sym_u8_SQUOTE] = ACTIONS(2559), - [anon_sym_SQUOTE] = ACTIONS(2559), - [anon_sym_L_DQUOTE] = ACTIONS(2561), - [anon_sym_u_DQUOTE] = ACTIONS(2561), - [anon_sym_U_DQUOTE] = ACTIONS(2561), - [anon_sym_u8_DQUOTE] = ACTIONS(2561), - [anon_sym_DQUOTE] = ACTIONS(2561), - [sym_true] = ACTIONS(2563), - [sym_false] = ACTIONS(2563), - [sym_null] = ACTIONS(2563), + [1011] = { + [ts_builtin_sym_end] = ACTIONS(2889), + [sym_identifier] = ACTIONS(2887), + [aux_sym_preproc_include_token1] = ACTIONS(2887), + [aux_sym_preproc_def_token1] = ACTIONS(2887), + [aux_sym_preproc_if_token1] = ACTIONS(2887), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2887), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2887), + [sym_preproc_directive] = ACTIONS(2887), + [anon_sym_LPAREN2] = ACTIONS(2889), + [anon_sym_BANG] = ACTIONS(2889), + [anon_sym_TILDE] = ACTIONS(2889), + [anon_sym_DASH] = ACTIONS(2887), + [anon_sym_PLUS] = ACTIONS(2887), + [anon_sym_STAR] = ACTIONS(2889), + [anon_sym_AMP_AMP] = ACTIONS(2889), + [anon_sym_AMP] = ACTIONS(2887), + [anon_sym_SEMI] = ACTIONS(2889), + [anon_sym_typedef] = ACTIONS(2887), + [anon_sym_extern] = ACTIONS(2887), + [anon_sym___attribute__] = ACTIONS(2887), + [anon_sym_COLON_COLON] = ACTIONS(2889), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2889), + [anon_sym___declspec] = ACTIONS(2887), + [anon_sym___based] = ACTIONS(2887), + [anon_sym___cdecl] = ACTIONS(2887), + [anon_sym___clrcall] = ACTIONS(2887), + [anon_sym___stdcall] = ACTIONS(2887), + [anon_sym___fastcall] = ACTIONS(2887), + [anon_sym___thiscall] = ACTIONS(2887), + [anon_sym___vectorcall] = ACTIONS(2887), + [anon_sym_LBRACE] = ACTIONS(2889), + [anon_sym_LBRACK] = ACTIONS(2887), + [anon_sym_static] = ACTIONS(2887), + [anon_sym_register] = ACTIONS(2887), + [anon_sym_inline] = ACTIONS(2887), + [anon_sym_thread_local] = ACTIONS(2887), + [anon_sym_const] = ACTIONS(2887), + [anon_sym_volatile] = ACTIONS(2887), + [anon_sym_restrict] = ACTIONS(2887), + [anon_sym__Atomic] = ACTIONS(2887), + [anon_sym_mutable] = ACTIONS(2887), + [anon_sym_constexpr] = ACTIONS(2887), + [anon_sym_constinit] = ACTIONS(2887), + [anon_sym_consteval] = ACTIONS(2887), + [anon_sym_signed] = ACTIONS(2887), + [anon_sym_unsigned] = ACTIONS(2887), + [anon_sym_long] = ACTIONS(2887), + [anon_sym_short] = ACTIONS(2887), + [sym_primitive_type] = ACTIONS(2887), + [anon_sym_enum] = ACTIONS(2887), + [anon_sym_class] = ACTIONS(2887), + [anon_sym_struct] = ACTIONS(2887), + [anon_sym_union] = ACTIONS(2887), + [anon_sym_if] = ACTIONS(2887), + [anon_sym_switch] = ACTIONS(2887), + [anon_sym_case] = ACTIONS(2887), + [anon_sym_default] = ACTIONS(2887), + [anon_sym_while] = ACTIONS(2887), + [anon_sym_do] = ACTIONS(2887), + [anon_sym_for] = ACTIONS(2887), + [anon_sym_return] = ACTIONS(2887), + [anon_sym_break] = ACTIONS(2887), + [anon_sym_continue] = ACTIONS(2887), + [anon_sym_goto] = ACTIONS(2887), + [anon_sym_not] = ACTIONS(2887), + [anon_sym_compl] = ACTIONS(2887), + [anon_sym_DASH_DASH] = ACTIONS(2889), + [anon_sym_PLUS_PLUS] = ACTIONS(2889), + [anon_sym_sizeof] = ACTIONS(2887), + [sym_number_literal] = ACTIONS(2889), + [anon_sym_L_SQUOTE] = ACTIONS(2889), + [anon_sym_u_SQUOTE] = ACTIONS(2889), + [anon_sym_U_SQUOTE] = ACTIONS(2889), + [anon_sym_u8_SQUOTE] = ACTIONS(2889), + [anon_sym_SQUOTE] = ACTIONS(2889), + [anon_sym_L_DQUOTE] = ACTIONS(2889), + [anon_sym_u_DQUOTE] = ACTIONS(2889), + [anon_sym_U_DQUOTE] = ACTIONS(2889), + [anon_sym_u8_DQUOTE] = ACTIONS(2889), + [anon_sym_DQUOTE] = ACTIONS(2889), + [sym_true] = ACTIONS(2887), + [sym_false] = ACTIONS(2887), + [sym_null] = ACTIONS(2887), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2887), + [anon_sym_decltype] = ACTIONS(2887), + [anon_sym_virtual] = ACTIONS(2887), + [anon_sym_explicit] = ACTIONS(2887), + [anon_sym_typename] = ACTIONS(2887), + [anon_sym_template] = ACTIONS(2887), + [anon_sym_operator] = ACTIONS(2887), + [anon_sym_try] = ACTIONS(2887), + [anon_sym_delete] = ACTIONS(2887), + [anon_sym_throw] = ACTIONS(2887), + [anon_sym_namespace] = ACTIONS(2887), + [anon_sym_using] = ACTIONS(2887), + [anon_sym_static_assert] = ACTIONS(2887), + [anon_sym_concept] = ACTIONS(2887), + [anon_sym_co_return] = ACTIONS(2887), + [anon_sym_co_yield] = ACTIONS(2887), + [anon_sym_co_await] = ACTIONS(2887), + [anon_sym_new] = ACTIONS(2887), + [anon_sym_requires] = ACTIONS(2887), + [sym_this] = ACTIONS(2887), + [sym_nullptr] = ACTIONS(2887), + [sym_raw_string_literal] = ACTIONS(2889), + }, + [1012] = { + [ts_builtin_sym_end] = ACTIONS(2893), + [sym_identifier] = ACTIONS(2891), + [aux_sym_preproc_include_token1] = ACTIONS(2891), + [aux_sym_preproc_def_token1] = ACTIONS(2891), + [aux_sym_preproc_if_token1] = ACTIONS(2891), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2891), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2891), + [sym_preproc_directive] = ACTIONS(2891), + [anon_sym_LPAREN2] = ACTIONS(2893), + [anon_sym_BANG] = ACTIONS(2893), + [anon_sym_TILDE] = ACTIONS(2893), + [anon_sym_DASH] = ACTIONS(2891), + [anon_sym_PLUS] = ACTIONS(2891), + [anon_sym_STAR] = ACTIONS(2893), + [anon_sym_AMP_AMP] = ACTIONS(2893), + [anon_sym_AMP] = ACTIONS(2891), + [anon_sym_SEMI] = ACTIONS(2893), + [anon_sym_typedef] = ACTIONS(2891), + [anon_sym_extern] = ACTIONS(2891), + [anon_sym___attribute__] = ACTIONS(2891), + [anon_sym_COLON_COLON] = ACTIONS(2893), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2893), + [anon_sym___declspec] = ACTIONS(2891), + [anon_sym___based] = ACTIONS(2891), + [anon_sym___cdecl] = ACTIONS(2891), + [anon_sym___clrcall] = ACTIONS(2891), + [anon_sym___stdcall] = ACTIONS(2891), + [anon_sym___fastcall] = ACTIONS(2891), + [anon_sym___thiscall] = ACTIONS(2891), + [anon_sym___vectorcall] = ACTIONS(2891), + [anon_sym_LBRACE] = ACTIONS(2893), + [anon_sym_LBRACK] = ACTIONS(2891), + [anon_sym_static] = ACTIONS(2891), + [anon_sym_register] = ACTIONS(2891), + [anon_sym_inline] = ACTIONS(2891), + [anon_sym_thread_local] = ACTIONS(2891), + [anon_sym_const] = ACTIONS(2891), + [anon_sym_volatile] = ACTIONS(2891), + [anon_sym_restrict] = ACTIONS(2891), + [anon_sym__Atomic] = ACTIONS(2891), + [anon_sym_mutable] = ACTIONS(2891), + [anon_sym_constexpr] = ACTIONS(2891), + [anon_sym_constinit] = ACTIONS(2891), + [anon_sym_consteval] = ACTIONS(2891), + [anon_sym_signed] = ACTIONS(2891), + [anon_sym_unsigned] = ACTIONS(2891), + [anon_sym_long] = ACTIONS(2891), + [anon_sym_short] = ACTIONS(2891), + [sym_primitive_type] = ACTIONS(2891), + [anon_sym_enum] = ACTIONS(2891), + [anon_sym_class] = ACTIONS(2891), + [anon_sym_struct] = ACTIONS(2891), + [anon_sym_union] = ACTIONS(2891), + [anon_sym_if] = ACTIONS(2891), + [anon_sym_switch] = ACTIONS(2891), + [anon_sym_case] = ACTIONS(2891), + [anon_sym_default] = ACTIONS(2891), + [anon_sym_while] = ACTIONS(2891), + [anon_sym_do] = ACTIONS(2891), + [anon_sym_for] = ACTIONS(2891), + [anon_sym_return] = ACTIONS(2891), + [anon_sym_break] = ACTIONS(2891), + [anon_sym_continue] = ACTIONS(2891), + [anon_sym_goto] = ACTIONS(2891), + [anon_sym_not] = ACTIONS(2891), + [anon_sym_compl] = ACTIONS(2891), + [anon_sym_DASH_DASH] = ACTIONS(2893), + [anon_sym_PLUS_PLUS] = ACTIONS(2893), + [anon_sym_sizeof] = ACTIONS(2891), + [sym_number_literal] = ACTIONS(2893), + [anon_sym_L_SQUOTE] = ACTIONS(2893), + [anon_sym_u_SQUOTE] = ACTIONS(2893), + [anon_sym_U_SQUOTE] = ACTIONS(2893), + [anon_sym_u8_SQUOTE] = ACTIONS(2893), + [anon_sym_SQUOTE] = ACTIONS(2893), + [anon_sym_L_DQUOTE] = ACTIONS(2893), + [anon_sym_u_DQUOTE] = ACTIONS(2893), + [anon_sym_U_DQUOTE] = ACTIONS(2893), + [anon_sym_u8_DQUOTE] = ACTIONS(2893), + [anon_sym_DQUOTE] = ACTIONS(2893), + [sym_true] = ACTIONS(2891), + [sym_false] = ACTIONS(2891), + [sym_null] = ACTIONS(2891), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2891), + [anon_sym_decltype] = ACTIONS(2891), + [anon_sym_virtual] = ACTIONS(2891), + [anon_sym_explicit] = ACTIONS(2891), + [anon_sym_typename] = ACTIONS(2891), + [anon_sym_template] = ACTIONS(2891), + [anon_sym_operator] = ACTIONS(2891), + [anon_sym_try] = ACTIONS(2891), + [anon_sym_delete] = ACTIONS(2891), + [anon_sym_throw] = ACTIONS(2891), + [anon_sym_namespace] = ACTIONS(2891), + [anon_sym_using] = ACTIONS(2891), + [anon_sym_static_assert] = ACTIONS(2891), + [anon_sym_concept] = ACTIONS(2891), + [anon_sym_co_return] = ACTIONS(2891), + [anon_sym_co_yield] = ACTIONS(2891), + [anon_sym_co_await] = ACTIONS(2891), + [anon_sym_new] = ACTIONS(2891), + [anon_sym_requires] = ACTIONS(2891), + [sym_this] = ACTIONS(2891), + [sym_nullptr] = ACTIONS(2891), + [sym_raw_string_literal] = ACTIONS(2893), + }, + [1013] = { + [sym_identifier] = ACTIONS(2777), + [aux_sym_preproc_include_token1] = ACTIONS(2777), + [aux_sym_preproc_def_token1] = ACTIONS(2777), + [aux_sym_preproc_if_token1] = ACTIONS(2777), + [aux_sym_preproc_if_token2] = ACTIONS(2777), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2777), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2777), + [sym_preproc_directive] = ACTIONS(2777), + [anon_sym_LPAREN2] = ACTIONS(2779), + [anon_sym_BANG] = ACTIONS(2779), + [anon_sym_TILDE] = ACTIONS(2779), + [anon_sym_DASH] = ACTIONS(2777), + [anon_sym_PLUS] = ACTIONS(2777), + [anon_sym_STAR] = ACTIONS(2779), + [anon_sym_AMP_AMP] = ACTIONS(2779), + [anon_sym_AMP] = ACTIONS(2777), + [anon_sym_SEMI] = ACTIONS(2779), + [anon_sym_typedef] = ACTIONS(2777), + [anon_sym_extern] = ACTIONS(2777), + [anon_sym___attribute__] = ACTIONS(2777), + [anon_sym_COLON_COLON] = ACTIONS(2779), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2779), + [anon_sym___declspec] = ACTIONS(2777), + [anon_sym___based] = ACTIONS(2777), + [anon_sym___cdecl] = ACTIONS(2777), + [anon_sym___clrcall] = ACTIONS(2777), + [anon_sym___stdcall] = ACTIONS(2777), + [anon_sym___fastcall] = ACTIONS(2777), + [anon_sym___thiscall] = ACTIONS(2777), + [anon_sym___vectorcall] = ACTIONS(2777), + [anon_sym_LBRACE] = ACTIONS(2779), + [anon_sym_LBRACK] = ACTIONS(2777), + [anon_sym_static] = ACTIONS(2777), + [anon_sym_register] = ACTIONS(2777), + [anon_sym_inline] = ACTIONS(2777), + [anon_sym_thread_local] = ACTIONS(2777), + [anon_sym_const] = ACTIONS(2777), + [anon_sym_volatile] = ACTIONS(2777), + [anon_sym_restrict] = ACTIONS(2777), + [anon_sym__Atomic] = ACTIONS(2777), + [anon_sym_mutable] = ACTIONS(2777), + [anon_sym_constexpr] = ACTIONS(2777), + [anon_sym_constinit] = ACTIONS(2777), + [anon_sym_consteval] = ACTIONS(2777), + [anon_sym_signed] = ACTIONS(2777), + [anon_sym_unsigned] = ACTIONS(2777), + [anon_sym_long] = ACTIONS(2777), + [anon_sym_short] = ACTIONS(2777), + [sym_primitive_type] = ACTIONS(2777), + [anon_sym_enum] = ACTIONS(2777), + [anon_sym_class] = ACTIONS(2777), + [anon_sym_struct] = ACTIONS(2777), + [anon_sym_union] = ACTIONS(2777), + [anon_sym_if] = ACTIONS(2777), + [anon_sym_switch] = ACTIONS(2777), + [anon_sym_case] = ACTIONS(2777), + [anon_sym_default] = ACTIONS(2777), + [anon_sym_while] = ACTIONS(2777), + [anon_sym_do] = ACTIONS(2777), + [anon_sym_for] = ACTIONS(2777), + [anon_sym_return] = ACTIONS(2777), + [anon_sym_break] = ACTIONS(2777), + [anon_sym_continue] = ACTIONS(2777), + [anon_sym_goto] = ACTIONS(2777), + [anon_sym_not] = ACTIONS(2777), + [anon_sym_compl] = ACTIONS(2777), + [anon_sym_DASH_DASH] = ACTIONS(2779), + [anon_sym_PLUS_PLUS] = ACTIONS(2779), + [anon_sym_sizeof] = ACTIONS(2777), + [sym_number_literal] = ACTIONS(2779), + [anon_sym_L_SQUOTE] = ACTIONS(2779), + [anon_sym_u_SQUOTE] = ACTIONS(2779), + [anon_sym_U_SQUOTE] = ACTIONS(2779), + [anon_sym_u8_SQUOTE] = ACTIONS(2779), + [anon_sym_SQUOTE] = ACTIONS(2779), + [anon_sym_L_DQUOTE] = ACTIONS(2779), + [anon_sym_u_DQUOTE] = ACTIONS(2779), + [anon_sym_U_DQUOTE] = ACTIONS(2779), + [anon_sym_u8_DQUOTE] = ACTIONS(2779), + [anon_sym_DQUOTE] = ACTIONS(2779), + [sym_true] = ACTIONS(2777), + [sym_false] = ACTIONS(2777), + [sym_null] = ACTIONS(2777), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2573), - [anon_sym_co_await] = ACTIONS(2575), - [anon_sym_new] = ACTIONS(2577), - [anon_sym_requires] = ACTIONS(2579), - [sym_this] = ACTIONS(2563), - [sym_nullptr] = ACTIONS(2563), - [sym_raw_string_literal] = ACTIONS(2581), + [sym_auto] = ACTIONS(2777), + [anon_sym_decltype] = ACTIONS(2777), + [anon_sym_virtual] = ACTIONS(2777), + [anon_sym_explicit] = ACTIONS(2777), + [anon_sym_typename] = ACTIONS(2777), + [anon_sym_template] = ACTIONS(2777), + [anon_sym_operator] = ACTIONS(2777), + [anon_sym_try] = ACTIONS(2777), + [anon_sym_delete] = ACTIONS(2777), + [anon_sym_throw] = ACTIONS(2777), + [anon_sym_namespace] = ACTIONS(2777), + [anon_sym_using] = ACTIONS(2777), + [anon_sym_static_assert] = ACTIONS(2777), + [anon_sym_concept] = ACTIONS(2777), + [anon_sym_co_return] = ACTIONS(2777), + [anon_sym_co_yield] = ACTIONS(2777), + [anon_sym_co_await] = ACTIONS(2777), + [anon_sym_new] = ACTIONS(2777), + [anon_sym_requires] = ACTIONS(2777), + [sym_this] = ACTIONS(2777), + [sym_nullptr] = ACTIONS(2777), + [sym_raw_string_literal] = ACTIONS(2779), }, - [1474] = { - [sym__expression] = STATE(3878), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2981), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2981), - [sym_call_expression] = STATE(2981), - [sym_field_expression] = STATE(2981), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2981), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2981), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3039), - [anon_sym_LPAREN2] = ACTIONS(3041), - [anon_sym_BANG] = ACTIONS(3045), - [anon_sym_TILDE] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(3047), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3049), - [anon_sym_PLUS_PLUS] = ACTIONS(3049), - [anon_sym_sizeof] = ACTIONS(3051), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [1014] = { + [ts_builtin_sym_end] = ACTIONS(2779), + [sym_identifier] = ACTIONS(2777), + [aux_sym_preproc_include_token1] = ACTIONS(2777), + [aux_sym_preproc_def_token1] = ACTIONS(2777), + [aux_sym_preproc_if_token1] = ACTIONS(2777), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2777), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2777), + [sym_preproc_directive] = ACTIONS(2777), + [anon_sym_LPAREN2] = ACTIONS(2779), + [anon_sym_BANG] = ACTIONS(2779), + [anon_sym_TILDE] = ACTIONS(2779), + [anon_sym_DASH] = ACTIONS(2777), + [anon_sym_PLUS] = ACTIONS(2777), + [anon_sym_STAR] = ACTIONS(2779), + [anon_sym_AMP_AMP] = ACTIONS(2779), + [anon_sym_AMP] = ACTIONS(2777), + [anon_sym_SEMI] = ACTIONS(2779), + [anon_sym_typedef] = ACTIONS(2777), + [anon_sym_extern] = ACTIONS(2777), + [anon_sym___attribute__] = ACTIONS(2777), + [anon_sym_COLON_COLON] = ACTIONS(2779), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2779), + [anon_sym___declspec] = ACTIONS(2777), + [anon_sym___based] = ACTIONS(2777), + [anon_sym___cdecl] = ACTIONS(2777), + [anon_sym___clrcall] = ACTIONS(2777), + [anon_sym___stdcall] = ACTIONS(2777), + [anon_sym___fastcall] = ACTIONS(2777), + [anon_sym___thiscall] = ACTIONS(2777), + [anon_sym___vectorcall] = ACTIONS(2777), + [anon_sym_LBRACE] = ACTIONS(2779), + [anon_sym_LBRACK] = ACTIONS(2777), + [anon_sym_static] = ACTIONS(2777), + [anon_sym_register] = ACTIONS(2777), + [anon_sym_inline] = ACTIONS(2777), + [anon_sym_thread_local] = ACTIONS(2777), + [anon_sym_const] = ACTIONS(2777), + [anon_sym_volatile] = ACTIONS(2777), + [anon_sym_restrict] = ACTIONS(2777), + [anon_sym__Atomic] = ACTIONS(2777), + [anon_sym_mutable] = ACTIONS(2777), + [anon_sym_constexpr] = ACTIONS(2777), + [anon_sym_constinit] = ACTIONS(2777), + [anon_sym_consteval] = ACTIONS(2777), + [anon_sym_signed] = ACTIONS(2777), + [anon_sym_unsigned] = ACTIONS(2777), + [anon_sym_long] = ACTIONS(2777), + [anon_sym_short] = ACTIONS(2777), + [sym_primitive_type] = ACTIONS(2777), + [anon_sym_enum] = ACTIONS(2777), + [anon_sym_class] = ACTIONS(2777), + [anon_sym_struct] = ACTIONS(2777), + [anon_sym_union] = ACTIONS(2777), + [anon_sym_if] = ACTIONS(2777), + [anon_sym_switch] = ACTIONS(2777), + [anon_sym_case] = ACTIONS(2777), + [anon_sym_default] = ACTIONS(2777), + [anon_sym_while] = ACTIONS(2777), + [anon_sym_do] = ACTIONS(2777), + [anon_sym_for] = ACTIONS(2777), + [anon_sym_return] = ACTIONS(2777), + [anon_sym_break] = ACTIONS(2777), + [anon_sym_continue] = ACTIONS(2777), + [anon_sym_goto] = ACTIONS(2777), + [anon_sym_not] = ACTIONS(2777), + [anon_sym_compl] = ACTIONS(2777), + [anon_sym_DASH_DASH] = ACTIONS(2779), + [anon_sym_PLUS_PLUS] = ACTIONS(2779), + [anon_sym_sizeof] = ACTIONS(2777), + [sym_number_literal] = ACTIONS(2779), + [anon_sym_L_SQUOTE] = ACTIONS(2779), + [anon_sym_u_SQUOTE] = ACTIONS(2779), + [anon_sym_U_SQUOTE] = ACTIONS(2779), + [anon_sym_u8_SQUOTE] = ACTIONS(2779), + [anon_sym_SQUOTE] = ACTIONS(2779), + [anon_sym_L_DQUOTE] = ACTIONS(2779), + [anon_sym_u_DQUOTE] = ACTIONS(2779), + [anon_sym_U_DQUOTE] = ACTIONS(2779), + [anon_sym_u8_DQUOTE] = ACTIONS(2779), + [anon_sym_DQUOTE] = ACTIONS(2779), + [sym_true] = ACTIONS(2777), + [sym_false] = ACTIONS(2777), + [sym_null] = ACTIONS(2777), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3053), - [anon_sym_co_await] = ACTIONS(3055), - [anon_sym_new] = ACTIONS(3057), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2777), + [anon_sym_decltype] = ACTIONS(2777), + [anon_sym_virtual] = ACTIONS(2777), + [anon_sym_explicit] = ACTIONS(2777), + [anon_sym_typename] = ACTIONS(2777), + [anon_sym_template] = ACTIONS(2777), + [anon_sym_operator] = ACTIONS(2777), + [anon_sym_try] = ACTIONS(2777), + [anon_sym_delete] = ACTIONS(2777), + [anon_sym_throw] = ACTIONS(2777), + [anon_sym_namespace] = ACTIONS(2777), + [anon_sym_using] = ACTIONS(2777), + [anon_sym_static_assert] = ACTIONS(2777), + [anon_sym_concept] = ACTIONS(2777), + [anon_sym_co_return] = ACTIONS(2777), + [anon_sym_co_yield] = ACTIONS(2777), + [anon_sym_co_await] = ACTIONS(2777), + [anon_sym_new] = ACTIONS(2777), + [anon_sym_requires] = ACTIONS(2777), + [sym_this] = ACTIONS(2777), + [sym_nullptr] = ACTIONS(2777), + [sym_raw_string_literal] = ACTIONS(2779), }, - [1475] = { - [sym__expression] = STATE(3863), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [1015] = { + [ts_builtin_sym_end] = ACTIONS(2897), + [sym_identifier] = ACTIONS(2895), + [aux_sym_preproc_include_token1] = ACTIONS(2895), + [aux_sym_preproc_def_token1] = ACTIONS(2895), + [aux_sym_preproc_if_token1] = ACTIONS(2895), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2895), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2895), + [sym_preproc_directive] = ACTIONS(2895), + [anon_sym_LPAREN2] = ACTIONS(2897), + [anon_sym_BANG] = ACTIONS(2897), + [anon_sym_TILDE] = ACTIONS(2897), + [anon_sym_DASH] = ACTIONS(2895), + [anon_sym_PLUS] = ACTIONS(2895), + [anon_sym_STAR] = ACTIONS(2897), + [anon_sym_AMP_AMP] = ACTIONS(2897), + [anon_sym_AMP] = ACTIONS(2895), + [anon_sym_SEMI] = ACTIONS(2897), + [anon_sym_typedef] = ACTIONS(2895), + [anon_sym_extern] = ACTIONS(2895), + [anon_sym___attribute__] = ACTIONS(2895), + [anon_sym_COLON_COLON] = ACTIONS(2897), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2897), + [anon_sym___declspec] = ACTIONS(2895), + [anon_sym___based] = ACTIONS(2895), + [anon_sym___cdecl] = ACTIONS(2895), + [anon_sym___clrcall] = ACTIONS(2895), + [anon_sym___stdcall] = ACTIONS(2895), + [anon_sym___fastcall] = ACTIONS(2895), + [anon_sym___thiscall] = ACTIONS(2895), + [anon_sym___vectorcall] = ACTIONS(2895), + [anon_sym_LBRACE] = ACTIONS(2897), + [anon_sym_LBRACK] = ACTIONS(2895), + [anon_sym_static] = ACTIONS(2895), + [anon_sym_register] = ACTIONS(2895), + [anon_sym_inline] = ACTIONS(2895), + [anon_sym_thread_local] = ACTIONS(2895), + [anon_sym_const] = ACTIONS(2895), + [anon_sym_volatile] = ACTIONS(2895), + [anon_sym_restrict] = ACTIONS(2895), + [anon_sym__Atomic] = ACTIONS(2895), + [anon_sym_mutable] = ACTIONS(2895), + [anon_sym_constexpr] = ACTIONS(2895), + [anon_sym_constinit] = ACTIONS(2895), + [anon_sym_consteval] = ACTIONS(2895), + [anon_sym_signed] = ACTIONS(2895), + [anon_sym_unsigned] = ACTIONS(2895), + [anon_sym_long] = ACTIONS(2895), + [anon_sym_short] = ACTIONS(2895), + [sym_primitive_type] = ACTIONS(2895), + [anon_sym_enum] = ACTIONS(2895), + [anon_sym_class] = ACTIONS(2895), + [anon_sym_struct] = ACTIONS(2895), + [anon_sym_union] = ACTIONS(2895), + [anon_sym_if] = ACTIONS(2895), + [anon_sym_switch] = ACTIONS(2895), + [anon_sym_case] = ACTIONS(2895), + [anon_sym_default] = ACTIONS(2895), + [anon_sym_while] = ACTIONS(2895), + [anon_sym_do] = ACTIONS(2895), + [anon_sym_for] = ACTIONS(2895), + [anon_sym_return] = ACTIONS(2895), + [anon_sym_break] = ACTIONS(2895), + [anon_sym_continue] = ACTIONS(2895), + [anon_sym_goto] = ACTIONS(2895), + [anon_sym_not] = ACTIONS(2895), + [anon_sym_compl] = ACTIONS(2895), + [anon_sym_DASH_DASH] = ACTIONS(2897), + [anon_sym_PLUS_PLUS] = ACTIONS(2897), + [anon_sym_sizeof] = ACTIONS(2895), + [sym_number_literal] = ACTIONS(2897), + [anon_sym_L_SQUOTE] = ACTIONS(2897), + [anon_sym_u_SQUOTE] = ACTIONS(2897), + [anon_sym_U_SQUOTE] = ACTIONS(2897), + [anon_sym_u8_SQUOTE] = ACTIONS(2897), + [anon_sym_SQUOTE] = ACTIONS(2897), + [anon_sym_L_DQUOTE] = ACTIONS(2897), + [anon_sym_u_DQUOTE] = ACTIONS(2897), + [anon_sym_U_DQUOTE] = ACTIONS(2897), + [anon_sym_u8_DQUOTE] = ACTIONS(2897), + [anon_sym_DQUOTE] = ACTIONS(2897), + [sym_true] = ACTIONS(2895), + [sym_false] = ACTIONS(2895), + [sym_null] = ACTIONS(2895), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2895), + [anon_sym_decltype] = ACTIONS(2895), + [anon_sym_virtual] = ACTIONS(2895), + [anon_sym_explicit] = ACTIONS(2895), + [anon_sym_typename] = ACTIONS(2895), + [anon_sym_template] = ACTIONS(2895), + [anon_sym_operator] = ACTIONS(2895), + [anon_sym_try] = ACTIONS(2895), + [anon_sym_delete] = ACTIONS(2895), + [anon_sym_throw] = ACTIONS(2895), + [anon_sym_namespace] = ACTIONS(2895), + [anon_sym_using] = ACTIONS(2895), + [anon_sym_static_assert] = ACTIONS(2895), + [anon_sym_concept] = ACTIONS(2895), + [anon_sym_co_return] = ACTIONS(2895), + [anon_sym_co_yield] = ACTIONS(2895), + [anon_sym_co_await] = ACTIONS(2895), + [anon_sym_new] = ACTIONS(2895), + [anon_sym_requires] = ACTIONS(2895), + [sym_this] = ACTIONS(2895), + [sym_nullptr] = ACTIONS(2895), + [sym_raw_string_literal] = ACTIONS(2897), + }, + [1016] = { + [sym_identifier] = ACTIONS(2789), + [aux_sym_preproc_include_token1] = ACTIONS(2789), + [aux_sym_preproc_def_token1] = ACTIONS(2789), + [aux_sym_preproc_if_token1] = ACTIONS(2789), + [aux_sym_preproc_if_token2] = ACTIONS(2789), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2789), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2789), + [sym_preproc_directive] = ACTIONS(2789), + [anon_sym_LPAREN2] = ACTIONS(2791), + [anon_sym_BANG] = ACTIONS(2791), + [anon_sym_TILDE] = ACTIONS(2791), + [anon_sym_DASH] = ACTIONS(2789), + [anon_sym_PLUS] = ACTIONS(2789), + [anon_sym_STAR] = ACTIONS(2791), + [anon_sym_AMP_AMP] = ACTIONS(2791), + [anon_sym_AMP] = ACTIONS(2789), + [anon_sym_SEMI] = ACTIONS(2791), + [anon_sym_typedef] = ACTIONS(2789), + [anon_sym_extern] = ACTIONS(2789), + [anon_sym___attribute__] = ACTIONS(2789), + [anon_sym_COLON_COLON] = ACTIONS(2791), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2791), + [anon_sym___declspec] = ACTIONS(2789), + [anon_sym___based] = ACTIONS(2789), + [anon_sym___cdecl] = ACTIONS(2789), + [anon_sym___clrcall] = ACTIONS(2789), + [anon_sym___stdcall] = ACTIONS(2789), + [anon_sym___fastcall] = ACTIONS(2789), + [anon_sym___thiscall] = ACTIONS(2789), + [anon_sym___vectorcall] = ACTIONS(2789), + [anon_sym_LBRACE] = ACTIONS(2791), + [anon_sym_LBRACK] = ACTIONS(2789), + [anon_sym_static] = ACTIONS(2789), + [anon_sym_register] = ACTIONS(2789), + [anon_sym_inline] = ACTIONS(2789), + [anon_sym_thread_local] = ACTIONS(2789), + [anon_sym_const] = ACTIONS(2789), + [anon_sym_volatile] = ACTIONS(2789), + [anon_sym_restrict] = ACTIONS(2789), + [anon_sym__Atomic] = ACTIONS(2789), + [anon_sym_mutable] = ACTIONS(2789), + [anon_sym_constexpr] = ACTIONS(2789), + [anon_sym_constinit] = ACTIONS(2789), + [anon_sym_consteval] = ACTIONS(2789), + [anon_sym_signed] = ACTIONS(2789), + [anon_sym_unsigned] = ACTIONS(2789), + [anon_sym_long] = ACTIONS(2789), + [anon_sym_short] = ACTIONS(2789), + [sym_primitive_type] = ACTIONS(2789), + [anon_sym_enum] = ACTIONS(2789), + [anon_sym_class] = ACTIONS(2789), + [anon_sym_struct] = ACTIONS(2789), + [anon_sym_union] = ACTIONS(2789), + [anon_sym_if] = ACTIONS(2789), + [anon_sym_switch] = ACTIONS(2789), + [anon_sym_case] = ACTIONS(2789), + [anon_sym_default] = ACTIONS(2789), + [anon_sym_while] = ACTIONS(2789), + [anon_sym_do] = ACTIONS(2789), + [anon_sym_for] = ACTIONS(2789), + [anon_sym_return] = ACTIONS(2789), + [anon_sym_break] = ACTIONS(2789), + [anon_sym_continue] = ACTIONS(2789), + [anon_sym_goto] = ACTIONS(2789), + [anon_sym_not] = ACTIONS(2789), + [anon_sym_compl] = ACTIONS(2789), + [anon_sym_DASH_DASH] = ACTIONS(2791), + [anon_sym_PLUS_PLUS] = ACTIONS(2791), + [anon_sym_sizeof] = ACTIONS(2789), + [sym_number_literal] = ACTIONS(2791), + [anon_sym_L_SQUOTE] = ACTIONS(2791), + [anon_sym_u_SQUOTE] = ACTIONS(2791), + [anon_sym_U_SQUOTE] = ACTIONS(2791), + [anon_sym_u8_SQUOTE] = ACTIONS(2791), + [anon_sym_SQUOTE] = ACTIONS(2791), + [anon_sym_L_DQUOTE] = ACTIONS(2791), + [anon_sym_u_DQUOTE] = ACTIONS(2791), + [anon_sym_U_DQUOTE] = ACTIONS(2791), + [anon_sym_u8_DQUOTE] = ACTIONS(2791), + [anon_sym_DQUOTE] = ACTIONS(2791), + [sym_true] = ACTIONS(2789), + [sym_false] = ACTIONS(2789), + [sym_null] = ACTIONS(2789), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2789), + [anon_sym_decltype] = ACTIONS(2789), + [anon_sym_virtual] = ACTIONS(2789), + [anon_sym_explicit] = ACTIONS(2789), + [anon_sym_typename] = ACTIONS(2789), + [anon_sym_template] = ACTIONS(2789), + [anon_sym_operator] = ACTIONS(2789), + [anon_sym_try] = ACTIONS(2789), + [anon_sym_delete] = ACTIONS(2789), + [anon_sym_throw] = ACTIONS(2789), + [anon_sym_namespace] = ACTIONS(2789), + [anon_sym_using] = ACTIONS(2789), + [anon_sym_static_assert] = ACTIONS(2789), + [anon_sym_concept] = ACTIONS(2789), + [anon_sym_co_return] = ACTIONS(2789), + [anon_sym_co_yield] = ACTIONS(2789), + [anon_sym_co_await] = ACTIONS(2789), + [anon_sym_new] = ACTIONS(2789), + [anon_sym_requires] = ACTIONS(2789), + [sym_this] = ACTIONS(2789), + [sym_nullptr] = ACTIONS(2789), + [sym_raw_string_literal] = ACTIONS(2791), }, - [1476] = { - [sym__expression] = STATE(3876), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [1017] = { + [sym_identifier] = ACTIONS(2797), + [aux_sym_preproc_include_token1] = ACTIONS(2797), + [aux_sym_preproc_def_token1] = ACTIONS(2797), + [aux_sym_preproc_if_token1] = ACTIONS(2797), + [aux_sym_preproc_if_token2] = ACTIONS(2797), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2797), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2797), + [sym_preproc_directive] = ACTIONS(2797), + [anon_sym_LPAREN2] = ACTIONS(2799), + [anon_sym_BANG] = ACTIONS(2799), + [anon_sym_TILDE] = ACTIONS(2799), + [anon_sym_DASH] = ACTIONS(2797), + [anon_sym_PLUS] = ACTIONS(2797), + [anon_sym_STAR] = ACTIONS(2799), + [anon_sym_AMP_AMP] = ACTIONS(2799), + [anon_sym_AMP] = ACTIONS(2797), + [anon_sym_SEMI] = ACTIONS(2799), + [anon_sym_typedef] = ACTIONS(2797), + [anon_sym_extern] = ACTIONS(2797), + [anon_sym___attribute__] = ACTIONS(2797), + [anon_sym_COLON_COLON] = ACTIONS(2799), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2799), + [anon_sym___declspec] = ACTIONS(2797), + [anon_sym___based] = ACTIONS(2797), + [anon_sym___cdecl] = ACTIONS(2797), + [anon_sym___clrcall] = ACTIONS(2797), + [anon_sym___stdcall] = ACTIONS(2797), + [anon_sym___fastcall] = ACTIONS(2797), + [anon_sym___thiscall] = ACTIONS(2797), + [anon_sym___vectorcall] = ACTIONS(2797), + [anon_sym_LBRACE] = ACTIONS(2799), + [anon_sym_LBRACK] = ACTIONS(2797), + [anon_sym_static] = ACTIONS(2797), + [anon_sym_register] = ACTIONS(2797), + [anon_sym_inline] = ACTIONS(2797), + [anon_sym_thread_local] = ACTIONS(2797), + [anon_sym_const] = ACTIONS(2797), + [anon_sym_volatile] = ACTIONS(2797), + [anon_sym_restrict] = ACTIONS(2797), + [anon_sym__Atomic] = ACTIONS(2797), + [anon_sym_mutable] = ACTIONS(2797), + [anon_sym_constexpr] = ACTIONS(2797), + [anon_sym_constinit] = ACTIONS(2797), + [anon_sym_consteval] = ACTIONS(2797), + [anon_sym_signed] = ACTIONS(2797), + [anon_sym_unsigned] = ACTIONS(2797), + [anon_sym_long] = ACTIONS(2797), + [anon_sym_short] = ACTIONS(2797), + [sym_primitive_type] = ACTIONS(2797), + [anon_sym_enum] = ACTIONS(2797), + [anon_sym_class] = ACTIONS(2797), + [anon_sym_struct] = ACTIONS(2797), + [anon_sym_union] = ACTIONS(2797), + [anon_sym_if] = ACTIONS(2797), + [anon_sym_switch] = ACTIONS(2797), + [anon_sym_case] = ACTIONS(2797), + [anon_sym_default] = ACTIONS(2797), + [anon_sym_while] = ACTIONS(2797), + [anon_sym_do] = ACTIONS(2797), + [anon_sym_for] = ACTIONS(2797), + [anon_sym_return] = ACTIONS(2797), + [anon_sym_break] = ACTIONS(2797), + [anon_sym_continue] = ACTIONS(2797), + [anon_sym_goto] = ACTIONS(2797), + [anon_sym_not] = ACTIONS(2797), + [anon_sym_compl] = ACTIONS(2797), + [anon_sym_DASH_DASH] = ACTIONS(2799), + [anon_sym_PLUS_PLUS] = ACTIONS(2799), + [anon_sym_sizeof] = ACTIONS(2797), + [sym_number_literal] = ACTIONS(2799), + [anon_sym_L_SQUOTE] = ACTIONS(2799), + [anon_sym_u_SQUOTE] = ACTIONS(2799), + [anon_sym_U_SQUOTE] = ACTIONS(2799), + [anon_sym_u8_SQUOTE] = ACTIONS(2799), + [anon_sym_SQUOTE] = ACTIONS(2799), + [anon_sym_L_DQUOTE] = ACTIONS(2799), + [anon_sym_u_DQUOTE] = ACTIONS(2799), + [anon_sym_U_DQUOTE] = ACTIONS(2799), + [anon_sym_u8_DQUOTE] = ACTIONS(2799), + [anon_sym_DQUOTE] = ACTIONS(2799), + [sym_true] = ACTIONS(2797), + [sym_false] = ACTIONS(2797), + [sym_null] = ACTIONS(2797), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2797), + [anon_sym_decltype] = ACTIONS(2797), + [anon_sym_virtual] = ACTIONS(2797), + [anon_sym_explicit] = ACTIONS(2797), + [anon_sym_typename] = ACTIONS(2797), + [anon_sym_template] = ACTIONS(2797), + [anon_sym_operator] = ACTIONS(2797), + [anon_sym_try] = ACTIONS(2797), + [anon_sym_delete] = ACTIONS(2797), + [anon_sym_throw] = ACTIONS(2797), + [anon_sym_namespace] = ACTIONS(2797), + [anon_sym_using] = ACTIONS(2797), + [anon_sym_static_assert] = ACTIONS(2797), + [anon_sym_concept] = ACTIONS(2797), + [anon_sym_co_return] = ACTIONS(2797), + [anon_sym_co_yield] = ACTIONS(2797), + [anon_sym_co_await] = ACTIONS(2797), + [anon_sym_new] = ACTIONS(2797), + [anon_sym_requires] = ACTIONS(2797), + [sym_this] = ACTIONS(2797), + [sym_nullptr] = ACTIONS(2797), + [sym_raw_string_literal] = ACTIONS(2799), }, - [1477] = { - [sym__expression] = STATE(2654), - [sym_conditional_expression] = STATE(2765), - [sym_assignment_expression] = STATE(2765), - [sym_pointer_expression] = STATE(2827), - [sym_unary_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_update_expression] = STATE(2765), - [sym_cast_expression] = STATE(2765), - [sym_sizeof_expression] = STATE(2765), - [sym_subscript_expression] = STATE(2827), - [sym_call_expression] = STATE(2827), - [sym_field_expression] = STATE(2827), - [sym_compound_literal_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2827), - [sym_char_literal] = STATE(2674), - [sym_concatenated_string] = STATE(2674), - [sym_string_literal] = STATE(2093), - [sym__class_name] = STATE(6297), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2765), - [sym_co_await_expression] = STATE(2765), - [sym_new_expression] = STATE(2765), - [sym_delete_expression] = STATE(2765), - [sym_requires_clause] = STATE(2765), - [sym_requires_expression] = STATE(2765), - [sym_lambda_expression] = STATE(2765), - [sym_lambda_capture_specifier] = STATE(4512), - [sym_fold_expression] = STATE(2765), - [sym_parameter_pack_expansion] = STATE(2765), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4648), - [sym_qualified_identifier] = STATE(2827), - [sym_qualified_type_identifier] = STATE(6297), - [sym_user_defined_literal] = STATE(2765), - [sym_identifier] = ACTIONS(2363), - [anon_sym_LPAREN2] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1417), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_COLON_COLON] = ACTIONS(1423), - [anon_sym_LBRACK] = ACTIONS(3678), - [sym_primitive_type] = ACTIONS(2369), - [anon_sym_DASH_DASH] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [anon_sym_sizeof] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(1439), - [anon_sym_L_SQUOTE] = ACTIONS(1441), - [anon_sym_u_SQUOTE] = ACTIONS(1441), - [anon_sym_U_SQUOTE] = ACTIONS(1441), - [anon_sym_u8_SQUOTE] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1441), - [anon_sym_L_DQUOTE] = ACTIONS(1443), - [anon_sym_u_DQUOTE] = ACTIONS(1443), - [anon_sym_U_DQUOTE] = ACTIONS(1443), - [anon_sym_u8_DQUOTE] = ACTIONS(1443), - [anon_sym_DQUOTE] = ACTIONS(1443), - [sym_true] = ACTIONS(1445), - [sym_false] = ACTIONS(1445), - [sym_null] = ACTIONS(1445), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_co_await] = ACTIONS(1451), - [anon_sym_new] = ACTIONS(1453), - [anon_sym_requires] = ACTIONS(1455), - [sym_this] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(1445), - [sym_raw_string_literal] = ACTIONS(1457), + [1018] = { + [sym_identifier] = ACTIONS(2875), + [aux_sym_preproc_include_token1] = ACTIONS(2875), + [aux_sym_preproc_def_token1] = ACTIONS(2875), + [aux_sym_preproc_if_token1] = ACTIONS(2875), + [aux_sym_preproc_if_token2] = ACTIONS(2875), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2875), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2875), + [sym_preproc_directive] = ACTIONS(2875), + [anon_sym_LPAREN2] = ACTIONS(2877), + [anon_sym_BANG] = ACTIONS(2877), + [anon_sym_TILDE] = ACTIONS(2877), + [anon_sym_DASH] = ACTIONS(2875), + [anon_sym_PLUS] = ACTIONS(2875), + [anon_sym_STAR] = ACTIONS(2877), + [anon_sym_AMP_AMP] = ACTIONS(2877), + [anon_sym_AMP] = ACTIONS(2875), + [anon_sym_SEMI] = ACTIONS(2877), + [anon_sym_typedef] = ACTIONS(2875), + [anon_sym_extern] = ACTIONS(2875), + [anon_sym___attribute__] = ACTIONS(2875), + [anon_sym_COLON_COLON] = ACTIONS(2877), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2877), + [anon_sym___declspec] = ACTIONS(2875), + [anon_sym___based] = ACTIONS(2875), + [anon_sym___cdecl] = ACTIONS(2875), + [anon_sym___clrcall] = ACTIONS(2875), + [anon_sym___stdcall] = ACTIONS(2875), + [anon_sym___fastcall] = ACTIONS(2875), + [anon_sym___thiscall] = ACTIONS(2875), + [anon_sym___vectorcall] = ACTIONS(2875), + [anon_sym_LBRACE] = ACTIONS(2877), + [anon_sym_LBRACK] = ACTIONS(2875), + [anon_sym_static] = ACTIONS(2875), + [anon_sym_register] = ACTIONS(2875), + [anon_sym_inline] = ACTIONS(2875), + [anon_sym_thread_local] = ACTIONS(2875), + [anon_sym_const] = ACTIONS(2875), + [anon_sym_volatile] = ACTIONS(2875), + [anon_sym_restrict] = ACTIONS(2875), + [anon_sym__Atomic] = ACTIONS(2875), + [anon_sym_mutable] = ACTIONS(2875), + [anon_sym_constexpr] = ACTIONS(2875), + [anon_sym_constinit] = ACTIONS(2875), + [anon_sym_consteval] = ACTIONS(2875), + [anon_sym_signed] = ACTIONS(2875), + [anon_sym_unsigned] = ACTIONS(2875), + [anon_sym_long] = ACTIONS(2875), + [anon_sym_short] = ACTIONS(2875), + [sym_primitive_type] = ACTIONS(2875), + [anon_sym_enum] = ACTIONS(2875), + [anon_sym_class] = ACTIONS(2875), + [anon_sym_struct] = ACTIONS(2875), + [anon_sym_union] = ACTIONS(2875), + [anon_sym_if] = ACTIONS(2875), + [anon_sym_switch] = ACTIONS(2875), + [anon_sym_case] = ACTIONS(2875), + [anon_sym_default] = ACTIONS(2875), + [anon_sym_while] = ACTIONS(2875), + [anon_sym_do] = ACTIONS(2875), + [anon_sym_for] = ACTIONS(2875), + [anon_sym_return] = ACTIONS(2875), + [anon_sym_break] = ACTIONS(2875), + [anon_sym_continue] = ACTIONS(2875), + [anon_sym_goto] = ACTIONS(2875), + [anon_sym_not] = ACTIONS(2875), + [anon_sym_compl] = ACTIONS(2875), + [anon_sym_DASH_DASH] = ACTIONS(2877), + [anon_sym_PLUS_PLUS] = ACTIONS(2877), + [anon_sym_sizeof] = ACTIONS(2875), + [sym_number_literal] = ACTIONS(2877), + [anon_sym_L_SQUOTE] = ACTIONS(2877), + [anon_sym_u_SQUOTE] = ACTIONS(2877), + [anon_sym_U_SQUOTE] = ACTIONS(2877), + [anon_sym_u8_SQUOTE] = ACTIONS(2877), + [anon_sym_SQUOTE] = ACTIONS(2877), + [anon_sym_L_DQUOTE] = ACTIONS(2877), + [anon_sym_u_DQUOTE] = ACTIONS(2877), + [anon_sym_U_DQUOTE] = ACTIONS(2877), + [anon_sym_u8_DQUOTE] = ACTIONS(2877), + [anon_sym_DQUOTE] = ACTIONS(2877), + [sym_true] = ACTIONS(2875), + [sym_false] = ACTIONS(2875), + [sym_null] = ACTIONS(2875), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2875), + [anon_sym_decltype] = ACTIONS(2875), + [anon_sym_virtual] = ACTIONS(2875), + [anon_sym_explicit] = ACTIONS(2875), + [anon_sym_typename] = ACTIONS(2875), + [anon_sym_template] = ACTIONS(2875), + [anon_sym_operator] = ACTIONS(2875), + [anon_sym_try] = ACTIONS(2875), + [anon_sym_delete] = ACTIONS(2875), + [anon_sym_throw] = ACTIONS(2875), + [anon_sym_namespace] = ACTIONS(2875), + [anon_sym_using] = ACTIONS(2875), + [anon_sym_static_assert] = ACTIONS(2875), + [anon_sym_concept] = ACTIONS(2875), + [anon_sym_co_return] = ACTIONS(2875), + [anon_sym_co_yield] = ACTIONS(2875), + [anon_sym_co_await] = ACTIONS(2875), + [anon_sym_new] = ACTIONS(2875), + [anon_sym_requires] = ACTIONS(2875), + [sym_this] = ACTIONS(2875), + [sym_nullptr] = ACTIONS(2875), + [sym_raw_string_literal] = ACTIONS(2877), }, - [1478] = { - [sym__expression] = STATE(3789), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(3196), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(3196), - [sym_call_expression] = STATE(3196), - [sym_field_expression] = STATE(3196), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(3196), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(3196), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN2] = ACTIONS(3061), - [anon_sym_BANG] = ACTIONS(3065), - [anon_sym_TILDE] = ACTIONS(3065), - [anon_sym_DASH] = ACTIONS(3063), - [anon_sym_PLUS] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(3069), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3071), - [anon_sym_PLUS_PLUS] = ACTIONS(3071), - [anon_sym_sizeof] = ACTIONS(3073), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3075), - [anon_sym_co_await] = ACTIONS(3077), - [anon_sym_new] = ACTIONS(3079), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [1019] = { + [sym_identifier] = ACTIONS(2869), + [aux_sym_preproc_include_token1] = ACTIONS(2869), + [aux_sym_preproc_def_token1] = ACTIONS(2869), + [aux_sym_preproc_if_token1] = ACTIONS(2869), + [aux_sym_preproc_if_token2] = ACTIONS(2869), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2869), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2869), + [sym_preproc_directive] = ACTIONS(2869), + [anon_sym_LPAREN2] = ACTIONS(2871), + [anon_sym_BANG] = ACTIONS(2871), + [anon_sym_TILDE] = ACTIONS(2871), + [anon_sym_DASH] = ACTIONS(2869), + [anon_sym_PLUS] = ACTIONS(2869), + [anon_sym_STAR] = ACTIONS(2871), + [anon_sym_AMP_AMP] = ACTIONS(2871), + [anon_sym_AMP] = ACTIONS(2869), + [anon_sym_SEMI] = ACTIONS(2871), + [anon_sym_typedef] = ACTIONS(2869), + [anon_sym_extern] = ACTIONS(2869), + [anon_sym___attribute__] = ACTIONS(2869), + [anon_sym_COLON_COLON] = ACTIONS(2871), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2871), + [anon_sym___declspec] = ACTIONS(2869), + [anon_sym___based] = ACTIONS(2869), + [anon_sym___cdecl] = ACTIONS(2869), + [anon_sym___clrcall] = ACTIONS(2869), + [anon_sym___stdcall] = ACTIONS(2869), + [anon_sym___fastcall] = ACTIONS(2869), + [anon_sym___thiscall] = ACTIONS(2869), + [anon_sym___vectorcall] = ACTIONS(2869), + [anon_sym_LBRACE] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2869), + [anon_sym_static] = ACTIONS(2869), + [anon_sym_register] = ACTIONS(2869), + [anon_sym_inline] = ACTIONS(2869), + [anon_sym_thread_local] = ACTIONS(2869), + [anon_sym_const] = ACTIONS(2869), + [anon_sym_volatile] = ACTIONS(2869), + [anon_sym_restrict] = ACTIONS(2869), + [anon_sym__Atomic] = ACTIONS(2869), + [anon_sym_mutable] = ACTIONS(2869), + [anon_sym_constexpr] = ACTIONS(2869), + [anon_sym_constinit] = ACTIONS(2869), + [anon_sym_consteval] = ACTIONS(2869), + [anon_sym_signed] = ACTIONS(2869), + [anon_sym_unsigned] = ACTIONS(2869), + [anon_sym_long] = ACTIONS(2869), + [anon_sym_short] = ACTIONS(2869), + [sym_primitive_type] = ACTIONS(2869), + [anon_sym_enum] = ACTIONS(2869), + [anon_sym_class] = ACTIONS(2869), + [anon_sym_struct] = ACTIONS(2869), + [anon_sym_union] = ACTIONS(2869), + [anon_sym_if] = ACTIONS(2869), + [anon_sym_switch] = ACTIONS(2869), + [anon_sym_case] = ACTIONS(2869), + [anon_sym_default] = ACTIONS(2869), + [anon_sym_while] = ACTIONS(2869), + [anon_sym_do] = ACTIONS(2869), + [anon_sym_for] = ACTIONS(2869), + [anon_sym_return] = ACTIONS(2869), + [anon_sym_break] = ACTIONS(2869), + [anon_sym_continue] = ACTIONS(2869), + [anon_sym_goto] = ACTIONS(2869), + [anon_sym_not] = ACTIONS(2869), + [anon_sym_compl] = ACTIONS(2869), + [anon_sym_DASH_DASH] = ACTIONS(2871), + [anon_sym_PLUS_PLUS] = ACTIONS(2871), + [anon_sym_sizeof] = ACTIONS(2869), + [sym_number_literal] = ACTIONS(2871), + [anon_sym_L_SQUOTE] = ACTIONS(2871), + [anon_sym_u_SQUOTE] = ACTIONS(2871), + [anon_sym_U_SQUOTE] = ACTIONS(2871), + [anon_sym_u8_SQUOTE] = ACTIONS(2871), + [anon_sym_SQUOTE] = ACTIONS(2871), + [anon_sym_L_DQUOTE] = ACTIONS(2871), + [anon_sym_u_DQUOTE] = ACTIONS(2871), + [anon_sym_U_DQUOTE] = ACTIONS(2871), + [anon_sym_u8_DQUOTE] = ACTIONS(2871), + [anon_sym_DQUOTE] = ACTIONS(2871), + [sym_true] = ACTIONS(2869), + [sym_false] = ACTIONS(2869), + [sym_null] = ACTIONS(2869), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2869), + [anon_sym_decltype] = ACTIONS(2869), + [anon_sym_virtual] = ACTIONS(2869), + [anon_sym_explicit] = ACTIONS(2869), + [anon_sym_typename] = ACTIONS(2869), + [anon_sym_template] = ACTIONS(2869), + [anon_sym_operator] = ACTIONS(2869), + [anon_sym_try] = ACTIONS(2869), + [anon_sym_delete] = ACTIONS(2869), + [anon_sym_throw] = ACTIONS(2869), + [anon_sym_namespace] = ACTIONS(2869), + [anon_sym_using] = ACTIONS(2869), + [anon_sym_static_assert] = ACTIONS(2869), + [anon_sym_concept] = ACTIONS(2869), + [anon_sym_co_return] = ACTIONS(2869), + [anon_sym_co_yield] = ACTIONS(2869), + [anon_sym_co_await] = ACTIONS(2869), + [anon_sym_new] = ACTIONS(2869), + [anon_sym_requires] = ACTIONS(2869), + [sym_this] = ACTIONS(2869), + [sym_nullptr] = ACTIONS(2869), + [sym_raw_string_literal] = ACTIONS(2871), }, - [1479] = { - [sym__expression] = STATE(2687), - [sym_conditional_expression] = STATE(2765), - [sym_assignment_expression] = STATE(2765), - [sym_pointer_expression] = STATE(2827), - [sym_unary_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_update_expression] = STATE(2765), - [sym_cast_expression] = STATE(2765), - [sym_sizeof_expression] = STATE(2765), - [sym_subscript_expression] = STATE(2827), - [sym_call_expression] = STATE(2827), - [sym_field_expression] = STATE(2827), - [sym_compound_literal_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2827), - [sym_char_literal] = STATE(2674), - [sym_concatenated_string] = STATE(2674), - [sym_string_literal] = STATE(2093), - [sym__class_name] = STATE(6297), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2765), - [sym_co_await_expression] = STATE(2765), - [sym_new_expression] = STATE(2765), - [sym_delete_expression] = STATE(2765), - [sym_requires_clause] = STATE(2765), - [sym_requires_expression] = STATE(2765), - [sym_lambda_expression] = STATE(2765), - [sym_lambda_capture_specifier] = STATE(4512), - [sym_fold_expression] = STATE(2765), - [sym_parameter_pack_expansion] = STATE(2765), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4648), - [sym_qualified_identifier] = STATE(2827), - [sym_qualified_type_identifier] = STATE(6297), - [sym_user_defined_literal] = STATE(2765), - [sym_identifier] = ACTIONS(2363), - [anon_sym_LPAREN2] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1417), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_COLON_COLON] = ACTIONS(1423), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(2369), - [anon_sym_DASH_DASH] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [anon_sym_sizeof] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(1439), - [anon_sym_L_SQUOTE] = ACTIONS(1441), - [anon_sym_u_SQUOTE] = ACTIONS(1441), - [anon_sym_U_SQUOTE] = ACTIONS(1441), - [anon_sym_u8_SQUOTE] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1441), - [anon_sym_L_DQUOTE] = ACTIONS(1443), - [anon_sym_u_DQUOTE] = ACTIONS(1443), - [anon_sym_U_DQUOTE] = ACTIONS(1443), - [anon_sym_u8_DQUOTE] = ACTIONS(1443), - [anon_sym_DQUOTE] = ACTIONS(1443), - [sym_true] = ACTIONS(1445), - [sym_false] = ACTIONS(1445), - [sym_null] = ACTIONS(1445), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_co_await] = ACTIONS(1451), - [anon_sym_new] = ACTIONS(1453), - [anon_sym_requires] = ACTIONS(1455), - [sym_this] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(1445), - [sym_raw_string_literal] = ACTIONS(1457), + [1020] = { + [sym_identifier] = ACTIONS(2805), + [aux_sym_preproc_include_token1] = ACTIONS(2805), + [aux_sym_preproc_def_token1] = ACTIONS(2805), + [aux_sym_preproc_if_token1] = ACTIONS(2805), + [aux_sym_preproc_if_token2] = ACTIONS(2805), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2805), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2805), + [sym_preproc_directive] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(2807), + [anon_sym_BANG] = ACTIONS(2807), + [anon_sym_TILDE] = ACTIONS(2807), + [anon_sym_DASH] = ACTIONS(2805), + [anon_sym_PLUS] = ACTIONS(2805), + [anon_sym_STAR] = ACTIONS(2807), + [anon_sym_AMP_AMP] = ACTIONS(2807), + [anon_sym_AMP] = ACTIONS(2805), + [anon_sym_SEMI] = ACTIONS(2807), + [anon_sym_typedef] = ACTIONS(2805), + [anon_sym_extern] = ACTIONS(2805), + [anon_sym___attribute__] = ACTIONS(2805), + [anon_sym_COLON_COLON] = ACTIONS(2807), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2807), + [anon_sym___declspec] = ACTIONS(2805), + [anon_sym___based] = ACTIONS(2805), + [anon_sym___cdecl] = ACTIONS(2805), + [anon_sym___clrcall] = ACTIONS(2805), + [anon_sym___stdcall] = ACTIONS(2805), + [anon_sym___fastcall] = ACTIONS(2805), + [anon_sym___thiscall] = ACTIONS(2805), + [anon_sym___vectorcall] = ACTIONS(2805), + [anon_sym_LBRACE] = ACTIONS(2807), + [anon_sym_LBRACK] = ACTIONS(2805), + [anon_sym_static] = ACTIONS(2805), + [anon_sym_register] = ACTIONS(2805), + [anon_sym_inline] = ACTIONS(2805), + [anon_sym_thread_local] = ACTIONS(2805), + [anon_sym_const] = ACTIONS(2805), + [anon_sym_volatile] = ACTIONS(2805), + [anon_sym_restrict] = ACTIONS(2805), + [anon_sym__Atomic] = ACTIONS(2805), + [anon_sym_mutable] = ACTIONS(2805), + [anon_sym_constexpr] = ACTIONS(2805), + [anon_sym_constinit] = ACTIONS(2805), + [anon_sym_consteval] = ACTIONS(2805), + [anon_sym_signed] = ACTIONS(2805), + [anon_sym_unsigned] = ACTIONS(2805), + [anon_sym_long] = ACTIONS(2805), + [anon_sym_short] = ACTIONS(2805), + [sym_primitive_type] = ACTIONS(2805), + [anon_sym_enum] = ACTIONS(2805), + [anon_sym_class] = ACTIONS(2805), + [anon_sym_struct] = ACTIONS(2805), + [anon_sym_union] = ACTIONS(2805), + [anon_sym_if] = ACTIONS(2805), + [anon_sym_switch] = ACTIONS(2805), + [anon_sym_case] = ACTIONS(2805), + [anon_sym_default] = ACTIONS(2805), + [anon_sym_while] = ACTIONS(2805), + [anon_sym_do] = ACTIONS(2805), + [anon_sym_for] = ACTIONS(2805), + [anon_sym_return] = ACTIONS(2805), + [anon_sym_break] = ACTIONS(2805), + [anon_sym_continue] = ACTIONS(2805), + [anon_sym_goto] = ACTIONS(2805), + [anon_sym_not] = ACTIONS(2805), + [anon_sym_compl] = ACTIONS(2805), + [anon_sym_DASH_DASH] = ACTIONS(2807), + [anon_sym_PLUS_PLUS] = ACTIONS(2807), + [anon_sym_sizeof] = ACTIONS(2805), + [sym_number_literal] = ACTIONS(2807), + [anon_sym_L_SQUOTE] = ACTIONS(2807), + [anon_sym_u_SQUOTE] = ACTIONS(2807), + [anon_sym_U_SQUOTE] = ACTIONS(2807), + [anon_sym_u8_SQUOTE] = ACTIONS(2807), + [anon_sym_SQUOTE] = ACTIONS(2807), + [anon_sym_L_DQUOTE] = ACTIONS(2807), + [anon_sym_u_DQUOTE] = ACTIONS(2807), + [anon_sym_U_DQUOTE] = ACTIONS(2807), + [anon_sym_u8_DQUOTE] = ACTIONS(2807), + [anon_sym_DQUOTE] = ACTIONS(2807), + [sym_true] = ACTIONS(2805), + [sym_false] = ACTIONS(2805), + [sym_null] = ACTIONS(2805), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2805), + [anon_sym_decltype] = ACTIONS(2805), + [anon_sym_virtual] = ACTIONS(2805), + [anon_sym_explicit] = ACTIONS(2805), + [anon_sym_typename] = ACTIONS(2805), + [anon_sym_template] = ACTIONS(2805), + [anon_sym_operator] = ACTIONS(2805), + [anon_sym_try] = ACTIONS(2805), + [anon_sym_delete] = ACTIONS(2805), + [anon_sym_throw] = ACTIONS(2805), + [anon_sym_namespace] = ACTIONS(2805), + [anon_sym_using] = ACTIONS(2805), + [anon_sym_static_assert] = ACTIONS(2805), + [anon_sym_concept] = ACTIONS(2805), + [anon_sym_co_return] = ACTIONS(2805), + [anon_sym_co_yield] = ACTIONS(2805), + [anon_sym_co_await] = ACTIONS(2805), + [anon_sym_new] = ACTIONS(2805), + [anon_sym_requires] = ACTIONS(2805), + [sym_this] = ACTIONS(2805), + [sym_nullptr] = ACTIONS(2805), + [sym_raw_string_literal] = ACTIONS(2807), }, - [1480] = { - [sym__expression] = STATE(3862), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(3196), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(3196), - [sym_call_expression] = STATE(3196), - [sym_field_expression] = STATE(3196), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(3196), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(3196), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN2] = ACTIONS(3061), - [anon_sym_BANG] = ACTIONS(3065), - [anon_sym_TILDE] = ACTIONS(3065), - [anon_sym_DASH] = ACTIONS(3063), - [anon_sym_PLUS] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(3069), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3071), - [anon_sym_PLUS_PLUS] = ACTIONS(3071), - [anon_sym_sizeof] = ACTIONS(3073), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3075), - [anon_sym_co_await] = ACTIONS(3077), - [anon_sym_new] = ACTIONS(3079), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [1021] = { + [sym_identifier] = ACTIONS(2805), + [aux_sym_preproc_include_token1] = ACTIONS(2805), + [aux_sym_preproc_def_token1] = ACTIONS(2805), + [aux_sym_preproc_if_token1] = ACTIONS(2805), + [aux_sym_preproc_if_token2] = ACTIONS(2805), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2805), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2805), + [sym_preproc_directive] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(2807), + [anon_sym_BANG] = ACTIONS(2807), + [anon_sym_TILDE] = ACTIONS(2807), + [anon_sym_DASH] = ACTIONS(2805), + [anon_sym_PLUS] = ACTIONS(2805), + [anon_sym_STAR] = ACTIONS(2807), + [anon_sym_AMP_AMP] = ACTIONS(2807), + [anon_sym_AMP] = ACTIONS(2805), + [anon_sym_SEMI] = ACTIONS(2807), + [anon_sym_typedef] = ACTIONS(2805), + [anon_sym_extern] = ACTIONS(2805), + [anon_sym___attribute__] = ACTIONS(2805), + [anon_sym_COLON_COLON] = ACTIONS(2807), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2807), + [anon_sym___declspec] = ACTIONS(2805), + [anon_sym___based] = ACTIONS(2805), + [anon_sym___cdecl] = ACTIONS(2805), + [anon_sym___clrcall] = ACTIONS(2805), + [anon_sym___stdcall] = ACTIONS(2805), + [anon_sym___fastcall] = ACTIONS(2805), + [anon_sym___thiscall] = ACTIONS(2805), + [anon_sym___vectorcall] = ACTIONS(2805), + [anon_sym_LBRACE] = ACTIONS(2807), + [anon_sym_LBRACK] = ACTIONS(2805), + [anon_sym_static] = ACTIONS(2805), + [anon_sym_register] = ACTIONS(2805), + [anon_sym_inline] = ACTIONS(2805), + [anon_sym_thread_local] = ACTIONS(2805), + [anon_sym_const] = ACTIONS(2805), + [anon_sym_volatile] = ACTIONS(2805), + [anon_sym_restrict] = ACTIONS(2805), + [anon_sym__Atomic] = ACTIONS(2805), + [anon_sym_mutable] = ACTIONS(2805), + [anon_sym_constexpr] = ACTIONS(2805), + [anon_sym_constinit] = ACTIONS(2805), + [anon_sym_consteval] = ACTIONS(2805), + [anon_sym_signed] = ACTIONS(2805), + [anon_sym_unsigned] = ACTIONS(2805), + [anon_sym_long] = ACTIONS(2805), + [anon_sym_short] = ACTIONS(2805), + [sym_primitive_type] = ACTIONS(2805), + [anon_sym_enum] = ACTIONS(2805), + [anon_sym_class] = ACTIONS(2805), + [anon_sym_struct] = ACTIONS(2805), + [anon_sym_union] = ACTIONS(2805), + [anon_sym_if] = ACTIONS(2805), + [anon_sym_switch] = ACTIONS(2805), + [anon_sym_case] = ACTIONS(2805), + [anon_sym_default] = ACTIONS(2805), + [anon_sym_while] = ACTIONS(2805), + [anon_sym_do] = ACTIONS(2805), + [anon_sym_for] = ACTIONS(2805), + [anon_sym_return] = ACTIONS(2805), + [anon_sym_break] = ACTIONS(2805), + [anon_sym_continue] = ACTIONS(2805), + [anon_sym_goto] = ACTIONS(2805), + [anon_sym_not] = ACTIONS(2805), + [anon_sym_compl] = ACTIONS(2805), + [anon_sym_DASH_DASH] = ACTIONS(2807), + [anon_sym_PLUS_PLUS] = ACTIONS(2807), + [anon_sym_sizeof] = ACTIONS(2805), + [sym_number_literal] = ACTIONS(2807), + [anon_sym_L_SQUOTE] = ACTIONS(2807), + [anon_sym_u_SQUOTE] = ACTIONS(2807), + [anon_sym_U_SQUOTE] = ACTIONS(2807), + [anon_sym_u8_SQUOTE] = ACTIONS(2807), + [anon_sym_SQUOTE] = ACTIONS(2807), + [anon_sym_L_DQUOTE] = ACTIONS(2807), + [anon_sym_u_DQUOTE] = ACTIONS(2807), + [anon_sym_U_DQUOTE] = ACTIONS(2807), + [anon_sym_u8_DQUOTE] = ACTIONS(2807), + [anon_sym_DQUOTE] = ACTIONS(2807), + [sym_true] = ACTIONS(2805), + [sym_false] = ACTIONS(2805), + [sym_null] = ACTIONS(2805), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2805), + [anon_sym_decltype] = ACTIONS(2805), + [anon_sym_virtual] = ACTIONS(2805), + [anon_sym_explicit] = ACTIONS(2805), + [anon_sym_typename] = ACTIONS(2805), + [anon_sym_template] = ACTIONS(2805), + [anon_sym_operator] = ACTIONS(2805), + [anon_sym_try] = ACTIONS(2805), + [anon_sym_delete] = ACTIONS(2805), + [anon_sym_throw] = ACTIONS(2805), + [anon_sym_namespace] = ACTIONS(2805), + [anon_sym_using] = ACTIONS(2805), + [anon_sym_static_assert] = ACTIONS(2805), + [anon_sym_concept] = ACTIONS(2805), + [anon_sym_co_return] = ACTIONS(2805), + [anon_sym_co_yield] = ACTIONS(2805), + [anon_sym_co_await] = ACTIONS(2805), + [anon_sym_new] = ACTIONS(2805), + [anon_sym_requires] = ACTIONS(2805), + [sym_this] = ACTIONS(2805), + [sym_nullptr] = ACTIONS(2805), + [sym_raw_string_literal] = ACTIONS(2807), }, - [1481] = { - [sym__expression] = STATE(2950), - [sym_conditional_expression] = STATE(3000), - [sym_assignment_expression] = STATE(3000), - [sym_pointer_expression] = STATE(3006), - [sym_unary_expression] = STATE(3000), - [sym_binary_expression] = STATE(3000), - [sym_update_expression] = STATE(3000), - [sym_cast_expression] = STATE(3000), - [sym_sizeof_expression] = STATE(3000), - [sym_subscript_expression] = STATE(3006), - [sym_call_expression] = STATE(3006), - [sym_field_expression] = STATE(3006), - [sym_compound_literal_expression] = STATE(3000), - [sym_parenthesized_expression] = STATE(3006), - [sym_char_literal] = STATE(2896), - [sym_concatenated_string] = STATE(2896), - [sym_string_literal] = STATE(2154), - [sym__class_name] = STATE(5849), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3000), - [sym_co_await_expression] = STATE(3000), - [sym_new_expression] = STATE(3000), - [sym_delete_expression] = STATE(3000), - [sym_requires_clause] = STATE(3000), - [sym_requires_expression] = STATE(3000), - [sym_lambda_expression] = STATE(3000), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3000), - [sym_parameter_pack_expansion] = STATE(3000), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4642), - [sym_qualified_identifier] = STATE(3006), - [sym_qualified_type_identifier] = STATE(5849), - [sym_user_defined_literal] = STATE(3000), - [sym_identifier] = ACTIONS(2831), - [anon_sym_LPAREN2] = ACTIONS(2833), - [anon_sym_BANG] = ACTIONS(2837), - [anon_sym_TILDE] = ACTIONS(2837), - [anon_sym_DASH] = ACTIONS(2835), - [anon_sym_PLUS] = ACTIONS(2835), - [anon_sym_STAR] = ACTIONS(2537), - [anon_sym_AMP] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(2841), - [anon_sym_LBRACK] = ACTIONS(2272), + [1022] = { + [sym_identifier] = ACTIONS(2833), + [aux_sym_preproc_include_token1] = ACTIONS(2833), + [aux_sym_preproc_def_token1] = ACTIONS(2833), + [aux_sym_preproc_if_token1] = ACTIONS(2833), + [aux_sym_preproc_if_token2] = ACTIONS(2833), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2833), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2833), + [sym_preproc_directive] = ACTIONS(2833), + [anon_sym_LPAREN2] = ACTIONS(2835), + [anon_sym_BANG] = ACTIONS(2835), + [anon_sym_TILDE] = ACTIONS(2835), + [anon_sym_DASH] = ACTIONS(2833), + [anon_sym_PLUS] = ACTIONS(2833), + [anon_sym_STAR] = ACTIONS(2835), + [anon_sym_AMP_AMP] = ACTIONS(2835), + [anon_sym_AMP] = ACTIONS(2833), + [anon_sym_SEMI] = ACTIONS(2835), + [anon_sym_typedef] = ACTIONS(2833), + [anon_sym_extern] = ACTIONS(2833), + [anon_sym___attribute__] = ACTIONS(2833), + [anon_sym_COLON_COLON] = ACTIONS(2835), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2835), + [anon_sym___declspec] = ACTIONS(2833), + [anon_sym___based] = ACTIONS(2833), + [anon_sym___cdecl] = ACTIONS(2833), + [anon_sym___clrcall] = ACTIONS(2833), + [anon_sym___stdcall] = ACTIONS(2833), + [anon_sym___fastcall] = ACTIONS(2833), + [anon_sym___thiscall] = ACTIONS(2833), + [anon_sym___vectorcall] = ACTIONS(2833), + [anon_sym_LBRACE] = ACTIONS(2835), + [anon_sym_LBRACK] = ACTIONS(2833), + [anon_sym_static] = ACTIONS(2833), + [anon_sym_register] = ACTIONS(2833), + [anon_sym_inline] = ACTIONS(2833), + [anon_sym_thread_local] = ACTIONS(2833), + [anon_sym_const] = ACTIONS(2833), + [anon_sym_volatile] = ACTIONS(2833), + [anon_sym_restrict] = ACTIONS(2833), + [anon_sym__Atomic] = ACTIONS(2833), + [anon_sym_mutable] = ACTIONS(2833), + [anon_sym_constexpr] = ACTIONS(2833), + [anon_sym_constinit] = ACTIONS(2833), + [anon_sym_consteval] = ACTIONS(2833), + [anon_sym_signed] = ACTIONS(2833), + [anon_sym_unsigned] = ACTIONS(2833), + [anon_sym_long] = ACTIONS(2833), + [anon_sym_short] = ACTIONS(2833), + [sym_primitive_type] = ACTIONS(2833), + [anon_sym_enum] = ACTIONS(2833), + [anon_sym_class] = ACTIONS(2833), + [anon_sym_struct] = ACTIONS(2833), + [anon_sym_union] = ACTIONS(2833), + [anon_sym_if] = ACTIONS(2833), + [anon_sym_switch] = ACTIONS(2833), + [anon_sym_case] = ACTIONS(2833), + [anon_sym_default] = ACTIONS(2833), + [anon_sym_while] = ACTIONS(2833), + [anon_sym_do] = ACTIONS(2833), + [anon_sym_for] = ACTIONS(2833), + [anon_sym_return] = ACTIONS(2833), + [anon_sym_break] = ACTIONS(2833), + [anon_sym_continue] = ACTIONS(2833), + [anon_sym_goto] = ACTIONS(2833), + [anon_sym_not] = ACTIONS(2833), + [anon_sym_compl] = ACTIONS(2833), + [anon_sym_DASH_DASH] = ACTIONS(2835), + [anon_sym_PLUS_PLUS] = ACTIONS(2835), + [anon_sym_sizeof] = ACTIONS(2833), + [sym_number_literal] = ACTIONS(2835), + [anon_sym_L_SQUOTE] = ACTIONS(2835), + [anon_sym_u_SQUOTE] = ACTIONS(2835), + [anon_sym_U_SQUOTE] = ACTIONS(2835), + [anon_sym_u8_SQUOTE] = ACTIONS(2835), + [anon_sym_SQUOTE] = ACTIONS(2835), + [anon_sym_L_DQUOTE] = ACTIONS(2835), + [anon_sym_u_DQUOTE] = ACTIONS(2835), + [anon_sym_U_DQUOTE] = ACTIONS(2835), + [anon_sym_u8_DQUOTE] = ACTIONS(2835), + [anon_sym_DQUOTE] = ACTIONS(2835), + [sym_true] = ACTIONS(2833), + [sym_false] = ACTIONS(2833), + [sym_null] = ACTIONS(2833), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2833), + [anon_sym_decltype] = ACTIONS(2833), + [anon_sym_virtual] = ACTIONS(2833), + [anon_sym_explicit] = ACTIONS(2833), + [anon_sym_typename] = ACTIONS(2833), + [anon_sym_template] = ACTIONS(2833), + [anon_sym_operator] = ACTIONS(2833), + [anon_sym_try] = ACTIONS(2833), + [anon_sym_delete] = ACTIONS(2833), + [anon_sym_throw] = ACTIONS(2833), + [anon_sym_namespace] = ACTIONS(2833), + [anon_sym_using] = ACTIONS(2833), + [anon_sym_static_assert] = ACTIONS(2833), + [anon_sym_concept] = ACTIONS(2833), + [anon_sym_co_return] = ACTIONS(2833), + [anon_sym_co_yield] = ACTIONS(2833), + [anon_sym_co_await] = ACTIONS(2833), + [anon_sym_new] = ACTIONS(2833), + [anon_sym_requires] = ACTIONS(2833), + [sym_this] = ACTIONS(2833), + [sym_nullptr] = ACTIONS(2833), + [sym_raw_string_literal] = ACTIONS(2835), + }, + [1023] = { + [sym_identifier] = ACTIONS(2837), + [aux_sym_preproc_include_token1] = ACTIONS(2837), + [aux_sym_preproc_def_token1] = ACTIONS(2837), + [aux_sym_preproc_if_token1] = ACTIONS(2837), + [aux_sym_preproc_if_token2] = ACTIONS(2837), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2837), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2837), + [sym_preproc_directive] = ACTIONS(2837), + [anon_sym_LPAREN2] = ACTIONS(2839), + [anon_sym_BANG] = ACTIONS(2839), + [anon_sym_TILDE] = ACTIONS(2839), + [anon_sym_DASH] = ACTIONS(2837), + [anon_sym_PLUS] = ACTIONS(2837), + [anon_sym_STAR] = ACTIONS(2839), + [anon_sym_AMP_AMP] = ACTIONS(2839), + [anon_sym_AMP] = ACTIONS(2837), + [anon_sym_SEMI] = ACTIONS(2839), + [anon_sym_typedef] = ACTIONS(2837), + [anon_sym_extern] = ACTIONS(2837), + [anon_sym___attribute__] = ACTIONS(2837), + [anon_sym_COLON_COLON] = ACTIONS(2839), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2839), + [anon_sym___declspec] = ACTIONS(2837), + [anon_sym___based] = ACTIONS(2837), + [anon_sym___cdecl] = ACTIONS(2837), + [anon_sym___clrcall] = ACTIONS(2837), + [anon_sym___stdcall] = ACTIONS(2837), + [anon_sym___fastcall] = ACTIONS(2837), + [anon_sym___thiscall] = ACTIONS(2837), + [anon_sym___vectorcall] = ACTIONS(2837), + [anon_sym_LBRACE] = ACTIONS(2839), + [anon_sym_LBRACK] = ACTIONS(2837), + [anon_sym_static] = ACTIONS(2837), + [anon_sym_register] = ACTIONS(2837), + [anon_sym_inline] = ACTIONS(2837), + [anon_sym_thread_local] = ACTIONS(2837), + [anon_sym_const] = ACTIONS(2837), + [anon_sym_volatile] = ACTIONS(2837), + [anon_sym_restrict] = ACTIONS(2837), + [anon_sym__Atomic] = ACTIONS(2837), + [anon_sym_mutable] = ACTIONS(2837), + [anon_sym_constexpr] = ACTIONS(2837), + [anon_sym_constinit] = ACTIONS(2837), + [anon_sym_consteval] = ACTIONS(2837), + [anon_sym_signed] = ACTIONS(2837), + [anon_sym_unsigned] = ACTIONS(2837), + [anon_sym_long] = ACTIONS(2837), + [anon_sym_short] = ACTIONS(2837), + [sym_primitive_type] = ACTIONS(2837), + [anon_sym_enum] = ACTIONS(2837), + [anon_sym_class] = ACTIONS(2837), + [anon_sym_struct] = ACTIONS(2837), + [anon_sym_union] = ACTIONS(2837), + [anon_sym_if] = ACTIONS(2837), + [anon_sym_switch] = ACTIONS(2837), + [anon_sym_case] = ACTIONS(2837), + [anon_sym_default] = ACTIONS(2837), + [anon_sym_while] = ACTIONS(2837), + [anon_sym_do] = ACTIONS(2837), + [anon_sym_for] = ACTIONS(2837), + [anon_sym_return] = ACTIONS(2837), + [anon_sym_break] = ACTIONS(2837), + [anon_sym_continue] = ACTIONS(2837), + [anon_sym_goto] = ACTIONS(2837), + [anon_sym_not] = ACTIONS(2837), + [anon_sym_compl] = ACTIONS(2837), + [anon_sym_DASH_DASH] = ACTIONS(2839), + [anon_sym_PLUS_PLUS] = ACTIONS(2839), + [anon_sym_sizeof] = ACTIONS(2837), + [sym_number_literal] = ACTIONS(2839), + [anon_sym_L_SQUOTE] = ACTIONS(2839), + [anon_sym_u_SQUOTE] = ACTIONS(2839), + [anon_sym_U_SQUOTE] = ACTIONS(2839), + [anon_sym_u8_SQUOTE] = ACTIONS(2839), + [anon_sym_SQUOTE] = ACTIONS(2839), + [anon_sym_L_DQUOTE] = ACTIONS(2839), + [anon_sym_u_DQUOTE] = ACTIONS(2839), + [anon_sym_U_DQUOTE] = ACTIONS(2839), + [anon_sym_u8_DQUOTE] = ACTIONS(2839), + [anon_sym_DQUOTE] = ACTIONS(2839), + [sym_true] = ACTIONS(2837), + [sym_false] = ACTIONS(2837), + [sym_null] = ACTIONS(2837), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2837), + [anon_sym_decltype] = ACTIONS(2837), + [anon_sym_virtual] = ACTIONS(2837), + [anon_sym_explicit] = ACTIONS(2837), + [anon_sym_typename] = ACTIONS(2837), + [anon_sym_template] = ACTIONS(2837), + [anon_sym_operator] = ACTIONS(2837), + [anon_sym_try] = ACTIONS(2837), + [anon_sym_delete] = ACTIONS(2837), + [anon_sym_throw] = ACTIONS(2837), + [anon_sym_namespace] = ACTIONS(2837), + [anon_sym_using] = ACTIONS(2837), + [anon_sym_static_assert] = ACTIONS(2837), + [anon_sym_concept] = ACTIONS(2837), + [anon_sym_co_return] = ACTIONS(2837), + [anon_sym_co_yield] = ACTIONS(2837), + [anon_sym_co_await] = ACTIONS(2837), + [anon_sym_new] = ACTIONS(2837), + [anon_sym_requires] = ACTIONS(2837), + [sym_this] = ACTIONS(2837), + [sym_nullptr] = ACTIONS(2837), + [sym_raw_string_literal] = ACTIONS(2839), + }, + [1024] = { + [sym_identifier] = ACTIONS(2841), + [aux_sym_preproc_include_token1] = ACTIONS(2841), + [aux_sym_preproc_def_token1] = ACTIONS(2841), + [aux_sym_preproc_if_token1] = ACTIONS(2841), + [aux_sym_preproc_if_token2] = ACTIONS(2841), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2841), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2841), + [sym_preproc_directive] = ACTIONS(2841), + [anon_sym_LPAREN2] = ACTIONS(2843), + [anon_sym_BANG] = ACTIONS(2843), + [anon_sym_TILDE] = ACTIONS(2843), + [anon_sym_DASH] = ACTIONS(2841), + [anon_sym_PLUS] = ACTIONS(2841), + [anon_sym_STAR] = ACTIONS(2843), + [anon_sym_AMP_AMP] = ACTIONS(2843), + [anon_sym_AMP] = ACTIONS(2841), + [anon_sym_SEMI] = ACTIONS(2843), + [anon_sym_typedef] = ACTIONS(2841), + [anon_sym_extern] = ACTIONS(2841), + [anon_sym___attribute__] = ACTIONS(2841), + [anon_sym_COLON_COLON] = ACTIONS(2843), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2843), + [anon_sym___declspec] = ACTIONS(2841), + [anon_sym___based] = ACTIONS(2841), + [anon_sym___cdecl] = ACTIONS(2841), + [anon_sym___clrcall] = ACTIONS(2841), + [anon_sym___stdcall] = ACTIONS(2841), + [anon_sym___fastcall] = ACTIONS(2841), + [anon_sym___thiscall] = ACTIONS(2841), + [anon_sym___vectorcall] = ACTIONS(2841), + [anon_sym_LBRACE] = ACTIONS(2843), + [anon_sym_LBRACK] = ACTIONS(2841), + [anon_sym_static] = ACTIONS(2841), + [anon_sym_register] = ACTIONS(2841), + [anon_sym_inline] = ACTIONS(2841), + [anon_sym_thread_local] = ACTIONS(2841), + [anon_sym_const] = ACTIONS(2841), + [anon_sym_volatile] = ACTIONS(2841), + [anon_sym_restrict] = ACTIONS(2841), + [anon_sym__Atomic] = ACTIONS(2841), + [anon_sym_mutable] = ACTIONS(2841), + [anon_sym_constexpr] = ACTIONS(2841), + [anon_sym_constinit] = ACTIONS(2841), + [anon_sym_consteval] = ACTIONS(2841), + [anon_sym_signed] = ACTIONS(2841), + [anon_sym_unsigned] = ACTIONS(2841), + [anon_sym_long] = ACTIONS(2841), + [anon_sym_short] = ACTIONS(2841), + [sym_primitive_type] = ACTIONS(2841), + [anon_sym_enum] = ACTIONS(2841), + [anon_sym_class] = ACTIONS(2841), + [anon_sym_struct] = ACTIONS(2841), + [anon_sym_union] = ACTIONS(2841), + [anon_sym_if] = ACTIONS(2841), + [anon_sym_switch] = ACTIONS(2841), + [anon_sym_case] = ACTIONS(2841), + [anon_sym_default] = ACTIONS(2841), + [anon_sym_while] = ACTIONS(2841), + [anon_sym_do] = ACTIONS(2841), + [anon_sym_for] = ACTIONS(2841), + [anon_sym_return] = ACTIONS(2841), + [anon_sym_break] = ACTIONS(2841), + [anon_sym_continue] = ACTIONS(2841), + [anon_sym_goto] = ACTIONS(2841), + [anon_sym_not] = ACTIONS(2841), + [anon_sym_compl] = ACTIONS(2841), + [anon_sym_DASH_DASH] = ACTIONS(2843), + [anon_sym_PLUS_PLUS] = ACTIONS(2843), + [anon_sym_sizeof] = ACTIONS(2841), + [sym_number_literal] = ACTIONS(2843), + [anon_sym_L_SQUOTE] = ACTIONS(2843), + [anon_sym_u_SQUOTE] = ACTIONS(2843), + [anon_sym_U_SQUOTE] = ACTIONS(2843), + [anon_sym_u8_SQUOTE] = ACTIONS(2843), + [anon_sym_SQUOTE] = ACTIONS(2843), + [anon_sym_L_DQUOTE] = ACTIONS(2843), + [anon_sym_u_DQUOTE] = ACTIONS(2843), + [anon_sym_U_DQUOTE] = ACTIONS(2843), + [anon_sym_u8_DQUOTE] = ACTIONS(2843), + [anon_sym_DQUOTE] = ACTIONS(2843), + [sym_true] = ACTIONS(2841), + [sym_false] = ACTIONS(2841), + [sym_null] = ACTIONS(2841), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2841), + [anon_sym_decltype] = ACTIONS(2841), + [anon_sym_virtual] = ACTIONS(2841), + [anon_sym_explicit] = ACTIONS(2841), + [anon_sym_typename] = ACTIONS(2841), + [anon_sym_template] = ACTIONS(2841), + [anon_sym_operator] = ACTIONS(2841), + [anon_sym_try] = ACTIONS(2841), + [anon_sym_delete] = ACTIONS(2841), + [anon_sym_throw] = ACTIONS(2841), + [anon_sym_namespace] = ACTIONS(2841), + [anon_sym_using] = ACTIONS(2841), + [anon_sym_static_assert] = ACTIONS(2841), + [anon_sym_concept] = ACTIONS(2841), + [anon_sym_co_return] = ACTIONS(2841), + [anon_sym_co_yield] = ACTIONS(2841), + [anon_sym_co_await] = ACTIONS(2841), + [anon_sym_new] = ACTIONS(2841), + [anon_sym_requires] = ACTIONS(2841), + [sym_this] = ACTIONS(2841), + [sym_nullptr] = ACTIONS(2841), + [sym_raw_string_literal] = ACTIONS(2843), + }, + [1025] = { + [sym_identifier] = ACTIONS(2845), + [aux_sym_preproc_include_token1] = ACTIONS(2845), + [aux_sym_preproc_def_token1] = ACTIONS(2845), + [aux_sym_preproc_if_token1] = ACTIONS(2845), + [aux_sym_preproc_if_token2] = ACTIONS(2845), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2845), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2845), + [sym_preproc_directive] = ACTIONS(2845), + [anon_sym_LPAREN2] = ACTIONS(2847), + [anon_sym_BANG] = ACTIONS(2847), + [anon_sym_TILDE] = ACTIONS(2847), + [anon_sym_DASH] = ACTIONS(2845), + [anon_sym_PLUS] = ACTIONS(2845), + [anon_sym_STAR] = ACTIONS(2847), + [anon_sym_AMP_AMP] = ACTIONS(2847), + [anon_sym_AMP] = ACTIONS(2845), + [anon_sym_SEMI] = ACTIONS(2847), + [anon_sym_typedef] = ACTIONS(2845), + [anon_sym_extern] = ACTIONS(2845), + [anon_sym___attribute__] = ACTIONS(2845), + [anon_sym_COLON_COLON] = ACTIONS(2847), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2847), + [anon_sym___declspec] = ACTIONS(2845), + [anon_sym___based] = ACTIONS(2845), + [anon_sym___cdecl] = ACTIONS(2845), + [anon_sym___clrcall] = ACTIONS(2845), + [anon_sym___stdcall] = ACTIONS(2845), + [anon_sym___fastcall] = ACTIONS(2845), + [anon_sym___thiscall] = ACTIONS(2845), + [anon_sym___vectorcall] = ACTIONS(2845), + [anon_sym_LBRACE] = ACTIONS(2847), + [anon_sym_LBRACK] = ACTIONS(2845), + [anon_sym_static] = ACTIONS(2845), + [anon_sym_register] = ACTIONS(2845), + [anon_sym_inline] = ACTIONS(2845), + [anon_sym_thread_local] = ACTIONS(2845), + [anon_sym_const] = ACTIONS(2845), + [anon_sym_volatile] = ACTIONS(2845), + [anon_sym_restrict] = ACTIONS(2845), + [anon_sym__Atomic] = ACTIONS(2845), + [anon_sym_mutable] = ACTIONS(2845), + [anon_sym_constexpr] = ACTIONS(2845), + [anon_sym_constinit] = ACTIONS(2845), + [anon_sym_consteval] = ACTIONS(2845), + [anon_sym_signed] = ACTIONS(2845), + [anon_sym_unsigned] = ACTIONS(2845), + [anon_sym_long] = ACTIONS(2845), + [anon_sym_short] = ACTIONS(2845), [sym_primitive_type] = ACTIONS(2845), + [anon_sym_enum] = ACTIONS(2845), + [anon_sym_class] = ACTIONS(2845), + [anon_sym_struct] = ACTIONS(2845), + [anon_sym_union] = ACTIONS(2845), + [anon_sym_if] = ACTIONS(2845), + [anon_sym_switch] = ACTIONS(2845), + [anon_sym_case] = ACTIONS(2845), + [anon_sym_default] = ACTIONS(2845), + [anon_sym_while] = ACTIONS(2845), + [anon_sym_do] = ACTIONS(2845), + [anon_sym_for] = ACTIONS(2845), + [anon_sym_return] = ACTIONS(2845), + [anon_sym_break] = ACTIONS(2845), + [anon_sym_continue] = ACTIONS(2845), + [anon_sym_goto] = ACTIONS(2845), + [anon_sym_not] = ACTIONS(2845), + [anon_sym_compl] = ACTIONS(2845), [anon_sym_DASH_DASH] = ACTIONS(2847), [anon_sym_PLUS_PLUS] = ACTIONS(2847), - [anon_sym_sizeof] = ACTIONS(2849), - [sym_number_literal] = ACTIONS(2851), - [anon_sym_L_SQUOTE] = ACTIONS(2853), - [anon_sym_u_SQUOTE] = ACTIONS(2853), - [anon_sym_U_SQUOTE] = ACTIONS(2853), - [anon_sym_u8_SQUOTE] = ACTIONS(2853), - [anon_sym_SQUOTE] = ACTIONS(2853), + [anon_sym_sizeof] = ACTIONS(2845), + [sym_number_literal] = ACTIONS(2847), + [anon_sym_L_SQUOTE] = ACTIONS(2847), + [anon_sym_u_SQUOTE] = ACTIONS(2847), + [anon_sym_U_SQUOTE] = ACTIONS(2847), + [anon_sym_u8_SQUOTE] = ACTIONS(2847), + [anon_sym_SQUOTE] = ACTIONS(2847), + [anon_sym_L_DQUOTE] = ACTIONS(2847), + [anon_sym_u_DQUOTE] = ACTIONS(2847), + [anon_sym_U_DQUOTE] = ACTIONS(2847), + [anon_sym_u8_DQUOTE] = ACTIONS(2847), + [anon_sym_DQUOTE] = ACTIONS(2847), + [sym_true] = ACTIONS(2845), + [sym_false] = ACTIONS(2845), + [sym_null] = ACTIONS(2845), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2845), + [anon_sym_decltype] = ACTIONS(2845), + [anon_sym_virtual] = ACTIONS(2845), + [anon_sym_explicit] = ACTIONS(2845), + [anon_sym_typename] = ACTIONS(2845), + [anon_sym_template] = ACTIONS(2845), + [anon_sym_operator] = ACTIONS(2845), + [anon_sym_try] = ACTIONS(2845), + [anon_sym_delete] = ACTIONS(2845), + [anon_sym_throw] = ACTIONS(2845), + [anon_sym_namespace] = ACTIONS(2845), + [anon_sym_using] = ACTIONS(2845), + [anon_sym_static_assert] = ACTIONS(2845), + [anon_sym_concept] = ACTIONS(2845), + [anon_sym_co_return] = ACTIONS(2845), + [anon_sym_co_yield] = ACTIONS(2845), + [anon_sym_co_await] = ACTIONS(2845), + [anon_sym_new] = ACTIONS(2845), + [anon_sym_requires] = ACTIONS(2845), + [sym_this] = ACTIONS(2845), + [sym_nullptr] = ACTIONS(2845), + [sym_raw_string_literal] = ACTIONS(2847), + }, + [1026] = { + [sym_identifier] = ACTIONS(2853), + [aux_sym_preproc_include_token1] = ACTIONS(2853), + [aux_sym_preproc_def_token1] = ACTIONS(2853), + [aux_sym_preproc_if_token1] = ACTIONS(2853), + [aux_sym_preproc_if_token2] = ACTIONS(2853), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2853), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2853), + [sym_preproc_directive] = ACTIONS(2853), + [anon_sym_LPAREN2] = ACTIONS(2855), + [anon_sym_BANG] = ACTIONS(2855), + [anon_sym_TILDE] = ACTIONS(2855), + [anon_sym_DASH] = ACTIONS(2853), + [anon_sym_PLUS] = ACTIONS(2853), + [anon_sym_STAR] = ACTIONS(2855), + [anon_sym_AMP_AMP] = ACTIONS(2855), + [anon_sym_AMP] = ACTIONS(2853), + [anon_sym_SEMI] = ACTIONS(2855), + [anon_sym_typedef] = ACTIONS(2853), + [anon_sym_extern] = ACTIONS(2853), + [anon_sym___attribute__] = ACTIONS(2853), + [anon_sym_COLON_COLON] = ACTIONS(2855), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2855), + [anon_sym___declspec] = ACTIONS(2853), + [anon_sym___based] = ACTIONS(2853), + [anon_sym___cdecl] = ACTIONS(2853), + [anon_sym___clrcall] = ACTIONS(2853), + [anon_sym___stdcall] = ACTIONS(2853), + [anon_sym___fastcall] = ACTIONS(2853), + [anon_sym___thiscall] = ACTIONS(2853), + [anon_sym___vectorcall] = ACTIONS(2853), + [anon_sym_LBRACE] = ACTIONS(2855), + [anon_sym_LBRACK] = ACTIONS(2853), + [anon_sym_static] = ACTIONS(2853), + [anon_sym_register] = ACTIONS(2853), + [anon_sym_inline] = ACTIONS(2853), + [anon_sym_thread_local] = ACTIONS(2853), + [anon_sym_const] = ACTIONS(2853), + [anon_sym_volatile] = ACTIONS(2853), + [anon_sym_restrict] = ACTIONS(2853), + [anon_sym__Atomic] = ACTIONS(2853), + [anon_sym_mutable] = ACTIONS(2853), + [anon_sym_constexpr] = ACTIONS(2853), + [anon_sym_constinit] = ACTIONS(2853), + [anon_sym_consteval] = ACTIONS(2853), + [anon_sym_signed] = ACTIONS(2853), + [anon_sym_unsigned] = ACTIONS(2853), + [anon_sym_long] = ACTIONS(2853), + [anon_sym_short] = ACTIONS(2853), + [sym_primitive_type] = ACTIONS(2853), + [anon_sym_enum] = ACTIONS(2853), + [anon_sym_class] = ACTIONS(2853), + [anon_sym_struct] = ACTIONS(2853), + [anon_sym_union] = ACTIONS(2853), + [anon_sym_if] = ACTIONS(2853), + [anon_sym_switch] = ACTIONS(2853), + [anon_sym_case] = ACTIONS(2853), + [anon_sym_default] = ACTIONS(2853), + [anon_sym_while] = ACTIONS(2853), + [anon_sym_do] = ACTIONS(2853), + [anon_sym_for] = ACTIONS(2853), + [anon_sym_return] = ACTIONS(2853), + [anon_sym_break] = ACTIONS(2853), + [anon_sym_continue] = ACTIONS(2853), + [anon_sym_goto] = ACTIONS(2853), + [anon_sym_not] = ACTIONS(2853), + [anon_sym_compl] = ACTIONS(2853), + [anon_sym_DASH_DASH] = ACTIONS(2855), + [anon_sym_PLUS_PLUS] = ACTIONS(2855), + [anon_sym_sizeof] = ACTIONS(2853), + [sym_number_literal] = ACTIONS(2855), + [anon_sym_L_SQUOTE] = ACTIONS(2855), + [anon_sym_u_SQUOTE] = ACTIONS(2855), + [anon_sym_U_SQUOTE] = ACTIONS(2855), + [anon_sym_u8_SQUOTE] = ACTIONS(2855), + [anon_sym_SQUOTE] = ACTIONS(2855), [anon_sym_L_DQUOTE] = ACTIONS(2855), [anon_sym_u_DQUOTE] = ACTIONS(2855), [anon_sym_U_DQUOTE] = ACTIONS(2855), [anon_sym_u8_DQUOTE] = ACTIONS(2855), [anon_sym_DQUOTE] = ACTIONS(2855), - [sym_true] = ACTIONS(2857), - [sym_false] = ACTIONS(2857), - [sym_null] = ACTIONS(2857), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2859), + [sym_true] = ACTIONS(2853), + [sym_false] = ACTIONS(2853), + [sym_null] = ACTIONS(2853), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2853), + [anon_sym_decltype] = ACTIONS(2853), + [anon_sym_virtual] = ACTIONS(2853), + [anon_sym_explicit] = ACTIONS(2853), + [anon_sym_typename] = ACTIONS(2853), + [anon_sym_template] = ACTIONS(2853), + [anon_sym_operator] = ACTIONS(2853), + [anon_sym_try] = ACTIONS(2853), + [anon_sym_delete] = ACTIONS(2853), + [anon_sym_throw] = ACTIONS(2853), + [anon_sym_namespace] = ACTIONS(2853), + [anon_sym_using] = ACTIONS(2853), + [anon_sym_static_assert] = ACTIONS(2853), + [anon_sym_concept] = ACTIONS(2853), + [anon_sym_co_return] = ACTIONS(2853), + [anon_sym_co_yield] = ACTIONS(2853), + [anon_sym_co_await] = ACTIONS(2853), + [anon_sym_new] = ACTIONS(2853), + [anon_sym_requires] = ACTIONS(2853), + [sym_this] = ACTIONS(2853), + [sym_nullptr] = ACTIONS(2853), + [sym_raw_string_literal] = ACTIONS(2855), + }, + [1027] = { + [sym_identifier] = ACTIONS(2861), + [aux_sym_preproc_include_token1] = ACTIONS(2861), + [aux_sym_preproc_def_token1] = ACTIONS(2861), + [aux_sym_preproc_if_token1] = ACTIONS(2861), + [aux_sym_preproc_if_token2] = ACTIONS(2861), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2861), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2861), + [sym_preproc_directive] = ACTIONS(2861), + [anon_sym_LPAREN2] = ACTIONS(2863), + [anon_sym_BANG] = ACTIONS(2863), + [anon_sym_TILDE] = ACTIONS(2863), + [anon_sym_DASH] = ACTIONS(2861), + [anon_sym_PLUS] = ACTIONS(2861), + [anon_sym_STAR] = ACTIONS(2863), + [anon_sym_AMP_AMP] = ACTIONS(2863), + [anon_sym_AMP] = ACTIONS(2861), + [anon_sym_SEMI] = ACTIONS(2863), + [anon_sym_typedef] = ACTIONS(2861), + [anon_sym_extern] = ACTIONS(2861), + [anon_sym___attribute__] = ACTIONS(2861), + [anon_sym_COLON_COLON] = ACTIONS(2863), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2863), + [anon_sym___declspec] = ACTIONS(2861), + [anon_sym___based] = ACTIONS(2861), + [anon_sym___cdecl] = ACTIONS(2861), + [anon_sym___clrcall] = ACTIONS(2861), + [anon_sym___stdcall] = ACTIONS(2861), + [anon_sym___fastcall] = ACTIONS(2861), + [anon_sym___thiscall] = ACTIONS(2861), + [anon_sym___vectorcall] = ACTIONS(2861), + [anon_sym_LBRACE] = ACTIONS(2863), + [anon_sym_LBRACK] = ACTIONS(2861), + [anon_sym_static] = ACTIONS(2861), + [anon_sym_register] = ACTIONS(2861), + [anon_sym_inline] = ACTIONS(2861), + [anon_sym_thread_local] = ACTIONS(2861), + [anon_sym_const] = ACTIONS(2861), + [anon_sym_volatile] = ACTIONS(2861), + [anon_sym_restrict] = ACTIONS(2861), + [anon_sym__Atomic] = ACTIONS(2861), + [anon_sym_mutable] = ACTIONS(2861), + [anon_sym_constexpr] = ACTIONS(2861), + [anon_sym_constinit] = ACTIONS(2861), + [anon_sym_consteval] = ACTIONS(2861), + [anon_sym_signed] = ACTIONS(2861), + [anon_sym_unsigned] = ACTIONS(2861), + [anon_sym_long] = ACTIONS(2861), + [anon_sym_short] = ACTIONS(2861), + [sym_primitive_type] = ACTIONS(2861), + [anon_sym_enum] = ACTIONS(2861), + [anon_sym_class] = ACTIONS(2861), + [anon_sym_struct] = ACTIONS(2861), + [anon_sym_union] = ACTIONS(2861), + [anon_sym_if] = ACTIONS(2861), + [anon_sym_switch] = ACTIONS(2861), + [anon_sym_case] = ACTIONS(2861), + [anon_sym_default] = ACTIONS(2861), + [anon_sym_while] = ACTIONS(2861), + [anon_sym_do] = ACTIONS(2861), + [anon_sym_for] = ACTIONS(2861), + [anon_sym_return] = ACTIONS(2861), + [anon_sym_break] = ACTIONS(2861), + [anon_sym_continue] = ACTIONS(2861), + [anon_sym_goto] = ACTIONS(2861), + [anon_sym_not] = ACTIONS(2861), + [anon_sym_compl] = ACTIONS(2861), + [anon_sym_DASH_DASH] = ACTIONS(2863), + [anon_sym_PLUS_PLUS] = ACTIONS(2863), + [anon_sym_sizeof] = ACTIONS(2861), + [sym_number_literal] = ACTIONS(2863), + [anon_sym_L_SQUOTE] = ACTIONS(2863), + [anon_sym_u_SQUOTE] = ACTIONS(2863), + [anon_sym_U_SQUOTE] = ACTIONS(2863), + [anon_sym_u8_SQUOTE] = ACTIONS(2863), + [anon_sym_SQUOTE] = ACTIONS(2863), + [anon_sym_L_DQUOTE] = ACTIONS(2863), + [anon_sym_u_DQUOTE] = ACTIONS(2863), + [anon_sym_U_DQUOTE] = ACTIONS(2863), + [anon_sym_u8_DQUOTE] = ACTIONS(2863), + [anon_sym_DQUOTE] = ACTIONS(2863), + [sym_true] = ACTIONS(2861), + [sym_false] = ACTIONS(2861), + [sym_null] = ACTIONS(2861), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2861), + [anon_sym_decltype] = ACTIONS(2861), + [anon_sym_virtual] = ACTIONS(2861), + [anon_sym_explicit] = ACTIONS(2861), + [anon_sym_typename] = ACTIONS(2861), + [anon_sym_template] = ACTIONS(2861), + [anon_sym_operator] = ACTIONS(2861), + [anon_sym_try] = ACTIONS(2861), + [anon_sym_delete] = ACTIONS(2861), + [anon_sym_throw] = ACTIONS(2861), + [anon_sym_namespace] = ACTIONS(2861), + [anon_sym_using] = ACTIONS(2861), + [anon_sym_static_assert] = ACTIONS(2861), + [anon_sym_concept] = ACTIONS(2861), + [anon_sym_co_return] = ACTIONS(2861), + [anon_sym_co_yield] = ACTIONS(2861), [anon_sym_co_await] = ACTIONS(2861), - [anon_sym_new] = ACTIONS(2863), - [anon_sym_requires] = ACTIONS(2865), - [sym_this] = ACTIONS(2857), - [sym_nullptr] = ACTIONS(2857), - [sym_raw_string_literal] = ACTIONS(2867), + [anon_sym_new] = ACTIONS(2861), + [anon_sym_requires] = ACTIONS(2861), + [sym_this] = ACTIONS(2861), + [sym_nullptr] = ACTIONS(2861), + [sym_raw_string_literal] = ACTIONS(2863), }, - [1482] = { - [sym__expression] = STATE(3494), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [1028] = { + [sym_identifier] = ACTIONS(2861), + [aux_sym_preproc_include_token1] = ACTIONS(2861), + [aux_sym_preproc_def_token1] = ACTIONS(2861), + [aux_sym_preproc_if_token1] = ACTIONS(2861), + [aux_sym_preproc_if_token2] = ACTIONS(2861), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2861), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2861), + [sym_preproc_directive] = ACTIONS(2861), + [anon_sym_LPAREN2] = ACTIONS(2863), + [anon_sym_BANG] = ACTIONS(2863), + [anon_sym_TILDE] = ACTIONS(2863), + [anon_sym_DASH] = ACTIONS(2861), + [anon_sym_PLUS] = ACTIONS(2861), + [anon_sym_STAR] = ACTIONS(2863), + [anon_sym_AMP_AMP] = ACTIONS(2863), + [anon_sym_AMP] = ACTIONS(2861), + [anon_sym_SEMI] = ACTIONS(2863), + [anon_sym_typedef] = ACTIONS(2861), + [anon_sym_extern] = ACTIONS(2861), + [anon_sym___attribute__] = ACTIONS(2861), + [anon_sym_COLON_COLON] = ACTIONS(2863), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2863), + [anon_sym___declspec] = ACTIONS(2861), + [anon_sym___based] = ACTIONS(2861), + [anon_sym___cdecl] = ACTIONS(2861), + [anon_sym___clrcall] = ACTIONS(2861), + [anon_sym___stdcall] = ACTIONS(2861), + [anon_sym___fastcall] = ACTIONS(2861), + [anon_sym___thiscall] = ACTIONS(2861), + [anon_sym___vectorcall] = ACTIONS(2861), + [anon_sym_LBRACE] = ACTIONS(2863), + [anon_sym_LBRACK] = ACTIONS(2861), + [anon_sym_static] = ACTIONS(2861), + [anon_sym_register] = ACTIONS(2861), + [anon_sym_inline] = ACTIONS(2861), + [anon_sym_thread_local] = ACTIONS(2861), + [anon_sym_const] = ACTIONS(2861), + [anon_sym_volatile] = ACTIONS(2861), + [anon_sym_restrict] = ACTIONS(2861), + [anon_sym__Atomic] = ACTIONS(2861), + [anon_sym_mutable] = ACTIONS(2861), + [anon_sym_constexpr] = ACTIONS(2861), + [anon_sym_constinit] = ACTIONS(2861), + [anon_sym_consteval] = ACTIONS(2861), + [anon_sym_signed] = ACTIONS(2861), + [anon_sym_unsigned] = ACTIONS(2861), + [anon_sym_long] = ACTIONS(2861), + [anon_sym_short] = ACTIONS(2861), + [sym_primitive_type] = ACTIONS(2861), + [anon_sym_enum] = ACTIONS(2861), + [anon_sym_class] = ACTIONS(2861), + [anon_sym_struct] = ACTIONS(2861), + [anon_sym_union] = ACTIONS(2861), + [anon_sym_if] = ACTIONS(2861), + [anon_sym_switch] = ACTIONS(2861), + [anon_sym_case] = ACTIONS(2861), + [anon_sym_default] = ACTIONS(2861), + [anon_sym_while] = ACTIONS(2861), + [anon_sym_do] = ACTIONS(2861), + [anon_sym_for] = ACTIONS(2861), + [anon_sym_return] = ACTIONS(2861), + [anon_sym_break] = ACTIONS(2861), + [anon_sym_continue] = ACTIONS(2861), + [anon_sym_goto] = ACTIONS(2861), + [anon_sym_not] = ACTIONS(2861), + [anon_sym_compl] = ACTIONS(2861), + [anon_sym_DASH_DASH] = ACTIONS(2863), + [anon_sym_PLUS_PLUS] = ACTIONS(2863), + [anon_sym_sizeof] = ACTIONS(2861), + [sym_number_literal] = ACTIONS(2863), + [anon_sym_L_SQUOTE] = ACTIONS(2863), + [anon_sym_u_SQUOTE] = ACTIONS(2863), + [anon_sym_U_SQUOTE] = ACTIONS(2863), + [anon_sym_u8_SQUOTE] = ACTIONS(2863), + [anon_sym_SQUOTE] = ACTIONS(2863), + [anon_sym_L_DQUOTE] = ACTIONS(2863), + [anon_sym_u_DQUOTE] = ACTIONS(2863), + [anon_sym_U_DQUOTE] = ACTIONS(2863), + [anon_sym_u8_DQUOTE] = ACTIONS(2863), + [anon_sym_DQUOTE] = ACTIONS(2863), + [sym_true] = ACTIONS(2861), + [sym_false] = ACTIONS(2861), + [sym_null] = ACTIONS(2861), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2861), + [anon_sym_decltype] = ACTIONS(2861), + [anon_sym_virtual] = ACTIONS(2861), + [anon_sym_explicit] = ACTIONS(2861), + [anon_sym_typename] = ACTIONS(2861), + [anon_sym_template] = ACTIONS(2861), + [anon_sym_operator] = ACTIONS(2861), + [anon_sym_try] = ACTIONS(2861), + [anon_sym_delete] = ACTIONS(2861), + [anon_sym_throw] = ACTIONS(2861), + [anon_sym_namespace] = ACTIONS(2861), + [anon_sym_using] = ACTIONS(2861), + [anon_sym_static_assert] = ACTIONS(2861), + [anon_sym_concept] = ACTIONS(2861), + [anon_sym_co_return] = ACTIONS(2861), + [anon_sym_co_yield] = ACTIONS(2861), + [anon_sym_co_await] = ACTIONS(2861), + [anon_sym_new] = ACTIONS(2861), + [anon_sym_requires] = ACTIONS(2861), + [sym_this] = ACTIONS(2861), + [sym_nullptr] = ACTIONS(2861), + [sym_raw_string_literal] = ACTIONS(2863), }, - [1483] = { - [sym__expression] = STATE(2715), - [sym_conditional_expression] = STATE(2765), - [sym_assignment_expression] = STATE(2765), - [sym_pointer_expression] = STATE(2827), - [sym_unary_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_update_expression] = STATE(2765), - [sym_cast_expression] = STATE(2765), - [sym_sizeof_expression] = STATE(2765), - [sym_subscript_expression] = STATE(2827), - [sym_call_expression] = STATE(2827), - [sym_field_expression] = STATE(2827), - [sym_compound_literal_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2827), - [sym_char_literal] = STATE(2674), - [sym_concatenated_string] = STATE(2674), - [sym_string_literal] = STATE(2093), - [sym__class_name] = STATE(6297), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2765), - [sym_co_await_expression] = STATE(2765), - [sym_new_expression] = STATE(2765), - [sym_delete_expression] = STATE(2765), - [sym_requires_clause] = STATE(2765), - [sym_requires_expression] = STATE(2765), - [sym_lambda_expression] = STATE(2765), - [sym_lambda_capture_specifier] = STATE(4512), - [sym_fold_expression] = STATE(2765), - [sym_parameter_pack_expansion] = STATE(2765), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4648), - [sym_qualified_identifier] = STATE(2827), - [sym_qualified_type_identifier] = STATE(6297), - [sym_user_defined_literal] = STATE(2765), - [sym_identifier] = ACTIONS(3680), - [anon_sym_LPAREN2] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1417), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_COLON_COLON] = ACTIONS(1423), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(2369), - [anon_sym_DASH_DASH] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [anon_sym_sizeof] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(1439), - [anon_sym_L_SQUOTE] = ACTIONS(1441), - [anon_sym_u_SQUOTE] = ACTIONS(1441), - [anon_sym_U_SQUOTE] = ACTIONS(1441), - [anon_sym_u8_SQUOTE] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1441), - [anon_sym_L_DQUOTE] = ACTIONS(1443), - [anon_sym_u_DQUOTE] = ACTIONS(1443), - [anon_sym_U_DQUOTE] = ACTIONS(1443), - [anon_sym_u8_DQUOTE] = ACTIONS(1443), - [anon_sym_DQUOTE] = ACTIONS(1443), - [sym_true] = ACTIONS(1445), - [sym_false] = ACTIONS(1445), - [sym_null] = ACTIONS(1445), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_co_await] = ACTIONS(1451), - [anon_sym_new] = ACTIONS(1453), - [anon_sym_requires] = ACTIONS(1455), - [sym_this] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(1445), - [sym_raw_string_literal] = ACTIONS(1457), + [1029] = { + [sym_identifier] = ACTIONS(2887), + [aux_sym_preproc_include_token1] = ACTIONS(2887), + [aux_sym_preproc_def_token1] = ACTIONS(2887), + [aux_sym_preproc_if_token1] = ACTIONS(2887), + [aux_sym_preproc_if_token2] = ACTIONS(2887), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2887), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2887), + [sym_preproc_directive] = ACTIONS(2887), + [anon_sym_LPAREN2] = ACTIONS(2889), + [anon_sym_BANG] = ACTIONS(2889), + [anon_sym_TILDE] = ACTIONS(2889), + [anon_sym_DASH] = ACTIONS(2887), + [anon_sym_PLUS] = ACTIONS(2887), + [anon_sym_STAR] = ACTIONS(2889), + [anon_sym_AMP_AMP] = ACTIONS(2889), + [anon_sym_AMP] = ACTIONS(2887), + [anon_sym_SEMI] = ACTIONS(2889), + [anon_sym_typedef] = ACTIONS(2887), + [anon_sym_extern] = ACTIONS(2887), + [anon_sym___attribute__] = ACTIONS(2887), + [anon_sym_COLON_COLON] = ACTIONS(2889), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2889), + [anon_sym___declspec] = ACTIONS(2887), + [anon_sym___based] = ACTIONS(2887), + [anon_sym___cdecl] = ACTIONS(2887), + [anon_sym___clrcall] = ACTIONS(2887), + [anon_sym___stdcall] = ACTIONS(2887), + [anon_sym___fastcall] = ACTIONS(2887), + [anon_sym___thiscall] = ACTIONS(2887), + [anon_sym___vectorcall] = ACTIONS(2887), + [anon_sym_LBRACE] = ACTIONS(2889), + [anon_sym_LBRACK] = ACTIONS(2887), + [anon_sym_static] = ACTIONS(2887), + [anon_sym_register] = ACTIONS(2887), + [anon_sym_inline] = ACTIONS(2887), + [anon_sym_thread_local] = ACTIONS(2887), + [anon_sym_const] = ACTIONS(2887), + [anon_sym_volatile] = ACTIONS(2887), + [anon_sym_restrict] = ACTIONS(2887), + [anon_sym__Atomic] = ACTIONS(2887), + [anon_sym_mutable] = ACTIONS(2887), + [anon_sym_constexpr] = ACTIONS(2887), + [anon_sym_constinit] = ACTIONS(2887), + [anon_sym_consteval] = ACTIONS(2887), + [anon_sym_signed] = ACTIONS(2887), + [anon_sym_unsigned] = ACTIONS(2887), + [anon_sym_long] = ACTIONS(2887), + [anon_sym_short] = ACTIONS(2887), + [sym_primitive_type] = ACTIONS(2887), + [anon_sym_enum] = ACTIONS(2887), + [anon_sym_class] = ACTIONS(2887), + [anon_sym_struct] = ACTIONS(2887), + [anon_sym_union] = ACTIONS(2887), + [anon_sym_if] = ACTIONS(2887), + [anon_sym_switch] = ACTIONS(2887), + [anon_sym_case] = ACTIONS(2887), + [anon_sym_default] = ACTIONS(2887), + [anon_sym_while] = ACTIONS(2887), + [anon_sym_do] = ACTIONS(2887), + [anon_sym_for] = ACTIONS(2887), + [anon_sym_return] = ACTIONS(2887), + [anon_sym_break] = ACTIONS(2887), + [anon_sym_continue] = ACTIONS(2887), + [anon_sym_goto] = ACTIONS(2887), + [anon_sym_not] = ACTIONS(2887), + [anon_sym_compl] = ACTIONS(2887), + [anon_sym_DASH_DASH] = ACTIONS(2889), + [anon_sym_PLUS_PLUS] = ACTIONS(2889), + [anon_sym_sizeof] = ACTIONS(2887), + [sym_number_literal] = ACTIONS(2889), + [anon_sym_L_SQUOTE] = ACTIONS(2889), + [anon_sym_u_SQUOTE] = ACTIONS(2889), + [anon_sym_U_SQUOTE] = ACTIONS(2889), + [anon_sym_u8_SQUOTE] = ACTIONS(2889), + [anon_sym_SQUOTE] = ACTIONS(2889), + [anon_sym_L_DQUOTE] = ACTIONS(2889), + [anon_sym_u_DQUOTE] = ACTIONS(2889), + [anon_sym_U_DQUOTE] = ACTIONS(2889), + [anon_sym_u8_DQUOTE] = ACTIONS(2889), + [anon_sym_DQUOTE] = ACTIONS(2889), + [sym_true] = ACTIONS(2887), + [sym_false] = ACTIONS(2887), + [sym_null] = ACTIONS(2887), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2887), + [anon_sym_decltype] = ACTIONS(2887), + [anon_sym_virtual] = ACTIONS(2887), + [anon_sym_explicit] = ACTIONS(2887), + [anon_sym_typename] = ACTIONS(2887), + [anon_sym_template] = ACTIONS(2887), + [anon_sym_operator] = ACTIONS(2887), + [anon_sym_try] = ACTIONS(2887), + [anon_sym_delete] = ACTIONS(2887), + [anon_sym_throw] = ACTIONS(2887), + [anon_sym_namespace] = ACTIONS(2887), + [anon_sym_using] = ACTIONS(2887), + [anon_sym_static_assert] = ACTIONS(2887), + [anon_sym_concept] = ACTIONS(2887), + [anon_sym_co_return] = ACTIONS(2887), + [anon_sym_co_yield] = ACTIONS(2887), + [anon_sym_co_await] = ACTIONS(2887), + [anon_sym_new] = ACTIONS(2887), + [anon_sym_requires] = ACTIONS(2887), + [sym_this] = ACTIONS(2887), + [sym_nullptr] = ACTIONS(2887), + [sym_raw_string_literal] = ACTIONS(2889), }, - [1484] = { - [sym__expression] = STATE(3607), - [sym_conditional_expression] = STATE(3881), - [sym_assignment_expression] = STATE(3881), - [sym_pointer_expression] = STATE(2977), - [sym_unary_expression] = STATE(3881), - [sym_binary_expression] = STATE(3881), - [sym_update_expression] = STATE(3881), - [sym_cast_expression] = STATE(3881), - [sym_sizeof_expression] = STATE(3881), - [sym_subscript_expression] = STATE(2977), - [sym_call_expression] = STATE(2977), - [sym_field_expression] = STATE(2977), - [sym_compound_literal_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(2977), - [sym_char_literal] = STATE(3701), - [sym_concatenated_string] = STATE(3701), - [sym_string_literal] = STATE(3219), - [sym__class_name] = STATE(6063), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3881), - [sym_co_await_expression] = STATE(3881), - [sym_new_expression] = STATE(3881), - [sym_delete_expression] = STATE(3881), - [sym_requires_clause] = STATE(3881), - [sym_requires_expression] = STATE(3881), - [sym_lambda_expression] = STATE(3881), - [sym_lambda_capture_specifier] = STATE(4519), - [sym_fold_expression] = STATE(3881), - [sym_parameter_pack_expansion] = STATE(3881), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4642), - [sym_qualified_identifier] = STATE(2977), - [sym_qualified_type_identifier] = STATE(6063), - [sym_user_defined_literal] = STATE(3881), - [sym_identifier] = ACTIONS(3035), - [anon_sym_LPAREN2] = ACTIONS(2531), - [anon_sym_BANG] = ACTIONS(2533), - [anon_sym_TILDE] = ACTIONS(2533), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_STAR] = ACTIONS(2537), - [anon_sym_AMP] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(2539), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(2845), - [anon_sym_DASH_DASH] = ACTIONS(2553), - [anon_sym_PLUS_PLUS] = ACTIONS(2553), - [anon_sym_sizeof] = ACTIONS(2555), - [sym_number_literal] = ACTIONS(2557), - [anon_sym_L_SQUOTE] = ACTIONS(2559), - [anon_sym_u_SQUOTE] = ACTIONS(2559), - [anon_sym_U_SQUOTE] = ACTIONS(2559), - [anon_sym_u8_SQUOTE] = ACTIONS(2559), - [anon_sym_SQUOTE] = ACTIONS(2559), - [anon_sym_L_DQUOTE] = ACTIONS(2561), - [anon_sym_u_DQUOTE] = ACTIONS(2561), - [anon_sym_U_DQUOTE] = ACTIONS(2561), - [anon_sym_u8_DQUOTE] = ACTIONS(2561), - [anon_sym_DQUOTE] = ACTIONS(2561), - [sym_true] = ACTIONS(2563), - [sym_false] = ACTIONS(2563), - [sym_null] = ACTIONS(2563), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2573), - [anon_sym_co_await] = ACTIONS(2575), - [anon_sym_new] = ACTIONS(2577), - [anon_sym_requires] = ACTIONS(2579), - [sym_this] = ACTIONS(2563), - [sym_nullptr] = ACTIONS(2563), - [sym_raw_string_literal] = ACTIONS(2581), + [1030] = { + [sym_identifier] = ACTIONS(2891), + [aux_sym_preproc_include_token1] = ACTIONS(2891), + [aux_sym_preproc_def_token1] = ACTIONS(2891), + [aux_sym_preproc_if_token1] = ACTIONS(2891), + [aux_sym_preproc_if_token2] = ACTIONS(2891), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2891), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2891), + [sym_preproc_directive] = ACTIONS(2891), + [anon_sym_LPAREN2] = ACTIONS(2893), + [anon_sym_BANG] = ACTIONS(2893), + [anon_sym_TILDE] = ACTIONS(2893), + [anon_sym_DASH] = ACTIONS(2891), + [anon_sym_PLUS] = ACTIONS(2891), + [anon_sym_STAR] = ACTIONS(2893), + [anon_sym_AMP_AMP] = ACTIONS(2893), + [anon_sym_AMP] = ACTIONS(2891), + [anon_sym_SEMI] = ACTIONS(2893), + [anon_sym_typedef] = ACTIONS(2891), + [anon_sym_extern] = ACTIONS(2891), + [anon_sym___attribute__] = ACTIONS(2891), + [anon_sym_COLON_COLON] = ACTIONS(2893), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2893), + [anon_sym___declspec] = ACTIONS(2891), + [anon_sym___based] = ACTIONS(2891), + [anon_sym___cdecl] = ACTIONS(2891), + [anon_sym___clrcall] = ACTIONS(2891), + [anon_sym___stdcall] = ACTIONS(2891), + [anon_sym___fastcall] = ACTIONS(2891), + [anon_sym___thiscall] = ACTIONS(2891), + [anon_sym___vectorcall] = ACTIONS(2891), + [anon_sym_LBRACE] = ACTIONS(2893), + [anon_sym_LBRACK] = ACTIONS(2891), + [anon_sym_static] = ACTIONS(2891), + [anon_sym_register] = ACTIONS(2891), + [anon_sym_inline] = ACTIONS(2891), + [anon_sym_thread_local] = ACTIONS(2891), + [anon_sym_const] = ACTIONS(2891), + [anon_sym_volatile] = ACTIONS(2891), + [anon_sym_restrict] = ACTIONS(2891), + [anon_sym__Atomic] = ACTIONS(2891), + [anon_sym_mutable] = ACTIONS(2891), + [anon_sym_constexpr] = ACTIONS(2891), + [anon_sym_constinit] = ACTIONS(2891), + [anon_sym_consteval] = ACTIONS(2891), + [anon_sym_signed] = ACTIONS(2891), + [anon_sym_unsigned] = ACTIONS(2891), + [anon_sym_long] = ACTIONS(2891), + [anon_sym_short] = ACTIONS(2891), + [sym_primitive_type] = ACTIONS(2891), + [anon_sym_enum] = ACTIONS(2891), + [anon_sym_class] = ACTIONS(2891), + [anon_sym_struct] = ACTIONS(2891), + [anon_sym_union] = ACTIONS(2891), + [anon_sym_if] = ACTIONS(2891), + [anon_sym_switch] = ACTIONS(2891), + [anon_sym_case] = ACTIONS(2891), + [anon_sym_default] = ACTIONS(2891), + [anon_sym_while] = ACTIONS(2891), + [anon_sym_do] = ACTIONS(2891), + [anon_sym_for] = ACTIONS(2891), + [anon_sym_return] = ACTIONS(2891), + [anon_sym_break] = ACTIONS(2891), + [anon_sym_continue] = ACTIONS(2891), + [anon_sym_goto] = ACTIONS(2891), + [anon_sym_not] = ACTIONS(2891), + [anon_sym_compl] = ACTIONS(2891), + [anon_sym_DASH_DASH] = ACTIONS(2893), + [anon_sym_PLUS_PLUS] = ACTIONS(2893), + [anon_sym_sizeof] = ACTIONS(2891), + [sym_number_literal] = ACTIONS(2893), + [anon_sym_L_SQUOTE] = ACTIONS(2893), + [anon_sym_u_SQUOTE] = ACTIONS(2893), + [anon_sym_U_SQUOTE] = ACTIONS(2893), + [anon_sym_u8_SQUOTE] = ACTIONS(2893), + [anon_sym_SQUOTE] = ACTIONS(2893), + [anon_sym_L_DQUOTE] = ACTIONS(2893), + [anon_sym_u_DQUOTE] = ACTIONS(2893), + [anon_sym_U_DQUOTE] = ACTIONS(2893), + [anon_sym_u8_DQUOTE] = ACTIONS(2893), + [anon_sym_DQUOTE] = ACTIONS(2893), + [sym_true] = ACTIONS(2891), + [sym_false] = ACTIONS(2891), + [sym_null] = ACTIONS(2891), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2891), + [anon_sym_decltype] = ACTIONS(2891), + [anon_sym_virtual] = ACTIONS(2891), + [anon_sym_explicit] = ACTIONS(2891), + [anon_sym_typename] = ACTIONS(2891), + [anon_sym_template] = ACTIONS(2891), + [anon_sym_operator] = ACTIONS(2891), + [anon_sym_try] = ACTIONS(2891), + [anon_sym_delete] = ACTIONS(2891), + [anon_sym_throw] = ACTIONS(2891), + [anon_sym_namespace] = ACTIONS(2891), + [anon_sym_using] = ACTIONS(2891), + [anon_sym_static_assert] = ACTIONS(2891), + [anon_sym_concept] = ACTIONS(2891), + [anon_sym_co_return] = ACTIONS(2891), + [anon_sym_co_yield] = ACTIONS(2891), + [anon_sym_co_await] = ACTIONS(2891), + [anon_sym_new] = ACTIONS(2891), + [anon_sym_requires] = ACTIONS(2891), + [sym_this] = ACTIONS(2891), + [sym_nullptr] = ACTIONS(2891), + [sym_raw_string_literal] = ACTIONS(2893), }, - [1485] = { - [sym__expression] = STATE(2715), - [sym_conditional_expression] = STATE(2765), - [sym_assignment_expression] = STATE(2765), - [sym_pointer_expression] = STATE(2827), - [sym_unary_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_update_expression] = STATE(2765), - [sym_cast_expression] = STATE(2765), - [sym_sizeof_expression] = STATE(2765), - [sym_subscript_expression] = STATE(2827), - [sym_call_expression] = STATE(2827), - [sym_field_expression] = STATE(2827), - [sym_compound_literal_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2827), - [sym_char_literal] = STATE(2674), - [sym_concatenated_string] = STATE(2674), - [sym_string_literal] = STATE(2093), - [sym__class_name] = STATE(6297), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2765), - [sym_co_await_expression] = STATE(2765), - [sym_new_expression] = STATE(2765), - [sym_delete_expression] = STATE(2765), - [sym_requires_clause] = STATE(2765), - [sym_requires_expression] = STATE(2765), - [sym_lambda_expression] = STATE(2765), - [sym_lambda_capture_specifier] = STATE(4512), - [sym_fold_expression] = STATE(2765), - [sym_parameter_pack_expansion] = STATE(2765), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4648), - [sym_qualified_identifier] = STATE(2827), - [sym_qualified_type_identifier] = STATE(6297), - [sym_user_defined_literal] = STATE(2765), - [sym_identifier] = ACTIONS(2363), - [anon_sym_LPAREN2] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1417), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_COLON_COLON] = ACTIONS(1423), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(2369), - [anon_sym_DASH_DASH] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [anon_sym_sizeof] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(1439), - [anon_sym_L_SQUOTE] = ACTIONS(1441), - [anon_sym_u_SQUOTE] = ACTIONS(1441), - [anon_sym_U_SQUOTE] = ACTIONS(1441), - [anon_sym_u8_SQUOTE] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1441), - [anon_sym_L_DQUOTE] = ACTIONS(1443), - [anon_sym_u_DQUOTE] = ACTIONS(1443), - [anon_sym_U_DQUOTE] = ACTIONS(1443), - [anon_sym_u8_DQUOTE] = ACTIONS(1443), - [anon_sym_DQUOTE] = ACTIONS(1443), - [sym_true] = ACTIONS(1445), - [sym_false] = ACTIONS(1445), - [sym_null] = ACTIONS(1445), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_co_await] = ACTIONS(1451), - [anon_sym_new] = ACTIONS(1453), - [anon_sym_requires] = ACTIONS(1455), - [sym_this] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(1445), - [sym_raw_string_literal] = ACTIONS(1457), + [1031] = { + [sym_identifier] = ACTIONS(2895), + [aux_sym_preproc_include_token1] = ACTIONS(2895), + [aux_sym_preproc_def_token1] = ACTIONS(2895), + [aux_sym_preproc_if_token1] = ACTIONS(2895), + [aux_sym_preproc_if_token2] = ACTIONS(2895), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2895), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2895), + [sym_preproc_directive] = ACTIONS(2895), + [anon_sym_LPAREN2] = ACTIONS(2897), + [anon_sym_BANG] = ACTIONS(2897), + [anon_sym_TILDE] = ACTIONS(2897), + [anon_sym_DASH] = ACTIONS(2895), + [anon_sym_PLUS] = ACTIONS(2895), + [anon_sym_STAR] = ACTIONS(2897), + [anon_sym_AMP_AMP] = ACTIONS(2897), + [anon_sym_AMP] = ACTIONS(2895), + [anon_sym_SEMI] = ACTIONS(2897), + [anon_sym_typedef] = ACTIONS(2895), + [anon_sym_extern] = ACTIONS(2895), + [anon_sym___attribute__] = ACTIONS(2895), + [anon_sym_COLON_COLON] = ACTIONS(2897), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2897), + [anon_sym___declspec] = ACTIONS(2895), + [anon_sym___based] = ACTIONS(2895), + [anon_sym___cdecl] = ACTIONS(2895), + [anon_sym___clrcall] = ACTIONS(2895), + [anon_sym___stdcall] = ACTIONS(2895), + [anon_sym___fastcall] = ACTIONS(2895), + [anon_sym___thiscall] = ACTIONS(2895), + [anon_sym___vectorcall] = ACTIONS(2895), + [anon_sym_LBRACE] = ACTIONS(2897), + [anon_sym_LBRACK] = ACTIONS(2895), + [anon_sym_static] = ACTIONS(2895), + [anon_sym_register] = ACTIONS(2895), + [anon_sym_inline] = ACTIONS(2895), + [anon_sym_thread_local] = ACTIONS(2895), + [anon_sym_const] = ACTIONS(2895), + [anon_sym_volatile] = ACTIONS(2895), + [anon_sym_restrict] = ACTIONS(2895), + [anon_sym__Atomic] = ACTIONS(2895), + [anon_sym_mutable] = ACTIONS(2895), + [anon_sym_constexpr] = ACTIONS(2895), + [anon_sym_constinit] = ACTIONS(2895), + [anon_sym_consteval] = ACTIONS(2895), + [anon_sym_signed] = ACTIONS(2895), + [anon_sym_unsigned] = ACTIONS(2895), + [anon_sym_long] = ACTIONS(2895), + [anon_sym_short] = ACTIONS(2895), + [sym_primitive_type] = ACTIONS(2895), + [anon_sym_enum] = ACTIONS(2895), + [anon_sym_class] = ACTIONS(2895), + [anon_sym_struct] = ACTIONS(2895), + [anon_sym_union] = ACTIONS(2895), + [anon_sym_if] = ACTIONS(2895), + [anon_sym_switch] = ACTIONS(2895), + [anon_sym_case] = ACTIONS(2895), + [anon_sym_default] = ACTIONS(2895), + [anon_sym_while] = ACTIONS(2895), + [anon_sym_do] = ACTIONS(2895), + [anon_sym_for] = ACTIONS(2895), + [anon_sym_return] = ACTIONS(2895), + [anon_sym_break] = ACTIONS(2895), + [anon_sym_continue] = ACTIONS(2895), + [anon_sym_goto] = ACTIONS(2895), + [anon_sym_not] = ACTIONS(2895), + [anon_sym_compl] = ACTIONS(2895), + [anon_sym_DASH_DASH] = ACTIONS(2897), + [anon_sym_PLUS_PLUS] = ACTIONS(2897), + [anon_sym_sizeof] = ACTIONS(2895), + [sym_number_literal] = ACTIONS(2897), + [anon_sym_L_SQUOTE] = ACTIONS(2897), + [anon_sym_u_SQUOTE] = ACTIONS(2897), + [anon_sym_U_SQUOTE] = ACTIONS(2897), + [anon_sym_u8_SQUOTE] = ACTIONS(2897), + [anon_sym_SQUOTE] = ACTIONS(2897), + [anon_sym_L_DQUOTE] = ACTIONS(2897), + [anon_sym_u_DQUOTE] = ACTIONS(2897), + [anon_sym_U_DQUOTE] = ACTIONS(2897), + [anon_sym_u8_DQUOTE] = ACTIONS(2897), + [anon_sym_DQUOTE] = ACTIONS(2897), + [sym_true] = ACTIONS(2895), + [sym_false] = ACTIONS(2895), + [sym_null] = ACTIONS(2895), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2895), + [anon_sym_decltype] = ACTIONS(2895), + [anon_sym_virtual] = ACTIONS(2895), + [anon_sym_explicit] = ACTIONS(2895), + [anon_sym_typename] = ACTIONS(2895), + [anon_sym_template] = ACTIONS(2895), + [anon_sym_operator] = ACTIONS(2895), + [anon_sym_try] = ACTIONS(2895), + [anon_sym_delete] = ACTIONS(2895), + [anon_sym_throw] = ACTIONS(2895), + [anon_sym_namespace] = ACTIONS(2895), + [anon_sym_using] = ACTIONS(2895), + [anon_sym_static_assert] = ACTIONS(2895), + [anon_sym_concept] = ACTIONS(2895), + [anon_sym_co_return] = ACTIONS(2895), + [anon_sym_co_yield] = ACTIONS(2895), + [anon_sym_co_await] = ACTIONS(2895), + [anon_sym_new] = ACTIONS(2895), + [anon_sym_requires] = ACTIONS(2895), + [sym_this] = ACTIONS(2895), + [sym_nullptr] = ACTIONS(2895), + [sym_raw_string_literal] = ACTIONS(2897), }, - [1486] = { - [sym__expression] = STATE(3415), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [1032] = { + [sym_identifier] = ACTIONS(2903), + [aux_sym_preproc_include_token1] = ACTIONS(2903), + [aux_sym_preproc_def_token1] = ACTIONS(2903), + [aux_sym_preproc_if_token1] = ACTIONS(2903), + [aux_sym_preproc_if_token2] = ACTIONS(2903), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2903), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2903), + [sym_preproc_directive] = ACTIONS(2903), + [anon_sym_LPAREN2] = ACTIONS(2905), + [anon_sym_BANG] = ACTIONS(2905), + [anon_sym_TILDE] = ACTIONS(2905), + [anon_sym_DASH] = ACTIONS(2903), + [anon_sym_PLUS] = ACTIONS(2903), + [anon_sym_STAR] = ACTIONS(2905), + [anon_sym_AMP_AMP] = ACTIONS(2905), + [anon_sym_AMP] = ACTIONS(2903), + [anon_sym_SEMI] = ACTIONS(2905), + [anon_sym_typedef] = ACTIONS(2903), + [anon_sym_extern] = ACTIONS(2903), + [anon_sym___attribute__] = ACTIONS(2903), + [anon_sym_COLON_COLON] = ACTIONS(2905), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2905), + [anon_sym___declspec] = ACTIONS(2903), + [anon_sym___based] = ACTIONS(2903), + [anon_sym___cdecl] = ACTIONS(2903), + [anon_sym___clrcall] = ACTIONS(2903), + [anon_sym___stdcall] = ACTIONS(2903), + [anon_sym___fastcall] = ACTIONS(2903), + [anon_sym___thiscall] = ACTIONS(2903), + [anon_sym___vectorcall] = ACTIONS(2903), + [anon_sym_LBRACE] = ACTIONS(2905), + [anon_sym_LBRACK] = ACTIONS(2903), + [anon_sym_static] = ACTIONS(2903), + [anon_sym_register] = ACTIONS(2903), + [anon_sym_inline] = ACTIONS(2903), + [anon_sym_thread_local] = ACTIONS(2903), + [anon_sym_const] = ACTIONS(2903), + [anon_sym_volatile] = ACTIONS(2903), + [anon_sym_restrict] = ACTIONS(2903), + [anon_sym__Atomic] = ACTIONS(2903), + [anon_sym_mutable] = ACTIONS(2903), + [anon_sym_constexpr] = ACTIONS(2903), + [anon_sym_constinit] = ACTIONS(2903), + [anon_sym_consteval] = ACTIONS(2903), + [anon_sym_signed] = ACTIONS(2903), + [anon_sym_unsigned] = ACTIONS(2903), + [anon_sym_long] = ACTIONS(2903), + [anon_sym_short] = ACTIONS(2903), + [sym_primitive_type] = ACTIONS(2903), + [anon_sym_enum] = ACTIONS(2903), + [anon_sym_class] = ACTIONS(2903), + [anon_sym_struct] = ACTIONS(2903), + [anon_sym_union] = ACTIONS(2903), + [anon_sym_if] = ACTIONS(2903), + [anon_sym_switch] = ACTIONS(2903), + [anon_sym_case] = ACTIONS(2903), + [anon_sym_default] = ACTIONS(2903), + [anon_sym_while] = ACTIONS(2903), + [anon_sym_do] = ACTIONS(2903), + [anon_sym_for] = ACTIONS(2903), + [anon_sym_return] = ACTIONS(2903), + [anon_sym_break] = ACTIONS(2903), + [anon_sym_continue] = ACTIONS(2903), + [anon_sym_goto] = ACTIONS(2903), + [anon_sym_not] = ACTIONS(2903), + [anon_sym_compl] = ACTIONS(2903), + [anon_sym_DASH_DASH] = ACTIONS(2905), + [anon_sym_PLUS_PLUS] = ACTIONS(2905), + [anon_sym_sizeof] = ACTIONS(2903), + [sym_number_literal] = ACTIONS(2905), + [anon_sym_L_SQUOTE] = ACTIONS(2905), + [anon_sym_u_SQUOTE] = ACTIONS(2905), + [anon_sym_U_SQUOTE] = ACTIONS(2905), + [anon_sym_u8_SQUOTE] = ACTIONS(2905), + [anon_sym_SQUOTE] = ACTIONS(2905), + [anon_sym_L_DQUOTE] = ACTIONS(2905), + [anon_sym_u_DQUOTE] = ACTIONS(2905), + [anon_sym_U_DQUOTE] = ACTIONS(2905), + [anon_sym_u8_DQUOTE] = ACTIONS(2905), + [anon_sym_DQUOTE] = ACTIONS(2905), + [sym_true] = ACTIONS(2903), + [sym_false] = ACTIONS(2903), + [sym_null] = ACTIONS(2903), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2903), + [anon_sym_decltype] = ACTIONS(2903), + [anon_sym_virtual] = ACTIONS(2903), + [anon_sym_explicit] = ACTIONS(2903), + [anon_sym_typename] = ACTIONS(2903), + [anon_sym_template] = ACTIONS(2903), + [anon_sym_operator] = ACTIONS(2903), + [anon_sym_try] = ACTIONS(2903), + [anon_sym_delete] = ACTIONS(2903), + [anon_sym_throw] = ACTIONS(2903), + [anon_sym_namespace] = ACTIONS(2903), + [anon_sym_using] = ACTIONS(2903), + [anon_sym_static_assert] = ACTIONS(2903), + [anon_sym_concept] = ACTIONS(2903), + [anon_sym_co_return] = ACTIONS(2903), + [anon_sym_co_yield] = ACTIONS(2903), + [anon_sym_co_await] = ACTIONS(2903), + [anon_sym_new] = ACTIONS(2903), + [anon_sym_requires] = ACTIONS(2903), + [sym_this] = ACTIONS(2903), + [sym_nullptr] = ACTIONS(2903), + [sym_raw_string_literal] = ACTIONS(2905), }, - [1487] = { - [sym__expression] = STATE(3415), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3682), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), - }, - [1488] = { - [sym__expression] = STATE(3927), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [1033] = { + [sym_identifier] = ACTIONS(2915), + [aux_sym_preproc_include_token1] = ACTIONS(2915), + [aux_sym_preproc_def_token1] = ACTIONS(2915), + [aux_sym_preproc_if_token1] = ACTIONS(2915), + [aux_sym_preproc_if_token2] = ACTIONS(2915), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2915), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2915), + [sym_preproc_directive] = ACTIONS(2915), + [anon_sym_LPAREN2] = ACTIONS(2917), + [anon_sym_BANG] = ACTIONS(2917), + [anon_sym_TILDE] = ACTIONS(2917), + [anon_sym_DASH] = ACTIONS(2915), + [anon_sym_PLUS] = ACTIONS(2915), + [anon_sym_STAR] = ACTIONS(2917), + [anon_sym_AMP_AMP] = ACTIONS(2917), + [anon_sym_AMP] = ACTIONS(2915), + [anon_sym_SEMI] = ACTIONS(2917), + [anon_sym_typedef] = ACTIONS(2915), + [anon_sym_extern] = ACTIONS(2915), + [anon_sym___attribute__] = ACTIONS(2915), + [anon_sym_COLON_COLON] = ACTIONS(2917), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2917), + [anon_sym___declspec] = ACTIONS(2915), + [anon_sym___based] = ACTIONS(2915), + [anon_sym___cdecl] = ACTIONS(2915), + [anon_sym___clrcall] = ACTIONS(2915), + [anon_sym___stdcall] = ACTIONS(2915), + [anon_sym___fastcall] = ACTIONS(2915), + [anon_sym___thiscall] = ACTIONS(2915), + [anon_sym___vectorcall] = ACTIONS(2915), + [anon_sym_LBRACE] = ACTIONS(2917), + [anon_sym_LBRACK] = ACTIONS(2915), + [anon_sym_static] = ACTIONS(2915), + [anon_sym_register] = ACTIONS(2915), + [anon_sym_inline] = ACTIONS(2915), + [anon_sym_thread_local] = ACTIONS(2915), + [anon_sym_const] = ACTIONS(2915), + [anon_sym_volatile] = ACTIONS(2915), + [anon_sym_restrict] = ACTIONS(2915), + [anon_sym__Atomic] = ACTIONS(2915), + [anon_sym_mutable] = ACTIONS(2915), + [anon_sym_constexpr] = ACTIONS(2915), + [anon_sym_constinit] = ACTIONS(2915), + [anon_sym_consteval] = ACTIONS(2915), + [anon_sym_signed] = ACTIONS(2915), + [anon_sym_unsigned] = ACTIONS(2915), + [anon_sym_long] = ACTIONS(2915), + [anon_sym_short] = ACTIONS(2915), + [sym_primitive_type] = ACTIONS(2915), + [anon_sym_enum] = ACTIONS(2915), + [anon_sym_class] = ACTIONS(2915), + [anon_sym_struct] = ACTIONS(2915), + [anon_sym_union] = ACTIONS(2915), + [anon_sym_if] = ACTIONS(2915), + [anon_sym_switch] = ACTIONS(2915), + [anon_sym_case] = ACTIONS(2915), + [anon_sym_default] = ACTIONS(2915), + [anon_sym_while] = ACTIONS(2915), + [anon_sym_do] = ACTIONS(2915), + [anon_sym_for] = ACTIONS(2915), + [anon_sym_return] = ACTIONS(2915), + [anon_sym_break] = ACTIONS(2915), + [anon_sym_continue] = ACTIONS(2915), + [anon_sym_goto] = ACTIONS(2915), + [anon_sym_not] = ACTIONS(2915), + [anon_sym_compl] = ACTIONS(2915), + [anon_sym_DASH_DASH] = ACTIONS(2917), + [anon_sym_PLUS_PLUS] = ACTIONS(2917), + [anon_sym_sizeof] = ACTIONS(2915), + [sym_number_literal] = ACTIONS(2917), + [anon_sym_L_SQUOTE] = ACTIONS(2917), + [anon_sym_u_SQUOTE] = ACTIONS(2917), + [anon_sym_U_SQUOTE] = ACTIONS(2917), + [anon_sym_u8_SQUOTE] = ACTIONS(2917), + [anon_sym_SQUOTE] = ACTIONS(2917), + [anon_sym_L_DQUOTE] = ACTIONS(2917), + [anon_sym_u_DQUOTE] = ACTIONS(2917), + [anon_sym_U_DQUOTE] = ACTIONS(2917), + [anon_sym_u8_DQUOTE] = ACTIONS(2917), + [anon_sym_DQUOTE] = ACTIONS(2917), + [sym_true] = ACTIONS(2915), + [sym_false] = ACTIONS(2915), + [sym_null] = ACTIONS(2915), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2915), + [anon_sym_decltype] = ACTIONS(2915), + [anon_sym_virtual] = ACTIONS(2915), + [anon_sym_explicit] = ACTIONS(2915), + [anon_sym_typename] = ACTIONS(2915), + [anon_sym_template] = ACTIONS(2915), + [anon_sym_operator] = ACTIONS(2915), + [anon_sym_try] = ACTIONS(2915), + [anon_sym_delete] = ACTIONS(2915), + [anon_sym_throw] = ACTIONS(2915), + [anon_sym_namespace] = ACTIONS(2915), + [anon_sym_using] = ACTIONS(2915), + [anon_sym_static_assert] = ACTIONS(2915), + [anon_sym_concept] = ACTIONS(2915), + [anon_sym_co_return] = ACTIONS(2915), + [anon_sym_co_yield] = ACTIONS(2915), + [anon_sym_co_await] = ACTIONS(2915), + [anon_sym_new] = ACTIONS(2915), + [anon_sym_requires] = ACTIONS(2915), + [sym_this] = ACTIONS(2915), + [sym_nullptr] = ACTIONS(2915), + [sym_raw_string_literal] = ACTIONS(2917), }, - [1489] = { - [sym__expression] = STATE(2866), - [sym_conditional_expression] = STATE(3000), - [sym_assignment_expression] = STATE(3000), - [sym_pointer_expression] = STATE(3006), - [sym_unary_expression] = STATE(3000), - [sym_binary_expression] = STATE(3000), - [sym_update_expression] = STATE(3000), - [sym_cast_expression] = STATE(3000), - [sym_sizeof_expression] = STATE(3000), - [sym_subscript_expression] = STATE(3006), - [sym_call_expression] = STATE(3006), - [sym_field_expression] = STATE(3006), - [sym_compound_literal_expression] = STATE(3000), - [sym_parenthesized_expression] = STATE(3006), - [sym_char_literal] = STATE(2896), - [sym_concatenated_string] = STATE(2896), - [sym_string_literal] = STATE(2154), - [sym__class_name] = STATE(5849), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3000), - [sym_co_await_expression] = STATE(3000), - [sym_new_expression] = STATE(3000), - [sym_delete_expression] = STATE(3000), - [sym_requires_clause] = STATE(3000), - [sym_requires_expression] = STATE(3000), - [sym_lambda_expression] = STATE(3000), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3000), - [sym_parameter_pack_expansion] = STATE(3000), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4642), - [sym_qualified_identifier] = STATE(3006), - [sym_qualified_type_identifier] = STATE(5849), - [sym_user_defined_literal] = STATE(3000), - [sym_identifier] = ACTIONS(2831), - [anon_sym_LPAREN2] = ACTIONS(2833), - [anon_sym_BANG] = ACTIONS(2837), - [anon_sym_TILDE] = ACTIONS(2837), - [anon_sym_DASH] = ACTIONS(2835), - [anon_sym_PLUS] = ACTIONS(2835), - [anon_sym_STAR] = ACTIONS(2537), - [anon_sym_AMP] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(2841), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(2845), - [anon_sym_DASH_DASH] = ACTIONS(2847), - [anon_sym_PLUS_PLUS] = ACTIONS(2847), - [anon_sym_sizeof] = ACTIONS(2849), - [sym_number_literal] = ACTIONS(2851), - [anon_sym_L_SQUOTE] = ACTIONS(2853), - [anon_sym_u_SQUOTE] = ACTIONS(2853), - [anon_sym_U_SQUOTE] = ACTIONS(2853), - [anon_sym_u8_SQUOTE] = ACTIONS(2853), - [anon_sym_SQUOTE] = ACTIONS(2853), - [anon_sym_L_DQUOTE] = ACTIONS(2855), - [anon_sym_u_DQUOTE] = ACTIONS(2855), - [anon_sym_U_DQUOTE] = ACTIONS(2855), - [anon_sym_u8_DQUOTE] = ACTIONS(2855), - [anon_sym_DQUOTE] = ACTIONS(2855), - [sym_true] = ACTIONS(2857), - [sym_false] = ACTIONS(2857), - [sym_null] = ACTIONS(2857), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_co_await] = ACTIONS(2861), - [anon_sym_new] = ACTIONS(2863), - [anon_sym_requires] = ACTIONS(2865), - [sym_this] = ACTIONS(2857), - [sym_nullptr] = ACTIONS(2857), - [sym_raw_string_literal] = ACTIONS(2867), + [1034] = { + [sym_identifier] = ACTIONS(2923), + [aux_sym_preproc_include_token1] = ACTIONS(2923), + [aux_sym_preproc_def_token1] = ACTIONS(2923), + [aux_sym_preproc_if_token1] = ACTIONS(2923), + [aux_sym_preproc_if_token2] = ACTIONS(2923), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2923), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2923), + [sym_preproc_directive] = ACTIONS(2923), + [anon_sym_LPAREN2] = ACTIONS(2925), + [anon_sym_BANG] = ACTIONS(2925), + [anon_sym_TILDE] = ACTIONS(2925), + [anon_sym_DASH] = ACTIONS(2923), + [anon_sym_PLUS] = ACTIONS(2923), + [anon_sym_STAR] = ACTIONS(2925), + [anon_sym_AMP_AMP] = ACTIONS(2925), + [anon_sym_AMP] = ACTIONS(2923), + [anon_sym_SEMI] = ACTIONS(2925), + [anon_sym_typedef] = ACTIONS(2923), + [anon_sym_extern] = ACTIONS(2923), + [anon_sym___attribute__] = ACTIONS(2923), + [anon_sym_COLON_COLON] = ACTIONS(2925), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2925), + [anon_sym___declspec] = ACTIONS(2923), + [anon_sym___based] = ACTIONS(2923), + [anon_sym___cdecl] = ACTIONS(2923), + [anon_sym___clrcall] = ACTIONS(2923), + [anon_sym___stdcall] = ACTIONS(2923), + [anon_sym___fastcall] = ACTIONS(2923), + [anon_sym___thiscall] = ACTIONS(2923), + [anon_sym___vectorcall] = ACTIONS(2923), + [anon_sym_LBRACE] = ACTIONS(2925), + [anon_sym_LBRACK] = ACTIONS(2923), + [anon_sym_static] = ACTIONS(2923), + [anon_sym_register] = ACTIONS(2923), + [anon_sym_inline] = ACTIONS(2923), + [anon_sym_thread_local] = ACTIONS(2923), + [anon_sym_const] = ACTIONS(2923), + [anon_sym_volatile] = ACTIONS(2923), + [anon_sym_restrict] = ACTIONS(2923), + [anon_sym__Atomic] = ACTIONS(2923), + [anon_sym_mutable] = ACTIONS(2923), + [anon_sym_constexpr] = ACTIONS(2923), + [anon_sym_constinit] = ACTIONS(2923), + [anon_sym_consteval] = ACTIONS(2923), + [anon_sym_signed] = ACTIONS(2923), + [anon_sym_unsigned] = ACTIONS(2923), + [anon_sym_long] = ACTIONS(2923), + [anon_sym_short] = ACTIONS(2923), + [sym_primitive_type] = ACTIONS(2923), + [anon_sym_enum] = ACTIONS(2923), + [anon_sym_class] = ACTIONS(2923), + [anon_sym_struct] = ACTIONS(2923), + [anon_sym_union] = ACTIONS(2923), + [anon_sym_if] = ACTIONS(2923), + [anon_sym_switch] = ACTIONS(2923), + [anon_sym_case] = ACTIONS(2923), + [anon_sym_default] = ACTIONS(2923), + [anon_sym_while] = ACTIONS(2923), + [anon_sym_do] = ACTIONS(2923), + [anon_sym_for] = ACTIONS(2923), + [anon_sym_return] = ACTIONS(2923), + [anon_sym_break] = ACTIONS(2923), + [anon_sym_continue] = ACTIONS(2923), + [anon_sym_goto] = ACTIONS(2923), + [anon_sym_not] = ACTIONS(2923), + [anon_sym_compl] = ACTIONS(2923), + [anon_sym_DASH_DASH] = ACTIONS(2925), + [anon_sym_PLUS_PLUS] = ACTIONS(2925), + [anon_sym_sizeof] = ACTIONS(2923), + [sym_number_literal] = ACTIONS(2925), + [anon_sym_L_SQUOTE] = ACTIONS(2925), + [anon_sym_u_SQUOTE] = ACTIONS(2925), + [anon_sym_U_SQUOTE] = ACTIONS(2925), + [anon_sym_u8_SQUOTE] = ACTIONS(2925), + [anon_sym_SQUOTE] = ACTIONS(2925), + [anon_sym_L_DQUOTE] = ACTIONS(2925), + [anon_sym_u_DQUOTE] = ACTIONS(2925), + [anon_sym_U_DQUOTE] = ACTIONS(2925), + [anon_sym_u8_DQUOTE] = ACTIONS(2925), + [anon_sym_DQUOTE] = ACTIONS(2925), + [sym_true] = ACTIONS(2923), + [sym_false] = ACTIONS(2923), + [sym_null] = ACTIONS(2923), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2923), + [anon_sym_decltype] = ACTIONS(2923), + [anon_sym_virtual] = ACTIONS(2923), + [anon_sym_explicit] = ACTIONS(2923), + [anon_sym_typename] = ACTIONS(2923), + [anon_sym_template] = ACTIONS(2923), + [anon_sym_operator] = ACTIONS(2923), + [anon_sym_try] = ACTIONS(2923), + [anon_sym_delete] = ACTIONS(2923), + [anon_sym_throw] = ACTIONS(2923), + [anon_sym_namespace] = ACTIONS(2923), + [anon_sym_using] = ACTIONS(2923), + [anon_sym_static_assert] = ACTIONS(2923), + [anon_sym_concept] = ACTIONS(2923), + [anon_sym_co_return] = ACTIONS(2923), + [anon_sym_co_yield] = ACTIONS(2923), + [anon_sym_co_await] = ACTIONS(2923), + [anon_sym_new] = ACTIONS(2923), + [anon_sym_requires] = ACTIONS(2923), + [sym_this] = ACTIONS(2923), + [sym_nullptr] = ACTIONS(2923), + [sym_raw_string_literal] = ACTIONS(2925), }, - [1490] = { - [sym__expression] = STATE(2867), - [sym_conditional_expression] = STATE(3000), - [sym_assignment_expression] = STATE(3000), - [sym_pointer_expression] = STATE(3006), - [sym_unary_expression] = STATE(3000), - [sym_binary_expression] = STATE(3000), - [sym_update_expression] = STATE(3000), - [sym_cast_expression] = STATE(3000), - [sym_sizeof_expression] = STATE(3000), - [sym_subscript_expression] = STATE(3006), - [sym_call_expression] = STATE(3006), - [sym_field_expression] = STATE(3006), - [sym_compound_literal_expression] = STATE(3000), - [sym_parenthesized_expression] = STATE(3006), - [sym_char_literal] = STATE(2896), - [sym_concatenated_string] = STATE(2896), - [sym_string_literal] = STATE(2154), - [sym__class_name] = STATE(5849), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3000), - [sym_co_await_expression] = STATE(3000), - [sym_new_expression] = STATE(3000), - [sym_delete_expression] = STATE(3000), - [sym_requires_clause] = STATE(3000), - [sym_requires_expression] = STATE(3000), - [sym_lambda_expression] = STATE(3000), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3000), - [sym_parameter_pack_expansion] = STATE(3000), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4642), - [sym_qualified_identifier] = STATE(3006), - [sym_qualified_type_identifier] = STATE(5849), - [sym_user_defined_literal] = STATE(3000), - [sym_identifier] = ACTIONS(2831), - [anon_sym_LPAREN2] = ACTIONS(2833), - [anon_sym_BANG] = ACTIONS(2837), - [anon_sym_TILDE] = ACTIONS(2837), - [anon_sym_DASH] = ACTIONS(2835), - [anon_sym_PLUS] = ACTIONS(2835), - [anon_sym_STAR] = ACTIONS(2537), - [anon_sym_AMP] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(2841), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(2845), - [anon_sym_DASH_DASH] = ACTIONS(2847), - [anon_sym_PLUS_PLUS] = ACTIONS(2847), - [anon_sym_sizeof] = ACTIONS(2849), - [sym_number_literal] = ACTIONS(2851), - [anon_sym_L_SQUOTE] = ACTIONS(2853), - [anon_sym_u_SQUOTE] = ACTIONS(2853), - [anon_sym_U_SQUOTE] = ACTIONS(2853), - [anon_sym_u8_SQUOTE] = ACTIONS(2853), - [anon_sym_SQUOTE] = ACTIONS(2853), - [anon_sym_L_DQUOTE] = ACTIONS(2855), - [anon_sym_u_DQUOTE] = ACTIONS(2855), - [anon_sym_U_DQUOTE] = ACTIONS(2855), - [anon_sym_u8_DQUOTE] = ACTIONS(2855), - [anon_sym_DQUOTE] = ACTIONS(2855), - [sym_true] = ACTIONS(2857), - [sym_false] = ACTIONS(2857), - [sym_null] = ACTIONS(2857), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_co_await] = ACTIONS(2861), - [anon_sym_new] = ACTIONS(2863), + [1035] = { + [sym_identifier] = ACTIONS(2865), + [aux_sym_preproc_include_token1] = ACTIONS(2865), + [aux_sym_preproc_def_token1] = ACTIONS(2865), + [aux_sym_preproc_if_token1] = ACTIONS(2865), + [aux_sym_preproc_if_token2] = ACTIONS(2865), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2865), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2865), + [sym_preproc_directive] = ACTIONS(2865), + [anon_sym_LPAREN2] = ACTIONS(2867), + [anon_sym_BANG] = ACTIONS(2867), + [anon_sym_TILDE] = ACTIONS(2867), + [anon_sym_DASH] = ACTIONS(2865), + [anon_sym_PLUS] = ACTIONS(2865), + [anon_sym_STAR] = ACTIONS(2867), + [anon_sym_AMP_AMP] = ACTIONS(2867), + [anon_sym_AMP] = ACTIONS(2865), + [anon_sym_SEMI] = ACTIONS(2867), + [anon_sym_typedef] = ACTIONS(2865), + [anon_sym_extern] = ACTIONS(2865), + [anon_sym___attribute__] = ACTIONS(2865), + [anon_sym_COLON_COLON] = ACTIONS(2867), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2867), + [anon_sym___declspec] = ACTIONS(2865), + [anon_sym___based] = ACTIONS(2865), + [anon_sym___cdecl] = ACTIONS(2865), + [anon_sym___clrcall] = ACTIONS(2865), + [anon_sym___stdcall] = ACTIONS(2865), + [anon_sym___fastcall] = ACTIONS(2865), + [anon_sym___thiscall] = ACTIONS(2865), + [anon_sym___vectorcall] = ACTIONS(2865), + [anon_sym_LBRACE] = ACTIONS(2867), + [anon_sym_LBRACK] = ACTIONS(2865), + [anon_sym_static] = ACTIONS(2865), + [anon_sym_register] = ACTIONS(2865), + [anon_sym_inline] = ACTIONS(2865), + [anon_sym_thread_local] = ACTIONS(2865), + [anon_sym_const] = ACTIONS(2865), + [anon_sym_volatile] = ACTIONS(2865), + [anon_sym_restrict] = ACTIONS(2865), + [anon_sym__Atomic] = ACTIONS(2865), + [anon_sym_mutable] = ACTIONS(2865), + [anon_sym_constexpr] = ACTIONS(2865), + [anon_sym_constinit] = ACTIONS(2865), + [anon_sym_consteval] = ACTIONS(2865), + [anon_sym_signed] = ACTIONS(2865), + [anon_sym_unsigned] = ACTIONS(2865), + [anon_sym_long] = ACTIONS(2865), + [anon_sym_short] = ACTIONS(2865), + [sym_primitive_type] = ACTIONS(2865), + [anon_sym_enum] = ACTIONS(2865), + [anon_sym_class] = ACTIONS(2865), + [anon_sym_struct] = ACTIONS(2865), + [anon_sym_union] = ACTIONS(2865), + [anon_sym_if] = ACTIONS(2865), + [anon_sym_switch] = ACTIONS(2865), + [anon_sym_case] = ACTIONS(2865), + [anon_sym_default] = ACTIONS(2865), + [anon_sym_while] = ACTIONS(2865), + [anon_sym_do] = ACTIONS(2865), + [anon_sym_for] = ACTIONS(2865), + [anon_sym_return] = ACTIONS(2865), + [anon_sym_break] = ACTIONS(2865), + [anon_sym_continue] = ACTIONS(2865), + [anon_sym_goto] = ACTIONS(2865), + [anon_sym_not] = ACTIONS(2865), + [anon_sym_compl] = ACTIONS(2865), + [anon_sym_DASH_DASH] = ACTIONS(2867), + [anon_sym_PLUS_PLUS] = ACTIONS(2867), + [anon_sym_sizeof] = ACTIONS(2865), + [sym_number_literal] = ACTIONS(2867), + [anon_sym_L_SQUOTE] = ACTIONS(2867), + [anon_sym_u_SQUOTE] = ACTIONS(2867), + [anon_sym_U_SQUOTE] = ACTIONS(2867), + [anon_sym_u8_SQUOTE] = ACTIONS(2867), + [anon_sym_SQUOTE] = ACTIONS(2867), + [anon_sym_L_DQUOTE] = ACTIONS(2867), + [anon_sym_u_DQUOTE] = ACTIONS(2867), + [anon_sym_U_DQUOTE] = ACTIONS(2867), + [anon_sym_u8_DQUOTE] = ACTIONS(2867), + [anon_sym_DQUOTE] = ACTIONS(2867), + [sym_true] = ACTIONS(2865), + [sym_false] = ACTIONS(2865), + [sym_null] = ACTIONS(2865), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2865), + [anon_sym_decltype] = ACTIONS(2865), + [anon_sym_virtual] = ACTIONS(2865), + [anon_sym_explicit] = ACTIONS(2865), + [anon_sym_typename] = ACTIONS(2865), + [anon_sym_template] = ACTIONS(2865), + [anon_sym_operator] = ACTIONS(2865), + [anon_sym_try] = ACTIONS(2865), + [anon_sym_delete] = ACTIONS(2865), + [anon_sym_throw] = ACTIONS(2865), + [anon_sym_namespace] = ACTIONS(2865), + [anon_sym_using] = ACTIONS(2865), + [anon_sym_static_assert] = ACTIONS(2865), + [anon_sym_concept] = ACTIONS(2865), + [anon_sym_co_return] = ACTIONS(2865), + [anon_sym_co_yield] = ACTIONS(2865), + [anon_sym_co_await] = ACTIONS(2865), + [anon_sym_new] = ACTIONS(2865), [anon_sym_requires] = ACTIONS(2865), - [sym_this] = ACTIONS(2857), - [sym_nullptr] = ACTIONS(2857), + [sym_this] = ACTIONS(2865), + [sym_nullptr] = ACTIONS(2865), [sym_raw_string_literal] = ACTIONS(2867), }, - [1491] = { - [sym__expression] = STATE(3772), - [sym_conditional_expression] = STATE(3881), - [sym_assignment_expression] = STATE(3881), - [sym_pointer_expression] = STATE(2977), - [sym_unary_expression] = STATE(3881), - [sym_binary_expression] = STATE(3881), - [sym_update_expression] = STATE(3881), - [sym_cast_expression] = STATE(3881), - [sym_sizeof_expression] = STATE(3881), - [sym_subscript_expression] = STATE(2977), - [sym_call_expression] = STATE(2977), - [sym_field_expression] = STATE(2977), - [sym_compound_literal_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(2977), - [sym_char_literal] = STATE(3701), - [sym_concatenated_string] = STATE(3701), - [sym_string_literal] = STATE(3219), - [sym__class_name] = STATE(6063), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3881), - [sym_co_await_expression] = STATE(3881), - [sym_new_expression] = STATE(3881), - [sym_delete_expression] = STATE(3881), - [sym_requires_clause] = STATE(3881), - [sym_requires_expression] = STATE(3881), - [sym_lambda_expression] = STATE(3881), - [sym_lambda_capture_specifier] = STATE(4519), - [sym_fold_expression] = STATE(3881), - [sym_parameter_pack_expansion] = STATE(3881), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4642), - [sym_qualified_identifier] = STATE(2977), - [sym_qualified_type_identifier] = STATE(6063), - [sym_user_defined_literal] = STATE(3881), - [sym_identifier] = ACTIONS(3035), - [anon_sym_LPAREN2] = ACTIONS(2531), - [anon_sym_BANG] = ACTIONS(2533), - [anon_sym_TILDE] = ACTIONS(2533), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_STAR] = ACTIONS(2537), - [anon_sym_AMP] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(2539), - [anon_sym_LBRACK] = ACTIONS(3684), - [sym_primitive_type] = ACTIONS(2845), - [anon_sym_DASH_DASH] = ACTIONS(2553), - [anon_sym_PLUS_PLUS] = ACTIONS(2553), - [anon_sym_sizeof] = ACTIONS(2555), - [sym_number_literal] = ACTIONS(2557), - [anon_sym_L_SQUOTE] = ACTIONS(2559), - [anon_sym_u_SQUOTE] = ACTIONS(2559), - [anon_sym_U_SQUOTE] = ACTIONS(2559), - [anon_sym_u8_SQUOTE] = ACTIONS(2559), - [anon_sym_SQUOTE] = ACTIONS(2559), - [anon_sym_L_DQUOTE] = ACTIONS(2561), - [anon_sym_u_DQUOTE] = ACTIONS(2561), - [anon_sym_U_DQUOTE] = ACTIONS(2561), - [anon_sym_u8_DQUOTE] = ACTIONS(2561), - [anon_sym_DQUOTE] = ACTIONS(2561), - [sym_true] = ACTIONS(2563), - [sym_false] = ACTIONS(2563), - [sym_null] = ACTIONS(2563), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2573), - [anon_sym_co_await] = ACTIONS(2575), - [anon_sym_new] = ACTIONS(2577), - [anon_sym_requires] = ACTIONS(2579), - [sym_this] = ACTIONS(2563), - [sym_nullptr] = ACTIONS(2563), - [sym_raw_string_literal] = ACTIONS(2581), + [1036] = { + [ts_builtin_sym_end] = ACTIONS(2747), + [sym_identifier] = ACTIONS(2745), + [aux_sym_preproc_include_token1] = ACTIONS(2745), + [aux_sym_preproc_def_token1] = ACTIONS(2745), + [aux_sym_preproc_if_token1] = ACTIONS(2745), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2745), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2745), + [sym_preproc_directive] = ACTIONS(2745), + [anon_sym_LPAREN2] = ACTIONS(2747), + [anon_sym_BANG] = ACTIONS(2747), + [anon_sym_TILDE] = ACTIONS(2747), + [anon_sym_DASH] = ACTIONS(2745), + [anon_sym_PLUS] = ACTIONS(2745), + [anon_sym_STAR] = ACTIONS(2747), + [anon_sym_AMP_AMP] = ACTIONS(2747), + [anon_sym_AMP] = ACTIONS(2745), + [anon_sym_SEMI] = ACTIONS(2747), + [anon_sym_typedef] = ACTIONS(2745), + [anon_sym_extern] = ACTIONS(2745), + [anon_sym___attribute__] = ACTIONS(2745), + [anon_sym_COLON_COLON] = ACTIONS(2747), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2747), + [anon_sym___declspec] = ACTIONS(2745), + [anon_sym___based] = ACTIONS(2745), + [anon_sym___cdecl] = ACTIONS(2745), + [anon_sym___clrcall] = ACTIONS(2745), + [anon_sym___stdcall] = ACTIONS(2745), + [anon_sym___fastcall] = ACTIONS(2745), + [anon_sym___thiscall] = ACTIONS(2745), + [anon_sym___vectorcall] = ACTIONS(2745), + [anon_sym_LBRACE] = ACTIONS(2747), + [anon_sym_LBRACK] = ACTIONS(2745), + [anon_sym_static] = ACTIONS(2745), + [anon_sym_register] = ACTIONS(2745), + [anon_sym_inline] = ACTIONS(2745), + [anon_sym_thread_local] = ACTIONS(2745), + [anon_sym_const] = ACTIONS(2745), + [anon_sym_volatile] = ACTIONS(2745), + [anon_sym_restrict] = ACTIONS(2745), + [anon_sym__Atomic] = ACTIONS(2745), + [anon_sym_mutable] = ACTIONS(2745), + [anon_sym_constexpr] = ACTIONS(2745), + [anon_sym_constinit] = ACTIONS(2745), + [anon_sym_consteval] = ACTIONS(2745), + [anon_sym_signed] = ACTIONS(2745), + [anon_sym_unsigned] = ACTIONS(2745), + [anon_sym_long] = ACTIONS(2745), + [anon_sym_short] = ACTIONS(2745), + [sym_primitive_type] = ACTIONS(2745), + [anon_sym_enum] = ACTIONS(2745), + [anon_sym_class] = ACTIONS(2745), + [anon_sym_struct] = ACTIONS(2745), + [anon_sym_union] = ACTIONS(2745), + [anon_sym_if] = ACTIONS(2745), + [anon_sym_switch] = ACTIONS(2745), + [anon_sym_case] = ACTIONS(2745), + [anon_sym_default] = ACTIONS(2745), + [anon_sym_while] = ACTIONS(2745), + [anon_sym_do] = ACTIONS(2745), + [anon_sym_for] = ACTIONS(2745), + [anon_sym_return] = ACTIONS(2745), + [anon_sym_break] = ACTIONS(2745), + [anon_sym_continue] = ACTIONS(2745), + [anon_sym_goto] = ACTIONS(2745), + [anon_sym_not] = ACTIONS(2745), + [anon_sym_compl] = ACTIONS(2745), + [anon_sym_DASH_DASH] = ACTIONS(2747), + [anon_sym_PLUS_PLUS] = ACTIONS(2747), + [anon_sym_sizeof] = ACTIONS(2745), + [sym_number_literal] = ACTIONS(2747), + [anon_sym_L_SQUOTE] = ACTIONS(2747), + [anon_sym_u_SQUOTE] = ACTIONS(2747), + [anon_sym_U_SQUOTE] = ACTIONS(2747), + [anon_sym_u8_SQUOTE] = ACTIONS(2747), + [anon_sym_SQUOTE] = ACTIONS(2747), + [anon_sym_L_DQUOTE] = ACTIONS(2747), + [anon_sym_u_DQUOTE] = ACTIONS(2747), + [anon_sym_U_DQUOTE] = ACTIONS(2747), + [anon_sym_u8_DQUOTE] = ACTIONS(2747), + [anon_sym_DQUOTE] = ACTIONS(2747), + [sym_true] = ACTIONS(2745), + [sym_false] = ACTIONS(2745), + [sym_null] = ACTIONS(2745), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2745), + [anon_sym_decltype] = ACTIONS(2745), + [anon_sym_virtual] = ACTIONS(2745), + [anon_sym_explicit] = ACTIONS(2745), + [anon_sym_typename] = ACTIONS(2745), + [anon_sym_template] = ACTIONS(2745), + [anon_sym_operator] = ACTIONS(2745), + [anon_sym_try] = ACTIONS(2745), + [anon_sym_delete] = ACTIONS(2745), + [anon_sym_throw] = ACTIONS(2745), + [anon_sym_namespace] = ACTIONS(2745), + [anon_sym_using] = ACTIONS(2745), + [anon_sym_static_assert] = ACTIONS(2745), + [anon_sym_concept] = ACTIONS(2745), + [anon_sym_co_return] = ACTIONS(2745), + [anon_sym_co_yield] = ACTIONS(2745), + [anon_sym_co_await] = ACTIONS(2745), + [anon_sym_new] = ACTIONS(2745), + [anon_sym_requires] = ACTIONS(2745), + [sym_this] = ACTIONS(2745), + [sym_nullptr] = ACTIONS(2745), + [sym_raw_string_literal] = ACTIONS(2747), }, - [1492] = { - [sym__expression] = STATE(3713), - [sym_conditional_expression] = STATE(3881), - [sym_assignment_expression] = STATE(3881), - [sym_pointer_expression] = STATE(2977), - [sym_unary_expression] = STATE(3881), - [sym_binary_expression] = STATE(3881), - [sym_update_expression] = STATE(3881), - [sym_cast_expression] = STATE(3881), - [sym_sizeof_expression] = STATE(3881), - [sym_subscript_expression] = STATE(2977), - [sym_call_expression] = STATE(2977), - [sym_field_expression] = STATE(2977), - [sym_compound_literal_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(2977), - [sym_char_literal] = STATE(3701), - [sym_concatenated_string] = STATE(3701), - [sym_string_literal] = STATE(3219), - [sym__class_name] = STATE(6063), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3881), - [sym_co_await_expression] = STATE(3881), - [sym_new_expression] = STATE(3881), - [sym_delete_expression] = STATE(3881), - [sym_requires_clause] = STATE(3881), - [sym_requires_expression] = STATE(3881), - [sym_lambda_expression] = STATE(3881), - [sym_lambda_capture_specifier] = STATE(4519), - [sym_fold_expression] = STATE(3881), - [sym_parameter_pack_expansion] = STATE(3881), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4642), - [sym_qualified_identifier] = STATE(2977), - [sym_qualified_type_identifier] = STATE(6063), - [sym_user_defined_literal] = STATE(3881), - [sym_identifier] = ACTIONS(3035), - [anon_sym_LPAREN2] = ACTIONS(2531), - [anon_sym_BANG] = ACTIONS(2533), - [anon_sym_TILDE] = ACTIONS(2533), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_STAR] = ACTIONS(2537), - [anon_sym_AMP] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(2539), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(2845), - [anon_sym_DASH_DASH] = ACTIONS(2553), - [anon_sym_PLUS_PLUS] = ACTIONS(2553), - [anon_sym_sizeof] = ACTIONS(2555), - [sym_number_literal] = ACTIONS(2557), - [anon_sym_L_SQUOTE] = ACTIONS(2559), - [anon_sym_u_SQUOTE] = ACTIONS(2559), - [anon_sym_U_SQUOTE] = ACTIONS(2559), - [anon_sym_u8_SQUOTE] = ACTIONS(2559), - [anon_sym_SQUOTE] = ACTIONS(2559), - [anon_sym_L_DQUOTE] = ACTIONS(2561), - [anon_sym_u_DQUOTE] = ACTIONS(2561), - [anon_sym_U_DQUOTE] = ACTIONS(2561), - [anon_sym_u8_DQUOTE] = ACTIONS(2561), - [anon_sym_DQUOTE] = ACTIONS(2561), - [sym_true] = ACTIONS(2563), - [sym_false] = ACTIONS(2563), - [sym_null] = ACTIONS(2563), + [1037] = { + [ts_builtin_sym_end] = ACTIONS(2775), + [sym_identifier] = ACTIONS(2773), + [aux_sym_preproc_include_token1] = ACTIONS(2773), + [aux_sym_preproc_def_token1] = ACTIONS(2773), + [aux_sym_preproc_if_token1] = ACTIONS(2773), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2773), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2773), + [sym_preproc_directive] = ACTIONS(2773), + [anon_sym_LPAREN2] = ACTIONS(2775), + [anon_sym_BANG] = ACTIONS(2775), + [anon_sym_TILDE] = ACTIONS(2775), + [anon_sym_DASH] = ACTIONS(2773), + [anon_sym_PLUS] = ACTIONS(2773), + [anon_sym_STAR] = ACTIONS(2775), + [anon_sym_AMP_AMP] = ACTIONS(2775), + [anon_sym_AMP] = ACTIONS(2773), + [anon_sym_SEMI] = ACTIONS(2775), + [anon_sym_typedef] = ACTIONS(2773), + [anon_sym_extern] = ACTIONS(2773), + [anon_sym___attribute__] = ACTIONS(2773), + [anon_sym_COLON_COLON] = ACTIONS(2775), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2775), + [anon_sym___declspec] = ACTIONS(2773), + [anon_sym___based] = ACTIONS(2773), + [anon_sym___cdecl] = ACTIONS(2773), + [anon_sym___clrcall] = ACTIONS(2773), + [anon_sym___stdcall] = ACTIONS(2773), + [anon_sym___fastcall] = ACTIONS(2773), + [anon_sym___thiscall] = ACTIONS(2773), + [anon_sym___vectorcall] = ACTIONS(2773), + [anon_sym_LBRACE] = ACTIONS(2775), + [anon_sym_LBRACK] = ACTIONS(2773), + [anon_sym_static] = ACTIONS(2773), + [anon_sym_register] = ACTIONS(2773), + [anon_sym_inline] = ACTIONS(2773), + [anon_sym_thread_local] = ACTIONS(2773), + [anon_sym_const] = ACTIONS(2773), + [anon_sym_volatile] = ACTIONS(2773), + [anon_sym_restrict] = ACTIONS(2773), + [anon_sym__Atomic] = ACTIONS(2773), + [anon_sym_mutable] = ACTIONS(2773), + [anon_sym_constexpr] = ACTIONS(2773), + [anon_sym_constinit] = ACTIONS(2773), + [anon_sym_consteval] = ACTIONS(2773), + [anon_sym_signed] = ACTIONS(2773), + [anon_sym_unsigned] = ACTIONS(2773), + [anon_sym_long] = ACTIONS(2773), + [anon_sym_short] = ACTIONS(2773), + [sym_primitive_type] = ACTIONS(2773), + [anon_sym_enum] = ACTIONS(2773), + [anon_sym_class] = ACTIONS(2773), + [anon_sym_struct] = ACTIONS(2773), + [anon_sym_union] = ACTIONS(2773), + [anon_sym_if] = ACTIONS(2773), + [anon_sym_switch] = ACTIONS(2773), + [anon_sym_case] = ACTIONS(2773), + [anon_sym_default] = ACTIONS(2773), + [anon_sym_while] = ACTIONS(2773), + [anon_sym_do] = ACTIONS(2773), + [anon_sym_for] = ACTIONS(2773), + [anon_sym_return] = ACTIONS(2773), + [anon_sym_break] = ACTIONS(2773), + [anon_sym_continue] = ACTIONS(2773), + [anon_sym_goto] = ACTIONS(2773), + [anon_sym_not] = ACTIONS(2773), + [anon_sym_compl] = ACTIONS(2773), + [anon_sym_DASH_DASH] = ACTIONS(2775), + [anon_sym_PLUS_PLUS] = ACTIONS(2775), + [anon_sym_sizeof] = ACTIONS(2773), + [sym_number_literal] = ACTIONS(2775), + [anon_sym_L_SQUOTE] = ACTIONS(2775), + [anon_sym_u_SQUOTE] = ACTIONS(2775), + [anon_sym_U_SQUOTE] = ACTIONS(2775), + [anon_sym_u8_SQUOTE] = ACTIONS(2775), + [anon_sym_SQUOTE] = ACTIONS(2775), + [anon_sym_L_DQUOTE] = ACTIONS(2775), + [anon_sym_u_DQUOTE] = ACTIONS(2775), + [anon_sym_U_DQUOTE] = ACTIONS(2775), + [anon_sym_u8_DQUOTE] = ACTIONS(2775), + [anon_sym_DQUOTE] = ACTIONS(2775), + [sym_true] = ACTIONS(2773), + [sym_false] = ACTIONS(2773), + [sym_null] = ACTIONS(2773), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2573), - [anon_sym_co_await] = ACTIONS(2575), - [anon_sym_new] = ACTIONS(2577), - [anon_sym_requires] = ACTIONS(2579), - [sym_this] = ACTIONS(2563), - [sym_nullptr] = ACTIONS(2563), - [sym_raw_string_literal] = ACTIONS(2581), + [sym_auto] = ACTIONS(2773), + [anon_sym_decltype] = ACTIONS(2773), + [anon_sym_virtual] = ACTIONS(2773), + [anon_sym_explicit] = ACTIONS(2773), + [anon_sym_typename] = ACTIONS(2773), + [anon_sym_template] = ACTIONS(2773), + [anon_sym_operator] = ACTIONS(2773), + [anon_sym_try] = ACTIONS(2773), + [anon_sym_delete] = ACTIONS(2773), + [anon_sym_throw] = ACTIONS(2773), + [anon_sym_namespace] = ACTIONS(2773), + [anon_sym_using] = ACTIONS(2773), + [anon_sym_static_assert] = ACTIONS(2773), + [anon_sym_concept] = ACTIONS(2773), + [anon_sym_co_return] = ACTIONS(2773), + [anon_sym_co_yield] = ACTIONS(2773), + [anon_sym_co_await] = ACTIONS(2773), + [anon_sym_new] = ACTIONS(2773), + [anon_sym_requires] = ACTIONS(2773), + [sym_this] = ACTIONS(2773), + [sym_nullptr] = ACTIONS(2773), + [sym_raw_string_literal] = ACTIONS(2775), }, - [1493] = { - [sym__expression] = STATE(3588), - [sym_conditional_expression] = STATE(3881), - [sym_assignment_expression] = STATE(3881), - [sym_pointer_expression] = STATE(2977), - [sym_unary_expression] = STATE(3881), - [sym_binary_expression] = STATE(3881), - [sym_update_expression] = STATE(3881), - [sym_cast_expression] = STATE(3881), - [sym_sizeof_expression] = STATE(3881), - [sym_subscript_expression] = STATE(2977), - [sym_call_expression] = STATE(2977), - [sym_field_expression] = STATE(2977), - [sym_compound_literal_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(2977), - [sym_char_literal] = STATE(3701), - [sym_concatenated_string] = STATE(3701), - [sym_string_literal] = STATE(3219), - [sym__class_name] = STATE(6063), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3881), - [sym_co_await_expression] = STATE(3881), - [sym_new_expression] = STATE(3881), - [sym_delete_expression] = STATE(3881), - [sym_requires_clause] = STATE(3881), - [sym_requires_expression] = STATE(3881), - [sym_lambda_expression] = STATE(3881), - [sym_lambda_capture_specifier] = STATE(4519), - [sym_fold_expression] = STATE(3881), - [sym_parameter_pack_expansion] = STATE(3881), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4642), - [sym_qualified_identifier] = STATE(2977), - [sym_qualified_type_identifier] = STATE(6063), - [sym_user_defined_literal] = STATE(3881), - [sym_identifier] = ACTIONS(3035), - [anon_sym_LPAREN2] = ACTIONS(2531), - [anon_sym_BANG] = ACTIONS(2533), - [anon_sym_TILDE] = ACTIONS(2533), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_STAR] = ACTIONS(2537), - [anon_sym_AMP] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(2539), - [anon_sym_LBRACK] = ACTIONS(3686), - [sym_primitive_type] = ACTIONS(2845), - [anon_sym_DASH_DASH] = ACTIONS(2553), - [anon_sym_PLUS_PLUS] = ACTIONS(2553), - [anon_sym_sizeof] = ACTIONS(2555), - [sym_number_literal] = ACTIONS(2557), - [anon_sym_L_SQUOTE] = ACTIONS(2559), - [anon_sym_u_SQUOTE] = ACTIONS(2559), - [anon_sym_U_SQUOTE] = ACTIONS(2559), - [anon_sym_u8_SQUOTE] = ACTIONS(2559), - [anon_sym_SQUOTE] = ACTIONS(2559), - [anon_sym_L_DQUOTE] = ACTIONS(2561), - [anon_sym_u_DQUOTE] = ACTIONS(2561), - [anon_sym_U_DQUOTE] = ACTIONS(2561), - [anon_sym_u8_DQUOTE] = ACTIONS(2561), - [anon_sym_DQUOTE] = ACTIONS(2561), - [sym_true] = ACTIONS(2563), - [sym_false] = ACTIONS(2563), - [sym_null] = ACTIONS(2563), + [1038] = { + [ts_builtin_sym_end] = ACTIONS(2771), + [sym_identifier] = ACTIONS(2769), + [aux_sym_preproc_include_token1] = ACTIONS(2769), + [aux_sym_preproc_def_token1] = ACTIONS(2769), + [aux_sym_preproc_if_token1] = ACTIONS(2769), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2769), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2769), + [sym_preproc_directive] = ACTIONS(2769), + [anon_sym_LPAREN2] = ACTIONS(2771), + [anon_sym_BANG] = ACTIONS(2771), + [anon_sym_TILDE] = ACTIONS(2771), + [anon_sym_DASH] = ACTIONS(2769), + [anon_sym_PLUS] = ACTIONS(2769), + [anon_sym_STAR] = ACTIONS(2771), + [anon_sym_AMP_AMP] = ACTIONS(2771), + [anon_sym_AMP] = ACTIONS(2769), + [anon_sym_SEMI] = ACTIONS(2771), + [anon_sym_typedef] = ACTIONS(2769), + [anon_sym_extern] = ACTIONS(2769), + [anon_sym___attribute__] = ACTIONS(2769), + [anon_sym_COLON_COLON] = ACTIONS(2771), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2771), + [anon_sym___declspec] = ACTIONS(2769), + [anon_sym___based] = ACTIONS(2769), + [anon_sym___cdecl] = ACTIONS(2769), + [anon_sym___clrcall] = ACTIONS(2769), + [anon_sym___stdcall] = ACTIONS(2769), + [anon_sym___fastcall] = ACTIONS(2769), + [anon_sym___thiscall] = ACTIONS(2769), + [anon_sym___vectorcall] = ACTIONS(2769), + [anon_sym_LBRACE] = ACTIONS(2771), + [anon_sym_LBRACK] = ACTIONS(2769), + [anon_sym_static] = ACTIONS(2769), + [anon_sym_register] = ACTIONS(2769), + [anon_sym_inline] = ACTIONS(2769), + [anon_sym_thread_local] = ACTIONS(2769), + [anon_sym_const] = ACTIONS(2769), + [anon_sym_volatile] = ACTIONS(2769), + [anon_sym_restrict] = ACTIONS(2769), + [anon_sym__Atomic] = ACTIONS(2769), + [anon_sym_mutable] = ACTIONS(2769), + [anon_sym_constexpr] = ACTIONS(2769), + [anon_sym_constinit] = ACTIONS(2769), + [anon_sym_consteval] = ACTIONS(2769), + [anon_sym_signed] = ACTIONS(2769), + [anon_sym_unsigned] = ACTIONS(2769), + [anon_sym_long] = ACTIONS(2769), + [anon_sym_short] = ACTIONS(2769), + [sym_primitive_type] = ACTIONS(2769), + [anon_sym_enum] = ACTIONS(2769), + [anon_sym_class] = ACTIONS(2769), + [anon_sym_struct] = ACTIONS(2769), + [anon_sym_union] = ACTIONS(2769), + [anon_sym_if] = ACTIONS(2769), + [anon_sym_switch] = ACTIONS(2769), + [anon_sym_case] = ACTIONS(2769), + [anon_sym_default] = ACTIONS(2769), + [anon_sym_while] = ACTIONS(2769), + [anon_sym_do] = ACTIONS(2769), + [anon_sym_for] = ACTIONS(2769), + [anon_sym_return] = ACTIONS(2769), + [anon_sym_break] = ACTIONS(2769), + [anon_sym_continue] = ACTIONS(2769), + [anon_sym_goto] = ACTIONS(2769), + [anon_sym_not] = ACTIONS(2769), + [anon_sym_compl] = ACTIONS(2769), + [anon_sym_DASH_DASH] = ACTIONS(2771), + [anon_sym_PLUS_PLUS] = ACTIONS(2771), + [anon_sym_sizeof] = ACTIONS(2769), + [sym_number_literal] = ACTIONS(2771), + [anon_sym_L_SQUOTE] = ACTIONS(2771), + [anon_sym_u_SQUOTE] = ACTIONS(2771), + [anon_sym_U_SQUOTE] = ACTIONS(2771), + [anon_sym_u8_SQUOTE] = ACTIONS(2771), + [anon_sym_SQUOTE] = ACTIONS(2771), + [anon_sym_L_DQUOTE] = ACTIONS(2771), + [anon_sym_u_DQUOTE] = ACTIONS(2771), + [anon_sym_U_DQUOTE] = ACTIONS(2771), + [anon_sym_u8_DQUOTE] = ACTIONS(2771), + [anon_sym_DQUOTE] = ACTIONS(2771), + [sym_true] = ACTIONS(2769), + [sym_false] = ACTIONS(2769), + [sym_null] = ACTIONS(2769), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2573), - [anon_sym_co_await] = ACTIONS(2575), - [anon_sym_new] = ACTIONS(2577), - [anon_sym_requires] = ACTIONS(2579), - [sym_this] = ACTIONS(2563), - [sym_nullptr] = ACTIONS(2563), - [sym_raw_string_literal] = ACTIONS(2581), + [sym_auto] = ACTIONS(2769), + [anon_sym_decltype] = ACTIONS(2769), + [anon_sym_virtual] = ACTIONS(2769), + [anon_sym_explicit] = ACTIONS(2769), + [anon_sym_typename] = ACTIONS(2769), + [anon_sym_template] = ACTIONS(2769), + [anon_sym_operator] = ACTIONS(2769), + [anon_sym_try] = ACTIONS(2769), + [anon_sym_delete] = ACTIONS(2769), + [anon_sym_throw] = ACTIONS(2769), + [anon_sym_namespace] = ACTIONS(2769), + [anon_sym_using] = ACTIONS(2769), + [anon_sym_static_assert] = ACTIONS(2769), + [anon_sym_concept] = ACTIONS(2769), + [anon_sym_co_return] = ACTIONS(2769), + [anon_sym_co_yield] = ACTIONS(2769), + [anon_sym_co_await] = ACTIONS(2769), + [anon_sym_new] = ACTIONS(2769), + [anon_sym_requires] = ACTIONS(2769), + [sym_this] = ACTIONS(2769), + [sym_nullptr] = ACTIONS(2769), + [sym_raw_string_literal] = ACTIONS(2771), }, - [1494] = { - [sym__expression] = STATE(3788), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(3196), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(3196), - [sym_call_expression] = STATE(3196), - [sym_field_expression] = STATE(3196), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(3196), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(3196), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN2] = ACTIONS(3061), - [anon_sym_BANG] = ACTIONS(3065), - [anon_sym_TILDE] = ACTIONS(3065), - [anon_sym_DASH] = ACTIONS(3063), - [anon_sym_PLUS] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(3069), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3071), - [anon_sym_PLUS_PLUS] = ACTIONS(3071), - [anon_sym_sizeof] = ACTIONS(3073), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [1039] = { + [sym_identifier] = ACTIONS(2729), + [aux_sym_preproc_include_token1] = ACTIONS(2729), + [aux_sym_preproc_def_token1] = ACTIONS(2729), + [aux_sym_preproc_if_token1] = ACTIONS(2729), + [aux_sym_preproc_if_token2] = ACTIONS(2729), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2729), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2729), + [sym_preproc_directive] = ACTIONS(2729), + [anon_sym_LPAREN2] = ACTIONS(2731), + [anon_sym_BANG] = ACTIONS(2731), + [anon_sym_TILDE] = ACTIONS(2731), + [anon_sym_DASH] = ACTIONS(2729), + [anon_sym_PLUS] = ACTIONS(2729), + [anon_sym_STAR] = ACTIONS(2731), + [anon_sym_AMP_AMP] = ACTIONS(2731), + [anon_sym_AMP] = ACTIONS(2729), + [anon_sym_SEMI] = ACTIONS(2731), + [anon_sym_typedef] = ACTIONS(2729), + [anon_sym_extern] = ACTIONS(2729), + [anon_sym___attribute__] = ACTIONS(2729), + [anon_sym_COLON_COLON] = ACTIONS(2731), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2731), + [anon_sym___declspec] = ACTIONS(2729), + [anon_sym___based] = ACTIONS(2729), + [anon_sym___cdecl] = ACTIONS(2729), + [anon_sym___clrcall] = ACTIONS(2729), + [anon_sym___stdcall] = ACTIONS(2729), + [anon_sym___fastcall] = ACTIONS(2729), + [anon_sym___thiscall] = ACTIONS(2729), + [anon_sym___vectorcall] = ACTIONS(2729), + [anon_sym_LBRACE] = ACTIONS(2731), + [anon_sym_LBRACK] = ACTIONS(2729), + [anon_sym_static] = ACTIONS(2729), + [anon_sym_register] = ACTIONS(2729), + [anon_sym_inline] = ACTIONS(2729), + [anon_sym_thread_local] = ACTIONS(2729), + [anon_sym_const] = ACTIONS(2729), + [anon_sym_volatile] = ACTIONS(2729), + [anon_sym_restrict] = ACTIONS(2729), + [anon_sym__Atomic] = ACTIONS(2729), + [anon_sym_mutable] = ACTIONS(2729), + [anon_sym_constexpr] = ACTIONS(2729), + [anon_sym_constinit] = ACTIONS(2729), + [anon_sym_consteval] = ACTIONS(2729), + [anon_sym_signed] = ACTIONS(2729), + [anon_sym_unsigned] = ACTIONS(2729), + [anon_sym_long] = ACTIONS(2729), + [anon_sym_short] = ACTIONS(2729), + [sym_primitive_type] = ACTIONS(2729), + [anon_sym_enum] = ACTIONS(2729), + [anon_sym_class] = ACTIONS(2729), + [anon_sym_struct] = ACTIONS(2729), + [anon_sym_union] = ACTIONS(2729), + [anon_sym_if] = ACTIONS(2729), + [anon_sym_switch] = ACTIONS(2729), + [anon_sym_case] = ACTIONS(2729), + [anon_sym_default] = ACTIONS(2729), + [anon_sym_while] = ACTIONS(2729), + [anon_sym_do] = ACTIONS(2729), + [anon_sym_for] = ACTIONS(2729), + [anon_sym_return] = ACTIONS(2729), + [anon_sym_break] = ACTIONS(2729), + [anon_sym_continue] = ACTIONS(2729), + [anon_sym_goto] = ACTIONS(2729), + [anon_sym_not] = ACTIONS(2729), + [anon_sym_compl] = ACTIONS(2729), + [anon_sym_DASH_DASH] = ACTIONS(2731), + [anon_sym_PLUS_PLUS] = ACTIONS(2731), + [anon_sym_sizeof] = ACTIONS(2729), + [sym_number_literal] = ACTIONS(2731), + [anon_sym_L_SQUOTE] = ACTIONS(2731), + [anon_sym_u_SQUOTE] = ACTIONS(2731), + [anon_sym_U_SQUOTE] = ACTIONS(2731), + [anon_sym_u8_SQUOTE] = ACTIONS(2731), + [anon_sym_SQUOTE] = ACTIONS(2731), + [anon_sym_L_DQUOTE] = ACTIONS(2731), + [anon_sym_u_DQUOTE] = ACTIONS(2731), + [anon_sym_U_DQUOTE] = ACTIONS(2731), + [anon_sym_u8_DQUOTE] = ACTIONS(2731), + [anon_sym_DQUOTE] = ACTIONS(2731), + [sym_true] = ACTIONS(2729), + [sym_false] = ACTIONS(2729), + [sym_null] = ACTIONS(2729), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3075), - [anon_sym_co_await] = ACTIONS(3077), - [anon_sym_new] = ACTIONS(3079), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2729), + [anon_sym_decltype] = ACTIONS(2729), + [anon_sym_virtual] = ACTIONS(2729), + [anon_sym_explicit] = ACTIONS(2729), + [anon_sym_typename] = ACTIONS(2729), + [anon_sym_template] = ACTIONS(2729), + [anon_sym_operator] = ACTIONS(2729), + [anon_sym_try] = ACTIONS(2729), + [anon_sym_delete] = ACTIONS(2729), + [anon_sym_throw] = ACTIONS(2729), + [anon_sym_namespace] = ACTIONS(2729), + [anon_sym_using] = ACTIONS(2729), + [anon_sym_static_assert] = ACTIONS(2729), + [anon_sym_concept] = ACTIONS(2729), + [anon_sym_co_return] = ACTIONS(2729), + [anon_sym_co_yield] = ACTIONS(2729), + [anon_sym_co_await] = ACTIONS(2729), + [anon_sym_new] = ACTIONS(2729), + [anon_sym_requires] = ACTIONS(2729), + [sym_this] = ACTIONS(2729), + [sym_nullptr] = ACTIONS(2729), + [sym_raw_string_literal] = ACTIONS(2731), }, - [1495] = { - [sym__expression] = STATE(3787), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(3196), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(3196), - [sym_call_expression] = STATE(3196), - [sym_field_expression] = STATE(3196), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(3196), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(3196), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN2] = ACTIONS(3061), - [anon_sym_BANG] = ACTIONS(3065), - [anon_sym_TILDE] = ACTIONS(3065), - [anon_sym_DASH] = ACTIONS(3063), - [anon_sym_PLUS] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(3069), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3071), - [anon_sym_PLUS_PLUS] = ACTIONS(3071), - [anon_sym_sizeof] = ACTIONS(3073), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3075), - [anon_sym_co_await] = ACTIONS(3077), - [anon_sym_new] = ACTIONS(3079), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [1040] = { + [sym_identifier] = ACTIONS(2741), + [aux_sym_preproc_include_token1] = ACTIONS(2741), + [aux_sym_preproc_def_token1] = ACTIONS(2741), + [aux_sym_preproc_if_token1] = ACTIONS(2741), + [aux_sym_preproc_if_token2] = ACTIONS(2741), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2741), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2741), + [sym_preproc_directive] = ACTIONS(2741), + [anon_sym_LPAREN2] = ACTIONS(2743), + [anon_sym_BANG] = ACTIONS(2743), + [anon_sym_TILDE] = ACTIONS(2743), + [anon_sym_DASH] = ACTIONS(2741), + [anon_sym_PLUS] = ACTIONS(2741), + [anon_sym_STAR] = ACTIONS(2743), + [anon_sym_AMP_AMP] = ACTIONS(2743), + [anon_sym_AMP] = ACTIONS(2741), + [anon_sym_SEMI] = ACTIONS(2743), + [anon_sym_typedef] = ACTIONS(2741), + [anon_sym_extern] = ACTIONS(2741), + [anon_sym___attribute__] = ACTIONS(2741), + [anon_sym_COLON_COLON] = ACTIONS(2743), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2743), + [anon_sym___declspec] = ACTIONS(2741), + [anon_sym___based] = ACTIONS(2741), + [anon_sym___cdecl] = ACTIONS(2741), + [anon_sym___clrcall] = ACTIONS(2741), + [anon_sym___stdcall] = ACTIONS(2741), + [anon_sym___fastcall] = ACTIONS(2741), + [anon_sym___thiscall] = ACTIONS(2741), + [anon_sym___vectorcall] = ACTIONS(2741), + [anon_sym_LBRACE] = ACTIONS(2743), + [anon_sym_LBRACK] = ACTIONS(2741), + [anon_sym_static] = ACTIONS(2741), + [anon_sym_register] = ACTIONS(2741), + [anon_sym_inline] = ACTIONS(2741), + [anon_sym_thread_local] = ACTIONS(2741), + [anon_sym_const] = ACTIONS(2741), + [anon_sym_volatile] = ACTIONS(2741), + [anon_sym_restrict] = ACTIONS(2741), + [anon_sym__Atomic] = ACTIONS(2741), + [anon_sym_mutable] = ACTIONS(2741), + [anon_sym_constexpr] = ACTIONS(2741), + [anon_sym_constinit] = ACTIONS(2741), + [anon_sym_consteval] = ACTIONS(2741), + [anon_sym_signed] = ACTIONS(2741), + [anon_sym_unsigned] = ACTIONS(2741), + [anon_sym_long] = ACTIONS(2741), + [anon_sym_short] = ACTIONS(2741), + [sym_primitive_type] = ACTIONS(2741), + [anon_sym_enum] = ACTIONS(2741), + [anon_sym_class] = ACTIONS(2741), + [anon_sym_struct] = ACTIONS(2741), + [anon_sym_union] = ACTIONS(2741), + [anon_sym_if] = ACTIONS(2741), + [anon_sym_switch] = ACTIONS(2741), + [anon_sym_case] = ACTIONS(2741), + [anon_sym_default] = ACTIONS(2741), + [anon_sym_while] = ACTIONS(2741), + [anon_sym_do] = ACTIONS(2741), + [anon_sym_for] = ACTIONS(2741), + [anon_sym_return] = ACTIONS(2741), + [anon_sym_break] = ACTIONS(2741), + [anon_sym_continue] = ACTIONS(2741), + [anon_sym_goto] = ACTIONS(2741), + [anon_sym_not] = ACTIONS(2741), + [anon_sym_compl] = ACTIONS(2741), + [anon_sym_DASH_DASH] = ACTIONS(2743), + [anon_sym_PLUS_PLUS] = ACTIONS(2743), + [anon_sym_sizeof] = ACTIONS(2741), + [sym_number_literal] = ACTIONS(2743), + [anon_sym_L_SQUOTE] = ACTIONS(2743), + [anon_sym_u_SQUOTE] = ACTIONS(2743), + [anon_sym_U_SQUOTE] = ACTIONS(2743), + [anon_sym_u8_SQUOTE] = ACTIONS(2743), + [anon_sym_SQUOTE] = ACTIONS(2743), + [anon_sym_L_DQUOTE] = ACTIONS(2743), + [anon_sym_u_DQUOTE] = ACTIONS(2743), + [anon_sym_U_DQUOTE] = ACTIONS(2743), + [anon_sym_u8_DQUOTE] = ACTIONS(2743), + [anon_sym_DQUOTE] = ACTIONS(2743), + [sym_true] = ACTIONS(2741), + [sym_false] = ACTIONS(2741), + [sym_null] = ACTIONS(2741), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2741), + [anon_sym_decltype] = ACTIONS(2741), + [anon_sym_virtual] = ACTIONS(2741), + [anon_sym_explicit] = ACTIONS(2741), + [anon_sym_typename] = ACTIONS(2741), + [anon_sym_template] = ACTIONS(2741), + [anon_sym_operator] = ACTIONS(2741), + [anon_sym_try] = ACTIONS(2741), + [anon_sym_delete] = ACTIONS(2741), + [anon_sym_throw] = ACTIONS(2741), + [anon_sym_namespace] = ACTIONS(2741), + [anon_sym_using] = ACTIONS(2741), + [anon_sym_static_assert] = ACTIONS(2741), + [anon_sym_concept] = ACTIONS(2741), + [anon_sym_co_return] = ACTIONS(2741), + [anon_sym_co_yield] = ACTIONS(2741), + [anon_sym_co_await] = ACTIONS(2741), + [anon_sym_new] = ACTIONS(2741), + [anon_sym_requires] = ACTIONS(2741), + [sym_this] = ACTIONS(2741), + [sym_nullptr] = ACTIONS(2741), + [sym_raw_string_literal] = ACTIONS(2743), }, - [1496] = { - [sym__expression] = STATE(3796), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(3196), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(3196), - [sym_call_expression] = STATE(3196), - [sym_field_expression] = STATE(3196), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(3196), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(3196), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN2] = ACTIONS(3061), - [anon_sym_BANG] = ACTIONS(3065), - [anon_sym_TILDE] = ACTIONS(3065), - [anon_sym_DASH] = ACTIONS(3063), - [anon_sym_PLUS] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(3069), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3071), - [anon_sym_PLUS_PLUS] = ACTIONS(3071), - [anon_sym_sizeof] = ACTIONS(3073), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3075), - [anon_sym_co_await] = ACTIONS(3077), - [anon_sym_new] = ACTIONS(3079), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [1041] = { + [sym_identifier] = ACTIONS(2745), + [aux_sym_preproc_include_token1] = ACTIONS(2745), + [aux_sym_preproc_def_token1] = ACTIONS(2745), + [aux_sym_preproc_if_token1] = ACTIONS(2745), + [aux_sym_preproc_if_token2] = ACTIONS(2745), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2745), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2745), + [sym_preproc_directive] = ACTIONS(2745), + [anon_sym_LPAREN2] = ACTIONS(2747), + [anon_sym_BANG] = ACTIONS(2747), + [anon_sym_TILDE] = ACTIONS(2747), + [anon_sym_DASH] = ACTIONS(2745), + [anon_sym_PLUS] = ACTIONS(2745), + [anon_sym_STAR] = ACTIONS(2747), + [anon_sym_AMP_AMP] = ACTIONS(2747), + [anon_sym_AMP] = ACTIONS(2745), + [anon_sym_SEMI] = ACTIONS(2747), + [anon_sym_typedef] = ACTIONS(2745), + [anon_sym_extern] = ACTIONS(2745), + [anon_sym___attribute__] = ACTIONS(2745), + [anon_sym_COLON_COLON] = ACTIONS(2747), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2747), + [anon_sym___declspec] = ACTIONS(2745), + [anon_sym___based] = ACTIONS(2745), + [anon_sym___cdecl] = ACTIONS(2745), + [anon_sym___clrcall] = ACTIONS(2745), + [anon_sym___stdcall] = ACTIONS(2745), + [anon_sym___fastcall] = ACTIONS(2745), + [anon_sym___thiscall] = ACTIONS(2745), + [anon_sym___vectorcall] = ACTIONS(2745), + [anon_sym_LBRACE] = ACTIONS(2747), + [anon_sym_LBRACK] = ACTIONS(2745), + [anon_sym_static] = ACTIONS(2745), + [anon_sym_register] = ACTIONS(2745), + [anon_sym_inline] = ACTIONS(2745), + [anon_sym_thread_local] = ACTIONS(2745), + [anon_sym_const] = ACTIONS(2745), + [anon_sym_volatile] = ACTIONS(2745), + [anon_sym_restrict] = ACTIONS(2745), + [anon_sym__Atomic] = ACTIONS(2745), + [anon_sym_mutable] = ACTIONS(2745), + [anon_sym_constexpr] = ACTIONS(2745), + [anon_sym_constinit] = ACTIONS(2745), + [anon_sym_consteval] = ACTIONS(2745), + [anon_sym_signed] = ACTIONS(2745), + [anon_sym_unsigned] = ACTIONS(2745), + [anon_sym_long] = ACTIONS(2745), + [anon_sym_short] = ACTIONS(2745), + [sym_primitive_type] = ACTIONS(2745), + [anon_sym_enum] = ACTIONS(2745), + [anon_sym_class] = ACTIONS(2745), + [anon_sym_struct] = ACTIONS(2745), + [anon_sym_union] = ACTIONS(2745), + [anon_sym_if] = ACTIONS(2745), + [anon_sym_switch] = ACTIONS(2745), + [anon_sym_case] = ACTIONS(2745), + [anon_sym_default] = ACTIONS(2745), + [anon_sym_while] = ACTIONS(2745), + [anon_sym_do] = ACTIONS(2745), + [anon_sym_for] = ACTIONS(2745), + [anon_sym_return] = ACTIONS(2745), + [anon_sym_break] = ACTIONS(2745), + [anon_sym_continue] = ACTIONS(2745), + [anon_sym_goto] = ACTIONS(2745), + [anon_sym_not] = ACTIONS(2745), + [anon_sym_compl] = ACTIONS(2745), + [anon_sym_DASH_DASH] = ACTIONS(2747), + [anon_sym_PLUS_PLUS] = ACTIONS(2747), + [anon_sym_sizeof] = ACTIONS(2745), + [sym_number_literal] = ACTIONS(2747), + [anon_sym_L_SQUOTE] = ACTIONS(2747), + [anon_sym_u_SQUOTE] = ACTIONS(2747), + [anon_sym_U_SQUOTE] = ACTIONS(2747), + [anon_sym_u8_SQUOTE] = ACTIONS(2747), + [anon_sym_SQUOTE] = ACTIONS(2747), + [anon_sym_L_DQUOTE] = ACTIONS(2747), + [anon_sym_u_DQUOTE] = ACTIONS(2747), + [anon_sym_U_DQUOTE] = ACTIONS(2747), + [anon_sym_u8_DQUOTE] = ACTIONS(2747), + [anon_sym_DQUOTE] = ACTIONS(2747), + [sym_true] = ACTIONS(2745), + [sym_false] = ACTIONS(2745), + [sym_null] = ACTIONS(2745), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2745), + [anon_sym_decltype] = ACTIONS(2745), + [anon_sym_virtual] = ACTIONS(2745), + [anon_sym_explicit] = ACTIONS(2745), + [anon_sym_typename] = ACTIONS(2745), + [anon_sym_template] = ACTIONS(2745), + [anon_sym_operator] = ACTIONS(2745), + [anon_sym_try] = ACTIONS(2745), + [anon_sym_delete] = ACTIONS(2745), + [anon_sym_throw] = ACTIONS(2745), + [anon_sym_namespace] = ACTIONS(2745), + [anon_sym_using] = ACTIONS(2745), + [anon_sym_static_assert] = ACTIONS(2745), + [anon_sym_concept] = ACTIONS(2745), + [anon_sym_co_return] = ACTIONS(2745), + [anon_sym_co_yield] = ACTIONS(2745), + [anon_sym_co_await] = ACTIONS(2745), + [anon_sym_new] = ACTIONS(2745), + [anon_sym_requires] = ACTIONS(2745), + [sym_this] = ACTIONS(2745), + [sym_nullptr] = ACTIONS(2745), + [sym_raw_string_literal] = ACTIONS(2747), }, - [1497] = { - [sym__expression] = STATE(2868), - [sym_conditional_expression] = STATE(3000), - [sym_assignment_expression] = STATE(3000), - [sym_pointer_expression] = STATE(3006), - [sym_unary_expression] = STATE(3000), - [sym_binary_expression] = STATE(3000), - [sym_update_expression] = STATE(3000), - [sym_cast_expression] = STATE(3000), - [sym_sizeof_expression] = STATE(3000), - [sym_subscript_expression] = STATE(3006), - [sym_call_expression] = STATE(3006), - [sym_field_expression] = STATE(3006), - [sym_compound_literal_expression] = STATE(3000), - [sym_parenthesized_expression] = STATE(3006), - [sym_char_literal] = STATE(2896), - [sym_concatenated_string] = STATE(2896), - [sym_string_literal] = STATE(2154), - [sym__class_name] = STATE(5849), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3000), - [sym_co_await_expression] = STATE(3000), - [sym_new_expression] = STATE(3000), - [sym_delete_expression] = STATE(3000), - [sym_requires_clause] = STATE(3000), - [sym_requires_expression] = STATE(3000), - [sym_lambda_expression] = STATE(3000), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3000), - [sym_parameter_pack_expansion] = STATE(3000), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4642), - [sym_qualified_identifier] = STATE(3006), - [sym_qualified_type_identifier] = STATE(5849), - [sym_user_defined_literal] = STATE(3000), - [sym_identifier] = ACTIONS(2831), - [anon_sym_LPAREN2] = ACTIONS(2833), - [anon_sym_BANG] = ACTIONS(2837), - [anon_sym_TILDE] = ACTIONS(2837), - [anon_sym_DASH] = ACTIONS(2835), - [anon_sym_PLUS] = ACTIONS(2835), - [anon_sym_STAR] = ACTIONS(2537), - [anon_sym_AMP] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(2841), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(2845), - [anon_sym_DASH_DASH] = ACTIONS(2847), - [anon_sym_PLUS_PLUS] = ACTIONS(2847), - [anon_sym_sizeof] = ACTIONS(2849), - [sym_number_literal] = ACTIONS(2851), - [anon_sym_L_SQUOTE] = ACTIONS(2853), - [anon_sym_u_SQUOTE] = ACTIONS(2853), - [anon_sym_U_SQUOTE] = ACTIONS(2853), - [anon_sym_u8_SQUOTE] = ACTIONS(2853), - [anon_sym_SQUOTE] = ACTIONS(2853), - [anon_sym_L_DQUOTE] = ACTIONS(2855), - [anon_sym_u_DQUOTE] = ACTIONS(2855), - [anon_sym_U_DQUOTE] = ACTIONS(2855), - [anon_sym_u8_DQUOTE] = ACTIONS(2855), - [anon_sym_DQUOTE] = ACTIONS(2855), - [sym_true] = ACTIONS(2857), - [sym_false] = ACTIONS(2857), - [sym_null] = ACTIONS(2857), + [1042] = { + [sym_identifier] = ACTIONS(2753), + [aux_sym_preproc_include_token1] = ACTIONS(2753), + [aux_sym_preproc_def_token1] = ACTIONS(2753), + [aux_sym_preproc_if_token1] = ACTIONS(2753), + [aux_sym_preproc_if_token2] = ACTIONS(2753), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2753), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2753), + [sym_preproc_directive] = ACTIONS(2753), + [anon_sym_LPAREN2] = ACTIONS(2755), + [anon_sym_BANG] = ACTIONS(2755), + [anon_sym_TILDE] = ACTIONS(2755), + [anon_sym_DASH] = ACTIONS(2753), + [anon_sym_PLUS] = ACTIONS(2753), + [anon_sym_STAR] = ACTIONS(2755), + [anon_sym_AMP_AMP] = ACTIONS(2755), + [anon_sym_AMP] = ACTIONS(2753), + [anon_sym_SEMI] = ACTIONS(2755), + [anon_sym_typedef] = ACTIONS(2753), + [anon_sym_extern] = ACTIONS(2753), + [anon_sym___attribute__] = ACTIONS(2753), + [anon_sym_COLON_COLON] = ACTIONS(2755), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2755), + [anon_sym___declspec] = ACTIONS(2753), + [anon_sym___based] = ACTIONS(2753), + [anon_sym___cdecl] = ACTIONS(2753), + [anon_sym___clrcall] = ACTIONS(2753), + [anon_sym___stdcall] = ACTIONS(2753), + [anon_sym___fastcall] = ACTIONS(2753), + [anon_sym___thiscall] = ACTIONS(2753), + [anon_sym___vectorcall] = ACTIONS(2753), + [anon_sym_LBRACE] = ACTIONS(2755), + [anon_sym_LBRACK] = ACTIONS(2753), + [anon_sym_static] = ACTIONS(2753), + [anon_sym_register] = ACTIONS(2753), + [anon_sym_inline] = ACTIONS(2753), + [anon_sym_thread_local] = ACTIONS(2753), + [anon_sym_const] = ACTIONS(2753), + [anon_sym_volatile] = ACTIONS(2753), + [anon_sym_restrict] = ACTIONS(2753), + [anon_sym__Atomic] = ACTIONS(2753), + [anon_sym_mutable] = ACTIONS(2753), + [anon_sym_constexpr] = ACTIONS(2753), + [anon_sym_constinit] = ACTIONS(2753), + [anon_sym_consteval] = ACTIONS(2753), + [anon_sym_signed] = ACTIONS(2753), + [anon_sym_unsigned] = ACTIONS(2753), + [anon_sym_long] = ACTIONS(2753), + [anon_sym_short] = ACTIONS(2753), + [sym_primitive_type] = ACTIONS(2753), + [anon_sym_enum] = ACTIONS(2753), + [anon_sym_class] = ACTIONS(2753), + [anon_sym_struct] = ACTIONS(2753), + [anon_sym_union] = ACTIONS(2753), + [anon_sym_if] = ACTIONS(2753), + [anon_sym_switch] = ACTIONS(2753), + [anon_sym_case] = ACTIONS(2753), + [anon_sym_default] = ACTIONS(2753), + [anon_sym_while] = ACTIONS(2753), + [anon_sym_do] = ACTIONS(2753), + [anon_sym_for] = ACTIONS(2753), + [anon_sym_return] = ACTIONS(2753), + [anon_sym_break] = ACTIONS(2753), + [anon_sym_continue] = ACTIONS(2753), + [anon_sym_goto] = ACTIONS(2753), + [anon_sym_not] = ACTIONS(2753), + [anon_sym_compl] = ACTIONS(2753), + [anon_sym_DASH_DASH] = ACTIONS(2755), + [anon_sym_PLUS_PLUS] = ACTIONS(2755), + [anon_sym_sizeof] = ACTIONS(2753), + [sym_number_literal] = ACTIONS(2755), + [anon_sym_L_SQUOTE] = ACTIONS(2755), + [anon_sym_u_SQUOTE] = ACTIONS(2755), + [anon_sym_U_SQUOTE] = ACTIONS(2755), + [anon_sym_u8_SQUOTE] = ACTIONS(2755), + [anon_sym_SQUOTE] = ACTIONS(2755), + [anon_sym_L_DQUOTE] = ACTIONS(2755), + [anon_sym_u_DQUOTE] = ACTIONS(2755), + [anon_sym_U_DQUOTE] = ACTIONS(2755), + [anon_sym_u8_DQUOTE] = ACTIONS(2755), + [anon_sym_DQUOTE] = ACTIONS(2755), + [sym_true] = ACTIONS(2753), + [sym_false] = ACTIONS(2753), + [sym_null] = ACTIONS(2753), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_co_await] = ACTIONS(2861), - [anon_sym_new] = ACTIONS(2863), - [anon_sym_requires] = ACTIONS(2865), - [sym_this] = ACTIONS(2857), - [sym_nullptr] = ACTIONS(2857), - [sym_raw_string_literal] = ACTIONS(2867), - }, - [1498] = { - [sym__expression] = STATE(2760), - [sym_conditional_expression] = STATE(2765), - [sym_assignment_expression] = STATE(2765), - [sym_pointer_expression] = STATE(2827), - [sym_unary_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_update_expression] = STATE(2765), - [sym_cast_expression] = STATE(2765), - [sym_sizeof_expression] = STATE(2765), - [sym_subscript_expression] = STATE(2827), - [sym_call_expression] = STATE(2827), - [sym_field_expression] = STATE(2827), - [sym_compound_literal_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2827), - [sym_char_literal] = STATE(2674), - [sym_concatenated_string] = STATE(2674), - [sym_string_literal] = STATE(2093), - [sym__class_name] = STATE(6297), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2765), - [sym_co_await_expression] = STATE(2765), - [sym_new_expression] = STATE(2765), - [sym_delete_expression] = STATE(2765), - [sym_requires_clause] = STATE(2765), - [sym_requires_expression] = STATE(2765), - [sym_lambda_expression] = STATE(2765), - [sym_lambda_capture_specifier] = STATE(4512), - [sym_fold_expression] = STATE(2765), - [sym_parameter_pack_expansion] = STATE(2765), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4648), - [sym_qualified_identifier] = STATE(2827), - [sym_qualified_type_identifier] = STATE(6297), - [sym_user_defined_literal] = STATE(2765), - [sym_identifier] = ACTIONS(2363), - [anon_sym_LPAREN2] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1417), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_COLON_COLON] = ACTIONS(1423), - [anon_sym_LBRACK] = ACTIONS(3688), - [sym_primitive_type] = ACTIONS(2369), - [anon_sym_DASH_DASH] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [anon_sym_sizeof] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(1439), - [anon_sym_L_SQUOTE] = ACTIONS(1441), - [anon_sym_u_SQUOTE] = ACTIONS(1441), - [anon_sym_U_SQUOTE] = ACTIONS(1441), - [anon_sym_u8_SQUOTE] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1441), - [anon_sym_L_DQUOTE] = ACTIONS(1443), - [anon_sym_u_DQUOTE] = ACTIONS(1443), - [anon_sym_U_DQUOTE] = ACTIONS(1443), - [anon_sym_u8_DQUOTE] = ACTIONS(1443), - [anon_sym_DQUOTE] = ACTIONS(1443), - [sym_true] = ACTIONS(1445), - [sym_false] = ACTIONS(1445), - [sym_null] = ACTIONS(1445), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_co_await] = ACTIONS(1451), - [anon_sym_new] = ACTIONS(1453), - [anon_sym_requires] = ACTIONS(1455), - [sym_this] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(1445), - [sym_raw_string_literal] = ACTIONS(1457), + [sym_auto] = ACTIONS(2753), + [anon_sym_decltype] = ACTIONS(2753), + [anon_sym_virtual] = ACTIONS(2753), + [anon_sym_explicit] = ACTIONS(2753), + [anon_sym_typename] = ACTIONS(2753), + [anon_sym_template] = ACTIONS(2753), + [anon_sym_operator] = ACTIONS(2753), + [anon_sym_try] = ACTIONS(2753), + [anon_sym_delete] = ACTIONS(2753), + [anon_sym_throw] = ACTIONS(2753), + [anon_sym_namespace] = ACTIONS(2753), + [anon_sym_using] = ACTIONS(2753), + [anon_sym_static_assert] = ACTIONS(2753), + [anon_sym_concept] = ACTIONS(2753), + [anon_sym_co_return] = ACTIONS(2753), + [anon_sym_co_yield] = ACTIONS(2753), + [anon_sym_co_await] = ACTIONS(2753), + [anon_sym_new] = ACTIONS(2753), + [anon_sym_requires] = ACTIONS(2753), + [sym_this] = ACTIONS(2753), + [sym_nullptr] = ACTIONS(2753), + [sym_raw_string_literal] = ACTIONS(2755), }, - [1499] = { - [sym__expression] = STATE(3571), - [sym_conditional_expression] = STATE(3881), - [sym_assignment_expression] = STATE(3881), - [sym_pointer_expression] = STATE(2977), - [sym_unary_expression] = STATE(3881), - [sym_binary_expression] = STATE(3881), - [sym_update_expression] = STATE(3881), - [sym_cast_expression] = STATE(3881), - [sym_sizeof_expression] = STATE(3881), - [sym_subscript_expression] = STATE(2977), - [sym_call_expression] = STATE(2977), - [sym_field_expression] = STATE(2977), - [sym_compound_literal_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(2977), - [sym_char_literal] = STATE(3701), - [sym_concatenated_string] = STATE(3701), - [sym_string_literal] = STATE(3219), - [sym__class_name] = STATE(6063), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3881), - [sym_co_await_expression] = STATE(3881), - [sym_new_expression] = STATE(3881), - [sym_delete_expression] = STATE(3881), - [sym_requires_clause] = STATE(3881), - [sym_requires_expression] = STATE(3881), - [sym_lambda_expression] = STATE(3881), - [sym_lambda_capture_specifier] = STATE(4519), - [sym_fold_expression] = STATE(3881), - [sym_parameter_pack_expansion] = STATE(3881), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4642), - [sym_qualified_identifier] = STATE(2977), - [sym_qualified_type_identifier] = STATE(6063), - [sym_user_defined_literal] = STATE(3881), - [sym_identifier] = ACTIONS(3035), - [anon_sym_LPAREN2] = ACTIONS(2531), - [anon_sym_BANG] = ACTIONS(2533), - [anon_sym_TILDE] = ACTIONS(2533), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_STAR] = ACTIONS(2537), - [anon_sym_AMP] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(2539), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(2845), - [anon_sym_DASH_DASH] = ACTIONS(2553), - [anon_sym_PLUS_PLUS] = ACTIONS(2553), - [anon_sym_sizeof] = ACTIONS(2555), - [sym_number_literal] = ACTIONS(2557), - [anon_sym_L_SQUOTE] = ACTIONS(2559), - [anon_sym_u_SQUOTE] = ACTIONS(2559), - [anon_sym_U_SQUOTE] = ACTIONS(2559), - [anon_sym_u8_SQUOTE] = ACTIONS(2559), - [anon_sym_SQUOTE] = ACTIONS(2559), - [anon_sym_L_DQUOTE] = ACTIONS(2561), - [anon_sym_u_DQUOTE] = ACTIONS(2561), - [anon_sym_U_DQUOTE] = ACTIONS(2561), - [anon_sym_u8_DQUOTE] = ACTIONS(2561), - [anon_sym_DQUOTE] = ACTIONS(2561), - [sym_true] = ACTIONS(2563), - [sym_false] = ACTIONS(2563), - [sym_null] = ACTIONS(2563), + [1043] = { + [sym_identifier] = ACTIONS(2757), + [aux_sym_preproc_include_token1] = ACTIONS(2757), + [aux_sym_preproc_def_token1] = ACTIONS(2757), + [aux_sym_preproc_if_token1] = ACTIONS(2757), + [aux_sym_preproc_if_token2] = ACTIONS(2757), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2757), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2757), + [sym_preproc_directive] = ACTIONS(2757), + [anon_sym_LPAREN2] = ACTIONS(2759), + [anon_sym_BANG] = ACTIONS(2759), + [anon_sym_TILDE] = ACTIONS(2759), + [anon_sym_DASH] = ACTIONS(2757), + [anon_sym_PLUS] = ACTIONS(2757), + [anon_sym_STAR] = ACTIONS(2759), + [anon_sym_AMP_AMP] = ACTIONS(2759), + [anon_sym_AMP] = ACTIONS(2757), + [anon_sym_SEMI] = ACTIONS(2759), + [anon_sym_typedef] = ACTIONS(2757), + [anon_sym_extern] = ACTIONS(2757), + [anon_sym___attribute__] = ACTIONS(2757), + [anon_sym_COLON_COLON] = ACTIONS(2759), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2759), + [anon_sym___declspec] = ACTIONS(2757), + [anon_sym___based] = ACTIONS(2757), + [anon_sym___cdecl] = ACTIONS(2757), + [anon_sym___clrcall] = ACTIONS(2757), + [anon_sym___stdcall] = ACTIONS(2757), + [anon_sym___fastcall] = ACTIONS(2757), + [anon_sym___thiscall] = ACTIONS(2757), + [anon_sym___vectorcall] = ACTIONS(2757), + [anon_sym_LBRACE] = ACTIONS(2759), + [anon_sym_LBRACK] = ACTIONS(2757), + [anon_sym_static] = ACTIONS(2757), + [anon_sym_register] = ACTIONS(2757), + [anon_sym_inline] = ACTIONS(2757), + [anon_sym_thread_local] = ACTIONS(2757), + [anon_sym_const] = ACTIONS(2757), + [anon_sym_volatile] = ACTIONS(2757), + [anon_sym_restrict] = ACTIONS(2757), + [anon_sym__Atomic] = ACTIONS(2757), + [anon_sym_mutable] = ACTIONS(2757), + [anon_sym_constexpr] = ACTIONS(2757), + [anon_sym_constinit] = ACTIONS(2757), + [anon_sym_consteval] = ACTIONS(2757), + [anon_sym_signed] = ACTIONS(2757), + [anon_sym_unsigned] = ACTIONS(2757), + [anon_sym_long] = ACTIONS(2757), + [anon_sym_short] = ACTIONS(2757), + [sym_primitive_type] = ACTIONS(2757), + [anon_sym_enum] = ACTIONS(2757), + [anon_sym_class] = ACTIONS(2757), + [anon_sym_struct] = ACTIONS(2757), + [anon_sym_union] = ACTIONS(2757), + [anon_sym_if] = ACTIONS(2757), + [anon_sym_switch] = ACTIONS(2757), + [anon_sym_case] = ACTIONS(2757), + [anon_sym_default] = ACTIONS(2757), + [anon_sym_while] = ACTIONS(2757), + [anon_sym_do] = ACTIONS(2757), + [anon_sym_for] = ACTIONS(2757), + [anon_sym_return] = ACTIONS(2757), + [anon_sym_break] = ACTIONS(2757), + [anon_sym_continue] = ACTIONS(2757), + [anon_sym_goto] = ACTIONS(2757), + [anon_sym_not] = ACTIONS(2757), + [anon_sym_compl] = ACTIONS(2757), + [anon_sym_DASH_DASH] = ACTIONS(2759), + [anon_sym_PLUS_PLUS] = ACTIONS(2759), + [anon_sym_sizeof] = ACTIONS(2757), + [sym_number_literal] = ACTIONS(2759), + [anon_sym_L_SQUOTE] = ACTIONS(2759), + [anon_sym_u_SQUOTE] = ACTIONS(2759), + [anon_sym_U_SQUOTE] = ACTIONS(2759), + [anon_sym_u8_SQUOTE] = ACTIONS(2759), + [anon_sym_SQUOTE] = ACTIONS(2759), + [anon_sym_L_DQUOTE] = ACTIONS(2759), + [anon_sym_u_DQUOTE] = ACTIONS(2759), + [anon_sym_U_DQUOTE] = ACTIONS(2759), + [anon_sym_u8_DQUOTE] = ACTIONS(2759), + [anon_sym_DQUOTE] = ACTIONS(2759), + [sym_true] = ACTIONS(2757), + [sym_false] = ACTIONS(2757), + [sym_null] = ACTIONS(2757), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2573), - [anon_sym_co_await] = ACTIONS(2575), - [anon_sym_new] = ACTIONS(2577), - [anon_sym_requires] = ACTIONS(2579), - [sym_this] = ACTIONS(2563), - [sym_nullptr] = ACTIONS(2563), - [sym_raw_string_literal] = ACTIONS(2581), + [sym_auto] = ACTIONS(2757), + [anon_sym_decltype] = ACTIONS(2757), + [anon_sym_virtual] = ACTIONS(2757), + [anon_sym_explicit] = ACTIONS(2757), + [anon_sym_typename] = ACTIONS(2757), + [anon_sym_template] = ACTIONS(2757), + [anon_sym_operator] = ACTIONS(2757), + [anon_sym_try] = ACTIONS(2757), + [anon_sym_delete] = ACTIONS(2757), + [anon_sym_throw] = ACTIONS(2757), + [anon_sym_namespace] = ACTIONS(2757), + [anon_sym_using] = ACTIONS(2757), + [anon_sym_static_assert] = ACTIONS(2757), + [anon_sym_concept] = ACTIONS(2757), + [anon_sym_co_return] = ACTIONS(2757), + [anon_sym_co_yield] = ACTIONS(2757), + [anon_sym_co_await] = ACTIONS(2757), + [anon_sym_new] = ACTIONS(2757), + [anon_sym_requires] = ACTIONS(2757), + [sym_this] = ACTIONS(2757), + [sym_nullptr] = ACTIONS(2757), + [sym_raw_string_literal] = ACTIONS(2759), }, - [1500] = { - [sym__expression] = STATE(2869), - [sym_conditional_expression] = STATE(3000), - [sym_assignment_expression] = STATE(3000), - [sym_pointer_expression] = STATE(3006), - [sym_unary_expression] = STATE(3000), - [sym_binary_expression] = STATE(3000), - [sym_update_expression] = STATE(3000), - [sym_cast_expression] = STATE(3000), - [sym_sizeof_expression] = STATE(3000), - [sym_subscript_expression] = STATE(3006), - [sym_call_expression] = STATE(3006), - [sym_field_expression] = STATE(3006), - [sym_compound_literal_expression] = STATE(3000), - [sym_parenthesized_expression] = STATE(3006), - [sym_char_literal] = STATE(2896), - [sym_concatenated_string] = STATE(2896), - [sym_string_literal] = STATE(2154), - [sym__class_name] = STATE(5849), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3000), - [sym_co_await_expression] = STATE(3000), - [sym_new_expression] = STATE(3000), - [sym_delete_expression] = STATE(3000), - [sym_requires_clause] = STATE(3000), - [sym_requires_expression] = STATE(3000), - [sym_lambda_expression] = STATE(3000), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3000), - [sym_parameter_pack_expansion] = STATE(3000), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4642), - [sym_qualified_identifier] = STATE(3006), - [sym_qualified_type_identifier] = STATE(5849), - [sym_user_defined_literal] = STATE(3000), - [sym_identifier] = ACTIONS(2831), - [anon_sym_LPAREN2] = ACTIONS(2833), - [anon_sym_BANG] = ACTIONS(2837), - [anon_sym_TILDE] = ACTIONS(2837), - [anon_sym_DASH] = ACTIONS(2835), - [anon_sym_PLUS] = ACTIONS(2835), - [anon_sym_STAR] = ACTIONS(2537), - [anon_sym_AMP] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(2841), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(2845), - [anon_sym_DASH_DASH] = ACTIONS(2847), - [anon_sym_PLUS_PLUS] = ACTIONS(2847), - [anon_sym_sizeof] = ACTIONS(2849), - [sym_number_literal] = ACTIONS(2851), - [anon_sym_L_SQUOTE] = ACTIONS(2853), - [anon_sym_u_SQUOTE] = ACTIONS(2853), - [anon_sym_U_SQUOTE] = ACTIONS(2853), - [anon_sym_u8_SQUOTE] = ACTIONS(2853), - [anon_sym_SQUOTE] = ACTIONS(2853), - [anon_sym_L_DQUOTE] = ACTIONS(2855), - [anon_sym_u_DQUOTE] = ACTIONS(2855), - [anon_sym_U_DQUOTE] = ACTIONS(2855), - [anon_sym_u8_DQUOTE] = ACTIONS(2855), - [anon_sym_DQUOTE] = ACTIONS(2855), - [sym_true] = ACTIONS(2857), - [sym_false] = ACTIONS(2857), - [sym_null] = ACTIONS(2857), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_co_await] = ACTIONS(2861), - [anon_sym_new] = ACTIONS(2863), - [anon_sym_requires] = ACTIONS(2865), - [sym_this] = ACTIONS(2857), - [sym_nullptr] = ACTIONS(2857), - [sym_raw_string_literal] = ACTIONS(2867), + [1044] = { + [ts_builtin_sym_end] = ACTIONS(2767), + [sym_identifier] = ACTIONS(2765), + [aux_sym_preproc_include_token1] = ACTIONS(2765), + [aux_sym_preproc_def_token1] = ACTIONS(2765), + [aux_sym_preproc_if_token1] = ACTIONS(2765), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2765), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2765), + [sym_preproc_directive] = ACTIONS(2765), + [anon_sym_LPAREN2] = ACTIONS(2767), + [anon_sym_BANG] = ACTIONS(2767), + [anon_sym_TILDE] = ACTIONS(2767), + [anon_sym_DASH] = ACTIONS(2765), + [anon_sym_PLUS] = ACTIONS(2765), + [anon_sym_STAR] = ACTIONS(2767), + [anon_sym_AMP_AMP] = ACTIONS(2767), + [anon_sym_AMP] = ACTIONS(2765), + [anon_sym_SEMI] = ACTIONS(2767), + [anon_sym_typedef] = ACTIONS(2765), + [anon_sym_extern] = ACTIONS(2765), + [anon_sym___attribute__] = ACTIONS(2765), + [anon_sym_COLON_COLON] = ACTIONS(2767), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2767), + [anon_sym___declspec] = ACTIONS(2765), + [anon_sym___based] = ACTIONS(2765), + [anon_sym___cdecl] = ACTIONS(2765), + [anon_sym___clrcall] = ACTIONS(2765), + [anon_sym___stdcall] = ACTIONS(2765), + [anon_sym___fastcall] = ACTIONS(2765), + [anon_sym___thiscall] = ACTIONS(2765), + [anon_sym___vectorcall] = ACTIONS(2765), + [anon_sym_LBRACE] = ACTIONS(2767), + [anon_sym_LBRACK] = ACTIONS(2765), + [anon_sym_static] = ACTIONS(2765), + [anon_sym_register] = ACTIONS(2765), + [anon_sym_inline] = ACTIONS(2765), + [anon_sym_thread_local] = ACTIONS(2765), + [anon_sym_const] = ACTIONS(2765), + [anon_sym_volatile] = ACTIONS(2765), + [anon_sym_restrict] = ACTIONS(2765), + [anon_sym__Atomic] = ACTIONS(2765), + [anon_sym_mutable] = ACTIONS(2765), + [anon_sym_constexpr] = ACTIONS(2765), + [anon_sym_constinit] = ACTIONS(2765), + [anon_sym_consteval] = ACTIONS(2765), + [anon_sym_signed] = ACTIONS(2765), + [anon_sym_unsigned] = ACTIONS(2765), + [anon_sym_long] = ACTIONS(2765), + [anon_sym_short] = ACTIONS(2765), + [sym_primitive_type] = ACTIONS(2765), + [anon_sym_enum] = ACTIONS(2765), + [anon_sym_class] = ACTIONS(2765), + [anon_sym_struct] = ACTIONS(2765), + [anon_sym_union] = ACTIONS(2765), + [anon_sym_if] = ACTIONS(2765), + [anon_sym_switch] = ACTIONS(2765), + [anon_sym_case] = ACTIONS(2765), + [anon_sym_default] = ACTIONS(2765), + [anon_sym_while] = ACTIONS(2765), + [anon_sym_do] = ACTIONS(2765), + [anon_sym_for] = ACTIONS(2765), + [anon_sym_return] = ACTIONS(2765), + [anon_sym_break] = ACTIONS(2765), + [anon_sym_continue] = ACTIONS(2765), + [anon_sym_goto] = ACTIONS(2765), + [anon_sym_not] = ACTIONS(2765), + [anon_sym_compl] = ACTIONS(2765), + [anon_sym_DASH_DASH] = ACTIONS(2767), + [anon_sym_PLUS_PLUS] = ACTIONS(2767), + [anon_sym_sizeof] = ACTIONS(2765), + [sym_number_literal] = ACTIONS(2767), + [anon_sym_L_SQUOTE] = ACTIONS(2767), + [anon_sym_u_SQUOTE] = ACTIONS(2767), + [anon_sym_U_SQUOTE] = ACTIONS(2767), + [anon_sym_u8_SQUOTE] = ACTIONS(2767), + [anon_sym_SQUOTE] = ACTIONS(2767), + [anon_sym_L_DQUOTE] = ACTIONS(2767), + [anon_sym_u_DQUOTE] = ACTIONS(2767), + [anon_sym_U_DQUOTE] = ACTIONS(2767), + [anon_sym_u8_DQUOTE] = ACTIONS(2767), + [anon_sym_DQUOTE] = ACTIONS(2767), + [sym_true] = ACTIONS(2765), + [sym_false] = ACTIONS(2765), + [sym_null] = ACTIONS(2765), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2765), + [anon_sym_decltype] = ACTIONS(2765), + [anon_sym_virtual] = ACTIONS(2765), + [anon_sym_explicit] = ACTIONS(2765), + [anon_sym_typename] = ACTIONS(2765), + [anon_sym_template] = ACTIONS(2765), + [anon_sym_operator] = ACTIONS(2765), + [anon_sym_try] = ACTIONS(2765), + [anon_sym_delete] = ACTIONS(2765), + [anon_sym_throw] = ACTIONS(2765), + [anon_sym_namespace] = ACTIONS(2765), + [anon_sym_using] = ACTIONS(2765), + [anon_sym_static_assert] = ACTIONS(2765), + [anon_sym_concept] = ACTIONS(2765), + [anon_sym_co_return] = ACTIONS(2765), + [anon_sym_co_yield] = ACTIONS(2765), + [anon_sym_co_await] = ACTIONS(2765), + [anon_sym_new] = ACTIONS(2765), + [anon_sym_requires] = ACTIONS(2765), + [sym_this] = ACTIONS(2765), + [sym_nullptr] = ACTIONS(2765), + [sym_raw_string_literal] = ACTIONS(2767), }, - [1501] = { - [sym__expression] = STATE(3891), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(3196), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(3196), - [sym_call_expression] = STATE(3196), - [sym_field_expression] = STATE(3196), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(3196), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(3196), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN2] = ACTIONS(3061), - [anon_sym_BANG] = ACTIONS(3065), - [anon_sym_TILDE] = ACTIONS(3065), - [anon_sym_DASH] = ACTIONS(3063), - [anon_sym_PLUS] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(3069), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3071), - [anon_sym_PLUS_PLUS] = ACTIONS(3071), - [anon_sym_sizeof] = ACTIONS(3073), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3075), - [anon_sym_co_await] = ACTIONS(3077), - [anon_sym_new] = ACTIONS(3079), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [1045] = { + [sym_identifier] = ACTIONS(2765), + [aux_sym_preproc_include_token1] = ACTIONS(2765), + [aux_sym_preproc_def_token1] = ACTIONS(2765), + [aux_sym_preproc_if_token1] = ACTIONS(2765), + [aux_sym_preproc_if_token2] = ACTIONS(2765), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2765), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2765), + [sym_preproc_directive] = ACTIONS(2765), + [anon_sym_LPAREN2] = ACTIONS(2767), + [anon_sym_BANG] = ACTIONS(2767), + [anon_sym_TILDE] = ACTIONS(2767), + [anon_sym_DASH] = ACTIONS(2765), + [anon_sym_PLUS] = ACTIONS(2765), + [anon_sym_STAR] = ACTIONS(2767), + [anon_sym_AMP_AMP] = ACTIONS(2767), + [anon_sym_AMP] = ACTIONS(2765), + [anon_sym_SEMI] = ACTIONS(2767), + [anon_sym_typedef] = ACTIONS(2765), + [anon_sym_extern] = ACTIONS(2765), + [anon_sym___attribute__] = ACTIONS(2765), + [anon_sym_COLON_COLON] = ACTIONS(2767), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2767), + [anon_sym___declspec] = ACTIONS(2765), + [anon_sym___based] = ACTIONS(2765), + [anon_sym___cdecl] = ACTIONS(2765), + [anon_sym___clrcall] = ACTIONS(2765), + [anon_sym___stdcall] = ACTIONS(2765), + [anon_sym___fastcall] = ACTIONS(2765), + [anon_sym___thiscall] = ACTIONS(2765), + [anon_sym___vectorcall] = ACTIONS(2765), + [anon_sym_LBRACE] = ACTIONS(2767), + [anon_sym_LBRACK] = ACTIONS(2765), + [anon_sym_static] = ACTIONS(2765), + [anon_sym_register] = ACTIONS(2765), + [anon_sym_inline] = ACTIONS(2765), + [anon_sym_thread_local] = ACTIONS(2765), + [anon_sym_const] = ACTIONS(2765), + [anon_sym_volatile] = ACTIONS(2765), + [anon_sym_restrict] = ACTIONS(2765), + [anon_sym__Atomic] = ACTIONS(2765), + [anon_sym_mutable] = ACTIONS(2765), + [anon_sym_constexpr] = ACTIONS(2765), + [anon_sym_constinit] = ACTIONS(2765), + [anon_sym_consteval] = ACTIONS(2765), + [anon_sym_signed] = ACTIONS(2765), + [anon_sym_unsigned] = ACTIONS(2765), + [anon_sym_long] = ACTIONS(2765), + [anon_sym_short] = ACTIONS(2765), + [sym_primitive_type] = ACTIONS(2765), + [anon_sym_enum] = ACTIONS(2765), + [anon_sym_class] = ACTIONS(2765), + [anon_sym_struct] = ACTIONS(2765), + [anon_sym_union] = ACTIONS(2765), + [anon_sym_if] = ACTIONS(2765), + [anon_sym_switch] = ACTIONS(2765), + [anon_sym_case] = ACTIONS(2765), + [anon_sym_default] = ACTIONS(2765), + [anon_sym_while] = ACTIONS(2765), + [anon_sym_do] = ACTIONS(2765), + [anon_sym_for] = ACTIONS(2765), + [anon_sym_return] = ACTIONS(2765), + [anon_sym_break] = ACTIONS(2765), + [anon_sym_continue] = ACTIONS(2765), + [anon_sym_goto] = ACTIONS(2765), + [anon_sym_not] = ACTIONS(2765), + [anon_sym_compl] = ACTIONS(2765), + [anon_sym_DASH_DASH] = ACTIONS(2767), + [anon_sym_PLUS_PLUS] = ACTIONS(2767), + [anon_sym_sizeof] = ACTIONS(2765), + [sym_number_literal] = ACTIONS(2767), + [anon_sym_L_SQUOTE] = ACTIONS(2767), + [anon_sym_u_SQUOTE] = ACTIONS(2767), + [anon_sym_U_SQUOTE] = ACTIONS(2767), + [anon_sym_u8_SQUOTE] = ACTIONS(2767), + [anon_sym_SQUOTE] = ACTIONS(2767), + [anon_sym_L_DQUOTE] = ACTIONS(2767), + [anon_sym_u_DQUOTE] = ACTIONS(2767), + [anon_sym_U_DQUOTE] = ACTIONS(2767), + [anon_sym_u8_DQUOTE] = ACTIONS(2767), + [anon_sym_DQUOTE] = ACTIONS(2767), + [sym_true] = ACTIONS(2765), + [sym_false] = ACTIONS(2765), + [sym_null] = ACTIONS(2765), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2765), + [anon_sym_decltype] = ACTIONS(2765), + [anon_sym_virtual] = ACTIONS(2765), + [anon_sym_explicit] = ACTIONS(2765), + [anon_sym_typename] = ACTIONS(2765), + [anon_sym_template] = ACTIONS(2765), + [anon_sym_operator] = ACTIONS(2765), + [anon_sym_try] = ACTIONS(2765), + [anon_sym_delete] = ACTIONS(2765), + [anon_sym_throw] = ACTIONS(2765), + [anon_sym_namespace] = ACTIONS(2765), + [anon_sym_using] = ACTIONS(2765), + [anon_sym_static_assert] = ACTIONS(2765), + [anon_sym_concept] = ACTIONS(2765), + [anon_sym_co_return] = ACTIONS(2765), + [anon_sym_co_yield] = ACTIONS(2765), + [anon_sym_co_await] = ACTIONS(2765), + [anon_sym_new] = ACTIONS(2765), + [anon_sym_requires] = ACTIONS(2765), + [sym_this] = ACTIONS(2765), + [sym_nullptr] = ACTIONS(2765), + [sym_raw_string_literal] = ACTIONS(2767), }, - [1502] = { - [sym__expression] = STATE(3568), - [sym_conditional_expression] = STATE(3881), - [sym_assignment_expression] = STATE(3881), - [sym_pointer_expression] = STATE(2977), - [sym_unary_expression] = STATE(3881), - [sym_binary_expression] = STATE(3881), - [sym_update_expression] = STATE(3881), - [sym_cast_expression] = STATE(3881), - [sym_sizeof_expression] = STATE(3881), - [sym_subscript_expression] = STATE(2977), - [sym_call_expression] = STATE(2977), - [sym_field_expression] = STATE(2977), - [sym_compound_literal_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(2977), - [sym_char_literal] = STATE(3701), - [sym_concatenated_string] = STATE(3701), - [sym_string_literal] = STATE(3219), - [sym__class_name] = STATE(6063), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3881), - [sym_co_await_expression] = STATE(3881), - [sym_new_expression] = STATE(3881), - [sym_delete_expression] = STATE(3881), - [sym_requires_clause] = STATE(3881), - [sym_requires_expression] = STATE(3881), - [sym_lambda_expression] = STATE(3881), - [sym_lambda_capture_specifier] = STATE(4519), - [sym_fold_expression] = STATE(3881), - [sym_parameter_pack_expansion] = STATE(3881), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4642), - [sym_qualified_identifier] = STATE(2977), - [sym_qualified_type_identifier] = STATE(6063), - [sym_user_defined_literal] = STATE(3881), - [sym_identifier] = ACTIONS(3035), - [anon_sym_LPAREN2] = ACTIONS(2531), - [anon_sym_BANG] = ACTIONS(2533), - [anon_sym_TILDE] = ACTIONS(2533), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_STAR] = ACTIONS(2537), - [anon_sym_AMP] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(2539), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(2845), - [anon_sym_DASH_DASH] = ACTIONS(2553), - [anon_sym_PLUS_PLUS] = ACTIONS(2553), - [anon_sym_sizeof] = ACTIONS(2555), - [sym_number_literal] = ACTIONS(2557), - [anon_sym_L_SQUOTE] = ACTIONS(2559), - [anon_sym_u_SQUOTE] = ACTIONS(2559), - [anon_sym_U_SQUOTE] = ACTIONS(2559), - [anon_sym_u8_SQUOTE] = ACTIONS(2559), - [anon_sym_SQUOTE] = ACTIONS(2559), - [anon_sym_L_DQUOTE] = ACTIONS(2561), - [anon_sym_u_DQUOTE] = ACTIONS(2561), - [anon_sym_U_DQUOTE] = ACTIONS(2561), - [anon_sym_u8_DQUOTE] = ACTIONS(2561), - [anon_sym_DQUOTE] = ACTIONS(2561), - [sym_true] = ACTIONS(2563), - [sym_false] = ACTIONS(2563), - [sym_null] = ACTIONS(2563), + [1046] = { + [sym_identifier] = ACTIONS(2773), + [aux_sym_preproc_include_token1] = ACTIONS(2773), + [aux_sym_preproc_def_token1] = ACTIONS(2773), + [aux_sym_preproc_if_token1] = ACTIONS(2773), + [aux_sym_preproc_if_token2] = ACTIONS(2773), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2773), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2773), + [sym_preproc_directive] = ACTIONS(2773), + [anon_sym_LPAREN2] = ACTIONS(2775), + [anon_sym_BANG] = ACTIONS(2775), + [anon_sym_TILDE] = ACTIONS(2775), + [anon_sym_DASH] = ACTIONS(2773), + [anon_sym_PLUS] = ACTIONS(2773), + [anon_sym_STAR] = ACTIONS(2775), + [anon_sym_AMP_AMP] = ACTIONS(2775), + [anon_sym_AMP] = ACTIONS(2773), + [anon_sym_SEMI] = ACTIONS(2775), + [anon_sym_typedef] = ACTIONS(2773), + [anon_sym_extern] = ACTIONS(2773), + [anon_sym___attribute__] = ACTIONS(2773), + [anon_sym_COLON_COLON] = ACTIONS(2775), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2775), + [anon_sym___declspec] = ACTIONS(2773), + [anon_sym___based] = ACTIONS(2773), + [anon_sym___cdecl] = ACTIONS(2773), + [anon_sym___clrcall] = ACTIONS(2773), + [anon_sym___stdcall] = ACTIONS(2773), + [anon_sym___fastcall] = ACTIONS(2773), + [anon_sym___thiscall] = ACTIONS(2773), + [anon_sym___vectorcall] = ACTIONS(2773), + [anon_sym_LBRACE] = ACTIONS(2775), + [anon_sym_LBRACK] = ACTIONS(2773), + [anon_sym_static] = ACTIONS(2773), + [anon_sym_register] = ACTIONS(2773), + [anon_sym_inline] = ACTIONS(2773), + [anon_sym_thread_local] = ACTIONS(2773), + [anon_sym_const] = ACTIONS(2773), + [anon_sym_volatile] = ACTIONS(2773), + [anon_sym_restrict] = ACTIONS(2773), + [anon_sym__Atomic] = ACTIONS(2773), + [anon_sym_mutable] = ACTIONS(2773), + [anon_sym_constexpr] = ACTIONS(2773), + [anon_sym_constinit] = ACTIONS(2773), + [anon_sym_consteval] = ACTIONS(2773), + [anon_sym_signed] = ACTIONS(2773), + [anon_sym_unsigned] = ACTIONS(2773), + [anon_sym_long] = ACTIONS(2773), + [anon_sym_short] = ACTIONS(2773), + [sym_primitive_type] = ACTIONS(2773), + [anon_sym_enum] = ACTIONS(2773), + [anon_sym_class] = ACTIONS(2773), + [anon_sym_struct] = ACTIONS(2773), + [anon_sym_union] = ACTIONS(2773), + [anon_sym_if] = ACTIONS(2773), + [anon_sym_switch] = ACTIONS(2773), + [anon_sym_case] = ACTIONS(2773), + [anon_sym_default] = ACTIONS(2773), + [anon_sym_while] = ACTIONS(2773), + [anon_sym_do] = ACTIONS(2773), + [anon_sym_for] = ACTIONS(2773), + [anon_sym_return] = ACTIONS(2773), + [anon_sym_break] = ACTIONS(2773), + [anon_sym_continue] = ACTIONS(2773), + [anon_sym_goto] = ACTIONS(2773), + [anon_sym_not] = ACTIONS(2773), + [anon_sym_compl] = ACTIONS(2773), + [anon_sym_DASH_DASH] = ACTIONS(2775), + [anon_sym_PLUS_PLUS] = ACTIONS(2775), + [anon_sym_sizeof] = ACTIONS(2773), + [sym_number_literal] = ACTIONS(2775), + [anon_sym_L_SQUOTE] = ACTIONS(2775), + [anon_sym_u_SQUOTE] = ACTIONS(2775), + [anon_sym_U_SQUOTE] = ACTIONS(2775), + [anon_sym_u8_SQUOTE] = ACTIONS(2775), + [anon_sym_SQUOTE] = ACTIONS(2775), + [anon_sym_L_DQUOTE] = ACTIONS(2775), + [anon_sym_u_DQUOTE] = ACTIONS(2775), + [anon_sym_U_DQUOTE] = ACTIONS(2775), + [anon_sym_u8_DQUOTE] = ACTIONS(2775), + [anon_sym_DQUOTE] = ACTIONS(2775), + [sym_true] = ACTIONS(2773), + [sym_false] = ACTIONS(2773), + [sym_null] = ACTIONS(2773), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2573), - [anon_sym_co_await] = ACTIONS(2575), - [anon_sym_new] = ACTIONS(2577), - [anon_sym_requires] = ACTIONS(2579), - [sym_this] = ACTIONS(2563), - [sym_nullptr] = ACTIONS(2563), - [sym_raw_string_literal] = ACTIONS(2581), + [sym_auto] = ACTIONS(2773), + [anon_sym_decltype] = ACTIONS(2773), + [anon_sym_virtual] = ACTIONS(2773), + [anon_sym_explicit] = ACTIONS(2773), + [anon_sym_typename] = ACTIONS(2773), + [anon_sym_template] = ACTIONS(2773), + [anon_sym_operator] = ACTIONS(2773), + [anon_sym_try] = ACTIONS(2773), + [anon_sym_delete] = ACTIONS(2773), + [anon_sym_throw] = ACTIONS(2773), + [anon_sym_namespace] = ACTIONS(2773), + [anon_sym_using] = ACTIONS(2773), + [anon_sym_static_assert] = ACTIONS(2773), + [anon_sym_concept] = ACTIONS(2773), + [anon_sym_co_return] = ACTIONS(2773), + [anon_sym_co_yield] = ACTIONS(2773), + [anon_sym_co_await] = ACTIONS(2773), + [anon_sym_new] = ACTIONS(2773), + [anon_sym_requires] = ACTIONS(2773), + [sym_this] = ACTIONS(2773), + [sym_nullptr] = ACTIONS(2773), + [sym_raw_string_literal] = ACTIONS(2775), }, - [1503] = { - [sym__expression] = STATE(2880), - [sym_conditional_expression] = STATE(3000), - [sym_assignment_expression] = STATE(3000), - [sym_pointer_expression] = STATE(3006), - [sym_unary_expression] = STATE(3000), - [sym_binary_expression] = STATE(3000), - [sym_update_expression] = STATE(3000), - [sym_cast_expression] = STATE(3000), - [sym_sizeof_expression] = STATE(3000), - [sym_subscript_expression] = STATE(3006), - [sym_call_expression] = STATE(3006), - [sym_field_expression] = STATE(3006), - [sym_compound_literal_expression] = STATE(3000), - [sym_parenthesized_expression] = STATE(3006), - [sym_char_literal] = STATE(2896), - [sym_concatenated_string] = STATE(2896), - [sym_string_literal] = STATE(2154), - [sym__class_name] = STATE(5849), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3000), - [sym_co_await_expression] = STATE(3000), - [sym_new_expression] = STATE(3000), - [sym_delete_expression] = STATE(3000), - [sym_requires_clause] = STATE(3000), - [sym_requires_expression] = STATE(3000), - [sym_lambda_expression] = STATE(3000), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3000), - [sym_parameter_pack_expansion] = STATE(3000), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4642), - [sym_qualified_identifier] = STATE(3006), - [sym_qualified_type_identifier] = STATE(5849), - [sym_user_defined_literal] = STATE(3000), - [sym_identifier] = ACTIONS(2831), - [anon_sym_LPAREN2] = ACTIONS(2833), - [anon_sym_BANG] = ACTIONS(2837), - [anon_sym_TILDE] = ACTIONS(2837), - [anon_sym_DASH] = ACTIONS(2835), - [anon_sym_PLUS] = ACTIONS(2835), - [anon_sym_STAR] = ACTIONS(2537), - [anon_sym_AMP] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(2841), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(2845), - [anon_sym_DASH_DASH] = ACTIONS(2847), - [anon_sym_PLUS_PLUS] = ACTIONS(2847), - [anon_sym_sizeof] = ACTIONS(2849), - [sym_number_literal] = ACTIONS(2851), - [anon_sym_L_SQUOTE] = ACTIONS(2853), - [anon_sym_u_SQUOTE] = ACTIONS(2853), - [anon_sym_U_SQUOTE] = ACTIONS(2853), - [anon_sym_u8_SQUOTE] = ACTIONS(2853), - [anon_sym_SQUOTE] = ACTIONS(2853), - [anon_sym_L_DQUOTE] = ACTIONS(2855), - [anon_sym_u_DQUOTE] = ACTIONS(2855), - [anon_sym_U_DQUOTE] = ACTIONS(2855), - [anon_sym_u8_DQUOTE] = ACTIONS(2855), - [anon_sym_DQUOTE] = ACTIONS(2855), - [sym_true] = ACTIONS(2857), - [sym_false] = ACTIONS(2857), - [sym_null] = ACTIONS(2857), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_co_await] = ACTIONS(2861), - [anon_sym_new] = ACTIONS(2863), - [anon_sym_requires] = ACTIONS(2865), - [sym_this] = ACTIONS(2857), - [sym_nullptr] = ACTIONS(2857), - [sym_raw_string_literal] = ACTIONS(2867), + [1047] = { + [ts_builtin_sym_end] = ACTIONS(2763), + [sym_identifier] = ACTIONS(2761), + [aux_sym_preproc_include_token1] = ACTIONS(2761), + [aux_sym_preproc_def_token1] = ACTIONS(2761), + [aux_sym_preproc_if_token1] = ACTIONS(2761), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2761), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2761), + [sym_preproc_directive] = ACTIONS(2761), + [anon_sym_LPAREN2] = ACTIONS(2763), + [anon_sym_BANG] = ACTIONS(2763), + [anon_sym_TILDE] = ACTIONS(2763), + [anon_sym_DASH] = ACTIONS(2761), + [anon_sym_PLUS] = ACTIONS(2761), + [anon_sym_STAR] = ACTIONS(2763), + [anon_sym_AMP_AMP] = ACTIONS(2763), + [anon_sym_AMP] = ACTIONS(2761), + [anon_sym_SEMI] = ACTIONS(2763), + [anon_sym_typedef] = ACTIONS(2761), + [anon_sym_extern] = ACTIONS(2761), + [anon_sym___attribute__] = ACTIONS(2761), + [anon_sym_COLON_COLON] = ACTIONS(2763), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2763), + [anon_sym___declspec] = ACTIONS(2761), + [anon_sym___based] = ACTIONS(2761), + [anon_sym___cdecl] = ACTIONS(2761), + [anon_sym___clrcall] = ACTIONS(2761), + [anon_sym___stdcall] = ACTIONS(2761), + [anon_sym___fastcall] = ACTIONS(2761), + [anon_sym___thiscall] = ACTIONS(2761), + [anon_sym___vectorcall] = ACTIONS(2761), + [anon_sym_LBRACE] = ACTIONS(2763), + [anon_sym_LBRACK] = ACTIONS(2761), + [anon_sym_static] = ACTIONS(2761), + [anon_sym_register] = ACTIONS(2761), + [anon_sym_inline] = ACTIONS(2761), + [anon_sym_thread_local] = ACTIONS(2761), + [anon_sym_const] = ACTIONS(2761), + [anon_sym_volatile] = ACTIONS(2761), + [anon_sym_restrict] = ACTIONS(2761), + [anon_sym__Atomic] = ACTIONS(2761), + [anon_sym_mutable] = ACTIONS(2761), + [anon_sym_constexpr] = ACTIONS(2761), + [anon_sym_constinit] = ACTIONS(2761), + [anon_sym_consteval] = ACTIONS(2761), + [anon_sym_signed] = ACTIONS(2761), + [anon_sym_unsigned] = ACTIONS(2761), + [anon_sym_long] = ACTIONS(2761), + [anon_sym_short] = ACTIONS(2761), + [sym_primitive_type] = ACTIONS(2761), + [anon_sym_enum] = ACTIONS(2761), + [anon_sym_class] = ACTIONS(2761), + [anon_sym_struct] = ACTIONS(2761), + [anon_sym_union] = ACTIONS(2761), + [anon_sym_if] = ACTIONS(2761), + [anon_sym_switch] = ACTIONS(2761), + [anon_sym_case] = ACTIONS(2761), + [anon_sym_default] = ACTIONS(2761), + [anon_sym_while] = ACTIONS(2761), + [anon_sym_do] = ACTIONS(2761), + [anon_sym_for] = ACTIONS(2761), + [anon_sym_return] = ACTIONS(2761), + [anon_sym_break] = ACTIONS(2761), + [anon_sym_continue] = ACTIONS(2761), + [anon_sym_goto] = ACTIONS(2761), + [anon_sym_not] = ACTIONS(2761), + [anon_sym_compl] = ACTIONS(2761), + [anon_sym_DASH_DASH] = ACTIONS(2763), + [anon_sym_PLUS_PLUS] = ACTIONS(2763), + [anon_sym_sizeof] = ACTIONS(2761), + [sym_number_literal] = ACTIONS(2763), + [anon_sym_L_SQUOTE] = ACTIONS(2763), + [anon_sym_u_SQUOTE] = ACTIONS(2763), + [anon_sym_U_SQUOTE] = ACTIONS(2763), + [anon_sym_u8_SQUOTE] = ACTIONS(2763), + [anon_sym_SQUOTE] = ACTIONS(2763), + [anon_sym_L_DQUOTE] = ACTIONS(2763), + [anon_sym_u_DQUOTE] = ACTIONS(2763), + [anon_sym_U_DQUOTE] = ACTIONS(2763), + [anon_sym_u8_DQUOTE] = ACTIONS(2763), + [anon_sym_DQUOTE] = ACTIONS(2763), + [sym_true] = ACTIONS(2761), + [sym_false] = ACTIONS(2761), + [sym_null] = ACTIONS(2761), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2761), + [anon_sym_decltype] = ACTIONS(2761), + [anon_sym_virtual] = ACTIONS(2761), + [anon_sym_explicit] = ACTIONS(2761), + [anon_sym_typename] = ACTIONS(2761), + [anon_sym_template] = ACTIONS(2761), + [anon_sym_operator] = ACTIONS(2761), + [anon_sym_try] = ACTIONS(2761), + [anon_sym_delete] = ACTIONS(2761), + [anon_sym_throw] = ACTIONS(2761), + [anon_sym_namespace] = ACTIONS(2761), + [anon_sym_using] = ACTIONS(2761), + [anon_sym_static_assert] = ACTIONS(2761), + [anon_sym_concept] = ACTIONS(2761), + [anon_sym_co_return] = ACTIONS(2761), + [anon_sym_co_yield] = ACTIONS(2761), + [anon_sym_co_await] = ACTIONS(2761), + [anon_sym_new] = ACTIONS(2761), + [anon_sym_requires] = ACTIONS(2761), + [sym_this] = ACTIONS(2761), + [sym_nullptr] = ACTIONS(2761), + [sym_raw_string_literal] = ACTIONS(2763), }, - [1504] = { - [sym__expression] = STATE(3871), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [1048] = { + [sym_identifier] = ACTIONS(2785), + [aux_sym_preproc_include_token1] = ACTIONS(2785), + [aux_sym_preproc_def_token1] = ACTIONS(2785), + [aux_sym_preproc_if_token1] = ACTIONS(2785), + [aux_sym_preproc_if_token2] = ACTIONS(2785), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2785), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2785), + [sym_preproc_directive] = ACTIONS(2785), + [anon_sym_LPAREN2] = ACTIONS(2787), + [anon_sym_BANG] = ACTIONS(2787), + [anon_sym_TILDE] = ACTIONS(2787), + [anon_sym_DASH] = ACTIONS(2785), + [anon_sym_PLUS] = ACTIONS(2785), + [anon_sym_STAR] = ACTIONS(2787), + [anon_sym_AMP_AMP] = ACTIONS(2787), + [anon_sym_AMP] = ACTIONS(2785), + [anon_sym_SEMI] = ACTIONS(2787), + [anon_sym_typedef] = ACTIONS(2785), + [anon_sym_extern] = ACTIONS(2785), + [anon_sym___attribute__] = ACTIONS(2785), + [anon_sym_COLON_COLON] = ACTIONS(2787), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2787), + [anon_sym___declspec] = ACTIONS(2785), + [anon_sym___based] = ACTIONS(2785), + [anon_sym___cdecl] = ACTIONS(2785), + [anon_sym___clrcall] = ACTIONS(2785), + [anon_sym___stdcall] = ACTIONS(2785), + [anon_sym___fastcall] = ACTIONS(2785), + [anon_sym___thiscall] = ACTIONS(2785), + [anon_sym___vectorcall] = ACTIONS(2785), + [anon_sym_LBRACE] = ACTIONS(2787), + [anon_sym_LBRACK] = ACTIONS(2785), + [anon_sym_static] = ACTIONS(2785), + [anon_sym_register] = ACTIONS(2785), + [anon_sym_inline] = ACTIONS(2785), + [anon_sym_thread_local] = ACTIONS(2785), + [anon_sym_const] = ACTIONS(2785), + [anon_sym_volatile] = ACTIONS(2785), + [anon_sym_restrict] = ACTIONS(2785), + [anon_sym__Atomic] = ACTIONS(2785), + [anon_sym_mutable] = ACTIONS(2785), + [anon_sym_constexpr] = ACTIONS(2785), + [anon_sym_constinit] = ACTIONS(2785), + [anon_sym_consteval] = ACTIONS(2785), + [anon_sym_signed] = ACTIONS(2785), + [anon_sym_unsigned] = ACTIONS(2785), + [anon_sym_long] = ACTIONS(2785), + [anon_sym_short] = ACTIONS(2785), + [sym_primitive_type] = ACTIONS(2785), + [anon_sym_enum] = ACTIONS(2785), + [anon_sym_class] = ACTIONS(2785), + [anon_sym_struct] = ACTIONS(2785), + [anon_sym_union] = ACTIONS(2785), + [anon_sym_if] = ACTIONS(2785), + [anon_sym_switch] = ACTIONS(2785), + [anon_sym_case] = ACTIONS(2785), + [anon_sym_default] = ACTIONS(2785), + [anon_sym_while] = ACTIONS(2785), + [anon_sym_do] = ACTIONS(2785), + [anon_sym_for] = ACTIONS(2785), + [anon_sym_return] = ACTIONS(2785), + [anon_sym_break] = ACTIONS(2785), + [anon_sym_continue] = ACTIONS(2785), + [anon_sym_goto] = ACTIONS(2785), + [anon_sym_not] = ACTIONS(2785), + [anon_sym_compl] = ACTIONS(2785), + [anon_sym_DASH_DASH] = ACTIONS(2787), + [anon_sym_PLUS_PLUS] = ACTIONS(2787), + [anon_sym_sizeof] = ACTIONS(2785), + [sym_number_literal] = ACTIONS(2787), + [anon_sym_L_SQUOTE] = ACTIONS(2787), + [anon_sym_u_SQUOTE] = ACTIONS(2787), + [anon_sym_U_SQUOTE] = ACTIONS(2787), + [anon_sym_u8_SQUOTE] = ACTIONS(2787), + [anon_sym_SQUOTE] = ACTIONS(2787), + [anon_sym_L_DQUOTE] = ACTIONS(2787), + [anon_sym_u_DQUOTE] = ACTIONS(2787), + [anon_sym_U_DQUOTE] = ACTIONS(2787), + [anon_sym_u8_DQUOTE] = ACTIONS(2787), + [anon_sym_DQUOTE] = ACTIONS(2787), + [sym_true] = ACTIONS(2785), + [sym_false] = ACTIONS(2785), + [sym_null] = ACTIONS(2785), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2785), + [anon_sym_decltype] = ACTIONS(2785), + [anon_sym_virtual] = ACTIONS(2785), + [anon_sym_explicit] = ACTIONS(2785), + [anon_sym_typename] = ACTIONS(2785), + [anon_sym_template] = ACTIONS(2785), + [anon_sym_operator] = ACTIONS(2785), + [anon_sym_try] = ACTIONS(2785), + [anon_sym_delete] = ACTIONS(2785), + [anon_sym_throw] = ACTIONS(2785), + [anon_sym_namespace] = ACTIONS(2785), + [anon_sym_using] = ACTIONS(2785), + [anon_sym_static_assert] = ACTIONS(2785), + [anon_sym_concept] = ACTIONS(2785), + [anon_sym_co_return] = ACTIONS(2785), + [anon_sym_co_yield] = ACTIONS(2785), + [anon_sym_co_await] = ACTIONS(2785), + [anon_sym_new] = ACTIONS(2785), + [anon_sym_requires] = ACTIONS(2785), + [sym_this] = ACTIONS(2785), + [sym_nullptr] = ACTIONS(2785), + [sym_raw_string_literal] = ACTIONS(2787), }, - [1505] = { - [sym__expression] = STATE(2886), - [sym_conditional_expression] = STATE(3000), - [sym_assignment_expression] = STATE(3000), - [sym_pointer_expression] = STATE(3006), - [sym_unary_expression] = STATE(3000), - [sym_binary_expression] = STATE(3000), - [sym_update_expression] = STATE(3000), - [sym_cast_expression] = STATE(3000), - [sym_sizeof_expression] = STATE(3000), - [sym_subscript_expression] = STATE(3006), - [sym_call_expression] = STATE(3006), - [sym_field_expression] = STATE(3006), - [sym_compound_literal_expression] = STATE(3000), - [sym_parenthesized_expression] = STATE(3006), - [sym_char_literal] = STATE(2896), - [sym_concatenated_string] = STATE(2896), - [sym_string_literal] = STATE(2154), - [sym__class_name] = STATE(5849), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3000), - [sym_co_await_expression] = STATE(3000), - [sym_new_expression] = STATE(3000), - [sym_delete_expression] = STATE(3000), - [sym_requires_clause] = STATE(3000), - [sym_requires_expression] = STATE(3000), - [sym_lambda_expression] = STATE(3000), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3000), - [sym_parameter_pack_expansion] = STATE(3000), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4642), - [sym_qualified_identifier] = STATE(3006), - [sym_qualified_type_identifier] = STATE(5849), - [sym_user_defined_literal] = STATE(3000), - [sym_identifier] = ACTIONS(2831), - [anon_sym_LPAREN2] = ACTIONS(2833), - [anon_sym_BANG] = ACTIONS(2837), - [anon_sym_TILDE] = ACTIONS(2837), - [anon_sym_DASH] = ACTIONS(2835), - [anon_sym_PLUS] = ACTIONS(2835), - [anon_sym_STAR] = ACTIONS(2537), - [anon_sym_AMP] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(2841), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(2845), - [anon_sym_DASH_DASH] = ACTIONS(2847), - [anon_sym_PLUS_PLUS] = ACTIONS(2847), - [anon_sym_sizeof] = ACTIONS(2849), - [sym_number_literal] = ACTIONS(2851), - [anon_sym_L_SQUOTE] = ACTIONS(2853), - [anon_sym_u_SQUOTE] = ACTIONS(2853), - [anon_sym_U_SQUOTE] = ACTIONS(2853), - [anon_sym_u8_SQUOTE] = ACTIONS(2853), - [anon_sym_SQUOTE] = ACTIONS(2853), - [anon_sym_L_DQUOTE] = ACTIONS(2855), - [anon_sym_u_DQUOTE] = ACTIONS(2855), - [anon_sym_U_DQUOTE] = ACTIONS(2855), - [anon_sym_u8_DQUOTE] = ACTIONS(2855), - [anon_sym_DQUOTE] = ACTIONS(2855), + [1049] = { + [sym_identifier] = ACTIONS(2801), + [aux_sym_preproc_include_token1] = ACTIONS(2801), + [aux_sym_preproc_def_token1] = ACTIONS(2801), + [aux_sym_preproc_if_token1] = ACTIONS(2801), + [aux_sym_preproc_if_token2] = ACTIONS(2801), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2801), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2801), + [sym_preproc_directive] = ACTIONS(2801), + [anon_sym_LPAREN2] = ACTIONS(2803), + [anon_sym_BANG] = ACTIONS(2803), + [anon_sym_TILDE] = ACTIONS(2803), + [anon_sym_DASH] = ACTIONS(2801), + [anon_sym_PLUS] = ACTIONS(2801), + [anon_sym_STAR] = ACTIONS(2803), + [anon_sym_AMP_AMP] = ACTIONS(2803), + [anon_sym_AMP] = ACTIONS(2801), + [anon_sym_SEMI] = ACTIONS(2803), + [anon_sym_typedef] = ACTIONS(2801), + [anon_sym_extern] = ACTIONS(2801), + [anon_sym___attribute__] = ACTIONS(2801), + [anon_sym_COLON_COLON] = ACTIONS(2803), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2803), + [anon_sym___declspec] = ACTIONS(2801), + [anon_sym___based] = ACTIONS(2801), + [anon_sym___cdecl] = ACTIONS(2801), + [anon_sym___clrcall] = ACTIONS(2801), + [anon_sym___stdcall] = ACTIONS(2801), + [anon_sym___fastcall] = ACTIONS(2801), + [anon_sym___thiscall] = ACTIONS(2801), + [anon_sym___vectorcall] = ACTIONS(2801), + [anon_sym_LBRACE] = ACTIONS(2803), + [anon_sym_LBRACK] = ACTIONS(2801), + [anon_sym_static] = ACTIONS(2801), + [anon_sym_register] = ACTIONS(2801), + [anon_sym_inline] = ACTIONS(2801), + [anon_sym_thread_local] = ACTIONS(2801), + [anon_sym_const] = ACTIONS(2801), + [anon_sym_volatile] = ACTIONS(2801), + [anon_sym_restrict] = ACTIONS(2801), + [anon_sym__Atomic] = ACTIONS(2801), + [anon_sym_mutable] = ACTIONS(2801), + [anon_sym_constexpr] = ACTIONS(2801), + [anon_sym_constinit] = ACTIONS(2801), + [anon_sym_consteval] = ACTIONS(2801), + [anon_sym_signed] = ACTIONS(2801), + [anon_sym_unsigned] = ACTIONS(2801), + [anon_sym_long] = ACTIONS(2801), + [anon_sym_short] = ACTIONS(2801), + [sym_primitive_type] = ACTIONS(2801), + [anon_sym_enum] = ACTIONS(2801), + [anon_sym_class] = ACTIONS(2801), + [anon_sym_struct] = ACTIONS(2801), + [anon_sym_union] = ACTIONS(2801), + [anon_sym_if] = ACTIONS(2801), + [anon_sym_switch] = ACTIONS(2801), + [anon_sym_case] = ACTIONS(2801), + [anon_sym_default] = ACTIONS(2801), + [anon_sym_while] = ACTIONS(2801), + [anon_sym_do] = ACTIONS(2801), + [anon_sym_for] = ACTIONS(2801), + [anon_sym_return] = ACTIONS(2801), + [anon_sym_break] = ACTIONS(2801), + [anon_sym_continue] = ACTIONS(2801), + [anon_sym_goto] = ACTIONS(2801), + [anon_sym_not] = ACTIONS(2801), + [anon_sym_compl] = ACTIONS(2801), + [anon_sym_DASH_DASH] = ACTIONS(2803), + [anon_sym_PLUS_PLUS] = ACTIONS(2803), + [anon_sym_sizeof] = ACTIONS(2801), + [sym_number_literal] = ACTIONS(2803), + [anon_sym_L_SQUOTE] = ACTIONS(2803), + [anon_sym_u_SQUOTE] = ACTIONS(2803), + [anon_sym_U_SQUOTE] = ACTIONS(2803), + [anon_sym_u8_SQUOTE] = ACTIONS(2803), + [anon_sym_SQUOTE] = ACTIONS(2803), + [anon_sym_L_DQUOTE] = ACTIONS(2803), + [anon_sym_u_DQUOTE] = ACTIONS(2803), + [anon_sym_U_DQUOTE] = ACTIONS(2803), + [anon_sym_u8_DQUOTE] = ACTIONS(2803), + [anon_sym_DQUOTE] = ACTIONS(2803), + [sym_true] = ACTIONS(2801), + [sym_false] = ACTIONS(2801), + [sym_null] = ACTIONS(2801), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2801), + [anon_sym_decltype] = ACTIONS(2801), + [anon_sym_virtual] = ACTIONS(2801), + [anon_sym_explicit] = ACTIONS(2801), + [anon_sym_typename] = ACTIONS(2801), + [anon_sym_template] = ACTIONS(2801), + [anon_sym_operator] = ACTIONS(2801), + [anon_sym_try] = ACTIONS(2801), + [anon_sym_delete] = ACTIONS(2801), + [anon_sym_throw] = ACTIONS(2801), + [anon_sym_namespace] = ACTIONS(2801), + [anon_sym_using] = ACTIONS(2801), + [anon_sym_static_assert] = ACTIONS(2801), + [anon_sym_concept] = ACTIONS(2801), + [anon_sym_co_return] = ACTIONS(2801), + [anon_sym_co_yield] = ACTIONS(2801), + [anon_sym_co_await] = ACTIONS(2801), + [anon_sym_new] = ACTIONS(2801), + [anon_sym_requires] = ACTIONS(2801), + [sym_this] = ACTIONS(2801), + [sym_nullptr] = ACTIONS(2801), + [sym_raw_string_literal] = ACTIONS(2803), + }, + [1050] = { + [sym_identifier] = ACTIONS(2809), + [aux_sym_preproc_include_token1] = ACTIONS(2809), + [aux_sym_preproc_def_token1] = ACTIONS(2809), + [aux_sym_preproc_if_token1] = ACTIONS(2809), + [aux_sym_preproc_if_token2] = ACTIONS(2809), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2809), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2809), + [sym_preproc_directive] = ACTIONS(2809), + [anon_sym_LPAREN2] = ACTIONS(2811), + [anon_sym_BANG] = ACTIONS(2811), + [anon_sym_TILDE] = ACTIONS(2811), + [anon_sym_DASH] = ACTIONS(2809), + [anon_sym_PLUS] = ACTIONS(2809), + [anon_sym_STAR] = ACTIONS(2811), + [anon_sym_AMP_AMP] = ACTIONS(2811), + [anon_sym_AMP] = ACTIONS(2809), + [anon_sym_SEMI] = ACTIONS(2811), + [anon_sym_typedef] = ACTIONS(2809), + [anon_sym_extern] = ACTIONS(2809), + [anon_sym___attribute__] = ACTIONS(2809), + [anon_sym_COLON_COLON] = ACTIONS(2811), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2811), + [anon_sym___declspec] = ACTIONS(2809), + [anon_sym___based] = ACTIONS(2809), + [anon_sym___cdecl] = ACTIONS(2809), + [anon_sym___clrcall] = ACTIONS(2809), + [anon_sym___stdcall] = ACTIONS(2809), + [anon_sym___fastcall] = ACTIONS(2809), + [anon_sym___thiscall] = ACTIONS(2809), + [anon_sym___vectorcall] = ACTIONS(2809), + [anon_sym_LBRACE] = ACTIONS(2811), + [anon_sym_LBRACK] = ACTIONS(2809), + [anon_sym_static] = ACTIONS(2809), + [anon_sym_register] = ACTIONS(2809), + [anon_sym_inline] = ACTIONS(2809), + [anon_sym_thread_local] = ACTIONS(2809), + [anon_sym_const] = ACTIONS(2809), + [anon_sym_volatile] = ACTIONS(2809), + [anon_sym_restrict] = ACTIONS(2809), + [anon_sym__Atomic] = ACTIONS(2809), + [anon_sym_mutable] = ACTIONS(2809), + [anon_sym_constexpr] = ACTIONS(2809), + [anon_sym_constinit] = ACTIONS(2809), + [anon_sym_consteval] = ACTIONS(2809), + [anon_sym_signed] = ACTIONS(2809), + [anon_sym_unsigned] = ACTIONS(2809), + [anon_sym_long] = ACTIONS(2809), + [anon_sym_short] = ACTIONS(2809), + [sym_primitive_type] = ACTIONS(2809), + [anon_sym_enum] = ACTIONS(2809), + [anon_sym_class] = ACTIONS(2809), + [anon_sym_struct] = ACTIONS(2809), + [anon_sym_union] = ACTIONS(2809), + [anon_sym_if] = ACTIONS(2809), + [anon_sym_switch] = ACTIONS(2809), + [anon_sym_case] = ACTIONS(2809), + [anon_sym_default] = ACTIONS(2809), + [anon_sym_while] = ACTIONS(2809), + [anon_sym_do] = ACTIONS(2809), + [anon_sym_for] = ACTIONS(2809), + [anon_sym_return] = ACTIONS(2809), + [anon_sym_break] = ACTIONS(2809), + [anon_sym_continue] = ACTIONS(2809), + [anon_sym_goto] = ACTIONS(2809), + [anon_sym_not] = ACTIONS(2809), + [anon_sym_compl] = ACTIONS(2809), + [anon_sym_DASH_DASH] = ACTIONS(2811), + [anon_sym_PLUS_PLUS] = ACTIONS(2811), + [anon_sym_sizeof] = ACTIONS(2809), + [sym_number_literal] = ACTIONS(2811), + [anon_sym_L_SQUOTE] = ACTIONS(2811), + [anon_sym_u_SQUOTE] = ACTIONS(2811), + [anon_sym_U_SQUOTE] = ACTIONS(2811), + [anon_sym_u8_SQUOTE] = ACTIONS(2811), + [anon_sym_SQUOTE] = ACTIONS(2811), + [anon_sym_L_DQUOTE] = ACTIONS(2811), + [anon_sym_u_DQUOTE] = ACTIONS(2811), + [anon_sym_U_DQUOTE] = ACTIONS(2811), + [anon_sym_u8_DQUOTE] = ACTIONS(2811), + [anon_sym_DQUOTE] = ACTIONS(2811), + [sym_true] = ACTIONS(2809), + [sym_false] = ACTIONS(2809), + [sym_null] = ACTIONS(2809), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2809), + [anon_sym_decltype] = ACTIONS(2809), + [anon_sym_virtual] = ACTIONS(2809), + [anon_sym_explicit] = ACTIONS(2809), + [anon_sym_typename] = ACTIONS(2809), + [anon_sym_template] = ACTIONS(2809), + [anon_sym_operator] = ACTIONS(2809), + [anon_sym_try] = ACTIONS(2809), + [anon_sym_delete] = ACTIONS(2809), + [anon_sym_throw] = ACTIONS(2809), + [anon_sym_namespace] = ACTIONS(2809), + [anon_sym_using] = ACTIONS(2809), + [anon_sym_static_assert] = ACTIONS(2809), + [anon_sym_concept] = ACTIONS(2809), + [anon_sym_co_return] = ACTIONS(2809), + [anon_sym_co_yield] = ACTIONS(2809), + [anon_sym_co_await] = ACTIONS(2809), + [anon_sym_new] = ACTIONS(2809), + [anon_sym_requires] = ACTIONS(2809), + [sym_this] = ACTIONS(2809), + [sym_nullptr] = ACTIONS(2809), + [sym_raw_string_literal] = ACTIONS(2811), + }, + [1051] = { + [sym_identifier] = ACTIONS(2659), + [aux_sym_preproc_include_token1] = ACTIONS(2659), + [aux_sym_preproc_def_token1] = ACTIONS(2659), + [aux_sym_preproc_if_token1] = ACTIONS(2659), + [aux_sym_preproc_if_token2] = ACTIONS(2659), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2659), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2659), + [sym_preproc_directive] = ACTIONS(2659), + [anon_sym_LPAREN2] = ACTIONS(2661), + [anon_sym_BANG] = ACTIONS(2661), + [anon_sym_TILDE] = ACTIONS(2661), + [anon_sym_DASH] = ACTIONS(2659), + [anon_sym_PLUS] = ACTIONS(2659), + [anon_sym_STAR] = ACTIONS(2661), + [anon_sym_AMP_AMP] = ACTIONS(2661), + [anon_sym_AMP] = ACTIONS(2659), + [anon_sym_SEMI] = ACTIONS(2661), + [anon_sym_typedef] = ACTIONS(2659), + [anon_sym_extern] = ACTIONS(2659), + [anon_sym___attribute__] = ACTIONS(2659), + [anon_sym_COLON_COLON] = ACTIONS(2661), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2661), + [anon_sym___declspec] = ACTIONS(2659), + [anon_sym___based] = ACTIONS(2659), + [anon_sym___cdecl] = ACTIONS(2659), + [anon_sym___clrcall] = ACTIONS(2659), + [anon_sym___stdcall] = ACTIONS(2659), + [anon_sym___fastcall] = ACTIONS(2659), + [anon_sym___thiscall] = ACTIONS(2659), + [anon_sym___vectorcall] = ACTIONS(2659), + [anon_sym_LBRACE] = ACTIONS(2661), + [anon_sym_LBRACK] = ACTIONS(2659), + [anon_sym_static] = ACTIONS(2659), + [anon_sym_register] = ACTIONS(2659), + [anon_sym_inline] = ACTIONS(2659), + [anon_sym_thread_local] = ACTIONS(2659), + [anon_sym_const] = ACTIONS(2659), + [anon_sym_volatile] = ACTIONS(2659), + [anon_sym_restrict] = ACTIONS(2659), + [anon_sym__Atomic] = ACTIONS(2659), + [anon_sym_mutable] = ACTIONS(2659), + [anon_sym_constexpr] = ACTIONS(2659), + [anon_sym_constinit] = ACTIONS(2659), + [anon_sym_consteval] = ACTIONS(2659), + [anon_sym_signed] = ACTIONS(2659), + [anon_sym_unsigned] = ACTIONS(2659), + [anon_sym_long] = ACTIONS(2659), + [anon_sym_short] = ACTIONS(2659), + [sym_primitive_type] = ACTIONS(2659), + [anon_sym_enum] = ACTIONS(2659), + [anon_sym_class] = ACTIONS(2659), + [anon_sym_struct] = ACTIONS(2659), + [anon_sym_union] = ACTIONS(2659), + [anon_sym_if] = ACTIONS(2659), + [anon_sym_switch] = ACTIONS(2659), + [anon_sym_case] = ACTIONS(2659), + [anon_sym_default] = ACTIONS(2659), + [anon_sym_while] = ACTIONS(2659), + [anon_sym_do] = ACTIONS(2659), + [anon_sym_for] = ACTIONS(2659), + [anon_sym_return] = ACTIONS(2659), + [anon_sym_break] = ACTIONS(2659), + [anon_sym_continue] = ACTIONS(2659), + [anon_sym_goto] = ACTIONS(2659), + [anon_sym_not] = ACTIONS(2659), + [anon_sym_compl] = ACTIONS(2659), + [anon_sym_DASH_DASH] = ACTIONS(2661), + [anon_sym_PLUS_PLUS] = ACTIONS(2661), + [anon_sym_sizeof] = ACTIONS(2659), + [sym_number_literal] = ACTIONS(2661), + [anon_sym_L_SQUOTE] = ACTIONS(2661), + [anon_sym_u_SQUOTE] = ACTIONS(2661), + [anon_sym_U_SQUOTE] = ACTIONS(2661), + [anon_sym_u8_SQUOTE] = ACTIONS(2661), + [anon_sym_SQUOTE] = ACTIONS(2661), + [anon_sym_L_DQUOTE] = ACTIONS(2661), + [anon_sym_u_DQUOTE] = ACTIONS(2661), + [anon_sym_U_DQUOTE] = ACTIONS(2661), + [anon_sym_u8_DQUOTE] = ACTIONS(2661), + [anon_sym_DQUOTE] = ACTIONS(2661), + [sym_true] = ACTIONS(2659), + [sym_false] = ACTIONS(2659), + [sym_null] = ACTIONS(2659), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2659), + [anon_sym_decltype] = ACTIONS(2659), + [anon_sym_virtual] = ACTIONS(2659), + [anon_sym_explicit] = ACTIONS(2659), + [anon_sym_typename] = ACTIONS(2659), + [anon_sym_template] = ACTIONS(2659), + [anon_sym_operator] = ACTIONS(2659), + [anon_sym_try] = ACTIONS(2659), + [anon_sym_delete] = ACTIONS(2659), + [anon_sym_throw] = ACTIONS(2659), + [anon_sym_namespace] = ACTIONS(2659), + [anon_sym_using] = ACTIONS(2659), + [anon_sym_static_assert] = ACTIONS(2659), + [anon_sym_concept] = ACTIONS(2659), + [anon_sym_co_return] = ACTIONS(2659), + [anon_sym_co_yield] = ACTIONS(2659), + [anon_sym_co_await] = ACTIONS(2659), + [anon_sym_new] = ACTIONS(2659), + [anon_sym_requires] = ACTIONS(2659), + [sym_this] = ACTIONS(2659), + [sym_nullptr] = ACTIONS(2659), + [sym_raw_string_literal] = ACTIONS(2661), + }, + [1052] = { + [sym_identifier] = ACTIONS(2813), + [aux_sym_preproc_include_token1] = ACTIONS(2813), + [aux_sym_preproc_def_token1] = ACTIONS(2813), + [aux_sym_preproc_if_token1] = ACTIONS(2813), + [aux_sym_preproc_if_token2] = ACTIONS(2813), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2813), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2813), + [sym_preproc_directive] = ACTIONS(2813), + [anon_sym_LPAREN2] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(2815), + [anon_sym_TILDE] = ACTIONS(2815), + [anon_sym_DASH] = ACTIONS(2813), + [anon_sym_PLUS] = ACTIONS(2813), + [anon_sym_STAR] = ACTIONS(2815), + [anon_sym_AMP_AMP] = ACTIONS(2815), + [anon_sym_AMP] = ACTIONS(2813), + [anon_sym_SEMI] = ACTIONS(2815), + [anon_sym_typedef] = ACTIONS(2813), + [anon_sym_extern] = ACTIONS(2813), + [anon_sym___attribute__] = ACTIONS(2813), + [anon_sym_COLON_COLON] = ACTIONS(2815), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2815), + [anon_sym___declspec] = ACTIONS(2813), + [anon_sym___based] = ACTIONS(2813), + [anon_sym___cdecl] = ACTIONS(2813), + [anon_sym___clrcall] = ACTIONS(2813), + [anon_sym___stdcall] = ACTIONS(2813), + [anon_sym___fastcall] = ACTIONS(2813), + [anon_sym___thiscall] = ACTIONS(2813), + [anon_sym___vectorcall] = ACTIONS(2813), + [anon_sym_LBRACE] = ACTIONS(2815), + [anon_sym_LBRACK] = ACTIONS(2813), + [anon_sym_static] = ACTIONS(2813), + [anon_sym_register] = ACTIONS(2813), + [anon_sym_inline] = ACTIONS(2813), + [anon_sym_thread_local] = ACTIONS(2813), + [anon_sym_const] = ACTIONS(2813), + [anon_sym_volatile] = ACTIONS(2813), + [anon_sym_restrict] = ACTIONS(2813), + [anon_sym__Atomic] = ACTIONS(2813), + [anon_sym_mutable] = ACTIONS(2813), + [anon_sym_constexpr] = ACTIONS(2813), + [anon_sym_constinit] = ACTIONS(2813), + [anon_sym_consteval] = ACTIONS(2813), + [anon_sym_signed] = ACTIONS(2813), + [anon_sym_unsigned] = ACTIONS(2813), + [anon_sym_long] = ACTIONS(2813), + [anon_sym_short] = ACTIONS(2813), + [sym_primitive_type] = ACTIONS(2813), + [anon_sym_enum] = ACTIONS(2813), + [anon_sym_class] = ACTIONS(2813), + [anon_sym_struct] = ACTIONS(2813), + [anon_sym_union] = ACTIONS(2813), + [anon_sym_if] = ACTIONS(2813), + [anon_sym_switch] = ACTIONS(2813), + [anon_sym_case] = ACTIONS(2813), + [anon_sym_default] = ACTIONS(2813), + [anon_sym_while] = ACTIONS(2813), + [anon_sym_do] = ACTIONS(2813), + [anon_sym_for] = ACTIONS(2813), + [anon_sym_return] = ACTIONS(2813), + [anon_sym_break] = ACTIONS(2813), + [anon_sym_continue] = ACTIONS(2813), + [anon_sym_goto] = ACTIONS(2813), + [anon_sym_not] = ACTIONS(2813), + [anon_sym_compl] = ACTIONS(2813), + [anon_sym_DASH_DASH] = ACTIONS(2815), + [anon_sym_PLUS_PLUS] = ACTIONS(2815), + [anon_sym_sizeof] = ACTIONS(2813), + [sym_number_literal] = ACTIONS(2815), + [anon_sym_L_SQUOTE] = ACTIONS(2815), + [anon_sym_u_SQUOTE] = ACTIONS(2815), + [anon_sym_U_SQUOTE] = ACTIONS(2815), + [anon_sym_u8_SQUOTE] = ACTIONS(2815), + [anon_sym_SQUOTE] = ACTIONS(2815), + [anon_sym_L_DQUOTE] = ACTIONS(2815), + [anon_sym_u_DQUOTE] = ACTIONS(2815), + [anon_sym_U_DQUOTE] = ACTIONS(2815), + [anon_sym_u8_DQUOTE] = ACTIONS(2815), + [anon_sym_DQUOTE] = ACTIONS(2815), + [sym_true] = ACTIONS(2813), + [sym_false] = ACTIONS(2813), + [sym_null] = ACTIONS(2813), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2813), + [anon_sym_decltype] = ACTIONS(2813), + [anon_sym_virtual] = ACTIONS(2813), + [anon_sym_explicit] = ACTIONS(2813), + [anon_sym_typename] = ACTIONS(2813), + [anon_sym_template] = ACTIONS(2813), + [anon_sym_operator] = ACTIONS(2813), + [anon_sym_try] = ACTIONS(2813), + [anon_sym_delete] = ACTIONS(2813), + [anon_sym_throw] = ACTIONS(2813), + [anon_sym_namespace] = ACTIONS(2813), + [anon_sym_using] = ACTIONS(2813), + [anon_sym_static_assert] = ACTIONS(2813), + [anon_sym_concept] = ACTIONS(2813), + [anon_sym_co_return] = ACTIONS(2813), + [anon_sym_co_yield] = ACTIONS(2813), + [anon_sym_co_await] = ACTIONS(2813), + [anon_sym_new] = ACTIONS(2813), + [anon_sym_requires] = ACTIONS(2813), + [sym_this] = ACTIONS(2813), + [sym_nullptr] = ACTIONS(2813), + [sym_raw_string_literal] = ACTIONS(2815), + }, + [1053] = { + [sym_identifier] = ACTIONS(2817), + [aux_sym_preproc_include_token1] = ACTIONS(2817), + [aux_sym_preproc_def_token1] = ACTIONS(2817), + [aux_sym_preproc_if_token1] = ACTIONS(2817), + [aux_sym_preproc_if_token2] = ACTIONS(2817), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2817), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2817), + [sym_preproc_directive] = ACTIONS(2817), + [anon_sym_LPAREN2] = ACTIONS(2819), + [anon_sym_BANG] = ACTIONS(2819), + [anon_sym_TILDE] = ACTIONS(2819), + [anon_sym_DASH] = ACTIONS(2817), + [anon_sym_PLUS] = ACTIONS(2817), + [anon_sym_STAR] = ACTIONS(2819), + [anon_sym_AMP_AMP] = ACTIONS(2819), + [anon_sym_AMP] = ACTIONS(2817), + [anon_sym_SEMI] = ACTIONS(2819), + [anon_sym_typedef] = ACTIONS(2817), + [anon_sym_extern] = ACTIONS(2817), + [anon_sym___attribute__] = ACTIONS(2817), + [anon_sym_COLON_COLON] = ACTIONS(2819), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2819), + [anon_sym___declspec] = ACTIONS(2817), + [anon_sym___based] = ACTIONS(2817), + [anon_sym___cdecl] = ACTIONS(2817), + [anon_sym___clrcall] = ACTIONS(2817), + [anon_sym___stdcall] = ACTIONS(2817), + [anon_sym___fastcall] = ACTIONS(2817), + [anon_sym___thiscall] = ACTIONS(2817), + [anon_sym___vectorcall] = ACTIONS(2817), + [anon_sym_LBRACE] = ACTIONS(2819), + [anon_sym_LBRACK] = ACTIONS(2817), + [anon_sym_static] = ACTIONS(2817), + [anon_sym_register] = ACTIONS(2817), + [anon_sym_inline] = ACTIONS(2817), + [anon_sym_thread_local] = ACTIONS(2817), + [anon_sym_const] = ACTIONS(2817), + [anon_sym_volatile] = ACTIONS(2817), + [anon_sym_restrict] = ACTIONS(2817), + [anon_sym__Atomic] = ACTIONS(2817), + [anon_sym_mutable] = ACTIONS(2817), + [anon_sym_constexpr] = ACTIONS(2817), + [anon_sym_constinit] = ACTIONS(2817), + [anon_sym_consteval] = ACTIONS(2817), + [anon_sym_signed] = ACTIONS(2817), + [anon_sym_unsigned] = ACTIONS(2817), + [anon_sym_long] = ACTIONS(2817), + [anon_sym_short] = ACTIONS(2817), + [sym_primitive_type] = ACTIONS(2817), + [anon_sym_enum] = ACTIONS(2817), + [anon_sym_class] = ACTIONS(2817), + [anon_sym_struct] = ACTIONS(2817), + [anon_sym_union] = ACTIONS(2817), + [anon_sym_if] = ACTIONS(2817), + [anon_sym_switch] = ACTIONS(2817), + [anon_sym_case] = ACTIONS(2817), + [anon_sym_default] = ACTIONS(2817), + [anon_sym_while] = ACTIONS(2817), + [anon_sym_do] = ACTIONS(2817), + [anon_sym_for] = ACTIONS(2817), + [anon_sym_return] = ACTIONS(2817), + [anon_sym_break] = ACTIONS(2817), + [anon_sym_continue] = ACTIONS(2817), + [anon_sym_goto] = ACTIONS(2817), + [anon_sym_not] = ACTIONS(2817), + [anon_sym_compl] = ACTIONS(2817), + [anon_sym_DASH_DASH] = ACTIONS(2819), + [anon_sym_PLUS_PLUS] = ACTIONS(2819), + [anon_sym_sizeof] = ACTIONS(2817), + [sym_number_literal] = ACTIONS(2819), + [anon_sym_L_SQUOTE] = ACTIONS(2819), + [anon_sym_u_SQUOTE] = ACTIONS(2819), + [anon_sym_U_SQUOTE] = ACTIONS(2819), + [anon_sym_u8_SQUOTE] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_L_DQUOTE] = ACTIONS(2819), + [anon_sym_u_DQUOTE] = ACTIONS(2819), + [anon_sym_U_DQUOTE] = ACTIONS(2819), + [anon_sym_u8_DQUOTE] = ACTIONS(2819), + [anon_sym_DQUOTE] = ACTIONS(2819), + [sym_true] = ACTIONS(2817), + [sym_false] = ACTIONS(2817), + [sym_null] = ACTIONS(2817), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2817), + [anon_sym_decltype] = ACTIONS(2817), + [anon_sym_virtual] = ACTIONS(2817), + [anon_sym_explicit] = ACTIONS(2817), + [anon_sym_typename] = ACTIONS(2817), + [anon_sym_template] = ACTIONS(2817), + [anon_sym_operator] = ACTIONS(2817), + [anon_sym_try] = ACTIONS(2817), + [anon_sym_delete] = ACTIONS(2817), + [anon_sym_throw] = ACTIONS(2817), + [anon_sym_namespace] = ACTIONS(2817), + [anon_sym_using] = ACTIONS(2817), + [anon_sym_static_assert] = ACTIONS(2817), + [anon_sym_concept] = ACTIONS(2817), + [anon_sym_co_return] = ACTIONS(2817), + [anon_sym_co_yield] = ACTIONS(2817), + [anon_sym_co_await] = ACTIONS(2817), + [anon_sym_new] = ACTIONS(2817), + [anon_sym_requires] = ACTIONS(2817), + [sym_this] = ACTIONS(2817), + [sym_nullptr] = ACTIONS(2817), + [sym_raw_string_literal] = ACTIONS(2819), + }, + [1054] = { + [sym_identifier] = ACTIONS(2821), + [aux_sym_preproc_include_token1] = ACTIONS(2821), + [aux_sym_preproc_def_token1] = ACTIONS(2821), + [aux_sym_preproc_if_token1] = ACTIONS(2821), + [aux_sym_preproc_if_token2] = ACTIONS(2821), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2821), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2821), + [sym_preproc_directive] = ACTIONS(2821), + [anon_sym_LPAREN2] = ACTIONS(2823), + [anon_sym_BANG] = ACTIONS(2823), + [anon_sym_TILDE] = ACTIONS(2823), + [anon_sym_DASH] = ACTIONS(2821), + [anon_sym_PLUS] = ACTIONS(2821), + [anon_sym_STAR] = ACTIONS(2823), + [anon_sym_AMP_AMP] = ACTIONS(2823), + [anon_sym_AMP] = ACTIONS(2821), + [anon_sym_SEMI] = ACTIONS(2823), + [anon_sym_typedef] = ACTIONS(2821), + [anon_sym_extern] = ACTIONS(2821), + [anon_sym___attribute__] = ACTIONS(2821), + [anon_sym_COLON_COLON] = ACTIONS(2823), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2823), + [anon_sym___declspec] = ACTIONS(2821), + [anon_sym___based] = ACTIONS(2821), + [anon_sym___cdecl] = ACTIONS(2821), + [anon_sym___clrcall] = ACTIONS(2821), + [anon_sym___stdcall] = ACTIONS(2821), + [anon_sym___fastcall] = ACTIONS(2821), + [anon_sym___thiscall] = ACTIONS(2821), + [anon_sym___vectorcall] = ACTIONS(2821), + [anon_sym_LBRACE] = ACTIONS(2823), + [anon_sym_LBRACK] = ACTIONS(2821), + [anon_sym_static] = ACTIONS(2821), + [anon_sym_register] = ACTIONS(2821), + [anon_sym_inline] = ACTIONS(2821), + [anon_sym_thread_local] = ACTIONS(2821), + [anon_sym_const] = ACTIONS(2821), + [anon_sym_volatile] = ACTIONS(2821), + [anon_sym_restrict] = ACTIONS(2821), + [anon_sym__Atomic] = ACTIONS(2821), + [anon_sym_mutable] = ACTIONS(2821), + [anon_sym_constexpr] = ACTIONS(2821), + [anon_sym_constinit] = ACTIONS(2821), + [anon_sym_consteval] = ACTIONS(2821), + [anon_sym_signed] = ACTIONS(2821), + [anon_sym_unsigned] = ACTIONS(2821), + [anon_sym_long] = ACTIONS(2821), + [anon_sym_short] = ACTIONS(2821), + [sym_primitive_type] = ACTIONS(2821), + [anon_sym_enum] = ACTIONS(2821), + [anon_sym_class] = ACTIONS(2821), + [anon_sym_struct] = ACTIONS(2821), + [anon_sym_union] = ACTIONS(2821), + [anon_sym_if] = ACTIONS(2821), + [anon_sym_switch] = ACTIONS(2821), + [anon_sym_case] = ACTIONS(2821), + [anon_sym_default] = ACTIONS(2821), + [anon_sym_while] = ACTIONS(2821), + [anon_sym_do] = ACTIONS(2821), + [anon_sym_for] = ACTIONS(2821), + [anon_sym_return] = ACTIONS(2821), + [anon_sym_break] = ACTIONS(2821), + [anon_sym_continue] = ACTIONS(2821), + [anon_sym_goto] = ACTIONS(2821), + [anon_sym_not] = ACTIONS(2821), + [anon_sym_compl] = ACTIONS(2821), + [anon_sym_DASH_DASH] = ACTIONS(2823), + [anon_sym_PLUS_PLUS] = ACTIONS(2823), + [anon_sym_sizeof] = ACTIONS(2821), + [sym_number_literal] = ACTIONS(2823), + [anon_sym_L_SQUOTE] = ACTIONS(2823), + [anon_sym_u_SQUOTE] = ACTIONS(2823), + [anon_sym_U_SQUOTE] = ACTIONS(2823), + [anon_sym_u8_SQUOTE] = ACTIONS(2823), + [anon_sym_SQUOTE] = ACTIONS(2823), + [anon_sym_L_DQUOTE] = ACTIONS(2823), + [anon_sym_u_DQUOTE] = ACTIONS(2823), + [anon_sym_U_DQUOTE] = ACTIONS(2823), + [anon_sym_u8_DQUOTE] = ACTIONS(2823), + [anon_sym_DQUOTE] = ACTIONS(2823), + [sym_true] = ACTIONS(2821), + [sym_false] = ACTIONS(2821), + [sym_null] = ACTIONS(2821), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2821), + [anon_sym_decltype] = ACTIONS(2821), + [anon_sym_virtual] = ACTIONS(2821), + [anon_sym_explicit] = ACTIONS(2821), + [anon_sym_typename] = ACTIONS(2821), + [anon_sym_template] = ACTIONS(2821), + [anon_sym_operator] = ACTIONS(2821), + [anon_sym_try] = ACTIONS(2821), + [anon_sym_delete] = ACTIONS(2821), + [anon_sym_throw] = ACTIONS(2821), + [anon_sym_namespace] = ACTIONS(2821), + [anon_sym_using] = ACTIONS(2821), + [anon_sym_static_assert] = ACTIONS(2821), + [anon_sym_concept] = ACTIONS(2821), + [anon_sym_co_return] = ACTIONS(2821), + [anon_sym_co_yield] = ACTIONS(2821), + [anon_sym_co_await] = ACTIONS(2821), + [anon_sym_new] = ACTIONS(2821), + [anon_sym_requires] = ACTIONS(2821), + [sym_this] = ACTIONS(2821), + [sym_nullptr] = ACTIONS(2821), + [sym_raw_string_literal] = ACTIONS(2823), + }, + [1055] = { + [sym_identifier] = ACTIONS(2825), + [aux_sym_preproc_include_token1] = ACTIONS(2825), + [aux_sym_preproc_def_token1] = ACTIONS(2825), + [aux_sym_preproc_if_token1] = ACTIONS(2825), + [aux_sym_preproc_if_token2] = ACTIONS(2825), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2825), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2825), + [sym_preproc_directive] = ACTIONS(2825), + [anon_sym_LPAREN2] = ACTIONS(2827), + [anon_sym_BANG] = ACTIONS(2827), + [anon_sym_TILDE] = ACTIONS(2827), + [anon_sym_DASH] = ACTIONS(2825), + [anon_sym_PLUS] = ACTIONS(2825), + [anon_sym_STAR] = ACTIONS(2827), + [anon_sym_AMP_AMP] = ACTIONS(2827), + [anon_sym_AMP] = ACTIONS(2825), + [anon_sym_SEMI] = ACTIONS(2827), + [anon_sym_typedef] = ACTIONS(2825), + [anon_sym_extern] = ACTIONS(2825), + [anon_sym___attribute__] = ACTIONS(2825), + [anon_sym_COLON_COLON] = ACTIONS(2827), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2827), + [anon_sym___declspec] = ACTIONS(2825), + [anon_sym___based] = ACTIONS(2825), + [anon_sym___cdecl] = ACTIONS(2825), + [anon_sym___clrcall] = ACTIONS(2825), + [anon_sym___stdcall] = ACTIONS(2825), + [anon_sym___fastcall] = ACTIONS(2825), + [anon_sym___thiscall] = ACTIONS(2825), + [anon_sym___vectorcall] = ACTIONS(2825), + [anon_sym_LBRACE] = ACTIONS(2827), + [anon_sym_LBRACK] = ACTIONS(2825), + [anon_sym_static] = ACTIONS(2825), + [anon_sym_register] = ACTIONS(2825), + [anon_sym_inline] = ACTIONS(2825), + [anon_sym_thread_local] = ACTIONS(2825), + [anon_sym_const] = ACTIONS(2825), + [anon_sym_volatile] = ACTIONS(2825), + [anon_sym_restrict] = ACTIONS(2825), + [anon_sym__Atomic] = ACTIONS(2825), + [anon_sym_mutable] = ACTIONS(2825), + [anon_sym_constexpr] = ACTIONS(2825), + [anon_sym_constinit] = ACTIONS(2825), + [anon_sym_consteval] = ACTIONS(2825), + [anon_sym_signed] = ACTIONS(2825), + [anon_sym_unsigned] = ACTIONS(2825), + [anon_sym_long] = ACTIONS(2825), + [anon_sym_short] = ACTIONS(2825), + [sym_primitive_type] = ACTIONS(2825), + [anon_sym_enum] = ACTIONS(2825), + [anon_sym_class] = ACTIONS(2825), + [anon_sym_struct] = ACTIONS(2825), + [anon_sym_union] = ACTIONS(2825), + [anon_sym_if] = ACTIONS(2825), + [anon_sym_switch] = ACTIONS(2825), + [anon_sym_case] = ACTIONS(2825), + [anon_sym_default] = ACTIONS(2825), + [anon_sym_while] = ACTIONS(2825), + [anon_sym_do] = ACTIONS(2825), + [anon_sym_for] = ACTIONS(2825), + [anon_sym_return] = ACTIONS(2825), + [anon_sym_break] = ACTIONS(2825), + [anon_sym_continue] = ACTIONS(2825), + [anon_sym_goto] = ACTIONS(2825), + [anon_sym_not] = ACTIONS(2825), + [anon_sym_compl] = ACTIONS(2825), + [anon_sym_DASH_DASH] = ACTIONS(2827), + [anon_sym_PLUS_PLUS] = ACTIONS(2827), + [anon_sym_sizeof] = ACTIONS(2825), + [sym_number_literal] = ACTIONS(2827), + [anon_sym_L_SQUOTE] = ACTIONS(2827), + [anon_sym_u_SQUOTE] = ACTIONS(2827), + [anon_sym_U_SQUOTE] = ACTIONS(2827), + [anon_sym_u8_SQUOTE] = ACTIONS(2827), + [anon_sym_SQUOTE] = ACTIONS(2827), + [anon_sym_L_DQUOTE] = ACTIONS(2827), + [anon_sym_u_DQUOTE] = ACTIONS(2827), + [anon_sym_U_DQUOTE] = ACTIONS(2827), + [anon_sym_u8_DQUOTE] = ACTIONS(2827), + [anon_sym_DQUOTE] = ACTIONS(2827), + [sym_true] = ACTIONS(2825), + [sym_false] = ACTIONS(2825), + [sym_null] = ACTIONS(2825), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2825), + [anon_sym_decltype] = ACTIONS(2825), + [anon_sym_virtual] = ACTIONS(2825), + [anon_sym_explicit] = ACTIONS(2825), + [anon_sym_typename] = ACTIONS(2825), + [anon_sym_template] = ACTIONS(2825), + [anon_sym_operator] = ACTIONS(2825), + [anon_sym_try] = ACTIONS(2825), + [anon_sym_delete] = ACTIONS(2825), + [anon_sym_throw] = ACTIONS(2825), + [anon_sym_namespace] = ACTIONS(2825), + [anon_sym_using] = ACTIONS(2825), + [anon_sym_static_assert] = ACTIONS(2825), + [anon_sym_concept] = ACTIONS(2825), + [anon_sym_co_return] = ACTIONS(2825), + [anon_sym_co_yield] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(2825), + [anon_sym_new] = ACTIONS(2825), + [anon_sym_requires] = ACTIONS(2825), + [sym_this] = ACTIONS(2825), + [sym_nullptr] = ACTIONS(2825), + [sym_raw_string_literal] = ACTIONS(2827), + }, + [1056] = { + [sym_identifier] = ACTIONS(2829), + [aux_sym_preproc_include_token1] = ACTIONS(2829), + [aux_sym_preproc_def_token1] = ACTIONS(2829), + [aux_sym_preproc_if_token1] = ACTIONS(2829), + [aux_sym_preproc_if_token2] = ACTIONS(2829), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2829), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2829), + [sym_preproc_directive] = ACTIONS(2829), + [anon_sym_LPAREN2] = ACTIONS(2831), + [anon_sym_BANG] = ACTIONS(2831), + [anon_sym_TILDE] = ACTIONS(2831), + [anon_sym_DASH] = ACTIONS(2829), + [anon_sym_PLUS] = ACTIONS(2829), + [anon_sym_STAR] = ACTIONS(2831), + [anon_sym_AMP_AMP] = ACTIONS(2831), + [anon_sym_AMP] = ACTIONS(2829), + [anon_sym_SEMI] = ACTIONS(2831), + [anon_sym_typedef] = ACTIONS(2829), + [anon_sym_extern] = ACTIONS(2829), + [anon_sym___attribute__] = ACTIONS(2829), + [anon_sym_COLON_COLON] = ACTIONS(2831), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2831), + [anon_sym___declspec] = ACTIONS(2829), + [anon_sym___based] = ACTIONS(2829), + [anon_sym___cdecl] = ACTIONS(2829), + [anon_sym___clrcall] = ACTIONS(2829), + [anon_sym___stdcall] = ACTIONS(2829), + [anon_sym___fastcall] = ACTIONS(2829), + [anon_sym___thiscall] = ACTIONS(2829), + [anon_sym___vectorcall] = ACTIONS(2829), + [anon_sym_LBRACE] = ACTIONS(2831), + [anon_sym_LBRACK] = ACTIONS(2829), + [anon_sym_static] = ACTIONS(2829), + [anon_sym_register] = ACTIONS(2829), + [anon_sym_inline] = ACTIONS(2829), + [anon_sym_thread_local] = ACTIONS(2829), + [anon_sym_const] = ACTIONS(2829), + [anon_sym_volatile] = ACTIONS(2829), + [anon_sym_restrict] = ACTIONS(2829), + [anon_sym__Atomic] = ACTIONS(2829), + [anon_sym_mutable] = ACTIONS(2829), + [anon_sym_constexpr] = ACTIONS(2829), + [anon_sym_constinit] = ACTIONS(2829), + [anon_sym_consteval] = ACTIONS(2829), + [anon_sym_signed] = ACTIONS(2829), + [anon_sym_unsigned] = ACTIONS(2829), + [anon_sym_long] = ACTIONS(2829), + [anon_sym_short] = ACTIONS(2829), + [sym_primitive_type] = ACTIONS(2829), + [anon_sym_enum] = ACTIONS(2829), + [anon_sym_class] = ACTIONS(2829), + [anon_sym_struct] = ACTIONS(2829), + [anon_sym_union] = ACTIONS(2829), + [anon_sym_if] = ACTIONS(2829), + [anon_sym_switch] = ACTIONS(2829), + [anon_sym_case] = ACTIONS(2829), + [anon_sym_default] = ACTIONS(2829), + [anon_sym_while] = ACTIONS(2829), + [anon_sym_do] = ACTIONS(2829), + [anon_sym_for] = ACTIONS(2829), + [anon_sym_return] = ACTIONS(2829), + [anon_sym_break] = ACTIONS(2829), + [anon_sym_continue] = ACTIONS(2829), + [anon_sym_goto] = ACTIONS(2829), + [anon_sym_not] = ACTIONS(2829), + [anon_sym_compl] = ACTIONS(2829), + [anon_sym_DASH_DASH] = ACTIONS(2831), + [anon_sym_PLUS_PLUS] = ACTIONS(2831), + [anon_sym_sizeof] = ACTIONS(2829), + [sym_number_literal] = ACTIONS(2831), + [anon_sym_L_SQUOTE] = ACTIONS(2831), + [anon_sym_u_SQUOTE] = ACTIONS(2831), + [anon_sym_U_SQUOTE] = ACTIONS(2831), + [anon_sym_u8_SQUOTE] = ACTIONS(2831), + [anon_sym_SQUOTE] = ACTIONS(2831), + [anon_sym_L_DQUOTE] = ACTIONS(2831), + [anon_sym_u_DQUOTE] = ACTIONS(2831), + [anon_sym_U_DQUOTE] = ACTIONS(2831), + [anon_sym_u8_DQUOTE] = ACTIONS(2831), + [anon_sym_DQUOTE] = ACTIONS(2831), + [sym_true] = ACTIONS(2829), + [sym_false] = ACTIONS(2829), + [sym_null] = ACTIONS(2829), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2829), + [anon_sym_decltype] = ACTIONS(2829), + [anon_sym_virtual] = ACTIONS(2829), + [anon_sym_explicit] = ACTIONS(2829), + [anon_sym_typename] = ACTIONS(2829), + [anon_sym_template] = ACTIONS(2829), + [anon_sym_operator] = ACTIONS(2829), + [anon_sym_try] = ACTIONS(2829), + [anon_sym_delete] = ACTIONS(2829), + [anon_sym_throw] = ACTIONS(2829), + [anon_sym_namespace] = ACTIONS(2829), + [anon_sym_using] = ACTIONS(2829), + [anon_sym_static_assert] = ACTIONS(2829), + [anon_sym_concept] = ACTIONS(2829), + [anon_sym_co_return] = ACTIONS(2829), + [anon_sym_co_yield] = ACTIONS(2829), + [anon_sym_co_await] = ACTIONS(2829), + [anon_sym_new] = ACTIONS(2829), + [anon_sym_requires] = ACTIONS(2829), + [sym_this] = ACTIONS(2829), + [sym_nullptr] = ACTIONS(2829), + [sym_raw_string_literal] = ACTIONS(2831), + }, + [1057] = { + [sym_identifier] = ACTIONS(2857), + [aux_sym_preproc_include_token1] = ACTIONS(2857), + [aux_sym_preproc_def_token1] = ACTIONS(2857), + [aux_sym_preproc_if_token1] = ACTIONS(2857), + [aux_sym_preproc_if_token2] = ACTIONS(2857), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2857), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2857), + [sym_preproc_directive] = ACTIONS(2857), + [anon_sym_LPAREN2] = ACTIONS(2859), + [anon_sym_BANG] = ACTIONS(2859), + [anon_sym_TILDE] = ACTIONS(2859), + [anon_sym_DASH] = ACTIONS(2857), + [anon_sym_PLUS] = ACTIONS(2857), + [anon_sym_STAR] = ACTIONS(2859), + [anon_sym_AMP_AMP] = ACTIONS(2859), + [anon_sym_AMP] = ACTIONS(2857), + [anon_sym_SEMI] = ACTIONS(2859), + [anon_sym_typedef] = ACTIONS(2857), + [anon_sym_extern] = ACTIONS(2857), + [anon_sym___attribute__] = ACTIONS(2857), + [anon_sym_COLON_COLON] = ACTIONS(2859), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2859), + [anon_sym___declspec] = ACTIONS(2857), + [anon_sym___based] = ACTIONS(2857), + [anon_sym___cdecl] = ACTIONS(2857), + [anon_sym___clrcall] = ACTIONS(2857), + [anon_sym___stdcall] = ACTIONS(2857), + [anon_sym___fastcall] = ACTIONS(2857), + [anon_sym___thiscall] = ACTIONS(2857), + [anon_sym___vectorcall] = ACTIONS(2857), + [anon_sym_LBRACE] = ACTIONS(2859), + [anon_sym_LBRACK] = ACTIONS(2857), + [anon_sym_static] = ACTIONS(2857), + [anon_sym_register] = ACTIONS(2857), + [anon_sym_inline] = ACTIONS(2857), + [anon_sym_thread_local] = ACTIONS(2857), + [anon_sym_const] = ACTIONS(2857), + [anon_sym_volatile] = ACTIONS(2857), + [anon_sym_restrict] = ACTIONS(2857), + [anon_sym__Atomic] = ACTIONS(2857), + [anon_sym_mutable] = ACTIONS(2857), + [anon_sym_constexpr] = ACTIONS(2857), + [anon_sym_constinit] = ACTIONS(2857), + [anon_sym_consteval] = ACTIONS(2857), + [anon_sym_signed] = ACTIONS(2857), + [anon_sym_unsigned] = ACTIONS(2857), + [anon_sym_long] = ACTIONS(2857), + [anon_sym_short] = ACTIONS(2857), + [sym_primitive_type] = ACTIONS(2857), + [anon_sym_enum] = ACTIONS(2857), + [anon_sym_class] = ACTIONS(2857), + [anon_sym_struct] = ACTIONS(2857), + [anon_sym_union] = ACTIONS(2857), + [anon_sym_if] = ACTIONS(2857), + [anon_sym_switch] = ACTIONS(2857), + [anon_sym_case] = ACTIONS(2857), + [anon_sym_default] = ACTIONS(2857), + [anon_sym_while] = ACTIONS(2857), + [anon_sym_do] = ACTIONS(2857), + [anon_sym_for] = ACTIONS(2857), + [anon_sym_return] = ACTIONS(2857), + [anon_sym_break] = ACTIONS(2857), + [anon_sym_continue] = ACTIONS(2857), + [anon_sym_goto] = ACTIONS(2857), + [anon_sym_not] = ACTIONS(2857), + [anon_sym_compl] = ACTIONS(2857), + [anon_sym_DASH_DASH] = ACTIONS(2859), + [anon_sym_PLUS_PLUS] = ACTIONS(2859), + [anon_sym_sizeof] = ACTIONS(2857), + [sym_number_literal] = ACTIONS(2859), + [anon_sym_L_SQUOTE] = ACTIONS(2859), + [anon_sym_u_SQUOTE] = ACTIONS(2859), + [anon_sym_U_SQUOTE] = ACTIONS(2859), + [anon_sym_u8_SQUOTE] = ACTIONS(2859), + [anon_sym_SQUOTE] = ACTIONS(2859), + [anon_sym_L_DQUOTE] = ACTIONS(2859), + [anon_sym_u_DQUOTE] = ACTIONS(2859), + [anon_sym_U_DQUOTE] = ACTIONS(2859), + [anon_sym_u8_DQUOTE] = ACTIONS(2859), + [anon_sym_DQUOTE] = ACTIONS(2859), [sym_true] = ACTIONS(2857), [sym_false] = ACTIONS(2857), [sym_null] = ACTIONS(2857), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_co_await] = ACTIONS(2861), - [anon_sym_new] = ACTIONS(2863), - [anon_sym_requires] = ACTIONS(2865), + [sym_auto] = ACTIONS(2857), + [anon_sym_decltype] = ACTIONS(2857), + [anon_sym_virtual] = ACTIONS(2857), + [anon_sym_explicit] = ACTIONS(2857), + [anon_sym_typename] = ACTIONS(2857), + [anon_sym_template] = ACTIONS(2857), + [anon_sym_operator] = ACTIONS(2857), + [anon_sym_try] = ACTIONS(2857), + [anon_sym_delete] = ACTIONS(2857), + [anon_sym_throw] = ACTIONS(2857), + [anon_sym_namespace] = ACTIONS(2857), + [anon_sym_using] = ACTIONS(2857), + [anon_sym_static_assert] = ACTIONS(2857), + [anon_sym_concept] = ACTIONS(2857), + [anon_sym_co_return] = ACTIONS(2857), + [anon_sym_co_yield] = ACTIONS(2857), + [anon_sym_co_await] = ACTIONS(2857), + [anon_sym_new] = ACTIONS(2857), + [anon_sym_requires] = ACTIONS(2857), [sym_this] = ACTIONS(2857), [sym_nullptr] = ACTIONS(2857), - [sym_raw_string_literal] = ACTIONS(2867), + [sym_raw_string_literal] = ACTIONS(2859), }, - [1506] = { - [sym__expression] = STATE(2909), - [sym_conditional_expression] = STATE(3000), - [sym_assignment_expression] = STATE(3000), - [sym_pointer_expression] = STATE(3006), - [sym_unary_expression] = STATE(3000), - [sym_binary_expression] = STATE(3000), - [sym_update_expression] = STATE(3000), - [sym_cast_expression] = STATE(3000), - [sym_sizeof_expression] = STATE(3000), - [sym_subscript_expression] = STATE(3006), - [sym_call_expression] = STATE(3006), - [sym_field_expression] = STATE(3006), - [sym_compound_literal_expression] = STATE(3000), - [sym_parenthesized_expression] = STATE(3006), - [sym_char_literal] = STATE(2896), - [sym_concatenated_string] = STATE(2896), - [sym_string_literal] = STATE(2154), - [sym__class_name] = STATE(5849), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3000), - [sym_co_await_expression] = STATE(3000), - [sym_new_expression] = STATE(3000), - [sym_delete_expression] = STATE(3000), - [sym_requires_clause] = STATE(3000), - [sym_requires_expression] = STATE(3000), - [sym_lambda_expression] = STATE(3000), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3000), - [sym_parameter_pack_expansion] = STATE(3000), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4642), - [sym_qualified_identifier] = STATE(3006), - [sym_qualified_type_identifier] = STATE(5849), - [sym_user_defined_literal] = STATE(3000), - [sym_identifier] = ACTIONS(2831), - [anon_sym_LPAREN2] = ACTIONS(2833), - [anon_sym_BANG] = ACTIONS(2837), - [anon_sym_TILDE] = ACTIONS(2837), - [anon_sym_DASH] = ACTIONS(2835), - [anon_sym_PLUS] = ACTIONS(2835), - [anon_sym_STAR] = ACTIONS(2537), - [anon_sym_AMP] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(2841), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(2845), - [anon_sym_DASH_DASH] = ACTIONS(2847), - [anon_sym_PLUS_PLUS] = ACTIONS(2847), + [1058] = { + [sym_identifier] = ACTIONS(2849), + [aux_sym_preproc_include_token1] = ACTIONS(2849), + [aux_sym_preproc_def_token1] = ACTIONS(2849), + [aux_sym_preproc_if_token1] = ACTIONS(2849), + [aux_sym_preproc_if_token2] = ACTIONS(2849), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2849), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2849), + [sym_preproc_directive] = ACTIONS(2849), + [anon_sym_LPAREN2] = ACTIONS(2851), + [anon_sym_BANG] = ACTIONS(2851), + [anon_sym_TILDE] = ACTIONS(2851), + [anon_sym_DASH] = ACTIONS(2849), + [anon_sym_PLUS] = ACTIONS(2849), + [anon_sym_STAR] = ACTIONS(2851), + [anon_sym_AMP_AMP] = ACTIONS(2851), + [anon_sym_AMP] = ACTIONS(2849), + [anon_sym_SEMI] = ACTIONS(2851), + [anon_sym_typedef] = ACTIONS(2849), + [anon_sym_extern] = ACTIONS(2849), + [anon_sym___attribute__] = ACTIONS(2849), + [anon_sym_COLON_COLON] = ACTIONS(2851), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2851), + [anon_sym___declspec] = ACTIONS(2849), + [anon_sym___based] = ACTIONS(2849), + [anon_sym___cdecl] = ACTIONS(2849), + [anon_sym___clrcall] = ACTIONS(2849), + [anon_sym___stdcall] = ACTIONS(2849), + [anon_sym___fastcall] = ACTIONS(2849), + [anon_sym___thiscall] = ACTIONS(2849), + [anon_sym___vectorcall] = ACTIONS(2849), + [anon_sym_LBRACE] = ACTIONS(2851), + [anon_sym_LBRACK] = ACTIONS(2849), + [anon_sym_static] = ACTIONS(2849), + [anon_sym_register] = ACTIONS(2849), + [anon_sym_inline] = ACTIONS(2849), + [anon_sym_thread_local] = ACTIONS(2849), + [anon_sym_const] = ACTIONS(2849), + [anon_sym_volatile] = ACTIONS(2849), + [anon_sym_restrict] = ACTIONS(2849), + [anon_sym__Atomic] = ACTIONS(2849), + [anon_sym_mutable] = ACTIONS(2849), + [anon_sym_constexpr] = ACTIONS(2849), + [anon_sym_constinit] = ACTIONS(2849), + [anon_sym_consteval] = ACTIONS(2849), + [anon_sym_signed] = ACTIONS(2849), + [anon_sym_unsigned] = ACTIONS(2849), + [anon_sym_long] = ACTIONS(2849), + [anon_sym_short] = ACTIONS(2849), + [sym_primitive_type] = ACTIONS(2849), + [anon_sym_enum] = ACTIONS(2849), + [anon_sym_class] = ACTIONS(2849), + [anon_sym_struct] = ACTIONS(2849), + [anon_sym_union] = ACTIONS(2849), + [anon_sym_if] = ACTIONS(2849), + [anon_sym_switch] = ACTIONS(2849), + [anon_sym_case] = ACTIONS(2849), + [anon_sym_default] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2849), + [anon_sym_do] = ACTIONS(2849), + [anon_sym_for] = ACTIONS(2849), + [anon_sym_return] = ACTIONS(2849), + [anon_sym_break] = ACTIONS(2849), + [anon_sym_continue] = ACTIONS(2849), + [anon_sym_goto] = ACTIONS(2849), + [anon_sym_not] = ACTIONS(2849), + [anon_sym_compl] = ACTIONS(2849), + [anon_sym_DASH_DASH] = ACTIONS(2851), + [anon_sym_PLUS_PLUS] = ACTIONS(2851), [anon_sym_sizeof] = ACTIONS(2849), [sym_number_literal] = ACTIONS(2851), - [anon_sym_L_SQUOTE] = ACTIONS(2853), - [anon_sym_u_SQUOTE] = ACTIONS(2853), - [anon_sym_U_SQUOTE] = ACTIONS(2853), - [anon_sym_u8_SQUOTE] = ACTIONS(2853), - [anon_sym_SQUOTE] = ACTIONS(2853), - [anon_sym_L_DQUOTE] = ACTIONS(2855), - [anon_sym_u_DQUOTE] = ACTIONS(2855), - [anon_sym_U_DQUOTE] = ACTIONS(2855), - [anon_sym_u8_DQUOTE] = ACTIONS(2855), - [anon_sym_DQUOTE] = ACTIONS(2855), - [sym_true] = ACTIONS(2857), - [sym_false] = ACTIONS(2857), - [sym_null] = ACTIONS(2857), + [anon_sym_L_SQUOTE] = ACTIONS(2851), + [anon_sym_u_SQUOTE] = ACTIONS(2851), + [anon_sym_U_SQUOTE] = ACTIONS(2851), + [anon_sym_u8_SQUOTE] = ACTIONS(2851), + [anon_sym_SQUOTE] = ACTIONS(2851), + [anon_sym_L_DQUOTE] = ACTIONS(2851), + [anon_sym_u_DQUOTE] = ACTIONS(2851), + [anon_sym_U_DQUOTE] = ACTIONS(2851), + [anon_sym_u8_DQUOTE] = ACTIONS(2851), + [anon_sym_DQUOTE] = ACTIONS(2851), + [sym_true] = ACTIONS(2849), + [sym_false] = ACTIONS(2849), + [sym_null] = ACTIONS(2849), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2849), + [anon_sym_decltype] = ACTIONS(2849), + [anon_sym_virtual] = ACTIONS(2849), + [anon_sym_explicit] = ACTIONS(2849), + [anon_sym_typename] = ACTIONS(2849), + [anon_sym_template] = ACTIONS(2849), + [anon_sym_operator] = ACTIONS(2849), + [anon_sym_try] = ACTIONS(2849), + [anon_sym_delete] = ACTIONS(2849), + [anon_sym_throw] = ACTIONS(2849), + [anon_sym_namespace] = ACTIONS(2849), + [anon_sym_using] = ACTIONS(2849), + [anon_sym_static_assert] = ACTIONS(2849), + [anon_sym_concept] = ACTIONS(2849), + [anon_sym_co_return] = ACTIONS(2849), + [anon_sym_co_yield] = ACTIONS(2849), + [anon_sym_co_await] = ACTIONS(2849), + [anon_sym_new] = ACTIONS(2849), + [anon_sym_requires] = ACTIONS(2849), + [sym_this] = ACTIONS(2849), + [sym_nullptr] = ACTIONS(2849), + [sym_raw_string_literal] = ACTIONS(2851), + }, + [1059] = { + [ts_builtin_sym_end] = ACTIONS(2759), + [sym_identifier] = ACTIONS(2757), + [aux_sym_preproc_include_token1] = ACTIONS(2757), + [aux_sym_preproc_def_token1] = ACTIONS(2757), + [aux_sym_preproc_if_token1] = ACTIONS(2757), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2757), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2757), + [sym_preproc_directive] = ACTIONS(2757), + [anon_sym_LPAREN2] = ACTIONS(2759), + [anon_sym_BANG] = ACTIONS(2759), + [anon_sym_TILDE] = ACTIONS(2759), + [anon_sym_DASH] = ACTIONS(2757), + [anon_sym_PLUS] = ACTIONS(2757), + [anon_sym_STAR] = ACTIONS(2759), + [anon_sym_AMP_AMP] = ACTIONS(2759), + [anon_sym_AMP] = ACTIONS(2757), + [anon_sym_SEMI] = ACTIONS(2759), + [anon_sym_typedef] = ACTIONS(2757), + [anon_sym_extern] = ACTIONS(2757), + [anon_sym___attribute__] = ACTIONS(2757), + [anon_sym_COLON_COLON] = ACTIONS(2759), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2759), + [anon_sym___declspec] = ACTIONS(2757), + [anon_sym___based] = ACTIONS(2757), + [anon_sym___cdecl] = ACTIONS(2757), + [anon_sym___clrcall] = ACTIONS(2757), + [anon_sym___stdcall] = ACTIONS(2757), + [anon_sym___fastcall] = ACTIONS(2757), + [anon_sym___thiscall] = ACTIONS(2757), + [anon_sym___vectorcall] = ACTIONS(2757), + [anon_sym_LBRACE] = ACTIONS(2759), + [anon_sym_LBRACK] = ACTIONS(2757), + [anon_sym_static] = ACTIONS(2757), + [anon_sym_register] = ACTIONS(2757), + [anon_sym_inline] = ACTIONS(2757), + [anon_sym_thread_local] = ACTIONS(2757), + [anon_sym_const] = ACTIONS(2757), + [anon_sym_volatile] = ACTIONS(2757), + [anon_sym_restrict] = ACTIONS(2757), + [anon_sym__Atomic] = ACTIONS(2757), + [anon_sym_mutable] = ACTIONS(2757), + [anon_sym_constexpr] = ACTIONS(2757), + [anon_sym_constinit] = ACTIONS(2757), + [anon_sym_consteval] = ACTIONS(2757), + [anon_sym_signed] = ACTIONS(2757), + [anon_sym_unsigned] = ACTIONS(2757), + [anon_sym_long] = ACTIONS(2757), + [anon_sym_short] = ACTIONS(2757), + [sym_primitive_type] = ACTIONS(2757), + [anon_sym_enum] = ACTIONS(2757), + [anon_sym_class] = ACTIONS(2757), + [anon_sym_struct] = ACTIONS(2757), + [anon_sym_union] = ACTIONS(2757), + [anon_sym_if] = ACTIONS(2757), + [anon_sym_switch] = ACTIONS(2757), + [anon_sym_case] = ACTIONS(2757), + [anon_sym_default] = ACTIONS(2757), + [anon_sym_while] = ACTIONS(2757), + [anon_sym_do] = ACTIONS(2757), + [anon_sym_for] = ACTIONS(2757), + [anon_sym_return] = ACTIONS(2757), + [anon_sym_break] = ACTIONS(2757), + [anon_sym_continue] = ACTIONS(2757), + [anon_sym_goto] = ACTIONS(2757), + [anon_sym_not] = ACTIONS(2757), + [anon_sym_compl] = ACTIONS(2757), + [anon_sym_DASH_DASH] = ACTIONS(2759), + [anon_sym_PLUS_PLUS] = ACTIONS(2759), + [anon_sym_sizeof] = ACTIONS(2757), + [sym_number_literal] = ACTIONS(2759), + [anon_sym_L_SQUOTE] = ACTIONS(2759), + [anon_sym_u_SQUOTE] = ACTIONS(2759), + [anon_sym_U_SQUOTE] = ACTIONS(2759), + [anon_sym_u8_SQUOTE] = ACTIONS(2759), + [anon_sym_SQUOTE] = ACTIONS(2759), + [anon_sym_L_DQUOTE] = ACTIONS(2759), + [anon_sym_u_DQUOTE] = ACTIONS(2759), + [anon_sym_U_DQUOTE] = ACTIONS(2759), + [anon_sym_u8_DQUOTE] = ACTIONS(2759), + [anon_sym_DQUOTE] = ACTIONS(2759), + [sym_true] = ACTIONS(2757), + [sym_false] = ACTIONS(2757), + [sym_null] = ACTIONS(2757), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_co_await] = ACTIONS(2861), - [anon_sym_new] = ACTIONS(2863), - [anon_sym_requires] = ACTIONS(2865), - [sym_this] = ACTIONS(2857), - [sym_nullptr] = ACTIONS(2857), - [sym_raw_string_literal] = ACTIONS(2867), + [sym_auto] = ACTIONS(2757), + [anon_sym_decltype] = ACTIONS(2757), + [anon_sym_virtual] = ACTIONS(2757), + [anon_sym_explicit] = ACTIONS(2757), + [anon_sym_typename] = ACTIONS(2757), + [anon_sym_template] = ACTIONS(2757), + [anon_sym_operator] = ACTIONS(2757), + [anon_sym_try] = ACTIONS(2757), + [anon_sym_delete] = ACTIONS(2757), + [anon_sym_throw] = ACTIONS(2757), + [anon_sym_namespace] = ACTIONS(2757), + [anon_sym_using] = ACTIONS(2757), + [anon_sym_static_assert] = ACTIONS(2757), + [anon_sym_concept] = ACTIONS(2757), + [anon_sym_co_return] = ACTIONS(2757), + [anon_sym_co_yield] = ACTIONS(2757), + [anon_sym_co_await] = ACTIONS(2757), + [anon_sym_new] = ACTIONS(2757), + [anon_sym_requires] = ACTIONS(2757), + [sym_this] = ACTIONS(2757), + [sym_nullptr] = ACTIONS(2757), + [sym_raw_string_literal] = ACTIONS(2759), }, - [1507] = { - [sym__expression] = STATE(3786), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(3196), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(3196), - [sym_call_expression] = STATE(3196), - [sym_field_expression] = STATE(3196), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(3196), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(3196), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN2] = ACTIONS(3061), - [anon_sym_BANG] = ACTIONS(3065), - [anon_sym_TILDE] = ACTIONS(3065), - [anon_sym_DASH] = ACTIONS(3063), - [anon_sym_PLUS] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(3069), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3071), - [anon_sym_PLUS_PLUS] = ACTIONS(3071), - [anon_sym_sizeof] = ACTIONS(3073), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [1060] = { + [ts_builtin_sym_end] = ACTIONS(2755), + [sym_identifier] = ACTIONS(2753), + [aux_sym_preproc_include_token1] = ACTIONS(2753), + [aux_sym_preproc_def_token1] = ACTIONS(2753), + [aux_sym_preproc_if_token1] = ACTIONS(2753), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2753), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2753), + [sym_preproc_directive] = ACTIONS(2753), + [anon_sym_LPAREN2] = ACTIONS(2755), + [anon_sym_BANG] = ACTIONS(2755), + [anon_sym_TILDE] = ACTIONS(2755), + [anon_sym_DASH] = ACTIONS(2753), + [anon_sym_PLUS] = ACTIONS(2753), + [anon_sym_STAR] = ACTIONS(2755), + [anon_sym_AMP_AMP] = ACTIONS(2755), + [anon_sym_AMP] = ACTIONS(2753), + [anon_sym_SEMI] = ACTIONS(2755), + [anon_sym_typedef] = ACTIONS(2753), + [anon_sym_extern] = ACTIONS(2753), + [anon_sym___attribute__] = ACTIONS(2753), + [anon_sym_COLON_COLON] = ACTIONS(2755), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2755), + [anon_sym___declspec] = ACTIONS(2753), + [anon_sym___based] = ACTIONS(2753), + [anon_sym___cdecl] = ACTIONS(2753), + [anon_sym___clrcall] = ACTIONS(2753), + [anon_sym___stdcall] = ACTIONS(2753), + [anon_sym___fastcall] = ACTIONS(2753), + [anon_sym___thiscall] = ACTIONS(2753), + [anon_sym___vectorcall] = ACTIONS(2753), + [anon_sym_LBRACE] = ACTIONS(2755), + [anon_sym_LBRACK] = ACTIONS(2753), + [anon_sym_static] = ACTIONS(2753), + [anon_sym_register] = ACTIONS(2753), + [anon_sym_inline] = ACTIONS(2753), + [anon_sym_thread_local] = ACTIONS(2753), + [anon_sym_const] = ACTIONS(2753), + [anon_sym_volatile] = ACTIONS(2753), + [anon_sym_restrict] = ACTIONS(2753), + [anon_sym__Atomic] = ACTIONS(2753), + [anon_sym_mutable] = ACTIONS(2753), + [anon_sym_constexpr] = ACTIONS(2753), + [anon_sym_constinit] = ACTIONS(2753), + [anon_sym_consteval] = ACTIONS(2753), + [anon_sym_signed] = ACTIONS(2753), + [anon_sym_unsigned] = ACTIONS(2753), + [anon_sym_long] = ACTIONS(2753), + [anon_sym_short] = ACTIONS(2753), + [sym_primitive_type] = ACTIONS(2753), + [anon_sym_enum] = ACTIONS(2753), + [anon_sym_class] = ACTIONS(2753), + [anon_sym_struct] = ACTIONS(2753), + [anon_sym_union] = ACTIONS(2753), + [anon_sym_if] = ACTIONS(2753), + [anon_sym_switch] = ACTIONS(2753), + [anon_sym_case] = ACTIONS(2753), + [anon_sym_default] = ACTIONS(2753), + [anon_sym_while] = ACTIONS(2753), + [anon_sym_do] = ACTIONS(2753), + [anon_sym_for] = ACTIONS(2753), + [anon_sym_return] = ACTIONS(2753), + [anon_sym_break] = ACTIONS(2753), + [anon_sym_continue] = ACTIONS(2753), + [anon_sym_goto] = ACTIONS(2753), + [anon_sym_not] = ACTIONS(2753), + [anon_sym_compl] = ACTIONS(2753), + [anon_sym_DASH_DASH] = ACTIONS(2755), + [anon_sym_PLUS_PLUS] = ACTIONS(2755), + [anon_sym_sizeof] = ACTIONS(2753), + [sym_number_literal] = ACTIONS(2755), + [anon_sym_L_SQUOTE] = ACTIONS(2755), + [anon_sym_u_SQUOTE] = ACTIONS(2755), + [anon_sym_U_SQUOTE] = ACTIONS(2755), + [anon_sym_u8_SQUOTE] = ACTIONS(2755), + [anon_sym_SQUOTE] = ACTIONS(2755), + [anon_sym_L_DQUOTE] = ACTIONS(2755), + [anon_sym_u_DQUOTE] = ACTIONS(2755), + [anon_sym_U_DQUOTE] = ACTIONS(2755), + [anon_sym_u8_DQUOTE] = ACTIONS(2755), + [anon_sym_DQUOTE] = ACTIONS(2755), + [sym_true] = ACTIONS(2753), + [sym_false] = ACTIONS(2753), + [sym_null] = ACTIONS(2753), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3075), - [anon_sym_co_await] = ACTIONS(3077), - [anon_sym_new] = ACTIONS(3079), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2753), + [anon_sym_decltype] = ACTIONS(2753), + [anon_sym_virtual] = ACTIONS(2753), + [anon_sym_explicit] = ACTIONS(2753), + [anon_sym_typename] = ACTIONS(2753), + [anon_sym_template] = ACTIONS(2753), + [anon_sym_operator] = ACTIONS(2753), + [anon_sym_try] = ACTIONS(2753), + [anon_sym_delete] = ACTIONS(2753), + [anon_sym_throw] = ACTIONS(2753), + [anon_sym_namespace] = ACTIONS(2753), + [anon_sym_using] = ACTIONS(2753), + [anon_sym_static_assert] = ACTIONS(2753), + [anon_sym_concept] = ACTIONS(2753), + [anon_sym_co_return] = ACTIONS(2753), + [anon_sym_co_yield] = ACTIONS(2753), + [anon_sym_co_await] = ACTIONS(2753), + [anon_sym_new] = ACTIONS(2753), + [anon_sym_requires] = ACTIONS(2753), + [sym_this] = ACTIONS(2753), + [sym_nullptr] = ACTIONS(2753), + [sym_raw_string_literal] = ACTIONS(2755), }, - [1508] = { - [sym__expression] = STATE(2912), - [sym_conditional_expression] = STATE(3000), - [sym_assignment_expression] = STATE(3000), - [sym_pointer_expression] = STATE(3006), - [sym_unary_expression] = STATE(3000), - [sym_binary_expression] = STATE(3000), - [sym_update_expression] = STATE(3000), - [sym_cast_expression] = STATE(3000), - [sym_sizeof_expression] = STATE(3000), - [sym_subscript_expression] = STATE(3006), - [sym_call_expression] = STATE(3006), - [sym_field_expression] = STATE(3006), - [sym_compound_literal_expression] = STATE(3000), - [sym_parenthesized_expression] = STATE(3006), - [sym_char_literal] = STATE(2896), - [sym_concatenated_string] = STATE(2896), - [sym_string_literal] = STATE(2154), - [sym__class_name] = STATE(5849), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3000), - [sym_co_await_expression] = STATE(3000), - [sym_new_expression] = STATE(3000), - [sym_delete_expression] = STATE(3000), - [sym_requires_clause] = STATE(3000), - [sym_requires_expression] = STATE(3000), - [sym_lambda_expression] = STATE(3000), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3000), - [sym_parameter_pack_expansion] = STATE(3000), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4642), - [sym_qualified_identifier] = STATE(3006), - [sym_qualified_type_identifier] = STATE(5849), - [sym_user_defined_literal] = STATE(3000), - [sym_identifier] = ACTIONS(2831), - [anon_sym_LPAREN2] = ACTIONS(2833), - [anon_sym_BANG] = ACTIONS(2837), - [anon_sym_TILDE] = ACTIONS(2837), - [anon_sym_DASH] = ACTIONS(2835), - [anon_sym_PLUS] = ACTIONS(2835), - [anon_sym_STAR] = ACTIONS(2537), - [anon_sym_AMP] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(2841), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(2845), - [anon_sym_DASH_DASH] = ACTIONS(2847), - [anon_sym_PLUS_PLUS] = ACTIONS(2847), - [anon_sym_sizeof] = ACTIONS(2849), - [sym_number_literal] = ACTIONS(2851), - [anon_sym_L_SQUOTE] = ACTIONS(2853), - [anon_sym_u_SQUOTE] = ACTIONS(2853), - [anon_sym_U_SQUOTE] = ACTIONS(2853), - [anon_sym_u8_SQUOTE] = ACTIONS(2853), - [anon_sym_SQUOTE] = ACTIONS(2853), - [anon_sym_L_DQUOTE] = ACTIONS(2855), - [anon_sym_u_DQUOTE] = ACTIONS(2855), - [anon_sym_U_DQUOTE] = ACTIONS(2855), - [anon_sym_u8_DQUOTE] = ACTIONS(2855), - [anon_sym_DQUOTE] = ACTIONS(2855), - [sym_true] = ACTIONS(2857), - [sym_false] = ACTIONS(2857), - [sym_null] = ACTIONS(2857), + [1061] = { + [sym_ms_based_modifier] = STATE(7250), + [sym_ms_unaligned_ptr_modifier] = STATE(4398), + [sym_ms_pointer_modifier] = STATE(3228), + [sym__declarator] = STATE(5326), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(5080), + [sym_array_declarator] = STATE(5080), + [sym_type_qualifier] = STATE(3628), + [sym__expression] = STATE(2548), + [sym_conditional_expression] = STATE(2562), + [sym_assignment_expression] = STATE(2562), + [sym_pointer_expression] = STATE(2549), + [sym_unary_expression] = STATE(2562), + [sym_binary_expression] = STATE(2562), + [sym_update_expression] = STATE(2562), + [sym_cast_expression] = STATE(2562), + [sym_sizeof_expression] = STATE(2562), + [sym_subscript_expression] = STATE(2549), + [sym_call_expression] = STATE(2549), + [sym_field_expression] = STATE(2549), + [sym_compound_literal_expression] = STATE(2562), + [sym_parenthesized_expression] = STATE(2549), + [sym_char_literal] = STATE(2344), + [sym_concatenated_string] = STATE(2344), + [sym_string_literal] = STATE(1824), + [sym__class_name] = STATE(6654), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2787), + [sym_co_await_expression] = STATE(2562), + [sym_new_expression] = STATE(2562), + [sym_delete_expression] = STATE(2562), + [sym_requires_clause] = STATE(2562), + [sym_requires_expression] = STATE(2562), + [sym_lambda_expression] = STATE(2562), + [sym_lambda_capture_specifier] = STATE(4787), + [sym_fold_expression] = STATE(2562), + [sym_parameter_pack_expansion] = STATE(2562), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4899), + [sym_qualified_identifier] = STATE(2786), + [sym_qualified_type_identifier] = STATE(6654), + [sym_operator_name] = STATE(5080), + [sym_user_defined_literal] = STATE(2562), + [aux_sym_type_definition_repeat1] = STATE(3628), + [aux_sym_pointer_declarator_repeat1] = STATE(3228), + [sym_identifier] = ACTIONS(2955), + [anon_sym_LPAREN2] = ACTIONS(2957), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(2959), + [anon_sym_DASH] = ACTIONS(1703), + [anon_sym_PLUS] = ACTIONS(1703), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1709), + [anon_sym___based] = ACTIONS(47), + [sym_ms_restrict_modifier] = ACTIONS(2961), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(2961), + [sym_ms_signed_ptr_modifier] = ACTIONS(2961), + [anon_sym__unaligned] = ACTIONS(2963), + [anon_sym___unaligned] = ACTIONS(2963), + [anon_sym_LBRACK] = ACTIONS(1481), + [anon_sym_const] = ACTIONS(2965), + [anon_sym_volatile] = ACTIONS(2965), + [anon_sym_restrict] = ACTIONS(2965), + [anon_sym__Atomic] = ACTIONS(2965), + [anon_sym_mutable] = ACTIONS(2965), + [anon_sym_constexpr] = ACTIONS(2965), + [anon_sym_constinit] = ACTIONS(2965), + [anon_sym_consteval] = ACTIONS(2965), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(1703), + [anon_sym_compl] = ACTIONS(1703), + [anon_sym_DASH_DASH] = ACTIONS(1717), + [anon_sym_PLUS_PLUS] = ACTIONS(1717), + [anon_sym_sizeof] = ACTIONS(1719), + [sym_number_literal] = ACTIONS(1721), + [anon_sym_L_SQUOTE] = ACTIONS(1723), + [anon_sym_u_SQUOTE] = ACTIONS(1723), + [anon_sym_U_SQUOTE] = ACTIONS(1723), + [anon_sym_u8_SQUOTE] = ACTIONS(1723), + [anon_sym_SQUOTE] = ACTIONS(1723), + [anon_sym_L_DQUOTE] = ACTIONS(1725), + [anon_sym_u_DQUOTE] = ACTIONS(1725), + [anon_sym_U_DQUOTE] = ACTIONS(1725), + [anon_sym_u8_DQUOTE] = ACTIONS(1725), + [anon_sym_DQUOTE] = ACTIONS(1725), + [sym_true] = ACTIONS(1727), + [sym_false] = ACTIONS(1727), + [sym_null] = ACTIONS(1727), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_operator] = ACTIONS(1501), + [anon_sym_delete] = ACTIONS(1729), + [anon_sym_co_await] = ACTIONS(1731), + [anon_sym_new] = ACTIONS(1733), + [anon_sym_requires] = ACTIONS(1735), + [sym_this] = ACTIONS(1727), + [sym_nullptr] = ACTIONS(1727), + [sym_raw_string_literal] = ACTIONS(1737), + }, + [1062] = { + [sym_function_definition] = STATE(500), + [sym_declaration] = STATE(500), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4215), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(3343), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym_ms_call_modifier] = STATE(1989), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(4951), + [sym_array_declarator] = STATE(5080), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3414), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym__empty_declaration] = STATE(500), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1938), + [sym_dependent_type] = STATE(3481), + [sym_template_declaration] = STATE(500), + [sym_operator_cast] = STATE(5489), + [sym__constructor_specifiers] = STATE(1938), + [sym_operator_cast_definition] = STATE(500), + [sym_operator_cast_declaration] = STATE(500), + [sym_constructor_or_destructor_definition] = STATE(500), + [sym_constructor_or_destructor_declaration] = STATE(500), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3395), + [sym_template_function] = STATE(5080), + [sym_alias_declaration] = STATE(500), + [sym_concept_definition] = STATE(500), + [sym_requires_clause] = STATE(1084), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4792), + [sym_qualified_identifier] = STATE(5080), + [sym_qualified_type_identifier] = STATE(3490), + [sym_qualified_operator_cast_identifier] = STATE(5489), + [sym_operator_name] = STATE(5080), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_operator_cast_definition_repeat1] = STATE(1938), + [sym_identifier] = ACTIONS(2967), + [anon_sym_LPAREN2] = ACTIONS(1519), + [anon_sym_TILDE] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1523), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(2969), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(1531), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(2438), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_co_await] = ACTIONS(2861), - [anon_sym_new] = ACTIONS(2863), - [anon_sym_requires] = ACTIONS(2865), - [sym_this] = ACTIONS(2857), - [sym_nullptr] = ACTIONS(2857), - [sym_raw_string_literal] = ACTIONS(2867), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(2971), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_using] = ACTIONS(2973), + [anon_sym_concept] = ACTIONS(287), + [anon_sym_requires] = ACTIONS(2975), }, - [1509] = { - [sym__expression] = STATE(3783), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(3196), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(3196), - [sym_call_expression] = STATE(3196), - [sym_field_expression] = STATE(3196), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(3196), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(3196), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN2] = ACTIONS(3061), - [anon_sym_BANG] = ACTIONS(3065), - [anon_sym_TILDE] = ACTIONS(3065), - [anon_sym_DASH] = ACTIONS(3063), - [anon_sym_PLUS] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(3069), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3071), - [anon_sym_PLUS_PLUS] = ACTIONS(3071), - [anon_sym_sizeof] = ACTIONS(3073), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [1063] = { + [sym_function_definition] = STATE(2375), + [sym_declaration] = STATE(2375), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4251), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(3343), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym_ms_call_modifier] = STATE(1998), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(4945), + [sym_array_declarator] = STATE(5080), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3394), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym__empty_declaration] = STATE(2375), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1983), + [sym_dependent_type] = STATE(3481), + [sym_template_declaration] = STATE(2375), + [sym_operator_cast] = STATE(5477), + [sym__constructor_specifiers] = STATE(1983), + [sym_operator_cast_definition] = STATE(2375), + [sym_operator_cast_declaration] = STATE(2375), + [sym_constructor_or_destructor_definition] = STATE(2375), + [sym_constructor_or_destructor_declaration] = STATE(2375), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3395), + [sym_template_function] = STATE(5080), + [sym_alias_declaration] = STATE(2375), + [sym_concept_definition] = STATE(2375), + [sym_requires_clause] = STATE(1078), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4792), + [sym_qualified_identifier] = STATE(5080), + [sym_qualified_type_identifier] = STATE(3490), + [sym_qualified_operator_cast_identifier] = STATE(5477), + [sym_operator_name] = STATE(5080), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_operator_cast_definition_repeat1] = STATE(1983), + [sym_identifier] = ACTIONS(2967), + [anon_sym_LPAREN2] = ACTIONS(1519), + [anon_sym_TILDE] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1523), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(2969), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(1531), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(2438), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3075), - [anon_sym_co_await] = ACTIONS(3077), - [anon_sym_new] = ACTIONS(3079), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(1791), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_using] = ACTIONS(2977), + [anon_sym_concept] = ACTIONS(2979), + [anon_sym_requires] = ACTIONS(2975), }, - [1510] = { - [sym__expression] = STATE(3781), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(3196), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(3196), - [sym_call_expression] = STATE(3196), - [sym_field_expression] = STATE(3196), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(3196), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(3196), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN2] = ACTIONS(3061), - [anon_sym_BANG] = ACTIONS(3065), - [anon_sym_TILDE] = ACTIONS(3065), - [anon_sym_DASH] = ACTIONS(3063), - [anon_sym_PLUS] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(3069), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3071), - [anon_sym_PLUS_PLUS] = ACTIONS(3071), - [anon_sym_sizeof] = ACTIONS(3073), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [1064] = { + [sym_function_definition] = STATE(1048), + [sym_declaration] = STATE(1048), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4230), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(3343), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym_ms_call_modifier] = STATE(1995), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(4966), + [sym_array_declarator] = STATE(5080), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3413), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym__empty_declaration] = STATE(1048), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1975), + [sym_dependent_type] = STATE(3481), + [sym_template_declaration] = STATE(1048), + [sym_operator_cast] = STATE(5474), + [sym__constructor_specifiers] = STATE(1975), + [sym_operator_cast_definition] = STATE(1048), + [sym_operator_cast_declaration] = STATE(1048), + [sym_constructor_or_destructor_definition] = STATE(1048), + [sym_constructor_or_destructor_declaration] = STATE(1048), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3395), + [sym_template_function] = STATE(5080), + [sym_alias_declaration] = STATE(1048), + [sym_concept_definition] = STATE(1048), + [sym_requires_clause] = STATE(1083), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4792), + [sym_qualified_identifier] = STATE(5080), + [sym_qualified_type_identifier] = STATE(3490), + [sym_qualified_operator_cast_identifier] = STATE(5474), + [sym_operator_name] = STATE(5080), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_operator_cast_definition_repeat1] = STATE(1975), + [sym_identifier] = ACTIONS(2967), + [anon_sym_LPAREN2] = ACTIONS(1519), + [anon_sym_TILDE] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1523), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(2969), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(1531), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(2438), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3075), - [anon_sym_co_await] = ACTIONS(3077), - [anon_sym_new] = ACTIONS(3079), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(2981), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_using] = ACTIONS(2983), + [anon_sym_concept] = ACTIONS(602), + [anon_sym_requires] = ACTIONS(2975), }, - [1511] = { - [sym__expression] = STATE(3898), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(3196), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(3196), - [sym_call_expression] = STATE(3196), - [sym_field_expression] = STATE(3196), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(3196), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(3196), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN2] = ACTIONS(3061), - [anon_sym_BANG] = ACTIONS(3065), - [anon_sym_TILDE] = ACTIONS(3065), - [anon_sym_DASH] = ACTIONS(3063), - [anon_sym_PLUS] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(3069), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3071), - [anon_sym_PLUS_PLUS] = ACTIONS(3071), - [anon_sym_sizeof] = ACTIONS(3073), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [1065] = { + [sym_function_definition] = STATE(917), + [sym_declaration] = STATE(917), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4216), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(3343), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym_ms_call_modifier] = STATE(2011), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(4965), + [sym_array_declarator] = STATE(5080), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3372), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym__empty_declaration] = STATE(917), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1982), + [sym_dependent_type] = STATE(3481), + [sym_template_declaration] = STATE(917), + [sym_operator_cast] = STATE(5456), + [sym__constructor_specifiers] = STATE(1982), + [sym_operator_cast_definition] = STATE(917), + [sym_operator_cast_declaration] = STATE(917), + [sym_constructor_or_destructor_definition] = STATE(917), + [sym_constructor_or_destructor_declaration] = STATE(917), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3395), + [sym_template_function] = STATE(5080), + [sym_alias_declaration] = STATE(917), + [sym_concept_definition] = STATE(917), + [sym_requires_clause] = STATE(1080), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4792), + [sym_qualified_identifier] = STATE(5080), + [sym_qualified_type_identifier] = STATE(3490), + [sym_qualified_operator_cast_identifier] = STATE(5456), + [sym_operator_name] = STATE(5080), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_operator_cast_definition_repeat1] = STATE(1982), + [sym_identifier] = ACTIONS(2967), + [anon_sym_LPAREN2] = ACTIONS(1519), + [anon_sym_TILDE] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1523), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(2969), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(1531), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(2438), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3075), - [anon_sym_co_await] = ACTIONS(3077), - [anon_sym_new] = ACTIONS(3079), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(2985), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_using] = ACTIONS(2987), + [anon_sym_concept] = ACTIONS(207), + [anon_sym_requires] = ACTIONS(2975), }, - [1512] = { - [sym__expression] = STATE(3643), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), + [1066] = { + [sym_function_definition] = STATE(2149), + [sym_declaration] = STATE(2149), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4222), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(3343), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym_ms_call_modifier] = STATE(2121), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(4956), + [sym_array_declarator] = STATE(5080), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3382), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym__empty_declaration] = STATE(2149), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1985), + [sym_dependent_type] = STATE(3481), + [sym_template_declaration] = STATE(2149), + [sym_operator_cast] = STATE(5475), + [sym__constructor_specifiers] = STATE(1985), + [sym_operator_cast_definition] = STATE(2149), + [sym_operator_cast_declaration] = STATE(2149), + [sym_constructor_or_destructor_definition] = STATE(2149), + [sym_constructor_or_destructor_declaration] = STATE(2149), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3395), + [sym_template_function] = STATE(5080), + [sym_alias_declaration] = STATE(2149), + [sym_concept_definition] = STATE(2149), + [sym_requires_clause] = STATE(1093), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4792), + [sym_qualified_identifier] = STATE(5080), + [sym_qualified_type_identifier] = STATE(3490), + [sym_qualified_operator_cast_identifier] = STATE(5475), + [sym_operator_name] = STATE(5080), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_operator_cast_definition_repeat1] = STATE(1985), + [sym_identifier] = ACTIONS(2967), + [anon_sym_LPAREN2] = ACTIONS(1519), + [anon_sym_TILDE] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1523), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(2969), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(1531), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(2438), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(1553), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_using] = ACTIONS(2989), + [anon_sym_concept] = ACTIONS(2991), + [anon_sym_requires] = ACTIONS(2975), + }, + [1067] = { + [sym_ms_based_modifier] = STATE(7250), + [sym_ms_unaligned_ptr_modifier] = STATE(4398), + [sym_ms_pointer_modifier] = STATE(3228), + [sym__declarator] = STATE(5326), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(5080), + [sym_array_declarator] = STATE(5080), + [sym_type_qualifier] = STATE(3628), + [sym__expression] = STATE(2630), + [sym_conditional_expression] = STATE(2821), + [sym_assignment_expression] = STATE(2821), + [sym_pointer_expression] = STATE(2805), + [sym_unary_expression] = STATE(2821), + [sym_binary_expression] = STATE(2821), + [sym_update_expression] = STATE(2821), + [sym_cast_expression] = STATE(2821), + [sym_sizeof_expression] = STATE(2821), + [sym_subscript_expression] = STATE(2805), + [sym_call_expression] = STATE(2805), + [sym_field_expression] = STATE(2805), + [sym_compound_literal_expression] = STATE(2821), + [sym_parenthesized_expression] = STATE(2805), + [sym_char_literal] = STATE(2577), + [sym_concatenated_string] = STATE(2577), + [sym_string_literal] = STATE(1861), + [sym__class_name] = STATE(6652), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2585), + [sym_co_await_expression] = STATE(2821), + [sym_new_expression] = STATE(2821), + [sym_delete_expression] = STATE(2821), + [sym_requires_clause] = STATE(2821), + [sym_requires_expression] = STATE(2821), + [sym_lambda_expression] = STATE(2821), + [sym_lambda_capture_specifier] = STATE(4790), + [sym_fold_expression] = STATE(2821), + [sym_parameter_pack_expansion] = STATE(2821), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4891), + [sym_qualified_identifier] = STATE(2586), + [sym_qualified_type_identifier] = STATE(6652), + [sym_operator_name] = STATE(5080), + [sym_user_defined_literal] = STATE(2821), + [aux_sym_type_definition_repeat1] = STATE(3628), + [aux_sym_pointer_declarator_repeat1] = STATE(3228), + [sym_identifier] = ACTIONS(2993), + [anon_sym_LPAREN2] = ACTIONS(2995), + [anon_sym_BANG] = ACTIONS(1745), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(1743), + [anon_sym_PLUS] = ACTIONS(1743), + [anon_sym_STAR] = ACTIONS(1477), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1479), + [anon_sym_COLON_COLON] = ACTIONS(1749), + [anon_sym___based] = ACTIONS(47), + [sym_ms_restrict_modifier] = ACTIONS(2961), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(2961), + [sym_ms_signed_ptr_modifier] = ACTIONS(2961), + [anon_sym__unaligned] = ACTIONS(2963), + [anon_sym___unaligned] = ACTIONS(2963), + [anon_sym_LBRACK] = ACTIONS(1481), + [anon_sym_const] = ACTIONS(2965), + [anon_sym_volatile] = ACTIONS(2965), + [anon_sym_restrict] = ACTIONS(2965), + [anon_sym__Atomic] = ACTIONS(2965), + [anon_sym_mutable] = ACTIONS(2965), + [anon_sym_constexpr] = ACTIONS(2965), + [anon_sym_constinit] = ACTIONS(2965), + [anon_sym_consteval] = ACTIONS(2965), + [sym_primitive_type] = ACTIONS(1753), + [anon_sym_not] = ACTIONS(1743), + [anon_sym_compl] = ACTIONS(1743), + [anon_sym_DASH_DASH] = ACTIONS(1755), + [anon_sym_PLUS_PLUS] = ACTIONS(1755), + [anon_sym_sizeof] = ACTIONS(1757), + [sym_number_literal] = ACTIONS(1759), + [anon_sym_L_SQUOTE] = ACTIONS(1761), + [anon_sym_u_SQUOTE] = ACTIONS(1761), + [anon_sym_U_SQUOTE] = ACTIONS(1761), + [anon_sym_u8_SQUOTE] = ACTIONS(1761), + [anon_sym_SQUOTE] = ACTIONS(1761), + [anon_sym_L_DQUOTE] = ACTIONS(1763), + [anon_sym_u_DQUOTE] = ACTIONS(1763), + [anon_sym_U_DQUOTE] = ACTIONS(1763), + [anon_sym_u8_DQUOTE] = ACTIONS(1763), + [anon_sym_DQUOTE] = ACTIONS(1763), + [sym_true] = ACTIONS(1765), + [sym_false] = ACTIONS(1765), + [sym_null] = ACTIONS(1765), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_operator] = ACTIONS(1501), + [anon_sym_delete] = ACTIONS(1767), + [anon_sym_co_await] = ACTIONS(1769), + [anon_sym_new] = ACTIONS(1771), + [anon_sym_requires] = ACTIONS(1773), + [sym_this] = ACTIONS(1765), + [sym_nullptr] = ACTIONS(1765), + [sym_raw_string_literal] = ACTIONS(1775), + }, + [1068] = { + [sym_function_definition] = STATE(2302), + [sym_declaration] = STATE(2302), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4239), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(3343), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym_ms_call_modifier] = STATE(2103), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(4964), + [sym_array_declarator] = STATE(5080), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3388), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym__empty_declaration] = STATE(2302), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1984), + [sym_dependent_type] = STATE(3481), + [sym_template_declaration] = STATE(2302), + [sym_operator_cast] = STATE(5470), + [sym__constructor_specifiers] = STATE(1984), + [sym_operator_cast_definition] = STATE(2302), + [sym_operator_cast_declaration] = STATE(2302), + [sym_constructor_or_destructor_definition] = STATE(2302), + [sym_constructor_or_destructor_declaration] = STATE(2302), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3395), + [sym_template_function] = STATE(5080), + [sym_alias_declaration] = STATE(2302), + [sym_concept_definition] = STATE(2302), + [sym_requires_clause] = STATE(1086), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4792), + [sym_qualified_identifier] = STATE(5080), + [sym_qualified_type_identifier] = STATE(3490), + [sym_qualified_operator_cast_identifier] = STATE(5470), + [sym_operator_name] = STATE(5080), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [sym_identifier] = ACTIONS(2967), + [anon_sym_LPAREN2] = ACTIONS(1519), + [anon_sym_TILDE] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1523), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(2969), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(1531), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(2438), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(1813), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_using] = ACTIONS(2999), + [anon_sym_concept] = ACTIONS(3001), + [anon_sym_requires] = ACTIONS(2975), + }, + [1069] = { + [sym_function_definition] = STATE(1004), + [sym_declaration] = STATE(1004), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4232), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(3343), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym_ms_call_modifier] = STATE(2073), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(4977), + [sym_array_declarator] = STATE(5080), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3385), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym__empty_declaration] = STATE(1004), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1963), + [sym_dependent_type] = STATE(3481), + [sym_template_declaration] = STATE(1004), + [sym_operator_cast] = STATE(5473), + [sym__constructor_specifiers] = STATE(1963), + [sym_operator_cast_definition] = STATE(1004), + [sym_operator_cast_declaration] = STATE(1004), + [sym_constructor_or_destructor_definition] = STATE(1004), + [sym_constructor_or_destructor_declaration] = STATE(1004), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3395), + [sym_template_function] = STATE(5080), + [sym_alias_declaration] = STATE(1004), + [sym_concept_definition] = STATE(1004), + [sym_requires_clause] = STATE(1079), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4792), + [sym_qualified_identifier] = STATE(5080), + [sym_qualified_type_identifier] = STATE(3490), + [sym_qualified_operator_cast_identifier] = STATE(5473), + [sym_operator_name] = STATE(5080), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_operator_cast_definition_repeat1] = STATE(1963), + [sym_identifier] = ACTIONS(2967), + [anon_sym_LPAREN2] = ACTIONS(1519), + [anon_sym_TILDE] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1523), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(2969), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(1531), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(2438), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(3003), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_using] = ACTIONS(3005), + [anon_sym_concept] = ACTIONS(131), + [anon_sym_requires] = ACTIONS(2975), + }, + [1070] = { + [sym__expression] = STATE(3507), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_initializer_list] = STATE(3506), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1699), + [anon_sym_COMMA] = ACTIONS(1699), + [anon_sym_RPAREN] = ACTIONS(1699), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(25), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(1707), + [anon_sym_PERCENT] = ACTIONS(1699), + [anon_sym_PIPE_PIPE] = ACTIONS(1699), + [anon_sym_AMP_AMP] = ACTIONS(1699), + [anon_sym_PIPE] = ACTIONS(1707), + [anon_sym_CARET] = ACTIONS(1699), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_EQ_EQ] = ACTIONS(1699), + [anon_sym_BANG_EQ] = ACTIONS(1699), + [anon_sym_GT] = ACTIONS(1707), + [anon_sym_GT_EQ] = ACTIONS(1699), + [anon_sym_LT_EQ] = ACTIONS(1707), + [anon_sym_LT] = ACTIONS(1707), + [anon_sym_LT_LT] = ACTIONS(1699), + [anon_sym_GT_GT] = ACTIONS(1699), + [anon_sym_SEMI] = ACTIONS(1699), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_RBRACE] = ACTIONS(1699), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_QMARK] = ACTIONS(1699), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_LT_EQ_GT] = ACTIONS(1699), + [anon_sym_or] = ACTIONS(1707), + [anon_sym_and] = ACTIONS(1707), + [anon_sym_bitor] = ACTIONS(1707), + [anon_sym_xor] = ACTIONS(1707), + [anon_sym_bitand] = ACTIONS(1707), + [anon_sym_not_eq] = ACTIONS(1707), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(1707), + [anon_sym_DASH_GT] = ACTIONS(1699), [sym_number_literal] = ACTIONS(97), [anon_sym_L_SQUOTE] = ACTIONS(99), [anon_sym_u_SQUOTE] = ACTIONS(99), @@ -186019,7 +154570,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), + [anon_sym_template] = ACTIONS(976), [anon_sym_delete] = ACTIONS(121), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), @@ -186028,125 +154579,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [1513] = { - [sym__expression] = STATE(3780), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(3196), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(3196), - [sym_call_expression] = STATE(3196), - [sym_field_expression] = STATE(3196), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(3196), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(3196), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN2] = ACTIONS(3061), - [anon_sym_BANG] = ACTIONS(3065), - [anon_sym_TILDE] = ACTIONS(3065), - [anon_sym_DASH] = ACTIONS(3063), - [anon_sym_PLUS] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(3069), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3071), - [anon_sym_PLUS_PLUS] = ACTIONS(3071), - [anon_sym_sizeof] = ACTIONS(3073), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3075), - [anon_sym_co_await] = ACTIONS(3077), - [anon_sym_new] = ACTIONS(3079), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), - }, - [1514] = { - [sym__expression] = STATE(3613), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), + [1071] = { + [sym__expression] = STATE(3790), + [sym_comma_expression] = STATE(6855), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3009), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3012), + [anon_sym_extern] = ACTIONS(3014), + [anon_sym___attribute__] = ACTIONS(3014), + [anon_sym_COLON_COLON] = ACTIONS(3016), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3019), + [anon_sym___declspec] = ACTIONS(3014), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_static] = ACTIONS(3014), + [anon_sym_register] = ACTIONS(3014), + [anon_sym_inline] = ACTIONS(3014), + [anon_sym_thread_local] = ACTIONS(3014), + [anon_sym_const] = ACTIONS(3014), + [anon_sym_volatile] = ACTIONS(3014), + [anon_sym_restrict] = ACTIONS(3014), + [anon_sym__Atomic] = ACTIONS(3014), + [anon_sym_mutable] = ACTIONS(3014), + [anon_sym_constexpr] = ACTIONS(3014), + [anon_sym_constinit] = ACTIONS(3014), + [anon_sym_consteval] = ACTIONS(3014), + [anon_sym_signed] = ACTIONS(3014), + [anon_sym_unsigned] = ACTIONS(3014), + [anon_sym_long] = ACTIONS(3014), + [anon_sym_short] = ACTIONS(3014), + [sym_primitive_type] = ACTIONS(3021), + [anon_sym_enum] = ACTIONS(3014), + [anon_sym_class] = ACTIONS(3014), + [anon_sym_struct] = ACTIONS(3014), + [anon_sym_union] = ACTIONS(3014), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -186165,7 +154671,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), + [sym_auto] = ACTIONS(3014), + [anon_sym_decltype] = ACTIONS(3014), + [anon_sym_virtual] = ACTIONS(3014), + [anon_sym_typename] = ACTIONS(3014), + [anon_sym_template] = ACTIONS(3024), [anon_sym_delete] = ACTIONS(121), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), @@ -186174,128 +154684,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [1515] = { - [sym__expression] = STATE(3790), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(3196), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(3196), - [sym_call_expression] = STATE(3196), - [sym_field_expression] = STATE(3196), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(3196), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(3196), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN2] = ACTIONS(3061), - [anon_sym_BANG] = ACTIONS(3065), - [anon_sym_TILDE] = ACTIONS(3065), - [anon_sym_DASH] = ACTIONS(3063), - [anon_sym_PLUS] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(3069), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3071), - [anon_sym_PLUS_PLUS] = ACTIONS(3071), - [anon_sym_sizeof] = ACTIONS(3073), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3075), - [anon_sym_co_await] = ACTIONS(3077), - [anon_sym_new] = ACTIONS(3079), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), - }, - [1516] = { - [sym__expression] = STATE(3830), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(3196), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(3196), - [sym_call_expression] = STATE(3196), - [sym_field_expression] = STATE(3196), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(3196), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(3196), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN2] = ACTIONS(3061), - [anon_sym_BANG] = ACTIONS(3065), - [anon_sym_TILDE] = ACTIONS(3065), - [anon_sym_DASH] = ACTIONS(3063), - [anon_sym_PLUS] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(3069), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3071), - [anon_sym_PLUS_PLUS] = ACTIONS(3071), - [anon_sym_sizeof] = ACTIONS(3073), + [1072] = { + [sym__expression] = STATE(3732), + [sym_comma_expression] = STATE(6777), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3027), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3030), + [anon_sym_extern] = ACTIONS(2551), + [anon_sym___attribute__] = ACTIONS(2551), + [anon_sym_COLON_COLON] = ACTIONS(3032), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2553), + [anon_sym___declspec] = ACTIONS(2551), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_static] = ACTIONS(2551), + [anon_sym_register] = ACTIONS(2551), + [anon_sym_inline] = ACTIONS(2551), + [anon_sym_thread_local] = ACTIONS(2551), + [anon_sym_const] = ACTIONS(2551), + [anon_sym_volatile] = ACTIONS(2551), + [anon_sym_restrict] = ACTIONS(2551), + [anon_sym__Atomic] = ACTIONS(2551), + [anon_sym_mutable] = ACTIONS(2551), + [anon_sym_constexpr] = ACTIONS(2551), + [anon_sym_constinit] = ACTIONS(2551), + [anon_sym_consteval] = ACTIONS(2551), + [anon_sym_signed] = ACTIONS(2551), + [anon_sym_unsigned] = ACTIONS(2551), + [anon_sym_long] = ACTIONS(2551), + [anon_sym_short] = ACTIONS(2551), + [sym_primitive_type] = ACTIONS(3035), + [anon_sym_enum] = ACTIONS(2551), + [anon_sym_class] = ACTIONS(2551), + [anon_sym_struct] = ACTIONS(2551), + [anon_sym_union] = ACTIONS(2551), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), [sym_number_literal] = ACTIONS(97), [anon_sym_L_SQUOTE] = ACTIONS(99), [anon_sym_u_SQUOTE] = ACTIONS(99), @@ -186311,61 +154776,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3075), - [anon_sym_co_await] = ACTIONS(3077), - [anon_sym_new] = ACTIONS(3079), + [sym_auto] = ACTIONS(2551), + [anon_sym_decltype] = ACTIONS(2551), + [anon_sym_virtual] = ACTIONS(2551), + [anon_sym_typename] = ACTIONS(2551), + [anon_sym_template] = ACTIONS(3038), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [1517] = { - [sym__expression] = STATE(3658), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), + [1073] = { + [sym__expression] = STATE(3756), + [sym_comma_expression] = STATE(6897), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3044), + [anon_sym_extern] = ACTIONS(2607), + [anon_sym___attribute__] = ACTIONS(2607), + [anon_sym_COLON_COLON] = ACTIONS(3046), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2609), + [anon_sym___declspec] = ACTIONS(2607), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_static] = ACTIONS(2607), + [anon_sym_register] = ACTIONS(2607), + [anon_sym_inline] = ACTIONS(2607), + [anon_sym_thread_local] = ACTIONS(2607), + [anon_sym_const] = ACTIONS(2607), + [anon_sym_volatile] = ACTIONS(2607), + [anon_sym_restrict] = ACTIONS(2607), + [anon_sym__Atomic] = ACTIONS(2607), + [anon_sym_mutable] = ACTIONS(2607), + [anon_sym_constexpr] = ACTIONS(2607), + [anon_sym_constinit] = ACTIONS(2607), + [anon_sym_consteval] = ACTIONS(2607), + [anon_sym_signed] = ACTIONS(2607), + [anon_sym_unsigned] = ACTIONS(2607), + [anon_sym_long] = ACTIONS(2607), + [anon_sym_short] = ACTIONS(2607), + [sym_primitive_type] = ACTIONS(3049), + [anon_sym_enum] = ACTIONS(2607), + [anon_sym_class] = ACTIONS(2607), + [anon_sym_struct] = ACTIONS(2607), + [anon_sym_union] = ACTIONS(2607), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -186384,7 +154881,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), + [sym_auto] = ACTIONS(2607), + [anon_sym_decltype] = ACTIONS(2607), + [anon_sym_virtual] = ACTIONS(2607), + [anon_sym_typename] = ACTIONS(2607), + [anon_sym_template] = ACTIONS(3052), [anon_sym_delete] = ACTIONS(121), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), @@ -186393,128 +154894,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [1518] = { - [sym__expression] = STATE(2913), - [sym_conditional_expression] = STATE(3000), - [sym_assignment_expression] = STATE(3000), - [sym_pointer_expression] = STATE(3006), - [sym_unary_expression] = STATE(3000), - [sym_binary_expression] = STATE(3000), - [sym_update_expression] = STATE(3000), - [sym_cast_expression] = STATE(3000), - [sym_sizeof_expression] = STATE(3000), - [sym_subscript_expression] = STATE(3006), - [sym_call_expression] = STATE(3006), - [sym_field_expression] = STATE(3006), - [sym_compound_literal_expression] = STATE(3000), - [sym_parenthesized_expression] = STATE(3006), - [sym_char_literal] = STATE(2896), - [sym_concatenated_string] = STATE(2896), - [sym_string_literal] = STATE(2154), - [sym__class_name] = STATE(5849), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3000), - [sym_co_await_expression] = STATE(3000), - [sym_new_expression] = STATE(3000), - [sym_delete_expression] = STATE(3000), - [sym_requires_clause] = STATE(3000), - [sym_requires_expression] = STATE(3000), - [sym_lambda_expression] = STATE(3000), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3000), - [sym_parameter_pack_expansion] = STATE(3000), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4642), - [sym_qualified_identifier] = STATE(3006), - [sym_qualified_type_identifier] = STATE(5849), - [sym_user_defined_literal] = STATE(3000), - [sym_identifier] = ACTIONS(2831), - [anon_sym_LPAREN2] = ACTIONS(2833), - [anon_sym_BANG] = ACTIONS(2837), - [anon_sym_TILDE] = ACTIONS(2837), - [anon_sym_DASH] = ACTIONS(2835), - [anon_sym_PLUS] = ACTIONS(2835), - [anon_sym_STAR] = ACTIONS(2537), - [anon_sym_AMP] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(2841), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(2845), - [anon_sym_DASH_DASH] = ACTIONS(2847), - [anon_sym_PLUS_PLUS] = ACTIONS(2847), - [anon_sym_sizeof] = ACTIONS(2849), - [sym_number_literal] = ACTIONS(2851), - [anon_sym_L_SQUOTE] = ACTIONS(2853), - [anon_sym_u_SQUOTE] = ACTIONS(2853), - [anon_sym_U_SQUOTE] = ACTIONS(2853), - [anon_sym_u8_SQUOTE] = ACTIONS(2853), - [anon_sym_SQUOTE] = ACTIONS(2853), - [anon_sym_L_DQUOTE] = ACTIONS(2855), - [anon_sym_u_DQUOTE] = ACTIONS(2855), - [anon_sym_U_DQUOTE] = ACTIONS(2855), - [anon_sym_u8_DQUOTE] = ACTIONS(2855), - [anon_sym_DQUOTE] = ACTIONS(2855), - [sym_true] = ACTIONS(2857), - [sym_false] = ACTIONS(2857), - [sym_null] = ACTIONS(2857), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_co_await] = ACTIONS(2861), - [anon_sym_new] = ACTIONS(2863), - [anon_sym_requires] = ACTIONS(2865), - [sym_this] = ACTIONS(2857), - [sym_nullptr] = ACTIONS(2857), - [sym_raw_string_literal] = ACTIONS(2867), - }, - [1519] = { - [sym__expression] = STATE(3836), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(3196), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(3196), - [sym_call_expression] = STATE(3196), - [sym_field_expression] = STATE(3196), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(3196), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(3196), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN2] = ACTIONS(3061), - [anon_sym_BANG] = ACTIONS(3065), - [anon_sym_TILDE] = ACTIONS(3065), - [anon_sym_DASH] = ACTIONS(3063), - [anon_sym_PLUS] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(3069), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3071), - [anon_sym_PLUS_PLUS] = ACTIONS(3071), - [anon_sym_sizeof] = ACTIONS(3073), + [1074] = { + [sym__expression] = STATE(3785), + [sym_comma_expression] = STATE(6860), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3027), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3055), + [anon_sym_extern] = ACTIONS(2551), + [anon_sym___attribute__] = ACTIONS(2551), + [anon_sym_COLON_COLON] = ACTIONS(3032), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2553), + [anon_sym___declspec] = ACTIONS(2551), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_static] = ACTIONS(2551), + [anon_sym_register] = ACTIONS(2551), + [anon_sym_inline] = ACTIONS(2551), + [anon_sym_thread_local] = ACTIONS(2551), + [anon_sym_const] = ACTIONS(2551), + [anon_sym_volatile] = ACTIONS(2551), + [anon_sym_restrict] = ACTIONS(2551), + [anon_sym__Atomic] = ACTIONS(2551), + [anon_sym_mutable] = ACTIONS(2551), + [anon_sym_constexpr] = ACTIONS(2551), + [anon_sym_constinit] = ACTIONS(2551), + [anon_sym_consteval] = ACTIONS(2551), + [anon_sym_signed] = ACTIONS(2551), + [anon_sym_unsigned] = ACTIONS(2551), + [anon_sym_long] = ACTIONS(2551), + [anon_sym_short] = ACTIONS(2551), + [sym_primitive_type] = ACTIONS(3035), + [anon_sym_enum] = ACTIONS(2551), + [anon_sym_class] = ACTIONS(2551), + [anon_sym_struct] = ACTIONS(2551), + [anon_sym_union] = ACTIONS(2551), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), [sym_number_literal] = ACTIONS(97), [anon_sym_L_SQUOTE] = ACTIONS(99), [anon_sym_u_SQUOTE] = ACTIONS(99), @@ -186530,64 +154986,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3075), - [anon_sym_co_await] = ACTIONS(3077), - [anon_sym_new] = ACTIONS(3079), + [sym_auto] = ACTIONS(2551), + [anon_sym_decltype] = ACTIONS(2551), + [anon_sym_virtual] = ACTIONS(2551), + [anon_sym_typename] = ACTIONS(2551), + [anon_sym_template] = ACTIONS(3038), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [1520] = { - [sym__expression] = STATE(3895), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(3196), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(3196), - [sym_call_expression] = STATE(3196), - [sym_field_expression] = STATE(3196), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(3196), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(3196), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN2] = ACTIONS(3061), - [anon_sym_BANG] = ACTIONS(3065), - [anon_sym_TILDE] = ACTIONS(3065), - [anon_sym_DASH] = ACTIONS(3063), - [anon_sym_PLUS] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(3069), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3071), - [anon_sym_PLUS_PLUS] = ACTIONS(3071), - [anon_sym_sizeof] = ACTIONS(3073), + [1075] = { + [sym__expression] = STATE(3737), + [sym_comma_expression] = STATE(6771), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3057), + [anon_sym_extern] = ACTIONS(2607), + [anon_sym___attribute__] = ACTIONS(2607), + [anon_sym_COLON_COLON] = ACTIONS(3046), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2609), + [anon_sym___declspec] = ACTIONS(2607), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_static] = ACTIONS(2607), + [anon_sym_register] = ACTIONS(2607), + [anon_sym_inline] = ACTIONS(2607), + [anon_sym_thread_local] = ACTIONS(2607), + [anon_sym_const] = ACTIONS(2607), + [anon_sym_volatile] = ACTIONS(2607), + [anon_sym_restrict] = ACTIONS(2607), + [anon_sym__Atomic] = ACTIONS(2607), + [anon_sym_mutable] = ACTIONS(2607), + [anon_sym_constexpr] = ACTIONS(2607), + [anon_sym_constinit] = ACTIONS(2607), + [anon_sym_consteval] = ACTIONS(2607), + [anon_sym_signed] = ACTIONS(2607), + [anon_sym_unsigned] = ACTIONS(2607), + [anon_sym_long] = ACTIONS(2607), + [anon_sym_short] = ACTIONS(2607), + [sym_primitive_type] = ACTIONS(3049), + [anon_sym_enum] = ACTIONS(2607), + [anon_sym_class] = ACTIONS(2607), + [anon_sym_struct] = ACTIONS(2607), + [anon_sym_union] = ACTIONS(2607), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), [sym_number_literal] = ACTIONS(97), [anon_sym_L_SQUOTE] = ACTIONS(99), [anon_sym_u_SQUOTE] = ACTIONS(99), @@ -186603,61 +155091,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3075), - [anon_sym_co_await] = ACTIONS(3077), - [anon_sym_new] = ACTIONS(3079), + [sym_auto] = ACTIONS(2607), + [anon_sym_decltype] = ACTIONS(2607), + [anon_sym_virtual] = ACTIONS(2607), + [anon_sym_typename] = ACTIONS(2607), + [anon_sym_template] = ACTIONS(3052), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [1521] = { - [sym__expression] = STATE(3707), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), + [1076] = { + [sym__expression] = STATE(3791), + [sym_comma_expression] = STATE(6853), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3059), + [anon_sym_extern] = ACTIONS(2607), + [anon_sym___attribute__] = ACTIONS(2607), + [anon_sym_COLON_COLON] = ACTIONS(3046), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2609), + [anon_sym___declspec] = ACTIONS(2607), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_static] = ACTIONS(2607), + [anon_sym_register] = ACTIONS(2607), + [anon_sym_inline] = ACTIONS(2607), + [anon_sym_thread_local] = ACTIONS(2607), + [anon_sym_const] = ACTIONS(2607), + [anon_sym_volatile] = ACTIONS(2607), + [anon_sym_restrict] = ACTIONS(2607), + [anon_sym__Atomic] = ACTIONS(2607), + [anon_sym_mutable] = ACTIONS(2607), + [anon_sym_constexpr] = ACTIONS(2607), + [anon_sym_constinit] = ACTIONS(2607), + [anon_sym_consteval] = ACTIONS(2607), + [anon_sym_signed] = ACTIONS(2607), + [anon_sym_unsigned] = ACTIONS(2607), + [anon_sym_long] = ACTIONS(2607), + [anon_sym_short] = ACTIONS(2607), + [sym_primitive_type] = ACTIONS(3049), + [anon_sym_enum] = ACTIONS(2607), + [anon_sym_class] = ACTIONS(2607), + [anon_sym_struct] = ACTIONS(2607), + [anon_sym_union] = ACTIONS(2607), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -186676,7 +155196,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), + [sym_auto] = ACTIONS(2607), + [anon_sym_decltype] = ACTIONS(2607), + [anon_sym_virtual] = ACTIONS(2607), + [anon_sym_typename] = ACTIONS(2607), + [anon_sym_template] = ACTIONS(3052), [anon_sym_delete] = ACTIONS(121), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), @@ -186685,55 +155209,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [1522] = { - [sym__expression] = STATE(3838), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(3196), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(3196), - [sym_call_expression] = STATE(3196), - [sym_field_expression] = STATE(3196), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(3196), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(3196), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN2] = ACTIONS(3061), - [anon_sym_BANG] = ACTIONS(3065), - [anon_sym_TILDE] = ACTIONS(3065), - [anon_sym_DASH] = ACTIONS(3063), - [anon_sym_PLUS] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(3069), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3071), - [anon_sym_PLUS_PLUS] = ACTIONS(3071), - [anon_sym_sizeof] = ACTIONS(3073), + [1077] = { + [sym__expression] = STATE(3735), + [sym_comma_expression] = STATE(6767), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3009), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3061), + [anon_sym_extern] = ACTIONS(3014), + [anon_sym___attribute__] = ACTIONS(3014), + [anon_sym_COLON_COLON] = ACTIONS(3016), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3019), + [anon_sym___declspec] = ACTIONS(3014), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_static] = ACTIONS(3014), + [anon_sym_register] = ACTIONS(3014), + [anon_sym_inline] = ACTIONS(3014), + [anon_sym_thread_local] = ACTIONS(3014), + [anon_sym_const] = ACTIONS(3014), + [anon_sym_volatile] = ACTIONS(3014), + [anon_sym_restrict] = ACTIONS(3014), + [anon_sym__Atomic] = ACTIONS(3014), + [anon_sym_mutable] = ACTIONS(3014), + [anon_sym_constexpr] = ACTIONS(3014), + [anon_sym_constinit] = ACTIONS(3014), + [anon_sym_consteval] = ACTIONS(3014), + [anon_sym_signed] = ACTIONS(3014), + [anon_sym_unsigned] = ACTIONS(3014), + [anon_sym_long] = ACTIONS(3014), + [anon_sym_short] = ACTIONS(3014), + [sym_primitive_type] = ACTIONS(3021), + [anon_sym_enum] = ACTIONS(3014), + [anon_sym_class] = ACTIONS(3014), + [anon_sym_struct] = ACTIONS(3014), + [anon_sym_union] = ACTIONS(3014), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), [sym_number_literal] = ACTIONS(97), [anon_sym_L_SQUOTE] = ACTIONS(99), [anon_sym_u_SQUOTE] = ACTIONS(99), @@ -186749,207 +155301,408 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3075), - [anon_sym_co_await] = ACTIONS(3077), - [anon_sym_new] = ACTIONS(3079), + [sym_auto] = ACTIONS(3014), + [anon_sym_decltype] = ACTIONS(3014), + [anon_sym_virtual] = ACTIONS(3014), + [anon_sym_typename] = ACTIONS(3014), + [anon_sym_template] = ACTIONS(3024), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [1523] = { - [sym__expression] = STATE(3454), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [1078] = { + [sym_function_definition] = STATE(2342), + [sym_declaration] = STATE(2342), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4251), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(3343), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym_ms_call_modifier] = STATE(1998), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(4945), + [sym_array_declarator] = STATE(5080), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3394), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym__empty_declaration] = STATE(2342), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1983), + [sym_dependent_type] = STATE(3481), + [sym_template_declaration] = STATE(2342), + [sym_operator_cast] = STATE(5477), + [sym__constructor_specifiers] = STATE(1983), + [sym_operator_cast_definition] = STATE(2342), + [sym_operator_cast_declaration] = STATE(2342), + [sym_constructor_or_destructor_definition] = STATE(2342), + [sym_constructor_or_destructor_declaration] = STATE(2342), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3395), + [sym_template_function] = STATE(5080), + [sym_alias_declaration] = STATE(2342), + [sym_concept_definition] = STATE(2342), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4792), + [sym_qualified_identifier] = STATE(5080), + [sym_qualified_type_identifier] = STATE(3490), + [sym_qualified_operator_cast_identifier] = STATE(5477), + [sym_operator_name] = STATE(5080), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_operator_cast_definition_repeat1] = STATE(1983), + [sym_identifier] = ACTIONS(2967), + [anon_sym_LPAREN2] = ACTIONS(1519), + [anon_sym_TILDE] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1523), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(2969), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(1531), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(2438), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(1791), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_using] = ACTIONS(2977), + [anon_sym_concept] = ACTIONS(2979), }, - [1524] = { - [sym__expression] = STATE(3813), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [1079] = { + [sym_function_definition] = STATE(959), + [sym_declaration] = STATE(959), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4232), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(3343), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym_ms_call_modifier] = STATE(2073), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(4977), + [sym_array_declarator] = STATE(5080), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3385), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym__empty_declaration] = STATE(959), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1963), + [sym_dependent_type] = STATE(3481), + [sym_template_declaration] = STATE(959), + [sym_operator_cast] = STATE(5473), + [sym__constructor_specifiers] = STATE(1963), + [sym_operator_cast_definition] = STATE(959), + [sym_operator_cast_declaration] = STATE(959), + [sym_constructor_or_destructor_definition] = STATE(959), + [sym_constructor_or_destructor_declaration] = STATE(959), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3395), + [sym_template_function] = STATE(5080), + [sym_alias_declaration] = STATE(959), + [sym_concept_definition] = STATE(959), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4792), + [sym_qualified_identifier] = STATE(5080), + [sym_qualified_type_identifier] = STATE(3490), + [sym_qualified_operator_cast_identifier] = STATE(5473), + [sym_operator_name] = STATE(5080), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_operator_cast_definition_repeat1] = STATE(1963), + [sym_identifier] = ACTIONS(2967), + [anon_sym_LPAREN2] = ACTIONS(1519), + [anon_sym_TILDE] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1523), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(2969), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(1531), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(2438), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(3003), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_using] = ACTIONS(3005), + [anon_sym_concept] = ACTIONS(131), }, - [1525] = { - [sym__expression] = STATE(3710), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), + [1080] = { + [sym_function_definition] = STATE(919), + [sym_declaration] = STATE(919), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4216), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(3343), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym_ms_call_modifier] = STATE(2011), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(4965), + [sym_array_declarator] = STATE(5080), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3372), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym__empty_declaration] = STATE(919), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1982), + [sym_dependent_type] = STATE(3481), + [sym_template_declaration] = STATE(919), + [sym_operator_cast] = STATE(5456), + [sym__constructor_specifiers] = STATE(1982), + [sym_operator_cast_definition] = STATE(919), + [sym_operator_cast_declaration] = STATE(919), + [sym_constructor_or_destructor_definition] = STATE(919), + [sym_constructor_or_destructor_declaration] = STATE(919), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3395), + [sym_template_function] = STATE(5080), + [sym_alias_declaration] = STATE(919), + [sym_concept_definition] = STATE(919), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4792), + [sym_qualified_identifier] = STATE(5080), + [sym_qualified_type_identifier] = STATE(3490), + [sym_qualified_operator_cast_identifier] = STATE(5456), + [sym_operator_name] = STATE(5080), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_operator_cast_definition_repeat1] = STATE(1982), + [sym_identifier] = ACTIONS(2967), + [anon_sym_LPAREN2] = ACTIONS(1519), + [anon_sym_TILDE] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1523), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(2969), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(1531), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(2438), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(2985), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_using] = ACTIONS(2987), + [anon_sym_concept] = ACTIONS(207), + }, + [1081] = { + [sym__expression] = STATE(3747), + [sym_comma_expression] = STATE(6904), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3027), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3063), + [anon_sym_extern] = ACTIONS(2551), + [anon_sym___attribute__] = ACTIONS(2551), + [anon_sym_COLON_COLON] = ACTIONS(3032), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2553), + [anon_sym___declspec] = ACTIONS(2551), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_static] = ACTIONS(2551), + [anon_sym_register] = ACTIONS(2551), + [anon_sym_inline] = ACTIONS(2551), + [anon_sym_thread_local] = ACTIONS(2551), + [anon_sym_const] = ACTIONS(2551), + [anon_sym_volatile] = ACTIONS(2551), + [anon_sym_restrict] = ACTIONS(2551), + [anon_sym__Atomic] = ACTIONS(2551), + [anon_sym_mutable] = ACTIONS(2551), + [anon_sym_constexpr] = ACTIONS(2551), + [anon_sym_constinit] = ACTIONS(2551), + [anon_sym_consteval] = ACTIONS(2551), + [anon_sym_signed] = ACTIONS(2551), + [anon_sym_unsigned] = ACTIONS(2551), + [anon_sym_long] = ACTIONS(2551), + [anon_sym_short] = ACTIONS(2551), + [sym_primitive_type] = ACTIONS(3035), + [anon_sym_enum] = ACTIONS(2551), + [anon_sym_class] = ACTIONS(2551), + [anon_sym_struct] = ACTIONS(2551), + [anon_sym_union] = ACTIONS(2551), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -186968,7 +155721,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), + [sym_auto] = ACTIONS(2551), + [anon_sym_decltype] = ACTIONS(2551), + [anon_sym_virtual] = ACTIONS(2551), + [anon_sym_typename] = ACTIONS(2551), + [anon_sym_template] = ACTIONS(3038), [anon_sym_delete] = ACTIONS(121), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), @@ -186977,52 +155734,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [1526] = { - [sym__expression] = STATE(3777), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), + [1082] = { + [sym__expression] = STATE(3675), + [sym_comma_expression] = STATE(6763), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3027), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3065), + [anon_sym_extern] = ACTIONS(2551), + [anon_sym___attribute__] = ACTIONS(2551), + [anon_sym_COLON_COLON] = ACTIONS(3032), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2553), + [anon_sym___declspec] = ACTIONS(2551), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_static] = ACTIONS(2551), + [anon_sym_register] = ACTIONS(2551), + [anon_sym_inline] = ACTIONS(2551), + [anon_sym_thread_local] = ACTIONS(2551), + [anon_sym_const] = ACTIONS(2551), + [anon_sym_volatile] = ACTIONS(2551), + [anon_sym_restrict] = ACTIONS(2551), + [anon_sym__Atomic] = ACTIONS(2551), + [anon_sym_mutable] = ACTIONS(2551), + [anon_sym_constexpr] = ACTIONS(2551), + [anon_sym_constinit] = ACTIONS(2551), + [anon_sym_consteval] = ACTIONS(2551), + [anon_sym_signed] = ACTIONS(2551), + [anon_sym_unsigned] = ACTIONS(2551), + [anon_sym_long] = ACTIONS(2551), + [anon_sym_short] = ACTIONS(2551), + [sym_primitive_type] = ACTIONS(3035), + [anon_sym_enum] = ACTIONS(2551), + [anon_sym_class] = ACTIONS(2551), + [anon_sym_struct] = ACTIONS(2551), + [anon_sym_union] = ACTIONS(2551), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -187041,7 +155826,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), + [sym_auto] = ACTIONS(2551), + [anon_sym_decltype] = ACTIONS(2551), + [anon_sym_virtual] = ACTIONS(2551), + [anon_sym_typename] = ACTIONS(2551), + [anon_sym_template] = ACTIONS(3038), [anon_sym_delete] = ACTIONS(121), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), @@ -187050,344 +155839,290 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [1527] = { - [sym__expression] = STATE(3848), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(3196), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(3196), - [sym_call_expression] = STATE(3196), - [sym_field_expression] = STATE(3196), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(3196), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(3196), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN2] = ACTIONS(3061), - [anon_sym_BANG] = ACTIONS(3065), - [anon_sym_TILDE] = ACTIONS(3065), - [anon_sym_DASH] = ACTIONS(3063), - [anon_sym_PLUS] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(3069), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3071), - [anon_sym_PLUS_PLUS] = ACTIONS(3071), - [anon_sym_sizeof] = ACTIONS(3073), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3075), - [anon_sym_co_await] = ACTIONS(3077), - [anon_sym_new] = ACTIONS(3079), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), - }, - [1528] = { - [sym__expression] = STATE(3827), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2981), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2981), - [sym_call_expression] = STATE(2981), - [sym_field_expression] = STATE(2981), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2981), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2981), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3039), - [anon_sym_LPAREN2] = ACTIONS(3041), - [anon_sym_BANG] = ACTIONS(3045), - [anon_sym_TILDE] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(3047), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3049), - [anon_sym_PLUS_PLUS] = ACTIONS(3049), - [anon_sym_sizeof] = ACTIONS(3051), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3053), - [anon_sym_co_await] = ACTIONS(3055), - [anon_sym_new] = ACTIONS(3057), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), - }, - [1529] = { - [sym__expression] = STATE(2914), - [sym_conditional_expression] = STATE(3000), - [sym_assignment_expression] = STATE(3000), - [sym_pointer_expression] = STATE(3006), - [sym_unary_expression] = STATE(3000), - [sym_binary_expression] = STATE(3000), - [sym_update_expression] = STATE(3000), - [sym_cast_expression] = STATE(3000), - [sym_sizeof_expression] = STATE(3000), - [sym_subscript_expression] = STATE(3006), - [sym_call_expression] = STATE(3006), - [sym_field_expression] = STATE(3006), - [sym_compound_literal_expression] = STATE(3000), - [sym_parenthesized_expression] = STATE(3006), - [sym_char_literal] = STATE(2896), - [sym_concatenated_string] = STATE(2896), - [sym_string_literal] = STATE(2154), - [sym__class_name] = STATE(5849), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3000), - [sym_co_await_expression] = STATE(3000), - [sym_new_expression] = STATE(3000), - [sym_delete_expression] = STATE(3000), - [sym_requires_clause] = STATE(3000), - [sym_requires_expression] = STATE(3000), - [sym_lambda_expression] = STATE(3000), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3000), - [sym_parameter_pack_expansion] = STATE(3000), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4642), - [sym_qualified_identifier] = STATE(3006), - [sym_qualified_type_identifier] = STATE(5849), - [sym_user_defined_literal] = STATE(3000), - [sym_identifier] = ACTIONS(2831), - [anon_sym_LPAREN2] = ACTIONS(2833), - [anon_sym_BANG] = ACTIONS(2837), - [anon_sym_TILDE] = ACTIONS(2837), - [anon_sym_DASH] = ACTIONS(2835), - [anon_sym_PLUS] = ACTIONS(2835), - [anon_sym_STAR] = ACTIONS(2537), - [anon_sym_AMP] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(2841), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(2845), - [anon_sym_DASH_DASH] = ACTIONS(2847), - [anon_sym_PLUS_PLUS] = ACTIONS(2847), - [anon_sym_sizeof] = ACTIONS(2849), - [sym_number_literal] = ACTIONS(2851), - [anon_sym_L_SQUOTE] = ACTIONS(2853), - [anon_sym_u_SQUOTE] = ACTIONS(2853), - [anon_sym_U_SQUOTE] = ACTIONS(2853), - [anon_sym_u8_SQUOTE] = ACTIONS(2853), - [anon_sym_SQUOTE] = ACTIONS(2853), - [anon_sym_L_DQUOTE] = ACTIONS(2855), - [anon_sym_u_DQUOTE] = ACTIONS(2855), - [anon_sym_U_DQUOTE] = ACTIONS(2855), - [anon_sym_u8_DQUOTE] = ACTIONS(2855), - [anon_sym_DQUOTE] = ACTIONS(2855), - [sym_true] = ACTIONS(2857), - [sym_false] = ACTIONS(2857), - [sym_null] = ACTIONS(2857), + [1083] = { + [sym_function_definition] = STATE(1058), + [sym_declaration] = STATE(1058), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4230), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(3343), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym_ms_call_modifier] = STATE(1995), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(4966), + [sym_array_declarator] = STATE(5080), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3413), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym__empty_declaration] = STATE(1058), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1975), + [sym_dependent_type] = STATE(3481), + [sym_template_declaration] = STATE(1058), + [sym_operator_cast] = STATE(5474), + [sym__constructor_specifiers] = STATE(1975), + [sym_operator_cast_definition] = STATE(1058), + [sym_operator_cast_declaration] = STATE(1058), + [sym_constructor_or_destructor_definition] = STATE(1058), + [sym_constructor_or_destructor_declaration] = STATE(1058), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3395), + [sym_template_function] = STATE(5080), + [sym_alias_declaration] = STATE(1058), + [sym_concept_definition] = STATE(1058), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4792), + [sym_qualified_identifier] = STATE(5080), + [sym_qualified_type_identifier] = STATE(3490), + [sym_qualified_operator_cast_identifier] = STATE(5474), + [sym_operator_name] = STATE(5080), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_operator_cast_definition_repeat1] = STATE(1975), + [sym_identifier] = ACTIONS(2967), + [anon_sym_LPAREN2] = ACTIONS(1519), + [anon_sym_TILDE] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1523), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(2969), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(1531), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(2438), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_co_await] = ACTIONS(2861), - [anon_sym_new] = ACTIONS(2863), - [anon_sym_requires] = ACTIONS(2865), - [sym_this] = ACTIONS(2857), - [sym_nullptr] = ACTIONS(2857), - [sym_raw_string_literal] = ACTIONS(2867), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(2981), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_using] = ACTIONS(2983), + [anon_sym_concept] = ACTIONS(602), }, - [1530] = { - [sym__expression] = STATE(3620), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2981), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2981), - [sym_call_expression] = STATE(2981), - [sym_field_expression] = STATE(2981), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2981), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2981), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3039), - [anon_sym_LPAREN2] = ACTIONS(3041), - [anon_sym_BANG] = ACTIONS(3045), - [anon_sym_TILDE] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(3047), - [anon_sym_LBRACK] = ACTIONS(3690), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3049), - [anon_sym_PLUS_PLUS] = ACTIONS(3049), - [anon_sym_sizeof] = ACTIONS(3051), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [1084] = { + [sym_function_definition] = STATE(519), + [sym_declaration] = STATE(519), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4215), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(3343), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym_ms_call_modifier] = STATE(1989), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(4951), + [sym_array_declarator] = STATE(5080), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3414), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym__empty_declaration] = STATE(519), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1938), + [sym_dependent_type] = STATE(3481), + [sym_template_declaration] = STATE(519), + [sym_operator_cast] = STATE(5489), + [sym__constructor_specifiers] = STATE(1938), + [sym_operator_cast_definition] = STATE(519), + [sym_operator_cast_declaration] = STATE(519), + [sym_constructor_or_destructor_definition] = STATE(519), + [sym_constructor_or_destructor_declaration] = STATE(519), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3395), + [sym_template_function] = STATE(5080), + [sym_alias_declaration] = STATE(519), + [sym_concept_definition] = STATE(519), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4792), + [sym_qualified_identifier] = STATE(5080), + [sym_qualified_type_identifier] = STATE(3490), + [sym_qualified_operator_cast_identifier] = STATE(5489), + [sym_operator_name] = STATE(5080), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_operator_cast_definition_repeat1] = STATE(1938), + [sym_identifier] = ACTIONS(2967), + [anon_sym_LPAREN2] = ACTIONS(1519), + [anon_sym_TILDE] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1523), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(2969), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(1531), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(2438), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3053), - [anon_sym_co_await] = ACTIONS(3055), - [anon_sym_new] = ACTIONS(3057), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(2971), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_using] = ACTIONS(2973), + [anon_sym_concept] = ACTIONS(287), }, - [1531] = { - [sym__expression] = STATE(3725), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), + [1085] = { + [sym__expression] = STATE(3778), + [sym_comma_expression] = STATE(6797), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3027), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3067), + [anon_sym_extern] = ACTIONS(2551), + [anon_sym___attribute__] = ACTIONS(2551), + [anon_sym_COLON_COLON] = ACTIONS(3032), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2553), + [anon_sym___declspec] = ACTIONS(2551), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_static] = ACTIONS(2551), + [anon_sym_register] = ACTIONS(2551), + [anon_sym_inline] = ACTIONS(2551), + [anon_sym_thread_local] = ACTIONS(2551), + [anon_sym_const] = ACTIONS(2551), + [anon_sym_volatile] = ACTIONS(2551), + [anon_sym_restrict] = ACTIONS(2551), + [anon_sym__Atomic] = ACTIONS(2551), + [anon_sym_mutable] = ACTIONS(2551), + [anon_sym_constexpr] = ACTIONS(2551), + [anon_sym_constinit] = ACTIONS(2551), + [anon_sym_consteval] = ACTIONS(2551), + [anon_sym_signed] = ACTIONS(2551), + [anon_sym_unsigned] = ACTIONS(2551), + [anon_sym_long] = ACTIONS(2551), + [anon_sym_short] = ACTIONS(2551), + [sym_primitive_type] = ACTIONS(3035), + [anon_sym_enum] = ACTIONS(2551), + [anon_sym_class] = ACTIONS(2551), + [anon_sym_struct] = ACTIONS(2551), + [anon_sym_union] = ACTIONS(2551), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -187406,7 +156141,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), + [sym_auto] = ACTIONS(2551), + [anon_sym_decltype] = ACTIONS(2551), + [anon_sym_virtual] = ACTIONS(2551), + [anon_sym_typename] = ACTIONS(2551), + [anon_sym_template] = ACTIONS(3038), [anon_sym_delete] = ACTIONS(121), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), @@ -187415,125 +156154,185 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [1532] = { - [sym__expression] = STATE(3859), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(3196), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(3196), - [sym_call_expression] = STATE(3196), - [sym_field_expression] = STATE(3196), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(3196), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(3196), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN2] = ACTIONS(3061), - [anon_sym_BANG] = ACTIONS(3065), - [anon_sym_TILDE] = ACTIONS(3065), - [anon_sym_DASH] = ACTIONS(3063), - [anon_sym_PLUS] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(3069), - [anon_sym_LBRACK] = ACTIONS(3692), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3071), - [anon_sym_PLUS_PLUS] = ACTIONS(3071), - [anon_sym_sizeof] = ACTIONS(3073), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [1086] = { + [sym_function_definition] = STATE(2417), + [sym_declaration] = STATE(2417), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4239), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(3343), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym_ms_call_modifier] = STATE(2103), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(4964), + [sym_array_declarator] = STATE(5080), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3388), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym__empty_declaration] = STATE(2417), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1984), + [sym_dependent_type] = STATE(3481), + [sym_template_declaration] = STATE(2417), + [sym_operator_cast] = STATE(5470), + [sym__constructor_specifiers] = STATE(1984), + [sym_operator_cast_definition] = STATE(2417), + [sym_operator_cast_declaration] = STATE(2417), + [sym_constructor_or_destructor_definition] = STATE(2417), + [sym_constructor_or_destructor_declaration] = STATE(2417), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3395), + [sym_template_function] = STATE(5080), + [sym_alias_declaration] = STATE(2417), + [sym_concept_definition] = STATE(2417), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4792), + [sym_qualified_identifier] = STATE(5080), + [sym_qualified_type_identifier] = STATE(3490), + [sym_qualified_operator_cast_identifier] = STATE(5470), + [sym_operator_name] = STATE(5080), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_operator_cast_definition_repeat1] = STATE(1984), + [sym_identifier] = ACTIONS(2967), + [anon_sym_LPAREN2] = ACTIONS(1519), + [anon_sym_TILDE] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1523), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(2969), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(1531), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(2438), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3075), - [anon_sym_co_await] = ACTIONS(3077), - [anon_sym_new] = ACTIONS(3079), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(1813), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_using] = ACTIONS(2999), + [anon_sym_concept] = ACTIONS(3001), }, - [1533] = { - [sym__expression] = STATE(3841), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), + [1087] = { + [sym__expression] = STATE(3773), + [sym_comma_expression] = STATE(6792), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3009), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3069), + [anon_sym_extern] = ACTIONS(3014), + [anon_sym___attribute__] = ACTIONS(3014), + [anon_sym_COLON_COLON] = ACTIONS(3016), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3019), + [anon_sym___declspec] = ACTIONS(3014), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_static] = ACTIONS(3014), + [anon_sym_register] = ACTIONS(3014), + [anon_sym_inline] = ACTIONS(3014), + [anon_sym_thread_local] = ACTIONS(3014), + [anon_sym_const] = ACTIONS(3014), + [anon_sym_volatile] = ACTIONS(3014), + [anon_sym_restrict] = ACTIONS(3014), + [anon_sym__Atomic] = ACTIONS(3014), + [anon_sym_mutable] = ACTIONS(3014), + [anon_sym_constexpr] = ACTIONS(3014), + [anon_sym_constinit] = ACTIONS(3014), + [anon_sym_consteval] = ACTIONS(3014), + [anon_sym_signed] = ACTIONS(3014), + [anon_sym_unsigned] = ACTIONS(3014), + [anon_sym_long] = ACTIONS(3014), + [anon_sym_short] = ACTIONS(3014), + [sym_primitive_type] = ACTIONS(3021), + [anon_sym_enum] = ACTIONS(3014), + [anon_sym_class] = ACTIONS(3014), + [anon_sym_struct] = ACTIONS(3014), + [anon_sym_union] = ACTIONS(3014), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -187552,7 +156351,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), + [sym_auto] = ACTIONS(3014), + [anon_sym_decltype] = ACTIONS(3014), + [anon_sym_virtual] = ACTIONS(3014), + [anon_sym_typename] = ACTIONS(3014), + [anon_sym_template] = ACTIONS(3024), [anon_sym_delete] = ACTIONS(121), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), @@ -187561,125 +156364,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [1534] = { - [sym__expression] = STATE(3608), - [sym_conditional_expression] = STATE(3881), - [sym_assignment_expression] = STATE(3881), - [sym_pointer_expression] = STATE(2977), - [sym_unary_expression] = STATE(3881), - [sym_binary_expression] = STATE(3881), - [sym_update_expression] = STATE(3881), - [sym_cast_expression] = STATE(3881), - [sym_sizeof_expression] = STATE(3881), - [sym_subscript_expression] = STATE(2977), - [sym_call_expression] = STATE(2977), - [sym_field_expression] = STATE(2977), - [sym_compound_literal_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(2977), - [sym_char_literal] = STATE(3701), - [sym_concatenated_string] = STATE(3701), - [sym_string_literal] = STATE(3219), - [sym__class_name] = STATE(6063), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3881), - [sym_co_await_expression] = STATE(3881), - [sym_new_expression] = STATE(3881), - [sym_delete_expression] = STATE(3881), - [sym_requires_clause] = STATE(3881), - [sym_requires_expression] = STATE(3881), - [sym_lambda_expression] = STATE(3881), - [sym_lambda_capture_specifier] = STATE(4519), - [sym_fold_expression] = STATE(3881), - [sym_parameter_pack_expansion] = STATE(3881), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4642), - [sym_qualified_identifier] = STATE(2977), - [sym_qualified_type_identifier] = STATE(6063), - [sym_user_defined_literal] = STATE(3881), - [sym_identifier] = ACTIONS(3035), - [anon_sym_LPAREN2] = ACTIONS(2531), - [anon_sym_BANG] = ACTIONS(2533), - [anon_sym_TILDE] = ACTIONS(2533), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_STAR] = ACTIONS(2537), - [anon_sym_AMP] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(2539), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(2845), - [anon_sym_DASH_DASH] = ACTIONS(2553), - [anon_sym_PLUS_PLUS] = ACTIONS(2553), - [anon_sym_sizeof] = ACTIONS(2555), - [sym_number_literal] = ACTIONS(2557), - [anon_sym_L_SQUOTE] = ACTIONS(2559), - [anon_sym_u_SQUOTE] = ACTIONS(2559), - [anon_sym_U_SQUOTE] = ACTIONS(2559), - [anon_sym_u8_SQUOTE] = ACTIONS(2559), - [anon_sym_SQUOTE] = ACTIONS(2559), - [anon_sym_L_DQUOTE] = ACTIONS(2561), - [anon_sym_u_DQUOTE] = ACTIONS(2561), - [anon_sym_U_DQUOTE] = ACTIONS(2561), - [anon_sym_u8_DQUOTE] = ACTIONS(2561), - [anon_sym_DQUOTE] = ACTIONS(2561), - [sym_true] = ACTIONS(2563), - [sym_false] = ACTIONS(2563), - [sym_null] = ACTIONS(2563), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2573), - [anon_sym_co_await] = ACTIONS(2575), - [anon_sym_new] = ACTIONS(2577), - [anon_sym_requires] = ACTIONS(2579), - [sym_this] = ACTIONS(2563), - [sym_nullptr] = ACTIONS(2563), - [sym_raw_string_literal] = ACTIONS(2581), - }, - [1535] = { - [sym__expression] = STATE(3903), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), + [1088] = { + [sym__expression] = STATE(3685), + [sym_comma_expression] = STATE(6733), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3027), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3071), + [anon_sym_extern] = ACTIONS(2551), + [anon_sym___attribute__] = ACTIONS(2551), + [anon_sym_COLON_COLON] = ACTIONS(3032), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2553), + [anon_sym___declspec] = ACTIONS(2551), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_static] = ACTIONS(2551), + [anon_sym_register] = ACTIONS(2551), + [anon_sym_inline] = ACTIONS(2551), + [anon_sym_thread_local] = ACTIONS(2551), + [anon_sym_const] = ACTIONS(2551), + [anon_sym_volatile] = ACTIONS(2551), + [anon_sym_restrict] = ACTIONS(2551), + [anon_sym__Atomic] = ACTIONS(2551), + [anon_sym_mutable] = ACTIONS(2551), + [anon_sym_constexpr] = ACTIONS(2551), + [anon_sym_constinit] = ACTIONS(2551), + [anon_sym_consteval] = ACTIONS(2551), + [anon_sym_signed] = ACTIONS(2551), + [anon_sym_unsigned] = ACTIONS(2551), + [anon_sym_long] = ACTIONS(2551), + [anon_sym_short] = ACTIONS(2551), + [sym_primitive_type] = ACTIONS(3035), + [anon_sym_enum] = ACTIONS(2551), + [anon_sym_class] = ACTIONS(2551), + [anon_sym_struct] = ACTIONS(2551), + [anon_sym_union] = ACTIONS(2551), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -187698,7 +156456,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), + [sym_auto] = ACTIONS(2551), + [anon_sym_decltype] = ACTIONS(2551), + [anon_sym_virtual] = ACTIONS(2551), + [anon_sym_typename] = ACTIONS(2551), + [anon_sym_template] = ACTIONS(3038), [anon_sym_delete] = ACTIONS(121), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), @@ -187707,52 +156469,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [1536] = { - [sym__expression] = STATE(3687), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), + [1089] = { + [sym__expression] = STATE(3742), + [sym_comma_expression] = STATE(6734), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3009), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3073), + [anon_sym_extern] = ACTIONS(3014), + [anon_sym___attribute__] = ACTIONS(3014), + [anon_sym_COLON_COLON] = ACTIONS(3016), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3019), + [anon_sym___declspec] = ACTIONS(3014), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_static] = ACTIONS(3014), + [anon_sym_register] = ACTIONS(3014), + [anon_sym_inline] = ACTIONS(3014), + [anon_sym_thread_local] = ACTIONS(3014), + [anon_sym_const] = ACTIONS(3014), + [anon_sym_volatile] = ACTIONS(3014), + [anon_sym_restrict] = ACTIONS(3014), + [anon_sym__Atomic] = ACTIONS(3014), + [anon_sym_mutable] = ACTIONS(3014), + [anon_sym_constexpr] = ACTIONS(3014), + [anon_sym_constinit] = ACTIONS(3014), + [anon_sym_consteval] = ACTIONS(3014), + [anon_sym_signed] = ACTIONS(3014), + [anon_sym_unsigned] = ACTIONS(3014), + [anon_sym_long] = ACTIONS(3014), + [anon_sym_short] = ACTIONS(3014), + [sym_primitive_type] = ACTIONS(3021), + [anon_sym_enum] = ACTIONS(3014), + [anon_sym_class] = ACTIONS(3014), + [anon_sym_struct] = ACTIONS(3014), + [anon_sym_union] = ACTIONS(3014), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -187771,7 +156561,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), + [sym_auto] = ACTIONS(3014), + [anon_sym_decltype] = ACTIONS(3014), + [anon_sym_virtual] = ACTIONS(3014), + [anon_sym_typename] = ACTIONS(3014), + [anon_sym_template] = ACTIONS(3024), [anon_sym_delete] = ACTIONS(121), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), @@ -187780,125 +156574,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [1537] = { - [sym__expression] = STATE(3904), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2981), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2981), - [sym_call_expression] = STATE(2981), - [sym_field_expression] = STATE(2981), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2981), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2981), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3039), - [anon_sym_LPAREN2] = ACTIONS(3041), - [anon_sym_BANG] = ACTIONS(3045), - [anon_sym_TILDE] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(3047), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3049), - [anon_sym_PLUS_PLUS] = ACTIONS(3049), - [anon_sym_sizeof] = ACTIONS(3051), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3053), - [anon_sym_co_await] = ACTIONS(3055), - [anon_sym_new] = ACTIONS(3057), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), - }, - [1538] = { - [sym__expression] = STATE(3908), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), + [1090] = { + [sym__expression] = STATE(3755), + [sym_comma_expression] = STATE(6899), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3009), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3075), + [anon_sym_extern] = ACTIONS(3014), + [anon_sym___attribute__] = ACTIONS(3014), + [anon_sym_COLON_COLON] = ACTIONS(3016), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3019), + [anon_sym___declspec] = ACTIONS(3014), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_static] = ACTIONS(3014), + [anon_sym_register] = ACTIONS(3014), + [anon_sym_inline] = ACTIONS(3014), + [anon_sym_thread_local] = ACTIONS(3014), + [anon_sym_const] = ACTIONS(3014), + [anon_sym_volatile] = ACTIONS(3014), + [anon_sym_restrict] = ACTIONS(3014), + [anon_sym__Atomic] = ACTIONS(3014), + [anon_sym_mutable] = ACTIONS(3014), + [anon_sym_constexpr] = ACTIONS(3014), + [anon_sym_constinit] = ACTIONS(3014), + [anon_sym_consteval] = ACTIONS(3014), + [anon_sym_signed] = ACTIONS(3014), + [anon_sym_unsigned] = ACTIONS(3014), + [anon_sym_long] = ACTIONS(3014), + [anon_sym_short] = ACTIONS(3014), + [sym_primitive_type] = ACTIONS(3021), + [anon_sym_enum] = ACTIONS(3014), + [anon_sym_class] = ACTIONS(3014), + [anon_sym_struct] = ACTIONS(3014), + [anon_sym_union] = ACTIONS(3014), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -187917,7 +156666,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), + [sym_auto] = ACTIONS(3014), + [anon_sym_decltype] = ACTIONS(3014), + [anon_sym_virtual] = ACTIONS(3014), + [anon_sym_typename] = ACTIONS(3014), + [anon_sym_template] = ACTIONS(3024), [anon_sym_delete] = ACTIONS(121), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), @@ -187926,125 +156679,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [1539] = { - [sym__expression] = STATE(3801), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(3196), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(3196), - [sym_call_expression] = STATE(3196), - [sym_field_expression] = STATE(3196), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(3196), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(3196), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN2] = ACTIONS(3061), - [anon_sym_BANG] = ACTIONS(3065), - [anon_sym_TILDE] = ACTIONS(3065), - [anon_sym_DASH] = ACTIONS(3063), - [anon_sym_PLUS] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(3069), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3071), - [anon_sym_PLUS_PLUS] = ACTIONS(3071), - [anon_sym_sizeof] = ACTIONS(3073), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3075), - [anon_sym_co_await] = ACTIONS(3077), - [anon_sym_new] = ACTIONS(3079), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), - }, - [1540] = { - [sym__expression] = STATE(3820), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), + [1091] = { + [sym__expression] = STATE(3764), + [sym_comma_expression] = STATE(6737), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3077), + [anon_sym_extern] = ACTIONS(2607), + [anon_sym___attribute__] = ACTIONS(2607), + [anon_sym_COLON_COLON] = ACTIONS(3046), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2609), + [anon_sym___declspec] = ACTIONS(2607), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_static] = ACTIONS(2607), + [anon_sym_register] = ACTIONS(2607), + [anon_sym_inline] = ACTIONS(2607), + [anon_sym_thread_local] = ACTIONS(2607), + [anon_sym_const] = ACTIONS(2607), + [anon_sym_volatile] = ACTIONS(2607), + [anon_sym_restrict] = ACTIONS(2607), + [anon_sym__Atomic] = ACTIONS(2607), + [anon_sym_mutable] = ACTIONS(2607), + [anon_sym_constexpr] = ACTIONS(2607), + [anon_sym_constinit] = ACTIONS(2607), + [anon_sym_consteval] = ACTIONS(2607), + [anon_sym_signed] = ACTIONS(2607), + [anon_sym_unsigned] = ACTIONS(2607), + [anon_sym_long] = ACTIONS(2607), + [anon_sym_short] = ACTIONS(2607), + [sym_primitive_type] = ACTIONS(3049), + [anon_sym_enum] = ACTIONS(2607), + [anon_sym_class] = ACTIONS(2607), + [anon_sym_struct] = ACTIONS(2607), + [anon_sym_union] = ACTIONS(2607), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -188063,7 +156771,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), + [sym_auto] = ACTIONS(2607), + [anon_sym_decltype] = ACTIONS(2607), + [anon_sym_virtual] = ACTIONS(2607), + [anon_sym_typename] = ACTIONS(2607), + [anon_sym_template] = ACTIONS(3052), [anon_sym_delete] = ACTIONS(121), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), @@ -188072,271 +156784,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [1541] = { - [sym__expression] = STATE(3695), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2981), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2981), - [sym_call_expression] = STATE(2981), - [sym_field_expression] = STATE(2981), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2981), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2981), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3039), - [anon_sym_LPAREN2] = ACTIONS(3041), - [anon_sym_BANG] = ACTIONS(3045), - [anon_sym_TILDE] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(3047), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3049), - [anon_sym_PLUS_PLUS] = ACTIONS(3049), - [anon_sym_sizeof] = ACTIONS(3051), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3053), - [anon_sym_co_await] = ACTIONS(3055), - [anon_sym_new] = ACTIONS(3057), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), - }, - [1542] = { - [sym__expression] = STATE(3782), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(3196), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(3196), - [sym_call_expression] = STATE(3196), - [sym_field_expression] = STATE(3196), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(3196), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(3196), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN2] = ACTIONS(3061), - [anon_sym_BANG] = ACTIONS(3065), - [anon_sym_TILDE] = ACTIONS(3065), - [anon_sym_DASH] = ACTIONS(3063), - [anon_sym_PLUS] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(3069), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3071), - [anon_sym_PLUS_PLUS] = ACTIONS(3071), - [anon_sym_sizeof] = ACTIONS(3073), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3075), - [anon_sym_co_await] = ACTIONS(3077), - [anon_sym_new] = ACTIONS(3079), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), - }, - [1543] = { - [sym__expression] = STATE(3853), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(3196), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(3196), - [sym_call_expression] = STATE(3196), - [sym_field_expression] = STATE(3196), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(3196), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(3196), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN2] = ACTIONS(3061), - [anon_sym_BANG] = ACTIONS(3065), - [anon_sym_TILDE] = ACTIONS(3065), - [anon_sym_DASH] = ACTIONS(3063), - [anon_sym_PLUS] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(3069), - [anon_sym_LBRACK] = ACTIONS(3694), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3071), - [anon_sym_PLUS_PLUS] = ACTIONS(3071), - [anon_sym_sizeof] = ACTIONS(3073), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3075), - [anon_sym_co_await] = ACTIONS(3077), - [anon_sym_new] = ACTIONS(3079), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), - }, - [1544] = { - [sym__expression] = STATE(3930), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), + [1092] = { + [sym__expression] = STATE(3772), + [sym_comma_expression] = STATE(6790), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3079), + [anon_sym_extern] = ACTIONS(2607), + [anon_sym___attribute__] = ACTIONS(2607), + [anon_sym_COLON_COLON] = ACTIONS(3046), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2609), + [anon_sym___declspec] = ACTIONS(2607), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_static] = ACTIONS(2607), + [anon_sym_register] = ACTIONS(2607), + [anon_sym_inline] = ACTIONS(2607), + [anon_sym_thread_local] = ACTIONS(2607), + [anon_sym_const] = ACTIONS(2607), + [anon_sym_volatile] = ACTIONS(2607), + [anon_sym_restrict] = ACTIONS(2607), + [anon_sym__Atomic] = ACTIONS(2607), + [anon_sym_mutable] = ACTIONS(2607), + [anon_sym_constexpr] = ACTIONS(2607), + [anon_sym_constinit] = ACTIONS(2607), + [anon_sym_consteval] = ACTIONS(2607), + [anon_sym_signed] = ACTIONS(2607), + [anon_sym_unsigned] = ACTIONS(2607), + [anon_sym_long] = ACTIONS(2607), + [anon_sym_short] = ACTIONS(2607), + [sym_primitive_type] = ACTIONS(3049), + [anon_sym_enum] = ACTIONS(2607), + [anon_sym_class] = ACTIONS(2607), + [anon_sym_struct] = ACTIONS(2607), + [anon_sym_union] = ACTIONS(2607), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -188355,7 +156876,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), + [sym_auto] = ACTIONS(2607), + [anon_sym_decltype] = ACTIONS(2607), + [anon_sym_virtual] = ACTIONS(2607), + [anon_sym_typename] = ACTIONS(2607), + [anon_sym_template] = ACTIONS(3052), [anon_sym_delete] = ACTIONS(121), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), @@ -188364,125 +156889,185 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [1545] = { - [sym__expression] = STATE(3471), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3622), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [1093] = { + [sym_function_definition] = STATE(2137), + [sym_declaration] = STATE(2137), + [sym__declaration_modifiers] = STATE(3343), + [sym__declaration_specifiers] = STATE(4222), + [sym_attribute_specifier] = STATE(3343), + [sym_attribute_declaration] = STATE(3343), + [sym_ms_declspec_modifier] = STATE(3343), + [sym_ms_based_modifier] = STATE(7250), + [sym_ms_call_modifier] = STATE(2121), + [sym__declarator] = STATE(5461), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(4956), + [sym_array_declarator] = STATE(5080), + [sym_storage_class_specifier] = STATE(3343), + [sym_type_qualifier] = STATE(3343), + [sym__type_specifier] = STATE(3382), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym__empty_declaration] = STATE(2137), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym_virtual_function_specifier] = STATE(3343), + [sym_explicit_function_specifier] = STATE(1985), + [sym_dependent_type] = STATE(3481), + [sym_template_declaration] = STATE(2137), + [sym_operator_cast] = STATE(5475), + [sym__constructor_specifiers] = STATE(1985), + [sym_operator_cast_definition] = STATE(2137), + [sym_operator_cast_declaration] = STATE(2137), + [sym_constructor_or_destructor_definition] = STATE(2137), + [sym_constructor_or_destructor_declaration] = STATE(2137), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3395), + [sym_template_function] = STATE(5080), + [sym_alias_declaration] = STATE(2137), + [sym_concept_definition] = STATE(2137), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4792), + [sym_qualified_identifier] = STATE(5080), + [sym_qualified_type_identifier] = STATE(3490), + [sym_qualified_operator_cast_identifier] = STATE(5475), + [sym_operator_name] = STATE(5080), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [aux_sym_operator_cast_definition_repeat1] = STATE(1985), + [sym_identifier] = ACTIONS(2967), + [anon_sym_LPAREN2] = ACTIONS(1519), + [anon_sym_TILDE] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1523), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(2969), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACK] = ACTIONS(1531), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(2438), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_explicit] = ACTIONS(111), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(1553), + [anon_sym_operator] = ACTIONS(117), + [anon_sym_using] = ACTIONS(2989), + [anon_sym_concept] = ACTIONS(2991), }, - [1546] = { - [sym__expression] = STATE(3953), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), + [1094] = { + [sym__expression] = STATE(3794), + [sym_comma_expression] = STATE(6781), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3009), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3081), + [anon_sym_extern] = ACTIONS(3014), + [anon_sym___attribute__] = ACTIONS(3014), + [anon_sym_COLON_COLON] = ACTIONS(3016), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3019), + [anon_sym___declspec] = ACTIONS(3014), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_static] = ACTIONS(3014), + [anon_sym_register] = ACTIONS(3014), + [anon_sym_inline] = ACTIONS(3014), + [anon_sym_thread_local] = ACTIONS(3014), + [anon_sym_const] = ACTIONS(3014), + [anon_sym_volatile] = ACTIONS(3014), + [anon_sym_restrict] = ACTIONS(3014), + [anon_sym__Atomic] = ACTIONS(3014), + [anon_sym_mutable] = ACTIONS(3014), + [anon_sym_constexpr] = ACTIONS(3014), + [anon_sym_constinit] = ACTIONS(3014), + [anon_sym_consteval] = ACTIONS(3014), + [anon_sym_signed] = ACTIONS(3014), + [anon_sym_unsigned] = ACTIONS(3014), + [anon_sym_long] = ACTIONS(3014), + [anon_sym_short] = ACTIONS(3014), + [sym_primitive_type] = ACTIONS(3021), + [anon_sym_enum] = ACTIONS(3014), + [anon_sym_class] = ACTIONS(3014), + [anon_sym_struct] = ACTIONS(3014), + [anon_sym_union] = ACTIONS(3014), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -188501,7 +157086,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), + [sym_auto] = ACTIONS(3014), + [anon_sym_decltype] = ACTIONS(3014), + [anon_sym_virtual] = ACTIONS(3014), + [anon_sym_typename] = ACTIONS(3014), + [anon_sym_template] = ACTIONS(3024), [anon_sym_delete] = ACTIONS(121), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), @@ -188510,52 +157099,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [1547] = { - [sym__expression] = STATE(3870), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), + [1095] = { + [sym__expression] = STATE(3781), + [sym_comma_expression] = STATE(6782), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3041), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3083), + [anon_sym_extern] = ACTIONS(2607), + [anon_sym___attribute__] = ACTIONS(2607), + [anon_sym_COLON_COLON] = ACTIONS(3046), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2609), + [anon_sym___declspec] = ACTIONS(2607), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_static] = ACTIONS(2607), + [anon_sym_register] = ACTIONS(2607), + [anon_sym_inline] = ACTIONS(2607), + [anon_sym_thread_local] = ACTIONS(2607), + [anon_sym_const] = ACTIONS(2607), + [anon_sym_volatile] = ACTIONS(2607), + [anon_sym_restrict] = ACTIONS(2607), + [anon_sym__Atomic] = ACTIONS(2607), + [anon_sym_mutable] = ACTIONS(2607), + [anon_sym_constexpr] = ACTIONS(2607), + [anon_sym_constinit] = ACTIONS(2607), + [anon_sym_consteval] = ACTIONS(2607), + [anon_sym_signed] = ACTIONS(2607), + [anon_sym_unsigned] = ACTIONS(2607), + [anon_sym_long] = ACTIONS(2607), + [anon_sym_short] = ACTIONS(2607), + [sym_primitive_type] = ACTIONS(3049), + [anon_sym_enum] = ACTIONS(2607), + [anon_sym_class] = ACTIONS(2607), + [anon_sym_struct] = ACTIONS(2607), + [anon_sym_union] = ACTIONS(2607), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -188574,7 +157191,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), + [sym_auto] = ACTIONS(2607), + [anon_sym_decltype] = ACTIONS(2607), + [anon_sym_virtual] = ACTIONS(2607), + [anon_sym_typename] = ACTIONS(2607), + [anon_sym_template] = ACTIONS(3052), [anon_sym_delete] = ACTIONS(121), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), @@ -188583,785 +157204,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [1548] = { - [sym__expression] = STATE(2578), - [sym_conditional_expression] = STATE(2541), - [sym_assignment_expression] = STATE(2541), - [sym_pointer_expression] = STATE(2531), - [sym_unary_expression] = STATE(2541), - [sym_binary_expression] = STATE(2541), - [sym_update_expression] = STATE(2541), - [sym_cast_expression] = STATE(2541), - [sym_sizeof_expression] = STATE(2541), - [sym_subscript_expression] = STATE(2531), - [sym_call_expression] = STATE(2531), - [sym_field_expression] = STATE(2531), - [sym_compound_literal_expression] = STATE(2541), - [sym_parenthesized_expression] = STATE(2531), - [sym_char_literal] = STATE(2481), - [sym_concatenated_string] = STATE(2481), - [sym_string_literal] = STATE(2063), - [sym__class_name] = STATE(6239), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2541), - [sym_co_await_expression] = STATE(2541), - [sym_new_expression] = STATE(2541), - [sym_delete_expression] = STATE(2541), - [sym_requires_clause] = STATE(2541), - [sym_requires_expression] = STATE(2541), - [sym_lambda_expression] = STATE(2541), - [sym_lambda_capture_specifier] = STATE(4508), - [sym_fold_expression] = STATE(2541), - [sym_parameter_pack_expansion] = STATE(2541), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2531), - [sym_qualified_type_identifier] = STATE(6239), - [sym_user_defined_literal] = STATE(2541), - [sym_identifier] = ACTIONS(2306), - [anon_sym_LPAREN2] = ACTIONS(2310), - [anon_sym_BANG] = ACTIONS(2314), - [anon_sym_TILDE] = ACTIONS(2314), - [anon_sym_DASH] = ACTIONS(2312), - [anon_sym_PLUS] = ACTIONS(2312), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(2318), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(2322), - [anon_sym_PLUS_PLUS] = ACTIONS(2322), - [anon_sym_sizeof] = ACTIONS(2324), - [sym_number_literal] = ACTIONS(2326), - [anon_sym_L_SQUOTE] = ACTIONS(2328), - [anon_sym_u_SQUOTE] = ACTIONS(2328), - [anon_sym_U_SQUOTE] = ACTIONS(2328), - [anon_sym_u8_SQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2328), - [anon_sym_L_DQUOTE] = ACTIONS(2330), - [anon_sym_u_DQUOTE] = ACTIONS(2330), - [anon_sym_U_DQUOTE] = ACTIONS(2330), - [anon_sym_u8_DQUOTE] = ACTIONS(2330), - [anon_sym_DQUOTE] = ACTIONS(2330), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2334), - [anon_sym_co_await] = ACTIONS(2336), - [anon_sym_new] = ACTIONS(2338), - [anon_sym_requires] = ACTIONS(2340), - [sym_this] = ACTIONS(2332), - [sym_nullptr] = ACTIONS(2332), - [sym_raw_string_literal] = ACTIONS(2342), - }, - [1549] = { - [sym__expression] = STATE(2579), - [sym_conditional_expression] = STATE(2541), - [sym_assignment_expression] = STATE(2541), - [sym_pointer_expression] = STATE(2531), - [sym_unary_expression] = STATE(2541), - [sym_binary_expression] = STATE(2541), - [sym_update_expression] = STATE(2541), - [sym_cast_expression] = STATE(2541), - [sym_sizeof_expression] = STATE(2541), - [sym_subscript_expression] = STATE(2531), - [sym_call_expression] = STATE(2531), - [sym_field_expression] = STATE(2531), - [sym_compound_literal_expression] = STATE(2541), - [sym_parenthesized_expression] = STATE(2531), - [sym_char_literal] = STATE(2481), - [sym_concatenated_string] = STATE(2481), - [sym_string_literal] = STATE(2063), - [sym__class_name] = STATE(6239), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2541), - [sym_co_await_expression] = STATE(2541), - [sym_new_expression] = STATE(2541), - [sym_delete_expression] = STATE(2541), - [sym_requires_clause] = STATE(2541), - [sym_requires_expression] = STATE(2541), - [sym_lambda_expression] = STATE(2541), - [sym_lambda_capture_specifier] = STATE(4508), - [sym_fold_expression] = STATE(2541), - [sym_parameter_pack_expansion] = STATE(2541), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2531), - [sym_qualified_type_identifier] = STATE(6239), - [sym_user_defined_literal] = STATE(2541), - [sym_identifier] = ACTIONS(2306), - [anon_sym_LPAREN2] = ACTIONS(2310), - [anon_sym_BANG] = ACTIONS(2314), - [anon_sym_TILDE] = ACTIONS(2314), - [anon_sym_DASH] = ACTIONS(2312), - [anon_sym_PLUS] = ACTIONS(2312), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(2318), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(2322), - [anon_sym_PLUS_PLUS] = ACTIONS(2322), - [anon_sym_sizeof] = ACTIONS(2324), - [sym_number_literal] = ACTIONS(2326), - [anon_sym_L_SQUOTE] = ACTIONS(2328), - [anon_sym_u_SQUOTE] = ACTIONS(2328), - [anon_sym_U_SQUOTE] = ACTIONS(2328), - [anon_sym_u8_SQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2328), - [anon_sym_L_DQUOTE] = ACTIONS(2330), - [anon_sym_u_DQUOTE] = ACTIONS(2330), - [anon_sym_U_DQUOTE] = ACTIONS(2330), - [anon_sym_u8_DQUOTE] = ACTIONS(2330), - [anon_sym_DQUOTE] = ACTIONS(2330), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2334), - [anon_sym_co_await] = ACTIONS(2336), - [anon_sym_new] = ACTIONS(2338), - [anon_sym_requires] = ACTIONS(2340), - [sym_this] = ACTIONS(2332), - [sym_nullptr] = ACTIONS(2332), - [sym_raw_string_literal] = ACTIONS(2342), - }, - [1550] = { - [sym__expression] = STATE(2581), - [sym_conditional_expression] = STATE(2541), - [sym_assignment_expression] = STATE(2541), - [sym_pointer_expression] = STATE(2531), - [sym_unary_expression] = STATE(2541), - [sym_binary_expression] = STATE(2541), - [sym_update_expression] = STATE(2541), - [sym_cast_expression] = STATE(2541), - [sym_sizeof_expression] = STATE(2541), - [sym_subscript_expression] = STATE(2531), - [sym_call_expression] = STATE(2531), - [sym_field_expression] = STATE(2531), - [sym_compound_literal_expression] = STATE(2541), - [sym_parenthesized_expression] = STATE(2531), - [sym_char_literal] = STATE(2481), - [sym_concatenated_string] = STATE(2481), - [sym_string_literal] = STATE(2063), - [sym__class_name] = STATE(6239), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2541), - [sym_co_await_expression] = STATE(2541), - [sym_new_expression] = STATE(2541), - [sym_delete_expression] = STATE(2541), - [sym_requires_clause] = STATE(2541), - [sym_requires_expression] = STATE(2541), - [sym_lambda_expression] = STATE(2541), - [sym_lambda_capture_specifier] = STATE(4508), - [sym_fold_expression] = STATE(2541), - [sym_parameter_pack_expansion] = STATE(2541), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2531), - [sym_qualified_type_identifier] = STATE(6239), - [sym_user_defined_literal] = STATE(2541), - [sym_identifier] = ACTIONS(2306), - [anon_sym_LPAREN2] = ACTIONS(2310), - [anon_sym_BANG] = ACTIONS(2314), - [anon_sym_TILDE] = ACTIONS(2314), - [anon_sym_DASH] = ACTIONS(2312), - [anon_sym_PLUS] = ACTIONS(2312), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(2318), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(2322), - [anon_sym_PLUS_PLUS] = ACTIONS(2322), - [anon_sym_sizeof] = ACTIONS(2324), - [sym_number_literal] = ACTIONS(2326), - [anon_sym_L_SQUOTE] = ACTIONS(2328), - [anon_sym_u_SQUOTE] = ACTIONS(2328), - [anon_sym_U_SQUOTE] = ACTIONS(2328), - [anon_sym_u8_SQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2328), - [anon_sym_L_DQUOTE] = ACTIONS(2330), - [anon_sym_u_DQUOTE] = ACTIONS(2330), - [anon_sym_U_DQUOTE] = ACTIONS(2330), - [anon_sym_u8_DQUOTE] = ACTIONS(2330), - [anon_sym_DQUOTE] = ACTIONS(2330), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2334), - [anon_sym_co_await] = ACTIONS(2336), - [anon_sym_new] = ACTIONS(2338), - [anon_sym_requires] = ACTIONS(2340), - [sym_this] = ACTIONS(2332), - [sym_nullptr] = ACTIONS(2332), - [sym_raw_string_literal] = ACTIONS(2342), - }, - [1551] = { - [sym__expression] = STATE(2586), - [sym_conditional_expression] = STATE(2541), - [sym_assignment_expression] = STATE(2541), - [sym_pointer_expression] = STATE(2531), - [sym_unary_expression] = STATE(2541), - [sym_binary_expression] = STATE(2541), - [sym_update_expression] = STATE(2541), - [sym_cast_expression] = STATE(2541), - [sym_sizeof_expression] = STATE(2541), - [sym_subscript_expression] = STATE(2531), - [sym_call_expression] = STATE(2531), - [sym_field_expression] = STATE(2531), - [sym_compound_literal_expression] = STATE(2541), - [sym_parenthesized_expression] = STATE(2531), - [sym_char_literal] = STATE(2481), - [sym_concatenated_string] = STATE(2481), - [sym_string_literal] = STATE(2063), - [sym__class_name] = STATE(6239), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2541), - [sym_co_await_expression] = STATE(2541), - [sym_new_expression] = STATE(2541), - [sym_delete_expression] = STATE(2541), - [sym_requires_clause] = STATE(2541), - [sym_requires_expression] = STATE(2541), - [sym_lambda_expression] = STATE(2541), - [sym_lambda_capture_specifier] = STATE(4508), - [sym_fold_expression] = STATE(2541), - [sym_parameter_pack_expansion] = STATE(2541), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2531), - [sym_qualified_type_identifier] = STATE(6239), - [sym_user_defined_literal] = STATE(2541), - [sym_identifier] = ACTIONS(2306), - [anon_sym_LPAREN2] = ACTIONS(2310), - [anon_sym_BANG] = ACTIONS(2314), - [anon_sym_TILDE] = ACTIONS(2314), - [anon_sym_DASH] = ACTIONS(2312), - [anon_sym_PLUS] = ACTIONS(2312), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(2318), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(2322), - [anon_sym_PLUS_PLUS] = ACTIONS(2322), - [anon_sym_sizeof] = ACTIONS(2324), - [sym_number_literal] = ACTIONS(2326), - [anon_sym_L_SQUOTE] = ACTIONS(2328), - [anon_sym_u_SQUOTE] = ACTIONS(2328), - [anon_sym_U_SQUOTE] = ACTIONS(2328), - [anon_sym_u8_SQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2328), - [anon_sym_L_DQUOTE] = ACTIONS(2330), - [anon_sym_u_DQUOTE] = ACTIONS(2330), - [anon_sym_U_DQUOTE] = ACTIONS(2330), - [anon_sym_u8_DQUOTE] = ACTIONS(2330), - [anon_sym_DQUOTE] = ACTIONS(2330), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2334), - [anon_sym_co_await] = ACTIONS(2336), - [anon_sym_new] = ACTIONS(2338), - [anon_sym_requires] = ACTIONS(2340), - [sym_this] = ACTIONS(2332), - [sym_nullptr] = ACTIONS(2332), - [sym_raw_string_literal] = ACTIONS(2342), - }, - [1552] = { - [sym__expression] = STATE(2587), - [sym_conditional_expression] = STATE(2541), - [sym_assignment_expression] = STATE(2541), - [sym_pointer_expression] = STATE(2531), - [sym_unary_expression] = STATE(2541), - [sym_binary_expression] = STATE(2541), - [sym_update_expression] = STATE(2541), - [sym_cast_expression] = STATE(2541), - [sym_sizeof_expression] = STATE(2541), - [sym_subscript_expression] = STATE(2531), - [sym_call_expression] = STATE(2531), - [sym_field_expression] = STATE(2531), - [sym_compound_literal_expression] = STATE(2541), - [sym_parenthesized_expression] = STATE(2531), - [sym_char_literal] = STATE(2481), - [sym_concatenated_string] = STATE(2481), - [sym_string_literal] = STATE(2063), - [sym__class_name] = STATE(6239), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2541), - [sym_co_await_expression] = STATE(2541), - [sym_new_expression] = STATE(2541), - [sym_delete_expression] = STATE(2541), - [sym_requires_clause] = STATE(2541), - [sym_requires_expression] = STATE(2541), - [sym_lambda_expression] = STATE(2541), - [sym_lambda_capture_specifier] = STATE(4508), - [sym_fold_expression] = STATE(2541), - [sym_parameter_pack_expansion] = STATE(2541), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2531), - [sym_qualified_type_identifier] = STATE(6239), - [sym_user_defined_literal] = STATE(2541), - [sym_identifier] = ACTIONS(2306), - [anon_sym_LPAREN2] = ACTIONS(2310), - [anon_sym_BANG] = ACTIONS(2314), - [anon_sym_TILDE] = ACTIONS(2314), - [anon_sym_DASH] = ACTIONS(2312), - [anon_sym_PLUS] = ACTIONS(2312), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(2318), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(2322), - [anon_sym_PLUS_PLUS] = ACTIONS(2322), - [anon_sym_sizeof] = ACTIONS(2324), - [sym_number_literal] = ACTIONS(2326), - [anon_sym_L_SQUOTE] = ACTIONS(2328), - [anon_sym_u_SQUOTE] = ACTIONS(2328), - [anon_sym_U_SQUOTE] = ACTIONS(2328), - [anon_sym_u8_SQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2328), - [anon_sym_L_DQUOTE] = ACTIONS(2330), - [anon_sym_u_DQUOTE] = ACTIONS(2330), - [anon_sym_U_DQUOTE] = ACTIONS(2330), - [anon_sym_u8_DQUOTE] = ACTIONS(2330), - [anon_sym_DQUOTE] = ACTIONS(2330), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2334), - [anon_sym_co_await] = ACTIONS(2336), - [anon_sym_new] = ACTIONS(2338), - [anon_sym_requires] = ACTIONS(2340), - [sym_this] = ACTIONS(2332), - [sym_nullptr] = ACTIONS(2332), - [sym_raw_string_literal] = ACTIONS(2342), - }, - [1553] = { - [sym__expression] = STATE(2588), - [sym_conditional_expression] = STATE(2541), - [sym_assignment_expression] = STATE(2541), - [sym_pointer_expression] = STATE(2531), - [sym_unary_expression] = STATE(2541), - [sym_binary_expression] = STATE(2541), - [sym_update_expression] = STATE(2541), - [sym_cast_expression] = STATE(2541), - [sym_sizeof_expression] = STATE(2541), - [sym_subscript_expression] = STATE(2531), - [sym_call_expression] = STATE(2531), - [sym_field_expression] = STATE(2531), - [sym_compound_literal_expression] = STATE(2541), - [sym_parenthesized_expression] = STATE(2531), - [sym_char_literal] = STATE(2481), - [sym_concatenated_string] = STATE(2481), - [sym_string_literal] = STATE(2063), - [sym__class_name] = STATE(6239), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2541), - [sym_co_await_expression] = STATE(2541), - [sym_new_expression] = STATE(2541), - [sym_delete_expression] = STATE(2541), - [sym_requires_clause] = STATE(2541), - [sym_requires_expression] = STATE(2541), - [sym_lambda_expression] = STATE(2541), - [sym_lambda_capture_specifier] = STATE(4508), - [sym_fold_expression] = STATE(2541), - [sym_parameter_pack_expansion] = STATE(2541), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2531), - [sym_qualified_type_identifier] = STATE(6239), - [sym_user_defined_literal] = STATE(2541), - [sym_identifier] = ACTIONS(2306), - [anon_sym_LPAREN2] = ACTIONS(2310), - [anon_sym_BANG] = ACTIONS(2314), - [anon_sym_TILDE] = ACTIONS(2314), - [anon_sym_DASH] = ACTIONS(2312), - [anon_sym_PLUS] = ACTIONS(2312), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(2318), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(2322), - [anon_sym_PLUS_PLUS] = ACTIONS(2322), - [anon_sym_sizeof] = ACTIONS(2324), - [sym_number_literal] = ACTIONS(2326), - [anon_sym_L_SQUOTE] = ACTIONS(2328), - [anon_sym_u_SQUOTE] = ACTIONS(2328), - [anon_sym_U_SQUOTE] = ACTIONS(2328), - [anon_sym_u8_SQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2328), - [anon_sym_L_DQUOTE] = ACTIONS(2330), - [anon_sym_u_DQUOTE] = ACTIONS(2330), - [anon_sym_U_DQUOTE] = ACTIONS(2330), - [anon_sym_u8_DQUOTE] = ACTIONS(2330), - [anon_sym_DQUOTE] = ACTIONS(2330), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2334), - [anon_sym_co_await] = ACTIONS(2336), - [anon_sym_new] = ACTIONS(2338), - [anon_sym_requires] = ACTIONS(2340), - [sym_this] = ACTIONS(2332), - [sym_nullptr] = ACTIONS(2332), - [sym_raw_string_literal] = ACTIONS(2342), - }, - [1554] = { - [sym__expression] = STATE(2589), - [sym_conditional_expression] = STATE(2541), - [sym_assignment_expression] = STATE(2541), - [sym_pointer_expression] = STATE(2531), - [sym_unary_expression] = STATE(2541), - [sym_binary_expression] = STATE(2541), - [sym_update_expression] = STATE(2541), - [sym_cast_expression] = STATE(2541), - [sym_sizeof_expression] = STATE(2541), - [sym_subscript_expression] = STATE(2531), - [sym_call_expression] = STATE(2531), - [sym_field_expression] = STATE(2531), - [sym_compound_literal_expression] = STATE(2541), - [sym_parenthesized_expression] = STATE(2531), - [sym_char_literal] = STATE(2481), - [sym_concatenated_string] = STATE(2481), - [sym_string_literal] = STATE(2063), - [sym__class_name] = STATE(6239), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2541), - [sym_co_await_expression] = STATE(2541), - [sym_new_expression] = STATE(2541), - [sym_delete_expression] = STATE(2541), - [sym_requires_clause] = STATE(2541), - [sym_requires_expression] = STATE(2541), - [sym_lambda_expression] = STATE(2541), - [sym_lambda_capture_specifier] = STATE(4508), - [sym_fold_expression] = STATE(2541), - [sym_parameter_pack_expansion] = STATE(2541), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2531), - [sym_qualified_type_identifier] = STATE(6239), - [sym_user_defined_literal] = STATE(2541), - [sym_identifier] = ACTIONS(2306), - [anon_sym_LPAREN2] = ACTIONS(2310), - [anon_sym_BANG] = ACTIONS(2314), - [anon_sym_TILDE] = ACTIONS(2314), - [anon_sym_DASH] = ACTIONS(2312), - [anon_sym_PLUS] = ACTIONS(2312), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(2318), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(2322), - [anon_sym_PLUS_PLUS] = ACTIONS(2322), - [anon_sym_sizeof] = ACTIONS(2324), - [sym_number_literal] = ACTIONS(2326), - [anon_sym_L_SQUOTE] = ACTIONS(2328), - [anon_sym_u_SQUOTE] = ACTIONS(2328), - [anon_sym_U_SQUOTE] = ACTIONS(2328), - [anon_sym_u8_SQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2328), - [anon_sym_L_DQUOTE] = ACTIONS(2330), - [anon_sym_u_DQUOTE] = ACTIONS(2330), - [anon_sym_U_DQUOTE] = ACTIONS(2330), - [anon_sym_u8_DQUOTE] = ACTIONS(2330), - [anon_sym_DQUOTE] = ACTIONS(2330), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2334), - [anon_sym_co_await] = ACTIONS(2336), - [anon_sym_new] = ACTIONS(2338), - [anon_sym_requires] = ACTIONS(2340), - [sym_this] = ACTIONS(2332), - [sym_nullptr] = ACTIONS(2332), - [sym_raw_string_literal] = ACTIONS(2342), - }, - [1555] = { - [sym__expression] = STATE(2591), - [sym_conditional_expression] = STATE(2541), - [sym_assignment_expression] = STATE(2541), - [sym_pointer_expression] = STATE(2531), - [sym_unary_expression] = STATE(2541), - [sym_binary_expression] = STATE(2541), - [sym_update_expression] = STATE(2541), - [sym_cast_expression] = STATE(2541), - [sym_sizeof_expression] = STATE(2541), - [sym_subscript_expression] = STATE(2531), - [sym_call_expression] = STATE(2531), - [sym_field_expression] = STATE(2531), - [sym_compound_literal_expression] = STATE(2541), - [sym_parenthesized_expression] = STATE(2531), - [sym_char_literal] = STATE(2481), - [sym_concatenated_string] = STATE(2481), - [sym_string_literal] = STATE(2063), - [sym__class_name] = STATE(6239), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2541), - [sym_co_await_expression] = STATE(2541), - [sym_new_expression] = STATE(2541), - [sym_delete_expression] = STATE(2541), - [sym_requires_clause] = STATE(2541), - [sym_requires_expression] = STATE(2541), - [sym_lambda_expression] = STATE(2541), - [sym_lambda_capture_specifier] = STATE(4508), - [sym_fold_expression] = STATE(2541), - [sym_parameter_pack_expansion] = STATE(2541), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2531), - [sym_qualified_type_identifier] = STATE(6239), - [sym_user_defined_literal] = STATE(2541), - [sym_identifier] = ACTIONS(2306), - [anon_sym_LPAREN2] = ACTIONS(2310), - [anon_sym_BANG] = ACTIONS(2314), - [anon_sym_TILDE] = ACTIONS(2314), - [anon_sym_DASH] = ACTIONS(2312), - [anon_sym_PLUS] = ACTIONS(2312), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(2318), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(2322), - [anon_sym_PLUS_PLUS] = ACTIONS(2322), - [anon_sym_sizeof] = ACTIONS(2324), - [sym_number_literal] = ACTIONS(2326), - [anon_sym_L_SQUOTE] = ACTIONS(2328), - [anon_sym_u_SQUOTE] = ACTIONS(2328), - [anon_sym_U_SQUOTE] = ACTIONS(2328), - [anon_sym_u8_SQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2328), - [anon_sym_L_DQUOTE] = ACTIONS(2330), - [anon_sym_u_DQUOTE] = ACTIONS(2330), - [anon_sym_U_DQUOTE] = ACTIONS(2330), - [anon_sym_u8_DQUOTE] = ACTIONS(2330), - [anon_sym_DQUOTE] = ACTIONS(2330), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2334), - [anon_sym_co_await] = ACTIONS(2336), - [anon_sym_new] = ACTIONS(2338), - [anon_sym_requires] = ACTIONS(2340), - [sym_this] = ACTIONS(2332), - [sym_nullptr] = ACTIONS(2332), - [sym_raw_string_literal] = ACTIONS(2342), - }, - [1556] = { - [sym__expression] = STATE(2592), - [sym_conditional_expression] = STATE(2541), - [sym_assignment_expression] = STATE(2541), - [sym_pointer_expression] = STATE(2531), - [sym_unary_expression] = STATE(2541), - [sym_binary_expression] = STATE(2541), - [sym_update_expression] = STATE(2541), - [sym_cast_expression] = STATE(2541), - [sym_sizeof_expression] = STATE(2541), - [sym_subscript_expression] = STATE(2531), - [sym_call_expression] = STATE(2531), - [sym_field_expression] = STATE(2531), - [sym_compound_literal_expression] = STATE(2541), - [sym_parenthesized_expression] = STATE(2531), - [sym_char_literal] = STATE(2481), - [sym_concatenated_string] = STATE(2481), - [sym_string_literal] = STATE(2063), - [sym__class_name] = STATE(6239), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2541), - [sym_co_await_expression] = STATE(2541), - [sym_new_expression] = STATE(2541), - [sym_delete_expression] = STATE(2541), - [sym_requires_clause] = STATE(2541), - [sym_requires_expression] = STATE(2541), - [sym_lambda_expression] = STATE(2541), - [sym_lambda_capture_specifier] = STATE(4508), - [sym_fold_expression] = STATE(2541), - [sym_parameter_pack_expansion] = STATE(2541), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2531), - [sym_qualified_type_identifier] = STATE(6239), - [sym_user_defined_literal] = STATE(2541), - [sym_identifier] = ACTIONS(2306), - [anon_sym_LPAREN2] = ACTIONS(2310), - [anon_sym_BANG] = ACTIONS(2314), - [anon_sym_TILDE] = ACTIONS(2314), - [anon_sym_DASH] = ACTIONS(2312), - [anon_sym_PLUS] = ACTIONS(2312), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(2318), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(2322), - [anon_sym_PLUS_PLUS] = ACTIONS(2322), - [anon_sym_sizeof] = ACTIONS(2324), - [sym_number_literal] = ACTIONS(2326), - [anon_sym_L_SQUOTE] = ACTIONS(2328), - [anon_sym_u_SQUOTE] = ACTIONS(2328), - [anon_sym_U_SQUOTE] = ACTIONS(2328), - [anon_sym_u8_SQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2328), - [anon_sym_L_DQUOTE] = ACTIONS(2330), - [anon_sym_u_DQUOTE] = ACTIONS(2330), - [anon_sym_U_DQUOTE] = ACTIONS(2330), - [anon_sym_u8_DQUOTE] = ACTIONS(2330), - [anon_sym_DQUOTE] = ACTIONS(2330), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2334), - [anon_sym_co_await] = ACTIONS(2336), - [anon_sym_new] = ACTIONS(2338), - [anon_sym_requires] = ACTIONS(2340), - [sym_this] = ACTIONS(2332), - [sym_nullptr] = ACTIONS(2332), - [sym_raw_string_literal] = ACTIONS(2342), - }, - [1557] = { - [sym__expression] = STATE(2593), - [sym_conditional_expression] = STATE(2541), - [sym_assignment_expression] = STATE(2541), - [sym_pointer_expression] = STATE(2531), - [sym_unary_expression] = STATE(2541), - [sym_binary_expression] = STATE(2541), - [sym_update_expression] = STATE(2541), - [sym_cast_expression] = STATE(2541), - [sym_sizeof_expression] = STATE(2541), - [sym_subscript_expression] = STATE(2531), - [sym_call_expression] = STATE(2531), - [sym_field_expression] = STATE(2531), - [sym_compound_literal_expression] = STATE(2541), - [sym_parenthesized_expression] = STATE(2531), - [sym_char_literal] = STATE(2481), - [sym_concatenated_string] = STATE(2481), - [sym_string_literal] = STATE(2063), - [sym__class_name] = STATE(6239), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2541), - [sym_co_await_expression] = STATE(2541), - [sym_new_expression] = STATE(2541), - [sym_delete_expression] = STATE(2541), - [sym_requires_clause] = STATE(2541), - [sym_requires_expression] = STATE(2541), - [sym_lambda_expression] = STATE(2541), - [sym_lambda_capture_specifier] = STATE(4508), - [sym_fold_expression] = STATE(2541), - [sym_parameter_pack_expansion] = STATE(2541), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2531), - [sym_qualified_type_identifier] = STATE(6239), - [sym_user_defined_literal] = STATE(2541), - [sym_identifier] = ACTIONS(2306), - [anon_sym_LPAREN2] = ACTIONS(2310), - [anon_sym_BANG] = ACTIONS(2314), - [anon_sym_TILDE] = ACTIONS(2314), - [anon_sym_DASH] = ACTIONS(2312), - [anon_sym_PLUS] = ACTIONS(2312), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(2318), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(2322), - [anon_sym_PLUS_PLUS] = ACTIONS(2322), - [anon_sym_sizeof] = ACTIONS(2324), - [sym_number_literal] = ACTIONS(2326), - [anon_sym_L_SQUOTE] = ACTIONS(2328), - [anon_sym_u_SQUOTE] = ACTIONS(2328), - [anon_sym_U_SQUOTE] = ACTIONS(2328), - [anon_sym_u8_SQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2328), - [anon_sym_L_DQUOTE] = ACTIONS(2330), - [anon_sym_u_DQUOTE] = ACTIONS(2330), - [anon_sym_U_DQUOTE] = ACTIONS(2330), - [anon_sym_u8_DQUOTE] = ACTIONS(2330), - [anon_sym_DQUOTE] = ACTIONS(2330), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2334), - [anon_sym_co_await] = ACTIONS(2336), - [anon_sym_new] = ACTIONS(2338), - [anon_sym_requires] = ACTIONS(2340), - [sym_this] = ACTIONS(2332), - [sym_nullptr] = ACTIONS(2332), - [sym_raw_string_literal] = ACTIONS(2342), - }, - [1558] = { - [sym__expression] = STATE(3818), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(3196), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(3196), - [sym_call_expression] = STATE(3196), - [sym_field_expression] = STATE(3196), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(3196), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(3196), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN2] = ACTIONS(3061), - [anon_sym_BANG] = ACTIONS(3065), - [anon_sym_TILDE] = ACTIONS(3065), - [anon_sym_DASH] = ACTIONS(3063), - [anon_sym_PLUS] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(3069), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3071), - [anon_sym_PLUS_PLUS] = ACTIONS(3071), - [anon_sym_sizeof] = ACTIONS(3073), + [1096] = { + [sym__expression] = STATE(3507), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3001), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3001), + [sym_call_expression] = STATE(3001), + [sym_field_expression] = STATE(3001), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3001), + [sym_initializer_list] = STATE(3506), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3001), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3085), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1699), + [anon_sym_COMMA] = ACTIONS(1699), + [anon_sym_LPAREN2] = ACTIONS(3087), + [anon_sym_BANG] = ACTIONS(3089), + [anon_sym_TILDE] = ACTIONS(3091), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(1707), + [anon_sym_PERCENT] = ACTIONS(1699), + [anon_sym_PIPE_PIPE] = ACTIONS(1699), + [anon_sym_AMP_AMP] = ACTIONS(1699), + [anon_sym_PIPE] = ACTIONS(1707), + [anon_sym_CARET] = ACTIONS(1699), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_EQ_EQ] = ACTIONS(1699), + [anon_sym_BANG_EQ] = ACTIONS(1699), + [anon_sym_GT] = ACTIONS(1707), + [anon_sym_GT_EQ] = ACTIONS(1699), + [anon_sym_LT_EQ] = ACTIONS(1707), + [anon_sym_LT] = ACTIONS(1707), + [anon_sym_LT_LT] = ACTIONS(1699), + [anon_sym_GT_GT] = ACTIONS(1699), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_RBRACK] = ACTIONS(1699), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_QMARK] = ACTIONS(1699), + [anon_sym_not] = ACTIONS(3089), + [anon_sym_compl] = ACTIONS(3089), + [anon_sym_LT_EQ_GT] = ACTIONS(1699), + [anon_sym_or] = ACTIONS(1707), + [anon_sym_and] = ACTIONS(1707), + [anon_sym_bitor] = ACTIONS(1707), + [anon_sym_xor] = ACTIONS(1707), + [anon_sym_bitand] = ACTIONS(1707), + [anon_sym_not_eq] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(3095), + [anon_sym_PLUS_PLUS] = ACTIONS(3095), + [anon_sym_sizeof] = ACTIONS(3097), + [anon_sym_DOT] = ACTIONS(1707), + [anon_sym_DASH_GT] = ACTIONS(1699), [sym_number_literal] = ACTIONS(97), [anon_sym_L_SQUOTE] = ACTIONS(99), [anon_sym_u_SQUOTE] = ACTIONS(99), @@ -189377,137 +157299,198 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3075), - [anon_sym_co_await] = ACTIONS(3077), - [anon_sym_new] = ACTIONS(3079), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3099), + [anon_sym_co_await] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3103), [anon_sym_requires] = ACTIONS(141), [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [1559] = { - [sym__expression] = STATE(2704), - [sym_conditional_expression] = STATE(2765), - [sym_assignment_expression] = STATE(2765), - [sym_pointer_expression] = STATE(2827), - [sym_unary_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_update_expression] = STATE(2765), - [sym_cast_expression] = STATE(2765), - [sym_sizeof_expression] = STATE(2765), - [sym_subscript_expression] = STATE(2827), - [sym_call_expression] = STATE(2827), - [sym_field_expression] = STATE(2827), - [sym_compound_literal_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2827), - [sym_char_literal] = STATE(2674), - [sym_concatenated_string] = STATE(2674), - [sym_string_literal] = STATE(2093), - [sym__class_name] = STATE(6297), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2765), - [sym_co_await_expression] = STATE(2765), - [sym_new_expression] = STATE(2765), - [sym_delete_expression] = STATE(2765), - [sym_requires_clause] = STATE(2765), - [sym_requires_expression] = STATE(2765), - [sym_lambda_expression] = STATE(2765), - [sym_lambda_capture_specifier] = STATE(4512), - [sym_fold_expression] = STATE(2765), - [sym_parameter_pack_expansion] = STATE(2765), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4648), - [sym_qualified_identifier] = STATE(2827), - [sym_qualified_type_identifier] = STATE(6297), - [sym_user_defined_literal] = STATE(2765), - [sym_identifier] = ACTIONS(2363), - [anon_sym_LPAREN2] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1417), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_COLON_COLON] = ACTIONS(1423), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(2369), - [anon_sym_DASH_DASH] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [anon_sym_sizeof] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(1439), - [anon_sym_L_SQUOTE] = ACTIONS(1441), - [anon_sym_u_SQUOTE] = ACTIONS(1441), - [anon_sym_U_SQUOTE] = ACTIONS(1441), - [anon_sym_u8_SQUOTE] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1441), - [anon_sym_L_DQUOTE] = ACTIONS(1443), - [anon_sym_u_DQUOTE] = ACTIONS(1443), - [anon_sym_U_DQUOTE] = ACTIONS(1443), - [anon_sym_u8_DQUOTE] = ACTIONS(1443), - [anon_sym_DQUOTE] = ACTIONS(1443), - [sym_true] = ACTIONS(1445), - [sym_false] = ACTIONS(1445), - [sym_null] = ACTIONS(1445), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_co_await] = ACTIONS(1451), - [anon_sym_new] = ACTIONS(1453), - [anon_sym_requires] = ACTIONS(1455), - [sym_this] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(1445), - [sym_raw_string_literal] = ACTIONS(1457), + [1097] = { + [sym__expression] = STATE(3706), + [sym_conditional_expression] = STATE(3865), + [sym_assignment_expression] = STATE(3865), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3865), + [sym_binary_expression] = STATE(3865), + [sym_update_expression] = STATE(3865), + [sym_cast_expression] = STATE(3865), + [sym_sizeof_expression] = STATE(3865), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3865), + [sym_parenthesized_expression] = STATE(3016), + [sym_initializer_list] = STATE(3928), + [sym_char_literal] = STATE(3707), + [sym_concatenated_string] = STATE(3707), + [sym_string_literal] = STATE(3250), + [sym__class_name] = STATE(6539), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3865), + [sym_co_await_expression] = STATE(3865), + [sym_new_expression] = STATE(3865), + [sym_delete_expression] = STATE(3865), + [sym_requires_clause] = STATE(3865), + [sym_requires_expression] = STATE(3865), + [sym_lambda_expression] = STATE(3865), + [sym_lambda_capture_specifier] = STATE(4789), + [sym_fold_expression] = STATE(3865), + [sym_parameter_pack_expansion] = STATE(3865), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(6539), + [sym_user_defined_literal] = STATE(3865), + [sym_identifier] = ACTIONS(3105), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1699), + [anon_sym_COMMA] = ACTIONS(1699), + [anon_sym_LPAREN2] = ACTIONS(2665), + [anon_sym_BANG] = ACTIONS(2669), + [anon_sym_TILDE] = ACTIONS(2667), + [anon_sym_DASH] = ACTIONS(2669), + [anon_sym_PLUS] = ACTIONS(2669), + [anon_sym_STAR] = ACTIONS(2671), + [anon_sym_SLASH] = ACTIONS(1707), + [anon_sym_PERCENT] = ACTIONS(1699), + [anon_sym_PIPE_PIPE] = ACTIONS(1699), + [anon_sym_AMP_AMP] = ACTIONS(1699), + [anon_sym_PIPE] = ACTIONS(1707), + [anon_sym_CARET] = ACTIONS(1699), + [anon_sym_AMP] = ACTIONS(1927), + [anon_sym_EQ_EQ] = ACTIONS(1699), + [anon_sym_BANG_EQ] = ACTIONS(1699), + [anon_sym_GT] = ACTIONS(1707), + [anon_sym_GT_EQ] = ACTIONS(1707), + [anon_sym_LT_EQ] = ACTIONS(1707), + [anon_sym_LT] = ACTIONS(1707), + [anon_sym_LT_LT] = ACTIONS(1699), + [anon_sym_GT_GT] = ACTIONS(1707), + [anon_sym_COLON_COLON] = ACTIONS(2673), + [anon_sym_LBRACE] = ACTIONS(3107), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1933), + [anon_sym_QMARK] = ACTIONS(1699), + [anon_sym_not] = ACTIONS(2669), + [anon_sym_compl] = ACTIONS(2669), + [anon_sym_LT_EQ_GT] = ACTIONS(1699), + [anon_sym_or] = ACTIONS(1707), + [anon_sym_and] = ACTIONS(1707), + [anon_sym_bitor] = ACTIONS(1707), + [anon_sym_xor] = ACTIONS(1707), + [anon_sym_bitand] = ACTIONS(1707), + [anon_sym_not_eq] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(2687), + [anon_sym_PLUS_PLUS] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2689), + [anon_sym_DOT] = ACTIONS(1707), + [anon_sym_DASH_GT] = ACTIONS(1699), + [sym_number_literal] = ACTIONS(2691), + [anon_sym_L_SQUOTE] = ACTIONS(2693), + [anon_sym_u_SQUOTE] = ACTIONS(2693), + [anon_sym_U_SQUOTE] = ACTIONS(2693), + [anon_sym_u8_SQUOTE] = ACTIONS(2693), + [anon_sym_SQUOTE] = ACTIONS(2693), + [anon_sym_L_DQUOTE] = ACTIONS(2695), + [anon_sym_u_DQUOTE] = ACTIONS(2695), + [anon_sym_U_DQUOTE] = ACTIONS(2695), + [anon_sym_u8_DQUOTE] = ACTIONS(2695), + [anon_sym_DQUOTE] = ACTIONS(2695), + [sym_true] = ACTIONS(2697), + [sym_false] = ACTIONS(2697), + [sym_null] = ACTIONS(2697), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_GT2] = ACTIONS(1699), + [anon_sym_delete] = ACTIONS(2707), + [anon_sym_co_await] = ACTIONS(2709), + [anon_sym_new] = ACTIONS(2711), + [anon_sym_requires] = ACTIONS(2713), + [sym_this] = ACTIONS(2697), + [sym_nullptr] = ACTIONS(2697), + [sym_raw_string_literal] = ACTIONS(2715), }, - [1560] = { - [sym__expression] = STATE(3854), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2981), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2981), - [sym_call_expression] = STATE(2981), - [sym_field_expression] = STATE(2981), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2981), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2981), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3039), - [anon_sym_LPAREN2] = ACTIONS(3041), - [anon_sym_BANG] = ACTIONS(3045), - [anon_sym_TILDE] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(3047), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3049), - [anon_sym_PLUS_PLUS] = ACTIONS(3049), - [anon_sym_sizeof] = ACTIONS(3051), + [1098] = { + [sym__expression] = STATE(3818), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3121), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3121), + [sym_call_expression] = STATE(3121), + [sym_field_expression] = STATE(3121), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3121), + [sym_initializer_list] = STATE(3506), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3121), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3109), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1699), + [anon_sym_LPAREN2] = ACTIONS(3111), + [anon_sym_BANG] = ACTIONS(3113), + [anon_sym_TILDE] = ACTIONS(3115), + [anon_sym_DASH] = ACTIONS(3113), + [anon_sym_PLUS] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(3117), + [anon_sym_SLASH] = ACTIONS(1707), + [anon_sym_PERCENT] = ACTIONS(1699), + [anon_sym_PIPE_PIPE] = ACTIONS(1699), + [anon_sym_AMP_AMP] = ACTIONS(1699), + [anon_sym_PIPE] = ACTIONS(1707), + [anon_sym_CARET] = ACTIONS(1699), + [anon_sym_AMP] = ACTIONS(1967), + [anon_sym_EQ_EQ] = ACTIONS(1699), + [anon_sym_BANG_EQ] = ACTIONS(1699), + [anon_sym_GT] = ACTIONS(1707), + [anon_sym_GT_EQ] = ACTIONS(1699), + [anon_sym_LT_EQ] = ACTIONS(1707), + [anon_sym_LT] = ACTIONS(1707), + [anon_sym_LT_LT] = ACTIONS(1699), + [anon_sym_GT_GT] = ACTIONS(1699), + [anon_sym_COLON_COLON] = ACTIONS(3119), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_COLON] = ACTIONS(1707), + [anon_sym_QMARK] = ACTIONS(1699), + [anon_sym_not] = ACTIONS(3113), + [anon_sym_compl] = ACTIONS(3113), + [anon_sym_LT_EQ_GT] = ACTIONS(1699), + [anon_sym_or] = ACTIONS(1707), + [anon_sym_and] = ACTIONS(1707), + [anon_sym_bitor] = ACTIONS(1707), + [anon_sym_xor] = ACTIONS(1707), + [anon_sym_bitand] = ACTIONS(1707), + [anon_sym_not_eq] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(3121), + [anon_sym_PLUS_PLUS] = ACTIONS(3121), + [anon_sym_sizeof] = ACTIONS(3123), + [anon_sym_DOT] = ACTIONS(1707), + [anon_sym_DASH_GT] = ACTIONS(1699), [sym_number_literal] = ACTIONS(97), [anon_sym_L_SQUOTE] = ACTIONS(99), [anon_sym_u_SQUOTE] = ACTIONS(99), @@ -189523,3787 +157506,3378 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3053), - [anon_sym_co_await] = ACTIONS(3055), - [anon_sym_new] = ACTIONS(3057), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3125), + [anon_sym_co_await] = ACTIONS(3127), + [anon_sym_new] = ACTIONS(3129), [anon_sym_requires] = ACTIONS(141), [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [1561] = { - [sym__expression] = STATE(3821), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(3196), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(3196), - [sym_call_expression] = STATE(3196), - [sym_field_expression] = STATE(3196), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(3196), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(3196), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN2] = ACTIONS(3061), - [anon_sym_BANG] = ACTIONS(3065), - [anon_sym_TILDE] = ACTIONS(3065), - [anon_sym_DASH] = ACTIONS(3063), - [anon_sym_PLUS] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(3069), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3071), - [anon_sym_PLUS_PLUS] = ACTIONS(3071), - [anon_sym_sizeof] = ACTIONS(3073), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [1099] = { + [sym__declaration_modifiers] = STATE(2175), + [sym__declaration_specifiers] = STATE(3387), + [sym_attribute_specifier] = STATE(2175), + [sym_attribute_declaration] = STATE(2175), + [sym_ms_declspec_modifier] = STATE(2175), + [sym_ms_based_modifier] = STATE(7250), + [sym__declarator] = STATE(5390), + [sym__abstract_declarator] = STATE(5690), + [sym_parenthesized_declarator] = STATE(5080), + [sym_abstract_parenthesized_declarator] = STATE(5127), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_abstract_pointer_declarator] = STATE(5127), + [sym_function_declarator] = STATE(5080), + [sym_abstract_function_declarator] = STATE(5127), + [sym_array_declarator] = STATE(5080), + [sym_abstract_array_declarator] = STATE(5127), + [sym_storage_class_specifier] = STATE(2175), + [sym_type_qualifier] = STATE(2175), + [sym__type_specifier] = STATE(3251), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_parameter_list] = STATE(4345), + [sym_parameter_declaration] = STATE(5909), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym_virtual_function_specifier] = STATE(2175), + [sym_dependent_type] = STATE(3481), + [sym_optional_parameter_declaration] = STATE(5909), + [sym_variadic_parameter_declaration] = STATE(5909), + [sym_reference_declarator] = STATE(5080), + [sym_abstract_reference_declarator] = STATE(5127), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3395), + [sym_template_function] = STATE(5080), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4937), + [sym_qualified_identifier] = STATE(5080), + [sym_qualified_type_identifier] = STATE(3490), + [sym_operator_name] = STATE(5080), + [aux_sym__declaration_specifiers_repeat1] = STATE(2175), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [sym_identifier] = ACTIONS(3131), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3133), + [anon_sym_RPAREN] = ACTIONS(3135), + [anon_sym_LPAREN2] = ACTIONS(3137), + [anon_sym_TILDE] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(3139), + [anon_sym_AMP_AMP] = ACTIONS(3141), + [anon_sym_AMP] = ACTIONS(3143), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3145), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___based] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(3147), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(2438), + [anon_sym_enum] = ACTIONS(1431), + [anon_sym_class] = ACTIONS(1433), + [anon_sym_struct] = ACTIONS(1435), + [anon_sym_union] = ACTIONS(1437), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3075), - [anon_sym_co_await] = ACTIONS(3077), - [anon_sym_new] = ACTIONS(3079), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_typename] = ACTIONS(1451), + [anon_sym_template] = ACTIONS(976), + [anon_sym_operator] = ACTIONS(1501), }, - [1562] = { - [sym__expression] = STATE(2631), - [sym_conditional_expression] = STATE(2765), - [sym_assignment_expression] = STATE(2765), - [sym_pointer_expression] = STATE(2827), - [sym_unary_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_update_expression] = STATE(2765), - [sym_cast_expression] = STATE(2765), - [sym_sizeof_expression] = STATE(2765), - [sym_subscript_expression] = STATE(2827), - [sym_call_expression] = STATE(2827), - [sym_field_expression] = STATE(2827), - [sym_compound_literal_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2827), - [sym_char_literal] = STATE(2674), - [sym_concatenated_string] = STATE(2674), - [sym_string_literal] = STATE(2093), - [sym__class_name] = STATE(6297), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2765), - [sym_co_await_expression] = STATE(2765), - [sym_new_expression] = STATE(2765), - [sym_delete_expression] = STATE(2765), - [sym_requires_clause] = STATE(2765), - [sym_requires_expression] = STATE(2765), - [sym_lambda_expression] = STATE(2765), - [sym_lambda_capture_specifier] = STATE(4512), - [sym_fold_expression] = STATE(2765), - [sym_parameter_pack_expansion] = STATE(2765), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4648), - [sym_qualified_identifier] = STATE(2827), - [sym_qualified_type_identifier] = STATE(6297), - [sym_user_defined_literal] = STATE(2765), - [sym_identifier] = ACTIONS(2363), - [anon_sym_LPAREN2] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1417), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_COLON_COLON] = ACTIONS(1423), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(2369), - [anon_sym_DASH_DASH] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [anon_sym_sizeof] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(1439), - [anon_sym_L_SQUOTE] = ACTIONS(1441), - [anon_sym_u_SQUOTE] = ACTIONS(1441), - [anon_sym_U_SQUOTE] = ACTIONS(1441), - [anon_sym_u8_SQUOTE] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1441), - [anon_sym_L_DQUOTE] = ACTIONS(1443), - [anon_sym_u_DQUOTE] = ACTIONS(1443), - [anon_sym_U_DQUOTE] = ACTIONS(1443), - [anon_sym_u8_DQUOTE] = ACTIONS(1443), - [anon_sym_DQUOTE] = ACTIONS(1443), - [sym_true] = ACTIONS(1445), - [sym_false] = ACTIONS(1445), - [sym_null] = ACTIONS(1445), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_co_await] = ACTIONS(1451), - [anon_sym_new] = ACTIONS(1453), - [anon_sym_requires] = ACTIONS(1455), - [sym_this] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(1445), - [sym_raw_string_literal] = ACTIONS(1457), + [1100] = { + [sym_identifier] = ACTIONS(3149), + [anon_sym_LPAREN2] = ACTIONS(3152), + [anon_sym_BANG] = ACTIONS(3155), + [anon_sym_TILDE] = ACTIONS(3152), + [anon_sym_DASH] = ACTIONS(3157), + [anon_sym_PLUS] = ACTIONS(3157), + [anon_sym_STAR] = ACTIONS(3152), + [anon_sym_AMP_AMP] = ACTIONS(3159), + [anon_sym_AMP] = ACTIONS(3149), + [anon_sym_SEMI] = ACTIONS(3155), + [anon_sym_extern] = ACTIONS(3161), + [anon_sym___attribute__] = ACTIONS(3161), + [anon_sym_COLON_COLON] = ACTIONS(3152), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3152), + [anon_sym___declspec] = ACTIONS(3161), + [anon_sym___based] = ACTIONS(3161), + [anon_sym_LBRACE] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3149), + [anon_sym_static] = ACTIONS(3161), + [anon_sym_register] = ACTIONS(3161), + [anon_sym_inline] = ACTIONS(3161), + [anon_sym_thread_local] = ACTIONS(3161), + [anon_sym_const] = ACTIONS(3161), + [anon_sym_volatile] = ACTIONS(3161), + [anon_sym_restrict] = ACTIONS(3161), + [anon_sym__Atomic] = ACTIONS(3161), + [anon_sym_mutable] = ACTIONS(3161), + [anon_sym_constexpr] = ACTIONS(3161), + [anon_sym_constinit] = ACTIONS(3161), + [anon_sym_consteval] = ACTIONS(3161), + [anon_sym_signed] = ACTIONS(3161), + [anon_sym_unsigned] = ACTIONS(3161), + [anon_sym_long] = ACTIONS(3161), + [anon_sym_short] = ACTIONS(3161), + [sym_primitive_type] = ACTIONS(3149), + [anon_sym_enum] = ACTIONS(3161), + [anon_sym_class] = ACTIONS(3161), + [anon_sym_struct] = ACTIONS(3161), + [anon_sym_union] = ACTIONS(3161), + [anon_sym_if] = ACTIONS(3157), + [anon_sym_switch] = ACTIONS(3157), + [anon_sym_case] = ACTIONS(3157), + [anon_sym_default] = ACTIONS(3157), + [anon_sym_while] = ACTIONS(3157), + [anon_sym_do] = ACTIONS(3157), + [anon_sym_for] = ACTIONS(3157), + [anon_sym_return] = ACTIONS(3157), + [anon_sym_break] = ACTIONS(3157), + [anon_sym_continue] = ACTIONS(3157), + [anon_sym_goto] = ACTIONS(3157), + [anon_sym_not] = ACTIONS(3157), + [anon_sym_compl] = ACTIONS(3157), + [anon_sym_DASH_DASH] = ACTIONS(3155), + [anon_sym_PLUS_PLUS] = ACTIONS(3155), + [anon_sym_sizeof] = ACTIONS(3157), + [sym_number_literal] = ACTIONS(3155), + [anon_sym_L_SQUOTE] = ACTIONS(3155), + [anon_sym_u_SQUOTE] = ACTIONS(3155), + [anon_sym_U_SQUOTE] = ACTIONS(3155), + [anon_sym_u8_SQUOTE] = ACTIONS(3155), + [anon_sym_SQUOTE] = ACTIONS(3155), + [anon_sym_L_DQUOTE] = ACTIONS(3155), + [anon_sym_u_DQUOTE] = ACTIONS(3155), + [anon_sym_U_DQUOTE] = ACTIONS(3155), + [anon_sym_u8_DQUOTE] = ACTIONS(3155), + [anon_sym_DQUOTE] = ACTIONS(3155), + [sym_true] = ACTIONS(3157), + [sym_false] = ACTIONS(3157), + [sym_null] = ACTIONS(3157), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3161), + [anon_sym_decltype] = ACTIONS(3161), + [anon_sym_virtual] = ACTIONS(3161), + [anon_sym_explicit] = ACTIONS(3161), + [anon_sym_typename] = ACTIONS(3161), + [anon_sym_template] = ACTIONS(3149), + [anon_sym_operator] = ACTIONS(3161), + [anon_sym_try] = ACTIONS(3157), + [anon_sym_delete] = ACTIONS(3157), + [anon_sym_throw] = ACTIONS(3157), + [anon_sym_co_return] = ACTIONS(3157), + [anon_sym_co_yield] = ACTIONS(3157), + [anon_sym_co_await] = ACTIONS(3157), + [anon_sym_new] = ACTIONS(3157), + [anon_sym_requires] = ACTIONS(3157), + [sym_this] = ACTIONS(3157), + [sym_nullptr] = ACTIONS(3157), + [sym_raw_string_literal] = ACTIONS(3155), }, - [1563] = { - [sym__expression] = STATE(3795), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(3196), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(3196), - [sym_call_expression] = STATE(3196), - [sym_field_expression] = STATE(3196), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(3196), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(3196), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN2] = ACTIONS(3061), - [anon_sym_BANG] = ACTIONS(3065), - [anon_sym_TILDE] = ACTIONS(3065), - [anon_sym_DASH] = ACTIONS(3063), - [anon_sym_PLUS] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(3069), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3071), - [anon_sym_PLUS_PLUS] = ACTIONS(3071), - [anon_sym_sizeof] = ACTIONS(3073), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3075), - [anon_sym_co_await] = ACTIONS(3077), - [anon_sym_new] = ACTIONS(3079), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [1101] = { + [sym_identifier] = ACTIONS(3163), + [anon_sym_LPAREN2] = ACTIONS(3165), + [anon_sym_BANG] = ACTIONS(3165), + [anon_sym_TILDE] = ACTIONS(3165), + [anon_sym_DASH] = ACTIONS(3163), + [anon_sym_PLUS] = ACTIONS(3163), + [anon_sym_STAR] = ACTIONS(3165), + [anon_sym_AMP_AMP] = ACTIONS(3165), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym_SEMI] = ACTIONS(3165), + [anon_sym_extern] = ACTIONS(3163), + [anon_sym___attribute__] = ACTIONS(3163), + [anon_sym_COLON_COLON] = ACTIONS(3165), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3165), + [anon_sym___declspec] = ACTIONS(3163), + [anon_sym___based] = ACTIONS(3163), + [anon_sym_LBRACE] = ACTIONS(3165), + [anon_sym_LBRACK] = ACTIONS(3163), + [anon_sym_static] = ACTIONS(3163), + [anon_sym_register] = ACTIONS(3163), + [anon_sym_inline] = ACTIONS(3163), + [anon_sym_thread_local] = ACTIONS(3163), + [anon_sym_const] = ACTIONS(3163), + [anon_sym_volatile] = ACTIONS(3163), + [anon_sym_restrict] = ACTIONS(3163), + [anon_sym__Atomic] = ACTIONS(3163), + [anon_sym_mutable] = ACTIONS(3163), + [anon_sym_constexpr] = ACTIONS(3163), + [anon_sym_constinit] = ACTIONS(3163), + [anon_sym_consteval] = ACTIONS(3163), + [anon_sym_signed] = ACTIONS(3163), + [anon_sym_unsigned] = ACTIONS(3163), + [anon_sym_long] = ACTIONS(3163), + [anon_sym_short] = ACTIONS(3163), + [sym_primitive_type] = ACTIONS(3163), + [anon_sym_enum] = ACTIONS(3163), + [anon_sym_class] = ACTIONS(3163), + [anon_sym_struct] = ACTIONS(3163), + [anon_sym_union] = ACTIONS(3163), + [anon_sym_if] = ACTIONS(3163), + [anon_sym_switch] = ACTIONS(3163), + [anon_sym_case] = ACTIONS(3163), + [anon_sym_default] = ACTIONS(3163), + [anon_sym_while] = ACTIONS(3163), + [anon_sym_do] = ACTIONS(3163), + [anon_sym_for] = ACTIONS(3163), + [anon_sym_return] = ACTIONS(3163), + [anon_sym_break] = ACTIONS(3163), + [anon_sym_continue] = ACTIONS(3163), + [anon_sym_goto] = ACTIONS(3163), + [anon_sym_not] = ACTIONS(3163), + [anon_sym_compl] = ACTIONS(3163), + [anon_sym_DASH_DASH] = ACTIONS(3165), + [anon_sym_PLUS_PLUS] = ACTIONS(3165), + [anon_sym_sizeof] = ACTIONS(3163), + [sym_number_literal] = ACTIONS(3165), + [anon_sym_L_SQUOTE] = ACTIONS(3165), + [anon_sym_u_SQUOTE] = ACTIONS(3165), + [anon_sym_U_SQUOTE] = ACTIONS(3165), + [anon_sym_u8_SQUOTE] = ACTIONS(3165), + [anon_sym_SQUOTE] = ACTIONS(3165), + [anon_sym_L_DQUOTE] = ACTIONS(3165), + [anon_sym_u_DQUOTE] = ACTIONS(3165), + [anon_sym_U_DQUOTE] = ACTIONS(3165), + [anon_sym_u8_DQUOTE] = ACTIONS(3165), + [anon_sym_DQUOTE] = ACTIONS(3165), + [sym_true] = ACTIONS(3163), + [sym_false] = ACTIONS(3163), + [sym_null] = ACTIONS(3163), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3163), + [anon_sym_decltype] = ACTIONS(3163), + [anon_sym_virtual] = ACTIONS(3163), + [anon_sym_explicit] = ACTIONS(3163), + [anon_sym_typename] = ACTIONS(3163), + [anon_sym_template] = ACTIONS(3163), + [anon_sym_operator] = ACTIONS(3163), + [anon_sym_try] = ACTIONS(3163), + [anon_sym_delete] = ACTIONS(3163), + [anon_sym_throw] = ACTIONS(3163), + [anon_sym_co_return] = ACTIONS(3163), + [anon_sym_co_yield] = ACTIONS(3163), + [anon_sym_co_await] = ACTIONS(3163), + [anon_sym_new] = ACTIONS(3163), + [anon_sym_requires] = ACTIONS(3163), + [sym_this] = ACTIONS(3163), + [sym_nullptr] = ACTIONS(3163), + [sym_raw_string_literal] = ACTIONS(3165), }, - [1564] = { - [sym__expression] = STATE(3852), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [1102] = { + [sym_identifier] = ACTIONS(3167), + [anon_sym_LPAREN2] = ACTIONS(3169), + [anon_sym_BANG] = ACTIONS(3169), + [anon_sym_TILDE] = ACTIONS(3169), + [anon_sym_DASH] = ACTIONS(3167), + [anon_sym_PLUS] = ACTIONS(3167), + [anon_sym_STAR] = ACTIONS(3169), + [anon_sym_AMP_AMP] = ACTIONS(3169), + [anon_sym_AMP] = ACTIONS(3167), + [anon_sym_SEMI] = ACTIONS(3169), + [anon_sym_extern] = ACTIONS(3167), + [anon_sym___attribute__] = ACTIONS(3167), + [anon_sym_COLON_COLON] = ACTIONS(3169), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3169), + [anon_sym___declspec] = ACTIONS(3167), + [anon_sym___based] = ACTIONS(3167), + [anon_sym_LBRACE] = ACTIONS(3169), + [anon_sym_LBRACK] = ACTIONS(3167), + [anon_sym_static] = ACTIONS(3167), + [anon_sym_register] = ACTIONS(3167), + [anon_sym_inline] = ACTIONS(3167), + [anon_sym_thread_local] = ACTIONS(3167), + [anon_sym_const] = ACTIONS(3167), + [anon_sym_volatile] = ACTIONS(3167), + [anon_sym_restrict] = ACTIONS(3167), + [anon_sym__Atomic] = ACTIONS(3167), + [anon_sym_mutable] = ACTIONS(3167), + [anon_sym_constexpr] = ACTIONS(3167), + [anon_sym_constinit] = ACTIONS(3167), + [anon_sym_consteval] = ACTIONS(3167), + [anon_sym_signed] = ACTIONS(3167), + [anon_sym_unsigned] = ACTIONS(3167), + [anon_sym_long] = ACTIONS(3167), + [anon_sym_short] = ACTIONS(3167), + [sym_primitive_type] = ACTIONS(3167), + [anon_sym_enum] = ACTIONS(3167), + [anon_sym_class] = ACTIONS(3167), + [anon_sym_struct] = ACTIONS(3167), + [anon_sym_union] = ACTIONS(3167), + [anon_sym_if] = ACTIONS(3167), + [anon_sym_switch] = ACTIONS(3167), + [anon_sym_case] = ACTIONS(3167), + [anon_sym_default] = ACTIONS(3167), + [anon_sym_while] = ACTIONS(3167), + [anon_sym_do] = ACTIONS(3167), + [anon_sym_for] = ACTIONS(3167), + [anon_sym_return] = ACTIONS(3167), + [anon_sym_break] = ACTIONS(3167), + [anon_sym_continue] = ACTIONS(3167), + [anon_sym_goto] = ACTIONS(3167), + [anon_sym_not] = ACTIONS(3167), + [anon_sym_compl] = ACTIONS(3167), + [anon_sym_DASH_DASH] = ACTIONS(3169), + [anon_sym_PLUS_PLUS] = ACTIONS(3169), + [anon_sym_sizeof] = ACTIONS(3167), + [sym_number_literal] = ACTIONS(3169), + [anon_sym_L_SQUOTE] = ACTIONS(3169), + [anon_sym_u_SQUOTE] = ACTIONS(3169), + [anon_sym_U_SQUOTE] = ACTIONS(3169), + [anon_sym_u8_SQUOTE] = ACTIONS(3169), + [anon_sym_SQUOTE] = ACTIONS(3169), + [anon_sym_L_DQUOTE] = ACTIONS(3169), + [anon_sym_u_DQUOTE] = ACTIONS(3169), + [anon_sym_U_DQUOTE] = ACTIONS(3169), + [anon_sym_u8_DQUOTE] = ACTIONS(3169), + [anon_sym_DQUOTE] = ACTIONS(3169), + [sym_true] = ACTIONS(3167), + [sym_false] = ACTIONS(3167), + [sym_null] = ACTIONS(3167), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3167), + [anon_sym_decltype] = ACTIONS(3167), + [anon_sym_virtual] = ACTIONS(3167), + [anon_sym_explicit] = ACTIONS(3167), + [anon_sym_typename] = ACTIONS(3167), + [anon_sym_template] = ACTIONS(3167), + [anon_sym_operator] = ACTIONS(3167), + [anon_sym_try] = ACTIONS(3167), + [anon_sym_delete] = ACTIONS(3167), + [anon_sym_throw] = ACTIONS(3167), + [anon_sym_co_return] = ACTIONS(3167), + [anon_sym_co_yield] = ACTIONS(3167), + [anon_sym_co_await] = ACTIONS(3167), + [anon_sym_new] = ACTIONS(3167), + [anon_sym_requires] = ACTIONS(3167), + [sym_this] = ACTIONS(3167), + [sym_nullptr] = ACTIONS(3167), + [sym_raw_string_literal] = ACTIONS(3169), }, - [1565] = { - [sym__expression] = STATE(3929), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [1103] = { + [sym_ms_based_modifier] = STATE(7250), + [sym__declarator] = STATE(5304), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(5080), + [sym_array_declarator] = STATE(5080), + [sym__expression] = STATE(2630), + [sym_conditional_expression] = STATE(2821), + [sym_assignment_expression] = STATE(2821), + [sym_pointer_expression] = STATE(2805), + [sym_unary_expression] = STATE(2821), + [sym_binary_expression] = STATE(2821), + [sym_update_expression] = STATE(2821), + [sym_cast_expression] = STATE(2821), + [sym_sizeof_expression] = STATE(2821), + [sym_subscript_expression] = STATE(2805), + [sym_call_expression] = STATE(2805), + [sym_field_expression] = STATE(2805), + [sym_compound_literal_expression] = STATE(2821), + [sym_parenthesized_expression] = STATE(2805), + [sym_char_literal] = STATE(2577), + [sym_concatenated_string] = STATE(2577), + [sym_string_literal] = STATE(1861), + [sym__class_name] = STATE(6652), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2585), + [sym_co_await_expression] = STATE(2821), + [sym_new_expression] = STATE(2821), + [sym_delete_expression] = STATE(2821), + [sym_requires_clause] = STATE(2821), + [sym_requires_expression] = STATE(2821), + [sym_lambda_expression] = STATE(2821), + [sym_lambda_capture_specifier] = STATE(4790), + [sym_fold_expression] = STATE(2821), + [sym_parameter_pack_expansion] = STATE(2821), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4891), + [sym_qualified_identifier] = STATE(2586), + [sym_qualified_type_identifier] = STATE(6652), + [sym_operator_name] = STATE(5080), + [sym_user_defined_literal] = STATE(2821), + [sym_identifier] = ACTIONS(2993), + [anon_sym_LPAREN2] = ACTIONS(2995), + [anon_sym_BANG] = ACTIONS(1745), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(1743), + [anon_sym_PLUS] = ACTIONS(1743), + [anon_sym_STAR] = ACTIONS(1477), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1479), + [anon_sym_COLON_COLON] = ACTIONS(1749), + [anon_sym___based] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1481), + [sym_primitive_type] = ACTIONS(1753), + [anon_sym_not] = ACTIONS(1743), + [anon_sym_compl] = ACTIONS(1743), + [anon_sym_DASH_DASH] = ACTIONS(1755), + [anon_sym_PLUS_PLUS] = ACTIONS(1755), + [anon_sym_sizeof] = ACTIONS(1757), + [sym_number_literal] = ACTIONS(1759), + [anon_sym_L_SQUOTE] = ACTIONS(1761), + [anon_sym_u_SQUOTE] = ACTIONS(1761), + [anon_sym_U_SQUOTE] = ACTIONS(1761), + [anon_sym_u8_SQUOTE] = ACTIONS(1761), + [anon_sym_SQUOTE] = ACTIONS(1761), + [anon_sym_L_DQUOTE] = ACTIONS(1763), + [anon_sym_u_DQUOTE] = ACTIONS(1763), + [anon_sym_U_DQUOTE] = ACTIONS(1763), + [anon_sym_u8_DQUOTE] = ACTIONS(1763), + [anon_sym_DQUOTE] = ACTIONS(1763), + [sym_true] = ACTIONS(1765), + [sym_false] = ACTIONS(1765), + [sym_null] = ACTIONS(1765), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_operator] = ACTIONS(1501), + [anon_sym_delete] = ACTIONS(1767), + [anon_sym_co_await] = ACTIONS(1769), + [anon_sym_new] = ACTIONS(1771), + [anon_sym_requires] = ACTIONS(1773), + [sym_this] = ACTIONS(1765), + [sym_nullptr] = ACTIONS(1765), + [sym_raw_string_literal] = ACTIONS(1775), }, - [1566] = { - [sym__expression] = STATE(3440), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [1104] = { + [sym_catch_clause] = STATE(1104), + [aux_sym_constructor_try_statement_repeat1] = STATE(1104), + [sym_identifier] = ACTIONS(2411), + [anon_sym_LPAREN2] = ACTIONS(2413), + [anon_sym_BANG] = ACTIONS(2413), + [anon_sym_TILDE] = ACTIONS(2413), + [anon_sym_DASH] = ACTIONS(2411), + [anon_sym_PLUS] = ACTIONS(2411), + [anon_sym_STAR] = ACTIONS(2413), + [anon_sym_AMP] = ACTIONS(2413), + [anon_sym_SEMI] = ACTIONS(2413), + [anon_sym_typedef] = ACTIONS(2411), + [anon_sym_extern] = ACTIONS(2411), + [anon_sym___attribute__] = ACTIONS(2411), + [anon_sym_COLON_COLON] = ACTIONS(2413), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2413), + [anon_sym___declspec] = ACTIONS(2411), + [anon_sym_LBRACE] = ACTIONS(2413), + [anon_sym_LBRACK] = ACTIONS(2411), + [anon_sym_static] = ACTIONS(2411), + [anon_sym_register] = ACTIONS(2411), + [anon_sym_inline] = ACTIONS(2411), + [anon_sym_thread_local] = ACTIONS(2411), + [anon_sym_const] = ACTIONS(2411), + [anon_sym_volatile] = ACTIONS(2411), + [anon_sym_restrict] = ACTIONS(2411), + [anon_sym__Atomic] = ACTIONS(2411), + [anon_sym_mutable] = ACTIONS(2411), + [anon_sym_constexpr] = ACTIONS(2411), + [anon_sym_constinit] = ACTIONS(2411), + [anon_sym_consteval] = ACTIONS(2411), + [anon_sym_signed] = ACTIONS(2411), + [anon_sym_unsigned] = ACTIONS(2411), + [anon_sym_long] = ACTIONS(2411), + [anon_sym_short] = ACTIONS(2411), + [sym_primitive_type] = ACTIONS(2411), + [anon_sym_enum] = ACTIONS(2411), + [anon_sym_class] = ACTIONS(2411), + [anon_sym_struct] = ACTIONS(2411), + [anon_sym_union] = ACTIONS(2411), + [anon_sym_if] = ACTIONS(2411), + [anon_sym_else] = ACTIONS(2411), + [anon_sym_switch] = ACTIONS(2411), + [anon_sym_while] = ACTIONS(2411), + [anon_sym_do] = ACTIONS(2411), + [anon_sym_for] = ACTIONS(2411), + [anon_sym_return] = ACTIONS(2411), + [anon_sym_break] = ACTIONS(2411), + [anon_sym_continue] = ACTIONS(2411), + [anon_sym_goto] = ACTIONS(2411), + [anon_sym_not] = ACTIONS(2411), + [anon_sym_compl] = ACTIONS(2411), + [anon_sym_DASH_DASH] = ACTIONS(2413), + [anon_sym_PLUS_PLUS] = ACTIONS(2413), + [anon_sym_sizeof] = ACTIONS(2411), + [sym_number_literal] = ACTIONS(2413), + [anon_sym_L_SQUOTE] = ACTIONS(2413), + [anon_sym_u_SQUOTE] = ACTIONS(2413), + [anon_sym_U_SQUOTE] = ACTIONS(2413), + [anon_sym_u8_SQUOTE] = ACTIONS(2413), + [anon_sym_SQUOTE] = ACTIONS(2413), + [anon_sym_L_DQUOTE] = ACTIONS(2413), + [anon_sym_u_DQUOTE] = ACTIONS(2413), + [anon_sym_U_DQUOTE] = ACTIONS(2413), + [anon_sym_u8_DQUOTE] = ACTIONS(2413), + [anon_sym_DQUOTE] = ACTIONS(2413), + [sym_true] = ACTIONS(2411), + [sym_false] = ACTIONS(2411), + [sym_null] = ACTIONS(2411), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2411), + [anon_sym_decltype] = ACTIONS(2411), + [anon_sym_virtual] = ACTIONS(2411), + [anon_sym_typename] = ACTIONS(2411), + [anon_sym_template] = ACTIONS(2411), + [anon_sym_try] = ACTIONS(2411), + [anon_sym_delete] = ACTIONS(2411), + [anon_sym_throw] = ACTIONS(2411), + [anon_sym_co_return] = ACTIONS(2411), + [anon_sym_co_yield] = ACTIONS(2411), + [anon_sym_catch] = ACTIONS(3171), + [anon_sym_co_await] = ACTIONS(2411), + [anon_sym_new] = ACTIONS(2411), + [anon_sym_requires] = ACTIONS(2411), + [sym_this] = ACTIONS(2411), + [sym_nullptr] = ACTIONS(2411), + [sym_raw_string_literal] = ACTIONS(2413), }, - [1567] = { - [sym__expression] = STATE(2908), - [sym_conditional_expression] = STATE(3000), - [sym_assignment_expression] = STATE(3000), - [sym_pointer_expression] = STATE(3006), - [sym_unary_expression] = STATE(3000), - [sym_binary_expression] = STATE(3000), - [sym_update_expression] = STATE(3000), - [sym_cast_expression] = STATE(3000), - [sym_sizeof_expression] = STATE(3000), - [sym_subscript_expression] = STATE(3006), - [sym_call_expression] = STATE(3006), - [sym_field_expression] = STATE(3006), - [sym_compound_literal_expression] = STATE(3000), - [sym_parenthesized_expression] = STATE(3006), - [sym_char_literal] = STATE(2896), - [sym_concatenated_string] = STATE(2896), - [sym_string_literal] = STATE(2154), - [sym__class_name] = STATE(5849), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3000), - [sym_co_await_expression] = STATE(3000), - [sym_new_expression] = STATE(3000), - [sym_delete_expression] = STATE(3000), - [sym_requires_clause] = STATE(3000), - [sym_requires_expression] = STATE(3000), - [sym_lambda_expression] = STATE(3000), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3000), - [sym_parameter_pack_expansion] = STATE(3000), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4642), - [sym_qualified_identifier] = STATE(3006), - [sym_qualified_type_identifier] = STATE(5849), - [sym_user_defined_literal] = STATE(3000), - [sym_identifier] = ACTIONS(2831), - [anon_sym_LPAREN2] = ACTIONS(2833), - [anon_sym_BANG] = ACTIONS(2837), - [anon_sym_TILDE] = ACTIONS(2837), - [anon_sym_DASH] = ACTIONS(2835), - [anon_sym_PLUS] = ACTIONS(2835), - [anon_sym_STAR] = ACTIONS(2537), - [anon_sym_AMP] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(2841), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(2845), - [anon_sym_DASH_DASH] = ACTIONS(2847), - [anon_sym_PLUS_PLUS] = ACTIONS(2847), - [anon_sym_sizeof] = ACTIONS(2849), - [sym_number_literal] = ACTIONS(2851), - [anon_sym_L_SQUOTE] = ACTIONS(2853), - [anon_sym_u_SQUOTE] = ACTIONS(2853), - [anon_sym_U_SQUOTE] = ACTIONS(2853), - [anon_sym_u8_SQUOTE] = ACTIONS(2853), - [anon_sym_SQUOTE] = ACTIONS(2853), - [anon_sym_L_DQUOTE] = ACTIONS(2855), - [anon_sym_u_DQUOTE] = ACTIONS(2855), - [anon_sym_U_DQUOTE] = ACTIONS(2855), - [anon_sym_u8_DQUOTE] = ACTIONS(2855), - [anon_sym_DQUOTE] = ACTIONS(2855), - [sym_true] = ACTIONS(2857), - [sym_false] = ACTIONS(2857), - [sym_null] = ACTIONS(2857), + [1105] = { + [sym_catch_clause] = STATE(1104), + [aux_sym_constructor_try_statement_repeat1] = STATE(1104), + [sym_identifier] = ACTIONS(2405), + [anon_sym_LPAREN2] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_TILDE] = ACTIONS(2407), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2407), + [anon_sym_AMP] = ACTIONS(2407), + [anon_sym_SEMI] = ACTIONS(2407), + [anon_sym_typedef] = ACTIONS(2405), + [anon_sym_extern] = ACTIONS(2405), + [anon_sym___attribute__] = ACTIONS(2405), + [anon_sym_COLON_COLON] = ACTIONS(2407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2407), + [anon_sym___declspec] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2407), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_register] = ACTIONS(2405), + [anon_sym_inline] = ACTIONS(2405), + [anon_sym_thread_local] = ACTIONS(2405), + [anon_sym_const] = ACTIONS(2405), + [anon_sym_volatile] = ACTIONS(2405), + [anon_sym_restrict] = ACTIONS(2405), + [anon_sym__Atomic] = ACTIONS(2405), + [anon_sym_mutable] = ACTIONS(2405), + [anon_sym_constexpr] = ACTIONS(2405), + [anon_sym_constinit] = ACTIONS(2405), + [anon_sym_consteval] = ACTIONS(2405), + [anon_sym_signed] = ACTIONS(2405), + [anon_sym_unsigned] = ACTIONS(2405), + [anon_sym_long] = ACTIONS(2405), + [anon_sym_short] = ACTIONS(2405), + [sym_primitive_type] = ACTIONS(2405), + [anon_sym_enum] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_struct] = ACTIONS(2405), + [anon_sym_union] = ACTIONS(2405), + [anon_sym_if] = ACTIONS(2405), + [anon_sym_else] = ACTIONS(2405), + [anon_sym_switch] = ACTIONS(2405), + [anon_sym_while] = ACTIONS(2405), + [anon_sym_do] = ACTIONS(2405), + [anon_sym_for] = ACTIONS(2405), + [anon_sym_return] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2405), + [anon_sym_continue] = ACTIONS(2405), + [anon_sym_goto] = ACTIONS(2405), + [anon_sym_not] = ACTIONS(2405), + [anon_sym_compl] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_sizeof] = ACTIONS(2405), + [sym_number_literal] = ACTIONS(2407), + [anon_sym_L_SQUOTE] = ACTIONS(2407), + [anon_sym_u_SQUOTE] = ACTIONS(2407), + [anon_sym_U_SQUOTE] = ACTIONS(2407), + [anon_sym_u8_SQUOTE] = ACTIONS(2407), + [anon_sym_SQUOTE] = ACTIONS(2407), + [anon_sym_L_DQUOTE] = ACTIONS(2407), + [anon_sym_u_DQUOTE] = ACTIONS(2407), + [anon_sym_U_DQUOTE] = ACTIONS(2407), + [anon_sym_u8_DQUOTE] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_co_await] = ACTIONS(2861), - [anon_sym_new] = ACTIONS(2863), - [anon_sym_requires] = ACTIONS(2865), - [sym_this] = ACTIONS(2857), - [sym_nullptr] = ACTIONS(2857), - [sym_raw_string_literal] = ACTIONS(2867), + [sym_auto] = ACTIONS(2405), + [anon_sym_decltype] = ACTIONS(2405), + [anon_sym_virtual] = ACTIONS(2405), + [anon_sym_typename] = ACTIONS(2405), + [anon_sym_template] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_throw] = ACTIONS(2405), + [anon_sym_co_return] = ACTIONS(2405), + [anon_sym_co_yield] = ACTIONS(2405), + [anon_sym_catch] = ACTIONS(3174), + [anon_sym_co_await] = ACTIONS(2405), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_requires] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_nullptr] = ACTIONS(2405), + [sym_raw_string_literal] = ACTIONS(2407), }, - [1568] = { - [sym__expression] = STATE(3634), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [1106] = { + [sym_ms_based_modifier] = STATE(7250), + [sym__declarator] = STATE(5304), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(5080), + [sym_array_declarator] = STATE(5080), + [sym__expression] = STATE(2548), + [sym_conditional_expression] = STATE(2562), + [sym_assignment_expression] = STATE(2562), + [sym_pointer_expression] = STATE(2549), + [sym_unary_expression] = STATE(2562), + [sym_binary_expression] = STATE(2562), + [sym_update_expression] = STATE(2562), + [sym_cast_expression] = STATE(2562), + [sym_sizeof_expression] = STATE(2562), + [sym_subscript_expression] = STATE(2549), + [sym_call_expression] = STATE(2549), + [sym_field_expression] = STATE(2549), + [sym_compound_literal_expression] = STATE(2562), + [sym_parenthesized_expression] = STATE(2549), + [sym_char_literal] = STATE(2344), + [sym_concatenated_string] = STATE(2344), + [sym_string_literal] = STATE(1824), + [sym__class_name] = STATE(6654), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2787), + [sym_co_await_expression] = STATE(2562), + [sym_new_expression] = STATE(2562), + [sym_delete_expression] = STATE(2562), + [sym_requires_clause] = STATE(2562), + [sym_requires_expression] = STATE(2562), + [sym_lambda_expression] = STATE(2562), + [sym_lambda_capture_specifier] = STATE(4787), + [sym_fold_expression] = STATE(2562), + [sym_parameter_pack_expansion] = STATE(2562), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4899), + [sym_qualified_identifier] = STATE(2786), + [sym_qualified_type_identifier] = STATE(6654), + [sym_operator_name] = STATE(5080), + [sym_user_defined_literal] = STATE(2562), + [sym_identifier] = ACTIONS(2955), + [anon_sym_LPAREN2] = ACTIONS(2957), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(2959), + [anon_sym_DASH] = ACTIONS(1703), + [anon_sym_PLUS] = ACTIONS(1703), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(1709), + [anon_sym___based] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1481), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(1703), + [anon_sym_compl] = ACTIONS(1703), + [anon_sym_DASH_DASH] = ACTIONS(1717), + [anon_sym_PLUS_PLUS] = ACTIONS(1717), + [anon_sym_sizeof] = ACTIONS(1719), + [sym_number_literal] = ACTIONS(1721), + [anon_sym_L_SQUOTE] = ACTIONS(1723), + [anon_sym_u_SQUOTE] = ACTIONS(1723), + [anon_sym_U_SQUOTE] = ACTIONS(1723), + [anon_sym_u8_SQUOTE] = ACTIONS(1723), + [anon_sym_SQUOTE] = ACTIONS(1723), + [anon_sym_L_DQUOTE] = ACTIONS(1725), + [anon_sym_u_DQUOTE] = ACTIONS(1725), + [anon_sym_U_DQUOTE] = ACTIONS(1725), + [anon_sym_u8_DQUOTE] = ACTIONS(1725), + [anon_sym_DQUOTE] = ACTIONS(1725), + [sym_true] = ACTIONS(1727), + [sym_false] = ACTIONS(1727), + [sym_null] = ACTIONS(1727), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_operator] = ACTIONS(1501), + [anon_sym_delete] = ACTIONS(1729), + [anon_sym_co_await] = ACTIONS(1731), + [anon_sym_new] = ACTIONS(1733), + [anon_sym_requires] = ACTIONS(1735), + [sym_this] = ACTIONS(1727), + [sym_nullptr] = ACTIONS(1727), + [sym_raw_string_literal] = ACTIONS(1737), }, - [1569] = { - [sym__expression] = STATE(3030), - [sym_conditional_expression] = STATE(2541), - [sym_assignment_expression] = STATE(2541), - [sym_pointer_expression] = STATE(2531), - [sym_unary_expression] = STATE(2541), - [sym_binary_expression] = STATE(2541), - [sym_update_expression] = STATE(2541), - [sym_cast_expression] = STATE(2541), - [sym_sizeof_expression] = STATE(2541), - [sym_subscript_expression] = STATE(2531), - [sym_call_expression] = STATE(2531), - [sym_field_expression] = STATE(2531), - [sym_compound_literal_expression] = STATE(2541), - [sym_parenthesized_expression] = STATE(2531), - [sym_char_literal] = STATE(2481), - [sym_concatenated_string] = STATE(2481), - [sym_string_literal] = STATE(2063), - [sym__class_name] = STATE(6239), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2541), - [sym_co_await_expression] = STATE(2541), - [sym_new_expression] = STATE(2541), - [sym_delete_expression] = STATE(2541), - [sym_requires_clause] = STATE(2541), - [sym_requires_expression] = STATE(2541), - [sym_lambda_expression] = STATE(2541), - [sym_lambda_capture_specifier] = STATE(4508), - [sym_fold_expression] = STATE(2541), - [sym_parameter_pack_expansion] = STATE(2541), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2531), - [sym_qualified_type_identifier] = STATE(6239), - [sym_user_defined_literal] = STATE(2541), - [sym_identifier] = ACTIONS(2306), - [anon_sym_LPAREN2] = ACTIONS(2891), - [anon_sym_BANG] = ACTIONS(2895), - [anon_sym_TILDE] = ACTIONS(2895), - [anon_sym_DASH] = ACTIONS(2893), - [anon_sym_PLUS] = ACTIONS(2893), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(2899), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(2901), - [anon_sym_PLUS_PLUS] = ACTIONS(2901), - [anon_sym_sizeof] = ACTIONS(2903), - [sym_number_literal] = ACTIONS(2326), - [anon_sym_L_SQUOTE] = ACTIONS(2328), - [anon_sym_u_SQUOTE] = ACTIONS(2328), - [anon_sym_U_SQUOTE] = ACTIONS(2328), - [anon_sym_u8_SQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2328), - [anon_sym_L_DQUOTE] = ACTIONS(2330), - [anon_sym_u_DQUOTE] = ACTIONS(2330), - [anon_sym_U_DQUOTE] = ACTIONS(2330), - [anon_sym_u8_DQUOTE] = ACTIONS(2330), - [anon_sym_DQUOTE] = ACTIONS(2330), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2905), - [anon_sym_co_await] = ACTIONS(2907), - [anon_sym_new] = ACTIONS(2909), - [anon_sym_requires] = ACTIONS(2340), - [sym_this] = ACTIONS(2332), - [sym_nullptr] = ACTIONS(2332), - [sym_raw_string_literal] = ACTIONS(2342), + [1107] = { + [sym_identifier] = ACTIONS(2462), + [anon_sym_LPAREN2] = ACTIONS(2464), + [anon_sym_BANG] = ACTIONS(2464), + [anon_sym_TILDE] = ACTIONS(2464), + [anon_sym_DASH] = ACTIONS(2462), + [anon_sym_PLUS] = ACTIONS(2462), + [anon_sym_STAR] = ACTIONS(2464), + [anon_sym_AMP] = ACTIONS(2464), + [anon_sym_SEMI] = ACTIONS(2464), + [anon_sym_typedef] = ACTIONS(2462), + [anon_sym_extern] = ACTIONS(2462), + [anon_sym___attribute__] = ACTIONS(2462), + [anon_sym_COLON_COLON] = ACTIONS(2464), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2464), + [anon_sym___declspec] = ACTIONS(2462), + [anon_sym_LBRACE] = ACTIONS(2464), + [anon_sym_LBRACK] = ACTIONS(2462), + [anon_sym_static] = ACTIONS(2462), + [anon_sym_register] = ACTIONS(2462), + [anon_sym_inline] = ACTIONS(2462), + [anon_sym_thread_local] = ACTIONS(2462), + [anon_sym_const] = ACTIONS(2462), + [anon_sym_volatile] = ACTIONS(2462), + [anon_sym_restrict] = ACTIONS(2462), + [anon_sym__Atomic] = ACTIONS(2462), + [anon_sym_mutable] = ACTIONS(2462), + [anon_sym_constexpr] = ACTIONS(2462), + [anon_sym_constinit] = ACTIONS(2462), + [anon_sym_consteval] = ACTIONS(2462), + [anon_sym_signed] = ACTIONS(2462), + [anon_sym_unsigned] = ACTIONS(2462), + [anon_sym_long] = ACTIONS(2462), + [anon_sym_short] = ACTIONS(2462), + [sym_primitive_type] = ACTIONS(2462), + [anon_sym_enum] = ACTIONS(2462), + [anon_sym_class] = ACTIONS(2462), + [anon_sym_struct] = ACTIONS(2462), + [anon_sym_union] = ACTIONS(2462), + [anon_sym_if] = ACTIONS(2462), + [anon_sym_else] = ACTIONS(2462), + [anon_sym_switch] = ACTIONS(2462), + [anon_sym_while] = ACTIONS(2462), + [anon_sym_do] = ACTIONS(2462), + [anon_sym_for] = ACTIONS(2462), + [anon_sym_return] = ACTIONS(2462), + [anon_sym_break] = ACTIONS(2462), + [anon_sym_continue] = ACTIONS(2462), + [anon_sym_goto] = ACTIONS(2462), + [anon_sym_not] = ACTIONS(2462), + [anon_sym_compl] = ACTIONS(2462), + [anon_sym_DASH_DASH] = ACTIONS(2464), + [anon_sym_PLUS_PLUS] = ACTIONS(2464), + [anon_sym_sizeof] = ACTIONS(2462), + [sym_number_literal] = ACTIONS(2464), + [anon_sym_L_SQUOTE] = ACTIONS(2464), + [anon_sym_u_SQUOTE] = ACTIONS(2464), + [anon_sym_U_SQUOTE] = ACTIONS(2464), + [anon_sym_u8_SQUOTE] = ACTIONS(2464), + [anon_sym_SQUOTE] = ACTIONS(2464), + [anon_sym_L_DQUOTE] = ACTIONS(2464), + [anon_sym_u_DQUOTE] = ACTIONS(2464), + [anon_sym_U_DQUOTE] = ACTIONS(2464), + [anon_sym_u8_DQUOTE] = ACTIONS(2464), + [anon_sym_DQUOTE] = ACTIONS(2464), + [sym_true] = ACTIONS(2462), + [sym_false] = ACTIONS(2462), + [sym_null] = ACTIONS(2462), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2462), + [anon_sym_decltype] = ACTIONS(2462), + [anon_sym_virtual] = ACTIONS(2462), + [anon_sym_typename] = ACTIONS(2462), + [anon_sym_template] = ACTIONS(2462), + [anon_sym_try] = ACTIONS(2462), + [anon_sym_delete] = ACTIONS(2462), + [anon_sym_throw] = ACTIONS(2462), + [anon_sym_co_return] = ACTIONS(2462), + [anon_sym_co_yield] = ACTIONS(2462), + [anon_sym_catch] = ACTIONS(2462), + [anon_sym_co_await] = ACTIONS(2462), + [anon_sym_new] = ACTIONS(2462), + [anon_sym_requires] = ACTIONS(2462), + [sym_this] = ACTIONS(2462), + [sym_nullptr] = ACTIONS(2462), + [sym_raw_string_literal] = ACTIONS(2464), }, - [1570] = { - [sym__expression] = STATE(2625), - [sym_conditional_expression] = STATE(2765), - [sym_assignment_expression] = STATE(2765), - [sym_pointer_expression] = STATE(2827), - [sym_unary_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_update_expression] = STATE(2765), - [sym_cast_expression] = STATE(2765), - [sym_sizeof_expression] = STATE(2765), - [sym_subscript_expression] = STATE(2827), - [sym_call_expression] = STATE(2827), - [sym_field_expression] = STATE(2827), - [sym_compound_literal_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2827), - [sym_char_literal] = STATE(2674), - [sym_concatenated_string] = STATE(2674), - [sym_string_literal] = STATE(2093), - [sym__class_name] = STATE(6297), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2765), - [sym_co_await_expression] = STATE(2765), - [sym_new_expression] = STATE(2765), - [sym_delete_expression] = STATE(2765), - [sym_requires_clause] = STATE(2765), - [sym_requires_expression] = STATE(2765), - [sym_lambda_expression] = STATE(2765), - [sym_lambda_capture_specifier] = STATE(4512), - [sym_fold_expression] = STATE(2765), - [sym_parameter_pack_expansion] = STATE(2765), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4648), - [sym_qualified_identifier] = STATE(2827), - [sym_qualified_type_identifier] = STATE(6297), - [sym_user_defined_literal] = STATE(2765), - [sym_identifier] = ACTIONS(2363), - [anon_sym_LPAREN2] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1417), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_COLON_COLON] = ACTIONS(1423), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(2369), - [anon_sym_DASH_DASH] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [anon_sym_sizeof] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(1439), - [anon_sym_L_SQUOTE] = ACTIONS(1441), - [anon_sym_u_SQUOTE] = ACTIONS(1441), - [anon_sym_U_SQUOTE] = ACTIONS(1441), - [anon_sym_u8_SQUOTE] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1441), - [anon_sym_L_DQUOTE] = ACTIONS(1443), - [anon_sym_u_DQUOTE] = ACTIONS(1443), - [anon_sym_U_DQUOTE] = ACTIONS(1443), - [anon_sym_u8_DQUOTE] = ACTIONS(1443), - [anon_sym_DQUOTE] = ACTIONS(1443), - [sym_true] = ACTIONS(1445), - [sym_false] = ACTIONS(1445), - [sym_null] = ACTIONS(1445), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_co_await] = ACTIONS(1451), - [anon_sym_new] = ACTIONS(1453), - [anon_sym_requires] = ACTIONS(1455), - [sym_this] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(1445), - [sym_raw_string_literal] = ACTIONS(1457), + [1108] = { + [sym_identifier] = ACTIONS(2485), + [anon_sym_LPAREN2] = ACTIONS(2487), + [anon_sym_BANG] = ACTIONS(2487), + [anon_sym_TILDE] = ACTIONS(2487), + [anon_sym_DASH] = ACTIONS(2485), + [anon_sym_PLUS] = ACTIONS(2485), + [anon_sym_STAR] = ACTIONS(2487), + [anon_sym_AMP] = ACTIONS(2487), + [anon_sym_SEMI] = ACTIONS(2487), + [anon_sym_typedef] = ACTIONS(2485), + [anon_sym_extern] = ACTIONS(2485), + [anon_sym___attribute__] = ACTIONS(2485), + [anon_sym_COLON_COLON] = ACTIONS(2487), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2487), + [anon_sym___declspec] = ACTIONS(2485), + [anon_sym_LBRACE] = ACTIONS(2487), + [anon_sym_LBRACK] = ACTIONS(2485), + [anon_sym_static] = ACTIONS(2485), + [anon_sym_register] = ACTIONS(2485), + [anon_sym_inline] = ACTIONS(2485), + [anon_sym_thread_local] = ACTIONS(2485), + [anon_sym_const] = ACTIONS(2485), + [anon_sym_volatile] = ACTIONS(2485), + [anon_sym_restrict] = ACTIONS(2485), + [anon_sym__Atomic] = ACTIONS(2485), + [anon_sym_mutable] = ACTIONS(2485), + [anon_sym_constexpr] = ACTIONS(2485), + [anon_sym_constinit] = ACTIONS(2485), + [anon_sym_consteval] = ACTIONS(2485), + [anon_sym_signed] = ACTIONS(2485), + [anon_sym_unsigned] = ACTIONS(2485), + [anon_sym_long] = ACTIONS(2485), + [anon_sym_short] = ACTIONS(2485), + [sym_primitive_type] = ACTIONS(2485), + [anon_sym_enum] = ACTIONS(2485), + [anon_sym_class] = ACTIONS(2485), + [anon_sym_struct] = ACTIONS(2485), + [anon_sym_union] = ACTIONS(2485), + [anon_sym_if] = ACTIONS(2485), + [anon_sym_else] = ACTIONS(2485), + [anon_sym_switch] = ACTIONS(2485), + [anon_sym_while] = ACTIONS(2485), + [anon_sym_do] = ACTIONS(2485), + [anon_sym_for] = ACTIONS(2485), + [anon_sym_return] = ACTIONS(2485), + [anon_sym_break] = ACTIONS(2485), + [anon_sym_continue] = ACTIONS(2485), + [anon_sym_goto] = ACTIONS(2485), + [anon_sym_not] = ACTIONS(2485), + [anon_sym_compl] = ACTIONS(2485), + [anon_sym_DASH_DASH] = ACTIONS(2487), + [anon_sym_PLUS_PLUS] = ACTIONS(2487), + [anon_sym_sizeof] = ACTIONS(2485), + [sym_number_literal] = ACTIONS(2487), + [anon_sym_L_SQUOTE] = ACTIONS(2487), + [anon_sym_u_SQUOTE] = ACTIONS(2487), + [anon_sym_U_SQUOTE] = ACTIONS(2487), + [anon_sym_u8_SQUOTE] = ACTIONS(2487), + [anon_sym_SQUOTE] = ACTIONS(2487), + [anon_sym_L_DQUOTE] = ACTIONS(2487), + [anon_sym_u_DQUOTE] = ACTIONS(2487), + [anon_sym_U_DQUOTE] = ACTIONS(2487), + [anon_sym_u8_DQUOTE] = ACTIONS(2487), + [anon_sym_DQUOTE] = ACTIONS(2487), + [sym_true] = ACTIONS(2485), + [sym_false] = ACTIONS(2485), + [sym_null] = ACTIONS(2485), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2485), + [anon_sym_decltype] = ACTIONS(2485), + [anon_sym_virtual] = ACTIONS(2485), + [anon_sym_typename] = ACTIONS(2485), + [anon_sym_template] = ACTIONS(2485), + [anon_sym_try] = ACTIONS(2485), + [anon_sym_delete] = ACTIONS(2485), + [anon_sym_throw] = ACTIONS(2485), + [anon_sym_co_return] = ACTIONS(2485), + [anon_sym_co_yield] = ACTIONS(2485), + [anon_sym_catch] = ACTIONS(2485), + [anon_sym_co_await] = ACTIONS(2485), + [anon_sym_new] = ACTIONS(2485), + [anon_sym_requires] = ACTIONS(2485), + [sym_this] = ACTIONS(2485), + [sym_nullptr] = ACTIONS(2485), + [sym_raw_string_literal] = ACTIONS(2487), }, - [1571] = { - [sym__expression] = STATE(3480), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), - }, - [1572] = { - [sym__expression] = STATE(2525), - [sym_conditional_expression] = STATE(2541), - [sym_assignment_expression] = STATE(2541), - [sym_pointer_expression] = STATE(2531), - [sym_unary_expression] = STATE(2541), - [sym_binary_expression] = STATE(2541), - [sym_update_expression] = STATE(2541), - [sym_cast_expression] = STATE(2541), - [sym_sizeof_expression] = STATE(2541), - [sym_subscript_expression] = STATE(2531), - [sym_call_expression] = STATE(2531), - [sym_field_expression] = STATE(2531), - [sym_compound_literal_expression] = STATE(2541), - [sym_parenthesized_expression] = STATE(2531), - [sym_char_literal] = STATE(2481), - [sym_concatenated_string] = STATE(2481), - [sym_string_literal] = STATE(2063), - [sym__class_name] = STATE(6239), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2541), - [sym_co_await_expression] = STATE(2541), - [sym_new_expression] = STATE(2541), - [sym_delete_expression] = STATE(2541), - [sym_requires_clause] = STATE(2541), - [sym_requires_expression] = STATE(2541), - [sym_lambda_expression] = STATE(2541), - [sym_lambda_capture_specifier] = STATE(4508), - [sym_fold_expression] = STATE(2541), - [sym_parameter_pack_expansion] = STATE(2541), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2531), - [sym_qualified_type_identifier] = STATE(6239), - [sym_user_defined_literal] = STATE(2541), - [sym_identifier] = ACTIONS(2306), - [anon_sym_LPAREN2] = ACTIONS(2310), - [anon_sym_BANG] = ACTIONS(2314), - [anon_sym_TILDE] = ACTIONS(2314), - [anon_sym_DASH] = ACTIONS(2312), - [anon_sym_PLUS] = ACTIONS(2312), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(2318), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(2322), - [anon_sym_PLUS_PLUS] = ACTIONS(2322), - [anon_sym_sizeof] = ACTIONS(2324), - [sym_number_literal] = ACTIONS(2326), - [anon_sym_L_SQUOTE] = ACTIONS(2328), - [anon_sym_u_SQUOTE] = ACTIONS(2328), - [anon_sym_U_SQUOTE] = ACTIONS(2328), - [anon_sym_u8_SQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2328), - [anon_sym_L_DQUOTE] = ACTIONS(2330), - [anon_sym_u_DQUOTE] = ACTIONS(2330), - [anon_sym_U_DQUOTE] = ACTIONS(2330), - [anon_sym_u8_DQUOTE] = ACTIONS(2330), - [anon_sym_DQUOTE] = ACTIONS(2330), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2334), - [anon_sym_co_await] = ACTIONS(2336), - [anon_sym_new] = ACTIONS(2338), - [anon_sym_requires] = ACTIONS(2340), - [sym_this] = ACTIONS(2332), - [sym_nullptr] = ACTIONS(2332), - [sym_raw_string_literal] = ACTIONS(2342), - }, - [1573] = { - [sym__expression] = STATE(2525), - [sym_conditional_expression] = STATE(2541), - [sym_assignment_expression] = STATE(2541), - [sym_pointer_expression] = STATE(2531), - [sym_unary_expression] = STATE(2541), - [sym_binary_expression] = STATE(2541), - [sym_update_expression] = STATE(2541), - [sym_cast_expression] = STATE(2541), - [sym_sizeof_expression] = STATE(2541), - [sym_subscript_expression] = STATE(2531), - [sym_call_expression] = STATE(2531), - [sym_field_expression] = STATE(2531), - [sym_compound_literal_expression] = STATE(2541), - [sym_parenthesized_expression] = STATE(2531), - [sym_char_literal] = STATE(2481), - [sym_concatenated_string] = STATE(2481), - [sym_string_literal] = STATE(2063), - [sym__class_name] = STATE(6239), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2541), - [sym_co_await_expression] = STATE(2541), - [sym_new_expression] = STATE(2541), - [sym_delete_expression] = STATE(2541), - [sym_requires_clause] = STATE(2541), - [sym_requires_expression] = STATE(2541), - [sym_lambda_expression] = STATE(2541), - [sym_lambda_capture_specifier] = STATE(4508), - [sym_fold_expression] = STATE(2541), - [sym_parameter_pack_expansion] = STATE(2541), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2531), - [sym_qualified_type_identifier] = STATE(6239), - [sym_user_defined_literal] = STATE(2541), - [sym_identifier] = ACTIONS(3696), - [anon_sym_LPAREN2] = ACTIONS(2310), - [anon_sym_BANG] = ACTIONS(2314), - [anon_sym_TILDE] = ACTIONS(2314), - [anon_sym_DASH] = ACTIONS(2312), - [anon_sym_PLUS] = ACTIONS(2312), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(2318), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(2322), - [anon_sym_PLUS_PLUS] = ACTIONS(2322), - [anon_sym_sizeof] = ACTIONS(2324), - [sym_number_literal] = ACTIONS(2326), - [anon_sym_L_SQUOTE] = ACTIONS(2328), - [anon_sym_u_SQUOTE] = ACTIONS(2328), - [anon_sym_U_SQUOTE] = ACTIONS(2328), - [anon_sym_u8_SQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2328), - [anon_sym_L_DQUOTE] = ACTIONS(2330), - [anon_sym_u_DQUOTE] = ACTIONS(2330), - [anon_sym_U_DQUOTE] = ACTIONS(2330), - [anon_sym_u8_DQUOTE] = ACTIONS(2330), - [anon_sym_DQUOTE] = ACTIONS(2330), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2334), - [anon_sym_co_await] = ACTIONS(2336), - [anon_sym_new] = ACTIONS(2338), - [anon_sym_requires] = ACTIONS(2340), - [sym_this] = ACTIONS(2332), - [sym_nullptr] = ACTIONS(2332), - [sym_raw_string_literal] = ACTIONS(2342), - }, - [1574] = { - [sym__expression] = STATE(3542), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2981), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2981), - [sym_call_expression] = STATE(2981), - [sym_field_expression] = STATE(2981), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2981), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2981), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3039), - [anon_sym_LPAREN2] = ACTIONS(3041), - [anon_sym_BANG] = ACTIONS(3045), - [anon_sym_TILDE] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(3047), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3049), - [anon_sym_PLUS_PLUS] = ACTIONS(3049), - [anon_sym_sizeof] = ACTIONS(3051), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3053), - [anon_sym_co_await] = ACTIONS(3055), - [anon_sym_new] = ACTIONS(3057), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [1109] = { + [sym_identifier] = ACTIONS(2476), + [anon_sym_LPAREN2] = ACTIONS(2478), + [anon_sym_BANG] = ACTIONS(2478), + [anon_sym_TILDE] = ACTIONS(2478), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_STAR] = ACTIONS(2478), + [anon_sym_AMP] = ACTIONS(2478), + [anon_sym_SEMI] = ACTIONS(2478), + [anon_sym_typedef] = ACTIONS(2476), + [anon_sym_extern] = ACTIONS(2476), + [anon_sym___attribute__] = ACTIONS(2476), + [anon_sym_COLON_COLON] = ACTIONS(2478), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2478), + [anon_sym___declspec] = ACTIONS(2476), + [anon_sym_LBRACE] = ACTIONS(2478), + [anon_sym_LBRACK] = ACTIONS(2476), + [anon_sym_static] = ACTIONS(2476), + [anon_sym_register] = ACTIONS(2476), + [anon_sym_inline] = ACTIONS(2476), + [anon_sym_thread_local] = ACTIONS(2476), + [anon_sym_const] = ACTIONS(2476), + [anon_sym_volatile] = ACTIONS(2476), + [anon_sym_restrict] = ACTIONS(2476), + [anon_sym__Atomic] = ACTIONS(2476), + [anon_sym_mutable] = ACTIONS(2476), + [anon_sym_constexpr] = ACTIONS(2476), + [anon_sym_constinit] = ACTIONS(2476), + [anon_sym_consteval] = ACTIONS(2476), + [anon_sym_signed] = ACTIONS(2476), + [anon_sym_unsigned] = ACTIONS(2476), + [anon_sym_long] = ACTIONS(2476), + [anon_sym_short] = ACTIONS(2476), + [sym_primitive_type] = ACTIONS(2476), + [anon_sym_enum] = ACTIONS(2476), + [anon_sym_class] = ACTIONS(2476), + [anon_sym_struct] = ACTIONS(2476), + [anon_sym_union] = ACTIONS(2476), + [anon_sym_if] = ACTIONS(2476), + [anon_sym_else] = ACTIONS(2476), + [anon_sym_switch] = ACTIONS(2476), + [anon_sym_while] = ACTIONS(2476), + [anon_sym_do] = ACTIONS(2476), + [anon_sym_for] = ACTIONS(2476), + [anon_sym_return] = ACTIONS(2476), + [anon_sym_break] = ACTIONS(2476), + [anon_sym_continue] = ACTIONS(2476), + [anon_sym_goto] = ACTIONS(2476), + [anon_sym_not] = ACTIONS(2476), + [anon_sym_compl] = ACTIONS(2476), + [anon_sym_DASH_DASH] = ACTIONS(2478), + [anon_sym_PLUS_PLUS] = ACTIONS(2478), + [anon_sym_sizeof] = ACTIONS(2476), + [sym_number_literal] = ACTIONS(2478), + [anon_sym_L_SQUOTE] = ACTIONS(2478), + [anon_sym_u_SQUOTE] = ACTIONS(2478), + [anon_sym_U_SQUOTE] = ACTIONS(2478), + [anon_sym_u8_SQUOTE] = ACTIONS(2478), + [anon_sym_SQUOTE] = ACTIONS(2478), + [anon_sym_L_DQUOTE] = ACTIONS(2478), + [anon_sym_u_DQUOTE] = ACTIONS(2478), + [anon_sym_U_DQUOTE] = ACTIONS(2478), + [anon_sym_u8_DQUOTE] = ACTIONS(2478), + [anon_sym_DQUOTE] = ACTIONS(2478), + [sym_true] = ACTIONS(2476), + [sym_false] = ACTIONS(2476), + [sym_null] = ACTIONS(2476), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2476), + [anon_sym_decltype] = ACTIONS(2476), + [anon_sym_virtual] = ACTIONS(2476), + [anon_sym_typename] = ACTIONS(2476), + [anon_sym_template] = ACTIONS(2476), + [anon_sym_try] = ACTIONS(2476), + [anon_sym_delete] = ACTIONS(2476), + [anon_sym_throw] = ACTIONS(2476), + [anon_sym_co_return] = ACTIONS(2476), + [anon_sym_co_yield] = ACTIONS(2476), + [anon_sym_catch] = ACTIONS(2476), + [anon_sym_co_await] = ACTIONS(2476), + [anon_sym_new] = ACTIONS(2476), + [anon_sym_requires] = ACTIONS(2476), + [sym_this] = ACTIONS(2476), + [sym_nullptr] = ACTIONS(2476), + [sym_raw_string_literal] = ACTIONS(2478), }, - [1575] = { - [sym__expression] = STATE(3575), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2981), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2981), - [sym_call_expression] = STATE(2981), - [sym_field_expression] = STATE(2981), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2981), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2981), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3039), - [anon_sym_LPAREN2] = ACTIONS(3041), - [anon_sym_BANG] = ACTIONS(3045), - [anon_sym_TILDE] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(3047), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3049), - [anon_sym_PLUS_PLUS] = ACTIONS(3049), - [anon_sym_sizeof] = ACTIONS(3051), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [1110] = { + [sym_identifier] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2597), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3053), - [anon_sym_co_await] = ACTIONS(3055), - [anon_sym_new] = ACTIONS(3057), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1576] = { - [sym__expression] = STATE(3632), - [sym_conditional_expression] = STATE(3881), - [sym_assignment_expression] = STATE(3881), - [sym_pointer_expression] = STATE(2977), - [sym_unary_expression] = STATE(3881), - [sym_binary_expression] = STATE(3881), - [sym_update_expression] = STATE(3881), - [sym_cast_expression] = STATE(3881), - [sym_sizeof_expression] = STATE(3881), - [sym_subscript_expression] = STATE(2977), - [sym_call_expression] = STATE(2977), - [sym_field_expression] = STATE(2977), - [sym_compound_literal_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(2977), - [sym_char_literal] = STATE(3701), - [sym_concatenated_string] = STATE(3701), - [sym_string_literal] = STATE(3219), - [sym__class_name] = STATE(6063), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3881), - [sym_co_await_expression] = STATE(3881), - [sym_new_expression] = STATE(3881), - [sym_delete_expression] = STATE(3881), - [sym_requires_clause] = STATE(3881), - [sym_requires_expression] = STATE(3881), - [sym_lambda_expression] = STATE(3881), - [sym_lambda_capture_specifier] = STATE(4519), - [sym_fold_expression] = STATE(3881), - [sym_parameter_pack_expansion] = STATE(3881), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4642), - [sym_qualified_identifier] = STATE(2977), - [sym_qualified_type_identifier] = STATE(6063), - [sym_user_defined_literal] = STATE(3881), - [sym_identifier] = ACTIONS(3035), - [anon_sym_LPAREN2] = ACTIONS(2531), - [anon_sym_BANG] = ACTIONS(2533), - [anon_sym_TILDE] = ACTIONS(2533), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_STAR] = ACTIONS(2537), - [anon_sym_AMP] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(2539), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(2845), - [anon_sym_DASH_DASH] = ACTIONS(2553), - [anon_sym_PLUS_PLUS] = ACTIONS(2553), - [anon_sym_sizeof] = ACTIONS(2555), - [sym_number_literal] = ACTIONS(2557), - [anon_sym_L_SQUOTE] = ACTIONS(2559), - [anon_sym_u_SQUOTE] = ACTIONS(2559), - [anon_sym_U_SQUOTE] = ACTIONS(2559), - [anon_sym_u8_SQUOTE] = ACTIONS(2559), - [anon_sym_SQUOTE] = ACTIONS(2559), - [anon_sym_L_DQUOTE] = ACTIONS(2561), - [anon_sym_u_DQUOTE] = ACTIONS(2561), - [anon_sym_U_DQUOTE] = ACTIONS(2561), - [anon_sym_u8_DQUOTE] = ACTIONS(2561), - [anon_sym_DQUOTE] = ACTIONS(2561), - [sym_true] = ACTIONS(2563), - [sym_false] = ACTIONS(2563), - [sym_null] = ACTIONS(2563), + [1111] = { + [sym_identifier] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2597), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2573), - [anon_sym_co_await] = ACTIONS(2575), - [anon_sym_new] = ACTIONS(2577), - [anon_sym_requires] = ACTIONS(2579), - [sym_this] = ACTIONS(2563), - [sym_nullptr] = ACTIONS(2563), - [sym_raw_string_literal] = ACTIONS(2581), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1577] = { - [sym__expression] = STATE(3492), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [1112] = { + [sym_identifier] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2597), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1578] = { - [sym__expression] = STATE(3806), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(3196), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(3196), - [sym_call_expression] = STATE(3196), - [sym_field_expression] = STATE(3196), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(3196), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(3196), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN2] = ACTIONS(3061), - [anon_sym_BANG] = ACTIONS(3065), - [anon_sym_TILDE] = ACTIONS(3065), - [anon_sym_DASH] = ACTIONS(3063), - [anon_sym_PLUS] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(3069), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3071), - [anon_sym_PLUS_PLUS] = ACTIONS(3071), - [anon_sym_sizeof] = ACTIONS(3073), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [1113] = { + [sym_identifier] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2597), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3075), - [anon_sym_co_await] = ACTIONS(3077), - [anon_sym_new] = ACTIONS(3079), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1579] = { - [sym__expression] = STATE(3635), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2981), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2981), - [sym_call_expression] = STATE(2981), - [sym_field_expression] = STATE(2981), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2981), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2981), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3039), - [anon_sym_LPAREN2] = ACTIONS(3041), - [anon_sym_BANG] = ACTIONS(3045), - [anon_sym_TILDE] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(3047), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3049), - [anon_sym_PLUS_PLUS] = ACTIONS(3049), - [anon_sym_sizeof] = ACTIONS(3051), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [1114] = { + [sym_identifier] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2597), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3053), - [anon_sym_co_await] = ACTIONS(3055), - [anon_sym_new] = ACTIONS(3057), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1580] = { - [sym__expression] = STATE(3629), - [sym_conditional_expression] = STATE(3881), - [sym_assignment_expression] = STATE(3881), - [sym_pointer_expression] = STATE(2977), - [sym_unary_expression] = STATE(3881), - [sym_binary_expression] = STATE(3881), - [sym_update_expression] = STATE(3881), - [sym_cast_expression] = STATE(3881), - [sym_sizeof_expression] = STATE(3881), - [sym_subscript_expression] = STATE(2977), - [sym_call_expression] = STATE(2977), - [sym_field_expression] = STATE(2977), - [sym_compound_literal_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(2977), - [sym_char_literal] = STATE(3701), - [sym_concatenated_string] = STATE(3701), - [sym_string_literal] = STATE(3219), - [sym__class_name] = STATE(6063), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3881), - [sym_co_await_expression] = STATE(3881), - [sym_new_expression] = STATE(3881), - [sym_delete_expression] = STATE(3881), - [sym_requires_clause] = STATE(3881), - [sym_requires_expression] = STATE(3881), - [sym_lambda_expression] = STATE(3881), - [sym_lambda_capture_specifier] = STATE(4519), - [sym_fold_expression] = STATE(3881), - [sym_parameter_pack_expansion] = STATE(3881), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4642), - [sym_qualified_identifier] = STATE(2977), - [sym_qualified_type_identifier] = STATE(6063), - [sym_user_defined_literal] = STATE(3881), - [sym_identifier] = ACTIONS(3035), - [anon_sym_LPAREN2] = ACTIONS(2531), - [anon_sym_BANG] = ACTIONS(2533), - [anon_sym_TILDE] = ACTIONS(2533), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_STAR] = ACTIONS(2537), - [anon_sym_AMP] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(2539), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(2845), - [anon_sym_DASH_DASH] = ACTIONS(2553), - [anon_sym_PLUS_PLUS] = ACTIONS(2553), - [anon_sym_sizeof] = ACTIONS(2555), - [sym_number_literal] = ACTIONS(2557), - [anon_sym_L_SQUOTE] = ACTIONS(2559), - [anon_sym_u_SQUOTE] = ACTIONS(2559), - [anon_sym_U_SQUOTE] = ACTIONS(2559), - [anon_sym_u8_SQUOTE] = ACTIONS(2559), - [anon_sym_SQUOTE] = ACTIONS(2559), - [anon_sym_L_DQUOTE] = ACTIONS(2561), - [anon_sym_u_DQUOTE] = ACTIONS(2561), - [anon_sym_U_DQUOTE] = ACTIONS(2561), - [anon_sym_u8_DQUOTE] = ACTIONS(2561), - [anon_sym_DQUOTE] = ACTIONS(2561), - [sym_true] = ACTIONS(2563), - [sym_false] = ACTIONS(2563), - [sym_null] = ACTIONS(2563), + [1115] = { + [sym_identifier] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2597), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2573), - [anon_sym_co_await] = ACTIONS(2575), - [anon_sym_new] = ACTIONS(2577), - [anon_sym_requires] = ACTIONS(2579), - [sym_this] = ACTIONS(2563), - [sym_nullptr] = ACTIONS(2563), - [sym_raw_string_literal] = ACTIONS(2581), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1581] = { - [sym__expression] = STATE(3459), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [1116] = { + [sym_identifier] = ACTIONS(2655), + [anon_sym_LPAREN2] = ACTIONS(2657), + [anon_sym_BANG] = ACTIONS(2657), + [anon_sym_TILDE] = ACTIONS(2657), + [anon_sym_DASH] = ACTIONS(2655), + [anon_sym_PLUS] = ACTIONS(2655), + [anon_sym_STAR] = ACTIONS(2657), + [anon_sym_AMP] = ACTIONS(2657), + [anon_sym_SEMI] = ACTIONS(2657), + [anon_sym_typedef] = ACTIONS(2655), + [anon_sym_extern] = ACTIONS(2655), + [anon_sym___attribute__] = ACTIONS(2655), + [anon_sym_COLON_COLON] = ACTIONS(2657), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2657), + [anon_sym___declspec] = ACTIONS(2655), + [anon_sym_LBRACE] = ACTIONS(2657), + [anon_sym_LBRACK] = ACTIONS(2655), + [anon_sym_static] = ACTIONS(2655), + [anon_sym_register] = ACTIONS(2655), + [anon_sym_inline] = ACTIONS(2655), + [anon_sym_thread_local] = ACTIONS(2655), + [anon_sym_const] = ACTIONS(2655), + [anon_sym_volatile] = ACTIONS(2655), + [anon_sym_restrict] = ACTIONS(2655), + [anon_sym__Atomic] = ACTIONS(2655), + [anon_sym_mutable] = ACTIONS(2655), + [anon_sym_constexpr] = ACTIONS(2655), + [anon_sym_constinit] = ACTIONS(2655), + [anon_sym_consteval] = ACTIONS(2655), + [anon_sym_signed] = ACTIONS(2655), + [anon_sym_unsigned] = ACTIONS(2655), + [anon_sym_long] = ACTIONS(2655), + [anon_sym_short] = ACTIONS(2655), + [sym_primitive_type] = ACTIONS(2655), + [anon_sym_enum] = ACTIONS(2655), + [anon_sym_class] = ACTIONS(2655), + [anon_sym_struct] = ACTIONS(2655), + [anon_sym_union] = ACTIONS(2655), + [anon_sym_if] = ACTIONS(2655), + [anon_sym_else] = ACTIONS(2655), + [anon_sym_switch] = ACTIONS(2655), + [anon_sym_while] = ACTIONS(2655), + [anon_sym_do] = ACTIONS(2655), + [anon_sym_for] = ACTIONS(2655), + [anon_sym_return] = ACTIONS(2655), + [anon_sym_break] = ACTIONS(2655), + [anon_sym_continue] = ACTIONS(2655), + [anon_sym_goto] = ACTIONS(2655), + [anon_sym_not] = ACTIONS(2655), + [anon_sym_compl] = ACTIONS(2655), + [anon_sym_DASH_DASH] = ACTIONS(2657), + [anon_sym_PLUS_PLUS] = ACTIONS(2657), + [anon_sym_sizeof] = ACTIONS(2655), + [sym_number_literal] = ACTIONS(2657), + [anon_sym_L_SQUOTE] = ACTIONS(2657), + [anon_sym_u_SQUOTE] = ACTIONS(2657), + [anon_sym_U_SQUOTE] = ACTIONS(2657), + [anon_sym_u8_SQUOTE] = ACTIONS(2657), + [anon_sym_SQUOTE] = ACTIONS(2657), + [anon_sym_L_DQUOTE] = ACTIONS(2657), + [anon_sym_u_DQUOTE] = ACTIONS(2657), + [anon_sym_U_DQUOTE] = ACTIONS(2657), + [anon_sym_u8_DQUOTE] = ACTIONS(2657), + [anon_sym_DQUOTE] = ACTIONS(2657), + [sym_true] = ACTIONS(2655), + [sym_false] = ACTIONS(2655), + [sym_null] = ACTIONS(2655), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), - }, - [1582] = { - [sym__expression] = STATE(3051), - [sym_conditional_expression] = STATE(2541), - [sym_assignment_expression] = STATE(2541), - [sym_pointer_expression] = STATE(2531), - [sym_unary_expression] = STATE(2541), - [sym_binary_expression] = STATE(2541), - [sym_update_expression] = STATE(2541), - [sym_cast_expression] = STATE(2541), - [sym_sizeof_expression] = STATE(2541), - [sym_subscript_expression] = STATE(2531), - [sym_call_expression] = STATE(2531), - [sym_field_expression] = STATE(2531), - [sym_compound_literal_expression] = STATE(2541), - [sym_parenthesized_expression] = STATE(2531), - [sym_char_literal] = STATE(2481), - [sym_concatenated_string] = STATE(2481), - [sym_string_literal] = STATE(2063), - [sym__class_name] = STATE(6239), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2541), - [sym_co_await_expression] = STATE(2541), - [sym_new_expression] = STATE(2541), - [sym_delete_expression] = STATE(2541), - [sym_requires_clause] = STATE(2541), - [sym_requires_expression] = STATE(2541), - [sym_lambda_expression] = STATE(2541), - [sym_lambda_capture_specifier] = STATE(4508), - [sym_fold_expression] = STATE(2541), - [sym_parameter_pack_expansion] = STATE(2541), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2531), - [sym_qualified_type_identifier] = STATE(6239), - [sym_user_defined_literal] = STATE(2541), - [sym_identifier] = ACTIONS(2306), - [anon_sym_LPAREN2] = ACTIONS(2891), - [anon_sym_BANG] = ACTIONS(2895), - [anon_sym_TILDE] = ACTIONS(2895), - [anon_sym_DASH] = ACTIONS(2893), - [anon_sym_PLUS] = ACTIONS(2893), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(2899), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(2901), - [anon_sym_PLUS_PLUS] = ACTIONS(2901), - [anon_sym_sizeof] = ACTIONS(2903), - [sym_number_literal] = ACTIONS(2326), - [anon_sym_L_SQUOTE] = ACTIONS(2328), - [anon_sym_u_SQUOTE] = ACTIONS(2328), - [anon_sym_U_SQUOTE] = ACTIONS(2328), - [anon_sym_u8_SQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2328), - [anon_sym_L_DQUOTE] = ACTIONS(2330), - [anon_sym_u_DQUOTE] = ACTIONS(2330), - [anon_sym_U_DQUOTE] = ACTIONS(2330), - [anon_sym_u8_DQUOTE] = ACTIONS(2330), - [anon_sym_DQUOTE] = ACTIONS(2330), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2905), - [anon_sym_co_await] = ACTIONS(2907), - [anon_sym_new] = ACTIONS(2909), - [anon_sym_requires] = ACTIONS(2340), - [sym_this] = ACTIONS(2332), - [sym_nullptr] = ACTIONS(2332), - [sym_raw_string_literal] = ACTIONS(2342), + [sym_auto] = ACTIONS(2655), + [anon_sym_decltype] = ACTIONS(2655), + [anon_sym_virtual] = ACTIONS(2655), + [anon_sym_typename] = ACTIONS(2655), + [anon_sym_template] = ACTIONS(2655), + [anon_sym_try] = ACTIONS(2655), + [anon_sym_delete] = ACTIONS(2655), + [anon_sym_throw] = ACTIONS(2655), + [anon_sym_co_return] = ACTIONS(2655), + [anon_sym_co_yield] = ACTIONS(2655), + [anon_sym_co_await] = ACTIONS(2655), + [anon_sym_new] = ACTIONS(2655), + [anon_sym_requires] = ACTIONS(2655), + [sym_this] = ACTIONS(2655), + [sym_nullptr] = ACTIONS(2655), + [sym_raw_string_literal] = ACTIONS(2657), }, - [1583] = { - [sym__expression] = STATE(3484), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [1117] = { + [sym_identifier] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2597), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), - }, - [1584] = { - [sym__expression] = STATE(2524), - [sym_conditional_expression] = STATE(2541), - [sym_assignment_expression] = STATE(2541), - [sym_pointer_expression] = STATE(2531), - [sym_unary_expression] = STATE(2541), - [sym_binary_expression] = STATE(2541), - [sym_update_expression] = STATE(2541), - [sym_cast_expression] = STATE(2541), - [sym_sizeof_expression] = STATE(2541), - [sym_subscript_expression] = STATE(2531), - [sym_call_expression] = STATE(2531), - [sym_field_expression] = STATE(2531), - [sym_compound_literal_expression] = STATE(2541), - [sym_parenthesized_expression] = STATE(2531), - [sym_char_literal] = STATE(2481), - [sym_concatenated_string] = STATE(2481), - [sym_string_literal] = STATE(2063), - [sym__class_name] = STATE(6239), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2541), - [sym_co_await_expression] = STATE(2541), - [sym_new_expression] = STATE(2541), - [sym_delete_expression] = STATE(2541), - [sym_requires_clause] = STATE(2541), - [sym_requires_expression] = STATE(2541), - [sym_lambda_expression] = STATE(2541), - [sym_lambda_capture_specifier] = STATE(4508), - [sym_fold_expression] = STATE(2541), - [sym_parameter_pack_expansion] = STATE(2541), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2531), - [sym_qualified_type_identifier] = STATE(6239), - [sym_user_defined_literal] = STATE(2541), - [sym_identifier] = ACTIONS(2306), - [anon_sym_LPAREN2] = ACTIONS(2310), - [anon_sym_BANG] = ACTIONS(2314), - [anon_sym_TILDE] = ACTIONS(2314), - [anon_sym_DASH] = ACTIONS(2312), - [anon_sym_PLUS] = ACTIONS(2312), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(2318), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(2322), - [anon_sym_PLUS_PLUS] = ACTIONS(2322), - [anon_sym_sizeof] = ACTIONS(2324), - [sym_number_literal] = ACTIONS(2326), - [anon_sym_L_SQUOTE] = ACTIONS(2328), - [anon_sym_u_SQUOTE] = ACTIONS(2328), - [anon_sym_U_SQUOTE] = ACTIONS(2328), - [anon_sym_u8_SQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2328), - [anon_sym_L_DQUOTE] = ACTIONS(2330), - [anon_sym_u_DQUOTE] = ACTIONS(2330), - [anon_sym_U_DQUOTE] = ACTIONS(2330), - [anon_sym_u8_DQUOTE] = ACTIONS(2330), - [anon_sym_DQUOTE] = ACTIONS(2330), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2334), - [anon_sym_co_await] = ACTIONS(2336), - [anon_sym_new] = ACTIONS(2338), - [anon_sym_requires] = ACTIONS(2340), - [sym_this] = ACTIONS(2332), - [sym_nullptr] = ACTIONS(2332), - [sym_raw_string_literal] = ACTIONS(2342), - }, - [1585] = { - [sym__expression] = STATE(3069), - [sym_conditional_expression] = STATE(2541), - [sym_assignment_expression] = STATE(2541), - [sym_pointer_expression] = STATE(2531), - [sym_unary_expression] = STATE(2541), - [sym_binary_expression] = STATE(2541), - [sym_update_expression] = STATE(2541), - [sym_cast_expression] = STATE(2541), - [sym_sizeof_expression] = STATE(2541), - [sym_subscript_expression] = STATE(2531), - [sym_call_expression] = STATE(2531), - [sym_field_expression] = STATE(2531), - [sym_compound_literal_expression] = STATE(2541), - [sym_parenthesized_expression] = STATE(2531), - [sym_char_literal] = STATE(2481), - [sym_concatenated_string] = STATE(2481), - [sym_string_literal] = STATE(2063), - [sym__class_name] = STATE(6239), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2541), - [sym_co_await_expression] = STATE(2541), - [sym_new_expression] = STATE(2541), - [sym_delete_expression] = STATE(2541), - [sym_requires_clause] = STATE(2541), - [sym_requires_expression] = STATE(2541), - [sym_lambda_expression] = STATE(2541), - [sym_lambda_capture_specifier] = STATE(4508), - [sym_fold_expression] = STATE(2541), - [sym_parameter_pack_expansion] = STATE(2541), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2531), - [sym_qualified_type_identifier] = STATE(6239), - [sym_user_defined_literal] = STATE(2541), - [sym_identifier] = ACTIONS(2306), - [anon_sym_LPAREN2] = ACTIONS(2891), - [anon_sym_BANG] = ACTIONS(2895), - [anon_sym_TILDE] = ACTIONS(2895), - [anon_sym_DASH] = ACTIONS(2893), - [anon_sym_PLUS] = ACTIONS(2893), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(2899), - [anon_sym_LBRACK] = ACTIONS(3698), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(2901), - [anon_sym_PLUS_PLUS] = ACTIONS(2901), - [anon_sym_sizeof] = ACTIONS(2903), - [sym_number_literal] = ACTIONS(2326), - [anon_sym_L_SQUOTE] = ACTIONS(2328), - [anon_sym_u_SQUOTE] = ACTIONS(2328), - [anon_sym_U_SQUOTE] = ACTIONS(2328), - [anon_sym_u8_SQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2328), - [anon_sym_L_DQUOTE] = ACTIONS(2330), - [anon_sym_u_DQUOTE] = ACTIONS(2330), - [anon_sym_U_DQUOTE] = ACTIONS(2330), - [anon_sym_u8_DQUOTE] = ACTIONS(2330), - [anon_sym_DQUOTE] = ACTIONS(2330), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2905), - [anon_sym_co_await] = ACTIONS(2907), - [anon_sym_new] = ACTIONS(2909), - [anon_sym_requires] = ACTIONS(2340), - [sym_this] = ACTIONS(2332), - [sym_nullptr] = ACTIONS(2332), - [sym_raw_string_literal] = ACTIONS(2342), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1586] = { - [sym__expression] = STATE(3621), - [sym_conditional_expression] = STATE(3881), - [sym_assignment_expression] = STATE(3881), - [sym_pointer_expression] = STATE(2977), - [sym_unary_expression] = STATE(3881), - [sym_binary_expression] = STATE(3881), - [sym_update_expression] = STATE(3881), - [sym_cast_expression] = STATE(3881), - [sym_sizeof_expression] = STATE(3881), - [sym_subscript_expression] = STATE(2977), - [sym_call_expression] = STATE(2977), - [sym_field_expression] = STATE(2977), - [sym_compound_literal_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(2977), - [sym_char_literal] = STATE(3701), - [sym_concatenated_string] = STATE(3701), - [sym_string_literal] = STATE(3219), - [sym__class_name] = STATE(6063), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3881), - [sym_co_await_expression] = STATE(3881), - [sym_new_expression] = STATE(3881), - [sym_delete_expression] = STATE(3881), - [sym_requires_clause] = STATE(3881), - [sym_requires_expression] = STATE(3881), - [sym_lambda_expression] = STATE(3881), - [sym_lambda_capture_specifier] = STATE(4519), - [sym_fold_expression] = STATE(3881), - [sym_parameter_pack_expansion] = STATE(3881), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4642), - [sym_qualified_identifier] = STATE(2977), - [sym_qualified_type_identifier] = STATE(6063), - [sym_user_defined_literal] = STATE(3881), - [sym_identifier] = ACTIONS(3035), - [anon_sym_LPAREN2] = ACTIONS(2531), - [anon_sym_BANG] = ACTIONS(2533), - [anon_sym_TILDE] = ACTIONS(2533), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_STAR] = ACTIONS(2537), - [anon_sym_AMP] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(2539), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(2845), - [anon_sym_DASH_DASH] = ACTIONS(2553), - [anon_sym_PLUS_PLUS] = ACTIONS(2553), - [anon_sym_sizeof] = ACTIONS(2555), - [sym_number_literal] = ACTIONS(2557), - [anon_sym_L_SQUOTE] = ACTIONS(2559), - [anon_sym_u_SQUOTE] = ACTIONS(2559), - [anon_sym_U_SQUOTE] = ACTIONS(2559), - [anon_sym_u8_SQUOTE] = ACTIONS(2559), - [anon_sym_SQUOTE] = ACTIONS(2559), - [anon_sym_L_DQUOTE] = ACTIONS(2561), - [anon_sym_u_DQUOTE] = ACTIONS(2561), - [anon_sym_U_DQUOTE] = ACTIONS(2561), - [anon_sym_u8_DQUOTE] = ACTIONS(2561), - [anon_sym_DQUOTE] = ACTIONS(2561), - [sym_true] = ACTIONS(2563), - [sym_false] = ACTIONS(2563), - [sym_null] = ACTIONS(2563), + [1118] = { + [sym_identifier] = ACTIONS(2655), + [anon_sym_LPAREN2] = ACTIONS(2657), + [anon_sym_BANG] = ACTIONS(2657), + [anon_sym_TILDE] = ACTIONS(2657), + [anon_sym_DASH] = ACTIONS(2655), + [anon_sym_PLUS] = ACTIONS(2655), + [anon_sym_STAR] = ACTIONS(2657), + [anon_sym_AMP] = ACTIONS(2657), + [anon_sym_SEMI] = ACTIONS(2657), + [anon_sym_typedef] = ACTIONS(2655), + [anon_sym_extern] = ACTIONS(2655), + [anon_sym___attribute__] = ACTIONS(2655), + [anon_sym_COLON_COLON] = ACTIONS(2657), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2657), + [anon_sym___declspec] = ACTIONS(2655), + [anon_sym_LBRACE] = ACTIONS(2657), + [anon_sym_LBRACK] = ACTIONS(2655), + [anon_sym_static] = ACTIONS(2655), + [anon_sym_register] = ACTIONS(2655), + [anon_sym_inline] = ACTIONS(2655), + [anon_sym_thread_local] = ACTIONS(2655), + [anon_sym_const] = ACTIONS(2655), + [anon_sym_volatile] = ACTIONS(2655), + [anon_sym_restrict] = ACTIONS(2655), + [anon_sym__Atomic] = ACTIONS(2655), + [anon_sym_mutable] = ACTIONS(2655), + [anon_sym_constexpr] = ACTIONS(2655), + [anon_sym_constinit] = ACTIONS(2655), + [anon_sym_consteval] = ACTIONS(2655), + [anon_sym_signed] = ACTIONS(2655), + [anon_sym_unsigned] = ACTIONS(2655), + [anon_sym_long] = ACTIONS(2655), + [anon_sym_short] = ACTIONS(2655), + [sym_primitive_type] = ACTIONS(2655), + [anon_sym_enum] = ACTIONS(2655), + [anon_sym_class] = ACTIONS(2655), + [anon_sym_struct] = ACTIONS(2655), + [anon_sym_union] = ACTIONS(2655), + [anon_sym_if] = ACTIONS(2655), + [anon_sym_else] = ACTIONS(2655), + [anon_sym_switch] = ACTIONS(2655), + [anon_sym_while] = ACTIONS(2655), + [anon_sym_do] = ACTIONS(2655), + [anon_sym_for] = ACTIONS(2655), + [anon_sym_return] = ACTIONS(2655), + [anon_sym_break] = ACTIONS(2655), + [anon_sym_continue] = ACTIONS(2655), + [anon_sym_goto] = ACTIONS(2655), + [anon_sym_not] = ACTIONS(2655), + [anon_sym_compl] = ACTIONS(2655), + [anon_sym_DASH_DASH] = ACTIONS(2657), + [anon_sym_PLUS_PLUS] = ACTIONS(2657), + [anon_sym_sizeof] = ACTIONS(2655), + [sym_number_literal] = ACTIONS(2657), + [anon_sym_L_SQUOTE] = ACTIONS(2657), + [anon_sym_u_SQUOTE] = ACTIONS(2657), + [anon_sym_U_SQUOTE] = ACTIONS(2657), + [anon_sym_u8_SQUOTE] = ACTIONS(2657), + [anon_sym_SQUOTE] = ACTIONS(2657), + [anon_sym_L_DQUOTE] = ACTIONS(2657), + [anon_sym_u_DQUOTE] = ACTIONS(2657), + [anon_sym_U_DQUOTE] = ACTIONS(2657), + [anon_sym_u8_DQUOTE] = ACTIONS(2657), + [anon_sym_DQUOTE] = ACTIONS(2657), + [sym_true] = ACTIONS(2655), + [sym_false] = ACTIONS(2655), + [sym_null] = ACTIONS(2655), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2573), - [anon_sym_co_await] = ACTIONS(2575), - [anon_sym_new] = ACTIONS(2577), - [anon_sym_requires] = ACTIONS(2579), - [sym_this] = ACTIONS(2563), - [sym_nullptr] = ACTIONS(2563), - [sym_raw_string_literal] = ACTIONS(2581), + [sym_auto] = ACTIONS(2655), + [anon_sym_decltype] = ACTIONS(2655), + [anon_sym_virtual] = ACTIONS(2655), + [anon_sym_typename] = ACTIONS(2655), + [anon_sym_template] = ACTIONS(2655), + [anon_sym_try] = ACTIONS(2655), + [anon_sym_delete] = ACTIONS(2655), + [anon_sym_throw] = ACTIONS(2655), + [anon_sym_co_return] = ACTIONS(2655), + [anon_sym_co_yield] = ACTIONS(2655), + [anon_sym_co_await] = ACTIONS(2655), + [anon_sym_new] = ACTIONS(2655), + [anon_sym_requires] = ACTIONS(2655), + [sym_this] = ACTIONS(2655), + [sym_nullptr] = ACTIONS(2655), + [sym_raw_string_literal] = ACTIONS(2657), }, - [1587] = { - [sym__expression] = STATE(3481), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), - }, - [1588] = { - [sym__expression] = STATE(3659), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [1119] = { + [sym_identifier] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2597), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), - }, - [1589] = { - [sym__expression] = STATE(3042), - [sym_conditional_expression] = STATE(2541), - [sym_assignment_expression] = STATE(2541), - [sym_pointer_expression] = STATE(2531), - [sym_unary_expression] = STATE(2541), - [sym_binary_expression] = STATE(2541), - [sym_update_expression] = STATE(2541), - [sym_cast_expression] = STATE(2541), - [sym_sizeof_expression] = STATE(2541), - [sym_subscript_expression] = STATE(2531), - [sym_call_expression] = STATE(2531), - [sym_field_expression] = STATE(2531), - [sym_compound_literal_expression] = STATE(2541), - [sym_parenthesized_expression] = STATE(2531), - [sym_char_literal] = STATE(2481), - [sym_concatenated_string] = STATE(2481), - [sym_string_literal] = STATE(2063), - [sym__class_name] = STATE(6239), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2541), - [sym_co_await_expression] = STATE(2541), - [sym_new_expression] = STATE(2541), - [sym_delete_expression] = STATE(2541), - [sym_requires_clause] = STATE(2541), - [sym_requires_expression] = STATE(2541), - [sym_lambda_expression] = STATE(2541), - [sym_lambda_capture_specifier] = STATE(4508), - [sym_fold_expression] = STATE(2541), - [sym_parameter_pack_expansion] = STATE(2541), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2531), - [sym_qualified_type_identifier] = STATE(6239), - [sym_user_defined_literal] = STATE(2541), - [sym_identifier] = ACTIONS(2306), - [anon_sym_LPAREN2] = ACTIONS(2891), - [anon_sym_BANG] = ACTIONS(2895), - [anon_sym_TILDE] = ACTIONS(2895), - [anon_sym_DASH] = ACTIONS(2893), - [anon_sym_PLUS] = ACTIONS(2893), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(2899), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(2901), - [anon_sym_PLUS_PLUS] = ACTIONS(2901), - [anon_sym_sizeof] = ACTIONS(2903), - [sym_number_literal] = ACTIONS(2326), - [anon_sym_L_SQUOTE] = ACTIONS(2328), - [anon_sym_u_SQUOTE] = ACTIONS(2328), - [anon_sym_U_SQUOTE] = ACTIONS(2328), - [anon_sym_u8_SQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2328), - [anon_sym_L_DQUOTE] = ACTIONS(2330), - [anon_sym_u_DQUOTE] = ACTIONS(2330), - [anon_sym_U_DQUOTE] = ACTIONS(2330), - [anon_sym_u8_DQUOTE] = ACTIONS(2330), - [anon_sym_DQUOTE] = ACTIONS(2330), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2905), - [anon_sym_co_await] = ACTIONS(2907), - [anon_sym_new] = ACTIONS(2909), - [anon_sym_requires] = ACTIONS(2340), - [sym_this] = ACTIONS(2332), - [sym_nullptr] = ACTIONS(2332), - [sym_raw_string_literal] = ACTIONS(2342), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1590] = { - [sym__expression] = STATE(3469), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [1120] = { + [sym_identifier] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2597), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), - }, - [1591] = { - [sym__expression] = STATE(3032), - [sym_conditional_expression] = STATE(2541), - [sym_assignment_expression] = STATE(2541), - [sym_pointer_expression] = STATE(2531), - [sym_unary_expression] = STATE(2541), - [sym_binary_expression] = STATE(2541), - [sym_update_expression] = STATE(2541), - [sym_cast_expression] = STATE(2541), - [sym_sizeof_expression] = STATE(2541), - [sym_subscript_expression] = STATE(2531), - [sym_call_expression] = STATE(2531), - [sym_field_expression] = STATE(2531), - [sym_compound_literal_expression] = STATE(2541), - [sym_parenthesized_expression] = STATE(2531), - [sym_char_literal] = STATE(2481), - [sym_concatenated_string] = STATE(2481), - [sym_string_literal] = STATE(2063), - [sym__class_name] = STATE(6239), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2541), - [sym_co_await_expression] = STATE(2541), - [sym_new_expression] = STATE(2541), - [sym_delete_expression] = STATE(2541), - [sym_requires_clause] = STATE(2541), - [sym_requires_expression] = STATE(2541), - [sym_lambda_expression] = STATE(2541), - [sym_lambda_capture_specifier] = STATE(4508), - [sym_fold_expression] = STATE(2541), - [sym_parameter_pack_expansion] = STATE(2541), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2531), - [sym_qualified_type_identifier] = STATE(6239), - [sym_user_defined_literal] = STATE(2541), - [sym_identifier] = ACTIONS(2306), - [anon_sym_LPAREN2] = ACTIONS(2891), - [anon_sym_BANG] = ACTIONS(2895), - [anon_sym_TILDE] = ACTIONS(2895), - [anon_sym_DASH] = ACTIONS(2893), - [anon_sym_PLUS] = ACTIONS(2893), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(2899), - [anon_sym_LBRACK] = ACTIONS(3700), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(2901), - [anon_sym_PLUS_PLUS] = ACTIONS(2901), - [anon_sym_sizeof] = ACTIONS(2903), - [sym_number_literal] = ACTIONS(2326), - [anon_sym_L_SQUOTE] = ACTIONS(2328), - [anon_sym_u_SQUOTE] = ACTIONS(2328), - [anon_sym_U_SQUOTE] = ACTIONS(2328), - [anon_sym_u8_SQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2328), - [anon_sym_L_DQUOTE] = ACTIONS(2330), - [anon_sym_u_DQUOTE] = ACTIONS(2330), - [anon_sym_U_DQUOTE] = ACTIONS(2330), - [anon_sym_u8_DQUOTE] = ACTIONS(2330), - [anon_sym_DQUOTE] = ACTIONS(2330), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2905), - [anon_sym_co_await] = ACTIONS(2907), - [anon_sym_new] = ACTIONS(2909), - [anon_sym_requires] = ACTIONS(2340), - [sym_this] = ACTIONS(2332), - [sym_nullptr] = ACTIONS(2332), - [sym_raw_string_literal] = ACTIONS(2342), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1592] = { - [sym__expression] = STATE(3618), - [sym_conditional_expression] = STATE(3881), - [sym_assignment_expression] = STATE(3881), - [sym_pointer_expression] = STATE(2977), - [sym_unary_expression] = STATE(3881), - [sym_binary_expression] = STATE(3881), - [sym_update_expression] = STATE(3881), - [sym_cast_expression] = STATE(3881), - [sym_sizeof_expression] = STATE(3881), - [sym_subscript_expression] = STATE(2977), - [sym_call_expression] = STATE(2977), - [sym_field_expression] = STATE(2977), - [sym_compound_literal_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(2977), - [sym_char_literal] = STATE(3701), - [sym_concatenated_string] = STATE(3701), - [sym_string_literal] = STATE(3219), - [sym__class_name] = STATE(6063), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3881), - [sym_co_await_expression] = STATE(3881), - [sym_new_expression] = STATE(3881), - [sym_delete_expression] = STATE(3881), - [sym_requires_clause] = STATE(3881), - [sym_requires_expression] = STATE(3881), - [sym_lambda_expression] = STATE(3881), - [sym_lambda_capture_specifier] = STATE(4519), - [sym_fold_expression] = STATE(3881), - [sym_parameter_pack_expansion] = STATE(3881), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4642), - [sym_qualified_identifier] = STATE(2977), - [sym_qualified_type_identifier] = STATE(6063), - [sym_user_defined_literal] = STATE(3881), - [sym_identifier] = ACTIONS(3035), - [anon_sym_LPAREN2] = ACTIONS(2531), - [anon_sym_BANG] = ACTIONS(2533), - [anon_sym_TILDE] = ACTIONS(2533), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_STAR] = ACTIONS(2537), - [anon_sym_AMP] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(2539), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(2845), - [anon_sym_DASH_DASH] = ACTIONS(2553), - [anon_sym_PLUS_PLUS] = ACTIONS(2553), - [anon_sym_sizeof] = ACTIONS(2555), - [sym_number_literal] = ACTIONS(2557), - [anon_sym_L_SQUOTE] = ACTIONS(2559), - [anon_sym_u_SQUOTE] = ACTIONS(2559), - [anon_sym_U_SQUOTE] = ACTIONS(2559), - [anon_sym_u8_SQUOTE] = ACTIONS(2559), - [anon_sym_SQUOTE] = ACTIONS(2559), - [anon_sym_L_DQUOTE] = ACTIONS(2561), - [anon_sym_u_DQUOTE] = ACTIONS(2561), - [anon_sym_U_DQUOTE] = ACTIONS(2561), - [anon_sym_u8_DQUOTE] = ACTIONS(2561), - [anon_sym_DQUOTE] = ACTIONS(2561), - [sym_true] = ACTIONS(2563), - [sym_false] = ACTIONS(2563), - [sym_null] = ACTIONS(2563), + [1121] = { + [sym_identifier] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2597), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2573), - [anon_sym_co_await] = ACTIONS(2575), - [anon_sym_new] = ACTIONS(2577), - [anon_sym_requires] = ACTIONS(2579), - [sym_this] = ACTIONS(2563), - [sym_nullptr] = ACTIONS(2563), - [sym_raw_string_literal] = ACTIONS(2581), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1593] = { - [sym__expression] = STATE(3467), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [1122] = { + [sym_identifier] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2597), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), - }, - [1594] = { - [sym__expression] = STATE(3019), - [sym_conditional_expression] = STATE(2541), - [sym_assignment_expression] = STATE(2541), - [sym_pointer_expression] = STATE(2531), - [sym_unary_expression] = STATE(2541), - [sym_binary_expression] = STATE(2541), - [sym_update_expression] = STATE(2541), - [sym_cast_expression] = STATE(2541), - [sym_sizeof_expression] = STATE(2541), - [sym_subscript_expression] = STATE(2531), - [sym_call_expression] = STATE(2531), - [sym_field_expression] = STATE(2531), - [sym_compound_literal_expression] = STATE(2541), - [sym_parenthesized_expression] = STATE(2531), - [sym_char_literal] = STATE(2481), - [sym_concatenated_string] = STATE(2481), - [sym_string_literal] = STATE(2063), - [sym__class_name] = STATE(6239), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2541), - [sym_co_await_expression] = STATE(2541), - [sym_new_expression] = STATE(2541), - [sym_delete_expression] = STATE(2541), - [sym_requires_clause] = STATE(2541), - [sym_requires_expression] = STATE(2541), - [sym_lambda_expression] = STATE(2541), - [sym_lambda_capture_specifier] = STATE(4508), - [sym_fold_expression] = STATE(2541), - [sym_parameter_pack_expansion] = STATE(2541), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2531), - [sym_qualified_type_identifier] = STATE(6239), - [sym_user_defined_literal] = STATE(2541), - [sym_identifier] = ACTIONS(2306), - [anon_sym_LPAREN2] = ACTIONS(2891), - [anon_sym_BANG] = ACTIONS(2895), - [anon_sym_TILDE] = ACTIONS(2895), - [anon_sym_DASH] = ACTIONS(2893), - [anon_sym_PLUS] = ACTIONS(2893), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(2899), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(2901), - [anon_sym_PLUS_PLUS] = ACTIONS(2901), - [anon_sym_sizeof] = ACTIONS(2903), - [sym_number_literal] = ACTIONS(2326), - [anon_sym_L_SQUOTE] = ACTIONS(2328), - [anon_sym_u_SQUOTE] = ACTIONS(2328), - [anon_sym_U_SQUOTE] = ACTIONS(2328), - [anon_sym_u8_SQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2328), - [anon_sym_L_DQUOTE] = ACTIONS(2330), - [anon_sym_u_DQUOTE] = ACTIONS(2330), - [anon_sym_U_DQUOTE] = ACTIONS(2330), - [anon_sym_u8_DQUOTE] = ACTIONS(2330), - [anon_sym_DQUOTE] = ACTIONS(2330), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2905), - [anon_sym_co_await] = ACTIONS(2907), - [anon_sym_new] = ACTIONS(2909), - [anon_sym_requires] = ACTIONS(2340), - [sym_this] = ACTIONS(2332), - [sym_nullptr] = ACTIONS(2332), - [sym_raw_string_literal] = ACTIONS(2342), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1595] = { - [sym__expression] = STATE(3462), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [1123] = { + [sym_identifier] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2597), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1596] = { - [sym__expression] = STATE(3491), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [1124] = { + [sym_identifier] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2597), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1597] = { - [sym__expression] = STATE(3476), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [1125] = { + [sym_identifier] = ACTIONS(2499), + [anon_sym_LPAREN2] = ACTIONS(2501), + [anon_sym_BANG] = ACTIONS(2501), + [anon_sym_TILDE] = ACTIONS(2501), + [anon_sym_DASH] = ACTIONS(2499), + [anon_sym_PLUS] = ACTIONS(2499), + [anon_sym_STAR] = ACTIONS(2501), + [anon_sym_AMP] = ACTIONS(2501), + [anon_sym_SEMI] = ACTIONS(2501), + [anon_sym_typedef] = ACTIONS(2499), + [anon_sym_extern] = ACTIONS(2499), + [anon_sym___attribute__] = ACTIONS(2499), + [anon_sym_COLON_COLON] = ACTIONS(2501), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2501), + [anon_sym___declspec] = ACTIONS(2499), + [anon_sym_LBRACE] = ACTIONS(2501), + [anon_sym_LBRACK] = ACTIONS(2499), + [anon_sym_static] = ACTIONS(2499), + [anon_sym_register] = ACTIONS(2499), + [anon_sym_inline] = ACTIONS(2499), + [anon_sym_thread_local] = ACTIONS(2499), + [anon_sym_const] = ACTIONS(2499), + [anon_sym_volatile] = ACTIONS(2499), + [anon_sym_restrict] = ACTIONS(2499), + [anon_sym__Atomic] = ACTIONS(2499), + [anon_sym_mutable] = ACTIONS(2499), + [anon_sym_constexpr] = ACTIONS(2499), + [anon_sym_constinit] = ACTIONS(2499), + [anon_sym_consteval] = ACTIONS(2499), + [anon_sym_signed] = ACTIONS(2499), + [anon_sym_unsigned] = ACTIONS(2499), + [anon_sym_long] = ACTIONS(2499), + [anon_sym_short] = ACTIONS(2499), + [sym_primitive_type] = ACTIONS(2499), + [anon_sym_enum] = ACTIONS(2499), + [anon_sym_class] = ACTIONS(2499), + [anon_sym_struct] = ACTIONS(2499), + [anon_sym_union] = ACTIONS(2499), + [anon_sym_if] = ACTIONS(2499), + [anon_sym_else] = ACTIONS(2499), + [anon_sym_switch] = ACTIONS(2499), + [anon_sym_while] = ACTIONS(2499), + [anon_sym_do] = ACTIONS(2499), + [anon_sym_for] = ACTIONS(2499), + [anon_sym_return] = ACTIONS(2499), + [anon_sym_break] = ACTIONS(2499), + [anon_sym_continue] = ACTIONS(2499), + [anon_sym_goto] = ACTIONS(2499), + [anon_sym_not] = ACTIONS(2499), + [anon_sym_compl] = ACTIONS(2499), + [anon_sym_DASH_DASH] = ACTIONS(2501), + [anon_sym_PLUS_PLUS] = ACTIONS(2501), + [anon_sym_sizeof] = ACTIONS(2499), + [sym_number_literal] = ACTIONS(2501), + [anon_sym_L_SQUOTE] = ACTIONS(2501), + [anon_sym_u_SQUOTE] = ACTIONS(2501), + [anon_sym_U_SQUOTE] = ACTIONS(2501), + [anon_sym_u8_SQUOTE] = ACTIONS(2501), + [anon_sym_SQUOTE] = ACTIONS(2501), + [anon_sym_L_DQUOTE] = ACTIONS(2501), + [anon_sym_u_DQUOTE] = ACTIONS(2501), + [anon_sym_U_DQUOTE] = ACTIONS(2501), + [anon_sym_u8_DQUOTE] = ACTIONS(2501), + [anon_sym_DQUOTE] = ACTIONS(2501), + [sym_true] = ACTIONS(2499), + [sym_false] = ACTIONS(2499), + [sym_null] = ACTIONS(2499), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), - }, - [1598] = { - [sym__expression] = STATE(3017), - [sym_conditional_expression] = STATE(2541), - [sym_assignment_expression] = STATE(2541), - [sym_pointer_expression] = STATE(2531), - [sym_unary_expression] = STATE(2541), - [sym_binary_expression] = STATE(2541), - [sym_update_expression] = STATE(2541), - [sym_cast_expression] = STATE(2541), - [sym_sizeof_expression] = STATE(2541), - [sym_subscript_expression] = STATE(2531), - [sym_call_expression] = STATE(2531), - [sym_field_expression] = STATE(2531), - [sym_compound_literal_expression] = STATE(2541), - [sym_parenthesized_expression] = STATE(2531), - [sym_char_literal] = STATE(2481), - [sym_concatenated_string] = STATE(2481), - [sym_string_literal] = STATE(2063), - [sym__class_name] = STATE(6239), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2541), - [sym_co_await_expression] = STATE(2541), - [sym_new_expression] = STATE(2541), - [sym_delete_expression] = STATE(2541), - [sym_requires_clause] = STATE(2541), - [sym_requires_expression] = STATE(2541), - [sym_lambda_expression] = STATE(2541), - [sym_lambda_capture_specifier] = STATE(4508), - [sym_fold_expression] = STATE(2541), - [sym_parameter_pack_expansion] = STATE(2541), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2531), - [sym_qualified_type_identifier] = STATE(6239), - [sym_user_defined_literal] = STATE(2541), - [sym_identifier] = ACTIONS(2306), - [anon_sym_LPAREN2] = ACTIONS(2891), - [anon_sym_BANG] = ACTIONS(2895), - [anon_sym_TILDE] = ACTIONS(2895), - [anon_sym_DASH] = ACTIONS(2893), - [anon_sym_PLUS] = ACTIONS(2893), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(2899), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(2901), - [anon_sym_PLUS_PLUS] = ACTIONS(2901), - [anon_sym_sizeof] = ACTIONS(2903), - [sym_number_literal] = ACTIONS(2326), - [anon_sym_L_SQUOTE] = ACTIONS(2328), - [anon_sym_u_SQUOTE] = ACTIONS(2328), - [anon_sym_U_SQUOTE] = ACTIONS(2328), - [anon_sym_u8_SQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2328), - [anon_sym_L_DQUOTE] = ACTIONS(2330), - [anon_sym_u_DQUOTE] = ACTIONS(2330), - [anon_sym_U_DQUOTE] = ACTIONS(2330), - [anon_sym_u8_DQUOTE] = ACTIONS(2330), - [anon_sym_DQUOTE] = ACTIONS(2330), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2905), - [anon_sym_co_await] = ACTIONS(2907), - [anon_sym_new] = ACTIONS(2909), - [anon_sym_requires] = ACTIONS(2340), - [sym_this] = ACTIONS(2332), - [sym_nullptr] = ACTIONS(2332), - [sym_raw_string_literal] = ACTIONS(2342), - }, - [1599] = { - [sym__expression] = STATE(3056), - [sym_conditional_expression] = STATE(2541), - [sym_assignment_expression] = STATE(2541), - [sym_pointer_expression] = STATE(2531), - [sym_unary_expression] = STATE(2541), - [sym_binary_expression] = STATE(2541), - [sym_update_expression] = STATE(2541), - [sym_cast_expression] = STATE(2541), - [sym_sizeof_expression] = STATE(2541), - [sym_subscript_expression] = STATE(2531), - [sym_call_expression] = STATE(2531), - [sym_field_expression] = STATE(2531), - [sym_compound_literal_expression] = STATE(2541), - [sym_parenthesized_expression] = STATE(2531), - [sym_char_literal] = STATE(2481), - [sym_concatenated_string] = STATE(2481), - [sym_string_literal] = STATE(2063), - [sym__class_name] = STATE(6239), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2541), - [sym_co_await_expression] = STATE(2541), - [sym_new_expression] = STATE(2541), - [sym_delete_expression] = STATE(2541), - [sym_requires_clause] = STATE(2541), - [sym_requires_expression] = STATE(2541), - [sym_lambda_expression] = STATE(2541), - [sym_lambda_capture_specifier] = STATE(4508), - [sym_fold_expression] = STATE(2541), - [sym_parameter_pack_expansion] = STATE(2541), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2531), - [sym_qualified_type_identifier] = STATE(6239), - [sym_user_defined_literal] = STATE(2541), - [sym_identifier] = ACTIONS(2306), - [anon_sym_LPAREN2] = ACTIONS(2891), - [anon_sym_BANG] = ACTIONS(2895), - [anon_sym_TILDE] = ACTIONS(2895), - [anon_sym_DASH] = ACTIONS(2893), - [anon_sym_PLUS] = ACTIONS(2893), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(2899), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(2901), - [anon_sym_PLUS_PLUS] = ACTIONS(2901), - [anon_sym_sizeof] = ACTIONS(2903), - [sym_number_literal] = ACTIONS(2326), - [anon_sym_L_SQUOTE] = ACTIONS(2328), - [anon_sym_u_SQUOTE] = ACTIONS(2328), - [anon_sym_U_SQUOTE] = ACTIONS(2328), - [anon_sym_u8_SQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2328), - [anon_sym_L_DQUOTE] = ACTIONS(2330), - [anon_sym_u_DQUOTE] = ACTIONS(2330), - [anon_sym_U_DQUOTE] = ACTIONS(2330), - [anon_sym_u8_DQUOTE] = ACTIONS(2330), - [anon_sym_DQUOTE] = ACTIONS(2330), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2905), - [anon_sym_co_await] = ACTIONS(2907), - [anon_sym_new] = ACTIONS(2909), - [anon_sym_requires] = ACTIONS(2340), - [sym_this] = ACTIONS(2332), - [sym_nullptr] = ACTIONS(2332), - [sym_raw_string_literal] = ACTIONS(2342), + [sym_auto] = ACTIONS(2499), + [anon_sym_decltype] = ACTIONS(2499), + [anon_sym_virtual] = ACTIONS(2499), + [anon_sym_typename] = ACTIONS(2499), + [anon_sym_template] = ACTIONS(2499), + [anon_sym_try] = ACTIONS(2499), + [anon_sym_delete] = ACTIONS(2499), + [anon_sym_throw] = ACTIONS(2499), + [anon_sym_co_return] = ACTIONS(2499), + [anon_sym_co_yield] = ACTIONS(2499), + [anon_sym_co_await] = ACTIONS(2499), + [anon_sym_new] = ACTIONS(2499), + [anon_sym_requires] = ACTIONS(2499), + [sym_this] = ACTIONS(2499), + [sym_nullptr] = ACTIONS(2499), + [sym_raw_string_literal] = ACTIONS(2501), }, - [1600] = { - [sym__expression] = STATE(3606), - [sym_conditional_expression] = STATE(3881), - [sym_assignment_expression] = STATE(3881), - [sym_pointer_expression] = STATE(2977), - [sym_unary_expression] = STATE(3881), - [sym_binary_expression] = STATE(3881), - [sym_update_expression] = STATE(3881), - [sym_cast_expression] = STATE(3881), - [sym_sizeof_expression] = STATE(3881), - [sym_subscript_expression] = STATE(2977), - [sym_call_expression] = STATE(2977), - [sym_field_expression] = STATE(2977), - [sym_compound_literal_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(2977), - [sym_char_literal] = STATE(3701), - [sym_concatenated_string] = STATE(3701), - [sym_string_literal] = STATE(3219), - [sym__class_name] = STATE(6063), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3881), - [sym_co_await_expression] = STATE(3881), - [sym_new_expression] = STATE(3881), - [sym_delete_expression] = STATE(3881), - [sym_requires_clause] = STATE(3881), - [sym_requires_expression] = STATE(3881), - [sym_lambda_expression] = STATE(3881), - [sym_lambda_capture_specifier] = STATE(4519), - [sym_fold_expression] = STATE(3881), - [sym_parameter_pack_expansion] = STATE(3881), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4642), - [sym_qualified_identifier] = STATE(2977), - [sym_qualified_type_identifier] = STATE(6063), - [sym_user_defined_literal] = STATE(3881), - [sym_identifier] = ACTIONS(3035), - [anon_sym_LPAREN2] = ACTIONS(2531), - [anon_sym_BANG] = ACTIONS(2533), - [anon_sym_TILDE] = ACTIONS(2533), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_STAR] = ACTIONS(2537), - [anon_sym_AMP] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(2539), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(2845), - [anon_sym_DASH_DASH] = ACTIONS(2553), - [anon_sym_PLUS_PLUS] = ACTIONS(2553), - [anon_sym_sizeof] = ACTIONS(2555), - [sym_number_literal] = ACTIONS(2557), - [anon_sym_L_SQUOTE] = ACTIONS(2559), - [anon_sym_u_SQUOTE] = ACTIONS(2559), - [anon_sym_U_SQUOTE] = ACTIONS(2559), - [anon_sym_u8_SQUOTE] = ACTIONS(2559), - [anon_sym_SQUOTE] = ACTIONS(2559), - [anon_sym_L_DQUOTE] = ACTIONS(2561), - [anon_sym_u_DQUOTE] = ACTIONS(2561), - [anon_sym_U_DQUOTE] = ACTIONS(2561), - [anon_sym_u8_DQUOTE] = ACTIONS(2561), - [anon_sym_DQUOTE] = ACTIONS(2561), - [sym_true] = ACTIONS(2563), - [sym_false] = ACTIONS(2563), - [sym_null] = ACTIONS(2563), + [1126] = { + [sym_identifier] = ACTIONS(2647), + [anon_sym_LPAREN2] = ACTIONS(2649), + [anon_sym_BANG] = ACTIONS(2649), + [anon_sym_TILDE] = ACTIONS(2649), + [anon_sym_DASH] = ACTIONS(2647), + [anon_sym_PLUS] = ACTIONS(2647), + [anon_sym_STAR] = ACTIONS(2649), + [anon_sym_AMP] = ACTIONS(2649), + [anon_sym_SEMI] = ACTIONS(2649), + [anon_sym_typedef] = ACTIONS(2647), + [anon_sym_extern] = ACTIONS(2647), + [anon_sym___attribute__] = ACTIONS(2647), + [anon_sym_COLON_COLON] = ACTIONS(2649), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2649), + [anon_sym___declspec] = ACTIONS(2647), + [anon_sym_LBRACE] = ACTIONS(2649), + [anon_sym_LBRACK] = ACTIONS(2647), + [anon_sym_static] = ACTIONS(2647), + [anon_sym_register] = ACTIONS(2647), + [anon_sym_inline] = ACTIONS(2647), + [anon_sym_thread_local] = ACTIONS(2647), + [anon_sym_const] = ACTIONS(2647), + [anon_sym_volatile] = ACTIONS(2647), + [anon_sym_restrict] = ACTIONS(2647), + [anon_sym__Atomic] = ACTIONS(2647), + [anon_sym_mutable] = ACTIONS(2647), + [anon_sym_constexpr] = ACTIONS(2647), + [anon_sym_constinit] = ACTIONS(2647), + [anon_sym_consteval] = ACTIONS(2647), + [anon_sym_signed] = ACTIONS(2647), + [anon_sym_unsigned] = ACTIONS(2647), + [anon_sym_long] = ACTIONS(2647), + [anon_sym_short] = ACTIONS(2647), + [sym_primitive_type] = ACTIONS(2647), + [anon_sym_enum] = ACTIONS(2647), + [anon_sym_class] = ACTIONS(2647), + [anon_sym_struct] = ACTIONS(2647), + [anon_sym_union] = ACTIONS(2647), + [anon_sym_if] = ACTIONS(2647), + [anon_sym_else] = ACTIONS(2647), + [anon_sym_switch] = ACTIONS(2647), + [anon_sym_while] = ACTIONS(2647), + [anon_sym_do] = ACTIONS(2647), + [anon_sym_for] = ACTIONS(2647), + [anon_sym_return] = ACTIONS(2647), + [anon_sym_break] = ACTIONS(2647), + [anon_sym_continue] = ACTIONS(2647), + [anon_sym_goto] = ACTIONS(2647), + [anon_sym_not] = ACTIONS(2647), + [anon_sym_compl] = ACTIONS(2647), + [anon_sym_DASH_DASH] = ACTIONS(2649), + [anon_sym_PLUS_PLUS] = ACTIONS(2649), + [anon_sym_sizeof] = ACTIONS(2647), + [sym_number_literal] = ACTIONS(2649), + [anon_sym_L_SQUOTE] = ACTIONS(2649), + [anon_sym_u_SQUOTE] = ACTIONS(2649), + [anon_sym_U_SQUOTE] = ACTIONS(2649), + [anon_sym_u8_SQUOTE] = ACTIONS(2649), + [anon_sym_SQUOTE] = ACTIONS(2649), + [anon_sym_L_DQUOTE] = ACTIONS(2649), + [anon_sym_u_DQUOTE] = ACTIONS(2649), + [anon_sym_U_DQUOTE] = ACTIONS(2649), + [anon_sym_u8_DQUOTE] = ACTIONS(2649), + [anon_sym_DQUOTE] = ACTIONS(2649), + [sym_true] = ACTIONS(2647), + [sym_false] = ACTIONS(2647), + [sym_null] = ACTIONS(2647), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2573), - [anon_sym_co_await] = ACTIONS(2575), - [anon_sym_new] = ACTIONS(2577), - [anon_sym_requires] = ACTIONS(2579), - [sym_this] = ACTIONS(2563), - [sym_nullptr] = ACTIONS(2563), - [sym_raw_string_literal] = ACTIONS(2581), - }, - [1601] = { - [sym__expression] = STATE(2527), - [sym_conditional_expression] = STATE(2541), - [sym_assignment_expression] = STATE(2541), - [sym_pointer_expression] = STATE(2531), - [sym_unary_expression] = STATE(2541), - [sym_binary_expression] = STATE(2541), - [sym_update_expression] = STATE(2541), - [sym_cast_expression] = STATE(2541), - [sym_sizeof_expression] = STATE(2541), - [sym_subscript_expression] = STATE(2531), - [sym_call_expression] = STATE(2531), - [sym_field_expression] = STATE(2531), - [sym_compound_literal_expression] = STATE(2541), - [sym_parenthesized_expression] = STATE(2531), - [sym_char_literal] = STATE(2481), - [sym_concatenated_string] = STATE(2481), - [sym_string_literal] = STATE(2063), - [sym__class_name] = STATE(6239), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2541), - [sym_co_await_expression] = STATE(2541), - [sym_new_expression] = STATE(2541), - [sym_delete_expression] = STATE(2541), - [sym_requires_clause] = STATE(2541), - [sym_requires_expression] = STATE(2541), - [sym_lambda_expression] = STATE(2541), - [sym_lambda_capture_specifier] = STATE(4508), - [sym_fold_expression] = STATE(2541), - [sym_parameter_pack_expansion] = STATE(2541), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2531), - [sym_qualified_type_identifier] = STATE(6239), - [sym_user_defined_literal] = STATE(2541), - [sym_identifier] = ACTIONS(2306), - [anon_sym_LPAREN2] = ACTIONS(2310), - [anon_sym_BANG] = ACTIONS(2314), - [anon_sym_TILDE] = ACTIONS(2314), - [anon_sym_DASH] = ACTIONS(2312), - [anon_sym_PLUS] = ACTIONS(2312), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(2318), - [anon_sym_LBRACK] = ACTIONS(3702), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(2322), - [anon_sym_PLUS_PLUS] = ACTIONS(2322), - [anon_sym_sizeof] = ACTIONS(2324), - [sym_number_literal] = ACTIONS(2326), - [anon_sym_L_SQUOTE] = ACTIONS(2328), - [anon_sym_u_SQUOTE] = ACTIONS(2328), - [anon_sym_U_SQUOTE] = ACTIONS(2328), - [anon_sym_u8_SQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2328), - [anon_sym_L_DQUOTE] = ACTIONS(2330), - [anon_sym_u_DQUOTE] = ACTIONS(2330), - [anon_sym_U_DQUOTE] = ACTIONS(2330), - [anon_sym_u8_DQUOTE] = ACTIONS(2330), - [anon_sym_DQUOTE] = ACTIONS(2330), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2334), - [anon_sym_co_await] = ACTIONS(2336), - [anon_sym_new] = ACTIONS(2338), - [anon_sym_requires] = ACTIONS(2340), - [sym_this] = ACTIONS(2332), - [sym_nullptr] = ACTIONS(2332), - [sym_raw_string_literal] = ACTIONS(2342), - }, - [1602] = { - [sym__expression] = STATE(2529), - [sym_conditional_expression] = STATE(2541), - [sym_assignment_expression] = STATE(2541), - [sym_pointer_expression] = STATE(2531), - [sym_unary_expression] = STATE(2541), - [sym_binary_expression] = STATE(2541), - [sym_update_expression] = STATE(2541), - [sym_cast_expression] = STATE(2541), - [sym_sizeof_expression] = STATE(2541), - [sym_subscript_expression] = STATE(2531), - [sym_call_expression] = STATE(2531), - [sym_field_expression] = STATE(2531), - [sym_compound_literal_expression] = STATE(2541), - [sym_parenthesized_expression] = STATE(2531), - [sym_char_literal] = STATE(2481), - [sym_concatenated_string] = STATE(2481), - [sym_string_literal] = STATE(2063), - [sym__class_name] = STATE(6239), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2541), - [sym_co_await_expression] = STATE(2541), - [sym_new_expression] = STATE(2541), - [sym_delete_expression] = STATE(2541), - [sym_requires_clause] = STATE(2541), - [sym_requires_expression] = STATE(2541), - [sym_lambda_expression] = STATE(2541), - [sym_lambda_capture_specifier] = STATE(4508), - [sym_fold_expression] = STATE(2541), - [sym_parameter_pack_expansion] = STATE(2541), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2531), - [sym_qualified_type_identifier] = STATE(6239), - [sym_user_defined_literal] = STATE(2541), - [sym_identifier] = ACTIONS(2306), - [anon_sym_LPAREN2] = ACTIONS(2310), - [anon_sym_BANG] = ACTIONS(2314), - [anon_sym_TILDE] = ACTIONS(2314), - [anon_sym_DASH] = ACTIONS(2312), - [anon_sym_PLUS] = ACTIONS(2312), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(2318), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(2322), - [anon_sym_PLUS_PLUS] = ACTIONS(2322), - [anon_sym_sizeof] = ACTIONS(2324), - [sym_number_literal] = ACTIONS(2326), - [anon_sym_L_SQUOTE] = ACTIONS(2328), - [anon_sym_u_SQUOTE] = ACTIONS(2328), - [anon_sym_U_SQUOTE] = ACTIONS(2328), - [anon_sym_u8_SQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2328), - [anon_sym_L_DQUOTE] = ACTIONS(2330), - [anon_sym_u_DQUOTE] = ACTIONS(2330), - [anon_sym_U_DQUOTE] = ACTIONS(2330), - [anon_sym_u8_DQUOTE] = ACTIONS(2330), - [anon_sym_DQUOTE] = ACTIONS(2330), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2334), - [anon_sym_co_await] = ACTIONS(2336), - [anon_sym_new] = ACTIONS(2338), - [anon_sym_requires] = ACTIONS(2340), - [sym_this] = ACTIONS(2332), - [sym_nullptr] = ACTIONS(2332), - [sym_raw_string_literal] = ACTIONS(2342), - }, - [1603] = { - [sym__expression] = STATE(3068), - [sym_conditional_expression] = STATE(2541), - [sym_assignment_expression] = STATE(2541), - [sym_pointer_expression] = STATE(2531), - [sym_unary_expression] = STATE(2541), - [sym_binary_expression] = STATE(2541), - [sym_update_expression] = STATE(2541), - [sym_cast_expression] = STATE(2541), - [sym_sizeof_expression] = STATE(2541), - [sym_subscript_expression] = STATE(2531), - [sym_call_expression] = STATE(2531), - [sym_field_expression] = STATE(2531), - [sym_compound_literal_expression] = STATE(2541), - [sym_parenthesized_expression] = STATE(2531), - [sym_char_literal] = STATE(2481), - [sym_concatenated_string] = STATE(2481), - [sym_string_literal] = STATE(2063), - [sym__class_name] = STATE(6239), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2541), - [sym_co_await_expression] = STATE(2541), - [sym_new_expression] = STATE(2541), - [sym_delete_expression] = STATE(2541), - [sym_requires_clause] = STATE(2541), - [sym_requires_expression] = STATE(2541), - [sym_lambda_expression] = STATE(2541), - [sym_lambda_capture_specifier] = STATE(4508), - [sym_fold_expression] = STATE(2541), - [sym_parameter_pack_expansion] = STATE(2541), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2531), - [sym_qualified_type_identifier] = STATE(6239), - [sym_user_defined_literal] = STATE(2541), - [sym_identifier] = ACTIONS(2306), - [anon_sym_LPAREN2] = ACTIONS(2891), - [anon_sym_BANG] = ACTIONS(2895), - [anon_sym_TILDE] = ACTIONS(2895), - [anon_sym_DASH] = ACTIONS(2893), - [anon_sym_PLUS] = ACTIONS(2893), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(2899), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(2901), - [anon_sym_PLUS_PLUS] = ACTIONS(2901), - [anon_sym_sizeof] = ACTIONS(2903), - [sym_number_literal] = ACTIONS(2326), - [anon_sym_L_SQUOTE] = ACTIONS(2328), - [anon_sym_u_SQUOTE] = ACTIONS(2328), - [anon_sym_U_SQUOTE] = ACTIONS(2328), - [anon_sym_u8_SQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2328), - [anon_sym_L_DQUOTE] = ACTIONS(2330), - [anon_sym_u_DQUOTE] = ACTIONS(2330), - [anon_sym_U_DQUOTE] = ACTIONS(2330), - [anon_sym_u8_DQUOTE] = ACTIONS(2330), - [anon_sym_DQUOTE] = ACTIONS(2330), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2905), - [anon_sym_co_await] = ACTIONS(2907), - [anon_sym_new] = ACTIONS(2909), - [anon_sym_requires] = ACTIONS(2340), - [sym_this] = ACTIONS(2332), - [sym_nullptr] = ACTIONS(2332), - [sym_raw_string_literal] = ACTIONS(2342), + [sym_auto] = ACTIONS(2647), + [anon_sym_decltype] = ACTIONS(2647), + [anon_sym_virtual] = ACTIONS(2647), + [anon_sym_typename] = ACTIONS(2647), + [anon_sym_template] = ACTIONS(2647), + [anon_sym_try] = ACTIONS(2647), + [anon_sym_delete] = ACTIONS(2647), + [anon_sym_throw] = ACTIONS(2647), + [anon_sym_co_return] = ACTIONS(2647), + [anon_sym_co_yield] = ACTIONS(2647), + [anon_sym_co_await] = ACTIONS(2647), + [anon_sym_new] = ACTIONS(2647), + [anon_sym_requires] = ACTIONS(2647), + [sym_this] = ACTIONS(2647), + [sym_nullptr] = ACTIONS(2647), + [sym_raw_string_literal] = ACTIONS(2649), }, - [1604] = { - [sym__expression] = STATE(3826), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(3196), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(3196), - [sym_call_expression] = STATE(3196), - [sym_field_expression] = STATE(3196), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(3196), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(3196), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN2] = ACTIONS(3061), - [anon_sym_BANG] = ACTIONS(3065), - [anon_sym_TILDE] = ACTIONS(3065), - [anon_sym_DASH] = ACTIONS(3063), - [anon_sym_PLUS] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(3069), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3071), - [anon_sym_PLUS_PLUS] = ACTIONS(3071), - [anon_sym_sizeof] = ACTIONS(3073), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [1127] = { + [sym_identifier] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2597), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3075), - [anon_sym_co_await] = ACTIONS(3077), - [anon_sym_new] = ACTIONS(3079), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), - }, - [1605] = { - [sym__expression] = STATE(3070), - [sym_conditional_expression] = STATE(2541), - [sym_assignment_expression] = STATE(2541), - [sym_pointer_expression] = STATE(2531), - [sym_unary_expression] = STATE(2541), - [sym_binary_expression] = STATE(2541), - [sym_update_expression] = STATE(2541), - [sym_cast_expression] = STATE(2541), - [sym_sizeof_expression] = STATE(2541), - [sym_subscript_expression] = STATE(2531), - [sym_call_expression] = STATE(2531), - [sym_field_expression] = STATE(2531), - [sym_compound_literal_expression] = STATE(2541), - [sym_parenthesized_expression] = STATE(2531), - [sym_char_literal] = STATE(2481), - [sym_concatenated_string] = STATE(2481), - [sym_string_literal] = STATE(2063), - [sym__class_name] = STATE(6239), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2541), - [sym_co_await_expression] = STATE(2541), - [sym_new_expression] = STATE(2541), - [sym_delete_expression] = STATE(2541), - [sym_requires_clause] = STATE(2541), - [sym_requires_expression] = STATE(2541), - [sym_lambda_expression] = STATE(2541), - [sym_lambda_capture_specifier] = STATE(4508), - [sym_fold_expression] = STATE(2541), - [sym_parameter_pack_expansion] = STATE(2541), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2531), - [sym_qualified_type_identifier] = STATE(6239), - [sym_user_defined_literal] = STATE(2541), - [sym_identifier] = ACTIONS(2306), - [anon_sym_LPAREN2] = ACTIONS(2891), - [anon_sym_BANG] = ACTIONS(2895), - [anon_sym_TILDE] = ACTIONS(2895), - [anon_sym_DASH] = ACTIONS(2893), - [anon_sym_PLUS] = ACTIONS(2893), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(2899), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(2901), - [anon_sym_PLUS_PLUS] = ACTIONS(2901), - [anon_sym_sizeof] = ACTIONS(2903), - [sym_number_literal] = ACTIONS(2326), - [anon_sym_L_SQUOTE] = ACTIONS(2328), - [anon_sym_u_SQUOTE] = ACTIONS(2328), - [anon_sym_U_SQUOTE] = ACTIONS(2328), - [anon_sym_u8_SQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2328), - [anon_sym_L_DQUOTE] = ACTIONS(2330), - [anon_sym_u_DQUOTE] = ACTIONS(2330), - [anon_sym_U_DQUOTE] = ACTIONS(2330), - [anon_sym_u8_DQUOTE] = ACTIONS(2330), - [anon_sym_DQUOTE] = ACTIONS(2330), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2905), - [anon_sym_co_await] = ACTIONS(2907), - [anon_sym_new] = ACTIONS(2909), - [anon_sym_requires] = ACTIONS(2340), - [sym_this] = ACTIONS(2332), - [sym_nullptr] = ACTIONS(2332), - [sym_raw_string_literal] = ACTIONS(2342), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1606] = { - [sym__expression] = STATE(3600), - [sym_conditional_expression] = STATE(3881), - [sym_assignment_expression] = STATE(3881), - [sym_pointer_expression] = STATE(2977), - [sym_unary_expression] = STATE(3881), - [sym_binary_expression] = STATE(3881), - [sym_update_expression] = STATE(3881), - [sym_cast_expression] = STATE(3881), - [sym_sizeof_expression] = STATE(3881), - [sym_subscript_expression] = STATE(2977), - [sym_call_expression] = STATE(2977), - [sym_field_expression] = STATE(2977), - [sym_compound_literal_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(2977), - [sym_char_literal] = STATE(3701), - [sym_concatenated_string] = STATE(3701), - [sym_string_literal] = STATE(3219), - [sym__class_name] = STATE(6063), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3881), - [sym_co_await_expression] = STATE(3881), - [sym_new_expression] = STATE(3881), - [sym_delete_expression] = STATE(3881), - [sym_requires_clause] = STATE(3881), - [sym_requires_expression] = STATE(3881), - [sym_lambda_expression] = STATE(3881), - [sym_lambda_capture_specifier] = STATE(4519), - [sym_fold_expression] = STATE(3881), - [sym_parameter_pack_expansion] = STATE(3881), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4642), - [sym_qualified_identifier] = STATE(2977), - [sym_qualified_type_identifier] = STATE(6063), - [sym_user_defined_literal] = STATE(3881), - [sym_identifier] = ACTIONS(3035), - [anon_sym_LPAREN2] = ACTIONS(2531), - [anon_sym_BANG] = ACTIONS(2533), - [anon_sym_TILDE] = ACTIONS(2533), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_STAR] = ACTIONS(2537), - [anon_sym_AMP] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(2539), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(2845), - [anon_sym_DASH_DASH] = ACTIONS(2553), - [anon_sym_PLUS_PLUS] = ACTIONS(2553), - [anon_sym_sizeof] = ACTIONS(2555), - [sym_number_literal] = ACTIONS(2557), - [anon_sym_L_SQUOTE] = ACTIONS(2559), - [anon_sym_u_SQUOTE] = ACTIONS(2559), - [anon_sym_U_SQUOTE] = ACTIONS(2559), - [anon_sym_u8_SQUOTE] = ACTIONS(2559), - [anon_sym_SQUOTE] = ACTIONS(2559), - [anon_sym_L_DQUOTE] = ACTIONS(2561), - [anon_sym_u_DQUOTE] = ACTIONS(2561), + [1128] = { + [sym_identifier] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2597), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), + }, + [1129] = { + [sym_identifier] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2597), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), + }, + [1130] = { + [sym_identifier] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2597), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), + }, + [1131] = { + [sym_identifier] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), [anon_sym_U_DQUOTE] = ACTIONS(2561), [anon_sym_u8_DQUOTE] = ACTIONS(2561), [anon_sym_DQUOTE] = ACTIONS(2561), - [sym_true] = ACTIONS(2563), - [sym_false] = ACTIONS(2563), - [sym_null] = ACTIONS(2563), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2573), - [anon_sym_co_await] = ACTIONS(2575), - [anon_sym_new] = ACTIONS(2577), - [anon_sym_requires] = ACTIONS(2579), - [sym_this] = ACTIONS(2563), - [sym_nullptr] = ACTIONS(2563), - [sym_raw_string_literal] = ACTIONS(2581), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1607] = { - [sym__expression] = STATE(3946), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [1132] = { + [sym_identifier] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2597), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1608] = { - [sym__expression] = STATE(2568), - [sym_conditional_expression] = STATE(2541), - [sym_assignment_expression] = STATE(2541), - [sym_pointer_expression] = STATE(2531), - [sym_unary_expression] = STATE(2541), - [sym_binary_expression] = STATE(2541), - [sym_update_expression] = STATE(2541), - [sym_cast_expression] = STATE(2541), - [sym_sizeof_expression] = STATE(2541), - [sym_subscript_expression] = STATE(2531), - [sym_call_expression] = STATE(2531), - [sym_field_expression] = STATE(2531), - [sym_compound_literal_expression] = STATE(2541), - [sym_parenthesized_expression] = STATE(2531), - [sym_char_literal] = STATE(2481), - [sym_concatenated_string] = STATE(2481), - [sym_string_literal] = STATE(2063), - [sym__class_name] = STATE(6239), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2541), - [sym_co_await_expression] = STATE(2541), - [sym_new_expression] = STATE(2541), - [sym_delete_expression] = STATE(2541), - [sym_requires_clause] = STATE(2541), - [sym_requires_expression] = STATE(2541), - [sym_lambda_expression] = STATE(2541), - [sym_lambda_capture_specifier] = STATE(4508), - [sym_fold_expression] = STATE(2541), - [sym_parameter_pack_expansion] = STATE(2541), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2531), - [sym_qualified_type_identifier] = STATE(6239), - [sym_user_defined_literal] = STATE(2541), - [sym_identifier] = ACTIONS(2306), - [anon_sym_LPAREN2] = ACTIONS(2310), - [anon_sym_BANG] = ACTIONS(2314), - [anon_sym_TILDE] = ACTIONS(2314), - [anon_sym_DASH] = ACTIONS(2312), - [anon_sym_PLUS] = ACTIONS(2312), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(2318), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(2322), - [anon_sym_PLUS_PLUS] = ACTIONS(2322), - [anon_sym_sizeof] = ACTIONS(2324), - [sym_number_literal] = ACTIONS(2326), - [anon_sym_L_SQUOTE] = ACTIONS(2328), - [anon_sym_u_SQUOTE] = ACTIONS(2328), - [anon_sym_U_SQUOTE] = ACTIONS(2328), - [anon_sym_u8_SQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2328), - [anon_sym_L_DQUOTE] = ACTIONS(2330), - [anon_sym_u_DQUOTE] = ACTIONS(2330), - [anon_sym_U_DQUOTE] = ACTIONS(2330), - [anon_sym_u8_DQUOTE] = ACTIONS(2330), - [anon_sym_DQUOTE] = ACTIONS(2330), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2334), - [anon_sym_co_await] = ACTIONS(2336), - [anon_sym_new] = ACTIONS(2338), - [anon_sym_requires] = ACTIONS(2340), - [sym_this] = ACTIONS(2332), - [sym_nullptr] = ACTIONS(2332), - [sym_raw_string_literal] = ACTIONS(2342), + [1133] = { + [sym_identifier] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2597), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1609] = { - [sym__expression] = STATE(2554), - [sym_conditional_expression] = STATE(2541), - [sym_assignment_expression] = STATE(2541), - [sym_pointer_expression] = STATE(2531), - [sym_unary_expression] = STATE(2541), - [sym_binary_expression] = STATE(2541), - [sym_update_expression] = STATE(2541), - [sym_cast_expression] = STATE(2541), - [sym_sizeof_expression] = STATE(2541), - [sym_subscript_expression] = STATE(2531), - [sym_call_expression] = STATE(2531), - [sym_field_expression] = STATE(2531), - [sym_compound_literal_expression] = STATE(2541), - [sym_parenthesized_expression] = STATE(2531), - [sym_char_literal] = STATE(2481), - [sym_concatenated_string] = STATE(2481), - [sym_string_literal] = STATE(2063), - [sym__class_name] = STATE(6239), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2541), - [sym_co_await_expression] = STATE(2541), - [sym_new_expression] = STATE(2541), - [sym_delete_expression] = STATE(2541), - [sym_requires_clause] = STATE(2541), - [sym_requires_expression] = STATE(2541), - [sym_lambda_expression] = STATE(2541), - [sym_lambda_capture_specifier] = STATE(4508), - [sym_fold_expression] = STATE(2541), - [sym_parameter_pack_expansion] = STATE(2541), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2531), - [sym_qualified_type_identifier] = STATE(6239), - [sym_user_defined_literal] = STATE(2541), - [sym_identifier] = ACTIONS(2306), - [anon_sym_LPAREN2] = ACTIONS(2310), - [anon_sym_BANG] = ACTIONS(2314), - [anon_sym_TILDE] = ACTIONS(2314), - [anon_sym_DASH] = ACTIONS(2312), - [anon_sym_PLUS] = ACTIONS(2312), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(2318), - [anon_sym_LBRACK] = ACTIONS(3704), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(2322), - [anon_sym_PLUS_PLUS] = ACTIONS(2322), - [anon_sym_sizeof] = ACTIONS(2324), - [sym_number_literal] = ACTIONS(2326), - [anon_sym_L_SQUOTE] = ACTIONS(2328), - [anon_sym_u_SQUOTE] = ACTIONS(2328), - [anon_sym_U_SQUOTE] = ACTIONS(2328), - [anon_sym_u8_SQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2328), - [anon_sym_L_DQUOTE] = ACTIONS(2330), - [anon_sym_u_DQUOTE] = ACTIONS(2330), - [anon_sym_U_DQUOTE] = ACTIONS(2330), - [anon_sym_u8_DQUOTE] = ACTIONS(2330), - [anon_sym_DQUOTE] = ACTIONS(2330), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2334), - [anon_sym_co_await] = ACTIONS(2336), - [anon_sym_new] = ACTIONS(2338), - [anon_sym_requires] = ACTIONS(2340), - [sym_this] = ACTIONS(2332), - [sym_nullptr] = ACTIONS(2332), - [sym_raw_string_literal] = ACTIONS(2342), + [1134] = { + [sym_identifier] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2597), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1610] = { - [sym__expression] = STATE(3078), - [sym_conditional_expression] = STATE(2541), - [sym_assignment_expression] = STATE(2541), - [sym_pointer_expression] = STATE(2531), - [sym_unary_expression] = STATE(2541), - [sym_binary_expression] = STATE(2541), - [sym_update_expression] = STATE(2541), - [sym_cast_expression] = STATE(2541), - [sym_sizeof_expression] = STATE(2541), - [sym_subscript_expression] = STATE(2531), - [sym_call_expression] = STATE(2531), - [sym_field_expression] = STATE(2531), - [sym_compound_literal_expression] = STATE(2541), - [sym_parenthesized_expression] = STATE(2531), - [sym_char_literal] = STATE(2481), - [sym_concatenated_string] = STATE(2481), - [sym_string_literal] = STATE(2063), - [sym__class_name] = STATE(6239), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2541), - [sym_co_await_expression] = STATE(2541), - [sym_new_expression] = STATE(2541), - [sym_delete_expression] = STATE(2541), - [sym_requires_clause] = STATE(2541), - [sym_requires_expression] = STATE(2541), - [sym_lambda_expression] = STATE(2541), - [sym_lambda_capture_specifier] = STATE(4508), - [sym_fold_expression] = STATE(2541), - [sym_parameter_pack_expansion] = STATE(2541), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2531), - [sym_qualified_type_identifier] = STATE(6239), - [sym_user_defined_literal] = STATE(2541), - [sym_identifier] = ACTIONS(2306), - [anon_sym_LPAREN2] = ACTIONS(2891), - [anon_sym_BANG] = ACTIONS(2895), - [anon_sym_TILDE] = ACTIONS(2895), - [anon_sym_DASH] = ACTIONS(2893), - [anon_sym_PLUS] = ACTIONS(2893), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(2899), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(2901), - [anon_sym_PLUS_PLUS] = ACTIONS(2901), - [anon_sym_sizeof] = ACTIONS(2903), - [sym_number_literal] = ACTIONS(2326), - [anon_sym_L_SQUOTE] = ACTIONS(2328), - [anon_sym_u_SQUOTE] = ACTIONS(2328), - [anon_sym_U_SQUOTE] = ACTIONS(2328), - [anon_sym_u8_SQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2328), - [anon_sym_L_DQUOTE] = ACTIONS(2330), - [anon_sym_u_DQUOTE] = ACTIONS(2330), - [anon_sym_U_DQUOTE] = ACTIONS(2330), - [anon_sym_u8_DQUOTE] = ACTIONS(2330), - [anon_sym_DQUOTE] = ACTIONS(2330), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2905), - [anon_sym_co_await] = ACTIONS(2907), - [anon_sym_new] = ACTIONS(2909), - [anon_sym_requires] = ACTIONS(2340), - [sym_this] = ACTIONS(2332), - [sym_nullptr] = ACTIONS(2332), - [sym_raw_string_literal] = ACTIONS(2342), + [1135] = { + [sym_identifier] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2597), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1611] = { - [sym__expression] = STATE(3110), - [sym_conditional_expression] = STATE(2541), - [sym_assignment_expression] = STATE(2541), - [sym_pointer_expression] = STATE(2531), - [sym_unary_expression] = STATE(2541), - [sym_binary_expression] = STATE(2541), - [sym_update_expression] = STATE(2541), - [sym_cast_expression] = STATE(2541), - [sym_sizeof_expression] = STATE(2541), - [sym_subscript_expression] = STATE(2531), - [sym_call_expression] = STATE(2531), - [sym_field_expression] = STATE(2531), - [sym_compound_literal_expression] = STATE(2541), - [sym_parenthesized_expression] = STATE(2531), - [sym_char_literal] = STATE(2481), - [sym_concatenated_string] = STATE(2481), - [sym_string_literal] = STATE(2063), - [sym__class_name] = STATE(6239), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2541), - [sym_co_await_expression] = STATE(2541), - [sym_new_expression] = STATE(2541), - [sym_delete_expression] = STATE(2541), - [sym_requires_clause] = STATE(2541), - [sym_requires_expression] = STATE(2541), - [sym_lambda_expression] = STATE(2541), - [sym_lambda_capture_specifier] = STATE(4508), - [sym_fold_expression] = STATE(2541), - [sym_parameter_pack_expansion] = STATE(2541), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2531), - [sym_qualified_type_identifier] = STATE(6239), - [sym_user_defined_literal] = STATE(2541), - [sym_identifier] = ACTIONS(2306), - [anon_sym_LPAREN2] = ACTIONS(2891), - [anon_sym_BANG] = ACTIONS(2895), - [anon_sym_TILDE] = ACTIONS(2895), - [anon_sym_DASH] = ACTIONS(2893), - [anon_sym_PLUS] = ACTIONS(2893), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(2899), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(2901), - [anon_sym_PLUS_PLUS] = ACTIONS(2901), - [anon_sym_sizeof] = ACTIONS(2903), - [sym_number_literal] = ACTIONS(2326), - [anon_sym_L_SQUOTE] = ACTIONS(2328), - [anon_sym_u_SQUOTE] = ACTIONS(2328), - [anon_sym_U_SQUOTE] = ACTIONS(2328), - [anon_sym_u8_SQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2328), - [anon_sym_L_DQUOTE] = ACTIONS(2330), - [anon_sym_u_DQUOTE] = ACTIONS(2330), - [anon_sym_U_DQUOTE] = ACTIONS(2330), - [anon_sym_u8_DQUOTE] = ACTIONS(2330), - [anon_sym_DQUOTE] = ACTIONS(2330), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2905), - [anon_sym_co_await] = ACTIONS(2907), - [anon_sym_new] = ACTIONS(2909), - [anon_sym_requires] = ACTIONS(2340), - [sym_this] = ACTIONS(2332), - [sym_nullptr] = ACTIONS(2332), - [sym_raw_string_literal] = ACTIONS(2342), + [1136] = { + [sym_identifier] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2597), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1612] = { - [sym__expression] = STATE(3902), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(3196), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(3196), - [sym_call_expression] = STATE(3196), - [sym_field_expression] = STATE(3196), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(3196), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(3196), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN2] = ACTIONS(3061), - [anon_sym_BANG] = ACTIONS(3065), - [anon_sym_TILDE] = ACTIONS(3065), - [anon_sym_DASH] = ACTIONS(3063), - [anon_sym_PLUS] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(3069), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3071), - [anon_sym_PLUS_PLUS] = ACTIONS(3071), - [anon_sym_sizeof] = ACTIONS(3073), + [1137] = { + [sym_type_qualifier] = STATE(1238), + [sym__expression] = STATE(3916), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3001), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3001), + [sym_call_expression] = STATE(3001), + [sym_field_expression] = STATE(3001), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3001), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3001), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_type_definition_repeat1] = STATE(1238), + [sym_identifier] = ACTIONS(3085), + [anon_sym_LPAREN2] = ACTIONS(3087), + [anon_sym_BANG] = ACTIONS(3091), + [anon_sym_TILDE] = ACTIONS(3091), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(3176), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_RBRACK] = ACTIONS(3178), + [anon_sym_const] = ACTIONS(3180), + [anon_sym_volatile] = ACTIONS(3180), + [anon_sym_restrict] = ACTIONS(3180), + [anon_sym__Atomic] = ACTIONS(3180), + [anon_sym_mutable] = ACTIONS(3180), + [anon_sym_constexpr] = ACTIONS(3180), + [anon_sym_constinit] = ACTIONS(3180), + [anon_sym_consteval] = ACTIONS(3180), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3089), + [anon_sym_compl] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3095), + [anon_sym_PLUS_PLUS] = ACTIONS(3095), + [anon_sym_sizeof] = ACTIONS(3097), [sym_number_literal] = ACTIONS(97), [anon_sym_L_SQUOTE] = ACTIONS(99), [anon_sym_u_SQUOTE] = ACTIONS(99), @@ -193319,210 +160893,593 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3075), - [anon_sym_co_await] = ACTIONS(3077), - [anon_sym_new] = ACTIONS(3079), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3099), + [anon_sym_co_await] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3103), [anon_sym_requires] = ACTIONS(141), [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [1613] = { - [sym__expression] = STATE(3112), - [sym_conditional_expression] = STATE(2541), - [sym_assignment_expression] = STATE(2541), - [sym_pointer_expression] = STATE(2531), - [sym_unary_expression] = STATE(2541), - [sym_binary_expression] = STATE(2541), - [sym_update_expression] = STATE(2541), - [sym_cast_expression] = STATE(2541), - [sym_sizeof_expression] = STATE(2541), - [sym_subscript_expression] = STATE(2531), - [sym_call_expression] = STATE(2531), - [sym_field_expression] = STATE(2531), - [sym_compound_literal_expression] = STATE(2541), - [sym_parenthesized_expression] = STATE(2531), - [sym_char_literal] = STATE(2481), - [sym_concatenated_string] = STATE(2481), - [sym_string_literal] = STATE(2063), - [sym__class_name] = STATE(6239), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2541), - [sym_co_await_expression] = STATE(2541), - [sym_new_expression] = STATE(2541), - [sym_delete_expression] = STATE(2541), - [sym_requires_clause] = STATE(2541), - [sym_requires_expression] = STATE(2541), - [sym_lambda_expression] = STATE(2541), - [sym_lambda_capture_specifier] = STATE(4508), - [sym_fold_expression] = STATE(2541), - [sym_parameter_pack_expansion] = STATE(2541), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2531), - [sym_qualified_type_identifier] = STATE(6239), - [sym_user_defined_literal] = STATE(2541), - [sym_identifier] = ACTIONS(2306), - [anon_sym_LPAREN2] = ACTIONS(2891), - [anon_sym_BANG] = ACTIONS(2895), - [anon_sym_TILDE] = ACTIONS(2895), - [anon_sym_DASH] = ACTIONS(2893), - [anon_sym_PLUS] = ACTIONS(2893), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(2899), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(2901), - [anon_sym_PLUS_PLUS] = ACTIONS(2901), - [anon_sym_sizeof] = ACTIONS(2903), - [sym_number_literal] = ACTIONS(2326), - [anon_sym_L_SQUOTE] = ACTIONS(2328), - [anon_sym_u_SQUOTE] = ACTIONS(2328), - [anon_sym_U_SQUOTE] = ACTIONS(2328), - [anon_sym_u8_SQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2328), - [anon_sym_L_DQUOTE] = ACTIONS(2330), - [anon_sym_u_DQUOTE] = ACTIONS(2330), - [anon_sym_U_DQUOTE] = ACTIONS(2330), - [anon_sym_u8_DQUOTE] = ACTIONS(2330), - [anon_sym_DQUOTE] = ACTIONS(2330), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2905), - [anon_sym_co_await] = ACTIONS(2907), - [anon_sym_new] = ACTIONS(2909), - [anon_sym_requires] = ACTIONS(2340), - [sym_this] = ACTIONS(2332), - [sym_nullptr] = ACTIONS(2332), - [sym_raw_string_literal] = ACTIONS(2342), + [1138] = { + [sym_identifier] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2597), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1614] = { - [sym__expression] = STATE(3893), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [1139] = { + [sym_identifier] = ACTIONS(2541), + [anon_sym_LPAREN2] = ACTIONS(2543), + [anon_sym_BANG] = ACTIONS(2543), + [anon_sym_TILDE] = ACTIONS(2543), + [anon_sym_DASH] = ACTIONS(2541), + [anon_sym_PLUS] = ACTIONS(2541), + [anon_sym_STAR] = ACTIONS(2543), + [anon_sym_AMP] = ACTIONS(2543), + [anon_sym_SEMI] = ACTIONS(2543), + [anon_sym_typedef] = ACTIONS(2541), + [anon_sym_extern] = ACTIONS(2541), + [anon_sym___attribute__] = ACTIONS(2541), + [anon_sym_COLON_COLON] = ACTIONS(2543), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2543), + [anon_sym___declspec] = ACTIONS(2541), + [anon_sym_LBRACE] = ACTIONS(2543), + [anon_sym_LBRACK] = ACTIONS(2541), + [anon_sym_static] = ACTIONS(2541), + [anon_sym_register] = ACTIONS(2541), + [anon_sym_inline] = ACTIONS(2541), + [anon_sym_thread_local] = ACTIONS(2541), + [anon_sym_const] = ACTIONS(2541), + [anon_sym_volatile] = ACTIONS(2541), + [anon_sym_restrict] = ACTIONS(2541), + [anon_sym__Atomic] = ACTIONS(2541), + [anon_sym_mutable] = ACTIONS(2541), + [anon_sym_constexpr] = ACTIONS(2541), + [anon_sym_constinit] = ACTIONS(2541), + [anon_sym_consteval] = ACTIONS(2541), + [anon_sym_signed] = ACTIONS(2541), + [anon_sym_unsigned] = ACTIONS(2541), + [anon_sym_long] = ACTIONS(2541), + [anon_sym_short] = ACTIONS(2541), + [sym_primitive_type] = ACTIONS(2541), + [anon_sym_enum] = ACTIONS(2541), + [anon_sym_class] = ACTIONS(2541), + [anon_sym_struct] = ACTIONS(2541), + [anon_sym_union] = ACTIONS(2541), + [anon_sym_if] = ACTIONS(2541), + [anon_sym_else] = ACTIONS(3182), + [anon_sym_switch] = ACTIONS(2541), + [anon_sym_while] = ACTIONS(2541), + [anon_sym_do] = ACTIONS(2541), + [anon_sym_for] = ACTIONS(2541), + [anon_sym_return] = ACTIONS(2541), + [anon_sym_break] = ACTIONS(2541), + [anon_sym_continue] = ACTIONS(2541), + [anon_sym_goto] = ACTIONS(2541), + [anon_sym_not] = ACTIONS(2541), + [anon_sym_compl] = ACTIONS(2541), + [anon_sym_DASH_DASH] = ACTIONS(2543), + [anon_sym_PLUS_PLUS] = ACTIONS(2543), + [anon_sym_sizeof] = ACTIONS(2541), + [sym_number_literal] = ACTIONS(2543), + [anon_sym_L_SQUOTE] = ACTIONS(2543), + [anon_sym_u_SQUOTE] = ACTIONS(2543), + [anon_sym_U_SQUOTE] = ACTIONS(2543), + [anon_sym_u8_SQUOTE] = ACTIONS(2543), + [anon_sym_SQUOTE] = ACTIONS(2543), + [anon_sym_L_DQUOTE] = ACTIONS(2543), + [anon_sym_u_DQUOTE] = ACTIONS(2543), + [anon_sym_U_DQUOTE] = ACTIONS(2543), + [anon_sym_u8_DQUOTE] = ACTIONS(2543), + [anon_sym_DQUOTE] = ACTIONS(2543), + [sym_true] = ACTIONS(2541), + [sym_false] = ACTIONS(2541), + [sym_null] = ACTIONS(2541), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2541), + [anon_sym_decltype] = ACTIONS(2541), + [anon_sym_virtual] = ACTIONS(2541), + [anon_sym_typename] = ACTIONS(2541), + [anon_sym_template] = ACTIONS(2541), + [anon_sym_try] = ACTIONS(2541), + [anon_sym_delete] = ACTIONS(2541), + [anon_sym_throw] = ACTIONS(2541), + [anon_sym_co_return] = ACTIONS(2541), + [anon_sym_co_yield] = ACTIONS(2541), + [anon_sym_co_await] = ACTIONS(2541), + [anon_sym_new] = ACTIONS(2541), + [anon_sym_requires] = ACTIONS(2541), + [sym_this] = ACTIONS(2541), + [sym_nullptr] = ACTIONS(2541), + [sym_raw_string_literal] = ACTIONS(2543), + }, + [1140] = { + [sym_identifier] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2597), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1615] = { - [sym__expression] = STATE(3834), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), + [1141] = { + [sym_identifier] = ACTIONS(2635), + [anon_sym_LPAREN2] = ACTIONS(2637), + [anon_sym_BANG] = ACTIONS(2637), + [anon_sym_TILDE] = ACTIONS(2637), + [anon_sym_DASH] = ACTIONS(2635), + [anon_sym_PLUS] = ACTIONS(2635), + [anon_sym_STAR] = ACTIONS(2637), + [anon_sym_AMP] = ACTIONS(2637), + [anon_sym_SEMI] = ACTIONS(2637), + [anon_sym_typedef] = ACTIONS(2635), + [anon_sym_extern] = ACTIONS(2635), + [anon_sym___attribute__] = ACTIONS(2635), + [anon_sym_COLON_COLON] = ACTIONS(2637), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2637), + [anon_sym___declspec] = ACTIONS(2635), + [anon_sym_LBRACE] = ACTIONS(2637), + [anon_sym_LBRACK] = ACTIONS(2635), + [anon_sym_static] = ACTIONS(2635), + [anon_sym_register] = ACTIONS(2635), + [anon_sym_inline] = ACTIONS(2635), + [anon_sym_thread_local] = ACTIONS(2635), + [anon_sym_const] = ACTIONS(2635), + [anon_sym_volatile] = ACTIONS(2635), + [anon_sym_restrict] = ACTIONS(2635), + [anon_sym__Atomic] = ACTIONS(2635), + [anon_sym_mutable] = ACTIONS(2635), + [anon_sym_constexpr] = ACTIONS(2635), + [anon_sym_constinit] = ACTIONS(2635), + [anon_sym_consteval] = ACTIONS(2635), + [anon_sym_signed] = ACTIONS(2635), + [anon_sym_unsigned] = ACTIONS(2635), + [anon_sym_long] = ACTIONS(2635), + [anon_sym_short] = ACTIONS(2635), + [sym_primitive_type] = ACTIONS(2635), + [anon_sym_enum] = ACTIONS(2635), + [anon_sym_class] = ACTIONS(2635), + [anon_sym_struct] = ACTIONS(2635), + [anon_sym_union] = ACTIONS(2635), + [anon_sym_if] = ACTIONS(2635), + [anon_sym_else] = ACTIONS(2635), + [anon_sym_switch] = ACTIONS(2635), + [anon_sym_while] = ACTIONS(2635), + [anon_sym_do] = ACTIONS(2635), + [anon_sym_for] = ACTIONS(2635), + [anon_sym_return] = ACTIONS(2635), + [anon_sym_break] = ACTIONS(2635), + [anon_sym_continue] = ACTIONS(2635), + [anon_sym_goto] = ACTIONS(2635), + [anon_sym_not] = ACTIONS(2635), + [anon_sym_compl] = ACTIONS(2635), + [anon_sym_DASH_DASH] = ACTIONS(2637), + [anon_sym_PLUS_PLUS] = ACTIONS(2637), + [anon_sym_sizeof] = ACTIONS(2635), + [sym_number_literal] = ACTIONS(2637), + [anon_sym_L_SQUOTE] = ACTIONS(2637), + [anon_sym_u_SQUOTE] = ACTIONS(2637), + [anon_sym_U_SQUOTE] = ACTIONS(2637), + [anon_sym_u8_SQUOTE] = ACTIONS(2637), + [anon_sym_SQUOTE] = ACTIONS(2637), + [anon_sym_L_DQUOTE] = ACTIONS(2637), + [anon_sym_u_DQUOTE] = ACTIONS(2637), + [anon_sym_U_DQUOTE] = ACTIONS(2637), + [anon_sym_u8_DQUOTE] = ACTIONS(2637), + [anon_sym_DQUOTE] = ACTIONS(2637), + [sym_true] = ACTIONS(2635), + [sym_false] = ACTIONS(2635), + [sym_null] = ACTIONS(2635), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2635), + [anon_sym_decltype] = ACTIONS(2635), + [anon_sym_virtual] = ACTIONS(2635), + [anon_sym_typename] = ACTIONS(2635), + [anon_sym_template] = ACTIONS(2635), + [anon_sym_try] = ACTIONS(2635), + [anon_sym_delete] = ACTIONS(2635), + [anon_sym_throw] = ACTIONS(2635), + [anon_sym_co_return] = ACTIONS(2635), + [anon_sym_co_yield] = ACTIONS(2635), + [anon_sym_co_await] = ACTIONS(2635), + [anon_sym_new] = ACTIONS(2635), + [anon_sym_requires] = ACTIONS(2635), + [sym_this] = ACTIONS(2635), + [sym_nullptr] = ACTIONS(2635), + [sym_raw_string_literal] = ACTIONS(2637), + }, + [1142] = { + [sym_identifier] = ACTIONS(2635), + [anon_sym_LPAREN2] = ACTIONS(2637), + [anon_sym_BANG] = ACTIONS(2637), + [anon_sym_TILDE] = ACTIONS(2637), + [anon_sym_DASH] = ACTIONS(2635), + [anon_sym_PLUS] = ACTIONS(2635), + [anon_sym_STAR] = ACTIONS(2637), + [anon_sym_AMP] = ACTIONS(2637), + [anon_sym_SEMI] = ACTIONS(2637), + [anon_sym_typedef] = ACTIONS(2635), + [anon_sym_extern] = ACTIONS(2635), + [anon_sym___attribute__] = ACTIONS(2635), + [anon_sym_COLON_COLON] = ACTIONS(2637), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2637), + [anon_sym___declspec] = ACTIONS(2635), + [anon_sym_LBRACE] = ACTIONS(2637), + [anon_sym_LBRACK] = ACTIONS(2635), + [anon_sym_static] = ACTIONS(2635), + [anon_sym_register] = ACTIONS(2635), + [anon_sym_inline] = ACTIONS(2635), + [anon_sym_thread_local] = ACTIONS(2635), + [anon_sym_const] = ACTIONS(2635), + [anon_sym_volatile] = ACTIONS(2635), + [anon_sym_restrict] = ACTIONS(2635), + [anon_sym__Atomic] = ACTIONS(2635), + [anon_sym_mutable] = ACTIONS(2635), + [anon_sym_constexpr] = ACTIONS(2635), + [anon_sym_constinit] = ACTIONS(2635), + [anon_sym_consteval] = ACTIONS(2635), + [anon_sym_signed] = ACTIONS(2635), + [anon_sym_unsigned] = ACTIONS(2635), + [anon_sym_long] = ACTIONS(2635), + [anon_sym_short] = ACTIONS(2635), + [sym_primitive_type] = ACTIONS(2635), + [anon_sym_enum] = ACTIONS(2635), + [anon_sym_class] = ACTIONS(2635), + [anon_sym_struct] = ACTIONS(2635), + [anon_sym_union] = ACTIONS(2635), + [anon_sym_if] = ACTIONS(2635), + [anon_sym_else] = ACTIONS(2635), + [anon_sym_switch] = ACTIONS(2635), + [anon_sym_while] = ACTIONS(2635), + [anon_sym_do] = ACTIONS(2635), + [anon_sym_for] = ACTIONS(2635), + [anon_sym_return] = ACTIONS(2635), + [anon_sym_break] = ACTIONS(2635), + [anon_sym_continue] = ACTIONS(2635), + [anon_sym_goto] = ACTIONS(2635), + [anon_sym_not] = ACTIONS(2635), + [anon_sym_compl] = ACTIONS(2635), + [anon_sym_DASH_DASH] = ACTIONS(2637), + [anon_sym_PLUS_PLUS] = ACTIONS(2637), + [anon_sym_sizeof] = ACTIONS(2635), + [sym_number_literal] = ACTIONS(2637), + [anon_sym_L_SQUOTE] = ACTIONS(2637), + [anon_sym_u_SQUOTE] = ACTIONS(2637), + [anon_sym_U_SQUOTE] = ACTIONS(2637), + [anon_sym_u8_SQUOTE] = ACTIONS(2637), + [anon_sym_SQUOTE] = ACTIONS(2637), + [anon_sym_L_DQUOTE] = ACTIONS(2637), + [anon_sym_u_DQUOTE] = ACTIONS(2637), + [anon_sym_U_DQUOTE] = ACTIONS(2637), + [anon_sym_u8_DQUOTE] = ACTIONS(2637), + [anon_sym_DQUOTE] = ACTIONS(2637), + [sym_true] = ACTIONS(2635), + [sym_false] = ACTIONS(2635), + [sym_null] = ACTIONS(2635), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2635), + [anon_sym_decltype] = ACTIONS(2635), + [anon_sym_virtual] = ACTIONS(2635), + [anon_sym_typename] = ACTIONS(2635), + [anon_sym_template] = ACTIONS(2635), + [anon_sym_try] = ACTIONS(2635), + [anon_sym_delete] = ACTIONS(2635), + [anon_sym_throw] = ACTIONS(2635), + [anon_sym_co_return] = ACTIONS(2635), + [anon_sym_co_yield] = ACTIONS(2635), + [anon_sym_co_await] = ACTIONS(2635), + [anon_sym_new] = ACTIONS(2635), + [anon_sym_requires] = ACTIONS(2635), + [sym_this] = ACTIONS(2635), + [sym_nullptr] = ACTIONS(2635), + [sym_raw_string_literal] = ACTIONS(2637), + }, + [1143] = { + [sym_identifier] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2597), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), + }, + [1144] = { + [sym_type_qualifier] = STATE(1243), + [sym__expression] = STATE(3974), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3001), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3001), + [sym_call_expression] = STATE(3001), + [sym_field_expression] = STATE(3001), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3001), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3001), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_type_definition_repeat1] = STATE(1243), + [sym_identifier] = ACTIONS(3184), + [anon_sym_LPAREN2] = ACTIONS(3087), + [anon_sym_BANG] = ACTIONS(3091), + [anon_sym_TILDE] = ACTIONS(3091), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(3186), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_RBRACK] = ACTIONS(3188), + [anon_sym_const] = ACTIONS(3180), + [anon_sym_volatile] = ACTIONS(3180), + [anon_sym_restrict] = ACTIONS(3180), + [anon_sym__Atomic] = ACTIONS(3180), + [anon_sym_mutable] = ACTIONS(3180), + [anon_sym_constexpr] = ACTIONS(3180), + [anon_sym_constinit] = ACTIONS(3180), + [anon_sym_consteval] = ACTIONS(3180), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3089), + [anon_sym_compl] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3095), + [anon_sym_PLUS_PLUS] = ACTIONS(3095), + [anon_sym_sizeof] = ACTIONS(3097), [sym_number_literal] = ACTIONS(97), [anon_sym_L_SQUOTE] = ACTIONS(99), [anon_sym_u_SQUOTE] = ACTIONS(99), @@ -193538,867 +161495,937 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3099), + [anon_sym_co_await] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3103), [anon_sym_requires] = ACTIONS(141), [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [1616] = { - [sym__expression] = STATE(3113), - [sym_conditional_expression] = STATE(2541), - [sym_assignment_expression] = STATE(2541), - [sym_pointer_expression] = STATE(2531), - [sym_unary_expression] = STATE(2541), - [sym_binary_expression] = STATE(2541), - [sym_update_expression] = STATE(2541), - [sym_cast_expression] = STATE(2541), - [sym_sizeof_expression] = STATE(2541), - [sym_subscript_expression] = STATE(2531), - [sym_call_expression] = STATE(2531), - [sym_field_expression] = STATE(2531), - [sym_compound_literal_expression] = STATE(2541), - [sym_parenthesized_expression] = STATE(2531), - [sym_char_literal] = STATE(2481), - [sym_concatenated_string] = STATE(2481), - [sym_string_literal] = STATE(2063), - [sym__class_name] = STATE(6239), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2541), - [sym_co_await_expression] = STATE(2541), - [sym_new_expression] = STATE(2541), - [sym_delete_expression] = STATE(2541), - [sym_requires_clause] = STATE(2541), - [sym_requires_expression] = STATE(2541), - [sym_lambda_expression] = STATE(2541), - [sym_lambda_capture_specifier] = STATE(4508), - [sym_fold_expression] = STATE(2541), - [sym_parameter_pack_expansion] = STATE(2541), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2531), - [sym_qualified_type_identifier] = STATE(6239), - [sym_user_defined_literal] = STATE(2541), - [sym_identifier] = ACTIONS(2306), - [anon_sym_LPAREN2] = ACTIONS(2891), - [anon_sym_BANG] = ACTIONS(2895), - [anon_sym_TILDE] = ACTIONS(2895), - [anon_sym_DASH] = ACTIONS(2893), - [anon_sym_PLUS] = ACTIONS(2893), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(2899), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(2901), - [anon_sym_PLUS_PLUS] = ACTIONS(2901), - [anon_sym_sizeof] = ACTIONS(2903), - [sym_number_literal] = ACTIONS(2326), - [anon_sym_L_SQUOTE] = ACTIONS(2328), - [anon_sym_u_SQUOTE] = ACTIONS(2328), - [anon_sym_U_SQUOTE] = ACTIONS(2328), - [anon_sym_u8_SQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2328), - [anon_sym_L_DQUOTE] = ACTIONS(2330), - [anon_sym_u_DQUOTE] = ACTIONS(2330), - [anon_sym_U_DQUOTE] = ACTIONS(2330), - [anon_sym_u8_DQUOTE] = ACTIONS(2330), - [anon_sym_DQUOTE] = ACTIONS(2330), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2905), - [anon_sym_co_await] = ACTIONS(2907), - [anon_sym_new] = ACTIONS(2909), - [anon_sym_requires] = ACTIONS(2340), - [sym_this] = ACTIONS(2332), - [sym_nullptr] = ACTIONS(2332), - [sym_raw_string_literal] = ACTIONS(2342), - }, - [1617] = { - [sym__expression] = STATE(3115), - [sym_conditional_expression] = STATE(2541), - [sym_assignment_expression] = STATE(2541), - [sym_pointer_expression] = STATE(2531), - [sym_unary_expression] = STATE(2541), - [sym_binary_expression] = STATE(2541), - [sym_update_expression] = STATE(2541), - [sym_cast_expression] = STATE(2541), - [sym_sizeof_expression] = STATE(2541), - [sym_subscript_expression] = STATE(2531), - [sym_call_expression] = STATE(2531), - [sym_field_expression] = STATE(2531), - [sym_compound_literal_expression] = STATE(2541), - [sym_parenthesized_expression] = STATE(2531), - [sym_char_literal] = STATE(2481), - [sym_concatenated_string] = STATE(2481), - [sym_string_literal] = STATE(2063), - [sym__class_name] = STATE(6239), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2541), - [sym_co_await_expression] = STATE(2541), - [sym_new_expression] = STATE(2541), - [sym_delete_expression] = STATE(2541), - [sym_requires_clause] = STATE(2541), - [sym_requires_expression] = STATE(2541), - [sym_lambda_expression] = STATE(2541), - [sym_lambda_capture_specifier] = STATE(4508), - [sym_fold_expression] = STATE(2541), - [sym_parameter_pack_expansion] = STATE(2541), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2531), - [sym_qualified_type_identifier] = STATE(6239), - [sym_user_defined_literal] = STATE(2541), - [sym_identifier] = ACTIONS(2306), - [anon_sym_LPAREN2] = ACTIONS(2891), - [anon_sym_BANG] = ACTIONS(2895), - [anon_sym_TILDE] = ACTIONS(2895), - [anon_sym_DASH] = ACTIONS(2893), - [anon_sym_PLUS] = ACTIONS(2893), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(2899), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(2901), - [anon_sym_PLUS_PLUS] = ACTIONS(2901), - [anon_sym_sizeof] = ACTIONS(2903), - [sym_number_literal] = ACTIONS(2326), - [anon_sym_L_SQUOTE] = ACTIONS(2328), - [anon_sym_u_SQUOTE] = ACTIONS(2328), - [anon_sym_U_SQUOTE] = ACTIONS(2328), - [anon_sym_u8_SQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2328), - [anon_sym_L_DQUOTE] = ACTIONS(2330), - [anon_sym_u_DQUOTE] = ACTIONS(2330), - [anon_sym_U_DQUOTE] = ACTIONS(2330), - [anon_sym_u8_DQUOTE] = ACTIONS(2330), - [anon_sym_DQUOTE] = ACTIONS(2330), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2905), - [anon_sym_co_await] = ACTIONS(2907), - [anon_sym_new] = ACTIONS(2909), - [anon_sym_requires] = ACTIONS(2340), - [sym_this] = ACTIONS(2332), - [sym_nullptr] = ACTIONS(2332), - [sym_raw_string_literal] = ACTIONS(2342), + [1145] = { + [sym_identifier] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1618] = { - [sym__expression] = STATE(3949), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(3196), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(3196), - [sym_call_expression] = STATE(3196), - [sym_field_expression] = STATE(3196), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(3196), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(3196), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN2] = ACTIONS(3061), - [anon_sym_BANG] = ACTIONS(3065), - [anon_sym_TILDE] = ACTIONS(3065), - [anon_sym_DASH] = ACTIONS(3063), - [anon_sym_PLUS] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(3069), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3071), - [anon_sym_PLUS_PLUS] = ACTIONS(3071), - [anon_sym_sizeof] = ACTIONS(3073), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [1146] = { + [sym_identifier] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2597), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3075), - [anon_sym_co_await] = ACTIONS(3077), - [anon_sym_new] = ACTIONS(3079), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1619] = { - [sym__expression] = STATE(3824), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [1147] = { + [sym_identifier] = ACTIONS(2599), + [anon_sym_LPAREN2] = ACTIONS(2601), + [anon_sym_BANG] = ACTIONS(2601), + [anon_sym_TILDE] = ACTIONS(2601), + [anon_sym_DASH] = ACTIONS(2599), + [anon_sym_PLUS] = ACTIONS(2599), + [anon_sym_STAR] = ACTIONS(2601), + [anon_sym_AMP] = ACTIONS(2601), + [anon_sym_SEMI] = ACTIONS(2601), + [anon_sym_typedef] = ACTIONS(2599), + [anon_sym_extern] = ACTIONS(2599), + [anon_sym___attribute__] = ACTIONS(2599), + [anon_sym_COLON_COLON] = ACTIONS(2601), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2601), + [anon_sym___declspec] = ACTIONS(2599), + [anon_sym_LBRACE] = ACTIONS(2601), + [anon_sym_LBRACK] = ACTIONS(2599), + [anon_sym_static] = ACTIONS(2599), + [anon_sym_register] = ACTIONS(2599), + [anon_sym_inline] = ACTIONS(2599), + [anon_sym_thread_local] = ACTIONS(2599), + [anon_sym_const] = ACTIONS(2599), + [anon_sym_volatile] = ACTIONS(2599), + [anon_sym_restrict] = ACTIONS(2599), + [anon_sym__Atomic] = ACTIONS(2599), + [anon_sym_mutable] = ACTIONS(2599), + [anon_sym_constexpr] = ACTIONS(2599), + [anon_sym_constinit] = ACTIONS(2599), + [anon_sym_consteval] = ACTIONS(2599), + [anon_sym_signed] = ACTIONS(2599), + [anon_sym_unsigned] = ACTIONS(2599), + [anon_sym_long] = ACTIONS(2599), + [anon_sym_short] = ACTIONS(2599), + [sym_primitive_type] = ACTIONS(2599), + [anon_sym_enum] = ACTIONS(2599), + [anon_sym_class] = ACTIONS(2599), + [anon_sym_struct] = ACTIONS(2599), + [anon_sym_union] = ACTIONS(2599), + [anon_sym_if] = ACTIONS(2599), + [anon_sym_else] = ACTIONS(2599), + [anon_sym_switch] = ACTIONS(2599), + [anon_sym_while] = ACTIONS(2599), + [anon_sym_do] = ACTIONS(2599), + [anon_sym_for] = ACTIONS(2599), + [anon_sym_return] = ACTIONS(2599), + [anon_sym_break] = ACTIONS(2599), + [anon_sym_continue] = ACTIONS(2599), + [anon_sym_goto] = ACTIONS(2599), + [anon_sym_not] = ACTIONS(2599), + [anon_sym_compl] = ACTIONS(2599), + [anon_sym_DASH_DASH] = ACTIONS(2601), + [anon_sym_PLUS_PLUS] = ACTIONS(2601), + [anon_sym_sizeof] = ACTIONS(2599), + [sym_number_literal] = ACTIONS(2601), + [anon_sym_L_SQUOTE] = ACTIONS(2601), + [anon_sym_u_SQUOTE] = ACTIONS(2601), + [anon_sym_U_SQUOTE] = ACTIONS(2601), + [anon_sym_u8_SQUOTE] = ACTIONS(2601), + [anon_sym_SQUOTE] = ACTIONS(2601), + [anon_sym_L_DQUOTE] = ACTIONS(2601), + [anon_sym_u_DQUOTE] = ACTIONS(2601), + [anon_sym_U_DQUOTE] = ACTIONS(2601), + [anon_sym_u8_DQUOTE] = ACTIONS(2601), + [anon_sym_DQUOTE] = ACTIONS(2601), + [sym_true] = ACTIONS(2599), + [sym_false] = ACTIONS(2599), + [sym_null] = ACTIONS(2599), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2599), + [anon_sym_decltype] = ACTIONS(2599), + [anon_sym_virtual] = ACTIONS(2599), + [anon_sym_typename] = ACTIONS(2599), + [anon_sym_template] = ACTIONS(2599), + [anon_sym_try] = ACTIONS(2599), + [anon_sym_delete] = ACTIONS(2599), + [anon_sym_throw] = ACTIONS(2599), + [anon_sym_co_return] = ACTIONS(2599), + [anon_sym_co_yield] = ACTIONS(2599), + [anon_sym_co_await] = ACTIONS(2599), + [anon_sym_new] = ACTIONS(2599), + [anon_sym_requires] = ACTIONS(2599), + [sym_this] = ACTIONS(2599), + [sym_nullptr] = ACTIONS(2599), + [sym_raw_string_literal] = ACTIONS(2601), }, - [1620] = { - [sym__expression] = STATE(3869), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [1148] = { + [sym_identifier] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1621] = { - [sym__expression] = STATE(3594), - [sym_conditional_expression] = STATE(3881), - [sym_assignment_expression] = STATE(3881), - [sym_pointer_expression] = STATE(2977), - [sym_unary_expression] = STATE(3881), - [sym_binary_expression] = STATE(3881), - [sym_update_expression] = STATE(3881), - [sym_cast_expression] = STATE(3881), - [sym_sizeof_expression] = STATE(3881), - [sym_subscript_expression] = STATE(2977), - [sym_call_expression] = STATE(2977), - [sym_field_expression] = STATE(2977), - [sym_compound_literal_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(2977), - [sym_char_literal] = STATE(3701), - [sym_concatenated_string] = STATE(3701), - [sym_string_literal] = STATE(3219), - [sym__class_name] = STATE(6063), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3881), - [sym_co_await_expression] = STATE(3881), - [sym_new_expression] = STATE(3881), - [sym_delete_expression] = STATE(3881), - [sym_requires_clause] = STATE(3881), - [sym_requires_expression] = STATE(3881), - [sym_lambda_expression] = STATE(3881), - [sym_lambda_capture_specifier] = STATE(4519), - [sym_fold_expression] = STATE(3881), - [sym_parameter_pack_expansion] = STATE(3881), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4642), - [sym_qualified_identifier] = STATE(2977), - [sym_qualified_type_identifier] = STATE(6063), - [sym_user_defined_literal] = STATE(3881), - [sym_identifier] = ACTIONS(3035), - [anon_sym_LPAREN2] = ACTIONS(2531), - [anon_sym_BANG] = ACTIONS(2533), - [anon_sym_TILDE] = ACTIONS(2533), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_STAR] = ACTIONS(2537), - [anon_sym_AMP] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(2539), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(2845), - [anon_sym_DASH_DASH] = ACTIONS(2553), - [anon_sym_PLUS_PLUS] = ACTIONS(2553), - [anon_sym_sizeof] = ACTIONS(2555), - [sym_number_literal] = ACTIONS(2557), - [anon_sym_L_SQUOTE] = ACTIONS(2559), - [anon_sym_u_SQUOTE] = ACTIONS(2559), - [anon_sym_U_SQUOTE] = ACTIONS(2559), - [anon_sym_u8_SQUOTE] = ACTIONS(2559), - [anon_sym_SQUOTE] = ACTIONS(2559), + [1149] = { + [sym_identifier] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), [anon_sym_L_DQUOTE] = ACTIONS(2561), [anon_sym_u_DQUOTE] = ACTIONS(2561), [anon_sym_U_DQUOTE] = ACTIONS(2561), [anon_sym_u8_DQUOTE] = ACTIONS(2561), [anon_sym_DQUOTE] = ACTIONS(2561), - [sym_true] = ACTIONS(2563), - [sym_false] = ACTIONS(2563), - [sym_null] = ACTIONS(2563), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2573), - [anon_sym_co_await] = ACTIONS(2575), - [anon_sym_new] = ACTIONS(2577), - [anon_sym_requires] = ACTIONS(2579), - [sym_this] = ACTIONS(2563), - [sym_nullptr] = ACTIONS(2563), - [sym_raw_string_literal] = ACTIONS(2581), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1622] = { - [sym__expression] = STATE(3117), - [sym_conditional_expression] = STATE(2541), - [sym_assignment_expression] = STATE(2541), - [sym_pointer_expression] = STATE(2531), - [sym_unary_expression] = STATE(2541), - [sym_binary_expression] = STATE(2541), - [sym_update_expression] = STATE(2541), - [sym_cast_expression] = STATE(2541), - [sym_sizeof_expression] = STATE(2541), - [sym_subscript_expression] = STATE(2531), - [sym_call_expression] = STATE(2531), - [sym_field_expression] = STATE(2531), - [sym_compound_literal_expression] = STATE(2541), - [sym_parenthesized_expression] = STATE(2531), - [sym_char_literal] = STATE(2481), - [sym_concatenated_string] = STATE(2481), - [sym_string_literal] = STATE(2063), - [sym__class_name] = STATE(6239), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2541), - [sym_co_await_expression] = STATE(2541), - [sym_new_expression] = STATE(2541), - [sym_delete_expression] = STATE(2541), - [sym_requires_clause] = STATE(2541), - [sym_requires_expression] = STATE(2541), - [sym_lambda_expression] = STATE(2541), - [sym_lambda_capture_specifier] = STATE(4508), - [sym_fold_expression] = STATE(2541), - [sym_parameter_pack_expansion] = STATE(2541), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2531), - [sym_qualified_type_identifier] = STATE(6239), - [sym_user_defined_literal] = STATE(2541), - [sym_identifier] = ACTIONS(2306), - [anon_sym_LPAREN2] = ACTIONS(2891), - [anon_sym_BANG] = ACTIONS(2895), - [anon_sym_TILDE] = ACTIONS(2895), - [anon_sym_DASH] = ACTIONS(2893), - [anon_sym_PLUS] = ACTIONS(2893), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(2899), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(2901), - [anon_sym_PLUS_PLUS] = ACTIONS(2901), - [anon_sym_sizeof] = ACTIONS(2903), - [sym_number_literal] = ACTIONS(2326), - [anon_sym_L_SQUOTE] = ACTIONS(2328), - [anon_sym_u_SQUOTE] = ACTIONS(2328), - [anon_sym_U_SQUOTE] = ACTIONS(2328), - [anon_sym_u8_SQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2328), - [anon_sym_L_DQUOTE] = ACTIONS(2330), - [anon_sym_u_DQUOTE] = ACTIONS(2330), - [anon_sym_U_DQUOTE] = ACTIONS(2330), - [anon_sym_u8_DQUOTE] = ACTIONS(2330), - [anon_sym_DQUOTE] = ACTIONS(2330), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2905), - [anon_sym_co_await] = ACTIONS(2907), - [anon_sym_new] = ACTIONS(2909), - [anon_sym_requires] = ACTIONS(2340), - [sym_this] = ACTIONS(2332), - [sym_nullptr] = ACTIONS(2332), - [sym_raw_string_literal] = ACTIONS(2342), + [1150] = { + [sym_identifier] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1623] = { - [sym__expression] = STATE(3592), - [sym_conditional_expression] = STATE(3881), - [sym_assignment_expression] = STATE(3881), - [sym_pointer_expression] = STATE(2977), - [sym_unary_expression] = STATE(3881), - [sym_binary_expression] = STATE(3881), - [sym_update_expression] = STATE(3881), - [sym_cast_expression] = STATE(3881), - [sym_sizeof_expression] = STATE(3881), - [sym_subscript_expression] = STATE(2977), - [sym_call_expression] = STATE(2977), - [sym_field_expression] = STATE(2977), - [sym_compound_literal_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(2977), - [sym_char_literal] = STATE(3701), - [sym_concatenated_string] = STATE(3701), - [sym_string_literal] = STATE(3219), - [sym__class_name] = STATE(6063), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3881), - [sym_co_await_expression] = STATE(3881), - [sym_new_expression] = STATE(3881), - [sym_delete_expression] = STATE(3881), - [sym_requires_clause] = STATE(3881), - [sym_requires_expression] = STATE(3881), - [sym_lambda_expression] = STATE(3881), - [sym_lambda_capture_specifier] = STATE(4519), - [sym_fold_expression] = STATE(3881), - [sym_parameter_pack_expansion] = STATE(3881), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4642), - [sym_qualified_identifier] = STATE(2977), - [sym_qualified_type_identifier] = STATE(6063), - [sym_user_defined_literal] = STATE(3881), - [sym_identifier] = ACTIONS(3035), - [anon_sym_LPAREN2] = ACTIONS(2531), - [anon_sym_BANG] = ACTIONS(2533), - [anon_sym_TILDE] = ACTIONS(2533), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_STAR] = ACTIONS(2537), - [anon_sym_AMP] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(2539), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(2845), - [anon_sym_DASH_DASH] = ACTIONS(2553), - [anon_sym_PLUS_PLUS] = ACTIONS(2553), - [anon_sym_sizeof] = ACTIONS(2555), - [sym_number_literal] = ACTIONS(2557), - [anon_sym_L_SQUOTE] = ACTIONS(2559), - [anon_sym_u_SQUOTE] = ACTIONS(2559), - [anon_sym_U_SQUOTE] = ACTIONS(2559), - [anon_sym_u8_SQUOTE] = ACTIONS(2559), - [anon_sym_SQUOTE] = ACTIONS(2559), + [1151] = { + [sym_identifier] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), [anon_sym_L_DQUOTE] = ACTIONS(2561), [anon_sym_u_DQUOTE] = ACTIONS(2561), [anon_sym_U_DQUOTE] = ACTIONS(2561), [anon_sym_u8_DQUOTE] = ACTIONS(2561), [anon_sym_DQUOTE] = ACTIONS(2561), - [sym_true] = ACTIONS(2563), - [sym_false] = ACTIONS(2563), - [sym_null] = ACTIONS(2563), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2573), - [anon_sym_co_await] = ACTIONS(2575), - [anon_sym_new] = ACTIONS(2577), - [anon_sym_requires] = ACTIONS(2579), - [sym_this] = ACTIONS(2563), - [sym_nullptr] = ACTIONS(2563), - [sym_raw_string_literal] = ACTIONS(2581), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1624] = { - [sym__expression] = STATE(3641), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [1152] = { + [sym_identifier] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2597), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1625] = { - [sym__expression] = STATE(3590), - [sym_conditional_expression] = STATE(3881), - [sym_assignment_expression] = STATE(3881), - [sym_pointer_expression] = STATE(2977), - [sym_unary_expression] = STATE(3881), - [sym_binary_expression] = STATE(3881), - [sym_update_expression] = STATE(3881), - [sym_cast_expression] = STATE(3881), - [sym_sizeof_expression] = STATE(3881), - [sym_subscript_expression] = STATE(2977), - [sym_call_expression] = STATE(2977), - [sym_field_expression] = STATE(2977), - [sym_compound_literal_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(2977), - [sym_char_literal] = STATE(3701), - [sym_concatenated_string] = STATE(3701), - [sym_string_literal] = STATE(3219), - [sym__class_name] = STATE(6063), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3881), - [sym_co_await_expression] = STATE(3881), - [sym_new_expression] = STATE(3881), - [sym_delete_expression] = STATE(3881), - [sym_requires_clause] = STATE(3881), - [sym_requires_expression] = STATE(3881), - [sym_lambda_expression] = STATE(3881), - [sym_lambda_capture_specifier] = STATE(4519), - [sym_fold_expression] = STATE(3881), - [sym_parameter_pack_expansion] = STATE(3881), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4642), - [sym_qualified_identifier] = STATE(2977), - [sym_qualified_type_identifier] = STATE(6063), - [sym_user_defined_literal] = STATE(3881), - [sym_identifier] = ACTIONS(3035), - [anon_sym_LPAREN2] = ACTIONS(2531), - [anon_sym_BANG] = ACTIONS(2533), - [anon_sym_TILDE] = ACTIONS(2533), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_STAR] = ACTIONS(2537), - [anon_sym_AMP] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(2539), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(2845), - [anon_sym_DASH_DASH] = ACTIONS(2553), - [anon_sym_PLUS_PLUS] = ACTIONS(2553), - [anon_sym_sizeof] = ACTIONS(2555), - [sym_number_literal] = ACTIONS(2557), - [anon_sym_L_SQUOTE] = ACTIONS(2559), - [anon_sym_u_SQUOTE] = ACTIONS(2559), - [anon_sym_U_SQUOTE] = ACTIONS(2559), - [anon_sym_u8_SQUOTE] = ACTIONS(2559), - [anon_sym_SQUOTE] = ACTIONS(2559), + [1153] = { + [sym_identifier] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), [anon_sym_L_DQUOTE] = ACTIONS(2561), [anon_sym_u_DQUOTE] = ACTIONS(2561), [anon_sym_U_DQUOTE] = ACTIONS(2561), [anon_sym_u8_DQUOTE] = ACTIONS(2561), [anon_sym_DQUOTE] = ACTIONS(2561), - [sym_true] = ACTIONS(2563), - [sym_false] = ACTIONS(2563), - [sym_null] = ACTIONS(2563), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2573), - [anon_sym_co_await] = ACTIONS(2575), - [anon_sym_new] = ACTIONS(2577), - [anon_sym_requires] = ACTIONS(2579), - [sym_this] = ACTIONS(2563), - [sym_nullptr] = ACTIONS(2563), - [sym_raw_string_literal] = ACTIONS(2581), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1626] = { - [sym__expression] = STATE(3026), - [sym_conditional_expression] = STATE(2541), - [sym_assignment_expression] = STATE(2541), - [sym_pointer_expression] = STATE(2531), - [sym_unary_expression] = STATE(2541), - [sym_binary_expression] = STATE(2541), - [sym_update_expression] = STATE(2541), - [sym_cast_expression] = STATE(2541), - [sym_sizeof_expression] = STATE(2541), - [sym_subscript_expression] = STATE(2531), - [sym_call_expression] = STATE(2531), - [sym_field_expression] = STATE(2531), - [sym_compound_literal_expression] = STATE(2541), - [sym_parenthesized_expression] = STATE(2531), - [sym_char_literal] = STATE(2481), - [sym_concatenated_string] = STATE(2481), - [sym_string_literal] = STATE(2063), - [sym__class_name] = STATE(6239), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2541), - [sym_co_await_expression] = STATE(2541), - [sym_new_expression] = STATE(2541), - [sym_delete_expression] = STATE(2541), - [sym_requires_clause] = STATE(2541), - [sym_requires_expression] = STATE(2541), - [sym_lambda_expression] = STATE(2541), - [sym_lambda_capture_specifier] = STATE(4508), - [sym_fold_expression] = STATE(2541), - [sym_parameter_pack_expansion] = STATE(2541), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2531), - [sym_qualified_type_identifier] = STATE(6239), - [sym_user_defined_literal] = STATE(2541), - [sym_identifier] = ACTIONS(2306), - [anon_sym_LPAREN2] = ACTIONS(2891), - [anon_sym_BANG] = ACTIONS(2895), - [anon_sym_TILDE] = ACTIONS(2895), - [anon_sym_DASH] = ACTIONS(2893), - [anon_sym_PLUS] = ACTIONS(2893), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(2899), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(2901), - [anon_sym_PLUS_PLUS] = ACTIONS(2901), - [anon_sym_sizeof] = ACTIONS(2903), - [sym_number_literal] = ACTIONS(2326), - [anon_sym_L_SQUOTE] = ACTIONS(2328), - [anon_sym_u_SQUOTE] = ACTIONS(2328), - [anon_sym_U_SQUOTE] = ACTIONS(2328), - [anon_sym_u8_SQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2328), - [anon_sym_L_DQUOTE] = ACTIONS(2330), - [anon_sym_u_DQUOTE] = ACTIONS(2330), - [anon_sym_U_DQUOTE] = ACTIONS(2330), - [anon_sym_u8_DQUOTE] = ACTIONS(2330), - [anon_sym_DQUOTE] = ACTIONS(2330), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2905), - [anon_sym_co_await] = ACTIONS(2907), - [anon_sym_new] = ACTIONS(2909), - [anon_sym_requires] = ACTIONS(2340), - [sym_this] = ACTIONS(2332), - [sym_nullptr] = ACTIONS(2332), - [sym_raw_string_literal] = ACTIONS(2342), + [1154] = { + [sym_identifier] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2597), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1627] = { - [sym__expression] = STATE(3784), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(3196), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(3196), - [sym_call_expression] = STATE(3196), - [sym_field_expression] = STATE(3196), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(3196), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(3196), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN2] = ACTIONS(3061), - [anon_sym_BANG] = ACTIONS(3065), - [anon_sym_TILDE] = ACTIONS(3065), - [anon_sym_DASH] = ACTIONS(3063), - [anon_sym_PLUS] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(3069), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3071), - [anon_sym_PLUS_PLUS] = ACTIONS(3071), - [anon_sym_sizeof] = ACTIONS(3073), + [1155] = { + [sym_type_qualifier] = STATE(2972), + [sym__expression] = STATE(3946), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3001), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3001), + [sym_call_expression] = STATE(3001), + [sym_field_expression] = STATE(3001), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3001), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3001), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_type_definition_repeat1] = STATE(2972), + [sym_identifier] = ACTIONS(3085), + [anon_sym_LPAREN2] = ACTIONS(3087), + [anon_sym_BANG] = ACTIONS(3091), + [anon_sym_TILDE] = ACTIONS(3091), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(3190), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_RBRACK] = ACTIONS(3192), + [anon_sym_const] = ACTIONS(3180), + [anon_sym_volatile] = ACTIONS(3180), + [anon_sym_restrict] = ACTIONS(3180), + [anon_sym__Atomic] = ACTIONS(3180), + [anon_sym_mutable] = ACTIONS(3180), + [anon_sym_constexpr] = ACTIONS(3180), + [anon_sym_constinit] = ACTIONS(3180), + [anon_sym_consteval] = ACTIONS(3180), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3089), + [anon_sym_compl] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3095), + [anon_sym_PLUS_PLUS] = ACTIONS(3095), + [anon_sym_sizeof] = ACTIONS(3097), [sym_number_literal] = ACTIONS(97), [anon_sym_L_SQUOTE] = ACTIONS(99), [anon_sym_u_SQUOTE] = ACTIONS(99), @@ -194414,137 +162441,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3075), - [anon_sym_co_await] = ACTIONS(3077), - [anon_sym_new] = ACTIONS(3079), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3099), + [anon_sym_co_await] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3103), [anon_sym_requires] = ACTIONS(141), [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [1628] = { - [sym__expression] = STATE(3565), - [sym_conditional_expression] = STATE(3881), - [sym_assignment_expression] = STATE(3881), - [sym_pointer_expression] = STATE(2977), - [sym_unary_expression] = STATE(3881), - [sym_binary_expression] = STATE(3881), - [sym_update_expression] = STATE(3881), - [sym_cast_expression] = STATE(3881), - [sym_sizeof_expression] = STATE(3881), - [sym_subscript_expression] = STATE(2977), - [sym_call_expression] = STATE(2977), - [sym_field_expression] = STATE(2977), - [sym_compound_literal_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(2977), - [sym_char_literal] = STATE(3701), - [sym_concatenated_string] = STATE(3701), - [sym_string_literal] = STATE(3219), - [sym__class_name] = STATE(6063), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3881), - [sym_co_await_expression] = STATE(3881), - [sym_new_expression] = STATE(3881), - [sym_delete_expression] = STATE(3881), - [sym_requires_clause] = STATE(3881), - [sym_requires_expression] = STATE(3881), - [sym_lambda_expression] = STATE(3881), - [sym_lambda_capture_specifier] = STATE(4519), - [sym_fold_expression] = STATE(3881), - [sym_parameter_pack_expansion] = STATE(3881), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4642), - [sym_qualified_identifier] = STATE(2977), - [sym_qualified_type_identifier] = STATE(6063), - [sym_user_defined_literal] = STATE(3881), - [sym_identifier] = ACTIONS(3035), - [anon_sym_LPAREN2] = ACTIONS(2531), - [anon_sym_BANG] = ACTIONS(2533), - [anon_sym_TILDE] = ACTIONS(2533), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_STAR] = ACTIONS(2537), - [anon_sym_AMP] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(2539), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(2845), - [anon_sym_DASH_DASH] = ACTIONS(2553), - [anon_sym_PLUS_PLUS] = ACTIONS(2553), - [anon_sym_sizeof] = ACTIONS(2555), - [sym_number_literal] = ACTIONS(2557), - [anon_sym_L_SQUOTE] = ACTIONS(2559), - [anon_sym_u_SQUOTE] = ACTIONS(2559), - [anon_sym_U_SQUOTE] = ACTIONS(2559), - [anon_sym_u8_SQUOTE] = ACTIONS(2559), - [anon_sym_SQUOTE] = ACTIONS(2559), + [1156] = { + [sym_identifier] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), [anon_sym_L_DQUOTE] = ACTIONS(2561), [anon_sym_u_DQUOTE] = ACTIONS(2561), [anon_sym_U_DQUOTE] = ACTIONS(2561), [anon_sym_u8_DQUOTE] = ACTIONS(2561), [anon_sym_DQUOTE] = ACTIONS(2561), - [sym_true] = ACTIONS(2563), - [sym_false] = ACTIONS(2563), - [sym_null] = ACTIONS(2563), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2573), - [anon_sym_co_await] = ACTIONS(2575), - [anon_sym_new] = ACTIONS(2577), - [anon_sym_requires] = ACTIONS(2579), - [sym_this] = ACTIONS(2563), - [sym_nullptr] = ACTIONS(2563), - [sym_raw_string_literal] = ACTIONS(2581), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1629] = { - [sym__expression] = STATE(3890), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), + [1157] = { + [sym_type_qualifier] = STATE(1155), + [sym__expression] = STATE(3955), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3001), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3001), + [sym_call_expression] = STATE(3001), + [sym_field_expression] = STATE(3001), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3001), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3001), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_type_definition_repeat1] = STATE(1155), + [sym_identifier] = ACTIONS(3085), + [anon_sym_LPAREN2] = ACTIONS(3087), + [anon_sym_BANG] = ACTIONS(3091), + [anon_sym_TILDE] = ACTIONS(3091), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(3194), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_RBRACK] = ACTIONS(3196), + [anon_sym_const] = ACTIONS(3180), + [anon_sym_volatile] = ACTIONS(3180), + [anon_sym_restrict] = ACTIONS(3180), + [anon_sym__Atomic] = ACTIONS(3180), + [anon_sym_mutable] = ACTIONS(3180), + [anon_sym_constexpr] = ACTIONS(3180), + [anon_sym_constinit] = ACTIONS(3180), + [anon_sym_consteval] = ACTIONS(3180), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3089), + [anon_sym_compl] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3095), + [anon_sym_PLUS_PLUS] = ACTIONS(3095), + [anon_sym_sizeof] = ACTIONS(3097), [sym_number_literal] = ACTIONS(97), [anon_sym_L_SQUOTE] = ACTIONS(99), [anon_sym_u_SQUOTE] = ACTIONS(99), @@ -194560,64 +162613,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3099), + [anon_sym_co_await] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3103), [anon_sym_requires] = ACTIONS(141), [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [1630] = { - [sym__expression] = STATE(3472), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), + [1158] = { + [sym_identifier] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), + }, + [1159] = { + [sym_type_qualifier] = STATE(1233), + [sym__expression] = STATE(3861), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3001), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3001), + [sym_call_expression] = STATE(3001), + [sym_field_expression] = STATE(3001), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3001), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3001), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_type_definition_repeat1] = STATE(1233), + [sym_identifier] = ACTIONS(3085), + [anon_sym_LPAREN2] = ACTIONS(3087), + [anon_sym_BANG] = ACTIONS(3091), + [anon_sym_TILDE] = ACTIONS(3091), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(3198), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_RBRACK] = ACTIONS(3200), + [anon_sym_const] = ACTIONS(3180), + [anon_sym_volatile] = ACTIONS(3180), + [anon_sym_restrict] = ACTIONS(3180), + [anon_sym__Atomic] = ACTIONS(3180), + [anon_sym_mutable] = ACTIONS(3180), + [anon_sym_constexpr] = ACTIONS(3180), + [anon_sym_constinit] = ACTIONS(3180), + [anon_sym_consteval] = ACTIONS(3180), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3089), + [anon_sym_compl] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3095), + [anon_sym_PLUS_PLUS] = ACTIONS(3095), + [anon_sym_sizeof] = ACTIONS(3097), [sym_number_literal] = ACTIONS(97), [anon_sym_L_SQUOTE] = ACTIONS(99), [anon_sym_u_SQUOTE] = ACTIONS(99), @@ -194633,210 +162785,851 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3099), + [anon_sym_co_await] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3103), [anon_sym_requires] = ACTIONS(141), [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [1631] = { - [sym__expression] = STATE(3440), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2981), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2981), - [sym_call_expression] = STATE(2981), - [sym_field_expression] = STATE(2981), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2981), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2981), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3039), - [anon_sym_LPAREN2] = ACTIONS(3041), - [anon_sym_BANG] = ACTIONS(3045), - [anon_sym_TILDE] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(3047), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3049), - [anon_sym_PLUS_PLUS] = ACTIONS(3049), - [anon_sym_sizeof] = ACTIONS(3051), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [1160] = { + [sym_identifier] = ACTIONS(2489), + [anon_sym_LPAREN2] = ACTIONS(2491), + [anon_sym_BANG] = ACTIONS(2491), + [anon_sym_TILDE] = ACTIONS(2491), + [anon_sym_DASH] = ACTIONS(2489), + [anon_sym_PLUS] = ACTIONS(2489), + [anon_sym_STAR] = ACTIONS(2491), + [anon_sym_AMP] = ACTIONS(2491), + [anon_sym_SEMI] = ACTIONS(2491), + [anon_sym_typedef] = ACTIONS(2489), + [anon_sym_extern] = ACTIONS(2489), + [anon_sym___attribute__] = ACTIONS(2489), + [anon_sym_COLON_COLON] = ACTIONS(2491), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2491), + [anon_sym___declspec] = ACTIONS(2489), + [anon_sym_LBRACE] = ACTIONS(2491), + [anon_sym_LBRACK] = ACTIONS(2489), + [anon_sym_static] = ACTIONS(2489), + [anon_sym_register] = ACTIONS(2489), + [anon_sym_inline] = ACTIONS(2489), + [anon_sym_thread_local] = ACTIONS(2489), + [anon_sym_const] = ACTIONS(2489), + [anon_sym_volatile] = ACTIONS(2489), + [anon_sym_restrict] = ACTIONS(2489), + [anon_sym__Atomic] = ACTIONS(2489), + [anon_sym_mutable] = ACTIONS(2489), + [anon_sym_constexpr] = ACTIONS(2489), + [anon_sym_constinit] = ACTIONS(2489), + [anon_sym_consteval] = ACTIONS(2489), + [anon_sym_signed] = ACTIONS(2489), + [anon_sym_unsigned] = ACTIONS(2489), + [anon_sym_long] = ACTIONS(2489), + [anon_sym_short] = ACTIONS(2489), + [sym_primitive_type] = ACTIONS(2489), + [anon_sym_enum] = ACTIONS(2489), + [anon_sym_class] = ACTIONS(2489), + [anon_sym_struct] = ACTIONS(2489), + [anon_sym_union] = ACTIONS(2489), + [anon_sym_if] = ACTIONS(2489), + [anon_sym_else] = ACTIONS(2489), + [anon_sym_switch] = ACTIONS(2489), + [anon_sym_while] = ACTIONS(2489), + [anon_sym_do] = ACTIONS(2489), + [anon_sym_for] = ACTIONS(2489), + [anon_sym_return] = ACTIONS(2489), + [anon_sym_break] = ACTIONS(2489), + [anon_sym_continue] = ACTIONS(2489), + [anon_sym_goto] = ACTIONS(2489), + [anon_sym_not] = ACTIONS(2489), + [anon_sym_compl] = ACTIONS(2489), + [anon_sym_DASH_DASH] = ACTIONS(2491), + [anon_sym_PLUS_PLUS] = ACTIONS(2491), + [anon_sym_sizeof] = ACTIONS(2489), + [sym_number_literal] = ACTIONS(2491), + [anon_sym_L_SQUOTE] = ACTIONS(2491), + [anon_sym_u_SQUOTE] = ACTIONS(2491), + [anon_sym_U_SQUOTE] = ACTIONS(2491), + [anon_sym_u8_SQUOTE] = ACTIONS(2491), + [anon_sym_SQUOTE] = ACTIONS(2491), + [anon_sym_L_DQUOTE] = ACTIONS(2491), + [anon_sym_u_DQUOTE] = ACTIONS(2491), + [anon_sym_U_DQUOTE] = ACTIONS(2491), + [anon_sym_u8_DQUOTE] = ACTIONS(2491), + [anon_sym_DQUOTE] = ACTIONS(2491), + [sym_true] = ACTIONS(2489), + [sym_false] = ACTIONS(2489), + [sym_null] = ACTIONS(2489), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2489), + [anon_sym_decltype] = ACTIONS(2489), + [anon_sym_virtual] = ACTIONS(2489), + [anon_sym_typename] = ACTIONS(2489), + [anon_sym_template] = ACTIONS(2489), + [anon_sym_try] = ACTIONS(2489), + [anon_sym_delete] = ACTIONS(2489), + [anon_sym_throw] = ACTIONS(2489), + [anon_sym_co_return] = ACTIONS(2489), + [anon_sym_co_yield] = ACTIONS(2489), + [anon_sym_co_await] = ACTIONS(2489), + [anon_sym_new] = ACTIONS(2489), + [anon_sym_requires] = ACTIONS(2489), + [sym_this] = ACTIONS(2489), + [sym_nullptr] = ACTIONS(2489), + [sym_raw_string_literal] = ACTIONS(2491), + }, + [1161] = { + [sym_identifier] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2597), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3053), - [anon_sym_co_await] = ACTIONS(3055), - [anon_sym_new] = ACTIONS(3057), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1632] = { - [sym__expression] = STATE(3805), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [1162] = { + [sym_identifier] = ACTIONS(2537), + [anon_sym_LPAREN2] = ACTIONS(2539), + [anon_sym_BANG] = ACTIONS(2539), + [anon_sym_TILDE] = ACTIONS(2539), + [anon_sym_DASH] = ACTIONS(2537), + [anon_sym_PLUS] = ACTIONS(2537), + [anon_sym_STAR] = ACTIONS(2539), + [anon_sym_AMP] = ACTIONS(2539), + [anon_sym_SEMI] = ACTIONS(2539), + [anon_sym_typedef] = ACTIONS(2537), + [anon_sym_extern] = ACTIONS(2537), + [anon_sym___attribute__] = ACTIONS(2537), + [anon_sym_COLON_COLON] = ACTIONS(2539), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2539), + [anon_sym___declspec] = ACTIONS(2537), + [anon_sym_LBRACE] = ACTIONS(2539), + [anon_sym_LBRACK] = ACTIONS(2537), + [anon_sym_static] = ACTIONS(2537), + [anon_sym_register] = ACTIONS(2537), + [anon_sym_inline] = ACTIONS(2537), + [anon_sym_thread_local] = ACTIONS(2537), + [anon_sym_const] = ACTIONS(2537), + [anon_sym_volatile] = ACTIONS(2537), + [anon_sym_restrict] = ACTIONS(2537), + [anon_sym__Atomic] = ACTIONS(2537), + [anon_sym_mutable] = ACTIONS(2537), + [anon_sym_constexpr] = ACTIONS(2537), + [anon_sym_constinit] = ACTIONS(2537), + [anon_sym_consteval] = ACTIONS(2537), + [anon_sym_signed] = ACTIONS(2537), + [anon_sym_unsigned] = ACTIONS(2537), + [anon_sym_long] = ACTIONS(2537), + [anon_sym_short] = ACTIONS(2537), + [sym_primitive_type] = ACTIONS(2537), + [anon_sym_enum] = ACTIONS(2537), + [anon_sym_class] = ACTIONS(2537), + [anon_sym_struct] = ACTIONS(2537), + [anon_sym_union] = ACTIONS(2537), + [anon_sym_if] = ACTIONS(2537), + [anon_sym_else] = ACTIONS(2537), + [anon_sym_switch] = ACTIONS(2537), + [anon_sym_while] = ACTIONS(2537), + [anon_sym_do] = ACTIONS(2537), + [anon_sym_for] = ACTIONS(2537), + [anon_sym_return] = ACTIONS(2537), + [anon_sym_break] = ACTIONS(2537), + [anon_sym_continue] = ACTIONS(2537), + [anon_sym_goto] = ACTIONS(2537), + [anon_sym_not] = ACTIONS(2537), + [anon_sym_compl] = ACTIONS(2537), + [anon_sym_DASH_DASH] = ACTIONS(2539), + [anon_sym_PLUS_PLUS] = ACTIONS(2539), + [anon_sym_sizeof] = ACTIONS(2537), + [sym_number_literal] = ACTIONS(2539), + [anon_sym_L_SQUOTE] = ACTIONS(2539), + [anon_sym_u_SQUOTE] = ACTIONS(2539), + [anon_sym_U_SQUOTE] = ACTIONS(2539), + [anon_sym_u8_SQUOTE] = ACTIONS(2539), + [anon_sym_SQUOTE] = ACTIONS(2539), + [anon_sym_L_DQUOTE] = ACTIONS(2539), + [anon_sym_u_DQUOTE] = ACTIONS(2539), + [anon_sym_U_DQUOTE] = ACTIONS(2539), + [anon_sym_u8_DQUOTE] = ACTIONS(2539), + [anon_sym_DQUOTE] = ACTIONS(2539), + [sym_true] = ACTIONS(2537), + [sym_false] = ACTIONS(2537), + [sym_null] = ACTIONS(2537), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2537), + [anon_sym_decltype] = ACTIONS(2537), + [anon_sym_virtual] = ACTIONS(2537), + [anon_sym_typename] = ACTIONS(2537), + [anon_sym_template] = ACTIONS(2537), + [anon_sym_try] = ACTIONS(2537), + [anon_sym_delete] = ACTIONS(2537), + [anon_sym_throw] = ACTIONS(2537), + [anon_sym_co_return] = ACTIONS(2537), + [anon_sym_co_yield] = ACTIONS(2537), + [anon_sym_co_await] = ACTIONS(2537), + [anon_sym_new] = ACTIONS(2537), + [anon_sym_requires] = ACTIONS(2537), + [sym_this] = ACTIONS(2537), + [sym_nullptr] = ACTIONS(2537), + [sym_raw_string_literal] = ACTIONS(2539), + }, + [1163] = { + [sym_identifier] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2597), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1633] = { - [sym__expression] = STATE(3889), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(3196), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(3196), - [sym_call_expression] = STATE(3196), - [sym_field_expression] = STATE(3196), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(3196), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(3196), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN2] = ACTIONS(3061), - [anon_sym_BANG] = ACTIONS(3065), - [anon_sym_TILDE] = ACTIONS(3065), - [anon_sym_DASH] = ACTIONS(3063), - [anon_sym_PLUS] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(3069), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3071), - [anon_sym_PLUS_PLUS] = ACTIONS(3071), - [anon_sym_sizeof] = ACTIONS(3073), + [1164] = { + [sym_identifier] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2597), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), + }, + [1165] = { + [sym_identifier] = ACTIONS(2603), + [anon_sym_LPAREN2] = ACTIONS(2605), + [anon_sym_BANG] = ACTIONS(2605), + [anon_sym_TILDE] = ACTIONS(2605), + [anon_sym_DASH] = ACTIONS(2603), + [anon_sym_PLUS] = ACTIONS(2603), + [anon_sym_STAR] = ACTIONS(2605), + [anon_sym_AMP] = ACTIONS(2605), + [anon_sym_SEMI] = ACTIONS(2605), + [anon_sym_typedef] = ACTIONS(2603), + [anon_sym_extern] = ACTIONS(2603), + [anon_sym___attribute__] = ACTIONS(2603), + [anon_sym_COLON_COLON] = ACTIONS(2605), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2605), + [anon_sym___declspec] = ACTIONS(2603), + [anon_sym_LBRACE] = ACTIONS(2605), + [anon_sym_LBRACK] = ACTIONS(2603), + [anon_sym_static] = ACTIONS(2603), + [anon_sym_register] = ACTIONS(2603), + [anon_sym_inline] = ACTIONS(2603), + [anon_sym_thread_local] = ACTIONS(2603), + [anon_sym_const] = ACTIONS(2603), + [anon_sym_volatile] = ACTIONS(2603), + [anon_sym_restrict] = ACTIONS(2603), + [anon_sym__Atomic] = ACTIONS(2603), + [anon_sym_mutable] = ACTIONS(2603), + [anon_sym_constexpr] = ACTIONS(2603), + [anon_sym_constinit] = ACTIONS(2603), + [anon_sym_consteval] = ACTIONS(2603), + [anon_sym_signed] = ACTIONS(2603), + [anon_sym_unsigned] = ACTIONS(2603), + [anon_sym_long] = ACTIONS(2603), + [anon_sym_short] = ACTIONS(2603), + [sym_primitive_type] = ACTIONS(2603), + [anon_sym_enum] = ACTIONS(2603), + [anon_sym_class] = ACTIONS(2603), + [anon_sym_struct] = ACTIONS(2603), + [anon_sym_union] = ACTIONS(2603), + [anon_sym_if] = ACTIONS(2603), + [anon_sym_else] = ACTIONS(2603), + [anon_sym_switch] = ACTIONS(2603), + [anon_sym_while] = ACTIONS(2603), + [anon_sym_do] = ACTIONS(2603), + [anon_sym_for] = ACTIONS(2603), + [anon_sym_return] = ACTIONS(2603), + [anon_sym_break] = ACTIONS(2603), + [anon_sym_continue] = ACTIONS(2603), + [anon_sym_goto] = ACTIONS(2603), + [anon_sym_not] = ACTIONS(2603), + [anon_sym_compl] = ACTIONS(2603), + [anon_sym_DASH_DASH] = ACTIONS(2605), + [anon_sym_PLUS_PLUS] = ACTIONS(2605), + [anon_sym_sizeof] = ACTIONS(2603), + [sym_number_literal] = ACTIONS(2605), + [anon_sym_L_SQUOTE] = ACTIONS(2605), + [anon_sym_u_SQUOTE] = ACTIONS(2605), + [anon_sym_U_SQUOTE] = ACTIONS(2605), + [anon_sym_u8_SQUOTE] = ACTIONS(2605), + [anon_sym_SQUOTE] = ACTIONS(2605), + [anon_sym_L_DQUOTE] = ACTIONS(2605), + [anon_sym_u_DQUOTE] = ACTIONS(2605), + [anon_sym_U_DQUOTE] = ACTIONS(2605), + [anon_sym_u8_DQUOTE] = ACTIONS(2605), + [anon_sym_DQUOTE] = ACTIONS(2605), + [sym_true] = ACTIONS(2603), + [sym_false] = ACTIONS(2603), + [sym_null] = ACTIONS(2603), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2603), + [anon_sym_decltype] = ACTIONS(2603), + [anon_sym_virtual] = ACTIONS(2603), + [anon_sym_typename] = ACTIONS(2603), + [anon_sym_template] = ACTIONS(2603), + [anon_sym_try] = ACTIONS(2603), + [anon_sym_delete] = ACTIONS(2603), + [anon_sym_throw] = ACTIONS(2603), + [anon_sym_co_return] = ACTIONS(2603), + [anon_sym_co_yield] = ACTIONS(2603), + [anon_sym_co_await] = ACTIONS(2603), + [anon_sym_new] = ACTIONS(2603), + [anon_sym_requires] = ACTIONS(2603), + [sym_this] = ACTIONS(2603), + [sym_nullptr] = ACTIONS(2603), + [sym_raw_string_literal] = ACTIONS(2605), + }, + [1166] = { + [sym_identifier] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2597), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), + }, + [1167] = { + [sym_identifier] = ACTIONS(2607), + [anon_sym_LPAREN2] = ACTIONS(2609), + [anon_sym_BANG] = ACTIONS(2609), + [anon_sym_TILDE] = ACTIONS(2609), + [anon_sym_DASH] = ACTIONS(2607), + [anon_sym_PLUS] = ACTIONS(2607), + [anon_sym_STAR] = ACTIONS(2609), + [anon_sym_AMP] = ACTIONS(2609), + [anon_sym_SEMI] = ACTIONS(2609), + [anon_sym_typedef] = ACTIONS(2607), + [anon_sym_extern] = ACTIONS(2607), + [anon_sym___attribute__] = ACTIONS(2607), + [anon_sym_COLON_COLON] = ACTIONS(2609), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2609), + [anon_sym___declspec] = ACTIONS(2607), + [anon_sym_LBRACE] = ACTIONS(2609), + [anon_sym_LBRACK] = ACTIONS(2607), + [anon_sym_static] = ACTIONS(2607), + [anon_sym_register] = ACTIONS(2607), + [anon_sym_inline] = ACTIONS(2607), + [anon_sym_thread_local] = ACTIONS(2607), + [anon_sym_const] = ACTIONS(2607), + [anon_sym_volatile] = ACTIONS(2607), + [anon_sym_restrict] = ACTIONS(2607), + [anon_sym__Atomic] = ACTIONS(2607), + [anon_sym_mutable] = ACTIONS(2607), + [anon_sym_constexpr] = ACTIONS(2607), + [anon_sym_constinit] = ACTIONS(2607), + [anon_sym_consteval] = ACTIONS(2607), + [anon_sym_signed] = ACTIONS(2607), + [anon_sym_unsigned] = ACTIONS(2607), + [anon_sym_long] = ACTIONS(2607), + [anon_sym_short] = ACTIONS(2607), + [sym_primitive_type] = ACTIONS(2607), + [anon_sym_enum] = ACTIONS(2607), + [anon_sym_class] = ACTIONS(2607), + [anon_sym_struct] = ACTIONS(2607), + [anon_sym_union] = ACTIONS(2607), + [anon_sym_if] = ACTIONS(2607), + [anon_sym_else] = ACTIONS(2607), + [anon_sym_switch] = ACTIONS(2607), + [anon_sym_while] = ACTIONS(2607), + [anon_sym_do] = ACTIONS(2607), + [anon_sym_for] = ACTIONS(2607), + [anon_sym_return] = ACTIONS(2607), + [anon_sym_break] = ACTIONS(2607), + [anon_sym_continue] = ACTIONS(2607), + [anon_sym_goto] = ACTIONS(2607), + [anon_sym_not] = ACTIONS(2607), + [anon_sym_compl] = ACTIONS(2607), + [anon_sym_DASH_DASH] = ACTIONS(2609), + [anon_sym_PLUS_PLUS] = ACTIONS(2609), + [anon_sym_sizeof] = ACTIONS(2607), + [sym_number_literal] = ACTIONS(2609), + [anon_sym_L_SQUOTE] = ACTIONS(2609), + [anon_sym_u_SQUOTE] = ACTIONS(2609), + [anon_sym_U_SQUOTE] = ACTIONS(2609), + [anon_sym_u8_SQUOTE] = ACTIONS(2609), + [anon_sym_SQUOTE] = ACTIONS(2609), + [anon_sym_L_DQUOTE] = ACTIONS(2609), + [anon_sym_u_DQUOTE] = ACTIONS(2609), + [anon_sym_U_DQUOTE] = ACTIONS(2609), + [anon_sym_u8_DQUOTE] = ACTIONS(2609), + [anon_sym_DQUOTE] = ACTIONS(2609), + [sym_true] = ACTIONS(2607), + [sym_false] = ACTIONS(2607), + [sym_null] = ACTIONS(2607), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2607), + [anon_sym_decltype] = ACTIONS(2607), + [anon_sym_virtual] = ACTIONS(2607), + [anon_sym_typename] = ACTIONS(2607), + [anon_sym_template] = ACTIONS(2607), + [anon_sym_try] = ACTIONS(2607), + [anon_sym_delete] = ACTIONS(2607), + [anon_sym_throw] = ACTIONS(2607), + [anon_sym_co_return] = ACTIONS(2607), + [anon_sym_co_yield] = ACTIONS(2607), + [anon_sym_co_await] = ACTIONS(2607), + [anon_sym_new] = ACTIONS(2607), + [anon_sym_requires] = ACTIONS(2607), + [sym_this] = ACTIONS(2607), + [sym_nullptr] = ACTIONS(2607), + [sym_raw_string_literal] = ACTIONS(2609), + }, + [1168] = { + [sym_identifier] = ACTIONS(2611), + [anon_sym_LPAREN2] = ACTIONS(2613), + [anon_sym_BANG] = ACTIONS(2613), + [anon_sym_TILDE] = ACTIONS(2613), + [anon_sym_DASH] = ACTIONS(2611), + [anon_sym_PLUS] = ACTIONS(2611), + [anon_sym_STAR] = ACTIONS(2613), + [anon_sym_AMP] = ACTIONS(2613), + [anon_sym_SEMI] = ACTIONS(2613), + [anon_sym_typedef] = ACTIONS(2611), + [anon_sym_extern] = ACTIONS(2611), + [anon_sym___attribute__] = ACTIONS(2611), + [anon_sym_COLON_COLON] = ACTIONS(2613), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2613), + [anon_sym___declspec] = ACTIONS(2611), + [anon_sym_LBRACE] = ACTIONS(2613), + [anon_sym_LBRACK] = ACTIONS(2611), + [anon_sym_static] = ACTIONS(2611), + [anon_sym_register] = ACTIONS(2611), + [anon_sym_inline] = ACTIONS(2611), + [anon_sym_thread_local] = ACTIONS(2611), + [anon_sym_const] = ACTIONS(2611), + [anon_sym_volatile] = ACTIONS(2611), + [anon_sym_restrict] = ACTIONS(2611), + [anon_sym__Atomic] = ACTIONS(2611), + [anon_sym_mutable] = ACTIONS(2611), + [anon_sym_constexpr] = ACTIONS(2611), + [anon_sym_constinit] = ACTIONS(2611), + [anon_sym_consteval] = ACTIONS(2611), + [anon_sym_signed] = ACTIONS(2611), + [anon_sym_unsigned] = ACTIONS(2611), + [anon_sym_long] = ACTIONS(2611), + [anon_sym_short] = ACTIONS(2611), + [sym_primitive_type] = ACTIONS(2611), + [anon_sym_enum] = ACTIONS(2611), + [anon_sym_class] = ACTIONS(2611), + [anon_sym_struct] = ACTIONS(2611), + [anon_sym_union] = ACTIONS(2611), + [anon_sym_if] = ACTIONS(2611), + [anon_sym_else] = ACTIONS(2611), + [anon_sym_switch] = ACTIONS(2611), + [anon_sym_while] = ACTIONS(2611), + [anon_sym_do] = ACTIONS(2611), + [anon_sym_for] = ACTIONS(2611), + [anon_sym_return] = ACTIONS(2611), + [anon_sym_break] = ACTIONS(2611), + [anon_sym_continue] = ACTIONS(2611), + [anon_sym_goto] = ACTIONS(2611), + [anon_sym_not] = ACTIONS(2611), + [anon_sym_compl] = ACTIONS(2611), + [anon_sym_DASH_DASH] = ACTIONS(2613), + [anon_sym_PLUS_PLUS] = ACTIONS(2613), + [anon_sym_sizeof] = ACTIONS(2611), + [sym_number_literal] = ACTIONS(2613), + [anon_sym_L_SQUOTE] = ACTIONS(2613), + [anon_sym_u_SQUOTE] = ACTIONS(2613), + [anon_sym_U_SQUOTE] = ACTIONS(2613), + [anon_sym_u8_SQUOTE] = ACTIONS(2613), + [anon_sym_SQUOTE] = ACTIONS(2613), + [anon_sym_L_DQUOTE] = ACTIONS(2613), + [anon_sym_u_DQUOTE] = ACTIONS(2613), + [anon_sym_U_DQUOTE] = ACTIONS(2613), + [anon_sym_u8_DQUOTE] = ACTIONS(2613), + [anon_sym_DQUOTE] = ACTIONS(2613), + [sym_true] = ACTIONS(2611), + [sym_false] = ACTIONS(2611), + [sym_null] = ACTIONS(2611), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2611), + [anon_sym_decltype] = ACTIONS(2611), + [anon_sym_virtual] = ACTIONS(2611), + [anon_sym_typename] = ACTIONS(2611), + [anon_sym_template] = ACTIONS(2611), + [anon_sym_try] = ACTIONS(2611), + [anon_sym_delete] = ACTIONS(2611), + [anon_sym_throw] = ACTIONS(2611), + [anon_sym_co_return] = ACTIONS(2611), + [anon_sym_co_yield] = ACTIONS(2611), + [anon_sym_co_await] = ACTIONS(2611), + [anon_sym_new] = ACTIONS(2611), + [anon_sym_requires] = ACTIONS(2611), + [sym_this] = ACTIONS(2611), + [sym_nullptr] = ACTIONS(2611), + [sym_raw_string_literal] = ACTIONS(2613), + }, + [1169] = { + [sym_type_qualifier] = STATE(1243), + [sym__expression] = STATE(3974), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3001), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3001), + [sym_call_expression] = STATE(3001), + [sym_field_expression] = STATE(3001), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3001), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3001), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_type_definition_repeat1] = STATE(1243), + [sym_identifier] = ACTIONS(3085), + [anon_sym_LPAREN2] = ACTIONS(3087), + [anon_sym_BANG] = ACTIONS(3091), + [anon_sym_TILDE] = ACTIONS(3091), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(3186), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_RBRACK] = ACTIONS(3188), + [anon_sym_const] = ACTIONS(3180), + [anon_sym_volatile] = ACTIONS(3180), + [anon_sym_restrict] = ACTIONS(3180), + [anon_sym__Atomic] = ACTIONS(3180), + [anon_sym_mutable] = ACTIONS(3180), + [anon_sym_constexpr] = ACTIONS(3180), + [anon_sym_constinit] = ACTIONS(3180), + [anon_sym_consteval] = ACTIONS(3180), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3089), + [anon_sym_compl] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3095), + [anon_sym_PLUS_PLUS] = ACTIONS(3095), + [anon_sym_sizeof] = ACTIONS(3097), [sym_number_literal] = ACTIONS(97), [anon_sym_L_SQUOTE] = ACTIONS(99), [anon_sym_u_SQUOTE] = ACTIONS(99), @@ -194852,575 +163645,2915 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3075), - [anon_sym_co_await] = ACTIONS(3077), - [anon_sym_new] = ACTIONS(3079), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3099), + [anon_sym_co_await] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3103), [anon_sym_requires] = ACTIONS(141), [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [1634] = { - [sym__expression] = STATE(3702), - [sym_conditional_expression] = STATE(3881), - [sym_assignment_expression] = STATE(3881), - [sym_pointer_expression] = STATE(2977), - [sym_unary_expression] = STATE(3881), - [sym_binary_expression] = STATE(3881), - [sym_update_expression] = STATE(3881), - [sym_cast_expression] = STATE(3881), - [sym_sizeof_expression] = STATE(3881), - [sym_subscript_expression] = STATE(2977), - [sym_call_expression] = STATE(2977), - [sym_field_expression] = STATE(2977), - [sym_compound_literal_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(2977), - [sym_char_literal] = STATE(3701), - [sym_concatenated_string] = STATE(3701), - [sym_string_literal] = STATE(3219), - [sym__class_name] = STATE(6063), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3881), - [sym_co_await_expression] = STATE(3881), - [sym_new_expression] = STATE(3881), - [sym_delete_expression] = STATE(3881), - [sym_requires_clause] = STATE(3881), - [sym_requires_expression] = STATE(3881), - [sym_lambda_expression] = STATE(3881), - [sym_lambda_capture_specifier] = STATE(4519), - [sym_fold_expression] = STATE(3881), - [sym_parameter_pack_expansion] = STATE(3881), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4642), - [sym_qualified_identifier] = STATE(2977), - [sym_qualified_type_identifier] = STATE(6063), - [sym_user_defined_literal] = STATE(3881), - [sym_identifier] = ACTIONS(3035), - [anon_sym_LPAREN2] = ACTIONS(2531), - [anon_sym_BANG] = ACTIONS(2533), - [anon_sym_TILDE] = ACTIONS(2533), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_STAR] = ACTIONS(2537), - [anon_sym_AMP] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(2539), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(2845), - [anon_sym_DASH_DASH] = ACTIONS(2553), - [anon_sym_PLUS_PLUS] = ACTIONS(2553), + [1170] = { + [sym_identifier] = ACTIONS(2555), + [anon_sym_LPAREN2] = ACTIONS(2557), + [anon_sym_BANG] = ACTIONS(2557), + [anon_sym_TILDE] = ACTIONS(2557), + [anon_sym_DASH] = ACTIONS(2555), + [anon_sym_PLUS] = ACTIONS(2555), + [anon_sym_STAR] = ACTIONS(2557), + [anon_sym_AMP] = ACTIONS(2557), + [anon_sym_SEMI] = ACTIONS(2557), + [anon_sym_typedef] = ACTIONS(2555), + [anon_sym_extern] = ACTIONS(2555), + [anon_sym___attribute__] = ACTIONS(2555), + [anon_sym_COLON_COLON] = ACTIONS(2557), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2557), + [anon_sym___declspec] = ACTIONS(2555), + [anon_sym_LBRACE] = ACTIONS(2557), + [anon_sym_LBRACK] = ACTIONS(2555), + [anon_sym_static] = ACTIONS(2555), + [anon_sym_register] = ACTIONS(2555), + [anon_sym_inline] = ACTIONS(2555), + [anon_sym_thread_local] = ACTIONS(2555), + [anon_sym_const] = ACTIONS(2555), + [anon_sym_volatile] = ACTIONS(2555), + [anon_sym_restrict] = ACTIONS(2555), + [anon_sym__Atomic] = ACTIONS(2555), + [anon_sym_mutable] = ACTIONS(2555), + [anon_sym_constexpr] = ACTIONS(2555), + [anon_sym_constinit] = ACTIONS(2555), + [anon_sym_consteval] = ACTIONS(2555), + [anon_sym_signed] = ACTIONS(2555), + [anon_sym_unsigned] = ACTIONS(2555), + [anon_sym_long] = ACTIONS(2555), + [anon_sym_short] = ACTIONS(2555), + [sym_primitive_type] = ACTIONS(2555), + [anon_sym_enum] = ACTIONS(2555), + [anon_sym_class] = ACTIONS(2555), + [anon_sym_struct] = ACTIONS(2555), + [anon_sym_union] = ACTIONS(2555), + [anon_sym_if] = ACTIONS(2555), + [anon_sym_else] = ACTIONS(2555), + [anon_sym_switch] = ACTIONS(2555), + [anon_sym_while] = ACTIONS(2555), + [anon_sym_do] = ACTIONS(2555), + [anon_sym_for] = ACTIONS(2555), + [anon_sym_return] = ACTIONS(2555), + [anon_sym_break] = ACTIONS(2555), + [anon_sym_continue] = ACTIONS(2555), + [anon_sym_goto] = ACTIONS(2555), + [anon_sym_not] = ACTIONS(2555), + [anon_sym_compl] = ACTIONS(2555), + [anon_sym_DASH_DASH] = ACTIONS(2557), + [anon_sym_PLUS_PLUS] = ACTIONS(2557), [anon_sym_sizeof] = ACTIONS(2555), [sym_number_literal] = ACTIONS(2557), - [anon_sym_L_SQUOTE] = ACTIONS(2559), - [anon_sym_u_SQUOTE] = ACTIONS(2559), - [anon_sym_U_SQUOTE] = ACTIONS(2559), - [anon_sym_u8_SQUOTE] = ACTIONS(2559), - [anon_sym_SQUOTE] = ACTIONS(2559), + [anon_sym_L_SQUOTE] = ACTIONS(2557), + [anon_sym_u_SQUOTE] = ACTIONS(2557), + [anon_sym_U_SQUOTE] = ACTIONS(2557), + [anon_sym_u8_SQUOTE] = ACTIONS(2557), + [anon_sym_SQUOTE] = ACTIONS(2557), + [anon_sym_L_DQUOTE] = ACTIONS(2557), + [anon_sym_u_DQUOTE] = ACTIONS(2557), + [anon_sym_U_DQUOTE] = ACTIONS(2557), + [anon_sym_u8_DQUOTE] = ACTIONS(2557), + [anon_sym_DQUOTE] = ACTIONS(2557), + [sym_true] = ACTIONS(2555), + [sym_false] = ACTIONS(2555), + [sym_null] = ACTIONS(2555), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2555), + [anon_sym_decltype] = ACTIONS(2555), + [anon_sym_virtual] = ACTIONS(2555), + [anon_sym_typename] = ACTIONS(2555), + [anon_sym_template] = ACTIONS(2555), + [anon_sym_try] = ACTIONS(2555), + [anon_sym_delete] = ACTIONS(2555), + [anon_sym_throw] = ACTIONS(2555), + [anon_sym_co_return] = ACTIONS(2555), + [anon_sym_co_yield] = ACTIONS(2555), + [anon_sym_co_await] = ACTIONS(2555), + [anon_sym_new] = ACTIONS(2555), + [anon_sym_requires] = ACTIONS(2555), + [sym_this] = ACTIONS(2555), + [sym_nullptr] = ACTIONS(2555), + [sym_raw_string_literal] = ACTIONS(2557), + }, + [1171] = { + [sym_identifier] = ACTIONS(2615), + [anon_sym_LPAREN2] = ACTIONS(2617), + [anon_sym_BANG] = ACTIONS(2617), + [anon_sym_TILDE] = ACTIONS(2617), + [anon_sym_DASH] = ACTIONS(2615), + [anon_sym_PLUS] = ACTIONS(2615), + [anon_sym_STAR] = ACTIONS(2617), + [anon_sym_AMP] = ACTIONS(2617), + [anon_sym_SEMI] = ACTIONS(2617), + [anon_sym_typedef] = ACTIONS(2615), + [anon_sym_extern] = ACTIONS(2615), + [anon_sym___attribute__] = ACTIONS(2615), + [anon_sym_COLON_COLON] = ACTIONS(2617), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2617), + [anon_sym___declspec] = ACTIONS(2615), + [anon_sym_LBRACE] = ACTIONS(2617), + [anon_sym_LBRACK] = ACTIONS(2615), + [anon_sym_static] = ACTIONS(2615), + [anon_sym_register] = ACTIONS(2615), + [anon_sym_inline] = ACTIONS(2615), + [anon_sym_thread_local] = ACTIONS(2615), + [anon_sym_const] = ACTIONS(2615), + [anon_sym_volatile] = ACTIONS(2615), + [anon_sym_restrict] = ACTIONS(2615), + [anon_sym__Atomic] = ACTIONS(2615), + [anon_sym_mutable] = ACTIONS(2615), + [anon_sym_constexpr] = ACTIONS(2615), + [anon_sym_constinit] = ACTIONS(2615), + [anon_sym_consteval] = ACTIONS(2615), + [anon_sym_signed] = ACTIONS(2615), + [anon_sym_unsigned] = ACTIONS(2615), + [anon_sym_long] = ACTIONS(2615), + [anon_sym_short] = ACTIONS(2615), + [sym_primitive_type] = ACTIONS(2615), + [anon_sym_enum] = ACTIONS(2615), + [anon_sym_class] = ACTIONS(2615), + [anon_sym_struct] = ACTIONS(2615), + [anon_sym_union] = ACTIONS(2615), + [anon_sym_if] = ACTIONS(2615), + [anon_sym_else] = ACTIONS(2615), + [anon_sym_switch] = ACTIONS(2615), + [anon_sym_while] = ACTIONS(2615), + [anon_sym_do] = ACTIONS(2615), + [anon_sym_for] = ACTIONS(2615), + [anon_sym_return] = ACTIONS(2615), + [anon_sym_break] = ACTIONS(2615), + [anon_sym_continue] = ACTIONS(2615), + [anon_sym_goto] = ACTIONS(2615), + [anon_sym_not] = ACTIONS(2615), + [anon_sym_compl] = ACTIONS(2615), + [anon_sym_DASH_DASH] = ACTIONS(2617), + [anon_sym_PLUS_PLUS] = ACTIONS(2617), + [anon_sym_sizeof] = ACTIONS(2615), + [sym_number_literal] = ACTIONS(2617), + [anon_sym_L_SQUOTE] = ACTIONS(2617), + [anon_sym_u_SQUOTE] = ACTIONS(2617), + [anon_sym_U_SQUOTE] = ACTIONS(2617), + [anon_sym_u8_SQUOTE] = ACTIONS(2617), + [anon_sym_SQUOTE] = ACTIONS(2617), + [anon_sym_L_DQUOTE] = ACTIONS(2617), + [anon_sym_u_DQUOTE] = ACTIONS(2617), + [anon_sym_U_DQUOTE] = ACTIONS(2617), + [anon_sym_u8_DQUOTE] = ACTIONS(2617), + [anon_sym_DQUOTE] = ACTIONS(2617), + [sym_true] = ACTIONS(2615), + [sym_false] = ACTIONS(2615), + [sym_null] = ACTIONS(2615), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2615), + [anon_sym_decltype] = ACTIONS(2615), + [anon_sym_virtual] = ACTIONS(2615), + [anon_sym_typename] = ACTIONS(2615), + [anon_sym_template] = ACTIONS(2615), + [anon_sym_try] = ACTIONS(2615), + [anon_sym_delete] = ACTIONS(2615), + [anon_sym_throw] = ACTIONS(2615), + [anon_sym_co_return] = ACTIONS(2615), + [anon_sym_co_yield] = ACTIONS(2615), + [anon_sym_co_await] = ACTIONS(2615), + [anon_sym_new] = ACTIONS(2615), + [anon_sym_requires] = ACTIONS(2615), + [sym_this] = ACTIONS(2615), + [sym_nullptr] = ACTIONS(2615), + [sym_raw_string_literal] = ACTIONS(2617), + }, + [1172] = { + [sym_identifier] = ACTIONS(2627), + [anon_sym_LPAREN2] = ACTIONS(2629), + [anon_sym_BANG] = ACTIONS(2629), + [anon_sym_TILDE] = ACTIONS(2629), + [anon_sym_DASH] = ACTIONS(2627), + [anon_sym_PLUS] = ACTIONS(2627), + [anon_sym_STAR] = ACTIONS(2629), + [anon_sym_AMP] = ACTIONS(2629), + [anon_sym_SEMI] = ACTIONS(2629), + [anon_sym_typedef] = ACTIONS(2627), + [anon_sym_extern] = ACTIONS(2627), + [anon_sym___attribute__] = ACTIONS(2627), + [anon_sym_COLON_COLON] = ACTIONS(2629), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2629), + [anon_sym___declspec] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(2629), + [anon_sym_LBRACK] = ACTIONS(2627), + [anon_sym_static] = ACTIONS(2627), + [anon_sym_register] = ACTIONS(2627), + [anon_sym_inline] = ACTIONS(2627), + [anon_sym_thread_local] = ACTIONS(2627), + [anon_sym_const] = ACTIONS(2627), + [anon_sym_volatile] = ACTIONS(2627), + [anon_sym_restrict] = ACTIONS(2627), + [anon_sym__Atomic] = ACTIONS(2627), + [anon_sym_mutable] = ACTIONS(2627), + [anon_sym_constexpr] = ACTIONS(2627), + [anon_sym_constinit] = ACTIONS(2627), + [anon_sym_consteval] = ACTIONS(2627), + [anon_sym_signed] = ACTIONS(2627), + [anon_sym_unsigned] = ACTIONS(2627), + [anon_sym_long] = ACTIONS(2627), + [anon_sym_short] = ACTIONS(2627), + [sym_primitive_type] = ACTIONS(2627), + [anon_sym_enum] = ACTIONS(2627), + [anon_sym_class] = ACTIONS(2627), + [anon_sym_struct] = ACTIONS(2627), + [anon_sym_union] = ACTIONS(2627), + [anon_sym_if] = ACTIONS(2627), + [anon_sym_else] = ACTIONS(2627), + [anon_sym_switch] = ACTIONS(2627), + [anon_sym_while] = ACTIONS(2627), + [anon_sym_do] = ACTIONS(2627), + [anon_sym_for] = ACTIONS(2627), + [anon_sym_return] = ACTIONS(2627), + [anon_sym_break] = ACTIONS(2627), + [anon_sym_continue] = ACTIONS(2627), + [anon_sym_goto] = ACTIONS(2627), + [anon_sym_not] = ACTIONS(2627), + [anon_sym_compl] = ACTIONS(2627), + [anon_sym_DASH_DASH] = ACTIONS(2629), + [anon_sym_PLUS_PLUS] = ACTIONS(2629), + [anon_sym_sizeof] = ACTIONS(2627), + [sym_number_literal] = ACTIONS(2629), + [anon_sym_L_SQUOTE] = ACTIONS(2629), + [anon_sym_u_SQUOTE] = ACTIONS(2629), + [anon_sym_U_SQUOTE] = ACTIONS(2629), + [anon_sym_u8_SQUOTE] = ACTIONS(2629), + [anon_sym_SQUOTE] = ACTIONS(2629), + [anon_sym_L_DQUOTE] = ACTIONS(2629), + [anon_sym_u_DQUOTE] = ACTIONS(2629), + [anon_sym_U_DQUOTE] = ACTIONS(2629), + [anon_sym_u8_DQUOTE] = ACTIONS(2629), + [anon_sym_DQUOTE] = ACTIONS(2629), + [sym_true] = ACTIONS(2627), + [sym_false] = ACTIONS(2627), + [sym_null] = ACTIONS(2627), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2627), + [anon_sym_decltype] = ACTIONS(2627), + [anon_sym_virtual] = ACTIONS(2627), + [anon_sym_typename] = ACTIONS(2627), + [anon_sym_template] = ACTIONS(2627), + [anon_sym_try] = ACTIONS(2627), + [anon_sym_delete] = ACTIONS(2627), + [anon_sym_throw] = ACTIONS(2627), + [anon_sym_co_return] = ACTIONS(2627), + [anon_sym_co_yield] = ACTIONS(2627), + [anon_sym_co_await] = ACTIONS(2627), + [anon_sym_new] = ACTIONS(2627), + [anon_sym_requires] = ACTIONS(2627), + [sym_this] = ACTIONS(2627), + [sym_nullptr] = ACTIONS(2627), + [sym_raw_string_literal] = ACTIONS(2629), + }, + [1173] = { + [sym_identifier] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), [anon_sym_L_DQUOTE] = ACTIONS(2561), [anon_sym_u_DQUOTE] = ACTIONS(2561), [anon_sym_U_DQUOTE] = ACTIONS(2561), [anon_sym_u8_DQUOTE] = ACTIONS(2561), [anon_sym_DQUOTE] = ACTIONS(2561), - [sym_true] = ACTIONS(2563), - [sym_false] = ACTIONS(2563), - [sym_null] = ACTIONS(2563), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2573), - [anon_sym_co_await] = ACTIONS(2575), - [anon_sym_new] = ACTIONS(2577), - [anon_sym_requires] = ACTIONS(2579), - [sym_this] = ACTIONS(2563), - [sym_nullptr] = ACTIONS(2563), - [sym_raw_string_literal] = ACTIONS(2581), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), }, - [1635] = { - [sym__expression] = STATE(3602), - [sym_conditional_expression] = STATE(3881), - [sym_assignment_expression] = STATE(3881), - [sym_pointer_expression] = STATE(2977), - [sym_unary_expression] = STATE(3881), - [sym_binary_expression] = STATE(3881), - [sym_update_expression] = STATE(3881), - [sym_cast_expression] = STATE(3881), - [sym_sizeof_expression] = STATE(3881), - [sym_subscript_expression] = STATE(2977), - [sym_call_expression] = STATE(2977), - [sym_field_expression] = STATE(2977), - [sym_compound_literal_expression] = STATE(3881), - [sym_parenthesized_expression] = STATE(2977), - [sym_char_literal] = STATE(3701), - [sym_concatenated_string] = STATE(3701), - [sym_string_literal] = STATE(3219), - [sym__class_name] = STATE(6063), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3881), - [sym_co_await_expression] = STATE(3881), - [sym_new_expression] = STATE(3881), - [sym_delete_expression] = STATE(3881), - [sym_requires_clause] = STATE(3881), - [sym_requires_expression] = STATE(3881), - [sym_lambda_expression] = STATE(3881), - [sym_lambda_capture_specifier] = STATE(4519), - [sym_fold_expression] = STATE(3881), - [sym_parameter_pack_expansion] = STATE(3881), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4642), - [sym_qualified_identifier] = STATE(2977), - [sym_qualified_type_identifier] = STATE(6063), - [sym_user_defined_literal] = STATE(3881), - [sym_identifier] = ACTIONS(3035), - [anon_sym_LPAREN2] = ACTIONS(2531), - [anon_sym_BANG] = ACTIONS(2533), - [anon_sym_TILDE] = ACTIONS(2533), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_PLUS] = ACTIONS(2535), - [anon_sym_STAR] = ACTIONS(2537), - [anon_sym_AMP] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(2539), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(2845), - [anon_sym_DASH_DASH] = ACTIONS(2553), - [anon_sym_PLUS_PLUS] = ACTIONS(2553), - [anon_sym_sizeof] = ACTIONS(2555), - [sym_number_literal] = ACTIONS(2557), - [anon_sym_L_SQUOTE] = ACTIONS(2559), - [anon_sym_u_SQUOTE] = ACTIONS(2559), - [anon_sym_U_SQUOTE] = ACTIONS(2559), - [anon_sym_u8_SQUOTE] = ACTIONS(2559), - [anon_sym_SQUOTE] = ACTIONS(2559), + [1174] = { + [sym_identifier] = ACTIONS(2631), + [anon_sym_LPAREN2] = ACTIONS(2633), + [anon_sym_BANG] = ACTIONS(2633), + [anon_sym_TILDE] = ACTIONS(2633), + [anon_sym_DASH] = ACTIONS(2631), + [anon_sym_PLUS] = ACTIONS(2631), + [anon_sym_STAR] = ACTIONS(2633), + [anon_sym_AMP] = ACTIONS(2633), + [anon_sym_SEMI] = ACTIONS(2633), + [anon_sym_typedef] = ACTIONS(2631), + [anon_sym_extern] = ACTIONS(2631), + [anon_sym___attribute__] = ACTIONS(2631), + [anon_sym_COLON_COLON] = ACTIONS(2633), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2633), + [anon_sym___declspec] = ACTIONS(2631), + [anon_sym_LBRACE] = ACTIONS(2633), + [anon_sym_LBRACK] = ACTIONS(2631), + [anon_sym_static] = ACTIONS(2631), + [anon_sym_register] = ACTIONS(2631), + [anon_sym_inline] = ACTIONS(2631), + [anon_sym_thread_local] = ACTIONS(2631), + [anon_sym_const] = ACTIONS(2631), + [anon_sym_volatile] = ACTIONS(2631), + [anon_sym_restrict] = ACTIONS(2631), + [anon_sym__Atomic] = ACTIONS(2631), + [anon_sym_mutable] = ACTIONS(2631), + [anon_sym_constexpr] = ACTIONS(2631), + [anon_sym_constinit] = ACTIONS(2631), + [anon_sym_consteval] = ACTIONS(2631), + [anon_sym_signed] = ACTIONS(2631), + [anon_sym_unsigned] = ACTIONS(2631), + [anon_sym_long] = ACTIONS(2631), + [anon_sym_short] = ACTIONS(2631), + [sym_primitive_type] = ACTIONS(2631), + [anon_sym_enum] = ACTIONS(2631), + [anon_sym_class] = ACTIONS(2631), + [anon_sym_struct] = ACTIONS(2631), + [anon_sym_union] = ACTIONS(2631), + [anon_sym_if] = ACTIONS(2631), + [anon_sym_else] = ACTIONS(2631), + [anon_sym_switch] = ACTIONS(2631), + [anon_sym_while] = ACTIONS(2631), + [anon_sym_do] = ACTIONS(2631), + [anon_sym_for] = ACTIONS(2631), + [anon_sym_return] = ACTIONS(2631), + [anon_sym_break] = ACTIONS(2631), + [anon_sym_continue] = ACTIONS(2631), + [anon_sym_goto] = ACTIONS(2631), + [anon_sym_not] = ACTIONS(2631), + [anon_sym_compl] = ACTIONS(2631), + [anon_sym_DASH_DASH] = ACTIONS(2633), + [anon_sym_PLUS_PLUS] = ACTIONS(2633), + [anon_sym_sizeof] = ACTIONS(2631), + [sym_number_literal] = ACTIONS(2633), + [anon_sym_L_SQUOTE] = ACTIONS(2633), + [anon_sym_u_SQUOTE] = ACTIONS(2633), + [anon_sym_U_SQUOTE] = ACTIONS(2633), + [anon_sym_u8_SQUOTE] = ACTIONS(2633), + [anon_sym_SQUOTE] = ACTIONS(2633), + [anon_sym_L_DQUOTE] = ACTIONS(2633), + [anon_sym_u_DQUOTE] = ACTIONS(2633), + [anon_sym_U_DQUOTE] = ACTIONS(2633), + [anon_sym_u8_DQUOTE] = ACTIONS(2633), + [anon_sym_DQUOTE] = ACTIONS(2633), + [sym_true] = ACTIONS(2631), + [sym_false] = ACTIONS(2631), + [sym_null] = ACTIONS(2631), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2631), + [anon_sym_decltype] = ACTIONS(2631), + [anon_sym_virtual] = ACTIONS(2631), + [anon_sym_typename] = ACTIONS(2631), + [anon_sym_template] = ACTIONS(2631), + [anon_sym_try] = ACTIONS(2631), + [anon_sym_delete] = ACTIONS(2631), + [anon_sym_throw] = ACTIONS(2631), + [anon_sym_co_return] = ACTIONS(2631), + [anon_sym_co_yield] = ACTIONS(2631), + [anon_sym_co_await] = ACTIONS(2631), + [anon_sym_new] = ACTIONS(2631), + [anon_sym_requires] = ACTIONS(2631), + [sym_this] = ACTIONS(2631), + [sym_nullptr] = ACTIONS(2631), + [sym_raw_string_literal] = ACTIONS(2633), + }, + [1175] = { + [sym_identifier] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), + }, + [1176] = { + [sym_identifier] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), [anon_sym_L_DQUOTE] = ACTIONS(2561), [anon_sym_u_DQUOTE] = ACTIONS(2561), [anon_sym_U_DQUOTE] = ACTIONS(2561), [anon_sym_u8_DQUOTE] = ACTIONS(2561), [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), + }, + [1177] = { + [sym_identifier] = ACTIONS(2563), + [anon_sym_LPAREN2] = ACTIONS(2565), + [anon_sym_BANG] = ACTIONS(2565), + [anon_sym_TILDE] = ACTIONS(2565), + [anon_sym_DASH] = ACTIONS(2563), + [anon_sym_PLUS] = ACTIONS(2563), + [anon_sym_STAR] = ACTIONS(2565), + [anon_sym_AMP] = ACTIONS(2565), + [anon_sym_SEMI] = ACTIONS(2565), + [anon_sym_typedef] = ACTIONS(2563), + [anon_sym_extern] = ACTIONS(2563), + [anon_sym___attribute__] = ACTIONS(2563), + [anon_sym_COLON_COLON] = ACTIONS(2565), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2565), + [anon_sym___declspec] = ACTIONS(2563), + [anon_sym_LBRACE] = ACTIONS(2565), + [anon_sym_LBRACK] = ACTIONS(2563), + [anon_sym_static] = ACTIONS(2563), + [anon_sym_register] = ACTIONS(2563), + [anon_sym_inline] = ACTIONS(2563), + [anon_sym_thread_local] = ACTIONS(2563), + [anon_sym_const] = ACTIONS(2563), + [anon_sym_volatile] = ACTIONS(2563), + [anon_sym_restrict] = ACTIONS(2563), + [anon_sym__Atomic] = ACTIONS(2563), + [anon_sym_mutable] = ACTIONS(2563), + [anon_sym_constexpr] = ACTIONS(2563), + [anon_sym_constinit] = ACTIONS(2563), + [anon_sym_consteval] = ACTIONS(2563), + [anon_sym_signed] = ACTIONS(2563), + [anon_sym_unsigned] = ACTIONS(2563), + [anon_sym_long] = ACTIONS(2563), + [anon_sym_short] = ACTIONS(2563), + [sym_primitive_type] = ACTIONS(2563), + [anon_sym_enum] = ACTIONS(2563), + [anon_sym_class] = ACTIONS(2563), + [anon_sym_struct] = ACTIONS(2563), + [anon_sym_union] = ACTIONS(2563), + [anon_sym_if] = ACTIONS(2563), + [anon_sym_else] = ACTIONS(2563), + [anon_sym_switch] = ACTIONS(2563), + [anon_sym_while] = ACTIONS(2563), + [anon_sym_do] = ACTIONS(2563), + [anon_sym_for] = ACTIONS(2563), + [anon_sym_return] = ACTIONS(2563), + [anon_sym_break] = ACTIONS(2563), + [anon_sym_continue] = ACTIONS(2563), + [anon_sym_goto] = ACTIONS(2563), + [anon_sym_not] = ACTIONS(2563), + [anon_sym_compl] = ACTIONS(2563), + [anon_sym_DASH_DASH] = ACTIONS(2565), + [anon_sym_PLUS_PLUS] = ACTIONS(2565), + [anon_sym_sizeof] = ACTIONS(2563), + [sym_number_literal] = ACTIONS(2565), + [anon_sym_L_SQUOTE] = ACTIONS(2565), + [anon_sym_u_SQUOTE] = ACTIONS(2565), + [anon_sym_U_SQUOTE] = ACTIONS(2565), + [anon_sym_u8_SQUOTE] = ACTIONS(2565), + [anon_sym_SQUOTE] = ACTIONS(2565), + [anon_sym_L_DQUOTE] = ACTIONS(2565), + [anon_sym_u_DQUOTE] = ACTIONS(2565), + [anon_sym_U_DQUOTE] = ACTIONS(2565), + [anon_sym_u8_DQUOTE] = ACTIONS(2565), + [anon_sym_DQUOTE] = ACTIONS(2565), [sym_true] = ACTIONS(2563), [sym_false] = ACTIONS(2563), [sym_null] = ACTIONS(2563), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2573), - [anon_sym_co_await] = ACTIONS(2575), - [anon_sym_new] = ACTIONS(2577), - [anon_sym_requires] = ACTIONS(2579), + [sym_auto] = ACTIONS(2563), + [anon_sym_decltype] = ACTIONS(2563), + [anon_sym_virtual] = ACTIONS(2563), + [anon_sym_typename] = ACTIONS(2563), + [anon_sym_template] = ACTIONS(2563), + [anon_sym_try] = ACTIONS(2563), + [anon_sym_delete] = ACTIONS(2563), + [anon_sym_throw] = ACTIONS(2563), + [anon_sym_co_return] = ACTIONS(2563), + [anon_sym_co_yield] = ACTIONS(2563), + [anon_sym_co_await] = ACTIONS(2563), + [anon_sym_new] = ACTIONS(2563), + [anon_sym_requires] = ACTIONS(2563), [sym_this] = ACTIONS(2563), [sym_nullptr] = ACTIONS(2563), - [sym_raw_string_literal] = ACTIONS(2581), - }, - [1636] = { - [sym__expression] = STATE(3925), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), - }, - [1637] = { - [sym__expression] = STATE(3752), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2981), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2981), - [sym_call_expression] = STATE(2981), - [sym_field_expression] = STATE(2981), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2981), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2981), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3039), - [anon_sym_LPAREN2] = ACTIONS(3041), - [anon_sym_BANG] = ACTIONS(3045), - [anon_sym_TILDE] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(3047), - [anon_sym_LBRACK] = ACTIONS(3706), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3049), - [anon_sym_PLUS_PLUS] = ACTIONS(3049), - [anon_sym_sizeof] = ACTIONS(3051), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3053), - [anon_sym_co_await] = ACTIONS(3055), - [anon_sym_new] = ACTIONS(3057), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), - }, - [1638] = { - [sym__expression] = STATE(3663), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2981), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2981), - [sym_call_expression] = STATE(2981), - [sym_field_expression] = STATE(2981), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2981), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2981), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3039), - [anon_sym_LPAREN2] = ACTIONS(3041), - [anon_sym_BANG] = ACTIONS(3045), - [anon_sym_TILDE] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(3047), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3049), - [anon_sym_PLUS_PLUS] = ACTIONS(3049), - [anon_sym_sizeof] = ACTIONS(3051), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3053), - [anon_sym_co_await] = ACTIONS(3055), - [anon_sym_new] = ACTIONS(3057), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_raw_string_literal] = ACTIONS(2565), }, - [1639] = { - [sym__expression] = STATE(3454), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2981), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2981), - [sym_call_expression] = STATE(2981), - [sym_field_expression] = STATE(2981), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2981), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2981), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3039), - [anon_sym_LPAREN2] = ACTIONS(3041), - [anon_sym_BANG] = ACTIONS(3045), - [anon_sym_TILDE] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(3047), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3049), - [anon_sym_PLUS_PLUS] = ACTIONS(3049), - [anon_sym_sizeof] = ACTIONS(3051), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [1178] = { + [sym_identifier] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2597), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3053), - [anon_sym_co_await] = ACTIONS(3055), - [anon_sym_new] = ACTIONS(3057), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1640] = { - [sym__expression] = STATE(3415), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2981), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2981), - [sym_call_expression] = STATE(2981), - [sym_field_expression] = STATE(2981), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2981), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2981), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3039), - [anon_sym_LPAREN2] = ACTIONS(3041), - [anon_sym_BANG] = ACTIONS(3045), - [anon_sym_TILDE] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(3047), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3049), - [anon_sym_PLUS_PLUS] = ACTIONS(3049), - [anon_sym_sizeof] = ACTIONS(3051), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), - [anon_sym_U_SQUOTE] = ACTIONS(99), - [anon_sym_u8_SQUOTE] = ACTIONS(99), - [anon_sym_SQUOTE] = ACTIONS(99), - [anon_sym_L_DQUOTE] = ACTIONS(101), - [anon_sym_u_DQUOTE] = ACTIONS(101), - [anon_sym_U_DQUOTE] = ACTIONS(101), - [anon_sym_u8_DQUOTE] = ACTIONS(101), - [anon_sym_DQUOTE] = ACTIONS(101), - [sym_true] = ACTIONS(103), - [sym_false] = ACTIONS(103), - [sym_null] = ACTIONS(103), + [1179] = { + [sym_identifier] = ACTIONS(3163), + [anon_sym_LPAREN2] = ACTIONS(3165), + [anon_sym_BANG] = ACTIONS(3165), + [anon_sym_TILDE] = ACTIONS(3165), + [anon_sym_DASH] = ACTIONS(3163), + [anon_sym_PLUS] = ACTIONS(3163), + [anon_sym_STAR] = ACTIONS(3165), + [anon_sym_AMP] = ACTIONS(3165), + [anon_sym_SEMI] = ACTIONS(3165), + [anon_sym_extern] = ACTIONS(3163), + [anon_sym___attribute__] = ACTIONS(3163), + [anon_sym_COLON_COLON] = ACTIONS(3165), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3165), + [anon_sym___declspec] = ACTIONS(3163), + [anon_sym_LBRACE] = ACTIONS(3165), + [anon_sym_LBRACK] = ACTIONS(3163), + [anon_sym_static] = ACTIONS(3163), + [anon_sym_register] = ACTIONS(3163), + [anon_sym_inline] = ACTIONS(3163), + [anon_sym_thread_local] = ACTIONS(3163), + [anon_sym_const] = ACTIONS(3163), + [anon_sym_volatile] = ACTIONS(3163), + [anon_sym_restrict] = ACTIONS(3163), + [anon_sym__Atomic] = ACTIONS(3163), + [anon_sym_mutable] = ACTIONS(3163), + [anon_sym_constexpr] = ACTIONS(3163), + [anon_sym_constinit] = ACTIONS(3163), + [anon_sym_consteval] = ACTIONS(3163), + [anon_sym_signed] = ACTIONS(3163), + [anon_sym_unsigned] = ACTIONS(3163), + [anon_sym_long] = ACTIONS(3163), + [anon_sym_short] = ACTIONS(3163), + [sym_primitive_type] = ACTIONS(3163), + [anon_sym_enum] = ACTIONS(3163), + [anon_sym_class] = ACTIONS(3163), + [anon_sym_struct] = ACTIONS(3163), + [anon_sym_union] = ACTIONS(3163), + [anon_sym_if] = ACTIONS(3163), + [anon_sym_switch] = ACTIONS(3163), + [anon_sym_case] = ACTIONS(3163), + [anon_sym_default] = ACTIONS(3163), + [anon_sym_while] = ACTIONS(3163), + [anon_sym_do] = ACTIONS(3163), + [anon_sym_for] = ACTIONS(3163), + [anon_sym_return] = ACTIONS(3163), + [anon_sym_break] = ACTIONS(3163), + [anon_sym_continue] = ACTIONS(3163), + [anon_sym_goto] = ACTIONS(3163), + [anon_sym_not] = ACTIONS(3163), + [anon_sym_compl] = ACTIONS(3163), + [anon_sym_DASH_DASH] = ACTIONS(3165), + [anon_sym_PLUS_PLUS] = ACTIONS(3165), + [anon_sym_sizeof] = ACTIONS(3163), + [sym_number_literal] = ACTIONS(3165), + [anon_sym_L_SQUOTE] = ACTIONS(3165), + [anon_sym_u_SQUOTE] = ACTIONS(3165), + [anon_sym_U_SQUOTE] = ACTIONS(3165), + [anon_sym_u8_SQUOTE] = ACTIONS(3165), + [anon_sym_SQUOTE] = ACTIONS(3165), + [anon_sym_L_DQUOTE] = ACTIONS(3165), + [anon_sym_u_DQUOTE] = ACTIONS(3165), + [anon_sym_U_DQUOTE] = ACTIONS(3165), + [anon_sym_u8_DQUOTE] = ACTIONS(3165), + [anon_sym_DQUOTE] = ACTIONS(3165), + [sym_true] = ACTIONS(3163), + [sym_false] = ACTIONS(3163), + [sym_null] = ACTIONS(3163), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3163), + [anon_sym_decltype] = ACTIONS(3163), + [anon_sym_virtual] = ACTIONS(3163), + [anon_sym_typename] = ACTIONS(3163), + [anon_sym_template] = ACTIONS(3163), + [anon_sym_try] = ACTIONS(3163), + [anon_sym_delete] = ACTIONS(3163), + [anon_sym_throw] = ACTIONS(3163), + [anon_sym_co_return] = ACTIONS(3163), + [anon_sym_co_yield] = ACTIONS(3163), + [anon_sym_co_await] = ACTIONS(3163), + [anon_sym_new] = ACTIONS(3163), + [anon_sym_requires] = ACTIONS(3163), + [sym_this] = ACTIONS(3163), + [sym_nullptr] = ACTIONS(3163), + [sym_raw_string_literal] = ACTIONS(3165), + }, + [1180] = { + [sym_identifier] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), + }, + [1181] = { + [sym_identifier] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2597), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3053), - [anon_sym_co_await] = ACTIONS(3055), - [anon_sym_new] = ACTIONS(3057), - [anon_sym_requires] = ACTIONS(141), - [sym_this] = ACTIONS(103), - [sym_nullptr] = ACTIONS(103), - [sym_raw_string_literal] = ACTIONS(143), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), }, - [1641] = { - [sym__expression] = STATE(3883), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), + [1182] = { + [sym_identifier] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2597), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), + }, + [1183] = { + [sym_identifier] = ACTIONS(2533), + [anon_sym_LPAREN2] = ACTIONS(2535), + [anon_sym_BANG] = ACTIONS(2535), + [anon_sym_TILDE] = ACTIONS(2535), + [anon_sym_DASH] = ACTIONS(2533), + [anon_sym_PLUS] = ACTIONS(2533), + [anon_sym_STAR] = ACTIONS(2535), + [anon_sym_AMP] = ACTIONS(2535), + [anon_sym_SEMI] = ACTIONS(2535), + [anon_sym_typedef] = ACTIONS(2533), + [anon_sym_extern] = ACTIONS(2533), + [anon_sym___attribute__] = ACTIONS(2533), + [anon_sym_COLON_COLON] = ACTIONS(2535), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2535), + [anon_sym___declspec] = ACTIONS(2533), + [anon_sym_LBRACE] = ACTIONS(2535), + [anon_sym_LBRACK] = ACTIONS(2533), + [anon_sym_static] = ACTIONS(2533), + [anon_sym_register] = ACTIONS(2533), + [anon_sym_inline] = ACTIONS(2533), + [anon_sym_thread_local] = ACTIONS(2533), + [anon_sym_const] = ACTIONS(2533), + [anon_sym_volatile] = ACTIONS(2533), + [anon_sym_restrict] = ACTIONS(2533), + [anon_sym__Atomic] = ACTIONS(2533), + [anon_sym_mutable] = ACTIONS(2533), + [anon_sym_constexpr] = ACTIONS(2533), + [anon_sym_constinit] = ACTIONS(2533), + [anon_sym_consteval] = ACTIONS(2533), + [anon_sym_signed] = ACTIONS(2533), + [anon_sym_unsigned] = ACTIONS(2533), + [anon_sym_long] = ACTIONS(2533), + [anon_sym_short] = ACTIONS(2533), + [sym_primitive_type] = ACTIONS(2533), + [anon_sym_enum] = ACTIONS(2533), + [anon_sym_class] = ACTIONS(2533), + [anon_sym_struct] = ACTIONS(2533), + [anon_sym_union] = ACTIONS(2533), + [anon_sym_if] = ACTIONS(2533), + [anon_sym_else] = ACTIONS(2533), + [anon_sym_switch] = ACTIONS(2533), + [anon_sym_while] = ACTIONS(2533), + [anon_sym_do] = ACTIONS(2533), + [anon_sym_for] = ACTIONS(2533), + [anon_sym_return] = ACTIONS(2533), + [anon_sym_break] = ACTIONS(2533), + [anon_sym_continue] = ACTIONS(2533), + [anon_sym_goto] = ACTIONS(2533), + [anon_sym_not] = ACTIONS(2533), + [anon_sym_compl] = ACTIONS(2533), + [anon_sym_DASH_DASH] = ACTIONS(2535), + [anon_sym_PLUS_PLUS] = ACTIONS(2535), + [anon_sym_sizeof] = ACTIONS(2533), + [sym_number_literal] = ACTIONS(2535), + [anon_sym_L_SQUOTE] = ACTIONS(2535), + [anon_sym_u_SQUOTE] = ACTIONS(2535), + [anon_sym_U_SQUOTE] = ACTIONS(2535), + [anon_sym_u8_SQUOTE] = ACTIONS(2535), + [anon_sym_SQUOTE] = ACTIONS(2535), + [anon_sym_L_DQUOTE] = ACTIONS(2535), + [anon_sym_u_DQUOTE] = ACTIONS(2535), + [anon_sym_U_DQUOTE] = ACTIONS(2535), + [anon_sym_u8_DQUOTE] = ACTIONS(2535), + [anon_sym_DQUOTE] = ACTIONS(2535), + [sym_true] = ACTIONS(2533), + [sym_false] = ACTIONS(2533), + [sym_null] = ACTIONS(2533), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2533), + [anon_sym_decltype] = ACTIONS(2533), + [anon_sym_virtual] = ACTIONS(2533), + [anon_sym_typename] = ACTIONS(2533), + [anon_sym_template] = ACTIONS(2533), + [anon_sym_try] = ACTIONS(2533), + [anon_sym_delete] = ACTIONS(2533), + [anon_sym_throw] = ACTIONS(2533), + [anon_sym_co_return] = ACTIONS(2533), + [anon_sym_co_yield] = ACTIONS(2533), + [anon_sym_co_await] = ACTIONS(2533), + [anon_sym_new] = ACTIONS(2533), + [anon_sym_requires] = ACTIONS(2533), + [sym_this] = ACTIONS(2533), + [sym_nullptr] = ACTIONS(2533), + [sym_raw_string_literal] = ACTIONS(2535), + }, + [1184] = { + [sym_identifier] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2597), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), + }, + [1185] = { + [sym_identifier] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2597), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), + }, + [1186] = { + [sym_identifier] = ACTIONS(2595), + [anon_sym_LPAREN2] = ACTIONS(2597), + [anon_sym_BANG] = ACTIONS(2597), + [anon_sym_TILDE] = ACTIONS(2597), + [anon_sym_DASH] = ACTIONS(2595), + [anon_sym_PLUS] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2597), + [anon_sym_AMP] = ACTIONS(2597), + [anon_sym_SEMI] = ACTIONS(2597), + [anon_sym_typedef] = ACTIONS(2595), + [anon_sym_extern] = ACTIONS(2595), + [anon_sym___attribute__] = ACTIONS(2595), + [anon_sym_COLON_COLON] = ACTIONS(2597), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2597), + [anon_sym___declspec] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(2597), + [anon_sym_LBRACK] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(2595), + [anon_sym_register] = ACTIONS(2595), + [anon_sym_inline] = ACTIONS(2595), + [anon_sym_thread_local] = ACTIONS(2595), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_volatile] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2595), + [anon_sym__Atomic] = ACTIONS(2595), + [anon_sym_mutable] = ACTIONS(2595), + [anon_sym_constexpr] = ACTIONS(2595), + [anon_sym_constinit] = ACTIONS(2595), + [anon_sym_consteval] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2595), + [anon_sym_unsigned] = ACTIONS(2595), + [anon_sym_long] = ACTIONS(2595), + [anon_sym_short] = ACTIONS(2595), + [sym_primitive_type] = ACTIONS(2595), + [anon_sym_enum] = ACTIONS(2595), + [anon_sym_class] = ACTIONS(2595), + [anon_sym_struct] = ACTIONS(2595), + [anon_sym_union] = ACTIONS(2595), + [anon_sym_if] = ACTIONS(2595), + [anon_sym_else] = ACTIONS(2595), + [anon_sym_switch] = ACTIONS(2595), + [anon_sym_while] = ACTIONS(2595), + [anon_sym_do] = ACTIONS(2595), + [anon_sym_for] = ACTIONS(2595), + [anon_sym_return] = ACTIONS(2595), + [anon_sym_break] = ACTIONS(2595), + [anon_sym_continue] = ACTIONS(2595), + [anon_sym_goto] = ACTIONS(2595), + [anon_sym_not] = ACTIONS(2595), + [anon_sym_compl] = ACTIONS(2595), + [anon_sym_DASH_DASH] = ACTIONS(2597), + [anon_sym_PLUS_PLUS] = ACTIONS(2597), + [anon_sym_sizeof] = ACTIONS(2595), + [sym_number_literal] = ACTIONS(2597), + [anon_sym_L_SQUOTE] = ACTIONS(2597), + [anon_sym_u_SQUOTE] = ACTIONS(2597), + [anon_sym_U_SQUOTE] = ACTIONS(2597), + [anon_sym_u8_SQUOTE] = ACTIONS(2597), + [anon_sym_SQUOTE] = ACTIONS(2597), + [anon_sym_L_DQUOTE] = ACTIONS(2597), + [anon_sym_u_DQUOTE] = ACTIONS(2597), + [anon_sym_U_DQUOTE] = ACTIONS(2597), + [anon_sym_u8_DQUOTE] = ACTIONS(2597), + [anon_sym_DQUOTE] = ACTIONS(2597), + [sym_true] = ACTIONS(2595), + [sym_false] = ACTIONS(2595), + [sym_null] = ACTIONS(2595), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2595), + [anon_sym_decltype] = ACTIONS(2595), + [anon_sym_virtual] = ACTIONS(2595), + [anon_sym_typename] = ACTIONS(2595), + [anon_sym_template] = ACTIONS(2595), + [anon_sym_try] = ACTIONS(2595), + [anon_sym_delete] = ACTIONS(2595), + [anon_sym_throw] = ACTIONS(2595), + [anon_sym_co_return] = ACTIONS(2595), + [anon_sym_co_yield] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2595), + [anon_sym_new] = ACTIONS(2595), + [anon_sym_requires] = ACTIONS(2595), + [sym_this] = ACTIONS(2595), + [sym_nullptr] = ACTIONS(2595), + [sym_raw_string_literal] = ACTIONS(2597), + }, + [1187] = { + [sym_identifier] = ACTIONS(2639), + [anon_sym_LPAREN2] = ACTIONS(2641), + [anon_sym_BANG] = ACTIONS(2641), + [anon_sym_TILDE] = ACTIONS(2641), + [anon_sym_DASH] = ACTIONS(2639), + [anon_sym_PLUS] = ACTIONS(2639), + [anon_sym_STAR] = ACTIONS(2641), + [anon_sym_AMP] = ACTIONS(2641), + [anon_sym_SEMI] = ACTIONS(2641), + [anon_sym_typedef] = ACTIONS(2639), + [anon_sym_extern] = ACTIONS(2639), + [anon_sym___attribute__] = ACTIONS(2639), + [anon_sym_COLON_COLON] = ACTIONS(2641), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2641), + [anon_sym___declspec] = ACTIONS(2639), + [anon_sym_LBRACE] = ACTIONS(2641), + [anon_sym_LBRACK] = ACTIONS(2639), + [anon_sym_static] = ACTIONS(2639), + [anon_sym_register] = ACTIONS(2639), + [anon_sym_inline] = ACTIONS(2639), + [anon_sym_thread_local] = ACTIONS(2639), + [anon_sym_const] = ACTIONS(2639), + [anon_sym_volatile] = ACTIONS(2639), + [anon_sym_restrict] = ACTIONS(2639), + [anon_sym__Atomic] = ACTIONS(2639), + [anon_sym_mutable] = ACTIONS(2639), + [anon_sym_constexpr] = ACTIONS(2639), + [anon_sym_constinit] = ACTIONS(2639), + [anon_sym_consteval] = ACTIONS(2639), + [anon_sym_signed] = ACTIONS(2639), + [anon_sym_unsigned] = ACTIONS(2639), + [anon_sym_long] = ACTIONS(2639), + [anon_sym_short] = ACTIONS(2639), + [sym_primitive_type] = ACTIONS(2639), + [anon_sym_enum] = ACTIONS(2639), + [anon_sym_class] = ACTIONS(2639), + [anon_sym_struct] = ACTIONS(2639), + [anon_sym_union] = ACTIONS(2639), + [anon_sym_if] = ACTIONS(2639), + [anon_sym_else] = ACTIONS(2639), + [anon_sym_switch] = ACTIONS(2639), + [anon_sym_while] = ACTIONS(2639), + [anon_sym_do] = ACTIONS(2639), + [anon_sym_for] = ACTIONS(2639), + [anon_sym_return] = ACTIONS(2639), + [anon_sym_break] = ACTIONS(2639), + [anon_sym_continue] = ACTIONS(2639), + [anon_sym_goto] = ACTIONS(2639), + [anon_sym_not] = ACTIONS(2639), + [anon_sym_compl] = ACTIONS(2639), + [anon_sym_DASH_DASH] = ACTIONS(2641), + [anon_sym_PLUS_PLUS] = ACTIONS(2641), + [anon_sym_sizeof] = ACTIONS(2639), + [sym_number_literal] = ACTIONS(2641), + [anon_sym_L_SQUOTE] = ACTIONS(2641), + [anon_sym_u_SQUOTE] = ACTIONS(2641), + [anon_sym_U_SQUOTE] = ACTIONS(2641), + [anon_sym_u8_SQUOTE] = ACTIONS(2641), + [anon_sym_SQUOTE] = ACTIONS(2641), + [anon_sym_L_DQUOTE] = ACTIONS(2641), + [anon_sym_u_DQUOTE] = ACTIONS(2641), + [anon_sym_U_DQUOTE] = ACTIONS(2641), + [anon_sym_u8_DQUOTE] = ACTIONS(2641), + [anon_sym_DQUOTE] = ACTIONS(2641), + [sym_true] = ACTIONS(2639), + [sym_false] = ACTIONS(2639), + [sym_null] = ACTIONS(2639), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2639), + [anon_sym_decltype] = ACTIONS(2639), + [anon_sym_virtual] = ACTIONS(2639), + [anon_sym_typename] = ACTIONS(2639), + [anon_sym_template] = ACTIONS(2639), + [anon_sym_try] = ACTIONS(2639), + [anon_sym_delete] = ACTIONS(2639), + [anon_sym_throw] = ACTIONS(2639), + [anon_sym_co_return] = ACTIONS(2639), + [anon_sym_co_yield] = ACTIONS(2639), + [anon_sym_co_await] = ACTIONS(2639), + [anon_sym_new] = ACTIONS(2639), + [anon_sym_requires] = ACTIONS(2639), + [sym_this] = ACTIONS(2639), + [sym_nullptr] = ACTIONS(2639), + [sym_raw_string_literal] = ACTIONS(2641), + }, + [1188] = { + [sym_identifier] = ACTIONS(2529), + [anon_sym_LPAREN2] = ACTIONS(2531), + [anon_sym_BANG] = ACTIONS(2531), + [anon_sym_TILDE] = ACTIONS(2531), + [anon_sym_DASH] = ACTIONS(2529), + [anon_sym_PLUS] = ACTIONS(2529), + [anon_sym_STAR] = ACTIONS(2531), + [anon_sym_AMP] = ACTIONS(2531), + [anon_sym_SEMI] = ACTIONS(2531), + [anon_sym_typedef] = ACTIONS(2529), + [anon_sym_extern] = ACTIONS(2529), + [anon_sym___attribute__] = ACTIONS(2529), + [anon_sym_COLON_COLON] = ACTIONS(2531), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2531), + [anon_sym___declspec] = ACTIONS(2529), + [anon_sym_LBRACE] = ACTIONS(2531), + [anon_sym_LBRACK] = ACTIONS(2529), + [anon_sym_static] = ACTIONS(2529), + [anon_sym_register] = ACTIONS(2529), + [anon_sym_inline] = ACTIONS(2529), + [anon_sym_thread_local] = ACTIONS(2529), + [anon_sym_const] = ACTIONS(2529), + [anon_sym_volatile] = ACTIONS(2529), + [anon_sym_restrict] = ACTIONS(2529), + [anon_sym__Atomic] = ACTIONS(2529), + [anon_sym_mutable] = ACTIONS(2529), + [anon_sym_constexpr] = ACTIONS(2529), + [anon_sym_constinit] = ACTIONS(2529), + [anon_sym_consteval] = ACTIONS(2529), + [anon_sym_signed] = ACTIONS(2529), + [anon_sym_unsigned] = ACTIONS(2529), + [anon_sym_long] = ACTIONS(2529), + [anon_sym_short] = ACTIONS(2529), + [sym_primitive_type] = ACTIONS(2529), + [anon_sym_enum] = ACTIONS(2529), + [anon_sym_class] = ACTIONS(2529), + [anon_sym_struct] = ACTIONS(2529), + [anon_sym_union] = ACTIONS(2529), + [anon_sym_if] = ACTIONS(2529), + [anon_sym_else] = ACTIONS(2529), + [anon_sym_switch] = ACTIONS(2529), + [anon_sym_while] = ACTIONS(2529), + [anon_sym_do] = ACTIONS(2529), + [anon_sym_for] = ACTIONS(2529), + [anon_sym_return] = ACTIONS(2529), + [anon_sym_break] = ACTIONS(2529), + [anon_sym_continue] = ACTIONS(2529), + [anon_sym_goto] = ACTIONS(2529), + [anon_sym_not] = ACTIONS(2529), + [anon_sym_compl] = ACTIONS(2529), + [anon_sym_DASH_DASH] = ACTIONS(2531), + [anon_sym_PLUS_PLUS] = ACTIONS(2531), + [anon_sym_sizeof] = ACTIONS(2529), + [sym_number_literal] = ACTIONS(2531), + [anon_sym_L_SQUOTE] = ACTIONS(2531), + [anon_sym_u_SQUOTE] = ACTIONS(2531), + [anon_sym_U_SQUOTE] = ACTIONS(2531), + [anon_sym_u8_SQUOTE] = ACTIONS(2531), + [anon_sym_SQUOTE] = ACTIONS(2531), + [anon_sym_L_DQUOTE] = ACTIONS(2531), + [anon_sym_u_DQUOTE] = ACTIONS(2531), + [anon_sym_U_DQUOTE] = ACTIONS(2531), + [anon_sym_u8_DQUOTE] = ACTIONS(2531), + [anon_sym_DQUOTE] = ACTIONS(2531), + [sym_true] = ACTIONS(2529), + [sym_false] = ACTIONS(2529), + [sym_null] = ACTIONS(2529), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2529), + [anon_sym_decltype] = ACTIONS(2529), + [anon_sym_virtual] = ACTIONS(2529), + [anon_sym_typename] = ACTIONS(2529), + [anon_sym_template] = ACTIONS(2529), + [anon_sym_try] = ACTIONS(2529), + [anon_sym_delete] = ACTIONS(2529), + [anon_sym_throw] = ACTIONS(2529), + [anon_sym_co_return] = ACTIONS(2529), + [anon_sym_co_yield] = ACTIONS(2529), + [anon_sym_co_await] = ACTIONS(2529), + [anon_sym_new] = ACTIONS(2529), + [anon_sym_requires] = ACTIONS(2529), + [sym_this] = ACTIONS(2529), + [sym_nullptr] = ACTIONS(2529), + [sym_raw_string_literal] = ACTIONS(2531), + }, + [1189] = { + [sym_identifier] = ACTIONS(2517), + [anon_sym_LPAREN2] = ACTIONS(2519), + [anon_sym_BANG] = ACTIONS(2519), + [anon_sym_TILDE] = ACTIONS(2519), + [anon_sym_DASH] = ACTIONS(2517), + [anon_sym_PLUS] = ACTIONS(2517), + [anon_sym_STAR] = ACTIONS(2519), + [anon_sym_AMP] = ACTIONS(2519), + [anon_sym_SEMI] = ACTIONS(2519), + [anon_sym_typedef] = ACTIONS(2517), + [anon_sym_extern] = ACTIONS(2517), + [anon_sym___attribute__] = ACTIONS(2517), + [anon_sym_COLON_COLON] = ACTIONS(2519), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2519), + [anon_sym___declspec] = ACTIONS(2517), + [anon_sym_LBRACE] = ACTIONS(2519), + [anon_sym_LBRACK] = ACTIONS(2517), + [anon_sym_static] = ACTIONS(2517), + [anon_sym_register] = ACTIONS(2517), + [anon_sym_inline] = ACTIONS(2517), + [anon_sym_thread_local] = ACTIONS(2517), + [anon_sym_const] = ACTIONS(2517), + [anon_sym_volatile] = ACTIONS(2517), + [anon_sym_restrict] = ACTIONS(2517), + [anon_sym__Atomic] = ACTIONS(2517), + [anon_sym_mutable] = ACTIONS(2517), + [anon_sym_constexpr] = ACTIONS(2517), + [anon_sym_constinit] = ACTIONS(2517), + [anon_sym_consteval] = ACTIONS(2517), + [anon_sym_signed] = ACTIONS(2517), + [anon_sym_unsigned] = ACTIONS(2517), + [anon_sym_long] = ACTIONS(2517), + [anon_sym_short] = ACTIONS(2517), + [sym_primitive_type] = ACTIONS(2517), + [anon_sym_enum] = ACTIONS(2517), + [anon_sym_class] = ACTIONS(2517), + [anon_sym_struct] = ACTIONS(2517), + [anon_sym_union] = ACTIONS(2517), + [anon_sym_if] = ACTIONS(2517), + [anon_sym_else] = ACTIONS(2517), + [anon_sym_switch] = ACTIONS(2517), + [anon_sym_while] = ACTIONS(2517), + [anon_sym_do] = ACTIONS(2517), + [anon_sym_for] = ACTIONS(2517), + [anon_sym_return] = ACTIONS(2517), + [anon_sym_break] = ACTIONS(2517), + [anon_sym_continue] = ACTIONS(2517), + [anon_sym_goto] = ACTIONS(2517), + [anon_sym_not] = ACTIONS(2517), + [anon_sym_compl] = ACTIONS(2517), + [anon_sym_DASH_DASH] = ACTIONS(2519), + [anon_sym_PLUS_PLUS] = ACTIONS(2519), + [anon_sym_sizeof] = ACTIONS(2517), + [sym_number_literal] = ACTIONS(2519), + [anon_sym_L_SQUOTE] = ACTIONS(2519), + [anon_sym_u_SQUOTE] = ACTIONS(2519), + [anon_sym_U_SQUOTE] = ACTIONS(2519), + [anon_sym_u8_SQUOTE] = ACTIONS(2519), + [anon_sym_SQUOTE] = ACTIONS(2519), + [anon_sym_L_DQUOTE] = ACTIONS(2519), + [anon_sym_u_DQUOTE] = ACTIONS(2519), + [anon_sym_U_DQUOTE] = ACTIONS(2519), + [anon_sym_u8_DQUOTE] = ACTIONS(2519), + [anon_sym_DQUOTE] = ACTIONS(2519), + [sym_true] = ACTIONS(2517), + [sym_false] = ACTIONS(2517), + [sym_null] = ACTIONS(2517), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2517), + [anon_sym_decltype] = ACTIONS(2517), + [anon_sym_virtual] = ACTIONS(2517), + [anon_sym_typename] = ACTIONS(2517), + [anon_sym_template] = ACTIONS(2517), + [anon_sym_try] = ACTIONS(2517), + [anon_sym_delete] = ACTIONS(2517), + [anon_sym_throw] = ACTIONS(2517), + [anon_sym_co_return] = ACTIONS(2517), + [anon_sym_co_yield] = ACTIONS(2517), + [anon_sym_co_await] = ACTIONS(2517), + [anon_sym_new] = ACTIONS(2517), + [anon_sym_requires] = ACTIONS(2517), + [sym_this] = ACTIONS(2517), + [sym_nullptr] = ACTIONS(2517), + [sym_raw_string_literal] = ACTIONS(2519), + }, + [1190] = { + [sym_identifier] = ACTIONS(2591), + [anon_sym_LPAREN2] = ACTIONS(2593), + [anon_sym_BANG] = ACTIONS(2593), + [anon_sym_TILDE] = ACTIONS(2593), + [anon_sym_DASH] = ACTIONS(2591), + [anon_sym_PLUS] = ACTIONS(2591), + [anon_sym_STAR] = ACTIONS(2593), + [anon_sym_AMP] = ACTIONS(2593), + [anon_sym_SEMI] = ACTIONS(2593), + [anon_sym_typedef] = ACTIONS(2591), + [anon_sym_extern] = ACTIONS(2591), + [anon_sym___attribute__] = ACTIONS(2591), + [anon_sym_COLON_COLON] = ACTIONS(2593), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2593), + [anon_sym___declspec] = ACTIONS(2591), + [anon_sym_LBRACE] = ACTIONS(2593), + [anon_sym_LBRACK] = ACTIONS(2591), + [anon_sym_static] = ACTIONS(2591), + [anon_sym_register] = ACTIONS(2591), + [anon_sym_inline] = ACTIONS(2591), + [anon_sym_thread_local] = ACTIONS(2591), + [anon_sym_const] = ACTIONS(2591), + [anon_sym_volatile] = ACTIONS(2591), + [anon_sym_restrict] = ACTIONS(2591), + [anon_sym__Atomic] = ACTIONS(2591), + [anon_sym_mutable] = ACTIONS(2591), + [anon_sym_constexpr] = ACTIONS(2591), + [anon_sym_constinit] = ACTIONS(2591), + [anon_sym_consteval] = ACTIONS(2591), + [anon_sym_signed] = ACTIONS(2591), + [anon_sym_unsigned] = ACTIONS(2591), + [anon_sym_long] = ACTIONS(2591), + [anon_sym_short] = ACTIONS(2591), + [sym_primitive_type] = ACTIONS(2591), + [anon_sym_enum] = ACTIONS(2591), + [anon_sym_class] = ACTIONS(2591), + [anon_sym_struct] = ACTIONS(2591), + [anon_sym_union] = ACTIONS(2591), + [anon_sym_if] = ACTIONS(2591), + [anon_sym_else] = ACTIONS(2591), + [anon_sym_switch] = ACTIONS(2591), + [anon_sym_while] = ACTIONS(2591), + [anon_sym_do] = ACTIONS(2591), + [anon_sym_for] = ACTIONS(2591), + [anon_sym_return] = ACTIONS(2591), + [anon_sym_break] = ACTIONS(2591), + [anon_sym_continue] = ACTIONS(2591), + [anon_sym_goto] = ACTIONS(2591), + [anon_sym_not] = ACTIONS(2591), + [anon_sym_compl] = ACTIONS(2591), + [anon_sym_DASH_DASH] = ACTIONS(2593), + [anon_sym_PLUS_PLUS] = ACTIONS(2593), + [anon_sym_sizeof] = ACTIONS(2591), + [sym_number_literal] = ACTIONS(2593), + [anon_sym_L_SQUOTE] = ACTIONS(2593), + [anon_sym_u_SQUOTE] = ACTIONS(2593), + [anon_sym_U_SQUOTE] = ACTIONS(2593), + [anon_sym_u8_SQUOTE] = ACTIONS(2593), + [anon_sym_SQUOTE] = ACTIONS(2593), + [anon_sym_L_DQUOTE] = ACTIONS(2593), + [anon_sym_u_DQUOTE] = ACTIONS(2593), + [anon_sym_U_DQUOTE] = ACTIONS(2593), + [anon_sym_u8_DQUOTE] = ACTIONS(2593), + [anon_sym_DQUOTE] = ACTIONS(2593), + [sym_true] = ACTIONS(2591), + [sym_false] = ACTIONS(2591), + [sym_null] = ACTIONS(2591), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2591), + [anon_sym_decltype] = ACTIONS(2591), + [anon_sym_virtual] = ACTIONS(2591), + [anon_sym_typename] = ACTIONS(2591), + [anon_sym_template] = ACTIONS(2591), + [anon_sym_try] = ACTIONS(2591), + [anon_sym_delete] = ACTIONS(2591), + [anon_sym_throw] = ACTIONS(2591), + [anon_sym_co_return] = ACTIONS(2591), + [anon_sym_co_yield] = ACTIONS(2591), + [anon_sym_co_await] = ACTIONS(2591), + [anon_sym_new] = ACTIONS(2591), + [anon_sym_requires] = ACTIONS(2591), + [sym_this] = ACTIONS(2591), + [sym_nullptr] = ACTIONS(2591), + [sym_raw_string_literal] = ACTIONS(2593), + }, + [1191] = { + [sym_identifier] = ACTIONS(2587), + [anon_sym_LPAREN2] = ACTIONS(2589), + [anon_sym_BANG] = ACTIONS(2589), + [anon_sym_TILDE] = ACTIONS(2589), + [anon_sym_DASH] = ACTIONS(2587), + [anon_sym_PLUS] = ACTIONS(2587), + [anon_sym_STAR] = ACTIONS(2589), + [anon_sym_AMP] = ACTIONS(2589), + [anon_sym_SEMI] = ACTIONS(2589), + [anon_sym_typedef] = ACTIONS(2587), + [anon_sym_extern] = ACTIONS(2587), + [anon_sym___attribute__] = ACTIONS(2587), + [anon_sym_COLON_COLON] = ACTIONS(2589), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2589), + [anon_sym___declspec] = ACTIONS(2587), + [anon_sym_LBRACE] = ACTIONS(2589), + [anon_sym_LBRACK] = ACTIONS(2587), + [anon_sym_static] = ACTIONS(2587), + [anon_sym_register] = ACTIONS(2587), + [anon_sym_inline] = ACTIONS(2587), + [anon_sym_thread_local] = ACTIONS(2587), + [anon_sym_const] = ACTIONS(2587), + [anon_sym_volatile] = ACTIONS(2587), + [anon_sym_restrict] = ACTIONS(2587), + [anon_sym__Atomic] = ACTIONS(2587), + [anon_sym_mutable] = ACTIONS(2587), + [anon_sym_constexpr] = ACTIONS(2587), + [anon_sym_constinit] = ACTIONS(2587), + [anon_sym_consteval] = ACTIONS(2587), + [anon_sym_signed] = ACTIONS(2587), + [anon_sym_unsigned] = ACTIONS(2587), + [anon_sym_long] = ACTIONS(2587), + [anon_sym_short] = ACTIONS(2587), + [sym_primitive_type] = ACTIONS(2587), + [anon_sym_enum] = ACTIONS(2587), + [anon_sym_class] = ACTIONS(2587), + [anon_sym_struct] = ACTIONS(2587), + [anon_sym_union] = ACTIONS(2587), + [anon_sym_if] = ACTIONS(2587), + [anon_sym_else] = ACTIONS(2587), + [anon_sym_switch] = ACTIONS(2587), + [anon_sym_while] = ACTIONS(2587), + [anon_sym_do] = ACTIONS(2587), + [anon_sym_for] = ACTIONS(2587), + [anon_sym_return] = ACTIONS(2587), + [anon_sym_break] = ACTIONS(2587), + [anon_sym_continue] = ACTIONS(2587), + [anon_sym_goto] = ACTIONS(2587), + [anon_sym_not] = ACTIONS(2587), + [anon_sym_compl] = ACTIONS(2587), + [anon_sym_DASH_DASH] = ACTIONS(2589), + [anon_sym_PLUS_PLUS] = ACTIONS(2589), + [anon_sym_sizeof] = ACTIONS(2587), + [sym_number_literal] = ACTIONS(2589), + [anon_sym_L_SQUOTE] = ACTIONS(2589), + [anon_sym_u_SQUOTE] = ACTIONS(2589), + [anon_sym_U_SQUOTE] = ACTIONS(2589), + [anon_sym_u8_SQUOTE] = ACTIONS(2589), + [anon_sym_SQUOTE] = ACTIONS(2589), + [anon_sym_L_DQUOTE] = ACTIONS(2589), + [anon_sym_u_DQUOTE] = ACTIONS(2589), + [anon_sym_U_DQUOTE] = ACTIONS(2589), + [anon_sym_u8_DQUOTE] = ACTIONS(2589), + [anon_sym_DQUOTE] = ACTIONS(2589), + [sym_true] = ACTIONS(2587), + [sym_false] = ACTIONS(2587), + [sym_null] = ACTIONS(2587), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2587), + [anon_sym_decltype] = ACTIONS(2587), + [anon_sym_virtual] = ACTIONS(2587), + [anon_sym_typename] = ACTIONS(2587), + [anon_sym_template] = ACTIONS(2587), + [anon_sym_try] = ACTIONS(2587), + [anon_sym_delete] = ACTIONS(2587), + [anon_sym_throw] = ACTIONS(2587), + [anon_sym_co_return] = ACTIONS(2587), + [anon_sym_co_yield] = ACTIONS(2587), + [anon_sym_co_await] = ACTIONS(2587), + [anon_sym_new] = ACTIONS(2587), + [anon_sym_requires] = ACTIONS(2587), + [sym_this] = ACTIONS(2587), + [sym_nullptr] = ACTIONS(2587), + [sym_raw_string_literal] = ACTIONS(2589), + }, + [1192] = { + [sym_identifier] = ACTIONS(2571), + [anon_sym_LPAREN2] = ACTIONS(2573), + [anon_sym_BANG] = ACTIONS(2573), + [anon_sym_TILDE] = ACTIONS(2573), + [anon_sym_DASH] = ACTIONS(2571), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_STAR] = ACTIONS(2573), + [anon_sym_AMP] = ACTIONS(2573), + [anon_sym_SEMI] = ACTIONS(2573), + [anon_sym_typedef] = ACTIONS(2571), + [anon_sym_extern] = ACTIONS(2571), + [anon_sym___attribute__] = ACTIONS(2571), + [anon_sym_COLON_COLON] = ACTIONS(2573), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2573), + [anon_sym___declspec] = ACTIONS(2571), + [anon_sym_LBRACE] = ACTIONS(2573), + [anon_sym_LBRACK] = ACTIONS(2571), + [anon_sym_static] = ACTIONS(2571), + [anon_sym_register] = ACTIONS(2571), + [anon_sym_inline] = ACTIONS(2571), + [anon_sym_thread_local] = ACTIONS(2571), + [anon_sym_const] = ACTIONS(2571), + [anon_sym_volatile] = ACTIONS(2571), + [anon_sym_restrict] = ACTIONS(2571), + [anon_sym__Atomic] = ACTIONS(2571), + [anon_sym_mutable] = ACTIONS(2571), + [anon_sym_constexpr] = ACTIONS(2571), + [anon_sym_constinit] = ACTIONS(2571), + [anon_sym_consteval] = ACTIONS(2571), + [anon_sym_signed] = ACTIONS(2571), + [anon_sym_unsigned] = ACTIONS(2571), + [anon_sym_long] = ACTIONS(2571), + [anon_sym_short] = ACTIONS(2571), + [sym_primitive_type] = ACTIONS(2571), + [anon_sym_enum] = ACTIONS(2571), + [anon_sym_class] = ACTIONS(2571), + [anon_sym_struct] = ACTIONS(2571), + [anon_sym_union] = ACTIONS(2571), + [anon_sym_if] = ACTIONS(2571), + [anon_sym_else] = ACTIONS(2571), + [anon_sym_switch] = ACTIONS(2571), + [anon_sym_while] = ACTIONS(2571), + [anon_sym_do] = ACTIONS(2571), + [anon_sym_for] = ACTIONS(2571), + [anon_sym_return] = ACTIONS(2571), + [anon_sym_break] = ACTIONS(2571), + [anon_sym_continue] = ACTIONS(2571), + [anon_sym_goto] = ACTIONS(2571), + [anon_sym_not] = ACTIONS(2571), + [anon_sym_compl] = ACTIONS(2571), + [anon_sym_DASH_DASH] = ACTIONS(2573), + [anon_sym_PLUS_PLUS] = ACTIONS(2573), + [anon_sym_sizeof] = ACTIONS(2571), + [sym_number_literal] = ACTIONS(2573), + [anon_sym_L_SQUOTE] = ACTIONS(2573), + [anon_sym_u_SQUOTE] = ACTIONS(2573), + [anon_sym_U_SQUOTE] = ACTIONS(2573), + [anon_sym_u8_SQUOTE] = ACTIONS(2573), + [anon_sym_SQUOTE] = ACTIONS(2573), + [anon_sym_L_DQUOTE] = ACTIONS(2573), + [anon_sym_u_DQUOTE] = ACTIONS(2573), + [anon_sym_U_DQUOTE] = ACTIONS(2573), + [anon_sym_u8_DQUOTE] = ACTIONS(2573), + [anon_sym_DQUOTE] = ACTIONS(2573), + [sym_true] = ACTIONS(2571), + [sym_false] = ACTIONS(2571), + [sym_null] = ACTIONS(2571), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2571), + [anon_sym_decltype] = ACTIONS(2571), + [anon_sym_virtual] = ACTIONS(2571), + [anon_sym_typename] = ACTIONS(2571), + [anon_sym_template] = ACTIONS(2571), + [anon_sym_try] = ACTIONS(2571), + [anon_sym_delete] = ACTIONS(2571), + [anon_sym_throw] = ACTIONS(2571), + [anon_sym_co_return] = ACTIONS(2571), + [anon_sym_co_yield] = ACTIONS(2571), + [anon_sym_co_await] = ACTIONS(2571), + [anon_sym_new] = ACTIONS(2571), + [anon_sym_requires] = ACTIONS(2571), + [sym_this] = ACTIONS(2571), + [sym_nullptr] = ACTIONS(2571), + [sym_raw_string_literal] = ACTIONS(2573), + }, + [1193] = { + [sym_identifier] = ACTIONS(2575), + [anon_sym_LPAREN2] = ACTIONS(2577), + [anon_sym_BANG] = ACTIONS(2577), + [anon_sym_TILDE] = ACTIONS(2577), + [anon_sym_DASH] = ACTIONS(2575), + [anon_sym_PLUS] = ACTIONS(2575), + [anon_sym_STAR] = ACTIONS(2577), + [anon_sym_AMP] = ACTIONS(2577), + [anon_sym_SEMI] = ACTIONS(2577), + [anon_sym_typedef] = ACTIONS(2575), + [anon_sym_extern] = ACTIONS(2575), + [anon_sym___attribute__] = ACTIONS(2575), + [anon_sym_COLON_COLON] = ACTIONS(2577), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2577), + [anon_sym___declspec] = ACTIONS(2575), + [anon_sym_LBRACE] = ACTIONS(2577), + [anon_sym_LBRACK] = ACTIONS(2575), + [anon_sym_static] = ACTIONS(2575), + [anon_sym_register] = ACTIONS(2575), + [anon_sym_inline] = ACTIONS(2575), + [anon_sym_thread_local] = ACTIONS(2575), + [anon_sym_const] = ACTIONS(2575), + [anon_sym_volatile] = ACTIONS(2575), + [anon_sym_restrict] = ACTIONS(2575), + [anon_sym__Atomic] = ACTIONS(2575), + [anon_sym_mutable] = ACTIONS(2575), + [anon_sym_constexpr] = ACTIONS(2575), + [anon_sym_constinit] = ACTIONS(2575), + [anon_sym_consteval] = ACTIONS(2575), + [anon_sym_signed] = ACTIONS(2575), + [anon_sym_unsigned] = ACTIONS(2575), + [anon_sym_long] = ACTIONS(2575), + [anon_sym_short] = ACTIONS(2575), + [sym_primitive_type] = ACTIONS(2575), + [anon_sym_enum] = ACTIONS(2575), + [anon_sym_class] = ACTIONS(2575), + [anon_sym_struct] = ACTIONS(2575), + [anon_sym_union] = ACTIONS(2575), + [anon_sym_if] = ACTIONS(2575), + [anon_sym_else] = ACTIONS(2575), + [anon_sym_switch] = ACTIONS(2575), + [anon_sym_while] = ACTIONS(2575), + [anon_sym_do] = ACTIONS(2575), + [anon_sym_for] = ACTIONS(2575), + [anon_sym_return] = ACTIONS(2575), + [anon_sym_break] = ACTIONS(2575), + [anon_sym_continue] = ACTIONS(2575), + [anon_sym_goto] = ACTIONS(2575), + [anon_sym_not] = ACTIONS(2575), + [anon_sym_compl] = ACTIONS(2575), + [anon_sym_DASH_DASH] = ACTIONS(2577), + [anon_sym_PLUS_PLUS] = ACTIONS(2577), + [anon_sym_sizeof] = ACTIONS(2575), + [sym_number_literal] = ACTIONS(2577), + [anon_sym_L_SQUOTE] = ACTIONS(2577), + [anon_sym_u_SQUOTE] = ACTIONS(2577), + [anon_sym_U_SQUOTE] = ACTIONS(2577), + [anon_sym_u8_SQUOTE] = ACTIONS(2577), + [anon_sym_SQUOTE] = ACTIONS(2577), + [anon_sym_L_DQUOTE] = ACTIONS(2577), + [anon_sym_u_DQUOTE] = ACTIONS(2577), + [anon_sym_U_DQUOTE] = ACTIONS(2577), + [anon_sym_u8_DQUOTE] = ACTIONS(2577), + [anon_sym_DQUOTE] = ACTIONS(2577), + [sym_true] = ACTIONS(2575), + [sym_false] = ACTIONS(2575), + [sym_null] = ACTIONS(2575), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2575), + [anon_sym_decltype] = ACTIONS(2575), + [anon_sym_virtual] = ACTIONS(2575), + [anon_sym_typename] = ACTIONS(2575), + [anon_sym_template] = ACTIONS(2575), + [anon_sym_try] = ACTIONS(2575), + [anon_sym_delete] = ACTIONS(2575), + [anon_sym_throw] = ACTIONS(2575), + [anon_sym_co_return] = ACTIONS(2575), + [anon_sym_co_yield] = ACTIONS(2575), + [anon_sym_co_await] = ACTIONS(2575), + [anon_sym_new] = ACTIONS(2575), + [anon_sym_requires] = ACTIONS(2575), + [sym_this] = ACTIONS(2575), + [sym_nullptr] = ACTIONS(2575), + [sym_raw_string_literal] = ACTIONS(2577), + }, + [1194] = { + [sym_identifier] = ACTIONS(2583), + [anon_sym_LPAREN2] = ACTIONS(2585), + [anon_sym_BANG] = ACTIONS(2585), + [anon_sym_TILDE] = ACTIONS(2585), + [anon_sym_DASH] = ACTIONS(2583), + [anon_sym_PLUS] = ACTIONS(2583), + [anon_sym_STAR] = ACTIONS(2585), + [anon_sym_AMP] = ACTIONS(2585), + [anon_sym_SEMI] = ACTIONS(2585), + [anon_sym_typedef] = ACTIONS(2583), + [anon_sym_extern] = ACTIONS(2583), + [anon_sym___attribute__] = ACTIONS(2583), + [anon_sym_COLON_COLON] = ACTIONS(2585), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2585), + [anon_sym___declspec] = ACTIONS(2583), + [anon_sym_LBRACE] = ACTIONS(2585), + [anon_sym_LBRACK] = ACTIONS(2583), + [anon_sym_static] = ACTIONS(2583), + [anon_sym_register] = ACTIONS(2583), + [anon_sym_inline] = ACTIONS(2583), + [anon_sym_thread_local] = ACTIONS(2583), + [anon_sym_const] = ACTIONS(2583), + [anon_sym_volatile] = ACTIONS(2583), + [anon_sym_restrict] = ACTIONS(2583), + [anon_sym__Atomic] = ACTIONS(2583), + [anon_sym_mutable] = ACTIONS(2583), + [anon_sym_constexpr] = ACTIONS(2583), + [anon_sym_constinit] = ACTIONS(2583), + [anon_sym_consteval] = ACTIONS(2583), + [anon_sym_signed] = ACTIONS(2583), + [anon_sym_unsigned] = ACTIONS(2583), + [anon_sym_long] = ACTIONS(2583), + [anon_sym_short] = ACTIONS(2583), + [sym_primitive_type] = ACTIONS(2583), + [anon_sym_enum] = ACTIONS(2583), + [anon_sym_class] = ACTIONS(2583), + [anon_sym_struct] = ACTIONS(2583), + [anon_sym_union] = ACTIONS(2583), + [anon_sym_if] = ACTIONS(2583), + [anon_sym_else] = ACTIONS(2583), + [anon_sym_switch] = ACTIONS(2583), + [anon_sym_while] = ACTIONS(2583), + [anon_sym_do] = ACTIONS(2583), + [anon_sym_for] = ACTIONS(2583), + [anon_sym_return] = ACTIONS(2583), + [anon_sym_break] = ACTIONS(2583), + [anon_sym_continue] = ACTIONS(2583), + [anon_sym_goto] = ACTIONS(2583), + [anon_sym_not] = ACTIONS(2583), + [anon_sym_compl] = ACTIONS(2583), + [anon_sym_DASH_DASH] = ACTIONS(2585), + [anon_sym_PLUS_PLUS] = ACTIONS(2585), + [anon_sym_sizeof] = ACTIONS(2583), + [sym_number_literal] = ACTIONS(2585), + [anon_sym_L_SQUOTE] = ACTIONS(2585), + [anon_sym_u_SQUOTE] = ACTIONS(2585), + [anon_sym_U_SQUOTE] = ACTIONS(2585), + [anon_sym_u8_SQUOTE] = ACTIONS(2585), + [anon_sym_SQUOTE] = ACTIONS(2585), + [anon_sym_L_DQUOTE] = ACTIONS(2585), + [anon_sym_u_DQUOTE] = ACTIONS(2585), + [anon_sym_U_DQUOTE] = ACTIONS(2585), + [anon_sym_u8_DQUOTE] = ACTIONS(2585), + [anon_sym_DQUOTE] = ACTIONS(2585), + [sym_true] = ACTIONS(2583), + [sym_false] = ACTIONS(2583), + [sym_null] = ACTIONS(2583), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2583), + [anon_sym_decltype] = ACTIONS(2583), + [anon_sym_virtual] = ACTIONS(2583), + [anon_sym_typename] = ACTIONS(2583), + [anon_sym_template] = ACTIONS(2583), + [anon_sym_try] = ACTIONS(2583), + [anon_sym_delete] = ACTIONS(2583), + [anon_sym_throw] = ACTIONS(2583), + [anon_sym_co_return] = ACTIONS(2583), + [anon_sym_co_yield] = ACTIONS(2583), + [anon_sym_co_await] = ACTIONS(2583), + [anon_sym_new] = ACTIONS(2583), + [anon_sym_requires] = ACTIONS(2583), + [sym_this] = ACTIONS(2583), + [sym_nullptr] = ACTIONS(2583), + [sym_raw_string_literal] = ACTIONS(2585), + }, + [1195] = { + [sym_identifier] = ACTIONS(2513), + [anon_sym_LPAREN2] = ACTIONS(2515), + [anon_sym_BANG] = ACTIONS(2515), + [anon_sym_TILDE] = ACTIONS(2515), + [anon_sym_DASH] = ACTIONS(2513), + [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_STAR] = ACTIONS(2515), + [anon_sym_AMP] = ACTIONS(2515), + [anon_sym_SEMI] = ACTIONS(2515), + [anon_sym_typedef] = ACTIONS(2513), + [anon_sym_extern] = ACTIONS(2513), + [anon_sym___attribute__] = ACTIONS(2513), + [anon_sym_COLON_COLON] = ACTIONS(2515), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2515), + [anon_sym___declspec] = ACTIONS(2513), + [anon_sym_LBRACE] = ACTIONS(2515), + [anon_sym_LBRACK] = ACTIONS(2513), + [anon_sym_static] = ACTIONS(2513), + [anon_sym_register] = ACTIONS(2513), + [anon_sym_inline] = ACTIONS(2513), + [anon_sym_thread_local] = ACTIONS(2513), + [anon_sym_const] = ACTIONS(2513), + [anon_sym_volatile] = ACTIONS(2513), + [anon_sym_restrict] = ACTIONS(2513), + [anon_sym__Atomic] = ACTIONS(2513), + [anon_sym_mutable] = ACTIONS(2513), + [anon_sym_constexpr] = ACTIONS(2513), + [anon_sym_constinit] = ACTIONS(2513), + [anon_sym_consteval] = ACTIONS(2513), + [anon_sym_signed] = ACTIONS(2513), + [anon_sym_unsigned] = ACTIONS(2513), + [anon_sym_long] = ACTIONS(2513), + [anon_sym_short] = ACTIONS(2513), + [sym_primitive_type] = ACTIONS(2513), + [anon_sym_enum] = ACTIONS(2513), + [anon_sym_class] = ACTIONS(2513), + [anon_sym_struct] = ACTIONS(2513), + [anon_sym_union] = ACTIONS(2513), + [anon_sym_if] = ACTIONS(2513), + [anon_sym_else] = ACTIONS(2513), + [anon_sym_switch] = ACTIONS(2513), + [anon_sym_while] = ACTIONS(2513), + [anon_sym_do] = ACTIONS(2513), + [anon_sym_for] = ACTIONS(2513), + [anon_sym_return] = ACTIONS(2513), + [anon_sym_break] = ACTIONS(2513), + [anon_sym_continue] = ACTIONS(2513), + [anon_sym_goto] = ACTIONS(2513), + [anon_sym_not] = ACTIONS(2513), + [anon_sym_compl] = ACTIONS(2513), + [anon_sym_DASH_DASH] = ACTIONS(2515), + [anon_sym_PLUS_PLUS] = ACTIONS(2515), + [anon_sym_sizeof] = ACTIONS(2513), + [sym_number_literal] = ACTIONS(2515), + [anon_sym_L_SQUOTE] = ACTIONS(2515), + [anon_sym_u_SQUOTE] = ACTIONS(2515), + [anon_sym_U_SQUOTE] = ACTIONS(2515), + [anon_sym_u8_SQUOTE] = ACTIONS(2515), + [anon_sym_SQUOTE] = ACTIONS(2515), + [anon_sym_L_DQUOTE] = ACTIONS(2515), + [anon_sym_u_DQUOTE] = ACTIONS(2515), + [anon_sym_U_DQUOTE] = ACTIONS(2515), + [anon_sym_u8_DQUOTE] = ACTIONS(2515), + [anon_sym_DQUOTE] = ACTIONS(2515), + [sym_true] = ACTIONS(2513), + [sym_false] = ACTIONS(2513), + [sym_null] = ACTIONS(2513), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2513), + [anon_sym_decltype] = ACTIONS(2513), + [anon_sym_virtual] = ACTIONS(2513), + [anon_sym_typename] = ACTIONS(2513), + [anon_sym_template] = ACTIONS(2513), + [anon_sym_try] = ACTIONS(2513), + [anon_sym_delete] = ACTIONS(2513), + [anon_sym_throw] = ACTIONS(2513), + [anon_sym_co_return] = ACTIONS(2513), + [anon_sym_co_yield] = ACTIONS(2513), + [anon_sym_co_await] = ACTIONS(2513), + [anon_sym_new] = ACTIONS(2513), + [anon_sym_requires] = ACTIONS(2513), + [sym_this] = ACTIONS(2513), + [sym_nullptr] = ACTIONS(2513), + [sym_raw_string_literal] = ACTIONS(2515), + }, + [1196] = { + [sym_identifier] = ACTIONS(2579), + [anon_sym_LPAREN2] = ACTIONS(2581), + [anon_sym_BANG] = ACTIONS(2581), + [anon_sym_TILDE] = ACTIONS(2581), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_STAR] = ACTIONS(2581), + [anon_sym_AMP] = ACTIONS(2581), + [anon_sym_SEMI] = ACTIONS(2581), + [anon_sym_typedef] = ACTIONS(2579), + [anon_sym_extern] = ACTIONS(2579), + [anon_sym___attribute__] = ACTIONS(2579), + [anon_sym_COLON_COLON] = ACTIONS(2581), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2581), + [anon_sym___declspec] = ACTIONS(2579), + [anon_sym_LBRACE] = ACTIONS(2581), + [anon_sym_LBRACK] = ACTIONS(2579), + [anon_sym_static] = ACTIONS(2579), + [anon_sym_register] = ACTIONS(2579), + [anon_sym_inline] = ACTIONS(2579), + [anon_sym_thread_local] = ACTIONS(2579), + [anon_sym_const] = ACTIONS(2579), + [anon_sym_volatile] = ACTIONS(2579), + [anon_sym_restrict] = ACTIONS(2579), + [anon_sym__Atomic] = ACTIONS(2579), + [anon_sym_mutable] = ACTIONS(2579), + [anon_sym_constexpr] = ACTIONS(2579), + [anon_sym_constinit] = ACTIONS(2579), + [anon_sym_consteval] = ACTIONS(2579), + [anon_sym_signed] = ACTIONS(2579), + [anon_sym_unsigned] = ACTIONS(2579), + [anon_sym_long] = ACTIONS(2579), + [anon_sym_short] = ACTIONS(2579), + [sym_primitive_type] = ACTIONS(2579), + [anon_sym_enum] = ACTIONS(2579), + [anon_sym_class] = ACTIONS(2579), + [anon_sym_struct] = ACTIONS(2579), + [anon_sym_union] = ACTIONS(2579), + [anon_sym_if] = ACTIONS(2579), + [anon_sym_else] = ACTIONS(2579), + [anon_sym_switch] = ACTIONS(2579), + [anon_sym_while] = ACTIONS(2579), + [anon_sym_do] = ACTIONS(2579), + [anon_sym_for] = ACTIONS(2579), + [anon_sym_return] = ACTIONS(2579), + [anon_sym_break] = ACTIONS(2579), + [anon_sym_continue] = ACTIONS(2579), + [anon_sym_goto] = ACTIONS(2579), + [anon_sym_not] = ACTIONS(2579), + [anon_sym_compl] = ACTIONS(2579), + [anon_sym_DASH_DASH] = ACTIONS(2581), + [anon_sym_PLUS_PLUS] = ACTIONS(2581), + [anon_sym_sizeof] = ACTIONS(2579), + [sym_number_literal] = ACTIONS(2581), + [anon_sym_L_SQUOTE] = ACTIONS(2581), + [anon_sym_u_SQUOTE] = ACTIONS(2581), + [anon_sym_U_SQUOTE] = ACTIONS(2581), + [anon_sym_u8_SQUOTE] = ACTIONS(2581), + [anon_sym_SQUOTE] = ACTIONS(2581), + [anon_sym_L_DQUOTE] = ACTIONS(2581), + [anon_sym_u_DQUOTE] = ACTIONS(2581), + [anon_sym_U_DQUOTE] = ACTIONS(2581), + [anon_sym_u8_DQUOTE] = ACTIONS(2581), + [anon_sym_DQUOTE] = ACTIONS(2581), + [sym_true] = ACTIONS(2579), + [sym_false] = ACTIONS(2579), + [sym_null] = ACTIONS(2579), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2579), + [anon_sym_decltype] = ACTIONS(2579), + [anon_sym_virtual] = ACTIONS(2579), + [anon_sym_typename] = ACTIONS(2579), + [anon_sym_template] = ACTIONS(2579), + [anon_sym_try] = ACTIONS(2579), + [anon_sym_delete] = ACTIONS(2579), + [anon_sym_throw] = ACTIONS(2579), + [anon_sym_co_return] = ACTIONS(2579), + [anon_sym_co_yield] = ACTIONS(2579), + [anon_sym_co_await] = ACTIONS(2579), + [anon_sym_new] = ACTIONS(2579), + [anon_sym_requires] = ACTIONS(2579), + [sym_this] = ACTIONS(2579), + [sym_nullptr] = ACTIONS(2579), + [sym_raw_string_literal] = ACTIONS(2581), + }, + [1197] = { + [sym_identifier] = ACTIONS(2509), + [anon_sym_LPAREN2] = ACTIONS(2511), + [anon_sym_BANG] = ACTIONS(2511), + [anon_sym_TILDE] = ACTIONS(2511), + [anon_sym_DASH] = ACTIONS(2509), + [anon_sym_PLUS] = ACTIONS(2509), + [anon_sym_STAR] = ACTIONS(2511), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2511), + [anon_sym_typedef] = ACTIONS(2509), + [anon_sym_extern] = ACTIONS(2509), + [anon_sym___attribute__] = ACTIONS(2509), + [anon_sym_COLON_COLON] = ACTIONS(2511), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2511), + [anon_sym___declspec] = ACTIONS(2509), + [anon_sym_LBRACE] = ACTIONS(2511), + [anon_sym_LBRACK] = ACTIONS(2509), + [anon_sym_static] = ACTIONS(2509), + [anon_sym_register] = ACTIONS(2509), + [anon_sym_inline] = ACTIONS(2509), + [anon_sym_thread_local] = ACTIONS(2509), + [anon_sym_const] = ACTIONS(2509), + [anon_sym_volatile] = ACTIONS(2509), + [anon_sym_restrict] = ACTIONS(2509), + [anon_sym__Atomic] = ACTIONS(2509), + [anon_sym_mutable] = ACTIONS(2509), + [anon_sym_constexpr] = ACTIONS(2509), + [anon_sym_constinit] = ACTIONS(2509), + [anon_sym_consteval] = ACTIONS(2509), + [anon_sym_signed] = ACTIONS(2509), + [anon_sym_unsigned] = ACTIONS(2509), + [anon_sym_long] = ACTIONS(2509), + [anon_sym_short] = ACTIONS(2509), + [sym_primitive_type] = ACTIONS(2509), + [anon_sym_enum] = ACTIONS(2509), + [anon_sym_class] = ACTIONS(2509), + [anon_sym_struct] = ACTIONS(2509), + [anon_sym_union] = ACTIONS(2509), + [anon_sym_if] = ACTIONS(2509), + [anon_sym_else] = ACTIONS(2509), + [anon_sym_switch] = ACTIONS(2509), + [anon_sym_while] = ACTIONS(2509), + [anon_sym_do] = ACTIONS(2509), + [anon_sym_for] = ACTIONS(2509), + [anon_sym_return] = ACTIONS(2509), + [anon_sym_break] = ACTIONS(2509), + [anon_sym_continue] = ACTIONS(2509), + [anon_sym_goto] = ACTIONS(2509), + [anon_sym_not] = ACTIONS(2509), + [anon_sym_compl] = ACTIONS(2509), + [anon_sym_DASH_DASH] = ACTIONS(2511), + [anon_sym_PLUS_PLUS] = ACTIONS(2511), + [anon_sym_sizeof] = ACTIONS(2509), + [sym_number_literal] = ACTIONS(2511), + [anon_sym_L_SQUOTE] = ACTIONS(2511), + [anon_sym_u_SQUOTE] = ACTIONS(2511), + [anon_sym_U_SQUOTE] = ACTIONS(2511), + [anon_sym_u8_SQUOTE] = ACTIONS(2511), + [anon_sym_SQUOTE] = ACTIONS(2511), + [anon_sym_L_DQUOTE] = ACTIONS(2511), + [anon_sym_u_DQUOTE] = ACTIONS(2511), + [anon_sym_U_DQUOTE] = ACTIONS(2511), + [anon_sym_u8_DQUOTE] = ACTIONS(2511), + [anon_sym_DQUOTE] = ACTIONS(2511), + [sym_true] = ACTIONS(2509), + [sym_false] = ACTIONS(2509), + [sym_null] = ACTIONS(2509), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2509), + [anon_sym_decltype] = ACTIONS(2509), + [anon_sym_virtual] = ACTIONS(2509), + [anon_sym_typename] = ACTIONS(2509), + [anon_sym_template] = ACTIONS(2509), + [anon_sym_try] = ACTIONS(2509), + [anon_sym_delete] = ACTIONS(2509), + [anon_sym_throw] = ACTIONS(2509), + [anon_sym_co_return] = ACTIONS(2509), + [anon_sym_co_yield] = ACTIONS(2509), + [anon_sym_co_await] = ACTIONS(2509), + [anon_sym_new] = ACTIONS(2509), + [anon_sym_requires] = ACTIONS(2509), + [sym_this] = ACTIONS(2509), + [sym_nullptr] = ACTIONS(2509), + [sym_raw_string_literal] = ACTIONS(2511), + }, + [1198] = { + [sym_identifier] = ACTIONS(2503), + [anon_sym_LPAREN2] = ACTIONS(2505), + [anon_sym_BANG] = ACTIONS(2505), + [anon_sym_TILDE] = ACTIONS(2505), + [anon_sym_DASH] = ACTIONS(2503), + [anon_sym_PLUS] = ACTIONS(2503), + [anon_sym_STAR] = ACTIONS(2505), + [anon_sym_AMP] = ACTIONS(2505), + [anon_sym_SEMI] = ACTIONS(2505), + [anon_sym_typedef] = ACTIONS(2503), + [anon_sym_extern] = ACTIONS(2503), + [anon_sym___attribute__] = ACTIONS(2503), + [anon_sym_COLON_COLON] = ACTIONS(2505), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2505), + [anon_sym___declspec] = ACTIONS(2503), + [anon_sym_LBRACE] = ACTIONS(2505), + [anon_sym_LBRACK] = ACTIONS(2503), + [anon_sym_static] = ACTIONS(2503), + [anon_sym_register] = ACTIONS(2503), + [anon_sym_inline] = ACTIONS(2503), + [anon_sym_thread_local] = ACTIONS(2503), + [anon_sym_const] = ACTIONS(2503), + [anon_sym_volatile] = ACTIONS(2503), + [anon_sym_restrict] = ACTIONS(2503), + [anon_sym__Atomic] = ACTIONS(2503), + [anon_sym_mutable] = ACTIONS(2503), + [anon_sym_constexpr] = ACTIONS(2503), + [anon_sym_constinit] = ACTIONS(2503), + [anon_sym_consteval] = ACTIONS(2503), + [anon_sym_signed] = ACTIONS(2503), + [anon_sym_unsigned] = ACTIONS(2503), + [anon_sym_long] = ACTIONS(2503), + [anon_sym_short] = ACTIONS(2503), + [sym_primitive_type] = ACTIONS(2503), + [anon_sym_enum] = ACTIONS(2503), + [anon_sym_class] = ACTIONS(2503), + [anon_sym_struct] = ACTIONS(2503), + [anon_sym_union] = ACTIONS(2503), + [anon_sym_if] = ACTIONS(2503), + [anon_sym_else] = ACTIONS(2503), + [anon_sym_switch] = ACTIONS(2503), + [anon_sym_while] = ACTIONS(2503), + [anon_sym_do] = ACTIONS(2503), + [anon_sym_for] = ACTIONS(2503), + [anon_sym_return] = ACTIONS(2503), + [anon_sym_break] = ACTIONS(2503), + [anon_sym_continue] = ACTIONS(2503), + [anon_sym_goto] = ACTIONS(2503), + [anon_sym_not] = ACTIONS(2503), + [anon_sym_compl] = ACTIONS(2503), + [anon_sym_DASH_DASH] = ACTIONS(2505), + [anon_sym_PLUS_PLUS] = ACTIONS(2505), + [anon_sym_sizeof] = ACTIONS(2503), + [sym_number_literal] = ACTIONS(2505), + [anon_sym_L_SQUOTE] = ACTIONS(2505), + [anon_sym_u_SQUOTE] = ACTIONS(2505), + [anon_sym_U_SQUOTE] = ACTIONS(2505), + [anon_sym_u8_SQUOTE] = ACTIONS(2505), + [anon_sym_SQUOTE] = ACTIONS(2505), + [anon_sym_L_DQUOTE] = ACTIONS(2505), + [anon_sym_u_DQUOTE] = ACTIONS(2505), + [anon_sym_U_DQUOTE] = ACTIONS(2505), + [anon_sym_u8_DQUOTE] = ACTIONS(2505), + [anon_sym_DQUOTE] = ACTIONS(2505), + [sym_true] = ACTIONS(2503), + [sym_false] = ACTIONS(2503), + [sym_null] = ACTIONS(2503), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2503), + [anon_sym_decltype] = ACTIONS(2503), + [anon_sym_virtual] = ACTIONS(2503), + [anon_sym_typename] = ACTIONS(2503), + [anon_sym_template] = ACTIONS(2503), + [anon_sym_try] = ACTIONS(2503), + [anon_sym_delete] = ACTIONS(2503), + [anon_sym_throw] = ACTIONS(2503), + [anon_sym_co_return] = ACTIONS(2503), + [anon_sym_co_yield] = ACTIONS(2503), + [anon_sym_co_await] = ACTIONS(2503), + [anon_sym_new] = ACTIONS(2503), + [anon_sym_requires] = ACTIONS(2503), + [sym_this] = ACTIONS(2503), + [sym_nullptr] = ACTIONS(2503), + [sym_raw_string_literal] = ACTIONS(2505), + }, + [1199] = { + [sym_identifier] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), + }, + [1200] = { + [sym_identifier] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), + }, + [1201] = { + [sym_identifier] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), + }, + [1202] = { + [sym_identifier] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), + }, + [1203] = { + [sym_type_qualifier] = STATE(2972), + [sym__expression] = STATE(3845), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3001), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3001), + [sym_call_expression] = STATE(3001), + [sym_field_expression] = STATE(3001), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3001), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3001), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_type_definition_repeat1] = STATE(2972), + [sym_identifier] = ACTIONS(3085), + [anon_sym_LPAREN2] = ACTIONS(3087), + [anon_sym_BANG] = ACTIONS(3091), + [anon_sym_TILDE] = ACTIONS(3091), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(3202), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_RBRACK] = ACTIONS(3204), + [anon_sym_const] = ACTIONS(3180), + [anon_sym_volatile] = ACTIONS(3180), + [anon_sym_restrict] = ACTIONS(3180), + [anon_sym__Atomic] = ACTIONS(3180), + [anon_sym_mutable] = ACTIONS(3180), + [anon_sym_constexpr] = ACTIONS(3180), + [anon_sym_constinit] = ACTIONS(3180), + [anon_sym_consteval] = ACTIONS(3180), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3089), + [anon_sym_compl] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3095), + [anon_sym_PLUS_PLUS] = ACTIONS(3095), + [anon_sym_sizeof] = ACTIONS(3097), [sym_number_literal] = ACTIONS(97), [anon_sym_L_SQUOTE] = ACTIONS(99), [anon_sym_u_SQUOTE] = ACTIONS(99), @@ -195436,67 +166569,682 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3099), + [anon_sym_co_await] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3103), [anon_sym_requires] = ACTIONS(141), [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [1642] = { - [sym__expression] = STATE(3776), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(93), - [anon_sym_PLUS_PLUS] = ACTIONS(93), - [anon_sym_sizeof] = ACTIONS(95), - [sym_number_literal] = ACTIONS(97), - [anon_sym_L_SQUOTE] = ACTIONS(99), - [anon_sym_u_SQUOTE] = ACTIONS(99), + [1204] = { + [sym_identifier] = ACTIONS(2643), + [anon_sym_LPAREN2] = ACTIONS(2645), + [anon_sym_BANG] = ACTIONS(2645), + [anon_sym_TILDE] = ACTIONS(2645), + [anon_sym_DASH] = ACTIONS(2643), + [anon_sym_PLUS] = ACTIONS(2643), + [anon_sym_STAR] = ACTIONS(2645), + [anon_sym_AMP] = ACTIONS(2645), + [anon_sym_SEMI] = ACTIONS(2645), + [anon_sym_typedef] = ACTIONS(2643), + [anon_sym_extern] = ACTIONS(2643), + [anon_sym___attribute__] = ACTIONS(2643), + [anon_sym_COLON_COLON] = ACTIONS(2645), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2645), + [anon_sym___declspec] = ACTIONS(2643), + [anon_sym_LBRACE] = ACTIONS(2645), + [anon_sym_LBRACK] = ACTIONS(2643), + [anon_sym_static] = ACTIONS(2643), + [anon_sym_register] = ACTIONS(2643), + [anon_sym_inline] = ACTIONS(2643), + [anon_sym_thread_local] = ACTIONS(2643), + [anon_sym_const] = ACTIONS(2643), + [anon_sym_volatile] = ACTIONS(2643), + [anon_sym_restrict] = ACTIONS(2643), + [anon_sym__Atomic] = ACTIONS(2643), + [anon_sym_mutable] = ACTIONS(2643), + [anon_sym_constexpr] = ACTIONS(2643), + [anon_sym_constinit] = ACTIONS(2643), + [anon_sym_consteval] = ACTIONS(2643), + [anon_sym_signed] = ACTIONS(2643), + [anon_sym_unsigned] = ACTIONS(2643), + [anon_sym_long] = ACTIONS(2643), + [anon_sym_short] = ACTIONS(2643), + [sym_primitive_type] = ACTIONS(2643), + [anon_sym_enum] = ACTIONS(2643), + [anon_sym_class] = ACTIONS(2643), + [anon_sym_struct] = ACTIONS(2643), + [anon_sym_union] = ACTIONS(2643), + [anon_sym_if] = ACTIONS(2643), + [anon_sym_else] = ACTIONS(2643), + [anon_sym_switch] = ACTIONS(2643), + [anon_sym_while] = ACTIONS(2643), + [anon_sym_do] = ACTIONS(2643), + [anon_sym_for] = ACTIONS(2643), + [anon_sym_return] = ACTIONS(2643), + [anon_sym_break] = ACTIONS(2643), + [anon_sym_continue] = ACTIONS(2643), + [anon_sym_goto] = ACTIONS(2643), + [anon_sym_not] = ACTIONS(2643), + [anon_sym_compl] = ACTIONS(2643), + [anon_sym_DASH_DASH] = ACTIONS(2645), + [anon_sym_PLUS_PLUS] = ACTIONS(2645), + [anon_sym_sizeof] = ACTIONS(2643), + [sym_number_literal] = ACTIONS(2645), + [anon_sym_L_SQUOTE] = ACTIONS(2645), + [anon_sym_u_SQUOTE] = ACTIONS(2645), + [anon_sym_U_SQUOTE] = ACTIONS(2645), + [anon_sym_u8_SQUOTE] = ACTIONS(2645), + [anon_sym_SQUOTE] = ACTIONS(2645), + [anon_sym_L_DQUOTE] = ACTIONS(2645), + [anon_sym_u_DQUOTE] = ACTIONS(2645), + [anon_sym_U_DQUOTE] = ACTIONS(2645), + [anon_sym_u8_DQUOTE] = ACTIONS(2645), + [anon_sym_DQUOTE] = ACTIONS(2645), + [sym_true] = ACTIONS(2643), + [sym_false] = ACTIONS(2643), + [sym_null] = ACTIONS(2643), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2643), + [anon_sym_decltype] = ACTIONS(2643), + [anon_sym_virtual] = ACTIONS(2643), + [anon_sym_typename] = ACTIONS(2643), + [anon_sym_template] = ACTIONS(2643), + [anon_sym_try] = ACTIONS(2643), + [anon_sym_delete] = ACTIONS(2643), + [anon_sym_throw] = ACTIONS(2643), + [anon_sym_co_return] = ACTIONS(2643), + [anon_sym_co_yield] = ACTIONS(2643), + [anon_sym_co_await] = ACTIONS(2643), + [anon_sym_new] = ACTIONS(2643), + [anon_sym_requires] = ACTIONS(2643), + [sym_this] = ACTIONS(2643), + [sym_nullptr] = ACTIONS(2643), + [sym_raw_string_literal] = ACTIONS(2645), + }, + [1205] = { + [sym_identifier] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), + }, + [1206] = { + [sym_identifier] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), + }, + [1207] = { + [sym_identifier] = ACTIONS(2651), + [anon_sym_LPAREN2] = ACTIONS(2653), + [anon_sym_BANG] = ACTIONS(2653), + [anon_sym_TILDE] = ACTIONS(2653), + [anon_sym_DASH] = ACTIONS(2651), + [anon_sym_PLUS] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2653), + [anon_sym_AMP] = ACTIONS(2653), + [anon_sym_SEMI] = ACTIONS(2653), + [anon_sym_typedef] = ACTIONS(2651), + [anon_sym_extern] = ACTIONS(2651), + [anon_sym___attribute__] = ACTIONS(2651), + [anon_sym_COLON_COLON] = ACTIONS(2653), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2653), + [anon_sym___declspec] = ACTIONS(2651), + [anon_sym_LBRACE] = ACTIONS(2653), + [anon_sym_LBRACK] = ACTIONS(2651), + [anon_sym_static] = ACTIONS(2651), + [anon_sym_register] = ACTIONS(2651), + [anon_sym_inline] = ACTIONS(2651), + [anon_sym_thread_local] = ACTIONS(2651), + [anon_sym_const] = ACTIONS(2651), + [anon_sym_volatile] = ACTIONS(2651), + [anon_sym_restrict] = ACTIONS(2651), + [anon_sym__Atomic] = ACTIONS(2651), + [anon_sym_mutable] = ACTIONS(2651), + [anon_sym_constexpr] = ACTIONS(2651), + [anon_sym_constinit] = ACTIONS(2651), + [anon_sym_consteval] = ACTIONS(2651), + [anon_sym_signed] = ACTIONS(2651), + [anon_sym_unsigned] = ACTIONS(2651), + [anon_sym_long] = ACTIONS(2651), + [anon_sym_short] = ACTIONS(2651), + [sym_primitive_type] = ACTIONS(2651), + [anon_sym_enum] = ACTIONS(2651), + [anon_sym_class] = ACTIONS(2651), + [anon_sym_struct] = ACTIONS(2651), + [anon_sym_union] = ACTIONS(2651), + [anon_sym_if] = ACTIONS(2651), + [anon_sym_else] = ACTIONS(2651), + [anon_sym_switch] = ACTIONS(2651), + [anon_sym_while] = ACTIONS(2651), + [anon_sym_do] = ACTIONS(2651), + [anon_sym_for] = ACTIONS(2651), + [anon_sym_return] = ACTIONS(2651), + [anon_sym_break] = ACTIONS(2651), + [anon_sym_continue] = ACTIONS(2651), + [anon_sym_goto] = ACTIONS(2651), + [anon_sym_not] = ACTIONS(2651), + [anon_sym_compl] = ACTIONS(2651), + [anon_sym_DASH_DASH] = ACTIONS(2653), + [anon_sym_PLUS_PLUS] = ACTIONS(2653), + [anon_sym_sizeof] = ACTIONS(2651), + [sym_number_literal] = ACTIONS(2653), + [anon_sym_L_SQUOTE] = ACTIONS(2653), + [anon_sym_u_SQUOTE] = ACTIONS(2653), + [anon_sym_U_SQUOTE] = ACTIONS(2653), + [anon_sym_u8_SQUOTE] = ACTIONS(2653), + [anon_sym_SQUOTE] = ACTIONS(2653), + [anon_sym_L_DQUOTE] = ACTIONS(2653), + [anon_sym_u_DQUOTE] = ACTIONS(2653), + [anon_sym_U_DQUOTE] = ACTIONS(2653), + [anon_sym_u8_DQUOTE] = ACTIONS(2653), + [anon_sym_DQUOTE] = ACTIONS(2653), + [sym_true] = ACTIONS(2651), + [sym_false] = ACTIONS(2651), + [sym_null] = ACTIONS(2651), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2651), + [anon_sym_decltype] = ACTIONS(2651), + [anon_sym_virtual] = ACTIONS(2651), + [anon_sym_typename] = ACTIONS(2651), + [anon_sym_template] = ACTIONS(2651), + [anon_sym_try] = ACTIONS(2651), + [anon_sym_delete] = ACTIONS(2651), + [anon_sym_throw] = ACTIONS(2651), + [anon_sym_co_return] = ACTIONS(2651), + [anon_sym_co_yield] = ACTIONS(2651), + [anon_sym_co_await] = ACTIONS(2651), + [anon_sym_new] = ACTIONS(2651), + [anon_sym_requires] = ACTIONS(2651), + [sym_this] = ACTIONS(2651), + [sym_nullptr] = ACTIONS(2651), + [sym_raw_string_literal] = ACTIONS(2653), + }, + [1208] = { + [sym_identifier] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), + }, + [1209] = { + [sym_identifier] = ACTIONS(2567), + [anon_sym_LPAREN2] = ACTIONS(2569), + [anon_sym_BANG] = ACTIONS(2569), + [anon_sym_TILDE] = ACTIONS(2569), + [anon_sym_DASH] = ACTIONS(2567), + [anon_sym_PLUS] = ACTIONS(2567), + [anon_sym_STAR] = ACTIONS(2569), + [anon_sym_AMP] = ACTIONS(2569), + [anon_sym_SEMI] = ACTIONS(2569), + [anon_sym_typedef] = ACTIONS(2567), + [anon_sym_extern] = ACTIONS(2567), + [anon_sym___attribute__] = ACTIONS(2567), + [anon_sym_COLON_COLON] = ACTIONS(2569), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2569), + [anon_sym___declspec] = ACTIONS(2567), + [anon_sym_LBRACE] = ACTIONS(2569), + [anon_sym_LBRACK] = ACTIONS(2567), + [anon_sym_static] = ACTIONS(2567), + [anon_sym_register] = ACTIONS(2567), + [anon_sym_inline] = ACTIONS(2567), + [anon_sym_thread_local] = ACTIONS(2567), + [anon_sym_const] = ACTIONS(2567), + [anon_sym_volatile] = ACTIONS(2567), + [anon_sym_restrict] = ACTIONS(2567), + [anon_sym__Atomic] = ACTIONS(2567), + [anon_sym_mutable] = ACTIONS(2567), + [anon_sym_constexpr] = ACTIONS(2567), + [anon_sym_constinit] = ACTIONS(2567), + [anon_sym_consteval] = ACTIONS(2567), + [anon_sym_signed] = ACTIONS(2567), + [anon_sym_unsigned] = ACTIONS(2567), + [anon_sym_long] = ACTIONS(2567), + [anon_sym_short] = ACTIONS(2567), + [sym_primitive_type] = ACTIONS(2567), + [anon_sym_enum] = ACTIONS(2567), + [anon_sym_class] = ACTIONS(2567), + [anon_sym_struct] = ACTIONS(2567), + [anon_sym_union] = ACTIONS(2567), + [anon_sym_if] = ACTIONS(2567), + [anon_sym_else] = ACTIONS(2567), + [anon_sym_switch] = ACTIONS(2567), + [anon_sym_while] = ACTIONS(2567), + [anon_sym_do] = ACTIONS(2567), + [anon_sym_for] = ACTIONS(2567), + [anon_sym_return] = ACTIONS(2567), + [anon_sym_break] = ACTIONS(2567), + [anon_sym_continue] = ACTIONS(2567), + [anon_sym_goto] = ACTIONS(2567), + [anon_sym_not] = ACTIONS(2567), + [anon_sym_compl] = ACTIONS(2567), + [anon_sym_DASH_DASH] = ACTIONS(2569), + [anon_sym_PLUS_PLUS] = ACTIONS(2569), + [anon_sym_sizeof] = ACTIONS(2567), + [sym_number_literal] = ACTIONS(2569), + [anon_sym_L_SQUOTE] = ACTIONS(2569), + [anon_sym_u_SQUOTE] = ACTIONS(2569), + [anon_sym_U_SQUOTE] = ACTIONS(2569), + [anon_sym_u8_SQUOTE] = ACTIONS(2569), + [anon_sym_SQUOTE] = ACTIONS(2569), + [anon_sym_L_DQUOTE] = ACTIONS(2569), + [anon_sym_u_DQUOTE] = ACTIONS(2569), + [anon_sym_U_DQUOTE] = ACTIONS(2569), + [anon_sym_u8_DQUOTE] = ACTIONS(2569), + [anon_sym_DQUOTE] = ACTIONS(2569), + [sym_true] = ACTIONS(2567), + [sym_false] = ACTIONS(2567), + [sym_null] = ACTIONS(2567), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2567), + [anon_sym_decltype] = ACTIONS(2567), + [anon_sym_virtual] = ACTIONS(2567), + [anon_sym_typename] = ACTIONS(2567), + [anon_sym_template] = ACTIONS(2567), + [anon_sym_try] = ACTIONS(2567), + [anon_sym_delete] = ACTIONS(2567), + [anon_sym_throw] = ACTIONS(2567), + [anon_sym_co_return] = ACTIONS(2567), + [anon_sym_co_yield] = ACTIONS(2567), + [anon_sym_co_await] = ACTIONS(2567), + [anon_sym_new] = ACTIONS(2567), + [anon_sym_requires] = ACTIONS(2567), + [sym_this] = ACTIONS(2567), + [sym_nullptr] = ACTIONS(2567), + [sym_raw_string_literal] = ACTIONS(2569), + }, + [1210] = { + [sym_identifier] = ACTIONS(2551), + [anon_sym_LPAREN2] = ACTIONS(2553), + [anon_sym_BANG] = ACTIONS(2553), + [anon_sym_TILDE] = ACTIONS(2553), + [anon_sym_DASH] = ACTIONS(2551), + [anon_sym_PLUS] = ACTIONS(2551), + [anon_sym_STAR] = ACTIONS(2553), + [anon_sym_AMP] = ACTIONS(2553), + [anon_sym_SEMI] = ACTIONS(2553), + [anon_sym_typedef] = ACTIONS(2551), + [anon_sym_extern] = ACTIONS(2551), + [anon_sym___attribute__] = ACTIONS(2551), + [anon_sym_COLON_COLON] = ACTIONS(2553), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2553), + [anon_sym___declspec] = ACTIONS(2551), + [anon_sym_LBRACE] = ACTIONS(2553), + [anon_sym_LBRACK] = ACTIONS(2551), + [anon_sym_static] = ACTIONS(2551), + [anon_sym_register] = ACTIONS(2551), + [anon_sym_inline] = ACTIONS(2551), + [anon_sym_thread_local] = ACTIONS(2551), + [anon_sym_const] = ACTIONS(2551), + [anon_sym_volatile] = ACTIONS(2551), + [anon_sym_restrict] = ACTIONS(2551), + [anon_sym__Atomic] = ACTIONS(2551), + [anon_sym_mutable] = ACTIONS(2551), + [anon_sym_constexpr] = ACTIONS(2551), + [anon_sym_constinit] = ACTIONS(2551), + [anon_sym_consteval] = ACTIONS(2551), + [anon_sym_signed] = ACTIONS(2551), + [anon_sym_unsigned] = ACTIONS(2551), + [anon_sym_long] = ACTIONS(2551), + [anon_sym_short] = ACTIONS(2551), + [sym_primitive_type] = ACTIONS(2551), + [anon_sym_enum] = ACTIONS(2551), + [anon_sym_class] = ACTIONS(2551), + [anon_sym_struct] = ACTIONS(2551), + [anon_sym_union] = ACTIONS(2551), + [anon_sym_if] = ACTIONS(2551), + [anon_sym_else] = ACTIONS(2551), + [anon_sym_switch] = ACTIONS(2551), + [anon_sym_while] = ACTIONS(2551), + [anon_sym_do] = ACTIONS(2551), + [anon_sym_for] = ACTIONS(2551), + [anon_sym_return] = ACTIONS(2551), + [anon_sym_break] = ACTIONS(2551), + [anon_sym_continue] = ACTIONS(2551), + [anon_sym_goto] = ACTIONS(2551), + [anon_sym_not] = ACTIONS(2551), + [anon_sym_compl] = ACTIONS(2551), + [anon_sym_DASH_DASH] = ACTIONS(2553), + [anon_sym_PLUS_PLUS] = ACTIONS(2553), + [anon_sym_sizeof] = ACTIONS(2551), + [sym_number_literal] = ACTIONS(2553), + [anon_sym_L_SQUOTE] = ACTIONS(2553), + [anon_sym_u_SQUOTE] = ACTIONS(2553), + [anon_sym_U_SQUOTE] = ACTIONS(2553), + [anon_sym_u8_SQUOTE] = ACTIONS(2553), + [anon_sym_SQUOTE] = ACTIONS(2553), + [anon_sym_L_DQUOTE] = ACTIONS(2553), + [anon_sym_u_DQUOTE] = ACTIONS(2553), + [anon_sym_U_DQUOTE] = ACTIONS(2553), + [anon_sym_u8_DQUOTE] = ACTIONS(2553), + [anon_sym_DQUOTE] = ACTIONS(2553), + [sym_true] = ACTIONS(2551), + [sym_false] = ACTIONS(2551), + [sym_null] = ACTIONS(2551), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2551), + [anon_sym_decltype] = ACTIONS(2551), + [anon_sym_virtual] = ACTIONS(2551), + [anon_sym_typename] = ACTIONS(2551), + [anon_sym_template] = ACTIONS(2551), + [anon_sym_try] = ACTIONS(2551), + [anon_sym_delete] = ACTIONS(2551), + [anon_sym_throw] = ACTIONS(2551), + [anon_sym_co_return] = ACTIONS(2551), + [anon_sym_co_yield] = ACTIONS(2551), + [anon_sym_co_await] = ACTIONS(2551), + [anon_sym_new] = ACTIONS(2551), + [anon_sym_requires] = ACTIONS(2551), + [sym_this] = ACTIONS(2551), + [sym_nullptr] = ACTIONS(2551), + [sym_raw_string_literal] = ACTIONS(2553), + }, + [1211] = { + [sym_type_qualifier] = STATE(1244), + [sym__expression] = STATE(3911), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3001), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3001), + [sym_call_expression] = STATE(3001), + [sym_field_expression] = STATE(3001), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3001), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3001), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_type_definition_repeat1] = STATE(1244), + [sym_identifier] = ACTIONS(3085), + [anon_sym_LPAREN2] = ACTIONS(3087), + [anon_sym_BANG] = ACTIONS(3091), + [anon_sym_TILDE] = ACTIONS(3091), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(3206), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_RBRACK] = ACTIONS(3208), + [anon_sym_const] = ACTIONS(3180), + [anon_sym_volatile] = ACTIONS(3180), + [anon_sym_restrict] = ACTIONS(3180), + [anon_sym__Atomic] = ACTIONS(3180), + [anon_sym_mutable] = ACTIONS(3180), + [anon_sym_constexpr] = ACTIONS(3180), + [anon_sym_constinit] = ACTIONS(3180), + [anon_sym_consteval] = ACTIONS(3180), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3089), + [anon_sym_compl] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3095), + [anon_sym_PLUS_PLUS] = ACTIONS(3095), + [anon_sym_sizeof] = ACTIONS(3097), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), [anon_sym_U_SQUOTE] = ACTIONS(99), [anon_sym_u8_SQUOTE] = ACTIONS(99), [anon_sym_SQUOTE] = ACTIONS(99), @@ -195509,61 +167257,2910 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(121), - [anon_sym_co_await] = ACTIONS(137), - [anon_sym_new] = ACTIONS(139), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3099), + [anon_sym_co_await] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3103), [anon_sym_requires] = ACTIONS(141), [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [1643] = { - [sym__expression] = STATE(3887), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), + [1212] = { + [sym_identifier] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), + }, + [1213] = { + [sym_identifier] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), + }, + [1214] = { + [sym_identifier] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), + }, + [1215] = { + [sym_identifier] = ACTIONS(2547), + [anon_sym_LPAREN2] = ACTIONS(2549), + [anon_sym_BANG] = ACTIONS(2549), + [anon_sym_TILDE] = ACTIONS(2549), + [anon_sym_DASH] = ACTIONS(2547), + [anon_sym_PLUS] = ACTIONS(2547), + [anon_sym_STAR] = ACTIONS(2549), + [anon_sym_AMP] = ACTIONS(2549), + [anon_sym_SEMI] = ACTIONS(2549), + [anon_sym_typedef] = ACTIONS(2547), + [anon_sym_extern] = ACTIONS(2547), + [anon_sym___attribute__] = ACTIONS(2547), + [anon_sym_COLON_COLON] = ACTIONS(2549), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2549), + [anon_sym___declspec] = ACTIONS(2547), + [anon_sym_LBRACE] = ACTIONS(2549), + [anon_sym_LBRACK] = ACTIONS(2547), + [anon_sym_static] = ACTIONS(2547), + [anon_sym_register] = ACTIONS(2547), + [anon_sym_inline] = ACTIONS(2547), + [anon_sym_thread_local] = ACTIONS(2547), + [anon_sym_const] = ACTIONS(2547), + [anon_sym_volatile] = ACTIONS(2547), + [anon_sym_restrict] = ACTIONS(2547), + [anon_sym__Atomic] = ACTIONS(2547), + [anon_sym_mutable] = ACTIONS(2547), + [anon_sym_constexpr] = ACTIONS(2547), + [anon_sym_constinit] = ACTIONS(2547), + [anon_sym_consteval] = ACTIONS(2547), + [anon_sym_signed] = ACTIONS(2547), + [anon_sym_unsigned] = ACTIONS(2547), + [anon_sym_long] = ACTIONS(2547), + [anon_sym_short] = ACTIONS(2547), + [sym_primitive_type] = ACTIONS(2547), + [anon_sym_enum] = ACTIONS(2547), + [anon_sym_class] = ACTIONS(2547), + [anon_sym_struct] = ACTIONS(2547), + [anon_sym_union] = ACTIONS(2547), + [anon_sym_if] = ACTIONS(2547), + [anon_sym_else] = ACTIONS(2547), + [anon_sym_switch] = ACTIONS(2547), + [anon_sym_while] = ACTIONS(2547), + [anon_sym_do] = ACTIONS(2547), + [anon_sym_for] = ACTIONS(2547), + [anon_sym_return] = ACTIONS(2547), + [anon_sym_break] = ACTIONS(2547), + [anon_sym_continue] = ACTIONS(2547), + [anon_sym_goto] = ACTIONS(2547), + [anon_sym_not] = ACTIONS(2547), + [anon_sym_compl] = ACTIONS(2547), + [anon_sym_DASH_DASH] = ACTIONS(2549), + [anon_sym_PLUS_PLUS] = ACTIONS(2549), + [anon_sym_sizeof] = ACTIONS(2547), + [sym_number_literal] = ACTIONS(2549), + [anon_sym_L_SQUOTE] = ACTIONS(2549), + [anon_sym_u_SQUOTE] = ACTIONS(2549), + [anon_sym_U_SQUOTE] = ACTIONS(2549), + [anon_sym_u8_SQUOTE] = ACTIONS(2549), + [anon_sym_SQUOTE] = ACTIONS(2549), + [anon_sym_L_DQUOTE] = ACTIONS(2549), + [anon_sym_u_DQUOTE] = ACTIONS(2549), + [anon_sym_U_DQUOTE] = ACTIONS(2549), + [anon_sym_u8_DQUOTE] = ACTIONS(2549), + [anon_sym_DQUOTE] = ACTIONS(2549), + [sym_true] = ACTIONS(2547), + [sym_false] = ACTIONS(2547), + [sym_null] = ACTIONS(2547), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2547), + [anon_sym_decltype] = ACTIONS(2547), + [anon_sym_virtual] = ACTIONS(2547), + [anon_sym_typename] = ACTIONS(2547), + [anon_sym_template] = ACTIONS(2547), + [anon_sym_try] = ACTIONS(2547), + [anon_sym_delete] = ACTIONS(2547), + [anon_sym_throw] = ACTIONS(2547), + [anon_sym_co_return] = ACTIONS(2547), + [anon_sym_co_yield] = ACTIONS(2547), + [anon_sym_co_await] = ACTIONS(2547), + [anon_sym_new] = ACTIONS(2547), + [anon_sym_requires] = ACTIONS(2547), + [sym_this] = ACTIONS(2547), + [sym_nullptr] = ACTIONS(2547), + [sym_raw_string_literal] = ACTIONS(2549), + }, + [1216] = { + [sym_identifier] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), + }, + [1217] = { + [sym_type_qualifier] = STATE(2972), + [sym__expression] = STATE(3959), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3001), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3001), + [sym_call_expression] = STATE(3001), + [sym_field_expression] = STATE(3001), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3001), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3001), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_type_definition_repeat1] = STATE(2972), + [sym_identifier] = ACTIONS(3085), + [anon_sym_LPAREN2] = ACTIONS(3087), + [anon_sym_BANG] = ACTIONS(3091), + [anon_sym_TILDE] = ACTIONS(3091), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(3210), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_RBRACK] = ACTIONS(3212), + [anon_sym_const] = ACTIONS(3180), + [anon_sym_volatile] = ACTIONS(3180), + [anon_sym_restrict] = ACTIONS(3180), + [anon_sym__Atomic] = ACTIONS(3180), + [anon_sym_mutable] = ACTIONS(3180), + [anon_sym_constexpr] = ACTIONS(3180), + [anon_sym_constinit] = ACTIONS(3180), + [anon_sym_consteval] = ACTIONS(3180), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3089), + [anon_sym_compl] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3095), + [anon_sym_PLUS_PLUS] = ACTIONS(3095), + [anon_sym_sizeof] = ACTIONS(3097), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3099), + [anon_sym_co_await] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1218] = { + [sym_identifier] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), + }, + [1219] = { + [sym_identifier] = ACTIONS(2619), + [anon_sym_LPAREN2] = ACTIONS(2621), + [anon_sym_BANG] = ACTIONS(2621), + [anon_sym_TILDE] = ACTIONS(2621), + [anon_sym_DASH] = ACTIONS(2619), + [anon_sym_PLUS] = ACTIONS(2619), + [anon_sym_STAR] = ACTIONS(2621), + [anon_sym_AMP] = ACTIONS(2621), + [anon_sym_SEMI] = ACTIONS(2621), + [anon_sym_typedef] = ACTIONS(2619), + [anon_sym_extern] = ACTIONS(2619), + [anon_sym___attribute__] = ACTIONS(2619), + [anon_sym_COLON_COLON] = ACTIONS(2621), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2621), + [anon_sym___declspec] = ACTIONS(2619), + [anon_sym_LBRACE] = ACTIONS(2621), + [anon_sym_LBRACK] = ACTIONS(2619), + [anon_sym_static] = ACTIONS(2619), + [anon_sym_register] = ACTIONS(2619), + [anon_sym_inline] = ACTIONS(2619), + [anon_sym_thread_local] = ACTIONS(2619), + [anon_sym_const] = ACTIONS(2619), + [anon_sym_volatile] = ACTIONS(2619), + [anon_sym_restrict] = ACTIONS(2619), + [anon_sym__Atomic] = ACTIONS(2619), + [anon_sym_mutable] = ACTIONS(2619), + [anon_sym_constexpr] = ACTIONS(2619), + [anon_sym_constinit] = ACTIONS(2619), + [anon_sym_consteval] = ACTIONS(2619), + [anon_sym_signed] = ACTIONS(2619), + [anon_sym_unsigned] = ACTIONS(2619), + [anon_sym_long] = ACTIONS(2619), + [anon_sym_short] = ACTIONS(2619), + [sym_primitive_type] = ACTIONS(2619), + [anon_sym_enum] = ACTIONS(2619), + [anon_sym_class] = ACTIONS(2619), + [anon_sym_struct] = ACTIONS(2619), + [anon_sym_union] = ACTIONS(2619), + [anon_sym_if] = ACTIONS(2619), + [anon_sym_else] = ACTIONS(2619), + [anon_sym_switch] = ACTIONS(2619), + [anon_sym_while] = ACTIONS(2619), + [anon_sym_do] = ACTIONS(2619), + [anon_sym_for] = ACTIONS(2619), + [anon_sym_return] = ACTIONS(2619), + [anon_sym_break] = ACTIONS(2619), + [anon_sym_continue] = ACTIONS(2619), + [anon_sym_goto] = ACTIONS(2619), + [anon_sym_not] = ACTIONS(2619), + [anon_sym_compl] = ACTIONS(2619), + [anon_sym_DASH_DASH] = ACTIONS(2621), + [anon_sym_PLUS_PLUS] = ACTIONS(2621), + [anon_sym_sizeof] = ACTIONS(2619), + [sym_number_literal] = ACTIONS(2621), + [anon_sym_L_SQUOTE] = ACTIONS(2621), + [anon_sym_u_SQUOTE] = ACTIONS(2621), + [anon_sym_U_SQUOTE] = ACTIONS(2621), + [anon_sym_u8_SQUOTE] = ACTIONS(2621), + [anon_sym_SQUOTE] = ACTIONS(2621), + [anon_sym_L_DQUOTE] = ACTIONS(2621), + [anon_sym_u_DQUOTE] = ACTIONS(2621), + [anon_sym_U_DQUOTE] = ACTIONS(2621), + [anon_sym_u8_DQUOTE] = ACTIONS(2621), + [anon_sym_DQUOTE] = ACTIONS(2621), + [sym_true] = ACTIONS(2619), + [sym_false] = ACTIONS(2619), + [sym_null] = ACTIONS(2619), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2619), + [anon_sym_decltype] = ACTIONS(2619), + [anon_sym_virtual] = ACTIONS(2619), + [anon_sym_typename] = ACTIONS(2619), + [anon_sym_template] = ACTIONS(2619), + [anon_sym_try] = ACTIONS(2619), + [anon_sym_delete] = ACTIONS(2619), + [anon_sym_throw] = ACTIONS(2619), + [anon_sym_co_return] = ACTIONS(2619), + [anon_sym_co_yield] = ACTIONS(2619), + [anon_sym_co_await] = ACTIONS(2619), + [anon_sym_new] = ACTIONS(2619), + [anon_sym_requires] = ACTIONS(2619), + [sym_this] = ACTIONS(2619), + [sym_nullptr] = ACTIONS(2619), + [sym_raw_string_literal] = ACTIONS(2621), + }, + [1220] = { + [sym_identifier] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), + }, + [1221] = { + [sym_identifier] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), + }, + [1222] = { + [sym_identifier] = ACTIONS(3167), + [anon_sym_LPAREN2] = ACTIONS(3169), + [anon_sym_BANG] = ACTIONS(3169), + [anon_sym_TILDE] = ACTIONS(3169), + [anon_sym_DASH] = ACTIONS(3167), + [anon_sym_PLUS] = ACTIONS(3167), + [anon_sym_STAR] = ACTIONS(3169), + [anon_sym_AMP] = ACTIONS(3169), + [anon_sym_SEMI] = ACTIONS(3169), + [anon_sym_extern] = ACTIONS(3167), + [anon_sym___attribute__] = ACTIONS(3167), + [anon_sym_COLON_COLON] = ACTIONS(3169), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3169), + [anon_sym___declspec] = ACTIONS(3167), + [anon_sym_LBRACE] = ACTIONS(3169), + [anon_sym_LBRACK] = ACTIONS(3167), + [anon_sym_static] = ACTIONS(3167), + [anon_sym_register] = ACTIONS(3167), + [anon_sym_inline] = ACTIONS(3167), + [anon_sym_thread_local] = ACTIONS(3167), + [anon_sym_const] = ACTIONS(3167), + [anon_sym_volatile] = ACTIONS(3167), + [anon_sym_restrict] = ACTIONS(3167), + [anon_sym__Atomic] = ACTIONS(3167), + [anon_sym_mutable] = ACTIONS(3167), + [anon_sym_constexpr] = ACTIONS(3167), + [anon_sym_constinit] = ACTIONS(3167), + [anon_sym_consteval] = ACTIONS(3167), + [anon_sym_signed] = ACTIONS(3167), + [anon_sym_unsigned] = ACTIONS(3167), + [anon_sym_long] = ACTIONS(3167), + [anon_sym_short] = ACTIONS(3167), + [sym_primitive_type] = ACTIONS(3167), + [anon_sym_enum] = ACTIONS(3167), + [anon_sym_class] = ACTIONS(3167), + [anon_sym_struct] = ACTIONS(3167), + [anon_sym_union] = ACTIONS(3167), + [anon_sym_if] = ACTIONS(3167), + [anon_sym_switch] = ACTIONS(3167), + [anon_sym_case] = ACTIONS(3167), + [anon_sym_default] = ACTIONS(3167), + [anon_sym_while] = ACTIONS(3167), + [anon_sym_do] = ACTIONS(3167), + [anon_sym_for] = ACTIONS(3167), + [anon_sym_return] = ACTIONS(3167), + [anon_sym_break] = ACTIONS(3167), + [anon_sym_continue] = ACTIONS(3167), + [anon_sym_goto] = ACTIONS(3167), + [anon_sym_not] = ACTIONS(3167), + [anon_sym_compl] = ACTIONS(3167), + [anon_sym_DASH_DASH] = ACTIONS(3169), + [anon_sym_PLUS_PLUS] = ACTIONS(3169), + [anon_sym_sizeof] = ACTIONS(3167), + [sym_number_literal] = ACTIONS(3169), + [anon_sym_L_SQUOTE] = ACTIONS(3169), + [anon_sym_u_SQUOTE] = ACTIONS(3169), + [anon_sym_U_SQUOTE] = ACTIONS(3169), + [anon_sym_u8_SQUOTE] = ACTIONS(3169), + [anon_sym_SQUOTE] = ACTIONS(3169), + [anon_sym_L_DQUOTE] = ACTIONS(3169), + [anon_sym_u_DQUOTE] = ACTIONS(3169), + [anon_sym_U_DQUOTE] = ACTIONS(3169), + [anon_sym_u8_DQUOTE] = ACTIONS(3169), + [anon_sym_DQUOTE] = ACTIONS(3169), + [sym_true] = ACTIONS(3167), + [sym_false] = ACTIONS(3167), + [sym_null] = ACTIONS(3167), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3167), + [anon_sym_decltype] = ACTIONS(3167), + [anon_sym_virtual] = ACTIONS(3167), + [anon_sym_typename] = ACTIONS(3167), + [anon_sym_template] = ACTIONS(3167), + [anon_sym_try] = ACTIONS(3167), + [anon_sym_delete] = ACTIONS(3167), + [anon_sym_throw] = ACTIONS(3167), + [anon_sym_co_return] = ACTIONS(3167), + [anon_sym_co_yield] = ACTIONS(3167), + [anon_sym_co_await] = ACTIONS(3167), + [anon_sym_new] = ACTIONS(3167), + [anon_sym_requires] = ACTIONS(3167), + [sym_this] = ACTIONS(3167), + [sym_nullptr] = ACTIONS(3167), + [sym_raw_string_literal] = ACTIONS(3169), + }, + [1223] = { + [sym_identifier] = ACTIONS(2493), + [anon_sym_LPAREN2] = ACTIONS(2495), + [anon_sym_BANG] = ACTIONS(2495), + [anon_sym_TILDE] = ACTIONS(2495), + [anon_sym_DASH] = ACTIONS(2493), + [anon_sym_PLUS] = ACTIONS(2493), + [anon_sym_STAR] = ACTIONS(2495), + [anon_sym_AMP] = ACTIONS(2495), + [anon_sym_SEMI] = ACTIONS(2495), + [anon_sym_typedef] = ACTIONS(2493), + [anon_sym_extern] = ACTIONS(2493), + [anon_sym___attribute__] = ACTIONS(2493), + [anon_sym_COLON_COLON] = ACTIONS(2495), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2495), + [anon_sym___declspec] = ACTIONS(2493), + [anon_sym_LBRACE] = ACTIONS(2495), + [anon_sym_LBRACK] = ACTIONS(2493), + [anon_sym_static] = ACTIONS(2493), + [anon_sym_register] = ACTIONS(2493), + [anon_sym_inline] = ACTIONS(2493), + [anon_sym_thread_local] = ACTIONS(2493), + [anon_sym_const] = ACTIONS(2493), + [anon_sym_volatile] = ACTIONS(2493), + [anon_sym_restrict] = ACTIONS(2493), + [anon_sym__Atomic] = ACTIONS(2493), + [anon_sym_mutable] = ACTIONS(2493), + [anon_sym_constexpr] = ACTIONS(2493), + [anon_sym_constinit] = ACTIONS(2493), + [anon_sym_consteval] = ACTIONS(2493), + [anon_sym_signed] = ACTIONS(2493), + [anon_sym_unsigned] = ACTIONS(2493), + [anon_sym_long] = ACTIONS(2493), + [anon_sym_short] = ACTIONS(2493), + [sym_primitive_type] = ACTIONS(2493), + [anon_sym_enum] = ACTIONS(2493), + [anon_sym_class] = ACTIONS(2493), + [anon_sym_struct] = ACTIONS(2493), + [anon_sym_union] = ACTIONS(2493), + [anon_sym_if] = ACTIONS(2493), + [anon_sym_else] = ACTIONS(3214), + [anon_sym_switch] = ACTIONS(2493), + [anon_sym_while] = ACTIONS(2493), + [anon_sym_do] = ACTIONS(2493), + [anon_sym_for] = ACTIONS(2493), + [anon_sym_return] = ACTIONS(2493), + [anon_sym_break] = ACTIONS(2493), + [anon_sym_continue] = ACTIONS(2493), + [anon_sym_goto] = ACTIONS(2493), + [anon_sym_not] = ACTIONS(2493), + [anon_sym_compl] = ACTIONS(2493), + [anon_sym_DASH_DASH] = ACTIONS(2495), + [anon_sym_PLUS_PLUS] = ACTIONS(2495), + [anon_sym_sizeof] = ACTIONS(2493), + [sym_number_literal] = ACTIONS(2495), + [anon_sym_L_SQUOTE] = ACTIONS(2495), + [anon_sym_u_SQUOTE] = ACTIONS(2495), + [anon_sym_U_SQUOTE] = ACTIONS(2495), + [anon_sym_u8_SQUOTE] = ACTIONS(2495), + [anon_sym_SQUOTE] = ACTIONS(2495), + [anon_sym_L_DQUOTE] = ACTIONS(2495), + [anon_sym_u_DQUOTE] = ACTIONS(2495), + [anon_sym_U_DQUOTE] = ACTIONS(2495), + [anon_sym_u8_DQUOTE] = ACTIONS(2495), + [anon_sym_DQUOTE] = ACTIONS(2495), + [sym_true] = ACTIONS(2493), + [sym_false] = ACTIONS(2493), + [sym_null] = ACTIONS(2493), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2493), + [anon_sym_decltype] = ACTIONS(2493), + [anon_sym_virtual] = ACTIONS(2493), + [anon_sym_typename] = ACTIONS(2493), + [anon_sym_template] = ACTIONS(2493), + [anon_sym_try] = ACTIONS(2493), + [anon_sym_delete] = ACTIONS(2493), + [anon_sym_throw] = ACTIONS(2493), + [anon_sym_co_return] = ACTIONS(2493), + [anon_sym_co_yield] = ACTIONS(2493), + [anon_sym_co_await] = ACTIONS(2493), + [anon_sym_new] = ACTIONS(2493), + [anon_sym_requires] = ACTIONS(2493), + [sym_this] = ACTIONS(2493), + [sym_nullptr] = ACTIONS(2493), + [sym_raw_string_literal] = ACTIONS(2495), + }, + [1224] = { + [sym_identifier] = ACTIONS(2623), + [anon_sym_LPAREN2] = ACTIONS(2625), + [anon_sym_BANG] = ACTIONS(2625), + [anon_sym_TILDE] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(2623), + [anon_sym_PLUS] = ACTIONS(2623), + [anon_sym_STAR] = ACTIONS(2625), + [anon_sym_AMP] = ACTIONS(2625), + [anon_sym_SEMI] = ACTIONS(2625), + [anon_sym_typedef] = ACTIONS(2623), + [anon_sym_extern] = ACTIONS(2623), + [anon_sym___attribute__] = ACTIONS(2623), + [anon_sym_COLON_COLON] = ACTIONS(2625), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2625), + [anon_sym___declspec] = ACTIONS(2623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_LBRACK] = ACTIONS(2623), + [anon_sym_static] = ACTIONS(2623), + [anon_sym_register] = ACTIONS(2623), + [anon_sym_inline] = ACTIONS(2623), + [anon_sym_thread_local] = ACTIONS(2623), + [anon_sym_const] = ACTIONS(2623), + [anon_sym_volatile] = ACTIONS(2623), + [anon_sym_restrict] = ACTIONS(2623), + [anon_sym__Atomic] = ACTIONS(2623), + [anon_sym_mutable] = ACTIONS(2623), + [anon_sym_constexpr] = ACTIONS(2623), + [anon_sym_constinit] = ACTIONS(2623), + [anon_sym_consteval] = ACTIONS(2623), + [anon_sym_signed] = ACTIONS(2623), + [anon_sym_unsigned] = ACTIONS(2623), + [anon_sym_long] = ACTIONS(2623), + [anon_sym_short] = ACTIONS(2623), + [sym_primitive_type] = ACTIONS(2623), + [anon_sym_enum] = ACTIONS(2623), + [anon_sym_class] = ACTIONS(2623), + [anon_sym_struct] = ACTIONS(2623), + [anon_sym_union] = ACTIONS(2623), + [anon_sym_if] = ACTIONS(2623), + [anon_sym_else] = ACTIONS(2623), + [anon_sym_switch] = ACTIONS(2623), + [anon_sym_while] = ACTIONS(2623), + [anon_sym_do] = ACTIONS(2623), + [anon_sym_for] = ACTIONS(2623), + [anon_sym_return] = ACTIONS(2623), + [anon_sym_break] = ACTIONS(2623), + [anon_sym_continue] = ACTIONS(2623), + [anon_sym_goto] = ACTIONS(2623), + [anon_sym_not] = ACTIONS(2623), + [anon_sym_compl] = ACTIONS(2623), + [anon_sym_DASH_DASH] = ACTIONS(2625), + [anon_sym_PLUS_PLUS] = ACTIONS(2625), + [anon_sym_sizeof] = ACTIONS(2623), + [sym_number_literal] = ACTIONS(2625), + [anon_sym_L_SQUOTE] = ACTIONS(2625), + [anon_sym_u_SQUOTE] = ACTIONS(2625), + [anon_sym_U_SQUOTE] = ACTIONS(2625), + [anon_sym_u8_SQUOTE] = ACTIONS(2625), + [anon_sym_SQUOTE] = ACTIONS(2625), + [anon_sym_L_DQUOTE] = ACTIONS(2625), + [anon_sym_u_DQUOTE] = ACTIONS(2625), + [anon_sym_U_DQUOTE] = ACTIONS(2625), + [anon_sym_u8_DQUOTE] = ACTIONS(2625), + [anon_sym_DQUOTE] = ACTIONS(2625), + [sym_true] = ACTIONS(2623), + [sym_false] = ACTIONS(2623), + [sym_null] = ACTIONS(2623), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2623), + [anon_sym_decltype] = ACTIONS(2623), + [anon_sym_virtual] = ACTIONS(2623), + [anon_sym_typename] = ACTIONS(2623), + [anon_sym_template] = ACTIONS(2623), + [anon_sym_try] = ACTIONS(2623), + [anon_sym_delete] = ACTIONS(2623), + [anon_sym_throw] = ACTIONS(2623), + [anon_sym_co_return] = ACTIONS(2623), + [anon_sym_co_yield] = ACTIONS(2623), + [anon_sym_co_await] = ACTIONS(2623), + [anon_sym_new] = ACTIONS(2623), + [anon_sym_requires] = ACTIONS(2623), + [sym_this] = ACTIONS(2623), + [sym_nullptr] = ACTIONS(2623), + [sym_raw_string_literal] = ACTIONS(2625), + }, + [1225] = { + [sym_identifier] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), + }, + [1226] = { + [sym_identifier] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), + }, + [1227] = { + [sym_identifier] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), + }, + [1228] = { + [sym_identifier] = ACTIONS(3149), + [anon_sym_LPAREN2] = ACTIONS(3155), + [anon_sym_BANG] = ACTIONS(3155), + [anon_sym_TILDE] = ACTIONS(3155), + [anon_sym_DASH] = ACTIONS(3157), + [anon_sym_PLUS] = ACTIONS(3157), + [anon_sym_STAR] = ACTIONS(3155), + [anon_sym_AMP] = ACTIONS(3155), + [anon_sym_SEMI] = ACTIONS(3155), + [anon_sym_extern] = ACTIONS(3161), + [anon_sym___attribute__] = ACTIONS(3161), + [anon_sym_COLON_COLON] = ACTIONS(3152), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3152), + [anon_sym___declspec] = ACTIONS(3161), + [anon_sym_LBRACE] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3157), + [anon_sym_static] = ACTIONS(3161), + [anon_sym_register] = ACTIONS(3161), + [anon_sym_inline] = ACTIONS(3161), + [anon_sym_thread_local] = ACTIONS(3161), + [anon_sym_const] = ACTIONS(3161), + [anon_sym_volatile] = ACTIONS(3161), + [anon_sym_restrict] = ACTIONS(3161), + [anon_sym__Atomic] = ACTIONS(3161), + [anon_sym_mutable] = ACTIONS(3161), + [anon_sym_constexpr] = ACTIONS(3161), + [anon_sym_constinit] = ACTIONS(3161), + [anon_sym_consteval] = ACTIONS(3161), + [anon_sym_signed] = ACTIONS(3161), + [anon_sym_unsigned] = ACTIONS(3161), + [anon_sym_long] = ACTIONS(3161), + [anon_sym_short] = ACTIONS(3161), + [sym_primitive_type] = ACTIONS(3149), + [anon_sym_enum] = ACTIONS(3161), + [anon_sym_class] = ACTIONS(3161), + [anon_sym_struct] = ACTIONS(3161), + [anon_sym_union] = ACTIONS(3161), + [anon_sym_if] = ACTIONS(3157), + [anon_sym_switch] = ACTIONS(3157), + [anon_sym_case] = ACTIONS(3157), + [anon_sym_default] = ACTIONS(3157), + [anon_sym_while] = ACTIONS(3157), + [anon_sym_do] = ACTIONS(3157), + [anon_sym_for] = ACTIONS(3157), + [anon_sym_return] = ACTIONS(3157), + [anon_sym_break] = ACTIONS(3157), + [anon_sym_continue] = ACTIONS(3157), + [anon_sym_goto] = ACTIONS(3157), + [anon_sym_not] = ACTIONS(3157), + [anon_sym_compl] = ACTIONS(3157), + [anon_sym_DASH_DASH] = ACTIONS(3155), + [anon_sym_PLUS_PLUS] = ACTIONS(3155), + [anon_sym_sizeof] = ACTIONS(3157), + [sym_number_literal] = ACTIONS(3155), + [anon_sym_L_SQUOTE] = ACTIONS(3155), + [anon_sym_u_SQUOTE] = ACTIONS(3155), + [anon_sym_U_SQUOTE] = ACTIONS(3155), + [anon_sym_u8_SQUOTE] = ACTIONS(3155), + [anon_sym_SQUOTE] = ACTIONS(3155), + [anon_sym_L_DQUOTE] = ACTIONS(3155), + [anon_sym_u_DQUOTE] = ACTIONS(3155), + [anon_sym_U_DQUOTE] = ACTIONS(3155), + [anon_sym_u8_DQUOTE] = ACTIONS(3155), + [anon_sym_DQUOTE] = ACTIONS(3155), + [sym_true] = ACTIONS(3157), + [sym_false] = ACTIONS(3157), + [sym_null] = ACTIONS(3157), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3161), + [anon_sym_decltype] = ACTIONS(3161), + [anon_sym_virtual] = ACTIONS(3161), + [anon_sym_typename] = ACTIONS(3161), + [anon_sym_template] = ACTIONS(3149), + [anon_sym_try] = ACTIONS(3157), + [anon_sym_delete] = ACTIONS(3157), + [anon_sym_throw] = ACTIONS(3157), + [anon_sym_co_return] = ACTIONS(3157), + [anon_sym_co_yield] = ACTIONS(3157), + [anon_sym_co_await] = ACTIONS(3157), + [anon_sym_new] = ACTIONS(3157), + [anon_sym_requires] = ACTIONS(3157), + [sym_this] = ACTIONS(3157), + [sym_nullptr] = ACTIONS(3157), + [sym_raw_string_literal] = ACTIONS(3155), + }, + [1229] = { + [sym_identifier] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), + }, + [1230] = { + [sym_identifier] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), + }, + [1231] = { + [sym_identifier] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), + }, + [1232] = { + [sym_identifier] = ACTIONS(2525), + [anon_sym_LPAREN2] = ACTIONS(2527), + [anon_sym_BANG] = ACTIONS(2527), + [anon_sym_TILDE] = ACTIONS(2527), + [anon_sym_DASH] = ACTIONS(2525), + [anon_sym_PLUS] = ACTIONS(2525), + [anon_sym_STAR] = ACTIONS(2527), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2527), + [anon_sym_typedef] = ACTIONS(2525), + [anon_sym_extern] = ACTIONS(2525), + [anon_sym___attribute__] = ACTIONS(2525), + [anon_sym_COLON_COLON] = ACTIONS(2527), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2527), + [anon_sym___declspec] = ACTIONS(2525), + [anon_sym_LBRACE] = ACTIONS(2527), + [anon_sym_LBRACK] = ACTIONS(2525), + [anon_sym_static] = ACTIONS(2525), + [anon_sym_register] = ACTIONS(2525), + [anon_sym_inline] = ACTIONS(2525), + [anon_sym_thread_local] = ACTIONS(2525), + [anon_sym_const] = ACTIONS(2525), + [anon_sym_volatile] = ACTIONS(2525), + [anon_sym_restrict] = ACTIONS(2525), + [anon_sym__Atomic] = ACTIONS(2525), + [anon_sym_mutable] = ACTIONS(2525), + [anon_sym_constexpr] = ACTIONS(2525), + [anon_sym_constinit] = ACTIONS(2525), + [anon_sym_consteval] = ACTIONS(2525), + [anon_sym_signed] = ACTIONS(2525), + [anon_sym_unsigned] = ACTIONS(2525), + [anon_sym_long] = ACTIONS(2525), + [anon_sym_short] = ACTIONS(2525), + [sym_primitive_type] = ACTIONS(2525), + [anon_sym_enum] = ACTIONS(2525), + [anon_sym_class] = ACTIONS(2525), + [anon_sym_struct] = ACTIONS(2525), + [anon_sym_union] = ACTIONS(2525), + [anon_sym_if] = ACTIONS(2525), + [anon_sym_else] = ACTIONS(2525), + [anon_sym_switch] = ACTIONS(2525), + [anon_sym_while] = ACTIONS(2525), + [anon_sym_do] = ACTIONS(2525), + [anon_sym_for] = ACTIONS(2525), + [anon_sym_return] = ACTIONS(2525), + [anon_sym_break] = ACTIONS(2525), + [anon_sym_continue] = ACTIONS(2525), + [anon_sym_goto] = ACTIONS(2525), + [anon_sym_not] = ACTIONS(2525), + [anon_sym_compl] = ACTIONS(2525), + [anon_sym_DASH_DASH] = ACTIONS(2527), + [anon_sym_PLUS_PLUS] = ACTIONS(2527), + [anon_sym_sizeof] = ACTIONS(2525), + [sym_number_literal] = ACTIONS(2527), + [anon_sym_L_SQUOTE] = ACTIONS(2527), + [anon_sym_u_SQUOTE] = ACTIONS(2527), + [anon_sym_U_SQUOTE] = ACTIONS(2527), + [anon_sym_u8_SQUOTE] = ACTIONS(2527), + [anon_sym_SQUOTE] = ACTIONS(2527), + [anon_sym_L_DQUOTE] = ACTIONS(2527), + [anon_sym_u_DQUOTE] = ACTIONS(2527), + [anon_sym_U_DQUOTE] = ACTIONS(2527), + [anon_sym_u8_DQUOTE] = ACTIONS(2527), + [anon_sym_DQUOTE] = ACTIONS(2527), + [sym_true] = ACTIONS(2525), + [sym_false] = ACTIONS(2525), + [sym_null] = ACTIONS(2525), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2525), + [anon_sym_decltype] = ACTIONS(2525), + [anon_sym_virtual] = ACTIONS(2525), + [anon_sym_typename] = ACTIONS(2525), + [anon_sym_template] = ACTIONS(2525), + [anon_sym_try] = ACTIONS(2525), + [anon_sym_delete] = ACTIONS(2525), + [anon_sym_throw] = ACTIONS(2525), + [anon_sym_co_return] = ACTIONS(2525), + [anon_sym_co_yield] = ACTIONS(2525), + [anon_sym_co_await] = ACTIONS(2525), + [anon_sym_new] = ACTIONS(2525), + [anon_sym_requires] = ACTIONS(2525), + [sym_this] = ACTIONS(2525), + [sym_nullptr] = ACTIONS(2525), + [sym_raw_string_literal] = ACTIONS(2527), + }, + [1233] = { + [sym_type_qualifier] = STATE(2972), + [sym__expression] = STATE(3956), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3001), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3001), + [sym_call_expression] = STATE(3001), + [sym_field_expression] = STATE(3001), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3001), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3001), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_type_definition_repeat1] = STATE(2972), + [sym_identifier] = ACTIONS(3085), + [anon_sym_LPAREN2] = ACTIONS(3087), + [anon_sym_BANG] = ACTIONS(3091), + [anon_sym_TILDE] = ACTIONS(3091), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(3216), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_RBRACK] = ACTIONS(3218), + [anon_sym_const] = ACTIONS(3180), + [anon_sym_volatile] = ACTIONS(3180), + [anon_sym_restrict] = ACTIONS(3180), + [anon_sym__Atomic] = ACTIONS(3180), + [anon_sym_mutable] = ACTIONS(3180), + [anon_sym_constexpr] = ACTIONS(3180), + [anon_sym_constinit] = ACTIONS(3180), + [anon_sym_consteval] = ACTIONS(3180), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3089), + [anon_sym_compl] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3095), + [anon_sym_PLUS_PLUS] = ACTIONS(3095), + [anon_sym_sizeof] = ACTIONS(3097), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3099), + [anon_sym_co_await] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1234] = { + [sym_identifier] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), + }, + [1235] = { + [sym_identifier] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), + }, + [1236] = { + [sym_identifier] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), + }, + [1237] = { + [sym_identifier] = ACTIONS(2521), + [anon_sym_LPAREN2] = ACTIONS(2523), + [anon_sym_BANG] = ACTIONS(2523), + [anon_sym_TILDE] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2521), + [anon_sym_PLUS] = ACTIONS(2521), + [anon_sym_STAR] = ACTIONS(2523), + [anon_sym_AMP] = ACTIONS(2523), + [anon_sym_SEMI] = ACTIONS(2523), + [anon_sym_typedef] = ACTIONS(2521), + [anon_sym_extern] = ACTIONS(2521), + [anon_sym___attribute__] = ACTIONS(2521), + [anon_sym_COLON_COLON] = ACTIONS(2523), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2523), + [anon_sym___declspec] = ACTIONS(2521), + [anon_sym_LBRACE] = ACTIONS(2523), + [anon_sym_LBRACK] = ACTIONS(2521), + [anon_sym_static] = ACTIONS(2521), + [anon_sym_register] = ACTIONS(2521), + [anon_sym_inline] = ACTIONS(2521), + [anon_sym_thread_local] = ACTIONS(2521), + [anon_sym_const] = ACTIONS(2521), + [anon_sym_volatile] = ACTIONS(2521), + [anon_sym_restrict] = ACTIONS(2521), + [anon_sym__Atomic] = ACTIONS(2521), + [anon_sym_mutable] = ACTIONS(2521), + [anon_sym_constexpr] = ACTIONS(2521), + [anon_sym_constinit] = ACTIONS(2521), + [anon_sym_consteval] = ACTIONS(2521), + [anon_sym_signed] = ACTIONS(2521), + [anon_sym_unsigned] = ACTIONS(2521), + [anon_sym_long] = ACTIONS(2521), + [anon_sym_short] = ACTIONS(2521), + [sym_primitive_type] = ACTIONS(2521), + [anon_sym_enum] = ACTIONS(2521), + [anon_sym_class] = ACTIONS(2521), + [anon_sym_struct] = ACTIONS(2521), + [anon_sym_union] = ACTIONS(2521), + [anon_sym_if] = ACTIONS(2521), + [anon_sym_else] = ACTIONS(2521), + [anon_sym_switch] = ACTIONS(2521), + [anon_sym_while] = ACTIONS(2521), + [anon_sym_do] = ACTIONS(2521), + [anon_sym_for] = ACTIONS(2521), + [anon_sym_return] = ACTIONS(2521), + [anon_sym_break] = ACTIONS(2521), + [anon_sym_continue] = ACTIONS(2521), + [anon_sym_goto] = ACTIONS(2521), + [anon_sym_not] = ACTIONS(2521), + [anon_sym_compl] = ACTIONS(2521), + [anon_sym_DASH_DASH] = ACTIONS(2523), + [anon_sym_PLUS_PLUS] = ACTIONS(2523), + [anon_sym_sizeof] = ACTIONS(2521), + [sym_number_literal] = ACTIONS(2523), + [anon_sym_L_SQUOTE] = ACTIONS(2523), + [anon_sym_u_SQUOTE] = ACTIONS(2523), + [anon_sym_U_SQUOTE] = ACTIONS(2523), + [anon_sym_u8_SQUOTE] = ACTIONS(2523), + [anon_sym_SQUOTE] = ACTIONS(2523), + [anon_sym_L_DQUOTE] = ACTIONS(2523), + [anon_sym_u_DQUOTE] = ACTIONS(2523), + [anon_sym_U_DQUOTE] = ACTIONS(2523), + [anon_sym_u8_DQUOTE] = ACTIONS(2523), + [anon_sym_DQUOTE] = ACTIONS(2523), + [sym_true] = ACTIONS(2521), + [sym_false] = ACTIONS(2521), + [sym_null] = ACTIONS(2521), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2521), + [anon_sym_decltype] = ACTIONS(2521), + [anon_sym_virtual] = ACTIONS(2521), + [anon_sym_typename] = ACTIONS(2521), + [anon_sym_template] = ACTIONS(2521), + [anon_sym_try] = ACTIONS(2521), + [anon_sym_delete] = ACTIONS(2521), + [anon_sym_throw] = ACTIONS(2521), + [anon_sym_co_return] = ACTIONS(2521), + [anon_sym_co_yield] = ACTIONS(2521), + [anon_sym_co_await] = ACTIONS(2521), + [anon_sym_new] = ACTIONS(2521), + [anon_sym_requires] = ACTIONS(2521), + [sym_this] = ACTIONS(2521), + [sym_nullptr] = ACTIONS(2521), + [sym_raw_string_literal] = ACTIONS(2523), + }, + [1238] = { + [sym_type_qualifier] = STATE(2972), + [sym__expression] = STATE(3934), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3001), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3001), + [sym_call_expression] = STATE(3001), + [sym_field_expression] = STATE(3001), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3001), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3001), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_type_definition_repeat1] = STATE(2972), + [sym_identifier] = ACTIONS(3085), + [anon_sym_LPAREN2] = ACTIONS(3087), + [anon_sym_BANG] = ACTIONS(3091), + [anon_sym_TILDE] = ACTIONS(3091), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(3220), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_RBRACK] = ACTIONS(3222), + [anon_sym_const] = ACTIONS(3180), + [anon_sym_volatile] = ACTIONS(3180), + [anon_sym_restrict] = ACTIONS(3180), + [anon_sym__Atomic] = ACTIONS(3180), + [anon_sym_mutable] = ACTIONS(3180), + [anon_sym_constexpr] = ACTIONS(3180), + [anon_sym_constinit] = ACTIONS(3180), + [anon_sym_consteval] = ACTIONS(3180), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3089), + [anon_sym_compl] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3095), + [anon_sym_PLUS_PLUS] = ACTIONS(3095), + [anon_sym_sizeof] = ACTIONS(3097), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3099), + [anon_sym_co_await] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1239] = { + [sym_identifier] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), + }, + [1240] = { + [sym_identifier] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2561), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_SEMI] = ACTIONS(2561), + [anon_sym_typedef] = ACTIONS(2559), + [anon_sym_extern] = ACTIONS(2559), + [anon_sym___attribute__] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2561), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2561), + [anon_sym___declspec] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2561), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_static] = ACTIONS(2559), + [anon_sym_register] = ACTIONS(2559), + [anon_sym_inline] = ACTIONS(2559), + [anon_sym_thread_local] = ACTIONS(2559), + [anon_sym_const] = ACTIONS(2559), + [anon_sym_volatile] = ACTIONS(2559), + [anon_sym_restrict] = ACTIONS(2559), + [anon_sym__Atomic] = ACTIONS(2559), + [anon_sym_mutable] = ACTIONS(2559), + [anon_sym_constexpr] = ACTIONS(2559), + [anon_sym_constinit] = ACTIONS(2559), + [anon_sym_consteval] = ACTIONS(2559), + [anon_sym_signed] = ACTIONS(2559), + [anon_sym_unsigned] = ACTIONS(2559), + [anon_sym_long] = ACTIONS(2559), + [anon_sym_short] = ACTIONS(2559), + [sym_primitive_type] = ACTIONS(2559), + [anon_sym_enum] = ACTIONS(2559), + [anon_sym_class] = ACTIONS(2559), + [anon_sym_struct] = ACTIONS(2559), + [anon_sym_union] = ACTIONS(2559), + [anon_sym_if] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_switch] = ACTIONS(2559), + [anon_sym_while] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_for] = ACTIONS(2559), + [anon_sym_return] = ACTIONS(2559), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_goto] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_compl] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2561), + [anon_sym_PLUS_PLUS] = ACTIONS(2561), + [anon_sym_sizeof] = ACTIONS(2559), + [sym_number_literal] = ACTIONS(2561), + [anon_sym_L_SQUOTE] = ACTIONS(2561), + [anon_sym_u_SQUOTE] = ACTIONS(2561), + [anon_sym_U_SQUOTE] = ACTIONS(2561), + [anon_sym_u8_SQUOTE] = ACTIONS(2561), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_L_DQUOTE] = ACTIONS(2561), + [anon_sym_u_DQUOTE] = ACTIONS(2561), + [anon_sym_U_DQUOTE] = ACTIONS(2561), + [anon_sym_u8_DQUOTE] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym_true] = ACTIONS(2559), + [sym_false] = ACTIONS(2559), + [sym_null] = ACTIONS(2559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2559), + [anon_sym_decltype] = ACTIONS(2559), + [anon_sym_virtual] = ACTIONS(2559), + [anon_sym_typename] = ACTIONS(2559), + [anon_sym_template] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2559), + [anon_sym_delete] = ACTIONS(2559), + [anon_sym_throw] = ACTIONS(2559), + [anon_sym_co_return] = ACTIONS(2559), + [anon_sym_co_yield] = ACTIONS(2559), + [anon_sym_co_await] = ACTIONS(2559), + [anon_sym_new] = ACTIONS(2559), + [anon_sym_requires] = ACTIONS(2559), + [sym_this] = ACTIONS(2559), + [sym_nullptr] = ACTIONS(2559), + [sym_raw_string_literal] = ACTIONS(2561), + }, + [1241] = { + [sym_type_qualifier] = STATE(1203), + [sym__expression] = STATE(3983), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3001), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3001), + [sym_call_expression] = STATE(3001), + [sym_field_expression] = STATE(3001), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3001), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3001), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_type_definition_repeat1] = STATE(1203), + [sym_identifier] = ACTIONS(3085), + [anon_sym_LPAREN2] = ACTIONS(3087), + [anon_sym_BANG] = ACTIONS(3091), + [anon_sym_TILDE] = ACTIONS(3091), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(3224), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_RBRACK] = ACTIONS(3226), + [anon_sym_const] = ACTIONS(3180), + [anon_sym_volatile] = ACTIONS(3180), + [anon_sym_restrict] = ACTIONS(3180), + [anon_sym__Atomic] = ACTIONS(3180), + [anon_sym_mutable] = ACTIONS(3180), + [anon_sym_constexpr] = ACTIONS(3180), + [anon_sym_constinit] = ACTIONS(3180), + [anon_sym_consteval] = ACTIONS(3180), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3089), + [anon_sym_compl] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3095), + [anon_sym_PLUS_PLUS] = ACTIONS(3095), + [anon_sym_sizeof] = ACTIONS(3097), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3099), + [anon_sym_co_await] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1242] = { + [sym_type_qualifier] = STATE(1217), + [sym__expression] = STATE(3895), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3001), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3001), + [sym_call_expression] = STATE(3001), + [sym_field_expression] = STATE(3001), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3001), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3001), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_type_definition_repeat1] = STATE(1217), + [sym_identifier] = ACTIONS(3085), + [anon_sym_LPAREN2] = ACTIONS(3087), + [anon_sym_BANG] = ACTIONS(3091), + [anon_sym_TILDE] = ACTIONS(3091), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(3228), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_RBRACK] = ACTIONS(3230), + [anon_sym_const] = ACTIONS(3180), + [anon_sym_volatile] = ACTIONS(3180), + [anon_sym_restrict] = ACTIONS(3180), + [anon_sym__Atomic] = ACTIONS(3180), + [anon_sym_mutable] = ACTIONS(3180), + [anon_sym_constexpr] = ACTIONS(3180), + [anon_sym_constinit] = ACTIONS(3180), + [anon_sym_consteval] = ACTIONS(3180), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3089), + [anon_sym_compl] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3095), + [anon_sym_PLUS_PLUS] = ACTIONS(3095), + [anon_sym_sizeof] = ACTIONS(3097), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3099), + [anon_sym_co_await] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1243] = { + [sym_type_qualifier] = STATE(2972), + [sym__expression] = STATE(3883), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3001), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3001), + [sym_call_expression] = STATE(3001), + [sym_field_expression] = STATE(3001), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3001), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3001), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_type_definition_repeat1] = STATE(2972), + [sym_identifier] = ACTIONS(3085), + [anon_sym_LPAREN2] = ACTIONS(3087), + [anon_sym_BANG] = ACTIONS(3091), + [anon_sym_TILDE] = ACTIONS(3091), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(3232), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_RBRACK] = ACTIONS(3234), + [anon_sym_const] = ACTIONS(3180), + [anon_sym_volatile] = ACTIONS(3180), + [anon_sym_restrict] = ACTIONS(3180), + [anon_sym__Atomic] = ACTIONS(3180), + [anon_sym_mutable] = ACTIONS(3180), + [anon_sym_constexpr] = ACTIONS(3180), + [anon_sym_constinit] = ACTIONS(3180), + [anon_sym_consteval] = ACTIONS(3180), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3089), + [anon_sym_compl] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3095), + [anon_sym_PLUS_PLUS] = ACTIONS(3095), + [anon_sym_sizeof] = ACTIONS(3097), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3099), + [anon_sym_co_await] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1244] = { + [sym_type_qualifier] = STATE(2972), + [sym__expression] = STATE(3986), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3001), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3001), + [sym_call_expression] = STATE(3001), + [sym_field_expression] = STATE(3001), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3001), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3001), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_type_definition_repeat1] = STATE(2972), + [sym_identifier] = ACTIONS(3085), + [anon_sym_LPAREN2] = ACTIONS(3087), + [anon_sym_BANG] = ACTIONS(3091), + [anon_sym_TILDE] = ACTIONS(3091), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(3236), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_RBRACK] = ACTIONS(3238), + [anon_sym_const] = ACTIONS(3180), + [anon_sym_volatile] = ACTIONS(3180), + [anon_sym_restrict] = ACTIONS(3180), + [anon_sym__Atomic] = ACTIONS(3180), + [anon_sym_mutable] = ACTIONS(3180), + [anon_sym_constexpr] = ACTIONS(3180), + [anon_sym_constinit] = ACTIONS(3180), + [anon_sym_consteval] = ACTIONS(3180), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3089), + [anon_sym_compl] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3095), + [anon_sym_PLUS_PLUS] = ACTIONS(3095), + [anon_sym_sizeof] = ACTIONS(3097), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3099), + [anon_sym_co_await] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1245] = { + [sym_expression_statement] = STATE(3312), + [sym__expression] = STATE(3705), + [sym_comma_expression] = STATE(7049), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_type_requirement] = STATE(1253), + [sym_compound_requirement] = STATE(1253), + [sym__requirement] = STATE(1253), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_requirement_seq_repeat1] = STATE(1253), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3240), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), + [anon_sym_LBRACE] = ACTIONS(3242), + [anon_sym_RBRACE] = ACTIONS(3244), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -195582,7 +170179,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), + [anon_sym_typename] = ACTIONS(3246), + [anon_sym_template] = ACTIONS(976), [anon_sym_delete] = ACTIONS(121), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), @@ -195591,55 +170189,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [1644] = { - [sym__expression] = STATE(3677), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2981), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2981), - [sym_call_expression] = STATE(2981), - [sym_field_expression] = STATE(2981), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2981), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2981), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3039), - [anon_sym_LPAREN2] = ACTIONS(3041), - [anon_sym_BANG] = ACTIONS(3045), - [anon_sym_TILDE] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(3047), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3049), - [anon_sym_PLUS_PLUS] = ACTIONS(3049), - [anon_sym_sizeof] = ACTIONS(3051), + [1246] = { + [sym_expression_statement] = STATE(3312), + [sym__expression] = STATE(3705), + [sym_comma_expression] = STATE(7049), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_type_requirement] = STATE(1253), + [sym_compound_requirement] = STATE(1253), + [sym__requirement] = STATE(1253), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_requirement_seq_repeat1] = STATE(1253), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3242), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), [sym_number_literal] = ACTIONS(97), [anon_sym_L_SQUOTE] = ACTIONS(99), [anon_sym_u_SQUOTE] = ACTIONS(99), @@ -195655,64 +170264,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3053), - [anon_sym_co_await] = ACTIONS(3055), - [anon_sym_new] = ACTIONS(3057), + [anon_sym_typename] = ACTIONS(3246), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [1645] = { - [sym__expression] = STATE(3425), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2981), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2981), - [sym_call_expression] = STATE(2981), - [sym_field_expression] = STATE(2981), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2981), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2981), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3039), - [anon_sym_LPAREN2] = ACTIONS(3041), - [anon_sym_BANG] = ACTIONS(3045), - [anon_sym_TILDE] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(3047), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3049), - [anon_sym_PLUS_PLUS] = ACTIONS(3049), - [anon_sym_sizeof] = ACTIONS(3051), + [1247] = { + [sym_expression_statement] = STATE(3312), + [sym__expression] = STATE(3705), + [sym_comma_expression] = STATE(7049), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_type_requirement] = STATE(1245), + [sym_compound_requirement] = STATE(1245), + [sym__requirement] = STATE(1245), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_requirement_seq_repeat1] = STATE(1245), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3242), + [anon_sym_RBRACE] = ACTIONS(3250), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), [sym_number_literal] = ACTIONS(97), [anon_sym_L_SQUOTE] = ACTIONS(99), [anon_sym_u_SQUOTE] = ACTIONS(99), @@ -195728,61 +170349,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3053), - [anon_sym_co_await] = ACTIONS(3055), - [anon_sym_new] = ACTIONS(3057), + [anon_sym_typename] = ACTIONS(3246), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [1646] = { - [sym__expression] = STATE(3894), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), + [1248] = { + [sym_expression_statement] = STATE(3312), + [sym__expression] = STATE(3705), + [sym_comma_expression] = STATE(7049), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_type_requirement] = STATE(1253), + [sym_compound_requirement] = STATE(1253), + [sym__requirement] = STATE(1253), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_requirement_seq_repeat1] = STATE(1253), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3240), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), + [anon_sym_LBRACE] = ACTIONS(3242), + [anon_sym_RBRACE] = ACTIONS(3252), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -195801,7 +170434,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), + [anon_sym_typename] = ACTIONS(3246), + [anon_sym_template] = ACTIONS(976), [anon_sym_delete] = ACTIONS(121), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), @@ -195810,52 +170444,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [1647] = { - [sym__expression] = STATE(3463), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), + [1249] = { + [sym_expression_statement] = STATE(3312), + [sym__expression] = STATE(3705), + [sym_comma_expression] = STATE(7049), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_type_requirement] = STATE(1261), + [sym_compound_requirement] = STATE(1261), + [sym__requirement] = STATE(1261), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_requirement_seq_repeat1] = STATE(1261), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3240), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(3708), - [sym_primitive_type] = ACTIONS(1833), + [anon_sym_LBRACE] = ACTIONS(3242), + [anon_sym_RBRACE] = ACTIONS(3254), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -195874,7 +170519,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), + [anon_sym_typename] = ACTIONS(3246), + [anon_sym_template] = ACTIONS(976), [anon_sym_delete] = ACTIONS(121), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), @@ -195883,55 +170529,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [1648] = { - [sym__expression] = STATE(3807), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(3196), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(3196), - [sym_call_expression] = STATE(3196), - [sym_field_expression] = STATE(3196), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(3196), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(3196), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LPAREN2] = ACTIONS(3061), - [anon_sym_BANG] = ACTIONS(3065), - [anon_sym_TILDE] = ACTIONS(3065), - [anon_sym_DASH] = ACTIONS(3063), - [anon_sym_PLUS] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(3069), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3071), - [anon_sym_PLUS_PLUS] = ACTIONS(3071), - [anon_sym_sizeof] = ACTIONS(3073), + [1250] = { + [sym_expression_statement] = STATE(3312), + [sym__expression] = STATE(3705), + [sym_comma_expression] = STATE(7049), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_type_requirement] = STATE(1252), + [sym_compound_requirement] = STATE(1252), + [sym__requirement] = STATE(1252), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_requirement_seq_repeat1] = STATE(1252), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3242), + [anon_sym_RBRACE] = ACTIONS(3256), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), [sym_number_literal] = ACTIONS(97), [anon_sym_L_SQUOTE] = ACTIONS(99), [anon_sym_u_SQUOTE] = ACTIONS(99), @@ -195947,137 +170604,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3075), - [anon_sym_co_await] = ACTIONS(3077), - [anon_sym_new] = ACTIONS(3079), + [anon_sym_typename] = ACTIONS(3246), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [1649] = { - [sym__expression] = STATE(2735), - [sym_conditional_expression] = STATE(2765), - [sym_assignment_expression] = STATE(2765), - [sym_pointer_expression] = STATE(2827), - [sym_unary_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_update_expression] = STATE(2765), - [sym_cast_expression] = STATE(2765), - [sym_sizeof_expression] = STATE(2765), - [sym_subscript_expression] = STATE(2827), - [sym_call_expression] = STATE(2827), - [sym_field_expression] = STATE(2827), - [sym_compound_literal_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2827), - [sym_char_literal] = STATE(2674), - [sym_concatenated_string] = STATE(2674), - [sym_string_literal] = STATE(2093), - [sym__class_name] = STATE(6297), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2765), - [sym_co_await_expression] = STATE(2765), - [sym_new_expression] = STATE(2765), - [sym_delete_expression] = STATE(2765), - [sym_requires_clause] = STATE(2765), - [sym_requires_expression] = STATE(2765), - [sym_lambda_expression] = STATE(2765), - [sym_lambda_capture_specifier] = STATE(4512), - [sym_fold_expression] = STATE(2765), - [sym_parameter_pack_expansion] = STATE(2765), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4648), - [sym_qualified_identifier] = STATE(2827), - [sym_qualified_type_identifier] = STATE(6297), - [sym_user_defined_literal] = STATE(2765), - [sym_identifier] = ACTIONS(2363), - [anon_sym_LPAREN2] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1417), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_COLON_COLON] = ACTIONS(1423), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(2369), - [anon_sym_DASH_DASH] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [anon_sym_sizeof] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(1439), - [anon_sym_L_SQUOTE] = ACTIONS(1441), - [anon_sym_u_SQUOTE] = ACTIONS(1441), - [anon_sym_U_SQUOTE] = ACTIONS(1441), - [anon_sym_u8_SQUOTE] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1441), - [anon_sym_L_DQUOTE] = ACTIONS(1443), - [anon_sym_u_DQUOTE] = ACTIONS(1443), - [anon_sym_U_DQUOTE] = ACTIONS(1443), - [anon_sym_u8_DQUOTE] = ACTIONS(1443), - [anon_sym_DQUOTE] = ACTIONS(1443), - [sym_true] = ACTIONS(1445), - [sym_false] = ACTIONS(1445), - [sym_null] = ACTIONS(1445), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_co_await] = ACTIONS(1451), - [anon_sym_new] = ACTIONS(1453), - [anon_sym_requires] = ACTIONS(1455), - [sym_this] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(1445), - [sym_raw_string_literal] = ACTIONS(1457), - }, - [1650] = { - [sym__expression] = STATE(3664), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2981), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2981), - [sym_call_expression] = STATE(2981), - [sym_field_expression] = STATE(2981), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2981), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2981), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3039), - [anon_sym_LPAREN2] = ACTIONS(3041), - [anon_sym_BANG] = ACTIONS(3045), - [anon_sym_TILDE] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(3047), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3049), - [anon_sym_PLUS_PLUS] = ACTIONS(3049), - [anon_sym_sizeof] = ACTIONS(3051), + [1251] = { + [sym_expression_statement] = STATE(3312), + [sym__expression] = STATE(3705), + [sym_comma_expression] = STATE(7049), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_type_requirement] = STATE(1253), + [sym_compound_requirement] = STATE(1253), + [sym__requirement] = STATE(1253), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_requirement_seq_repeat1] = STATE(1253), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3242), + [anon_sym_RBRACE] = ACTIONS(3258), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), [sym_number_literal] = ACTIONS(97), [anon_sym_L_SQUOTE] = ACTIONS(99), [anon_sym_u_SQUOTE] = ACTIONS(99), @@ -196093,137 +170689,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3053), - [anon_sym_co_await] = ACTIONS(3055), - [anon_sym_new] = ACTIONS(3057), + [anon_sym_typename] = ACTIONS(3246), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [1651] = { - [sym__expression] = STATE(2730), - [sym_conditional_expression] = STATE(2765), - [sym_assignment_expression] = STATE(2765), - [sym_pointer_expression] = STATE(2827), - [sym_unary_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_update_expression] = STATE(2765), - [sym_cast_expression] = STATE(2765), - [sym_sizeof_expression] = STATE(2765), - [sym_subscript_expression] = STATE(2827), - [sym_call_expression] = STATE(2827), - [sym_field_expression] = STATE(2827), - [sym_compound_literal_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2827), - [sym_char_literal] = STATE(2674), - [sym_concatenated_string] = STATE(2674), - [sym_string_literal] = STATE(2093), - [sym__class_name] = STATE(6297), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2765), - [sym_co_await_expression] = STATE(2765), - [sym_new_expression] = STATE(2765), - [sym_delete_expression] = STATE(2765), - [sym_requires_clause] = STATE(2765), - [sym_requires_expression] = STATE(2765), - [sym_lambda_expression] = STATE(2765), - [sym_lambda_capture_specifier] = STATE(4512), - [sym_fold_expression] = STATE(2765), - [sym_parameter_pack_expansion] = STATE(2765), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4648), - [sym_qualified_identifier] = STATE(2827), - [sym_qualified_type_identifier] = STATE(6297), - [sym_user_defined_literal] = STATE(2765), - [sym_identifier] = ACTIONS(2363), - [anon_sym_LPAREN2] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1417), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_COLON_COLON] = ACTIONS(1423), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(2369), - [anon_sym_DASH_DASH] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [anon_sym_sizeof] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(1439), - [anon_sym_L_SQUOTE] = ACTIONS(1441), - [anon_sym_u_SQUOTE] = ACTIONS(1441), - [anon_sym_U_SQUOTE] = ACTIONS(1441), - [anon_sym_u8_SQUOTE] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1441), - [anon_sym_L_DQUOTE] = ACTIONS(1443), - [anon_sym_u_DQUOTE] = ACTIONS(1443), - [anon_sym_U_DQUOTE] = ACTIONS(1443), - [anon_sym_u8_DQUOTE] = ACTIONS(1443), - [anon_sym_DQUOTE] = ACTIONS(1443), - [sym_true] = ACTIONS(1445), - [sym_false] = ACTIONS(1445), - [sym_null] = ACTIONS(1445), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_co_await] = ACTIONS(1451), - [anon_sym_new] = ACTIONS(1453), - [anon_sym_requires] = ACTIONS(1455), - [sym_this] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(1445), - [sym_raw_string_literal] = ACTIONS(1457), - }, - [1652] = { - [sym__expression] = STATE(3665), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2981), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2981), - [sym_call_expression] = STATE(2981), - [sym_field_expression] = STATE(2981), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2981), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2981), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3039), - [anon_sym_LPAREN2] = ACTIONS(3041), - [anon_sym_BANG] = ACTIONS(3045), - [anon_sym_TILDE] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(3047), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3049), - [anon_sym_PLUS_PLUS] = ACTIONS(3049), - [anon_sym_sizeof] = ACTIONS(3051), + [1252] = { + [sym_expression_statement] = STATE(3312), + [sym__expression] = STATE(3705), + [sym_comma_expression] = STATE(7049), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_type_requirement] = STATE(1253), + [sym_compound_requirement] = STATE(1253), + [sym__requirement] = STATE(1253), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_requirement_seq_repeat1] = STATE(1253), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3242), + [anon_sym_RBRACE] = ACTIONS(3260), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), [sym_number_literal] = ACTIONS(97), [anon_sym_L_SQUOTE] = ACTIONS(99), [anon_sym_u_SQUOTE] = ACTIONS(99), @@ -196239,134 +170774,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3053), - [anon_sym_co_await] = ACTIONS(3055), - [anon_sym_new] = ACTIONS(3057), + [anon_sym_typename] = ACTIONS(3246), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [1653] = { - [sym__expression] = STATE(2729), - [sym_conditional_expression] = STATE(2765), - [sym_assignment_expression] = STATE(2765), - [sym_pointer_expression] = STATE(2827), - [sym_unary_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_update_expression] = STATE(2765), - [sym_cast_expression] = STATE(2765), - [sym_sizeof_expression] = STATE(2765), - [sym_subscript_expression] = STATE(2827), - [sym_call_expression] = STATE(2827), - [sym_field_expression] = STATE(2827), - [sym_compound_literal_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2827), - [sym_char_literal] = STATE(2674), - [sym_concatenated_string] = STATE(2674), - [sym_string_literal] = STATE(2093), - [sym__class_name] = STATE(6297), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2765), - [sym_co_await_expression] = STATE(2765), - [sym_new_expression] = STATE(2765), - [sym_delete_expression] = STATE(2765), - [sym_requires_clause] = STATE(2765), - [sym_requires_expression] = STATE(2765), - [sym_lambda_expression] = STATE(2765), - [sym_lambda_capture_specifier] = STATE(4512), - [sym_fold_expression] = STATE(2765), - [sym_parameter_pack_expansion] = STATE(2765), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4648), - [sym_qualified_identifier] = STATE(2827), - [sym_qualified_type_identifier] = STATE(6297), - [sym_user_defined_literal] = STATE(2765), - [sym_identifier] = ACTIONS(2363), - [anon_sym_LPAREN2] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1417), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_COLON_COLON] = ACTIONS(1423), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(2369), - [anon_sym_DASH_DASH] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [anon_sym_sizeof] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(1439), - [anon_sym_L_SQUOTE] = ACTIONS(1441), - [anon_sym_u_SQUOTE] = ACTIONS(1441), - [anon_sym_U_SQUOTE] = ACTIONS(1441), - [anon_sym_u8_SQUOTE] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1441), - [anon_sym_L_DQUOTE] = ACTIONS(1443), - [anon_sym_u_DQUOTE] = ACTIONS(1443), - [anon_sym_U_DQUOTE] = ACTIONS(1443), - [anon_sym_u8_DQUOTE] = ACTIONS(1443), - [anon_sym_DQUOTE] = ACTIONS(1443), - [sym_true] = ACTIONS(1445), - [sym_false] = ACTIONS(1445), - [sym_null] = ACTIONS(1445), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_co_await] = ACTIONS(1451), - [anon_sym_new] = ACTIONS(1453), - [anon_sym_requires] = ACTIONS(1455), - [sym_this] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(1445), - [sym_raw_string_literal] = ACTIONS(1457), + [1253] = { + [sym_expression_statement] = STATE(3312), + [sym__expression] = STATE(3705), + [sym_comma_expression] = STATE(7049), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_type_requirement] = STATE(1253), + [sym_compound_requirement] = STATE(1253), + [sym__requirement] = STATE(1253), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_requirement_seq_repeat1] = STATE(1253), + [sym_identifier] = ACTIONS(3262), + [anon_sym_LPAREN2] = ACTIONS(3265), + [anon_sym_BANG] = ACTIONS(3268), + [anon_sym_TILDE] = ACTIONS(3268), + [anon_sym_DASH] = ACTIONS(3271), + [anon_sym_PLUS] = ACTIONS(3271), + [anon_sym_STAR] = ACTIONS(3274), + [anon_sym_AMP] = ACTIONS(3274), + [anon_sym_SEMI] = ACTIONS(3277), + [anon_sym_COLON_COLON] = ACTIONS(3280), + [anon_sym_LBRACE] = ACTIONS(3283), + [anon_sym_RBRACE] = ACTIONS(3286), + [anon_sym_LBRACK] = ACTIONS(3288), + [sym_primitive_type] = ACTIONS(3291), + [anon_sym_not] = ACTIONS(3271), + [anon_sym_compl] = ACTIONS(3271), + [anon_sym_DASH_DASH] = ACTIONS(3294), + [anon_sym_PLUS_PLUS] = ACTIONS(3294), + [anon_sym_sizeof] = ACTIONS(3297), + [sym_number_literal] = ACTIONS(3300), + [anon_sym_L_SQUOTE] = ACTIONS(3303), + [anon_sym_u_SQUOTE] = ACTIONS(3303), + [anon_sym_U_SQUOTE] = ACTIONS(3303), + [anon_sym_u8_SQUOTE] = ACTIONS(3303), + [anon_sym_SQUOTE] = ACTIONS(3303), + [anon_sym_L_DQUOTE] = ACTIONS(3306), + [anon_sym_u_DQUOTE] = ACTIONS(3306), + [anon_sym_U_DQUOTE] = ACTIONS(3306), + [anon_sym_u8_DQUOTE] = ACTIONS(3306), + [anon_sym_DQUOTE] = ACTIONS(3306), + [sym_true] = ACTIONS(3309), + [sym_false] = ACTIONS(3309), + [sym_null] = ACTIONS(3309), + [sym_comment] = ACTIONS(3), + [anon_sym_typename] = ACTIONS(3312), + [anon_sym_template] = ACTIONS(3315), + [anon_sym_delete] = ACTIONS(3318), + [anon_sym_co_await] = ACTIONS(3321), + [anon_sym_new] = ACTIONS(3324), + [anon_sym_requires] = ACTIONS(3327), + [sym_this] = ACTIONS(3309), + [sym_nullptr] = ACTIONS(3309), + [sym_raw_string_literal] = ACTIONS(3330), }, - [1654] = { - [sym__expression] = STATE(3935), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), + [1254] = { + [sym_expression_statement] = STATE(3312), + [sym__expression] = STATE(3705), + [sym_comma_expression] = STATE(7049), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_type_requirement] = STATE(1259), + [sym_compound_requirement] = STATE(1259), + [sym__requirement] = STATE(1259), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_requirement_seq_repeat1] = STATE(1259), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3240), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), + [anon_sym_LBRACE] = ACTIONS(3242), + [anon_sym_RBRACE] = ACTIONS(3333), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -196385,7 +170944,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), + [anon_sym_typename] = ACTIONS(3246), + [anon_sym_template] = ACTIONS(976), [anon_sym_delete] = ACTIONS(121), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), @@ -196394,785 +170954,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [1655] = { - [sym__expression] = STATE(2728), - [sym_conditional_expression] = STATE(2765), - [sym_assignment_expression] = STATE(2765), - [sym_pointer_expression] = STATE(2827), - [sym_unary_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_update_expression] = STATE(2765), - [sym_cast_expression] = STATE(2765), - [sym_sizeof_expression] = STATE(2765), - [sym_subscript_expression] = STATE(2827), - [sym_call_expression] = STATE(2827), - [sym_field_expression] = STATE(2827), - [sym_compound_literal_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2827), - [sym_char_literal] = STATE(2674), - [sym_concatenated_string] = STATE(2674), - [sym_string_literal] = STATE(2093), - [sym__class_name] = STATE(6297), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2765), - [sym_co_await_expression] = STATE(2765), - [sym_new_expression] = STATE(2765), - [sym_delete_expression] = STATE(2765), - [sym_requires_clause] = STATE(2765), - [sym_requires_expression] = STATE(2765), - [sym_lambda_expression] = STATE(2765), - [sym_lambda_capture_specifier] = STATE(4512), - [sym_fold_expression] = STATE(2765), - [sym_parameter_pack_expansion] = STATE(2765), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4648), - [sym_qualified_identifier] = STATE(2827), - [sym_qualified_type_identifier] = STATE(6297), - [sym_user_defined_literal] = STATE(2765), - [sym_identifier] = ACTIONS(2363), - [anon_sym_LPAREN2] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1417), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_COLON_COLON] = ACTIONS(1423), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(2369), - [anon_sym_DASH_DASH] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [anon_sym_sizeof] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(1439), - [anon_sym_L_SQUOTE] = ACTIONS(1441), - [anon_sym_u_SQUOTE] = ACTIONS(1441), - [anon_sym_U_SQUOTE] = ACTIONS(1441), - [anon_sym_u8_SQUOTE] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1441), - [anon_sym_L_DQUOTE] = ACTIONS(1443), - [anon_sym_u_DQUOTE] = ACTIONS(1443), - [anon_sym_U_DQUOTE] = ACTIONS(1443), - [anon_sym_u8_DQUOTE] = ACTIONS(1443), - [anon_sym_DQUOTE] = ACTIONS(1443), - [sym_true] = ACTIONS(1445), - [sym_false] = ACTIONS(1445), - [sym_null] = ACTIONS(1445), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_co_await] = ACTIONS(1451), - [anon_sym_new] = ACTIONS(1453), - [anon_sym_requires] = ACTIONS(1455), - [sym_this] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(1445), - [sym_raw_string_literal] = ACTIONS(1457), - }, - [1656] = { - [sym__expression] = STATE(2727), - [sym_conditional_expression] = STATE(2765), - [sym_assignment_expression] = STATE(2765), - [sym_pointer_expression] = STATE(2827), - [sym_unary_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_update_expression] = STATE(2765), - [sym_cast_expression] = STATE(2765), - [sym_sizeof_expression] = STATE(2765), - [sym_subscript_expression] = STATE(2827), - [sym_call_expression] = STATE(2827), - [sym_field_expression] = STATE(2827), - [sym_compound_literal_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2827), - [sym_char_literal] = STATE(2674), - [sym_concatenated_string] = STATE(2674), - [sym_string_literal] = STATE(2093), - [sym__class_name] = STATE(6297), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2765), - [sym_co_await_expression] = STATE(2765), - [sym_new_expression] = STATE(2765), - [sym_delete_expression] = STATE(2765), - [sym_requires_clause] = STATE(2765), - [sym_requires_expression] = STATE(2765), - [sym_lambda_expression] = STATE(2765), - [sym_lambda_capture_specifier] = STATE(4512), - [sym_fold_expression] = STATE(2765), - [sym_parameter_pack_expansion] = STATE(2765), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4648), - [sym_qualified_identifier] = STATE(2827), - [sym_qualified_type_identifier] = STATE(6297), - [sym_user_defined_literal] = STATE(2765), - [sym_identifier] = ACTIONS(2363), - [anon_sym_LPAREN2] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1417), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_COLON_COLON] = ACTIONS(1423), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(2369), - [anon_sym_DASH_DASH] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [anon_sym_sizeof] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(1439), - [anon_sym_L_SQUOTE] = ACTIONS(1441), - [anon_sym_u_SQUOTE] = ACTIONS(1441), - [anon_sym_U_SQUOTE] = ACTIONS(1441), - [anon_sym_u8_SQUOTE] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1441), - [anon_sym_L_DQUOTE] = ACTIONS(1443), - [anon_sym_u_DQUOTE] = ACTIONS(1443), - [anon_sym_U_DQUOTE] = ACTIONS(1443), - [anon_sym_u8_DQUOTE] = ACTIONS(1443), - [anon_sym_DQUOTE] = ACTIONS(1443), - [sym_true] = ACTIONS(1445), - [sym_false] = ACTIONS(1445), - [sym_null] = ACTIONS(1445), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_co_await] = ACTIONS(1451), - [anon_sym_new] = ACTIONS(1453), - [anon_sym_requires] = ACTIONS(1455), - [sym_this] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(1445), - [sym_raw_string_literal] = ACTIONS(1457), - }, - [1657] = { - [sym__expression] = STATE(2875), - [sym_conditional_expression] = STATE(3000), - [sym_assignment_expression] = STATE(3000), - [sym_pointer_expression] = STATE(3006), - [sym_unary_expression] = STATE(3000), - [sym_binary_expression] = STATE(3000), - [sym_update_expression] = STATE(3000), - [sym_cast_expression] = STATE(3000), - [sym_sizeof_expression] = STATE(3000), - [sym_subscript_expression] = STATE(3006), - [sym_call_expression] = STATE(3006), - [sym_field_expression] = STATE(3006), - [sym_compound_literal_expression] = STATE(3000), - [sym_parenthesized_expression] = STATE(3006), - [sym_char_literal] = STATE(2896), - [sym_concatenated_string] = STATE(2896), - [sym_string_literal] = STATE(2154), - [sym__class_name] = STATE(5849), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3000), - [sym_co_await_expression] = STATE(3000), - [sym_new_expression] = STATE(3000), - [sym_delete_expression] = STATE(3000), - [sym_requires_clause] = STATE(3000), - [sym_requires_expression] = STATE(3000), - [sym_lambda_expression] = STATE(3000), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3000), - [sym_parameter_pack_expansion] = STATE(3000), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4642), - [sym_qualified_identifier] = STATE(3006), - [sym_qualified_type_identifier] = STATE(5849), - [sym_user_defined_literal] = STATE(3000), - [sym_identifier] = ACTIONS(2831), - [anon_sym_LPAREN2] = ACTIONS(2833), - [anon_sym_BANG] = ACTIONS(2837), - [anon_sym_TILDE] = ACTIONS(2837), - [anon_sym_DASH] = ACTIONS(2835), - [anon_sym_PLUS] = ACTIONS(2835), - [anon_sym_STAR] = ACTIONS(2537), - [anon_sym_AMP] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(2841), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(2845), - [anon_sym_DASH_DASH] = ACTIONS(2847), - [anon_sym_PLUS_PLUS] = ACTIONS(2847), - [anon_sym_sizeof] = ACTIONS(2849), - [sym_number_literal] = ACTIONS(2851), - [anon_sym_L_SQUOTE] = ACTIONS(2853), - [anon_sym_u_SQUOTE] = ACTIONS(2853), - [anon_sym_U_SQUOTE] = ACTIONS(2853), - [anon_sym_u8_SQUOTE] = ACTIONS(2853), - [anon_sym_SQUOTE] = ACTIONS(2853), - [anon_sym_L_DQUOTE] = ACTIONS(2855), - [anon_sym_u_DQUOTE] = ACTIONS(2855), - [anon_sym_U_DQUOTE] = ACTIONS(2855), - [anon_sym_u8_DQUOTE] = ACTIONS(2855), - [anon_sym_DQUOTE] = ACTIONS(2855), - [sym_true] = ACTIONS(2857), - [sym_false] = ACTIONS(2857), - [sym_null] = ACTIONS(2857), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_co_await] = ACTIONS(2861), - [anon_sym_new] = ACTIONS(2863), - [anon_sym_requires] = ACTIONS(2865), - [sym_this] = ACTIONS(2857), - [sym_nullptr] = ACTIONS(2857), - [sym_raw_string_literal] = ACTIONS(2867), - }, - [1658] = { - [sym__expression] = STATE(2558), - [sym_conditional_expression] = STATE(2541), - [sym_assignment_expression] = STATE(2541), - [sym_pointer_expression] = STATE(2531), - [sym_unary_expression] = STATE(2541), - [sym_binary_expression] = STATE(2541), - [sym_update_expression] = STATE(2541), - [sym_cast_expression] = STATE(2541), - [sym_sizeof_expression] = STATE(2541), - [sym_subscript_expression] = STATE(2531), - [sym_call_expression] = STATE(2531), - [sym_field_expression] = STATE(2531), - [sym_compound_literal_expression] = STATE(2541), - [sym_parenthesized_expression] = STATE(2531), - [sym_char_literal] = STATE(2481), - [sym_concatenated_string] = STATE(2481), - [sym_string_literal] = STATE(2063), - [sym__class_name] = STATE(6239), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2541), - [sym_co_await_expression] = STATE(2541), - [sym_new_expression] = STATE(2541), - [sym_delete_expression] = STATE(2541), - [sym_requires_clause] = STATE(2541), - [sym_requires_expression] = STATE(2541), - [sym_lambda_expression] = STATE(2541), - [sym_lambda_capture_specifier] = STATE(4508), - [sym_fold_expression] = STATE(2541), - [sym_parameter_pack_expansion] = STATE(2541), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2531), - [sym_qualified_type_identifier] = STATE(6239), - [sym_user_defined_literal] = STATE(2541), - [sym_identifier] = ACTIONS(2306), - [anon_sym_LPAREN2] = ACTIONS(2310), - [anon_sym_BANG] = ACTIONS(2314), - [anon_sym_TILDE] = ACTIONS(2314), - [anon_sym_DASH] = ACTIONS(2312), - [anon_sym_PLUS] = ACTIONS(2312), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(2318), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(2322), - [anon_sym_PLUS_PLUS] = ACTIONS(2322), - [anon_sym_sizeof] = ACTIONS(2324), - [sym_number_literal] = ACTIONS(2326), - [anon_sym_L_SQUOTE] = ACTIONS(2328), - [anon_sym_u_SQUOTE] = ACTIONS(2328), - [anon_sym_U_SQUOTE] = ACTIONS(2328), - [anon_sym_u8_SQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2328), - [anon_sym_L_DQUOTE] = ACTIONS(2330), - [anon_sym_u_DQUOTE] = ACTIONS(2330), - [anon_sym_U_DQUOTE] = ACTIONS(2330), - [anon_sym_u8_DQUOTE] = ACTIONS(2330), - [anon_sym_DQUOTE] = ACTIONS(2330), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2334), - [anon_sym_co_await] = ACTIONS(2336), - [anon_sym_new] = ACTIONS(2338), - [anon_sym_requires] = ACTIONS(2340), - [sym_this] = ACTIONS(2332), - [sym_nullptr] = ACTIONS(2332), - [sym_raw_string_literal] = ACTIONS(2342), - }, - [1659] = { - [sym__expression] = STATE(2726), - [sym_conditional_expression] = STATE(2765), - [sym_assignment_expression] = STATE(2765), - [sym_pointer_expression] = STATE(2827), - [sym_unary_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_update_expression] = STATE(2765), - [sym_cast_expression] = STATE(2765), - [sym_sizeof_expression] = STATE(2765), - [sym_subscript_expression] = STATE(2827), - [sym_call_expression] = STATE(2827), - [sym_field_expression] = STATE(2827), - [sym_compound_literal_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2827), - [sym_char_literal] = STATE(2674), - [sym_concatenated_string] = STATE(2674), - [sym_string_literal] = STATE(2093), - [sym__class_name] = STATE(6297), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2765), - [sym_co_await_expression] = STATE(2765), - [sym_new_expression] = STATE(2765), - [sym_delete_expression] = STATE(2765), - [sym_requires_clause] = STATE(2765), - [sym_requires_expression] = STATE(2765), - [sym_lambda_expression] = STATE(2765), - [sym_lambda_capture_specifier] = STATE(4512), - [sym_fold_expression] = STATE(2765), - [sym_parameter_pack_expansion] = STATE(2765), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4648), - [sym_qualified_identifier] = STATE(2827), - [sym_qualified_type_identifier] = STATE(6297), - [sym_user_defined_literal] = STATE(2765), - [sym_identifier] = ACTIONS(2363), - [anon_sym_LPAREN2] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1417), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_COLON_COLON] = ACTIONS(1423), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(2369), - [anon_sym_DASH_DASH] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [anon_sym_sizeof] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(1439), - [anon_sym_L_SQUOTE] = ACTIONS(1441), - [anon_sym_u_SQUOTE] = ACTIONS(1441), - [anon_sym_U_SQUOTE] = ACTIONS(1441), - [anon_sym_u8_SQUOTE] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1441), - [anon_sym_L_DQUOTE] = ACTIONS(1443), - [anon_sym_u_DQUOTE] = ACTIONS(1443), - [anon_sym_U_DQUOTE] = ACTIONS(1443), - [anon_sym_u8_DQUOTE] = ACTIONS(1443), - [anon_sym_DQUOTE] = ACTIONS(1443), - [sym_true] = ACTIONS(1445), - [sym_false] = ACTIONS(1445), - [sym_null] = ACTIONS(1445), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_co_await] = ACTIONS(1451), - [anon_sym_new] = ACTIONS(1453), - [anon_sym_requires] = ACTIONS(1455), - [sym_this] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(1445), - [sym_raw_string_literal] = ACTIONS(1457), - }, - [1660] = { - [sym__expression] = STATE(2714), - [sym_conditional_expression] = STATE(2765), - [sym_assignment_expression] = STATE(2765), - [sym_pointer_expression] = STATE(2827), - [sym_unary_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_update_expression] = STATE(2765), - [sym_cast_expression] = STATE(2765), - [sym_sizeof_expression] = STATE(2765), - [sym_subscript_expression] = STATE(2827), - [sym_call_expression] = STATE(2827), - [sym_field_expression] = STATE(2827), - [sym_compound_literal_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2827), - [sym_char_literal] = STATE(2674), - [sym_concatenated_string] = STATE(2674), - [sym_string_literal] = STATE(2093), - [sym__class_name] = STATE(6297), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2765), - [sym_co_await_expression] = STATE(2765), - [sym_new_expression] = STATE(2765), - [sym_delete_expression] = STATE(2765), - [sym_requires_clause] = STATE(2765), - [sym_requires_expression] = STATE(2765), - [sym_lambda_expression] = STATE(2765), - [sym_lambda_capture_specifier] = STATE(4512), - [sym_fold_expression] = STATE(2765), - [sym_parameter_pack_expansion] = STATE(2765), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4648), - [sym_qualified_identifier] = STATE(2827), - [sym_qualified_type_identifier] = STATE(6297), - [sym_user_defined_literal] = STATE(2765), - [sym_identifier] = ACTIONS(2363), - [anon_sym_LPAREN2] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1417), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_COLON_COLON] = ACTIONS(1423), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(2369), - [anon_sym_DASH_DASH] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [anon_sym_sizeof] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(1439), - [anon_sym_L_SQUOTE] = ACTIONS(1441), - [anon_sym_u_SQUOTE] = ACTIONS(1441), - [anon_sym_U_SQUOTE] = ACTIONS(1441), - [anon_sym_u8_SQUOTE] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1441), - [anon_sym_L_DQUOTE] = ACTIONS(1443), - [anon_sym_u_DQUOTE] = ACTIONS(1443), - [anon_sym_U_DQUOTE] = ACTIONS(1443), - [anon_sym_u8_DQUOTE] = ACTIONS(1443), - [anon_sym_DQUOTE] = ACTIONS(1443), - [sym_true] = ACTIONS(1445), - [sym_false] = ACTIONS(1445), - [sym_null] = ACTIONS(1445), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_co_await] = ACTIONS(1451), - [anon_sym_new] = ACTIONS(1453), - [anon_sym_requires] = ACTIONS(1455), - [sym_this] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(1445), - [sym_raw_string_literal] = ACTIONS(1457), - }, - [1661] = { - [sym__expression] = STATE(2863), - [sym_conditional_expression] = STATE(3000), - [sym_assignment_expression] = STATE(3000), - [sym_pointer_expression] = STATE(3006), - [sym_unary_expression] = STATE(3000), - [sym_binary_expression] = STATE(3000), - [sym_update_expression] = STATE(3000), - [sym_cast_expression] = STATE(3000), - [sym_sizeof_expression] = STATE(3000), - [sym_subscript_expression] = STATE(3006), - [sym_call_expression] = STATE(3006), - [sym_field_expression] = STATE(3006), - [sym_compound_literal_expression] = STATE(3000), - [sym_parenthesized_expression] = STATE(3006), - [sym_char_literal] = STATE(2896), - [sym_concatenated_string] = STATE(2896), - [sym_string_literal] = STATE(2154), - [sym__class_name] = STATE(5849), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3000), - [sym_co_await_expression] = STATE(3000), - [sym_new_expression] = STATE(3000), - [sym_delete_expression] = STATE(3000), - [sym_requires_clause] = STATE(3000), - [sym_requires_expression] = STATE(3000), - [sym_lambda_expression] = STATE(3000), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3000), - [sym_parameter_pack_expansion] = STATE(3000), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4642), - [sym_qualified_identifier] = STATE(3006), - [sym_qualified_type_identifier] = STATE(5849), - [sym_user_defined_literal] = STATE(3000), - [sym_identifier] = ACTIONS(2831), - [anon_sym_LPAREN2] = ACTIONS(2833), - [anon_sym_BANG] = ACTIONS(2837), - [anon_sym_TILDE] = ACTIONS(2837), - [anon_sym_DASH] = ACTIONS(2835), - [anon_sym_PLUS] = ACTIONS(2835), - [anon_sym_STAR] = ACTIONS(2537), - [anon_sym_AMP] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(2841), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(2845), - [anon_sym_DASH_DASH] = ACTIONS(2847), - [anon_sym_PLUS_PLUS] = ACTIONS(2847), - [anon_sym_sizeof] = ACTIONS(2849), - [sym_number_literal] = ACTIONS(2851), - [anon_sym_L_SQUOTE] = ACTIONS(2853), - [anon_sym_u_SQUOTE] = ACTIONS(2853), - [anon_sym_U_SQUOTE] = ACTIONS(2853), - [anon_sym_u8_SQUOTE] = ACTIONS(2853), - [anon_sym_SQUOTE] = ACTIONS(2853), - [anon_sym_L_DQUOTE] = ACTIONS(2855), - [anon_sym_u_DQUOTE] = ACTIONS(2855), - [anon_sym_U_DQUOTE] = ACTIONS(2855), - [anon_sym_u8_DQUOTE] = ACTIONS(2855), - [anon_sym_DQUOTE] = ACTIONS(2855), - [sym_true] = ACTIONS(2857), - [sym_false] = ACTIONS(2857), - [sym_null] = ACTIONS(2857), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_co_await] = ACTIONS(2861), - [anon_sym_new] = ACTIONS(2863), - [anon_sym_requires] = ACTIONS(2865), - [sym_this] = ACTIONS(2857), - [sym_nullptr] = ACTIONS(2857), - [sym_raw_string_literal] = ACTIONS(2867), - }, - [1662] = { - [sym__expression] = STATE(2856), - [sym_conditional_expression] = STATE(3000), - [sym_assignment_expression] = STATE(3000), - [sym_pointer_expression] = STATE(3006), - [sym_unary_expression] = STATE(3000), - [sym_binary_expression] = STATE(3000), - [sym_update_expression] = STATE(3000), - [sym_cast_expression] = STATE(3000), - [sym_sizeof_expression] = STATE(3000), - [sym_subscript_expression] = STATE(3006), - [sym_call_expression] = STATE(3006), - [sym_field_expression] = STATE(3006), - [sym_compound_literal_expression] = STATE(3000), - [sym_parenthesized_expression] = STATE(3006), - [sym_char_literal] = STATE(2896), - [sym_concatenated_string] = STATE(2896), - [sym_string_literal] = STATE(2154), - [sym__class_name] = STATE(5849), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3000), - [sym_co_await_expression] = STATE(3000), - [sym_new_expression] = STATE(3000), - [sym_delete_expression] = STATE(3000), - [sym_requires_clause] = STATE(3000), - [sym_requires_expression] = STATE(3000), - [sym_lambda_expression] = STATE(3000), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3000), - [sym_parameter_pack_expansion] = STATE(3000), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4642), - [sym_qualified_identifier] = STATE(3006), - [sym_qualified_type_identifier] = STATE(5849), - [sym_user_defined_literal] = STATE(3000), - [sym_identifier] = ACTIONS(2831), - [anon_sym_LPAREN2] = ACTIONS(2833), - [anon_sym_BANG] = ACTIONS(2837), - [anon_sym_TILDE] = ACTIONS(2837), - [anon_sym_DASH] = ACTIONS(2835), - [anon_sym_PLUS] = ACTIONS(2835), - [anon_sym_STAR] = ACTIONS(2537), - [anon_sym_AMP] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(2841), - [anon_sym_LBRACK] = ACTIONS(3710), - [sym_primitive_type] = ACTIONS(2845), - [anon_sym_DASH_DASH] = ACTIONS(2847), - [anon_sym_PLUS_PLUS] = ACTIONS(2847), - [anon_sym_sizeof] = ACTIONS(2849), - [sym_number_literal] = ACTIONS(2851), - [anon_sym_L_SQUOTE] = ACTIONS(2853), - [anon_sym_u_SQUOTE] = ACTIONS(2853), - [anon_sym_U_SQUOTE] = ACTIONS(2853), - [anon_sym_u8_SQUOTE] = ACTIONS(2853), - [anon_sym_SQUOTE] = ACTIONS(2853), - [anon_sym_L_DQUOTE] = ACTIONS(2855), - [anon_sym_u_DQUOTE] = ACTIONS(2855), - [anon_sym_U_DQUOTE] = ACTIONS(2855), - [anon_sym_u8_DQUOTE] = ACTIONS(2855), - [anon_sym_DQUOTE] = ACTIONS(2855), - [sym_true] = ACTIONS(2857), - [sym_false] = ACTIONS(2857), - [sym_null] = ACTIONS(2857), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_co_await] = ACTIONS(2861), - [anon_sym_new] = ACTIONS(2863), - [anon_sym_requires] = ACTIONS(2865), - [sym_this] = ACTIONS(2857), - [sym_nullptr] = ACTIONS(2857), - [sym_raw_string_literal] = ACTIONS(2867), - }, - [1663] = { - [sym__expression] = STATE(2906), - [sym_conditional_expression] = STATE(3000), - [sym_assignment_expression] = STATE(3000), - [sym_pointer_expression] = STATE(3006), - [sym_unary_expression] = STATE(3000), - [sym_binary_expression] = STATE(3000), - [sym_update_expression] = STATE(3000), - [sym_cast_expression] = STATE(3000), - [sym_sizeof_expression] = STATE(3000), - [sym_subscript_expression] = STATE(3006), - [sym_call_expression] = STATE(3006), - [sym_field_expression] = STATE(3006), - [sym_compound_literal_expression] = STATE(3000), - [sym_parenthesized_expression] = STATE(3006), - [sym_char_literal] = STATE(2896), - [sym_concatenated_string] = STATE(2896), - [sym_string_literal] = STATE(2154), - [sym__class_name] = STATE(5849), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3000), - [sym_co_await_expression] = STATE(3000), - [sym_new_expression] = STATE(3000), - [sym_delete_expression] = STATE(3000), - [sym_requires_clause] = STATE(3000), - [sym_requires_expression] = STATE(3000), - [sym_lambda_expression] = STATE(3000), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3000), - [sym_parameter_pack_expansion] = STATE(3000), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4642), - [sym_qualified_identifier] = STATE(3006), - [sym_qualified_type_identifier] = STATE(5849), - [sym_user_defined_literal] = STATE(3000), - [sym_identifier] = ACTIONS(2831), - [anon_sym_LPAREN2] = ACTIONS(2833), - [anon_sym_BANG] = ACTIONS(2837), - [anon_sym_TILDE] = ACTIONS(2837), - [anon_sym_DASH] = ACTIONS(2835), - [anon_sym_PLUS] = ACTIONS(2835), - [anon_sym_STAR] = ACTIONS(2537), - [anon_sym_AMP] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(2841), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(2845), - [anon_sym_DASH_DASH] = ACTIONS(2847), - [anon_sym_PLUS_PLUS] = ACTIONS(2847), - [anon_sym_sizeof] = ACTIONS(2849), - [sym_number_literal] = ACTIONS(2851), - [anon_sym_L_SQUOTE] = ACTIONS(2853), - [anon_sym_u_SQUOTE] = ACTIONS(2853), - [anon_sym_U_SQUOTE] = ACTIONS(2853), - [anon_sym_u8_SQUOTE] = ACTIONS(2853), - [anon_sym_SQUOTE] = ACTIONS(2853), - [anon_sym_L_DQUOTE] = ACTIONS(2855), - [anon_sym_u_DQUOTE] = ACTIONS(2855), - [anon_sym_U_DQUOTE] = ACTIONS(2855), - [anon_sym_u8_DQUOTE] = ACTIONS(2855), - [anon_sym_DQUOTE] = ACTIONS(2855), - [sym_true] = ACTIONS(2857), - [sym_false] = ACTIONS(2857), - [sym_null] = ACTIONS(2857), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_co_await] = ACTIONS(2861), - [anon_sym_new] = ACTIONS(2863), - [anon_sym_requires] = ACTIONS(2865), - [sym_this] = ACTIONS(2857), - [sym_nullptr] = ACTIONS(2857), - [sym_raw_string_literal] = ACTIONS(2867), - }, - [1664] = { - [sym__expression] = STATE(3065), - [sym_conditional_expression] = STATE(2541), - [sym_assignment_expression] = STATE(2541), - [sym_pointer_expression] = STATE(2531), - [sym_unary_expression] = STATE(2541), - [sym_binary_expression] = STATE(2541), - [sym_update_expression] = STATE(2541), - [sym_cast_expression] = STATE(2541), - [sym_sizeof_expression] = STATE(2541), - [sym_subscript_expression] = STATE(2531), - [sym_call_expression] = STATE(2531), - [sym_field_expression] = STATE(2531), - [sym_compound_literal_expression] = STATE(2541), - [sym_parenthesized_expression] = STATE(2531), - [sym_char_literal] = STATE(2481), - [sym_concatenated_string] = STATE(2481), - [sym_string_literal] = STATE(2063), - [sym__class_name] = STATE(6239), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2541), - [sym_co_await_expression] = STATE(2541), - [sym_new_expression] = STATE(2541), - [sym_delete_expression] = STATE(2541), - [sym_requires_clause] = STATE(2541), - [sym_requires_expression] = STATE(2541), - [sym_lambda_expression] = STATE(2541), - [sym_lambda_capture_specifier] = STATE(4508), - [sym_fold_expression] = STATE(2541), - [sym_parameter_pack_expansion] = STATE(2541), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2531), - [sym_qualified_type_identifier] = STATE(6239), - [sym_user_defined_literal] = STATE(2541), - [sym_identifier] = ACTIONS(2306), - [anon_sym_LPAREN2] = ACTIONS(2891), - [anon_sym_BANG] = ACTIONS(2895), - [anon_sym_TILDE] = ACTIONS(2895), - [anon_sym_DASH] = ACTIONS(2893), - [anon_sym_PLUS] = ACTIONS(2893), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(2899), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(2901), - [anon_sym_PLUS_PLUS] = ACTIONS(2901), - [anon_sym_sizeof] = ACTIONS(2903), - [sym_number_literal] = ACTIONS(2326), - [anon_sym_L_SQUOTE] = ACTIONS(2328), - [anon_sym_u_SQUOTE] = ACTIONS(2328), - [anon_sym_U_SQUOTE] = ACTIONS(2328), - [anon_sym_u8_SQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2328), - [anon_sym_L_DQUOTE] = ACTIONS(2330), - [anon_sym_u_DQUOTE] = ACTIONS(2330), - [anon_sym_U_DQUOTE] = ACTIONS(2330), - [anon_sym_u8_DQUOTE] = ACTIONS(2330), - [anon_sym_DQUOTE] = ACTIONS(2330), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2905), - [anon_sym_co_await] = ACTIONS(2907), - [anon_sym_new] = ACTIONS(2909), - [anon_sym_requires] = ACTIONS(2340), - [sym_this] = ACTIONS(2332), - [sym_nullptr] = ACTIONS(2332), - [sym_raw_string_literal] = ACTIONS(2342), - }, - [1665] = { - [sym__expression] = STATE(3667), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2981), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2981), - [sym_call_expression] = STATE(2981), - [sym_field_expression] = STATE(2981), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2981), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2981), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3039), - [anon_sym_LPAREN2] = ACTIONS(3041), - [anon_sym_BANG] = ACTIONS(3045), - [anon_sym_TILDE] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(3047), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3049), - [anon_sym_PLUS_PLUS] = ACTIONS(3049), - [anon_sym_sizeof] = ACTIONS(3051), + [1255] = { + [sym_expression_statement] = STATE(3312), + [sym__expression] = STATE(3705), + [sym_comma_expression] = STATE(7049), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_type_requirement] = STATE(1256), + [sym_compound_requirement] = STATE(1256), + [sym__requirement] = STATE(1256), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_requirement_seq_repeat1] = STATE(1256), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3242), + [anon_sym_RBRACE] = ACTIONS(3335), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), [sym_number_literal] = ACTIONS(97), [anon_sym_L_SQUOTE] = ACTIONS(99), [anon_sym_u_SQUOTE] = ACTIONS(99), @@ -197188,426 +171029,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3053), - [anon_sym_co_await] = ACTIONS(3055), - [anon_sym_new] = ACTIONS(3057), + [anon_sym_typename] = ACTIONS(3246), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [1666] = { - [sym__expression] = STATE(2713), - [sym_conditional_expression] = STATE(2765), - [sym_assignment_expression] = STATE(2765), - [sym_pointer_expression] = STATE(2827), - [sym_unary_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_update_expression] = STATE(2765), - [sym_cast_expression] = STATE(2765), - [sym_sizeof_expression] = STATE(2765), - [sym_subscript_expression] = STATE(2827), - [sym_call_expression] = STATE(2827), - [sym_field_expression] = STATE(2827), - [sym_compound_literal_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2827), - [sym_char_literal] = STATE(2674), - [sym_concatenated_string] = STATE(2674), - [sym_string_literal] = STATE(2093), - [sym__class_name] = STATE(6297), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2765), - [sym_co_await_expression] = STATE(2765), - [sym_new_expression] = STATE(2765), - [sym_delete_expression] = STATE(2765), - [sym_requires_clause] = STATE(2765), - [sym_requires_expression] = STATE(2765), - [sym_lambda_expression] = STATE(2765), - [sym_lambda_capture_specifier] = STATE(4512), - [sym_fold_expression] = STATE(2765), - [sym_parameter_pack_expansion] = STATE(2765), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4648), - [sym_qualified_identifier] = STATE(2827), - [sym_qualified_type_identifier] = STATE(6297), - [sym_user_defined_literal] = STATE(2765), - [sym_identifier] = ACTIONS(2363), - [anon_sym_LPAREN2] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1417), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_COLON_COLON] = ACTIONS(1423), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(2369), - [anon_sym_DASH_DASH] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [anon_sym_sizeof] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(1439), - [anon_sym_L_SQUOTE] = ACTIONS(1441), - [anon_sym_u_SQUOTE] = ACTIONS(1441), - [anon_sym_U_SQUOTE] = ACTIONS(1441), - [anon_sym_u8_SQUOTE] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1441), - [anon_sym_L_DQUOTE] = ACTIONS(1443), - [anon_sym_u_DQUOTE] = ACTIONS(1443), - [anon_sym_U_DQUOTE] = ACTIONS(1443), - [anon_sym_u8_DQUOTE] = ACTIONS(1443), - [anon_sym_DQUOTE] = ACTIONS(1443), - [sym_true] = ACTIONS(1445), - [sym_false] = ACTIONS(1445), - [sym_null] = ACTIONS(1445), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_co_await] = ACTIONS(1451), - [anon_sym_new] = ACTIONS(1453), - [anon_sym_requires] = ACTIONS(1455), - [sym_this] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(1445), - [sym_raw_string_literal] = ACTIONS(1457), - }, - [1667] = { - [sym__expression] = STATE(2711), - [sym_conditional_expression] = STATE(2765), - [sym_assignment_expression] = STATE(2765), - [sym_pointer_expression] = STATE(2827), - [sym_unary_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_update_expression] = STATE(2765), - [sym_cast_expression] = STATE(2765), - [sym_sizeof_expression] = STATE(2765), - [sym_subscript_expression] = STATE(2827), - [sym_call_expression] = STATE(2827), - [sym_field_expression] = STATE(2827), - [sym_compound_literal_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2827), - [sym_char_literal] = STATE(2674), - [sym_concatenated_string] = STATE(2674), - [sym_string_literal] = STATE(2093), - [sym__class_name] = STATE(6297), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2765), - [sym_co_await_expression] = STATE(2765), - [sym_new_expression] = STATE(2765), - [sym_delete_expression] = STATE(2765), - [sym_requires_clause] = STATE(2765), - [sym_requires_expression] = STATE(2765), - [sym_lambda_expression] = STATE(2765), - [sym_lambda_capture_specifier] = STATE(4512), - [sym_fold_expression] = STATE(2765), - [sym_parameter_pack_expansion] = STATE(2765), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4648), - [sym_qualified_identifier] = STATE(2827), - [sym_qualified_type_identifier] = STATE(6297), - [sym_user_defined_literal] = STATE(2765), - [sym_identifier] = ACTIONS(2363), - [anon_sym_LPAREN2] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1417), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_COLON_COLON] = ACTIONS(1423), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(2369), - [anon_sym_DASH_DASH] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [anon_sym_sizeof] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(1439), - [anon_sym_L_SQUOTE] = ACTIONS(1441), - [anon_sym_u_SQUOTE] = ACTIONS(1441), - [anon_sym_U_SQUOTE] = ACTIONS(1441), - [anon_sym_u8_SQUOTE] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1441), - [anon_sym_L_DQUOTE] = ACTIONS(1443), - [anon_sym_u_DQUOTE] = ACTIONS(1443), - [anon_sym_U_DQUOTE] = ACTIONS(1443), - [anon_sym_u8_DQUOTE] = ACTIONS(1443), - [anon_sym_DQUOTE] = ACTIONS(1443), - [sym_true] = ACTIONS(1445), - [sym_false] = ACTIONS(1445), - [sym_null] = ACTIONS(1445), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_co_await] = ACTIONS(1451), - [anon_sym_new] = ACTIONS(1453), - [anon_sym_requires] = ACTIONS(1455), - [sym_this] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(1445), - [sym_raw_string_literal] = ACTIONS(1457), - }, - [1668] = { - [sym__expression] = STATE(2709), - [sym_conditional_expression] = STATE(2765), - [sym_assignment_expression] = STATE(2765), - [sym_pointer_expression] = STATE(2827), - [sym_unary_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_update_expression] = STATE(2765), - [sym_cast_expression] = STATE(2765), - [sym_sizeof_expression] = STATE(2765), - [sym_subscript_expression] = STATE(2827), - [sym_call_expression] = STATE(2827), - [sym_field_expression] = STATE(2827), - [sym_compound_literal_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2827), - [sym_char_literal] = STATE(2674), - [sym_concatenated_string] = STATE(2674), - [sym_string_literal] = STATE(2093), - [sym__class_name] = STATE(6297), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2765), - [sym_co_await_expression] = STATE(2765), - [sym_new_expression] = STATE(2765), - [sym_delete_expression] = STATE(2765), - [sym_requires_clause] = STATE(2765), - [sym_requires_expression] = STATE(2765), - [sym_lambda_expression] = STATE(2765), - [sym_lambda_capture_specifier] = STATE(4512), - [sym_fold_expression] = STATE(2765), - [sym_parameter_pack_expansion] = STATE(2765), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4648), - [sym_qualified_identifier] = STATE(2827), - [sym_qualified_type_identifier] = STATE(6297), - [sym_user_defined_literal] = STATE(2765), - [sym_identifier] = ACTIONS(2363), - [anon_sym_LPAREN2] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1417), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_COLON_COLON] = ACTIONS(1423), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(2369), - [anon_sym_DASH_DASH] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [anon_sym_sizeof] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(1439), - [anon_sym_L_SQUOTE] = ACTIONS(1441), - [anon_sym_u_SQUOTE] = ACTIONS(1441), - [anon_sym_U_SQUOTE] = ACTIONS(1441), - [anon_sym_u8_SQUOTE] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1441), - [anon_sym_L_DQUOTE] = ACTIONS(1443), - [anon_sym_u_DQUOTE] = ACTIONS(1443), - [anon_sym_U_DQUOTE] = ACTIONS(1443), - [anon_sym_u8_DQUOTE] = ACTIONS(1443), - [anon_sym_DQUOTE] = ACTIONS(1443), - [sym_true] = ACTIONS(1445), - [sym_false] = ACTIONS(1445), - [sym_null] = ACTIONS(1445), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_co_await] = ACTIONS(1451), - [anon_sym_new] = ACTIONS(1453), - [anon_sym_requires] = ACTIONS(1455), - [sym_this] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(1445), - [sym_raw_string_literal] = ACTIONS(1457), - }, - [1669] = { - [sym__expression] = STATE(2594), - [sym_conditional_expression] = STATE(2541), - [sym_assignment_expression] = STATE(2541), - [sym_pointer_expression] = STATE(2531), - [sym_unary_expression] = STATE(2541), - [sym_binary_expression] = STATE(2541), - [sym_update_expression] = STATE(2541), - [sym_cast_expression] = STATE(2541), - [sym_sizeof_expression] = STATE(2541), - [sym_subscript_expression] = STATE(2531), - [sym_call_expression] = STATE(2531), - [sym_field_expression] = STATE(2531), - [sym_compound_literal_expression] = STATE(2541), - [sym_parenthesized_expression] = STATE(2531), - [sym_char_literal] = STATE(2481), - [sym_concatenated_string] = STATE(2481), - [sym_string_literal] = STATE(2063), - [sym__class_name] = STATE(6239), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2541), - [sym_co_await_expression] = STATE(2541), - [sym_new_expression] = STATE(2541), - [sym_delete_expression] = STATE(2541), - [sym_requires_clause] = STATE(2541), - [sym_requires_expression] = STATE(2541), - [sym_lambda_expression] = STATE(2541), - [sym_lambda_capture_specifier] = STATE(4508), - [sym_fold_expression] = STATE(2541), - [sym_parameter_pack_expansion] = STATE(2541), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2531), - [sym_qualified_type_identifier] = STATE(6239), - [sym_user_defined_literal] = STATE(2541), - [sym_identifier] = ACTIONS(2306), - [anon_sym_LPAREN2] = ACTIONS(2310), - [anon_sym_BANG] = ACTIONS(2314), - [anon_sym_TILDE] = ACTIONS(2314), - [anon_sym_DASH] = ACTIONS(2312), - [anon_sym_PLUS] = ACTIONS(2312), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(2318), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(2322), - [anon_sym_PLUS_PLUS] = ACTIONS(2322), - [anon_sym_sizeof] = ACTIONS(2324), - [sym_number_literal] = ACTIONS(2326), - [anon_sym_L_SQUOTE] = ACTIONS(2328), - [anon_sym_u_SQUOTE] = ACTIONS(2328), - [anon_sym_U_SQUOTE] = ACTIONS(2328), - [anon_sym_u8_SQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2328), - [anon_sym_L_DQUOTE] = ACTIONS(2330), - [anon_sym_u_DQUOTE] = ACTIONS(2330), - [anon_sym_U_DQUOTE] = ACTIONS(2330), - [anon_sym_u8_DQUOTE] = ACTIONS(2330), - [anon_sym_DQUOTE] = ACTIONS(2330), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2334), - [anon_sym_co_await] = ACTIONS(2336), - [anon_sym_new] = ACTIONS(2338), - [anon_sym_requires] = ACTIONS(2340), - [sym_this] = ACTIONS(2332), - [sym_nullptr] = ACTIONS(2332), - [sym_raw_string_literal] = ACTIONS(2342), - }, - [1670] = { - [sym__expression] = STATE(2927), - [sym_conditional_expression] = STATE(3000), - [sym_assignment_expression] = STATE(3000), - [sym_pointer_expression] = STATE(3006), - [sym_unary_expression] = STATE(3000), - [sym_binary_expression] = STATE(3000), - [sym_update_expression] = STATE(3000), - [sym_cast_expression] = STATE(3000), - [sym_sizeof_expression] = STATE(3000), - [sym_subscript_expression] = STATE(3006), - [sym_call_expression] = STATE(3006), - [sym_field_expression] = STATE(3006), - [sym_compound_literal_expression] = STATE(3000), - [sym_parenthesized_expression] = STATE(3006), - [sym_char_literal] = STATE(2896), - [sym_concatenated_string] = STATE(2896), - [sym_string_literal] = STATE(2154), - [sym__class_name] = STATE(5849), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3000), - [sym_co_await_expression] = STATE(3000), - [sym_new_expression] = STATE(3000), - [sym_delete_expression] = STATE(3000), - [sym_requires_clause] = STATE(3000), - [sym_requires_expression] = STATE(3000), - [sym_lambda_expression] = STATE(3000), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3000), - [sym_parameter_pack_expansion] = STATE(3000), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4642), - [sym_qualified_identifier] = STATE(3006), - [sym_qualified_type_identifier] = STATE(5849), - [sym_user_defined_literal] = STATE(3000), - [sym_identifier] = ACTIONS(2831), - [anon_sym_LPAREN2] = ACTIONS(2833), - [anon_sym_BANG] = ACTIONS(2837), - [anon_sym_TILDE] = ACTIONS(2837), - [anon_sym_DASH] = ACTIONS(2835), - [anon_sym_PLUS] = ACTIONS(2835), - [anon_sym_STAR] = ACTIONS(2537), - [anon_sym_AMP] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(2841), - [anon_sym_LBRACK] = ACTIONS(3712), - [sym_primitive_type] = ACTIONS(2845), - [anon_sym_DASH_DASH] = ACTIONS(2847), - [anon_sym_PLUS_PLUS] = ACTIONS(2847), - [anon_sym_sizeof] = ACTIONS(2849), - [sym_number_literal] = ACTIONS(2851), - [anon_sym_L_SQUOTE] = ACTIONS(2853), - [anon_sym_u_SQUOTE] = ACTIONS(2853), - [anon_sym_U_SQUOTE] = ACTIONS(2853), - [anon_sym_u8_SQUOTE] = ACTIONS(2853), - [anon_sym_SQUOTE] = ACTIONS(2853), - [anon_sym_L_DQUOTE] = ACTIONS(2855), - [anon_sym_u_DQUOTE] = ACTIONS(2855), - [anon_sym_U_DQUOTE] = ACTIONS(2855), - [anon_sym_u8_DQUOTE] = ACTIONS(2855), - [anon_sym_DQUOTE] = ACTIONS(2855), - [sym_true] = ACTIONS(2857), - [sym_false] = ACTIONS(2857), - [sym_null] = ACTIONS(2857), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_co_await] = ACTIONS(2861), - [anon_sym_new] = ACTIONS(2863), - [anon_sym_requires] = ACTIONS(2865), - [sym_this] = ACTIONS(2857), - [sym_nullptr] = ACTIONS(2857), - [sym_raw_string_literal] = ACTIONS(2867), - }, - [1671] = { - [sym__expression] = STATE(3913), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), + [1256] = { + [sym_expression_statement] = STATE(3312), + [sym__expression] = STATE(3705), + [sym_comma_expression] = STATE(7049), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_type_requirement] = STATE(1253), + [sym_compound_requirement] = STATE(1253), + [sym__requirement] = STATE(1253), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_requirement_seq_repeat1] = STATE(1253), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3240), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), + [anon_sym_LBRACE] = ACTIONS(3242), + [anon_sym_RBRACE] = ACTIONS(3337), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -197626,7 +171114,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), + [anon_sym_typename] = ACTIONS(3246), + [anon_sym_template] = ACTIONS(976), [anon_sym_delete] = ACTIONS(121), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), @@ -197635,55 +171124,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [1672] = { - [sym__expression] = STATE(3914), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2981), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2981), - [sym_call_expression] = STATE(2981), - [sym_field_expression] = STATE(2981), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2981), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2981), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3039), - [anon_sym_LPAREN2] = ACTIONS(3041), - [anon_sym_BANG] = ACTIONS(3045), - [anon_sym_TILDE] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(3047), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3049), - [anon_sym_PLUS_PLUS] = ACTIONS(3049), - [anon_sym_sizeof] = ACTIONS(3051), + [1257] = { + [sym_expression_statement] = STATE(3312), + [sym__expression] = STATE(3705), + [sym_comma_expression] = STATE(7049), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_type_requirement] = STATE(1246), + [sym_compound_requirement] = STATE(1246), + [sym__requirement] = STATE(1246), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_requirement_seq_repeat1] = STATE(1246), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3242), + [anon_sym_RBRACE] = ACTIONS(3339), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), [sym_number_literal] = ACTIONS(97), [anon_sym_L_SQUOTE] = ACTIONS(99), [anon_sym_u_SQUOTE] = ACTIONS(99), @@ -197699,64 +171199,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3053), - [anon_sym_co_await] = ACTIONS(3055), - [anon_sym_new] = ACTIONS(3057), + [anon_sym_typename] = ACTIONS(3246), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [1673] = { - [sym__expression] = STATE(3668), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2981), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2981), - [sym_call_expression] = STATE(2981), - [sym_field_expression] = STATE(2981), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2981), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2981), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3039), - [anon_sym_LPAREN2] = ACTIONS(3041), - [anon_sym_BANG] = ACTIONS(3045), - [anon_sym_TILDE] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(3047), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3049), - [anon_sym_PLUS_PLUS] = ACTIONS(3049), - [anon_sym_sizeof] = ACTIONS(3051), + [1258] = { + [sym_expression_statement] = STATE(3312), + [sym__expression] = STATE(3705), + [sym_comma_expression] = STATE(7049), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_type_requirement] = STATE(1251), + [sym_compound_requirement] = STATE(1251), + [sym__requirement] = STATE(1251), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_requirement_seq_repeat1] = STATE(1251), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3242), + [anon_sym_RBRACE] = ACTIONS(3341), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), [sym_number_literal] = ACTIONS(97), [anon_sym_L_SQUOTE] = ACTIONS(99), [anon_sym_u_SQUOTE] = ACTIONS(99), @@ -197772,61 +171284,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3053), - [anon_sym_co_await] = ACTIONS(3055), - [anon_sym_new] = ACTIONS(3057), + [anon_sym_typename] = ACTIONS(3246), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [1674] = { - [sym__expression] = STATE(3775), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), + [1259] = { + [sym_expression_statement] = STATE(3312), + [sym__expression] = STATE(3705), + [sym_comma_expression] = STATE(7049), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_type_requirement] = STATE(1253), + [sym_compound_requirement] = STATE(1253), + [sym__requirement] = STATE(1253), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_requirement_seq_repeat1] = STATE(1253), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3240), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), + [anon_sym_LBRACE] = ACTIONS(3242), + [anon_sym_RBRACE] = ACTIONS(3343), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -197845,7 +171369,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), + [anon_sym_typename] = ACTIONS(3246), + [anon_sym_template] = ACTIONS(976), [anon_sym_delete] = ACTIONS(121), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), @@ -197854,52 +171379,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [1675] = { - [sym__expression] = STATE(3868), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), + [1260] = { + [sym_expression_statement] = STATE(3312), + [sym__expression] = STATE(3705), + [sym_comma_expression] = STATE(7049), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_type_requirement] = STATE(1262), + [sym_compound_requirement] = STATE(1262), + [sym__requirement] = STATE(1262), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_requirement_seq_repeat1] = STATE(1262), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3240), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), + [anon_sym_LBRACE] = ACTIONS(3242), + [anon_sym_RBRACE] = ACTIONS(3345), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), @@ -197918,7 +171454,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), + [anon_sym_typename] = ACTIONS(3246), + [anon_sym_template] = ACTIONS(976), [anon_sym_delete] = ACTIONS(121), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), @@ -197927,55 +171464,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [1676] = { - [sym__expression] = STATE(3676), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2981), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2981), - [sym_call_expression] = STATE(2981), - [sym_field_expression] = STATE(2981), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2981), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2981), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3039), - [anon_sym_LPAREN2] = ACTIONS(3041), - [anon_sym_BANG] = ACTIONS(3045), - [anon_sym_TILDE] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(3047), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3049), - [anon_sym_PLUS_PLUS] = ACTIONS(3049), - [anon_sym_sizeof] = ACTIONS(3051), + [1261] = { + [sym_expression_statement] = STATE(3312), + [sym__expression] = STATE(3705), + [sym_comma_expression] = STATE(7049), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_type_requirement] = STATE(1253), + [sym_compound_requirement] = STATE(1253), + [sym__requirement] = STATE(1253), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_requirement_seq_repeat1] = STATE(1253), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3242), + [anon_sym_RBRACE] = ACTIONS(3347), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), [sym_number_literal] = ACTIONS(97), [anon_sym_L_SQUOTE] = ACTIONS(99), [anon_sym_u_SQUOTE] = ACTIONS(99), @@ -197991,64 +171539,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3053), - [anon_sym_co_await] = ACTIONS(3055), - [anon_sym_new] = ACTIONS(3057), + [anon_sym_typename] = ACTIONS(3246), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [1677] = { - [sym__expression] = STATE(3675), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2981), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2981), - [sym_call_expression] = STATE(2981), - [sym_field_expression] = STATE(2981), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2981), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2981), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3039), - [anon_sym_LPAREN2] = ACTIONS(3041), - [anon_sym_BANG] = ACTIONS(3045), - [anon_sym_TILDE] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(3047), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3049), - [anon_sym_PLUS_PLUS] = ACTIONS(3049), - [anon_sym_sizeof] = ACTIONS(3051), + [1262] = { + [sym_expression_statement] = STATE(3312), + [sym__expression] = STATE(3705), + [sym_comma_expression] = STATE(7049), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_type_requirement] = STATE(1253), + [sym_compound_requirement] = STATE(1253), + [sym__requirement] = STATE(1253), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_requirement_seq_repeat1] = STATE(1253), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3242), + [anon_sym_RBRACE] = ACTIONS(3349), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), [sym_number_literal] = ACTIONS(97), [anon_sym_L_SQUOTE] = ACTIONS(99), [anon_sym_u_SQUOTE] = ACTIONS(99), @@ -198064,64 +171624,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3053), - [anon_sym_co_await] = ACTIONS(3055), - [anon_sym_new] = ACTIONS(3057), + [anon_sym_typename] = ACTIONS(3246), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [1678] = { - [sym__expression] = STATE(3674), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2981), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2981), - [sym_call_expression] = STATE(2981), - [sym_field_expression] = STATE(2981), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2981), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2981), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3039), - [anon_sym_LPAREN2] = ACTIONS(3041), - [anon_sym_BANG] = ACTIONS(3045), - [anon_sym_TILDE] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(3047), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3049), - [anon_sym_PLUS_PLUS] = ACTIONS(3049), - [anon_sym_sizeof] = ACTIONS(3051), + [1263] = { + [sym_expression_statement] = STATE(3312), + [sym__expression] = STATE(3705), + [sym_comma_expression] = STATE(7049), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_type_requirement] = STATE(1248), + [sym_compound_requirement] = STATE(1248), + [sym__requirement] = STATE(1248), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_requirement_seq_repeat1] = STATE(1248), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3242), + [anon_sym_RBRACE] = ACTIONS(3351), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), [sym_number_literal] = ACTIONS(97), [anon_sym_L_SQUOTE] = ACTIONS(99), [anon_sym_u_SQUOTE] = ACTIONS(99), @@ -198137,137 +171709,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3053), - [anon_sym_co_await] = ACTIONS(3055), - [anon_sym_new] = ACTIONS(3057), + [anon_sym_typename] = ACTIONS(3246), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [1679] = { - [sym__expression] = STATE(2738), - [sym_conditional_expression] = STATE(2765), - [sym_assignment_expression] = STATE(2765), - [sym_pointer_expression] = STATE(2827), - [sym_unary_expression] = STATE(2765), - [sym_binary_expression] = STATE(2765), - [sym_update_expression] = STATE(2765), - [sym_cast_expression] = STATE(2765), - [sym_sizeof_expression] = STATE(2765), - [sym_subscript_expression] = STATE(2827), - [sym_call_expression] = STATE(2827), - [sym_field_expression] = STATE(2827), - [sym_compound_literal_expression] = STATE(2765), - [sym_parenthesized_expression] = STATE(2827), - [sym_char_literal] = STATE(2674), - [sym_concatenated_string] = STATE(2674), - [sym_string_literal] = STATE(2093), - [sym__class_name] = STATE(6297), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(2765), - [sym_co_await_expression] = STATE(2765), - [sym_new_expression] = STATE(2765), - [sym_delete_expression] = STATE(2765), - [sym_requires_clause] = STATE(2765), - [sym_requires_expression] = STATE(2765), - [sym_lambda_expression] = STATE(2765), - [sym_lambda_capture_specifier] = STATE(4512), - [sym_fold_expression] = STATE(2765), - [sym_parameter_pack_expansion] = STATE(2765), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4648), - [sym_qualified_identifier] = STATE(2827), - [sym_qualified_type_identifier] = STATE(6297), - [sym_user_defined_literal] = STATE(2765), - [sym_identifier] = ACTIONS(2363), - [anon_sym_LPAREN2] = ACTIONS(1415), - [anon_sym_BANG] = ACTIONS(1417), - [anon_sym_TILDE] = ACTIONS(1417), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_COLON_COLON] = ACTIONS(1423), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(2369), - [anon_sym_DASH_DASH] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [anon_sym_sizeof] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(1439), - [anon_sym_L_SQUOTE] = ACTIONS(1441), - [anon_sym_u_SQUOTE] = ACTIONS(1441), - [anon_sym_U_SQUOTE] = ACTIONS(1441), - [anon_sym_u8_SQUOTE] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1441), - [anon_sym_L_DQUOTE] = ACTIONS(1443), - [anon_sym_u_DQUOTE] = ACTIONS(1443), - [anon_sym_U_DQUOTE] = ACTIONS(1443), - [anon_sym_u8_DQUOTE] = ACTIONS(1443), - [anon_sym_DQUOTE] = ACTIONS(1443), - [sym_true] = ACTIONS(1445), - [sym_false] = ACTIONS(1445), - [sym_null] = ACTIONS(1445), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(1449), - [anon_sym_co_await] = ACTIONS(1451), - [anon_sym_new] = ACTIONS(1453), - [anon_sym_requires] = ACTIONS(1455), - [sym_this] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(1445), - [sym_raw_string_literal] = ACTIONS(1457), - }, - [1680] = { - [sym__expression] = STATE(3840), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), + [1264] = { + [sym__expression] = STATE(3618), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_initializer_list] = STATE(5843), + [sym_initializer_pair] = STATE(5843), + [sym_subscript_designator] = STATE(5464), + [sym_field_designator] = STATE(5464), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_initializer_pair_repeat1] = STATE(5464), + [sym_identifier] = ACTIONS(3007), + [anon_sym_COMMA] = ACTIONS(3353), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_RBRACE] = ACTIONS(3355), + [anon_sym_LBRACK] = ACTIONS(3357), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(193), [sym_number_literal] = ACTIONS(97), [anon_sym_L_SQUOTE] = ACTIONS(99), [anon_sym_u_SQUOTE] = ACTIONS(99), @@ -198283,7 +171794,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), + [anon_sym_template] = ACTIONS(976), [anon_sym_delete] = ACTIONS(121), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), @@ -198292,55 +171803,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [1681] = { - [sym__expression] = STATE(3837), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2828), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2828), - [sym_call_expression] = STATE(2828), - [sym_field_expression] = STATE(2828), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2828), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2828), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LPAREN2] = ACTIONS(960), + [1265] = { + [sym__expression] = STATE(3602), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_initializer_list] = STATE(6118), + [sym_initializer_pair] = STATE(6118), + [sym_subscript_designator] = STATE(5464), + [sym_field_designator] = STATE(5464), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_initializer_pair_repeat1] = STATE(5464), + [sym_identifier] = ACTIONS(3007), + [anon_sym_COMMA] = ACTIONS(3359), + [anon_sym_LPAREN2] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), [anon_sym_COLON_COLON] = ACTIONS(41), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_RBRACE] = ACTIONS(3361), + [anon_sym_LBRACK] = ACTIONS(3357), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(93), [anon_sym_PLUS_PLUS] = ACTIONS(93), [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(193), [sym_number_literal] = ACTIONS(97), [anon_sym_L_SQUOTE] = ACTIONS(99), [anon_sym_u_SQUOTE] = ACTIONS(99), @@ -198356,7 +171878,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), + [anon_sym_template] = ACTIONS(976), [anon_sym_delete] = ACTIONS(121), [anon_sym_co_await] = ACTIONS(137), [anon_sym_new] = ACTIONS(139), @@ -198365,128 +171887,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [1682] = { - [sym__expression] = STATE(2859), - [sym_conditional_expression] = STATE(3000), - [sym_assignment_expression] = STATE(3000), - [sym_pointer_expression] = STATE(3006), - [sym_unary_expression] = STATE(3000), - [sym_binary_expression] = STATE(3000), - [sym_update_expression] = STATE(3000), - [sym_cast_expression] = STATE(3000), - [sym_sizeof_expression] = STATE(3000), - [sym_subscript_expression] = STATE(3006), - [sym_call_expression] = STATE(3006), - [sym_field_expression] = STATE(3006), - [sym_compound_literal_expression] = STATE(3000), - [sym_parenthesized_expression] = STATE(3006), - [sym_char_literal] = STATE(2896), - [sym_concatenated_string] = STATE(2896), - [sym_string_literal] = STATE(2154), - [sym__class_name] = STATE(5849), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3000), - [sym_co_await_expression] = STATE(3000), - [sym_new_expression] = STATE(3000), - [sym_delete_expression] = STATE(3000), - [sym_requires_clause] = STATE(3000), - [sym_requires_expression] = STATE(3000), - [sym_lambda_expression] = STATE(3000), - [sym_lambda_capture_specifier] = STATE(4500), - [sym_fold_expression] = STATE(3000), - [sym_parameter_pack_expansion] = STATE(3000), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4642), - [sym_qualified_identifier] = STATE(3006), - [sym_qualified_type_identifier] = STATE(5849), - [sym_user_defined_literal] = STATE(3000), - [sym_identifier] = ACTIONS(2831), - [anon_sym_LPAREN2] = ACTIONS(2833), - [anon_sym_BANG] = ACTIONS(2837), - [anon_sym_TILDE] = ACTIONS(2837), - [anon_sym_DASH] = ACTIONS(2835), - [anon_sym_PLUS] = ACTIONS(2835), - [anon_sym_STAR] = ACTIONS(2537), - [anon_sym_AMP] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(2841), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(2845), - [anon_sym_DASH_DASH] = ACTIONS(2847), - [anon_sym_PLUS_PLUS] = ACTIONS(2847), - [anon_sym_sizeof] = ACTIONS(2849), - [sym_number_literal] = ACTIONS(2851), - [anon_sym_L_SQUOTE] = ACTIONS(2853), - [anon_sym_u_SQUOTE] = ACTIONS(2853), - [anon_sym_U_SQUOTE] = ACTIONS(2853), - [anon_sym_u8_SQUOTE] = ACTIONS(2853), - [anon_sym_SQUOTE] = ACTIONS(2853), - [anon_sym_L_DQUOTE] = ACTIONS(2855), - [anon_sym_u_DQUOTE] = ACTIONS(2855), - [anon_sym_U_DQUOTE] = ACTIONS(2855), - [anon_sym_u8_DQUOTE] = ACTIONS(2855), - [anon_sym_DQUOTE] = ACTIONS(2855), - [sym_true] = ACTIONS(2857), - [sym_false] = ACTIONS(2857), - [sym_null] = ACTIONS(2857), - [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(2859), - [anon_sym_co_await] = ACTIONS(2861), - [anon_sym_new] = ACTIONS(2863), - [anon_sym_requires] = ACTIONS(2865), - [sym_this] = ACTIONS(2857), - [sym_nullptr] = ACTIONS(2857), - [sym_raw_string_literal] = ACTIONS(2867), - }, - [1683] = { - [sym__expression] = STATE(3672), - [sym_conditional_expression] = STATE(3428), - [sym_assignment_expression] = STATE(3428), - [sym_pointer_expression] = STATE(2981), - [sym_unary_expression] = STATE(3428), - [sym_binary_expression] = STATE(3428), - [sym_update_expression] = STATE(3428), - [sym_cast_expression] = STATE(3428), - [sym_sizeof_expression] = STATE(3428), - [sym_subscript_expression] = STATE(2981), - [sym_call_expression] = STATE(2981), - [sym_field_expression] = STATE(2981), - [sym_compound_literal_expression] = STATE(3428), - [sym_parenthesized_expression] = STATE(2981), - [sym_char_literal] = STATE(3394), - [sym_concatenated_string] = STATE(3394), - [sym_string_literal] = STATE(2768), - [sym__class_name] = STATE(6144), - [sym_template_type] = STATE(2635), - [sym_template_function] = STATE(3428), - [sym_co_await_expression] = STATE(3428), - [sym_new_expression] = STATE(3428), - [sym_delete_expression] = STATE(3428), - [sym_requires_clause] = STATE(3428), - [sym_requires_expression] = STATE(3428), - [sym_lambda_expression] = STATE(3428), - [sym_lambda_capture_specifier] = STATE(4527), - [sym_fold_expression] = STATE(3428), - [sym_parameter_pack_expansion] = STATE(3428), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(4657), - [sym_qualified_identifier] = STATE(2981), - [sym_qualified_type_identifier] = STATE(6144), - [sym_user_defined_literal] = STATE(3428), - [sym_identifier] = ACTIONS(3039), - [anon_sym_LPAREN2] = ACTIONS(3041), - [anon_sym_BANG] = ACTIONS(3045), - [anon_sym_TILDE] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_PLUS] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_COLON_COLON] = ACTIONS(3047), - [anon_sym_LBRACK] = ACTIONS(2272), - [sym_primitive_type] = ACTIONS(1833), - [anon_sym_DASH_DASH] = ACTIONS(3049), - [anon_sym_PLUS_PLUS] = ACTIONS(3049), - [anon_sym_sizeof] = ACTIONS(3051), + [1266] = { + [sym__expression] = STATE(3598), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_initializer_list] = STATE(5910), + [sym_initializer_pair] = STATE(5910), + [sym_subscript_designator] = STATE(5464), + [sym_field_designator] = STATE(5464), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_initializer_pair_repeat1] = STATE(5464), + [sym_identifier] = ACTIONS(3007), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_RBRACE] = ACTIONS(3363), + [anon_sym_LBRACK] = ACTIONS(3357), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(193), [sym_number_literal] = ACTIONS(97), [anon_sym_L_SQUOTE] = ACTIONS(99), [anon_sym_u_SQUOTE] = ACTIONS(99), @@ -198502,2119 +171962,1400 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(103), [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [anon_sym_template] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(3053), - [anon_sym_co_await] = ACTIONS(3055), - [anon_sym_new] = ACTIONS(3057), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), [anon_sym_requires] = ACTIONS(141), [sym_this] = ACTIONS(103), [sym_nullptr] = ACTIONS(103), [sym_raw_string_literal] = ACTIONS(143), }, - [1684] = { - [sym_template_argument_list] = STATE(1861), - [sym_identifier] = ACTIONS(3714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3716), - [anon_sym_COMMA] = ACTIONS(3716), - [anon_sym_LPAREN2] = ACTIONS(3718), - [anon_sym_TILDE] = ACTIONS(3722), - [anon_sym_DASH] = ACTIONS(3724), - [anon_sym_PLUS] = ACTIONS(3724), - [anon_sym_STAR] = ACTIONS(3726), - [anon_sym_SLASH] = ACTIONS(3724), - [anon_sym_PERCENT] = ACTIONS(3724), - [anon_sym_PIPE_PIPE] = ACTIONS(3716), - [anon_sym_AMP_AMP] = ACTIONS(3729), - [anon_sym_PIPE] = ACTIONS(3724), - [anon_sym_CARET] = ACTIONS(3724), - [anon_sym_AMP] = ACTIONS(3726), - [anon_sym_EQ_EQ] = ACTIONS(3716), - [anon_sym_BANG_EQ] = ACTIONS(3716), - [anon_sym_GT] = ACTIONS(3724), - [anon_sym_GT_EQ] = ACTIONS(3716), - [anon_sym_LT_EQ] = ACTIONS(3724), - [anon_sym_LT] = ACTIONS(3732), - [anon_sym_LT_LT] = ACTIONS(3724), - [anon_sym_GT_GT] = ACTIONS(3724), - [anon_sym_SEMI] = ACTIONS(3729), - [anon_sym_extern] = ACTIONS(3714), - [anon_sym___attribute__] = ACTIONS(3714), - [anon_sym_COLON_COLON] = ACTIONS(3735), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3737), - [anon_sym___declspec] = ACTIONS(3714), - [anon_sym___based] = ACTIONS(3714), - [anon_sym_LBRACE] = ACTIONS(3740), - [anon_sym_RBRACE] = ACTIONS(3716), - [anon_sym_LBRACK] = ACTIONS(3742), - [anon_sym_EQ] = ACTIONS(3746), - [anon_sym_static] = ACTIONS(3714), - [anon_sym_register] = ACTIONS(3714), - [anon_sym_inline] = ACTIONS(3714), - [anon_sym_thread_local] = ACTIONS(3714), - [anon_sym_const] = ACTIONS(3714), - [anon_sym_volatile] = ACTIONS(3714), - [anon_sym_restrict] = ACTIONS(3714), - [anon_sym__Atomic] = ACTIONS(3714), - [anon_sym_mutable] = ACTIONS(3714), - [anon_sym_constexpr] = ACTIONS(3714), - [anon_sym_constinit] = ACTIONS(3714), - [anon_sym_consteval] = ACTIONS(3714), - [anon_sym_COLON] = ACTIONS(3748), - [anon_sym_QMARK] = ACTIONS(3716), - [anon_sym_STAR_EQ] = ACTIONS(3750), - [anon_sym_SLASH_EQ] = ACTIONS(3750), - [anon_sym_PERCENT_EQ] = ACTIONS(3750), - [anon_sym_PLUS_EQ] = ACTIONS(3750), - [anon_sym_DASH_EQ] = ACTIONS(3750), - [anon_sym_LT_LT_EQ] = ACTIONS(3750), - [anon_sym_GT_GT_EQ] = ACTIONS(3750), - [anon_sym_AMP_EQ] = ACTIONS(3750), - [anon_sym_CARET_EQ] = ACTIONS(3750), - [anon_sym_PIPE_EQ] = ACTIONS(3750), - [anon_sym_LT_EQ_GT] = ACTIONS(3716), - [anon_sym_DASH_DASH] = ACTIONS(3716), - [anon_sym_PLUS_PLUS] = ACTIONS(3716), - [anon_sym_DOT] = ACTIONS(3724), - [anon_sym_DASH_GT] = ACTIONS(3716), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3714), - [anon_sym_decltype] = ACTIONS(3714), - [anon_sym_virtual] = ACTIONS(3714), - [anon_sym_template] = ACTIONS(3714), - [anon_sym_operator] = ACTIONS(3714), - }, - [1685] = { - [sym_template_argument_list] = STATE(1711), - [sym_identifier] = ACTIONS(3752), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3754), - [anon_sym_COMMA] = ACTIONS(3754), - [anon_sym_RPAREN] = ACTIONS(3754), - [anon_sym_LPAREN2] = ACTIONS(3754), - [anon_sym_TILDE] = ACTIONS(3757), - [anon_sym_DASH] = ACTIONS(3759), - [anon_sym_PLUS] = ACTIONS(3759), - [anon_sym_STAR] = ACTIONS(3761), - [anon_sym_SLASH] = ACTIONS(3759), - [anon_sym_PERCENT] = ACTIONS(3759), - [anon_sym_PIPE_PIPE] = ACTIONS(3764), - [anon_sym_AMP_AMP] = ACTIONS(3754), - [anon_sym_PIPE] = ACTIONS(3759), - [anon_sym_CARET] = ACTIONS(3759), - [anon_sym_AMP] = ACTIONS(3761), - [anon_sym_EQ_EQ] = ACTIONS(3764), - [anon_sym_BANG_EQ] = ACTIONS(3764), - [anon_sym_GT] = ACTIONS(3759), - [anon_sym_GT_EQ] = ACTIONS(3764), - [anon_sym_LT_EQ] = ACTIONS(3759), - [anon_sym_LT] = ACTIONS(3766), - [anon_sym_LT_LT] = ACTIONS(3759), - [anon_sym_GT_GT] = ACTIONS(3759), - [anon_sym_extern] = ACTIONS(3752), - [anon_sym___attribute__] = ACTIONS(3752), - [anon_sym_COLON_COLON] = ACTIONS(3735), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3757), - [anon_sym___declspec] = ACTIONS(3752), - [anon_sym___based] = ACTIONS(3752), - [anon_sym_LBRACE] = ACTIONS(3757), - [anon_sym_LBRACK] = ACTIONS(3761), - [anon_sym_EQ] = ACTIONS(3761), - [anon_sym_static] = ACTIONS(3752), - [anon_sym_register] = ACTIONS(3752), - [anon_sym_inline] = ACTIONS(3752), - [anon_sym_thread_local] = ACTIONS(3752), - [anon_sym_const] = ACTIONS(3752), - [anon_sym_volatile] = ACTIONS(3752), - [anon_sym_restrict] = ACTIONS(3752), - [anon_sym__Atomic] = ACTIONS(3752), - [anon_sym_mutable] = ACTIONS(3752), - [anon_sym_constexpr] = ACTIONS(3752), - [anon_sym_constinit] = ACTIONS(3752), - [anon_sym_consteval] = ACTIONS(3752), - [anon_sym_QMARK] = ACTIONS(3764), - [anon_sym_STAR_EQ] = ACTIONS(3764), - [anon_sym_SLASH_EQ] = ACTIONS(3764), - [anon_sym_PERCENT_EQ] = ACTIONS(3764), - [anon_sym_PLUS_EQ] = ACTIONS(3764), - [anon_sym_DASH_EQ] = ACTIONS(3764), - [anon_sym_LT_LT_EQ] = ACTIONS(3764), - [anon_sym_GT_GT_EQ] = ACTIONS(3764), - [anon_sym_AMP_EQ] = ACTIONS(3764), - [anon_sym_CARET_EQ] = ACTIONS(3764), - [anon_sym_PIPE_EQ] = ACTIONS(3764), - [anon_sym_LT_EQ_GT] = ACTIONS(3764), - [anon_sym_DASH_DASH] = ACTIONS(3764), - [anon_sym_PLUS_PLUS] = ACTIONS(3764), - [anon_sym_DOT] = ACTIONS(3759), - [anon_sym_DASH_GT] = ACTIONS(3759), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3752), - [anon_sym_decltype] = ACTIONS(3752), - [anon_sym_virtual] = ACTIONS(3752), - [anon_sym_template] = ACTIONS(3752), - [anon_sym_operator] = ACTIONS(3752), - [anon_sym_DOT_STAR] = ACTIONS(3764), - [anon_sym_DASH_GT_STAR] = ACTIONS(3764), - }, - [1686] = { - [sym_template_argument_list] = STATE(1711), - [sym_identifier] = ACTIONS(3714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3729), - [anon_sym_COMMA] = ACTIONS(3729), - [anon_sym_RPAREN] = ACTIONS(3729), - [anon_sym_LPAREN2] = ACTIONS(3729), - [anon_sym_TILDE] = ACTIONS(3722), - [anon_sym_DASH] = ACTIONS(3724), - [anon_sym_PLUS] = ACTIONS(3724), - [anon_sym_STAR] = ACTIONS(3726), - [anon_sym_SLASH] = ACTIONS(3724), - [anon_sym_PERCENT] = ACTIONS(3724), - [anon_sym_PIPE_PIPE] = ACTIONS(3716), - [anon_sym_AMP_AMP] = ACTIONS(3729), - [anon_sym_PIPE] = ACTIONS(3724), - [anon_sym_CARET] = ACTIONS(3724), - [anon_sym_AMP] = ACTIONS(3726), - [anon_sym_EQ_EQ] = ACTIONS(3716), - [anon_sym_BANG_EQ] = ACTIONS(3716), - [anon_sym_GT] = ACTIONS(3724), - [anon_sym_GT_EQ] = ACTIONS(3716), - [anon_sym_LT_EQ] = ACTIONS(3724), - [anon_sym_LT] = ACTIONS(3769), - [anon_sym_LT_LT] = ACTIONS(3724), - [anon_sym_GT_GT] = ACTIONS(3724), - [anon_sym_extern] = ACTIONS(3714), - [anon_sym___attribute__] = ACTIONS(3714), - [anon_sym_COLON_COLON] = ACTIONS(3735), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3722), - [anon_sym___declspec] = ACTIONS(3714), - [anon_sym___based] = ACTIONS(3714), - [anon_sym_LBRACE] = ACTIONS(3740), - [anon_sym_LBRACK] = ACTIONS(3726), - [anon_sym_EQ] = ACTIONS(3726), - [anon_sym_static] = ACTIONS(3714), - [anon_sym_register] = ACTIONS(3714), - [anon_sym_inline] = ACTIONS(3714), - [anon_sym_thread_local] = ACTIONS(3714), - [anon_sym_const] = ACTIONS(3714), - [anon_sym_volatile] = ACTIONS(3714), - [anon_sym_restrict] = ACTIONS(3714), - [anon_sym__Atomic] = ACTIONS(3714), - [anon_sym_mutable] = ACTIONS(3714), - [anon_sym_constexpr] = ACTIONS(3714), - [anon_sym_constinit] = ACTIONS(3714), - [anon_sym_consteval] = ACTIONS(3714), - [anon_sym_QMARK] = ACTIONS(3716), - [anon_sym_STAR_EQ] = ACTIONS(3716), - [anon_sym_SLASH_EQ] = ACTIONS(3716), - [anon_sym_PERCENT_EQ] = ACTIONS(3716), - [anon_sym_PLUS_EQ] = ACTIONS(3716), - [anon_sym_DASH_EQ] = ACTIONS(3716), - [anon_sym_LT_LT_EQ] = ACTIONS(3716), - [anon_sym_GT_GT_EQ] = ACTIONS(3716), - [anon_sym_AMP_EQ] = ACTIONS(3716), - [anon_sym_CARET_EQ] = ACTIONS(3716), - [anon_sym_PIPE_EQ] = ACTIONS(3716), - [anon_sym_LT_EQ_GT] = ACTIONS(3716), - [anon_sym_DASH_DASH] = ACTIONS(3716), - [anon_sym_PLUS_PLUS] = ACTIONS(3716), - [anon_sym_DOT] = ACTIONS(3724), - [anon_sym_DASH_GT] = ACTIONS(3724), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3714), - [anon_sym_decltype] = ACTIONS(3714), - [anon_sym_virtual] = ACTIONS(3714), - [anon_sym_template] = ACTIONS(3714), - [anon_sym_operator] = ACTIONS(3714), - [anon_sym_DOT_STAR] = ACTIONS(3716), - [anon_sym_DASH_GT_STAR] = ACTIONS(3716), - }, - [1687] = { - [sym_template_argument_list] = STATE(1815), - [sym_identifier] = ACTIONS(3714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3716), - [anon_sym_COMMA] = ACTIONS(3716), - [anon_sym_RPAREN] = ACTIONS(3716), - [anon_sym_LPAREN2] = ACTIONS(3729), - [anon_sym_TILDE] = ACTIONS(3722), - [anon_sym_DASH] = ACTIONS(3724), - [anon_sym_PLUS] = ACTIONS(3724), - [anon_sym_STAR] = ACTIONS(3726), - [anon_sym_SLASH] = ACTIONS(3724), - [anon_sym_PERCENT] = ACTIONS(3724), - [anon_sym_PIPE_PIPE] = ACTIONS(3716), - [anon_sym_AMP_AMP] = ACTIONS(3729), - [anon_sym_PIPE] = ACTIONS(3724), - [anon_sym_CARET] = ACTIONS(3724), - [anon_sym_AMP] = ACTIONS(3726), - [anon_sym_EQ_EQ] = ACTIONS(3716), - [anon_sym_BANG_EQ] = ACTIONS(3716), - [anon_sym_GT] = ACTIONS(3724), - [anon_sym_GT_EQ] = ACTIONS(3716), - [anon_sym_LT_EQ] = ACTIONS(3724), - [anon_sym_LT] = ACTIONS(3732), - [anon_sym_LT_LT] = ACTIONS(3724), - [anon_sym_GT_GT] = ACTIONS(3724), - [anon_sym_SEMI] = ACTIONS(3716), - [anon_sym_extern] = ACTIONS(3714), - [anon_sym___attribute__] = ACTIONS(3714), - [anon_sym_COLON_COLON] = ACTIONS(3735), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3722), - [anon_sym___declspec] = ACTIONS(3714), - [anon_sym___based] = ACTIONS(3714), - [anon_sym_LBRACE] = ACTIONS(3740), - [anon_sym_LBRACK] = ACTIONS(3726), - [anon_sym_EQ] = ACTIONS(3746), - [anon_sym_static] = ACTIONS(3714), - [anon_sym_register] = ACTIONS(3714), - [anon_sym_inline] = ACTIONS(3714), - [anon_sym_thread_local] = ACTIONS(3714), - [anon_sym_const] = ACTIONS(3714), - [anon_sym_volatile] = ACTIONS(3714), - [anon_sym_restrict] = ACTIONS(3714), - [anon_sym__Atomic] = ACTIONS(3714), - [anon_sym_mutable] = ACTIONS(3714), - [anon_sym_constexpr] = ACTIONS(3714), - [anon_sym_constinit] = ACTIONS(3714), - [anon_sym_consteval] = ACTIONS(3714), - [anon_sym_QMARK] = ACTIONS(3716), - [anon_sym_STAR_EQ] = ACTIONS(3750), - [anon_sym_SLASH_EQ] = ACTIONS(3750), - [anon_sym_PERCENT_EQ] = ACTIONS(3750), - [anon_sym_PLUS_EQ] = ACTIONS(3750), - [anon_sym_DASH_EQ] = ACTIONS(3750), - [anon_sym_LT_LT_EQ] = ACTIONS(3750), - [anon_sym_GT_GT_EQ] = ACTIONS(3750), - [anon_sym_AMP_EQ] = ACTIONS(3750), - [anon_sym_CARET_EQ] = ACTIONS(3750), - [anon_sym_PIPE_EQ] = ACTIONS(3750), - [anon_sym_LT_EQ_GT] = ACTIONS(3716), - [anon_sym_DASH_DASH] = ACTIONS(3716), - [anon_sym_PLUS_PLUS] = ACTIONS(3716), - [anon_sym_DOT] = ACTIONS(3724), - [anon_sym_DASH_GT] = ACTIONS(3716), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3714), - [anon_sym_decltype] = ACTIONS(3714), - [anon_sym_virtual] = ACTIONS(3714), - [anon_sym_template] = ACTIONS(3714), - [anon_sym_operator] = ACTIONS(3714), - }, - [1688] = { - [sym_template_argument_list] = STATE(1815), - [sym_identifier] = ACTIONS(3714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3716), - [anon_sym_COMMA] = ACTIONS(3716), - [anon_sym_LPAREN2] = ACTIONS(3729), - [anon_sym_TILDE] = ACTIONS(3722), - [anon_sym_DASH] = ACTIONS(3724), - [anon_sym_PLUS] = ACTIONS(3724), - [anon_sym_STAR] = ACTIONS(3726), - [anon_sym_SLASH] = ACTIONS(3724), - [anon_sym_PERCENT] = ACTIONS(3724), - [anon_sym_PIPE_PIPE] = ACTIONS(3716), - [anon_sym_AMP_AMP] = ACTIONS(3729), - [anon_sym_PIPE] = ACTIONS(3724), - [anon_sym_CARET] = ACTIONS(3724), - [anon_sym_AMP] = ACTIONS(3726), - [anon_sym_EQ_EQ] = ACTIONS(3716), - [anon_sym_BANG_EQ] = ACTIONS(3716), - [anon_sym_GT] = ACTIONS(3724), - [anon_sym_GT_EQ] = ACTIONS(3716), - [anon_sym_LT_EQ] = ACTIONS(3724), - [anon_sym_LT] = ACTIONS(3732), - [anon_sym_LT_LT] = ACTIONS(3724), - [anon_sym_GT_GT] = ACTIONS(3724), - [anon_sym_SEMI] = ACTIONS(3716), - [anon_sym_extern] = ACTIONS(3714), - [anon_sym___attribute__] = ACTIONS(3714), - [anon_sym_COLON_COLON] = ACTIONS(3735), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3722), - [anon_sym___declspec] = ACTIONS(3714), - [anon_sym___based] = ACTIONS(3714), - [anon_sym_LBRACE] = ACTIONS(3740), - [anon_sym_LBRACK] = ACTIONS(3726), - [anon_sym_EQ] = ACTIONS(3746), - [anon_sym_static] = ACTIONS(3714), - [anon_sym_register] = ACTIONS(3714), - [anon_sym_inline] = ACTIONS(3714), - [anon_sym_thread_local] = ACTIONS(3714), - [anon_sym_const] = ACTIONS(3714), - [anon_sym_volatile] = ACTIONS(3714), - [anon_sym_restrict] = ACTIONS(3714), - [anon_sym__Atomic] = ACTIONS(3714), - [anon_sym_mutable] = ACTIONS(3714), - [anon_sym_constexpr] = ACTIONS(3714), - [anon_sym_constinit] = ACTIONS(3714), - [anon_sym_consteval] = ACTIONS(3714), - [anon_sym_COLON] = ACTIONS(3772), - [anon_sym_QMARK] = ACTIONS(3716), - [anon_sym_STAR_EQ] = ACTIONS(3750), - [anon_sym_SLASH_EQ] = ACTIONS(3750), - [anon_sym_PERCENT_EQ] = ACTIONS(3750), - [anon_sym_PLUS_EQ] = ACTIONS(3750), - [anon_sym_DASH_EQ] = ACTIONS(3750), - [anon_sym_LT_LT_EQ] = ACTIONS(3750), - [anon_sym_GT_GT_EQ] = ACTIONS(3750), - [anon_sym_AMP_EQ] = ACTIONS(3750), - [anon_sym_CARET_EQ] = ACTIONS(3750), - [anon_sym_PIPE_EQ] = ACTIONS(3750), - [anon_sym_LT_EQ_GT] = ACTIONS(3716), - [anon_sym_DASH_DASH] = ACTIONS(3716), - [anon_sym_PLUS_PLUS] = ACTIONS(3716), - [anon_sym_DOT] = ACTIONS(3724), - [anon_sym_DASH_GT] = ACTIONS(3716), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3714), - [anon_sym_decltype] = ACTIONS(3714), - [anon_sym_virtual] = ACTIONS(3714), - [anon_sym_template] = ACTIONS(3714), - [anon_sym_operator] = ACTIONS(3714), - }, - [1689] = { - [sym_identifier] = ACTIONS(3774), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3776), - [anon_sym_COMMA] = ACTIONS(3776), - [anon_sym_RPAREN] = ACTIONS(3776), - [anon_sym_LPAREN2] = ACTIONS(3776), - [anon_sym_TILDE] = ACTIONS(3776), - [anon_sym_DASH] = ACTIONS(3774), - [anon_sym_PLUS] = ACTIONS(3774), - [anon_sym_STAR] = ACTIONS(3774), - [anon_sym_SLASH] = ACTIONS(3774), - [anon_sym_PERCENT] = ACTIONS(3774), - [anon_sym_PIPE_PIPE] = ACTIONS(3776), - [anon_sym_AMP_AMP] = ACTIONS(3776), - [anon_sym_PIPE] = ACTIONS(3774), - [anon_sym_CARET] = ACTIONS(3774), - [anon_sym_AMP] = ACTIONS(3774), - [anon_sym_EQ_EQ] = ACTIONS(3776), - [anon_sym_BANG_EQ] = ACTIONS(3776), - [anon_sym_GT] = ACTIONS(3774), - [anon_sym_GT_EQ] = ACTIONS(3776), - [anon_sym_LT_EQ] = ACTIONS(3774), - [anon_sym_LT] = ACTIONS(3774), - [anon_sym_LT_LT] = ACTIONS(3774), - [anon_sym_GT_GT] = ACTIONS(3774), - [anon_sym_SEMI] = ACTIONS(3776), - [anon_sym_extern] = ACTIONS(3774), - [anon_sym___attribute__] = ACTIONS(3774), - [anon_sym_COLON_COLON] = ACTIONS(3776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3776), - [anon_sym___declspec] = ACTIONS(3774), - [anon_sym___based] = ACTIONS(3774), - [anon_sym_LBRACE] = ACTIONS(3776), - [anon_sym_RBRACE] = ACTIONS(3776), - [anon_sym_LBRACK] = ACTIONS(3774), - [anon_sym_EQ] = ACTIONS(3774), - [anon_sym_static] = ACTIONS(3774), - [anon_sym_register] = ACTIONS(3774), - [anon_sym_inline] = ACTIONS(3774), - [anon_sym_thread_local] = ACTIONS(3774), - [anon_sym_const] = ACTIONS(3774), - [anon_sym_volatile] = ACTIONS(3774), - [anon_sym_restrict] = ACTIONS(3774), - [anon_sym__Atomic] = ACTIONS(3774), - [anon_sym_mutable] = ACTIONS(3774), - [anon_sym_constexpr] = ACTIONS(3774), - [anon_sym_constinit] = ACTIONS(3774), - [anon_sym_consteval] = ACTIONS(3774), - [anon_sym_QMARK] = ACTIONS(3776), - [anon_sym_STAR_EQ] = ACTIONS(3776), - [anon_sym_SLASH_EQ] = ACTIONS(3776), - [anon_sym_PERCENT_EQ] = ACTIONS(3776), - [anon_sym_PLUS_EQ] = ACTIONS(3776), - [anon_sym_DASH_EQ] = ACTIONS(3776), - [anon_sym_LT_LT_EQ] = ACTIONS(3776), - [anon_sym_GT_GT_EQ] = ACTIONS(3776), - [anon_sym_AMP_EQ] = ACTIONS(3776), - [anon_sym_CARET_EQ] = ACTIONS(3776), - [anon_sym_PIPE_EQ] = ACTIONS(3776), - [anon_sym_LT_EQ_GT] = ACTIONS(3776), - [anon_sym_DASH_DASH] = ACTIONS(3776), - [anon_sym_PLUS_PLUS] = ACTIONS(3776), - [anon_sym_DOT] = ACTIONS(3774), - [anon_sym_DASH_GT] = ACTIONS(3776), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3774), - [anon_sym_decltype] = ACTIONS(3774), - [anon_sym_virtual] = ACTIONS(3774), - [anon_sym_template] = ACTIONS(3774), - [anon_sym_operator] = ACTIONS(3774), - }, - [1690] = { - [sym_identifier] = ACTIONS(3778), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3780), - [anon_sym_COMMA] = ACTIONS(3780), - [anon_sym_RPAREN] = ACTIONS(3780), - [anon_sym_LPAREN2] = ACTIONS(3780), - [anon_sym_TILDE] = ACTIONS(3780), - [anon_sym_DASH] = ACTIONS(3778), - [anon_sym_PLUS] = ACTIONS(3778), - [anon_sym_STAR] = ACTIONS(3778), - [anon_sym_SLASH] = ACTIONS(3778), - [anon_sym_PERCENT] = ACTIONS(3778), - [anon_sym_PIPE_PIPE] = ACTIONS(3780), - [anon_sym_AMP_AMP] = ACTIONS(3780), - [anon_sym_PIPE] = ACTIONS(3778), - [anon_sym_CARET] = ACTIONS(3778), - [anon_sym_AMP] = ACTIONS(3778), - [anon_sym_EQ_EQ] = ACTIONS(3780), - [anon_sym_BANG_EQ] = ACTIONS(3780), - [anon_sym_GT] = ACTIONS(3778), - [anon_sym_GT_EQ] = ACTIONS(3780), - [anon_sym_LT_EQ] = ACTIONS(3778), - [anon_sym_LT] = ACTIONS(3778), - [anon_sym_LT_LT] = ACTIONS(3778), - [anon_sym_GT_GT] = ACTIONS(3778), - [anon_sym_SEMI] = ACTIONS(3780), - [anon_sym_extern] = ACTIONS(3778), - [anon_sym___attribute__] = ACTIONS(3778), - [anon_sym_COLON_COLON] = ACTIONS(3780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3780), - [anon_sym___declspec] = ACTIONS(3778), - [anon_sym___based] = ACTIONS(3778), - [anon_sym_LBRACE] = ACTIONS(3780), - [anon_sym_RBRACE] = ACTIONS(3780), - [anon_sym_LBRACK] = ACTIONS(3778), - [anon_sym_EQ] = ACTIONS(3778), - [anon_sym_static] = ACTIONS(3778), - [anon_sym_register] = ACTIONS(3778), - [anon_sym_inline] = ACTIONS(3778), - [anon_sym_thread_local] = ACTIONS(3778), - [anon_sym_const] = ACTIONS(3778), - [anon_sym_volatile] = ACTIONS(3778), - [anon_sym_restrict] = ACTIONS(3778), - [anon_sym__Atomic] = ACTIONS(3778), - [anon_sym_mutable] = ACTIONS(3778), - [anon_sym_constexpr] = ACTIONS(3778), - [anon_sym_constinit] = ACTIONS(3778), - [anon_sym_consteval] = ACTIONS(3778), - [anon_sym_QMARK] = ACTIONS(3780), - [anon_sym_STAR_EQ] = ACTIONS(3780), - [anon_sym_SLASH_EQ] = ACTIONS(3780), - [anon_sym_PERCENT_EQ] = ACTIONS(3780), - [anon_sym_PLUS_EQ] = ACTIONS(3780), - [anon_sym_DASH_EQ] = ACTIONS(3780), - [anon_sym_LT_LT_EQ] = ACTIONS(3780), - [anon_sym_GT_GT_EQ] = ACTIONS(3780), - [anon_sym_AMP_EQ] = ACTIONS(3780), - [anon_sym_CARET_EQ] = ACTIONS(3780), - [anon_sym_PIPE_EQ] = ACTIONS(3780), - [anon_sym_LT_EQ_GT] = ACTIONS(3780), - [anon_sym_DASH_DASH] = ACTIONS(3780), - [anon_sym_PLUS_PLUS] = ACTIONS(3780), - [anon_sym_DOT] = ACTIONS(3778), - [anon_sym_DASH_GT] = ACTIONS(3780), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3778), - [anon_sym_decltype] = ACTIONS(3778), - [anon_sym_virtual] = ACTIONS(3778), - [anon_sym_template] = ACTIONS(3778), - [anon_sym_operator] = ACTIONS(3778), - }, - [1691] = { - [sym_identifier] = ACTIONS(3782), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3784), - [anon_sym_COMMA] = ACTIONS(3784), - [anon_sym_RPAREN] = ACTIONS(3784), - [anon_sym_LPAREN2] = ACTIONS(3784), - [anon_sym_TILDE] = ACTIONS(3784), - [anon_sym_DASH] = ACTIONS(3782), - [anon_sym_PLUS] = ACTIONS(3782), - [anon_sym_STAR] = ACTIONS(3782), - [anon_sym_SLASH] = ACTIONS(3782), - [anon_sym_PERCENT] = ACTIONS(3782), - [anon_sym_PIPE_PIPE] = ACTIONS(3784), - [anon_sym_AMP_AMP] = ACTIONS(3784), - [anon_sym_PIPE] = ACTIONS(3782), - [anon_sym_CARET] = ACTIONS(3782), - [anon_sym_AMP] = ACTIONS(3782), - [anon_sym_EQ_EQ] = ACTIONS(3784), - [anon_sym_BANG_EQ] = ACTIONS(3784), - [anon_sym_GT] = ACTIONS(3782), - [anon_sym_GT_EQ] = ACTIONS(3784), - [anon_sym_LT_EQ] = ACTIONS(3782), - [anon_sym_LT] = ACTIONS(3782), - [anon_sym_LT_LT] = ACTIONS(3782), - [anon_sym_GT_GT] = ACTIONS(3782), - [anon_sym_SEMI] = ACTIONS(3784), - [anon_sym_extern] = ACTIONS(3782), - [anon_sym___attribute__] = ACTIONS(3782), - [anon_sym_COLON_COLON] = ACTIONS(3784), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3784), - [anon_sym___declspec] = ACTIONS(3782), - [anon_sym___based] = ACTIONS(3782), - [anon_sym_LBRACE] = ACTIONS(3784), - [anon_sym_RBRACE] = ACTIONS(3784), - [anon_sym_LBRACK] = ACTIONS(3782), - [anon_sym_EQ] = ACTIONS(3782), - [anon_sym_static] = ACTIONS(3782), - [anon_sym_register] = ACTIONS(3782), - [anon_sym_inline] = ACTIONS(3782), - [anon_sym_thread_local] = ACTIONS(3782), - [anon_sym_const] = ACTIONS(3782), - [anon_sym_volatile] = ACTIONS(3782), - [anon_sym_restrict] = ACTIONS(3782), - [anon_sym__Atomic] = ACTIONS(3782), - [anon_sym_mutable] = ACTIONS(3782), - [anon_sym_constexpr] = ACTIONS(3782), - [anon_sym_constinit] = ACTIONS(3782), - [anon_sym_consteval] = ACTIONS(3782), - [anon_sym_QMARK] = ACTIONS(3784), - [anon_sym_STAR_EQ] = ACTIONS(3784), - [anon_sym_SLASH_EQ] = ACTIONS(3784), - [anon_sym_PERCENT_EQ] = ACTIONS(3784), - [anon_sym_PLUS_EQ] = ACTIONS(3784), - [anon_sym_DASH_EQ] = ACTIONS(3784), - [anon_sym_LT_LT_EQ] = ACTIONS(3784), - [anon_sym_GT_GT_EQ] = ACTIONS(3784), - [anon_sym_AMP_EQ] = ACTIONS(3784), - [anon_sym_CARET_EQ] = ACTIONS(3784), - [anon_sym_PIPE_EQ] = ACTIONS(3784), - [anon_sym_LT_EQ_GT] = ACTIONS(3784), - [anon_sym_DASH_DASH] = ACTIONS(3784), - [anon_sym_PLUS_PLUS] = ACTIONS(3784), - [anon_sym_DOT] = ACTIONS(3782), - [anon_sym_DASH_GT] = ACTIONS(3784), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3782), - [anon_sym_decltype] = ACTIONS(3782), - [anon_sym_virtual] = ACTIONS(3782), - [anon_sym_template] = ACTIONS(3782), - [anon_sym_operator] = ACTIONS(3782), - }, - [1692] = { - [sym_template_argument_list] = STATE(1815), - [sym_identifier] = ACTIONS(3714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3716), - [anon_sym_COMMA] = ACTIONS(3716), - [anon_sym_LPAREN2] = ACTIONS(3729), - [anon_sym_TILDE] = ACTIONS(3722), - [anon_sym_DASH] = ACTIONS(3724), - [anon_sym_PLUS] = ACTIONS(3724), - [anon_sym_STAR] = ACTIONS(3726), - [anon_sym_SLASH] = ACTIONS(3724), - [anon_sym_PERCENT] = ACTIONS(3724), - [anon_sym_PIPE_PIPE] = ACTIONS(3716), - [anon_sym_AMP_AMP] = ACTIONS(3729), - [anon_sym_PIPE] = ACTIONS(3724), - [anon_sym_CARET] = ACTIONS(3724), - [anon_sym_AMP] = ACTIONS(3726), - [anon_sym_EQ_EQ] = ACTIONS(3716), - [anon_sym_BANG_EQ] = ACTIONS(3716), - [anon_sym_GT] = ACTIONS(3724), - [anon_sym_GT_EQ] = ACTIONS(3716), - [anon_sym_LT_EQ] = ACTIONS(3724), - [anon_sym_LT] = ACTIONS(3732), - [anon_sym_LT_LT] = ACTIONS(3724), - [anon_sym_GT_GT] = ACTIONS(3724), - [anon_sym_SEMI] = ACTIONS(3716), - [anon_sym_extern] = ACTIONS(3714), - [anon_sym___attribute__] = ACTIONS(3714), - [anon_sym_COLON_COLON] = ACTIONS(3735), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3722), - [anon_sym___declspec] = ACTIONS(3714), - [anon_sym___based] = ACTIONS(3714), - [anon_sym_LBRACE] = ACTIONS(3740), - [anon_sym_LBRACK] = ACTIONS(3726), - [anon_sym_EQ] = ACTIONS(3746), - [anon_sym_static] = ACTIONS(3714), - [anon_sym_register] = ACTIONS(3714), - [anon_sym_inline] = ACTIONS(3714), - [anon_sym_thread_local] = ACTIONS(3714), - [anon_sym_const] = ACTIONS(3714), - [anon_sym_volatile] = ACTIONS(3714), - [anon_sym_restrict] = ACTIONS(3714), - [anon_sym__Atomic] = ACTIONS(3714), - [anon_sym_mutable] = ACTIONS(3714), - [anon_sym_constexpr] = ACTIONS(3714), - [anon_sym_constinit] = ACTIONS(3714), - [anon_sym_consteval] = ACTIONS(3714), - [anon_sym_COLON] = ACTIONS(3786), - [anon_sym_QMARK] = ACTIONS(3716), - [anon_sym_STAR_EQ] = ACTIONS(3750), - [anon_sym_SLASH_EQ] = ACTIONS(3750), - [anon_sym_PERCENT_EQ] = ACTIONS(3750), - [anon_sym_PLUS_EQ] = ACTIONS(3750), - [anon_sym_DASH_EQ] = ACTIONS(3750), - [anon_sym_LT_LT_EQ] = ACTIONS(3750), - [anon_sym_GT_GT_EQ] = ACTIONS(3750), - [anon_sym_AMP_EQ] = ACTIONS(3750), - [anon_sym_CARET_EQ] = ACTIONS(3750), - [anon_sym_PIPE_EQ] = ACTIONS(3750), - [anon_sym_LT_EQ_GT] = ACTIONS(3716), - [anon_sym_DASH_DASH] = ACTIONS(3716), - [anon_sym_PLUS_PLUS] = ACTIONS(3716), - [anon_sym_DOT] = ACTIONS(3724), - [anon_sym_DASH_GT] = ACTIONS(3716), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3714), - [anon_sym_decltype] = ACTIONS(3714), - [anon_sym_virtual] = ACTIONS(3714), - [anon_sym_template] = ACTIONS(3714), - [anon_sym_operator] = ACTIONS(3714), - }, - [1693] = { - [sym_template_argument_list] = STATE(1717), - [sym_identifier] = ACTIONS(3752), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3764), - [anon_sym_COMMA] = ACTIONS(3764), - [anon_sym_RPAREN] = ACTIONS(3764), - [anon_sym_LPAREN2] = ACTIONS(3754), - [anon_sym_TILDE] = ACTIONS(3757), - [anon_sym_DASH] = ACTIONS(3759), - [anon_sym_PLUS] = ACTIONS(3759), - [anon_sym_STAR] = ACTIONS(3761), - [anon_sym_SLASH] = ACTIONS(3759), - [anon_sym_PERCENT] = ACTIONS(3759), - [anon_sym_PIPE_PIPE] = ACTIONS(3764), - [anon_sym_AMP_AMP] = ACTIONS(3754), - [anon_sym_PIPE] = ACTIONS(3759), - [anon_sym_CARET] = ACTIONS(3759), - [anon_sym_AMP] = ACTIONS(3761), - [anon_sym_EQ_EQ] = ACTIONS(3764), - [anon_sym_BANG_EQ] = ACTIONS(3764), - [anon_sym_GT] = ACTIONS(3759), - [anon_sym_GT_EQ] = ACTIONS(3764), - [anon_sym_LT_EQ] = ACTIONS(3759), - [anon_sym_LT] = ACTIONS(3788), - [anon_sym_LT_LT] = ACTIONS(3759), - [anon_sym_GT_GT] = ACTIONS(3759), - [anon_sym_SEMI] = ACTIONS(3764), - [anon_sym_extern] = ACTIONS(3752), - [anon_sym___attribute__] = ACTIONS(3752), - [anon_sym_COLON_COLON] = ACTIONS(3735), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3757), - [anon_sym___declspec] = ACTIONS(3752), - [anon_sym___based] = ACTIONS(3752), - [anon_sym_LBRACE] = ACTIONS(3757), - [anon_sym_LBRACK] = ACTIONS(3761), - [anon_sym_EQ] = ACTIONS(3759), - [anon_sym_static] = ACTIONS(3752), - [anon_sym_register] = ACTIONS(3752), - [anon_sym_inline] = ACTIONS(3752), - [anon_sym_thread_local] = ACTIONS(3752), - [anon_sym_const] = ACTIONS(3752), - [anon_sym_volatile] = ACTIONS(3752), - [anon_sym_restrict] = ACTIONS(3752), - [anon_sym__Atomic] = ACTIONS(3752), - [anon_sym_mutable] = ACTIONS(3752), - [anon_sym_constexpr] = ACTIONS(3752), - [anon_sym_constinit] = ACTIONS(3752), - [anon_sym_consteval] = ACTIONS(3752), - [anon_sym_QMARK] = ACTIONS(3764), - [anon_sym_STAR_EQ] = ACTIONS(3764), - [anon_sym_SLASH_EQ] = ACTIONS(3764), - [anon_sym_PERCENT_EQ] = ACTIONS(3764), - [anon_sym_PLUS_EQ] = ACTIONS(3764), - [anon_sym_DASH_EQ] = ACTIONS(3764), - [anon_sym_LT_LT_EQ] = ACTIONS(3764), - [anon_sym_GT_GT_EQ] = ACTIONS(3764), - [anon_sym_AMP_EQ] = ACTIONS(3764), - [anon_sym_CARET_EQ] = ACTIONS(3764), - [anon_sym_PIPE_EQ] = ACTIONS(3764), - [anon_sym_LT_EQ_GT] = ACTIONS(3764), - [anon_sym_DASH_DASH] = ACTIONS(3764), - [anon_sym_PLUS_PLUS] = ACTIONS(3764), - [anon_sym_DOT] = ACTIONS(3759), - [anon_sym_DASH_GT] = ACTIONS(3764), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3752), - [anon_sym_decltype] = ACTIONS(3752), - [anon_sym_virtual] = ACTIONS(3752), - [anon_sym_template] = ACTIONS(3752), - [anon_sym_operator] = ACTIONS(3752), - }, - [1694] = { - [sym_template_argument_list] = STATE(1815), - [sym_identifier] = ACTIONS(3714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3716), - [anon_sym_COMMA] = ACTIONS(3716), - [anon_sym_LPAREN2] = ACTIONS(3729), - [anon_sym_TILDE] = ACTIONS(3722), - [anon_sym_DASH] = ACTIONS(3724), - [anon_sym_PLUS] = ACTIONS(3724), - [anon_sym_STAR] = ACTIONS(3726), - [anon_sym_SLASH] = ACTIONS(3724), - [anon_sym_PERCENT] = ACTIONS(3724), - [anon_sym_PIPE_PIPE] = ACTIONS(3716), - [anon_sym_AMP_AMP] = ACTIONS(3729), - [anon_sym_PIPE] = ACTIONS(3724), - [anon_sym_CARET] = ACTIONS(3724), - [anon_sym_AMP] = ACTIONS(3726), - [anon_sym_EQ_EQ] = ACTIONS(3716), - [anon_sym_BANG_EQ] = ACTIONS(3716), - [anon_sym_GT] = ACTIONS(3724), - [anon_sym_GT_EQ] = ACTIONS(3716), - [anon_sym_LT_EQ] = ACTIONS(3724), - [anon_sym_LT] = ACTIONS(3732), - [anon_sym_LT_LT] = ACTIONS(3724), - [anon_sym_GT_GT] = ACTIONS(3724), - [anon_sym_SEMI] = ACTIONS(3716), - [anon_sym_extern] = ACTIONS(3714), - [anon_sym___attribute__] = ACTIONS(3714), - [anon_sym_COLON_COLON] = ACTIONS(3735), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3722), - [anon_sym___declspec] = ACTIONS(3714), - [anon_sym___based] = ACTIONS(3714), - [anon_sym_LBRACE] = ACTIONS(3740), - [anon_sym_LBRACK] = ACTIONS(3726), - [anon_sym_EQ] = ACTIONS(3746), - [anon_sym_static] = ACTIONS(3714), - [anon_sym_register] = ACTIONS(3714), - [anon_sym_inline] = ACTIONS(3714), - [anon_sym_thread_local] = ACTIONS(3714), - [anon_sym_const] = ACTIONS(3714), - [anon_sym_volatile] = ACTIONS(3714), - [anon_sym_restrict] = ACTIONS(3714), - [anon_sym__Atomic] = ACTIONS(3714), - [anon_sym_mutable] = ACTIONS(3714), - [anon_sym_constexpr] = ACTIONS(3714), - [anon_sym_constinit] = ACTIONS(3714), - [anon_sym_consteval] = ACTIONS(3714), - [anon_sym_COLON] = ACTIONS(3791), - [anon_sym_QMARK] = ACTIONS(3716), - [anon_sym_STAR_EQ] = ACTIONS(3750), - [anon_sym_SLASH_EQ] = ACTIONS(3750), - [anon_sym_PERCENT_EQ] = ACTIONS(3750), - [anon_sym_PLUS_EQ] = ACTIONS(3750), - [anon_sym_DASH_EQ] = ACTIONS(3750), - [anon_sym_LT_LT_EQ] = ACTIONS(3750), - [anon_sym_GT_GT_EQ] = ACTIONS(3750), - [anon_sym_AMP_EQ] = ACTIONS(3750), - [anon_sym_CARET_EQ] = ACTIONS(3750), - [anon_sym_PIPE_EQ] = ACTIONS(3750), - [anon_sym_LT_EQ_GT] = ACTIONS(3716), - [anon_sym_DASH_DASH] = ACTIONS(3716), - [anon_sym_PLUS_PLUS] = ACTIONS(3716), - [anon_sym_DOT] = ACTIONS(3724), - [anon_sym_DASH_GT] = ACTIONS(3716), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3714), - [anon_sym_decltype] = ACTIONS(3714), - [anon_sym_virtual] = ACTIONS(3714), - [anon_sym_template] = ACTIONS(3714), - [anon_sym_operator] = ACTIONS(3714), - }, - [1695] = { - [sym_identifier] = ACTIONS(3793), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3795), - [anon_sym_COMMA] = ACTIONS(3795), - [anon_sym_RPAREN] = ACTIONS(3795), - [anon_sym_LPAREN2] = ACTIONS(3795), - [anon_sym_TILDE] = ACTIONS(3795), - [anon_sym_DASH] = ACTIONS(3793), - [anon_sym_PLUS] = ACTIONS(3793), - [anon_sym_STAR] = ACTIONS(3793), - [anon_sym_SLASH] = ACTIONS(3793), - [anon_sym_PERCENT] = ACTIONS(3793), - [anon_sym_PIPE_PIPE] = ACTIONS(3795), - [anon_sym_AMP_AMP] = ACTIONS(3795), - [anon_sym_PIPE] = ACTIONS(3793), - [anon_sym_CARET] = ACTIONS(3793), - [anon_sym_AMP] = ACTIONS(3793), - [anon_sym_EQ_EQ] = ACTIONS(3795), - [anon_sym_BANG_EQ] = ACTIONS(3795), - [anon_sym_GT] = ACTIONS(3793), - [anon_sym_GT_EQ] = ACTIONS(3795), - [anon_sym_LT_EQ] = ACTIONS(3793), - [anon_sym_LT] = ACTIONS(3793), - [anon_sym_LT_LT] = ACTIONS(3793), - [anon_sym_GT_GT] = ACTIONS(3793), - [anon_sym_SEMI] = ACTIONS(3795), - [anon_sym_extern] = ACTIONS(3793), - [anon_sym___attribute__] = ACTIONS(3793), - [anon_sym_COLON_COLON] = ACTIONS(3795), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3795), - [anon_sym___declspec] = ACTIONS(3793), - [anon_sym___based] = ACTIONS(3793), - [anon_sym_LBRACE] = ACTIONS(3795), - [anon_sym_RBRACE] = ACTIONS(3795), - [anon_sym_LBRACK] = ACTIONS(3793), - [anon_sym_EQ] = ACTIONS(3793), - [anon_sym_static] = ACTIONS(3793), - [anon_sym_register] = ACTIONS(3793), - [anon_sym_inline] = ACTIONS(3793), - [anon_sym_thread_local] = ACTIONS(3793), - [anon_sym_const] = ACTIONS(3793), - [anon_sym_volatile] = ACTIONS(3793), - [anon_sym_restrict] = ACTIONS(3793), - [anon_sym__Atomic] = ACTIONS(3793), - [anon_sym_mutable] = ACTIONS(3793), - [anon_sym_constexpr] = ACTIONS(3793), - [anon_sym_constinit] = ACTIONS(3793), - [anon_sym_consteval] = ACTIONS(3793), - [anon_sym_QMARK] = ACTIONS(3795), - [anon_sym_STAR_EQ] = ACTIONS(3795), - [anon_sym_SLASH_EQ] = ACTIONS(3795), - [anon_sym_PERCENT_EQ] = ACTIONS(3795), - [anon_sym_PLUS_EQ] = ACTIONS(3795), - [anon_sym_DASH_EQ] = ACTIONS(3795), - [anon_sym_LT_LT_EQ] = ACTIONS(3795), - [anon_sym_GT_GT_EQ] = ACTIONS(3795), - [anon_sym_AMP_EQ] = ACTIONS(3795), - [anon_sym_CARET_EQ] = ACTIONS(3795), - [anon_sym_PIPE_EQ] = ACTIONS(3795), - [anon_sym_LT_EQ_GT] = ACTIONS(3795), - [anon_sym_DASH_DASH] = ACTIONS(3795), - [anon_sym_PLUS_PLUS] = ACTIONS(3795), - [anon_sym_DOT] = ACTIONS(3793), - [anon_sym_DASH_GT] = ACTIONS(3795), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3793), - [anon_sym_decltype] = ACTIONS(3793), - [anon_sym_virtual] = ACTIONS(3793), - [anon_sym_template] = ACTIONS(3793), - [anon_sym_operator] = ACTIONS(3793), - }, - [1696] = { - [sym_template_argument_list] = STATE(1861), - [sym_identifier] = ACTIONS(3714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3716), - [anon_sym_COMMA] = ACTIONS(3716), - [anon_sym_LPAREN2] = ACTIONS(3718), - [anon_sym_TILDE] = ACTIONS(3722), - [anon_sym_DASH] = ACTIONS(3724), - [anon_sym_PLUS] = ACTIONS(3724), - [anon_sym_STAR] = ACTIONS(3726), - [anon_sym_SLASH] = ACTIONS(3724), - [anon_sym_PERCENT] = ACTIONS(3724), - [anon_sym_PIPE_PIPE] = ACTIONS(3716), - [anon_sym_AMP_AMP] = ACTIONS(3729), - [anon_sym_PIPE] = ACTIONS(3724), - [anon_sym_CARET] = ACTIONS(3724), - [anon_sym_AMP] = ACTIONS(3726), - [anon_sym_EQ_EQ] = ACTIONS(3716), - [anon_sym_BANG_EQ] = ACTIONS(3716), - [anon_sym_GT] = ACTIONS(3724), - [anon_sym_GT_EQ] = ACTIONS(3716), - [anon_sym_LT_EQ] = ACTIONS(3724), - [anon_sym_LT] = ACTIONS(3732), - [anon_sym_LT_LT] = ACTIONS(3724), - [anon_sym_GT_GT] = ACTIONS(3724), - [anon_sym_SEMI] = ACTIONS(3729), - [anon_sym_extern] = ACTIONS(3714), - [anon_sym___attribute__] = ACTIONS(3714), - [anon_sym_COLON_COLON] = ACTIONS(3735), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3737), - [anon_sym___declspec] = ACTIONS(3714), - [anon_sym___based] = ACTIONS(3714), - [anon_sym_LBRACE] = ACTIONS(3740), - [anon_sym_LBRACK] = ACTIONS(3742), - [anon_sym_EQ] = ACTIONS(3746), - [anon_sym_static] = ACTIONS(3714), - [anon_sym_register] = ACTIONS(3714), - [anon_sym_inline] = ACTIONS(3714), - [anon_sym_thread_local] = ACTIONS(3714), - [anon_sym_const] = ACTIONS(3714), - [anon_sym_volatile] = ACTIONS(3714), - [anon_sym_restrict] = ACTIONS(3714), - [anon_sym__Atomic] = ACTIONS(3714), - [anon_sym_mutable] = ACTIONS(3714), - [anon_sym_constexpr] = ACTIONS(3714), - [anon_sym_constinit] = ACTIONS(3714), - [anon_sym_consteval] = ACTIONS(3714), - [anon_sym_COLON] = ACTIONS(3772), - [anon_sym_QMARK] = ACTIONS(3716), - [anon_sym_STAR_EQ] = ACTIONS(3750), - [anon_sym_SLASH_EQ] = ACTIONS(3750), - [anon_sym_PERCENT_EQ] = ACTIONS(3750), - [anon_sym_PLUS_EQ] = ACTIONS(3750), - [anon_sym_DASH_EQ] = ACTIONS(3750), - [anon_sym_LT_LT_EQ] = ACTIONS(3750), - [anon_sym_GT_GT_EQ] = ACTIONS(3750), - [anon_sym_AMP_EQ] = ACTIONS(3750), - [anon_sym_CARET_EQ] = ACTIONS(3750), - [anon_sym_PIPE_EQ] = ACTIONS(3750), - [anon_sym_LT_EQ_GT] = ACTIONS(3716), - [anon_sym_DASH_DASH] = ACTIONS(3716), - [anon_sym_PLUS_PLUS] = ACTIONS(3716), - [anon_sym_DOT] = ACTIONS(3724), - [anon_sym_DASH_GT] = ACTIONS(3716), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3714), - [anon_sym_decltype] = ACTIONS(3714), - [anon_sym_virtual] = ACTIONS(3714), - [anon_sym_template] = ACTIONS(3714), - [anon_sym_operator] = ACTIONS(3714), - }, - [1697] = { - [sym_identifier] = ACTIONS(3774), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3776), - [anon_sym_COMMA] = ACTIONS(3776), - [anon_sym_RPAREN] = ACTIONS(3776), - [anon_sym_LPAREN2] = ACTIONS(3776), - [anon_sym_TILDE] = ACTIONS(3776), - [anon_sym_DASH] = ACTIONS(3774), - [anon_sym_PLUS] = ACTIONS(3774), - [anon_sym_STAR] = ACTIONS(3774), - [anon_sym_SLASH] = ACTIONS(3774), - [anon_sym_PERCENT] = ACTIONS(3774), - [anon_sym_PIPE_PIPE] = ACTIONS(3776), - [anon_sym_AMP_AMP] = ACTIONS(3776), - [anon_sym_PIPE] = ACTIONS(3774), - [anon_sym_CARET] = ACTIONS(3774), - [anon_sym_AMP] = ACTIONS(3774), - [anon_sym_EQ_EQ] = ACTIONS(3776), - [anon_sym_BANG_EQ] = ACTIONS(3776), - [anon_sym_GT] = ACTIONS(3774), - [anon_sym_GT_EQ] = ACTIONS(3776), - [anon_sym_LT_EQ] = ACTIONS(3774), - [anon_sym_LT] = ACTIONS(3774), - [anon_sym_LT_LT] = ACTIONS(3774), - [anon_sym_GT_GT] = ACTIONS(3774), - [anon_sym_extern] = ACTIONS(3774), - [anon_sym___attribute__] = ACTIONS(3774), - [anon_sym_COLON_COLON] = ACTIONS(3776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3776), - [anon_sym___declspec] = ACTIONS(3774), - [anon_sym___based] = ACTIONS(3774), - [anon_sym_LBRACE] = ACTIONS(3776), - [anon_sym_LBRACK] = ACTIONS(3774), - [anon_sym_EQ] = ACTIONS(3774), - [anon_sym_static] = ACTIONS(3774), - [anon_sym_register] = ACTIONS(3774), - [anon_sym_inline] = ACTIONS(3774), - [anon_sym_thread_local] = ACTIONS(3774), - [anon_sym_const] = ACTIONS(3774), - [anon_sym_volatile] = ACTIONS(3774), - [anon_sym_restrict] = ACTIONS(3774), - [anon_sym__Atomic] = ACTIONS(3774), - [anon_sym_mutable] = ACTIONS(3774), - [anon_sym_constexpr] = ACTIONS(3774), - [anon_sym_constinit] = ACTIONS(3774), - [anon_sym_consteval] = ACTIONS(3774), - [anon_sym_QMARK] = ACTIONS(3776), - [anon_sym_STAR_EQ] = ACTIONS(3776), - [anon_sym_SLASH_EQ] = ACTIONS(3776), - [anon_sym_PERCENT_EQ] = ACTIONS(3776), - [anon_sym_PLUS_EQ] = ACTIONS(3776), - [anon_sym_DASH_EQ] = ACTIONS(3776), - [anon_sym_LT_LT_EQ] = ACTIONS(3776), - [anon_sym_GT_GT_EQ] = ACTIONS(3776), - [anon_sym_AMP_EQ] = ACTIONS(3776), - [anon_sym_CARET_EQ] = ACTIONS(3776), - [anon_sym_PIPE_EQ] = ACTIONS(3776), - [anon_sym_LT_EQ_GT] = ACTIONS(3776), - [anon_sym_DASH_DASH] = ACTIONS(3776), - [anon_sym_PLUS_PLUS] = ACTIONS(3776), - [anon_sym_DOT] = ACTIONS(3774), - [anon_sym_DASH_GT] = ACTIONS(3774), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3774), - [anon_sym_decltype] = ACTIONS(3774), - [anon_sym_virtual] = ACTIONS(3774), - [anon_sym_template] = ACTIONS(3774), - [anon_sym_operator] = ACTIONS(3774), - [anon_sym_DOT_STAR] = ACTIONS(3776), - [anon_sym_DASH_GT_STAR] = ACTIONS(3776), + [1267] = { + [sym__expression] = STATE(3601), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_initializer_list] = STATE(5903), + [sym_initializer_pair] = STATE(5903), + [sym_subscript_designator] = STATE(5464), + [sym_field_designator] = STATE(5464), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_initializer_pair_repeat1] = STATE(5464), + [sym_identifier] = ACTIONS(3007), + [anon_sym_COMMA] = ACTIONS(3365), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_RBRACE] = ACTIONS(3367), + [anon_sym_LBRACK] = ACTIONS(3357), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(193), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), }, - [1698] = { - [sym_template_argument_list] = STATE(1861), - [sym_identifier] = ACTIONS(3714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3716), - [anon_sym_COMMA] = ACTIONS(3716), - [anon_sym_LPAREN2] = ACTIONS(3718), - [anon_sym_TILDE] = ACTIONS(3722), - [anon_sym_DASH] = ACTIONS(3724), - [anon_sym_PLUS] = ACTIONS(3724), - [anon_sym_STAR] = ACTIONS(3726), - [anon_sym_SLASH] = ACTIONS(3724), - [anon_sym_PERCENT] = ACTIONS(3724), - [anon_sym_PIPE_PIPE] = ACTIONS(3716), - [anon_sym_AMP_AMP] = ACTIONS(3729), - [anon_sym_PIPE] = ACTIONS(3724), - [anon_sym_CARET] = ACTIONS(3724), - [anon_sym_AMP] = ACTIONS(3726), - [anon_sym_EQ_EQ] = ACTIONS(3716), - [anon_sym_BANG_EQ] = ACTIONS(3716), - [anon_sym_GT] = ACTIONS(3724), - [anon_sym_GT_EQ] = ACTIONS(3716), - [anon_sym_LT_EQ] = ACTIONS(3724), - [anon_sym_LT] = ACTIONS(3732), - [anon_sym_LT_LT] = ACTIONS(3724), - [anon_sym_GT_GT] = ACTIONS(3724), - [anon_sym_SEMI] = ACTIONS(3729), - [anon_sym_extern] = ACTIONS(3714), - [anon_sym___attribute__] = ACTIONS(3714), - [anon_sym_COLON_COLON] = ACTIONS(3735), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3737), - [anon_sym___declspec] = ACTIONS(3714), - [anon_sym___based] = ACTIONS(3714), - [anon_sym_LBRACE] = ACTIONS(3740), - [anon_sym_LBRACK] = ACTIONS(3742), - [anon_sym_EQ] = ACTIONS(3746), - [anon_sym_static] = ACTIONS(3714), - [anon_sym_register] = ACTIONS(3714), - [anon_sym_inline] = ACTIONS(3714), - [anon_sym_thread_local] = ACTIONS(3714), - [anon_sym_const] = ACTIONS(3714), - [anon_sym_volatile] = ACTIONS(3714), - [anon_sym_restrict] = ACTIONS(3714), - [anon_sym__Atomic] = ACTIONS(3714), - [anon_sym_mutable] = ACTIONS(3714), - [anon_sym_constexpr] = ACTIONS(3714), - [anon_sym_constinit] = ACTIONS(3714), - [anon_sym_consteval] = ACTIONS(3714), - [anon_sym_COLON] = ACTIONS(3786), - [anon_sym_QMARK] = ACTIONS(3716), - [anon_sym_STAR_EQ] = ACTIONS(3750), - [anon_sym_SLASH_EQ] = ACTIONS(3750), - [anon_sym_PERCENT_EQ] = ACTIONS(3750), - [anon_sym_PLUS_EQ] = ACTIONS(3750), - [anon_sym_DASH_EQ] = ACTIONS(3750), - [anon_sym_LT_LT_EQ] = ACTIONS(3750), - [anon_sym_GT_GT_EQ] = ACTIONS(3750), - [anon_sym_AMP_EQ] = ACTIONS(3750), - [anon_sym_CARET_EQ] = ACTIONS(3750), - [anon_sym_PIPE_EQ] = ACTIONS(3750), - [anon_sym_LT_EQ_GT] = ACTIONS(3716), - [anon_sym_DASH_DASH] = ACTIONS(3716), - [anon_sym_PLUS_PLUS] = ACTIONS(3716), - [anon_sym_DOT] = ACTIONS(3724), - [anon_sym_DASH_GT] = ACTIONS(3716), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3714), - [anon_sym_decltype] = ACTIONS(3714), - [anon_sym_virtual] = ACTIONS(3714), - [anon_sym_template] = ACTIONS(3714), - [anon_sym_operator] = ACTIONS(3714), + [1268] = { + [sym__expression] = STATE(3597), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_initializer_list] = STATE(5899), + [sym_initializer_pair] = STATE(5899), + [sym_subscript_designator] = STATE(5464), + [sym_field_designator] = STATE(5464), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_initializer_pair_repeat1] = STATE(5464), + [sym_identifier] = ACTIONS(3007), + [anon_sym_COMMA] = ACTIONS(3369), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_RBRACE] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(3357), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(193), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), }, - [1699] = { - [sym_identifier] = ACTIONS(3793), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3795), - [anon_sym_COMMA] = ACTIONS(3795), - [anon_sym_RPAREN] = ACTIONS(3795), - [anon_sym_LPAREN2] = ACTIONS(3795), - [anon_sym_TILDE] = ACTIONS(3795), - [anon_sym_DASH] = ACTIONS(3793), - [anon_sym_PLUS] = ACTIONS(3793), - [anon_sym_STAR] = ACTIONS(3793), - [anon_sym_SLASH] = ACTIONS(3793), - [anon_sym_PERCENT] = ACTIONS(3793), - [anon_sym_PIPE_PIPE] = ACTIONS(3795), - [anon_sym_AMP_AMP] = ACTIONS(3795), - [anon_sym_PIPE] = ACTIONS(3793), - [anon_sym_CARET] = ACTIONS(3793), - [anon_sym_AMP] = ACTIONS(3793), - [anon_sym_EQ_EQ] = ACTIONS(3795), - [anon_sym_BANG_EQ] = ACTIONS(3795), - [anon_sym_GT] = ACTIONS(3793), - [anon_sym_GT_EQ] = ACTIONS(3795), - [anon_sym_LT_EQ] = ACTIONS(3793), - [anon_sym_LT] = ACTIONS(3793), - [anon_sym_LT_LT] = ACTIONS(3793), - [anon_sym_GT_GT] = ACTIONS(3793), - [anon_sym_extern] = ACTIONS(3793), - [anon_sym___attribute__] = ACTIONS(3793), - [anon_sym_COLON_COLON] = ACTIONS(3795), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3795), - [anon_sym___declspec] = ACTIONS(3793), - [anon_sym___based] = ACTIONS(3793), - [anon_sym_LBRACE] = ACTIONS(3795), - [anon_sym_LBRACK] = ACTIONS(3793), - [anon_sym_EQ] = ACTIONS(3793), - [anon_sym_static] = ACTIONS(3793), - [anon_sym_register] = ACTIONS(3793), - [anon_sym_inline] = ACTIONS(3793), - [anon_sym_thread_local] = ACTIONS(3793), - [anon_sym_const] = ACTIONS(3793), - [anon_sym_volatile] = ACTIONS(3793), - [anon_sym_restrict] = ACTIONS(3793), - [anon_sym__Atomic] = ACTIONS(3793), - [anon_sym_mutable] = ACTIONS(3793), - [anon_sym_constexpr] = ACTIONS(3793), - [anon_sym_constinit] = ACTIONS(3793), - [anon_sym_consteval] = ACTIONS(3793), - [anon_sym_QMARK] = ACTIONS(3795), - [anon_sym_STAR_EQ] = ACTIONS(3795), - [anon_sym_SLASH_EQ] = ACTIONS(3795), - [anon_sym_PERCENT_EQ] = ACTIONS(3795), - [anon_sym_PLUS_EQ] = ACTIONS(3795), - [anon_sym_DASH_EQ] = ACTIONS(3795), - [anon_sym_LT_LT_EQ] = ACTIONS(3795), - [anon_sym_GT_GT_EQ] = ACTIONS(3795), - [anon_sym_AMP_EQ] = ACTIONS(3795), - [anon_sym_CARET_EQ] = ACTIONS(3795), - [anon_sym_PIPE_EQ] = ACTIONS(3795), - [anon_sym_LT_EQ_GT] = ACTIONS(3795), - [anon_sym_DASH_DASH] = ACTIONS(3795), - [anon_sym_PLUS_PLUS] = ACTIONS(3795), - [anon_sym_DOT] = ACTIONS(3793), - [anon_sym_DASH_GT] = ACTIONS(3793), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3793), - [anon_sym_decltype] = ACTIONS(3793), - [anon_sym_virtual] = ACTIONS(3793), - [anon_sym_template] = ACTIONS(3793), - [anon_sym_operator] = ACTIONS(3793), - [anon_sym_DOT_STAR] = ACTIONS(3795), - [anon_sym_DASH_GT_STAR] = ACTIONS(3795), + [1269] = { + [sym__expression] = STATE(3612), + [sym_comma_expression] = STATE(6442), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_initializer_list] = STATE(6597), + [sym_initializer_pair] = STATE(6597), + [sym_subscript_designator] = STATE(5464), + [sym_field_designator] = STATE(5464), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_initializer_pair_repeat1] = STATE(5464), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_RBRACE] = ACTIONS(3373), + [anon_sym_LBRACK] = ACTIONS(3357), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(193), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), }, - [1700] = { - [sym_template_argument_list] = STATE(1715), - [sym_identifier] = ACTIONS(3752), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3764), - [anon_sym_COMMA] = ACTIONS(3764), - [anon_sym_LPAREN2] = ACTIONS(3754), - [anon_sym_TILDE] = ACTIONS(3757), - [anon_sym_DASH] = ACTIONS(3759), - [anon_sym_PLUS] = ACTIONS(3759), - [anon_sym_STAR] = ACTIONS(3761), - [anon_sym_SLASH] = ACTIONS(3759), - [anon_sym_PERCENT] = ACTIONS(3759), - [anon_sym_PIPE_PIPE] = ACTIONS(3764), - [anon_sym_AMP_AMP] = ACTIONS(3754), - [anon_sym_PIPE] = ACTIONS(3759), - [anon_sym_CARET] = ACTIONS(3759), - [anon_sym_AMP] = ACTIONS(3761), - [anon_sym_EQ_EQ] = ACTIONS(3764), - [anon_sym_BANG_EQ] = ACTIONS(3764), - [anon_sym_GT] = ACTIONS(3759), - [anon_sym_GT_EQ] = ACTIONS(3764), - [anon_sym_LT_EQ] = ACTIONS(3759), - [anon_sym_LT] = ACTIONS(3788), - [anon_sym_LT_LT] = ACTIONS(3759), - [anon_sym_GT_GT] = ACTIONS(3759), - [anon_sym_SEMI] = ACTIONS(3754), - [anon_sym_extern] = ACTIONS(3752), - [anon_sym___attribute__] = ACTIONS(3752), - [anon_sym_COLON_COLON] = ACTIONS(3735), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3754), - [anon_sym___declspec] = ACTIONS(3752), - [anon_sym___based] = ACTIONS(3752), - [anon_sym_LBRACE] = ACTIONS(3757), - [anon_sym_RBRACE] = ACTIONS(3764), - [anon_sym_LBRACK] = ACTIONS(3761), - [anon_sym_EQ] = ACTIONS(3759), - [anon_sym_static] = ACTIONS(3752), - [anon_sym_register] = ACTIONS(3752), - [anon_sym_inline] = ACTIONS(3752), - [anon_sym_thread_local] = ACTIONS(3752), - [anon_sym_const] = ACTIONS(3752), - [anon_sym_volatile] = ACTIONS(3752), - [anon_sym_restrict] = ACTIONS(3752), - [anon_sym__Atomic] = ACTIONS(3752), - [anon_sym_mutable] = ACTIONS(3752), - [anon_sym_constexpr] = ACTIONS(3752), - [anon_sym_constinit] = ACTIONS(3752), - [anon_sym_consteval] = ACTIONS(3752), - [anon_sym_QMARK] = ACTIONS(3764), - [anon_sym_STAR_EQ] = ACTIONS(3764), - [anon_sym_SLASH_EQ] = ACTIONS(3764), - [anon_sym_PERCENT_EQ] = ACTIONS(3764), - [anon_sym_PLUS_EQ] = ACTIONS(3764), - [anon_sym_DASH_EQ] = ACTIONS(3764), - [anon_sym_LT_LT_EQ] = ACTIONS(3764), - [anon_sym_GT_GT_EQ] = ACTIONS(3764), - [anon_sym_AMP_EQ] = ACTIONS(3764), - [anon_sym_CARET_EQ] = ACTIONS(3764), - [anon_sym_PIPE_EQ] = ACTIONS(3764), - [anon_sym_LT_EQ_GT] = ACTIONS(3764), - [anon_sym_DASH_DASH] = ACTIONS(3764), - [anon_sym_PLUS_PLUS] = ACTIONS(3764), - [anon_sym_DOT] = ACTIONS(3759), - [anon_sym_DASH_GT] = ACTIONS(3764), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3752), - [anon_sym_decltype] = ACTIONS(3752), - [anon_sym_virtual] = ACTIONS(3752), - [anon_sym_template] = ACTIONS(3752), - [anon_sym_operator] = ACTIONS(3752), + [1270] = { + [sym__expression] = STATE(3615), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_initializer_list] = STATE(6014), + [sym_initializer_pair] = STATE(6014), + [sym_subscript_designator] = STATE(5464), + [sym_field_designator] = STATE(5464), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_initializer_pair_repeat1] = STATE(5464), + [sym_identifier] = ACTIONS(3007), + [anon_sym_COMMA] = ACTIONS(3375), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_RBRACE] = ACTIONS(3377), + [anon_sym_LBRACK] = ACTIONS(3357), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(193), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), }, - [1701] = { - [sym_identifier] = ACTIONS(3797), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3799), - [anon_sym_COMMA] = ACTIONS(3799), - [anon_sym_RPAREN] = ACTIONS(3799), - [anon_sym_LPAREN2] = ACTIONS(3799), - [anon_sym_TILDE] = ACTIONS(3799), - [anon_sym_DASH] = ACTIONS(3797), - [anon_sym_PLUS] = ACTIONS(3797), - [anon_sym_STAR] = ACTIONS(3797), - [anon_sym_SLASH] = ACTIONS(3797), - [anon_sym_PERCENT] = ACTIONS(3797), - [anon_sym_PIPE_PIPE] = ACTIONS(3799), - [anon_sym_AMP_AMP] = ACTIONS(3799), - [anon_sym_PIPE] = ACTIONS(3797), - [anon_sym_CARET] = ACTIONS(3797), - [anon_sym_AMP] = ACTIONS(3797), - [anon_sym_EQ_EQ] = ACTIONS(3799), - [anon_sym_BANG_EQ] = ACTIONS(3799), - [anon_sym_GT] = ACTIONS(3797), - [anon_sym_GT_EQ] = ACTIONS(3799), - [anon_sym_LT_EQ] = ACTIONS(3797), - [anon_sym_LT] = ACTIONS(3797), - [anon_sym_LT_LT] = ACTIONS(3797), - [anon_sym_GT_GT] = ACTIONS(3797), - [anon_sym_extern] = ACTIONS(3797), - [anon_sym___attribute__] = ACTIONS(3797), - [anon_sym_COLON_COLON] = ACTIONS(3799), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3799), - [anon_sym___declspec] = ACTIONS(3797), - [anon_sym___based] = ACTIONS(3797), - [anon_sym_LBRACE] = ACTIONS(3799), - [anon_sym_LBRACK] = ACTIONS(3797), - [anon_sym_EQ] = ACTIONS(3797), - [anon_sym_static] = ACTIONS(3797), - [anon_sym_register] = ACTIONS(3797), - [anon_sym_inline] = ACTIONS(3797), - [anon_sym_thread_local] = ACTIONS(3797), - [anon_sym_const] = ACTIONS(3797), - [anon_sym_volatile] = ACTIONS(3797), - [anon_sym_restrict] = ACTIONS(3797), - [anon_sym__Atomic] = ACTIONS(3797), - [anon_sym_mutable] = ACTIONS(3797), - [anon_sym_constexpr] = ACTIONS(3797), - [anon_sym_constinit] = ACTIONS(3797), - [anon_sym_consteval] = ACTIONS(3797), - [anon_sym_QMARK] = ACTIONS(3799), - [anon_sym_STAR_EQ] = ACTIONS(3799), - [anon_sym_SLASH_EQ] = ACTIONS(3799), - [anon_sym_PERCENT_EQ] = ACTIONS(3799), - [anon_sym_PLUS_EQ] = ACTIONS(3799), - [anon_sym_DASH_EQ] = ACTIONS(3799), - [anon_sym_LT_LT_EQ] = ACTIONS(3799), - [anon_sym_GT_GT_EQ] = ACTIONS(3799), - [anon_sym_AMP_EQ] = ACTIONS(3799), - [anon_sym_CARET_EQ] = ACTIONS(3799), - [anon_sym_PIPE_EQ] = ACTIONS(3799), - [anon_sym_LT_EQ_GT] = ACTIONS(3799), - [anon_sym_DASH_DASH] = ACTIONS(3799), - [anon_sym_PLUS_PLUS] = ACTIONS(3799), - [anon_sym_DOT] = ACTIONS(3797), - [anon_sym_DASH_GT] = ACTIONS(3797), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3797), - [anon_sym_decltype] = ACTIONS(3797), - [anon_sym_virtual] = ACTIONS(3797), - [anon_sym_template] = ACTIONS(3797), - [anon_sym_operator] = ACTIONS(3797), - [anon_sym_DOT_STAR] = ACTIONS(3799), - [anon_sym_DASH_GT_STAR] = ACTIONS(3799), + [1271] = { + [sym__expression] = STATE(3762), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_initializer_list] = STATE(6597), + [sym_initializer_pair] = STATE(6597), + [sym_subscript_designator] = STATE(5464), + [sym_field_designator] = STATE(5464), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_initializer_pair_repeat1] = STATE(5464), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_RBRACE] = ACTIONS(3379), + [anon_sym_LBRACK] = ACTIONS(3357), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(193), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), }, - [1702] = { - [sym_template_argument_list] = STATE(1815), - [sym_identifier] = ACTIONS(3714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3716), - [anon_sym_COMMA] = ACTIONS(3716), - [anon_sym_LPAREN2] = ACTIONS(3729), - [anon_sym_TILDE] = ACTIONS(3722), - [anon_sym_DASH] = ACTIONS(3724), - [anon_sym_PLUS] = ACTIONS(3724), - [anon_sym_STAR] = ACTIONS(3726), - [anon_sym_SLASH] = ACTIONS(3724), - [anon_sym_PERCENT] = ACTIONS(3724), - [anon_sym_PIPE_PIPE] = ACTIONS(3716), - [anon_sym_AMP_AMP] = ACTIONS(3729), - [anon_sym_PIPE] = ACTIONS(3724), - [anon_sym_CARET] = ACTIONS(3724), - [anon_sym_AMP] = ACTIONS(3726), - [anon_sym_EQ_EQ] = ACTIONS(3716), - [anon_sym_BANG_EQ] = ACTIONS(3716), - [anon_sym_GT] = ACTIONS(3724), - [anon_sym_GT_EQ] = ACTIONS(3716), - [anon_sym_LT_EQ] = ACTIONS(3724), - [anon_sym_LT] = ACTIONS(3732), - [anon_sym_LT_LT] = ACTIONS(3724), - [anon_sym_GT_GT] = ACTIONS(3724), - [anon_sym_SEMI] = ACTIONS(3716), - [anon_sym_extern] = ACTIONS(3714), - [anon_sym___attribute__] = ACTIONS(3714), - [anon_sym_COLON_COLON] = ACTIONS(3735), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3722), - [anon_sym___declspec] = ACTIONS(3714), - [anon_sym___based] = ACTIONS(3714), - [anon_sym_LBRACE] = ACTIONS(3740), - [anon_sym_LBRACK] = ACTIONS(3726), - [anon_sym_EQ] = ACTIONS(3746), - [anon_sym_static] = ACTIONS(3714), - [anon_sym_register] = ACTIONS(3714), - [anon_sym_inline] = ACTIONS(3714), - [anon_sym_thread_local] = ACTIONS(3714), - [anon_sym_const] = ACTIONS(3714), - [anon_sym_volatile] = ACTIONS(3714), - [anon_sym_restrict] = ACTIONS(3714), - [anon_sym__Atomic] = ACTIONS(3714), - [anon_sym_mutable] = ACTIONS(3714), - [anon_sym_constexpr] = ACTIONS(3714), - [anon_sym_constinit] = ACTIONS(3714), - [anon_sym_consteval] = ACTIONS(3714), - [anon_sym_COLON] = ACTIONS(3748), - [anon_sym_QMARK] = ACTIONS(3716), - [anon_sym_STAR_EQ] = ACTIONS(3750), - [anon_sym_SLASH_EQ] = ACTIONS(3750), - [anon_sym_PERCENT_EQ] = ACTIONS(3750), - [anon_sym_PLUS_EQ] = ACTIONS(3750), - [anon_sym_DASH_EQ] = ACTIONS(3750), - [anon_sym_LT_LT_EQ] = ACTIONS(3750), - [anon_sym_GT_GT_EQ] = ACTIONS(3750), - [anon_sym_AMP_EQ] = ACTIONS(3750), - [anon_sym_CARET_EQ] = ACTIONS(3750), - [anon_sym_PIPE_EQ] = ACTIONS(3750), - [anon_sym_LT_EQ_GT] = ACTIONS(3716), - [anon_sym_DASH_DASH] = ACTIONS(3716), - [anon_sym_PLUS_PLUS] = ACTIONS(3716), - [anon_sym_DOT] = ACTIONS(3724), - [anon_sym_DASH_GT] = ACTIONS(3716), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3714), - [anon_sym_decltype] = ACTIONS(3714), - [anon_sym_virtual] = ACTIONS(3714), - [anon_sym_template] = ACTIONS(3714), - [anon_sym_operator] = ACTIONS(3714), + [1272] = { + [sym__expression] = STATE(3762), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_initializer_list] = STATE(6597), + [sym_initializer_pair] = STATE(6597), + [sym_subscript_designator] = STATE(5464), + [sym_field_designator] = STATE(5464), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_initializer_pair_repeat1] = STATE(5464), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_RBRACE] = ACTIONS(3381), + [anon_sym_LBRACK] = ACTIONS(3357), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(193), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), }, - [1703] = { - [sym_identifier] = ACTIONS(3797), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3799), - [anon_sym_COMMA] = ACTIONS(3799), - [anon_sym_RPAREN] = ACTIONS(3799), - [anon_sym_LPAREN2] = ACTIONS(3799), - [anon_sym_TILDE] = ACTIONS(3799), - [anon_sym_DASH] = ACTIONS(3797), - [anon_sym_PLUS] = ACTIONS(3797), - [anon_sym_STAR] = ACTIONS(3797), - [anon_sym_SLASH] = ACTIONS(3797), - [anon_sym_PERCENT] = ACTIONS(3797), - [anon_sym_PIPE_PIPE] = ACTIONS(3799), - [anon_sym_AMP_AMP] = ACTIONS(3799), - [anon_sym_PIPE] = ACTIONS(3797), - [anon_sym_CARET] = ACTIONS(3797), - [anon_sym_AMP] = ACTIONS(3797), - [anon_sym_EQ_EQ] = ACTIONS(3799), - [anon_sym_BANG_EQ] = ACTIONS(3799), - [anon_sym_GT] = ACTIONS(3797), - [anon_sym_GT_EQ] = ACTIONS(3799), - [anon_sym_LT_EQ] = ACTIONS(3797), - [anon_sym_LT] = ACTIONS(3797), - [anon_sym_LT_LT] = ACTIONS(3797), - [anon_sym_GT_GT] = ACTIONS(3797), - [anon_sym_SEMI] = ACTIONS(3799), - [anon_sym_extern] = ACTIONS(3797), - [anon_sym___attribute__] = ACTIONS(3797), - [anon_sym_COLON_COLON] = ACTIONS(3799), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3799), - [anon_sym___declspec] = ACTIONS(3797), - [anon_sym___based] = ACTIONS(3797), - [anon_sym_LBRACE] = ACTIONS(3799), - [anon_sym_RBRACE] = ACTIONS(3799), - [anon_sym_LBRACK] = ACTIONS(3797), - [anon_sym_EQ] = ACTIONS(3797), - [anon_sym_static] = ACTIONS(3797), - [anon_sym_register] = ACTIONS(3797), - [anon_sym_inline] = ACTIONS(3797), - [anon_sym_thread_local] = ACTIONS(3797), - [anon_sym_const] = ACTIONS(3797), - [anon_sym_volatile] = ACTIONS(3797), - [anon_sym_restrict] = ACTIONS(3797), - [anon_sym__Atomic] = ACTIONS(3797), - [anon_sym_mutable] = ACTIONS(3797), - [anon_sym_constexpr] = ACTIONS(3797), - [anon_sym_constinit] = ACTIONS(3797), - [anon_sym_consteval] = ACTIONS(3797), - [anon_sym_QMARK] = ACTIONS(3799), - [anon_sym_STAR_EQ] = ACTIONS(3799), - [anon_sym_SLASH_EQ] = ACTIONS(3799), - [anon_sym_PERCENT_EQ] = ACTIONS(3799), - [anon_sym_PLUS_EQ] = ACTIONS(3799), - [anon_sym_DASH_EQ] = ACTIONS(3799), - [anon_sym_LT_LT_EQ] = ACTIONS(3799), - [anon_sym_GT_GT_EQ] = ACTIONS(3799), - [anon_sym_AMP_EQ] = ACTIONS(3799), - [anon_sym_CARET_EQ] = ACTIONS(3799), - [anon_sym_PIPE_EQ] = ACTIONS(3799), - [anon_sym_LT_EQ_GT] = ACTIONS(3799), - [anon_sym_DASH_DASH] = ACTIONS(3799), - [anon_sym_PLUS_PLUS] = ACTIONS(3799), - [anon_sym_DOT] = ACTIONS(3797), - [anon_sym_DASH_GT] = ACTIONS(3799), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3797), - [anon_sym_decltype] = ACTIONS(3797), - [anon_sym_virtual] = ACTIONS(3797), - [anon_sym_template] = ACTIONS(3797), - [anon_sym_operator] = ACTIONS(3797), + [1273] = { + [sym__expression] = STATE(3762), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_initializer_list] = STATE(6597), + [sym_initializer_pair] = STATE(6597), + [sym_subscript_designator] = STATE(5464), + [sym_field_designator] = STATE(5464), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_initializer_pair_repeat1] = STATE(5464), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_RBRACE] = ACTIONS(3383), + [anon_sym_LBRACK] = ACTIONS(3357), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(193), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), }, - [1704] = { - [sym_identifier] = ACTIONS(3801), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3803), - [anon_sym_COMMA] = ACTIONS(3803), - [anon_sym_RPAREN] = ACTIONS(3803), - [anon_sym_LPAREN2] = ACTIONS(3803), - [anon_sym_TILDE] = ACTIONS(3803), - [anon_sym_DASH] = ACTIONS(3801), - [anon_sym_PLUS] = ACTIONS(3801), - [anon_sym_STAR] = ACTIONS(3801), - [anon_sym_SLASH] = ACTIONS(3801), - [anon_sym_PERCENT] = ACTIONS(3801), - [anon_sym_PIPE_PIPE] = ACTIONS(3803), - [anon_sym_AMP_AMP] = ACTIONS(3803), - [anon_sym_PIPE] = ACTIONS(3801), - [anon_sym_CARET] = ACTIONS(3801), - [anon_sym_AMP] = ACTIONS(3801), - [anon_sym_EQ_EQ] = ACTIONS(3803), - [anon_sym_BANG_EQ] = ACTIONS(3803), - [anon_sym_GT] = ACTIONS(3801), - [anon_sym_GT_EQ] = ACTIONS(3803), - [anon_sym_LT_EQ] = ACTIONS(3801), - [anon_sym_LT] = ACTIONS(3801), - [anon_sym_LT_LT] = ACTIONS(3801), - [anon_sym_GT_GT] = ACTIONS(3801), - [anon_sym_extern] = ACTIONS(3801), - [anon_sym___attribute__] = ACTIONS(3801), - [anon_sym_COLON_COLON] = ACTIONS(3803), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3803), - [anon_sym___declspec] = ACTIONS(3801), - [anon_sym___based] = ACTIONS(3801), - [anon_sym_LBRACE] = ACTIONS(3803), - [anon_sym_LBRACK] = ACTIONS(3801), - [anon_sym_EQ] = ACTIONS(3801), - [anon_sym_static] = ACTIONS(3801), - [anon_sym_register] = ACTIONS(3801), - [anon_sym_inline] = ACTIONS(3801), - [anon_sym_thread_local] = ACTIONS(3801), - [anon_sym_const] = ACTIONS(3801), - [anon_sym_volatile] = ACTIONS(3801), - [anon_sym_restrict] = ACTIONS(3801), - [anon_sym__Atomic] = ACTIONS(3801), - [anon_sym_mutable] = ACTIONS(3801), - [anon_sym_constexpr] = ACTIONS(3801), - [anon_sym_constinit] = ACTIONS(3801), - [anon_sym_consteval] = ACTIONS(3801), - [anon_sym_QMARK] = ACTIONS(3803), - [anon_sym_STAR_EQ] = ACTIONS(3803), - [anon_sym_SLASH_EQ] = ACTIONS(3803), - [anon_sym_PERCENT_EQ] = ACTIONS(3803), - [anon_sym_PLUS_EQ] = ACTIONS(3803), - [anon_sym_DASH_EQ] = ACTIONS(3803), - [anon_sym_LT_LT_EQ] = ACTIONS(3803), - [anon_sym_GT_GT_EQ] = ACTIONS(3803), - [anon_sym_AMP_EQ] = ACTIONS(3803), - [anon_sym_CARET_EQ] = ACTIONS(3803), - [anon_sym_PIPE_EQ] = ACTIONS(3803), - [anon_sym_LT_EQ_GT] = ACTIONS(3803), - [anon_sym_DASH_DASH] = ACTIONS(3803), - [anon_sym_PLUS_PLUS] = ACTIONS(3803), - [anon_sym_DOT] = ACTIONS(3801), - [anon_sym_DASH_GT] = ACTIONS(3801), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3801), - [anon_sym_decltype] = ACTIONS(3801), - [anon_sym_virtual] = ACTIONS(3801), - [anon_sym_template] = ACTIONS(3801), - [anon_sym_operator] = ACTIONS(3801), - [anon_sym_DOT_STAR] = ACTIONS(3803), - [anon_sym_DASH_GT_STAR] = ACTIONS(3803), + [1274] = { + [sym__expression] = STATE(3762), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_initializer_list] = STATE(6597), + [sym_initializer_pair] = STATE(6597), + [sym_subscript_designator] = STATE(5464), + [sym_field_designator] = STATE(5464), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_initializer_pair_repeat1] = STATE(5464), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_RBRACE] = ACTIONS(3385), + [anon_sym_LBRACK] = ACTIONS(3357), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(193), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), }, - [1705] = { - [sym_identifier] = ACTIONS(3778), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3780), - [anon_sym_COMMA] = ACTIONS(3780), - [anon_sym_RPAREN] = ACTIONS(3780), - [anon_sym_LPAREN2] = ACTIONS(3780), - [anon_sym_TILDE] = ACTIONS(3780), - [anon_sym_DASH] = ACTIONS(3778), - [anon_sym_PLUS] = ACTIONS(3778), - [anon_sym_STAR] = ACTIONS(3778), - [anon_sym_SLASH] = ACTIONS(3778), - [anon_sym_PERCENT] = ACTIONS(3778), - [anon_sym_PIPE_PIPE] = ACTIONS(3780), - [anon_sym_AMP_AMP] = ACTIONS(3780), - [anon_sym_PIPE] = ACTIONS(3778), - [anon_sym_CARET] = ACTIONS(3778), - [anon_sym_AMP] = ACTIONS(3778), - [anon_sym_EQ_EQ] = ACTIONS(3780), - [anon_sym_BANG_EQ] = ACTIONS(3780), - [anon_sym_GT] = ACTIONS(3778), - [anon_sym_GT_EQ] = ACTIONS(3780), - [anon_sym_LT_EQ] = ACTIONS(3778), - [anon_sym_LT] = ACTIONS(3778), - [anon_sym_LT_LT] = ACTIONS(3778), - [anon_sym_GT_GT] = ACTIONS(3778), - [anon_sym_extern] = ACTIONS(3778), - [anon_sym___attribute__] = ACTIONS(3778), - [anon_sym_COLON_COLON] = ACTIONS(3780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3780), - [anon_sym___declspec] = ACTIONS(3778), - [anon_sym___based] = ACTIONS(3778), - [anon_sym_LBRACE] = ACTIONS(3780), - [anon_sym_LBRACK] = ACTIONS(3778), - [anon_sym_EQ] = ACTIONS(3778), - [anon_sym_static] = ACTIONS(3778), - [anon_sym_register] = ACTIONS(3778), - [anon_sym_inline] = ACTIONS(3778), - [anon_sym_thread_local] = ACTIONS(3778), - [anon_sym_const] = ACTIONS(3778), - [anon_sym_volatile] = ACTIONS(3778), - [anon_sym_restrict] = ACTIONS(3778), - [anon_sym__Atomic] = ACTIONS(3778), - [anon_sym_mutable] = ACTIONS(3778), - [anon_sym_constexpr] = ACTIONS(3778), - [anon_sym_constinit] = ACTIONS(3778), - [anon_sym_consteval] = ACTIONS(3778), - [anon_sym_QMARK] = ACTIONS(3780), - [anon_sym_STAR_EQ] = ACTIONS(3780), - [anon_sym_SLASH_EQ] = ACTIONS(3780), - [anon_sym_PERCENT_EQ] = ACTIONS(3780), - [anon_sym_PLUS_EQ] = ACTIONS(3780), - [anon_sym_DASH_EQ] = ACTIONS(3780), - [anon_sym_LT_LT_EQ] = ACTIONS(3780), - [anon_sym_GT_GT_EQ] = ACTIONS(3780), - [anon_sym_AMP_EQ] = ACTIONS(3780), - [anon_sym_CARET_EQ] = ACTIONS(3780), - [anon_sym_PIPE_EQ] = ACTIONS(3780), - [anon_sym_LT_EQ_GT] = ACTIONS(3780), - [anon_sym_DASH_DASH] = ACTIONS(3780), - [anon_sym_PLUS_PLUS] = ACTIONS(3780), - [anon_sym_DOT] = ACTIONS(3778), - [anon_sym_DASH_GT] = ACTIONS(3778), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3778), - [anon_sym_decltype] = ACTIONS(3778), - [anon_sym_virtual] = ACTIONS(3778), - [anon_sym_template] = ACTIONS(3778), - [anon_sym_operator] = ACTIONS(3778), - [anon_sym_DOT_STAR] = ACTIONS(3780), - [anon_sym_DASH_GT_STAR] = ACTIONS(3780), + [1275] = { + [sym__expression] = STATE(3762), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_initializer_list] = STATE(6597), + [sym_initializer_pair] = STATE(6597), + [sym_subscript_designator] = STATE(5464), + [sym_field_designator] = STATE(5464), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_initializer_pair_repeat1] = STATE(5464), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_RBRACE] = ACTIONS(3387), + [anon_sym_LBRACK] = ACTIONS(3357), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(193), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), }, - [1706] = { - [sym_identifier] = ACTIONS(3805), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3807), - [anon_sym_COMMA] = ACTIONS(3807), - [anon_sym_RPAREN] = ACTIONS(3807), - [anon_sym_LPAREN2] = ACTIONS(3807), - [anon_sym_TILDE] = ACTIONS(3807), - [anon_sym_DASH] = ACTIONS(3805), - [anon_sym_PLUS] = ACTIONS(3805), - [anon_sym_STAR] = ACTIONS(3805), - [anon_sym_SLASH] = ACTIONS(3805), - [anon_sym_PERCENT] = ACTIONS(3805), - [anon_sym_PIPE_PIPE] = ACTIONS(3807), - [anon_sym_AMP_AMP] = ACTIONS(3807), - [anon_sym_PIPE] = ACTIONS(3805), - [anon_sym_CARET] = ACTIONS(3805), - [anon_sym_AMP] = ACTIONS(3805), - [anon_sym_EQ_EQ] = ACTIONS(3807), - [anon_sym_BANG_EQ] = ACTIONS(3807), - [anon_sym_GT] = ACTIONS(3805), - [anon_sym_GT_EQ] = ACTIONS(3807), - [anon_sym_LT_EQ] = ACTIONS(3805), - [anon_sym_LT] = ACTIONS(3805), - [anon_sym_LT_LT] = ACTIONS(3805), - [anon_sym_GT_GT] = ACTIONS(3805), - [anon_sym_extern] = ACTIONS(3805), - [anon_sym___attribute__] = ACTIONS(3805), - [anon_sym_COLON_COLON] = ACTIONS(3807), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3807), - [anon_sym___declspec] = ACTIONS(3805), - [anon_sym___based] = ACTIONS(3805), - [anon_sym_LBRACE] = ACTIONS(3807), - [anon_sym_LBRACK] = ACTIONS(3805), - [anon_sym_EQ] = ACTIONS(3805), - [anon_sym_static] = ACTIONS(3805), - [anon_sym_register] = ACTIONS(3805), - [anon_sym_inline] = ACTIONS(3805), - [anon_sym_thread_local] = ACTIONS(3805), - [anon_sym_const] = ACTIONS(3805), - [anon_sym_volatile] = ACTIONS(3805), - [anon_sym_restrict] = ACTIONS(3805), - [anon_sym__Atomic] = ACTIONS(3805), - [anon_sym_mutable] = ACTIONS(3805), - [anon_sym_constexpr] = ACTIONS(3805), - [anon_sym_constinit] = ACTIONS(3805), - [anon_sym_consteval] = ACTIONS(3805), - [anon_sym_QMARK] = ACTIONS(3807), - [anon_sym_STAR_EQ] = ACTIONS(3807), - [anon_sym_SLASH_EQ] = ACTIONS(3807), - [anon_sym_PERCENT_EQ] = ACTIONS(3807), - [anon_sym_PLUS_EQ] = ACTIONS(3807), - [anon_sym_DASH_EQ] = ACTIONS(3807), - [anon_sym_LT_LT_EQ] = ACTIONS(3807), - [anon_sym_GT_GT_EQ] = ACTIONS(3807), - [anon_sym_AMP_EQ] = ACTIONS(3807), - [anon_sym_CARET_EQ] = ACTIONS(3807), - [anon_sym_PIPE_EQ] = ACTIONS(3807), - [anon_sym_LT_EQ_GT] = ACTIONS(3807), - [anon_sym_DASH_DASH] = ACTIONS(3807), - [anon_sym_PLUS_PLUS] = ACTIONS(3807), - [anon_sym_DOT] = ACTIONS(3805), - [anon_sym_DASH_GT] = ACTIONS(3805), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3805), - [anon_sym_decltype] = ACTIONS(3805), - [anon_sym_virtual] = ACTIONS(3805), - [anon_sym_template] = ACTIONS(3805), - [anon_sym_operator] = ACTIONS(3805), - [anon_sym_DOT_STAR] = ACTIONS(3807), - [anon_sym_DASH_GT_STAR] = ACTIONS(3807), + [1276] = { + [sym__expression] = STATE(3762), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_initializer_list] = STATE(6597), + [sym_initializer_pair] = STATE(6597), + [sym_subscript_designator] = STATE(5464), + [sym_field_designator] = STATE(5464), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_initializer_pair_repeat1] = STATE(5464), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_RBRACE] = ACTIONS(3389), + [anon_sym_LBRACK] = ACTIONS(3357), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(193), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), }, - [1707] = { - [sym_identifier] = ACTIONS(3801), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3803), - [anon_sym_COMMA] = ACTIONS(3803), - [anon_sym_RPAREN] = ACTIONS(3803), - [anon_sym_LPAREN2] = ACTIONS(3803), - [anon_sym_TILDE] = ACTIONS(3803), - [anon_sym_DASH] = ACTIONS(3801), - [anon_sym_PLUS] = ACTIONS(3801), - [anon_sym_STAR] = ACTIONS(3801), - [anon_sym_SLASH] = ACTIONS(3801), - [anon_sym_PERCENT] = ACTIONS(3801), - [anon_sym_PIPE_PIPE] = ACTIONS(3803), - [anon_sym_AMP_AMP] = ACTIONS(3803), - [anon_sym_PIPE] = ACTIONS(3801), - [anon_sym_CARET] = ACTIONS(3801), - [anon_sym_AMP] = ACTIONS(3801), - [anon_sym_EQ_EQ] = ACTIONS(3803), - [anon_sym_BANG_EQ] = ACTIONS(3803), - [anon_sym_GT] = ACTIONS(3801), - [anon_sym_GT_EQ] = ACTIONS(3803), - [anon_sym_LT_EQ] = ACTIONS(3801), - [anon_sym_LT] = ACTIONS(3801), - [anon_sym_LT_LT] = ACTIONS(3801), - [anon_sym_GT_GT] = ACTIONS(3801), - [anon_sym_SEMI] = ACTIONS(3803), - [anon_sym_extern] = ACTIONS(3801), - [anon_sym___attribute__] = ACTIONS(3801), - [anon_sym_COLON_COLON] = ACTIONS(3803), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3803), - [anon_sym___declspec] = ACTIONS(3801), - [anon_sym___based] = ACTIONS(3801), - [anon_sym_LBRACE] = ACTIONS(3803), - [anon_sym_RBRACE] = ACTIONS(3803), - [anon_sym_LBRACK] = ACTIONS(3801), - [anon_sym_EQ] = ACTIONS(3801), - [anon_sym_static] = ACTIONS(3801), - [anon_sym_register] = ACTIONS(3801), - [anon_sym_inline] = ACTIONS(3801), - [anon_sym_thread_local] = ACTIONS(3801), - [anon_sym_const] = ACTIONS(3801), - [anon_sym_volatile] = ACTIONS(3801), - [anon_sym_restrict] = ACTIONS(3801), - [anon_sym__Atomic] = ACTIONS(3801), - [anon_sym_mutable] = ACTIONS(3801), - [anon_sym_constexpr] = ACTIONS(3801), - [anon_sym_constinit] = ACTIONS(3801), - [anon_sym_consteval] = ACTIONS(3801), - [anon_sym_QMARK] = ACTIONS(3803), - [anon_sym_STAR_EQ] = ACTIONS(3803), - [anon_sym_SLASH_EQ] = ACTIONS(3803), - [anon_sym_PERCENT_EQ] = ACTIONS(3803), - [anon_sym_PLUS_EQ] = ACTIONS(3803), - [anon_sym_DASH_EQ] = ACTIONS(3803), - [anon_sym_LT_LT_EQ] = ACTIONS(3803), - [anon_sym_GT_GT_EQ] = ACTIONS(3803), - [anon_sym_AMP_EQ] = ACTIONS(3803), - [anon_sym_CARET_EQ] = ACTIONS(3803), - [anon_sym_PIPE_EQ] = ACTIONS(3803), - [anon_sym_LT_EQ_GT] = ACTIONS(3803), - [anon_sym_DASH_DASH] = ACTIONS(3803), - [anon_sym_PLUS_PLUS] = ACTIONS(3803), - [anon_sym_DOT] = ACTIONS(3801), - [anon_sym_DASH_GT] = ACTIONS(3803), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3801), - [anon_sym_decltype] = ACTIONS(3801), - [anon_sym_virtual] = ACTIONS(3801), - [anon_sym_template] = ACTIONS(3801), - [anon_sym_operator] = ACTIONS(3801), + [1277] = { + [sym__expression] = STATE(3762), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_initializer_list] = STATE(6597), + [sym_initializer_pair] = STATE(6597), + [sym_subscript_designator] = STATE(5464), + [sym_field_designator] = STATE(5464), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_initializer_pair_repeat1] = STATE(5464), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_RBRACE] = ACTIONS(3391), + [anon_sym_LBRACK] = ACTIONS(3357), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(193), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), }, - [1708] = { - [sym_identifier] = ACTIONS(3782), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3784), - [anon_sym_COMMA] = ACTIONS(3784), - [anon_sym_RPAREN] = ACTIONS(3784), - [anon_sym_LPAREN2] = ACTIONS(3784), - [anon_sym_TILDE] = ACTIONS(3784), - [anon_sym_DASH] = ACTIONS(3782), - [anon_sym_PLUS] = ACTIONS(3782), - [anon_sym_STAR] = ACTIONS(3782), - [anon_sym_SLASH] = ACTIONS(3782), - [anon_sym_PERCENT] = ACTIONS(3782), - [anon_sym_PIPE_PIPE] = ACTIONS(3784), - [anon_sym_AMP_AMP] = ACTIONS(3784), - [anon_sym_PIPE] = ACTIONS(3782), - [anon_sym_CARET] = ACTIONS(3782), - [anon_sym_AMP] = ACTIONS(3782), - [anon_sym_EQ_EQ] = ACTIONS(3784), - [anon_sym_BANG_EQ] = ACTIONS(3784), - [anon_sym_GT] = ACTIONS(3782), - [anon_sym_GT_EQ] = ACTIONS(3784), - [anon_sym_LT_EQ] = ACTIONS(3782), - [anon_sym_LT] = ACTIONS(3782), - [anon_sym_LT_LT] = ACTIONS(3782), - [anon_sym_GT_GT] = ACTIONS(3782), - [anon_sym_extern] = ACTIONS(3782), - [anon_sym___attribute__] = ACTIONS(3782), - [anon_sym_COLON_COLON] = ACTIONS(3784), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3784), - [anon_sym___declspec] = ACTIONS(3782), - [anon_sym___based] = ACTIONS(3782), - [anon_sym_LBRACE] = ACTIONS(3784), - [anon_sym_LBRACK] = ACTIONS(3782), - [anon_sym_EQ] = ACTIONS(3782), - [anon_sym_static] = ACTIONS(3782), - [anon_sym_register] = ACTIONS(3782), - [anon_sym_inline] = ACTIONS(3782), - [anon_sym_thread_local] = ACTIONS(3782), - [anon_sym_const] = ACTIONS(3782), - [anon_sym_volatile] = ACTIONS(3782), - [anon_sym_restrict] = ACTIONS(3782), - [anon_sym__Atomic] = ACTIONS(3782), - [anon_sym_mutable] = ACTIONS(3782), - [anon_sym_constexpr] = ACTIONS(3782), - [anon_sym_constinit] = ACTIONS(3782), - [anon_sym_consteval] = ACTIONS(3782), - [anon_sym_QMARK] = ACTIONS(3784), - [anon_sym_STAR_EQ] = ACTIONS(3784), - [anon_sym_SLASH_EQ] = ACTIONS(3784), - [anon_sym_PERCENT_EQ] = ACTIONS(3784), - [anon_sym_PLUS_EQ] = ACTIONS(3784), - [anon_sym_DASH_EQ] = ACTIONS(3784), - [anon_sym_LT_LT_EQ] = ACTIONS(3784), - [anon_sym_GT_GT_EQ] = ACTIONS(3784), - [anon_sym_AMP_EQ] = ACTIONS(3784), - [anon_sym_CARET_EQ] = ACTIONS(3784), - [anon_sym_PIPE_EQ] = ACTIONS(3784), - [anon_sym_LT_EQ_GT] = ACTIONS(3784), - [anon_sym_DASH_DASH] = ACTIONS(3784), - [anon_sym_PLUS_PLUS] = ACTIONS(3784), - [anon_sym_DOT] = ACTIONS(3782), - [anon_sym_DASH_GT] = ACTIONS(3782), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3782), - [anon_sym_decltype] = ACTIONS(3782), - [anon_sym_virtual] = ACTIONS(3782), - [anon_sym_template] = ACTIONS(3782), - [anon_sym_operator] = ACTIONS(3782), - [anon_sym_DOT_STAR] = ACTIONS(3784), - [anon_sym_DASH_GT_STAR] = ACTIONS(3784), + [1278] = { + [sym__expression] = STATE(3762), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_initializer_list] = STATE(6597), + [sym_initializer_pair] = STATE(6597), + [sym_subscript_designator] = STATE(5464), + [sym_field_designator] = STATE(5464), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_initializer_pair_repeat1] = STATE(5464), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_RBRACE] = ACTIONS(3393), + [anon_sym_LBRACK] = ACTIONS(3357), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(193), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), }, - [1709] = { - [sym_template_argument_list] = STATE(1815), - [sym_identifier] = ACTIONS(3714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3716), - [anon_sym_COMMA] = ACTIONS(3716), - [anon_sym_LPAREN2] = ACTIONS(3729), - [anon_sym_TILDE] = ACTIONS(3722), - [anon_sym_DASH] = ACTIONS(3724), - [anon_sym_PLUS] = ACTIONS(3724), - [anon_sym_STAR] = ACTIONS(3726), - [anon_sym_SLASH] = ACTIONS(3724), - [anon_sym_PERCENT] = ACTIONS(3724), - [anon_sym_PIPE_PIPE] = ACTIONS(3716), - [anon_sym_AMP_AMP] = ACTIONS(3729), - [anon_sym_PIPE] = ACTIONS(3724), - [anon_sym_CARET] = ACTIONS(3724), - [anon_sym_AMP] = ACTIONS(3726), - [anon_sym_EQ_EQ] = ACTIONS(3716), - [anon_sym_BANG_EQ] = ACTIONS(3716), - [anon_sym_GT] = ACTIONS(3724), - [anon_sym_GT_EQ] = ACTIONS(3716), - [anon_sym_LT_EQ] = ACTIONS(3724), - [anon_sym_LT] = ACTIONS(3732), - [anon_sym_LT_LT] = ACTIONS(3724), - [anon_sym_GT_GT] = ACTIONS(3724), - [anon_sym_SEMI] = ACTIONS(3716), - [anon_sym_extern] = ACTIONS(3714), - [anon_sym___attribute__] = ACTIONS(3714), - [anon_sym_COLON_COLON] = ACTIONS(3735), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3722), - [anon_sym___declspec] = ACTIONS(3714), - [anon_sym___based] = ACTIONS(3714), - [anon_sym_LBRACE] = ACTIONS(3740), - [anon_sym_LBRACK] = ACTIONS(3726), - [anon_sym_EQ] = ACTIONS(3746), - [anon_sym_static] = ACTIONS(3714), - [anon_sym_register] = ACTIONS(3714), - [anon_sym_inline] = ACTIONS(3714), - [anon_sym_thread_local] = ACTIONS(3714), - [anon_sym_const] = ACTIONS(3714), - [anon_sym_volatile] = ACTIONS(3714), - [anon_sym_restrict] = ACTIONS(3714), - [anon_sym__Atomic] = ACTIONS(3714), - [anon_sym_mutable] = ACTIONS(3714), - [anon_sym_constexpr] = ACTIONS(3714), - [anon_sym_constinit] = ACTIONS(3714), - [anon_sym_consteval] = ACTIONS(3714), - [anon_sym_COLON] = ACTIONS(3809), - [anon_sym_QMARK] = ACTIONS(3716), - [anon_sym_STAR_EQ] = ACTIONS(3750), - [anon_sym_SLASH_EQ] = ACTIONS(3750), - [anon_sym_PERCENT_EQ] = ACTIONS(3750), - [anon_sym_PLUS_EQ] = ACTIONS(3750), - [anon_sym_DASH_EQ] = ACTIONS(3750), - [anon_sym_LT_LT_EQ] = ACTIONS(3750), - [anon_sym_GT_GT_EQ] = ACTIONS(3750), - [anon_sym_AMP_EQ] = ACTIONS(3750), - [anon_sym_CARET_EQ] = ACTIONS(3750), - [anon_sym_PIPE_EQ] = ACTIONS(3750), - [anon_sym_LT_EQ_GT] = ACTIONS(3716), - [anon_sym_DASH_DASH] = ACTIONS(3716), - [anon_sym_PLUS_PLUS] = ACTIONS(3716), - [anon_sym_DOT] = ACTIONS(3724), - [anon_sym_DASH_GT] = ACTIONS(3716), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3714), - [anon_sym_decltype] = ACTIONS(3714), - [anon_sym_virtual] = ACTIONS(3714), - [anon_sym_template] = ACTIONS(3714), - [anon_sym_operator] = ACTIONS(3714), + [1279] = { + [sym__expression] = STATE(3762), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_initializer_list] = STATE(6597), + [sym_initializer_pair] = STATE(6597), + [sym_subscript_designator] = STATE(5464), + [sym_field_designator] = STATE(5464), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_initializer_pair_repeat1] = STATE(5464), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_RBRACE] = ACTIONS(3395), + [anon_sym_LBRACK] = ACTIONS(3357), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(193), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), }, - [1710] = { - [sym_identifier] = ACTIONS(3805), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3807), - [anon_sym_COMMA] = ACTIONS(3807), - [anon_sym_RPAREN] = ACTIONS(3807), - [anon_sym_LPAREN2] = ACTIONS(3807), - [anon_sym_TILDE] = ACTIONS(3807), - [anon_sym_DASH] = ACTIONS(3805), - [anon_sym_PLUS] = ACTIONS(3805), - [anon_sym_STAR] = ACTIONS(3805), - [anon_sym_SLASH] = ACTIONS(3805), - [anon_sym_PERCENT] = ACTIONS(3805), - [anon_sym_PIPE_PIPE] = ACTIONS(3807), - [anon_sym_AMP_AMP] = ACTIONS(3807), - [anon_sym_PIPE] = ACTIONS(3805), - [anon_sym_CARET] = ACTIONS(3805), - [anon_sym_AMP] = ACTIONS(3805), - [anon_sym_EQ_EQ] = ACTIONS(3807), - [anon_sym_BANG_EQ] = ACTIONS(3807), - [anon_sym_GT] = ACTIONS(3805), - [anon_sym_GT_EQ] = ACTIONS(3807), - [anon_sym_LT_EQ] = ACTIONS(3805), - [anon_sym_LT] = ACTIONS(3805), - [anon_sym_LT_LT] = ACTIONS(3805), - [anon_sym_GT_GT] = ACTIONS(3805), - [anon_sym_SEMI] = ACTIONS(3807), - [anon_sym_extern] = ACTIONS(3805), - [anon_sym___attribute__] = ACTIONS(3805), - [anon_sym_COLON_COLON] = ACTIONS(3807), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3807), - [anon_sym___declspec] = ACTIONS(3805), - [anon_sym___based] = ACTIONS(3805), - [anon_sym_LBRACE] = ACTIONS(3807), - [anon_sym_RBRACE] = ACTIONS(3807), - [anon_sym_LBRACK] = ACTIONS(3805), - [anon_sym_EQ] = ACTIONS(3805), - [anon_sym_static] = ACTIONS(3805), - [anon_sym_register] = ACTIONS(3805), - [anon_sym_inline] = ACTIONS(3805), - [anon_sym_thread_local] = ACTIONS(3805), - [anon_sym_const] = ACTIONS(3805), - [anon_sym_volatile] = ACTIONS(3805), - [anon_sym_restrict] = ACTIONS(3805), - [anon_sym__Atomic] = ACTIONS(3805), - [anon_sym_mutable] = ACTIONS(3805), - [anon_sym_constexpr] = ACTIONS(3805), - [anon_sym_constinit] = ACTIONS(3805), - [anon_sym_consteval] = ACTIONS(3805), - [anon_sym_QMARK] = ACTIONS(3807), - [anon_sym_STAR_EQ] = ACTIONS(3807), - [anon_sym_SLASH_EQ] = ACTIONS(3807), - [anon_sym_PERCENT_EQ] = ACTIONS(3807), - [anon_sym_PLUS_EQ] = ACTIONS(3807), - [anon_sym_DASH_EQ] = ACTIONS(3807), - [anon_sym_LT_LT_EQ] = ACTIONS(3807), - [anon_sym_GT_GT_EQ] = ACTIONS(3807), - [anon_sym_AMP_EQ] = ACTIONS(3807), - [anon_sym_CARET_EQ] = ACTIONS(3807), - [anon_sym_PIPE_EQ] = ACTIONS(3807), - [anon_sym_LT_EQ_GT] = ACTIONS(3807), - [anon_sym_DASH_DASH] = ACTIONS(3807), - [anon_sym_PLUS_PLUS] = ACTIONS(3807), - [anon_sym_DOT] = ACTIONS(3805), - [anon_sym_DASH_GT] = ACTIONS(3807), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3805), - [anon_sym_decltype] = ACTIONS(3805), - [anon_sym_virtual] = ACTIONS(3805), - [anon_sym_template] = ACTIONS(3805), - [anon_sym_operator] = ACTIONS(3805), + [1280] = { + [sym__expression] = STATE(3762), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_initializer_list] = STATE(6597), + [sym_initializer_pair] = STATE(6597), + [sym_subscript_designator] = STATE(5464), + [sym_field_designator] = STATE(5464), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_initializer_pair_repeat1] = STATE(5464), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_RBRACE] = ACTIONS(3397), + [anon_sym_LBRACK] = ACTIONS(3357), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(193), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), }, - [1711] = { - [sym_identifier] = ACTIONS(3811), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3813), - [anon_sym_COMMA] = ACTIONS(3813), - [anon_sym_RPAREN] = ACTIONS(3813), - [anon_sym_LPAREN2] = ACTIONS(3813), - [anon_sym_TILDE] = ACTIONS(3816), - [anon_sym_DASH] = ACTIONS(3818), - [anon_sym_PLUS] = ACTIONS(3818), - [anon_sym_STAR] = ACTIONS(3820), - [anon_sym_SLASH] = ACTIONS(3818), - [anon_sym_PERCENT] = ACTIONS(3818), - [anon_sym_PIPE_PIPE] = ACTIONS(3823), - [anon_sym_AMP_AMP] = ACTIONS(3813), - [anon_sym_PIPE] = ACTIONS(3818), - [anon_sym_CARET] = ACTIONS(3818), - [anon_sym_AMP] = ACTIONS(3820), - [anon_sym_EQ_EQ] = ACTIONS(3823), - [anon_sym_BANG_EQ] = ACTIONS(3823), - [anon_sym_GT] = ACTIONS(3818), - [anon_sym_GT_EQ] = ACTIONS(3823), - [anon_sym_LT_EQ] = ACTIONS(3818), - [anon_sym_LT] = ACTIONS(3818), - [anon_sym_LT_LT] = ACTIONS(3818), - [anon_sym_GT_GT] = ACTIONS(3818), - [anon_sym_extern] = ACTIONS(3811), - [anon_sym___attribute__] = ACTIONS(3811), - [anon_sym_COLON_COLON] = ACTIONS(3816), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3816), - [anon_sym___declspec] = ACTIONS(3811), - [anon_sym___based] = ACTIONS(3811), - [anon_sym_LBRACE] = ACTIONS(3816), - [anon_sym_LBRACK] = ACTIONS(3820), - [anon_sym_EQ] = ACTIONS(3820), - [anon_sym_static] = ACTIONS(3811), - [anon_sym_register] = ACTIONS(3811), - [anon_sym_inline] = ACTIONS(3811), - [anon_sym_thread_local] = ACTIONS(3811), - [anon_sym_const] = ACTIONS(3811), - [anon_sym_volatile] = ACTIONS(3811), - [anon_sym_restrict] = ACTIONS(3811), - [anon_sym__Atomic] = ACTIONS(3811), - [anon_sym_mutable] = ACTIONS(3811), - [anon_sym_constexpr] = ACTIONS(3811), - [anon_sym_constinit] = ACTIONS(3811), - [anon_sym_consteval] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3823), - [anon_sym_STAR_EQ] = ACTIONS(3823), - [anon_sym_SLASH_EQ] = ACTIONS(3823), - [anon_sym_PERCENT_EQ] = ACTIONS(3823), - [anon_sym_PLUS_EQ] = ACTIONS(3823), - [anon_sym_DASH_EQ] = ACTIONS(3823), - [anon_sym_LT_LT_EQ] = ACTIONS(3823), - [anon_sym_GT_GT_EQ] = ACTIONS(3823), - [anon_sym_AMP_EQ] = ACTIONS(3823), - [anon_sym_CARET_EQ] = ACTIONS(3823), - [anon_sym_PIPE_EQ] = ACTIONS(3823), - [anon_sym_LT_EQ_GT] = ACTIONS(3823), - [anon_sym_DASH_DASH] = ACTIONS(3823), - [anon_sym_PLUS_PLUS] = ACTIONS(3823), - [anon_sym_DOT] = ACTIONS(3818), - [anon_sym_DASH_GT] = ACTIONS(3818), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3811), - [anon_sym_decltype] = ACTIONS(3811), - [anon_sym_virtual] = ACTIONS(3811), - [anon_sym_template] = ACTIONS(3811), - [anon_sym_operator] = ACTIONS(3811), - [anon_sym_DOT_STAR] = ACTIONS(3823), - [anon_sym_DASH_GT_STAR] = ACTIONS(3823), + [1281] = { + [sym__expression] = STATE(3762), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_initializer_list] = STATE(6597), + [sym_initializer_pair] = STATE(6597), + [sym_subscript_designator] = STATE(5464), + [sym_field_designator] = STATE(5464), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_initializer_pair_repeat1] = STATE(5464), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_RBRACE] = ACTIONS(3373), + [anon_sym_LBRACK] = ACTIONS(3357), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(193), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), }, - [1712] = { - [sym_template_argument_list] = STATE(1861), - [sym_identifier] = ACTIONS(3714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3716), - [anon_sym_COMMA] = ACTIONS(3716), - [anon_sym_LPAREN2] = ACTIONS(3718), - [anon_sym_TILDE] = ACTIONS(3722), - [anon_sym_DASH] = ACTIONS(3724), - [anon_sym_PLUS] = ACTIONS(3724), - [anon_sym_STAR] = ACTIONS(3726), - [anon_sym_SLASH] = ACTIONS(3724), - [anon_sym_PERCENT] = ACTIONS(3724), - [anon_sym_PIPE_PIPE] = ACTIONS(3716), - [anon_sym_AMP_AMP] = ACTIONS(3729), - [anon_sym_PIPE] = ACTIONS(3724), - [anon_sym_CARET] = ACTIONS(3724), - [anon_sym_AMP] = ACTIONS(3726), - [anon_sym_EQ_EQ] = ACTIONS(3716), - [anon_sym_BANG_EQ] = ACTIONS(3716), - [anon_sym_GT] = ACTIONS(3724), - [anon_sym_GT_EQ] = ACTIONS(3716), - [anon_sym_LT_EQ] = ACTIONS(3724), - [anon_sym_LT] = ACTIONS(3732), - [anon_sym_LT_LT] = ACTIONS(3724), - [anon_sym_GT_GT] = ACTIONS(3724), - [anon_sym_SEMI] = ACTIONS(3729), - [anon_sym_extern] = ACTIONS(3714), - [anon_sym___attribute__] = ACTIONS(3714), - [anon_sym_COLON_COLON] = ACTIONS(3735), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3737), - [anon_sym___declspec] = ACTIONS(3714), - [anon_sym___based] = ACTIONS(3714), - [anon_sym_LBRACE] = ACTIONS(3740), - [anon_sym_LBRACK] = ACTIONS(3742), - [anon_sym_EQ] = ACTIONS(3746), - [anon_sym_static] = ACTIONS(3714), - [anon_sym_register] = ACTIONS(3714), - [anon_sym_inline] = ACTIONS(3714), - [anon_sym_thread_local] = ACTIONS(3714), - [anon_sym_const] = ACTIONS(3714), - [anon_sym_volatile] = ACTIONS(3714), - [anon_sym_restrict] = ACTIONS(3714), - [anon_sym__Atomic] = ACTIONS(3714), - [anon_sym_mutable] = ACTIONS(3714), - [anon_sym_constexpr] = ACTIONS(3714), - [anon_sym_constinit] = ACTIONS(3714), - [anon_sym_consteval] = ACTIONS(3714), - [anon_sym_COLON] = ACTIONS(3791), - [anon_sym_QMARK] = ACTIONS(3716), - [anon_sym_STAR_EQ] = ACTIONS(3750), - [anon_sym_SLASH_EQ] = ACTIONS(3750), - [anon_sym_PERCENT_EQ] = ACTIONS(3750), - [anon_sym_PLUS_EQ] = ACTIONS(3750), - [anon_sym_DASH_EQ] = ACTIONS(3750), - [anon_sym_LT_LT_EQ] = ACTIONS(3750), - [anon_sym_GT_GT_EQ] = ACTIONS(3750), - [anon_sym_AMP_EQ] = ACTIONS(3750), - [anon_sym_CARET_EQ] = ACTIONS(3750), - [anon_sym_PIPE_EQ] = ACTIONS(3750), - [anon_sym_LT_EQ_GT] = ACTIONS(3716), - [anon_sym_DASH_DASH] = ACTIONS(3716), - [anon_sym_PLUS_PLUS] = ACTIONS(3716), - [anon_sym_DOT] = ACTIONS(3724), - [anon_sym_DASH_GT] = ACTIONS(3716), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3714), - [anon_sym_decltype] = ACTIONS(3714), - [anon_sym_virtual] = ACTIONS(3714), - [anon_sym_template] = ACTIONS(3714), - [anon_sym_operator] = ACTIONS(3714), + [1282] = { + [sym__expression] = STATE(3762), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_initializer_list] = STATE(6597), + [sym_initializer_pair] = STATE(6597), + [sym_subscript_designator] = STATE(5464), + [sym_field_designator] = STATE(5464), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_initializer_pair_repeat1] = STATE(5464), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_RBRACE] = ACTIONS(3399), + [anon_sym_LBRACK] = ACTIONS(3357), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(193), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), }, - [1713] = { - [sym_function_definition] = STATE(1007), - [sym_declaration] = STATE(1007), - [sym__declaration_modifiers] = STATE(1894), - [sym__declaration_specifiers] = STATE(3967), - [sym_attribute_specifier] = STATE(1894), - [sym_attribute_declaration] = STATE(1894), - [sym_ms_declspec_modifier] = STATE(1894), - [sym_ms_call_modifier] = STATE(1829), - [sym_declaration_list] = STATE(1007), - [sym_storage_class_specifier] = STATE(1894), - [sym_type_qualifier] = STATE(1894), - [sym__type_specifier] = STATE(2596), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym_virtual_function_specifier] = STATE(1894), - [sym_dependent_type] = STATE(3139), - [sym_template_type] = STATE(2976), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(5131), - [sym_qualified_type_identifier] = STATE(3198), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [sym_identifier] = ACTIONS(3001), + [1283] = { + [sym__declaration_modifiers] = STATE(2203), + [sym__declaration_specifiers] = STATE(4270), + [sym_attribute_specifier] = STATE(2203), + [sym_attribute_declaration] = STATE(2203), + [sym_ms_declspec_modifier] = STATE(2203), + [sym_ms_based_modifier] = STATE(7250), + [sym__declarator] = STATE(5435), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(5080), + [sym_array_declarator] = STATE(5080), + [sym_storage_class_specifier] = STATE(2203), + [sym_type_qualifier] = STATE(2203), + [sym__type_specifier] = STATE(3251), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym_virtual_function_specifier] = STATE(2203), + [sym_dependent_type] = STATE(3481), + [sym_template_parameter_list] = STATE(1064), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(4151), + [sym_template_function] = STATE(5080), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4932), + [sym_qualified_identifier] = STATE(5080), + [sym_qualified_type_identifier] = STATE(3490), + [sym_operator_name] = STATE(5080), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [sym_identifier] = ACTIONS(3401), + [anon_sym_LPAREN2] = ACTIONS(1519), + [anon_sym_TILDE] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1523), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_LT] = ACTIONS(3403), [anon_sym_extern] = ACTIONS(55), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3007), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1389), + [anon_sym_COLON_COLON] = ACTIONS(3405), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), [anon_sym___declspec] = ACTIONS(45), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(3825), + [anon_sym___based] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1531), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), @@ -200631,7 +173372,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(2809), + [sym_primitive_type] = ACTIONS(2438), [anon_sym_enum] = ACTIONS(63), [anon_sym_class] = ACTIONS(65), [anon_sym_struct] = ACTIONS(67), @@ -200641,190 +173382,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_decltype] = ACTIONS(107), [anon_sym_virtual] = ACTIONS(109), [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(972), - }, - [1714] = { - [sym_template_argument_list] = STATE(1806), - [sym_identifier] = ACTIONS(3714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3729), - [anon_sym_COMMA] = ACTIONS(3729), - [anon_sym_RPAREN] = ACTIONS(3729), - [anon_sym_LPAREN2] = ACTIONS(3729), - [anon_sym_TILDE] = ACTIONS(3722), - [anon_sym_DASH] = ACTIONS(3724), - [anon_sym_PLUS] = ACTIONS(3724), - [anon_sym_STAR] = ACTIONS(3726), - [anon_sym_SLASH] = ACTIONS(3724), - [anon_sym_PERCENT] = ACTIONS(3724), - [anon_sym_PIPE_PIPE] = ACTIONS(3716), - [anon_sym_AMP_AMP] = ACTIONS(3729), - [anon_sym_PIPE] = ACTIONS(3724), - [anon_sym_CARET] = ACTIONS(3724), - [anon_sym_AMP] = ACTIONS(3726), - [anon_sym_EQ_EQ] = ACTIONS(3716), - [anon_sym_BANG_EQ] = ACTIONS(3716), - [anon_sym_GT] = ACTIONS(3724), - [anon_sym_GT_EQ] = ACTIONS(3716), - [anon_sym_LT_EQ] = ACTIONS(3724), - [anon_sym_LT] = ACTIONS(3732), - [anon_sym_LT_LT] = ACTIONS(3724), - [anon_sym_GT_GT] = ACTIONS(3724), - [anon_sym_extern] = ACTIONS(3714), - [anon_sym___attribute__] = ACTIONS(3714), - [anon_sym_COLON_COLON] = ACTIONS(3735), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3722), - [anon_sym___declspec] = ACTIONS(3714), - [anon_sym___based] = ACTIONS(3714), - [anon_sym_LBRACE] = ACTIONS(3740), - [anon_sym_LBRACK] = ACTIONS(3726), - [anon_sym_EQ] = ACTIONS(3714), - [anon_sym_static] = ACTIONS(3714), - [anon_sym_register] = ACTIONS(3714), - [anon_sym_inline] = ACTIONS(3714), - [anon_sym_thread_local] = ACTIONS(3714), - [anon_sym_const] = ACTIONS(3714), - [anon_sym_volatile] = ACTIONS(3714), - [anon_sym_restrict] = ACTIONS(3714), - [anon_sym__Atomic] = ACTIONS(3714), - [anon_sym_mutable] = ACTIONS(3714), - [anon_sym_constexpr] = ACTIONS(3714), - [anon_sym_constinit] = ACTIONS(3714), - [anon_sym_consteval] = ACTIONS(3714), - [anon_sym_QMARK] = ACTIONS(3716), - [anon_sym_STAR_EQ] = ACTIONS(3750), - [anon_sym_SLASH_EQ] = ACTIONS(3750), - [anon_sym_PERCENT_EQ] = ACTIONS(3750), - [anon_sym_PLUS_EQ] = ACTIONS(3750), - [anon_sym_DASH_EQ] = ACTIONS(3750), - [anon_sym_LT_LT_EQ] = ACTIONS(3750), - [anon_sym_GT_GT_EQ] = ACTIONS(3750), - [anon_sym_AMP_EQ] = ACTIONS(3750), - [anon_sym_CARET_EQ] = ACTIONS(3750), - [anon_sym_PIPE_EQ] = ACTIONS(3750), - [anon_sym_LT_EQ_GT] = ACTIONS(3716), - [anon_sym_DASH_DASH] = ACTIONS(3716), - [anon_sym_PLUS_PLUS] = ACTIONS(3716), - [anon_sym_DOT] = ACTIONS(3724), - [anon_sym_DASH_GT] = ACTIONS(3716), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3714), - [anon_sym_decltype] = ACTIONS(3714), - [anon_sym_virtual] = ACTIONS(3714), - [anon_sym_template] = ACTIONS(3714), - [anon_sym_operator] = ACTIONS(3714), - }, - [1715] = { - [sym_identifier] = ACTIONS(3811), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3823), - [anon_sym_COMMA] = ACTIONS(3823), - [anon_sym_LPAREN2] = ACTIONS(3813), - [anon_sym_TILDE] = ACTIONS(3816), - [anon_sym_DASH] = ACTIONS(3818), - [anon_sym_PLUS] = ACTIONS(3818), - [anon_sym_STAR] = ACTIONS(3820), - [anon_sym_SLASH] = ACTIONS(3818), - [anon_sym_PERCENT] = ACTIONS(3818), - [anon_sym_PIPE_PIPE] = ACTIONS(3823), - [anon_sym_AMP_AMP] = ACTIONS(3813), - [anon_sym_PIPE] = ACTIONS(3818), - [anon_sym_CARET] = ACTIONS(3818), - [anon_sym_AMP] = ACTIONS(3820), - [anon_sym_EQ_EQ] = ACTIONS(3823), - [anon_sym_BANG_EQ] = ACTIONS(3823), - [anon_sym_GT] = ACTIONS(3818), - [anon_sym_GT_EQ] = ACTIONS(3823), - [anon_sym_LT_EQ] = ACTIONS(3818), - [anon_sym_LT] = ACTIONS(3818), - [anon_sym_LT_LT] = ACTIONS(3818), - [anon_sym_GT_GT] = ACTIONS(3818), - [anon_sym_SEMI] = ACTIONS(3813), - [anon_sym_extern] = ACTIONS(3811), - [anon_sym___attribute__] = ACTIONS(3811), - [anon_sym_COLON_COLON] = ACTIONS(3816), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3813), - [anon_sym___declspec] = ACTIONS(3811), - [anon_sym___based] = ACTIONS(3811), - [anon_sym_LBRACE] = ACTIONS(3816), - [anon_sym_RBRACE] = ACTIONS(3823), - [anon_sym_LBRACK] = ACTIONS(3820), - [anon_sym_EQ] = ACTIONS(3818), - [anon_sym_static] = ACTIONS(3811), - [anon_sym_register] = ACTIONS(3811), - [anon_sym_inline] = ACTIONS(3811), - [anon_sym_thread_local] = ACTIONS(3811), - [anon_sym_const] = ACTIONS(3811), - [anon_sym_volatile] = ACTIONS(3811), - [anon_sym_restrict] = ACTIONS(3811), - [anon_sym__Atomic] = ACTIONS(3811), - [anon_sym_mutable] = ACTIONS(3811), - [anon_sym_constexpr] = ACTIONS(3811), - [anon_sym_constinit] = ACTIONS(3811), - [anon_sym_consteval] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3823), - [anon_sym_STAR_EQ] = ACTIONS(3823), - [anon_sym_SLASH_EQ] = ACTIONS(3823), - [anon_sym_PERCENT_EQ] = ACTIONS(3823), - [anon_sym_PLUS_EQ] = ACTIONS(3823), - [anon_sym_DASH_EQ] = ACTIONS(3823), - [anon_sym_LT_LT_EQ] = ACTIONS(3823), - [anon_sym_GT_GT_EQ] = ACTIONS(3823), - [anon_sym_AMP_EQ] = ACTIONS(3823), - [anon_sym_CARET_EQ] = ACTIONS(3823), - [anon_sym_PIPE_EQ] = ACTIONS(3823), - [anon_sym_LT_EQ_GT] = ACTIONS(3823), - [anon_sym_DASH_DASH] = ACTIONS(3823), - [anon_sym_PLUS_PLUS] = ACTIONS(3823), - [anon_sym_DOT] = ACTIONS(3818), - [anon_sym_DASH_GT] = ACTIONS(3823), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3811), - [anon_sym_decltype] = ACTIONS(3811), - [anon_sym_virtual] = ACTIONS(3811), - [anon_sym_template] = ACTIONS(3811), - [anon_sym_operator] = ACTIONS(3811), + [anon_sym_template] = ACTIONS(976), + [anon_sym_operator] = ACTIONS(1501), }, - [1716] = { - [sym_function_definition] = STATE(473), - [sym_declaration] = STATE(473), - [sym__declaration_modifiers] = STATE(1894), - [sym__declaration_specifiers] = STATE(3964), - [sym_attribute_specifier] = STATE(1894), - [sym_attribute_declaration] = STATE(1894), - [sym_ms_declspec_modifier] = STATE(1894), - [sym_ms_call_modifier] = STATE(1828), - [sym_declaration_list] = STATE(473), - [sym_storage_class_specifier] = STATE(1894), - [sym_type_qualifier] = STATE(1894), - [sym__type_specifier] = STATE(2596), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym_virtual_function_specifier] = STATE(1894), - [sym_dependent_type] = STATE(3139), - [sym_template_type] = STATE(2976), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(5131), - [sym_qualified_type_identifier] = STATE(3198), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [sym_identifier] = ACTIONS(3001), + [1284] = { + [sym__declaration_modifiers] = STATE(2203), + [sym__declaration_specifiers] = STATE(4278), + [sym_attribute_specifier] = STATE(2203), + [sym_attribute_declaration] = STATE(2203), + [sym_ms_declspec_modifier] = STATE(2203), + [sym_ms_based_modifier] = STATE(7250), + [sym__declarator] = STATE(5384), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(5080), + [sym_array_declarator] = STATE(5080), + [sym_storage_class_specifier] = STATE(2203), + [sym_type_qualifier] = STATE(2203), + [sym__type_specifier] = STATE(3251), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym_virtual_function_specifier] = STATE(2203), + [sym_dependent_type] = STATE(3481), + [sym_template_parameter_list] = STATE(1065), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(4151), + [sym_template_function] = STATE(5080), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4932), + [sym_qualified_identifier] = STATE(5080), + [sym_qualified_type_identifier] = STATE(3490), + [sym_operator_name] = STATE(5080), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [sym_identifier] = ACTIONS(3401), + [anon_sym_LPAREN2] = ACTIONS(1519), + [anon_sym_TILDE] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1523), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_LT] = ACTIONS(3403), [anon_sym_extern] = ACTIONS(55), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3007), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1389), + [anon_sym_COLON_COLON] = ACTIONS(3405), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), [anon_sym___declspec] = ACTIONS(45), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(3827), + [anon_sym___based] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1531), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), @@ -200841,7 +173454,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(2809), + [sym_primitive_type] = ACTIONS(2438), [anon_sym_enum] = ACTIONS(63), [anon_sym_class] = ACTIONS(65), [anon_sym_struct] = ACTIONS(67), @@ -200851,120 +173464,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_decltype] = ACTIONS(107), [anon_sym_virtual] = ACTIONS(109), [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(972), + [anon_sym_template] = ACTIONS(976), + [anon_sym_operator] = ACTIONS(1501), }, - [1717] = { - [sym_identifier] = ACTIONS(3811), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3823), - [anon_sym_COMMA] = ACTIONS(3823), - [anon_sym_RPAREN] = ACTIONS(3823), - [anon_sym_LPAREN2] = ACTIONS(3813), - [anon_sym_TILDE] = ACTIONS(3816), - [anon_sym_DASH] = ACTIONS(3818), - [anon_sym_PLUS] = ACTIONS(3818), - [anon_sym_STAR] = ACTIONS(3820), - [anon_sym_SLASH] = ACTIONS(3818), - [anon_sym_PERCENT] = ACTIONS(3818), - [anon_sym_PIPE_PIPE] = ACTIONS(3823), - [anon_sym_AMP_AMP] = ACTIONS(3813), - [anon_sym_PIPE] = ACTIONS(3818), - [anon_sym_CARET] = ACTIONS(3818), - [anon_sym_AMP] = ACTIONS(3820), - [anon_sym_EQ_EQ] = ACTIONS(3823), - [anon_sym_BANG_EQ] = ACTIONS(3823), - [anon_sym_GT] = ACTIONS(3818), - [anon_sym_GT_EQ] = ACTIONS(3823), - [anon_sym_LT_EQ] = ACTIONS(3818), - [anon_sym_LT] = ACTIONS(3818), - [anon_sym_LT_LT] = ACTIONS(3818), - [anon_sym_GT_GT] = ACTIONS(3818), - [anon_sym_SEMI] = ACTIONS(3823), - [anon_sym_extern] = ACTIONS(3811), - [anon_sym___attribute__] = ACTIONS(3811), - [anon_sym_COLON_COLON] = ACTIONS(3816), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3816), - [anon_sym___declspec] = ACTIONS(3811), - [anon_sym___based] = ACTIONS(3811), - [anon_sym_LBRACE] = ACTIONS(3816), - [anon_sym_LBRACK] = ACTIONS(3820), - [anon_sym_EQ] = ACTIONS(3818), - [anon_sym_static] = ACTIONS(3811), - [anon_sym_register] = ACTIONS(3811), - [anon_sym_inline] = ACTIONS(3811), - [anon_sym_thread_local] = ACTIONS(3811), - [anon_sym_const] = ACTIONS(3811), - [anon_sym_volatile] = ACTIONS(3811), - [anon_sym_restrict] = ACTIONS(3811), - [anon_sym__Atomic] = ACTIONS(3811), - [anon_sym_mutable] = ACTIONS(3811), - [anon_sym_constexpr] = ACTIONS(3811), - [anon_sym_constinit] = ACTIONS(3811), - [anon_sym_consteval] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3823), - [anon_sym_STAR_EQ] = ACTIONS(3823), - [anon_sym_SLASH_EQ] = ACTIONS(3823), - [anon_sym_PERCENT_EQ] = ACTIONS(3823), - [anon_sym_PLUS_EQ] = ACTIONS(3823), - [anon_sym_DASH_EQ] = ACTIONS(3823), - [anon_sym_LT_LT_EQ] = ACTIONS(3823), - [anon_sym_GT_GT_EQ] = ACTIONS(3823), - [anon_sym_AMP_EQ] = ACTIONS(3823), - [anon_sym_CARET_EQ] = ACTIONS(3823), - [anon_sym_PIPE_EQ] = ACTIONS(3823), - [anon_sym_LT_EQ_GT] = ACTIONS(3823), - [anon_sym_DASH_DASH] = ACTIONS(3823), - [anon_sym_PLUS_PLUS] = ACTIONS(3823), - [anon_sym_DOT] = ACTIONS(3818), - [anon_sym_DASH_GT] = ACTIONS(3823), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3811), - [anon_sym_decltype] = ACTIONS(3811), - [anon_sym_virtual] = ACTIONS(3811), - [anon_sym_template] = ACTIONS(3811), - [anon_sym_operator] = ACTIONS(3811), + [1285] = { + [sym__expression] = STATE(3762), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_initializer_list] = STATE(6597), + [sym_initializer_pair] = STATE(6597), + [sym_subscript_designator] = STATE(5464), + [sym_field_designator] = STATE(5464), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [aux_sym_initializer_pair_repeat1] = STATE(5464), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(3357), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [anon_sym_DOT] = ACTIONS(193), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), }, - [1718] = { - [sym_function_definition] = STATE(901), - [sym_declaration] = STATE(901), - [sym__declaration_modifiers] = STATE(1894), - [sym__declaration_specifiers] = STATE(4003), - [sym_attribute_specifier] = STATE(1894), - [sym_attribute_declaration] = STATE(1894), - [sym_ms_declspec_modifier] = STATE(1894), - [sym_ms_call_modifier] = STATE(1797), - [sym_declaration_list] = STATE(901), - [sym_storage_class_specifier] = STATE(1894), - [sym_type_qualifier] = STATE(1894), - [sym__type_specifier] = STATE(2596), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym_virtual_function_specifier] = STATE(1894), - [sym_dependent_type] = STATE(3139), - [sym_template_type] = STATE(2976), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(5131), - [sym_qualified_type_identifier] = STATE(3198), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [sym_identifier] = ACTIONS(3001), + [1286] = { + [sym__declaration_modifiers] = STATE(2203), + [sym__declaration_specifiers] = STATE(4310), + [sym_attribute_specifier] = STATE(2203), + [sym_attribute_declaration] = STATE(2203), + [sym_ms_declspec_modifier] = STATE(2203), + [sym_ms_based_modifier] = STATE(7250), + [sym__declarator] = STATE(5409), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(5080), + [sym_array_declarator] = STATE(5080), + [sym_storage_class_specifier] = STATE(2203), + [sym_type_qualifier] = STATE(2203), + [sym__type_specifier] = STATE(3251), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym_virtual_function_specifier] = STATE(2203), + [sym_dependent_type] = STATE(3481), + [sym_template_parameter_list] = STATE(1069), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(4151), + [sym_template_function] = STATE(5080), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4932), + [sym_qualified_identifier] = STATE(5080), + [sym_qualified_type_identifier] = STATE(3490), + [sym_operator_name] = STATE(5080), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [sym_identifier] = ACTIONS(3401), + [anon_sym_LPAREN2] = ACTIONS(1519), + [anon_sym_TILDE] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1523), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_LT] = ACTIONS(3403), [anon_sym_extern] = ACTIONS(55), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3007), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1389), + [anon_sym_COLON_COLON] = ACTIONS(3405), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), [anon_sym___declspec] = ACTIONS(45), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(3829), + [anon_sym___based] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1531), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), @@ -200981,7 +173618,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(2809), + [sym_primitive_type] = ACTIONS(2438), [anon_sym_enum] = ACTIONS(63), [anon_sym_class] = ACTIONS(65), [anon_sym_struct] = ACTIONS(67), @@ -200991,50 +173628,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_decltype] = ACTIONS(107), [anon_sym_virtual] = ACTIONS(109), [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(972), + [anon_sym_template] = ACTIONS(976), + [anon_sym_operator] = ACTIONS(1501), }, - [1719] = { - [sym_function_definition] = STATE(925), - [sym_declaration] = STATE(925), - [sym__declaration_modifiers] = STATE(1894), - [sym__declaration_specifiers] = STATE(3994), - [sym_attribute_specifier] = STATE(1894), - [sym_attribute_declaration] = STATE(1894), - [sym_ms_declspec_modifier] = STATE(1894), - [sym_ms_call_modifier] = STATE(1868), - [sym_declaration_list] = STATE(925), - [sym_storage_class_specifier] = STATE(1894), - [sym_type_qualifier] = STATE(1894), - [sym__type_specifier] = STATE(2596), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym_virtual_function_specifier] = STATE(1894), - [sym_dependent_type] = STATE(3139), - [sym_template_type] = STATE(2976), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(5131), - [sym_qualified_type_identifier] = STATE(3198), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [sym_identifier] = ACTIONS(3001), + [1287] = { + [sym__declaration_modifiers] = STATE(2203), + [sym__declaration_specifiers] = STATE(4304), + [sym_attribute_specifier] = STATE(2203), + [sym_attribute_declaration] = STATE(2203), + [sym_ms_declspec_modifier] = STATE(2203), + [sym_ms_based_modifier] = STATE(7250), + [sym__declarator] = STATE(5389), + [sym_parenthesized_declarator] = STATE(5080), + [sym_attributed_declarator] = STATE(5080), + [sym_pointer_declarator] = STATE(5080), + [sym_function_declarator] = STATE(5080), + [sym_array_declarator] = STATE(5080), + [sym_storage_class_specifier] = STATE(2203), + [sym_type_qualifier] = STATE(2203), + [sym__type_specifier] = STATE(3251), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym_virtual_function_specifier] = STATE(2203), + [sym_dependent_type] = STATE(3481), + [sym_template_parameter_list] = STATE(1062), + [sym_reference_declarator] = STATE(5080), + [sym_structured_binding_declarator] = STATE(5080), + [sym_template_type] = STATE(4151), + [sym_template_function] = STATE(5080), + [sym_destructor_name] = STATE(5080), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4932), + [sym_qualified_identifier] = STATE(5080), + [sym_qualified_type_identifier] = STATE(3490), + [sym_operator_name] = STATE(5080), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [sym_identifier] = ACTIONS(3401), + [anon_sym_LPAREN2] = ACTIONS(1519), + [anon_sym_TILDE] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1523), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_LT] = ACTIONS(3403), [anon_sym_extern] = ACTIONS(55), [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3007), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1389), + [anon_sym_COLON_COLON] = ACTIONS(3405), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), [anon_sym___declspec] = ACTIONS(45), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_LBRACE] = ACTIONS(3831), + [anon_sym___based] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1531), [anon_sym_static] = ACTIONS(55), [anon_sym_register] = ACTIONS(55), [anon_sym_inline] = ACTIONS(55), @@ -201051,7 +173700,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(2809), + [sym_primitive_type] = ACTIONS(2438), [anon_sym_enum] = ACTIONS(63), [anon_sym_class] = ACTIONS(65), [anon_sym_struct] = ACTIONS(67), @@ -201061,803 +173710,47130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_decltype] = ACTIONS(107), [anon_sym_virtual] = ACTIONS(109), [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(972), + [anon_sym_template] = ACTIONS(976), + [anon_sym_operator] = ACTIONS(1501), }, - [1720] = { - [sym_template_argument_list] = STATE(1721), - [sym_identifier] = ACTIONS(3752), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3754), - [anon_sym_COMMA] = ACTIONS(3754), - [anon_sym_RPAREN] = ACTIONS(3754), - [anon_sym_LPAREN2] = ACTIONS(3754), - [anon_sym_TILDE] = ACTIONS(3757), - [anon_sym_DASH] = ACTIONS(3759), - [anon_sym_PLUS] = ACTIONS(3759), - [anon_sym_STAR] = ACTIONS(3761), - [anon_sym_SLASH] = ACTIONS(3759), - [anon_sym_PERCENT] = ACTIONS(3759), - [anon_sym_PIPE_PIPE] = ACTIONS(3764), - [anon_sym_AMP_AMP] = ACTIONS(3754), - [anon_sym_PIPE] = ACTIONS(3759), - [anon_sym_CARET] = ACTIONS(3759), - [anon_sym_AMP] = ACTIONS(3761), - [anon_sym_EQ_EQ] = ACTIONS(3764), - [anon_sym_BANG_EQ] = ACTIONS(3764), - [anon_sym_GT] = ACTIONS(3759), - [anon_sym_GT_EQ] = ACTIONS(3764), - [anon_sym_LT_EQ] = ACTIONS(3759), - [anon_sym_LT] = ACTIONS(3788), - [anon_sym_LT_LT] = ACTIONS(3759), - [anon_sym_GT_GT] = ACTIONS(3759), - [anon_sym_extern] = ACTIONS(3752), - [anon_sym___attribute__] = ACTIONS(3752), - [anon_sym_COLON_COLON] = ACTIONS(3735), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3757), - [anon_sym___declspec] = ACTIONS(3752), - [anon_sym___based] = ACTIONS(3752), - [anon_sym_LBRACE] = ACTIONS(3757), - [anon_sym_LBRACK] = ACTIONS(3761), - [anon_sym_EQ] = ACTIONS(3761), - [anon_sym_static] = ACTIONS(3752), - [anon_sym_register] = ACTIONS(3752), - [anon_sym_inline] = ACTIONS(3752), - [anon_sym_thread_local] = ACTIONS(3752), - [anon_sym_const] = ACTIONS(3752), - [anon_sym_volatile] = ACTIONS(3752), - [anon_sym_restrict] = ACTIONS(3752), - [anon_sym__Atomic] = ACTIONS(3752), - [anon_sym_mutable] = ACTIONS(3752), - [anon_sym_constexpr] = ACTIONS(3752), - [anon_sym_constinit] = ACTIONS(3752), - [anon_sym_consteval] = ACTIONS(3752), - [anon_sym_QMARK] = ACTIONS(3764), - [anon_sym_STAR_EQ] = ACTIONS(3764), - [anon_sym_SLASH_EQ] = ACTIONS(3764), - [anon_sym_PERCENT_EQ] = ACTIONS(3764), - [anon_sym_PLUS_EQ] = ACTIONS(3764), - [anon_sym_DASH_EQ] = ACTIONS(3764), - [anon_sym_LT_LT_EQ] = ACTIONS(3764), - [anon_sym_GT_GT_EQ] = ACTIONS(3764), - [anon_sym_AMP_EQ] = ACTIONS(3764), - [anon_sym_CARET_EQ] = ACTIONS(3764), - [anon_sym_PIPE_EQ] = ACTIONS(3764), - [anon_sym_LT_EQ_GT] = ACTIONS(3764), - [anon_sym_DASH_DASH] = ACTIONS(3764), - [anon_sym_PLUS_PLUS] = ACTIONS(3764), - [anon_sym_DOT] = ACTIONS(3759), - [anon_sym_DASH_GT] = ACTIONS(3764), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3752), - [anon_sym_decltype] = ACTIONS(3752), - [anon_sym_virtual] = ACTIONS(3752), - [anon_sym_template] = ACTIONS(3752), - [anon_sym_operator] = ACTIONS(3752), + [1288] = { + [sym_template_argument_list] = STATE(1397), + [sym_identifier] = ACTIONS(3407), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3409), + [anon_sym_COMMA] = ACTIONS(3409), + [anon_sym_RPAREN] = ACTIONS(3409), + [anon_sym_LPAREN2] = ACTIONS(3409), + [anon_sym_TILDE] = ACTIONS(3412), + [anon_sym_DASH] = ACTIONS(3414), + [anon_sym_PLUS] = ACTIONS(3414), + [anon_sym_STAR] = ACTIONS(3416), + [anon_sym_SLASH] = ACTIONS(3414), + [anon_sym_PERCENT] = ACTIONS(3414), + [anon_sym_PIPE_PIPE] = ACTIONS(3419), + [anon_sym_AMP_AMP] = ACTIONS(3409), + [anon_sym_PIPE] = ACTIONS(3414), + [anon_sym_CARET] = ACTIONS(3414), + [anon_sym_AMP] = ACTIONS(3416), + [anon_sym_EQ_EQ] = ACTIONS(3419), + [anon_sym_BANG_EQ] = ACTIONS(3419), + [anon_sym_GT] = ACTIONS(3414), + [anon_sym_GT_EQ] = ACTIONS(3419), + [anon_sym_LT_EQ] = ACTIONS(3414), + [anon_sym_LT] = ACTIONS(3421), + [anon_sym_LT_LT] = ACTIONS(3414), + [anon_sym_GT_GT] = ACTIONS(3414), + [anon_sym_extern] = ACTIONS(3407), + [anon_sym___attribute__] = ACTIONS(3407), + [anon_sym_COLON_COLON] = ACTIONS(3424), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3412), + [anon_sym___declspec] = ACTIONS(3407), + [anon_sym___based] = ACTIONS(3407), + [anon_sym_LBRACE] = ACTIONS(3426), + [anon_sym_LBRACK] = ACTIONS(3416), + [anon_sym_EQ] = ACTIONS(3416), + [anon_sym_static] = ACTIONS(3407), + [anon_sym_register] = ACTIONS(3407), + [anon_sym_inline] = ACTIONS(3407), + [anon_sym_thread_local] = ACTIONS(3407), + [anon_sym_const] = ACTIONS(3407), + [anon_sym_volatile] = ACTIONS(3407), + [anon_sym_restrict] = ACTIONS(3407), + [anon_sym__Atomic] = ACTIONS(3407), + [anon_sym_mutable] = ACTIONS(3407), + [anon_sym_constexpr] = ACTIONS(3407), + [anon_sym_constinit] = ACTIONS(3407), + [anon_sym_consteval] = ACTIONS(3407), + [anon_sym_QMARK] = ACTIONS(3419), + [anon_sym_STAR_EQ] = ACTIONS(3419), + [anon_sym_SLASH_EQ] = ACTIONS(3419), + [anon_sym_PERCENT_EQ] = ACTIONS(3419), + [anon_sym_PLUS_EQ] = ACTIONS(3419), + [anon_sym_DASH_EQ] = ACTIONS(3419), + [anon_sym_LT_LT_EQ] = ACTIONS(3419), + [anon_sym_GT_GT_EQ] = ACTIONS(3419), + [anon_sym_AMP_EQ] = ACTIONS(3419), + [anon_sym_CARET_EQ] = ACTIONS(3419), + [anon_sym_PIPE_EQ] = ACTIONS(3419), + [anon_sym_and_eq] = ACTIONS(3428), + [anon_sym_or_eq] = ACTIONS(3428), + [anon_sym_xor_eq] = ACTIONS(3428), + [anon_sym_LT_EQ_GT] = ACTIONS(3419), + [anon_sym_or] = ACTIONS(3414), + [anon_sym_and] = ACTIONS(3414), + [anon_sym_bitor] = ACTIONS(3414), + [anon_sym_xor] = ACTIONS(3414), + [anon_sym_bitand] = ACTIONS(3414), + [anon_sym_not_eq] = ACTIONS(3414), + [anon_sym_DASH_DASH] = ACTIONS(3419), + [anon_sym_PLUS_PLUS] = ACTIONS(3419), + [anon_sym_DOT] = ACTIONS(3414), + [anon_sym_DASH_GT] = ACTIONS(3414), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3407), + [anon_sym_decltype] = ACTIONS(3407), + [anon_sym_virtual] = ACTIONS(3407), + [anon_sym_template] = ACTIONS(3407), + [anon_sym_operator] = ACTIONS(3407), + [anon_sym_DOT_STAR] = ACTIONS(3419), + [anon_sym_DASH_GT_STAR] = ACTIONS(3419), }, - [1721] = { - [sym_identifier] = ACTIONS(3811), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3813), - [anon_sym_COMMA] = ACTIONS(3813), - [anon_sym_RPAREN] = ACTIONS(3813), - [anon_sym_LPAREN2] = ACTIONS(3813), - [anon_sym_TILDE] = ACTIONS(3816), - [anon_sym_DASH] = ACTIONS(3818), - [anon_sym_PLUS] = ACTIONS(3818), - [anon_sym_STAR] = ACTIONS(3820), - [anon_sym_SLASH] = ACTIONS(3818), - [anon_sym_PERCENT] = ACTIONS(3818), - [anon_sym_PIPE_PIPE] = ACTIONS(3823), - [anon_sym_AMP_AMP] = ACTIONS(3813), - [anon_sym_PIPE] = ACTIONS(3818), - [anon_sym_CARET] = ACTIONS(3818), - [anon_sym_AMP] = ACTIONS(3820), - [anon_sym_EQ_EQ] = ACTIONS(3823), - [anon_sym_BANG_EQ] = ACTIONS(3823), - [anon_sym_GT] = ACTIONS(3818), - [anon_sym_GT_EQ] = ACTIONS(3823), - [anon_sym_LT_EQ] = ACTIONS(3818), - [anon_sym_LT] = ACTIONS(3818), - [anon_sym_LT_LT] = ACTIONS(3818), - [anon_sym_GT_GT] = ACTIONS(3818), - [anon_sym_extern] = ACTIONS(3811), - [anon_sym___attribute__] = ACTIONS(3811), - [anon_sym_COLON_COLON] = ACTIONS(3816), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3816), - [anon_sym___declspec] = ACTIONS(3811), - [anon_sym___based] = ACTIONS(3811), - [anon_sym_LBRACE] = ACTIONS(3816), - [anon_sym_LBRACK] = ACTIONS(3820), - [anon_sym_EQ] = ACTIONS(3820), - [anon_sym_static] = ACTIONS(3811), - [anon_sym_register] = ACTIONS(3811), - [anon_sym_inline] = ACTIONS(3811), - [anon_sym_thread_local] = ACTIONS(3811), - [anon_sym_const] = ACTIONS(3811), - [anon_sym_volatile] = ACTIONS(3811), - [anon_sym_restrict] = ACTIONS(3811), - [anon_sym__Atomic] = ACTIONS(3811), - [anon_sym_mutable] = ACTIONS(3811), - [anon_sym_constexpr] = ACTIONS(3811), - [anon_sym_constinit] = ACTIONS(3811), - [anon_sym_consteval] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3823), - [anon_sym_STAR_EQ] = ACTIONS(3823), - [anon_sym_SLASH_EQ] = ACTIONS(3823), - [anon_sym_PERCENT_EQ] = ACTIONS(3823), - [anon_sym_PLUS_EQ] = ACTIONS(3823), - [anon_sym_DASH_EQ] = ACTIONS(3823), - [anon_sym_LT_LT_EQ] = ACTIONS(3823), - [anon_sym_GT_GT_EQ] = ACTIONS(3823), - [anon_sym_AMP_EQ] = ACTIONS(3823), - [anon_sym_CARET_EQ] = ACTIONS(3823), - [anon_sym_PIPE_EQ] = ACTIONS(3823), - [anon_sym_LT_EQ_GT] = ACTIONS(3823), - [anon_sym_DASH_DASH] = ACTIONS(3823), - [anon_sym_PLUS_PLUS] = ACTIONS(3823), - [anon_sym_DOT] = ACTIONS(3818), - [anon_sym_DASH_GT] = ACTIONS(3823), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3811), - [anon_sym_decltype] = ACTIONS(3811), - [anon_sym_virtual] = ACTIONS(3811), - [anon_sym_template] = ACTIONS(3811), - [anon_sym_operator] = ACTIONS(3811), + [1289] = { + [sym_template_argument_list] = STATE(1293), + [sym_identifier] = ACTIONS(3430), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3432), + [anon_sym_COMMA] = ACTIONS(3432), + [anon_sym_RPAREN] = ACTIONS(3432), + [anon_sym_LPAREN2] = ACTIONS(3432), + [anon_sym_TILDE] = ACTIONS(3435), + [anon_sym_DASH] = ACTIONS(3437), + [anon_sym_PLUS] = ACTIONS(3437), + [anon_sym_STAR] = ACTIONS(3439), + [anon_sym_SLASH] = ACTIONS(3437), + [anon_sym_PERCENT] = ACTIONS(3437), + [anon_sym_PIPE_PIPE] = ACTIONS(3442), + [anon_sym_AMP_AMP] = ACTIONS(3432), + [anon_sym_PIPE] = ACTIONS(3437), + [anon_sym_CARET] = ACTIONS(3437), + [anon_sym_AMP] = ACTIONS(3439), + [anon_sym_EQ_EQ] = ACTIONS(3442), + [anon_sym_BANG_EQ] = ACTIONS(3442), + [anon_sym_GT] = ACTIONS(3437), + [anon_sym_GT_EQ] = ACTIONS(3442), + [anon_sym_LT_EQ] = ACTIONS(3437), + [anon_sym_LT] = ACTIONS(3444), + [anon_sym_LT_LT] = ACTIONS(3437), + [anon_sym_GT_GT] = ACTIONS(3437), + [anon_sym_extern] = ACTIONS(3430), + [anon_sym___attribute__] = ACTIONS(3430), + [anon_sym_COLON_COLON] = ACTIONS(3424), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3435), + [anon_sym___declspec] = ACTIONS(3430), + [anon_sym___based] = ACTIONS(3430), + [anon_sym_LBRACE] = ACTIONS(3435), + [anon_sym_LBRACK] = ACTIONS(3439), + [anon_sym_EQ] = ACTIONS(3439), + [anon_sym_static] = ACTIONS(3430), + [anon_sym_register] = ACTIONS(3430), + [anon_sym_inline] = ACTIONS(3430), + [anon_sym_thread_local] = ACTIONS(3430), + [anon_sym_const] = ACTIONS(3430), + [anon_sym_volatile] = ACTIONS(3430), + [anon_sym_restrict] = ACTIONS(3430), + [anon_sym__Atomic] = ACTIONS(3430), + [anon_sym_mutable] = ACTIONS(3430), + [anon_sym_constexpr] = ACTIONS(3430), + [anon_sym_constinit] = ACTIONS(3430), + [anon_sym_consteval] = ACTIONS(3430), + [anon_sym_QMARK] = ACTIONS(3442), + [anon_sym_STAR_EQ] = ACTIONS(3442), + [anon_sym_SLASH_EQ] = ACTIONS(3442), + [anon_sym_PERCENT_EQ] = ACTIONS(3442), + [anon_sym_PLUS_EQ] = ACTIONS(3442), + [anon_sym_DASH_EQ] = ACTIONS(3442), + [anon_sym_LT_LT_EQ] = ACTIONS(3442), + [anon_sym_GT_GT_EQ] = ACTIONS(3442), + [anon_sym_AMP_EQ] = ACTIONS(3442), + [anon_sym_CARET_EQ] = ACTIONS(3442), + [anon_sym_PIPE_EQ] = ACTIONS(3442), + [anon_sym_and_eq] = ACTIONS(3437), + [anon_sym_or_eq] = ACTIONS(3437), + [anon_sym_xor_eq] = ACTIONS(3437), + [anon_sym_LT_EQ_GT] = ACTIONS(3442), + [anon_sym_or] = ACTIONS(3437), + [anon_sym_and] = ACTIONS(3437), + [anon_sym_bitor] = ACTIONS(3437), + [anon_sym_xor] = ACTIONS(3437), + [anon_sym_bitand] = ACTIONS(3437), + [anon_sym_not_eq] = ACTIONS(3437), + [anon_sym_DASH_DASH] = ACTIONS(3442), + [anon_sym_PLUS_PLUS] = ACTIONS(3442), + [anon_sym_DOT] = ACTIONS(3437), + [anon_sym_DASH_GT] = ACTIONS(3437), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3430), + [anon_sym_decltype] = ACTIONS(3430), + [anon_sym_virtual] = ACTIONS(3430), + [anon_sym_template] = ACTIONS(3430), + [anon_sym_operator] = ACTIONS(3430), + [anon_sym_DOT_STAR] = ACTIONS(3442), + [anon_sym_DASH_GT_STAR] = ACTIONS(3442), }, - [1722] = { - [sym_function_definition] = STATE(1822), - [sym_declaration] = STATE(1822), - [sym__declaration_modifiers] = STATE(1894), - [sym__declaration_specifiers] = STATE(3965), - [sym_attribute_specifier] = STATE(1894), - [sym_attribute_declaration] = STATE(1894), - [sym_ms_declspec_modifier] = STATE(1894), - [sym_ms_call_modifier] = STATE(1874), - [sym_storage_class_specifier] = STATE(1894), - [sym_type_qualifier] = STATE(1894), - [sym__type_specifier] = STATE(2596), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6383), - [sym_virtual_function_specifier] = STATE(1894), - [sym_dependent_type] = STATE(3139), - [sym_template_type] = STATE(3514), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(5131), - [sym_qualified_type_identifier] = STATE(3545), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [sym_identifier] = ACTIONS(3833), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3007), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1389), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(2809), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(3835), - [anon_sym_struct] = ACTIONS(3837), - [anon_sym_union] = ACTIONS(3839), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(105), - [anon_sym_decltype] = ACTIONS(107), - [anon_sym_virtual] = ACTIONS(109), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(972), + [1290] = { + [sym_template_argument_list] = STATE(1825), + [sym_identifier] = ACTIONS(3407), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3419), + [anon_sym_COMMA] = ACTIONS(3419), + [anon_sym_LPAREN2] = ACTIONS(3447), + [anon_sym_TILDE] = ACTIONS(3412), + [anon_sym_DASH] = ACTIONS(3414), + [anon_sym_PLUS] = ACTIONS(3414), + [anon_sym_STAR] = ACTIONS(3416), + [anon_sym_SLASH] = ACTIONS(3414), + [anon_sym_PERCENT] = ACTIONS(3414), + [anon_sym_PIPE_PIPE] = ACTIONS(3419), + [anon_sym_AMP_AMP] = ACTIONS(3409), + [anon_sym_PIPE] = ACTIONS(3414), + [anon_sym_CARET] = ACTIONS(3414), + [anon_sym_AMP] = ACTIONS(3416), + [anon_sym_EQ_EQ] = ACTIONS(3419), + [anon_sym_BANG_EQ] = ACTIONS(3419), + [anon_sym_GT] = ACTIONS(3414), + [anon_sym_GT_EQ] = ACTIONS(3419), + [anon_sym_LT_EQ] = ACTIONS(3414), + [anon_sym_LT] = ACTIONS(3451), + [anon_sym_LT_LT] = ACTIONS(3414), + [anon_sym_GT_GT] = ACTIONS(3414), + [anon_sym_SEMI] = ACTIONS(3409), + [anon_sym_extern] = ACTIONS(3407), + [anon_sym___attribute__] = ACTIONS(3407), + [anon_sym_COLON_COLON] = ACTIONS(3424), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3454), + [anon_sym___declspec] = ACTIONS(3407), + [anon_sym___based] = ACTIONS(3407), + [anon_sym_LBRACE] = ACTIONS(3426), + [anon_sym_RBRACE] = ACTIONS(3419), + [anon_sym_LBRACK] = ACTIONS(3457), + [anon_sym_EQ] = ACTIONS(3461), + [anon_sym_static] = ACTIONS(3407), + [anon_sym_register] = ACTIONS(3407), + [anon_sym_inline] = ACTIONS(3407), + [anon_sym_thread_local] = ACTIONS(3407), + [anon_sym_const] = ACTIONS(3407), + [anon_sym_volatile] = ACTIONS(3407), + [anon_sym_restrict] = ACTIONS(3407), + [anon_sym__Atomic] = ACTIONS(3407), + [anon_sym_mutable] = ACTIONS(3407), + [anon_sym_constexpr] = ACTIONS(3407), + [anon_sym_constinit] = ACTIONS(3407), + [anon_sym_consteval] = ACTIONS(3407), + [anon_sym_COLON] = ACTIONS(3463), + [anon_sym_QMARK] = ACTIONS(3419), + [anon_sym_STAR_EQ] = ACTIONS(3465), + [anon_sym_SLASH_EQ] = ACTIONS(3465), + [anon_sym_PERCENT_EQ] = ACTIONS(3465), + [anon_sym_PLUS_EQ] = ACTIONS(3465), + [anon_sym_DASH_EQ] = ACTIONS(3465), + [anon_sym_LT_LT_EQ] = ACTIONS(3465), + [anon_sym_GT_GT_EQ] = ACTIONS(3465), + [anon_sym_AMP_EQ] = ACTIONS(3465), + [anon_sym_CARET_EQ] = ACTIONS(3465), + [anon_sym_PIPE_EQ] = ACTIONS(3465), + [anon_sym_and_eq] = ACTIONS(3461), + [anon_sym_or_eq] = ACTIONS(3461), + [anon_sym_xor_eq] = ACTIONS(3461), + [anon_sym_LT_EQ_GT] = ACTIONS(3419), + [anon_sym_or] = ACTIONS(3414), + [anon_sym_and] = ACTIONS(3414), + [anon_sym_bitor] = ACTIONS(3414), + [anon_sym_xor] = ACTIONS(3414), + [anon_sym_bitand] = ACTIONS(3414), + [anon_sym_not_eq] = ACTIONS(3414), + [anon_sym_DASH_DASH] = ACTIONS(3419), + [anon_sym_PLUS_PLUS] = ACTIONS(3419), + [anon_sym_DOT] = ACTIONS(3414), + [anon_sym_DASH_GT] = ACTIONS(3419), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3407), + [anon_sym_decltype] = ACTIONS(3407), + [anon_sym_virtual] = ACTIONS(3407), + [anon_sym_template] = ACTIONS(3407), + [anon_sym_operator] = ACTIONS(3407), }, - [1723] = { - [sym_function_definition] = STATE(1921), - [sym_declaration] = STATE(1921), - [sym__declaration_modifiers] = STATE(1894), - [sym__declaration_specifiers] = STATE(3993), - [sym_attribute_specifier] = STATE(1894), - [sym_attribute_declaration] = STATE(1894), - [sym_ms_declspec_modifier] = STATE(1894), - [sym_ms_call_modifier] = STATE(1875), - [sym_storage_class_specifier] = STATE(1894), - [sym_type_qualifier] = STATE(1894), - [sym__type_specifier] = STATE(2596), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6671), - [sym_virtual_function_specifier] = STATE(1894), - [sym_dependent_type] = STATE(3139), - [sym_template_type] = STATE(3514), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(5131), - [sym_qualified_type_identifier] = STATE(3545), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [sym_identifier] = ACTIONS(3833), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3007), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1389), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(2809), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(3841), - [anon_sym_struct] = ACTIONS(3843), - [anon_sym_union] = ACTIONS(3845), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(105), - [anon_sym_decltype] = ACTIONS(107), - [anon_sym_virtual] = ACTIONS(109), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(972), + [1291] = { + [sym_identifier] = ACTIONS(3467), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3469), + [anon_sym_COMMA] = ACTIONS(3469), + [anon_sym_RPAREN] = ACTIONS(3469), + [anon_sym_LPAREN2] = ACTIONS(3469), + [anon_sym_TILDE] = ACTIONS(3469), + [anon_sym_DASH] = ACTIONS(3467), + [anon_sym_PLUS] = ACTIONS(3467), + [anon_sym_STAR] = ACTIONS(3467), + [anon_sym_SLASH] = ACTIONS(3467), + [anon_sym_PERCENT] = ACTIONS(3467), + [anon_sym_PIPE_PIPE] = ACTIONS(3469), + [anon_sym_AMP_AMP] = ACTIONS(3469), + [anon_sym_PIPE] = ACTIONS(3467), + [anon_sym_CARET] = ACTIONS(3467), + [anon_sym_AMP] = ACTIONS(3467), + [anon_sym_EQ_EQ] = ACTIONS(3469), + [anon_sym_BANG_EQ] = ACTIONS(3469), + [anon_sym_GT] = ACTIONS(3467), + [anon_sym_GT_EQ] = ACTIONS(3469), + [anon_sym_LT_EQ] = ACTIONS(3467), + [anon_sym_LT] = ACTIONS(3467), + [anon_sym_LT_LT] = ACTIONS(3467), + [anon_sym_GT_GT] = ACTIONS(3467), + [anon_sym_SEMI] = ACTIONS(3469), + [anon_sym_extern] = ACTIONS(3467), + [anon_sym___attribute__] = ACTIONS(3467), + [anon_sym_COLON_COLON] = ACTIONS(3469), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3469), + [anon_sym___declspec] = ACTIONS(3467), + [anon_sym___based] = ACTIONS(3467), + [anon_sym_LBRACE] = ACTIONS(3469), + [anon_sym_RBRACE] = ACTIONS(3469), + [anon_sym_LBRACK] = ACTIONS(3467), + [anon_sym_EQ] = ACTIONS(3467), + [anon_sym_static] = ACTIONS(3467), + [anon_sym_register] = ACTIONS(3467), + [anon_sym_inline] = ACTIONS(3467), + [anon_sym_thread_local] = ACTIONS(3467), + [anon_sym_const] = ACTIONS(3467), + [anon_sym_volatile] = ACTIONS(3467), + [anon_sym_restrict] = ACTIONS(3467), + [anon_sym__Atomic] = ACTIONS(3467), + [anon_sym_mutable] = ACTIONS(3467), + [anon_sym_constexpr] = ACTIONS(3467), + [anon_sym_constinit] = ACTIONS(3467), + [anon_sym_consteval] = ACTIONS(3467), + [anon_sym_QMARK] = ACTIONS(3469), + [anon_sym_STAR_EQ] = ACTIONS(3469), + [anon_sym_SLASH_EQ] = ACTIONS(3469), + [anon_sym_PERCENT_EQ] = ACTIONS(3469), + [anon_sym_PLUS_EQ] = ACTIONS(3469), + [anon_sym_DASH_EQ] = ACTIONS(3469), + [anon_sym_LT_LT_EQ] = ACTIONS(3469), + [anon_sym_GT_GT_EQ] = ACTIONS(3469), + [anon_sym_AMP_EQ] = ACTIONS(3469), + [anon_sym_CARET_EQ] = ACTIONS(3469), + [anon_sym_PIPE_EQ] = ACTIONS(3469), + [anon_sym_and_eq] = ACTIONS(3467), + [anon_sym_or_eq] = ACTIONS(3467), + [anon_sym_xor_eq] = ACTIONS(3467), + [anon_sym_LT_EQ_GT] = ACTIONS(3469), + [anon_sym_or] = ACTIONS(3467), + [anon_sym_and] = ACTIONS(3467), + [anon_sym_bitor] = ACTIONS(3467), + [anon_sym_xor] = ACTIONS(3467), + [anon_sym_bitand] = ACTIONS(3467), + [anon_sym_not_eq] = ACTIONS(3467), + [anon_sym_DASH_DASH] = ACTIONS(3469), + [anon_sym_PLUS_PLUS] = ACTIONS(3469), + [anon_sym_DOT] = ACTIONS(3467), + [anon_sym_DASH_GT] = ACTIONS(3469), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3467), + [anon_sym_decltype] = ACTIONS(3467), + [anon_sym_virtual] = ACTIONS(3467), + [anon_sym_template] = ACTIONS(3467), + [anon_sym_operator] = ACTIONS(3467), }, - [1724] = { - [sym_function_definition] = STATE(2023), - [sym_declaration] = STATE(2023), - [sym__declaration_modifiers] = STATE(1894), - [sym__declaration_specifiers] = STATE(3973), - [sym_attribute_specifier] = STATE(1894), - [sym_attribute_declaration] = STATE(1894), - [sym_ms_declspec_modifier] = STATE(1894), - [sym_ms_call_modifier] = STATE(1872), - [sym_storage_class_specifier] = STATE(1894), - [sym_type_qualifier] = STATE(1894), - [sym__type_specifier] = STATE(2596), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym__class_name] = STATE(6550), - [sym_virtual_function_specifier] = STATE(1894), - [sym_dependent_type] = STATE(3139), - [sym_template_type] = STATE(3514), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(5131), - [sym_qualified_type_identifier] = STATE(3545), - [aux_sym__declaration_specifiers_repeat1] = STATE(1894), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [sym_identifier] = ACTIONS(3833), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3007), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1389), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym___cdecl] = ACTIONS(49), - [anon_sym___clrcall] = ACTIONS(49), - [anon_sym___stdcall] = ACTIONS(49), - [anon_sym___fastcall] = ACTIONS(49), - [anon_sym___thiscall] = ACTIONS(49), - [anon_sym___vectorcall] = ACTIONS(49), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(2809), - [anon_sym_enum] = ACTIONS(63), - [anon_sym_class] = ACTIONS(3847), - [anon_sym_struct] = ACTIONS(3849), - [anon_sym_union] = ACTIONS(3851), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(105), - [anon_sym_decltype] = ACTIONS(107), - [anon_sym_virtual] = ACTIONS(109), - [anon_sym_typename] = ACTIONS(113), - [anon_sym_template] = ACTIONS(972), + [1292] = { + [sym_template_argument_list] = STATE(1825), + [sym_identifier] = ACTIONS(3407), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3419), + [anon_sym_COMMA] = ACTIONS(3419), + [anon_sym_LPAREN2] = ACTIONS(3447), + [anon_sym_TILDE] = ACTIONS(3412), + [anon_sym_DASH] = ACTIONS(3414), + [anon_sym_PLUS] = ACTIONS(3414), + [anon_sym_STAR] = ACTIONS(3416), + [anon_sym_SLASH] = ACTIONS(3414), + [anon_sym_PERCENT] = ACTIONS(3414), + [anon_sym_PIPE_PIPE] = ACTIONS(3419), + [anon_sym_AMP_AMP] = ACTIONS(3409), + [anon_sym_PIPE] = ACTIONS(3414), + [anon_sym_CARET] = ACTIONS(3414), + [anon_sym_AMP] = ACTIONS(3416), + [anon_sym_EQ_EQ] = ACTIONS(3419), + [anon_sym_BANG_EQ] = ACTIONS(3419), + [anon_sym_GT] = ACTIONS(3414), + [anon_sym_GT_EQ] = ACTIONS(3419), + [anon_sym_LT_EQ] = ACTIONS(3414), + [anon_sym_LT] = ACTIONS(3451), + [anon_sym_LT_LT] = ACTIONS(3414), + [anon_sym_GT_GT] = ACTIONS(3414), + [anon_sym_SEMI] = ACTIONS(3409), + [anon_sym_extern] = ACTIONS(3407), + [anon_sym___attribute__] = ACTIONS(3407), + [anon_sym_COLON_COLON] = ACTIONS(3424), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3454), + [anon_sym___declspec] = ACTIONS(3407), + [anon_sym___based] = ACTIONS(3407), + [anon_sym_LBRACE] = ACTIONS(3426), + [anon_sym_LBRACK] = ACTIONS(3457), + [anon_sym_EQ] = ACTIONS(3461), + [anon_sym_static] = ACTIONS(3407), + [anon_sym_register] = ACTIONS(3407), + [anon_sym_inline] = ACTIONS(3407), + [anon_sym_thread_local] = ACTIONS(3407), + [anon_sym_const] = ACTIONS(3407), + [anon_sym_volatile] = ACTIONS(3407), + [anon_sym_restrict] = ACTIONS(3407), + [anon_sym__Atomic] = ACTIONS(3407), + [anon_sym_mutable] = ACTIONS(3407), + [anon_sym_constexpr] = ACTIONS(3407), + [anon_sym_constinit] = ACTIONS(3407), + [anon_sym_consteval] = ACTIONS(3407), + [anon_sym_COLON] = ACTIONS(3471), + [anon_sym_QMARK] = ACTIONS(3419), + [anon_sym_STAR_EQ] = ACTIONS(3465), + [anon_sym_SLASH_EQ] = ACTIONS(3465), + [anon_sym_PERCENT_EQ] = ACTIONS(3465), + [anon_sym_PLUS_EQ] = ACTIONS(3465), + [anon_sym_DASH_EQ] = ACTIONS(3465), + [anon_sym_LT_LT_EQ] = ACTIONS(3465), + [anon_sym_GT_GT_EQ] = ACTIONS(3465), + [anon_sym_AMP_EQ] = ACTIONS(3465), + [anon_sym_CARET_EQ] = ACTIONS(3465), + [anon_sym_PIPE_EQ] = ACTIONS(3465), + [anon_sym_and_eq] = ACTIONS(3461), + [anon_sym_or_eq] = ACTIONS(3461), + [anon_sym_xor_eq] = ACTIONS(3461), + [anon_sym_LT_EQ_GT] = ACTIONS(3419), + [anon_sym_or] = ACTIONS(3414), + [anon_sym_and] = ACTIONS(3414), + [anon_sym_bitor] = ACTIONS(3414), + [anon_sym_xor] = ACTIONS(3414), + [anon_sym_bitand] = ACTIONS(3414), + [anon_sym_not_eq] = ACTIONS(3414), + [anon_sym_DASH_DASH] = ACTIONS(3419), + [anon_sym_PLUS_PLUS] = ACTIONS(3419), + [anon_sym_DOT] = ACTIONS(3414), + [anon_sym_DASH_GT] = ACTIONS(3419), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3407), + [anon_sym_decltype] = ACTIONS(3407), + [anon_sym_virtual] = ACTIONS(3407), + [anon_sym_template] = ACTIONS(3407), + [anon_sym_operator] = ACTIONS(3407), }, - [1725] = { - [sym_identifier] = ACTIONS(2302), - [aux_sym_preproc_def_token1] = ACTIONS(2302), - [anon_sym_COMMA] = ACTIONS(2304), - [anon_sym_RPAREN] = ACTIONS(2304), - [aux_sym_preproc_if_token1] = ACTIONS(2302), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2302), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2302), - [sym_preproc_directive] = ACTIONS(2302), - [anon_sym_LPAREN2] = ACTIONS(2304), - [anon_sym_TILDE] = ACTIONS(2304), - [anon_sym_STAR] = ACTIONS(2304), - [anon_sym_PIPE_PIPE] = ACTIONS(2304), - [anon_sym_AMP_AMP] = ACTIONS(2304), - [anon_sym_AMP] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(2304), - [anon_sym_typedef] = ACTIONS(2302), - [anon_sym_extern] = ACTIONS(2302), - [anon_sym___attribute__] = ACTIONS(2302), - [anon_sym_COLON_COLON] = ACTIONS(2304), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2304), - [anon_sym___declspec] = ACTIONS(2302), - [anon_sym___based] = ACTIONS(2302), - [anon_sym_LBRACE] = ACTIONS(2304), - [anon_sym_RBRACE] = ACTIONS(2304), - [anon_sym_LBRACK] = ACTIONS(2302), - [anon_sym_EQ] = ACTIONS(2304), - [anon_sym_static] = ACTIONS(2302), - [anon_sym_register] = ACTIONS(2302), - [anon_sym_inline] = ACTIONS(2302), - [anon_sym_thread_local] = ACTIONS(2302), - [anon_sym_const] = ACTIONS(2302), - [anon_sym_volatile] = ACTIONS(2302), - [anon_sym_restrict] = ACTIONS(2302), - [anon_sym__Atomic] = ACTIONS(2302), - [anon_sym_mutable] = ACTIONS(2302), - [anon_sym_constexpr] = ACTIONS(2302), - [anon_sym_constinit] = ACTIONS(2302), - [anon_sym_consteval] = ACTIONS(2302), - [anon_sym_signed] = ACTIONS(2302), - [anon_sym_unsigned] = ACTIONS(2302), - [anon_sym_long] = ACTIONS(2302), - [anon_sym_short] = ACTIONS(2302), - [sym_primitive_type] = ACTIONS(2302), - [anon_sym_enum] = ACTIONS(2302), - [anon_sym_class] = ACTIONS(2302), - [anon_sym_struct] = ACTIONS(2302), - [anon_sym_union] = ACTIONS(2302), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2302), - [anon_sym_decltype] = ACTIONS(2302), - [anon_sym_virtual] = ACTIONS(2302), - [anon_sym_explicit] = ACTIONS(2302), - [anon_sym_public] = ACTIONS(2302), - [anon_sym_private] = ACTIONS(2302), - [anon_sym_protected] = ACTIONS(2302), - [anon_sym_typename] = ACTIONS(2302), - [anon_sym_template] = ACTIONS(2302), - [anon_sym_GT2] = ACTIONS(2304), - [anon_sym_operator] = ACTIONS(2302), - [anon_sym_try] = ACTIONS(2302), - [anon_sym_friend] = ACTIONS(2302), - [anon_sym_using] = ACTIONS(2302), - [anon_sym_static_assert] = ACTIONS(2302), - [anon_sym_catch] = ACTIONS(2302), - [anon_sym_requires] = ACTIONS(2302), + [1293] = { + [sym_identifier] = ACTIONS(3473), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3475), + [anon_sym_COMMA] = ACTIONS(3475), + [anon_sym_RPAREN] = ACTIONS(3475), + [anon_sym_LPAREN2] = ACTIONS(3475), + [anon_sym_TILDE] = ACTIONS(3478), + [anon_sym_DASH] = ACTIONS(3480), + [anon_sym_PLUS] = ACTIONS(3480), + [anon_sym_STAR] = ACTIONS(3482), + [anon_sym_SLASH] = ACTIONS(3480), + [anon_sym_PERCENT] = ACTIONS(3480), + [anon_sym_PIPE_PIPE] = ACTIONS(3485), + [anon_sym_AMP_AMP] = ACTIONS(3475), + [anon_sym_PIPE] = ACTIONS(3480), + [anon_sym_CARET] = ACTIONS(3480), + [anon_sym_AMP] = ACTIONS(3482), + [anon_sym_EQ_EQ] = ACTIONS(3485), + [anon_sym_BANG_EQ] = ACTIONS(3485), + [anon_sym_GT] = ACTIONS(3480), + [anon_sym_GT_EQ] = ACTIONS(3485), + [anon_sym_LT_EQ] = ACTIONS(3480), + [anon_sym_LT] = ACTIONS(3480), + [anon_sym_LT_LT] = ACTIONS(3480), + [anon_sym_GT_GT] = ACTIONS(3480), + [anon_sym_extern] = ACTIONS(3473), + [anon_sym___attribute__] = ACTIONS(3473), + [anon_sym_COLON_COLON] = ACTIONS(3478), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3478), + [anon_sym___declspec] = ACTIONS(3473), + [anon_sym___based] = ACTIONS(3473), + [anon_sym_LBRACE] = ACTIONS(3478), + [anon_sym_LBRACK] = ACTIONS(3482), + [anon_sym_EQ] = ACTIONS(3482), + [anon_sym_static] = ACTIONS(3473), + [anon_sym_register] = ACTIONS(3473), + [anon_sym_inline] = ACTIONS(3473), + [anon_sym_thread_local] = ACTIONS(3473), + [anon_sym_const] = ACTIONS(3473), + [anon_sym_volatile] = ACTIONS(3473), + [anon_sym_restrict] = ACTIONS(3473), + [anon_sym__Atomic] = ACTIONS(3473), + [anon_sym_mutable] = ACTIONS(3473), + [anon_sym_constexpr] = ACTIONS(3473), + [anon_sym_constinit] = ACTIONS(3473), + [anon_sym_consteval] = ACTIONS(3473), + [anon_sym_QMARK] = ACTIONS(3485), + [anon_sym_STAR_EQ] = ACTIONS(3485), + [anon_sym_SLASH_EQ] = ACTIONS(3485), + [anon_sym_PERCENT_EQ] = ACTIONS(3485), + [anon_sym_PLUS_EQ] = ACTIONS(3485), + [anon_sym_DASH_EQ] = ACTIONS(3485), + [anon_sym_LT_LT_EQ] = ACTIONS(3485), + [anon_sym_GT_GT_EQ] = ACTIONS(3485), + [anon_sym_AMP_EQ] = ACTIONS(3485), + [anon_sym_CARET_EQ] = ACTIONS(3485), + [anon_sym_PIPE_EQ] = ACTIONS(3485), + [anon_sym_and_eq] = ACTIONS(3480), + [anon_sym_or_eq] = ACTIONS(3480), + [anon_sym_xor_eq] = ACTIONS(3480), + [anon_sym_LT_EQ_GT] = ACTIONS(3485), + [anon_sym_or] = ACTIONS(3480), + [anon_sym_and] = ACTIONS(3480), + [anon_sym_bitor] = ACTIONS(3480), + [anon_sym_xor] = ACTIONS(3480), + [anon_sym_bitand] = ACTIONS(3480), + [anon_sym_not_eq] = ACTIONS(3480), + [anon_sym_DASH_DASH] = ACTIONS(3485), + [anon_sym_PLUS_PLUS] = ACTIONS(3485), + [anon_sym_DOT] = ACTIONS(3480), + [anon_sym_DASH_GT] = ACTIONS(3480), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3473), + [anon_sym_decltype] = ACTIONS(3473), + [anon_sym_virtual] = ACTIONS(3473), + [anon_sym_template] = ACTIONS(3473), + [anon_sym_operator] = ACTIONS(3473), + [anon_sym_DOT_STAR] = ACTIONS(3485), + [anon_sym_DASH_GT_STAR] = ACTIONS(3485), }, - [1726] = { - [sym__declaration_modifiers] = STATE(1892), - [sym__declaration_specifiers] = STATE(3046), - [sym_attribute_specifier] = STATE(1892), - [sym_attribute_declaration] = STATE(1892), - [sym_ms_declspec_modifier] = STATE(1892), - [sym_storage_class_specifier] = STATE(1892), - [sym_type_qualifier] = STATE(1892), - [sym__type_specifier] = STATE(2596), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_parameter_declaration] = STATE(5678), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym_virtual_function_specifier] = STATE(1892), - [sym_dependent_type] = STATE(3139), - [sym_type_parameter_declaration] = STATE(5678), - [sym_variadic_type_parameter_declaration] = STATE(5678), - [sym_optional_type_parameter_declaration] = STATE(5678), - [sym_template_template_parameter_declaration] = STATE(5678), - [sym_optional_parameter_declaration] = STATE(5678), - [sym_variadic_parameter_declaration] = STATE(5678), - [sym_template_type] = STATE(2976), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(5144), - [sym_qualified_type_identifier] = STATE(3198), - [aux_sym__declaration_specifiers_repeat1] = STATE(1892), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [sym_identifier] = ACTIONS(3365), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3377), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1389), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(2809), - [anon_sym_enum] = ACTIONS(1427), - [anon_sym_class] = ACTIONS(3853), - [anon_sym_struct] = ACTIONS(1431), - [anon_sym_union] = ACTIONS(1433), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(105), - [anon_sym_decltype] = ACTIONS(107), - [anon_sym_virtual] = ACTIONS(109), - [anon_sym_typename] = ACTIONS(3855), - [anon_sym_template] = ACTIONS(3857), - [anon_sym_GT2] = ACTIONS(3859), + [1294] = { + [sym_identifier] = ACTIONS(3467), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3469), + [anon_sym_COMMA] = ACTIONS(3469), + [anon_sym_RPAREN] = ACTIONS(3469), + [anon_sym_LPAREN2] = ACTIONS(3469), + [anon_sym_TILDE] = ACTIONS(3469), + [anon_sym_DASH] = ACTIONS(3467), + [anon_sym_PLUS] = ACTIONS(3467), + [anon_sym_STAR] = ACTIONS(3467), + [anon_sym_SLASH] = ACTIONS(3467), + [anon_sym_PERCENT] = ACTIONS(3467), + [anon_sym_PIPE_PIPE] = ACTIONS(3469), + [anon_sym_AMP_AMP] = ACTIONS(3469), + [anon_sym_PIPE] = ACTIONS(3467), + [anon_sym_CARET] = ACTIONS(3467), + [anon_sym_AMP] = ACTIONS(3467), + [anon_sym_EQ_EQ] = ACTIONS(3469), + [anon_sym_BANG_EQ] = ACTIONS(3469), + [anon_sym_GT] = ACTIONS(3467), + [anon_sym_GT_EQ] = ACTIONS(3469), + [anon_sym_LT_EQ] = ACTIONS(3467), + [anon_sym_LT] = ACTIONS(3467), + [anon_sym_LT_LT] = ACTIONS(3467), + [anon_sym_GT_GT] = ACTIONS(3467), + [anon_sym_extern] = ACTIONS(3467), + [anon_sym___attribute__] = ACTIONS(3467), + [anon_sym_COLON_COLON] = ACTIONS(3469), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3469), + [anon_sym___declspec] = ACTIONS(3467), + [anon_sym___based] = ACTIONS(3467), + [anon_sym_LBRACE] = ACTIONS(3469), + [anon_sym_LBRACK] = ACTIONS(3467), + [anon_sym_EQ] = ACTIONS(3467), + [anon_sym_static] = ACTIONS(3467), + [anon_sym_register] = ACTIONS(3467), + [anon_sym_inline] = ACTIONS(3467), + [anon_sym_thread_local] = ACTIONS(3467), + [anon_sym_const] = ACTIONS(3467), + [anon_sym_volatile] = ACTIONS(3467), + [anon_sym_restrict] = ACTIONS(3467), + [anon_sym__Atomic] = ACTIONS(3467), + [anon_sym_mutable] = ACTIONS(3467), + [anon_sym_constexpr] = ACTIONS(3467), + [anon_sym_constinit] = ACTIONS(3467), + [anon_sym_consteval] = ACTIONS(3467), + [anon_sym_QMARK] = ACTIONS(3469), + [anon_sym_STAR_EQ] = ACTIONS(3469), + [anon_sym_SLASH_EQ] = ACTIONS(3469), + [anon_sym_PERCENT_EQ] = ACTIONS(3469), + [anon_sym_PLUS_EQ] = ACTIONS(3469), + [anon_sym_DASH_EQ] = ACTIONS(3469), + [anon_sym_LT_LT_EQ] = ACTIONS(3469), + [anon_sym_GT_GT_EQ] = ACTIONS(3469), + [anon_sym_AMP_EQ] = ACTIONS(3469), + [anon_sym_CARET_EQ] = ACTIONS(3469), + [anon_sym_PIPE_EQ] = ACTIONS(3469), + [anon_sym_and_eq] = ACTIONS(3467), + [anon_sym_or_eq] = ACTIONS(3467), + [anon_sym_xor_eq] = ACTIONS(3467), + [anon_sym_LT_EQ_GT] = ACTIONS(3469), + [anon_sym_or] = ACTIONS(3467), + [anon_sym_and] = ACTIONS(3467), + [anon_sym_bitor] = ACTIONS(3467), + [anon_sym_xor] = ACTIONS(3467), + [anon_sym_bitand] = ACTIONS(3467), + [anon_sym_not_eq] = ACTIONS(3467), + [anon_sym_DASH_DASH] = ACTIONS(3469), + [anon_sym_PLUS_PLUS] = ACTIONS(3469), + [anon_sym_DOT] = ACTIONS(3467), + [anon_sym_DASH_GT] = ACTIONS(3467), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3467), + [anon_sym_decltype] = ACTIONS(3467), + [anon_sym_virtual] = ACTIONS(3467), + [anon_sym_template] = ACTIONS(3467), + [anon_sym_operator] = ACTIONS(3467), + [anon_sym_DOT_STAR] = ACTIONS(3469), + [anon_sym_DASH_GT_STAR] = ACTIONS(3469), }, - [1727] = { - [sym_identifier] = ACTIONS(2677), - [anon_sym_LPAREN2] = ACTIONS(2679), - [anon_sym_BANG] = ACTIONS(2679), - [anon_sym_TILDE] = ACTIONS(2679), - [anon_sym_DASH] = ACTIONS(2677), - [anon_sym_PLUS] = ACTIONS(2677), - [anon_sym_STAR] = ACTIONS(2679), - [anon_sym_AMP] = ACTIONS(2679), - [anon_sym_extern] = ACTIONS(2677), - [anon_sym___attribute__] = ACTIONS(2677), - [anon_sym_COLON_COLON] = ACTIONS(2679), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2679), - [anon_sym___declspec] = ACTIONS(2677), - [anon_sym_LBRACK] = ACTIONS(2677), - [anon_sym_static] = ACTIONS(2677), - [anon_sym_register] = ACTIONS(2677), - [anon_sym_inline] = ACTIONS(2677), - [anon_sym_thread_local] = ACTIONS(2677), - [anon_sym_const] = ACTIONS(2677), - [anon_sym_volatile] = ACTIONS(2677), - [anon_sym_restrict] = ACTIONS(2677), - [anon_sym__Atomic] = ACTIONS(2677), - [anon_sym_mutable] = ACTIONS(2677), - [anon_sym_constexpr] = ACTIONS(2677), - [anon_sym_constinit] = ACTIONS(2677), - [anon_sym_consteval] = ACTIONS(2677), - [anon_sym_signed] = ACTIONS(2677), - [anon_sym_unsigned] = ACTIONS(2677), - [anon_sym_long] = ACTIONS(2677), - [anon_sym_short] = ACTIONS(2677), - [sym_primitive_type] = ACTIONS(2677), - [anon_sym_enum] = ACTIONS(2677), - [anon_sym_class] = ACTIONS(2677), - [anon_sym_struct] = ACTIONS(2677), - [anon_sym_union] = ACTIONS(2677), - [anon_sym_DASH_DASH] = ACTIONS(2679), - [anon_sym_PLUS_PLUS] = ACTIONS(2679), - [anon_sym_sizeof] = ACTIONS(2677), - [sym_number_literal] = ACTIONS(2679), - [anon_sym_L_SQUOTE] = ACTIONS(2679), - [anon_sym_u_SQUOTE] = ACTIONS(2679), - [anon_sym_U_SQUOTE] = ACTIONS(2679), - [anon_sym_u8_SQUOTE] = ACTIONS(2679), - [anon_sym_SQUOTE] = ACTIONS(2679), - [anon_sym_L_DQUOTE] = ACTIONS(2679), - [anon_sym_u_DQUOTE] = ACTIONS(2679), - [anon_sym_U_DQUOTE] = ACTIONS(2679), - [anon_sym_u8_DQUOTE] = ACTIONS(2679), - [anon_sym_DQUOTE] = ACTIONS(2679), - [sym_true] = ACTIONS(2677), - [sym_false] = ACTIONS(2677), - [sym_null] = ACTIONS(2677), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2677), - [anon_sym_decltype] = ACTIONS(2677), - [anon_sym_virtual] = ACTIONS(2677), - [anon_sym_typename] = ACTIONS(2677), - [anon_sym_template] = ACTIONS(2677), - [anon_sym_delete] = ACTIONS(2677), - [anon_sym_co_await] = ACTIONS(2677), - [anon_sym_new] = ACTIONS(2677), - [anon_sym_requires] = ACTIONS(2677), - [sym_this] = ACTIONS(2677), - [sym_nullptr] = ACTIONS(2677), - [sym_raw_string_literal] = ACTIONS(2679), + [1295] = { + [sym_identifier] = ACTIONS(3487), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3489), + [anon_sym_COMMA] = ACTIONS(3489), + [anon_sym_RPAREN] = ACTIONS(3489), + [anon_sym_LPAREN2] = ACTIONS(3489), + [anon_sym_TILDE] = ACTIONS(3489), + [anon_sym_DASH] = ACTIONS(3487), + [anon_sym_PLUS] = ACTIONS(3487), + [anon_sym_STAR] = ACTIONS(3487), + [anon_sym_SLASH] = ACTIONS(3487), + [anon_sym_PERCENT] = ACTIONS(3487), + [anon_sym_PIPE_PIPE] = ACTIONS(3489), + [anon_sym_AMP_AMP] = ACTIONS(3489), + [anon_sym_PIPE] = ACTIONS(3487), + [anon_sym_CARET] = ACTIONS(3487), + [anon_sym_AMP] = ACTIONS(3487), + [anon_sym_EQ_EQ] = ACTIONS(3489), + [anon_sym_BANG_EQ] = ACTIONS(3489), + [anon_sym_GT] = ACTIONS(3487), + [anon_sym_GT_EQ] = ACTIONS(3489), + [anon_sym_LT_EQ] = ACTIONS(3487), + [anon_sym_LT] = ACTIONS(3487), + [anon_sym_LT_LT] = ACTIONS(3487), + [anon_sym_GT_GT] = ACTIONS(3487), + [anon_sym_SEMI] = ACTIONS(3489), + [anon_sym_extern] = ACTIONS(3487), + [anon_sym___attribute__] = ACTIONS(3487), + [anon_sym_COLON_COLON] = ACTIONS(3489), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3489), + [anon_sym___declspec] = ACTIONS(3487), + [anon_sym___based] = ACTIONS(3487), + [anon_sym_LBRACE] = ACTIONS(3489), + [anon_sym_RBRACE] = ACTIONS(3489), + [anon_sym_LBRACK] = ACTIONS(3487), + [anon_sym_EQ] = ACTIONS(3487), + [anon_sym_static] = ACTIONS(3487), + [anon_sym_register] = ACTIONS(3487), + [anon_sym_inline] = ACTIONS(3487), + [anon_sym_thread_local] = ACTIONS(3487), + [anon_sym_const] = ACTIONS(3487), + [anon_sym_volatile] = ACTIONS(3487), + [anon_sym_restrict] = ACTIONS(3487), + [anon_sym__Atomic] = ACTIONS(3487), + [anon_sym_mutable] = ACTIONS(3487), + [anon_sym_constexpr] = ACTIONS(3487), + [anon_sym_constinit] = ACTIONS(3487), + [anon_sym_consteval] = ACTIONS(3487), + [anon_sym_QMARK] = ACTIONS(3489), + [anon_sym_STAR_EQ] = ACTIONS(3489), + [anon_sym_SLASH_EQ] = ACTIONS(3489), + [anon_sym_PERCENT_EQ] = ACTIONS(3489), + [anon_sym_PLUS_EQ] = ACTIONS(3489), + [anon_sym_DASH_EQ] = ACTIONS(3489), + [anon_sym_LT_LT_EQ] = ACTIONS(3489), + [anon_sym_GT_GT_EQ] = ACTIONS(3489), + [anon_sym_AMP_EQ] = ACTIONS(3489), + [anon_sym_CARET_EQ] = ACTIONS(3489), + [anon_sym_PIPE_EQ] = ACTIONS(3489), + [anon_sym_and_eq] = ACTIONS(3487), + [anon_sym_or_eq] = ACTIONS(3487), + [anon_sym_xor_eq] = ACTIONS(3487), + [anon_sym_LT_EQ_GT] = ACTIONS(3489), + [anon_sym_or] = ACTIONS(3487), + [anon_sym_and] = ACTIONS(3487), + [anon_sym_bitor] = ACTIONS(3487), + [anon_sym_xor] = ACTIONS(3487), + [anon_sym_bitand] = ACTIONS(3487), + [anon_sym_not_eq] = ACTIONS(3487), + [anon_sym_DASH_DASH] = ACTIONS(3489), + [anon_sym_PLUS_PLUS] = ACTIONS(3489), + [anon_sym_DOT] = ACTIONS(3487), + [anon_sym_DASH_GT] = ACTIONS(3489), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3487), + [anon_sym_decltype] = ACTIONS(3487), + [anon_sym_virtual] = ACTIONS(3487), + [anon_sym_template] = ACTIONS(3487), + [anon_sym_operator] = ACTIONS(3487), }, - [1728] = { - [sym_identifier] = ACTIONS(2930), - [anon_sym_LPAREN2] = ACTIONS(2935), - [anon_sym_BANG] = ACTIONS(2935), - [anon_sym_TILDE] = ACTIONS(2935), - [anon_sym_DASH] = ACTIONS(2930), - [anon_sym_PLUS] = ACTIONS(2930), - [anon_sym_STAR] = ACTIONS(2935), - [anon_sym_AMP] = ACTIONS(2935), - [anon_sym_extern] = ACTIONS(2930), - [anon_sym___attribute__] = ACTIONS(2930), - [anon_sym_COLON_COLON] = ACTIONS(2935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2935), - [anon_sym___declspec] = ACTIONS(2930), - [anon_sym_LBRACK] = ACTIONS(2930), - [anon_sym_static] = ACTIONS(2930), - [anon_sym_register] = ACTIONS(2930), - [anon_sym_inline] = ACTIONS(2930), - [anon_sym_thread_local] = ACTIONS(2930), - [anon_sym_const] = ACTIONS(2930), - [anon_sym_volatile] = ACTIONS(2930), - [anon_sym_restrict] = ACTIONS(2930), - [anon_sym__Atomic] = ACTIONS(2930), - [anon_sym_mutable] = ACTIONS(2930), - [anon_sym_constexpr] = ACTIONS(2930), - [anon_sym_constinit] = ACTIONS(2930), - [anon_sym_consteval] = ACTIONS(2930), - [anon_sym_signed] = ACTIONS(2930), - [anon_sym_unsigned] = ACTIONS(2930), - [anon_sym_long] = ACTIONS(2930), - [anon_sym_short] = ACTIONS(2930), - [sym_primitive_type] = ACTIONS(2930), - [anon_sym_enum] = ACTIONS(2930), - [anon_sym_class] = ACTIONS(2930), - [anon_sym_struct] = ACTIONS(2930), - [anon_sym_union] = ACTIONS(2930), - [anon_sym_DASH_DASH] = ACTIONS(2935), - [anon_sym_PLUS_PLUS] = ACTIONS(2935), - [anon_sym_sizeof] = ACTIONS(2930), - [sym_number_literal] = ACTIONS(2935), - [anon_sym_L_SQUOTE] = ACTIONS(2935), - [anon_sym_u_SQUOTE] = ACTIONS(2935), - [anon_sym_U_SQUOTE] = ACTIONS(2935), - [anon_sym_u8_SQUOTE] = ACTIONS(2935), - [anon_sym_SQUOTE] = ACTIONS(2935), - [anon_sym_L_DQUOTE] = ACTIONS(2935), - [anon_sym_u_DQUOTE] = ACTIONS(2935), - [anon_sym_U_DQUOTE] = ACTIONS(2935), - [anon_sym_u8_DQUOTE] = ACTIONS(2935), - [anon_sym_DQUOTE] = ACTIONS(2935), - [sym_true] = ACTIONS(2930), - [sym_false] = ACTIONS(2930), - [sym_null] = ACTIONS(2930), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2930), - [anon_sym_decltype] = ACTIONS(2930), - [anon_sym_virtual] = ACTIONS(2930), - [anon_sym_typename] = ACTIONS(2930), - [anon_sym_template] = ACTIONS(2930), - [anon_sym_delete] = ACTIONS(2930), - [anon_sym_co_await] = ACTIONS(2930), - [anon_sym_new] = ACTIONS(2930), - [anon_sym_requires] = ACTIONS(2930), - [sym_this] = ACTIONS(2930), - [sym_nullptr] = ACTIONS(2930), - [sym_raw_string_literal] = ACTIONS(2935), + [1296] = { + [sym_template_argument_list] = STATE(1826), + [sym_identifier] = ACTIONS(3407), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3419), + [anon_sym_COMMA] = ACTIONS(3419), + [anon_sym_LPAREN2] = ACTIONS(3409), + [anon_sym_TILDE] = ACTIONS(3412), + [anon_sym_DASH] = ACTIONS(3414), + [anon_sym_PLUS] = ACTIONS(3414), + [anon_sym_STAR] = ACTIONS(3416), + [anon_sym_SLASH] = ACTIONS(3414), + [anon_sym_PERCENT] = ACTIONS(3414), + [anon_sym_PIPE_PIPE] = ACTIONS(3419), + [anon_sym_AMP_AMP] = ACTIONS(3409), + [anon_sym_PIPE] = ACTIONS(3414), + [anon_sym_CARET] = ACTIONS(3414), + [anon_sym_AMP] = ACTIONS(3416), + [anon_sym_EQ_EQ] = ACTIONS(3419), + [anon_sym_BANG_EQ] = ACTIONS(3419), + [anon_sym_GT] = ACTIONS(3414), + [anon_sym_GT_EQ] = ACTIONS(3419), + [anon_sym_LT_EQ] = ACTIONS(3414), + [anon_sym_LT] = ACTIONS(3451), + [anon_sym_LT_LT] = ACTIONS(3414), + [anon_sym_GT_GT] = ACTIONS(3414), + [anon_sym_SEMI] = ACTIONS(3419), + [anon_sym_extern] = ACTIONS(3407), + [anon_sym___attribute__] = ACTIONS(3407), + [anon_sym_COLON_COLON] = ACTIONS(3424), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3412), + [anon_sym___declspec] = ACTIONS(3407), + [anon_sym___based] = ACTIONS(3407), + [anon_sym_LBRACE] = ACTIONS(3426), + [anon_sym_LBRACK] = ACTIONS(3416), + [anon_sym_EQ] = ACTIONS(3461), + [anon_sym_static] = ACTIONS(3407), + [anon_sym_register] = ACTIONS(3407), + [anon_sym_inline] = ACTIONS(3407), + [anon_sym_thread_local] = ACTIONS(3407), + [anon_sym_const] = ACTIONS(3407), + [anon_sym_volatile] = ACTIONS(3407), + [anon_sym_restrict] = ACTIONS(3407), + [anon_sym__Atomic] = ACTIONS(3407), + [anon_sym_mutable] = ACTIONS(3407), + [anon_sym_constexpr] = ACTIONS(3407), + [anon_sym_constinit] = ACTIONS(3407), + [anon_sym_consteval] = ACTIONS(3407), + [anon_sym_COLON] = ACTIONS(3471), + [anon_sym_QMARK] = ACTIONS(3419), + [anon_sym_STAR_EQ] = ACTIONS(3465), + [anon_sym_SLASH_EQ] = ACTIONS(3465), + [anon_sym_PERCENT_EQ] = ACTIONS(3465), + [anon_sym_PLUS_EQ] = ACTIONS(3465), + [anon_sym_DASH_EQ] = ACTIONS(3465), + [anon_sym_LT_LT_EQ] = ACTIONS(3465), + [anon_sym_GT_GT_EQ] = ACTIONS(3465), + [anon_sym_AMP_EQ] = ACTIONS(3465), + [anon_sym_CARET_EQ] = ACTIONS(3465), + [anon_sym_PIPE_EQ] = ACTIONS(3465), + [anon_sym_and_eq] = ACTIONS(3461), + [anon_sym_or_eq] = ACTIONS(3461), + [anon_sym_xor_eq] = ACTIONS(3461), + [anon_sym_LT_EQ_GT] = ACTIONS(3419), + [anon_sym_or] = ACTIONS(3414), + [anon_sym_and] = ACTIONS(3414), + [anon_sym_bitor] = ACTIONS(3414), + [anon_sym_xor] = ACTIONS(3414), + [anon_sym_bitand] = ACTIONS(3414), + [anon_sym_not_eq] = ACTIONS(3414), + [anon_sym_DASH_DASH] = ACTIONS(3419), + [anon_sym_PLUS_PLUS] = ACTIONS(3419), + [anon_sym_DOT] = ACTIONS(3414), + [anon_sym_DASH_GT] = ACTIONS(3419), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3407), + [anon_sym_decltype] = ACTIONS(3407), + [anon_sym_virtual] = ACTIONS(3407), + [anon_sym_template] = ACTIONS(3407), + [anon_sym_operator] = ACTIONS(3407), }, - [1729] = { - [sym__declaration_modifiers] = STATE(1892), - [sym__declaration_specifiers] = STATE(3046), - [sym_attribute_specifier] = STATE(1892), - [sym_attribute_declaration] = STATE(1892), - [sym_ms_declspec_modifier] = STATE(1892), - [sym_storage_class_specifier] = STATE(1892), - [sym_type_qualifier] = STATE(1892), - [sym__type_specifier] = STATE(2596), - [sym_sized_type_specifier] = STATE(3139), - [sym_enum_specifier] = STATE(3139), - [sym_struct_specifier] = STATE(3139), - [sym_union_specifier] = STATE(3139), - [sym_parameter_declaration] = STATE(5621), - [sym_placeholder_type_specifier] = STATE(3139), - [sym_decltype_auto] = STATE(3123), - [sym_decltype] = STATE(3139), - [sym_class_specifier] = STATE(3139), - [sym_virtual_function_specifier] = STATE(1892), - [sym_dependent_type] = STATE(3139), - [sym_type_parameter_declaration] = STATE(5621), - [sym_variadic_type_parameter_declaration] = STATE(5621), - [sym_optional_type_parameter_declaration] = STATE(5621), - [sym_template_template_parameter_declaration] = STATE(5621), - [sym_optional_parameter_declaration] = STATE(5621), - [sym_variadic_parameter_declaration] = STATE(5621), - [sym_template_type] = STATE(2976), - [sym_dependent_type_identifier] = STATE(6663), - [sym__scope_resolution] = STATE(5144), - [sym_qualified_type_identifier] = STATE(3198), - [aux_sym__declaration_specifiers_repeat1] = STATE(1892), - [aux_sym_sized_type_specifier_repeat1] = STATE(2737), - [sym_identifier] = ACTIONS(3365), - [anon_sym_extern] = ACTIONS(55), - [anon_sym___attribute__] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(3377), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1389), - [anon_sym___declspec] = ACTIONS(45), - [anon_sym_static] = ACTIONS(55), - [anon_sym_register] = ACTIONS(55), - [anon_sym_inline] = ACTIONS(55), - [anon_sym_thread_local] = ACTIONS(55), - [anon_sym_const] = ACTIONS(57), - [anon_sym_volatile] = ACTIONS(57), - [anon_sym_restrict] = ACTIONS(57), - [anon_sym__Atomic] = ACTIONS(57), - [anon_sym_mutable] = ACTIONS(57), - [anon_sym_constexpr] = ACTIONS(57), - [anon_sym_constinit] = ACTIONS(57), - [anon_sym_consteval] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [sym_primitive_type] = ACTIONS(2809), - [anon_sym_enum] = ACTIONS(1427), - [anon_sym_class] = ACTIONS(3853), - [anon_sym_struct] = ACTIONS(1431), - [anon_sym_union] = ACTIONS(1433), + [1297] = { + [sym_template_argument_list] = STATE(1826), + [sym_identifier] = ACTIONS(3407), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3419), + [anon_sym_COMMA] = ACTIONS(3419), + [anon_sym_LPAREN2] = ACTIONS(3409), + [anon_sym_TILDE] = ACTIONS(3412), + [anon_sym_DASH] = ACTIONS(3414), + [anon_sym_PLUS] = ACTIONS(3414), + [anon_sym_STAR] = ACTIONS(3416), + [anon_sym_SLASH] = ACTIONS(3414), + [anon_sym_PERCENT] = ACTIONS(3414), + [anon_sym_PIPE_PIPE] = ACTIONS(3419), + [anon_sym_AMP_AMP] = ACTIONS(3409), + [anon_sym_PIPE] = ACTIONS(3414), + [anon_sym_CARET] = ACTIONS(3414), + [anon_sym_AMP] = ACTIONS(3416), + [anon_sym_EQ_EQ] = ACTIONS(3419), + [anon_sym_BANG_EQ] = ACTIONS(3419), + [anon_sym_GT] = ACTIONS(3414), + [anon_sym_GT_EQ] = ACTIONS(3419), + [anon_sym_LT_EQ] = ACTIONS(3414), + [anon_sym_LT] = ACTIONS(3451), + [anon_sym_LT_LT] = ACTIONS(3414), + [anon_sym_GT_GT] = ACTIONS(3414), + [anon_sym_SEMI] = ACTIONS(3419), + [anon_sym_extern] = ACTIONS(3407), + [anon_sym___attribute__] = ACTIONS(3407), + [anon_sym_COLON_COLON] = ACTIONS(3424), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3412), + [anon_sym___declspec] = ACTIONS(3407), + [anon_sym___based] = ACTIONS(3407), + [anon_sym_LBRACE] = ACTIONS(3426), + [anon_sym_LBRACK] = ACTIONS(3416), + [anon_sym_EQ] = ACTIONS(3461), + [anon_sym_static] = ACTIONS(3407), + [anon_sym_register] = ACTIONS(3407), + [anon_sym_inline] = ACTIONS(3407), + [anon_sym_thread_local] = ACTIONS(3407), + [anon_sym_const] = ACTIONS(3407), + [anon_sym_volatile] = ACTIONS(3407), + [anon_sym_restrict] = ACTIONS(3407), + [anon_sym__Atomic] = ACTIONS(3407), + [anon_sym_mutable] = ACTIONS(3407), + [anon_sym_constexpr] = ACTIONS(3407), + [anon_sym_constinit] = ACTIONS(3407), + [anon_sym_consteval] = ACTIONS(3407), + [anon_sym_COLON] = ACTIONS(3491), + [anon_sym_QMARK] = ACTIONS(3419), + [anon_sym_STAR_EQ] = ACTIONS(3465), + [anon_sym_SLASH_EQ] = ACTIONS(3465), + [anon_sym_PERCENT_EQ] = ACTIONS(3465), + [anon_sym_PLUS_EQ] = ACTIONS(3465), + [anon_sym_DASH_EQ] = ACTIONS(3465), + [anon_sym_LT_LT_EQ] = ACTIONS(3465), + [anon_sym_GT_GT_EQ] = ACTIONS(3465), + [anon_sym_AMP_EQ] = ACTIONS(3465), + [anon_sym_CARET_EQ] = ACTIONS(3465), + [anon_sym_PIPE_EQ] = ACTIONS(3465), + [anon_sym_and_eq] = ACTIONS(3461), + [anon_sym_or_eq] = ACTIONS(3461), + [anon_sym_xor_eq] = ACTIONS(3461), + [anon_sym_LT_EQ_GT] = ACTIONS(3419), + [anon_sym_or] = ACTIONS(3414), + [anon_sym_and] = ACTIONS(3414), + [anon_sym_bitor] = ACTIONS(3414), + [anon_sym_xor] = ACTIONS(3414), + [anon_sym_bitand] = ACTIONS(3414), + [anon_sym_not_eq] = ACTIONS(3414), + [anon_sym_DASH_DASH] = ACTIONS(3419), + [anon_sym_PLUS_PLUS] = ACTIONS(3419), + [anon_sym_DOT] = ACTIONS(3414), + [anon_sym_DASH_GT] = ACTIONS(3419), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3407), + [anon_sym_decltype] = ACTIONS(3407), + [anon_sym_virtual] = ACTIONS(3407), + [anon_sym_template] = ACTIONS(3407), + [anon_sym_operator] = ACTIONS(3407), + }, + [1298] = { + [sym_identifier] = ACTIONS(3493), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3495), + [anon_sym_COMMA] = ACTIONS(3495), + [anon_sym_RPAREN] = ACTIONS(3495), + [anon_sym_LPAREN2] = ACTIONS(3495), + [anon_sym_TILDE] = ACTIONS(3495), + [anon_sym_DASH] = ACTIONS(3493), + [anon_sym_PLUS] = ACTIONS(3493), + [anon_sym_STAR] = ACTIONS(3493), + [anon_sym_SLASH] = ACTIONS(3493), + [anon_sym_PERCENT] = ACTIONS(3493), + [anon_sym_PIPE_PIPE] = ACTIONS(3495), + [anon_sym_AMP_AMP] = ACTIONS(3495), + [anon_sym_PIPE] = ACTIONS(3493), + [anon_sym_CARET] = ACTIONS(3493), + [anon_sym_AMP] = ACTIONS(3493), + [anon_sym_EQ_EQ] = ACTIONS(3495), + [anon_sym_BANG_EQ] = ACTIONS(3495), + [anon_sym_GT] = ACTIONS(3493), + [anon_sym_GT_EQ] = ACTIONS(3495), + [anon_sym_LT_EQ] = ACTIONS(3493), + [anon_sym_LT] = ACTIONS(3493), + [anon_sym_LT_LT] = ACTIONS(3493), + [anon_sym_GT_GT] = ACTIONS(3493), + [anon_sym_extern] = ACTIONS(3493), + [anon_sym___attribute__] = ACTIONS(3493), + [anon_sym_COLON_COLON] = ACTIONS(3495), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3495), + [anon_sym___declspec] = ACTIONS(3493), + [anon_sym___based] = ACTIONS(3493), + [anon_sym_LBRACE] = ACTIONS(3495), + [anon_sym_LBRACK] = ACTIONS(3493), + [anon_sym_EQ] = ACTIONS(3493), + [anon_sym_static] = ACTIONS(3493), + [anon_sym_register] = ACTIONS(3493), + [anon_sym_inline] = ACTIONS(3493), + [anon_sym_thread_local] = ACTIONS(3493), + [anon_sym_const] = ACTIONS(3493), + [anon_sym_volatile] = ACTIONS(3493), + [anon_sym_restrict] = ACTIONS(3493), + [anon_sym__Atomic] = ACTIONS(3493), + [anon_sym_mutable] = ACTIONS(3493), + [anon_sym_constexpr] = ACTIONS(3493), + [anon_sym_constinit] = ACTIONS(3493), + [anon_sym_consteval] = ACTIONS(3493), + [anon_sym_QMARK] = ACTIONS(3495), + [anon_sym_STAR_EQ] = ACTIONS(3495), + [anon_sym_SLASH_EQ] = ACTIONS(3495), + [anon_sym_PERCENT_EQ] = ACTIONS(3495), + [anon_sym_PLUS_EQ] = ACTIONS(3495), + [anon_sym_DASH_EQ] = ACTIONS(3495), + [anon_sym_LT_LT_EQ] = ACTIONS(3495), + [anon_sym_GT_GT_EQ] = ACTIONS(3495), + [anon_sym_AMP_EQ] = ACTIONS(3495), + [anon_sym_CARET_EQ] = ACTIONS(3495), + [anon_sym_PIPE_EQ] = ACTIONS(3495), + [anon_sym_and_eq] = ACTIONS(3493), + [anon_sym_or_eq] = ACTIONS(3493), + [anon_sym_xor_eq] = ACTIONS(3493), + [anon_sym_LT_EQ_GT] = ACTIONS(3495), + [anon_sym_or] = ACTIONS(3493), + [anon_sym_and] = ACTIONS(3493), + [anon_sym_bitor] = ACTIONS(3493), + [anon_sym_xor] = ACTIONS(3493), + [anon_sym_bitand] = ACTIONS(3493), + [anon_sym_not_eq] = ACTIONS(3493), + [anon_sym_DASH_DASH] = ACTIONS(3495), + [anon_sym_PLUS_PLUS] = ACTIONS(3495), + [anon_sym_DOT] = ACTIONS(3493), + [anon_sym_DASH_GT] = ACTIONS(3493), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3493), + [anon_sym_decltype] = ACTIONS(3493), + [anon_sym_virtual] = ACTIONS(3493), + [anon_sym_template] = ACTIONS(3493), + [anon_sym_operator] = ACTIONS(3493), + [anon_sym_DOT_STAR] = ACTIONS(3495), + [anon_sym_DASH_GT_STAR] = ACTIONS(3495), + }, + [1299] = { + [sym_template_argument_list] = STATE(1825), + [sym_identifier] = ACTIONS(3407), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3419), + [anon_sym_COMMA] = ACTIONS(3419), + [anon_sym_LPAREN2] = ACTIONS(3447), + [anon_sym_TILDE] = ACTIONS(3412), + [anon_sym_DASH] = ACTIONS(3414), + [anon_sym_PLUS] = ACTIONS(3414), + [anon_sym_STAR] = ACTIONS(3416), + [anon_sym_SLASH] = ACTIONS(3414), + [anon_sym_PERCENT] = ACTIONS(3414), + [anon_sym_PIPE_PIPE] = ACTIONS(3419), + [anon_sym_AMP_AMP] = ACTIONS(3409), + [anon_sym_PIPE] = ACTIONS(3414), + [anon_sym_CARET] = ACTIONS(3414), + [anon_sym_AMP] = ACTIONS(3416), + [anon_sym_EQ_EQ] = ACTIONS(3419), + [anon_sym_BANG_EQ] = ACTIONS(3419), + [anon_sym_GT] = ACTIONS(3414), + [anon_sym_GT_EQ] = ACTIONS(3419), + [anon_sym_LT_EQ] = ACTIONS(3414), + [anon_sym_LT] = ACTIONS(3451), + [anon_sym_LT_LT] = ACTIONS(3414), + [anon_sym_GT_GT] = ACTIONS(3414), + [anon_sym_SEMI] = ACTIONS(3409), + [anon_sym_extern] = ACTIONS(3407), + [anon_sym___attribute__] = ACTIONS(3407), + [anon_sym_COLON_COLON] = ACTIONS(3424), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3454), + [anon_sym___declspec] = ACTIONS(3407), + [anon_sym___based] = ACTIONS(3407), + [anon_sym_LBRACE] = ACTIONS(3426), + [anon_sym_LBRACK] = ACTIONS(3457), + [anon_sym_EQ] = ACTIONS(3461), + [anon_sym_static] = ACTIONS(3407), + [anon_sym_register] = ACTIONS(3407), + [anon_sym_inline] = ACTIONS(3407), + [anon_sym_thread_local] = ACTIONS(3407), + [anon_sym_const] = ACTIONS(3407), + [anon_sym_volatile] = ACTIONS(3407), + [anon_sym_restrict] = ACTIONS(3407), + [anon_sym__Atomic] = ACTIONS(3407), + [anon_sym_mutable] = ACTIONS(3407), + [anon_sym_constexpr] = ACTIONS(3407), + [anon_sym_constinit] = ACTIONS(3407), + [anon_sym_consteval] = ACTIONS(3407), + [anon_sym_COLON] = ACTIONS(3491), + [anon_sym_QMARK] = ACTIONS(3419), + [anon_sym_STAR_EQ] = ACTIONS(3465), + [anon_sym_SLASH_EQ] = ACTIONS(3465), + [anon_sym_PERCENT_EQ] = ACTIONS(3465), + [anon_sym_PLUS_EQ] = ACTIONS(3465), + [anon_sym_DASH_EQ] = ACTIONS(3465), + [anon_sym_LT_LT_EQ] = ACTIONS(3465), + [anon_sym_GT_GT_EQ] = ACTIONS(3465), + [anon_sym_AMP_EQ] = ACTIONS(3465), + [anon_sym_CARET_EQ] = ACTIONS(3465), + [anon_sym_PIPE_EQ] = ACTIONS(3465), + [anon_sym_and_eq] = ACTIONS(3461), + [anon_sym_or_eq] = ACTIONS(3461), + [anon_sym_xor_eq] = ACTIONS(3461), + [anon_sym_LT_EQ_GT] = ACTIONS(3419), + [anon_sym_or] = ACTIONS(3414), + [anon_sym_and] = ACTIONS(3414), + [anon_sym_bitor] = ACTIONS(3414), + [anon_sym_xor] = ACTIONS(3414), + [anon_sym_bitand] = ACTIONS(3414), + [anon_sym_not_eq] = ACTIONS(3414), + [anon_sym_DASH_DASH] = ACTIONS(3419), + [anon_sym_PLUS_PLUS] = ACTIONS(3419), + [anon_sym_DOT] = ACTIONS(3414), + [anon_sym_DASH_GT] = ACTIONS(3419), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3407), + [anon_sym_decltype] = ACTIONS(3407), + [anon_sym_virtual] = ACTIONS(3407), + [anon_sym_template] = ACTIONS(3407), + [anon_sym_operator] = ACTIONS(3407), + }, + [1300] = { + [sym_identifier] = ACTIONS(3497), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3499), + [anon_sym_COMMA] = ACTIONS(3499), + [anon_sym_RPAREN] = ACTIONS(3499), + [anon_sym_LPAREN2] = ACTIONS(3499), + [anon_sym_TILDE] = ACTIONS(3499), + [anon_sym_DASH] = ACTIONS(3497), + [anon_sym_PLUS] = ACTIONS(3497), + [anon_sym_STAR] = ACTIONS(3497), + [anon_sym_SLASH] = ACTIONS(3497), + [anon_sym_PERCENT] = ACTIONS(3497), + [anon_sym_PIPE_PIPE] = ACTIONS(3499), + [anon_sym_AMP_AMP] = ACTIONS(3499), + [anon_sym_PIPE] = ACTIONS(3497), + [anon_sym_CARET] = ACTIONS(3497), + [anon_sym_AMP] = ACTIONS(3497), + [anon_sym_EQ_EQ] = ACTIONS(3499), + [anon_sym_BANG_EQ] = ACTIONS(3499), + [anon_sym_GT] = ACTIONS(3497), + [anon_sym_GT_EQ] = ACTIONS(3499), + [anon_sym_LT_EQ] = ACTIONS(3497), + [anon_sym_LT] = ACTIONS(3497), + [anon_sym_LT_LT] = ACTIONS(3497), + [anon_sym_GT_GT] = ACTIONS(3497), + [anon_sym_SEMI] = ACTIONS(3499), + [anon_sym_extern] = ACTIONS(3497), + [anon_sym___attribute__] = ACTIONS(3497), + [anon_sym_COLON_COLON] = ACTIONS(3499), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3499), + [anon_sym___declspec] = ACTIONS(3497), + [anon_sym___based] = ACTIONS(3497), + [anon_sym_LBRACE] = ACTIONS(3499), + [anon_sym_RBRACE] = ACTIONS(3499), + [anon_sym_LBRACK] = ACTIONS(3497), + [anon_sym_EQ] = ACTIONS(3497), + [anon_sym_static] = ACTIONS(3497), + [anon_sym_register] = ACTIONS(3497), + [anon_sym_inline] = ACTIONS(3497), + [anon_sym_thread_local] = ACTIONS(3497), + [anon_sym_const] = ACTIONS(3497), + [anon_sym_volatile] = ACTIONS(3497), + [anon_sym_restrict] = ACTIONS(3497), + [anon_sym__Atomic] = ACTIONS(3497), + [anon_sym_mutable] = ACTIONS(3497), + [anon_sym_constexpr] = ACTIONS(3497), + [anon_sym_constinit] = ACTIONS(3497), + [anon_sym_consteval] = ACTIONS(3497), + [anon_sym_QMARK] = ACTIONS(3499), + [anon_sym_STAR_EQ] = ACTIONS(3499), + [anon_sym_SLASH_EQ] = ACTIONS(3499), + [anon_sym_PERCENT_EQ] = ACTIONS(3499), + [anon_sym_PLUS_EQ] = ACTIONS(3499), + [anon_sym_DASH_EQ] = ACTIONS(3499), + [anon_sym_LT_LT_EQ] = ACTIONS(3499), + [anon_sym_GT_GT_EQ] = ACTIONS(3499), + [anon_sym_AMP_EQ] = ACTIONS(3499), + [anon_sym_CARET_EQ] = ACTIONS(3499), + [anon_sym_PIPE_EQ] = ACTIONS(3499), + [anon_sym_and_eq] = ACTIONS(3497), + [anon_sym_or_eq] = ACTIONS(3497), + [anon_sym_xor_eq] = ACTIONS(3497), + [anon_sym_LT_EQ_GT] = ACTIONS(3499), + [anon_sym_or] = ACTIONS(3497), + [anon_sym_and] = ACTIONS(3497), + [anon_sym_bitor] = ACTIONS(3497), + [anon_sym_xor] = ACTIONS(3497), + [anon_sym_bitand] = ACTIONS(3497), + [anon_sym_not_eq] = ACTIONS(3497), + [anon_sym_DASH_DASH] = ACTIONS(3499), + [anon_sym_PLUS_PLUS] = ACTIONS(3499), + [anon_sym_DOT] = ACTIONS(3497), + [anon_sym_DASH_GT] = ACTIONS(3499), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3497), + [anon_sym_decltype] = ACTIONS(3497), + [anon_sym_virtual] = ACTIONS(3497), + [anon_sym_template] = ACTIONS(3497), + [anon_sym_operator] = ACTIONS(3497), + }, + [1301] = { + [sym_identifier] = ACTIONS(3501), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3503), + [anon_sym_COMMA] = ACTIONS(3503), + [anon_sym_RPAREN] = ACTIONS(3503), + [anon_sym_LPAREN2] = ACTIONS(3503), + [anon_sym_TILDE] = ACTIONS(3503), + [anon_sym_DASH] = ACTIONS(3501), + [anon_sym_PLUS] = ACTIONS(3501), + [anon_sym_STAR] = ACTIONS(3501), + [anon_sym_SLASH] = ACTIONS(3501), + [anon_sym_PERCENT] = ACTIONS(3501), + [anon_sym_PIPE_PIPE] = ACTIONS(3503), + [anon_sym_AMP_AMP] = ACTIONS(3503), + [anon_sym_PIPE] = ACTIONS(3501), + [anon_sym_CARET] = ACTIONS(3501), + [anon_sym_AMP] = ACTIONS(3501), + [anon_sym_EQ_EQ] = ACTIONS(3503), + [anon_sym_BANG_EQ] = ACTIONS(3503), + [anon_sym_GT] = ACTIONS(3501), + [anon_sym_GT_EQ] = ACTIONS(3503), + [anon_sym_LT_EQ] = ACTIONS(3501), + [anon_sym_LT] = ACTIONS(3501), + [anon_sym_LT_LT] = ACTIONS(3501), + [anon_sym_GT_GT] = ACTIONS(3501), + [anon_sym_extern] = ACTIONS(3501), + [anon_sym___attribute__] = ACTIONS(3501), + [anon_sym_COLON_COLON] = ACTIONS(3503), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3503), + [anon_sym___declspec] = ACTIONS(3501), + [anon_sym___based] = ACTIONS(3501), + [anon_sym_LBRACE] = ACTIONS(3503), + [anon_sym_LBRACK] = ACTIONS(3501), + [anon_sym_EQ] = ACTIONS(3501), + [anon_sym_static] = ACTIONS(3501), + [anon_sym_register] = ACTIONS(3501), + [anon_sym_inline] = ACTIONS(3501), + [anon_sym_thread_local] = ACTIONS(3501), + [anon_sym_const] = ACTIONS(3501), + [anon_sym_volatile] = ACTIONS(3501), + [anon_sym_restrict] = ACTIONS(3501), + [anon_sym__Atomic] = ACTIONS(3501), + [anon_sym_mutable] = ACTIONS(3501), + [anon_sym_constexpr] = ACTIONS(3501), + [anon_sym_constinit] = ACTIONS(3501), + [anon_sym_consteval] = ACTIONS(3501), + [anon_sym_QMARK] = ACTIONS(3503), + [anon_sym_STAR_EQ] = ACTIONS(3503), + [anon_sym_SLASH_EQ] = ACTIONS(3503), + [anon_sym_PERCENT_EQ] = ACTIONS(3503), + [anon_sym_PLUS_EQ] = ACTIONS(3503), + [anon_sym_DASH_EQ] = ACTIONS(3503), + [anon_sym_LT_LT_EQ] = ACTIONS(3503), + [anon_sym_GT_GT_EQ] = ACTIONS(3503), + [anon_sym_AMP_EQ] = ACTIONS(3503), + [anon_sym_CARET_EQ] = ACTIONS(3503), + [anon_sym_PIPE_EQ] = ACTIONS(3503), + [anon_sym_and_eq] = ACTIONS(3501), + [anon_sym_or_eq] = ACTIONS(3501), + [anon_sym_xor_eq] = ACTIONS(3501), + [anon_sym_LT_EQ_GT] = ACTIONS(3503), + [anon_sym_or] = ACTIONS(3501), + [anon_sym_and] = ACTIONS(3501), + [anon_sym_bitor] = ACTIONS(3501), + [anon_sym_xor] = ACTIONS(3501), + [anon_sym_bitand] = ACTIONS(3501), + [anon_sym_not_eq] = ACTIONS(3501), + [anon_sym_DASH_DASH] = ACTIONS(3503), + [anon_sym_PLUS_PLUS] = ACTIONS(3503), + [anon_sym_DOT] = ACTIONS(3501), + [anon_sym_DASH_GT] = ACTIONS(3501), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3501), + [anon_sym_decltype] = ACTIONS(3501), + [anon_sym_virtual] = ACTIONS(3501), + [anon_sym_template] = ACTIONS(3501), + [anon_sym_operator] = ACTIONS(3501), + [anon_sym_DOT_STAR] = ACTIONS(3503), + [anon_sym_DASH_GT_STAR] = ACTIONS(3503), + }, + [1302] = { + [sym_identifier] = ACTIONS(3505), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3507), + [anon_sym_COMMA] = ACTIONS(3507), + [anon_sym_RPAREN] = ACTIONS(3507), + [anon_sym_LPAREN2] = ACTIONS(3507), + [anon_sym_TILDE] = ACTIONS(3507), + [anon_sym_DASH] = ACTIONS(3505), + [anon_sym_PLUS] = ACTIONS(3505), + [anon_sym_STAR] = ACTIONS(3505), + [anon_sym_SLASH] = ACTIONS(3505), + [anon_sym_PERCENT] = ACTIONS(3505), + [anon_sym_PIPE_PIPE] = ACTIONS(3507), + [anon_sym_AMP_AMP] = ACTIONS(3507), + [anon_sym_PIPE] = ACTIONS(3505), + [anon_sym_CARET] = ACTIONS(3505), + [anon_sym_AMP] = ACTIONS(3505), + [anon_sym_EQ_EQ] = ACTIONS(3507), + [anon_sym_BANG_EQ] = ACTIONS(3507), + [anon_sym_GT] = ACTIONS(3505), + [anon_sym_GT_EQ] = ACTIONS(3507), + [anon_sym_LT_EQ] = ACTIONS(3505), + [anon_sym_LT] = ACTIONS(3505), + [anon_sym_LT_LT] = ACTIONS(3505), + [anon_sym_GT_GT] = ACTIONS(3505), + [anon_sym_extern] = ACTIONS(3505), + [anon_sym___attribute__] = ACTIONS(3505), + [anon_sym_COLON_COLON] = ACTIONS(3507), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3507), + [anon_sym___declspec] = ACTIONS(3505), + [anon_sym___based] = ACTIONS(3505), + [anon_sym_LBRACE] = ACTIONS(3507), + [anon_sym_LBRACK] = ACTIONS(3505), + [anon_sym_EQ] = ACTIONS(3505), + [anon_sym_static] = ACTIONS(3505), + [anon_sym_register] = ACTIONS(3505), + [anon_sym_inline] = ACTIONS(3505), + [anon_sym_thread_local] = ACTIONS(3505), + [anon_sym_const] = ACTIONS(3505), + [anon_sym_volatile] = ACTIONS(3505), + [anon_sym_restrict] = ACTIONS(3505), + [anon_sym__Atomic] = ACTIONS(3505), + [anon_sym_mutable] = ACTIONS(3505), + [anon_sym_constexpr] = ACTIONS(3505), + [anon_sym_constinit] = ACTIONS(3505), + [anon_sym_consteval] = ACTIONS(3505), + [anon_sym_QMARK] = ACTIONS(3507), + [anon_sym_STAR_EQ] = ACTIONS(3507), + [anon_sym_SLASH_EQ] = ACTIONS(3507), + [anon_sym_PERCENT_EQ] = ACTIONS(3507), + [anon_sym_PLUS_EQ] = ACTIONS(3507), + [anon_sym_DASH_EQ] = ACTIONS(3507), + [anon_sym_LT_LT_EQ] = ACTIONS(3507), + [anon_sym_GT_GT_EQ] = ACTIONS(3507), + [anon_sym_AMP_EQ] = ACTIONS(3507), + [anon_sym_CARET_EQ] = ACTIONS(3507), + [anon_sym_PIPE_EQ] = ACTIONS(3507), + [anon_sym_and_eq] = ACTIONS(3505), + [anon_sym_or_eq] = ACTIONS(3505), + [anon_sym_xor_eq] = ACTIONS(3505), + [anon_sym_LT_EQ_GT] = ACTIONS(3507), + [anon_sym_or] = ACTIONS(3505), + [anon_sym_and] = ACTIONS(3505), + [anon_sym_bitor] = ACTIONS(3505), + [anon_sym_xor] = ACTIONS(3505), + [anon_sym_bitand] = ACTIONS(3505), + [anon_sym_not_eq] = ACTIONS(3505), + [anon_sym_DASH_DASH] = ACTIONS(3507), + [anon_sym_PLUS_PLUS] = ACTIONS(3507), + [anon_sym_DOT] = ACTIONS(3505), + [anon_sym_DASH_GT] = ACTIONS(3505), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3505), + [anon_sym_decltype] = ACTIONS(3505), + [anon_sym_virtual] = ACTIONS(3505), + [anon_sym_template] = ACTIONS(3505), + [anon_sym_operator] = ACTIONS(3505), + [anon_sym_DOT_STAR] = ACTIONS(3507), + [anon_sym_DASH_GT_STAR] = ACTIONS(3507), + }, + [1303] = { + [sym_identifier] = ACTIONS(3505), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3507), + [anon_sym_COMMA] = ACTIONS(3507), + [anon_sym_RPAREN] = ACTIONS(3507), + [anon_sym_LPAREN2] = ACTIONS(3507), + [anon_sym_TILDE] = ACTIONS(3507), + [anon_sym_DASH] = ACTIONS(3505), + [anon_sym_PLUS] = ACTIONS(3505), + [anon_sym_STAR] = ACTIONS(3505), + [anon_sym_SLASH] = ACTIONS(3505), + [anon_sym_PERCENT] = ACTIONS(3505), + [anon_sym_PIPE_PIPE] = ACTIONS(3507), + [anon_sym_AMP_AMP] = ACTIONS(3507), + [anon_sym_PIPE] = ACTIONS(3505), + [anon_sym_CARET] = ACTIONS(3505), + [anon_sym_AMP] = ACTIONS(3505), + [anon_sym_EQ_EQ] = ACTIONS(3507), + [anon_sym_BANG_EQ] = ACTIONS(3507), + [anon_sym_GT] = ACTIONS(3505), + [anon_sym_GT_EQ] = ACTIONS(3507), + [anon_sym_LT_EQ] = ACTIONS(3505), + [anon_sym_LT] = ACTIONS(3505), + [anon_sym_LT_LT] = ACTIONS(3505), + [anon_sym_GT_GT] = ACTIONS(3505), + [anon_sym_SEMI] = ACTIONS(3507), + [anon_sym_extern] = ACTIONS(3505), + [anon_sym___attribute__] = ACTIONS(3505), + [anon_sym_COLON_COLON] = ACTIONS(3507), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3507), + [anon_sym___declspec] = ACTIONS(3505), + [anon_sym___based] = ACTIONS(3505), + [anon_sym_LBRACE] = ACTIONS(3507), + [anon_sym_RBRACE] = ACTIONS(3507), + [anon_sym_LBRACK] = ACTIONS(3505), + [anon_sym_EQ] = ACTIONS(3505), + [anon_sym_static] = ACTIONS(3505), + [anon_sym_register] = ACTIONS(3505), + [anon_sym_inline] = ACTIONS(3505), + [anon_sym_thread_local] = ACTIONS(3505), + [anon_sym_const] = ACTIONS(3505), + [anon_sym_volatile] = ACTIONS(3505), + [anon_sym_restrict] = ACTIONS(3505), + [anon_sym__Atomic] = ACTIONS(3505), + [anon_sym_mutable] = ACTIONS(3505), + [anon_sym_constexpr] = ACTIONS(3505), + [anon_sym_constinit] = ACTIONS(3505), + [anon_sym_consteval] = ACTIONS(3505), + [anon_sym_QMARK] = ACTIONS(3507), + [anon_sym_STAR_EQ] = ACTIONS(3507), + [anon_sym_SLASH_EQ] = ACTIONS(3507), + [anon_sym_PERCENT_EQ] = ACTIONS(3507), + [anon_sym_PLUS_EQ] = ACTIONS(3507), + [anon_sym_DASH_EQ] = ACTIONS(3507), + [anon_sym_LT_LT_EQ] = ACTIONS(3507), + [anon_sym_GT_GT_EQ] = ACTIONS(3507), + [anon_sym_AMP_EQ] = ACTIONS(3507), + [anon_sym_CARET_EQ] = ACTIONS(3507), + [anon_sym_PIPE_EQ] = ACTIONS(3507), + [anon_sym_and_eq] = ACTIONS(3505), + [anon_sym_or_eq] = ACTIONS(3505), + [anon_sym_xor_eq] = ACTIONS(3505), + [anon_sym_LT_EQ_GT] = ACTIONS(3507), + [anon_sym_or] = ACTIONS(3505), + [anon_sym_and] = ACTIONS(3505), + [anon_sym_bitor] = ACTIONS(3505), + [anon_sym_xor] = ACTIONS(3505), + [anon_sym_bitand] = ACTIONS(3505), + [anon_sym_not_eq] = ACTIONS(3505), + [anon_sym_DASH_DASH] = ACTIONS(3507), + [anon_sym_PLUS_PLUS] = ACTIONS(3507), + [anon_sym_DOT] = ACTIONS(3505), + [anon_sym_DASH_GT] = ACTIONS(3507), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3505), + [anon_sym_decltype] = ACTIONS(3505), + [anon_sym_virtual] = ACTIONS(3505), + [anon_sym_template] = ACTIONS(3505), + [anon_sym_operator] = ACTIONS(3505), + }, + [1304] = { + [sym_identifier] = ACTIONS(3509), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3511), + [anon_sym_COMMA] = ACTIONS(3511), + [anon_sym_RPAREN] = ACTIONS(3511), + [anon_sym_LPAREN2] = ACTIONS(3511), + [anon_sym_TILDE] = ACTIONS(3511), + [anon_sym_DASH] = ACTIONS(3509), + [anon_sym_PLUS] = ACTIONS(3509), + [anon_sym_STAR] = ACTIONS(3509), + [anon_sym_SLASH] = ACTIONS(3509), + [anon_sym_PERCENT] = ACTIONS(3509), + [anon_sym_PIPE_PIPE] = ACTIONS(3511), + [anon_sym_AMP_AMP] = ACTIONS(3511), + [anon_sym_PIPE] = ACTIONS(3509), + [anon_sym_CARET] = ACTIONS(3509), + [anon_sym_AMP] = ACTIONS(3509), + [anon_sym_EQ_EQ] = ACTIONS(3511), + [anon_sym_BANG_EQ] = ACTIONS(3511), + [anon_sym_GT] = ACTIONS(3509), + [anon_sym_GT_EQ] = ACTIONS(3511), + [anon_sym_LT_EQ] = ACTIONS(3509), + [anon_sym_LT] = ACTIONS(3509), + [anon_sym_LT_LT] = ACTIONS(3509), + [anon_sym_GT_GT] = ACTIONS(3509), + [anon_sym_SEMI] = ACTIONS(3511), + [anon_sym_extern] = ACTIONS(3509), + [anon_sym___attribute__] = ACTIONS(3509), + [anon_sym_COLON_COLON] = ACTIONS(3511), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3511), + [anon_sym___declspec] = ACTIONS(3509), + [anon_sym___based] = ACTIONS(3509), + [anon_sym_LBRACE] = ACTIONS(3511), + [anon_sym_RBRACE] = ACTIONS(3511), + [anon_sym_LBRACK] = ACTIONS(3509), + [anon_sym_EQ] = ACTIONS(3509), + [anon_sym_static] = ACTIONS(3509), + [anon_sym_register] = ACTIONS(3509), + [anon_sym_inline] = ACTIONS(3509), + [anon_sym_thread_local] = ACTIONS(3509), + [anon_sym_const] = ACTIONS(3509), + [anon_sym_volatile] = ACTIONS(3509), + [anon_sym_restrict] = ACTIONS(3509), + [anon_sym__Atomic] = ACTIONS(3509), + [anon_sym_mutable] = ACTIONS(3509), + [anon_sym_constexpr] = ACTIONS(3509), + [anon_sym_constinit] = ACTIONS(3509), + [anon_sym_consteval] = ACTIONS(3509), + [anon_sym_QMARK] = ACTIONS(3511), + [anon_sym_STAR_EQ] = ACTIONS(3511), + [anon_sym_SLASH_EQ] = ACTIONS(3511), + [anon_sym_PERCENT_EQ] = ACTIONS(3511), + [anon_sym_PLUS_EQ] = ACTIONS(3511), + [anon_sym_DASH_EQ] = ACTIONS(3511), + [anon_sym_LT_LT_EQ] = ACTIONS(3511), + [anon_sym_GT_GT_EQ] = ACTIONS(3511), + [anon_sym_AMP_EQ] = ACTIONS(3511), + [anon_sym_CARET_EQ] = ACTIONS(3511), + [anon_sym_PIPE_EQ] = ACTIONS(3511), + [anon_sym_and_eq] = ACTIONS(3509), + [anon_sym_or_eq] = ACTIONS(3509), + [anon_sym_xor_eq] = ACTIONS(3509), + [anon_sym_LT_EQ_GT] = ACTIONS(3511), + [anon_sym_or] = ACTIONS(3509), + [anon_sym_and] = ACTIONS(3509), + [anon_sym_bitor] = ACTIONS(3509), + [anon_sym_xor] = ACTIONS(3509), + [anon_sym_bitand] = ACTIONS(3509), + [anon_sym_not_eq] = ACTIONS(3509), + [anon_sym_DASH_DASH] = ACTIONS(3511), + [anon_sym_PLUS_PLUS] = ACTIONS(3511), + [anon_sym_DOT] = ACTIONS(3509), + [anon_sym_DASH_GT] = ACTIONS(3511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3509), + [anon_sym_decltype] = ACTIONS(3509), + [anon_sym_virtual] = ACTIONS(3509), + [anon_sym_template] = ACTIONS(3509), + [anon_sym_operator] = ACTIONS(3509), + }, + [1305] = { + [sym_template_argument_list] = STATE(1825), + [sym_identifier] = ACTIONS(3407), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3419), + [anon_sym_COMMA] = ACTIONS(3419), + [anon_sym_LPAREN2] = ACTIONS(3447), + [anon_sym_TILDE] = ACTIONS(3412), + [anon_sym_DASH] = ACTIONS(3414), + [anon_sym_PLUS] = ACTIONS(3414), + [anon_sym_STAR] = ACTIONS(3416), + [anon_sym_SLASH] = ACTIONS(3414), + [anon_sym_PERCENT] = ACTIONS(3414), + [anon_sym_PIPE_PIPE] = ACTIONS(3419), + [anon_sym_AMP_AMP] = ACTIONS(3409), + [anon_sym_PIPE] = ACTIONS(3414), + [anon_sym_CARET] = ACTIONS(3414), + [anon_sym_AMP] = ACTIONS(3416), + [anon_sym_EQ_EQ] = ACTIONS(3419), + [anon_sym_BANG_EQ] = ACTIONS(3419), + [anon_sym_GT] = ACTIONS(3414), + [anon_sym_GT_EQ] = ACTIONS(3419), + [anon_sym_LT_EQ] = ACTIONS(3414), + [anon_sym_LT] = ACTIONS(3451), + [anon_sym_LT_LT] = ACTIONS(3414), + [anon_sym_GT_GT] = ACTIONS(3414), + [anon_sym_SEMI] = ACTIONS(3409), + [anon_sym_extern] = ACTIONS(3407), + [anon_sym___attribute__] = ACTIONS(3407), + [anon_sym_COLON_COLON] = ACTIONS(3424), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3454), + [anon_sym___declspec] = ACTIONS(3407), + [anon_sym___based] = ACTIONS(3407), + [anon_sym_LBRACE] = ACTIONS(3426), + [anon_sym_LBRACK] = ACTIONS(3457), + [anon_sym_EQ] = ACTIONS(3461), + [anon_sym_static] = ACTIONS(3407), + [anon_sym_register] = ACTIONS(3407), + [anon_sym_inline] = ACTIONS(3407), + [anon_sym_thread_local] = ACTIONS(3407), + [anon_sym_const] = ACTIONS(3407), + [anon_sym_volatile] = ACTIONS(3407), + [anon_sym_restrict] = ACTIONS(3407), + [anon_sym__Atomic] = ACTIONS(3407), + [anon_sym_mutable] = ACTIONS(3407), + [anon_sym_constexpr] = ACTIONS(3407), + [anon_sym_constinit] = ACTIONS(3407), + [anon_sym_consteval] = ACTIONS(3407), + [anon_sym_COLON] = ACTIONS(3513), + [anon_sym_QMARK] = ACTIONS(3419), + [anon_sym_STAR_EQ] = ACTIONS(3465), + [anon_sym_SLASH_EQ] = ACTIONS(3465), + [anon_sym_PERCENT_EQ] = ACTIONS(3465), + [anon_sym_PLUS_EQ] = ACTIONS(3465), + [anon_sym_DASH_EQ] = ACTIONS(3465), + [anon_sym_LT_LT_EQ] = ACTIONS(3465), + [anon_sym_GT_GT_EQ] = ACTIONS(3465), + [anon_sym_AMP_EQ] = ACTIONS(3465), + [anon_sym_CARET_EQ] = ACTIONS(3465), + [anon_sym_PIPE_EQ] = ACTIONS(3465), + [anon_sym_and_eq] = ACTIONS(3461), + [anon_sym_or_eq] = ACTIONS(3461), + [anon_sym_xor_eq] = ACTIONS(3461), + [anon_sym_LT_EQ_GT] = ACTIONS(3419), + [anon_sym_or] = ACTIONS(3414), + [anon_sym_and] = ACTIONS(3414), + [anon_sym_bitor] = ACTIONS(3414), + [anon_sym_xor] = ACTIONS(3414), + [anon_sym_bitand] = ACTIONS(3414), + [anon_sym_not_eq] = ACTIONS(3414), + [anon_sym_DASH_DASH] = ACTIONS(3419), + [anon_sym_PLUS_PLUS] = ACTIONS(3419), + [anon_sym_DOT] = ACTIONS(3414), + [anon_sym_DASH_GT] = ACTIONS(3419), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3407), + [anon_sym_decltype] = ACTIONS(3407), + [anon_sym_virtual] = ACTIONS(3407), + [anon_sym_template] = ACTIONS(3407), + [anon_sym_operator] = ACTIONS(3407), + }, + [1306] = { + [sym_identifier] = ACTIONS(3501), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3503), + [anon_sym_COMMA] = ACTIONS(3503), + [anon_sym_RPAREN] = ACTIONS(3503), + [anon_sym_LPAREN2] = ACTIONS(3503), + [anon_sym_TILDE] = ACTIONS(3503), + [anon_sym_DASH] = ACTIONS(3501), + [anon_sym_PLUS] = ACTIONS(3501), + [anon_sym_STAR] = ACTIONS(3501), + [anon_sym_SLASH] = ACTIONS(3501), + [anon_sym_PERCENT] = ACTIONS(3501), + [anon_sym_PIPE_PIPE] = ACTIONS(3503), + [anon_sym_AMP_AMP] = ACTIONS(3503), + [anon_sym_PIPE] = ACTIONS(3501), + [anon_sym_CARET] = ACTIONS(3501), + [anon_sym_AMP] = ACTIONS(3501), + [anon_sym_EQ_EQ] = ACTIONS(3503), + [anon_sym_BANG_EQ] = ACTIONS(3503), + [anon_sym_GT] = ACTIONS(3501), + [anon_sym_GT_EQ] = ACTIONS(3503), + [anon_sym_LT_EQ] = ACTIONS(3501), + [anon_sym_LT] = ACTIONS(3501), + [anon_sym_LT_LT] = ACTIONS(3501), + [anon_sym_GT_GT] = ACTIONS(3501), + [anon_sym_SEMI] = ACTIONS(3503), + [anon_sym_extern] = ACTIONS(3501), + [anon_sym___attribute__] = ACTIONS(3501), + [anon_sym_COLON_COLON] = ACTIONS(3503), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3503), + [anon_sym___declspec] = ACTIONS(3501), + [anon_sym___based] = ACTIONS(3501), + [anon_sym_LBRACE] = ACTIONS(3503), + [anon_sym_RBRACE] = ACTIONS(3503), + [anon_sym_LBRACK] = ACTIONS(3501), + [anon_sym_EQ] = ACTIONS(3501), + [anon_sym_static] = ACTIONS(3501), + [anon_sym_register] = ACTIONS(3501), + [anon_sym_inline] = ACTIONS(3501), + [anon_sym_thread_local] = ACTIONS(3501), + [anon_sym_const] = ACTIONS(3501), + [anon_sym_volatile] = ACTIONS(3501), + [anon_sym_restrict] = ACTIONS(3501), + [anon_sym__Atomic] = ACTIONS(3501), + [anon_sym_mutable] = ACTIONS(3501), + [anon_sym_constexpr] = ACTIONS(3501), + [anon_sym_constinit] = ACTIONS(3501), + [anon_sym_consteval] = ACTIONS(3501), + [anon_sym_QMARK] = ACTIONS(3503), + [anon_sym_STAR_EQ] = ACTIONS(3503), + [anon_sym_SLASH_EQ] = ACTIONS(3503), + [anon_sym_PERCENT_EQ] = ACTIONS(3503), + [anon_sym_PLUS_EQ] = ACTIONS(3503), + [anon_sym_DASH_EQ] = ACTIONS(3503), + [anon_sym_LT_LT_EQ] = ACTIONS(3503), + [anon_sym_GT_GT_EQ] = ACTIONS(3503), + [anon_sym_AMP_EQ] = ACTIONS(3503), + [anon_sym_CARET_EQ] = ACTIONS(3503), + [anon_sym_PIPE_EQ] = ACTIONS(3503), + [anon_sym_and_eq] = ACTIONS(3501), + [anon_sym_or_eq] = ACTIONS(3501), + [anon_sym_xor_eq] = ACTIONS(3501), + [anon_sym_LT_EQ_GT] = ACTIONS(3503), + [anon_sym_or] = ACTIONS(3501), + [anon_sym_and] = ACTIONS(3501), + [anon_sym_bitor] = ACTIONS(3501), + [anon_sym_xor] = ACTIONS(3501), + [anon_sym_bitand] = ACTIONS(3501), + [anon_sym_not_eq] = ACTIONS(3501), + [anon_sym_DASH_DASH] = ACTIONS(3503), + [anon_sym_PLUS_PLUS] = ACTIONS(3503), + [anon_sym_DOT] = ACTIONS(3501), + [anon_sym_DASH_GT] = ACTIONS(3503), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3501), + [anon_sym_decltype] = ACTIONS(3501), + [anon_sym_virtual] = ACTIONS(3501), + [anon_sym_template] = ACTIONS(3501), + [anon_sym_operator] = ACTIONS(3501), + }, + [1307] = { + [sym_identifier] = ACTIONS(3487), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3489), + [anon_sym_COMMA] = ACTIONS(3489), + [anon_sym_RPAREN] = ACTIONS(3489), + [anon_sym_LPAREN2] = ACTIONS(3489), + [anon_sym_TILDE] = ACTIONS(3489), + [anon_sym_DASH] = ACTIONS(3487), + [anon_sym_PLUS] = ACTIONS(3487), + [anon_sym_STAR] = ACTIONS(3487), + [anon_sym_SLASH] = ACTIONS(3487), + [anon_sym_PERCENT] = ACTIONS(3487), + [anon_sym_PIPE_PIPE] = ACTIONS(3489), + [anon_sym_AMP_AMP] = ACTIONS(3489), + [anon_sym_PIPE] = ACTIONS(3487), + [anon_sym_CARET] = ACTIONS(3487), + [anon_sym_AMP] = ACTIONS(3487), + [anon_sym_EQ_EQ] = ACTIONS(3489), + [anon_sym_BANG_EQ] = ACTIONS(3489), + [anon_sym_GT] = ACTIONS(3487), + [anon_sym_GT_EQ] = ACTIONS(3489), + [anon_sym_LT_EQ] = ACTIONS(3487), + [anon_sym_LT] = ACTIONS(3487), + [anon_sym_LT_LT] = ACTIONS(3487), + [anon_sym_GT_GT] = ACTIONS(3487), + [anon_sym_extern] = ACTIONS(3487), + [anon_sym___attribute__] = ACTIONS(3487), + [anon_sym_COLON_COLON] = ACTIONS(3489), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3489), + [anon_sym___declspec] = ACTIONS(3487), + [anon_sym___based] = ACTIONS(3487), + [anon_sym_LBRACE] = ACTIONS(3489), + [anon_sym_LBRACK] = ACTIONS(3487), + [anon_sym_EQ] = ACTIONS(3487), + [anon_sym_static] = ACTIONS(3487), + [anon_sym_register] = ACTIONS(3487), + [anon_sym_inline] = ACTIONS(3487), + [anon_sym_thread_local] = ACTIONS(3487), + [anon_sym_const] = ACTIONS(3487), + [anon_sym_volatile] = ACTIONS(3487), + [anon_sym_restrict] = ACTIONS(3487), + [anon_sym__Atomic] = ACTIONS(3487), + [anon_sym_mutable] = ACTIONS(3487), + [anon_sym_constexpr] = ACTIONS(3487), + [anon_sym_constinit] = ACTIONS(3487), + [anon_sym_consteval] = ACTIONS(3487), + [anon_sym_QMARK] = ACTIONS(3489), + [anon_sym_STAR_EQ] = ACTIONS(3489), + [anon_sym_SLASH_EQ] = ACTIONS(3489), + [anon_sym_PERCENT_EQ] = ACTIONS(3489), + [anon_sym_PLUS_EQ] = ACTIONS(3489), + [anon_sym_DASH_EQ] = ACTIONS(3489), + [anon_sym_LT_LT_EQ] = ACTIONS(3489), + [anon_sym_GT_GT_EQ] = ACTIONS(3489), + [anon_sym_AMP_EQ] = ACTIONS(3489), + [anon_sym_CARET_EQ] = ACTIONS(3489), + [anon_sym_PIPE_EQ] = ACTIONS(3489), + [anon_sym_and_eq] = ACTIONS(3487), + [anon_sym_or_eq] = ACTIONS(3487), + [anon_sym_xor_eq] = ACTIONS(3487), + [anon_sym_LT_EQ_GT] = ACTIONS(3489), + [anon_sym_or] = ACTIONS(3487), + [anon_sym_and] = ACTIONS(3487), + [anon_sym_bitor] = ACTIONS(3487), + [anon_sym_xor] = ACTIONS(3487), + [anon_sym_bitand] = ACTIONS(3487), + [anon_sym_not_eq] = ACTIONS(3487), + [anon_sym_DASH_DASH] = ACTIONS(3489), + [anon_sym_PLUS_PLUS] = ACTIONS(3489), + [anon_sym_DOT] = ACTIONS(3487), + [anon_sym_DASH_GT] = ACTIONS(3487), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3487), + [anon_sym_decltype] = ACTIONS(3487), + [anon_sym_virtual] = ACTIONS(3487), + [anon_sym_template] = ACTIONS(3487), + [anon_sym_operator] = ACTIONS(3487), + [anon_sym_DOT_STAR] = ACTIONS(3489), + [anon_sym_DASH_GT_STAR] = ACTIONS(3489), + }, + [1308] = { + [sym_template_argument_list] = STATE(1826), + [sym_identifier] = ACTIONS(3407), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3419), + [anon_sym_COMMA] = ACTIONS(3419), + [anon_sym_LPAREN2] = ACTIONS(3409), + [anon_sym_TILDE] = ACTIONS(3412), + [anon_sym_DASH] = ACTIONS(3414), + [anon_sym_PLUS] = ACTIONS(3414), + [anon_sym_STAR] = ACTIONS(3416), + [anon_sym_SLASH] = ACTIONS(3414), + [anon_sym_PERCENT] = ACTIONS(3414), + [anon_sym_PIPE_PIPE] = ACTIONS(3419), + [anon_sym_AMP_AMP] = ACTIONS(3409), + [anon_sym_PIPE] = ACTIONS(3414), + [anon_sym_CARET] = ACTIONS(3414), + [anon_sym_AMP] = ACTIONS(3416), + [anon_sym_EQ_EQ] = ACTIONS(3419), + [anon_sym_BANG_EQ] = ACTIONS(3419), + [anon_sym_GT] = ACTIONS(3414), + [anon_sym_GT_EQ] = ACTIONS(3419), + [anon_sym_LT_EQ] = ACTIONS(3414), + [anon_sym_LT] = ACTIONS(3451), + [anon_sym_LT_LT] = ACTIONS(3414), + [anon_sym_GT_GT] = ACTIONS(3414), + [anon_sym_SEMI] = ACTIONS(3419), + [anon_sym_extern] = ACTIONS(3407), + [anon_sym___attribute__] = ACTIONS(3407), + [anon_sym_COLON_COLON] = ACTIONS(3424), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3412), + [anon_sym___declspec] = ACTIONS(3407), + [anon_sym___based] = ACTIONS(3407), + [anon_sym_LBRACE] = ACTIONS(3426), + [anon_sym_LBRACK] = ACTIONS(3416), + [anon_sym_EQ] = ACTIONS(3461), + [anon_sym_static] = ACTIONS(3407), + [anon_sym_register] = ACTIONS(3407), + [anon_sym_inline] = ACTIONS(3407), + [anon_sym_thread_local] = ACTIONS(3407), + [anon_sym_const] = ACTIONS(3407), + [anon_sym_volatile] = ACTIONS(3407), + [anon_sym_restrict] = ACTIONS(3407), + [anon_sym__Atomic] = ACTIONS(3407), + [anon_sym_mutable] = ACTIONS(3407), + [anon_sym_constexpr] = ACTIONS(3407), + [anon_sym_constinit] = ACTIONS(3407), + [anon_sym_consteval] = ACTIONS(3407), + [anon_sym_COLON] = ACTIONS(3515), + [anon_sym_QMARK] = ACTIONS(3419), + [anon_sym_STAR_EQ] = ACTIONS(3465), + [anon_sym_SLASH_EQ] = ACTIONS(3465), + [anon_sym_PERCENT_EQ] = ACTIONS(3465), + [anon_sym_PLUS_EQ] = ACTIONS(3465), + [anon_sym_DASH_EQ] = ACTIONS(3465), + [anon_sym_LT_LT_EQ] = ACTIONS(3465), + [anon_sym_GT_GT_EQ] = ACTIONS(3465), + [anon_sym_AMP_EQ] = ACTIONS(3465), + [anon_sym_CARET_EQ] = ACTIONS(3465), + [anon_sym_PIPE_EQ] = ACTIONS(3465), + [anon_sym_and_eq] = ACTIONS(3461), + [anon_sym_or_eq] = ACTIONS(3461), + [anon_sym_xor_eq] = ACTIONS(3461), + [anon_sym_LT_EQ_GT] = ACTIONS(3419), + [anon_sym_or] = ACTIONS(3414), + [anon_sym_and] = ACTIONS(3414), + [anon_sym_bitor] = ACTIONS(3414), + [anon_sym_xor] = ACTIONS(3414), + [anon_sym_bitand] = ACTIONS(3414), + [anon_sym_not_eq] = ACTIONS(3414), + [anon_sym_DASH_DASH] = ACTIONS(3419), + [anon_sym_PLUS_PLUS] = ACTIONS(3419), + [anon_sym_DOT] = ACTIONS(3414), + [anon_sym_DASH_GT] = ACTIONS(3419), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3407), + [anon_sym_decltype] = ACTIONS(3407), + [anon_sym_virtual] = ACTIONS(3407), + [anon_sym_template] = ACTIONS(3407), + [anon_sym_operator] = ACTIONS(3407), + }, + [1309] = { + [sym_template_argument_list] = STATE(1826), + [sym_identifier] = ACTIONS(3407), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3419), + [anon_sym_COMMA] = ACTIONS(3419), + [anon_sym_LPAREN2] = ACTIONS(3409), + [anon_sym_TILDE] = ACTIONS(3412), + [anon_sym_DASH] = ACTIONS(3414), + [anon_sym_PLUS] = ACTIONS(3414), + [anon_sym_STAR] = ACTIONS(3416), + [anon_sym_SLASH] = ACTIONS(3414), + [anon_sym_PERCENT] = ACTIONS(3414), + [anon_sym_PIPE_PIPE] = ACTIONS(3419), + [anon_sym_AMP_AMP] = ACTIONS(3409), + [anon_sym_PIPE] = ACTIONS(3414), + [anon_sym_CARET] = ACTIONS(3414), + [anon_sym_AMP] = ACTIONS(3416), + [anon_sym_EQ_EQ] = ACTIONS(3419), + [anon_sym_BANG_EQ] = ACTIONS(3419), + [anon_sym_GT] = ACTIONS(3414), + [anon_sym_GT_EQ] = ACTIONS(3419), + [anon_sym_LT_EQ] = ACTIONS(3414), + [anon_sym_LT] = ACTIONS(3451), + [anon_sym_LT_LT] = ACTIONS(3414), + [anon_sym_GT_GT] = ACTIONS(3414), + [anon_sym_SEMI] = ACTIONS(3419), + [anon_sym_extern] = ACTIONS(3407), + [anon_sym___attribute__] = ACTIONS(3407), + [anon_sym_COLON_COLON] = ACTIONS(3424), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3412), + [anon_sym___declspec] = ACTIONS(3407), + [anon_sym___based] = ACTIONS(3407), + [anon_sym_LBRACE] = ACTIONS(3426), + [anon_sym_LBRACK] = ACTIONS(3416), + [anon_sym_EQ] = ACTIONS(3461), + [anon_sym_static] = ACTIONS(3407), + [anon_sym_register] = ACTIONS(3407), + [anon_sym_inline] = ACTIONS(3407), + [anon_sym_thread_local] = ACTIONS(3407), + [anon_sym_const] = ACTIONS(3407), + [anon_sym_volatile] = ACTIONS(3407), + [anon_sym_restrict] = ACTIONS(3407), + [anon_sym__Atomic] = ACTIONS(3407), + [anon_sym_mutable] = ACTIONS(3407), + [anon_sym_constexpr] = ACTIONS(3407), + [anon_sym_constinit] = ACTIONS(3407), + [anon_sym_consteval] = ACTIONS(3407), + [anon_sym_COLON] = ACTIONS(3463), + [anon_sym_QMARK] = ACTIONS(3419), + [anon_sym_STAR_EQ] = ACTIONS(3465), + [anon_sym_SLASH_EQ] = ACTIONS(3465), + [anon_sym_PERCENT_EQ] = ACTIONS(3465), + [anon_sym_PLUS_EQ] = ACTIONS(3465), + [anon_sym_DASH_EQ] = ACTIONS(3465), + [anon_sym_LT_LT_EQ] = ACTIONS(3465), + [anon_sym_GT_GT_EQ] = ACTIONS(3465), + [anon_sym_AMP_EQ] = ACTIONS(3465), + [anon_sym_CARET_EQ] = ACTIONS(3465), + [anon_sym_PIPE_EQ] = ACTIONS(3465), + [anon_sym_and_eq] = ACTIONS(3461), + [anon_sym_or_eq] = ACTIONS(3461), + [anon_sym_xor_eq] = ACTIONS(3461), + [anon_sym_LT_EQ_GT] = ACTIONS(3419), + [anon_sym_or] = ACTIONS(3414), + [anon_sym_and] = ACTIONS(3414), + [anon_sym_bitor] = ACTIONS(3414), + [anon_sym_xor] = ACTIONS(3414), + [anon_sym_bitand] = ACTIONS(3414), + [anon_sym_not_eq] = ACTIONS(3414), + [anon_sym_DASH_DASH] = ACTIONS(3419), + [anon_sym_PLUS_PLUS] = ACTIONS(3419), + [anon_sym_DOT] = ACTIONS(3414), + [anon_sym_DASH_GT] = ACTIONS(3419), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3407), + [anon_sym_decltype] = ACTIONS(3407), + [anon_sym_virtual] = ACTIONS(3407), + [anon_sym_template] = ACTIONS(3407), + [anon_sym_operator] = ACTIONS(3407), + }, + [1310] = { + [sym_identifier] = ACTIONS(3497), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3499), + [anon_sym_COMMA] = ACTIONS(3499), + [anon_sym_RPAREN] = ACTIONS(3499), + [anon_sym_LPAREN2] = ACTIONS(3499), + [anon_sym_TILDE] = ACTIONS(3499), + [anon_sym_DASH] = ACTIONS(3497), + [anon_sym_PLUS] = ACTIONS(3497), + [anon_sym_STAR] = ACTIONS(3497), + [anon_sym_SLASH] = ACTIONS(3497), + [anon_sym_PERCENT] = ACTIONS(3497), + [anon_sym_PIPE_PIPE] = ACTIONS(3499), + [anon_sym_AMP_AMP] = ACTIONS(3499), + [anon_sym_PIPE] = ACTIONS(3497), + [anon_sym_CARET] = ACTIONS(3497), + [anon_sym_AMP] = ACTIONS(3497), + [anon_sym_EQ_EQ] = ACTIONS(3499), + [anon_sym_BANG_EQ] = ACTIONS(3499), + [anon_sym_GT] = ACTIONS(3497), + [anon_sym_GT_EQ] = ACTIONS(3499), + [anon_sym_LT_EQ] = ACTIONS(3497), + [anon_sym_LT] = ACTIONS(3497), + [anon_sym_LT_LT] = ACTIONS(3497), + [anon_sym_GT_GT] = ACTIONS(3497), + [anon_sym_extern] = ACTIONS(3497), + [anon_sym___attribute__] = ACTIONS(3497), + [anon_sym_COLON_COLON] = ACTIONS(3499), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3499), + [anon_sym___declspec] = ACTIONS(3497), + [anon_sym___based] = ACTIONS(3497), + [anon_sym_LBRACE] = ACTIONS(3499), + [anon_sym_LBRACK] = ACTIONS(3497), + [anon_sym_EQ] = ACTIONS(3497), + [anon_sym_static] = ACTIONS(3497), + [anon_sym_register] = ACTIONS(3497), + [anon_sym_inline] = ACTIONS(3497), + [anon_sym_thread_local] = ACTIONS(3497), + [anon_sym_const] = ACTIONS(3497), + [anon_sym_volatile] = ACTIONS(3497), + [anon_sym_restrict] = ACTIONS(3497), + [anon_sym__Atomic] = ACTIONS(3497), + [anon_sym_mutable] = ACTIONS(3497), + [anon_sym_constexpr] = ACTIONS(3497), + [anon_sym_constinit] = ACTIONS(3497), + [anon_sym_consteval] = ACTIONS(3497), + [anon_sym_QMARK] = ACTIONS(3499), + [anon_sym_STAR_EQ] = ACTIONS(3499), + [anon_sym_SLASH_EQ] = ACTIONS(3499), + [anon_sym_PERCENT_EQ] = ACTIONS(3499), + [anon_sym_PLUS_EQ] = ACTIONS(3499), + [anon_sym_DASH_EQ] = ACTIONS(3499), + [anon_sym_LT_LT_EQ] = ACTIONS(3499), + [anon_sym_GT_GT_EQ] = ACTIONS(3499), + [anon_sym_AMP_EQ] = ACTIONS(3499), + [anon_sym_CARET_EQ] = ACTIONS(3499), + [anon_sym_PIPE_EQ] = ACTIONS(3499), + [anon_sym_and_eq] = ACTIONS(3497), + [anon_sym_or_eq] = ACTIONS(3497), + [anon_sym_xor_eq] = ACTIONS(3497), + [anon_sym_LT_EQ_GT] = ACTIONS(3499), + [anon_sym_or] = ACTIONS(3497), + [anon_sym_and] = ACTIONS(3497), + [anon_sym_bitor] = ACTIONS(3497), + [anon_sym_xor] = ACTIONS(3497), + [anon_sym_bitand] = ACTIONS(3497), + [anon_sym_not_eq] = ACTIONS(3497), + [anon_sym_DASH_DASH] = ACTIONS(3499), + [anon_sym_PLUS_PLUS] = ACTIONS(3499), + [anon_sym_DOT] = ACTIONS(3497), + [anon_sym_DASH_GT] = ACTIONS(3497), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3497), + [anon_sym_decltype] = ACTIONS(3497), + [anon_sym_virtual] = ACTIONS(3497), + [anon_sym_template] = ACTIONS(3497), + [anon_sym_operator] = ACTIONS(3497), + [anon_sym_DOT_STAR] = ACTIONS(3499), + [anon_sym_DASH_GT_STAR] = ACTIONS(3499), + }, + [1311] = { + [sym_template_argument_list] = STATE(1826), + [sym_identifier] = ACTIONS(3407), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3419), + [anon_sym_COMMA] = ACTIONS(3419), + [anon_sym_LPAREN2] = ACTIONS(3409), + [anon_sym_TILDE] = ACTIONS(3412), + [anon_sym_DASH] = ACTIONS(3414), + [anon_sym_PLUS] = ACTIONS(3414), + [anon_sym_STAR] = ACTIONS(3416), + [anon_sym_SLASH] = ACTIONS(3414), + [anon_sym_PERCENT] = ACTIONS(3414), + [anon_sym_PIPE_PIPE] = ACTIONS(3419), + [anon_sym_AMP_AMP] = ACTIONS(3409), + [anon_sym_PIPE] = ACTIONS(3414), + [anon_sym_CARET] = ACTIONS(3414), + [anon_sym_AMP] = ACTIONS(3416), + [anon_sym_EQ_EQ] = ACTIONS(3419), + [anon_sym_BANG_EQ] = ACTIONS(3419), + [anon_sym_GT] = ACTIONS(3414), + [anon_sym_GT_EQ] = ACTIONS(3419), + [anon_sym_LT_EQ] = ACTIONS(3414), + [anon_sym_LT] = ACTIONS(3451), + [anon_sym_LT_LT] = ACTIONS(3414), + [anon_sym_GT_GT] = ACTIONS(3414), + [anon_sym_SEMI] = ACTIONS(3419), + [anon_sym_extern] = ACTIONS(3407), + [anon_sym___attribute__] = ACTIONS(3407), + [anon_sym_COLON_COLON] = ACTIONS(3424), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3412), + [anon_sym___declspec] = ACTIONS(3407), + [anon_sym___based] = ACTIONS(3407), + [anon_sym_LBRACE] = ACTIONS(3426), + [anon_sym_LBRACK] = ACTIONS(3416), + [anon_sym_EQ] = ACTIONS(3461), + [anon_sym_static] = ACTIONS(3407), + [anon_sym_register] = ACTIONS(3407), + [anon_sym_inline] = ACTIONS(3407), + [anon_sym_thread_local] = ACTIONS(3407), + [anon_sym_const] = ACTIONS(3407), + [anon_sym_volatile] = ACTIONS(3407), + [anon_sym_restrict] = ACTIONS(3407), + [anon_sym__Atomic] = ACTIONS(3407), + [anon_sym_mutable] = ACTIONS(3407), + [anon_sym_constexpr] = ACTIONS(3407), + [anon_sym_constinit] = ACTIONS(3407), + [anon_sym_consteval] = ACTIONS(3407), + [anon_sym_COLON] = ACTIONS(3513), + [anon_sym_QMARK] = ACTIONS(3419), + [anon_sym_STAR_EQ] = ACTIONS(3465), + [anon_sym_SLASH_EQ] = ACTIONS(3465), + [anon_sym_PERCENT_EQ] = ACTIONS(3465), + [anon_sym_PLUS_EQ] = ACTIONS(3465), + [anon_sym_DASH_EQ] = ACTIONS(3465), + [anon_sym_LT_LT_EQ] = ACTIONS(3465), + [anon_sym_GT_GT_EQ] = ACTIONS(3465), + [anon_sym_AMP_EQ] = ACTIONS(3465), + [anon_sym_CARET_EQ] = ACTIONS(3465), + [anon_sym_PIPE_EQ] = ACTIONS(3465), + [anon_sym_and_eq] = ACTIONS(3461), + [anon_sym_or_eq] = ACTIONS(3461), + [anon_sym_xor_eq] = ACTIONS(3461), + [anon_sym_LT_EQ_GT] = ACTIONS(3419), + [anon_sym_or] = ACTIONS(3414), + [anon_sym_and] = ACTIONS(3414), + [anon_sym_bitor] = ACTIONS(3414), + [anon_sym_xor] = ACTIONS(3414), + [anon_sym_bitand] = ACTIONS(3414), + [anon_sym_not_eq] = ACTIONS(3414), + [anon_sym_DASH_DASH] = ACTIONS(3419), + [anon_sym_PLUS_PLUS] = ACTIONS(3419), + [anon_sym_DOT] = ACTIONS(3414), + [anon_sym_DASH_GT] = ACTIONS(3419), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3407), + [anon_sym_decltype] = ACTIONS(3407), + [anon_sym_virtual] = ACTIONS(3407), + [anon_sym_template] = ACTIONS(3407), + [anon_sym_operator] = ACTIONS(3407), + }, + [1312] = { + [sym_identifier] = ACTIONS(3509), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3511), + [anon_sym_COMMA] = ACTIONS(3511), + [anon_sym_RPAREN] = ACTIONS(3511), + [anon_sym_LPAREN2] = ACTIONS(3511), + [anon_sym_TILDE] = ACTIONS(3511), + [anon_sym_DASH] = ACTIONS(3509), + [anon_sym_PLUS] = ACTIONS(3509), + [anon_sym_STAR] = ACTIONS(3509), + [anon_sym_SLASH] = ACTIONS(3509), + [anon_sym_PERCENT] = ACTIONS(3509), + [anon_sym_PIPE_PIPE] = ACTIONS(3511), + [anon_sym_AMP_AMP] = ACTIONS(3511), + [anon_sym_PIPE] = ACTIONS(3509), + [anon_sym_CARET] = ACTIONS(3509), + [anon_sym_AMP] = ACTIONS(3509), + [anon_sym_EQ_EQ] = ACTIONS(3511), + [anon_sym_BANG_EQ] = ACTIONS(3511), + [anon_sym_GT] = ACTIONS(3509), + [anon_sym_GT_EQ] = ACTIONS(3511), + [anon_sym_LT_EQ] = ACTIONS(3509), + [anon_sym_LT] = ACTIONS(3509), + [anon_sym_LT_LT] = ACTIONS(3509), + [anon_sym_GT_GT] = ACTIONS(3509), + [anon_sym_extern] = ACTIONS(3509), + [anon_sym___attribute__] = ACTIONS(3509), + [anon_sym_COLON_COLON] = ACTIONS(3511), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3511), + [anon_sym___declspec] = ACTIONS(3509), + [anon_sym___based] = ACTIONS(3509), + [anon_sym_LBRACE] = ACTIONS(3511), + [anon_sym_LBRACK] = ACTIONS(3509), + [anon_sym_EQ] = ACTIONS(3509), + [anon_sym_static] = ACTIONS(3509), + [anon_sym_register] = ACTIONS(3509), + [anon_sym_inline] = ACTIONS(3509), + [anon_sym_thread_local] = ACTIONS(3509), + [anon_sym_const] = ACTIONS(3509), + [anon_sym_volatile] = ACTIONS(3509), + [anon_sym_restrict] = ACTIONS(3509), + [anon_sym__Atomic] = ACTIONS(3509), + [anon_sym_mutable] = ACTIONS(3509), + [anon_sym_constexpr] = ACTIONS(3509), + [anon_sym_constinit] = ACTIONS(3509), + [anon_sym_consteval] = ACTIONS(3509), + [anon_sym_QMARK] = ACTIONS(3511), + [anon_sym_STAR_EQ] = ACTIONS(3511), + [anon_sym_SLASH_EQ] = ACTIONS(3511), + [anon_sym_PERCENT_EQ] = ACTIONS(3511), + [anon_sym_PLUS_EQ] = ACTIONS(3511), + [anon_sym_DASH_EQ] = ACTIONS(3511), + [anon_sym_LT_LT_EQ] = ACTIONS(3511), + [anon_sym_GT_GT_EQ] = ACTIONS(3511), + [anon_sym_AMP_EQ] = ACTIONS(3511), + [anon_sym_CARET_EQ] = ACTIONS(3511), + [anon_sym_PIPE_EQ] = ACTIONS(3511), + [anon_sym_and_eq] = ACTIONS(3509), + [anon_sym_or_eq] = ACTIONS(3509), + [anon_sym_xor_eq] = ACTIONS(3509), + [anon_sym_LT_EQ_GT] = ACTIONS(3511), + [anon_sym_or] = ACTIONS(3509), + [anon_sym_and] = ACTIONS(3509), + [anon_sym_bitor] = ACTIONS(3509), + [anon_sym_xor] = ACTIONS(3509), + [anon_sym_bitand] = ACTIONS(3509), + [anon_sym_not_eq] = ACTIONS(3509), + [anon_sym_DASH_DASH] = ACTIONS(3511), + [anon_sym_PLUS_PLUS] = ACTIONS(3511), + [anon_sym_DOT] = ACTIONS(3509), + [anon_sym_DASH_GT] = ACTIONS(3509), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3509), + [anon_sym_decltype] = ACTIONS(3509), + [anon_sym_virtual] = ACTIONS(3509), + [anon_sym_template] = ACTIONS(3509), + [anon_sym_operator] = ACTIONS(3509), + [anon_sym_DOT_STAR] = ACTIONS(3511), + [anon_sym_DASH_GT_STAR] = ACTIONS(3511), + }, + [1313] = { + [sym_template_argument_list] = STATE(1330), + [sym_identifier] = ACTIONS(3430), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3442), + [anon_sym_COMMA] = ACTIONS(3442), + [anon_sym_RPAREN] = ACTIONS(3442), + [anon_sym_LPAREN2] = ACTIONS(3432), + [anon_sym_TILDE] = ACTIONS(3435), + [anon_sym_DASH] = ACTIONS(3437), + [anon_sym_PLUS] = ACTIONS(3437), + [anon_sym_STAR] = ACTIONS(3439), + [anon_sym_SLASH] = ACTIONS(3437), + [anon_sym_PERCENT] = ACTIONS(3437), + [anon_sym_PIPE_PIPE] = ACTIONS(3442), + [anon_sym_AMP_AMP] = ACTIONS(3432), + [anon_sym_PIPE] = ACTIONS(3437), + [anon_sym_CARET] = ACTIONS(3437), + [anon_sym_AMP] = ACTIONS(3439), + [anon_sym_EQ_EQ] = ACTIONS(3442), + [anon_sym_BANG_EQ] = ACTIONS(3442), + [anon_sym_GT] = ACTIONS(3437), + [anon_sym_GT_EQ] = ACTIONS(3442), + [anon_sym_LT_EQ] = ACTIONS(3437), + [anon_sym_LT] = ACTIONS(3517), + [anon_sym_LT_LT] = ACTIONS(3437), + [anon_sym_GT_GT] = ACTIONS(3437), + [anon_sym_SEMI] = ACTIONS(3442), + [anon_sym_extern] = ACTIONS(3430), + [anon_sym___attribute__] = ACTIONS(3430), + [anon_sym_COLON_COLON] = ACTIONS(3424), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3435), + [anon_sym___declspec] = ACTIONS(3430), + [anon_sym___based] = ACTIONS(3430), + [anon_sym_LBRACE] = ACTIONS(3435), + [anon_sym_LBRACK] = ACTIONS(3439), + [anon_sym_EQ] = ACTIONS(3437), + [anon_sym_static] = ACTIONS(3430), + [anon_sym_register] = ACTIONS(3430), + [anon_sym_inline] = ACTIONS(3430), + [anon_sym_thread_local] = ACTIONS(3430), + [anon_sym_const] = ACTIONS(3430), + [anon_sym_volatile] = ACTIONS(3430), + [anon_sym_restrict] = ACTIONS(3430), + [anon_sym__Atomic] = ACTIONS(3430), + [anon_sym_mutable] = ACTIONS(3430), + [anon_sym_constexpr] = ACTIONS(3430), + [anon_sym_constinit] = ACTIONS(3430), + [anon_sym_consteval] = ACTIONS(3430), + [anon_sym_QMARK] = ACTIONS(3442), + [anon_sym_STAR_EQ] = ACTIONS(3442), + [anon_sym_SLASH_EQ] = ACTIONS(3442), + [anon_sym_PERCENT_EQ] = ACTIONS(3442), + [anon_sym_PLUS_EQ] = ACTIONS(3442), + [anon_sym_DASH_EQ] = ACTIONS(3442), + [anon_sym_LT_LT_EQ] = ACTIONS(3442), + [anon_sym_GT_GT_EQ] = ACTIONS(3442), + [anon_sym_AMP_EQ] = ACTIONS(3442), + [anon_sym_CARET_EQ] = ACTIONS(3442), + [anon_sym_PIPE_EQ] = ACTIONS(3442), + [anon_sym_and_eq] = ACTIONS(3437), + [anon_sym_or_eq] = ACTIONS(3437), + [anon_sym_xor_eq] = ACTIONS(3437), + [anon_sym_LT_EQ_GT] = ACTIONS(3442), + [anon_sym_or] = ACTIONS(3437), + [anon_sym_and] = ACTIONS(3437), + [anon_sym_bitor] = ACTIONS(3437), + [anon_sym_xor] = ACTIONS(3437), + [anon_sym_bitand] = ACTIONS(3437), + [anon_sym_not_eq] = ACTIONS(3437), + [anon_sym_DASH_DASH] = ACTIONS(3442), + [anon_sym_PLUS_PLUS] = ACTIONS(3442), + [anon_sym_DOT] = ACTIONS(3437), + [anon_sym_DASH_GT] = ACTIONS(3442), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3430), + [anon_sym_decltype] = ACTIONS(3430), + [anon_sym_virtual] = ACTIONS(3430), + [anon_sym_template] = ACTIONS(3430), + [anon_sym_operator] = ACTIONS(3430), + }, + [1314] = { + [sym_identifier] = ACTIONS(3493), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3495), + [anon_sym_COMMA] = ACTIONS(3495), + [anon_sym_RPAREN] = ACTIONS(3495), + [anon_sym_LPAREN2] = ACTIONS(3495), + [anon_sym_TILDE] = ACTIONS(3495), + [anon_sym_DASH] = ACTIONS(3493), + [anon_sym_PLUS] = ACTIONS(3493), + [anon_sym_STAR] = ACTIONS(3493), + [anon_sym_SLASH] = ACTIONS(3493), + [anon_sym_PERCENT] = ACTIONS(3493), + [anon_sym_PIPE_PIPE] = ACTIONS(3495), + [anon_sym_AMP_AMP] = ACTIONS(3495), + [anon_sym_PIPE] = ACTIONS(3493), + [anon_sym_CARET] = ACTIONS(3493), + [anon_sym_AMP] = ACTIONS(3493), + [anon_sym_EQ_EQ] = ACTIONS(3495), + [anon_sym_BANG_EQ] = ACTIONS(3495), + [anon_sym_GT] = ACTIONS(3493), + [anon_sym_GT_EQ] = ACTIONS(3495), + [anon_sym_LT_EQ] = ACTIONS(3493), + [anon_sym_LT] = ACTIONS(3493), + [anon_sym_LT_LT] = ACTIONS(3493), + [anon_sym_GT_GT] = ACTIONS(3493), + [anon_sym_SEMI] = ACTIONS(3495), + [anon_sym_extern] = ACTIONS(3493), + [anon_sym___attribute__] = ACTIONS(3493), + [anon_sym_COLON_COLON] = ACTIONS(3495), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3495), + [anon_sym___declspec] = ACTIONS(3493), + [anon_sym___based] = ACTIONS(3493), + [anon_sym_LBRACE] = ACTIONS(3495), + [anon_sym_RBRACE] = ACTIONS(3495), + [anon_sym_LBRACK] = ACTIONS(3493), + [anon_sym_EQ] = ACTIONS(3493), + [anon_sym_static] = ACTIONS(3493), + [anon_sym_register] = ACTIONS(3493), + [anon_sym_inline] = ACTIONS(3493), + [anon_sym_thread_local] = ACTIONS(3493), + [anon_sym_const] = ACTIONS(3493), + [anon_sym_volatile] = ACTIONS(3493), + [anon_sym_restrict] = ACTIONS(3493), + [anon_sym__Atomic] = ACTIONS(3493), + [anon_sym_mutable] = ACTIONS(3493), + [anon_sym_constexpr] = ACTIONS(3493), + [anon_sym_constinit] = ACTIONS(3493), + [anon_sym_consteval] = ACTIONS(3493), + [anon_sym_QMARK] = ACTIONS(3495), + [anon_sym_STAR_EQ] = ACTIONS(3495), + [anon_sym_SLASH_EQ] = ACTIONS(3495), + [anon_sym_PERCENT_EQ] = ACTIONS(3495), + [anon_sym_PLUS_EQ] = ACTIONS(3495), + [anon_sym_DASH_EQ] = ACTIONS(3495), + [anon_sym_LT_LT_EQ] = ACTIONS(3495), + [anon_sym_GT_GT_EQ] = ACTIONS(3495), + [anon_sym_AMP_EQ] = ACTIONS(3495), + [anon_sym_CARET_EQ] = ACTIONS(3495), + [anon_sym_PIPE_EQ] = ACTIONS(3495), + [anon_sym_and_eq] = ACTIONS(3493), + [anon_sym_or_eq] = ACTIONS(3493), + [anon_sym_xor_eq] = ACTIONS(3493), + [anon_sym_LT_EQ_GT] = ACTIONS(3495), + [anon_sym_or] = ACTIONS(3493), + [anon_sym_and] = ACTIONS(3493), + [anon_sym_bitor] = ACTIONS(3493), + [anon_sym_xor] = ACTIONS(3493), + [anon_sym_bitand] = ACTIONS(3493), + [anon_sym_not_eq] = ACTIONS(3493), + [anon_sym_DASH_DASH] = ACTIONS(3495), + [anon_sym_PLUS_PLUS] = ACTIONS(3495), + [anon_sym_DOT] = ACTIONS(3493), + [anon_sym_DASH_GT] = ACTIONS(3495), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3493), + [anon_sym_decltype] = ACTIONS(3493), + [anon_sym_virtual] = ACTIONS(3493), + [anon_sym_template] = ACTIONS(3493), + [anon_sym_operator] = ACTIONS(3493), + }, + [1315] = { + [sym_template_argument_list] = STATE(1321), + [sym_identifier] = ACTIONS(3430), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3442), + [anon_sym_COMMA] = ACTIONS(3442), + [anon_sym_LPAREN2] = ACTIONS(3432), + [anon_sym_TILDE] = ACTIONS(3435), + [anon_sym_DASH] = ACTIONS(3437), + [anon_sym_PLUS] = ACTIONS(3437), + [anon_sym_STAR] = ACTIONS(3439), + [anon_sym_SLASH] = ACTIONS(3437), + [anon_sym_PERCENT] = ACTIONS(3437), + [anon_sym_PIPE_PIPE] = ACTIONS(3442), + [anon_sym_AMP_AMP] = ACTIONS(3432), + [anon_sym_PIPE] = ACTIONS(3437), + [anon_sym_CARET] = ACTIONS(3437), + [anon_sym_AMP] = ACTIONS(3439), + [anon_sym_EQ_EQ] = ACTIONS(3442), + [anon_sym_BANG_EQ] = ACTIONS(3442), + [anon_sym_GT] = ACTIONS(3437), + [anon_sym_GT_EQ] = ACTIONS(3442), + [anon_sym_LT_EQ] = ACTIONS(3437), + [anon_sym_LT] = ACTIONS(3517), + [anon_sym_LT_LT] = ACTIONS(3437), + [anon_sym_GT_GT] = ACTIONS(3437), + [anon_sym_SEMI] = ACTIONS(3432), + [anon_sym_extern] = ACTIONS(3430), + [anon_sym___attribute__] = ACTIONS(3430), + [anon_sym_COLON_COLON] = ACTIONS(3424), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3432), + [anon_sym___declspec] = ACTIONS(3430), + [anon_sym___based] = ACTIONS(3430), + [anon_sym_LBRACE] = ACTIONS(3435), + [anon_sym_RBRACE] = ACTIONS(3442), + [anon_sym_LBRACK] = ACTIONS(3439), + [anon_sym_EQ] = ACTIONS(3437), + [anon_sym_static] = ACTIONS(3430), + [anon_sym_register] = ACTIONS(3430), + [anon_sym_inline] = ACTIONS(3430), + [anon_sym_thread_local] = ACTIONS(3430), + [anon_sym_const] = ACTIONS(3430), + [anon_sym_volatile] = ACTIONS(3430), + [anon_sym_restrict] = ACTIONS(3430), + [anon_sym__Atomic] = ACTIONS(3430), + [anon_sym_mutable] = ACTIONS(3430), + [anon_sym_constexpr] = ACTIONS(3430), + [anon_sym_constinit] = ACTIONS(3430), + [anon_sym_consteval] = ACTIONS(3430), + [anon_sym_QMARK] = ACTIONS(3442), + [anon_sym_STAR_EQ] = ACTIONS(3442), + [anon_sym_SLASH_EQ] = ACTIONS(3442), + [anon_sym_PERCENT_EQ] = ACTIONS(3442), + [anon_sym_PLUS_EQ] = ACTIONS(3442), + [anon_sym_DASH_EQ] = ACTIONS(3442), + [anon_sym_LT_LT_EQ] = ACTIONS(3442), + [anon_sym_GT_GT_EQ] = ACTIONS(3442), + [anon_sym_AMP_EQ] = ACTIONS(3442), + [anon_sym_CARET_EQ] = ACTIONS(3442), + [anon_sym_PIPE_EQ] = ACTIONS(3442), + [anon_sym_and_eq] = ACTIONS(3437), + [anon_sym_or_eq] = ACTIONS(3437), + [anon_sym_xor_eq] = ACTIONS(3437), + [anon_sym_LT_EQ_GT] = ACTIONS(3442), + [anon_sym_or] = ACTIONS(3437), + [anon_sym_and] = ACTIONS(3437), + [anon_sym_bitor] = ACTIONS(3437), + [anon_sym_xor] = ACTIONS(3437), + [anon_sym_bitand] = ACTIONS(3437), + [anon_sym_not_eq] = ACTIONS(3437), + [anon_sym_DASH_DASH] = ACTIONS(3442), + [anon_sym_PLUS_PLUS] = ACTIONS(3442), + [anon_sym_DOT] = ACTIONS(3437), + [anon_sym_DASH_GT] = ACTIONS(3442), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3430), + [anon_sym_decltype] = ACTIONS(3430), + [anon_sym_virtual] = ACTIONS(3430), + [anon_sym_template] = ACTIONS(3430), + [anon_sym_operator] = ACTIONS(3430), + }, + [1316] = { + [sym_template_argument_list] = STATE(1826), + [sym_identifier] = ACTIONS(3407), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3419), + [anon_sym_COMMA] = ACTIONS(3419), + [anon_sym_RPAREN] = ACTIONS(3419), + [anon_sym_LPAREN2] = ACTIONS(3409), + [anon_sym_TILDE] = ACTIONS(3412), + [anon_sym_DASH] = ACTIONS(3414), + [anon_sym_PLUS] = ACTIONS(3414), + [anon_sym_STAR] = ACTIONS(3416), + [anon_sym_SLASH] = ACTIONS(3414), + [anon_sym_PERCENT] = ACTIONS(3414), + [anon_sym_PIPE_PIPE] = ACTIONS(3419), + [anon_sym_AMP_AMP] = ACTIONS(3409), + [anon_sym_PIPE] = ACTIONS(3414), + [anon_sym_CARET] = ACTIONS(3414), + [anon_sym_AMP] = ACTIONS(3416), + [anon_sym_EQ_EQ] = ACTIONS(3419), + [anon_sym_BANG_EQ] = ACTIONS(3419), + [anon_sym_GT] = ACTIONS(3414), + [anon_sym_GT_EQ] = ACTIONS(3419), + [anon_sym_LT_EQ] = ACTIONS(3414), + [anon_sym_LT] = ACTIONS(3451), + [anon_sym_LT_LT] = ACTIONS(3414), + [anon_sym_GT_GT] = ACTIONS(3414), + [anon_sym_SEMI] = ACTIONS(3419), + [anon_sym_extern] = ACTIONS(3407), + [anon_sym___attribute__] = ACTIONS(3407), + [anon_sym_COLON_COLON] = ACTIONS(3424), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3412), + [anon_sym___declspec] = ACTIONS(3407), + [anon_sym___based] = ACTIONS(3407), + [anon_sym_LBRACE] = ACTIONS(3426), + [anon_sym_LBRACK] = ACTIONS(3416), + [anon_sym_EQ] = ACTIONS(3461), + [anon_sym_static] = ACTIONS(3407), + [anon_sym_register] = ACTIONS(3407), + [anon_sym_inline] = ACTIONS(3407), + [anon_sym_thread_local] = ACTIONS(3407), + [anon_sym_const] = ACTIONS(3407), + [anon_sym_volatile] = ACTIONS(3407), + [anon_sym_restrict] = ACTIONS(3407), + [anon_sym__Atomic] = ACTIONS(3407), + [anon_sym_mutable] = ACTIONS(3407), + [anon_sym_constexpr] = ACTIONS(3407), + [anon_sym_constinit] = ACTIONS(3407), + [anon_sym_consteval] = ACTIONS(3407), + [anon_sym_QMARK] = ACTIONS(3419), + [anon_sym_STAR_EQ] = ACTIONS(3465), + [anon_sym_SLASH_EQ] = ACTIONS(3465), + [anon_sym_PERCENT_EQ] = ACTIONS(3465), + [anon_sym_PLUS_EQ] = ACTIONS(3465), + [anon_sym_DASH_EQ] = ACTIONS(3465), + [anon_sym_LT_LT_EQ] = ACTIONS(3465), + [anon_sym_GT_GT_EQ] = ACTIONS(3465), + [anon_sym_AMP_EQ] = ACTIONS(3465), + [anon_sym_CARET_EQ] = ACTIONS(3465), + [anon_sym_PIPE_EQ] = ACTIONS(3465), + [anon_sym_and_eq] = ACTIONS(3461), + [anon_sym_or_eq] = ACTIONS(3461), + [anon_sym_xor_eq] = ACTIONS(3461), + [anon_sym_LT_EQ_GT] = ACTIONS(3419), + [anon_sym_or] = ACTIONS(3414), + [anon_sym_and] = ACTIONS(3414), + [anon_sym_bitor] = ACTIONS(3414), + [anon_sym_xor] = ACTIONS(3414), + [anon_sym_bitand] = ACTIONS(3414), + [anon_sym_not_eq] = ACTIONS(3414), + [anon_sym_DASH_DASH] = ACTIONS(3419), + [anon_sym_PLUS_PLUS] = ACTIONS(3419), + [anon_sym_DOT] = ACTIONS(3414), + [anon_sym_DASH_GT] = ACTIONS(3419), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3407), + [anon_sym_decltype] = ACTIONS(3407), + [anon_sym_virtual] = ACTIONS(3407), + [anon_sym_template] = ACTIONS(3407), + [anon_sym_operator] = ACTIONS(3407), + }, + [1317] = { + [sym__expression] = STATE(3731), + [sym_comma_expression] = STATE(7168), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_initializer_list] = STATE(7168), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3520), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(105), - [anon_sym_decltype] = ACTIONS(107), - [anon_sym_virtual] = ACTIONS(109), - [anon_sym_typename] = ACTIONS(3855), - [anon_sym_template] = ACTIONS(3857), - [anon_sym_GT2] = ACTIONS(3861), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), }, - [1730] = { - [sym_identifier] = ACTIONS(2287), - [aux_sym_preproc_def_token1] = ACTIONS(2287), - [anon_sym_COMMA] = ACTIONS(2289), - [anon_sym_RPAREN] = ACTIONS(2289), - [aux_sym_preproc_if_token1] = ACTIONS(2287), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2287), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2287), - [sym_preproc_directive] = ACTIONS(2287), - [anon_sym_LPAREN2] = ACTIONS(2289), - [anon_sym_TILDE] = ACTIONS(2289), - [anon_sym_STAR] = ACTIONS(2289), - [anon_sym_PIPE_PIPE] = ACTIONS(2289), - [anon_sym_AMP_AMP] = ACTIONS(2289), - [anon_sym_AMP] = ACTIONS(2287), - [anon_sym_SEMI] = ACTIONS(2289), - [anon_sym_typedef] = ACTIONS(2287), - [anon_sym_extern] = ACTIONS(2287), - [anon_sym___attribute__] = ACTIONS(2287), - [anon_sym_COLON_COLON] = ACTIONS(2289), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2289), - [anon_sym___declspec] = ACTIONS(2287), - [anon_sym___based] = ACTIONS(2287), - [anon_sym_LBRACE] = ACTIONS(2289), - [anon_sym_RBRACE] = ACTIONS(2289), - [anon_sym_LBRACK] = ACTIONS(2287), - [anon_sym_EQ] = ACTIONS(2289), - [anon_sym_static] = ACTIONS(2287), - [anon_sym_register] = ACTIONS(2287), - [anon_sym_inline] = ACTIONS(2287), - [anon_sym_thread_local] = ACTIONS(2287), - [anon_sym_const] = ACTIONS(2287), - [anon_sym_volatile] = ACTIONS(2287), - [anon_sym_restrict] = ACTIONS(2287), - [anon_sym__Atomic] = ACTIONS(2287), - [anon_sym_mutable] = ACTIONS(2287), - [anon_sym_constexpr] = ACTIONS(2287), - [anon_sym_constinit] = ACTIONS(2287), - [anon_sym_consteval] = ACTIONS(2287), - [anon_sym_signed] = ACTIONS(2287), - [anon_sym_unsigned] = ACTIONS(2287), - [anon_sym_long] = ACTIONS(2287), - [anon_sym_short] = ACTIONS(2287), - [sym_primitive_type] = ACTIONS(2287), - [anon_sym_enum] = ACTIONS(2287), - [anon_sym_class] = ACTIONS(2287), - [anon_sym_struct] = ACTIONS(2287), - [anon_sym_union] = ACTIONS(2287), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2287), - [anon_sym_decltype] = ACTIONS(2287), - [anon_sym_virtual] = ACTIONS(2287), - [anon_sym_explicit] = ACTIONS(2287), - [anon_sym_public] = ACTIONS(2287), - [anon_sym_private] = ACTIONS(2287), - [anon_sym_protected] = ACTIONS(2287), - [anon_sym_typename] = ACTIONS(2287), - [anon_sym_template] = ACTIONS(2287), - [anon_sym_GT2] = ACTIONS(2289), - [anon_sym_operator] = ACTIONS(2287), - [anon_sym_try] = ACTIONS(2287), - [anon_sym_friend] = ACTIONS(2287), - [anon_sym_using] = ACTIONS(2287), - [anon_sym_static_assert] = ACTIONS(2287), - [anon_sym_catch] = ACTIONS(2287), - [anon_sym_requires] = ACTIONS(2287), + [1318] = { + [sym__expression] = STATE(2905), + [sym_conditional_expression] = STATE(3135), + [sym_assignment_expression] = STATE(3135), + [sym_pointer_expression] = STATE(2788), + [sym_unary_expression] = STATE(3135), + [sym_binary_expression] = STATE(3135), + [sym_update_expression] = STATE(3135), + [sym_cast_expression] = STATE(3135), + [sym_sizeof_expression] = STATE(3135), + [sym_subscript_expression] = STATE(2788), + [sym_call_expression] = STATE(2788), + [sym_field_expression] = STATE(2788), + [sym_compound_literal_expression] = STATE(3135), + [sym_parenthesized_expression] = STATE(2788), + [sym_char_literal] = STATE(2981), + [sym_concatenated_string] = STATE(2981), + [sym_string_literal] = STATE(1970), + [sym__class_name] = STATE(6450), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3135), + [sym_co_await_expression] = STATE(3135), + [sym_new_expression] = STATE(3135), + [sym_delete_expression] = STATE(3135), + [sym_requires_clause] = STATE(3135), + [sym_requires_expression] = STATE(3135), + [sym_lambda_expression] = STATE(3135), + [sym_lambda_capture_specifier] = STATE(4771), + [sym__unary_left_fold] = STATE(7218), + [sym__unary_right_fold] = STATE(7214), + [sym__binary_fold] = STATE(7213), + [sym_fold_expression] = STATE(3135), + [sym_parameter_pack_expansion] = STATE(3135), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4904), + [sym_qualified_identifier] = STATE(2788), + [sym_qualified_type_identifier] = STATE(6450), + [sym_user_defined_literal] = STATE(3135), + [sym_identifier] = ACTIONS(1957), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1753), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_co_await] = ACTIONS(1455), + [anon_sym_new] = ACTIONS(1457), + [anon_sym_requires] = ACTIONS(1459), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + [sym_raw_string_literal] = ACTIONS(1461), }, -}; - -static const uint16_t ts_small_parse_table[] = { - [0] = 3, + [1319] = { + [sym__expression] = STATE(2802), + [sym_conditional_expression] = STATE(3135), + [sym_assignment_expression] = STATE(3135), + [sym_pointer_expression] = STATE(2788), + [sym_unary_expression] = STATE(3135), + [sym_binary_expression] = STATE(3135), + [sym_update_expression] = STATE(3135), + [sym_cast_expression] = STATE(3135), + [sym_sizeof_expression] = STATE(3135), + [sym_subscript_expression] = STATE(2788), + [sym_call_expression] = STATE(2788), + [sym_field_expression] = STATE(2788), + [sym_compound_literal_expression] = STATE(3135), + [sym_parenthesized_expression] = STATE(2788), + [sym_char_literal] = STATE(2981), + [sym_concatenated_string] = STATE(2981), + [sym_string_literal] = STATE(1970), + [sym__class_name] = STATE(6450), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3135), + [sym_co_await_expression] = STATE(3135), + [sym_new_expression] = STATE(3135), + [sym_delete_expression] = STATE(3135), + [sym_requires_clause] = STATE(3135), + [sym_requires_expression] = STATE(3135), + [sym_lambda_expression] = STATE(3135), + [sym_lambda_capture_specifier] = STATE(4771), + [sym__unary_left_fold] = STATE(7192), + [sym__unary_right_fold] = STATE(7193), + [sym__binary_fold] = STATE(7194), + [sym_fold_expression] = STATE(3135), + [sym_parameter_pack_expansion] = STATE(3135), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4904), + [sym_qualified_identifier] = STATE(2788), + [sym_qualified_type_identifier] = STATE(6450), + [sym_user_defined_literal] = STATE(3135), + [sym_identifier] = ACTIONS(1957), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1753), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_co_await] = ACTIONS(1455), + [anon_sym_new] = ACTIONS(1457), + [anon_sym_requires] = ACTIONS(1459), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + [sym_raw_string_literal] = ACTIONS(1461), + }, + [1320] = { + [sym__expression] = STATE(2782), + [sym_conditional_expression] = STATE(3135), + [sym_assignment_expression] = STATE(3135), + [sym_pointer_expression] = STATE(2788), + [sym_unary_expression] = STATE(3135), + [sym_binary_expression] = STATE(3135), + [sym_update_expression] = STATE(3135), + [sym_cast_expression] = STATE(3135), + [sym_sizeof_expression] = STATE(3135), + [sym_subscript_expression] = STATE(2788), + [sym_call_expression] = STATE(2788), + [sym_field_expression] = STATE(2788), + [sym_compound_literal_expression] = STATE(3135), + [sym_parenthesized_expression] = STATE(2788), + [sym_char_literal] = STATE(2981), + [sym_concatenated_string] = STATE(2981), + [sym_string_literal] = STATE(1970), + [sym__class_name] = STATE(6450), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3135), + [sym_co_await_expression] = STATE(3135), + [sym_new_expression] = STATE(3135), + [sym_delete_expression] = STATE(3135), + [sym_requires_clause] = STATE(3135), + [sym_requires_expression] = STATE(3135), + [sym_lambda_expression] = STATE(3135), + [sym_lambda_capture_specifier] = STATE(4771), + [sym__unary_left_fold] = STATE(7167), + [sym__unary_right_fold] = STATE(7166), + [sym__binary_fold] = STATE(7158), + [sym_fold_expression] = STATE(3135), + [sym_parameter_pack_expansion] = STATE(3135), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4904), + [sym_qualified_identifier] = STATE(2788), + [sym_qualified_type_identifier] = STATE(6450), + [sym_user_defined_literal] = STATE(3135), + [sym_identifier] = ACTIONS(1957), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1753), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_co_await] = ACTIONS(1455), + [anon_sym_new] = ACTIONS(1457), + [anon_sym_requires] = ACTIONS(1459), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + [sym_raw_string_literal] = ACTIONS(1461), + }, + [1321] = { + [sym_identifier] = ACTIONS(3473), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3485), + [anon_sym_COMMA] = ACTIONS(3485), + [anon_sym_LPAREN2] = ACTIONS(3475), + [anon_sym_TILDE] = ACTIONS(3478), + [anon_sym_DASH] = ACTIONS(3480), + [anon_sym_PLUS] = ACTIONS(3480), + [anon_sym_STAR] = ACTIONS(3482), + [anon_sym_SLASH] = ACTIONS(3480), + [anon_sym_PERCENT] = ACTIONS(3480), + [anon_sym_PIPE_PIPE] = ACTIONS(3485), + [anon_sym_AMP_AMP] = ACTIONS(3475), + [anon_sym_PIPE] = ACTIONS(3480), + [anon_sym_CARET] = ACTIONS(3480), + [anon_sym_AMP] = ACTIONS(3482), + [anon_sym_EQ_EQ] = ACTIONS(3485), + [anon_sym_BANG_EQ] = ACTIONS(3485), + [anon_sym_GT] = ACTIONS(3480), + [anon_sym_GT_EQ] = ACTIONS(3485), + [anon_sym_LT_EQ] = ACTIONS(3480), + [anon_sym_LT] = ACTIONS(3480), + [anon_sym_LT_LT] = ACTIONS(3480), + [anon_sym_GT_GT] = ACTIONS(3480), + [anon_sym_SEMI] = ACTIONS(3475), + [anon_sym_extern] = ACTIONS(3473), + [anon_sym___attribute__] = ACTIONS(3473), + [anon_sym_COLON_COLON] = ACTIONS(3478), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3475), + [anon_sym___declspec] = ACTIONS(3473), + [anon_sym___based] = ACTIONS(3473), + [anon_sym_LBRACE] = ACTIONS(3478), + [anon_sym_RBRACE] = ACTIONS(3485), + [anon_sym_LBRACK] = ACTIONS(3482), + [anon_sym_EQ] = ACTIONS(3480), + [anon_sym_static] = ACTIONS(3473), + [anon_sym_register] = ACTIONS(3473), + [anon_sym_inline] = ACTIONS(3473), + [anon_sym_thread_local] = ACTIONS(3473), + [anon_sym_const] = ACTIONS(3473), + [anon_sym_volatile] = ACTIONS(3473), + [anon_sym_restrict] = ACTIONS(3473), + [anon_sym__Atomic] = ACTIONS(3473), + [anon_sym_mutable] = ACTIONS(3473), + [anon_sym_constexpr] = ACTIONS(3473), + [anon_sym_constinit] = ACTIONS(3473), + [anon_sym_consteval] = ACTIONS(3473), + [anon_sym_QMARK] = ACTIONS(3485), + [anon_sym_STAR_EQ] = ACTIONS(3485), + [anon_sym_SLASH_EQ] = ACTIONS(3485), + [anon_sym_PERCENT_EQ] = ACTIONS(3485), + [anon_sym_PLUS_EQ] = ACTIONS(3485), + [anon_sym_DASH_EQ] = ACTIONS(3485), + [anon_sym_LT_LT_EQ] = ACTIONS(3485), + [anon_sym_GT_GT_EQ] = ACTIONS(3485), + [anon_sym_AMP_EQ] = ACTIONS(3485), + [anon_sym_CARET_EQ] = ACTIONS(3485), + [anon_sym_PIPE_EQ] = ACTIONS(3485), + [anon_sym_and_eq] = ACTIONS(3480), + [anon_sym_or_eq] = ACTIONS(3480), + [anon_sym_xor_eq] = ACTIONS(3480), + [anon_sym_LT_EQ_GT] = ACTIONS(3485), + [anon_sym_or] = ACTIONS(3480), + [anon_sym_and] = ACTIONS(3480), + [anon_sym_bitor] = ACTIONS(3480), + [anon_sym_xor] = ACTIONS(3480), + [anon_sym_bitand] = ACTIONS(3480), + [anon_sym_not_eq] = ACTIONS(3480), + [anon_sym_DASH_DASH] = ACTIONS(3485), + [anon_sym_PLUS_PLUS] = ACTIONS(3485), + [anon_sym_DOT] = ACTIONS(3480), + [anon_sym_DASH_GT] = ACTIONS(3485), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3473), + [anon_sym_decltype] = ACTIONS(3473), + [anon_sym_virtual] = ACTIONS(3473), + [anon_sym_template] = ACTIONS(3473), + [anon_sym_operator] = ACTIONS(3473), + }, + [1322] = { + [sym__expression] = STATE(2757), + [sym_conditional_expression] = STATE(3135), + [sym_assignment_expression] = STATE(3135), + [sym_pointer_expression] = STATE(2788), + [sym_unary_expression] = STATE(3135), + [sym_binary_expression] = STATE(3135), + [sym_update_expression] = STATE(3135), + [sym_cast_expression] = STATE(3135), + [sym_sizeof_expression] = STATE(3135), + [sym_subscript_expression] = STATE(2788), + [sym_call_expression] = STATE(2788), + [sym_field_expression] = STATE(2788), + [sym_compound_literal_expression] = STATE(3135), + [sym_parenthesized_expression] = STATE(2788), + [sym_char_literal] = STATE(2981), + [sym_concatenated_string] = STATE(2981), + [sym_string_literal] = STATE(1970), + [sym__class_name] = STATE(6450), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3135), + [sym_co_await_expression] = STATE(3135), + [sym_new_expression] = STATE(3135), + [sym_delete_expression] = STATE(3135), + [sym_requires_clause] = STATE(3135), + [sym_requires_expression] = STATE(3135), + [sym_lambda_expression] = STATE(3135), + [sym_lambda_capture_specifier] = STATE(4771), + [sym__unary_left_fold] = STATE(6865), + [sym__unary_right_fold] = STATE(6861), + [sym__binary_fold] = STATE(6858), + [sym_fold_expression] = STATE(3135), + [sym_parameter_pack_expansion] = STATE(3135), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4904), + [sym_qualified_identifier] = STATE(2788), + [sym_qualified_type_identifier] = STATE(6450), + [sym_user_defined_literal] = STATE(3135), + [sym_identifier] = ACTIONS(1957), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1753), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_co_await] = ACTIONS(1455), + [anon_sym_new] = ACTIONS(1457), + [anon_sym_requires] = ACTIONS(1459), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + [sym_raw_string_literal] = ACTIONS(1461), + }, + [1323] = { + [sym_template_argument_list] = STATE(1344), + [sym_identifier] = ACTIONS(3430), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3432), + [anon_sym_COMMA] = ACTIONS(3432), + [anon_sym_RPAREN] = ACTIONS(3432), + [anon_sym_LPAREN2] = ACTIONS(3432), + [anon_sym_TILDE] = ACTIONS(3435), + [anon_sym_DASH] = ACTIONS(3437), + [anon_sym_PLUS] = ACTIONS(3437), + [anon_sym_STAR] = ACTIONS(3439), + [anon_sym_SLASH] = ACTIONS(3437), + [anon_sym_PERCENT] = ACTIONS(3437), + [anon_sym_PIPE_PIPE] = ACTIONS(3442), + [anon_sym_AMP_AMP] = ACTIONS(3432), + [anon_sym_PIPE] = ACTIONS(3437), + [anon_sym_CARET] = ACTIONS(3437), + [anon_sym_AMP] = ACTIONS(3439), + [anon_sym_EQ_EQ] = ACTIONS(3442), + [anon_sym_BANG_EQ] = ACTIONS(3442), + [anon_sym_GT] = ACTIONS(3437), + [anon_sym_GT_EQ] = ACTIONS(3442), + [anon_sym_LT_EQ] = ACTIONS(3437), + [anon_sym_LT] = ACTIONS(3517), + [anon_sym_LT_LT] = ACTIONS(3437), + [anon_sym_GT_GT] = ACTIONS(3437), + [anon_sym_extern] = ACTIONS(3430), + [anon_sym___attribute__] = ACTIONS(3430), + [anon_sym_COLON_COLON] = ACTIONS(3424), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3435), + [anon_sym___declspec] = ACTIONS(3430), + [anon_sym___based] = ACTIONS(3430), + [anon_sym_LBRACE] = ACTIONS(3435), + [anon_sym_LBRACK] = ACTIONS(3439), + [anon_sym_EQ] = ACTIONS(3439), + [anon_sym_static] = ACTIONS(3430), + [anon_sym_register] = ACTIONS(3430), + [anon_sym_inline] = ACTIONS(3430), + [anon_sym_thread_local] = ACTIONS(3430), + [anon_sym_const] = ACTIONS(3430), + [anon_sym_volatile] = ACTIONS(3430), + [anon_sym_restrict] = ACTIONS(3430), + [anon_sym__Atomic] = ACTIONS(3430), + [anon_sym_mutable] = ACTIONS(3430), + [anon_sym_constexpr] = ACTIONS(3430), + [anon_sym_constinit] = ACTIONS(3430), + [anon_sym_consteval] = ACTIONS(3430), + [anon_sym_QMARK] = ACTIONS(3442), + [anon_sym_STAR_EQ] = ACTIONS(3442), + [anon_sym_SLASH_EQ] = ACTIONS(3442), + [anon_sym_PERCENT_EQ] = ACTIONS(3442), + [anon_sym_PLUS_EQ] = ACTIONS(3442), + [anon_sym_DASH_EQ] = ACTIONS(3442), + [anon_sym_LT_LT_EQ] = ACTIONS(3442), + [anon_sym_GT_GT_EQ] = ACTIONS(3442), + [anon_sym_AMP_EQ] = ACTIONS(3442), + [anon_sym_CARET_EQ] = ACTIONS(3442), + [anon_sym_PIPE_EQ] = ACTIONS(3442), + [anon_sym_and_eq] = ACTIONS(3437), + [anon_sym_or_eq] = ACTIONS(3437), + [anon_sym_xor_eq] = ACTIONS(3437), + [anon_sym_LT_EQ_GT] = ACTIONS(3442), + [anon_sym_or] = ACTIONS(3437), + [anon_sym_and] = ACTIONS(3437), + [anon_sym_bitor] = ACTIONS(3437), + [anon_sym_xor] = ACTIONS(3437), + [anon_sym_bitand] = ACTIONS(3437), + [anon_sym_not_eq] = ACTIONS(3437), + [anon_sym_DASH_DASH] = ACTIONS(3442), + [anon_sym_PLUS_PLUS] = ACTIONS(3442), + [anon_sym_DOT] = ACTIONS(3437), + [anon_sym_DASH_GT] = ACTIONS(3442), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3430), + [anon_sym_decltype] = ACTIONS(3430), + [anon_sym_virtual] = ACTIONS(3430), + [anon_sym_template] = ACTIONS(3430), + [anon_sym_operator] = ACTIONS(3430), + }, + [1324] = { + [sym__expression] = STATE(2811), + [sym_conditional_expression] = STATE(3135), + [sym_assignment_expression] = STATE(3135), + [sym_pointer_expression] = STATE(2788), + [sym_unary_expression] = STATE(3135), + [sym_binary_expression] = STATE(3135), + [sym_update_expression] = STATE(3135), + [sym_cast_expression] = STATE(3135), + [sym_sizeof_expression] = STATE(3135), + [sym_subscript_expression] = STATE(2788), + [sym_call_expression] = STATE(2788), + [sym_field_expression] = STATE(2788), + [sym_compound_literal_expression] = STATE(3135), + [sym_parenthesized_expression] = STATE(2788), + [sym_char_literal] = STATE(2981), + [sym_concatenated_string] = STATE(2981), + [sym_string_literal] = STATE(1970), + [sym__class_name] = STATE(6450), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3135), + [sym_co_await_expression] = STATE(3135), + [sym_new_expression] = STATE(3135), + [sym_delete_expression] = STATE(3135), + [sym_requires_clause] = STATE(3135), + [sym_requires_expression] = STATE(3135), + [sym_lambda_expression] = STATE(3135), + [sym_lambda_capture_specifier] = STATE(4771), + [sym__unary_left_fold] = STATE(6831), + [sym__unary_right_fold] = STATE(6840), + [sym__binary_fold] = STATE(6839), + [sym_fold_expression] = STATE(3135), + [sym_parameter_pack_expansion] = STATE(3135), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4904), + [sym_qualified_identifier] = STATE(2788), + [sym_qualified_type_identifier] = STATE(6450), + [sym_user_defined_literal] = STATE(3135), + [sym_identifier] = ACTIONS(1957), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1753), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_co_await] = ACTIONS(1455), + [anon_sym_new] = ACTIONS(1457), + [anon_sym_requires] = ACTIONS(1459), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + [sym_raw_string_literal] = ACTIONS(1461), + }, + [1325] = { + [sym__expression] = STATE(3716), + [sym_comma_expression] = STATE(7039), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_initializer_list] = STATE(7039), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3522), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1326] = { + [sym__expression] = STATE(3775), + [sym_comma_expression] = STATE(7210), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_initializer_list] = STATE(7210), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3524), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1327] = { + [sym__expression] = STATE(2877), + [sym_conditional_expression] = STATE(3135), + [sym_assignment_expression] = STATE(3135), + [sym_pointer_expression] = STATE(2788), + [sym_unary_expression] = STATE(3135), + [sym_binary_expression] = STATE(3135), + [sym_update_expression] = STATE(3135), + [sym_cast_expression] = STATE(3135), + [sym_sizeof_expression] = STATE(3135), + [sym_subscript_expression] = STATE(2788), + [sym_call_expression] = STATE(2788), + [sym_field_expression] = STATE(2788), + [sym_compound_literal_expression] = STATE(3135), + [sym_parenthesized_expression] = STATE(2788), + [sym_char_literal] = STATE(2981), + [sym_concatenated_string] = STATE(2981), + [sym_string_literal] = STATE(1970), + [sym__class_name] = STATE(6450), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3135), + [sym_co_await_expression] = STATE(3135), + [sym_new_expression] = STATE(3135), + [sym_delete_expression] = STATE(3135), + [sym_requires_clause] = STATE(3135), + [sym_requires_expression] = STATE(3135), + [sym_lambda_expression] = STATE(3135), + [sym_lambda_capture_specifier] = STATE(4771), + [sym__unary_left_fold] = STATE(6965), + [sym__unary_right_fold] = STATE(6964), + [sym__binary_fold] = STATE(6963), + [sym_fold_expression] = STATE(3135), + [sym_parameter_pack_expansion] = STATE(3135), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4904), + [sym_qualified_identifier] = STATE(2788), + [sym_qualified_type_identifier] = STATE(6450), + [sym_user_defined_literal] = STATE(3135), + [sym_identifier] = ACTIONS(1957), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1753), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_co_await] = ACTIONS(1455), + [anon_sym_new] = ACTIONS(1457), + [anon_sym_requires] = ACTIONS(1459), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + [sym_raw_string_literal] = ACTIONS(1461), + }, + [1328] = { + [sym__expression] = STATE(2716), + [sym_conditional_expression] = STATE(3135), + [sym_assignment_expression] = STATE(3135), + [sym_pointer_expression] = STATE(2788), + [sym_unary_expression] = STATE(3135), + [sym_binary_expression] = STATE(3135), + [sym_update_expression] = STATE(3135), + [sym_cast_expression] = STATE(3135), + [sym_sizeof_expression] = STATE(3135), + [sym_subscript_expression] = STATE(2788), + [sym_call_expression] = STATE(2788), + [sym_field_expression] = STATE(2788), + [sym_compound_literal_expression] = STATE(3135), + [sym_parenthesized_expression] = STATE(2788), + [sym_char_literal] = STATE(2981), + [sym_concatenated_string] = STATE(2981), + [sym_string_literal] = STATE(1970), + [sym__class_name] = STATE(6450), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3135), + [sym_co_await_expression] = STATE(3135), + [sym_new_expression] = STATE(3135), + [sym_delete_expression] = STATE(3135), + [sym_requires_clause] = STATE(3135), + [sym_requires_expression] = STATE(3135), + [sym_lambda_expression] = STATE(3135), + [sym_lambda_capture_specifier] = STATE(4771), + [sym__unary_left_fold] = STATE(6945), + [sym__unary_right_fold] = STATE(6946), + [sym__binary_fold] = STATE(6947), + [sym_fold_expression] = STATE(3135), + [sym_parameter_pack_expansion] = STATE(3135), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4904), + [sym_qualified_identifier] = STATE(2788), + [sym_qualified_type_identifier] = STATE(6450), + [sym_user_defined_literal] = STATE(3135), + [sym_identifier] = ACTIONS(1957), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1753), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_co_await] = ACTIONS(1455), + [anon_sym_new] = ACTIONS(1457), + [anon_sym_requires] = ACTIONS(1459), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + [sym_raw_string_literal] = ACTIONS(1461), + }, + [1329] = { + [sym__expression] = STATE(2697), + [sym_conditional_expression] = STATE(3135), + [sym_assignment_expression] = STATE(3135), + [sym_pointer_expression] = STATE(2788), + [sym_unary_expression] = STATE(3135), + [sym_binary_expression] = STATE(3135), + [sym_update_expression] = STATE(3135), + [sym_cast_expression] = STATE(3135), + [sym_sizeof_expression] = STATE(3135), + [sym_subscript_expression] = STATE(2788), + [sym_call_expression] = STATE(2788), + [sym_field_expression] = STATE(2788), + [sym_compound_literal_expression] = STATE(3135), + [sym_parenthesized_expression] = STATE(2788), + [sym_char_literal] = STATE(2981), + [sym_concatenated_string] = STATE(2981), + [sym_string_literal] = STATE(1970), + [sym__class_name] = STATE(6450), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3135), + [sym_co_await_expression] = STATE(3135), + [sym_new_expression] = STATE(3135), + [sym_delete_expression] = STATE(3135), + [sym_requires_clause] = STATE(3135), + [sym_requires_expression] = STATE(3135), + [sym_lambda_expression] = STATE(3135), + [sym_lambda_capture_specifier] = STATE(4771), + [sym__unary_left_fold] = STATE(7045), + [sym__unary_right_fold] = STATE(7044), + [sym__binary_fold] = STATE(7043), + [sym_fold_expression] = STATE(3135), + [sym_parameter_pack_expansion] = STATE(3135), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4904), + [sym_qualified_identifier] = STATE(2788), + [sym_qualified_type_identifier] = STATE(6450), + [sym_user_defined_literal] = STATE(3135), + [sym_identifier] = ACTIONS(1957), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1753), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_co_await] = ACTIONS(1455), + [anon_sym_new] = ACTIONS(1457), + [anon_sym_requires] = ACTIONS(1459), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + [sym_raw_string_literal] = ACTIONS(1461), + }, + [1330] = { + [sym_identifier] = ACTIONS(3473), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3485), + [anon_sym_COMMA] = ACTIONS(3485), + [anon_sym_RPAREN] = ACTIONS(3485), + [anon_sym_LPAREN2] = ACTIONS(3475), + [anon_sym_TILDE] = ACTIONS(3478), + [anon_sym_DASH] = ACTIONS(3480), + [anon_sym_PLUS] = ACTIONS(3480), + [anon_sym_STAR] = ACTIONS(3482), + [anon_sym_SLASH] = ACTIONS(3480), + [anon_sym_PERCENT] = ACTIONS(3480), + [anon_sym_PIPE_PIPE] = ACTIONS(3485), + [anon_sym_AMP_AMP] = ACTIONS(3475), + [anon_sym_PIPE] = ACTIONS(3480), + [anon_sym_CARET] = ACTIONS(3480), + [anon_sym_AMP] = ACTIONS(3482), + [anon_sym_EQ_EQ] = ACTIONS(3485), + [anon_sym_BANG_EQ] = ACTIONS(3485), + [anon_sym_GT] = ACTIONS(3480), + [anon_sym_GT_EQ] = ACTIONS(3485), + [anon_sym_LT_EQ] = ACTIONS(3480), + [anon_sym_LT] = ACTIONS(3480), + [anon_sym_LT_LT] = ACTIONS(3480), + [anon_sym_GT_GT] = ACTIONS(3480), + [anon_sym_SEMI] = ACTIONS(3485), + [anon_sym_extern] = ACTIONS(3473), + [anon_sym___attribute__] = ACTIONS(3473), + [anon_sym_COLON_COLON] = ACTIONS(3478), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3478), + [anon_sym___declspec] = ACTIONS(3473), + [anon_sym___based] = ACTIONS(3473), + [anon_sym_LBRACE] = ACTIONS(3478), + [anon_sym_LBRACK] = ACTIONS(3482), + [anon_sym_EQ] = ACTIONS(3480), + [anon_sym_static] = ACTIONS(3473), + [anon_sym_register] = ACTIONS(3473), + [anon_sym_inline] = ACTIONS(3473), + [anon_sym_thread_local] = ACTIONS(3473), + [anon_sym_const] = ACTIONS(3473), + [anon_sym_volatile] = ACTIONS(3473), + [anon_sym_restrict] = ACTIONS(3473), + [anon_sym__Atomic] = ACTIONS(3473), + [anon_sym_mutable] = ACTIONS(3473), + [anon_sym_constexpr] = ACTIONS(3473), + [anon_sym_constinit] = ACTIONS(3473), + [anon_sym_consteval] = ACTIONS(3473), + [anon_sym_QMARK] = ACTIONS(3485), + [anon_sym_STAR_EQ] = ACTIONS(3485), + [anon_sym_SLASH_EQ] = ACTIONS(3485), + [anon_sym_PERCENT_EQ] = ACTIONS(3485), + [anon_sym_PLUS_EQ] = ACTIONS(3485), + [anon_sym_DASH_EQ] = ACTIONS(3485), + [anon_sym_LT_LT_EQ] = ACTIONS(3485), + [anon_sym_GT_GT_EQ] = ACTIONS(3485), + [anon_sym_AMP_EQ] = ACTIONS(3485), + [anon_sym_CARET_EQ] = ACTIONS(3485), + [anon_sym_PIPE_EQ] = ACTIONS(3485), + [anon_sym_and_eq] = ACTIONS(3480), + [anon_sym_or_eq] = ACTIONS(3480), + [anon_sym_xor_eq] = ACTIONS(3480), + [anon_sym_LT_EQ_GT] = ACTIONS(3485), + [anon_sym_or] = ACTIONS(3480), + [anon_sym_and] = ACTIONS(3480), + [anon_sym_bitor] = ACTIONS(3480), + [anon_sym_xor] = ACTIONS(3480), + [anon_sym_bitand] = ACTIONS(3480), + [anon_sym_not_eq] = ACTIONS(3480), + [anon_sym_DASH_DASH] = ACTIONS(3485), + [anon_sym_PLUS_PLUS] = ACTIONS(3485), + [anon_sym_DOT] = ACTIONS(3480), + [anon_sym_DASH_GT] = ACTIONS(3485), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3473), + [anon_sym_decltype] = ACTIONS(3473), + [anon_sym_virtual] = ACTIONS(3473), + [anon_sym_template] = ACTIONS(3473), + [anon_sym_operator] = ACTIONS(3473), + }, + [1331] = { + [sym__expression] = STATE(3720), + [sym_comma_expression] = STATE(7153), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_initializer_list] = STATE(7153), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3526), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1332] = { + [sym__expression] = STATE(2909), + [sym_conditional_expression] = STATE(3135), + [sym_assignment_expression] = STATE(3135), + [sym_pointer_expression] = STATE(2788), + [sym_unary_expression] = STATE(3135), + [sym_binary_expression] = STATE(3135), + [sym_update_expression] = STATE(3135), + [sym_cast_expression] = STATE(3135), + [sym_sizeof_expression] = STATE(3135), + [sym_subscript_expression] = STATE(2788), + [sym_call_expression] = STATE(2788), + [sym_field_expression] = STATE(2788), + [sym_compound_literal_expression] = STATE(3135), + [sym_parenthesized_expression] = STATE(2788), + [sym_char_literal] = STATE(2981), + [sym_concatenated_string] = STATE(2981), + [sym_string_literal] = STATE(1970), + [sym__class_name] = STATE(6450), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3135), + [sym_co_await_expression] = STATE(3135), + [sym_new_expression] = STATE(3135), + [sym_delete_expression] = STATE(3135), + [sym_requires_clause] = STATE(3135), + [sym_requires_expression] = STATE(3135), + [sym_lambda_expression] = STATE(3135), + [sym_lambda_capture_specifier] = STATE(4771), + [sym__unary_left_fold] = STATE(6821), + [sym__unary_right_fold] = STATE(6731), + [sym__binary_fold] = STATE(6829), + [sym_fold_expression] = STATE(3135), + [sym_parameter_pack_expansion] = STATE(3135), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4904), + [sym_qualified_identifier] = STATE(2788), + [sym_qualified_type_identifier] = STATE(6450), + [sym_user_defined_literal] = STATE(3135), + [sym_identifier] = ACTIONS(1957), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1753), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_co_await] = ACTIONS(1455), + [anon_sym_new] = ACTIONS(1457), + [anon_sym_requires] = ACTIONS(1459), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + [sym_raw_string_literal] = ACTIONS(1461), + }, + [1333] = { + [sym__expression] = STATE(3754), + [sym_comma_expression] = STATE(6957), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_initializer_list] = STATE(6957), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3528), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1334] = { + [sym__expression] = STATE(3750), + [sym_comma_expression] = STATE(6956), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_initializer_list] = STATE(6956), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3530), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1335] = { + [sym_template_argument_list] = STATE(1822), + [sym_identifier] = ACTIONS(3407), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3409), + [anon_sym_COMMA] = ACTIONS(3409), + [anon_sym_RPAREN] = ACTIONS(3409), + [anon_sym_LPAREN2] = ACTIONS(3409), + [anon_sym_TILDE] = ACTIONS(3412), + [anon_sym_DASH] = ACTIONS(3414), + [anon_sym_PLUS] = ACTIONS(3414), + [anon_sym_STAR] = ACTIONS(3416), + [anon_sym_SLASH] = ACTIONS(3414), + [anon_sym_PERCENT] = ACTIONS(3414), + [anon_sym_PIPE_PIPE] = ACTIONS(3419), + [anon_sym_AMP_AMP] = ACTIONS(3409), + [anon_sym_PIPE] = ACTIONS(3414), + [anon_sym_CARET] = ACTIONS(3414), + [anon_sym_AMP] = ACTIONS(3416), + [anon_sym_EQ_EQ] = ACTIONS(3419), + [anon_sym_BANG_EQ] = ACTIONS(3419), + [anon_sym_GT] = ACTIONS(3414), + [anon_sym_GT_EQ] = ACTIONS(3419), + [anon_sym_LT_EQ] = ACTIONS(3414), + [anon_sym_LT] = ACTIONS(3451), + [anon_sym_LT_LT] = ACTIONS(3414), + [anon_sym_GT_GT] = ACTIONS(3414), + [anon_sym_extern] = ACTIONS(3407), + [anon_sym___attribute__] = ACTIONS(3407), + [anon_sym_COLON_COLON] = ACTIONS(3424), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3412), + [anon_sym___declspec] = ACTIONS(3407), + [anon_sym___based] = ACTIONS(3407), + [anon_sym_LBRACE] = ACTIONS(3426), + [anon_sym_LBRACK] = ACTIONS(3416), + [anon_sym_EQ] = ACTIONS(3407), + [anon_sym_static] = ACTIONS(3407), + [anon_sym_register] = ACTIONS(3407), + [anon_sym_inline] = ACTIONS(3407), + [anon_sym_thread_local] = ACTIONS(3407), + [anon_sym_const] = ACTIONS(3407), + [anon_sym_volatile] = ACTIONS(3407), + [anon_sym_restrict] = ACTIONS(3407), + [anon_sym__Atomic] = ACTIONS(3407), + [anon_sym_mutable] = ACTIONS(3407), + [anon_sym_constexpr] = ACTIONS(3407), + [anon_sym_constinit] = ACTIONS(3407), + [anon_sym_consteval] = ACTIONS(3407), + [anon_sym_QMARK] = ACTIONS(3419), + [anon_sym_STAR_EQ] = ACTIONS(3465), + [anon_sym_SLASH_EQ] = ACTIONS(3465), + [anon_sym_PERCENT_EQ] = ACTIONS(3465), + [anon_sym_PLUS_EQ] = ACTIONS(3465), + [anon_sym_DASH_EQ] = ACTIONS(3465), + [anon_sym_LT_LT_EQ] = ACTIONS(3465), + [anon_sym_GT_GT_EQ] = ACTIONS(3465), + [anon_sym_AMP_EQ] = ACTIONS(3465), + [anon_sym_CARET_EQ] = ACTIONS(3465), + [anon_sym_PIPE_EQ] = ACTIONS(3465), + [anon_sym_and_eq] = ACTIONS(3461), + [anon_sym_or_eq] = ACTIONS(3461), + [anon_sym_xor_eq] = ACTIONS(3461), + [anon_sym_LT_EQ_GT] = ACTIONS(3419), + [anon_sym_or] = ACTIONS(3414), + [anon_sym_and] = ACTIONS(3414), + [anon_sym_bitor] = ACTIONS(3414), + [anon_sym_xor] = ACTIONS(3414), + [anon_sym_bitand] = ACTIONS(3414), + [anon_sym_not_eq] = ACTIONS(3414), + [anon_sym_DASH_DASH] = ACTIONS(3419), + [anon_sym_PLUS_PLUS] = ACTIONS(3419), + [anon_sym_DOT] = ACTIONS(3414), + [anon_sym_DASH_GT] = ACTIONS(3419), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3407), + [anon_sym_decltype] = ACTIONS(3407), + [anon_sym_virtual] = ACTIONS(3407), + [anon_sym_template] = ACTIONS(3407), + [anon_sym_operator] = ACTIONS(3407), + }, + [1336] = { + [sym__expression] = STATE(3606), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3001), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3001), + [sym_call_expression] = STATE(3001), + [sym_field_expression] = STATE(3001), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3001), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_lambda_default_capture] = STATE(6661), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3001), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3085), + [anon_sym_LPAREN2] = ACTIONS(3087), + [anon_sym_BANG] = ACTIONS(3091), + [anon_sym_TILDE] = ACTIONS(3091), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(3532), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_RBRACK] = ACTIONS(3534), + [anon_sym_EQ] = ACTIONS(3536), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3089), + [anon_sym_compl] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3095), + [anon_sym_PLUS_PLUS] = ACTIONS(3095), + [anon_sym_sizeof] = ACTIONS(3097), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3099), + [anon_sym_co_await] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1337] = { + [sym__expression] = STATE(3978), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3121), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3121), + [sym_call_expression] = STATE(3121), + [sym_field_expression] = STATE(3121), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3121), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3121), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3109), + [anon_sym_LPAREN2] = ACTIONS(3538), + [anon_sym_BANG] = ACTIONS(3115), + [anon_sym_TILDE] = ACTIONS(3115), + [anon_sym_DASH] = ACTIONS(3113), + [anon_sym_PLUS] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(3538), + [anon_sym_AMP_AMP] = ACTIONS(3538), + [anon_sym_AMP] = ACTIONS(3540), + [anon_sym_LT] = ACTIONS(3538), + [anon_sym_COLON_COLON] = ACTIONS(3119), + [anon_sym_LBRACE] = ACTIONS(3538), + [anon_sym_LBRACK] = ACTIONS(3538), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3113), + [anon_sym_compl] = ACTIONS(3113), + [anon_sym_DASH_DASH] = ACTIONS(3121), + [anon_sym_PLUS_PLUS] = ACTIONS(3121), + [anon_sym_sizeof] = ACTIONS(3123), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3125), + [anon_sym_co_await] = ACTIONS(3127), + [anon_sym_new] = ACTIONS(3129), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1338] = { + [sym__expression] = STATE(3606), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3001), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3001), + [sym_call_expression] = STATE(3001), + [sym_field_expression] = STATE(3001), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3001), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_lambda_default_capture] = STATE(6661), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3001), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3085), + [anon_sym_LPAREN2] = ACTIONS(3087), + [anon_sym_BANG] = ACTIONS(3091), + [anon_sym_TILDE] = ACTIONS(3091), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(3532), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_RBRACK] = ACTIONS(3542), + [anon_sym_EQ] = ACTIONS(3536), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3089), + [anon_sym_compl] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3095), + [anon_sym_PLUS_PLUS] = ACTIONS(3095), + [anon_sym_sizeof] = ACTIONS(3097), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3099), + [anon_sym_co_await] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1339] = { + [sym__expression] = STATE(3739), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3001), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3001), + [sym_call_expression] = STATE(3001), + [sym_field_expression] = STATE(3001), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3001), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3001), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3085), + [anon_sym_LPAREN2] = ACTIONS(3538), + [anon_sym_BANG] = ACTIONS(3091), + [anon_sym_TILDE] = ACTIONS(3091), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(3538), + [anon_sym_AMP_AMP] = ACTIONS(3538), + [anon_sym_AMP] = ACTIONS(3540), + [anon_sym_LT] = ACTIONS(3538), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_LBRACE] = ACTIONS(3538), + [anon_sym_LBRACK] = ACTIONS(3538), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3089), + [anon_sym_compl] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3095), + [anon_sym_PLUS_PLUS] = ACTIONS(3095), + [anon_sym_sizeof] = ACTIONS(3097), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3099), + [anon_sym_co_await] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1340] = { + [sym__expression] = STATE(3559), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(3538), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(3538), + [anon_sym_AMP_AMP] = ACTIONS(3538), + [anon_sym_AMP] = ACTIONS(3540), + [anon_sym_LT] = ACTIONS(3538), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3538), + [anon_sym_LBRACK] = ACTIONS(3538), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1341] = { + [sym__expression] = STATE(3606), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3001), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3001), + [sym_call_expression] = STATE(3001), + [sym_field_expression] = STATE(3001), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3001), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_lambda_default_capture] = STATE(6661), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3001), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3085), + [anon_sym_LPAREN2] = ACTIONS(3087), + [anon_sym_BANG] = ACTIONS(3091), + [anon_sym_TILDE] = ACTIONS(3091), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(3532), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_RBRACK] = ACTIONS(3544), + [anon_sym_EQ] = ACTIONS(3536), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3089), + [anon_sym_compl] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3095), + [anon_sym_PLUS_PLUS] = ACTIONS(3095), + [anon_sym_sizeof] = ACTIONS(3097), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3099), + [anon_sym_co_await] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1342] = { + [sym__expression] = STATE(3614), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_initializer_list] = STATE(5846), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_RPAREN] = ACTIONS(3546), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1343] = { + [sym__expression] = STATE(3768), + [sym_conditional_expression] = STATE(3865), + [sym_assignment_expression] = STATE(3865), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3865), + [sym_binary_expression] = STATE(3865), + [sym_update_expression] = STATE(3865), + [sym_cast_expression] = STATE(3865), + [sym_sizeof_expression] = STATE(3865), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3865), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3707), + [sym_concatenated_string] = STATE(3707), + [sym_string_literal] = STATE(3250), + [sym__class_name] = STATE(6539), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3865), + [sym_co_await_expression] = STATE(3865), + [sym_new_expression] = STATE(3865), + [sym_delete_expression] = STATE(3865), + [sym_requires_clause] = STATE(3865), + [sym_requires_expression] = STATE(3865), + [sym_lambda_expression] = STATE(3865), + [sym_lambda_capture_specifier] = STATE(4789), + [sym_fold_expression] = STATE(3865), + [sym_parameter_pack_expansion] = STATE(3865), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(6539), + [sym_user_defined_literal] = STATE(3865), + [sym_identifier] = ACTIONS(3105), + [anon_sym_LPAREN2] = ACTIONS(3538), + [anon_sym_BANG] = ACTIONS(2667), + [anon_sym_TILDE] = ACTIONS(2667), + [anon_sym_DASH] = ACTIONS(2669), + [anon_sym_PLUS] = ACTIONS(2669), + [anon_sym_STAR] = ACTIONS(3538), + [anon_sym_AMP_AMP] = ACTIONS(3538), + [anon_sym_AMP] = ACTIONS(3540), + [anon_sym_LT] = ACTIONS(3538), + [anon_sym_COLON_COLON] = ACTIONS(2673), + [anon_sym_LBRACE] = ACTIONS(3538), + [anon_sym_LBRACK] = ACTIONS(3538), + [sym_primitive_type] = ACTIONS(1933), + [anon_sym_not] = ACTIONS(2669), + [anon_sym_compl] = ACTIONS(2669), + [anon_sym_DASH_DASH] = ACTIONS(2687), + [anon_sym_PLUS_PLUS] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2689), + [sym_number_literal] = ACTIONS(2691), + [anon_sym_L_SQUOTE] = ACTIONS(2693), + [anon_sym_u_SQUOTE] = ACTIONS(2693), + [anon_sym_U_SQUOTE] = ACTIONS(2693), + [anon_sym_u8_SQUOTE] = ACTIONS(2693), + [anon_sym_SQUOTE] = ACTIONS(2693), + [anon_sym_L_DQUOTE] = ACTIONS(2695), + [anon_sym_u_DQUOTE] = ACTIONS(2695), + [anon_sym_U_DQUOTE] = ACTIONS(2695), + [anon_sym_u8_DQUOTE] = ACTIONS(2695), + [anon_sym_DQUOTE] = ACTIONS(2695), + [sym_true] = ACTIONS(2697), + [sym_false] = ACTIONS(2697), + [sym_null] = ACTIONS(2697), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(2707), + [anon_sym_co_await] = ACTIONS(2709), + [anon_sym_new] = ACTIONS(2711), + [anon_sym_requires] = ACTIONS(2713), + [sym_this] = ACTIONS(2697), + [sym_nullptr] = ACTIONS(2697), + [sym_raw_string_literal] = ACTIONS(2715), + }, + [1344] = { + [sym_identifier] = ACTIONS(3473), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3475), + [anon_sym_COMMA] = ACTIONS(3475), + [anon_sym_RPAREN] = ACTIONS(3475), + [anon_sym_LPAREN2] = ACTIONS(3475), + [anon_sym_TILDE] = ACTIONS(3478), + [anon_sym_DASH] = ACTIONS(3480), + [anon_sym_PLUS] = ACTIONS(3480), + [anon_sym_STAR] = ACTIONS(3482), + [anon_sym_SLASH] = ACTIONS(3480), + [anon_sym_PERCENT] = ACTIONS(3480), + [anon_sym_PIPE_PIPE] = ACTIONS(3485), + [anon_sym_AMP_AMP] = ACTIONS(3475), + [anon_sym_PIPE] = ACTIONS(3480), + [anon_sym_CARET] = ACTIONS(3480), + [anon_sym_AMP] = ACTIONS(3482), + [anon_sym_EQ_EQ] = ACTIONS(3485), + [anon_sym_BANG_EQ] = ACTIONS(3485), + [anon_sym_GT] = ACTIONS(3480), + [anon_sym_GT_EQ] = ACTIONS(3485), + [anon_sym_LT_EQ] = ACTIONS(3480), + [anon_sym_LT] = ACTIONS(3480), + [anon_sym_LT_LT] = ACTIONS(3480), + [anon_sym_GT_GT] = ACTIONS(3480), + [anon_sym_extern] = ACTIONS(3473), + [anon_sym___attribute__] = ACTIONS(3473), + [anon_sym_COLON_COLON] = ACTIONS(3478), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3478), + [anon_sym___declspec] = ACTIONS(3473), + [anon_sym___based] = ACTIONS(3473), + [anon_sym_LBRACE] = ACTIONS(3478), + [anon_sym_LBRACK] = ACTIONS(3482), + [anon_sym_EQ] = ACTIONS(3482), + [anon_sym_static] = ACTIONS(3473), + [anon_sym_register] = ACTIONS(3473), + [anon_sym_inline] = ACTIONS(3473), + [anon_sym_thread_local] = ACTIONS(3473), + [anon_sym_const] = ACTIONS(3473), + [anon_sym_volatile] = ACTIONS(3473), + [anon_sym_restrict] = ACTIONS(3473), + [anon_sym__Atomic] = ACTIONS(3473), + [anon_sym_mutable] = ACTIONS(3473), + [anon_sym_constexpr] = ACTIONS(3473), + [anon_sym_constinit] = ACTIONS(3473), + [anon_sym_consteval] = ACTIONS(3473), + [anon_sym_QMARK] = ACTIONS(3485), + [anon_sym_STAR_EQ] = ACTIONS(3485), + [anon_sym_SLASH_EQ] = ACTIONS(3485), + [anon_sym_PERCENT_EQ] = ACTIONS(3485), + [anon_sym_PLUS_EQ] = ACTIONS(3485), + [anon_sym_DASH_EQ] = ACTIONS(3485), + [anon_sym_LT_LT_EQ] = ACTIONS(3485), + [anon_sym_GT_GT_EQ] = ACTIONS(3485), + [anon_sym_AMP_EQ] = ACTIONS(3485), + [anon_sym_CARET_EQ] = ACTIONS(3485), + [anon_sym_PIPE_EQ] = ACTIONS(3485), + [anon_sym_and_eq] = ACTIONS(3480), + [anon_sym_or_eq] = ACTIONS(3480), + [anon_sym_xor_eq] = ACTIONS(3480), + [anon_sym_LT_EQ_GT] = ACTIONS(3485), + [anon_sym_or] = ACTIONS(3480), + [anon_sym_and] = ACTIONS(3480), + [anon_sym_bitor] = ACTIONS(3480), + [anon_sym_xor] = ACTIONS(3480), + [anon_sym_bitand] = ACTIONS(3480), + [anon_sym_not_eq] = ACTIONS(3480), + [anon_sym_DASH_DASH] = ACTIONS(3485), + [anon_sym_PLUS_PLUS] = ACTIONS(3485), + [anon_sym_DOT] = ACTIONS(3480), + [anon_sym_DASH_GT] = ACTIONS(3485), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3473), + [anon_sym_decltype] = ACTIONS(3473), + [anon_sym_virtual] = ACTIONS(3473), + [anon_sym_template] = ACTIONS(3473), + [anon_sym_operator] = ACTIONS(3473), + }, + [1345] = { + [sym__expression] = STATE(3606), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3001), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3001), + [sym_call_expression] = STATE(3001), + [sym_field_expression] = STATE(3001), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3001), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_lambda_default_capture] = STATE(6661), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3001), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3085), + [anon_sym_LPAREN2] = ACTIONS(3087), + [anon_sym_BANG] = ACTIONS(3091), + [anon_sym_TILDE] = ACTIONS(3091), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(3532), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_RBRACK] = ACTIONS(3548), + [anon_sym_EQ] = ACTIONS(3536), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3089), + [anon_sym_compl] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3095), + [anon_sym_PLUS_PLUS] = ACTIONS(3095), + [anon_sym_sizeof] = ACTIONS(3097), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3099), + [anon_sym_co_await] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1346] = { + [sym__expression] = STATE(2570), + [sym_conditional_expression] = STATE(2562), + [sym_assignment_expression] = STATE(2562), + [sym_pointer_expression] = STATE(2549), + [sym_unary_expression] = STATE(2562), + [sym_binary_expression] = STATE(2562), + [sym_update_expression] = STATE(2562), + [sym_cast_expression] = STATE(2562), + [sym_sizeof_expression] = STATE(2562), + [sym_subscript_expression] = STATE(2549), + [sym_call_expression] = STATE(2549), + [sym_field_expression] = STATE(2549), + [sym_compound_literal_expression] = STATE(2562), + [sym_parenthesized_expression] = STATE(2549), + [sym_char_literal] = STATE(2344), + [sym_concatenated_string] = STATE(2344), + [sym_string_literal] = STATE(1824), + [sym__class_name] = STATE(6654), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2562), + [sym_co_await_expression] = STATE(2562), + [sym_new_expression] = STATE(2562), + [sym_delete_expression] = STATE(2562), + [sym_requires_clause] = STATE(2562), + [sym_requires_expression] = STATE(2562), + [sym_lambda_expression] = STATE(2562), + [sym_lambda_capture_specifier] = STATE(4787), + [sym_fold_expression] = STATE(2562), + [sym_parameter_pack_expansion] = STATE(2562), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2549), + [sym_qualified_type_identifier] = STATE(6654), + [sym_user_defined_literal] = STATE(2562), + [sym_identifier] = ACTIONS(1697), + [anon_sym_LPAREN2] = ACTIONS(3538), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1703), + [anon_sym_PLUS] = ACTIONS(1703), + [anon_sym_STAR] = ACTIONS(3538), + [anon_sym_AMP_AMP] = ACTIONS(3538), + [anon_sym_AMP] = ACTIONS(3540), + [anon_sym_LT] = ACTIONS(3538), + [anon_sym_COLON_COLON] = ACTIONS(1709), + [anon_sym_LBRACE] = ACTIONS(3538), + [anon_sym_LBRACK] = ACTIONS(3538), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(1703), + [anon_sym_compl] = ACTIONS(1703), + [anon_sym_DASH_DASH] = ACTIONS(1717), + [anon_sym_PLUS_PLUS] = ACTIONS(1717), + [anon_sym_sizeof] = ACTIONS(1719), + [sym_number_literal] = ACTIONS(1721), + [anon_sym_L_SQUOTE] = ACTIONS(1723), + [anon_sym_u_SQUOTE] = ACTIONS(1723), + [anon_sym_U_SQUOTE] = ACTIONS(1723), + [anon_sym_u8_SQUOTE] = ACTIONS(1723), + [anon_sym_SQUOTE] = ACTIONS(1723), + [anon_sym_L_DQUOTE] = ACTIONS(1725), + [anon_sym_u_DQUOTE] = ACTIONS(1725), + [anon_sym_U_DQUOTE] = ACTIONS(1725), + [anon_sym_u8_DQUOTE] = ACTIONS(1725), + [anon_sym_DQUOTE] = ACTIONS(1725), + [sym_true] = ACTIONS(1727), + [sym_false] = ACTIONS(1727), + [sym_null] = ACTIONS(1727), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1729), + [anon_sym_co_await] = ACTIONS(1731), + [anon_sym_new] = ACTIONS(1733), + [anon_sym_requires] = ACTIONS(1735), + [sym_this] = ACTIONS(1727), + [sym_nullptr] = ACTIONS(1727), + [sym_raw_string_literal] = ACTIONS(1737), + }, + [1347] = { + [sym__expression] = STATE(2969), + [sym_conditional_expression] = STATE(2999), + [sym_assignment_expression] = STATE(2999), + [sym_pointer_expression] = STATE(2973), + [sym_unary_expression] = STATE(2999), + [sym_binary_expression] = STATE(2999), + [sym_update_expression] = STATE(2999), + [sym_cast_expression] = STATE(2999), + [sym_sizeof_expression] = STATE(2999), + [sym_subscript_expression] = STATE(2973), + [sym_call_expression] = STATE(2973), + [sym_field_expression] = STATE(2973), + [sym_compound_literal_expression] = STATE(2999), + [sym_parenthesized_expression] = STATE(2973), + [sym_char_literal] = STATE(2933), + [sym_concatenated_string] = STATE(2933), + [sym_string_literal] = STATE(1927), + [sym__class_name] = STATE(6445), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2999), + [sym_co_await_expression] = STATE(2999), + [sym_new_expression] = STATE(2999), + [sym_delete_expression] = STATE(2999), + [sym_requires_clause] = STATE(2999), + [sym_requires_expression] = STATE(2999), + [sym_lambda_expression] = STATE(2999), + [sym_lambda_capture_specifier] = STATE(4767), + [sym_fold_expression] = STATE(2999), + [sym_parameter_pack_expansion] = STATE(2999), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2973), + [sym_qualified_type_identifier] = STATE(6445), + [sym_user_defined_literal] = STATE(2999), + [sym_identifier] = ACTIONS(1919), + [anon_sym_LPAREN2] = ACTIONS(3538), + [anon_sym_BANG] = ACTIONS(1925), + [anon_sym_TILDE] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1923), + [anon_sym_PLUS] = ACTIONS(1923), + [anon_sym_STAR] = ACTIONS(3538), + [anon_sym_AMP_AMP] = ACTIONS(3538), + [anon_sym_AMP] = ACTIONS(3540), + [anon_sym_LT] = ACTIONS(3538), + [anon_sym_COLON_COLON] = ACTIONS(1929), + [anon_sym_LBRACE] = ACTIONS(3538), + [anon_sym_LBRACK] = ACTIONS(3538), + [sym_primitive_type] = ACTIONS(1933), + [anon_sym_not] = ACTIONS(1923), + [anon_sym_compl] = ACTIONS(1923), + [anon_sym_DASH_DASH] = ACTIONS(1935), + [anon_sym_PLUS_PLUS] = ACTIONS(1935), + [anon_sym_sizeof] = ACTIONS(1937), + [sym_number_literal] = ACTIONS(1939), + [anon_sym_L_SQUOTE] = ACTIONS(1941), + [anon_sym_u_SQUOTE] = ACTIONS(1941), + [anon_sym_U_SQUOTE] = ACTIONS(1941), + [anon_sym_u8_SQUOTE] = ACTIONS(1941), + [anon_sym_SQUOTE] = ACTIONS(1941), + [anon_sym_L_DQUOTE] = ACTIONS(1943), + [anon_sym_u_DQUOTE] = ACTIONS(1943), + [anon_sym_U_DQUOTE] = ACTIONS(1943), + [anon_sym_u8_DQUOTE] = ACTIONS(1943), + [anon_sym_DQUOTE] = ACTIONS(1943), + [sym_true] = ACTIONS(1945), + [sym_false] = ACTIONS(1945), + [sym_null] = ACTIONS(1945), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1947), + [anon_sym_co_await] = ACTIONS(1949), + [anon_sym_new] = ACTIONS(1951), + [anon_sym_requires] = ACTIONS(1953), + [sym_this] = ACTIONS(1945), + [sym_nullptr] = ACTIONS(1945), + [sym_raw_string_literal] = ACTIONS(1955), + }, + [1348] = { + [sym__expression] = STATE(3550), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(3538), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(3538), + [anon_sym_AMP_AMP] = ACTIONS(3538), + [anon_sym_AMP] = ACTIONS(3540), + [anon_sym_LT] = ACTIONS(3538), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(3538), + [anon_sym_LBRACK] = ACTIONS(3538), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1349] = { + [sym__expression] = STATE(2977), + [sym_conditional_expression] = STATE(2562), + [sym_assignment_expression] = STATE(2562), + [sym_pointer_expression] = STATE(2549), + [sym_unary_expression] = STATE(2562), + [sym_binary_expression] = STATE(2562), + [sym_update_expression] = STATE(2562), + [sym_cast_expression] = STATE(2562), + [sym_sizeof_expression] = STATE(2562), + [sym_subscript_expression] = STATE(2549), + [sym_call_expression] = STATE(2549), + [sym_field_expression] = STATE(2549), + [sym_compound_literal_expression] = STATE(2562), + [sym_parenthesized_expression] = STATE(2549), + [sym_char_literal] = STATE(2344), + [sym_concatenated_string] = STATE(2344), + [sym_string_literal] = STATE(1824), + [sym__class_name] = STATE(6654), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2562), + [sym_co_await_expression] = STATE(2562), + [sym_new_expression] = STATE(2562), + [sym_delete_expression] = STATE(2562), + [sym_requires_clause] = STATE(2562), + [sym_requires_expression] = STATE(2562), + [sym_lambda_expression] = STATE(2562), + [sym_lambda_capture_specifier] = STATE(4787), + [sym_fold_expression] = STATE(2562), + [sym_parameter_pack_expansion] = STATE(2562), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2549), + [sym_qualified_type_identifier] = STATE(6654), + [sym_user_defined_literal] = STATE(2562), + [sym_identifier] = ACTIONS(1697), + [anon_sym_LPAREN2] = ACTIONS(3538), + [anon_sym_BANG] = ACTIONS(1965), + [anon_sym_TILDE] = ACTIONS(1965), + [anon_sym_DASH] = ACTIONS(1963), + [anon_sym_PLUS] = ACTIONS(1963), + [anon_sym_STAR] = ACTIONS(3538), + [anon_sym_AMP_AMP] = ACTIONS(3538), + [anon_sym_AMP] = ACTIONS(3540), + [anon_sym_LT] = ACTIONS(3538), + [anon_sym_COLON_COLON] = ACTIONS(1969), + [anon_sym_LBRACE] = ACTIONS(3538), + [anon_sym_LBRACK] = ACTIONS(3538), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(1963), + [anon_sym_compl] = ACTIONS(1963), + [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1971), + [anon_sym_sizeof] = ACTIONS(1973), + [sym_number_literal] = ACTIONS(1721), + [anon_sym_L_SQUOTE] = ACTIONS(1723), + [anon_sym_u_SQUOTE] = ACTIONS(1723), + [anon_sym_U_SQUOTE] = ACTIONS(1723), + [anon_sym_u8_SQUOTE] = ACTIONS(1723), + [anon_sym_SQUOTE] = ACTIONS(1723), + [anon_sym_L_DQUOTE] = ACTIONS(1725), + [anon_sym_u_DQUOTE] = ACTIONS(1725), + [anon_sym_U_DQUOTE] = ACTIONS(1725), + [anon_sym_u8_DQUOTE] = ACTIONS(1725), + [anon_sym_DQUOTE] = ACTIONS(1725), + [sym_true] = ACTIONS(1727), + [sym_false] = ACTIONS(1727), + [sym_null] = ACTIONS(1727), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1975), + [anon_sym_co_await] = ACTIONS(1977), + [anon_sym_new] = ACTIONS(1979), + [anon_sym_requires] = ACTIONS(1735), + [sym_this] = ACTIONS(1727), + [sym_nullptr] = ACTIONS(1727), + [sym_raw_string_literal] = ACTIONS(1737), + }, + [1350] = { + [sym__expression] = STATE(3606), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3001), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3001), + [sym_call_expression] = STATE(3001), + [sym_field_expression] = STATE(3001), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3001), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_lambda_default_capture] = STATE(6661), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3001), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3085), + [anon_sym_LPAREN2] = ACTIONS(3087), + [anon_sym_BANG] = ACTIONS(3091), + [anon_sym_TILDE] = ACTIONS(3091), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(3532), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_RBRACK] = ACTIONS(3550), + [anon_sym_EQ] = ACTIONS(3536), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3089), + [anon_sym_compl] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3095), + [anon_sym_PLUS_PLUS] = ACTIONS(3095), + [anon_sym_sizeof] = ACTIONS(3097), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3099), + [anon_sym_co_await] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1351] = { + [sym__expression] = STATE(3640), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_initializer_list] = STATE(5924), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_RPAREN] = ACTIONS(3552), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1352] = { + [sym__expression] = STATE(3623), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_initializer_list] = STATE(6094), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_RPAREN] = ACTIONS(3554), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1353] = { + [sym__expression] = STATE(3606), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3001), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3001), + [sym_call_expression] = STATE(3001), + [sym_field_expression] = STATE(3001), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3001), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_lambda_default_capture] = STATE(6661), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3001), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3085), + [anon_sym_LPAREN2] = ACTIONS(3087), + [anon_sym_BANG] = ACTIONS(3091), + [anon_sym_TILDE] = ACTIONS(3091), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(3532), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_RBRACK] = ACTIONS(3556), + [anon_sym_EQ] = ACTIONS(3536), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3089), + [anon_sym_compl] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3095), + [anon_sym_PLUS_PLUS] = ACTIONS(3095), + [anon_sym_sizeof] = ACTIONS(3097), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3099), + [anon_sym_co_await] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1354] = { + [sym__expression] = STATE(3606), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3001), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3001), + [sym_call_expression] = STATE(3001), + [sym_field_expression] = STATE(3001), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3001), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_lambda_default_capture] = STATE(6661), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3001), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3558), + [anon_sym_LPAREN2] = ACTIONS(3087), + [anon_sym_BANG] = ACTIONS(3091), + [anon_sym_TILDE] = ACTIONS(3091), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(3532), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_RBRACK] = ACTIONS(3560), + [anon_sym_EQ] = ACTIONS(3536), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3089), + [anon_sym_compl] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3095), + [anon_sym_PLUS_PLUS] = ACTIONS(3095), + [anon_sym_sizeof] = ACTIONS(3097), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3099), + [anon_sym_co_await] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1355] = { + [sym__expression] = STATE(3613), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3001), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3001), + [sym_call_expression] = STATE(3001), + [sym_field_expression] = STATE(3001), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3001), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_lambda_default_capture] = STATE(6661), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3001), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3085), + [anon_sym_LPAREN2] = ACTIONS(3087), + [anon_sym_BANG] = ACTIONS(3091), + [anon_sym_TILDE] = ACTIONS(3091), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(3532), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_RBRACK] = ACTIONS(3560), + [anon_sym_EQ] = ACTIONS(3536), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3089), + [anon_sym_compl] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3095), + [anon_sym_PLUS_PLUS] = ACTIONS(3095), + [anon_sym_sizeof] = ACTIONS(3097), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3099), + [anon_sym_co_await] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1356] = { + [sym__expression] = STATE(3752), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3001), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3001), + [sym_call_expression] = STATE(3001), + [sym_field_expression] = STATE(3001), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3001), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3001), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3085), + [anon_sym_LPAREN2] = ACTIONS(3538), + [anon_sym_BANG] = ACTIONS(3091), + [anon_sym_TILDE] = ACTIONS(3091), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(3538), + [anon_sym_AMP_AMP] = ACTIONS(3538), + [anon_sym_AMP] = ACTIONS(3540), + [anon_sym_LT] = ACTIONS(3538), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_LBRACE] = ACTIONS(3538), + [anon_sym_LBRACK] = ACTIONS(3538), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3089), + [anon_sym_compl] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3095), + [anon_sym_PLUS_PLUS] = ACTIONS(3095), + [anon_sym_sizeof] = ACTIONS(3097), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3099), + [anon_sym_co_await] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1357] = { + [sym__expression] = STATE(3906), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_initializer_list] = STATE(6773), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_default] = ACTIONS(3562), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3564), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1358] = { + [sym__expression] = STATE(3606), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3001), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3001), + [sym_call_expression] = STATE(3001), + [sym_field_expression] = STATE(3001), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3001), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_lambda_default_capture] = STATE(6661), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3001), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3085), + [anon_sym_LPAREN2] = ACTIONS(3087), + [anon_sym_BANG] = ACTIONS(3091), + [anon_sym_TILDE] = ACTIONS(3091), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(3532), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_RBRACK] = ACTIONS(3566), + [anon_sym_EQ] = ACTIONS(3536), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3089), + [anon_sym_compl] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3095), + [anon_sym_PLUS_PLUS] = ACTIONS(3095), + [anon_sym_sizeof] = ACTIONS(3097), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3099), + [anon_sym_co_await] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1359] = { + [sym__expression] = STATE(3919), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3121), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3121), + [sym_call_expression] = STATE(3121), + [sym_field_expression] = STATE(3121), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3121), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3121), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3109), + [anon_sym_LPAREN2] = ACTIONS(3538), + [anon_sym_BANG] = ACTIONS(3115), + [anon_sym_TILDE] = ACTIONS(3115), + [anon_sym_DASH] = ACTIONS(3113), + [anon_sym_PLUS] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(3538), + [anon_sym_AMP_AMP] = ACTIONS(3538), + [anon_sym_AMP] = ACTIONS(3540), + [anon_sym_LT] = ACTIONS(3538), + [anon_sym_COLON_COLON] = ACTIONS(3119), + [anon_sym_LBRACE] = ACTIONS(3538), + [anon_sym_LBRACK] = ACTIONS(3538), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3113), + [anon_sym_compl] = ACTIONS(3113), + [anon_sym_DASH_DASH] = ACTIONS(3121), + [anon_sym_PLUS_PLUS] = ACTIONS(3121), + [anon_sym_sizeof] = ACTIONS(3123), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3125), + [anon_sym_co_await] = ACTIONS(3127), + [anon_sym_new] = ACTIONS(3129), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1360] = { + [sym__expression] = STATE(3606), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3001), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3001), + [sym_call_expression] = STATE(3001), + [sym_field_expression] = STATE(3001), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3001), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_lambda_default_capture] = STATE(6661), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3001), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3085), + [anon_sym_LPAREN2] = ACTIONS(3087), + [anon_sym_BANG] = ACTIONS(3091), + [anon_sym_TILDE] = ACTIONS(3091), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(3532), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_RBRACK] = ACTIONS(3568), + [anon_sym_EQ] = ACTIONS(3536), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3089), + [anon_sym_compl] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3095), + [anon_sym_PLUS_PLUS] = ACTIONS(3095), + [anon_sym_sizeof] = ACTIONS(3097), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3099), + [anon_sym_co_await] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1361] = { + [sym__expression] = STATE(3606), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3001), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3001), + [sym_call_expression] = STATE(3001), + [sym_field_expression] = STATE(3001), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3001), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_lambda_default_capture] = STATE(6661), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3001), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3085), + [anon_sym_LPAREN2] = ACTIONS(3087), + [anon_sym_BANG] = ACTIONS(3091), + [anon_sym_TILDE] = ACTIONS(3091), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(3532), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_RBRACK] = ACTIONS(3570), + [anon_sym_EQ] = ACTIONS(3536), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3089), + [anon_sym_compl] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3095), + [anon_sym_PLUS_PLUS] = ACTIONS(3095), + [anon_sym_sizeof] = ACTIONS(3097), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3099), + [anon_sym_co_await] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1362] = { + [sym__expression] = STATE(3606), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3001), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3001), + [sym_call_expression] = STATE(3001), + [sym_field_expression] = STATE(3001), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3001), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_lambda_default_capture] = STATE(6661), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3001), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3085), + [anon_sym_LPAREN2] = ACTIONS(3087), + [anon_sym_BANG] = ACTIONS(3091), + [anon_sym_TILDE] = ACTIONS(3091), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(3532), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_RBRACK] = ACTIONS(3560), + [anon_sym_EQ] = ACTIONS(3536), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3089), + [anon_sym_compl] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3095), + [anon_sym_PLUS_PLUS] = ACTIONS(3095), + [anon_sym_sizeof] = ACTIONS(3097), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3099), + [anon_sym_co_await] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1363] = { + [sym__expression] = STATE(3591), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_initializer_list] = STATE(5869), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_RPAREN] = ACTIONS(3572), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1364] = { + [sym__expression] = STATE(3613), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3001), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3001), + [sym_call_expression] = STATE(3001), + [sym_field_expression] = STATE(3001), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3001), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_lambda_default_capture] = STATE(6661), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3001), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3558), + [anon_sym_LPAREN2] = ACTIONS(3087), + [anon_sym_BANG] = ACTIONS(3091), + [anon_sym_TILDE] = ACTIONS(3091), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(3532), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_RBRACK] = ACTIONS(3560), + [anon_sym_EQ] = ACTIONS(3536), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3089), + [anon_sym_compl] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3095), + [anon_sym_PLUS_PLUS] = ACTIONS(3095), + [anon_sym_sizeof] = ACTIONS(3097), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3099), + [anon_sym_co_await] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1365] = { + [sym__expression] = STATE(3606), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3001), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3001), + [sym_call_expression] = STATE(3001), + [sym_field_expression] = STATE(3001), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3001), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_lambda_default_capture] = STATE(6661), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3001), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3085), + [anon_sym_LPAREN2] = ACTIONS(3087), + [anon_sym_BANG] = ACTIONS(3091), + [anon_sym_TILDE] = ACTIONS(3091), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(3532), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_RBRACK] = ACTIONS(3574), + [anon_sym_EQ] = ACTIONS(3536), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3089), + [anon_sym_compl] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3095), + [anon_sym_PLUS_PLUS] = ACTIONS(3095), + [anon_sym_sizeof] = ACTIONS(3097), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3099), + [anon_sym_co_await] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1366] = { + [sym__expression] = STATE(2474), + [sym_conditional_expression] = STATE(2562), + [sym_assignment_expression] = STATE(2562), + [sym_pointer_expression] = STATE(2549), + [sym_unary_expression] = STATE(2562), + [sym_binary_expression] = STATE(2562), + [sym_update_expression] = STATE(2562), + [sym_cast_expression] = STATE(2562), + [sym_sizeof_expression] = STATE(2562), + [sym_subscript_expression] = STATE(2549), + [sym_call_expression] = STATE(2549), + [sym_field_expression] = STATE(2549), + [sym_compound_literal_expression] = STATE(2562), + [sym_parenthesized_expression] = STATE(2549), + [sym_char_literal] = STATE(2344), + [sym_concatenated_string] = STATE(2344), + [sym_string_literal] = STATE(1824), + [sym__class_name] = STATE(6654), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2562), + [sym_co_await_expression] = STATE(2562), + [sym_new_expression] = STATE(2562), + [sym_delete_expression] = STATE(2562), + [sym_requires_clause] = STATE(2562), + [sym_requires_expression] = STATE(2562), + [sym_lambda_expression] = STATE(2562), + [sym_lambda_capture_specifier] = STATE(4787), + [sym_fold_expression] = STATE(2562), + [sym_parameter_pack_expansion] = STATE(2562), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2549), + [sym_qualified_type_identifier] = STATE(6654), + [sym_user_defined_literal] = STATE(2562), + [sym_identifier] = ACTIONS(1697), + [anon_sym_LPAREN2] = ACTIONS(3538), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1703), + [anon_sym_PLUS] = ACTIONS(1703), + [anon_sym_STAR] = ACTIONS(3538), + [anon_sym_AMP_AMP] = ACTIONS(3538), + [anon_sym_AMP] = ACTIONS(3540), + [anon_sym_LT] = ACTIONS(3538), + [anon_sym_COLON_COLON] = ACTIONS(1709), + [anon_sym_LBRACE] = ACTIONS(3538), + [anon_sym_LBRACK] = ACTIONS(3538), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(1703), + [anon_sym_compl] = ACTIONS(1703), + [anon_sym_DASH_DASH] = ACTIONS(1717), + [anon_sym_PLUS_PLUS] = ACTIONS(1717), + [anon_sym_sizeof] = ACTIONS(1719), + [sym_number_literal] = ACTIONS(1721), + [anon_sym_L_SQUOTE] = ACTIONS(1723), + [anon_sym_u_SQUOTE] = ACTIONS(1723), + [anon_sym_U_SQUOTE] = ACTIONS(1723), + [anon_sym_u8_SQUOTE] = ACTIONS(1723), + [anon_sym_SQUOTE] = ACTIONS(1723), + [anon_sym_L_DQUOTE] = ACTIONS(1725), + [anon_sym_u_DQUOTE] = ACTIONS(1725), + [anon_sym_U_DQUOTE] = ACTIONS(1725), + [anon_sym_u8_DQUOTE] = ACTIONS(1725), + [anon_sym_DQUOTE] = ACTIONS(1725), + [sym_true] = ACTIONS(1727), + [sym_false] = ACTIONS(1727), + [sym_null] = ACTIONS(1727), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1729), + [anon_sym_co_await] = ACTIONS(1731), + [anon_sym_new] = ACTIONS(1733), + [anon_sym_requires] = ACTIONS(1735), + [sym_this] = ACTIONS(1727), + [sym_nullptr] = ACTIONS(1727), + [sym_raw_string_literal] = ACTIONS(1737), + }, + [1367] = { + [sym__expression] = STATE(2960), + [sym_conditional_expression] = STATE(2999), + [sym_assignment_expression] = STATE(2999), + [sym_pointer_expression] = STATE(2973), + [sym_unary_expression] = STATE(2999), + [sym_binary_expression] = STATE(2999), + [sym_update_expression] = STATE(2999), + [sym_cast_expression] = STATE(2999), + [sym_sizeof_expression] = STATE(2999), + [sym_subscript_expression] = STATE(2973), + [sym_call_expression] = STATE(2973), + [sym_field_expression] = STATE(2973), + [sym_compound_literal_expression] = STATE(2999), + [sym_parenthesized_expression] = STATE(2973), + [sym_char_literal] = STATE(2933), + [sym_concatenated_string] = STATE(2933), + [sym_string_literal] = STATE(1927), + [sym__class_name] = STATE(6445), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2999), + [sym_co_await_expression] = STATE(2999), + [sym_new_expression] = STATE(2999), + [sym_delete_expression] = STATE(2999), + [sym_requires_clause] = STATE(2999), + [sym_requires_expression] = STATE(2999), + [sym_lambda_expression] = STATE(2999), + [sym_lambda_capture_specifier] = STATE(4767), + [sym_fold_expression] = STATE(2999), + [sym_parameter_pack_expansion] = STATE(2999), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2973), + [sym_qualified_type_identifier] = STATE(6445), + [sym_user_defined_literal] = STATE(2999), + [sym_identifier] = ACTIONS(1919), + [anon_sym_LPAREN2] = ACTIONS(3538), + [anon_sym_BANG] = ACTIONS(1925), + [anon_sym_TILDE] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1923), + [anon_sym_PLUS] = ACTIONS(1923), + [anon_sym_STAR] = ACTIONS(3538), + [anon_sym_AMP_AMP] = ACTIONS(3538), + [anon_sym_AMP] = ACTIONS(3540), + [anon_sym_LT] = ACTIONS(3538), + [anon_sym_COLON_COLON] = ACTIONS(1929), + [anon_sym_LBRACE] = ACTIONS(3538), + [anon_sym_LBRACK] = ACTIONS(3538), + [sym_primitive_type] = ACTIONS(1933), + [anon_sym_not] = ACTIONS(1923), + [anon_sym_compl] = ACTIONS(1923), + [anon_sym_DASH_DASH] = ACTIONS(1935), + [anon_sym_PLUS_PLUS] = ACTIONS(1935), + [anon_sym_sizeof] = ACTIONS(1937), + [sym_number_literal] = ACTIONS(1939), + [anon_sym_L_SQUOTE] = ACTIONS(1941), + [anon_sym_u_SQUOTE] = ACTIONS(1941), + [anon_sym_U_SQUOTE] = ACTIONS(1941), + [anon_sym_u8_SQUOTE] = ACTIONS(1941), + [anon_sym_SQUOTE] = ACTIONS(1941), + [anon_sym_L_DQUOTE] = ACTIONS(1943), + [anon_sym_u_DQUOTE] = ACTIONS(1943), + [anon_sym_U_DQUOTE] = ACTIONS(1943), + [anon_sym_u8_DQUOTE] = ACTIONS(1943), + [anon_sym_DQUOTE] = ACTIONS(1943), + [sym_true] = ACTIONS(1945), + [sym_false] = ACTIONS(1945), + [sym_null] = ACTIONS(1945), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1947), + [anon_sym_co_await] = ACTIONS(1949), + [anon_sym_new] = ACTIONS(1951), + [anon_sym_requires] = ACTIONS(1953), + [sym_this] = ACTIONS(1945), + [sym_nullptr] = ACTIONS(1945), + [sym_raw_string_literal] = ACTIONS(1955), + }, + [1368] = { + [sym__expression] = STATE(3829), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_initializer_list] = STATE(7234), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_default] = ACTIONS(3576), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3578), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1369] = { + [sym__expression] = STATE(3607), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_initializer_list] = STATE(5907), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_RPAREN] = ACTIONS(3580), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1370] = { + [sym__expression] = STATE(3604), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_initializer_list] = STATE(5818), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_RPAREN] = ACTIONS(3582), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1371] = { + [sym__expression] = STATE(3606), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3001), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3001), + [sym_call_expression] = STATE(3001), + [sym_field_expression] = STATE(3001), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3001), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_lambda_default_capture] = STATE(6661), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3001), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3085), + [anon_sym_LPAREN2] = ACTIONS(3087), + [anon_sym_BANG] = ACTIONS(3091), + [anon_sym_TILDE] = ACTIONS(3091), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(3532), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_RBRACK] = ACTIONS(3584), + [anon_sym_EQ] = ACTIONS(3536), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3089), + [anon_sym_compl] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3095), + [anon_sym_PLUS_PLUS] = ACTIONS(3095), + [anon_sym_sizeof] = ACTIONS(3097), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3099), + [anon_sym_co_await] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1372] = { + [sym__expression] = STATE(3606), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3001), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3001), + [sym_call_expression] = STATE(3001), + [sym_field_expression] = STATE(3001), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3001), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_lambda_default_capture] = STATE(6661), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3001), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3085), + [anon_sym_LPAREN2] = ACTIONS(3087), + [anon_sym_BANG] = ACTIONS(3091), + [anon_sym_TILDE] = ACTIONS(3091), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(3532), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_RBRACK] = ACTIONS(3586), + [anon_sym_EQ] = ACTIONS(3536), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3089), + [anon_sym_compl] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3095), + [anon_sym_PLUS_PLUS] = ACTIONS(3095), + [anon_sym_sizeof] = ACTIONS(3097), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3099), + [anon_sym_co_await] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1373] = { + [sym__expression] = STATE(3637), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_initializer_list] = STATE(5946), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_RPAREN] = ACTIONS(3588), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1374] = { + [sym__expression] = STATE(3606), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3001), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3001), + [sym_call_expression] = STATE(3001), + [sym_field_expression] = STATE(3001), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3001), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_lambda_default_capture] = STATE(6661), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3001), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3085), + [anon_sym_LPAREN2] = ACTIONS(3087), + [anon_sym_BANG] = ACTIONS(3091), + [anon_sym_TILDE] = ACTIONS(3091), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(3532), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_RBRACK] = ACTIONS(3590), + [anon_sym_EQ] = ACTIONS(3536), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3089), + [anon_sym_compl] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3095), + [anon_sym_PLUS_PLUS] = ACTIONS(3095), + [anon_sym_sizeof] = ACTIONS(3097), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3099), + [anon_sym_co_await] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1375] = { + [sym__expression] = STATE(3606), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3001), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3001), + [sym_call_expression] = STATE(3001), + [sym_field_expression] = STATE(3001), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3001), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_lambda_default_capture] = STATE(6661), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3001), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3085), + [anon_sym_LPAREN2] = ACTIONS(3087), + [anon_sym_BANG] = ACTIONS(3091), + [anon_sym_TILDE] = ACTIONS(3091), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(3532), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_RBRACK] = ACTIONS(3592), + [anon_sym_EQ] = ACTIONS(3536), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3089), + [anon_sym_compl] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3095), + [anon_sym_PLUS_PLUS] = ACTIONS(3095), + [anon_sym_sizeof] = ACTIONS(3097), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3099), + [anon_sym_co_await] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1376] = { + [sym__expression] = STATE(3606), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3001), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3001), + [sym_call_expression] = STATE(3001), + [sym_field_expression] = STATE(3001), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3001), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_lambda_default_capture] = STATE(6661), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3001), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3085), + [anon_sym_LPAREN2] = ACTIONS(3087), + [anon_sym_BANG] = ACTIONS(3091), + [anon_sym_TILDE] = ACTIONS(3091), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(3532), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_RBRACK] = ACTIONS(3594), + [anon_sym_EQ] = ACTIONS(3536), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3089), + [anon_sym_compl] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3095), + [anon_sym_PLUS_PLUS] = ACTIONS(3095), + [anon_sym_sizeof] = ACTIONS(3097), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3099), + [anon_sym_co_await] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1377] = { + [sym__expression] = STATE(2581), + [sym_conditional_expression] = STATE(2821), + [sym_assignment_expression] = STATE(2821), + [sym_pointer_expression] = STATE(2805), + [sym_unary_expression] = STATE(2821), + [sym_binary_expression] = STATE(2821), + [sym_update_expression] = STATE(2821), + [sym_cast_expression] = STATE(2821), + [sym_sizeof_expression] = STATE(2821), + [sym_subscript_expression] = STATE(2805), + [sym_call_expression] = STATE(2805), + [sym_field_expression] = STATE(2805), + [sym_compound_literal_expression] = STATE(2821), + [sym_parenthesized_expression] = STATE(2805), + [sym_char_literal] = STATE(2577), + [sym_concatenated_string] = STATE(2577), + [sym_string_literal] = STATE(1861), + [sym__class_name] = STATE(6652), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2821), + [sym_co_await_expression] = STATE(2821), + [sym_new_expression] = STATE(2821), + [sym_delete_expression] = STATE(2821), + [sym_requires_clause] = STATE(2821), + [sym_requires_expression] = STATE(2821), + [sym_lambda_expression] = STATE(2821), + [sym_lambda_capture_specifier] = STATE(4790), + [sym_fold_expression] = STATE(2821), + [sym_parameter_pack_expansion] = STATE(2821), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4904), + [sym_qualified_identifier] = STATE(2805), + [sym_qualified_type_identifier] = STATE(6652), + [sym_user_defined_literal] = STATE(2821), + [sym_identifier] = ACTIONS(1739), + [anon_sym_LPAREN2] = ACTIONS(3538), + [anon_sym_BANG] = ACTIONS(1745), + [anon_sym_TILDE] = ACTIONS(1745), + [anon_sym_DASH] = ACTIONS(1743), + [anon_sym_PLUS] = ACTIONS(1743), + [anon_sym_STAR] = ACTIONS(3538), + [anon_sym_AMP_AMP] = ACTIONS(3538), + [anon_sym_AMP] = ACTIONS(3540), + [anon_sym_LT] = ACTIONS(3538), + [anon_sym_COLON_COLON] = ACTIONS(1749), + [anon_sym_LBRACE] = ACTIONS(3538), + [anon_sym_LBRACK] = ACTIONS(3538), + [sym_primitive_type] = ACTIONS(1753), + [anon_sym_not] = ACTIONS(1743), + [anon_sym_compl] = ACTIONS(1743), + [anon_sym_DASH_DASH] = ACTIONS(1755), + [anon_sym_PLUS_PLUS] = ACTIONS(1755), + [anon_sym_sizeof] = ACTIONS(1757), + [sym_number_literal] = ACTIONS(1759), + [anon_sym_L_SQUOTE] = ACTIONS(1761), + [anon_sym_u_SQUOTE] = ACTIONS(1761), + [anon_sym_U_SQUOTE] = ACTIONS(1761), + [anon_sym_u8_SQUOTE] = ACTIONS(1761), + [anon_sym_SQUOTE] = ACTIONS(1761), + [anon_sym_L_DQUOTE] = ACTIONS(1763), + [anon_sym_u_DQUOTE] = ACTIONS(1763), + [anon_sym_U_DQUOTE] = ACTIONS(1763), + [anon_sym_u8_DQUOTE] = ACTIONS(1763), + [anon_sym_DQUOTE] = ACTIONS(1763), + [sym_true] = ACTIONS(1765), + [sym_false] = ACTIONS(1765), + [sym_null] = ACTIONS(1765), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1767), + [anon_sym_co_await] = ACTIONS(1769), + [anon_sym_new] = ACTIONS(1771), + [anon_sym_requires] = ACTIONS(1773), + [sym_this] = ACTIONS(1765), + [sym_nullptr] = ACTIONS(1765), + [sym_raw_string_literal] = ACTIONS(1775), + }, + [1378] = { + [sym__expression] = STATE(3834), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_initializer_list] = STATE(7130), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_default] = ACTIONS(3596), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3598), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1379] = { + [sym__expression] = STATE(3606), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3001), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3001), + [sym_call_expression] = STATE(3001), + [sym_field_expression] = STATE(3001), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3001), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_lambda_default_capture] = STATE(6661), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3001), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3085), + [anon_sym_LPAREN2] = ACTIONS(3087), + [anon_sym_BANG] = ACTIONS(3091), + [anon_sym_TILDE] = ACTIONS(3091), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(3532), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_RBRACK] = ACTIONS(3600), + [anon_sym_EQ] = ACTIONS(3536), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3089), + [anon_sym_compl] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3095), + [anon_sym_PLUS_PLUS] = ACTIONS(3095), + [anon_sym_sizeof] = ACTIONS(3097), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3099), + [anon_sym_co_await] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1380] = { + [sym__expression] = STATE(3606), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3001), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3001), + [sym_call_expression] = STATE(3001), + [sym_field_expression] = STATE(3001), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3001), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_lambda_default_capture] = STATE(6661), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3001), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3085), + [anon_sym_LPAREN2] = ACTIONS(3087), + [anon_sym_BANG] = ACTIONS(3091), + [anon_sym_TILDE] = ACTIONS(3091), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(3532), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_RBRACK] = ACTIONS(3602), + [anon_sym_EQ] = ACTIONS(3536), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3089), + [anon_sym_compl] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3095), + [anon_sym_PLUS_PLUS] = ACTIONS(3095), + [anon_sym_sizeof] = ACTIONS(3097), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3099), + [anon_sym_co_await] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1381] = { + [sym__expression] = STATE(3053), + [sym_conditional_expression] = STATE(3135), + [sym_assignment_expression] = STATE(3135), + [sym_pointer_expression] = STATE(2788), + [sym_unary_expression] = STATE(3135), + [sym_binary_expression] = STATE(3135), + [sym_update_expression] = STATE(3135), + [sym_cast_expression] = STATE(3135), + [sym_sizeof_expression] = STATE(3135), + [sym_subscript_expression] = STATE(2788), + [sym_call_expression] = STATE(2788), + [sym_field_expression] = STATE(2788), + [sym_compound_literal_expression] = STATE(3135), + [sym_parenthesized_expression] = STATE(2788), + [sym_char_literal] = STATE(2981), + [sym_concatenated_string] = STATE(2981), + [sym_string_literal] = STATE(1970), + [sym__class_name] = STATE(6450), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3135), + [sym_co_await_expression] = STATE(3135), + [sym_new_expression] = STATE(3135), + [sym_delete_expression] = STATE(3135), + [sym_requires_clause] = STATE(3135), + [sym_requires_expression] = STATE(3135), + [sym_lambda_expression] = STATE(3135), + [sym_lambda_capture_specifier] = STATE(4771), + [sym_fold_expression] = STATE(3135), + [sym_parameter_pack_expansion] = STATE(3135), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4904), + [sym_qualified_identifier] = STATE(2788), + [sym_qualified_type_identifier] = STATE(6450), + [sym_user_defined_literal] = STATE(3135), + [sym_identifier] = ACTIONS(1957), + [anon_sym_LPAREN2] = ACTIONS(3538), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(3538), + [anon_sym_AMP_AMP] = ACTIONS(3538), + [anon_sym_AMP] = ACTIONS(3540), + [anon_sym_LT] = ACTIONS(3538), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACE] = ACTIONS(3538), + [anon_sym_LBRACK] = ACTIONS(3538), + [sym_primitive_type] = ACTIONS(1753), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_co_await] = ACTIONS(1455), + [anon_sym_new] = ACTIONS(1457), + [anon_sym_requires] = ACTIONS(1459), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + [sym_raw_string_literal] = ACTIONS(1461), + }, + [1382] = { + [sym__expression] = STATE(3050), + [sym_conditional_expression] = STATE(3135), + [sym_assignment_expression] = STATE(3135), + [sym_pointer_expression] = STATE(2788), + [sym_unary_expression] = STATE(3135), + [sym_binary_expression] = STATE(3135), + [sym_update_expression] = STATE(3135), + [sym_cast_expression] = STATE(3135), + [sym_sizeof_expression] = STATE(3135), + [sym_subscript_expression] = STATE(2788), + [sym_call_expression] = STATE(2788), + [sym_field_expression] = STATE(2788), + [sym_compound_literal_expression] = STATE(3135), + [sym_parenthesized_expression] = STATE(2788), + [sym_char_literal] = STATE(2981), + [sym_concatenated_string] = STATE(2981), + [sym_string_literal] = STATE(1970), + [sym__class_name] = STATE(6450), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3135), + [sym_co_await_expression] = STATE(3135), + [sym_new_expression] = STATE(3135), + [sym_delete_expression] = STATE(3135), + [sym_requires_clause] = STATE(3135), + [sym_requires_expression] = STATE(3135), + [sym_lambda_expression] = STATE(3135), + [sym_lambda_capture_specifier] = STATE(4771), + [sym_fold_expression] = STATE(3135), + [sym_parameter_pack_expansion] = STATE(3135), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4904), + [sym_qualified_identifier] = STATE(2788), + [sym_qualified_type_identifier] = STATE(6450), + [sym_user_defined_literal] = STATE(3135), + [sym_identifier] = ACTIONS(1957), + [anon_sym_LPAREN2] = ACTIONS(3538), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(3538), + [anon_sym_AMP_AMP] = ACTIONS(3538), + [anon_sym_AMP] = ACTIONS(3540), + [anon_sym_LT] = ACTIONS(3538), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACE] = ACTIONS(3538), + [anon_sym_LBRACK] = ACTIONS(3538), + [sym_primitive_type] = ACTIONS(1753), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_co_await] = ACTIONS(1455), + [anon_sym_new] = ACTIONS(1457), + [anon_sym_requires] = ACTIONS(1459), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + [sym_raw_string_literal] = ACTIONS(1461), + }, + [1383] = { + [sym__expression] = STATE(2582), + [sym_conditional_expression] = STATE(2821), + [sym_assignment_expression] = STATE(2821), + [sym_pointer_expression] = STATE(2805), + [sym_unary_expression] = STATE(2821), + [sym_binary_expression] = STATE(2821), + [sym_update_expression] = STATE(2821), + [sym_cast_expression] = STATE(2821), + [sym_sizeof_expression] = STATE(2821), + [sym_subscript_expression] = STATE(2805), + [sym_call_expression] = STATE(2805), + [sym_field_expression] = STATE(2805), + [sym_compound_literal_expression] = STATE(2821), + [sym_parenthesized_expression] = STATE(2805), + [sym_char_literal] = STATE(2577), + [sym_concatenated_string] = STATE(2577), + [sym_string_literal] = STATE(1861), + [sym__class_name] = STATE(6652), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2821), + [sym_co_await_expression] = STATE(2821), + [sym_new_expression] = STATE(2821), + [sym_delete_expression] = STATE(2821), + [sym_requires_clause] = STATE(2821), + [sym_requires_expression] = STATE(2821), + [sym_lambda_expression] = STATE(2821), + [sym_lambda_capture_specifier] = STATE(4790), + [sym_fold_expression] = STATE(2821), + [sym_parameter_pack_expansion] = STATE(2821), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4904), + [sym_qualified_identifier] = STATE(2805), + [sym_qualified_type_identifier] = STATE(6652), + [sym_user_defined_literal] = STATE(2821), + [sym_identifier] = ACTIONS(1739), + [anon_sym_LPAREN2] = ACTIONS(3538), + [anon_sym_BANG] = ACTIONS(1745), + [anon_sym_TILDE] = ACTIONS(1745), + [anon_sym_DASH] = ACTIONS(1743), + [anon_sym_PLUS] = ACTIONS(1743), + [anon_sym_STAR] = ACTIONS(3538), + [anon_sym_AMP_AMP] = ACTIONS(3538), + [anon_sym_AMP] = ACTIONS(3540), + [anon_sym_LT] = ACTIONS(3538), + [anon_sym_COLON_COLON] = ACTIONS(1749), + [anon_sym_LBRACE] = ACTIONS(3538), + [anon_sym_LBRACK] = ACTIONS(3538), + [sym_primitive_type] = ACTIONS(1753), + [anon_sym_not] = ACTIONS(1743), + [anon_sym_compl] = ACTIONS(1743), + [anon_sym_DASH_DASH] = ACTIONS(1755), + [anon_sym_PLUS_PLUS] = ACTIONS(1755), + [anon_sym_sizeof] = ACTIONS(1757), + [sym_number_literal] = ACTIONS(1759), + [anon_sym_L_SQUOTE] = ACTIONS(1761), + [anon_sym_u_SQUOTE] = ACTIONS(1761), + [anon_sym_U_SQUOTE] = ACTIONS(1761), + [anon_sym_u8_SQUOTE] = ACTIONS(1761), + [anon_sym_SQUOTE] = ACTIONS(1761), + [anon_sym_L_DQUOTE] = ACTIONS(1763), + [anon_sym_u_DQUOTE] = ACTIONS(1763), + [anon_sym_U_DQUOTE] = ACTIONS(1763), + [anon_sym_u8_DQUOTE] = ACTIONS(1763), + [anon_sym_DQUOTE] = ACTIONS(1763), + [sym_true] = ACTIONS(1765), + [sym_false] = ACTIONS(1765), + [sym_null] = ACTIONS(1765), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1767), + [anon_sym_co_await] = ACTIONS(1769), + [anon_sym_new] = ACTIONS(1771), + [anon_sym_requires] = ACTIONS(1773), + [sym_this] = ACTIONS(1765), + [sym_nullptr] = ACTIONS(1765), + [sym_raw_string_literal] = ACTIONS(1775), + }, + [1384] = { + [sym__expression] = STATE(2979), + [sym_conditional_expression] = STATE(2562), + [sym_assignment_expression] = STATE(2562), + [sym_pointer_expression] = STATE(2549), + [sym_unary_expression] = STATE(2562), + [sym_binary_expression] = STATE(2562), + [sym_update_expression] = STATE(2562), + [sym_cast_expression] = STATE(2562), + [sym_sizeof_expression] = STATE(2562), + [sym_subscript_expression] = STATE(2549), + [sym_call_expression] = STATE(2549), + [sym_field_expression] = STATE(2549), + [sym_compound_literal_expression] = STATE(2562), + [sym_parenthesized_expression] = STATE(2549), + [sym_char_literal] = STATE(2344), + [sym_concatenated_string] = STATE(2344), + [sym_string_literal] = STATE(1824), + [sym__class_name] = STATE(6654), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2562), + [sym_co_await_expression] = STATE(2562), + [sym_new_expression] = STATE(2562), + [sym_delete_expression] = STATE(2562), + [sym_requires_clause] = STATE(2562), + [sym_requires_expression] = STATE(2562), + [sym_lambda_expression] = STATE(2562), + [sym_lambda_capture_specifier] = STATE(4787), + [sym_fold_expression] = STATE(2562), + [sym_parameter_pack_expansion] = STATE(2562), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2549), + [sym_qualified_type_identifier] = STATE(6654), + [sym_user_defined_literal] = STATE(2562), + [sym_identifier] = ACTIONS(1697), + [anon_sym_LPAREN2] = ACTIONS(3538), + [anon_sym_BANG] = ACTIONS(1965), + [anon_sym_TILDE] = ACTIONS(1965), + [anon_sym_DASH] = ACTIONS(1963), + [anon_sym_PLUS] = ACTIONS(1963), + [anon_sym_STAR] = ACTIONS(3538), + [anon_sym_AMP_AMP] = ACTIONS(3538), + [anon_sym_AMP] = ACTIONS(3540), + [anon_sym_LT] = ACTIONS(3538), + [anon_sym_COLON_COLON] = ACTIONS(1969), + [anon_sym_LBRACE] = ACTIONS(3538), + [anon_sym_LBRACK] = ACTIONS(3538), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(1963), + [anon_sym_compl] = ACTIONS(1963), + [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1971), + [anon_sym_sizeof] = ACTIONS(1973), + [sym_number_literal] = ACTIONS(1721), + [anon_sym_L_SQUOTE] = ACTIONS(1723), + [anon_sym_u_SQUOTE] = ACTIONS(1723), + [anon_sym_U_SQUOTE] = ACTIONS(1723), + [anon_sym_u8_SQUOTE] = ACTIONS(1723), + [anon_sym_SQUOTE] = ACTIONS(1723), + [anon_sym_L_DQUOTE] = ACTIONS(1725), + [anon_sym_u_DQUOTE] = ACTIONS(1725), + [anon_sym_U_DQUOTE] = ACTIONS(1725), + [anon_sym_u8_DQUOTE] = ACTIONS(1725), + [anon_sym_DQUOTE] = ACTIONS(1725), + [sym_true] = ACTIONS(1727), + [sym_false] = ACTIONS(1727), + [sym_null] = ACTIONS(1727), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1975), + [anon_sym_co_await] = ACTIONS(1977), + [anon_sym_new] = ACTIONS(1979), + [anon_sym_requires] = ACTIONS(1735), + [sym_this] = ACTIONS(1727), + [sym_nullptr] = ACTIONS(1727), + [sym_raw_string_literal] = ACTIONS(1737), + }, + [1385] = { + [sym__expression] = STATE(3606), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3001), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3001), + [sym_call_expression] = STATE(3001), + [sym_field_expression] = STATE(3001), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3001), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_lambda_default_capture] = STATE(6661), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3001), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3085), + [anon_sym_LPAREN2] = ACTIONS(3087), + [anon_sym_BANG] = ACTIONS(3091), + [anon_sym_TILDE] = ACTIONS(3091), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(3532), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_RBRACK] = ACTIONS(3604), + [anon_sym_EQ] = ACTIONS(3536), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3089), + [anon_sym_compl] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3095), + [anon_sym_PLUS_PLUS] = ACTIONS(3095), + [anon_sym_sizeof] = ACTIONS(3097), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3099), + [anon_sym_co_await] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1386] = { + [sym__expression] = STATE(3677), + [sym_conditional_expression] = STATE(3865), + [sym_assignment_expression] = STATE(3865), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3865), + [sym_binary_expression] = STATE(3865), + [sym_update_expression] = STATE(3865), + [sym_cast_expression] = STATE(3865), + [sym_sizeof_expression] = STATE(3865), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3865), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3707), + [sym_concatenated_string] = STATE(3707), + [sym_string_literal] = STATE(3250), + [sym__class_name] = STATE(6539), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3865), + [sym_co_await_expression] = STATE(3865), + [sym_new_expression] = STATE(3865), + [sym_delete_expression] = STATE(3865), + [sym_requires_clause] = STATE(3865), + [sym_requires_expression] = STATE(3865), + [sym_lambda_expression] = STATE(3865), + [sym_lambda_capture_specifier] = STATE(4789), + [sym_fold_expression] = STATE(3865), + [sym_parameter_pack_expansion] = STATE(3865), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(6539), + [sym_user_defined_literal] = STATE(3865), + [sym_identifier] = ACTIONS(3105), + [anon_sym_LPAREN2] = ACTIONS(3538), + [anon_sym_BANG] = ACTIONS(2667), + [anon_sym_TILDE] = ACTIONS(2667), + [anon_sym_DASH] = ACTIONS(2669), + [anon_sym_PLUS] = ACTIONS(2669), + [anon_sym_STAR] = ACTIONS(3538), + [anon_sym_AMP_AMP] = ACTIONS(3538), + [anon_sym_AMP] = ACTIONS(3540), + [anon_sym_LT] = ACTIONS(3538), + [anon_sym_COLON_COLON] = ACTIONS(2673), + [anon_sym_LBRACE] = ACTIONS(3538), + [anon_sym_LBRACK] = ACTIONS(3538), + [sym_primitive_type] = ACTIONS(1933), + [anon_sym_not] = ACTIONS(2669), + [anon_sym_compl] = ACTIONS(2669), + [anon_sym_DASH_DASH] = ACTIONS(2687), + [anon_sym_PLUS_PLUS] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2689), + [sym_number_literal] = ACTIONS(2691), + [anon_sym_L_SQUOTE] = ACTIONS(2693), + [anon_sym_u_SQUOTE] = ACTIONS(2693), + [anon_sym_U_SQUOTE] = ACTIONS(2693), + [anon_sym_u8_SQUOTE] = ACTIONS(2693), + [anon_sym_SQUOTE] = ACTIONS(2693), + [anon_sym_L_DQUOTE] = ACTIONS(2695), + [anon_sym_u_DQUOTE] = ACTIONS(2695), + [anon_sym_U_DQUOTE] = ACTIONS(2695), + [anon_sym_u8_DQUOTE] = ACTIONS(2695), + [anon_sym_DQUOTE] = ACTIONS(2695), + [sym_true] = ACTIONS(2697), + [sym_false] = ACTIONS(2697), + [sym_null] = ACTIONS(2697), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(2707), + [anon_sym_co_await] = ACTIONS(2709), + [anon_sym_new] = ACTIONS(2711), + [anon_sym_requires] = ACTIONS(2713), + [sym_this] = ACTIONS(2697), + [sym_nullptr] = ACTIONS(2697), + [sym_raw_string_literal] = ACTIONS(2715), + }, + [1387] = { + [sym__expression] = STATE(3744), + [sym_comma_expression] = STATE(7123), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_RPAREN] = ACTIONS(3606), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1388] = { + [sym__expression] = STATE(3885), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_initializer_list] = STATE(7197), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1389] = { + [sym__expression] = STATE(2495), + [sym_conditional_expression] = STATE(2562), + [sym_assignment_expression] = STATE(2562), + [sym_pointer_expression] = STATE(2549), + [sym_unary_expression] = STATE(2562), + [sym_binary_expression] = STATE(2562), + [sym_update_expression] = STATE(2562), + [sym_cast_expression] = STATE(2562), + [sym_sizeof_expression] = STATE(2562), + [sym_subscript_expression] = STATE(2549), + [sym_call_expression] = STATE(2549), + [sym_field_expression] = STATE(2549), + [sym_compound_literal_expression] = STATE(2562), + [sym_parenthesized_expression] = STATE(2549), + [sym_initializer_list] = STATE(2500), + [sym_char_literal] = STATE(2344), + [sym_concatenated_string] = STATE(2344), + [sym_string_literal] = STATE(1824), + [sym__class_name] = STATE(6654), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2562), + [sym_co_await_expression] = STATE(2562), + [sym_new_expression] = STATE(2562), + [sym_delete_expression] = STATE(2562), + [sym_requires_clause] = STATE(2562), + [sym_requires_expression] = STATE(2562), + [sym_lambda_expression] = STATE(2562), + [sym_lambda_capture_specifier] = STATE(4787), + [sym_fold_expression] = STATE(2562), + [sym_parameter_pack_expansion] = STATE(2562), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2549), + [sym_qualified_type_identifier] = STATE(6654), + [sym_user_defined_literal] = STATE(2562), + [sym_identifier] = ACTIONS(1697), + [anon_sym_LPAREN2] = ACTIONS(1701), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1703), + [anon_sym_PLUS] = ACTIONS(1703), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1709), + [anon_sym_LBRACE] = ACTIONS(1711), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(1703), + [anon_sym_compl] = ACTIONS(1703), + [anon_sym_DASH_DASH] = ACTIONS(1717), + [anon_sym_PLUS_PLUS] = ACTIONS(1717), + [anon_sym_sizeof] = ACTIONS(1719), + [sym_number_literal] = ACTIONS(1721), + [anon_sym_L_SQUOTE] = ACTIONS(1723), + [anon_sym_u_SQUOTE] = ACTIONS(1723), + [anon_sym_U_SQUOTE] = ACTIONS(1723), + [anon_sym_u8_SQUOTE] = ACTIONS(1723), + [anon_sym_SQUOTE] = ACTIONS(1723), + [anon_sym_L_DQUOTE] = ACTIONS(1725), + [anon_sym_u_DQUOTE] = ACTIONS(1725), + [anon_sym_U_DQUOTE] = ACTIONS(1725), + [anon_sym_u8_DQUOTE] = ACTIONS(1725), + [anon_sym_DQUOTE] = ACTIONS(1725), + [sym_true] = ACTIONS(1727), + [sym_false] = ACTIONS(1727), + [sym_null] = ACTIONS(1727), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1729), + [anon_sym_co_await] = ACTIONS(1731), + [anon_sym_new] = ACTIONS(1733), + [anon_sym_requires] = ACTIONS(1735), + [sym_this] = ACTIONS(1727), + [sym_nullptr] = ACTIONS(1727), + [sym_raw_string_literal] = ACTIONS(1737), + }, + [1390] = { + [sym__expression] = STATE(3898), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3001), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3001), + [sym_call_expression] = STATE(3001), + [sym_field_expression] = STATE(3001), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3001), + [sym_initializer_list] = STATE(7031), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3001), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3085), + [anon_sym_LPAREN2] = ACTIONS(3087), + [anon_sym_BANG] = ACTIONS(3091), + [anon_sym_TILDE] = ACTIONS(3091), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3089), + [anon_sym_compl] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3095), + [anon_sym_PLUS_PLUS] = ACTIONS(3095), + [anon_sym_sizeof] = ACTIONS(3097), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3099), + [anon_sym_co_await] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1391] = { + [sym__expression] = STATE(3973), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_initializer_list] = STATE(7247), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1392] = { + [sym__expression] = STATE(3954), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_initializer_list] = STATE(7072), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1393] = { + [sym__expression] = STATE(3656), + [sym_comma_expression] = STATE(6883), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_RPAREN] = ACTIONS(3608), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1394] = { + [sym__expression] = STATE(3964), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_initializer_list] = STATE(6750), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1395] = { + [sym__expression] = STATE(2548), + [sym_conditional_expression] = STATE(2562), + [sym_assignment_expression] = STATE(2562), + [sym_pointer_expression] = STATE(2549), + [sym_unary_expression] = STATE(2562), + [sym_binary_expression] = STATE(2562), + [sym_update_expression] = STATE(2562), + [sym_cast_expression] = STATE(2562), + [sym_sizeof_expression] = STATE(2562), + [sym_subscript_expression] = STATE(2549), + [sym_call_expression] = STATE(2549), + [sym_field_expression] = STATE(2549), + [sym_compound_literal_expression] = STATE(2562), + [sym_parenthesized_expression] = STATE(2549), + [sym_char_literal] = STATE(2344), + [sym_concatenated_string] = STATE(2344), + [sym_string_literal] = STATE(1824), + [sym__class_name] = STATE(6654), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2562), + [sym_co_await_expression] = STATE(2562), + [sym_new_expression] = STATE(2562), + [sym_delete_expression] = STATE(2562), + [sym_requires_clause] = STATE(2562), + [sym_requires_expression] = STATE(2562), + [sym_lambda_expression] = STATE(2562), + [sym_lambda_capture_specifier] = STATE(4787), + [sym_fold_expression] = STATE(2562), + [sym_parameter_pack_expansion] = STATE(2562), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2549), + [sym_qualified_type_identifier] = STATE(6654), + [sym_user_defined_literal] = STATE(2562), + [sym_identifier] = ACTIONS(1697), + [anon_sym_COMMA] = ACTIONS(3610), + [anon_sym_LPAREN2] = ACTIONS(1701), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1703), + [anon_sym_PLUS] = ACTIONS(1703), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_RBRACK] = ACTIONS(3610), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(1703), + [anon_sym_compl] = ACTIONS(1703), + [anon_sym_DASH_DASH] = ACTIONS(1717), + [anon_sym_PLUS_PLUS] = ACTIONS(1717), + [anon_sym_sizeof] = ACTIONS(1719), + [sym_number_literal] = ACTIONS(1721), + [anon_sym_L_SQUOTE] = ACTIONS(1723), + [anon_sym_u_SQUOTE] = ACTIONS(1723), + [anon_sym_U_SQUOTE] = ACTIONS(1723), + [anon_sym_u8_SQUOTE] = ACTIONS(1723), + [anon_sym_SQUOTE] = ACTIONS(1723), + [anon_sym_L_DQUOTE] = ACTIONS(1725), + [anon_sym_u_DQUOTE] = ACTIONS(1725), + [anon_sym_U_DQUOTE] = ACTIONS(1725), + [anon_sym_u8_DQUOTE] = ACTIONS(1725), + [anon_sym_DQUOTE] = ACTIONS(1725), + [sym_true] = ACTIONS(1727), + [sym_false] = ACTIONS(1727), + [sym_null] = ACTIONS(1727), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1729), + [anon_sym_co_await] = ACTIONS(1731), + [anon_sym_new] = ACTIONS(1733), + [anon_sym_requires] = ACTIONS(1735), + [sym_this] = ACTIONS(1727), + [sym_nullptr] = ACTIONS(1727), + [sym_raw_string_literal] = ACTIONS(1737), + }, + [1396] = { + [sym__expression] = STATE(3592), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_initializer_list] = STATE(6709), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1397] = { + [sym_identifier] = ACTIONS(3473), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3475), + [anon_sym_COMMA] = ACTIONS(3475), + [anon_sym_RPAREN] = ACTIONS(3475), + [anon_sym_LPAREN2] = ACTIONS(3475), + [anon_sym_TILDE] = ACTIONS(3478), + [anon_sym_DASH] = ACTIONS(3480), + [anon_sym_PLUS] = ACTIONS(3480), + [anon_sym_STAR] = ACTIONS(3482), + [anon_sym_SLASH] = ACTIONS(3480), + [anon_sym_PERCENT] = ACTIONS(3480), + [anon_sym_PIPE_PIPE] = ACTIONS(3485), + [anon_sym_AMP_AMP] = ACTIONS(3475), + [anon_sym_PIPE] = ACTIONS(3480), + [anon_sym_CARET] = ACTIONS(3480), + [anon_sym_AMP] = ACTIONS(3482), + [anon_sym_EQ_EQ] = ACTIONS(3485), + [anon_sym_BANG_EQ] = ACTIONS(3485), + [anon_sym_GT] = ACTIONS(3480), + [anon_sym_GT_EQ] = ACTIONS(3485), + [anon_sym_LT_EQ] = ACTIONS(3480), + [anon_sym_LT] = ACTIONS(3480), + [anon_sym_LT_LT] = ACTIONS(3480), + [anon_sym_GT_GT] = ACTIONS(3480), + [anon_sym_extern] = ACTIONS(3473), + [anon_sym___attribute__] = ACTIONS(3473), + [anon_sym_COLON_COLON] = ACTIONS(3478), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3478), + [anon_sym___declspec] = ACTIONS(3473), + [anon_sym___based] = ACTIONS(3473), + [anon_sym_LBRACE] = ACTIONS(3478), + [anon_sym_LBRACK] = ACTIONS(3482), + [anon_sym_EQ] = ACTIONS(3482), + [anon_sym_static] = ACTIONS(3473), + [anon_sym_register] = ACTIONS(3473), + [anon_sym_inline] = ACTIONS(3473), + [anon_sym_thread_local] = ACTIONS(3473), + [anon_sym_const] = ACTIONS(3473), + [anon_sym_volatile] = ACTIONS(3473), + [anon_sym_restrict] = ACTIONS(3473), + [anon_sym__Atomic] = ACTIONS(3473), + [anon_sym_mutable] = ACTIONS(3473), + [anon_sym_constexpr] = ACTIONS(3473), + [anon_sym_constinit] = ACTIONS(3473), + [anon_sym_consteval] = ACTIONS(3473), + [anon_sym_QMARK] = ACTIONS(3485), + [anon_sym_STAR_EQ] = ACTIONS(3485), + [anon_sym_SLASH_EQ] = ACTIONS(3485), + [anon_sym_PERCENT_EQ] = ACTIONS(3485), + [anon_sym_PLUS_EQ] = ACTIONS(3485), + [anon_sym_DASH_EQ] = ACTIONS(3485), + [anon_sym_LT_LT_EQ] = ACTIONS(3485), + [anon_sym_GT_GT_EQ] = ACTIONS(3485), + [anon_sym_AMP_EQ] = ACTIONS(3485), + [anon_sym_CARET_EQ] = ACTIONS(3485), + [anon_sym_PIPE_EQ] = ACTIONS(3485), + [anon_sym_LT_EQ_GT] = ACTIONS(3485), + [anon_sym_or] = ACTIONS(3480), + [anon_sym_and] = ACTIONS(3480), + [anon_sym_bitor] = ACTIONS(3480), + [anon_sym_xor] = ACTIONS(3480), + [anon_sym_bitand] = ACTIONS(3480), + [anon_sym_not_eq] = ACTIONS(3480), + [anon_sym_DASH_DASH] = ACTIONS(3485), + [anon_sym_PLUS_PLUS] = ACTIONS(3485), + [anon_sym_DOT] = ACTIONS(3480), + [anon_sym_DASH_GT] = ACTIONS(3480), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3473), + [anon_sym_decltype] = ACTIONS(3473), + [anon_sym_virtual] = ACTIONS(3473), + [anon_sym_template] = ACTIONS(3473), + [anon_sym_operator] = ACTIONS(3473), + [anon_sym_DOT_STAR] = ACTIONS(3485), + [anon_sym_DASH_GT_STAR] = ACTIONS(3485), + }, + [1398] = { + [sym__expression] = STATE(3641), + [sym_comma_expression] = STATE(7244), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_RPAREN] = ACTIONS(3612), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1399] = { + [sym__expression] = STATE(3930), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_initializer_list] = STATE(6869), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1400] = { + [sym_identifier] = ACTIONS(3467), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3469), + [anon_sym_COMMA] = ACTIONS(3469), + [anon_sym_RPAREN] = ACTIONS(3469), + [anon_sym_LPAREN2] = ACTIONS(3469), + [anon_sym_TILDE] = ACTIONS(3469), + [anon_sym_DASH] = ACTIONS(3467), + [anon_sym_PLUS] = ACTIONS(3467), + [anon_sym_STAR] = ACTIONS(3467), + [anon_sym_SLASH] = ACTIONS(3467), + [anon_sym_PERCENT] = ACTIONS(3467), + [anon_sym_PIPE_PIPE] = ACTIONS(3469), + [anon_sym_AMP_AMP] = ACTIONS(3469), + [anon_sym_PIPE] = ACTIONS(3467), + [anon_sym_CARET] = ACTIONS(3467), + [anon_sym_AMP] = ACTIONS(3467), + [anon_sym_EQ_EQ] = ACTIONS(3469), + [anon_sym_BANG_EQ] = ACTIONS(3469), + [anon_sym_GT] = ACTIONS(3467), + [anon_sym_GT_EQ] = ACTIONS(3469), + [anon_sym_LT_EQ] = ACTIONS(3467), + [anon_sym_LT] = ACTIONS(3467), + [anon_sym_LT_LT] = ACTIONS(3467), + [anon_sym_GT_GT] = ACTIONS(3467), + [anon_sym_extern] = ACTIONS(3467), + [anon_sym___attribute__] = ACTIONS(3467), + [anon_sym_COLON_COLON] = ACTIONS(3469), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3469), + [anon_sym___declspec] = ACTIONS(3467), + [anon_sym___based] = ACTIONS(3467), + [anon_sym_LBRACE] = ACTIONS(3469), + [anon_sym_LBRACK] = ACTIONS(3467), + [anon_sym_EQ] = ACTIONS(3467), + [anon_sym_static] = ACTIONS(3467), + [anon_sym_register] = ACTIONS(3467), + [anon_sym_inline] = ACTIONS(3467), + [anon_sym_thread_local] = ACTIONS(3467), + [anon_sym_const] = ACTIONS(3467), + [anon_sym_volatile] = ACTIONS(3467), + [anon_sym_restrict] = ACTIONS(3467), + [anon_sym__Atomic] = ACTIONS(3467), + [anon_sym_mutable] = ACTIONS(3467), + [anon_sym_constexpr] = ACTIONS(3467), + [anon_sym_constinit] = ACTIONS(3467), + [anon_sym_consteval] = ACTIONS(3467), + [anon_sym_QMARK] = ACTIONS(3469), + [anon_sym_STAR_EQ] = ACTIONS(3469), + [anon_sym_SLASH_EQ] = ACTIONS(3469), + [anon_sym_PERCENT_EQ] = ACTIONS(3469), + [anon_sym_PLUS_EQ] = ACTIONS(3469), + [anon_sym_DASH_EQ] = ACTIONS(3469), + [anon_sym_LT_LT_EQ] = ACTIONS(3469), + [anon_sym_GT_GT_EQ] = ACTIONS(3469), + [anon_sym_AMP_EQ] = ACTIONS(3469), + [anon_sym_CARET_EQ] = ACTIONS(3469), + [anon_sym_PIPE_EQ] = ACTIONS(3469), + [anon_sym_LT_EQ_GT] = ACTIONS(3469), + [anon_sym_or] = ACTIONS(3467), + [anon_sym_and] = ACTIONS(3467), + [anon_sym_bitor] = ACTIONS(3467), + [anon_sym_xor] = ACTIONS(3467), + [anon_sym_bitand] = ACTIONS(3467), + [anon_sym_not_eq] = ACTIONS(3467), + [anon_sym_DASH_DASH] = ACTIONS(3469), + [anon_sym_PLUS_PLUS] = ACTIONS(3469), + [anon_sym_DOT] = ACTIONS(3467), + [anon_sym_DASH_GT] = ACTIONS(3467), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3467), + [anon_sym_decltype] = ACTIONS(3467), + [anon_sym_virtual] = ACTIONS(3467), + [anon_sym_template] = ACTIONS(3467), + [anon_sym_operator] = ACTIONS(3467), + [anon_sym_DOT_STAR] = ACTIONS(3469), + [anon_sym_DASH_GT_STAR] = ACTIONS(3469), + }, + [1401] = { + [sym_identifier] = ACTIONS(3501), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3503), + [anon_sym_COMMA] = ACTIONS(3503), + [anon_sym_RPAREN] = ACTIONS(3503), + [anon_sym_LPAREN2] = ACTIONS(3503), + [anon_sym_TILDE] = ACTIONS(3503), + [anon_sym_DASH] = ACTIONS(3501), + [anon_sym_PLUS] = ACTIONS(3501), + [anon_sym_STAR] = ACTIONS(3501), + [anon_sym_SLASH] = ACTIONS(3501), + [anon_sym_PERCENT] = ACTIONS(3501), + [anon_sym_PIPE_PIPE] = ACTIONS(3503), + [anon_sym_AMP_AMP] = ACTIONS(3503), + [anon_sym_PIPE] = ACTIONS(3501), + [anon_sym_CARET] = ACTIONS(3501), + [anon_sym_AMP] = ACTIONS(3501), + [anon_sym_EQ_EQ] = ACTIONS(3503), + [anon_sym_BANG_EQ] = ACTIONS(3503), + [anon_sym_GT] = ACTIONS(3501), + [anon_sym_GT_EQ] = ACTIONS(3503), + [anon_sym_LT_EQ] = ACTIONS(3501), + [anon_sym_LT] = ACTIONS(3501), + [anon_sym_LT_LT] = ACTIONS(3501), + [anon_sym_GT_GT] = ACTIONS(3501), + [anon_sym_extern] = ACTIONS(3501), + [anon_sym___attribute__] = ACTIONS(3501), + [anon_sym_COLON_COLON] = ACTIONS(3503), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3503), + [anon_sym___declspec] = ACTIONS(3501), + [anon_sym___based] = ACTIONS(3501), + [anon_sym_LBRACE] = ACTIONS(3503), + [anon_sym_LBRACK] = ACTIONS(3501), + [anon_sym_EQ] = ACTIONS(3501), + [anon_sym_static] = ACTIONS(3501), + [anon_sym_register] = ACTIONS(3501), + [anon_sym_inline] = ACTIONS(3501), + [anon_sym_thread_local] = ACTIONS(3501), + [anon_sym_const] = ACTIONS(3501), + [anon_sym_volatile] = ACTIONS(3501), + [anon_sym_restrict] = ACTIONS(3501), + [anon_sym__Atomic] = ACTIONS(3501), + [anon_sym_mutable] = ACTIONS(3501), + [anon_sym_constexpr] = ACTIONS(3501), + [anon_sym_constinit] = ACTIONS(3501), + [anon_sym_consteval] = ACTIONS(3501), + [anon_sym_QMARK] = ACTIONS(3503), + [anon_sym_STAR_EQ] = ACTIONS(3503), + [anon_sym_SLASH_EQ] = ACTIONS(3503), + [anon_sym_PERCENT_EQ] = ACTIONS(3503), + [anon_sym_PLUS_EQ] = ACTIONS(3503), + [anon_sym_DASH_EQ] = ACTIONS(3503), + [anon_sym_LT_LT_EQ] = ACTIONS(3503), + [anon_sym_GT_GT_EQ] = ACTIONS(3503), + [anon_sym_AMP_EQ] = ACTIONS(3503), + [anon_sym_CARET_EQ] = ACTIONS(3503), + [anon_sym_PIPE_EQ] = ACTIONS(3503), + [anon_sym_LT_EQ_GT] = ACTIONS(3503), + [anon_sym_or] = ACTIONS(3501), + [anon_sym_and] = ACTIONS(3501), + [anon_sym_bitor] = ACTIONS(3501), + [anon_sym_xor] = ACTIONS(3501), + [anon_sym_bitand] = ACTIONS(3501), + [anon_sym_not_eq] = ACTIONS(3501), + [anon_sym_DASH_DASH] = ACTIONS(3503), + [anon_sym_PLUS_PLUS] = ACTIONS(3503), + [anon_sym_DOT] = ACTIONS(3501), + [anon_sym_DASH_GT] = ACTIONS(3501), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3501), + [anon_sym_decltype] = ACTIONS(3501), + [anon_sym_virtual] = ACTIONS(3501), + [anon_sym_template] = ACTIONS(3501), + [anon_sym_operator] = ACTIONS(3501), + [anon_sym_DOT_STAR] = ACTIONS(3503), + [anon_sym_DASH_GT_STAR] = ACTIONS(3503), + }, + [1402] = { + [sym_identifier] = ACTIONS(3505), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3507), + [anon_sym_COMMA] = ACTIONS(3507), + [anon_sym_RPAREN] = ACTIONS(3507), + [anon_sym_LPAREN2] = ACTIONS(3507), + [anon_sym_TILDE] = ACTIONS(3507), + [anon_sym_DASH] = ACTIONS(3505), + [anon_sym_PLUS] = ACTIONS(3505), + [anon_sym_STAR] = ACTIONS(3505), + [anon_sym_SLASH] = ACTIONS(3505), + [anon_sym_PERCENT] = ACTIONS(3505), + [anon_sym_PIPE_PIPE] = ACTIONS(3507), + [anon_sym_AMP_AMP] = ACTIONS(3507), + [anon_sym_PIPE] = ACTIONS(3505), + [anon_sym_CARET] = ACTIONS(3505), + [anon_sym_AMP] = ACTIONS(3505), + [anon_sym_EQ_EQ] = ACTIONS(3507), + [anon_sym_BANG_EQ] = ACTIONS(3507), + [anon_sym_GT] = ACTIONS(3505), + [anon_sym_GT_EQ] = ACTIONS(3507), + [anon_sym_LT_EQ] = ACTIONS(3505), + [anon_sym_LT] = ACTIONS(3505), + [anon_sym_LT_LT] = ACTIONS(3505), + [anon_sym_GT_GT] = ACTIONS(3505), + [anon_sym_extern] = ACTIONS(3505), + [anon_sym___attribute__] = ACTIONS(3505), + [anon_sym_COLON_COLON] = ACTIONS(3507), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3507), + [anon_sym___declspec] = ACTIONS(3505), + [anon_sym___based] = ACTIONS(3505), + [anon_sym_LBRACE] = ACTIONS(3507), + [anon_sym_LBRACK] = ACTIONS(3505), + [anon_sym_EQ] = ACTIONS(3505), + [anon_sym_static] = ACTIONS(3505), + [anon_sym_register] = ACTIONS(3505), + [anon_sym_inline] = ACTIONS(3505), + [anon_sym_thread_local] = ACTIONS(3505), + [anon_sym_const] = ACTIONS(3505), + [anon_sym_volatile] = ACTIONS(3505), + [anon_sym_restrict] = ACTIONS(3505), + [anon_sym__Atomic] = ACTIONS(3505), + [anon_sym_mutable] = ACTIONS(3505), + [anon_sym_constexpr] = ACTIONS(3505), + [anon_sym_constinit] = ACTIONS(3505), + [anon_sym_consteval] = ACTIONS(3505), + [anon_sym_QMARK] = ACTIONS(3507), + [anon_sym_STAR_EQ] = ACTIONS(3507), + [anon_sym_SLASH_EQ] = ACTIONS(3507), + [anon_sym_PERCENT_EQ] = ACTIONS(3507), + [anon_sym_PLUS_EQ] = ACTIONS(3507), + [anon_sym_DASH_EQ] = ACTIONS(3507), + [anon_sym_LT_LT_EQ] = ACTIONS(3507), + [anon_sym_GT_GT_EQ] = ACTIONS(3507), + [anon_sym_AMP_EQ] = ACTIONS(3507), + [anon_sym_CARET_EQ] = ACTIONS(3507), + [anon_sym_PIPE_EQ] = ACTIONS(3507), + [anon_sym_LT_EQ_GT] = ACTIONS(3507), + [anon_sym_or] = ACTIONS(3505), + [anon_sym_and] = ACTIONS(3505), + [anon_sym_bitor] = ACTIONS(3505), + [anon_sym_xor] = ACTIONS(3505), + [anon_sym_bitand] = ACTIONS(3505), + [anon_sym_not_eq] = ACTIONS(3505), + [anon_sym_DASH_DASH] = ACTIONS(3507), + [anon_sym_PLUS_PLUS] = ACTIONS(3507), + [anon_sym_DOT] = ACTIONS(3505), + [anon_sym_DASH_GT] = ACTIONS(3505), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3505), + [anon_sym_decltype] = ACTIONS(3505), + [anon_sym_virtual] = ACTIONS(3505), + [anon_sym_template] = ACTIONS(3505), + [anon_sym_operator] = ACTIONS(3505), + [anon_sym_DOT_STAR] = ACTIONS(3507), + [anon_sym_DASH_GT_STAR] = ACTIONS(3507), + }, + [1403] = { + [sym__expression] = STATE(3659), + [sym_comma_expression] = STATE(6885), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_RPAREN] = ACTIONS(3614), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1404] = { + [sym__expression] = STATE(3686), + [sym_comma_expression] = STATE(6889), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_RPAREN] = ACTIONS(3616), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1405] = { + [sym__expression] = STATE(3697), + [sym_comma_expression] = STATE(7243), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_RPAREN] = ACTIONS(3618), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1406] = { + [sym__expression] = STATE(3698), + [sym_comma_expression] = STATE(6894), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_RPAREN] = ACTIONS(3620), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1407] = { + [sym__expression] = STATE(3881), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3001), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3001), + [sym_call_expression] = STATE(3001), + [sym_field_expression] = STATE(3001), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3001), + [sym_initializer_list] = STATE(7297), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3001), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3085), + [anon_sym_LPAREN2] = ACTIONS(3087), + [anon_sym_BANG] = ACTIONS(3091), + [anon_sym_TILDE] = ACTIONS(3091), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3089), + [anon_sym_compl] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3095), + [anon_sym_PLUS_PLUS] = ACTIONS(3095), + [anon_sym_sizeof] = ACTIONS(3097), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3099), + [anon_sym_co_await] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1408] = { + [sym__expression] = STATE(3810), + [sym_comma_expression] = STATE(6804), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_RPAREN] = ACTIONS(3622), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1409] = { + [sym__expression] = STATE(3690), + [sym_comma_expression] = STATE(6786), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_RPAREN] = ACTIONS(3624), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1410] = { + [sym__expression] = STATE(2926), + [sym_conditional_expression] = STATE(2999), + [sym_assignment_expression] = STATE(2999), + [sym_pointer_expression] = STATE(2973), + [sym_unary_expression] = STATE(2999), + [sym_binary_expression] = STATE(2999), + [sym_update_expression] = STATE(2999), + [sym_cast_expression] = STATE(2999), + [sym_sizeof_expression] = STATE(2999), + [sym_subscript_expression] = STATE(2973), + [sym_call_expression] = STATE(2973), + [sym_field_expression] = STATE(2973), + [sym_compound_literal_expression] = STATE(2999), + [sym_parenthesized_expression] = STATE(2973), + [sym_initializer_list] = STATE(3003), + [sym_char_literal] = STATE(2933), + [sym_concatenated_string] = STATE(2933), + [sym_string_literal] = STATE(1927), + [sym__class_name] = STATE(6445), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2999), + [sym_co_await_expression] = STATE(2999), + [sym_new_expression] = STATE(2999), + [sym_delete_expression] = STATE(2999), + [sym_requires_clause] = STATE(2999), + [sym_requires_expression] = STATE(2999), + [sym_lambda_expression] = STATE(2999), + [sym_lambda_capture_specifier] = STATE(4767), + [sym_fold_expression] = STATE(2999), + [sym_parameter_pack_expansion] = STATE(2999), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2973), + [sym_qualified_type_identifier] = STATE(6445), + [sym_user_defined_literal] = STATE(2999), + [sym_identifier] = ACTIONS(1919), + [anon_sym_LPAREN2] = ACTIONS(1921), + [anon_sym_BANG] = ACTIONS(1925), + [anon_sym_TILDE] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1923), + [anon_sym_PLUS] = ACTIONS(1923), + [anon_sym_STAR] = ACTIONS(2671), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_COLON_COLON] = ACTIONS(1929), + [anon_sym_LBRACE] = ACTIONS(1931), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1933), + [anon_sym_not] = ACTIONS(1923), + [anon_sym_compl] = ACTIONS(1923), + [anon_sym_DASH_DASH] = ACTIONS(1935), + [anon_sym_PLUS_PLUS] = ACTIONS(1935), + [anon_sym_sizeof] = ACTIONS(1937), + [sym_number_literal] = ACTIONS(1939), + [anon_sym_L_SQUOTE] = ACTIONS(1941), + [anon_sym_u_SQUOTE] = ACTIONS(1941), + [anon_sym_U_SQUOTE] = ACTIONS(1941), + [anon_sym_u8_SQUOTE] = ACTIONS(1941), + [anon_sym_SQUOTE] = ACTIONS(1941), + [anon_sym_L_DQUOTE] = ACTIONS(1943), + [anon_sym_u_DQUOTE] = ACTIONS(1943), + [anon_sym_U_DQUOTE] = ACTIONS(1943), + [anon_sym_u8_DQUOTE] = ACTIONS(1943), + [anon_sym_DQUOTE] = ACTIONS(1943), + [sym_true] = ACTIONS(1945), + [sym_false] = ACTIONS(1945), + [sym_null] = ACTIONS(1945), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1947), + [anon_sym_co_await] = ACTIONS(1949), + [anon_sym_new] = ACTIONS(1951), + [anon_sym_requires] = ACTIONS(1953), + [sym_this] = ACTIONS(1945), + [sym_nullptr] = ACTIONS(1945), + [sym_raw_string_literal] = ACTIONS(1955), + }, + [1411] = { + [sym__expression] = STATE(3857), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_initializer_list] = STATE(6787), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1412] = { + [sym__expression] = STATE(2636), + [sym_conditional_expression] = STATE(2821), + [sym_assignment_expression] = STATE(2821), + [sym_pointer_expression] = STATE(2805), + [sym_unary_expression] = STATE(2821), + [sym_binary_expression] = STATE(2821), + [sym_update_expression] = STATE(2821), + [sym_cast_expression] = STATE(2821), + [sym_sizeof_expression] = STATE(2821), + [sym_subscript_expression] = STATE(2805), + [sym_call_expression] = STATE(2805), + [sym_field_expression] = STATE(2805), + [sym_compound_literal_expression] = STATE(2821), + [sym_parenthesized_expression] = STATE(2805), + [sym_initializer_list] = STATE(2766), + [sym_char_literal] = STATE(2577), + [sym_concatenated_string] = STATE(2577), + [sym_string_literal] = STATE(1861), + [sym__class_name] = STATE(6652), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2821), + [sym_co_await_expression] = STATE(2821), + [sym_new_expression] = STATE(2821), + [sym_delete_expression] = STATE(2821), + [sym_requires_clause] = STATE(2821), + [sym_requires_expression] = STATE(2821), + [sym_lambda_expression] = STATE(2821), + [sym_lambda_capture_specifier] = STATE(4790), + [sym_fold_expression] = STATE(2821), + [sym_parameter_pack_expansion] = STATE(2821), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4904), + [sym_qualified_identifier] = STATE(2805), + [sym_qualified_type_identifier] = STATE(6652), + [sym_user_defined_literal] = STATE(2821), + [sym_identifier] = ACTIONS(1739), + [anon_sym_LPAREN2] = ACTIONS(1741), + [anon_sym_BANG] = ACTIONS(1745), + [anon_sym_TILDE] = ACTIONS(1745), + [anon_sym_DASH] = ACTIONS(1743), + [anon_sym_PLUS] = ACTIONS(1743), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1749), + [anon_sym_LBRACE] = ACTIONS(1751), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1753), + [anon_sym_not] = ACTIONS(1743), + [anon_sym_compl] = ACTIONS(1743), + [anon_sym_DASH_DASH] = ACTIONS(1755), + [anon_sym_PLUS_PLUS] = ACTIONS(1755), + [anon_sym_sizeof] = ACTIONS(1757), + [sym_number_literal] = ACTIONS(1759), + [anon_sym_L_SQUOTE] = ACTIONS(1761), + [anon_sym_u_SQUOTE] = ACTIONS(1761), + [anon_sym_U_SQUOTE] = ACTIONS(1761), + [anon_sym_u8_SQUOTE] = ACTIONS(1761), + [anon_sym_SQUOTE] = ACTIONS(1761), + [anon_sym_L_DQUOTE] = ACTIONS(1763), + [anon_sym_u_DQUOTE] = ACTIONS(1763), + [anon_sym_U_DQUOTE] = ACTIONS(1763), + [anon_sym_u8_DQUOTE] = ACTIONS(1763), + [anon_sym_DQUOTE] = ACTIONS(1763), + [sym_true] = ACTIONS(1765), + [sym_false] = ACTIONS(1765), + [sym_null] = ACTIONS(1765), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1767), + [anon_sym_co_await] = ACTIONS(1769), + [anon_sym_new] = ACTIONS(1771), + [anon_sym_requires] = ACTIONS(1773), + [sym_this] = ACTIONS(1765), + [sym_nullptr] = ACTIONS(1765), + [sym_raw_string_literal] = ACTIONS(1775), + }, + [1413] = { + [sym__expression] = STATE(3935), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_initializer_list] = STATE(6881), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1414] = { + [sym__expression] = STATE(3804), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_initializer_list] = STATE(6594), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1415] = { + [sym__expression] = STATE(3757), + [sym_comma_expression] = STATE(6788), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_RPAREN] = ACTIONS(3626), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1416] = { + [sym__expression] = STATE(3631), + [sym_comma_expression] = STATE(6442), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3628), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1417] = { + [sym__expression] = STATE(3812), + [sym_comma_expression] = STATE(7178), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_RPAREN] = ACTIONS(3631), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1418] = { + [sym__expression] = STATE(3808), + [sym_comma_expression] = STATE(7230), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_RPAREN] = ACTIONS(3633), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1419] = { + [sym__expression] = STATE(3792), + [sym_comma_expression] = STATE(7212), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_RPAREN] = ACTIONS(3635), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1420] = { + [sym__expression] = STATE(3818), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3121), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3121), + [sym_call_expression] = STATE(3121), + [sym_field_expression] = STATE(3121), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3121), + [sym_initializer_list] = STATE(3506), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3121), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3109), + [anon_sym_LPAREN2] = ACTIONS(3111), + [anon_sym_BANG] = ACTIONS(3115), + [anon_sym_TILDE] = ACTIONS(3115), + [anon_sym_DASH] = ACTIONS(3113), + [anon_sym_PLUS] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(3117), + [anon_sym_AMP] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(3119), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3113), + [anon_sym_compl] = ACTIONS(3113), + [anon_sym_DASH_DASH] = ACTIONS(3121), + [anon_sym_PLUS_PLUS] = ACTIONS(3121), + [anon_sym_sizeof] = ACTIONS(3123), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3125), + [anon_sym_co_await] = ACTIONS(3127), + [anon_sym_new] = ACTIONS(3129), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1421] = { + [sym__expression] = STATE(3831), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_initializer_list] = STATE(6987), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1422] = { + [sym__expression] = STATE(3751), + [sym_comma_expression] = STATE(7198), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_RPAREN] = ACTIONS(3637), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1423] = { + [sym__expression] = STATE(3670), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_initializer_list] = STATE(6659), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1424] = { + [sym_identifier] = ACTIONS(3509), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3511), + [anon_sym_COMMA] = ACTIONS(3511), + [anon_sym_RPAREN] = ACTIONS(3511), + [anon_sym_LPAREN2] = ACTIONS(3511), + [anon_sym_TILDE] = ACTIONS(3511), + [anon_sym_DASH] = ACTIONS(3509), + [anon_sym_PLUS] = ACTIONS(3509), + [anon_sym_STAR] = ACTIONS(3509), + [anon_sym_SLASH] = ACTIONS(3509), + [anon_sym_PERCENT] = ACTIONS(3509), + [anon_sym_PIPE_PIPE] = ACTIONS(3511), + [anon_sym_AMP_AMP] = ACTIONS(3511), + [anon_sym_PIPE] = ACTIONS(3509), + [anon_sym_CARET] = ACTIONS(3509), + [anon_sym_AMP] = ACTIONS(3509), + [anon_sym_EQ_EQ] = ACTIONS(3511), + [anon_sym_BANG_EQ] = ACTIONS(3511), + [anon_sym_GT] = ACTIONS(3509), + [anon_sym_GT_EQ] = ACTIONS(3511), + [anon_sym_LT_EQ] = ACTIONS(3509), + [anon_sym_LT] = ACTIONS(3509), + [anon_sym_LT_LT] = ACTIONS(3509), + [anon_sym_GT_GT] = ACTIONS(3509), + [anon_sym_extern] = ACTIONS(3509), + [anon_sym___attribute__] = ACTIONS(3509), + [anon_sym_COLON_COLON] = ACTIONS(3511), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3511), + [anon_sym___declspec] = ACTIONS(3509), + [anon_sym___based] = ACTIONS(3509), + [anon_sym_LBRACE] = ACTIONS(3511), + [anon_sym_LBRACK] = ACTIONS(3509), + [anon_sym_EQ] = ACTIONS(3509), + [anon_sym_static] = ACTIONS(3509), + [anon_sym_register] = ACTIONS(3509), + [anon_sym_inline] = ACTIONS(3509), + [anon_sym_thread_local] = ACTIONS(3509), + [anon_sym_const] = ACTIONS(3509), + [anon_sym_volatile] = ACTIONS(3509), + [anon_sym_restrict] = ACTIONS(3509), + [anon_sym__Atomic] = ACTIONS(3509), + [anon_sym_mutable] = ACTIONS(3509), + [anon_sym_constexpr] = ACTIONS(3509), + [anon_sym_constinit] = ACTIONS(3509), + [anon_sym_consteval] = ACTIONS(3509), + [anon_sym_QMARK] = ACTIONS(3511), + [anon_sym_STAR_EQ] = ACTIONS(3511), + [anon_sym_SLASH_EQ] = ACTIONS(3511), + [anon_sym_PERCENT_EQ] = ACTIONS(3511), + [anon_sym_PLUS_EQ] = ACTIONS(3511), + [anon_sym_DASH_EQ] = ACTIONS(3511), + [anon_sym_LT_LT_EQ] = ACTIONS(3511), + [anon_sym_GT_GT_EQ] = ACTIONS(3511), + [anon_sym_AMP_EQ] = ACTIONS(3511), + [anon_sym_CARET_EQ] = ACTIONS(3511), + [anon_sym_PIPE_EQ] = ACTIONS(3511), + [anon_sym_LT_EQ_GT] = ACTIONS(3511), + [anon_sym_or] = ACTIONS(3509), + [anon_sym_and] = ACTIONS(3509), + [anon_sym_bitor] = ACTIONS(3509), + [anon_sym_xor] = ACTIONS(3509), + [anon_sym_bitand] = ACTIONS(3509), + [anon_sym_not_eq] = ACTIONS(3509), + [anon_sym_DASH_DASH] = ACTIONS(3511), + [anon_sym_PLUS_PLUS] = ACTIONS(3511), + [anon_sym_DOT] = ACTIONS(3509), + [anon_sym_DASH_GT] = ACTIONS(3509), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3509), + [anon_sym_decltype] = ACTIONS(3509), + [anon_sym_virtual] = ACTIONS(3509), + [anon_sym_template] = ACTIONS(3509), + [anon_sym_operator] = ACTIONS(3509), + [anon_sym_DOT_STAR] = ACTIONS(3511), + [anon_sym_DASH_GT_STAR] = ACTIONS(3511), + }, + [1425] = { + [sym__expression] = STATE(3654), + [sym_comma_expression] = STATE(6874), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_RPAREN] = ACTIONS(3639), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1426] = { + [sym__expression] = STATE(3957), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_initializer_list] = STATE(6800), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1427] = { + [sym__expression] = STATE(3692), + [sym_comma_expression] = STATE(6798), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_RPAREN] = ACTIONS(3641), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1428] = { + [sym_identifier] = ACTIONS(3497), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3499), + [anon_sym_COMMA] = ACTIONS(3499), + [anon_sym_RPAREN] = ACTIONS(3499), + [anon_sym_LPAREN2] = ACTIONS(3499), + [anon_sym_TILDE] = ACTIONS(3499), + [anon_sym_DASH] = ACTIONS(3497), + [anon_sym_PLUS] = ACTIONS(3497), + [anon_sym_STAR] = ACTIONS(3497), + [anon_sym_SLASH] = ACTIONS(3497), + [anon_sym_PERCENT] = ACTIONS(3497), + [anon_sym_PIPE_PIPE] = ACTIONS(3499), + [anon_sym_AMP_AMP] = ACTIONS(3499), + [anon_sym_PIPE] = ACTIONS(3497), + [anon_sym_CARET] = ACTIONS(3497), + [anon_sym_AMP] = ACTIONS(3497), + [anon_sym_EQ_EQ] = ACTIONS(3499), + [anon_sym_BANG_EQ] = ACTIONS(3499), + [anon_sym_GT] = ACTIONS(3497), + [anon_sym_GT_EQ] = ACTIONS(3499), + [anon_sym_LT_EQ] = ACTIONS(3497), + [anon_sym_LT] = ACTIONS(3497), + [anon_sym_LT_LT] = ACTIONS(3497), + [anon_sym_GT_GT] = ACTIONS(3497), + [anon_sym_extern] = ACTIONS(3497), + [anon_sym___attribute__] = ACTIONS(3497), + [anon_sym_COLON_COLON] = ACTIONS(3499), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3499), + [anon_sym___declspec] = ACTIONS(3497), + [anon_sym___based] = ACTIONS(3497), + [anon_sym_LBRACE] = ACTIONS(3499), + [anon_sym_LBRACK] = ACTIONS(3497), + [anon_sym_EQ] = ACTIONS(3497), + [anon_sym_static] = ACTIONS(3497), + [anon_sym_register] = ACTIONS(3497), + [anon_sym_inline] = ACTIONS(3497), + [anon_sym_thread_local] = ACTIONS(3497), + [anon_sym_const] = ACTIONS(3497), + [anon_sym_volatile] = ACTIONS(3497), + [anon_sym_restrict] = ACTIONS(3497), + [anon_sym__Atomic] = ACTIONS(3497), + [anon_sym_mutable] = ACTIONS(3497), + [anon_sym_constexpr] = ACTIONS(3497), + [anon_sym_constinit] = ACTIONS(3497), + [anon_sym_consteval] = ACTIONS(3497), + [anon_sym_QMARK] = ACTIONS(3499), + [anon_sym_STAR_EQ] = ACTIONS(3499), + [anon_sym_SLASH_EQ] = ACTIONS(3499), + [anon_sym_PERCENT_EQ] = ACTIONS(3499), + [anon_sym_PLUS_EQ] = ACTIONS(3499), + [anon_sym_DASH_EQ] = ACTIONS(3499), + [anon_sym_LT_LT_EQ] = ACTIONS(3499), + [anon_sym_GT_GT_EQ] = ACTIONS(3499), + [anon_sym_AMP_EQ] = ACTIONS(3499), + [anon_sym_CARET_EQ] = ACTIONS(3499), + [anon_sym_PIPE_EQ] = ACTIONS(3499), + [anon_sym_LT_EQ_GT] = ACTIONS(3499), + [anon_sym_or] = ACTIONS(3497), + [anon_sym_and] = ACTIONS(3497), + [anon_sym_bitor] = ACTIONS(3497), + [anon_sym_xor] = ACTIONS(3497), + [anon_sym_bitand] = ACTIONS(3497), + [anon_sym_not_eq] = ACTIONS(3497), + [anon_sym_DASH_DASH] = ACTIONS(3499), + [anon_sym_PLUS_PLUS] = ACTIONS(3499), + [anon_sym_DOT] = ACTIONS(3497), + [anon_sym_DASH_GT] = ACTIONS(3497), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3497), + [anon_sym_decltype] = ACTIONS(3497), + [anon_sym_virtual] = ACTIONS(3497), + [anon_sym_template] = ACTIONS(3497), + [anon_sym_operator] = ACTIONS(3497), + [anon_sym_DOT_STAR] = ACTIONS(3499), + [anon_sym_DASH_GT_STAR] = ACTIONS(3499), + }, + [1429] = { + [sym__expression] = STATE(3061), + [sym_conditional_expression] = STATE(3135), + [sym_assignment_expression] = STATE(3135), + [sym_pointer_expression] = STATE(2788), + [sym_unary_expression] = STATE(3135), + [sym_binary_expression] = STATE(3135), + [sym_update_expression] = STATE(3135), + [sym_cast_expression] = STATE(3135), + [sym_sizeof_expression] = STATE(3135), + [sym_subscript_expression] = STATE(2788), + [sym_call_expression] = STATE(2788), + [sym_field_expression] = STATE(2788), + [sym_compound_literal_expression] = STATE(3135), + [sym_parenthesized_expression] = STATE(2788), + [sym_initializer_list] = STATE(3098), + [sym_char_literal] = STATE(2981), + [sym_concatenated_string] = STATE(2981), + [sym_string_literal] = STATE(1970), + [sym__class_name] = STATE(6450), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3135), + [sym_co_await_expression] = STATE(3135), + [sym_new_expression] = STATE(3135), + [sym_delete_expression] = STATE(3135), + [sym_requires_clause] = STATE(3135), + [sym_requires_expression] = STATE(3135), + [sym_lambda_expression] = STATE(3135), + [sym_lambda_capture_specifier] = STATE(4771), + [sym_fold_expression] = STATE(3135), + [sym_parameter_pack_expansion] = STATE(3135), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4904), + [sym_qualified_identifier] = STATE(2788), + [sym_qualified_type_identifier] = STATE(6450), + [sym_user_defined_literal] = STATE(3135), + [sym_identifier] = ACTIONS(1957), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACE] = ACTIONS(1959), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1753), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_co_await] = ACTIONS(1455), + [anon_sym_new] = ACTIONS(1457), + [anon_sym_requires] = ACTIONS(1459), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + [sym_raw_string_literal] = ACTIONS(1461), + }, + [1430] = { + [sym_identifier] = ACTIONS(3487), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3489), + [anon_sym_COMMA] = ACTIONS(3489), + [anon_sym_RPAREN] = ACTIONS(3489), + [anon_sym_LPAREN2] = ACTIONS(3489), + [anon_sym_TILDE] = ACTIONS(3489), + [anon_sym_DASH] = ACTIONS(3487), + [anon_sym_PLUS] = ACTIONS(3487), + [anon_sym_STAR] = ACTIONS(3487), + [anon_sym_SLASH] = ACTIONS(3487), + [anon_sym_PERCENT] = ACTIONS(3487), + [anon_sym_PIPE_PIPE] = ACTIONS(3489), + [anon_sym_AMP_AMP] = ACTIONS(3489), + [anon_sym_PIPE] = ACTIONS(3487), + [anon_sym_CARET] = ACTIONS(3487), + [anon_sym_AMP] = ACTIONS(3487), + [anon_sym_EQ_EQ] = ACTIONS(3489), + [anon_sym_BANG_EQ] = ACTIONS(3489), + [anon_sym_GT] = ACTIONS(3487), + [anon_sym_GT_EQ] = ACTIONS(3489), + [anon_sym_LT_EQ] = ACTIONS(3487), + [anon_sym_LT] = ACTIONS(3487), + [anon_sym_LT_LT] = ACTIONS(3487), + [anon_sym_GT_GT] = ACTIONS(3487), + [anon_sym_extern] = ACTIONS(3487), + [anon_sym___attribute__] = ACTIONS(3487), + [anon_sym_COLON_COLON] = ACTIONS(3489), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3489), + [anon_sym___declspec] = ACTIONS(3487), + [anon_sym___based] = ACTIONS(3487), + [anon_sym_LBRACE] = ACTIONS(3489), + [anon_sym_LBRACK] = ACTIONS(3487), + [anon_sym_EQ] = ACTIONS(3487), + [anon_sym_static] = ACTIONS(3487), + [anon_sym_register] = ACTIONS(3487), + [anon_sym_inline] = ACTIONS(3487), + [anon_sym_thread_local] = ACTIONS(3487), + [anon_sym_const] = ACTIONS(3487), + [anon_sym_volatile] = ACTIONS(3487), + [anon_sym_restrict] = ACTIONS(3487), + [anon_sym__Atomic] = ACTIONS(3487), + [anon_sym_mutable] = ACTIONS(3487), + [anon_sym_constexpr] = ACTIONS(3487), + [anon_sym_constinit] = ACTIONS(3487), + [anon_sym_consteval] = ACTIONS(3487), + [anon_sym_QMARK] = ACTIONS(3489), + [anon_sym_STAR_EQ] = ACTIONS(3489), + [anon_sym_SLASH_EQ] = ACTIONS(3489), + [anon_sym_PERCENT_EQ] = ACTIONS(3489), + [anon_sym_PLUS_EQ] = ACTIONS(3489), + [anon_sym_DASH_EQ] = ACTIONS(3489), + [anon_sym_LT_LT_EQ] = ACTIONS(3489), + [anon_sym_GT_GT_EQ] = ACTIONS(3489), + [anon_sym_AMP_EQ] = ACTIONS(3489), + [anon_sym_CARET_EQ] = ACTIONS(3489), + [anon_sym_PIPE_EQ] = ACTIONS(3489), + [anon_sym_LT_EQ_GT] = ACTIONS(3489), + [anon_sym_or] = ACTIONS(3487), + [anon_sym_and] = ACTIONS(3487), + [anon_sym_bitor] = ACTIONS(3487), + [anon_sym_xor] = ACTIONS(3487), + [anon_sym_bitand] = ACTIONS(3487), + [anon_sym_not_eq] = ACTIONS(3487), + [anon_sym_DASH_DASH] = ACTIONS(3489), + [anon_sym_PLUS_PLUS] = ACTIONS(3489), + [anon_sym_DOT] = ACTIONS(3487), + [anon_sym_DASH_GT] = ACTIONS(3487), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3487), + [anon_sym_decltype] = ACTIONS(3487), + [anon_sym_virtual] = ACTIONS(3487), + [anon_sym_template] = ACTIONS(3487), + [anon_sym_operator] = ACTIONS(3487), + [anon_sym_DOT_STAR] = ACTIONS(3489), + [anon_sym_DASH_GT_STAR] = ACTIONS(3489), + }, + [1431] = { + [sym__expression] = STATE(3665), + [sym_comma_expression] = STATE(6760), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_RPAREN] = ACTIONS(3643), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1432] = { + [sym__expression] = STATE(3798), + [sym_comma_expression] = STATE(6983), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_RPAREN] = ACTIONS(3645), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1433] = { + [sym__expression] = STATE(3918), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_initializer_list] = STATE(7098), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1434] = { + [sym__expression] = STATE(3811), + [sym_comma_expression] = STATE(6986), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_RPAREN] = ACTIONS(3647), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1435] = { + [sym__expression] = STATE(3809), + [sym_comma_expression] = STATE(7148), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_RPAREN] = ACTIONS(3649), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1436] = { + [sym__expression] = STATE(3797), + [sym_comma_expression] = STATE(6991), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_RPAREN] = ACTIONS(3651), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1437] = { + [sym__expression] = STATE(3796), + [sym_comma_expression] = STATE(7140), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_RPAREN] = ACTIONS(3653), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1438] = { + [sym__expression] = STATE(3666), + [sym_comma_expression] = STATE(6761), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_RPAREN] = ACTIONS(3655), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1439] = { + [sym__expression] = STATE(3793), + [sym_comma_expression] = STATE(6993), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_RPAREN] = ACTIONS(3657), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1440] = { + [sym__expression] = STATE(3789), + [sym_comma_expression] = STATE(7183), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_RPAREN] = ACTIONS(3659), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1441] = { + [sym__expression] = STATE(3696), + [sym_comma_expression] = STATE(6998), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_RPAREN] = ACTIONS(3661), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1442] = { + [sym__expression] = STATE(3802), + [sym_comma_expression] = STATE(6999), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_RPAREN] = ACTIONS(3663), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1443] = { + [sym__expression] = STATE(3784), + [sym_comma_expression] = STATE(7087), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_RPAREN] = ACTIONS(3665), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1444] = { + [sym__expression] = STATE(3669), + [sym_comma_expression] = STATE(7077), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_RPAREN] = ACTIONS(3667), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1445] = { + [sym__expression] = STATE(3681), + [sym_comma_expression] = STATE(7076), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_RPAREN] = ACTIONS(3669), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1446] = { + [sym__expression] = STATE(3688), + [sym_comma_expression] = STATE(7075), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_RPAREN] = ACTIONS(3671), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1447] = { + [sym__expression] = STATE(3693), + [sym_comma_expression] = STATE(7074), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_RPAREN] = ACTIONS(3673), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1448] = { + [sym__expression] = STATE(3694), + [sym_comma_expression] = STATE(7069), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_RPAREN] = ACTIONS(3675), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1449] = { + [sym__expression] = STATE(2974), + [sym_conditional_expression] = STATE(2562), + [sym_assignment_expression] = STATE(2562), + [sym_pointer_expression] = STATE(2549), + [sym_unary_expression] = STATE(2562), + [sym_binary_expression] = STATE(2562), + [sym_update_expression] = STATE(2562), + [sym_cast_expression] = STATE(2562), + [sym_sizeof_expression] = STATE(2562), + [sym_subscript_expression] = STATE(2549), + [sym_call_expression] = STATE(2549), + [sym_field_expression] = STATE(2549), + [sym_compound_literal_expression] = STATE(2562), + [sym_parenthesized_expression] = STATE(2549), + [sym_initializer_list] = STATE(2500), + [sym_char_literal] = STATE(2344), + [sym_concatenated_string] = STATE(2344), + [sym_string_literal] = STATE(1824), + [sym__class_name] = STATE(6654), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2562), + [sym_co_await_expression] = STATE(2562), + [sym_new_expression] = STATE(2562), + [sym_delete_expression] = STATE(2562), + [sym_requires_clause] = STATE(2562), + [sym_requires_expression] = STATE(2562), + [sym_lambda_expression] = STATE(2562), + [sym_lambda_capture_specifier] = STATE(4787), + [sym_fold_expression] = STATE(2562), + [sym_parameter_pack_expansion] = STATE(2562), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2549), + [sym_qualified_type_identifier] = STATE(6654), + [sym_user_defined_literal] = STATE(2562), + [sym_identifier] = ACTIONS(1697), + [anon_sym_LPAREN2] = ACTIONS(1961), + [anon_sym_BANG] = ACTIONS(1965), + [anon_sym_TILDE] = ACTIONS(1965), + [anon_sym_DASH] = ACTIONS(1963), + [anon_sym_PLUS] = ACTIONS(1963), + [anon_sym_STAR] = ACTIONS(3117), + [anon_sym_AMP] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(1969), + [anon_sym_LBRACE] = ACTIONS(1711), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(1963), + [anon_sym_compl] = ACTIONS(1963), + [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1971), + [anon_sym_sizeof] = ACTIONS(1973), + [sym_number_literal] = ACTIONS(1721), + [anon_sym_L_SQUOTE] = ACTIONS(1723), + [anon_sym_u_SQUOTE] = ACTIONS(1723), + [anon_sym_U_SQUOTE] = ACTIONS(1723), + [anon_sym_u8_SQUOTE] = ACTIONS(1723), + [anon_sym_SQUOTE] = ACTIONS(1723), + [anon_sym_L_DQUOTE] = ACTIONS(1725), + [anon_sym_u_DQUOTE] = ACTIONS(1725), + [anon_sym_U_DQUOTE] = ACTIONS(1725), + [anon_sym_u8_DQUOTE] = ACTIONS(1725), + [anon_sym_DQUOTE] = ACTIONS(1725), + [sym_true] = ACTIONS(1727), + [sym_false] = ACTIONS(1727), + [sym_null] = ACTIONS(1727), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1975), + [anon_sym_co_await] = ACTIONS(1977), + [anon_sym_new] = ACTIONS(1979), + [anon_sym_requires] = ACTIONS(1735), + [sym_this] = ACTIONS(1727), + [sym_nullptr] = ACTIONS(1727), + [sym_raw_string_literal] = ACTIONS(1737), + }, + [1450] = { + [sym__expression] = STATE(3936), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_initializer_list] = STATE(6796), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1451] = { + [sym__expression] = STATE(3695), + [sym_comma_expression] = STATE(7064), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_RPAREN] = ACTIONS(3677), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1452] = { + [sym__expression] = STATE(3736), + [sym_comma_expression] = STATE(7121), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_RPAREN] = ACTIONS(3679), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1453] = { + [sym__expression] = STATE(3990), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3001), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3001), + [sym_call_expression] = STATE(3001), + [sym_field_expression] = STATE(3001), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3001), + [sym_initializer_list] = STATE(6924), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3001), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3085), + [anon_sym_LPAREN2] = ACTIONS(3087), + [anon_sym_BANG] = ACTIONS(3091), + [anon_sym_TILDE] = ACTIONS(3091), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3089), + [anon_sym_compl] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3095), + [anon_sym_PLUS_PLUS] = ACTIONS(3095), + [anon_sym_sizeof] = ACTIONS(3097), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3099), + [anon_sym_co_await] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1454] = { + [sym__expression] = STATE(3830), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_initializer_list] = STATE(7139), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1455] = { + [sym__expression] = STATE(3642), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_initializer_list] = STATE(6709), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1456] = { + [sym__expression] = STATE(3706), + [sym_conditional_expression] = STATE(3865), + [sym_assignment_expression] = STATE(3865), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3865), + [sym_binary_expression] = STATE(3865), + [sym_update_expression] = STATE(3865), + [sym_cast_expression] = STATE(3865), + [sym_sizeof_expression] = STATE(3865), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3865), + [sym_parenthesized_expression] = STATE(3016), + [sym_initializer_list] = STATE(3928), + [sym_char_literal] = STATE(3707), + [sym_concatenated_string] = STATE(3707), + [sym_string_literal] = STATE(3250), + [sym__class_name] = STATE(6539), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3865), + [sym_co_await_expression] = STATE(3865), + [sym_new_expression] = STATE(3865), + [sym_delete_expression] = STATE(3865), + [sym_requires_clause] = STATE(3865), + [sym_requires_expression] = STATE(3865), + [sym_lambda_expression] = STATE(3865), + [sym_lambda_capture_specifier] = STATE(4789), + [sym_fold_expression] = STATE(3865), + [sym_parameter_pack_expansion] = STATE(3865), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(6539), + [sym_user_defined_literal] = STATE(3865), + [sym_identifier] = ACTIONS(3105), + [anon_sym_LPAREN2] = ACTIONS(2665), + [anon_sym_BANG] = ACTIONS(2667), + [anon_sym_TILDE] = ACTIONS(2667), + [anon_sym_DASH] = ACTIONS(2669), + [anon_sym_PLUS] = ACTIONS(2669), + [anon_sym_STAR] = ACTIONS(2671), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_COLON_COLON] = ACTIONS(2673), + [anon_sym_LBRACE] = ACTIONS(3107), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1933), + [anon_sym_not] = ACTIONS(2669), + [anon_sym_compl] = ACTIONS(2669), + [anon_sym_DASH_DASH] = ACTIONS(2687), + [anon_sym_PLUS_PLUS] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2689), + [sym_number_literal] = ACTIONS(2691), + [anon_sym_L_SQUOTE] = ACTIONS(2693), + [anon_sym_u_SQUOTE] = ACTIONS(2693), + [anon_sym_U_SQUOTE] = ACTIONS(2693), + [anon_sym_u8_SQUOTE] = ACTIONS(2693), + [anon_sym_SQUOTE] = ACTIONS(2693), + [anon_sym_L_DQUOTE] = ACTIONS(2695), + [anon_sym_u_DQUOTE] = ACTIONS(2695), + [anon_sym_U_DQUOTE] = ACTIONS(2695), + [anon_sym_u8_DQUOTE] = ACTIONS(2695), + [anon_sym_DQUOTE] = ACTIONS(2695), + [sym_true] = ACTIONS(2697), + [sym_false] = ACTIONS(2697), + [sym_null] = ACTIONS(2697), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(2707), + [anon_sym_co_await] = ACTIONS(2709), + [anon_sym_new] = ACTIONS(2711), + [anon_sym_requires] = ACTIONS(2713), + [sym_this] = ACTIONS(2697), + [sym_nullptr] = ACTIONS(2697), + [sym_raw_string_literal] = ACTIONS(2715), + }, + [1457] = { + [sym__expression] = STATE(3836), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_initializer_list] = STATE(6982), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1458] = { + [sym_identifier] = ACTIONS(3493), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3495), + [anon_sym_COMMA] = ACTIONS(3495), + [anon_sym_RPAREN] = ACTIONS(3495), + [anon_sym_LPAREN2] = ACTIONS(3495), + [anon_sym_TILDE] = ACTIONS(3495), + [anon_sym_DASH] = ACTIONS(3493), + [anon_sym_PLUS] = ACTIONS(3493), + [anon_sym_STAR] = ACTIONS(3493), + [anon_sym_SLASH] = ACTIONS(3493), + [anon_sym_PERCENT] = ACTIONS(3493), + [anon_sym_PIPE_PIPE] = ACTIONS(3495), + [anon_sym_AMP_AMP] = ACTIONS(3495), + [anon_sym_PIPE] = ACTIONS(3493), + [anon_sym_CARET] = ACTIONS(3493), + [anon_sym_AMP] = ACTIONS(3493), + [anon_sym_EQ_EQ] = ACTIONS(3495), + [anon_sym_BANG_EQ] = ACTIONS(3495), + [anon_sym_GT] = ACTIONS(3493), + [anon_sym_GT_EQ] = ACTIONS(3495), + [anon_sym_LT_EQ] = ACTIONS(3493), + [anon_sym_LT] = ACTIONS(3493), + [anon_sym_LT_LT] = ACTIONS(3493), + [anon_sym_GT_GT] = ACTIONS(3493), + [anon_sym_extern] = ACTIONS(3493), + [anon_sym___attribute__] = ACTIONS(3493), + [anon_sym_COLON_COLON] = ACTIONS(3495), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3495), + [anon_sym___declspec] = ACTIONS(3493), + [anon_sym___based] = ACTIONS(3493), + [anon_sym_LBRACE] = ACTIONS(3495), + [anon_sym_LBRACK] = ACTIONS(3493), + [anon_sym_EQ] = ACTIONS(3493), + [anon_sym_static] = ACTIONS(3493), + [anon_sym_register] = ACTIONS(3493), + [anon_sym_inline] = ACTIONS(3493), + [anon_sym_thread_local] = ACTIONS(3493), + [anon_sym_const] = ACTIONS(3493), + [anon_sym_volatile] = ACTIONS(3493), + [anon_sym_restrict] = ACTIONS(3493), + [anon_sym__Atomic] = ACTIONS(3493), + [anon_sym_mutable] = ACTIONS(3493), + [anon_sym_constexpr] = ACTIONS(3493), + [anon_sym_constinit] = ACTIONS(3493), + [anon_sym_consteval] = ACTIONS(3493), + [anon_sym_QMARK] = ACTIONS(3495), + [anon_sym_STAR_EQ] = ACTIONS(3495), + [anon_sym_SLASH_EQ] = ACTIONS(3495), + [anon_sym_PERCENT_EQ] = ACTIONS(3495), + [anon_sym_PLUS_EQ] = ACTIONS(3495), + [anon_sym_DASH_EQ] = ACTIONS(3495), + [anon_sym_LT_LT_EQ] = ACTIONS(3495), + [anon_sym_GT_GT_EQ] = ACTIONS(3495), + [anon_sym_AMP_EQ] = ACTIONS(3495), + [anon_sym_CARET_EQ] = ACTIONS(3495), + [anon_sym_PIPE_EQ] = ACTIONS(3495), + [anon_sym_LT_EQ_GT] = ACTIONS(3495), + [anon_sym_or] = ACTIONS(3493), + [anon_sym_and] = ACTIONS(3493), + [anon_sym_bitor] = ACTIONS(3493), + [anon_sym_xor] = ACTIONS(3493), + [anon_sym_bitand] = ACTIONS(3493), + [anon_sym_not_eq] = ACTIONS(3493), + [anon_sym_DASH_DASH] = ACTIONS(3495), + [anon_sym_PLUS_PLUS] = ACTIONS(3495), + [anon_sym_DOT] = ACTIONS(3493), + [anon_sym_DASH_GT] = ACTIONS(3493), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3493), + [anon_sym_decltype] = ACTIONS(3493), + [anon_sym_virtual] = ACTIONS(3493), + [anon_sym_template] = ACTIONS(3493), + [anon_sym_operator] = ACTIONS(3493), + [anon_sym_DOT_STAR] = ACTIONS(3495), + [anon_sym_DASH_GT_STAR] = ACTIONS(3495), + }, + [1459] = { + [sym__expression] = STATE(3507), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3001), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3001), + [sym_call_expression] = STATE(3001), + [sym_field_expression] = STATE(3001), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3001), + [sym_initializer_list] = STATE(3506), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3001), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3085), + [anon_sym_LPAREN2] = ACTIONS(3087), + [anon_sym_BANG] = ACTIONS(3091), + [anon_sym_TILDE] = ACTIONS(3091), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3089), + [anon_sym_compl] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3095), + [anon_sym_PLUS_PLUS] = ACTIONS(3095), + [anon_sym_sizeof] = ACTIONS(3097), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3099), + [anon_sym_co_await] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1460] = { + [sym__expression] = STATE(3507), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_initializer_list] = STATE(3506), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1461] = { + [sym__expression] = STATE(3953), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_initializer_list] = STATE(7062), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1462] = { + [sym__expression] = STATE(3655), + [sym_comma_expression] = STATE(6877), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_RPAREN] = ACTIONS(3681), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1463] = { + [sym__expression] = STATE(3875), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_initializer_list] = STATE(7200), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1464] = { + [sym__expression] = STATE(3984), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_initializer_list] = STATE(7149), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1465] = { + [sym__expression] = STATE(3815), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_initializer_list] = STATE(7146), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1466] = { + [sym__expression] = STATE(3820), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_initializer_list] = STATE(7224), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1467] = { + [sym__expression] = STATE(3044), + [sym_conditional_expression] = STATE(3135), + [sym_assignment_expression] = STATE(3135), + [sym_pointer_expression] = STATE(2788), + [sym_unary_expression] = STATE(3135), + [sym_binary_expression] = STATE(3135), + [sym_update_expression] = STATE(3135), + [sym_cast_expression] = STATE(3135), + [sym_sizeof_expression] = STATE(3135), + [sym_subscript_expression] = STATE(2788), + [sym_call_expression] = STATE(2788), + [sym_field_expression] = STATE(2788), + [sym_compound_literal_expression] = STATE(3135), + [sym_parenthesized_expression] = STATE(2788), + [sym_char_literal] = STATE(2981), + [sym_concatenated_string] = STATE(2981), + [sym_string_literal] = STATE(1970), + [sym__class_name] = STATE(6450), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3135), + [sym_co_await_expression] = STATE(3135), + [sym_new_expression] = STATE(3135), + [sym_delete_expression] = STATE(3135), + [sym_requires_clause] = STATE(3135), + [sym_requires_expression] = STATE(3135), + [sym_lambda_expression] = STATE(3135), + [sym_lambda_capture_specifier] = STATE(4771), + [sym_fold_expression] = STATE(3135), + [sym_parameter_pack_expansion] = STATE(3135), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4904), + [sym_qualified_identifier] = STATE(2788), + [sym_qualified_type_identifier] = STATE(6450), + [sym_user_defined_literal] = STATE(3135), + [sym_identifier] = ACTIONS(1957), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3683), + [anon_sym_LPAREN2] = ACTIONS(3685), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1753), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_co_await] = ACTIONS(1455), + [anon_sym_new] = ACTIONS(1457), + [anon_sym_requires] = ACTIONS(1459), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + [sym_raw_string_literal] = ACTIONS(1461), + }, + [1468] = { + [sym__expression] = STATE(3727), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3001), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3001), + [sym_call_expression] = STATE(3001), + [sym_field_expression] = STATE(3001), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3001), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3001), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3085), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3687), + [anon_sym_LPAREN2] = ACTIONS(3689), + [anon_sym_BANG] = ACTIONS(3091), + [anon_sym_TILDE] = ACTIONS(3091), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3089), + [anon_sym_compl] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3095), + [anon_sym_PLUS_PLUS] = ACTIONS(3095), + [anon_sym_sizeof] = ACTIONS(3097), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3099), + [anon_sym_co_await] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1469] = { + [sym__expression] = STATE(2548), + [sym_conditional_expression] = STATE(2562), + [sym_assignment_expression] = STATE(2562), + [sym_pointer_expression] = STATE(2549), + [sym_unary_expression] = STATE(2562), + [sym_binary_expression] = STATE(2562), + [sym_update_expression] = STATE(2562), + [sym_cast_expression] = STATE(2562), + [sym_sizeof_expression] = STATE(2562), + [sym_subscript_expression] = STATE(2549), + [sym_call_expression] = STATE(2549), + [sym_field_expression] = STATE(2549), + [sym_compound_literal_expression] = STATE(2562), + [sym_parenthesized_expression] = STATE(2549), + [sym_char_literal] = STATE(2344), + [sym_concatenated_string] = STATE(2344), + [sym_string_literal] = STATE(1824), + [sym__class_name] = STATE(6654), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2562), + [sym_co_await_expression] = STATE(2562), + [sym_new_expression] = STATE(2562), + [sym_delete_expression] = STATE(2562), + [sym_requires_clause] = STATE(2562), + [sym_requires_expression] = STATE(2562), + [sym_lambda_expression] = STATE(2562), + [sym_lambda_capture_specifier] = STATE(4787), + [sym_fold_expression] = STATE(2562), + [sym_parameter_pack_expansion] = STATE(2562), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2549), + [sym_qualified_type_identifier] = STATE(6654), + [sym_user_defined_literal] = STATE(2562), + [sym_identifier] = ACTIONS(1697), + [anon_sym_LPAREN2] = ACTIONS(1701), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1703), + [anon_sym_PLUS] = ACTIONS(1703), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_RBRACK] = ACTIONS(3691), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(1703), + [anon_sym_compl] = ACTIONS(1703), + [anon_sym_DASH_DASH] = ACTIONS(1717), + [anon_sym_PLUS_PLUS] = ACTIONS(1717), + [anon_sym_sizeof] = ACTIONS(1719), + [sym_number_literal] = ACTIONS(1721), + [anon_sym_L_SQUOTE] = ACTIONS(1723), + [anon_sym_u_SQUOTE] = ACTIONS(1723), + [anon_sym_U_SQUOTE] = ACTIONS(1723), + [anon_sym_u8_SQUOTE] = ACTIONS(1723), + [anon_sym_SQUOTE] = ACTIONS(1723), + [anon_sym_L_DQUOTE] = ACTIONS(1725), + [anon_sym_u_DQUOTE] = ACTIONS(1725), + [anon_sym_U_DQUOTE] = ACTIONS(1725), + [anon_sym_u8_DQUOTE] = ACTIONS(1725), + [anon_sym_DQUOTE] = ACTIONS(1725), + [sym_true] = ACTIONS(1727), + [sym_false] = ACTIONS(1727), + [sym_null] = ACTIONS(1727), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1729), + [anon_sym_co_await] = ACTIONS(1731), + [anon_sym_new] = ACTIONS(1733), + [anon_sym_requires] = ACTIONS(1735), + [sym_this] = ACTIONS(1727), + [sym_nullptr] = ACTIONS(1727), + [sym_raw_string_literal] = ACTIONS(1737), + }, + [1470] = { + [sym__expression] = STATE(3841), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3693), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1471] = { + [sym__expression] = STATE(2548), + [sym_conditional_expression] = STATE(2562), + [sym_assignment_expression] = STATE(2562), + [sym_pointer_expression] = STATE(2549), + [sym_unary_expression] = STATE(2562), + [sym_binary_expression] = STATE(2562), + [sym_update_expression] = STATE(2562), + [sym_cast_expression] = STATE(2562), + [sym_sizeof_expression] = STATE(2562), + [sym_subscript_expression] = STATE(2549), + [sym_call_expression] = STATE(2549), + [sym_field_expression] = STATE(2549), + [sym_compound_literal_expression] = STATE(2562), + [sym_parenthesized_expression] = STATE(2549), + [sym_char_literal] = STATE(2344), + [sym_concatenated_string] = STATE(2344), + [sym_string_literal] = STATE(1824), + [sym__class_name] = STATE(6654), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2562), + [sym_co_await_expression] = STATE(2562), + [sym_new_expression] = STATE(2562), + [sym_delete_expression] = STATE(2562), + [sym_requires_clause] = STATE(2562), + [sym_requires_expression] = STATE(2562), + [sym_lambda_expression] = STATE(2562), + [sym_lambda_capture_specifier] = STATE(4787), + [sym_fold_expression] = STATE(2562), + [sym_parameter_pack_expansion] = STATE(2562), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2549), + [sym_qualified_type_identifier] = STATE(6654), + [sym_user_defined_literal] = STATE(2562), + [sym_identifier] = ACTIONS(1697), + [anon_sym_LPAREN2] = ACTIONS(1701), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1703), + [anon_sym_PLUS] = ACTIONS(1703), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_RBRACK] = ACTIONS(3695), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(1703), + [anon_sym_compl] = ACTIONS(1703), + [anon_sym_DASH_DASH] = ACTIONS(1717), + [anon_sym_PLUS_PLUS] = ACTIONS(1717), + [anon_sym_sizeof] = ACTIONS(1719), + [sym_number_literal] = ACTIONS(1721), + [anon_sym_L_SQUOTE] = ACTIONS(1723), + [anon_sym_u_SQUOTE] = ACTIONS(1723), + [anon_sym_U_SQUOTE] = ACTIONS(1723), + [anon_sym_u8_SQUOTE] = ACTIONS(1723), + [anon_sym_SQUOTE] = ACTIONS(1723), + [anon_sym_L_DQUOTE] = ACTIONS(1725), + [anon_sym_u_DQUOTE] = ACTIONS(1725), + [anon_sym_U_DQUOTE] = ACTIONS(1725), + [anon_sym_u8_DQUOTE] = ACTIONS(1725), + [anon_sym_DQUOTE] = ACTIONS(1725), + [sym_true] = ACTIONS(1727), + [sym_false] = ACTIONS(1727), + [sym_null] = ACTIONS(1727), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1729), + [anon_sym_co_await] = ACTIONS(1731), + [anon_sym_new] = ACTIONS(1733), + [anon_sym_requires] = ACTIONS(1735), + [sym_this] = ACTIONS(1727), + [sym_nullptr] = ACTIONS(1727), + [sym_raw_string_literal] = ACTIONS(1737), + }, + [1472] = { + [sym__expression] = STATE(2548), + [sym_conditional_expression] = STATE(2562), + [sym_assignment_expression] = STATE(2562), + [sym_pointer_expression] = STATE(2549), + [sym_unary_expression] = STATE(2562), + [sym_binary_expression] = STATE(2562), + [sym_update_expression] = STATE(2562), + [sym_cast_expression] = STATE(2562), + [sym_sizeof_expression] = STATE(2562), + [sym_subscript_expression] = STATE(2549), + [sym_call_expression] = STATE(2549), + [sym_field_expression] = STATE(2549), + [sym_compound_literal_expression] = STATE(2562), + [sym_parenthesized_expression] = STATE(2549), + [sym_char_literal] = STATE(2344), + [sym_concatenated_string] = STATE(2344), + [sym_string_literal] = STATE(1824), + [sym__class_name] = STATE(6654), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2562), + [sym_co_await_expression] = STATE(2562), + [sym_new_expression] = STATE(2562), + [sym_delete_expression] = STATE(2562), + [sym_requires_clause] = STATE(2562), + [sym_requires_expression] = STATE(2562), + [sym_lambda_expression] = STATE(2562), + [sym_lambda_capture_specifier] = STATE(4787), + [sym_fold_expression] = STATE(2562), + [sym_parameter_pack_expansion] = STATE(2562), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2549), + [sym_qualified_type_identifier] = STATE(6654), + [sym_user_defined_literal] = STATE(2562), + [sym_identifier] = ACTIONS(1697), + [anon_sym_LPAREN2] = ACTIONS(1701), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1703), + [anon_sym_PLUS] = ACTIONS(1703), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_RBRACK] = ACTIONS(3697), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(1703), + [anon_sym_compl] = ACTIONS(1703), + [anon_sym_DASH_DASH] = ACTIONS(1717), + [anon_sym_PLUS_PLUS] = ACTIONS(1717), + [anon_sym_sizeof] = ACTIONS(1719), + [sym_number_literal] = ACTIONS(1721), + [anon_sym_L_SQUOTE] = ACTIONS(1723), + [anon_sym_u_SQUOTE] = ACTIONS(1723), + [anon_sym_U_SQUOTE] = ACTIONS(1723), + [anon_sym_u8_SQUOTE] = ACTIONS(1723), + [anon_sym_SQUOTE] = ACTIONS(1723), + [anon_sym_L_DQUOTE] = ACTIONS(1725), + [anon_sym_u_DQUOTE] = ACTIONS(1725), + [anon_sym_U_DQUOTE] = ACTIONS(1725), + [anon_sym_u8_DQUOTE] = ACTIONS(1725), + [anon_sym_DQUOTE] = ACTIONS(1725), + [sym_true] = ACTIONS(1727), + [sym_false] = ACTIONS(1727), + [sym_null] = ACTIONS(1727), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1729), + [anon_sym_co_await] = ACTIONS(1731), + [anon_sym_new] = ACTIONS(1733), + [anon_sym_requires] = ACTIONS(1735), + [sym_this] = ACTIONS(1727), + [sym_nullptr] = ACTIONS(1727), + [sym_raw_string_literal] = ACTIONS(1737), + }, + [1473] = { + [sym__expression] = STATE(3912), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3699), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1474] = { + [sym__expression] = STATE(3558), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3701), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(3703), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1475] = { + [sym__expression] = STATE(3985), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3121), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3121), + [sym_call_expression] = STATE(3121), + [sym_field_expression] = STATE(3121), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3121), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3121), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3109), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3687), + [anon_sym_LPAREN2] = ACTIONS(3705), + [anon_sym_BANG] = ACTIONS(3115), + [anon_sym_TILDE] = ACTIONS(3115), + [anon_sym_DASH] = ACTIONS(3113), + [anon_sym_PLUS] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(3117), + [anon_sym_AMP] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(3119), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3113), + [anon_sym_compl] = ACTIONS(3113), + [anon_sym_DASH_DASH] = ACTIONS(3121), + [anon_sym_PLUS_PLUS] = ACTIONS(3121), + [anon_sym_sizeof] = ACTIONS(3123), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3125), + [anon_sym_co_await] = ACTIONS(3127), + [anon_sym_new] = ACTIONS(3129), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1476] = { + [sym__expression] = STATE(3034), + [sym_conditional_expression] = STATE(3135), + [sym_assignment_expression] = STATE(3135), + [sym_pointer_expression] = STATE(2788), + [sym_unary_expression] = STATE(3135), + [sym_binary_expression] = STATE(3135), + [sym_update_expression] = STATE(3135), + [sym_cast_expression] = STATE(3135), + [sym_sizeof_expression] = STATE(3135), + [sym_subscript_expression] = STATE(2788), + [sym_call_expression] = STATE(2788), + [sym_field_expression] = STATE(2788), + [sym_compound_literal_expression] = STATE(3135), + [sym_parenthesized_expression] = STATE(2788), + [sym_char_literal] = STATE(2981), + [sym_concatenated_string] = STATE(2981), + [sym_string_literal] = STATE(1970), + [sym__class_name] = STATE(6450), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3135), + [sym_co_await_expression] = STATE(3135), + [sym_new_expression] = STATE(3135), + [sym_delete_expression] = STATE(3135), + [sym_requires_clause] = STATE(3135), + [sym_requires_expression] = STATE(3135), + [sym_lambda_expression] = STATE(3135), + [sym_lambda_capture_specifier] = STATE(4771), + [sym_fold_expression] = STATE(3135), + [sym_parameter_pack_expansion] = STATE(3135), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4904), + [sym_qualified_identifier] = STATE(2788), + [sym_qualified_type_identifier] = STATE(6450), + [sym_user_defined_literal] = STATE(3135), + [sym_identifier] = ACTIONS(1957), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3707), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1753), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_co_await] = ACTIONS(1455), + [anon_sym_new] = ACTIONS(1457), + [anon_sym_requires] = ACTIONS(1459), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + [sym_raw_string_literal] = ACTIONS(1461), + }, + [1477] = { + [sym__expression] = STATE(3034), + [sym_conditional_expression] = STATE(3135), + [sym_assignment_expression] = STATE(3135), + [sym_pointer_expression] = STATE(2788), + [sym_unary_expression] = STATE(3135), + [sym_binary_expression] = STATE(3135), + [sym_update_expression] = STATE(3135), + [sym_cast_expression] = STATE(3135), + [sym_sizeof_expression] = STATE(3135), + [sym_subscript_expression] = STATE(2788), + [sym_call_expression] = STATE(2788), + [sym_field_expression] = STATE(2788), + [sym_compound_literal_expression] = STATE(3135), + [sym_parenthesized_expression] = STATE(2788), + [sym_char_literal] = STATE(2981), + [sym_concatenated_string] = STATE(2981), + [sym_string_literal] = STATE(1970), + [sym__class_name] = STATE(6450), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3135), + [sym_co_await_expression] = STATE(3135), + [sym_new_expression] = STATE(3135), + [sym_delete_expression] = STATE(3135), + [sym_requires_clause] = STATE(3135), + [sym_requires_expression] = STATE(3135), + [sym_lambda_expression] = STATE(3135), + [sym_lambda_capture_specifier] = STATE(4771), + [sym_fold_expression] = STATE(3135), + [sym_parameter_pack_expansion] = STATE(3135), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4904), + [sym_qualified_identifier] = STATE(2788), + [sym_qualified_type_identifier] = STATE(6450), + [sym_user_defined_literal] = STATE(3135), + [sym_identifier] = ACTIONS(1957), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3710), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1753), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_co_await] = ACTIONS(1455), + [anon_sym_new] = ACTIONS(1457), + [anon_sym_requires] = ACTIONS(1459), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + [sym_raw_string_literal] = ACTIONS(1461), + }, + [1478] = { + [sym__expression] = STATE(3904), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3713), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1479] = { + [sym__expression] = STATE(3905), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3715), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1480] = { + [sym__expression] = STATE(2984), + [sym_conditional_expression] = STATE(3135), + [sym_assignment_expression] = STATE(3135), + [sym_pointer_expression] = STATE(2788), + [sym_unary_expression] = STATE(3135), + [sym_binary_expression] = STATE(3135), + [sym_update_expression] = STATE(3135), + [sym_cast_expression] = STATE(3135), + [sym_sizeof_expression] = STATE(3135), + [sym_subscript_expression] = STATE(2788), + [sym_call_expression] = STATE(2788), + [sym_field_expression] = STATE(2788), + [sym_compound_literal_expression] = STATE(3135), + [sym_parenthesized_expression] = STATE(2788), + [sym_char_literal] = STATE(2981), + [sym_concatenated_string] = STATE(2981), + [sym_string_literal] = STATE(1970), + [sym__class_name] = STATE(6450), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3135), + [sym_co_await_expression] = STATE(3135), + [sym_new_expression] = STATE(3135), + [sym_delete_expression] = STATE(3135), + [sym_requires_clause] = STATE(3135), + [sym_requires_expression] = STATE(3135), + [sym_lambda_expression] = STATE(3135), + [sym_lambda_capture_specifier] = STATE(4771), + [sym_fold_expression] = STATE(3135), + [sym_parameter_pack_expansion] = STATE(3135), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4904), + [sym_qualified_identifier] = STATE(2788), + [sym_qualified_type_identifier] = STATE(6450), + [sym_user_defined_literal] = STATE(3135), + [sym_identifier] = ACTIONS(1957), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3717), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1753), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_co_await] = ACTIONS(1455), + [anon_sym_new] = ACTIONS(1457), + [anon_sym_requires] = ACTIONS(1459), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + [sym_raw_string_literal] = ACTIONS(1461), + }, + [1481] = { + [sym__expression] = STATE(2548), + [sym_conditional_expression] = STATE(2562), + [sym_assignment_expression] = STATE(2562), + [sym_pointer_expression] = STATE(2549), + [sym_unary_expression] = STATE(2562), + [sym_binary_expression] = STATE(2562), + [sym_update_expression] = STATE(2562), + [sym_cast_expression] = STATE(2562), + [sym_sizeof_expression] = STATE(2562), + [sym_subscript_expression] = STATE(2549), + [sym_call_expression] = STATE(2549), + [sym_field_expression] = STATE(2549), + [sym_compound_literal_expression] = STATE(2562), + [sym_parenthesized_expression] = STATE(2549), + [sym_char_literal] = STATE(2344), + [sym_concatenated_string] = STATE(2344), + [sym_string_literal] = STATE(1824), + [sym__class_name] = STATE(6654), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2562), + [sym_co_await_expression] = STATE(2562), + [sym_new_expression] = STATE(2562), + [sym_delete_expression] = STATE(2562), + [sym_requires_clause] = STATE(2562), + [sym_requires_expression] = STATE(2562), + [sym_lambda_expression] = STATE(2562), + [sym_lambda_capture_specifier] = STATE(4787), + [sym_fold_expression] = STATE(2562), + [sym_parameter_pack_expansion] = STATE(2562), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2549), + [sym_qualified_type_identifier] = STATE(6654), + [sym_user_defined_literal] = STATE(2562), + [sym_identifier] = ACTIONS(1697), + [anon_sym_LPAREN2] = ACTIONS(1701), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1703), + [anon_sym_PLUS] = ACTIONS(1703), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_RBRACK] = ACTIONS(3720), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(1703), + [anon_sym_compl] = ACTIONS(1703), + [anon_sym_DASH_DASH] = ACTIONS(1717), + [anon_sym_PLUS_PLUS] = ACTIONS(1717), + [anon_sym_sizeof] = ACTIONS(1719), + [sym_number_literal] = ACTIONS(1721), + [anon_sym_L_SQUOTE] = ACTIONS(1723), + [anon_sym_u_SQUOTE] = ACTIONS(1723), + [anon_sym_U_SQUOTE] = ACTIONS(1723), + [anon_sym_u8_SQUOTE] = ACTIONS(1723), + [anon_sym_SQUOTE] = ACTIONS(1723), + [anon_sym_L_DQUOTE] = ACTIONS(1725), + [anon_sym_u_DQUOTE] = ACTIONS(1725), + [anon_sym_U_DQUOTE] = ACTIONS(1725), + [anon_sym_u8_DQUOTE] = ACTIONS(1725), + [anon_sym_DQUOTE] = ACTIONS(1725), + [sym_true] = ACTIONS(1727), + [sym_false] = ACTIONS(1727), + [sym_null] = ACTIONS(1727), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1729), + [anon_sym_co_await] = ACTIONS(1731), + [anon_sym_new] = ACTIONS(1733), + [anon_sym_requires] = ACTIONS(1735), + [sym_this] = ACTIONS(1727), + [sym_nullptr] = ACTIONS(1727), + [sym_raw_string_literal] = ACTIONS(1737), + }, + [1482] = { + [sym__expression] = STATE(3033), + [sym_conditional_expression] = STATE(3135), + [sym_assignment_expression] = STATE(3135), + [sym_pointer_expression] = STATE(2788), + [sym_unary_expression] = STATE(3135), + [sym_binary_expression] = STATE(3135), + [sym_update_expression] = STATE(3135), + [sym_cast_expression] = STATE(3135), + [sym_sizeof_expression] = STATE(3135), + [sym_subscript_expression] = STATE(2788), + [sym_call_expression] = STATE(2788), + [sym_field_expression] = STATE(2788), + [sym_compound_literal_expression] = STATE(3135), + [sym_parenthesized_expression] = STATE(2788), + [sym_char_literal] = STATE(2981), + [sym_concatenated_string] = STATE(2981), + [sym_string_literal] = STATE(1970), + [sym__class_name] = STATE(6450), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3135), + [sym_co_await_expression] = STATE(3135), + [sym_new_expression] = STATE(3135), + [sym_delete_expression] = STATE(3135), + [sym_requires_clause] = STATE(3135), + [sym_requires_expression] = STATE(3135), + [sym_lambda_expression] = STATE(3135), + [sym_lambda_capture_specifier] = STATE(4771), + [sym_fold_expression] = STATE(3135), + [sym_parameter_pack_expansion] = STATE(3135), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4904), + [sym_qualified_identifier] = STATE(2788), + [sym_qualified_type_identifier] = STATE(6450), + [sym_user_defined_literal] = STATE(3135), + [sym_identifier] = ACTIONS(1957), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3722), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1753), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_co_await] = ACTIONS(1455), + [anon_sym_new] = ACTIONS(1457), + [anon_sym_requires] = ACTIONS(1459), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + [sym_raw_string_literal] = ACTIONS(1461), + }, + [1483] = { + [sym__expression] = STATE(3033), + [sym_conditional_expression] = STATE(3135), + [sym_assignment_expression] = STATE(3135), + [sym_pointer_expression] = STATE(2788), + [sym_unary_expression] = STATE(3135), + [sym_binary_expression] = STATE(3135), + [sym_update_expression] = STATE(3135), + [sym_cast_expression] = STATE(3135), + [sym_sizeof_expression] = STATE(3135), + [sym_subscript_expression] = STATE(2788), + [sym_call_expression] = STATE(2788), + [sym_field_expression] = STATE(2788), + [sym_compound_literal_expression] = STATE(3135), + [sym_parenthesized_expression] = STATE(2788), + [sym_char_literal] = STATE(2981), + [sym_concatenated_string] = STATE(2981), + [sym_string_literal] = STATE(1970), + [sym__class_name] = STATE(6450), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3135), + [sym_co_await_expression] = STATE(3135), + [sym_new_expression] = STATE(3135), + [sym_delete_expression] = STATE(3135), + [sym_requires_clause] = STATE(3135), + [sym_requires_expression] = STATE(3135), + [sym_lambda_expression] = STATE(3135), + [sym_lambda_capture_specifier] = STATE(4771), + [sym_fold_expression] = STATE(3135), + [sym_parameter_pack_expansion] = STATE(3135), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4904), + [sym_qualified_identifier] = STATE(2788), + [sym_qualified_type_identifier] = STATE(6450), + [sym_user_defined_literal] = STATE(3135), + [sym_identifier] = ACTIONS(1957), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3725), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1753), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_co_await] = ACTIONS(1455), + [anon_sym_new] = ACTIONS(1457), + [anon_sym_requires] = ACTIONS(1459), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + [sym_raw_string_literal] = ACTIONS(1461), + }, + [1484] = { + [sym__expression] = STATE(3033), + [sym_conditional_expression] = STATE(3135), + [sym_assignment_expression] = STATE(3135), + [sym_pointer_expression] = STATE(2788), + [sym_unary_expression] = STATE(3135), + [sym_binary_expression] = STATE(3135), + [sym_update_expression] = STATE(3135), + [sym_cast_expression] = STATE(3135), + [sym_sizeof_expression] = STATE(3135), + [sym_subscript_expression] = STATE(2788), + [sym_call_expression] = STATE(2788), + [sym_field_expression] = STATE(2788), + [sym_compound_literal_expression] = STATE(3135), + [sym_parenthesized_expression] = STATE(2788), + [sym_char_literal] = STATE(2981), + [sym_concatenated_string] = STATE(2981), + [sym_string_literal] = STATE(1970), + [sym__class_name] = STATE(6450), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3135), + [sym_co_await_expression] = STATE(3135), + [sym_new_expression] = STATE(3135), + [sym_delete_expression] = STATE(3135), + [sym_requires_clause] = STATE(3135), + [sym_requires_expression] = STATE(3135), + [sym_lambda_expression] = STATE(3135), + [sym_lambda_capture_specifier] = STATE(4771), + [sym_fold_expression] = STATE(3135), + [sym_parameter_pack_expansion] = STATE(3135), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4904), + [sym_qualified_identifier] = STATE(2788), + [sym_qualified_type_identifier] = STATE(6450), + [sym_user_defined_literal] = STATE(3135), + [sym_identifier] = ACTIONS(1957), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3728), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1753), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_co_await] = ACTIONS(1455), + [anon_sym_new] = ACTIONS(1457), + [anon_sym_requires] = ACTIONS(1459), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + [sym_raw_string_literal] = ACTIONS(1461), + }, + [1485] = { + [sym__expression] = STATE(3851), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_RPAREN] = ACTIONS(3731), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1486] = { + [sym__expression] = STATE(3899), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3733), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1487] = { + [sym__expression] = STATE(3033), + [sym_conditional_expression] = STATE(3135), + [sym_assignment_expression] = STATE(3135), + [sym_pointer_expression] = STATE(2788), + [sym_unary_expression] = STATE(3135), + [sym_binary_expression] = STATE(3135), + [sym_update_expression] = STATE(3135), + [sym_cast_expression] = STATE(3135), + [sym_sizeof_expression] = STATE(3135), + [sym_subscript_expression] = STATE(2788), + [sym_call_expression] = STATE(2788), + [sym_field_expression] = STATE(2788), + [sym_compound_literal_expression] = STATE(3135), + [sym_parenthesized_expression] = STATE(2788), + [sym_char_literal] = STATE(2981), + [sym_concatenated_string] = STATE(2981), + [sym_string_literal] = STATE(1970), + [sym__class_name] = STATE(6450), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3135), + [sym_co_await_expression] = STATE(3135), + [sym_new_expression] = STATE(3135), + [sym_delete_expression] = STATE(3135), + [sym_requires_clause] = STATE(3135), + [sym_requires_expression] = STATE(3135), + [sym_lambda_expression] = STATE(3135), + [sym_lambda_capture_specifier] = STATE(4771), + [sym_fold_expression] = STATE(3135), + [sym_parameter_pack_expansion] = STATE(3135), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4904), + [sym_qualified_identifier] = STATE(2788), + [sym_qualified_type_identifier] = STATE(6450), + [sym_user_defined_literal] = STATE(3135), + [sym_identifier] = ACTIONS(1957), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3735), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1753), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_co_await] = ACTIONS(1455), + [anon_sym_new] = ACTIONS(1457), + [anon_sym_requires] = ACTIONS(1459), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + [sym_raw_string_literal] = ACTIONS(1461), + }, + [1488] = { + [sym__expression] = STATE(3869), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3738), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1489] = { + [sym__expression] = STATE(2548), + [sym_conditional_expression] = STATE(2562), + [sym_assignment_expression] = STATE(2562), + [sym_pointer_expression] = STATE(2549), + [sym_unary_expression] = STATE(2562), + [sym_binary_expression] = STATE(2562), + [sym_update_expression] = STATE(2562), + [sym_cast_expression] = STATE(2562), + [sym_sizeof_expression] = STATE(2562), + [sym_subscript_expression] = STATE(2549), + [sym_call_expression] = STATE(2549), + [sym_field_expression] = STATE(2549), + [sym_compound_literal_expression] = STATE(2562), + [sym_parenthesized_expression] = STATE(2549), + [sym_char_literal] = STATE(2344), + [sym_concatenated_string] = STATE(2344), + [sym_string_literal] = STATE(1824), + [sym__class_name] = STATE(6654), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2562), + [sym_co_await_expression] = STATE(2562), + [sym_new_expression] = STATE(2562), + [sym_delete_expression] = STATE(2562), + [sym_requires_clause] = STATE(2562), + [sym_requires_expression] = STATE(2562), + [sym_lambda_expression] = STATE(2562), + [sym_lambda_capture_specifier] = STATE(4787), + [sym_fold_expression] = STATE(2562), + [sym_parameter_pack_expansion] = STATE(2562), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2549), + [sym_qualified_type_identifier] = STATE(6654), + [sym_user_defined_literal] = STATE(2562), + [sym_identifier] = ACTIONS(1697), + [anon_sym_LPAREN2] = ACTIONS(1701), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1703), + [anon_sym_PLUS] = ACTIONS(1703), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_RBRACK] = ACTIONS(3740), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(1703), + [anon_sym_compl] = ACTIONS(1703), + [anon_sym_DASH_DASH] = ACTIONS(1717), + [anon_sym_PLUS_PLUS] = ACTIONS(1717), + [anon_sym_sizeof] = ACTIONS(1719), + [sym_number_literal] = ACTIONS(1721), + [anon_sym_L_SQUOTE] = ACTIONS(1723), + [anon_sym_u_SQUOTE] = ACTIONS(1723), + [anon_sym_U_SQUOTE] = ACTIONS(1723), + [anon_sym_u8_SQUOTE] = ACTIONS(1723), + [anon_sym_SQUOTE] = ACTIONS(1723), + [anon_sym_L_DQUOTE] = ACTIONS(1725), + [anon_sym_u_DQUOTE] = ACTIONS(1725), + [anon_sym_U_DQUOTE] = ACTIONS(1725), + [anon_sym_u8_DQUOTE] = ACTIONS(1725), + [anon_sym_DQUOTE] = ACTIONS(1725), + [sym_true] = ACTIONS(1727), + [sym_false] = ACTIONS(1727), + [sym_null] = ACTIONS(1727), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1729), + [anon_sym_co_await] = ACTIONS(1731), + [anon_sym_new] = ACTIONS(1733), + [anon_sym_requires] = ACTIONS(1735), + [sym_this] = ACTIONS(1727), + [sym_nullptr] = ACTIONS(1727), + [sym_raw_string_literal] = ACTIONS(1737), + }, + [1490] = { + [sym__expression] = STATE(2548), + [sym_conditional_expression] = STATE(2562), + [sym_assignment_expression] = STATE(2562), + [sym_pointer_expression] = STATE(2549), + [sym_unary_expression] = STATE(2562), + [sym_binary_expression] = STATE(2562), + [sym_update_expression] = STATE(2562), + [sym_cast_expression] = STATE(2562), + [sym_sizeof_expression] = STATE(2562), + [sym_subscript_expression] = STATE(2549), + [sym_call_expression] = STATE(2549), + [sym_field_expression] = STATE(2549), + [sym_compound_literal_expression] = STATE(2562), + [sym_parenthesized_expression] = STATE(2549), + [sym_char_literal] = STATE(2344), + [sym_concatenated_string] = STATE(2344), + [sym_string_literal] = STATE(1824), + [sym__class_name] = STATE(6654), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2562), + [sym_co_await_expression] = STATE(2562), + [sym_new_expression] = STATE(2562), + [sym_delete_expression] = STATE(2562), + [sym_requires_clause] = STATE(2562), + [sym_requires_expression] = STATE(2562), + [sym_lambda_expression] = STATE(2562), + [sym_lambda_capture_specifier] = STATE(4787), + [sym_fold_expression] = STATE(2562), + [sym_parameter_pack_expansion] = STATE(2562), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2549), + [sym_qualified_type_identifier] = STATE(6654), + [sym_user_defined_literal] = STATE(2562), + [sym_identifier] = ACTIONS(1697), + [anon_sym_LPAREN2] = ACTIONS(1701), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1703), + [anon_sym_PLUS] = ACTIONS(1703), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_RBRACK] = ACTIONS(3742), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(1703), + [anon_sym_compl] = ACTIONS(1703), + [anon_sym_DASH_DASH] = ACTIONS(1717), + [anon_sym_PLUS_PLUS] = ACTIONS(1717), + [anon_sym_sizeof] = ACTIONS(1719), + [sym_number_literal] = ACTIONS(1721), + [anon_sym_L_SQUOTE] = ACTIONS(1723), + [anon_sym_u_SQUOTE] = ACTIONS(1723), + [anon_sym_U_SQUOTE] = ACTIONS(1723), + [anon_sym_u8_SQUOTE] = ACTIONS(1723), + [anon_sym_SQUOTE] = ACTIONS(1723), + [anon_sym_L_DQUOTE] = ACTIONS(1725), + [anon_sym_u_DQUOTE] = ACTIONS(1725), + [anon_sym_U_DQUOTE] = ACTIONS(1725), + [anon_sym_u8_DQUOTE] = ACTIONS(1725), + [anon_sym_DQUOTE] = ACTIONS(1725), + [sym_true] = ACTIONS(1727), + [sym_false] = ACTIONS(1727), + [sym_null] = ACTIONS(1727), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1729), + [anon_sym_co_await] = ACTIONS(1731), + [anon_sym_new] = ACTIONS(1733), + [anon_sym_requires] = ACTIONS(1735), + [sym_this] = ACTIONS(1727), + [sym_nullptr] = ACTIONS(1727), + [sym_raw_string_literal] = ACTIONS(1737), + }, + [1491] = { + [sym__expression] = STATE(2982), + [sym_conditional_expression] = STATE(3135), + [sym_assignment_expression] = STATE(3135), + [sym_pointer_expression] = STATE(2788), + [sym_unary_expression] = STATE(3135), + [sym_binary_expression] = STATE(3135), + [sym_update_expression] = STATE(3135), + [sym_cast_expression] = STATE(3135), + [sym_sizeof_expression] = STATE(3135), + [sym_subscript_expression] = STATE(2788), + [sym_call_expression] = STATE(2788), + [sym_field_expression] = STATE(2788), + [sym_compound_literal_expression] = STATE(3135), + [sym_parenthesized_expression] = STATE(2788), + [sym_char_literal] = STATE(2981), + [sym_concatenated_string] = STATE(2981), + [sym_string_literal] = STATE(1970), + [sym__class_name] = STATE(6450), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3135), + [sym_co_await_expression] = STATE(3135), + [sym_new_expression] = STATE(3135), + [sym_delete_expression] = STATE(3135), + [sym_requires_clause] = STATE(3135), + [sym_requires_expression] = STATE(3135), + [sym_lambda_expression] = STATE(3135), + [sym_lambda_capture_specifier] = STATE(4771), + [sym_fold_expression] = STATE(3135), + [sym_parameter_pack_expansion] = STATE(3135), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4904), + [sym_qualified_identifier] = STATE(2788), + [sym_qualified_type_identifier] = STATE(6450), + [sym_user_defined_literal] = STATE(3135), + [sym_identifier] = ACTIONS(1957), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3744), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1753), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_co_await] = ACTIONS(1455), + [anon_sym_new] = ACTIONS(1457), + [anon_sym_requires] = ACTIONS(1459), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + [sym_raw_string_literal] = ACTIONS(1461), + }, + [1492] = { + [sym__expression] = STATE(2548), + [sym_conditional_expression] = STATE(2562), + [sym_assignment_expression] = STATE(2562), + [sym_pointer_expression] = STATE(2549), + [sym_unary_expression] = STATE(2562), + [sym_binary_expression] = STATE(2562), + [sym_update_expression] = STATE(2562), + [sym_cast_expression] = STATE(2562), + [sym_sizeof_expression] = STATE(2562), + [sym_subscript_expression] = STATE(2549), + [sym_call_expression] = STATE(2549), + [sym_field_expression] = STATE(2549), + [sym_compound_literal_expression] = STATE(2562), + [sym_parenthesized_expression] = STATE(2549), + [sym_char_literal] = STATE(2344), + [sym_concatenated_string] = STATE(2344), + [sym_string_literal] = STATE(1824), + [sym__class_name] = STATE(6654), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2562), + [sym_co_await_expression] = STATE(2562), + [sym_new_expression] = STATE(2562), + [sym_delete_expression] = STATE(2562), + [sym_requires_clause] = STATE(2562), + [sym_requires_expression] = STATE(2562), + [sym_lambda_expression] = STATE(2562), + [sym_lambda_capture_specifier] = STATE(4787), + [sym_fold_expression] = STATE(2562), + [sym_parameter_pack_expansion] = STATE(2562), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2549), + [sym_qualified_type_identifier] = STATE(6654), + [sym_user_defined_literal] = STATE(2562), + [sym_identifier] = ACTIONS(1697), + [anon_sym_LPAREN2] = ACTIONS(1701), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1703), + [anon_sym_PLUS] = ACTIONS(1703), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_RBRACK] = ACTIONS(3747), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(1703), + [anon_sym_compl] = ACTIONS(1703), + [anon_sym_DASH_DASH] = ACTIONS(1717), + [anon_sym_PLUS_PLUS] = ACTIONS(1717), + [anon_sym_sizeof] = ACTIONS(1719), + [sym_number_literal] = ACTIONS(1721), + [anon_sym_L_SQUOTE] = ACTIONS(1723), + [anon_sym_u_SQUOTE] = ACTIONS(1723), + [anon_sym_U_SQUOTE] = ACTIONS(1723), + [anon_sym_u8_SQUOTE] = ACTIONS(1723), + [anon_sym_SQUOTE] = ACTIONS(1723), + [anon_sym_L_DQUOTE] = ACTIONS(1725), + [anon_sym_u_DQUOTE] = ACTIONS(1725), + [anon_sym_U_DQUOTE] = ACTIONS(1725), + [anon_sym_u8_DQUOTE] = ACTIONS(1725), + [anon_sym_DQUOTE] = ACTIONS(1725), + [sym_true] = ACTIONS(1727), + [sym_false] = ACTIONS(1727), + [sym_null] = ACTIONS(1727), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1729), + [anon_sym_co_await] = ACTIONS(1731), + [anon_sym_new] = ACTIONS(1733), + [anon_sym_requires] = ACTIONS(1735), + [sym_this] = ACTIONS(1727), + [sym_nullptr] = ACTIONS(1727), + [sym_raw_string_literal] = ACTIONS(1737), + }, + [1493] = { + [sym__expression] = STATE(2982), + [sym_conditional_expression] = STATE(3135), + [sym_assignment_expression] = STATE(3135), + [sym_pointer_expression] = STATE(2788), + [sym_unary_expression] = STATE(3135), + [sym_binary_expression] = STATE(3135), + [sym_update_expression] = STATE(3135), + [sym_cast_expression] = STATE(3135), + [sym_sizeof_expression] = STATE(3135), + [sym_subscript_expression] = STATE(2788), + [sym_call_expression] = STATE(2788), + [sym_field_expression] = STATE(2788), + [sym_compound_literal_expression] = STATE(3135), + [sym_parenthesized_expression] = STATE(2788), + [sym_char_literal] = STATE(2981), + [sym_concatenated_string] = STATE(2981), + [sym_string_literal] = STATE(1970), + [sym__class_name] = STATE(6450), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3135), + [sym_co_await_expression] = STATE(3135), + [sym_new_expression] = STATE(3135), + [sym_delete_expression] = STATE(3135), + [sym_requires_clause] = STATE(3135), + [sym_requires_expression] = STATE(3135), + [sym_lambda_expression] = STATE(3135), + [sym_lambda_capture_specifier] = STATE(4771), + [sym_fold_expression] = STATE(3135), + [sym_parameter_pack_expansion] = STATE(3135), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4904), + [sym_qualified_identifier] = STATE(2788), + [sym_qualified_type_identifier] = STATE(6450), + [sym_user_defined_literal] = STATE(3135), + [sym_identifier] = ACTIONS(1957), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3749), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1753), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_co_await] = ACTIONS(1455), + [anon_sym_new] = ACTIONS(1457), + [anon_sym_requires] = ACTIONS(1459), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + [sym_raw_string_literal] = ACTIONS(1461), + }, + [1494] = { + [sym__expression] = STATE(2975), + [sym_conditional_expression] = STATE(3135), + [sym_assignment_expression] = STATE(3135), + [sym_pointer_expression] = STATE(2788), + [sym_unary_expression] = STATE(3135), + [sym_binary_expression] = STATE(3135), + [sym_update_expression] = STATE(3135), + [sym_cast_expression] = STATE(3135), + [sym_sizeof_expression] = STATE(3135), + [sym_subscript_expression] = STATE(2788), + [sym_call_expression] = STATE(2788), + [sym_field_expression] = STATE(2788), + [sym_compound_literal_expression] = STATE(3135), + [sym_parenthesized_expression] = STATE(2788), + [sym_char_literal] = STATE(2981), + [sym_concatenated_string] = STATE(2981), + [sym_string_literal] = STATE(1970), + [sym__class_name] = STATE(6450), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3135), + [sym_co_await_expression] = STATE(3135), + [sym_new_expression] = STATE(3135), + [sym_delete_expression] = STATE(3135), + [sym_requires_clause] = STATE(3135), + [sym_requires_expression] = STATE(3135), + [sym_lambda_expression] = STATE(3135), + [sym_lambda_capture_specifier] = STATE(4771), + [sym_fold_expression] = STATE(3135), + [sym_parameter_pack_expansion] = STATE(3135), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4904), + [sym_qualified_identifier] = STATE(2788), + [sym_qualified_type_identifier] = STATE(6450), + [sym_user_defined_literal] = STATE(3135), + [sym_identifier] = ACTIONS(1957), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3752), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1753), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_co_await] = ACTIONS(1455), + [anon_sym_new] = ACTIONS(1457), + [anon_sym_requires] = ACTIONS(1459), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + [sym_raw_string_literal] = ACTIONS(1461), + }, + [1495] = { + [sym__declaration_modifiers] = STATE(2175), + [sym__declaration_specifiers] = STATE(3387), + [sym_attribute_specifier] = STATE(2175), + [sym_attribute_declaration] = STATE(2175), + [sym_ms_declspec_modifier] = STATE(2175), + [sym__abstract_declarator] = STATE(5690), + [sym_abstract_parenthesized_declarator] = STATE(5127), + [sym_abstract_pointer_declarator] = STATE(5127), + [sym_abstract_function_declarator] = STATE(5127), + [sym_abstract_array_declarator] = STATE(5127), + [sym_storage_class_specifier] = STATE(2175), + [sym_type_qualifier] = STATE(2175), + [sym__type_specifier] = STATE(3251), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_parameter_list] = STATE(4345), + [sym_parameter_declaration] = STATE(5909), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym_virtual_function_specifier] = STATE(2175), + [sym_dependent_type] = STATE(3481), + [sym_optional_parameter_declaration] = STATE(5909), + [sym_variadic_parameter_declaration] = STATE(5909), + [sym_abstract_reference_declarator] = STATE(5127), + [sym_template_type] = STATE(3395), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(5354), + [sym_qualified_type_identifier] = STATE(3490), + [aux_sym__declaration_specifiers_repeat1] = STATE(2175), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [sym_identifier] = ACTIONS(3755), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3133), + [anon_sym_RPAREN] = ACTIONS(3135), + [anon_sym_LPAREN2] = ACTIONS(3757), + [anon_sym_STAR] = ACTIONS(3759), + [anon_sym_AMP_AMP] = ACTIONS(3761), + [anon_sym_AMP] = ACTIONS(3763), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3765), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3767), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(2438), + [anon_sym_enum] = ACTIONS(1431), + [anon_sym_class] = ACTIONS(1433), + [anon_sym_struct] = ACTIONS(1435), + [anon_sym_union] = ACTIONS(1437), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_typename] = ACTIONS(1451), + [anon_sym_template] = ACTIONS(976), + }, + [1496] = { + [sym__expression] = STATE(3541), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3687), + [anon_sym_LPAREN2] = ACTIONS(3769), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1497] = { + [sym__expression] = STATE(2465), + [sym_conditional_expression] = STATE(2562), + [sym_assignment_expression] = STATE(2562), + [sym_pointer_expression] = STATE(2549), + [sym_unary_expression] = STATE(2562), + [sym_binary_expression] = STATE(2562), + [sym_update_expression] = STATE(2562), + [sym_cast_expression] = STATE(2562), + [sym_sizeof_expression] = STATE(2562), + [sym_subscript_expression] = STATE(2549), + [sym_call_expression] = STATE(2549), + [sym_field_expression] = STATE(2549), + [sym_compound_literal_expression] = STATE(2562), + [sym_parenthesized_expression] = STATE(2549), + [sym_char_literal] = STATE(2344), + [sym_concatenated_string] = STATE(2344), + [sym_string_literal] = STATE(1824), + [sym__class_name] = STATE(6654), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2562), + [sym_co_await_expression] = STATE(2562), + [sym_new_expression] = STATE(2562), + [sym_delete_expression] = STATE(2562), + [sym_requires_clause] = STATE(2562), + [sym_requires_expression] = STATE(2562), + [sym_lambda_expression] = STATE(2562), + [sym_lambda_capture_specifier] = STATE(4787), + [sym_fold_expression] = STATE(2562), + [sym_parameter_pack_expansion] = STATE(2562), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2549), + [sym_qualified_type_identifier] = STATE(6654), + [sym_user_defined_literal] = STATE(2562), + [sym_identifier] = ACTIONS(1697), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3771), + [anon_sym_LPAREN2] = ACTIONS(3773), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1703), + [anon_sym_PLUS] = ACTIONS(1703), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(1703), + [anon_sym_compl] = ACTIONS(1703), + [anon_sym_DASH_DASH] = ACTIONS(1717), + [anon_sym_PLUS_PLUS] = ACTIONS(1717), + [anon_sym_sizeof] = ACTIONS(1719), + [sym_number_literal] = ACTIONS(1721), + [anon_sym_L_SQUOTE] = ACTIONS(1723), + [anon_sym_u_SQUOTE] = ACTIONS(1723), + [anon_sym_U_SQUOTE] = ACTIONS(1723), + [anon_sym_u8_SQUOTE] = ACTIONS(1723), + [anon_sym_SQUOTE] = ACTIONS(1723), + [anon_sym_L_DQUOTE] = ACTIONS(1725), + [anon_sym_u_DQUOTE] = ACTIONS(1725), + [anon_sym_U_DQUOTE] = ACTIONS(1725), + [anon_sym_u8_DQUOTE] = ACTIONS(1725), + [anon_sym_DQUOTE] = ACTIONS(1725), + [sym_true] = ACTIONS(1727), + [sym_false] = ACTIONS(1727), + [sym_null] = ACTIONS(1727), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1729), + [anon_sym_co_await] = ACTIONS(1731), + [anon_sym_new] = ACTIONS(1733), + [anon_sym_requires] = ACTIONS(1735), + [sym_this] = ACTIONS(1727), + [sym_nullptr] = ACTIONS(1727), + [sym_raw_string_literal] = ACTIONS(1737), + }, + [1498] = { + [sym__expression] = STATE(2548), + [sym_conditional_expression] = STATE(2562), + [sym_assignment_expression] = STATE(2562), + [sym_pointer_expression] = STATE(2549), + [sym_unary_expression] = STATE(2562), + [sym_binary_expression] = STATE(2562), + [sym_update_expression] = STATE(2562), + [sym_cast_expression] = STATE(2562), + [sym_sizeof_expression] = STATE(2562), + [sym_subscript_expression] = STATE(2549), + [sym_call_expression] = STATE(2549), + [sym_field_expression] = STATE(2549), + [sym_compound_literal_expression] = STATE(2562), + [sym_parenthesized_expression] = STATE(2549), + [sym_char_literal] = STATE(2344), + [sym_concatenated_string] = STATE(2344), + [sym_string_literal] = STATE(1824), + [sym__class_name] = STATE(6654), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2562), + [sym_co_await_expression] = STATE(2562), + [sym_new_expression] = STATE(2562), + [sym_delete_expression] = STATE(2562), + [sym_requires_clause] = STATE(2562), + [sym_requires_expression] = STATE(2562), + [sym_lambda_expression] = STATE(2562), + [sym_lambda_capture_specifier] = STATE(4787), + [sym_fold_expression] = STATE(2562), + [sym_parameter_pack_expansion] = STATE(2562), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2549), + [sym_qualified_type_identifier] = STATE(6654), + [sym_user_defined_literal] = STATE(2562), + [sym_identifier] = ACTIONS(1697), + [anon_sym_LPAREN2] = ACTIONS(1701), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1703), + [anon_sym_PLUS] = ACTIONS(1703), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_RBRACK] = ACTIONS(3775), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(1703), + [anon_sym_compl] = ACTIONS(1703), + [anon_sym_DASH_DASH] = ACTIONS(1717), + [anon_sym_PLUS_PLUS] = ACTIONS(1717), + [anon_sym_sizeof] = ACTIONS(1719), + [sym_number_literal] = ACTIONS(1721), + [anon_sym_L_SQUOTE] = ACTIONS(1723), + [anon_sym_u_SQUOTE] = ACTIONS(1723), + [anon_sym_U_SQUOTE] = ACTIONS(1723), + [anon_sym_u8_SQUOTE] = ACTIONS(1723), + [anon_sym_SQUOTE] = ACTIONS(1723), + [anon_sym_L_DQUOTE] = ACTIONS(1725), + [anon_sym_u_DQUOTE] = ACTIONS(1725), + [anon_sym_U_DQUOTE] = ACTIONS(1725), + [anon_sym_u8_DQUOTE] = ACTIONS(1725), + [anon_sym_DQUOTE] = ACTIONS(1725), + [sym_true] = ACTIONS(1727), + [sym_false] = ACTIONS(1727), + [sym_null] = ACTIONS(1727), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1729), + [anon_sym_co_await] = ACTIONS(1731), + [anon_sym_new] = ACTIONS(1733), + [anon_sym_requires] = ACTIONS(1735), + [sym_this] = ACTIONS(1727), + [sym_nullptr] = ACTIONS(1727), + [sym_raw_string_literal] = ACTIONS(1737), + }, + [1499] = { + [sym__expression] = STATE(2548), + [sym_conditional_expression] = STATE(2562), + [sym_assignment_expression] = STATE(2562), + [sym_pointer_expression] = STATE(2549), + [sym_unary_expression] = STATE(2562), + [sym_binary_expression] = STATE(2562), + [sym_update_expression] = STATE(2562), + [sym_cast_expression] = STATE(2562), + [sym_sizeof_expression] = STATE(2562), + [sym_subscript_expression] = STATE(2549), + [sym_call_expression] = STATE(2549), + [sym_field_expression] = STATE(2549), + [sym_compound_literal_expression] = STATE(2562), + [sym_parenthesized_expression] = STATE(2549), + [sym_char_literal] = STATE(2344), + [sym_concatenated_string] = STATE(2344), + [sym_string_literal] = STATE(1824), + [sym__class_name] = STATE(6654), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2562), + [sym_co_await_expression] = STATE(2562), + [sym_new_expression] = STATE(2562), + [sym_delete_expression] = STATE(2562), + [sym_requires_clause] = STATE(2562), + [sym_requires_expression] = STATE(2562), + [sym_lambda_expression] = STATE(2562), + [sym_lambda_capture_specifier] = STATE(4787), + [sym_fold_expression] = STATE(2562), + [sym_parameter_pack_expansion] = STATE(2562), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2549), + [sym_qualified_type_identifier] = STATE(6654), + [sym_user_defined_literal] = STATE(2562), + [sym_identifier] = ACTIONS(1697), + [anon_sym_LPAREN2] = ACTIONS(1701), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1703), + [anon_sym_PLUS] = ACTIONS(1703), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_RBRACK] = ACTIONS(3777), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(1703), + [anon_sym_compl] = ACTIONS(1703), + [anon_sym_DASH_DASH] = ACTIONS(1717), + [anon_sym_PLUS_PLUS] = ACTIONS(1717), + [anon_sym_sizeof] = ACTIONS(1719), + [sym_number_literal] = ACTIONS(1721), + [anon_sym_L_SQUOTE] = ACTIONS(1723), + [anon_sym_u_SQUOTE] = ACTIONS(1723), + [anon_sym_U_SQUOTE] = ACTIONS(1723), + [anon_sym_u8_SQUOTE] = ACTIONS(1723), + [anon_sym_SQUOTE] = ACTIONS(1723), + [anon_sym_L_DQUOTE] = ACTIONS(1725), + [anon_sym_u_DQUOTE] = ACTIONS(1725), + [anon_sym_U_DQUOTE] = ACTIONS(1725), + [anon_sym_u8_DQUOTE] = ACTIONS(1725), + [anon_sym_DQUOTE] = ACTIONS(1725), + [sym_true] = ACTIONS(1727), + [sym_false] = ACTIONS(1727), + [sym_null] = ACTIONS(1727), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1729), + [anon_sym_co_await] = ACTIONS(1731), + [anon_sym_new] = ACTIONS(1733), + [anon_sym_requires] = ACTIONS(1735), + [sym_this] = ACTIONS(1727), + [sym_nullptr] = ACTIONS(1727), + [sym_raw_string_literal] = ACTIONS(1737), + }, + [1500] = { + [sym__expression] = STATE(3862), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3779), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1501] = { + [sym__expression] = STATE(2548), + [sym_conditional_expression] = STATE(2562), + [sym_assignment_expression] = STATE(2562), + [sym_pointer_expression] = STATE(2549), + [sym_unary_expression] = STATE(2562), + [sym_binary_expression] = STATE(2562), + [sym_update_expression] = STATE(2562), + [sym_cast_expression] = STATE(2562), + [sym_sizeof_expression] = STATE(2562), + [sym_subscript_expression] = STATE(2549), + [sym_call_expression] = STATE(2549), + [sym_field_expression] = STATE(2549), + [sym_compound_literal_expression] = STATE(2562), + [sym_parenthesized_expression] = STATE(2549), + [sym_char_literal] = STATE(2344), + [sym_concatenated_string] = STATE(2344), + [sym_string_literal] = STATE(1824), + [sym__class_name] = STATE(6654), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2562), + [sym_co_await_expression] = STATE(2562), + [sym_new_expression] = STATE(2562), + [sym_delete_expression] = STATE(2562), + [sym_requires_clause] = STATE(2562), + [sym_requires_expression] = STATE(2562), + [sym_lambda_expression] = STATE(2562), + [sym_lambda_capture_specifier] = STATE(4787), + [sym_fold_expression] = STATE(2562), + [sym_parameter_pack_expansion] = STATE(2562), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2549), + [sym_qualified_type_identifier] = STATE(6654), + [sym_user_defined_literal] = STATE(2562), + [sym_identifier] = ACTIONS(1697), + [anon_sym_LPAREN2] = ACTIONS(1701), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1703), + [anon_sym_PLUS] = ACTIONS(1703), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_RBRACK] = ACTIONS(3781), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(1703), + [anon_sym_compl] = ACTIONS(1703), + [anon_sym_DASH_DASH] = ACTIONS(1717), + [anon_sym_PLUS_PLUS] = ACTIONS(1717), + [anon_sym_sizeof] = ACTIONS(1719), + [sym_number_literal] = ACTIONS(1721), + [anon_sym_L_SQUOTE] = ACTIONS(1723), + [anon_sym_u_SQUOTE] = ACTIONS(1723), + [anon_sym_U_SQUOTE] = ACTIONS(1723), + [anon_sym_u8_SQUOTE] = ACTIONS(1723), + [anon_sym_SQUOTE] = ACTIONS(1723), + [anon_sym_L_DQUOTE] = ACTIONS(1725), + [anon_sym_u_DQUOTE] = ACTIONS(1725), + [anon_sym_U_DQUOTE] = ACTIONS(1725), + [anon_sym_u8_DQUOTE] = ACTIONS(1725), + [anon_sym_DQUOTE] = ACTIONS(1725), + [sym_true] = ACTIONS(1727), + [sym_false] = ACTIONS(1727), + [sym_null] = ACTIONS(1727), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1729), + [anon_sym_co_await] = ACTIONS(1731), + [anon_sym_new] = ACTIONS(1733), + [anon_sym_requires] = ACTIONS(1735), + [sym_this] = ACTIONS(1727), + [sym_nullptr] = ACTIONS(1727), + [sym_raw_string_literal] = ACTIONS(1737), + }, + [1502] = { + [sym__expression] = STATE(2617), + [sym_conditional_expression] = STATE(2821), + [sym_assignment_expression] = STATE(2821), + [sym_pointer_expression] = STATE(2805), + [sym_unary_expression] = STATE(2821), + [sym_binary_expression] = STATE(2821), + [sym_update_expression] = STATE(2821), + [sym_cast_expression] = STATE(2821), + [sym_sizeof_expression] = STATE(2821), + [sym_subscript_expression] = STATE(2805), + [sym_call_expression] = STATE(2805), + [sym_field_expression] = STATE(2805), + [sym_compound_literal_expression] = STATE(2821), + [sym_parenthesized_expression] = STATE(2805), + [sym_char_literal] = STATE(2577), + [sym_concatenated_string] = STATE(2577), + [sym_string_literal] = STATE(1861), + [sym__class_name] = STATE(6652), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2821), + [sym_co_await_expression] = STATE(2821), + [sym_new_expression] = STATE(2821), + [sym_delete_expression] = STATE(2821), + [sym_requires_clause] = STATE(2821), + [sym_requires_expression] = STATE(2821), + [sym_lambda_expression] = STATE(2821), + [sym_lambda_capture_specifier] = STATE(4790), + [sym_fold_expression] = STATE(2821), + [sym_parameter_pack_expansion] = STATE(2821), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4904), + [sym_qualified_identifier] = STATE(2805), + [sym_qualified_type_identifier] = STATE(6652), + [sym_user_defined_literal] = STATE(2821), + [sym_identifier] = ACTIONS(1739), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3783), + [anon_sym_LPAREN2] = ACTIONS(3785), + [anon_sym_BANG] = ACTIONS(1745), + [anon_sym_TILDE] = ACTIONS(1745), + [anon_sym_DASH] = ACTIONS(1743), + [anon_sym_PLUS] = ACTIONS(1743), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1753), + [anon_sym_not] = ACTIONS(1743), + [anon_sym_compl] = ACTIONS(1743), + [anon_sym_DASH_DASH] = ACTIONS(1755), + [anon_sym_PLUS_PLUS] = ACTIONS(1755), + [anon_sym_sizeof] = ACTIONS(1757), + [sym_number_literal] = ACTIONS(1759), + [anon_sym_L_SQUOTE] = ACTIONS(1761), + [anon_sym_u_SQUOTE] = ACTIONS(1761), + [anon_sym_U_SQUOTE] = ACTIONS(1761), + [anon_sym_u8_SQUOTE] = ACTIONS(1761), + [anon_sym_SQUOTE] = ACTIONS(1761), + [anon_sym_L_DQUOTE] = ACTIONS(1763), + [anon_sym_u_DQUOTE] = ACTIONS(1763), + [anon_sym_U_DQUOTE] = ACTIONS(1763), + [anon_sym_u8_DQUOTE] = ACTIONS(1763), + [anon_sym_DQUOTE] = ACTIONS(1763), + [sym_true] = ACTIONS(1765), + [sym_false] = ACTIONS(1765), + [sym_null] = ACTIONS(1765), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1767), + [anon_sym_co_await] = ACTIONS(1769), + [anon_sym_new] = ACTIONS(1771), + [anon_sym_requires] = ACTIONS(1773), + [sym_this] = ACTIONS(1765), + [sym_nullptr] = ACTIONS(1765), + [sym_raw_string_literal] = ACTIONS(1775), + }, + [1503] = { + [sym__expression] = STATE(3558), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3787), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(3703), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1504] = { + [sym__expression] = STATE(3872), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3789), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1505] = { + [sym__declaration_modifiers] = STATE(2175), + [sym__declaration_specifiers] = STATE(3387), + [sym_attribute_specifier] = STATE(2175), + [sym_attribute_declaration] = STATE(2175), + [sym_ms_declspec_modifier] = STATE(2175), + [sym__abstract_declarator] = STATE(5634), + [sym_abstract_parenthesized_declarator] = STATE(5127), + [sym_abstract_pointer_declarator] = STATE(5127), + [sym_abstract_function_declarator] = STATE(5127), + [sym_abstract_array_declarator] = STATE(5127), + [sym_storage_class_specifier] = STATE(2175), + [sym_type_qualifier] = STATE(2175), + [sym__type_specifier] = STATE(3251), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_parameter_list] = STATE(4345), + [sym_parameter_declaration] = STATE(5842), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym_virtual_function_specifier] = STATE(2175), + [sym_dependent_type] = STATE(3481), + [sym_optional_parameter_declaration] = STATE(5842), + [sym_variadic_parameter_declaration] = STATE(5842), + [sym_abstract_reference_declarator] = STATE(5127), + [sym_template_type] = STATE(3395), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(5354), + [sym_qualified_type_identifier] = STATE(3490), + [aux_sym__declaration_specifiers_repeat1] = STATE(2175), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [sym_identifier] = ACTIONS(3755), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1465), + [anon_sym_RPAREN] = ACTIONS(3791), + [anon_sym_LPAREN2] = ACTIONS(3757), + [anon_sym_STAR] = ACTIONS(3759), + [anon_sym_AMP_AMP] = ACTIONS(3761), + [anon_sym_AMP] = ACTIONS(3763), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3765), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(3767), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(2438), + [anon_sym_enum] = ACTIONS(1431), + [anon_sym_class] = ACTIONS(1433), + [anon_sym_struct] = ACTIONS(1435), + [anon_sym_union] = ACTIONS(1437), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_typename] = ACTIONS(1451), + [anon_sym_template] = ACTIONS(976), + }, + [1506] = { + [sym__expression] = STATE(3663), + [sym_comma_expression] = STATE(7222), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1507] = { + [sym__expression] = STATE(3888), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3793), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1508] = { + [sym__expression] = STATE(3852), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3795), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1509] = { + [sym__expression] = STATE(3886), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3797), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1510] = { + [sym__expression] = STATE(3827), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3799), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1511] = { + [sym__expression] = STATE(3891), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3801), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1512] = { + [sym__expression] = STATE(3824), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3803), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1513] = { + [sym__expression] = STATE(3013), + [sym_conditional_expression] = STATE(3135), + [sym_assignment_expression] = STATE(3135), + [sym_pointer_expression] = STATE(2788), + [sym_unary_expression] = STATE(3135), + [sym_binary_expression] = STATE(3135), + [sym_update_expression] = STATE(3135), + [sym_cast_expression] = STATE(3135), + [sym_sizeof_expression] = STATE(3135), + [sym_subscript_expression] = STATE(2788), + [sym_call_expression] = STATE(2788), + [sym_field_expression] = STATE(2788), + [sym_compound_literal_expression] = STATE(3135), + [sym_parenthesized_expression] = STATE(2788), + [sym_char_literal] = STATE(2981), + [sym_concatenated_string] = STATE(2981), + [sym_string_literal] = STATE(1970), + [sym__class_name] = STATE(6450), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3135), + [sym_co_await_expression] = STATE(3135), + [sym_new_expression] = STATE(3135), + [sym_delete_expression] = STATE(3135), + [sym_requires_clause] = STATE(3135), + [sym_requires_expression] = STATE(3135), + [sym_lambda_expression] = STATE(3135), + [sym_lambda_capture_specifier] = STATE(4771), + [sym_fold_expression] = STATE(3135), + [sym_parameter_pack_expansion] = STATE(3135), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4904), + [sym_qualified_identifier] = STATE(2788), + [sym_qualified_type_identifier] = STATE(6450), + [sym_user_defined_literal] = STATE(3135), + [sym_identifier] = ACTIONS(1957), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3805), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1753), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_co_await] = ACTIONS(1455), + [anon_sym_new] = ACTIONS(1457), + [anon_sym_requires] = ACTIONS(1459), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + [sym_raw_string_literal] = ACTIONS(1461), + }, + [1514] = { + [sym__expression] = STATE(3015), + [sym_conditional_expression] = STATE(3135), + [sym_assignment_expression] = STATE(3135), + [sym_pointer_expression] = STATE(2788), + [sym_unary_expression] = STATE(3135), + [sym_binary_expression] = STATE(3135), + [sym_update_expression] = STATE(3135), + [sym_cast_expression] = STATE(3135), + [sym_sizeof_expression] = STATE(3135), + [sym_subscript_expression] = STATE(2788), + [sym_call_expression] = STATE(2788), + [sym_field_expression] = STATE(2788), + [sym_compound_literal_expression] = STATE(3135), + [sym_parenthesized_expression] = STATE(2788), + [sym_char_literal] = STATE(2981), + [sym_concatenated_string] = STATE(2981), + [sym_string_literal] = STATE(1970), + [sym__class_name] = STATE(6450), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3135), + [sym_co_await_expression] = STATE(3135), + [sym_new_expression] = STATE(3135), + [sym_delete_expression] = STATE(3135), + [sym_requires_clause] = STATE(3135), + [sym_requires_expression] = STATE(3135), + [sym_lambda_expression] = STATE(3135), + [sym_lambda_capture_specifier] = STATE(4771), + [sym_fold_expression] = STATE(3135), + [sym_parameter_pack_expansion] = STATE(3135), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4904), + [sym_qualified_identifier] = STATE(2788), + [sym_qualified_type_identifier] = STATE(6450), + [sym_user_defined_literal] = STATE(3135), + [sym_identifier] = ACTIONS(1957), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3808), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1753), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_co_await] = ACTIONS(1455), + [anon_sym_new] = ACTIONS(1457), + [anon_sym_requires] = ACTIONS(1459), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + [sym_raw_string_literal] = ACTIONS(1461), + }, + [1515] = { + [sym__expression] = STATE(3021), + [sym_conditional_expression] = STATE(3135), + [sym_assignment_expression] = STATE(3135), + [sym_pointer_expression] = STATE(2788), + [sym_unary_expression] = STATE(3135), + [sym_binary_expression] = STATE(3135), + [sym_update_expression] = STATE(3135), + [sym_cast_expression] = STATE(3135), + [sym_sizeof_expression] = STATE(3135), + [sym_subscript_expression] = STATE(2788), + [sym_call_expression] = STATE(2788), + [sym_field_expression] = STATE(2788), + [sym_compound_literal_expression] = STATE(3135), + [sym_parenthesized_expression] = STATE(2788), + [sym_char_literal] = STATE(2981), + [sym_concatenated_string] = STATE(2981), + [sym_string_literal] = STATE(1970), + [sym__class_name] = STATE(6450), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3135), + [sym_co_await_expression] = STATE(3135), + [sym_new_expression] = STATE(3135), + [sym_delete_expression] = STATE(3135), + [sym_requires_clause] = STATE(3135), + [sym_requires_expression] = STATE(3135), + [sym_lambda_expression] = STATE(3135), + [sym_lambda_capture_specifier] = STATE(4771), + [sym_fold_expression] = STATE(3135), + [sym_parameter_pack_expansion] = STATE(3135), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4904), + [sym_qualified_identifier] = STATE(2788), + [sym_qualified_type_identifier] = STATE(6450), + [sym_user_defined_literal] = STATE(3135), + [sym_identifier] = ACTIONS(1957), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3811), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1753), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_co_await] = ACTIONS(1455), + [anon_sym_new] = ACTIONS(1457), + [anon_sym_requires] = ACTIONS(1459), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + [sym_raw_string_literal] = ACTIONS(1461), + }, + [1516] = { + [sym__expression] = STATE(3022), + [sym_conditional_expression] = STATE(3135), + [sym_assignment_expression] = STATE(3135), + [sym_pointer_expression] = STATE(2788), + [sym_unary_expression] = STATE(3135), + [sym_binary_expression] = STATE(3135), + [sym_update_expression] = STATE(3135), + [sym_cast_expression] = STATE(3135), + [sym_sizeof_expression] = STATE(3135), + [sym_subscript_expression] = STATE(2788), + [sym_call_expression] = STATE(2788), + [sym_field_expression] = STATE(2788), + [sym_compound_literal_expression] = STATE(3135), + [sym_parenthesized_expression] = STATE(2788), + [sym_char_literal] = STATE(2981), + [sym_concatenated_string] = STATE(2981), + [sym_string_literal] = STATE(1970), + [sym__class_name] = STATE(6450), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3135), + [sym_co_await_expression] = STATE(3135), + [sym_new_expression] = STATE(3135), + [sym_delete_expression] = STATE(3135), + [sym_requires_clause] = STATE(3135), + [sym_requires_expression] = STATE(3135), + [sym_lambda_expression] = STATE(3135), + [sym_lambda_capture_specifier] = STATE(4771), + [sym_fold_expression] = STATE(3135), + [sym_parameter_pack_expansion] = STATE(3135), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4904), + [sym_qualified_identifier] = STATE(2788), + [sym_qualified_type_identifier] = STATE(6450), + [sym_user_defined_literal] = STATE(3135), + [sym_identifier] = ACTIONS(1957), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3814), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1753), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_co_await] = ACTIONS(1455), + [anon_sym_new] = ACTIONS(1457), + [anon_sym_requires] = ACTIONS(1459), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + [sym_raw_string_literal] = ACTIONS(1461), + }, + [1517] = { + [sym__expression] = STATE(3022), + [sym_conditional_expression] = STATE(3135), + [sym_assignment_expression] = STATE(3135), + [sym_pointer_expression] = STATE(2788), + [sym_unary_expression] = STATE(3135), + [sym_binary_expression] = STATE(3135), + [sym_update_expression] = STATE(3135), + [sym_cast_expression] = STATE(3135), + [sym_sizeof_expression] = STATE(3135), + [sym_subscript_expression] = STATE(2788), + [sym_call_expression] = STATE(2788), + [sym_field_expression] = STATE(2788), + [sym_compound_literal_expression] = STATE(3135), + [sym_parenthesized_expression] = STATE(2788), + [sym_char_literal] = STATE(2981), + [sym_concatenated_string] = STATE(2981), + [sym_string_literal] = STATE(1970), + [sym__class_name] = STATE(6450), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3135), + [sym_co_await_expression] = STATE(3135), + [sym_new_expression] = STATE(3135), + [sym_delete_expression] = STATE(3135), + [sym_requires_clause] = STATE(3135), + [sym_requires_expression] = STATE(3135), + [sym_lambda_expression] = STATE(3135), + [sym_lambda_capture_specifier] = STATE(4771), + [sym_fold_expression] = STATE(3135), + [sym_parameter_pack_expansion] = STATE(3135), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4904), + [sym_qualified_identifier] = STATE(2788), + [sym_qualified_type_identifier] = STATE(6450), + [sym_user_defined_literal] = STATE(3135), + [sym_identifier] = ACTIONS(1957), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3817), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1753), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_co_await] = ACTIONS(1455), + [anon_sym_new] = ACTIONS(1457), + [anon_sym_requires] = ACTIONS(1459), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + [sym_raw_string_literal] = ACTIONS(1461), + }, + [1518] = { + [sym__expression] = STATE(3558), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3820), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(3703), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1519] = { + [sym__expression] = STATE(3022), + [sym_conditional_expression] = STATE(3135), + [sym_assignment_expression] = STATE(3135), + [sym_pointer_expression] = STATE(2788), + [sym_unary_expression] = STATE(3135), + [sym_binary_expression] = STATE(3135), + [sym_update_expression] = STATE(3135), + [sym_cast_expression] = STATE(3135), + [sym_sizeof_expression] = STATE(3135), + [sym_subscript_expression] = STATE(2788), + [sym_call_expression] = STATE(2788), + [sym_field_expression] = STATE(2788), + [sym_compound_literal_expression] = STATE(3135), + [sym_parenthesized_expression] = STATE(2788), + [sym_char_literal] = STATE(2981), + [sym_concatenated_string] = STATE(2981), + [sym_string_literal] = STATE(1970), + [sym__class_name] = STATE(6450), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3135), + [sym_co_await_expression] = STATE(3135), + [sym_new_expression] = STATE(3135), + [sym_delete_expression] = STATE(3135), + [sym_requires_clause] = STATE(3135), + [sym_requires_expression] = STATE(3135), + [sym_lambda_expression] = STATE(3135), + [sym_lambda_capture_specifier] = STATE(4771), + [sym_fold_expression] = STATE(3135), + [sym_parameter_pack_expansion] = STATE(3135), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4904), + [sym_qualified_identifier] = STATE(2788), + [sym_qualified_type_identifier] = STATE(6450), + [sym_user_defined_literal] = STATE(3135), + [sym_identifier] = ACTIONS(1957), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3822), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1753), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_co_await] = ACTIONS(1455), + [anon_sym_new] = ACTIONS(1457), + [anon_sym_requires] = ACTIONS(1459), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + [sym_raw_string_literal] = ACTIONS(1461), + }, + [1520] = { + [sym__expression] = STATE(3028), + [sym_conditional_expression] = STATE(3135), + [sym_assignment_expression] = STATE(3135), + [sym_pointer_expression] = STATE(2788), + [sym_unary_expression] = STATE(3135), + [sym_binary_expression] = STATE(3135), + [sym_update_expression] = STATE(3135), + [sym_cast_expression] = STATE(3135), + [sym_sizeof_expression] = STATE(3135), + [sym_subscript_expression] = STATE(2788), + [sym_call_expression] = STATE(2788), + [sym_field_expression] = STATE(2788), + [sym_compound_literal_expression] = STATE(3135), + [sym_parenthesized_expression] = STATE(2788), + [sym_char_literal] = STATE(2981), + [sym_concatenated_string] = STATE(2981), + [sym_string_literal] = STATE(1970), + [sym__class_name] = STATE(6450), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3135), + [sym_co_await_expression] = STATE(3135), + [sym_new_expression] = STATE(3135), + [sym_delete_expression] = STATE(3135), + [sym_requires_clause] = STATE(3135), + [sym_requires_expression] = STATE(3135), + [sym_lambda_expression] = STATE(3135), + [sym_lambda_capture_specifier] = STATE(4771), + [sym_fold_expression] = STATE(3135), + [sym_parameter_pack_expansion] = STATE(3135), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4904), + [sym_qualified_identifier] = STATE(2788), + [sym_qualified_type_identifier] = STATE(6450), + [sym_user_defined_literal] = STATE(3135), + [sym_identifier] = ACTIONS(1957), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3825), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1753), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_co_await] = ACTIONS(1455), + [anon_sym_new] = ACTIONS(1457), + [anon_sym_requires] = ACTIONS(1459), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + [sym_raw_string_literal] = ACTIONS(1461), + }, + [1521] = { + [sym__expression] = STATE(3028), + [sym_conditional_expression] = STATE(3135), + [sym_assignment_expression] = STATE(3135), + [sym_pointer_expression] = STATE(2788), + [sym_unary_expression] = STATE(3135), + [sym_binary_expression] = STATE(3135), + [sym_update_expression] = STATE(3135), + [sym_cast_expression] = STATE(3135), + [sym_sizeof_expression] = STATE(3135), + [sym_subscript_expression] = STATE(2788), + [sym_call_expression] = STATE(2788), + [sym_field_expression] = STATE(2788), + [sym_compound_literal_expression] = STATE(3135), + [sym_parenthesized_expression] = STATE(2788), + [sym_char_literal] = STATE(2981), + [sym_concatenated_string] = STATE(2981), + [sym_string_literal] = STATE(1970), + [sym__class_name] = STATE(6450), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3135), + [sym_co_await_expression] = STATE(3135), + [sym_new_expression] = STATE(3135), + [sym_delete_expression] = STATE(3135), + [sym_requires_clause] = STATE(3135), + [sym_requires_expression] = STATE(3135), + [sym_lambda_expression] = STATE(3135), + [sym_lambda_capture_specifier] = STATE(4771), + [sym_fold_expression] = STATE(3135), + [sym_parameter_pack_expansion] = STATE(3135), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4904), + [sym_qualified_identifier] = STATE(2788), + [sym_qualified_type_identifier] = STATE(6450), + [sym_user_defined_literal] = STATE(3135), + [sym_identifier] = ACTIONS(1957), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3828), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1753), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_co_await] = ACTIONS(1455), + [anon_sym_new] = ACTIONS(1457), + [anon_sym_requires] = ACTIONS(1459), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + [sym_raw_string_literal] = ACTIONS(1461), + }, + [1522] = { + [sym__expression] = STATE(3832), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_RPAREN] = ACTIONS(3831), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1523] = { + [sym__expression] = STATE(3871), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3833), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1524] = { + [sym__expression] = STATE(3855), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3835), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1525] = { + [sym__expression] = STATE(3860), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(3837), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1526] = { + [sym__expression] = STATE(2922), + [sym_conditional_expression] = STATE(2999), + [sym_assignment_expression] = STATE(2999), + [sym_pointer_expression] = STATE(2973), + [sym_unary_expression] = STATE(2999), + [sym_binary_expression] = STATE(2999), + [sym_update_expression] = STATE(2999), + [sym_cast_expression] = STATE(2999), + [sym_sizeof_expression] = STATE(2999), + [sym_subscript_expression] = STATE(2973), + [sym_call_expression] = STATE(2973), + [sym_field_expression] = STATE(2973), + [sym_compound_literal_expression] = STATE(2999), + [sym_parenthesized_expression] = STATE(2973), + [sym_char_literal] = STATE(2933), + [sym_concatenated_string] = STATE(2933), + [sym_string_literal] = STATE(1927), + [sym__class_name] = STATE(6445), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2999), + [sym_co_await_expression] = STATE(2999), + [sym_new_expression] = STATE(2999), + [sym_delete_expression] = STATE(2999), + [sym_requires_clause] = STATE(2999), + [sym_requires_expression] = STATE(2999), + [sym_lambda_expression] = STATE(2999), + [sym_lambda_capture_specifier] = STATE(4767), + [sym_fold_expression] = STATE(2999), + [sym_parameter_pack_expansion] = STATE(2999), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2973), + [sym_qualified_type_identifier] = STATE(6445), + [sym_user_defined_literal] = STATE(2999), + [sym_identifier] = ACTIONS(1919), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3839), + [anon_sym_LPAREN2] = ACTIONS(3841), + [anon_sym_BANG] = ACTIONS(1925), + [anon_sym_TILDE] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1923), + [anon_sym_PLUS] = ACTIONS(1923), + [anon_sym_STAR] = ACTIONS(2671), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_COLON_COLON] = ACTIONS(1929), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1933), + [anon_sym_not] = ACTIONS(1923), + [anon_sym_compl] = ACTIONS(1923), + [anon_sym_DASH_DASH] = ACTIONS(1935), + [anon_sym_PLUS_PLUS] = ACTIONS(1935), + [anon_sym_sizeof] = ACTIONS(1937), + [sym_number_literal] = ACTIONS(1939), + [anon_sym_L_SQUOTE] = ACTIONS(1941), + [anon_sym_u_SQUOTE] = ACTIONS(1941), + [anon_sym_U_SQUOTE] = ACTIONS(1941), + [anon_sym_u8_SQUOTE] = ACTIONS(1941), + [anon_sym_SQUOTE] = ACTIONS(1941), + [anon_sym_L_DQUOTE] = ACTIONS(1943), + [anon_sym_u_DQUOTE] = ACTIONS(1943), + [anon_sym_U_DQUOTE] = ACTIONS(1943), + [anon_sym_u8_DQUOTE] = ACTIONS(1943), + [anon_sym_DQUOTE] = ACTIONS(1943), + [sym_true] = ACTIONS(1945), + [sym_false] = ACTIONS(1945), + [sym_null] = ACTIONS(1945), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1947), + [anon_sym_co_await] = ACTIONS(1949), + [anon_sym_new] = ACTIONS(1951), + [anon_sym_requires] = ACTIONS(1953), + [sym_this] = ACTIONS(1945), + [sym_nullptr] = ACTIONS(1945), + [sym_raw_string_literal] = ACTIONS(1955), + }, + [1527] = { + [sym__expression] = STATE(2548), + [sym_conditional_expression] = STATE(2562), + [sym_assignment_expression] = STATE(2562), + [sym_pointer_expression] = STATE(2549), + [sym_unary_expression] = STATE(2562), + [sym_binary_expression] = STATE(2562), + [sym_update_expression] = STATE(2562), + [sym_cast_expression] = STATE(2562), + [sym_sizeof_expression] = STATE(2562), + [sym_subscript_expression] = STATE(2549), + [sym_call_expression] = STATE(2549), + [sym_field_expression] = STATE(2549), + [sym_compound_literal_expression] = STATE(2562), + [sym_parenthesized_expression] = STATE(2549), + [sym_char_literal] = STATE(2344), + [sym_concatenated_string] = STATE(2344), + [sym_string_literal] = STATE(1824), + [sym__class_name] = STATE(6654), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2562), + [sym_co_await_expression] = STATE(2562), + [sym_new_expression] = STATE(2562), + [sym_delete_expression] = STATE(2562), + [sym_requires_clause] = STATE(2562), + [sym_requires_expression] = STATE(2562), + [sym_lambda_expression] = STATE(2562), + [sym_lambda_capture_specifier] = STATE(4787), + [sym_fold_expression] = STATE(2562), + [sym_parameter_pack_expansion] = STATE(2562), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2549), + [sym_qualified_type_identifier] = STATE(6654), + [sym_user_defined_literal] = STATE(2562), + [sym_identifier] = ACTIONS(1697), + [anon_sym_LPAREN2] = ACTIONS(1701), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1703), + [anon_sym_PLUS] = ACTIONS(1703), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_RBRACK] = ACTIONS(3843), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(1703), + [anon_sym_compl] = ACTIONS(1703), + [anon_sym_DASH_DASH] = ACTIONS(1717), + [anon_sym_PLUS_PLUS] = ACTIONS(1717), + [anon_sym_sizeof] = ACTIONS(1719), + [sym_number_literal] = ACTIONS(1721), + [anon_sym_L_SQUOTE] = ACTIONS(1723), + [anon_sym_u_SQUOTE] = ACTIONS(1723), + [anon_sym_U_SQUOTE] = ACTIONS(1723), + [anon_sym_u8_SQUOTE] = ACTIONS(1723), + [anon_sym_SQUOTE] = ACTIONS(1723), + [anon_sym_L_DQUOTE] = ACTIONS(1725), + [anon_sym_u_DQUOTE] = ACTIONS(1725), + [anon_sym_U_DQUOTE] = ACTIONS(1725), + [anon_sym_u8_DQUOTE] = ACTIONS(1725), + [anon_sym_DQUOTE] = ACTIONS(1725), + [sym_true] = ACTIONS(1727), + [sym_false] = ACTIONS(1727), + [sym_null] = ACTIONS(1727), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1729), + [anon_sym_co_await] = ACTIONS(1731), + [anon_sym_new] = ACTIONS(1733), + [anon_sym_requires] = ACTIONS(1735), + [sym_this] = ACTIONS(1727), + [sym_nullptr] = ACTIONS(1727), + [sym_raw_string_literal] = ACTIONS(1737), + }, + [1528] = { + [sym__expression] = STATE(3859), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3845), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1529] = { + [sym__expression] = STATE(2548), + [sym_conditional_expression] = STATE(2562), + [sym_assignment_expression] = STATE(2562), + [sym_pointer_expression] = STATE(2549), + [sym_unary_expression] = STATE(2562), + [sym_binary_expression] = STATE(2562), + [sym_update_expression] = STATE(2562), + [sym_cast_expression] = STATE(2562), + [sym_sizeof_expression] = STATE(2562), + [sym_subscript_expression] = STATE(2549), + [sym_call_expression] = STATE(2549), + [sym_field_expression] = STATE(2549), + [sym_compound_literal_expression] = STATE(2562), + [sym_parenthesized_expression] = STATE(2549), + [sym_char_literal] = STATE(2344), + [sym_concatenated_string] = STATE(2344), + [sym_string_literal] = STATE(1824), + [sym__class_name] = STATE(6654), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2562), + [sym_co_await_expression] = STATE(2562), + [sym_new_expression] = STATE(2562), + [sym_delete_expression] = STATE(2562), + [sym_requires_clause] = STATE(2562), + [sym_requires_expression] = STATE(2562), + [sym_lambda_expression] = STATE(2562), + [sym_lambda_capture_specifier] = STATE(4787), + [sym_fold_expression] = STATE(2562), + [sym_parameter_pack_expansion] = STATE(2562), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2549), + [sym_qualified_type_identifier] = STATE(6654), + [sym_user_defined_literal] = STATE(2562), + [sym_identifier] = ACTIONS(1697), + [anon_sym_LPAREN2] = ACTIONS(1701), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1703), + [anon_sym_PLUS] = ACTIONS(1703), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_RBRACK] = ACTIONS(3847), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(1703), + [anon_sym_compl] = ACTIONS(1703), + [anon_sym_DASH_DASH] = ACTIONS(1717), + [anon_sym_PLUS_PLUS] = ACTIONS(1717), + [anon_sym_sizeof] = ACTIONS(1719), + [sym_number_literal] = ACTIONS(1721), + [anon_sym_L_SQUOTE] = ACTIONS(1723), + [anon_sym_u_SQUOTE] = ACTIONS(1723), + [anon_sym_U_SQUOTE] = ACTIONS(1723), + [anon_sym_u8_SQUOTE] = ACTIONS(1723), + [anon_sym_SQUOTE] = ACTIONS(1723), + [anon_sym_L_DQUOTE] = ACTIONS(1725), + [anon_sym_u_DQUOTE] = ACTIONS(1725), + [anon_sym_U_DQUOTE] = ACTIONS(1725), + [anon_sym_u8_DQUOTE] = ACTIONS(1725), + [anon_sym_DQUOTE] = ACTIONS(1725), + [sym_true] = ACTIONS(1727), + [sym_false] = ACTIONS(1727), + [sym_null] = ACTIONS(1727), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1729), + [anon_sym_co_await] = ACTIONS(1731), + [anon_sym_new] = ACTIONS(1733), + [anon_sym_requires] = ACTIONS(1735), + [sym_this] = ACTIONS(1727), + [sym_nullptr] = ACTIONS(1727), + [sym_raw_string_literal] = ACTIONS(1737), + }, + [1530] = { + [sym__expression] = STATE(3631), + [sym_comma_expression] = STATE(6442), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1531] = { + [sym__expression] = STATE(3844), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3849), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1532] = { + [sym__expression] = STATE(3960), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3851), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1533] = { + [sym__expression] = STATE(2548), + [sym_conditional_expression] = STATE(2562), + [sym_assignment_expression] = STATE(2562), + [sym_pointer_expression] = STATE(2549), + [sym_unary_expression] = STATE(2562), + [sym_binary_expression] = STATE(2562), + [sym_update_expression] = STATE(2562), + [sym_cast_expression] = STATE(2562), + [sym_sizeof_expression] = STATE(2562), + [sym_subscript_expression] = STATE(2549), + [sym_call_expression] = STATE(2549), + [sym_field_expression] = STATE(2549), + [sym_compound_literal_expression] = STATE(2562), + [sym_parenthesized_expression] = STATE(2549), + [sym_char_literal] = STATE(2344), + [sym_concatenated_string] = STATE(2344), + [sym_string_literal] = STATE(1824), + [sym__class_name] = STATE(6654), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2562), + [sym_co_await_expression] = STATE(2562), + [sym_new_expression] = STATE(2562), + [sym_delete_expression] = STATE(2562), + [sym_requires_clause] = STATE(2562), + [sym_requires_expression] = STATE(2562), + [sym_lambda_expression] = STATE(2562), + [sym_lambda_capture_specifier] = STATE(4787), + [sym_fold_expression] = STATE(2562), + [sym_parameter_pack_expansion] = STATE(2562), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2549), + [sym_qualified_type_identifier] = STATE(6654), + [sym_user_defined_literal] = STATE(2562), + [sym_identifier] = ACTIONS(1697), + [anon_sym_LPAREN2] = ACTIONS(1701), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1703), + [anon_sym_PLUS] = ACTIONS(1703), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_RBRACK] = ACTIONS(3853), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(1703), + [anon_sym_compl] = ACTIONS(1703), + [anon_sym_DASH_DASH] = ACTIONS(1717), + [anon_sym_PLUS_PLUS] = ACTIONS(1717), + [anon_sym_sizeof] = ACTIONS(1719), + [sym_number_literal] = ACTIONS(1721), + [anon_sym_L_SQUOTE] = ACTIONS(1723), + [anon_sym_u_SQUOTE] = ACTIONS(1723), + [anon_sym_U_SQUOTE] = ACTIONS(1723), + [anon_sym_u8_SQUOTE] = ACTIONS(1723), + [anon_sym_SQUOTE] = ACTIONS(1723), + [anon_sym_L_DQUOTE] = ACTIONS(1725), + [anon_sym_u_DQUOTE] = ACTIONS(1725), + [anon_sym_U_DQUOTE] = ACTIONS(1725), + [anon_sym_u8_DQUOTE] = ACTIONS(1725), + [anon_sym_DQUOTE] = ACTIONS(1725), + [sym_true] = ACTIONS(1727), + [sym_false] = ACTIONS(1727), + [sym_null] = ACTIONS(1727), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1729), + [anon_sym_co_await] = ACTIONS(1731), + [anon_sym_new] = ACTIONS(1733), + [anon_sym_requires] = ACTIONS(1735), + [sym_this] = ACTIONS(1727), + [sym_nullptr] = ACTIONS(1727), + [sym_raw_string_literal] = ACTIONS(1737), + }, + [1534] = { + [sym__expression] = STATE(3987), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3855), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1535] = { + [sym__expression] = STATE(3027), + [sym_conditional_expression] = STATE(2562), + [sym_assignment_expression] = STATE(2562), + [sym_pointer_expression] = STATE(2549), + [sym_unary_expression] = STATE(2562), + [sym_binary_expression] = STATE(2562), + [sym_update_expression] = STATE(2562), + [sym_cast_expression] = STATE(2562), + [sym_sizeof_expression] = STATE(2562), + [sym_subscript_expression] = STATE(2549), + [sym_call_expression] = STATE(2549), + [sym_field_expression] = STATE(2549), + [sym_compound_literal_expression] = STATE(2562), + [sym_parenthesized_expression] = STATE(2549), + [sym_char_literal] = STATE(2344), + [sym_concatenated_string] = STATE(2344), + [sym_string_literal] = STATE(1824), + [sym__class_name] = STATE(6654), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2562), + [sym_co_await_expression] = STATE(2562), + [sym_new_expression] = STATE(2562), + [sym_delete_expression] = STATE(2562), + [sym_requires_clause] = STATE(2562), + [sym_requires_expression] = STATE(2562), + [sym_lambda_expression] = STATE(2562), + [sym_lambda_capture_specifier] = STATE(4787), + [sym_fold_expression] = STATE(2562), + [sym_parameter_pack_expansion] = STATE(2562), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2549), + [sym_qualified_type_identifier] = STATE(6654), + [sym_user_defined_literal] = STATE(2562), + [sym_identifier] = ACTIONS(1697), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3771), + [anon_sym_LPAREN2] = ACTIONS(3857), + [anon_sym_BANG] = ACTIONS(1965), + [anon_sym_TILDE] = ACTIONS(1965), + [anon_sym_DASH] = ACTIONS(1963), + [anon_sym_PLUS] = ACTIONS(1963), + [anon_sym_STAR] = ACTIONS(3117), + [anon_sym_AMP] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(1969), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(1963), + [anon_sym_compl] = ACTIONS(1963), + [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1971), + [anon_sym_sizeof] = ACTIONS(1973), + [sym_number_literal] = ACTIONS(1721), + [anon_sym_L_SQUOTE] = ACTIONS(1723), + [anon_sym_u_SQUOTE] = ACTIONS(1723), + [anon_sym_U_SQUOTE] = ACTIONS(1723), + [anon_sym_u8_SQUOTE] = ACTIONS(1723), + [anon_sym_SQUOTE] = ACTIONS(1723), + [anon_sym_L_DQUOTE] = ACTIONS(1725), + [anon_sym_u_DQUOTE] = ACTIONS(1725), + [anon_sym_U_DQUOTE] = ACTIONS(1725), + [anon_sym_u8_DQUOTE] = ACTIONS(1725), + [anon_sym_DQUOTE] = ACTIONS(1725), + [sym_true] = ACTIONS(1727), + [sym_false] = ACTIONS(1727), + [sym_null] = ACTIONS(1727), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1975), + [anon_sym_co_await] = ACTIONS(1977), + [anon_sym_new] = ACTIONS(1979), + [anon_sym_requires] = ACTIONS(1735), + [sym_this] = ACTIONS(1727), + [sym_nullptr] = ACTIONS(1727), + [sym_raw_string_literal] = ACTIONS(1737), + }, + [1536] = { + [sym__expression] = STATE(3682), + [sym_conditional_expression] = STATE(3865), + [sym_assignment_expression] = STATE(3865), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3865), + [sym_binary_expression] = STATE(3865), + [sym_update_expression] = STATE(3865), + [sym_cast_expression] = STATE(3865), + [sym_sizeof_expression] = STATE(3865), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3865), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3707), + [sym_concatenated_string] = STATE(3707), + [sym_string_literal] = STATE(3250), + [sym__class_name] = STATE(6539), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3865), + [sym_co_await_expression] = STATE(3865), + [sym_new_expression] = STATE(3865), + [sym_delete_expression] = STATE(3865), + [sym_requires_clause] = STATE(3865), + [sym_requires_expression] = STATE(3865), + [sym_lambda_expression] = STATE(3865), + [sym_lambda_capture_specifier] = STATE(4789), + [sym_fold_expression] = STATE(3865), + [sym_parameter_pack_expansion] = STATE(3865), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(6539), + [sym_user_defined_literal] = STATE(3865), + [sym_identifier] = ACTIONS(3105), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3859), + [anon_sym_LPAREN2] = ACTIONS(3861), + [anon_sym_BANG] = ACTIONS(2667), + [anon_sym_TILDE] = ACTIONS(2667), + [anon_sym_DASH] = ACTIONS(2669), + [anon_sym_PLUS] = ACTIONS(2669), + [anon_sym_STAR] = ACTIONS(2671), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_COLON_COLON] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1933), + [anon_sym_not] = ACTIONS(2669), + [anon_sym_compl] = ACTIONS(2669), + [anon_sym_DASH_DASH] = ACTIONS(2687), + [anon_sym_PLUS_PLUS] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2689), + [sym_number_literal] = ACTIONS(2691), + [anon_sym_L_SQUOTE] = ACTIONS(2693), + [anon_sym_u_SQUOTE] = ACTIONS(2693), + [anon_sym_U_SQUOTE] = ACTIONS(2693), + [anon_sym_u8_SQUOTE] = ACTIONS(2693), + [anon_sym_SQUOTE] = ACTIONS(2693), + [anon_sym_L_DQUOTE] = ACTIONS(2695), + [anon_sym_u_DQUOTE] = ACTIONS(2695), + [anon_sym_U_DQUOTE] = ACTIONS(2695), + [anon_sym_u8_DQUOTE] = ACTIONS(2695), + [anon_sym_DQUOTE] = ACTIONS(2695), + [sym_true] = ACTIONS(2697), + [sym_false] = ACTIONS(2697), + [sym_null] = ACTIONS(2697), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(2707), + [anon_sym_co_await] = ACTIONS(2709), + [anon_sym_new] = ACTIONS(2711), + [anon_sym_requires] = ACTIONS(2713), + [sym_this] = ACTIONS(2697), + [sym_nullptr] = ACTIONS(2697), + [sym_raw_string_literal] = ACTIONS(2715), + }, + [1537] = { + [sym__expression] = STATE(2548), + [sym_conditional_expression] = STATE(2562), + [sym_assignment_expression] = STATE(2562), + [sym_pointer_expression] = STATE(2549), + [sym_unary_expression] = STATE(2562), + [sym_binary_expression] = STATE(2562), + [sym_update_expression] = STATE(2562), + [sym_cast_expression] = STATE(2562), + [sym_sizeof_expression] = STATE(2562), + [sym_subscript_expression] = STATE(2549), + [sym_call_expression] = STATE(2549), + [sym_field_expression] = STATE(2549), + [sym_compound_literal_expression] = STATE(2562), + [sym_parenthesized_expression] = STATE(2549), + [sym_char_literal] = STATE(2344), + [sym_concatenated_string] = STATE(2344), + [sym_string_literal] = STATE(1824), + [sym__class_name] = STATE(6654), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2562), + [sym_co_await_expression] = STATE(2562), + [sym_new_expression] = STATE(2562), + [sym_delete_expression] = STATE(2562), + [sym_requires_clause] = STATE(2562), + [sym_requires_expression] = STATE(2562), + [sym_lambda_expression] = STATE(2562), + [sym_lambda_capture_specifier] = STATE(4787), + [sym_fold_expression] = STATE(2562), + [sym_parameter_pack_expansion] = STATE(2562), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2549), + [sym_qualified_type_identifier] = STATE(6654), + [sym_user_defined_literal] = STATE(2562), + [sym_identifier] = ACTIONS(1697), + [anon_sym_LPAREN2] = ACTIONS(1701), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1703), + [anon_sym_PLUS] = ACTIONS(1703), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_RBRACK] = ACTIONS(3863), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(1703), + [anon_sym_compl] = ACTIONS(1703), + [anon_sym_DASH_DASH] = ACTIONS(1717), + [anon_sym_PLUS_PLUS] = ACTIONS(1717), + [anon_sym_sizeof] = ACTIONS(1719), + [sym_number_literal] = ACTIONS(1721), + [anon_sym_L_SQUOTE] = ACTIONS(1723), + [anon_sym_u_SQUOTE] = ACTIONS(1723), + [anon_sym_U_SQUOTE] = ACTIONS(1723), + [anon_sym_u8_SQUOTE] = ACTIONS(1723), + [anon_sym_SQUOTE] = ACTIONS(1723), + [anon_sym_L_DQUOTE] = ACTIONS(1725), + [anon_sym_u_DQUOTE] = ACTIONS(1725), + [anon_sym_U_DQUOTE] = ACTIONS(1725), + [anon_sym_u8_DQUOTE] = ACTIONS(1725), + [anon_sym_DQUOTE] = ACTIONS(1725), + [sym_true] = ACTIONS(1727), + [sym_false] = ACTIONS(1727), + [sym_null] = ACTIONS(1727), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1729), + [anon_sym_co_await] = ACTIONS(1731), + [anon_sym_new] = ACTIONS(1733), + [anon_sym_requires] = ACTIONS(1735), + [sym_this] = ACTIONS(1727), + [sym_nullptr] = ACTIONS(1727), + [sym_raw_string_literal] = ACTIONS(1737), + }, + [1538] = { + [sym__expression] = STATE(3572), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1539] = { + [sym__expression] = STATE(3943), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1540] = { + [sym__expression] = STATE(3966), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1541] = { + [sym__expression] = STATE(2928), + [sym_conditional_expression] = STATE(2999), + [sym_assignment_expression] = STATE(2999), + [sym_pointer_expression] = STATE(2973), + [sym_unary_expression] = STATE(2999), + [sym_binary_expression] = STATE(2999), + [sym_update_expression] = STATE(2999), + [sym_cast_expression] = STATE(2999), + [sym_sizeof_expression] = STATE(2999), + [sym_subscript_expression] = STATE(2973), + [sym_call_expression] = STATE(2973), + [sym_field_expression] = STATE(2973), + [sym_compound_literal_expression] = STATE(2999), + [sym_parenthesized_expression] = STATE(2973), + [sym_char_literal] = STATE(2933), + [sym_concatenated_string] = STATE(2933), + [sym_string_literal] = STATE(1927), + [sym__class_name] = STATE(6445), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2999), + [sym_co_await_expression] = STATE(2999), + [sym_new_expression] = STATE(2999), + [sym_delete_expression] = STATE(2999), + [sym_requires_clause] = STATE(2999), + [sym_requires_expression] = STATE(2999), + [sym_lambda_expression] = STATE(2999), + [sym_lambda_capture_specifier] = STATE(4767), + [sym_fold_expression] = STATE(2999), + [sym_parameter_pack_expansion] = STATE(2999), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2973), + [sym_qualified_type_identifier] = STATE(6445), + [sym_user_defined_literal] = STATE(2999), + [sym_identifier] = ACTIONS(1919), + [anon_sym_LPAREN2] = ACTIONS(1921), + [anon_sym_BANG] = ACTIONS(1925), + [anon_sym_TILDE] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1923), + [anon_sym_PLUS] = ACTIONS(1923), + [anon_sym_STAR] = ACTIONS(2671), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_COLON_COLON] = ACTIONS(1929), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1933), + [anon_sym_not] = ACTIONS(1923), + [anon_sym_compl] = ACTIONS(1923), + [anon_sym_DASH_DASH] = ACTIONS(1935), + [anon_sym_PLUS_PLUS] = ACTIONS(1935), + [anon_sym_sizeof] = ACTIONS(1937), + [sym_number_literal] = ACTIONS(1939), + [anon_sym_L_SQUOTE] = ACTIONS(1941), + [anon_sym_u_SQUOTE] = ACTIONS(1941), + [anon_sym_U_SQUOTE] = ACTIONS(1941), + [anon_sym_u8_SQUOTE] = ACTIONS(1941), + [anon_sym_SQUOTE] = ACTIONS(1941), + [anon_sym_L_DQUOTE] = ACTIONS(1943), + [anon_sym_u_DQUOTE] = ACTIONS(1943), + [anon_sym_U_DQUOTE] = ACTIONS(1943), + [anon_sym_u8_DQUOTE] = ACTIONS(1943), + [anon_sym_DQUOTE] = ACTIONS(1943), + [sym_true] = ACTIONS(1945), + [sym_false] = ACTIONS(1945), + [sym_null] = ACTIONS(1945), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1947), + [anon_sym_co_await] = ACTIONS(1949), + [anon_sym_new] = ACTIONS(1951), + [anon_sym_requires] = ACTIONS(1953), + [sym_this] = ACTIONS(1945), + [sym_nullptr] = ACTIONS(1945), + [sym_raw_string_literal] = ACTIONS(1955), + }, + [1542] = { + [sym__expression] = STATE(3971), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3121), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3121), + [sym_call_expression] = STATE(3121), + [sym_field_expression] = STATE(3121), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3121), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3121), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3109), + [anon_sym_LPAREN2] = ACTIONS(3111), + [anon_sym_BANG] = ACTIONS(3115), + [anon_sym_TILDE] = ACTIONS(3115), + [anon_sym_DASH] = ACTIONS(3113), + [anon_sym_PLUS] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(3117), + [anon_sym_AMP] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(3119), + [anon_sym_LBRACK] = ACTIONS(3865), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3113), + [anon_sym_compl] = ACTIONS(3113), + [anon_sym_DASH_DASH] = ACTIONS(3121), + [anon_sym_PLUS_PLUS] = ACTIONS(3121), + [anon_sym_sizeof] = ACTIONS(3123), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3125), + [anon_sym_co_await] = ACTIONS(3127), + [anon_sym_new] = ACTIONS(3129), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1543] = { + [sym__expression] = STATE(2923), + [sym_conditional_expression] = STATE(2999), + [sym_assignment_expression] = STATE(2999), + [sym_pointer_expression] = STATE(2973), + [sym_unary_expression] = STATE(2999), + [sym_binary_expression] = STATE(2999), + [sym_update_expression] = STATE(2999), + [sym_cast_expression] = STATE(2999), + [sym_sizeof_expression] = STATE(2999), + [sym_subscript_expression] = STATE(2973), + [sym_call_expression] = STATE(2973), + [sym_field_expression] = STATE(2973), + [sym_compound_literal_expression] = STATE(2999), + [sym_parenthesized_expression] = STATE(2973), + [sym_char_literal] = STATE(2933), + [sym_concatenated_string] = STATE(2933), + [sym_string_literal] = STATE(1927), + [sym__class_name] = STATE(6445), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2999), + [sym_co_await_expression] = STATE(2999), + [sym_new_expression] = STATE(2999), + [sym_delete_expression] = STATE(2999), + [sym_requires_clause] = STATE(2999), + [sym_requires_expression] = STATE(2999), + [sym_lambda_expression] = STATE(2999), + [sym_lambda_capture_specifier] = STATE(4767), + [sym_fold_expression] = STATE(2999), + [sym_parameter_pack_expansion] = STATE(2999), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2973), + [sym_qualified_type_identifier] = STATE(6445), + [sym_user_defined_literal] = STATE(2999), + [sym_identifier] = ACTIONS(1919), + [anon_sym_LPAREN2] = ACTIONS(1921), + [anon_sym_BANG] = ACTIONS(1925), + [anon_sym_TILDE] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1923), + [anon_sym_PLUS] = ACTIONS(1923), + [anon_sym_STAR] = ACTIONS(2671), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_COLON_COLON] = ACTIONS(1929), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1933), + [anon_sym_not] = ACTIONS(1923), + [anon_sym_compl] = ACTIONS(1923), + [anon_sym_DASH_DASH] = ACTIONS(1935), + [anon_sym_PLUS_PLUS] = ACTIONS(1935), + [anon_sym_sizeof] = ACTIONS(1937), + [sym_number_literal] = ACTIONS(1939), + [anon_sym_L_SQUOTE] = ACTIONS(1941), + [anon_sym_u_SQUOTE] = ACTIONS(1941), + [anon_sym_U_SQUOTE] = ACTIONS(1941), + [anon_sym_u8_SQUOTE] = ACTIONS(1941), + [anon_sym_SQUOTE] = ACTIONS(1941), + [anon_sym_L_DQUOTE] = ACTIONS(1943), + [anon_sym_u_DQUOTE] = ACTIONS(1943), + [anon_sym_U_DQUOTE] = ACTIONS(1943), + [anon_sym_u8_DQUOTE] = ACTIONS(1943), + [anon_sym_DQUOTE] = ACTIONS(1943), + [sym_true] = ACTIONS(1945), + [sym_false] = ACTIONS(1945), + [sym_null] = ACTIONS(1945), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1947), + [anon_sym_co_await] = ACTIONS(1949), + [anon_sym_new] = ACTIONS(1951), + [anon_sym_requires] = ACTIONS(1953), + [sym_this] = ACTIONS(1945), + [sym_nullptr] = ACTIONS(1945), + [sym_raw_string_literal] = ACTIONS(1955), + }, + [1544] = { + [sym__expression] = STATE(3816), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3121), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3121), + [sym_call_expression] = STATE(3121), + [sym_field_expression] = STATE(3121), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3121), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3121), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3109), + [anon_sym_LPAREN2] = ACTIONS(3111), + [anon_sym_BANG] = ACTIONS(3115), + [anon_sym_TILDE] = ACTIONS(3115), + [anon_sym_DASH] = ACTIONS(3113), + [anon_sym_PLUS] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(3117), + [anon_sym_AMP] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(3119), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3113), + [anon_sym_compl] = ACTIONS(3113), + [anon_sym_DASH_DASH] = ACTIONS(3121), + [anon_sym_PLUS_PLUS] = ACTIONS(3121), + [anon_sym_sizeof] = ACTIONS(3123), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3125), + [anon_sym_co_await] = ACTIONS(3127), + [anon_sym_new] = ACTIONS(3129), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1545] = { + [sym__expression] = STATE(3979), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1546] = { + [sym__expression] = STATE(3917), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3121), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3121), + [sym_call_expression] = STATE(3121), + [sym_field_expression] = STATE(3121), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3121), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3121), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3109), + [anon_sym_LPAREN2] = ACTIONS(3111), + [anon_sym_BANG] = ACTIONS(3115), + [anon_sym_TILDE] = ACTIONS(3115), + [anon_sym_DASH] = ACTIONS(3113), + [anon_sym_PLUS] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(3117), + [anon_sym_AMP] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(3119), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3113), + [anon_sym_compl] = ACTIONS(3113), + [anon_sym_DASH_DASH] = ACTIONS(3121), + [anon_sym_PLUS_PLUS] = ACTIONS(3121), + [anon_sym_sizeof] = ACTIONS(3123), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3125), + [anon_sym_co_await] = ACTIONS(3127), + [anon_sym_new] = ACTIONS(3129), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1547] = { + [sym__expression] = STATE(2990), + [sym_conditional_expression] = STATE(2562), + [sym_assignment_expression] = STATE(2562), + [sym_pointer_expression] = STATE(2549), + [sym_unary_expression] = STATE(2562), + [sym_binary_expression] = STATE(2562), + [sym_update_expression] = STATE(2562), + [sym_cast_expression] = STATE(2562), + [sym_sizeof_expression] = STATE(2562), + [sym_subscript_expression] = STATE(2549), + [sym_call_expression] = STATE(2549), + [sym_field_expression] = STATE(2549), + [sym_compound_literal_expression] = STATE(2562), + [sym_parenthesized_expression] = STATE(2549), + [sym_char_literal] = STATE(2344), + [sym_concatenated_string] = STATE(2344), + [sym_string_literal] = STATE(1824), + [sym__class_name] = STATE(6654), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2562), + [sym_co_await_expression] = STATE(2562), + [sym_new_expression] = STATE(2562), + [sym_delete_expression] = STATE(2562), + [sym_requires_clause] = STATE(2562), + [sym_requires_expression] = STATE(2562), + [sym_lambda_expression] = STATE(2562), + [sym_lambda_capture_specifier] = STATE(4787), + [sym_fold_expression] = STATE(2562), + [sym_parameter_pack_expansion] = STATE(2562), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2549), + [sym_qualified_type_identifier] = STATE(6654), + [sym_user_defined_literal] = STATE(2562), + [sym_identifier] = ACTIONS(1697), + [anon_sym_LPAREN2] = ACTIONS(1961), + [anon_sym_BANG] = ACTIONS(1965), + [anon_sym_TILDE] = ACTIONS(1965), + [anon_sym_DASH] = ACTIONS(1963), + [anon_sym_PLUS] = ACTIONS(1963), + [anon_sym_STAR] = ACTIONS(3117), + [anon_sym_AMP] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(1969), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(1963), + [anon_sym_compl] = ACTIONS(1963), + [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1971), + [anon_sym_sizeof] = ACTIONS(1973), + [sym_number_literal] = ACTIONS(1721), + [anon_sym_L_SQUOTE] = ACTIONS(1723), + [anon_sym_u_SQUOTE] = ACTIONS(1723), + [anon_sym_U_SQUOTE] = ACTIONS(1723), + [anon_sym_u8_SQUOTE] = ACTIONS(1723), + [anon_sym_SQUOTE] = ACTIONS(1723), + [anon_sym_L_DQUOTE] = ACTIONS(1725), + [anon_sym_u_DQUOTE] = ACTIONS(1725), + [anon_sym_U_DQUOTE] = ACTIONS(1725), + [anon_sym_u8_DQUOTE] = ACTIONS(1725), + [anon_sym_DQUOTE] = ACTIONS(1725), + [sym_true] = ACTIONS(1727), + [sym_false] = ACTIONS(1727), + [sym_null] = ACTIONS(1727), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1975), + [anon_sym_co_await] = ACTIONS(1977), + [anon_sym_new] = ACTIONS(1979), + [anon_sym_requires] = ACTIONS(1735), + [sym_this] = ACTIONS(1727), + [sym_nullptr] = ACTIONS(1727), + [sym_raw_string_literal] = ACTIONS(1737), + }, + [1548] = { + [sym__expression] = STATE(2991), + [sym_conditional_expression] = STATE(2562), + [sym_assignment_expression] = STATE(2562), + [sym_pointer_expression] = STATE(2549), + [sym_unary_expression] = STATE(2562), + [sym_binary_expression] = STATE(2562), + [sym_update_expression] = STATE(2562), + [sym_cast_expression] = STATE(2562), + [sym_sizeof_expression] = STATE(2562), + [sym_subscript_expression] = STATE(2549), + [sym_call_expression] = STATE(2549), + [sym_field_expression] = STATE(2549), + [sym_compound_literal_expression] = STATE(2562), + [sym_parenthesized_expression] = STATE(2549), + [sym_char_literal] = STATE(2344), + [sym_concatenated_string] = STATE(2344), + [sym_string_literal] = STATE(1824), + [sym__class_name] = STATE(6654), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2562), + [sym_co_await_expression] = STATE(2562), + [sym_new_expression] = STATE(2562), + [sym_delete_expression] = STATE(2562), + [sym_requires_clause] = STATE(2562), + [sym_requires_expression] = STATE(2562), + [sym_lambda_expression] = STATE(2562), + [sym_lambda_capture_specifier] = STATE(4787), + [sym_fold_expression] = STATE(2562), + [sym_parameter_pack_expansion] = STATE(2562), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2549), + [sym_qualified_type_identifier] = STATE(6654), + [sym_user_defined_literal] = STATE(2562), + [sym_identifier] = ACTIONS(1697), + [anon_sym_LPAREN2] = ACTIONS(1961), + [anon_sym_BANG] = ACTIONS(1965), + [anon_sym_TILDE] = ACTIONS(1965), + [anon_sym_DASH] = ACTIONS(1963), + [anon_sym_PLUS] = ACTIONS(1963), + [anon_sym_STAR] = ACTIONS(3117), + [anon_sym_AMP] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(1969), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(1963), + [anon_sym_compl] = ACTIONS(1963), + [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1971), + [anon_sym_sizeof] = ACTIONS(1973), + [sym_number_literal] = ACTIONS(1721), + [anon_sym_L_SQUOTE] = ACTIONS(1723), + [anon_sym_u_SQUOTE] = ACTIONS(1723), + [anon_sym_U_SQUOTE] = ACTIONS(1723), + [anon_sym_u8_SQUOTE] = ACTIONS(1723), + [anon_sym_SQUOTE] = ACTIONS(1723), + [anon_sym_L_DQUOTE] = ACTIONS(1725), + [anon_sym_u_DQUOTE] = ACTIONS(1725), + [anon_sym_U_DQUOTE] = ACTIONS(1725), + [anon_sym_u8_DQUOTE] = ACTIONS(1725), + [anon_sym_DQUOTE] = ACTIONS(1725), + [sym_true] = ACTIONS(1727), + [sym_false] = ACTIONS(1727), + [sym_null] = ACTIONS(1727), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1975), + [anon_sym_co_await] = ACTIONS(1977), + [anon_sym_new] = ACTIONS(1979), + [anon_sym_requires] = ACTIONS(1735), + [sym_this] = ACTIONS(1727), + [sym_nullptr] = ACTIONS(1727), + [sym_raw_string_literal] = ACTIONS(1737), + }, + [1549] = { + [sym__expression] = STATE(2565), + [sym_conditional_expression] = STATE(2562), + [sym_assignment_expression] = STATE(2562), + [sym_pointer_expression] = STATE(2549), + [sym_unary_expression] = STATE(2562), + [sym_binary_expression] = STATE(2562), + [sym_update_expression] = STATE(2562), + [sym_cast_expression] = STATE(2562), + [sym_sizeof_expression] = STATE(2562), + [sym_subscript_expression] = STATE(2549), + [sym_call_expression] = STATE(2549), + [sym_field_expression] = STATE(2549), + [sym_compound_literal_expression] = STATE(2562), + [sym_parenthesized_expression] = STATE(2549), + [sym_char_literal] = STATE(2344), + [sym_concatenated_string] = STATE(2344), + [sym_string_literal] = STATE(1824), + [sym__class_name] = STATE(6654), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2562), + [sym_co_await_expression] = STATE(2562), + [sym_new_expression] = STATE(2562), + [sym_delete_expression] = STATE(2562), + [sym_requires_clause] = STATE(2562), + [sym_requires_expression] = STATE(2562), + [sym_lambda_expression] = STATE(2562), + [sym_lambda_capture_specifier] = STATE(4787), + [sym_fold_expression] = STATE(2562), + [sym_parameter_pack_expansion] = STATE(2562), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2549), + [sym_qualified_type_identifier] = STATE(6654), + [sym_user_defined_literal] = STATE(2562), + [sym_identifier] = ACTIONS(1697), + [anon_sym_LPAREN2] = ACTIONS(1701), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1703), + [anon_sym_PLUS] = ACTIONS(1703), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(1703), + [anon_sym_compl] = ACTIONS(1703), + [anon_sym_DASH_DASH] = ACTIONS(1717), + [anon_sym_PLUS_PLUS] = ACTIONS(1717), + [anon_sym_sizeof] = ACTIONS(1719), + [sym_number_literal] = ACTIONS(1721), + [anon_sym_L_SQUOTE] = ACTIONS(1723), + [anon_sym_u_SQUOTE] = ACTIONS(1723), + [anon_sym_U_SQUOTE] = ACTIONS(1723), + [anon_sym_u8_SQUOTE] = ACTIONS(1723), + [anon_sym_SQUOTE] = ACTIONS(1723), + [anon_sym_L_DQUOTE] = ACTIONS(1725), + [anon_sym_u_DQUOTE] = ACTIONS(1725), + [anon_sym_U_DQUOTE] = ACTIONS(1725), + [anon_sym_u8_DQUOTE] = ACTIONS(1725), + [anon_sym_DQUOTE] = ACTIONS(1725), + [sym_true] = ACTIONS(1727), + [sym_false] = ACTIONS(1727), + [sym_null] = ACTIONS(1727), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1729), + [anon_sym_co_await] = ACTIONS(1731), + [anon_sym_new] = ACTIONS(1733), + [anon_sym_requires] = ACTIONS(1735), + [sym_this] = ACTIONS(1727), + [sym_nullptr] = ACTIONS(1727), + [sym_raw_string_literal] = ACTIONS(1737), + }, + [1550] = { + [sym__expression] = STATE(2559), + [sym_conditional_expression] = STATE(2562), + [sym_assignment_expression] = STATE(2562), + [sym_pointer_expression] = STATE(2549), + [sym_unary_expression] = STATE(2562), + [sym_binary_expression] = STATE(2562), + [sym_update_expression] = STATE(2562), + [sym_cast_expression] = STATE(2562), + [sym_sizeof_expression] = STATE(2562), + [sym_subscript_expression] = STATE(2549), + [sym_call_expression] = STATE(2549), + [sym_field_expression] = STATE(2549), + [sym_compound_literal_expression] = STATE(2562), + [sym_parenthesized_expression] = STATE(2549), + [sym_char_literal] = STATE(2344), + [sym_concatenated_string] = STATE(2344), + [sym_string_literal] = STATE(1824), + [sym__class_name] = STATE(6654), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2562), + [sym_co_await_expression] = STATE(2562), + [sym_new_expression] = STATE(2562), + [sym_delete_expression] = STATE(2562), + [sym_requires_clause] = STATE(2562), + [sym_requires_expression] = STATE(2562), + [sym_lambda_expression] = STATE(2562), + [sym_lambda_capture_specifier] = STATE(4787), + [sym_fold_expression] = STATE(2562), + [sym_parameter_pack_expansion] = STATE(2562), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2549), + [sym_qualified_type_identifier] = STATE(6654), + [sym_user_defined_literal] = STATE(2562), + [sym_identifier] = ACTIONS(1697), + [anon_sym_LPAREN2] = ACTIONS(1701), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1703), + [anon_sym_PLUS] = ACTIONS(1703), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(1703), + [anon_sym_compl] = ACTIONS(1703), + [anon_sym_DASH_DASH] = ACTIONS(1717), + [anon_sym_PLUS_PLUS] = ACTIONS(1717), + [anon_sym_sizeof] = ACTIONS(1719), + [sym_number_literal] = ACTIONS(1721), + [anon_sym_L_SQUOTE] = ACTIONS(1723), + [anon_sym_u_SQUOTE] = ACTIONS(1723), + [anon_sym_U_SQUOTE] = ACTIONS(1723), + [anon_sym_u8_SQUOTE] = ACTIONS(1723), + [anon_sym_SQUOTE] = ACTIONS(1723), + [anon_sym_L_DQUOTE] = ACTIONS(1725), + [anon_sym_u_DQUOTE] = ACTIONS(1725), + [anon_sym_U_DQUOTE] = ACTIONS(1725), + [anon_sym_u8_DQUOTE] = ACTIONS(1725), + [anon_sym_DQUOTE] = ACTIONS(1725), + [sym_true] = ACTIONS(1727), + [sym_false] = ACTIONS(1727), + [sym_null] = ACTIONS(1727), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1729), + [anon_sym_co_await] = ACTIONS(1731), + [anon_sym_new] = ACTIONS(1733), + [anon_sym_requires] = ACTIONS(1735), + [sym_this] = ACTIONS(1727), + [sym_nullptr] = ACTIONS(1727), + [sym_raw_string_literal] = ACTIONS(1737), + }, + [1551] = { + [sym__expression] = STATE(3021), + [sym_conditional_expression] = STATE(3135), + [sym_assignment_expression] = STATE(3135), + [sym_pointer_expression] = STATE(2788), + [sym_unary_expression] = STATE(3135), + [sym_binary_expression] = STATE(3135), + [sym_update_expression] = STATE(3135), + [sym_cast_expression] = STATE(3135), + [sym_sizeof_expression] = STATE(3135), + [sym_subscript_expression] = STATE(2788), + [sym_call_expression] = STATE(2788), + [sym_field_expression] = STATE(2788), + [sym_compound_literal_expression] = STATE(3135), + [sym_parenthesized_expression] = STATE(2788), + [sym_char_literal] = STATE(2981), + [sym_concatenated_string] = STATE(2981), + [sym_string_literal] = STATE(1970), + [sym__class_name] = STATE(6450), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3135), + [sym_co_await_expression] = STATE(3135), + [sym_new_expression] = STATE(3135), + [sym_delete_expression] = STATE(3135), + [sym_requires_clause] = STATE(3135), + [sym_requires_expression] = STATE(3135), + [sym_lambda_expression] = STATE(3135), + [sym_lambda_capture_specifier] = STATE(4771), + [sym_fold_expression] = STATE(3135), + [sym_parameter_pack_expansion] = STATE(3135), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4904), + [sym_qualified_identifier] = STATE(2788), + [sym_qualified_type_identifier] = STATE(6450), + [sym_user_defined_literal] = STATE(3135), + [sym_identifier] = ACTIONS(1957), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1753), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_co_await] = ACTIONS(1455), + [anon_sym_new] = ACTIONS(1457), + [anon_sym_requires] = ACTIONS(1459), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + [sym_raw_string_literal] = ACTIONS(1461), + }, + [1552] = { + [sym__expression] = STATE(3015), + [sym_conditional_expression] = STATE(3135), + [sym_assignment_expression] = STATE(3135), + [sym_pointer_expression] = STATE(2788), + [sym_unary_expression] = STATE(3135), + [sym_binary_expression] = STATE(3135), + [sym_update_expression] = STATE(3135), + [sym_cast_expression] = STATE(3135), + [sym_sizeof_expression] = STATE(3135), + [sym_subscript_expression] = STATE(2788), + [sym_call_expression] = STATE(2788), + [sym_field_expression] = STATE(2788), + [sym_compound_literal_expression] = STATE(3135), + [sym_parenthesized_expression] = STATE(2788), + [sym_char_literal] = STATE(2981), + [sym_concatenated_string] = STATE(2981), + [sym_string_literal] = STATE(1970), + [sym__class_name] = STATE(6450), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3135), + [sym_co_await_expression] = STATE(3135), + [sym_new_expression] = STATE(3135), + [sym_delete_expression] = STATE(3135), + [sym_requires_clause] = STATE(3135), + [sym_requires_expression] = STATE(3135), + [sym_lambda_expression] = STATE(3135), + [sym_lambda_capture_specifier] = STATE(4771), + [sym_fold_expression] = STATE(3135), + [sym_parameter_pack_expansion] = STATE(3135), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4904), + [sym_qualified_identifier] = STATE(2788), + [sym_qualified_type_identifier] = STATE(6450), + [sym_user_defined_literal] = STATE(3135), + [sym_identifier] = ACTIONS(1957), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1753), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_co_await] = ACTIONS(1455), + [anon_sym_new] = ACTIONS(1457), + [anon_sym_requires] = ACTIONS(1459), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + [sym_raw_string_literal] = ACTIONS(1461), + }, + [1553] = { + [sym__expression] = STATE(3013), + [sym_conditional_expression] = STATE(3135), + [sym_assignment_expression] = STATE(3135), + [sym_pointer_expression] = STATE(2788), + [sym_unary_expression] = STATE(3135), + [sym_binary_expression] = STATE(3135), + [sym_update_expression] = STATE(3135), + [sym_cast_expression] = STATE(3135), + [sym_sizeof_expression] = STATE(3135), + [sym_subscript_expression] = STATE(2788), + [sym_call_expression] = STATE(2788), + [sym_field_expression] = STATE(2788), + [sym_compound_literal_expression] = STATE(3135), + [sym_parenthesized_expression] = STATE(2788), + [sym_char_literal] = STATE(2981), + [sym_concatenated_string] = STATE(2981), + [sym_string_literal] = STATE(1970), + [sym__class_name] = STATE(6450), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3135), + [sym_co_await_expression] = STATE(3135), + [sym_new_expression] = STATE(3135), + [sym_delete_expression] = STATE(3135), + [sym_requires_clause] = STATE(3135), + [sym_requires_expression] = STATE(3135), + [sym_lambda_expression] = STATE(3135), + [sym_lambda_capture_specifier] = STATE(4771), + [sym_fold_expression] = STATE(3135), + [sym_parameter_pack_expansion] = STATE(3135), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4904), + [sym_qualified_identifier] = STATE(2788), + [sym_qualified_type_identifier] = STATE(6450), + [sym_user_defined_literal] = STATE(3135), + [sym_identifier] = ACTIONS(1957), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1753), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_co_await] = ACTIONS(1455), + [anon_sym_new] = ACTIONS(1457), + [anon_sym_requires] = ACTIONS(1459), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + [sym_raw_string_literal] = ACTIONS(1461), + }, + [1554] = { + [sym__expression] = STATE(2984), + [sym_conditional_expression] = STATE(3135), + [sym_assignment_expression] = STATE(3135), + [sym_pointer_expression] = STATE(2788), + [sym_unary_expression] = STATE(3135), + [sym_binary_expression] = STATE(3135), + [sym_update_expression] = STATE(3135), + [sym_cast_expression] = STATE(3135), + [sym_sizeof_expression] = STATE(3135), + [sym_subscript_expression] = STATE(2788), + [sym_call_expression] = STATE(2788), + [sym_field_expression] = STATE(2788), + [sym_compound_literal_expression] = STATE(3135), + [sym_parenthesized_expression] = STATE(2788), + [sym_char_literal] = STATE(2981), + [sym_concatenated_string] = STATE(2981), + [sym_string_literal] = STATE(1970), + [sym__class_name] = STATE(6450), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3135), + [sym_co_await_expression] = STATE(3135), + [sym_new_expression] = STATE(3135), + [sym_delete_expression] = STATE(3135), + [sym_requires_clause] = STATE(3135), + [sym_requires_expression] = STATE(3135), + [sym_lambda_expression] = STATE(3135), + [sym_lambda_capture_specifier] = STATE(4771), + [sym_fold_expression] = STATE(3135), + [sym_parameter_pack_expansion] = STATE(3135), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4904), + [sym_qualified_identifier] = STATE(2788), + [sym_qualified_type_identifier] = STATE(6450), + [sym_user_defined_literal] = STATE(3135), + [sym_identifier] = ACTIONS(1957), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1753), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_co_await] = ACTIONS(1455), + [anon_sym_new] = ACTIONS(1457), + [anon_sym_requires] = ACTIONS(1459), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + [sym_raw_string_literal] = ACTIONS(1461), + }, + [1555] = { + [sym__expression] = STATE(2975), + [sym_conditional_expression] = STATE(3135), + [sym_assignment_expression] = STATE(3135), + [sym_pointer_expression] = STATE(2788), + [sym_unary_expression] = STATE(3135), + [sym_binary_expression] = STATE(3135), + [sym_update_expression] = STATE(3135), + [sym_cast_expression] = STATE(3135), + [sym_sizeof_expression] = STATE(3135), + [sym_subscript_expression] = STATE(2788), + [sym_call_expression] = STATE(2788), + [sym_field_expression] = STATE(2788), + [sym_compound_literal_expression] = STATE(3135), + [sym_parenthesized_expression] = STATE(2788), + [sym_char_literal] = STATE(2981), + [sym_concatenated_string] = STATE(2981), + [sym_string_literal] = STATE(1970), + [sym__class_name] = STATE(6450), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3135), + [sym_co_await_expression] = STATE(3135), + [sym_new_expression] = STATE(3135), + [sym_delete_expression] = STATE(3135), + [sym_requires_clause] = STATE(3135), + [sym_requires_expression] = STATE(3135), + [sym_lambda_expression] = STATE(3135), + [sym_lambda_capture_specifier] = STATE(4771), + [sym_fold_expression] = STATE(3135), + [sym_parameter_pack_expansion] = STATE(3135), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4904), + [sym_qualified_identifier] = STATE(2788), + [sym_qualified_type_identifier] = STATE(6450), + [sym_user_defined_literal] = STATE(3135), + [sym_identifier] = ACTIONS(1957), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1753), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_co_await] = ACTIONS(1455), + [anon_sym_new] = ACTIONS(1457), + [anon_sym_requires] = ACTIONS(1459), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + [sym_raw_string_literal] = ACTIONS(1461), + }, + [1556] = { + [sym__expression] = STATE(2982), + [sym_conditional_expression] = STATE(3135), + [sym_assignment_expression] = STATE(3135), + [sym_pointer_expression] = STATE(2788), + [sym_unary_expression] = STATE(3135), + [sym_binary_expression] = STATE(3135), + [sym_update_expression] = STATE(3135), + [sym_cast_expression] = STATE(3135), + [sym_sizeof_expression] = STATE(3135), + [sym_subscript_expression] = STATE(2788), + [sym_call_expression] = STATE(2788), + [sym_field_expression] = STATE(2788), + [sym_compound_literal_expression] = STATE(3135), + [sym_parenthesized_expression] = STATE(2788), + [sym_char_literal] = STATE(2981), + [sym_concatenated_string] = STATE(2981), + [sym_string_literal] = STATE(1970), + [sym__class_name] = STATE(6450), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3135), + [sym_co_await_expression] = STATE(3135), + [sym_new_expression] = STATE(3135), + [sym_delete_expression] = STATE(3135), + [sym_requires_clause] = STATE(3135), + [sym_requires_expression] = STATE(3135), + [sym_lambda_expression] = STATE(3135), + [sym_lambda_capture_specifier] = STATE(4771), + [sym_fold_expression] = STATE(3135), + [sym_parameter_pack_expansion] = STATE(3135), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4904), + [sym_qualified_identifier] = STATE(2788), + [sym_qualified_type_identifier] = STATE(6450), + [sym_user_defined_literal] = STATE(3135), + [sym_identifier] = ACTIONS(1957), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1753), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_co_await] = ACTIONS(1455), + [anon_sym_new] = ACTIONS(1457), + [anon_sym_requires] = ACTIONS(1459), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + [sym_raw_string_literal] = ACTIONS(1461), + }, + [1557] = { + [sym__expression] = STATE(2496), + [sym_conditional_expression] = STATE(2562), + [sym_assignment_expression] = STATE(2562), + [sym_pointer_expression] = STATE(2549), + [sym_unary_expression] = STATE(2562), + [sym_binary_expression] = STATE(2562), + [sym_update_expression] = STATE(2562), + [sym_cast_expression] = STATE(2562), + [sym_sizeof_expression] = STATE(2562), + [sym_subscript_expression] = STATE(2549), + [sym_call_expression] = STATE(2549), + [sym_field_expression] = STATE(2549), + [sym_compound_literal_expression] = STATE(2562), + [sym_parenthesized_expression] = STATE(2549), + [sym_char_literal] = STATE(2344), + [sym_concatenated_string] = STATE(2344), + [sym_string_literal] = STATE(1824), + [sym__class_name] = STATE(6654), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2562), + [sym_co_await_expression] = STATE(2562), + [sym_new_expression] = STATE(2562), + [sym_delete_expression] = STATE(2562), + [sym_requires_clause] = STATE(2562), + [sym_requires_expression] = STATE(2562), + [sym_lambda_expression] = STATE(2562), + [sym_lambda_capture_specifier] = STATE(4787), + [sym_fold_expression] = STATE(2562), + [sym_parameter_pack_expansion] = STATE(2562), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2549), + [sym_qualified_type_identifier] = STATE(6654), + [sym_user_defined_literal] = STATE(2562), + [sym_identifier] = ACTIONS(1697), + [anon_sym_LPAREN2] = ACTIONS(1701), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1703), + [anon_sym_PLUS] = ACTIONS(1703), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(1703), + [anon_sym_compl] = ACTIONS(1703), + [anon_sym_DASH_DASH] = ACTIONS(1717), + [anon_sym_PLUS_PLUS] = ACTIONS(1717), + [anon_sym_sizeof] = ACTIONS(1719), + [sym_number_literal] = ACTIONS(1721), + [anon_sym_L_SQUOTE] = ACTIONS(1723), + [anon_sym_u_SQUOTE] = ACTIONS(1723), + [anon_sym_U_SQUOTE] = ACTIONS(1723), + [anon_sym_u8_SQUOTE] = ACTIONS(1723), + [anon_sym_SQUOTE] = ACTIONS(1723), + [anon_sym_L_DQUOTE] = ACTIONS(1725), + [anon_sym_u_DQUOTE] = ACTIONS(1725), + [anon_sym_U_DQUOTE] = ACTIONS(1725), + [anon_sym_u8_DQUOTE] = ACTIONS(1725), + [anon_sym_DQUOTE] = ACTIONS(1725), + [sym_true] = ACTIONS(1727), + [sym_false] = ACTIONS(1727), + [sym_null] = ACTIONS(1727), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1729), + [anon_sym_co_await] = ACTIONS(1731), + [anon_sym_new] = ACTIONS(1733), + [anon_sym_requires] = ACTIONS(1735), + [sym_this] = ACTIONS(1727), + [sym_nullptr] = ACTIONS(1727), + [sym_raw_string_literal] = ACTIONS(1737), + }, + [1558] = { + [sym__expression] = STATE(2546), + [sym_conditional_expression] = STATE(2562), + [sym_assignment_expression] = STATE(2562), + [sym_pointer_expression] = STATE(2549), + [sym_unary_expression] = STATE(2562), + [sym_binary_expression] = STATE(2562), + [sym_update_expression] = STATE(2562), + [sym_cast_expression] = STATE(2562), + [sym_sizeof_expression] = STATE(2562), + [sym_subscript_expression] = STATE(2549), + [sym_call_expression] = STATE(2549), + [sym_field_expression] = STATE(2549), + [sym_compound_literal_expression] = STATE(2562), + [sym_parenthesized_expression] = STATE(2549), + [sym_char_literal] = STATE(2344), + [sym_concatenated_string] = STATE(2344), + [sym_string_literal] = STATE(1824), + [sym__class_name] = STATE(6654), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2562), + [sym_co_await_expression] = STATE(2562), + [sym_new_expression] = STATE(2562), + [sym_delete_expression] = STATE(2562), + [sym_requires_clause] = STATE(2562), + [sym_requires_expression] = STATE(2562), + [sym_lambda_expression] = STATE(2562), + [sym_lambda_capture_specifier] = STATE(4787), + [sym_fold_expression] = STATE(2562), + [sym_parameter_pack_expansion] = STATE(2562), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2549), + [sym_qualified_type_identifier] = STATE(6654), + [sym_user_defined_literal] = STATE(2562), + [sym_identifier] = ACTIONS(1697), + [anon_sym_LPAREN2] = ACTIONS(1701), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1703), + [anon_sym_PLUS] = ACTIONS(1703), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(1703), + [anon_sym_compl] = ACTIONS(1703), + [anon_sym_DASH_DASH] = ACTIONS(1717), + [anon_sym_PLUS_PLUS] = ACTIONS(1717), + [anon_sym_sizeof] = ACTIONS(1719), + [sym_number_literal] = ACTIONS(1721), + [anon_sym_L_SQUOTE] = ACTIONS(1723), + [anon_sym_u_SQUOTE] = ACTIONS(1723), + [anon_sym_U_SQUOTE] = ACTIONS(1723), + [anon_sym_u8_SQUOTE] = ACTIONS(1723), + [anon_sym_SQUOTE] = ACTIONS(1723), + [anon_sym_L_DQUOTE] = ACTIONS(1725), + [anon_sym_u_DQUOTE] = ACTIONS(1725), + [anon_sym_U_DQUOTE] = ACTIONS(1725), + [anon_sym_u8_DQUOTE] = ACTIONS(1725), + [anon_sym_DQUOTE] = ACTIONS(1725), + [sym_true] = ACTIONS(1727), + [sym_false] = ACTIONS(1727), + [sym_null] = ACTIONS(1727), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1729), + [anon_sym_co_await] = ACTIONS(1731), + [anon_sym_new] = ACTIONS(1733), + [anon_sym_requires] = ACTIONS(1735), + [sym_this] = ACTIONS(1727), + [sym_nullptr] = ACTIONS(1727), + [sym_raw_string_literal] = ACTIONS(1737), + }, + [1559] = { + [sym__expression] = STATE(3903), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1560] = { + [sym__expression] = STATE(3041), + [sym_conditional_expression] = STATE(3135), + [sym_assignment_expression] = STATE(3135), + [sym_pointer_expression] = STATE(2788), + [sym_unary_expression] = STATE(3135), + [sym_binary_expression] = STATE(3135), + [sym_update_expression] = STATE(3135), + [sym_cast_expression] = STATE(3135), + [sym_sizeof_expression] = STATE(3135), + [sym_subscript_expression] = STATE(2788), + [sym_call_expression] = STATE(2788), + [sym_field_expression] = STATE(2788), + [sym_compound_literal_expression] = STATE(3135), + [sym_parenthesized_expression] = STATE(2788), + [sym_char_literal] = STATE(2981), + [sym_concatenated_string] = STATE(2981), + [sym_string_literal] = STATE(1970), + [sym__class_name] = STATE(6450), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3135), + [sym_co_await_expression] = STATE(3135), + [sym_new_expression] = STATE(3135), + [sym_delete_expression] = STATE(3135), + [sym_requires_clause] = STATE(3135), + [sym_requires_expression] = STATE(3135), + [sym_lambda_expression] = STATE(3135), + [sym_lambda_capture_specifier] = STATE(4771), + [sym_fold_expression] = STATE(3135), + [sym_parameter_pack_expansion] = STATE(3135), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4904), + [sym_qualified_identifier] = STATE(2788), + [sym_qualified_type_identifier] = STATE(6450), + [sym_user_defined_literal] = STATE(3135), + [sym_identifier] = ACTIONS(1957), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1753), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_co_await] = ACTIONS(1455), + [anon_sym_new] = ACTIONS(1457), + [anon_sym_requires] = ACTIONS(1459), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + [sym_raw_string_literal] = ACTIONS(1461), + }, + [1561] = { + [sym__expression] = STATE(3025), + [sym_conditional_expression] = STATE(3135), + [sym_assignment_expression] = STATE(3135), + [sym_pointer_expression] = STATE(2788), + [sym_unary_expression] = STATE(3135), + [sym_binary_expression] = STATE(3135), + [sym_update_expression] = STATE(3135), + [sym_cast_expression] = STATE(3135), + [sym_sizeof_expression] = STATE(3135), + [sym_subscript_expression] = STATE(2788), + [sym_call_expression] = STATE(2788), + [sym_field_expression] = STATE(2788), + [sym_compound_literal_expression] = STATE(3135), + [sym_parenthesized_expression] = STATE(2788), + [sym_char_literal] = STATE(2981), + [sym_concatenated_string] = STATE(2981), + [sym_string_literal] = STATE(1970), + [sym__class_name] = STATE(6450), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3135), + [sym_co_await_expression] = STATE(3135), + [sym_new_expression] = STATE(3135), + [sym_delete_expression] = STATE(3135), + [sym_requires_clause] = STATE(3135), + [sym_requires_expression] = STATE(3135), + [sym_lambda_expression] = STATE(3135), + [sym_lambda_capture_specifier] = STATE(4771), + [sym_fold_expression] = STATE(3135), + [sym_parameter_pack_expansion] = STATE(3135), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4904), + [sym_qualified_identifier] = STATE(2788), + [sym_qualified_type_identifier] = STATE(6450), + [sym_user_defined_literal] = STATE(3135), + [sym_identifier] = ACTIONS(1957), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(3867), + [sym_primitive_type] = ACTIONS(1753), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_co_await] = ACTIONS(1455), + [anon_sym_new] = ACTIONS(1457), + [anon_sym_requires] = ACTIONS(1459), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + [sym_raw_string_literal] = ACTIONS(1461), + }, + [1562] = { + [sym__expression] = STATE(3963), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1563] = { + [sym__expression] = STATE(2983), + [sym_conditional_expression] = STATE(2562), + [sym_assignment_expression] = STATE(2562), + [sym_pointer_expression] = STATE(2549), + [sym_unary_expression] = STATE(2562), + [sym_binary_expression] = STATE(2562), + [sym_update_expression] = STATE(2562), + [sym_cast_expression] = STATE(2562), + [sym_sizeof_expression] = STATE(2562), + [sym_subscript_expression] = STATE(2549), + [sym_call_expression] = STATE(2549), + [sym_field_expression] = STATE(2549), + [sym_compound_literal_expression] = STATE(2562), + [sym_parenthesized_expression] = STATE(2549), + [sym_char_literal] = STATE(2344), + [sym_concatenated_string] = STATE(2344), + [sym_string_literal] = STATE(1824), + [sym__class_name] = STATE(6654), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2562), + [sym_co_await_expression] = STATE(2562), + [sym_new_expression] = STATE(2562), + [sym_delete_expression] = STATE(2562), + [sym_requires_clause] = STATE(2562), + [sym_requires_expression] = STATE(2562), + [sym_lambda_expression] = STATE(2562), + [sym_lambda_capture_specifier] = STATE(4787), + [sym_fold_expression] = STATE(2562), + [sym_parameter_pack_expansion] = STATE(2562), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2549), + [sym_qualified_type_identifier] = STATE(6654), + [sym_user_defined_literal] = STATE(2562), + [sym_identifier] = ACTIONS(1697), + [anon_sym_LPAREN2] = ACTIONS(1961), + [anon_sym_BANG] = ACTIONS(1965), + [anon_sym_TILDE] = ACTIONS(1965), + [anon_sym_DASH] = ACTIONS(1963), + [anon_sym_PLUS] = ACTIONS(1963), + [anon_sym_STAR] = ACTIONS(3117), + [anon_sym_AMP] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(1969), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(1963), + [anon_sym_compl] = ACTIONS(1963), + [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1971), + [anon_sym_sizeof] = ACTIONS(1973), + [sym_number_literal] = ACTIONS(1721), + [anon_sym_L_SQUOTE] = ACTIONS(1723), + [anon_sym_u_SQUOTE] = ACTIONS(1723), + [anon_sym_U_SQUOTE] = ACTIONS(1723), + [anon_sym_u8_SQUOTE] = ACTIONS(1723), + [anon_sym_SQUOTE] = ACTIONS(1723), + [anon_sym_L_DQUOTE] = ACTIONS(1725), + [anon_sym_u_DQUOTE] = ACTIONS(1725), + [anon_sym_U_DQUOTE] = ACTIONS(1725), + [anon_sym_u8_DQUOTE] = ACTIONS(1725), + [anon_sym_DQUOTE] = ACTIONS(1725), + [sym_true] = ACTIONS(1727), + [sym_false] = ACTIONS(1727), + [sym_null] = ACTIONS(1727), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1975), + [anon_sym_co_await] = ACTIONS(1977), + [anon_sym_new] = ACTIONS(1979), + [anon_sym_requires] = ACTIONS(1735), + [sym_this] = ACTIONS(1727), + [sym_nullptr] = ACTIONS(1727), + [sym_raw_string_literal] = ACTIONS(1737), + }, + [1564] = { + [sym__expression] = STATE(2929), + [sym_conditional_expression] = STATE(2999), + [sym_assignment_expression] = STATE(2999), + [sym_pointer_expression] = STATE(2973), + [sym_unary_expression] = STATE(2999), + [sym_binary_expression] = STATE(2999), + [sym_update_expression] = STATE(2999), + [sym_cast_expression] = STATE(2999), + [sym_sizeof_expression] = STATE(2999), + [sym_subscript_expression] = STATE(2973), + [sym_call_expression] = STATE(2973), + [sym_field_expression] = STATE(2973), + [sym_compound_literal_expression] = STATE(2999), + [sym_parenthesized_expression] = STATE(2973), + [sym_char_literal] = STATE(2933), + [sym_concatenated_string] = STATE(2933), + [sym_string_literal] = STATE(1927), + [sym__class_name] = STATE(6445), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2999), + [sym_co_await_expression] = STATE(2999), + [sym_new_expression] = STATE(2999), + [sym_delete_expression] = STATE(2999), + [sym_requires_clause] = STATE(2999), + [sym_requires_expression] = STATE(2999), + [sym_lambda_expression] = STATE(2999), + [sym_lambda_capture_specifier] = STATE(4767), + [sym_fold_expression] = STATE(2999), + [sym_parameter_pack_expansion] = STATE(2999), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2973), + [sym_qualified_type_identifier] = STATE(6445), + [sym_user_defined_literal] = STATE(2999), + [sym_identifier] = ACTIONS(1919), + [anon_sym_LPAREN2] = ACTIONS(1921), + [anon_sym_BANG] = ACTIONS(1925), + [anon_sym_TILDE] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1923), + [anon_sym_PLUS] = ACTIONS(1923), + [anon_sym_STAR] = ACTIONS(2671), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_COLON_COLON] = ACTIONS(1929), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1933), + [anon_sym_not] = ACTIONS(1923), + [anon_sym_compl] = ACTIONS(1923), + [anon_sym_DASH_DASH] = ACTIONS(1935), + [anon_sym_PLUS_PLUS] = ACTIONS(1935), + [anon_sym_sizeof] = ACTIONS(1937), + [sym_number_literal] = ACTIONS(1939), + [anon_sym_L_SQUOTE] = ACTIONS(1941), + [anon_sym_u_SQUOTE] = ACTIONS(1941), + [anon_sym_U_SQUOTE] = ACTIONS(1941), + [anon_sym_u8_SQUOTE] = ACTIONS(1941), + [anon_sym_SQUOTE] = ACTIONS(1941), + [anon_sym_L_DQUOTE] = ACTIONS(1943), + [anon_sym_u_DQUOTE] = ACTIONS(1943), + [anon_sym_U_DQUOTE] = ACTIONS(1943), + [anon_sym_u8_DQUOTE] = ACTIONS(1943), + [anon_sym_DQUOTE] = ACTIONS(1943), + [sym_true] = ACTIONS(1945), + [sym_false] = ACTIONS(1945), + [sym_null] = ACTIONS(1945), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1947), + [anon_sym_co_await] = ACTIONS(1949), + [anon_sym_new] = ACTIONS(1951), + [anon_sym_requires] = ACTIONS(1953), + [sym_this] = ACTIONS(1945), + [sym_nullptr] = ACTIONS(1945), + [sym_raw_string_literal] = ACTIONS(1955), + }, + [1565] = { + [sym__expression] = STATE(3529), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1566] = { + [sym__expression] = STATE(3010), + [sym_conditional_expression] = STATE(2562), + [sym_assignment_expression] = STATE(2562), + [sym_pointer_expression] = STATE(2549), + [sym_unary_expression] = STATE(2562), + [sym_binary_expression] = STATE(2562), + [sym_update_expression] = STATE(2562), + [sym_cast_expression] = STATE(2562), + [sym_sizeof_expression] = STATE(2562), + [sym_subscript_expression] = STATE(2549), + [sym_call_expression] = STATE(2549), + [sym_field_expression] = STATE(2549), + [sym_compound_literal_expression] = STATE(2562), + [sym_parenthesized_expression] = STATE(2549), + [sym_char_literal] = STATE(2344), + [sym_concatenated_string] = STATE(2344), + [sym_string_literal] = STATE(1824), + [sym__class_name] = STATE(6654), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2562), + [sym_co_await_expression] = STATE(2562), + [sym_new_expression] = STATE(2562), + [sym_delete_expression] = STATE(2562), + [sym_requires_clause] = STATE(2562), + [sym_requires_expression] = STATE(2562), + [sym_lambda_expression] = STATE(2562), + [sym_lambda_capture_specifier] = STATE(4787), + [sym_fold_expression] = STATE(2562), + [sym_parameter_pack_expansion] = STATE(2562), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2549), + [sym_qualified_type_identifier] = STATE(6654), + [sym_user_defined_literal] = STATE(2562), + [sym_identifier] = ACTIONS(1697), + [anon_sym_LPAREN2] = ACTIONS(1961), + [anon_sym_BANG] = ACTIONS(1965), + [anon_sym_TILDE] = ACTIONS(1965), + [anon_sym_DASH] = ACTIONS(1963), + [anon_sym_PLUS] = ACTIONS(1963), + [anon_sym_STAR] = ACTIONS(3117), + [anon_sym_AMP] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(1969), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(1963), + [anon_sym_compl] = ACTIONS(1963), + [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1971), + [anon_sym_sizeof] = ACTIONS(1973), + [sym_number_literal] = ACTIONS(1721), + [anon_sym_L_SQUOTE] = ACTIONS(1723), + [anon_sym_u_SQUOTE] = ACTIONS(1723), + [anon_sym_U_SQUOTE] = ACTIONS(1723), + [anon_sym_u8_SQUOTE] = ACTIONS(1723), + [anon_sym_SQUOTE] = ACTIONS(1723), + [anon_sym_L_DQUOTE] = ACTIONS(1725), + [anon_sym_u_DQUOTE] = ACTIONS(1725), + [anon_sym_U_DQUOTE] = ACTIONS(1725), + [anon_sym_u8_DQUOTE] = ACTIONS(1725), + [anon_sym_DQUOTE] = ACTIONS(1725), + [sym_true] = ACTIONS(1727), + [sym_false] = ACTIONS(1727), + [sym_null] = ACTIONS(1727), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1975), + [anon_sym_co_await] = ACTIONS(1977), + [anon_sym_new] = ACTIONS(1979), + [anon_sym_requires] = ACTIONS(1735), + [sym_this] = ACTIONS(1727), + [sym_nullptr] = ACTIONS(1727), + [sym_raw_string_literal] = ACTIONS(1737), + }, + [1567] = { + [sym__expression] = STATE(3671), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1568] = { + [sym__expression] = STATE(3529), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3869), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1569] = { + [sym__expression] = STATE(3730), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1570] = { + [sym__expression] = STATE(3689), + [sym_conditional_expression] = STATE(3865), + [sym_assignment_expression] = STATE(3865), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3865), + [sym_binary_expression] = STATE(3865), + [sym_update_expression] = STATE(3865), + [sym_cast_expression] = STATE(3865), + [sym_sizeof_expression] = STATE(3865), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3865), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3707), + [sym_concatenated_string] = STATE(3707), + [sym_string_literal] = STATE(3250), + [sym__class_name] = STATE(6539), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3865), + [sym_co_await_expression] = STATE(3865), + [sym_new_expression] = STATE(3865), + [sym_delete_expression] = STATE(3865), + [sym_requires_clause] = STATE(3865), + [sym_requires_expression] = STATE(3865), + [sym_lambda_expression] = STATE(3865), + [sym_lambda_capture_specifier] = STATE(4789), + [sym_fold_expression] = STATE(3865), + [sym_parameter_pack_expansion] = STATE(3865), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(6539), + [sym_user_defined_literal] = STATE(3865), + [sym_identifier] = ACTIONS(3105), + [anon_sym_LPAREN2] = ACTIONS(2665), + [anon_sym_BANG] = ACTIONS(2667), + [anon_sym_TILDE] = ACTIONS(2667), + [anon_sym_DASH] = ACTIONS(2669), + [anon_sym_PLUS] = ACTIONS(2669), + [anon_sym_STAR] = ACTIONS(2671), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_COLON_COLON] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1933), + [anon_sym_not] = ACTIONS(2669), + [anon_sym_compl] = ACTIONS(2669), + [anon_sym_DASH_DASH] = ACTIONS(2687), + [anon_sym_PLUS_PLUS] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2689), + [sym_number_literal] = ACTIONS(2691), + [anon_sym_L_SQUOTE] = ACTIONS(2693), + [anon_sym_u_SQUOTE] = ACTIONS(2693), + [anon_sym_U_SQUOTE] = ACTIONS(2693), + [anon_sym_u8_SQUOTE] = ACTIONS(2693), + [anon_sym_SQUOTE] = ACTIONS(2693), + [anon_sym_L_DQUOTE] = ACTIONS(2695), + [anon_sym_u_DQUOTE] = ACTIONS(2695), + [anon_sym_U_DQUOTE] = ACTIONS(2695), + [anon_sym_u8_DQUOTE] = ACTIONS(2695), + [anon_sym_DQUOTE] = ACTIONS(2695), + [sym_true] = ACTIONS(2697), + [sym_false] = ACTIONS(2697), + [sym_null] = ACTIONS(2697), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(2707), + [anon_sym_co_await] = ACTIONS(2709), + [anon_sym_new] = ACTIONS(2711), + [anon_sym_requires] = ACTIONS(2713), + [sym_this] = ACTIONS(2697), + [sym_nullptr] = ACTIONS(2697), + [sym_raw_string_literal] = ACTIONS(2715), + }, + [1571] = { + [sym__expression] = STATE(3819), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1572] = { + [sym__expression] = STATE(2931), + [sym_conditional_expression] = STATE(2999), + [sym_assignment_expression] = STATE(2999), + [sym_pointer_expression] = STATE(2973), + [sym_unary_expression] = STATE(2999), + [sym_binary_expression] = STATE(2999), + [sym_update_expression] = STATE(2999), + [sym_cast_expression] = STATE(2999), + [sym_sizeof_expression] = STATE(2999), + [sym_subscript_expression] = STATE(2973), + [sym_call_expression] = STATE(2973), + [sym_field_expression] = STATE(2973), + [sym_compound_literal_expression] = STATE(2999), + [sym_parenthesized_expression] = STATE(2973), + [sym_char_literal] = STATE(2933), + [sym_concatenated_string] = STATE(2933), + [sym_string_literal] = STATE(1927), + [sym__class_name] = STATE(6445), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2999), + [sym_co_await_expression] = STATE(2999), + [sym_new_expression] = STATE(2999), + [sym_delete_expression] = STATE(2999), + [sym_requires_clause] = STATE(2999), + [sym_requires_expression] = STATE(2999), + [sym_lambda_expression] = STATE(2999), + [sym_lambda_capture_specifier] = STATE(4767), + [sym_fold_expression] = STATE(2999), + [sym_parameter_pack_expansion] = STATE(2999), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2973), + [sym_qualified_type_identifier] = STATE(6445), + [sym_user_defined_literal] = STATE(2999), + [sym_identifier] = ACTIONS(1919), + [anon_sym_LPAREN2] = ACTIONS(1921), + [anon_sym_BANG] = ACTIONS(1925), + [anon_sym_TILDE] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1923), + [anon_sym_PLUS] = ACTIONS(1923), + [anon_sym_STAR] = ACTIONS(2671), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_COLON_COLON] = ACTIONS(1929), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1933), + [anon_sym_not] = ACTIONS(1923), + [anon_sym_compl] = ACTIONS(1923), + [anon_sym_DASH_DASH] = ACTIONS(1935), + [anon_sym_PLUS_PLUS] = ACTIONS(1935), + [anon_sym_sizeof] = ACTIONS(1937), + [sym_number_literal] = ACTIONS(1939), + [anon_sym_L_SQUOTE] = ACTIONS(1941), + [anon_sym_u_SQUOTE] = ACTIONS(1941), + [anon_sym_U_SQUOTE] = ACTIONS(1941), + [anon_sym_u8_SQUOTE] = ACTIONS(1941), + [anon_sym_SQUOTE] = ACTIONS(1941), + [anon_sym_L_DQUOTE] = ACTIONS(1943), + [anon_sym_u_DQUOTE] = ACTIONS(1943), + [anon_sym_U_DQUOTE] = ACTIONS(1943), + [anon_sym_u8_DQUOTE] = ACTIONS(1943), + [anon_sym_DQUOTE] = ACTIONS(1943), + [sym_true] = ACTIONS(1945), + [sym_false] = ACTIONS(1945), + [sym_null] = ACTIONS(1945), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1947), + [anon_sym_co_await] = ACTIONS(1949), + [anon_sym_new] = ACTIONS(1951), + [anon_sym_requires] = ACTIONS(1953), + [sym_this] = ACTIONS(1945), + [sym_nullptr] = ACTIONS(1945), + [sym_raw_string_literal] = ACTIONS(1955), + }, + [1573] = { + [sym__expression] = STATE(3674), + [sym_conditional_expression] = STATE(3865), + [sym_assignment_expression] = STATE(3865), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3865), + [sym_binary_expression] = STATE(3865), + [sym_update_expression] = STATE(3865), + [sym_cast_expression] = STATE(3865), + [sym_sizeof_expression] = STATE(3865), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3865), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3707), + [sym_concatenated_string] = STATE(3707), + [sym_string_literal] = STATE(3250), + [sym__class_name] = STATE(6539), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3865), + [sym_co_await_expression] = STATE(3865), + [sym_new_expression] = STATE(3865), + [sym_delete_expression] = STATE(3865), + [sym_requires_clause] = STATE(3865), + [sym_requires_expression] = STATE(3865), + [sym_lambda_expression] = STATE(3865), + [sym_lambda_capture_specifier] = STATE(4789), + [sym_fold_expression] = STATE(3865), + [sym_parameter_pack_expansion] = STATE(3865), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(6539), + [sym_user_defined_literal] = STATE(3865), + [sym_identifier] = ACTIONS(3105), + [anon_sym_LPAREN2] = ACTIONS(2665), + [anon_sym_BANG] = ACTIONS(2667), + [anon_sym_TILDE] = ACTIONS(2667), + [anon_sym_DASH] = ACTIONS(2669), + [anon_sym_PLUS] = ACTIONS(2669), + [anon_sym_STAR] = ACTIONS(2671), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_COLON_COLON] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1933), + [anon_sym_not] = ACTIONS(2669), + [anon_sym_compl] = ACTIONS(2669), + [anon_sym_DASH_DASH] = ACTIONS(2687), + [anon_sym_PLUS_PLUS] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2689), + [sym_number_literal] = ACTIONS(2691), + [anon_sym_L_SQUOTE] = ACTIONS(2693), + [anon_sym_u_SQUOTE] = ACTIONS(2693), + [anon_sym_U_SQUOTE] = ACTIONS(2693), + [anon_sym_u8_SQUOTE] = ACTIONS(2693), + [anon_sym_SQUOTE] = ACTIONS(2693), + [anon_sym_L_DQUOTE] = ACTIONS(2695), + [anon_sym_u_DQUOTE] = ACTIONS(2695), + [anon_sym_U_DQUOTE] = ACTIONS(2695), + [anon_sym_u8_DQUOTE] = ACTIONS(2695), + [anon_sym_DQUOTE] = ACTIONS(2695), + [sym_true] = ACTIONS(2697), + [sym_false] = ACTIONS(2697), + [sym_null] = ACTIONS(2697), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(2707), + [anon_sym_co_await] = ACTIONS(2709), + [anon_sym_new] = ACTIONS(2711), + [anon_sym_requires] = ACTIONS(2713), + [sym_this] = ACTIONS(2697), + [sym_nullptr] = ACTIONS(2697), + [sym_raw_string_literal] = ACTIONS(2715), + }, + [1574] = { + [sym__expression] = STATE(3771), + [sym_conditional_expression] = STATE(3865), + [sym_assignment_expression] = STATE(3865), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3865), + [sym_binary_expression] = STATE(3865), + [sym_update_expression] = STATE(3865), + [sym_cast_expression] = STATE(3865), + [sym_sizeof_expression] = STATE(3865), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3865), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3707), + [sym_concatenated_string] = STATE(3707), + [sym_string_literal] = STATE(3250), + [sym__class_name] = STATE(6539), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3865), + [sym_co_await_expression] = STATE(3865), + [sym_new_expression] = STATE(3865), + [sym_delete_expression] = STATE(3865), + [sym_requires_clause] = STATE(3865), + [sym_requires_expression] = STATE(3865), + [sym_lambda_expression] = STATE(3865), + [sym_lambda_capture_specifier] = STATE(4789), + [sym_fold_expression] = STATE(3865), + [sym_parameter_pack_expansion] = STATE(3865), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(6539), + [sym_user_defined_literal] = STATE(3865), + [sym_identifier] = ACTIONS(3105), + [anon_sym_LPAREN2] = ACTIONS(2665), + [anon_sym_BANG] = ACTIONS(2667), + [anon_sym_TILDE] = ACTIONS(2667), + [anon_sym_DASH] = ACTIONS(2669), + [anon_sym_PLUS] = ACTIONS(2669), + [anon_sym_STAR] = ACTIONS(2671), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_COLON_COLON] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1933), + [anon_sym_not] = ACTIONS(2669), + [anon_sym_compl] = ACTIONS(2669), + [anon_sym_DASH_DASH] = ACTIONS(2687), + [anon_sym_PLUS_PLUS] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2689), + [sym_number_literal] = ACTIONS(2691), + [anon_sym_L_SQUOTE] = ACTIONS(2693), + [anon_sym_u_SQUOTE] = ACTIONS(2693), + [anon_sym_U_SQUOTE] = ACTIONS(2693), + [anon_sym_u8_SQUOTE] = ACTIONS(2693), + [anon_sym_SQUOTE] = ACTIONS(2693), + [anon_sym_L_DQUOTE] = ACTIONS(2695), + [anon_sym_u_DQUOTE] = ACTIONS(2695), + [anon_sym_U_DQUOTE] = ACTIONS(2695), + [anon_sym_u8_DQUOTE] = ACTIONS(2695), + [anon_sym_DQUOTE] = ACTIONS(2695), + [sym_true] = ACTIONS(2697), + [sym_false] = ACTIONS(2697), + [sym_null] = ACTIONS(2697), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(2707), + [anon_sym_co_await] = ACTIONS(2709), + [anon_sym_new] = ACTIONS(2711), + [anon_sym_requires] = ACTIONS(2713), + [sym_this] = ACTIONS(2697), + [sym_nullptr] = ACTIONS(2697), + [sym_raw_string_literal] = ACTIONS(2715), + }, + [1575] = { + [sym__expression] = STATE(3715), + [sym_conditional_expression] = STATE(3865), + [sym_assignment_expression] = STATE(3865), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3865), + [sym_binary_expression] = STATE(3865), + [sym_update_expression] = STATE(3865), + [sym_cast_expression] = STATE(3865), + [sym_sizeof_expression] = STATE(3865), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3865), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3707), + [sym_concatenated_string] = STATE(3707), + [sym_string_literal] = STATE(3250), + [sym__class_name] = STATE(6539), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3865), + [sym_co_await_expression] = STATE(3865), + [sym_new_expression] = STATE(3865), + [sym_delete_expression] = STATE(3865), + [sym_requires_clause] = STATE(3865), + [sym_requires_expression] = STATE(3865), + [sym_lambda_expression] = STATE(3865), + [sym_lambda_capture_specifier] = STATE(4789), + [sym_fold_expression] = STATE(3865), + [sym_parameter_pack_expansion] = STATE(3865), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(6539), + [sym_user_defined_literal] = STATE(3865), + [sym_identifier] = ACTIONS(3105), + [anon_sym_LPAREN2] = ACTIONS(2665), + [anon_sym_BANG] = ACTIONS(2667), + [anon_sym_TILDE] = ACTIONS(2667), + [anon_sym_DASH] = ACTIONS(2669), + [anon_sym_PLUS] = ACTIONS(2669), + [anon_sym_STAR] = ACTIONS(2671), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_COLON_COLON] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1933), + [anon_sym_not] = ACTIONS(2669), + [anon_sym_compl] = ACTIONS(2669), + [anon_sym_DASH_DASH] = ACTIONS(2687), + [anon_sym_PLUS_PLUS] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2689), + [sym_number_literal] = ACTIONS(2691), + [anon_sym_L_SQUOTE] = ACTIONS(2693), + [anon_sym_u_SQUOTE] = ACTIONS(2693), + [anon_sym_U_SQUOTE] = ACTIONS(2693), + [anon_sym_u8_SQUOTE] = ACTIONS(2693), + [anon_sym_SQUOTE] = ACTIONS(2693), + [anon_sym_L_DQUOTE] = ACTIONS(2695), + [anon_sym_u_DQUOTE] = ACTIONS(2695), + [anon_sym_U_DQUOTE] = ACTIONS(2695), + [anon_sym_u8_DQUOTE] = ACTIONS(2695), + [anon_sym_DQUOTE] = ACTIONS(2695), + [sym_true] = ACTIONS(2697), + [sym_false] = ACTIONS(2697), + [sym_null] = ACTIONS(2697), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(2707), + [anon_sym_co_await] = ACTIONS(2709), + [anon_sym_new] = ACTIONS(2711), + [anon_sym_requires] = ACTIONS(2713), + [sym_this] = ACTIONS(2697), + [sym_nullptr] = ACTIONS(2697), + [sym_raw_string_literal] = ACTIONS(2715), + }, + [1576] = { + [sym__expression] = STATE(2963), + [sym_conditional_expression] = STATE(2999), + [sym_assignment_expression] = STATE(2999), + [sym_pointer_expression] = STATE(2973), + [sym_unary_expression] = STATE(2999), + [sym_binary_expression] = STATE(2999), + [sym_update_expression] = STATE(2999), + [sym_cast_expression] = STATE(2999), + [sym_sizeof_expression] = STATE(2999), + [sym_subscript_expression] = STATE(2973), + [sym_call_expression] = STATE(2973), + [sym_field_expression] = STATE(2973), + [sym_compound_literal_expression] = STATE(2999), + [sym_parenthesized_expression] = STATE(2973), + [sym_char_literal] = STATE(2933), + [sym_concatenated_string] = STATE(2933), + [sym_string_literal] = STATE(1927), + [sym__class_name] = STATE(6445), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2999), + [sym_co_await_expression] = STATE(2999), + [sym_new_expression] = STATE(2999), + [sym_delete_expression] = STATE(2999), + [sym_requires_clause] = STATE(2999), + [sym_requires_expression] = STATE(2999), + [sym_lambda_expression] = STATE(2999), + [sym_lambda_capture_specifier] = STATE(4767), + [sym_fold_expression] = STATE(2999), + [sym_parameter_pack_expansion] = STATE(2999), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2973), + [sym_qualified_type_identifier] = STATE(6445), + [sym_user_defined_literal] = STATE(2999), + [sym_identifier] = ACTIONS(1919), + [anon_sym_LPAREN2] = ACTIONS(1921), + [anon_sym_BANG] = ACTIONS(1925), + [anon_sym_TILDE] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1923), + [anon_sym_PLUS] = ACTIONS(1923), + [anon_sym_STAR] = ACTIONS(2671), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_COLON_COLON] = ACTIONS(1929), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1933), + [anon_sym_not] = ACTIONS(1923), + [anon_sym_compl] = ACTIONS(1923), + [anon_sym_DASH_DASH] = ACTIONS(1935), + [anon_sym_PLUS_PLUS] = ACTIONS(1935), + [anon_sym_sizeof] = ACTIONS(1937), + [sym_number_literal] = ACTIONS(1939), + [anon_sym_L_SQUOTE] = ACTIONS(1941), + [anon_sym_u_SQUOTE] = ACTIONS(1941), + [anon_sym_U_SQUOTE] = ACTIONS(1941), + [anon_sym_u8_SQUOTE] = ACTIONS(1941), + [anon_sym_SQUOTE] = ACTIONS(1941), + [anon_sym_L_DQUOTE] = ACTIONS(1943), + [anon_sym_u_DQUOTE] = ACTIONS(1943), + [anon_sym_U_DQUOTE] = ACTIONS(1943), + [anon_sym_u8_DQUOTE] = ACTIONS(1943), + [anon_sym_DQUOTE] = ACTIONS(1943), + [sym_true] = ACTIONS(1945), + [sym_false] = ACTIONS(1945), + [sym_null] = ACTIONS(1945), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1947), + [anon_sym_co_await] = ACTIONS(1949), + [anon_sym_new] = ACTIONS(1951), + [anon_sym_requires] = ACTIONS(1953), + [sym_this] = ACTIONS(1945), + [sym_nullptr] = ACTIONS(1945), + [sym_raw_string_literal] = ACTIONS(1955), + }, + [1577] = { + [sym__expression] = STATE(2993), + [sym_conditional_expression] = STATE(3135), + [sym_assignment_expression] = STATE(3135), + [sym_pointer_expression] = STATE(2788), + [sym_unary_expression] = STATE(3135), + [sym_binary_expression] = STATE(3135), + [sym_update_expression] = STATE(3135), + [sym_cast_expression] = STATE(3135), + [sym_sizeof_expression] = STATE(3135), + [sym_subscript_expression] = STATE(2788), + [sym_call_expression] = STATE(2788), + [sym_field_expression] = STATE(2788), + [sym_compound_literal_expression] = STATE(3135), + [sym_parenthesized_expression] = STATE(2788), + [sym_char_literal] = STATE(2981), + [sym_concatenated_string] = STATE(2981), + [sym_string_literal] = STATE(1970), + [sym__class_name] = STATE(6450), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3135), + [sym_co_await_expression] = STATE(3135), + [sym_new_expression] = STATE(3135), + [sym_delete_expression] = STATE(3135), + [sym_requires_clause] = STATE(3135), + [sym_requires_expression] = STATE(3135), + [sym_lambda_expression] = STATE(3135), + [sym_lambda_capture_specifier] = STATE(4771), + [sym_fold_expression] = STATE(3135), + [sym_parameter_pack_expansion] = STATE(3135), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4904), + [sym_qualified_identifier] = STATE(2788), + [sym_qualified_type_identifier] = STATE(6450), + [sym_user_defined_literal] = STATE(3135), + [sym_identifier] = ACTIONS(1957), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1753), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_co_await] = ACTIONS(1455), + [anon_sym_new] = ACTIONS(1457), + [anon_sym_requires] = ACTIONS(1459), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + [sym_raw_string_literal] = ACTIONS(1461), + }, + [1578] = { + [sym__expression] = STATE(3032), + [sym_conditional_expression] = STATE(2562), + [sym_assignment_expression] = STATE(2562), + [sym_pointer_expression] = STATE(2549), + [sym_unary_expression] = STATE(2562), + [sym_binary_expression] = STATE(2562), + [sym_update_expression] = STATE(2562), + [sym_cast_expression] = STATE(2562), + [sym_sizeof_expression] = STATE(2562), + [sym_subscript_expression] = STATE(2549), + [sym_call_expression] = STATE(2549), + [sym_field_expression] = STATE(2549), + [sym_compound_literal_expression] = STATE(2562), + [sym_parenthesized_expression] = STATE(2549), + [sym_char_literal] = STATE(2344), + [sym_concatenated_string] = STATE(2344), + [sym_string_literal] = STATE(1824), + [sym__class_name] = STATE(6654), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2562), + [sym_co_await_expression] = STATE(2562), + [sym_new_expression] = STATE(2562), + [sym_delete_expression] = STATE(2562), + [sym_requires_clause] = STATE(2562), + [sym_requires_expression] = STATE(2562), + [sym_lambda_expression] = STATE(2562), + [sym_lambda_capture_specifier] = STATE(4787), + [sym_fold_expression] = STATE(2562), + [sym_parameter_pack_expansion] = STATE(2562), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2549), + [sym_qualified_type_identifier] = STATE(6654), + [sym_user_defined_literal] = STATE(2562), + [sym_identifier] = ACTIONS(1697), + [anon_sym_LPAREN2] = ACTIONS(1961), + [anon_sym_BANG] = ACTIONS(1965), + [anon_sym_TILDE] = ACTIONS(1965), + [anon_sym_DASH] = ACTIONS(1963), + [anon_sym_PLUS] = ACTIONS(1963), + [anon_sym_STAR] = ACTIONS(3117), + [anon_sym_AMP] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(1969), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(1963), + [anon_sym_compl] = ACTIONS(1963), + [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1971), + [anon_sym_sizeof] = ACTIONS(1973), + [sym_number_literal] = ACTIONS(1721), + [anon_sym_L_SQUOTE] = ACTIONS(1723), + [anon_sym_u_SQUOTE] = ACTIONS(1723), + [anon_sym_U_SQUOTE] = ACTIONS(1723), + [anon_sym_u8_SQUOTE] = ACTIONS(1723), + [anon_sym_SQUOTE] = ACTIONS(1723), + [anon_sym_L_DQUOTE] = ACTIONS(1725), + [anon_sym_u_DQUOTE] = ACTIONS(1725), + [anon_sym_U_DQUOTE] = ACTIONS(1725), + [anon_sym_u8_DQUOTE] = ACTIONS(1725), + [anon_sym_DQUOTE] = ACTIONS(1725), + [sym_true] = ACTIONS(1727), + [sym_false] = ACTIONS(1727), + [sym_null] = ACTIONS(1727), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1975), + [anon_sym_co_await] = ACTIONS(1977), + [anon_sym_new] = ACTIONS(1979), + [anon_sym_requires] = ACTIONS(1735), + [sym_this] = ACTIONS(1727), + [sym_nullptr] = ACTIONS(1727), + [sym_raw_string_literal] = ACTIONS(1737), + }, + [1579] = { + [sym__expression] = STATE(3821), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1580] = { + [sym__expression] = STATE(3823), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3001), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3001), + [sym_call_expression] = STATE(3001), + [sym_field_expression] = STATE(3001), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3001), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3001), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3085), + [anon_sym_LPAREN2] = ACTIONS(3087), + [anon_sym_BANG] = ACTIONS(3091), + [anon_sym_TILDE] = ACTIONS(3091), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3089), + [anon_sym_compl] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3095), + [anon_sym_PLUS_PLUS] = ACTIONS(3095), + [anon_sym_sizeof] = ACTIONS(3097), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3099), + [anon_sym_co_await] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1581] = { + [sym__expression] = STATE(3825), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1582] = { + [sym__expression] = STATE(3753), + [sym_conditional_expression] = STATE(3865), + [sym_assignment_expression] = STATE(3865), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3865), + [sym_binary_expression] = STATE(3865), + [sym_update_expression] = STATE(3865), + [sym_cast_expression] = STATE(3865), + [sym_sizeof_expression] = STATE(3865), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3865), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3707), + [sym_concatenated_string] = STATE(3707), + [sym_string_literal] = STATE(3250), + [sym__class_name] = STATE(6539), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3865), + [sym_co_await_expression] = STATE(3865), + [sym_new_expression] = STATE(3865), + [sym_delete_expression] = STATE(3865), + [sym_requires_clause] = STATE(3865), + [sym_requires_expression] = STATE(3865), + [sym_lambda_expression] = STATE(3865), + [sym_lambda_capture_specifier] = STATE(4789), + [sym_fold_expression] = STATE(3865), + [sym_parameter_pack_expansion] = STATE(3865), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(6539), + [sym_user_defined_literal] = STATE(3865), + [sym_identifier] = ACTIONS(3105), + [anon_sym_LPAREN2] = ACTIONS(2665), + [anon_sym_BANG] = ACTIONS(2667), + [anon_sym_TILDE] = ACTIONS(2667), + [anon_sym_DASH] = ACTIONS(2669), + [anon_sym_PLUS] = ACTIONS(2669), + [anon_sym_STAR] = ACTIONS(2671), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_COLON_COLON] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1933), + [anon_sym_not] = ACTIONS(2669), + [anon_sym_compl] = ACTIONS(2669), + [anon_sym_DASH_DASH] = ACTIONS(2687), + [anon_sym_PLUS_PLUS] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2689), + [sym_number_literal] = ACTIONS(2691), + [anon_sym_L_SQUOTE] = ACTIONS(2693), + [anon_sym_u_SQUOTE] = ACTIONS(2693), + [anon_sym_U_SQUOTE] = ACTIONS(2693), + [anon_sym_u8_SQUOTE] = ACTIONS(2693), + [anon_sym_SQUOTE] = ACTIONS(2693), + [anon_sym_L_DQUOTE] = ACTIONS(2695), + [anon_sym_u_DQUOTE] = ACTIONS(2695), + [anon_sym_U_DQUOTE] = ACTIONS(2695), + [anon_sym_u8_DQUOTE] = ACTIONS(2695), + [anon_sym_DQUOTE] = ACTIONS(2695), + [sym_true] = ACTIONS(2697), + [sym_false] = ACTIONS(2697), + [sym_null] = ACTIONS(2697), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(2707), + [anon_sym_co_await] = ACTIONS(2709), + [anon_sym_new] = ACTIONS(2711), + [anon_sym_requires] = ACTIONS(2713), + [sym_this] = ACTIONS(2697), + [sym_nullptr] = ACTIONS(2697), + [sym_raw_string_literal] = ACTIONS(2715), + }, + [1583] = { + [sym__expression] = STATE(2932), + [sym_conditional_expression] = STATE(2999), + [sym_assignment_expression] = STATE(2999), + [sym_pointer_expression] = STATE(2973), + [sym_unary_expression] = STATE(2999), + [sym_binary_expression] = STATE(2999), + [sym_update_expression] = STATE(2999), + [sym_cast_expression] = STATE(2999), + [sym_sizeof_expression] = STATE(2999), + [sym_subscript_expression] = STATE(2973), + [sym_call_expression] = STATE(2973), + [sym_field_expression] = STATE(2973), + [sym_compound_literal_expression] = STATE(2999), + [sym_parenthesized_expression] = STATE(2973), + [sym_char_literal] = STATE(2933), + [sym_concatenated_string] = STATE(2933), + [sym_string_literal] = STATE(1927), + [sym__class_name] = STATE(6445), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2999), + [sym_co_await_expression] = STATE(2999), + [sym_new_expression] = STATE(2999), + [sym_delete_expression] = STATE(2999), + [sym_requires_clause] = STATE(2999), + [sym_requires_expression] = STATE(2999), + [sym_lambda_expression] = STATE(2999), + [sym_lambda_capture_specifier] = STATE(4767), + [sym_fold_expression] = STATE(2999), + [sym_parameter_pack_expansion] = STATE(2999), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2973), + [sym_qualified_type_identifier] = STATE(6445), + [sym_user_defined_literal] = STATE(2999), + [sym_identifier] = ACTIONS(1919), + [anon_sym_LPAREN2] = ACTIONS(1921), + [anon_sym_BANG] = ACTIONS(1925), + [anon_sym_TILDE] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1923), + [anon_sym_PLUS] = ACTIONS(1923), + [anon_sym_STAR] = ACTIONS(2671), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_COLON_COLON] = ACTIONS(1929), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1933), + [anon_sym_not] = ACTIONS(1923), + [anon_sym_compl] = ACTIONS(1923), + [anon_sym_DASH_DASH] = ACTIONS(1935), + [anon_sym_PLUS_PLUS] = ACTIONS(1935), + [anon_sym_sizeof] = ACTIONS(1937), + [sym_number_literal] = ACTIONS(1939), + [anon_sym_L_SQUOTE] = ACTIONS(1941), + [anon_sym_u_SQUOTE] = ACTIONS(1941), + [anon_sym_U_SQUOTE] = ACTIONS(1941), + [anon_sym_u8_SQUOTE] = ACTIONS(1941), + [anon_sym_SQUOTE] = ACTIONS(1941), + [anon_sym_L_DQUOTE] = ACTIONS(1943), + [anon_sym_u_DQUOTE] = ACTIONS(1943), + [anon_sym_U_DQUOTE] = ACTIONS(1943), + [anon_sym_u8_DQUOTE] = ACTIONS(1943), + [anon_sym_DQUOTE] = ACTIONS(1943), + [sym_true] = ACTIONS(1945), + [sym_false] = ACTIONS(1945), + [sym_null] = ACTIONS(1945), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1947), + [anon_sym_co_await] = ACTIONS(1949), + [anon_sym_new] = ACTIONS(1951), + [anon_sym_requires] = ACTIONS(1953), + [sym_this] = ACTIONS(1945), + [sym_nullptr] = ACTIONS(1945), + [sym_raw_string_literal] = ACTIONS(1955), + }, + [1584] = { + [sym__expression] = STATE(3907), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1585] = { + [sym__expression] = STATE(3691), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3001), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3001), + [sym_call_expression] = STATE(3001), + [sym_field_expression] = STATE(3001), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3001), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3001), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3085), + [anon_sym_LPAREN2] = ACTIONS(3087), + [anon_sym_BANG] = ACTIONS(3091), + [anon_sym_TILDE] = ACTIONS(3091), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3089), + [anon_sym_compl] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3095), + [anon_sym_PLUS_PLUS] = ACTIONS(3095), + [anon_sym_sizeof] = ACTIONS(3097), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3099), + [anon_sym_co_await] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1586] = { + [sym__expression] = STATE(3769), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1587] = { + [sym__expression] = STATE(2646), + [sym_conditional_expression] = STATE(2821), + [sym_assignment_expression] = STATE(2821), + [sym_pointer_expression] = STATE(2805), + [sym_unary_expression] = STATE(2821), + [sym_binary_expression] = STATE(2821), + [sym_update_expression] = STATE(2821), + [sym_cast_expression] = STATE(2821), + [sym_sizeof_expression] = STATE(2821), + [sym_subscript_expression] = STATE(2805), + [sym_call_expression] = STATE(2805), + [sym_field_expression] = STATE(2805), + [sym_compound_literal_expression] = STATE(2821), + [sym_parenthesized_expression] = STATE(2805), + [sym_char_literal] = STATE(2577), + [sym_concatenated_string] = STATE(2577), + [sym_string_literal] = STATE(1861), + [sym__class_name] = STATE(6652), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2821), + [sym_co_await_expression] = STATE(2821), + [sym_new_expression] = STATE(2821), + [sym_delete_expression] = STATE(2821), + [sym_requires_clause] = STATE(2821), + [sym_requires_expression] = STATE(2821), + [sym_lambda_expression] = STATE(2821), + [sym_lambda_capture_specifier] = STATE(4790), + [sym_fold_expression] = STATE(2821), + [sym_parameter_pack_expansion] = STATE(2821), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4904), + [sym_qualified_identifier] = STATE(2805), + [sym_qualified_type_identifier] = STATE(6652), + [sym_user_defined_literal] = STATE(2821), + [sym_identifier] = ACTIONS(1739), + [anon_sym_LPAREN2] = ACTIONS(1741), + [anon_sym_BANG] = ACTIONS(1745), + [anon_sym_TILDE] = ACTIONS(1745), + [anon_sym_DASH] = ACTIONS(1743), + [anon_sym_PLUS] = ACTIONS(1743), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1753), + [anon_sym_not] = ACTIONS(1743), + [anon_sym_compl] = ACTIONS(1743), + [anon_sym_DASH_DASH] = ACTIONS(1755), + [anon_sym_PLUS_PLUS] = ACTIONS(1755), + [anon_sym_sizeof] = ACTIONS(1757), + [sym_number_literal] = ACTIONS(1759), + [anon_sym_L_SQUOTE] = ACTIONS(1761), + [anon_sym_u_SQUOTE] = ACTIONS(1761), + [anon_sym_U_SQUOTE] = ACTIONS(1761), + [anon_sym_u8_SQUOTE] = ACTIONS(1761), + [anon_sym_SQUOTE] = ACTIONS(1761), + [anon_sym_L_DQUOTE] = ACTIONS(1763), + [anon_sym_u_DQUOTE] = ACTIONS(1763), + [anon_sym_U_DQUOTE] = ACTIONS(1763), + [anon_sym_u8_DQUOTE] = ACTIONS(1763), + [anon_sym_DQUOTE] = ACTIONS(1763), + [sym_true] = ACTIONS(1765), + [sym_false] = ACTIONS(1765), + [sym_null] = ACTIONS(1765), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1767), + [anon_sym_co_await] = ACTIONS(1769), + [anon_sym_new] = ACTIONS(1771), + [anon_sym_requires] = ACTIONS(1773), + [sym_this] = ACTIONS(1765), + [sym_nullptr] = ACTIONS(1765), + [sym_raw_string_literal] = ACTIONS(1775), + }, + [1588] = { + [sym__expression] = STATE(2645), + [sym_conditional_expression] = STATE(2821), + [sym_assignment_expression] = STATE(2821), + [sym_pointer_expression] = STATE(2805), + [sym_unary_expression] = STATE(2821), + [sym_binary_expression] = STATE(2821), + [sym_update_expression] = STATE(2821), + [sym_cast_expression] = STATE(2821), + [sym_sizeof_expression] = STATE(2821), + [sym_subscript_expression] = STATE(2805), + [sym_call_expression] = STATE(2805), + [sym_field_expression] = STATE(2805), + [sym_compound_literal_expression] = STATE(2821), + [sym_parenthesized_expression] = STATE(2805), + [sym_char_literal] = STATE(2577), + [sym_concatenated_string] = STATE(2577), + [sym_string_literal] = STATE(1861), + [sym__class_name] = STATE(6652), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2821), + [sym_co_await_expression] = STATE(2821), + [sym_new_expression] = STATE(2821), + [sym_delete_expression] = STATE(2821), + [sym_requires_clause] = STATE(2821), + [sym_requires_expression] = STATE(2821), + [sym_lambda_expression] = STATE(2821), + [sym_lambda_capture_specifier] = STATE(4790), + [sym_fold_expression] = STATE(2821), + [sym_parameter_pack_expansion] = STATE(2821), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4904), + [sym_qualified_identifier] = STATE(2805), + [sym_qualified_type_identifier] = STATE(6652), + [sym_user_defined_literal] = STATE(2821), + [sym_identifier] = ACTIONS(1739), + [anon_sym_LPAREN2] = ACTIONS(1741), + [anon_sym_BANG] = ACTIONS(1745), + [anon_sym_TILDE] = ACTIONS(1745), + [anon_sym_DASH] = ACTIONS(1743), + [anon_sym_PLUS] = ACTIONS(1743), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1753), + [anon_sym_not] = ACTIONS(1743), + [anon_sym_compl] = ACTIONS(1743), + [anon_sym_DASH_DASH] = ACTIONS(1755), + [anon_sym_PLUS_PLUS] = ACTIONS(1755), + [anon_sym_sizeof] = ACTIONS(1757), + [sym_number_literal] = ACTIONS(1759), + [anon_sym_L_SQUOTE] = ACTIONS(1761), + [anon_sym_u_SQUOTE] = ACTIONS(1761), + [anon_sym_U_SQUOTE] = ACTIONS(1761), + [anon_sym_u8_SQUOTE] = ACTIONS(1761), + [anon_sym_SQUOTE] = ACTIONS(1761), + [anon_sym_L_DQUOTE] = ACTIONS(1763), + [anon_sym_u_DQUOTE] = ACTIONS(1763), + [anon_sym_U_DQUOTE] = ACTIONS(1763), + [anon_sym_u8_DQUOTE] = ACTIONS(1763), + [anon_sym_DQUOTE] = ACTIONS(1763), + [sym_true] = ACTIONS(1765), + [sym_false] = ACTIONS(1765), + [sym_null] = ACTIONS(1765), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1767), + [anon_sym_co_await] = ACTIONS(1769), + [anon_sym_new] = ACTIONS(1771), + [anon_sym_requires] = ACTIONS(1773), + [sym_this] = ACTIONS(1765), + [sym_nullptr] = ACTIONS(1765), + [sym_raw_string_literal] = ACTIONS(1775), + }, + [1589] = { + [sym__expression] = STATE(2946), + [sym_conditional_expression] = STATE(2999), + [sym_assignment_expression] = STATE(2999), + [sym_pointer_expression] = STATE(2973), + [sym_unary_expression] = STATE(2999), + [sym_binary_expression] = STATE(2999), + [sym_update_expression] = STATE(2999), + [sym_cast_expression] = STATE(2999), + [sym_sizeof_expression] = STATE(2999), + [sym_subscript_expression] = STATE(2973), + [sym_call_expression] = STATE(2973), + [sym_field_expression] = STATE(2973), + [sym_compound_literal_expression] = STATE(2999), + [sym_parenthesized_expression] = STATE(2973), + [sym_char_literal] = STATE(2933), + [sym_concatenated_string] = STATE(2933), + [sym_string_literal] = STATE(1927), + [sym__class_name] = STATE(6445), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2999), + [sym_co_await_expression] = STATE(2999), + [sym_new_expression] = STATE(2999), + [sym_delete_expression] = STATE(2999), + [sym_requires_clause] = STATE(2999), + [sym_requires_expression] = STATE(2999), + [sym_lambda_expression] = STATE(2999), + [sym_lambda_capture_specifier] = STATE(4767), + [sym_fold_expression] = STATE(2999), + [sym_parameter_pack_expansion] = STATE(2999), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2973), + [sym_qualified_type_identifier] = STATE(6445), + [sym_user_defined_literal] = STATE(2999), + [sym_identifier] = ACTIONS(1919), + [anon_sym_LPAREN2] = ACTIONS(1921), + [anon_sym_BANG] = ACTIONS(1925), + [anon_sym_TILDE] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1923), + [anon_sym_PLUS] = ACTIONS(1923), + [anon_sym_STAR] = ACTIONS(2671), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_COLON_COLON] = ACTIONS(1929), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1933), + [anon_sym_not] = ACTIONS(1923), + [anon_sym_compl] = ACTIONS(1923), + [anon_sym_DASH_DASH] = ACTIONS(1935), + [anon_sym_PLUS_PLUS] = ACTIONS(1935), + [anon_sym_sizeof] = ACTIONS(1937), + [sym_number_literal] = ACTIONS(1939), + [anon_sym_L_SQUOTE] = ACTIONS(1941), + [anon_sym_u_SQUOTE] = ACTIONS(1941), + [anon_sym_U_SQUOTE] = ACTIONS(1941), + [anon_sym_u8_SQUOTE] = ACTIONS(1941), + [anon_sym_SQUOTE] = ACTIONS(1941), + [anon_sym_L_DQUOTE] = ACTIONS(1943), + [anon_sym_u_DQUOTE] = ACTIONS(1943), + [anon_sym_U_DQUOTE] = ACTIONS(1943), + [anon_sym_u8_DQUOTE] = ACTIONS(1943), + [anon_sym_DQUOTE] = ACTIONS(1943), + [sym_true] = ACTIONS(1945), + [sym_false] = ACTIONS(1945), + [sym_null] = ACTIONS(1945), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1947), + [anon_sym_co_await] = ACTIONS(1949), + [anon_sym_new] = ACTIONS(1951), + [anon_sym_requires] = ACTIONS(1953), + [sym_this] = ACTIONS(1945), + [sym_nullptr] = ACTIONS(1945), + [sym_raw_string_literal] = ACTIONS(1955), + }, + [1590] = { + [sym__expression] = STATE(2648), + [sym_conditional_expression] = STATE(2821), + [sym_assignment_expression] = STATE(2821), + [sym_pointer_expression] = STATE(2805), + [sym_unary_expression] = STATE(2821), + [sym_binary_expression] = STATE(2821), + [sym_update_expression] = STATE(2821), + [sym_cast_expression] = STATE(2821), + [sym_sizeof_expression] = STATE(2821), + [sym_subscript_expression] = STATE(2805), + [sym_call_expression] = STATE(2805), + [sym_field_expression] = STATE(2805), + [sym_compound_literal_expression] = STATE(2821), + [sym_parenthesized_expression] = STATE(2805), + [sym_char_literal] = STATE(2577), + [sym_concatenated_string] = STATE(2577), + [sym_string_literal] = STATE(1861), + [sym__class_name] = STATE(6652), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2821), + [sym_co_await_expression] = STATE(2821), + [sym_new_expression] = STATE(2821), + [sym_delete_expression] = STATE(2821), + [sym_requires_clause] = STATE(2821), + [sym_requires_expression] = STATE(2821), + [sym_lambda_expression] = STATE(2821), + [sym_lambda_capture_specifier] = STATE(4790), + [sym_fold_expression] = STATE(2821), + [sym_parameter_pack_expansion] = STATE(2821), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4904), + [sym_qualified_identifier] = STATE(2805), + [sym_qualified_type_identifier] = STATE(6652), + [sym_user_defined_literal] = STATE(2821), + [sym_identifier] = ACTIONS(1739), + [anon_sym_LPAREN2] = ACTIONS(1741), + [anon_sym_BANG] = ACTIONS(1745), + [anon_sym_TILDE] = ACTIONS(1745), + [anon_sym_DASH] = ACTIONS(1743), + [anon_sym_PLUS] = ACTIONS(1743), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1753), + [anon_sym_not] = ACTIONS(1743), + [anon_sym_compl] = ACTIONS(1743), + [anon_sym_DASH_DASH] = ACTIONS(1755), + [anon_sym_PLUS_PLUS] = ACTIONS(1755), + [anon_sym_sizeof] = ACTIONS(1757), + [sym_number_literal] = ACTIONS(1759), + [anon_sym_L_SQUOTE] = ACTIONS(1761), + [anon_sym_u_SQUOTE] = ACTIONS(1761), + [anon_sym_U_SQUOTE] = ACTIONS(1761), + [anon_sym_u8_SQUOTE] = ACTIONS(1761), + [anon_sym_SQUOTE] = ACTIONS(1761), + [anon_sym_L_DQUOTE] = ACTIONS(1763), + [anon_sym_u_DQUOTE] = ACTIONS(1763), + [anon_sym_U_DQUOTE] = ACTIONS(1763), + [anon_sym_u8_DQUOTE] = ACTIONS(1763), + [anon_sym_DQUOTE] = ACTIONS(1763), + [sym_true] = ACTIONS(1765), + [sym_false] = ACTIONS(1765), + [sym_null] = ACTIONS(1765), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1767), + [anon_sym_co_await] = ACTIONS(1769), + [anon_sym_new] = ACTIONS(1771), + [anon_sym_requires] = ACTIONS(1773), + [sym_this] = ACTIONS(1765), + [sym_nullptr] = ACTIONS(1765), + [sym_raw_string_literal] = ACTIONS(1775), + }, + [1591] = { + [sym__expression] = STATE(2649), + [sym_conditional_expression] = STATE(2821), + [sym_assignment_expression] = STATE(2821), + [sym_pointer_expression] = STATE(2805), + [sym_unary_expression] = STATE(2821), + [sym_binary_expression] = STATE(2821), + [sym_update_expression] = STATE(2821), + [sym_cast_expression] = STATE(2821), + [sym_sizeof_expression] = STATE(2821), + [sym_subscript_expression] = STATE(2805), + [sym_call_expression] = STATE(2805), + [sym_field_expression] = STATE(2805), + [sym_compound_literal_expression] = STATE(2821), + [sym_parenthesized_expression] = STATE(2805), + [sym_char_literal] = STATE(2577), + [sym_concatenated_string] = STATE(2577), + [sym_string_literal] = STATE(1861), + [sym__class_name] = STATE(6652), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2821), + [sym_co_await_expression] = STATE(2821), + [sym_new_expression] = STATE(2821), + [sym_delete_expression] = STATE(2821), + [sym_requires_clause] = STATE(2821), + [sym_requires_expression] = STATE(2821), + [sym_lambda_expression] = STATE(2821), + [sym_lambda_capture_specifier] = STATE(4790), + [sym_fold_expression] = STATE(2821), + [sym_parameter_pack_expansion] = STATE(2821), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4904), + [sym_qualified_identifier] = STATE(2805), + [sym_qualified_type_identifier] = STATE(6652), + [sym_user_defined_literal] = STATE(2821), + [sym_identifier] = ACTIONS(1739), + [anon_sym_LPAREN2] = ACTIONS(1741), + [anon_sym_BANG] = ACTIONS(1745), + [anon_sym_TILDE] = ACTIONS(1745), + [anon_sym_DASH] = ACTIONS(1743), + [anon_sym_PLUS] = ACTIONS(1743), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1753), + [anon_sym_not] = ACTIONS(1743), + [anon_sym_compl] = ACTIONS(1743), + [anon_sym_DASH_DASH] = ACTIONS(1755), + [anon_sym_PLUS_PLUS] = ACTIONS(1755), + [anon_sym_sizeof] = ACTIONS(1757), + [sym_number_literal] = ACTIONS(1759), + [anon_sym_L_SQUOTE] = ACTIONS(1761), + [anon_sym_u_SQUOTE] = ACTIONS(1761), + [anon_sym_U_SQUOTE] = ACTIONS(1761), + [anon_sym_u8_SQUOTE] = ACTIONS(1761), + [anon_sym_SQUOTE] = ACTIONS(1761), + [anon_sym_L_DQUOTE] = ACTIONS(1763), + [anon_sym_u_DQUOTE] = ACTIONS(1763), + [anon_sym_U_DQUOTE] = ACTIONS(1763), + [anon_sym_u8_DQUOTE] = ACTIONS(1763), + [anon_sym_DQUOTE] = ACTIONS(1763), + [sym_true] = ACTIONS(1765), + [sym_false] = ACTIONS(1765), + [sym_null] = ACTIONS(1765), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1767), + [anon_sym_co_await] = ACTIONS(1769), + [anon_sym_new] = ACTIONS(1771), + [anon_sym_requires] = ACTIONS(1773), + [sym_this] = ACTIONS(1765), + [sym_nullptr] = ACTIONS(1765), + [sym_raw_string_literal] = ACTIONS(1775), + }, + [1592] = { + [sym__expression] = STATE(2650), + [sym_conditional_expression] = STATE(2821), + [sym_assignment_expression] = STATE(2821), + [sym_pointer_expression] = STATE(2805), + [sym_unary_expression] = STATE(2821), + [sym_binary_expression] = STATE(2821), + [sym_update_expression] = STATE(2821), + [sym_cast_expression] = STATE(2821), + [sym_sizeof_expression] = STATE(2821), + [sym_subscript_expression] = STATE(2805), + [sym_call_expression] = STATE(2805), + [sym_field_expression] = STATE(2805), + [sym_compound_literal_expression] = STATE(2821), + [sym_parenthesized_expression] = STATE(2805), + [sym_char_literal] = STATE(2577), + [sym_concatenated_string] = STATE(2577), + [sym_string_literal] = STATE(1861), + [sym__class_name] = STATE(6652), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2821), + [sym_co_await_expression] = STATE(2821), + [sym_new_expression] = STATE(2821), + [sym_delete_expression] = STATE(2821), + [sym_requires_clause] = STATE(2821), + [sym_requires_expression] = STATE(2821), + [sym_lambda_expression] = STATE(2821), + [sym_lambda_capture_specifier] = STATE(4790), + [sym_fold_expression] = STATE(2821), + [sym_parameter_pack_expansion] = STATE(2821), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4904), + [sym_qualified_identifier] = STATE(2805), + [sym_qualified_type_identifier] = STATE(6652), + [sym_user_defined_literal] = STATE(2821), + [sym_identifier] = ACTIONS(1739), + [anon_sym_LPAREN2] = ACTIONS(1741), + [anon_sym_BANG] = ACTIONS(1745), + [anon_sym_TILDE] = ACTIONS(1745), + [anon_sym_DASH] = ACTIONS(1743), + [anon_sym_PLUS] = ACTIONS(1743), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1753), + [anon_sym_not] = ACTIONS(1743), + [anon_sym_compl] = ACTIONS(1743), + [anon_sym_DASH_DASH] = ACTIONS(1755), + [anon_sym_PLUS_PLUS] = ACTIONS(1755), + [anon_sym_sizeof] = ACTIONS(1757), + [sym_number_literal] = ACTIONS(1759), + [anon_sym_L_SQUOTE] = ACTIONS(1761), + [anon_sym_u_SQUOTE] = ACTIONS(1761), + [anon_sym_U_SQUOTE] = ACTIONS(1761), + [anon_sym_u8_SQUOTE] = ACTIONS(1761), + [anon_sym_SQUOTE] = ACTIONS(1761), + [anon_sym_L_DQUOTE] = ACTIONS(1763), + [anon_sym_u_DQUOTE] = ACTIONS(1763), + [anon_sym_U_DQUOTE] = ACTIONS(1763), + [anon_sym_u8_DQUOTE] = ACTIONS(1763), + [anon_sym_DQUOTE] = ACTIONS(1763), + [sym_true] = ACTIONS(1765), + [sym_false] = ACTIONS(1765), + [sym_null] = ACTIONS(1765), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1767), + [anon_sym_co_await] = ACTIONS(1769), + [anon_sym_new] = ACTIONS(1771), + [anon_sym_requires] = ACTIONS(1773), + [sym_this] = ACTIONS(1765), + [sym_nullptr] = ACTIONS(1765), + [sym_raw_string_literal] = ACTIONS(1775), + }, + [1593] = { + [sym__expression] = STATE(2652), + [sym_conditional_expression] = STATE(2821), + [sym_assignment_expression] = STATE(2821), + [sym_pointer_expression] = STATE(2805), + [sym_unary_expression] = STATE(2821), + [sym_binary_expression] = STATE(2821), + [sym_update_expression] = STATE(2821), + [sym_cast_expression] = STATE(2821), + [sym_sizeof_expression] = STATE(2821), + [sym_subscript_expression] = STATE(2805), + [sym_call_expression] = STATE(2805), + [sym_field_expression] = STATE(2805), + [sym_compound_literal_expression] = STATE(2821), + [sym_parenthesized_expression] = STATE(2805), + [sym_char_literal] = STATE(2577), + [sym_concatenated_string] = STATE(2577), + [sym_string_literal] = STATE(1861), + [sym__class_name] = STATE(6652), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2821), + [sym_co_await_expression] = STATE(2821), + [sym_new_expression] = STATE(2821), + [sym_delete_expression] = STATE(2821), + [sym_requires_clause] = STATE(2821), + [sym_requires_expression] = STATE(2821), + [sym_lambda_expression] = STATE(2821), + [sym_lambda_capture_specifier] = STATE(4790), + [sym_fold_expression] = STATE(2821), + [sym_parameter_pack_expansion] = STATE(2821), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4904), + [sym_qualified_identifier] = STATE(2805), + [sym_qualified_type_identifier] = STATE(6652), + [sym_user_defined_literal] = STATE(2821), + [sym_identifier] = ACTIONS(1739), + [anon_sym_LPAREN2] = ACTIONS(1741), + [anon_sym_BANG] = ACTIONS(1745), + [anon_sym_TILDE] = ACTIONS(1745), + [anon_sym_DASH] = ACTIONS(1743), + [anon_sym_PLUS] = ACTIONS(1743), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1753), + [anon_sym_not] = ACTIONS(1743), + [anon_sym_compl] = ACTIONS(1743), + [anon_sym_DASH_DASH] = ACTIONS(1755), + [anon_sym_PLUS_PLUS] = ACTIONS(1755), + [anon_sym_sizeof] = ACTIONS(1757), + [sym_number_literal] = ACTIONS(1759), + [anon_sym_L_SQUOTE] = ACTIONS(1761), + [anon_sym_u_SQUOTE] = ACTIONS(1761), + [anon_sym_U_SQUOTE] = ACTIONS(1761), + [anon_sym_u8_SQUOTE] = ACTIONS(1761), + [anon_sym_SQUOTE] = ACTIONS(1761), + [anon_sym_L_DQUOTE] = ACTIONS(1763), + [anon_sym_u_DQUOTE] = ACTIONS(1763), + [anon_sym_U_DQUOTE] = ACTIONS(1763), + [anon_sym_u8_DQUOTE] = ACTIONS(1763), + [anon_sym_DQUOTE] = ACTIONS(1763), + [sym_true] = ACTIONS(1765), + [sym_false] = ACTIONS(1765), + [sym_null] = ACTIONS(1765), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1767), + [anon_sym_co_await] = ACTIONS(1769), + [anon_sym_new] = ACTIONS(1771), + [anon_sym_requires] = ACTIONS(1773), + [sym_this] = ACTIONS(1765), + [sym_nullptr] = ACTIONS(1765), + [sym_raw_string_literal] = ACTIONS(1775), + }, + [1594] = { + [sym__expression] = STATE(2653), + [sym_conditional_expression] = STATE(2821), + [sym_assignment_expression] = STATE(2821), + [sym_pointer_expression] = STATE(2805), + [sym_unary_expression] = STATE(2821), + [sym_binary_expression] = STATE(2821), + [sym_update_expression] = STATE(2821), + [sym_cast_expression] = STATE(2821), + [sym_sizeof_expression] = STATE(2821), + [sym_subscript_expression] = STATE(2805), + [sym_call_expression] = STATE(2805), + [sym_field_expression] = STATE(2805), + [sym_compound_literal_expression] = STATE(2821), + [sym_parenthesized_expression] = STATE(2805), + [sym_char_literal] = STATE(2577), + [sym_concatenated_string] = STATE(2577), + [sym_string_literal] = STATE(1861), + [sym__class_name] = STATE(6652), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2821), + [sym_co_await_expression] = STATE(2821), + [sym_new_expression] = STATE(2821), + [sym_delete_expression] = STATE(2821), + [sym_requires_clause] = STATE(2821), + [sym_requires_expression] = STATE(2821), + [sym_lambda_expression] = STATE(2821), + [sym_lambda_capture_specifier] = STATE(4790), + [sym_fold_expression] = STATE(2821), + [sym_parameter_pack_expansion] = STATE(2821), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4904), + [sym_qualified_identifier] = STATE(2805), + [sym_qualified_type_identifier] = STATE(6652), + [sym_user_defined_literal] = STATE(2821), + [sym_identifier] = ACTIONS(1739), + [anon_sym_LPAREN2] = ACTIONS(1741), + [anon_sym_BANG] = ACTIONS(1745), + [anon_sym_TILDE] = ACTIONS(1745), + [anon_sym_DASH] = ACTIONS(1743), + [anon_sym_PLUS] = ACTIONS(1743), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1753), + [anon_sym_not] = ACTIONS(1743), + [anon_sym_compl] = ACTIONS(1743), + [anon_sym_DASH_DASH] = ACTIONS(1755), + [anon_sym_PLUS_PLUS] = ACTIONS(1755), + [anon_sym_sizeof] = ACTIONS(1757), + [sym_number_literal] = ACTIONS(1759), + [anon_sym_L_SQUOTE] = ACTIONS(1761), + [anon_sym_u_SQUOTE] = ACTIONS(1761), + [anon_sym_U_SQUOTE] = ACTIONS(1761), + [anon_sym_u8_SQUOTE] = ACTIONS(1761), + [anon_sym_SQUOTE] = ACTIONS(1761), + [anon_sym_L_DQUOTE] = ACTIONS(1763), + [anon_sym_u_DQUOTE] = ACTIONS(1763), + [anon_sym_U_DQUOTE] = ACTIONS(1763), + [anon_sym_u8_DQUOTE] = ACTIONS(1763), + [anon_sym_DQUOTE] = ACTIONS(1763), + [sym_true] = ACTIONS(1765), + [sym_false] = ACTIONS(1765), + [sym_null] = ACTIONS(1765), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1767), + [anon_sym_co_await] = ACTIONS(1769), + [anon_sym_new] = ACTIONS(1771), + [anon_sym_requires] = ACTIONS(1773), + [sym_this] = ACTIONS(1765), + [sym_nullptr] = ACTIONS(1765), + [sym_raw_string_literal] = ACTIONS(1775), + }, + [1595] = { + [sym__expression] = STATE(2647), + [sym_conditional_expression] = STATE(2821), + [sym_assignment_expression] = STATE(2821), + [sym_pointer_expression] = STATE(2805), + [sym_unary_expression] = STATE(2821), + [sym_binary_expression] = STATE(2821), + [sym_update_expression] = STATE(2821), + [sym_cast_expression] = STATE(2821), + [sym_sizeof_expression] = STATE(2821), + [sym_subscript_expression] = STATE(2805), + [sym_call_expression] = STATE(2805), + [sym_field_expression] = STATE(2805), + [sym_compound_literal_expression] = STATE(2821), + [sym_parenthesized_expression] = STATE(2805), + [sym_char_literal] = STATE(2577), + [sym_concatenated_string] = STATE(2577), + [sym_string_literal] = STATE(1861), + [sym__class_name] = STATE(6652), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2821), + [sym_co_await_expression] = STATE(2821), + [sym_new_expression] = STATE(2821), + [sym_delete_expression] = STATE(2821), + [sym_requires_clause] = STATE(2821), + [sym_requires_expression] = STATE(2821), + [sym_lambda_expression] = STATE(2821), + [sym_lambda_capture_specifier] = STATE(4790), + [sym_fold_expression] = STATE(2821), + [sym_parameter_pack_expansion] = STATE(2821), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4904), + [sym_qualified_identifier] = STATE(2805), + [sym_qualified_type_identifier] = STATE(6652), + [sym_user_defined_literal] = STATE(2821), + [sym_identifier] = ACTIONS(1739), + [anon_sym_LPAREN2] = ACTIONS(1741), + [anon_sym_BANG] = ACTIONS(1745), + [anon_sym_TILDE] = ACTIONS(1745), + [anon_sym_DASH] = ACTIONS(1743), + [anon_sym_PLUS] = ACTIONS(1743), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1753), + [anon_sym_not] = ACTIONS(1743), + [anon_sym_compl] = ACTIONS(1743), + [anon_sym_DASH_DASH] = ACTIONS(1755), + [anon_sym_PLUS_PLUS] = ACTIONS(1755), + [anon_sym_sizeof] = ACTIONS(1757), + [sym_number_literal] = ACTIONS(1759), + [anon_sym_L_SQUOTE] = ACTIONS(1761), + [anon_sym_u_SQUOTE] = ACTIONS(1761), + [anon_sym_U_SQUOTE] = ACTIONS(1761), + [anon_sym_u8_SQUOTE] = ACTIONS(1761), + [anon_sym_SQUOTE] = ACTIONS(1761), + [anon_sym_L_DQUOTE] = ACTIONS(1763), + [anon_sym_u_DQUOTE] = ACTIONS(1763), + [anon_sym_U_DQUOTE] = ACTIONS(1763), + [anon_sym_u8_DQUOTE] = ACTIONS(1763), + [anon_sym_DQUOTE] = ACTIONS(1763), + [sym_true] = ACTIONS(1765), + [sym_false] = ACTIONS(1765), + [sym_null] = ACTIONS(1765), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1767), + [anon_sym_co_await] = ACTIONS(1769), + [anon_sym_new] = ACTIONS(1771), + [anon_sym_requires] = ACTIONS(1773), + [sym_this] = ACTIONS(1765), + [sym_nullptr] = ACTIONS(1765), + [sym_raw_string_literal] = ACTIONS(1775), + }, + [1596] = { + [sym__expression] = STATE(2654), + [sym_conditional_expression] = STATE(2821), + [sym_assignment_expression] = STATE(2821), + [sym_pointer_expression] = STATE(2805), + [sym_unary_expression] = STATE(2821), + [sym_binary_expression] = STATE(2821), + [sym_update_expression] = STATE(2821), + [sym_cast_expression] = STATE(2821), + [sym_sizeof_expression] = STATE(2821), + [sym_subscript_expression] = STATE(2805), + [sym_call_expression] = STATE(2805), + [sym_field_expression] = STATE(2805), + [sym_compound_literal_expression] = STATE(2821), + [sym_parenthesized_expression] = STATE(2805), + [sym_char_literal] = STATE(2577), + [sym_concatenated_string] = STATE(2577), + [sym_string_literal] = STATE(1861), + [sym__class_name] = STATE(6652), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2821), + [sym_co_await_expression] = STATE(2821), + [sym_new_expression] = STATE(2821), + [sym_delete_expression] = STATE(2821), + [sym_requires_clause] = STATE(2821), + [sym_requires_expression] = STATE(2821), + [sym_lambda_expression] = STATE(2821), + [sym_lambda_capture_specifier] = STATE(4790), + [sym_fold_expression] = STATE(2821), + [sym_parameter_pack_expansion] = STATE(2821), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4904), + [sym_qualified_identifier] = STATE(2805), + [sym_qualified_type_identifier] = STATE(6652), + [sym_user_defined_literal] = STATE(2821), + [sym_identifier] = ACTIONS(1739), + [anon_sym_LPAREN2] = ACTIONS(1741), + [anon_sym_BANG] = ACTIONS(1745), + [anon_sym_TILDE] = ACTIONS(1745), + [anon_sym_DASH] = ACTIONS(1743), + [anon_sym_PLUS] = ACTIONS(1743), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1753), + [anon_sym_not] = ACTIONS(1743), + [anon_sym_compl] = ACTIONS(1743), + [anon_sym_DASH_DASH] = ACTIONS(1755), + [anon_sym_PLUS_PLUS] = ACTIONS(1755), + [anon_sym_sizeof] = ACTIONS(1757), + [sym_number_literal] = ACTIONS(1759), + [anon_sym_L_SQUOTE] = ACTIONS(1761), + [anon_sym_u_SQUOTE] = ACTIONS(1761), + [anon_sym_U_SQUOTE] = ACTIONS(1761), + [anon_sym_u8_SQUOTE] = ACTIONS(1761), + [anon_sym_SQUOTE] = ACTIONS(1761), + [anon_sym_L_DQUOTE] = ACTIONS(1763), + [anon_sym_u_DQUOTE] = ACTIONS(1763), + [anon_sym_U_DQUOTE] = ACTIONS(1763), + [anon_sym_u8_DQUOTE] = ACTIONS(1763), + [anon_sym_DQUOTE] = ACTIONS(1763), + [sym_true] = ACTIONS(1765), + [sym_false] = ACTIONS(1765), + [sym_null] = ACTIONS(1765), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1767), + [anon_sym_co_await] = ACTIONS(1769), + [anon_sym_new] = ACTIONS(1771), + [anon_sym_requires] = ACTIONS(1773), + [sym_this] = ACTIONS(1765), + [sym_nullptr] = ACTIONS(1765), + [sym_raw_string_literal] = ACTIONS(1775), + }, + [1597] = { + [sym__expression] = STATE(2655), + [sym_conditional_expression] = STATE(2821), + [sym_assignment_expression] = STATE(2821), + [sym_pointer_expression] = STATE(2805), + [sym_unary_expression] = STATE(2821), + [sym_binary_expression] = STATE(2821), + [sym_update_expression] = STATE(2821), + [sym_cast_expression] = STATE(2821), + [sym_sizeof_expression] = STATE(2821), + [sym_subscript_expression] = STATE(2805), + [sym_call_expression] = STATE(2805), + [sym_field_expression] = STATE(2805), + [sym_compound_literal_expression] = STATE(2821), + [sym_parenthesized_expression] = STATE(2805), + [sym_char_literal] = STATE(2577), + [sym_concatenated_string] = STATE(2577), + [sym_string_literal] = STATE(1861), + [sym__class_name] = STATE(6652), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2821), + [sym_co_await_expression] = STATE(2821), + [sym_new_expression] = STATE(2821), + [sym_delete_expression] = STATE(2821), + [sym_requires_clause] = STATE(2821), + [sym_requires_expression] = STATE(2821), + [sym_lambda_expression] = STATE(2821), + [sym_lambda_capture_specifier] = STATE(4790), + [sym_fold_expression] = STATE(2821), + [sym_parameter_pack_expansion] = STATE(2821), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4904), + [sym_qualified_identifier] = STATE(2805), + [sym_qualified_type_identifier] = STATE(6652), + [sym_user_defined_literal] = STATE(2821), + [sym_identifier] = ACTIONS(1739), + [anon_sym_LPAREN2] = ACTIONS(1741), + [anon_sym_BANG] = ACTIONS(1745), + [anon_sym_TILDE] = ACTIONS(1745), + [anon_sym_DASH] = ACTIONS(1743), + [anon_sym_PLUS] = ACTIONS(1743), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1753), + [anon_sym_not] = ACTIONS(1743), + [anon_sym_compl] = ACTIONS(1743), + [anon_sym_DASH_DASH] = ACTIONS(1755), + [anon_sym_PLUS_PLUS] = ACTIONS(1755), + [anon_sym_sizeof] = ACTIONS(1757), + [sym_number_literal] = ACTIONS(1759), + [anon_sym_L_SQUOTE] = ACTIONS(1761), + [anon_sym_u_SQUOTE] = ACTIONS(1761), + [anon_sym_U_SQUOTE] = ACTIONS(1761), + [anon_sym_u8_SQUOTE] = ACTIONS(1761), + [anon_sym_SQUOTE] = ACTIONS(1761), + [anon_sym_L_DQUOTE] = ACTIONS(1763), + [anon_sym_u_DQUOTE] = ACTIONS(1763), + [anon_sym_U_DQUOTE] = ACTIONS(1763), + [anon_sym_u8_DQUOTE] = ACTIONS(1763), + [anon_sym_DQUOTE] = ACTIONS(1763), + [sym_true] = ACTIONS(1765), + [sym_false] = ACTIONS(1765), + [sym_null] = ACTIONS(1765), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1767), + [anon_sym_co_await] = ACTIONS(1769), + [anon_sym_new] = ACTIONS(1771), + [anon_sym_requires] = ACTIONS(1773), + [sym_this] = ACTIONS(1765), + [sym_nullptr] = ACTIONS(1765), + [sym_raw_string_literal] = ACTIONS(1775), + }, + [1598] = { + [sym__expression] = STATE(2656), + [sym_conditional_expression] = STATE(2821), + [sym_assignment_expression] = STATE(2821), + [sym_pointer_expression] = STATE(2805), + [sym_unary_expression] = STATE(2821), + [sym_binary_expression] = STATE(2821), + [sym_update_expression] = STATE(2821), + [sym_cast_expression] = STATE(2821), + [sym_sizeof_expression] = STATE(2821), + [sym_subscript_expression] = STATE(2805), + [sym_call_expression] = STATE(2805), + [sym_field_expression] = STATE(2805), + [sym_compound_literal_expression] = STATE(2821), + [sym_parenthesized_expression] = STATE(2805), + [sym_char_literal] = STATE(2577), + [sym_concatenated_string] = STATE(2577), + [sym_string_literal] = STATE(1861), + [sym__class_name] = STATE(6652), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2821), + [sym_co_await_expression] = STATE(2821), + [sym_new_expression] = STATE(2821), + [sym_delete_expression] = STATE(2821), + [sym_requires_clause] = STATE(2821), + [sym_requires_expression] = STATE(2821), + [sym_lambda_expression] = STATE(2821), + [sym_lambda_capture_specifier] = STATE(4790), + [sym_fold_expression] = STATE(2821), + [sym_parameter_pack_expansion] = STATE(2821), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4904), + [sym_qualified_identifier] = STATE(2805), + [sym_qualified_type_identifier] = STATE(6652), + [sym_user_defined_literal] = STATE(2821), + [sym_identifier] = ACTIONS(1739), + [anon_sym_LPAREN2] = ACTIONS(1741), + [anon_sym_BANG] = ACTIONS(1745), + [anon_sym_TILDE] = ACTIONS(1745), + [anon_sym_DASH] = ACTIONS(1743), + [anon_sym_PLUS] = ACTIONS(1743), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1753), + [anon_sym_not] = ACTIONS(1743), + [anon_sym_compl] = ACTIONS(1743), + [anon_sym_DASH_DASH] = ACTIONS(1755), + [anon_sym_PLUS_PLUS] = ACTIONS(1755), + [anon_sym_sizeof] = ACTIONS(1757), + [sym_number_literal] = ACTIONS(1759), + [anon_sym_L_SQUOTE] = ACTIONS(1761), + [anon_sym_u_SQUOTE] = ACTIONS(1761), + [anon_sym_U_SQUOTE] = ACTIONS(1761), + [anon_sym_u8_SQUOTE] = ACTIONS(1761), + [anon_sym_SQUOTE] = ACTIONS(1761), + [anon_sym_L_DQUOTE] = ACTIONS(1763), + [anon_sym_u_DQUOTE] = ACTIONS(1763), + [anon_sym_U_DQUOTE] = ACTIONS(1763), + [anon_sym_u8_DQUOTE] = ACTIONS(1763), + [anon_sym_DQUOTE] = ACTIONS(1763), + [sym_true] = ACTIONS(1765), + [sym_false] = ACTIONS(1765), + [sym_null] = ACTIONS(1765), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1767), + [anon_sym_co_await] = ACTIONS(1769), + [anon_sym_new] = ACTIONS(1771), + [anon_sym_requires] = ACTIONS(1773), + [sym_this] = ACTIONS(1765), + [sym_nullptr] = ACTIONS(1765), + [sym_raw_string_literal] = ACTIONS(1775), + }, + [1599] = { + [sym__expression] = STATE(3893), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3121), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3121), + [sym_call_expression] = STATE(3121), + [sym_field_expression] = STATE(3121), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3121), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3121), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3109), + [anon_sym_LPAREN2] = ACTIONS(3111), + [anon_sym_BANG] = ACTIONS(3115), + [anon_sym_TILDE] = ACTIONS(3115), + [anon_sym_DASH] = ACTIONS(3113), + [anon_sym_PLUS] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(3117), + [anon_sym_AMP] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(3119), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3113), + [anon_sym_compl] = ACTIONS(3113), + [anon_sym_DASH_DASH] = ACTIONS(3121), + [anon_sym_PLUS_PLUS] = ACTIONS(3121), + [anon_sym_sizeof] = ACTIONS(3123), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3125), + [anon_sym_co_await] = ACTIONS(3127), + [anon_sym_new] = ACTIONS(3129), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1600] = { + [sym__expression] = STATE(3932), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3121), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3121), + [sym_call_expression] = STATE(3121), + [sym_field_expression] = STATE(3121), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3121), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3121), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3109), + [anon_sym_LPAREN2] = ACTIONS(3111), + [anon_sym_BANG] = ACTIONS(3115), + [anon_sym_TILDE] = ACTIONS(3115), + [anon_sym_DASH] = ACTIONS(3113), + [anon_sym_PLUS] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(3117), + [anon_sym_AMP] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(3119), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3113), + [anon_sym_compl] = ACTIONS(3113), + [anon_sym_DASH_DASH] = ACTIONS(3121), + [anon_sym_PLUS_PLUS] = ACTIONS(3121), + [anon_sym_sizeof] = ACTIONS(3123), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3125), + [anon_sym_co_await] = ACTIONS(3127), + [anon_sym_new] = ACTIONS(3129), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1601] = { + [sym__expression] = STATE(3522), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1602] = { + [sym__expression] = STATE(3029), + [sym_conditional_expression] = STATE(2562), + [sym_assignment_expression] = STATE(2562), + [sym_pointer_expression] = STATE(2549), + [sym_unary_expression] = STATE(2562), + [sym_binary_expression] = STATE(2562), + [sym_update_expression] = STATE(2562), + [sym_cast_expression] = STATE(2562), + [sym_sizeof_expression] = STATE(2562), + [sym_subscript_expression] = STATE(2549), + [sym_call_expression] = STATE(2549), + [sym_field_expression] = STATE(2549), + [sym_compound_literal_expression] = STATE(2562), + [sym_parenthesized_expression] = STATE(2549), + [sym_char_literal] = STATE(2344), + [sym_concatenated_string] = STATE(2344), + [sym_string_literal] = STATE(1824), + [sym__class_name] = STATE(6654), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2562), + [sym_co_await_expression] = STATE(2562), + [sym_new_expression] = STATE(2562), + [sym_delete_expression] = STATE(2562), + [sym_requires_clause] = STATE(2562), + [sym_requires_expression] = STATE(2562), + [sym_lambda_expression] = STATE(2562), + [sym_lambda_capture_specifier] = STATE(4787), + [sym_fold_expression] = STATE(2562), + [sym_parameter_pack_expansion] = STATE(2562), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2549), + [sym_qualified_type_identifier] = STATE(6654), + [sym_user_defined_literal] = STATE(2562), + [sym_identifier] = ACTIONS(1697), + [anon_sym_LPAREN2] = ACTIONS(1961), + [anon_sym_BANG] = ACTIONS(1965), + [anon_sym_TILDE] = ACTIONS(1965), + [anon_sym_DASH] = ACTIONS(1963), + [anon_sym_PLUS] = ACTIONS(1963), + [anon_sym_STAR] = ACTIONS(3117), + [anon_sym_AMP] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(1969), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(1963), + [anon_sym_compl] = ACTIONS(1963), + [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1971), + [anon_sym_sizeof] = ACTIONS(1973), + [sym_number_literal] = ACTIONS(1721), + [anon_sym_L_SQUOTE] = ACTIONS(1723), + [anon_sym_u_SQUOTE] = ACTIONS(1723), + [anon_sym_U_SQUOTE] = ACTIONS(1723), + [anon_sym_u8_SQUOTE] = ACTIONS(1723), + [anon_sym_SQUOTE] = ACTIONS(1723), + [anon_sym_L_DQUOTE] = ACTIONS(1725), + [anon_sym_u_DQUOTE] = ACTIONS(1725), + [anon_sym_U_DQUOTE] = ACTIONS(1725), + [anon_sym_u8_DQUOTE] = ACTIONS(1725), + [anon_sym_DQUOTE] = ACTIONS(1725), + [sym_true] = ACTIONS(1727), + [sym_false] = ACTIONS(1727), + [sym_null] = ACTIONS(1727), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1975), + [anon_sym_co_await] = ACTIONS(1977), + [anon_sym_new] = ACTIONS(1979), + [anon_sym_requires] = ACTIONS(1735), + [sym_this] = ACTIONS(1727), + [sym_nullptr] = ACTIONS(1727), + [sym_raw_string_literal] = ACTIONS(1737), + }, + [1603] = { + [sym__expression] = STATE(2934), + [sym_conditional_expression] = STATE(2999), + [sym_assignment_expression] = STATE(2999), + [sym_pointer_expression] = STATE(2973), + [sym_unary_expression] = STATE(2999), + [sym_binary_expression] = STATE(2999), + [sym_update_expression] = STATE(2999), + [sym_cast_expression] = STATE(2999), + [sym_sizeof_expression] = STATE(2999), + [sym_subscript_expression] = STATE(2973), + [sym_call_expression] = STATE(2973), + [sym_field_expression] = STATE(2973), + [sym_compound_literal_expression] = STATE(2999), + [sym_parenthesized_expression] = STATE(2973), + [sym_char_literal] = STATE(2933), + [sym_concatenated_string] = STATE(2933), + [sym_string_literal] = STATE(1927), + [sym__class_name] = STATE(6445), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2999), + [sym_co_await_expression] = STATE(2999), + [sym_new_expression] = STATE(2999), + [sym_delete_expression] = STATE(2999), + [sym_requires_clause] = STATE(2999), + [sym_requires_expression] = STATE(2999), + [sym_lambda_expression] = STATE(2999), + [sym_lambda_capture_specifier] = STATE(4767), + [sym_fold_expression] = STATE(2999), + [sym_parameter_pack_expansion] = STATE(2999), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2973), + [sym_qualified_type_identifier] = STATE(6445), + [sym_user_defined_literal] = STATE(2999), + [sym_identifier] = ACTIONS(1919), + [anon_sym_LPAREN2] = ACTIONS(1921), + [anon_sym_BANG] = ACTIONS(1925), + [anon_sym_TILDE] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1923), + [anon_sym_PLUS] = ACTIONS(1923), + [anon_sym_STAR] = ACTIONS(2671), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_COLON_COLON] = ACTIONS(1929), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1933), + [anon_sym_not] = ACTIONS(1923), + [anon_sym_compl] = ACTIONS(1923), + [anon_sym_DASH_DASH] = ACTIONS(1935), + [anon_sym_PLUS_PLUS] = ACTIONS(1935), + [anon_sym_sizeof] = ACTIONS(1937), + [sym_number_literal] = ACTIONS(1939), + [anon_sym_L_SQUOTE] = ACTIONS(1941), + [anon_sym_u_SQUOTE] = ACTIONS(1941), + [anon_sym_U_SQUOTE] = ACTIONS(1941), + [anon_sym_u8_SQUOTE] = ACTIONS(1941), + [anon_sym_SQUOTE] = ACTIONS(1941), + [anon_sym_L_DQUOTE] = ACTIONS(1943), + [anon_sym_u_DQUOTE] = ACTIONS(1943), + [anon_sym_U_DQUOTE] = ACTIONS(1943), + [anon_sym_u8_DQUOTE] = ACTIONS(1943), + [anon_sym_DQUOTE] = ACTIONS(1943), + [sym_true] = ACTIONS(1945), + [sym_false] = ACTIONS(1945), + [sym_null] = ACTIONS(1945), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1947), + [anon_sym_co_await] = ACTIONS(1949), + [anon_sym_new] = ACTIONS(1951), + [anon_sym_requires] = ACTIONS(1953), + [sym_this] = ACTIONS(1945), + [sym_nullptr] = ACTIONS(1945), + [sym_raw_string_literal] = ACTIONS(1955), + }, + [1604] = { + [sym__expression] = STATE(3952), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1605] = { + [sym__expression] = STATE(3026), + [sym_conditional_expression] = STATE(2562), + [sym_assignment_expression] = STATE(2562), + [sym_pointer_expression] = STATE(2549), + [sym_unary_expression] = STATE(2562), + [sym_binary_expression] = STATE(2562), + [sym_update_expression] = STATE(2562), + [sym_cast_expression] = STATE(2562), + [sym_sizeof_expression] = STATE(2562), + [sym_subscript_expression] = STATE(2549), + [sym_call_expression] = STATE(2549), + [sym_field_expression] = STATE(2549), + [sym_compound_literal_expression] = STATE(2562), + [sym_parenthesized_expression] = STATE(2549), + [sym_char_literal] = STATE(2344), + [sym_concatenated_string] = STATE(2344), + [sym_string_literal] = STATE(1824), + [sym__class_name] = STATE(6654), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2562), + [sym_co_await_expression] = STATE(2562), + [sym_new_expression] = STATE(2562), + [sym_delete_expression] = STATE(2562), + [sym_requires_clause] = STATE(2562), + [sym_requires_expression] = STATE(2562), + [sym_lambda_expression] = STATE(2562), + [sym_lambda_capture_specifier] = STATE(4787), + [sym_fold_expression] = STATE(2562), + [sym_parameter_pack_expansion] = STATE(2562), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2549), + [sym_qualified_type_identifier] = STATE(6654), + [sym_user_defined_literal] = STATE(2562), + [sym_identifier] = ACTIONS(1697), + [anon_sym_LPAREN2] = ACTIONS(1961), + [anon_sym_BANG] = ACTIONS(1965), + [anon_sym_TILDE] = ACTIONS(1965), + [anon_sym_DASH] = ACTIONS(1963), + [anon_sym_PLUS] = ACTIONS(1963), + [anon_sym_STAR] = ACTIONS(3117), + [anon_sym_AMP] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(1969), + [anon_sym_LBRACK] = ACTIONS(3871), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(1963), + [anon_sym_compl] = ACTIONS(1963), + [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1971), + [anon_sym_sizeof] = ACTIONS(1973), + [sym_number_literal] = ACTIONS(1721), + [anon_sym_L_SQUOTE] = ACTIONS(1723), + [anon_sym_u_SQUOTE] = ACTIONS(1723), + [anon_sym_U_SQUOTE] = ACTIONS(1723), + [anon_sym_u8_SQUOTE] = ACTIONS(1723), + [anon_sym_SQUOTE] = ACTIONS(1723), + [anon_sym_L_DQUOTE] = ACTIONS(1725), + [anon_sym_u_DQUOTE] = ACTIONS(1725), + [anon_sym_U_DQUOTE] = ACTIONS(1725), + [anon_sym_u8_DQUOTE] = ACTIONS(1725), + [anon_sym_DQUOTE] = ACTIONS(1725), + [sym_true] = ACTIONS(1727), + [sym_false] = ACTIONS(1727), + [sym_null] = ACTIONS(1727), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1975), + [anon_sym_co_await] = ACTIONS(1977), + [anon_sym_new] = ACTIONS(1979), + [anon_sym_requires] = ACTIONS(1735), + [sym_this] = ACTIONS(1727), + [sym_nullptr] = ACTIONS(1727), + [sym_raw_string_literal] = ACTIONS(1737), + }, + [1606] = { + [sym__expression] = STATE(2681), + [sym_conditional_expression] = STATE(2821), + [sym_assignment_expression] = STATE(2821), + [sym_pointer_expression] = STATE(2805), + [sym_unary_expression] = STATE(2821), + [sym_binary_expression] = STATE(2821), + [sym_update_expression] = STATE(2821), + [sym_cast_expression] = STATE(2821), + [sym_sizeof_expression] = STATE(2821), + [sym_subscript_expression] = STATE(2805), + [sym_call_expression] = STATE(2805), + [sym_field_expression] = STATE(2805), + [sym_compound_literal_expression] = STATE(2821), + [sym_parenthesized_expression] = STATE(2805), + [sym_char_literal] = STATE(2577), + [sym_concatenated_string] = STATE(2577), + [sym_string_literal] = STATE(1861), + [sym__class_name] = STATE(6652), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2821), + [sym_co_await_expression] = STATE(2821), + [sym_new_expression] = STATE(2821), + [sym_delete_expression] = STATE(2821), + [sym_requires_clause] = STATE(2821), + [sym_requires_expression] = STATE(2821), + [sym_lambda_expression] = STATE(2821), + [sym_lambda_capture_specifier] = STATE(4790), + [sym_fold_expression] = STATE(2821), + [sym_parameter_pack_expansion] = STATE(2821), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4904), + [sym_qualified_identifier] = STATE(2805), + [sym_qualified_type_identifier] = STATE(6652), + [sym_user_defined_literal] = STATE(2821), + [sym_identifier] = ACTIONS(1739), + [anon_sym_LPAREN2] = ACTIONS(1741), + [anon_sym_BANG] = ACTIONS(1745), + [anon_sym_TILDE] = ACTIONS(1745), + [anon_sym_DASH] = ACTIONS(1743), + [anon_sym_PLUS] = ACTIONS(1743), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(3873), + [sym_primitive_type] = ACTIONS(1753), + [anon_sym_not] = ACTIONS(1743), + [anon_sym_compl] = ACTIONS(1743), + [anon_sym_DASH_DASH] = ACTIONS(1755), + [anon_sym_PLUS_PLUS] = ACTIONS(1755), + [anon_sym_sizeof] = ACTIONS(1757), + [sym_number_literal] = ACTIONS(1759), + [anon_sym_L_SQUOTE] = ACTIONS(1761), + [anon_sym_u_SQUOTE] = ACTIONS(1761), + [anon_sym_U_SQUOTE] = ACTIONS(1761), + [anon_sym_u8_SQUOTE] = ACTIONS(1761), + [anon_sym_SQUOTE] = ACTIONS(1761), + [anon_sym_L_DQUOTE] = ACTIONS(1763), + [anon_sym_u_DQUOTE] = ACTIONS(1763), + [anon_sym_U_DQUOTE] = ACTIONS(1763), + [anon_sym_u8_DQUOTE] = ACTIONS(1763), + [anon_sym_DQUOTE] = ACTIONS(1763), + [sym_true] = ACTIONS(1765), + [sym_false] = ACTIONS(1765), + [sym_null] = ACTIONS(1765), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1767), + [anon_sym_co_await] = ACTIONS(1769), + [anon_sym_new] = ACTIONS(1771), + [anon_sym_requires] = ACTIONS(1773), + [sym_this] = ACTIONS(1765), + [sym_nullptr] = ACTIONS(1765), + [sym_raw_string_literal] = ACTIONS(1775), + }, + [1607] = { + [sym__expression] = STATE(3854), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3121), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3121), + [sym_call_expression] = STATE(3121), + [sym_field_expression] = STATE(3121), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3121), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3121), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3109), + [anon_sym_LPAREN2] = ACTIONS(3111), + [anon_sym_BANG] = ACTIONS(3115), + [anon_sym_TILDE] = ACTIONS(3115), + [anon_sym_DASH] = ACTIONS(3113), + [anon_sym_PLUS] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(3117), + [anon_sym_AMP] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(3119), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3113), + [anon_sym_compl] = ACTIONS(3113), + [anon_sym_DASH_DASH] = ACTIONS(3121), + [anon_sym_PLUS_PLUS] = ACTIONS(3121), + [anon_sym_sizeof] = ACTIONS(3123), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3125), + [anon_sym_co_await] = ACTIONS(3127), + [anon_sym_new] = ACTIONS(3129), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1608] = { + [sym__expression] = STATE(2937), + [sym_conditional_expression] = STATE(2999), + [sym_assignment_expression] = STATE(2999), + [sym_pointer_expression] = STATE(2973), + [sym_unary_expression] = STATE(2999), + [sym_binary_expression] = STATE(2999), + [sym_update_expression] = STATE(2999), + [sym_cast_expression] = STATE(2999), + [sym_sizeof_expression] = STATE(2999), + [sym_subscript_expression] = STATE(2973), + [sym_call_expression] = STATE(2973), + [sym_field_expression] = STATE(2973), + [sym_compound_literal_expression] = STATE(2999), + [sym_parenthesized_expression] = STATE(2973), + [sym_char_literal] = STATE(2933), + [sym_concatenated_string] = STATE(2933), + [sym_string_literal] = STATE(1927), + [sym__class_name] = STATE(6445), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2999), + [sym_co_await_expression] = STATE(2999), + [sym_new_expression] = STATE(2999), + [sym_delete_expression] = STATE(2999), + [sym_requires_clause] = STATE(2999), + [sym_requires_expression] = STATE(2999), + [sym_lambda_expression] = STATE(2999), + [sym_lambda_capture_specifier] = STATE(4767), + [sym_fold_expression] = STATE(2999), + [sym_parameter_pack_expansion] = STATE(2999), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2973), + [sym_qualified_type_identifier] = STATE(6445), + [sym_user_defined_literal] = STATE(2999), + [sym_identifier] = ACTIONS(1919), + [anon_sym_LPAREN2] = ACTIONS(1921), + [anon_sym_BANG] = ACTIONS(1925), + [anon_sym_TILDE] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1923), + [anon_sym_PLUS] = ACTIONS(1923), + [anon_sym_STAR] = ACTIONS(2671), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_COLON_COLON] = ACTIONS(1929), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1933), + [anon_sym_not] = ACTIONS(1923), + [anon_sym_compl] = ACTIONS(1923), + [anon_sym_DASH_DASH] = ACTIONS(1935), + [anon_sym_PLUS_PLUS] = ACTIONS(1935), + [anon_sym_sizeof] = ACTIONS(1937), + [sym_number_literal] = ACTIONS(1939), + [anon_sym_L_SQUOTE] = ACTIONS(1941), + [anon_sym_u_SQUOTE] = ACTIONS(1941), + [anon_sym_U_SQUOTE] = ACTIONS(1941), + [anon_sym_u8_SQUOTE] = ACTIONS(1941), + [anon_sym_SQUOTE] = ACTIONS(1941), + [anon_sym_L_DQUOTE] = ACTIONS(1943), + [anon_sym_u_DQUOTE] = ACTIONS(1943), + [anon_sym_U_DQUOTE] = ACTIONS(1943), + [anon_sym_u8_DQUOTE] = ACTIONS(1943), + [anon_sym_DQUOTE] = ACTIONS(1943), + [sym_true] = ACTIONS(1945), + [sym_false] = ACTIONS(1945), + [sym_null] = ACTIONS(1945), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1947), + [anon_sym_co_await] = ACTIONS(1949), + [anon_sym_new] = ACTIONS(1951), + [anon_sym_requires] = ACTIONS(1953), + [sym_this] = ACTIONS(1945), + [sym_nullptr] = ACTIONS(1945), + [sym_raw_string_literal] = ACTIONS(1955), + }, + [1609] = { + [sym__expression] = STATE(2935), + [sym_conditional_expression] = STATE(2999), + [sym_assignment_expression] = STATE(2999), + [sym_pointer_expression] = STATE(2973), + [sym_unary_expression] = STATE(2999), + [sym_binary_expression] = STATE(2999), + [sym_update_expression] = STATE(2999), + [sym_cast_expression] = STATE(2999), + [sym_sizeof_expression] = STATE(2999), + [sym_subscript_expression] = STATE(2973), + [sym_call_expression] = STATE(2973), + [sym_field_expression] = STATE(2973), + [sym_compound_literal_expression] = STATE(2999), + [sym_parenthesized_expression] = STATE(2973), + [sym_char_literal] = STATE(2933), + [sym_concatenated_string] = STATE(2933), + [sym_string_literal] = STATE(1927), + [sym__class_name] = STATE(6445), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2999), + [sym_co_await_expression] = STATE(2999), + [sym_new_expression] = STATE(2999), + [sym_delete_expression] = STATE(2999), + [sym_requires_clause] = STATE(2999), + [sym_requires_expression] = STATE(2999), + [sym_lambda_expression] = STATE(2999), + [sym_lambda_capture_specifier] = STATE(4767), + [sym_fold_expression] = STATE(2999), + [sym_parameter_pack_expansion] = STATE(2999), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2973), + [sym_qualified_type_identifier] = STATE(6445), + [sym_user_defined_literal] = STATE(2999), + [sym_identifier] = ACTIONS(1919), + [anon_sym_LPAREN2] = ACTIONS(1921), + [anon_sym_BANG] = ACTIONS(1925), + [anon_sym_TILDE] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1923), + [anon_sym_PLUS] = ACTIONS(1923), + [anon_sym_STAR] = ACTIONS(2671), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_COLON_COLON] = ACTIONS(1929), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1933), + [anon_sym_not] = ACTIONS(1923), + [anon_sym_compl] = ACTIONS(1923), + [anon_sym_DASH_DASH] = ACTIONS(1935), + [anon_sym_PLUS_PLUS] = ACTIONS(1935), + [anon_sym_sizeof] = ACTIONS(1937), + [sym_number_literal] = ACTIONS(1939), + [anon_sym_L_SQUOTE] = ACTIONS(1941), + [anon_sym_u_SQUOTE] = ACTIONS(1941), + [anon_sym_U_SQUOTE] = ACTIONS(1941), + [anon_sym_u8_SQUOTE] = ACTIONS(1941), + [anon_sym_SQUOTE] = ACTIONS(1941), + [anon_sym_L_DQUOTE] = ACTIONS(1943), + [anon_sym_u_DQUOTE] = ACTIONS(1943), + [anon_sym_U_DQUOTE] = ACTIONS(1943), + [anon_sym_u8_DQUOTE] = ACTIONS(1943), + [anon_sym_DQUOTE] = ACTIONS(1943), + [sym_true] = ACTIONS(1945), + [sym_false] = ACTIONS(1945), + [sym_null] = ACTIONS(1945), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1947), + [anon_sym_co_await] = ACTIONS(1949), + [anon_sym_new] = ACTIONS(1951), + [anon_sym_requires] = ACTIONS(1953), + [sym_this] = ACTIONS(1945), + [sym_nullptr] = ACTIONS(1945), + [sym_raw_string_literal] = ACTIONS(1955), + }, + [1610] = { + [sym__expression] = STATE(2600), + [sym_conditional_expression] = STATE(2821), + [sym_assignment_expression] = STATE(2821), + [sym_pointer_expression] = STATE(2805), + [sym_unary_expression] = STATE(2821), + [sym_binary_expression] = STATE(2821), + [sym_update_expression] = STATE(2821), + [sym_cast_expression] = STATE(2821), + [sym_sizeof_expression] = STATE(2821), + [sym_subscript_expression] = STATE(2805), + [sym_call_expression] = STATE(2805), + [sym_field_expression] = STATE(2805), + [sym_compound_literal_expression] = STATE(2821), + [sym_parenthesized_expression] = STATE(2805), + [sym_char_literal] = STATE(2577), + [sym_concatenated_string] = STATE(2577), + [sym_string_literal] = STATE(1861), + [sym__class_name] = STATE(6652), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2821), + [sym_co_await_expression] = STATE(2821), + [sym_new_expression] = STATE(2821), + [sym_delete_expression] = STATE(2821), + [sym_requires_clause] = STATE(2821), + [sym_requires_expression] = STATE(2821), + [sym_lambda_expression] = STATE(2821), + [sym_lambda_capture_specifier] = STATE(4790), + [sym_fold_expression] = STATE(2821), + [sym_parameter_pack_expansion] = STATE(2821), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4904), + [sym_qualified_identifier] = STATE(2805), + [sym_qualified_type_identifier] = STATE(6652), + [sym_user_defined_literal] = STATE(2821), + [sym_identifier] = ACTIONS(1739), + [anon_sym_LPAREN2] = ACTIONS(1741), + [anon_sym_BANG] = ACTIONS(1745), + [anon_sym_TILDE] = ACTIONS(1745), + [anon_sym_DASH] = ACTIONS(1743), + [anon_sym_PLUS] = ACTIONS(1743), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1753), + [anon_sym_not] = ACTIONS(1743), + [anon_sym_compl] = ACTIONS(1743), + [anon_sym_DASH_DASH] = ACTIONS(1755), + [anon_sym_PLUS_PLUS] = ACTIONS(1755), + [anon_sym_sizeof] = ACTIONS(1757), + [sym_number_literal] = ACTIONS(1759), + [anon_sym_L_SQUOTE] = ACTIONS(1761), + [anon_sym_u_SQUOTE] = ACTIONS(1761), + [anon_sym_U_SQUOTE] = ACTIONS(1761), + [anon_sym_u8_SQUOTE] = ACTIONS(1761), + [anon_sym_SQUOTE] = ACTIONS(1761), + [anon_sym_L_DQUOTE] = ACTIONS(1763), + [anon_sym_u_DQUOTE] = ACTIONS(1763), + [anon_sym_U_DQUOTE] = ACTIONS(1763), + [anon_sym_u8_DQUOTE] = ACTIONS(1763), + [anon_sym_DQUOTE] = ACTIONS(1763), + [sym_true] = ACTIONS(1765), + [sym_false] = ACTIONS(1765), + [sym_null] = ACTIONS(1765), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1767), + [anon_sym_co_await] = ACTIONS(1769), + [anon_sym_new] = ACTIONS(1771), + [anon_sym_requires] = ACTIONS(1773), + [sym_this] = ACTIONS(1765), + [sym_nullptr] = ACTIONS(1765), + [sym_raw_string_literal] = ACTIONS(1775), + }, + [1611] = { + [sym__expression] = STATE(2927), + [sym_conditional_expression] = STATE(2999), + [sym_assignment_expression] = STATE(2999), + [sym_pointer_expression] = STATE(2973), + [sym_unary_expression] = STATE(2999), + [sym_binary_expression] = STATE(2999), + [sym_update_expression] = STATE(2999), + [sym_cast_expression] = STATE(2999), + [sym_sizeof_expression] = STATE(2999), + [sym_subscript_expression] = STATE(2973), + [sym_call_expression] = STATE(2973), + [sym_field_expression] = STATE(2973), + [sym_compound_literal_expression] = STATE(2999), + [sym_parenthesized_expression] = STATE(2973), + [sym_char_literal] = STATE(2933), + [sym_concatenated_string] = STATE(2933), + [sym_string_literal] = STATE(1927), + [sym__class_name] = STATE(6445), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2999), + [sym_co_await_expression] = STATE(2999), + [sym_new_expression] = STATE(2999), + [sym_delete_expression] = STATE(2999), + [sym_requires_clause] = STATE(2999), + [sym_requires_expression] = STATE(2999), + [sym_lambda_expression] = STATE(2999), + [sym_lambda_capture_specifier] = STATE(4767), + [sym_fold_expression] = STATE(2999), + [sym_parameter_pack_expansion] = STATE(2999), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2973), + [sym_qualified_type_identifier] = STATE(6445), + [sym_user_defined_literal] = STATE(2999), + [sym_identifier] = ACTIONS(1919), + [anon_sym_LPAREN2] = ACTIONS(1921), + [anon_sym_BANG] = ACTIONS(1925), + [anon_sym_TILDE] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1923), + [anon_sym_PLUS] = ACTIONS(1923), + [anon_sym_STAR] = ACTIONS(2671), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_COLON_COLON] = ACTIONS(1929), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1933), + [anon_sym_not] = ACTIONS(1923), + [anon_sym_compl] = ACTIONS(1923), + [anon_sym_DASH_DASH] = ACTIONS(1935), + [anon_sym_PLUS_PLUS] = ACTIONS(1935), + [anon_sym_sizeof] = ACTIONS(1937), + [sym_number_literal] = ACTIONS(1939), + [anon_sym_L_SQUOTE] = ACTIONS(1941), + [anon_sym_u_SQUOTE] = ACTIONS(1941), + [anon_sym_U_SQUOTE] = ACTIONS(1941), + [anon_sym_u8_SQUOTE] = ACTIONS(1941), + [anon_sym_SQUOTE] = ACTIONS(1941), + [anon_sym_L_DQUOTE] = ACTIONS(1943), + [anon_sym_u_DQUOTE] = ACTIONS(1943), + [anon_sym_U_DQUOTE] = ACTIONS(1943), + [anon_sym_u8_DQUOTE] = ACTIONS(1943), + [anon_sym_DQUOTE] = ACTIONS(1943), + [sym_true] = ACTIONS(1945), + [sym_false] = ACTIONS(1945), + [sym_null] = ACTIONS(1945), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1947), + [anon_sym_co_await] = ACTIONS(1949), + [anon_sym_new] = ACTIONS(1951), + [anon_sym_requires] = ACTIONS(1953), + [sym_this] = ACTIONS(1945), + [sym_nullptr] = ACTIONS(1945), + [sym_raw_string_literal] = ACTIONS(1955), + }, + [1612] = { + [sym__expression] = STATE(2944), + [sym_conditional_expression] = STATE(2999), + [sym_assignment_expression] = STATE(2999), + [sym_pointer_expression] = STATE(2973), + [sym_unary_expression] = STATE(2999), + [sym_binary_expression] = STATE(2999), + [sym_update_expression] = STATE(2999), + [sym_cast_expression] = STATE(2999), + [sym_sizeof_expression] = STATE(2999), + [sym_subscript_expression] = STATE(2973), + [sym_call_expression] = STATE(2973), + [sym_field_expression] = STATE(2973), + [sym_compound_literal_expression] = STATE(2999), + [sym_parenthesized_expression] = STATE(2973), + [sym_char_literal] = STATE(2933), + [sym_concatenated_string] = STATE(2933), + [sym_string_literal] = STATE(1927), + [sym__class_name] = STATE(6445), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2999), + [sym_co_await_expression] = STATE(2999), + [sym_new_expression] = STATE(2999), + [sym_delete_expression] = STATE(2999), + [sym_requires_clause] = STATE(2999), + [sym_requires_expression] = STATE(2999), + [sym_lambda_expression] = STATE(2999), + [sym_lambda_capture_specifier] = STATE(4767), + [sym_fold_expression] = STATE(2999), + [sym_parameter_pack_expansion] = STATE(2999), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2973), + [sym_qualified_type_identifier] = STATE(6445), + [sym_user_defined_literal] = STATE(2999), + [sym_identifier] = ACTIONS(1919), + [anon_sym_LPAREN2] = ACTIONS(1921), + [anon_sym_BANG] = ACTIONS(1925), + [anon_sym_TILDE] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1923), + [anon_sym_PLUS] = ACTIONS(1923), + [anon_sym_STAR] = ACTIONS(2671), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_COLON_COLON] = ACTIONS(1929), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1933), + [anon_sym_not] = ACTIONS(1923), + [anon_sym_compl] = ACTIONS(1923), + [anon_sym_DASH_DASH] = ACTIONS(1935), + [anon_sym_PLUS_PLUS] = ACTIONS(1935), + [anon_sym_sizeof] = ACTIONS(1937), + [sym_number_literal] = ACTIONS(1939), + [anon_sym_L_SQUOTE] = ACTIONS(1941), + [anon_sym_u_SQUOTE] = ACTIONS(1941), + [anon_sym_U_SQUOTE] = ACTIONS(1941), + [anon_sym_u8_SQUOTE] = ACTIONS(1941), + [anon_sym_SQUOTE] = ACTIONS(1941), + [anon_sym_L_DQUOTE] = ACTIONS(1943), + [anon_sym_u_DQUOTE] = ACTIONS(1943), + [anon_sym_U_DQUOTE] = ACTIONS(1943), + [anon_sym_u8_DQUOTE] = ACTIONS(1943), + [anon_sym_DQUOTE] = ACTIONS(1943), + [sym_true] = ACTIONS(1945), + [sym_false] = ACTIONS(1945), + [sym_null] = ACTIONS(1945), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1947), + [anon_sym_co_await] = ACTIONS(1949), + [anon_sym_new] = ACTIONS(1951), + [anon_sym_requires] = ACTIONS(1953), + [sym_this] = ACTIONS(1945), + [sym_nullptr] = ACTIONS(1945), + [sym_raw_string_literal] = ACTIONS(1955), + }, + [1613] = { + [sym__expression] = STATE(3023), + [sym_conditional_expression] = STATE(2562), + [sym_assignment_expression] = STATE(2562), + [sym_pointer_expression] = STATE(2549), + [sym_unary_expression] = STATE(2562), + [sym_binary_expression] = STATE(2562), + [sym_update_expression] = STATE(2562), + [sym_cast_expression] = STATE(2562), + [sym_sizeof_expression] = STATE(2562), + [sym_subscript_expression] = STATE(2549), + [sym_call_expression] = STATE(2549), + [sym_field_expression] = STATE(2549), + [sym_compound_literal_expression] = STATE(2562), + [sym_parenthesized_expression] = STATE(2549), + [sym_char_literal] = STATE(2344), + [sym_concatenated_string] = STATE(2344), + [sym_string_literal] = STATE(1824), + [sym__class_name] = STATE(6654), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2562), + [sym_co_await_expression] = STATE(2562), + [sym_new_expression] = STATE(2562), + [sym_delete_expression] = STATE(2562), + [sym_requires_clause] = STATE(2562), + [sym_requires_expression] = STATE(2562), + [sym_lambda_expression] = STATE(2562), + [sym_lambda_capture_specifier] = STATE(4787), + [sym_fold_expression] = STATE(2562), + [sym_parameter_pack_expansion] = STATE(2562), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2549), + [sym_qualified_type_identifier] = STATE(6654), + [sym_user_defined_literal] = STATE(2562), + [sym_identifier] = ACTIONS(1697), + [anon_sym_LPAREN2] = ACTIONS(1961), + [anon_sym_BANG] = ACTIONS(1965), + [anon_sym_TILDE] = ACTIONS(1965), + [anon_sym_DASH] = ACTIONS(1963), + [anon_sym_PLUS] = ACTIONS(1963), + [anon_sym_STAR] = ACTIONS(3117), + [anon_sym_AMP] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(1969), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(1963), + [anon_sym_compl] = ACTIONS(1963), + [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1971), + [anon_sym_sizeof] = ACTIONS(1973), + [sym_number_literal] = ACTIONS(1721), + [anon_sym_L_SQUOTE] = ACTIONS(1723), + [anon_sym_u_SQUOTE] = ACTIONS(1723), + [anon_sym_U_SQUOTE] = ACTIONS(1723), + [anon_sym_u8_SQUOTE] = ACTIONS(1723), + [anon_sym_SQUOTE] = ACTIONS(1723), + [anon_sym_L_DQUOTE] = ACTIONS(1725), + [anon_sym_u_DQUOTE] = ACTIONS(1725), + [anon_sym_U_DQUOTE] = ACTIONS(1725), + [anon_sym_u8_DQUOTE] = ACTIONS(1725), + [anon_sym_DQUOTE] = ACTIONS(1725), + [sym_true] = ACTIONS(1727), + [sym_false] = ACTIONS(1727), + [sym_null] = ACTIONS(1727), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1975), + [anon_sym_co_await] = ACTIONS(1977), + [anon_sym_new] = ACTIONS(1979), + [anon_sym_requires] = ACTIONS(1735), + [sym_this] = ACTIONS(1727), + [sym_nullptr] = ACTIONS(1727), + [sym_raw_string_literal] = ACTIONS(1737), + }, + [1614] = { + [sym__expression] = STATE(2628), + [sym_conditional_expression] = STATE(2821), + [sym_assignment_expression] = STATE(2821), + [sym_pointer_expression] = STATE(2805), + [sym_unary_expression] = STATE(2821), + [sym_binary_expression] = STATE(2821), + [sym_update_expression] = STATE(2821), + [sym_cast_expression] = STATE(2821), + [sym_sizeof_expression] = STATE(2821), + [sym_subscript_expression] = STATE(2805), + [sym_call_expression] = STATE(2805), + [sym_field_expression] = STATE(2805), + [sym_compound_literal_expression] = STATE(2821), + [sym_parenthesized_expression] = STATE(2805), + [sym_char_literal] = STATE(2577), + [sym_concatenated_string] = STATE(2577), + [sym_string_literal] = STATE(1861), + [sym__class_name] = STATE(6652), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2821), + [sym_co_await_expression] = STATE(2821), + [sym_new_expression] = STATE(2821), + [sym_delete_expression] = STATE(2821), + [sym_requires_clause] = STATE(2821), + [sym_requires_expression] = STATE(2821), + [sym_lambda_expression] = STATE(2821), + [sym_lambda_capture_specifier] = STATE(4790), + [sym_fold_expression] = STATE(2821), + [sym_parameter_pack_expansion] = STATE(2821), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4904), + [sym_qualified_identifier] = STATE(2805), + [sym_qualified_type_identifier] = STATE(6652), + [sym_user_defined_literal] = STATE(2821), + [sym_identifier] = ACTIONS(1739), + [anon_sym_LPAREN2] = ACTIONS(1741), + [anon_sym_BANG] = ACTIONS(1745), + [anon_sym_TILDE] = ACTIONS(1745), + [anon_sym_DASH] = ACTIONS(1743), + [anon_sym_PLUS] = ACTIONS(1743), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1753), + [anon_sym_not] = ACTIONS(1743), + [anon_sym_compl] = ACTIONS(1743), + [anon_sym_DASH_DASH] = ACTIONS(1755), + [anon_sym_PLUS_PLUS] = ACTIONS(1755), + [anon_sym_sizeof] = ACTIONS(1757), + [sym_number_literal] = ACTIONS(1759), + [anon_sym_L_SQUOTE] = ACTIONS(1761), + [anon_sym_u_SQUOTE] = ACTIONS(1761), + [anon_sym_U_SQUOTE] = ACTIONS(1761), + [anon_sym_u8_SQUOTE] = ACTIONS(1761), + [anon_sym_SQUOTE] = ACTIONS(1761), + [anon_sym_L_DQUOTE] = ACTIONS(1763), + [anon_sym_u_DQUOTE] = ACTIONS(1763), + [anon_sym_U_DQUOTE] = ACTIONS(1763), + [anon_sym_u8_DQUOTE] = ACTIONS(1763), + [anon_sym_DQUOTE] = ACTIONS(1763), + [sym_true] = ACTIONS(1765), + [sym_false] = ACTIONS(1765), + [sym_null] = ACTIONS(1765), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1767), + [anon_sym_co_await] = ACTIONS(1769), + [anon_sym_new] = ACTIONS(1771), + [anon_sym_requires] = ACTIONS(1773), + [sym_this] = ACTIONS(1765), + [sym_nullptr] = ACTIONS(1765), + [sym_raw_string_literal] = ACTIONS(1775), + }, + [1615] = { + [sym__expression] = STATE(2624), + [sym_conditional_expression] = STATE(2821), + [sym_assignment_expression] = STATE(2821), + [sym_pointer_expression] = STATE(2805), + [sym_unary_expression] = STATE(2821), + [sym_binary_expression] = STATE(2821), + [sym_update_expression] = STATE(2821), + [sym_cast_expression] = STATE(2821), + [sym_sizeof_expression] = STATE(2821), + [sym_subscript_expression] = STATE(2805), + [sym_call_expression] = STATE(2805), + [sym_field_expression] = STATE(2805), + [sym_compound_literal_expression] = STATE(2821), + [sym_parenthesized_expression] = STATE(2805), + [sym_char_literal] = STATE(2577), + [sym_concatenated_string] = STATE(2577), + [sym_string_literal] = STATE(1861), + [sym__class_name] = STATE(6652), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2821), + [sym_co_await_expression] = STATE(2821), + [sym_new_expression] = STATE(2821), + [sym_delete_expression] = STATE(2821), + [sym_requires_clause] = STATE(2821), + [sym_requires_expression] = STATE(2821), + [sym_lambda_expression] = STATE(2821), + [sym_lambda_capture_specifier] = STATE(4790), + [sym_fold_expression] = STATE(2821), + [sym_parameter_pack_expansion] = STATE(2821), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4904), + [sym_qualified_identifier] = STATE(2805), + [sym_qualified_type_identifier] = STATE(6652), + [sym_user_defined_literal] = STATE(2821), + [sym_identifier] = ACTIONS(1739), + [anon_sym_LPAREN2] = ACTIONS(1741), + [anon_sym_BANG] = ACTIONS(1745), + [anon_sym_TILDE] = ACTIONS(1745), + [anon_sym_DASH] = ACTIONS(1743), + [anon_sym_PLUS] = ACTIONS(1743), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(3875), + [sym_primitive_type] = ACTIONS(1753), + [anon_sym_not] = ACTIONS(1743), + [anon_sym_compl] = ACTIONS(1743), + [anon_sym_DASH_DASH] = ACTIONS(1755), + [anon_sym_PLUS_PLUS] = ACTIONS(1755), + [anon_sym_sizeof] = ACTIONS(1757), + [sym_number_literal] = ACTIONS(1759), + [anon_sym_L_SQUOTE] = ACTIONS(1761), + [anon_sym_u_SQUOTE] = ACTIONS(1761), + [anon_sym_U_SQUOTE] = ACTIONS(1761), + [anon_sym_u8_SQUOTE] = ACTIONS(1761), + [anon_sym_SQUOTE] = ACTIONS(1761), + [anon_sym_L_DQUOTE] = ACTIONS(1763), + [anon_sym_u_DQUOTE] = ACTIONS(1763), + [anon_sym_U_DQUOTE] = ACTIONS(1763), + [anon_sym_u8_DQUOTE] = ACTIONS(1763), + [anon_sym_DQUOTE] = ACTIONS(1763), + [sym_true] = ACTIONS(1765), + [sym_false] = ACTIONS(1765), + [sym_null] = ACTIONS(1765), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1767), + [anon_sym_co_await] = ACTIONS(1769), + [anon_sym_new] = ACTIONS(1771), + [anon_sym_requires] = ACTIONS(1773), + [sym_this] = ACTIONS(1765), + [sym_nullptr] = ACTIONS(1765), + [sym_raw_string_literal] = ACTIONS(1775), + }, + [1616] = { + [sym__expression] = STATE(3012), + [sym_conditional_expression] = STATE(2562), + [sym_assignment_expression] = STATE(2562), + [sym_pointer_expression] = STATE(2549), + [sym_unary_expression] = STATE(2562), + [sym_binary_expression] = STATE(2562), + [sym_update_expression] = STATE(2562), + [sym_cast_expression] = STATE(2562), + [sym_sizeof_expression] = STATE(2562), + [sym_subscript_expression] = STATE(2549), + [sym_call_expression] = STATE(2549), + [sym_field_expression] = STATE(2549), + [sym_compound_literal_expression] = STATE(2562), + [sym_parenthesized_expression] = STATE(2549), + [sym_char_literal] = STATE(2344), + [sym_concatenated_string] = STATE(2344), + [sym_string_literal] = STATE(1824), + [sym__class_name] = STATE(6654), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2562), + [sym_co_await_expression] = STATE(2562), + [sym_new_expression] = STATE(2562), + [sym_delete_expression] = STATE(2562), + [sym_requires_clause] = STATE(2562), + [sym_requires_expression] = STATE(2562), + [sym_lambda_expression] = STATE(2562), + [sym_lambda_capture_specifier] = STATE(4787), + [sym_fold_expression] = STATE(2562), + [sym_parameter_pack_expansion] = STATE(2562), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2549), + [sym_qualified_type_identifier] = STATE(6654), + [sym_user_defined_literal] = STATE(2562), + [sym_identifier] = ACTIONS(1697), + [anon_sym_LPAREN2] = ACTIONS(1961), + [anon_sym_BANG] = ACTIONS(1965), + [anon_sym_TILDE] = ACTIONS(1965), + [anon_sym_DASH] = ACTIONS(1963), + [anon_sym_PLUS] = ACTIONS(1963), + [anon_sym_STAR] = ACTIONS(3117), + [anon_sym_AMP] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(1969), + [anon_sym_LBRACK] = ACTIONS(3877), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(1963), + [anon_sym_compl] = ACTIONS(1963), + [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1971), + [anon_sym_sizeof] = ACTIONS(1973), + [sym_number_literal] = ACTIONS(1721), + [anon_sym_L_SQUOTE] = ACTIONS(1723), + [anon_sym_u_SQUOTE] = ACTIONS(1723), + [anon_sym_U_SQUOTE] = ACTIONS(1723), + [anon_sym_u8_SQUOTE] = ACTIONS(1723), + [anon_sym_SQUOTE] = ACTIONS(1723), + [anon_sym_L_DQUOTE] = ACTIONS(1725), + [anon_sym_u_DQUOTE] = ACTIONS(1725), + [anon_sym_U_DQUOTE] = ACTIONS(1725), + [anon_sym_u8_DQUOTE] = ACTIONS(1725), + [anon_sym_DQUOTE] = ACTIONS(1725), + [sym_true] = ACTIONS(1727), + [sym_false] = ACTIONS(1727), + [sym_null] = ACTIONS(1727), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1975), + [anon_sym_co_await] = ACTIONS(1977), + [anon_sym_new] = ACTIONS(1979), + [anon_sym_requires] = ACTIONS(1735), + [sym_this] = ACTIONS(1727), + [sym_nullptr] = ACTIONS(1727), + [sym_raw_string_literal] = ACTIONS(1737), + }, + [1617] = { + [sym__expression] = STATE(3007), + [sym_conditional_expression] = STATE(2562), + [sym_assignment_expression] = STATE(2562), + [sym_pointer_expression] = STATE(2549), + [sym_unary_expression] = STATE(2562), + [sym_binary_expression] = STATE(2562), + [sym_update_expression] = STATE(2562), + [sym_cast_expression] = STATE(2562), + [sym_sizeof_expression] = STATE(2562), + [sym_subscript_expression] = STATE(2549), + [sym_call_expression] = STATE(2549), + [sym_field_expression] = STATE(2549), + [sym_compound_literal_expression] = STATE(2562), + [sym_parenthesized_expression] = STATE(2549), + [sym_char_literal] = STATE(2344), + [sym_concatenated_string] = STATE(2344), + [sym_string_literal] = STATE(1824), + [sym__class_name] = STATE(6654), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2562), + [sym_co_await_expression] = STATE(2562), + [sym_new_expression] = STATE(2562), + [sym_delete_expression] = STATE(2562), + [sym_requires_clause] = STATE(2562), + [sym_requires_expression] = STATE(2562), + [sym_lambda_expression] = STATE(2562), + [sym_lambda_capture_specifier] = STATE(4787), + [sym_fold_expression] = STATE(2562), + [sym_parameter_pack_expansion] = STATE(2562), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2549), + [sym_qualified_type_identifier] = STATE(6654), + [sym_user_defined_literal] = STATE(2562), + [sym_identifier] = ACTIONS(1697), + [anon_sym_LPAREN2] = ACTIONS(1961), + [anon_sym_BANG] = ACTIONS(1965), + [anon_sym_TILDE] = ACTIONS(1965), + [anon_sym_DASH] = ACTIONS(1963), + [anon_sym_PLUS] = ACTIONS(1963), + [anon_sym_STAR] = ACTIONS(3117), + [anon_sym_AMP] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(1969), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(1963), + [anon_sym_compl] = ACTIONS(1963), + [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1971), + [anon_sym_sizeof] = ACTIONS(1973), + [sym_number_literal] = ACTIONS(1721), + [anon_sym_L_SQUOTE] = ACTIONS(1723), + [anon_sym_u_SQUOTE] = ACTIONS(1723), + [anon_sym_U_SQUOTE] = ACTIONS(1723), + [anon_sym_u8_SQUOTE] = ACTIONS(1723), + [anon_sym_SQUOTE] = ACTIONS(1723), + [anon_sym_L_DQUOTE] = ACTIONS(1725), + [anon_sym_u_DQUOTE] = ACTIONS(1725), + [anon_sym_U_DQUOTE] = ACTIONS(1725), + [anon_sym_u8_DQUOTE] = ACTIONS(1725), + [anon_sym_DQUOTE] = ACTIONS(1725), + [sym_true] = ACTIONS(1727), + [sym_false] = ACTIONS(1727), + [sym_null] = ACTIONS(1727), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1975), + [anon_sym_co_await] = ACTIONS(1977), + [anon_sym_new] = ACTIONS(1979), + [anon_sym_requires] = ACTIONS(1735), + [sym_this] = ACTIONS(1727), + [sym_nullptr] = ACTIONS(1727), + [sym_raw_string_literal] = ACTIONS(1737), + }, + [1618] = { + [sym__expression] = STATE(3921), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1619] = { + [sym__expression] = STATE(2616), + [sym_conditional_expression] = STATE(2821), + [sym_assignment_expression] = STATE(2821), + [sym_pointer_expression] = STATE(2805), + [sym_unary_expression] = STATE(2821), + [sym_binary_expression] = STATE(2821), + [sym_update_expression] = STATE(2821), + [sym_cast_expression] = STATE(2821), + [sym_sizeof_expression] = STATE(2821), + [sym_subscript_expression] = STATE(2805), + [sym_call_expression] = STATE(2805), + [sym_field_expression] = STATE(2805), + [sym_compound_literal_expression] = STATE(2821), + [sym_parenthesized_expression] = STATE(2805), + [sym_char_literal] = STATE(2577), + [sym_concatenated_string] = STATE(2577), + [sym_string_literal] = STATE(1861), + [sym__class_name] = STATE(6652), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2821), + [sym_co_await_expression] = STATE(2821), + [sym_new_expression] = STATE(2821), + [sym_delete_expression] = STATE(2821), + [sym_requires_clause] = STATE(2821), + [sym_requires_expression] = STATE(2821), + [sym_lambda_expression] = STATE(2821), + [sym_lambda_capture_specifier] = STATE(4790), + [sym_fold_expression] = STATE(2821), + [sym_parameter_pack_expansion] = STATE(2821), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4904), + [sym_qualified_identifier] = STATE(2805), + [sym_qualified_type_identifier] = STATE(6652), + [sym_user_defined_literal] = STATE(2821), + [sym_identifier] = ACTIONS(1739), + [anon_sym_LPAREN2] = ACTIONS(1741), + [anon_sym_BANG] = ACTIONS(1745), + [anon_sym_TILDE] = ACTIONS(1745), + [anon_sym_DASH] = ACTIONS(1743), + [anon_sym_PLUS] = ACTIONS(1743), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1753), + [anon_sym_not] = ACTIONS(1743), + [anon_sym_compl] = ACTIONS(1743), + [anon_sym_DASH_DASH] = ACTIONS(1755), + [anon_sym_PLUS_PLUS] = ACTIONS(1755), + [anon_sym_sizeof] = ACTIONS(1757), + [sym_number_literal] = ACTIONS(1759), + [anon_sym_L_SQUOTE] = ACTIONS(1761), + [anon_sym_u_SQUOTE] = ACTIONS(1761), + [anon_sym_U_SQUOTE] = ACTIONS(1761), + [anon_sym_u8_SQUOTE] = ACTIONS(1761), + [anon_sym_SQUOTE] = ACTIONS(1761), + [anon_sym_L_DQUOTE] = ACTIONS(1763), + [anon_sym_u_DQUOTE] = ACTIONS(1763), + [anon_sym_U_DQUOTE] = ACTIONS(1763), + [anon_sym_u8_DQUOTE] = ACTIONS(1763), + [anon_sym_DQUOTE] = ACTIONS(1763), + [sym_true] = ACTIONS(1765), + [sym_false] = ACTIONS(1765), + [sym_null] = ACTIONS(1765), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1767), + [anon_sym_co_await] = ACTIONS(1769), + [anon_sym_new] = ACTIONS(1771), + [anon_sym_requires] = ACTIONS(1773), + [sym_this] = ACTIONS(1765), + [sym_nullptr] = ACTIONS(1765), + [sym_raw_string_literal] = ACTIONS(1775), + }, + [1620] = { + [sym__expression] = STATE(3006), + [sym_conditional_expression] = STATE(2562), + [sym_assignment_expression] = STATE(2562), + [sym_pointer_expression] = STATE(2549), + [sym_unary_expression] = STATE(2562), + [sym_binary_expression] = STATE(2562), + [sym_update_expression] = STATE(2562), + [sym_cast_expression] = STATE(2562), + [sym_sizeof_expression] = STATE(2562), + [sym_subscript_expression] = STATE(2549), + [sym_call_expression] = STATE(2549), + [sym_field_expression] = STATE(2549), + [sym_compound_literal_expression] = STATE(2562), + [sym_parenthesized_expression] = STATE(2549), + [sym_char_literal] = STATE(2344), + [sym_concatenated_string] = STATE(2344), + [sym_string_literal] = STATE(1824), + [sym__class_name] = STATE(6654), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2562), + [sym_co_await_expression] = STATE(2562), + [sym_new_expression] = STATE(2562), + [sym_delete_expression] = STATE(2562), + [sym_requires_clause] = STATE(2562), + [sym_requires_expression] = STATE(2562), + [sym_lambda_expression] = STATE(2562), + [sym_lambda_capture_specifier] = STATE(4787), + [sym_fold_expression] = STATE(2562), + [sym_parameter_pack_expansion] = STATE(2562), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2549), + [sym_qualified_type_identifier] = STATE(6654), + [sym_user_defined_literal] = STATE(2562), + [sym_identifier] = ACTIONS(1697), + [anon_sym_LPAREN2] = ACTIONS(1961), + [anon_sym_BANG] = ACTIONS(1965), + [anon_sym_TILDE] = ACTIONS(1965), + [anon_sym_DASH] = ACTIONS(1963), + [anon_sym_PLUS] = ACTIONS(1963), + [anon_sym_STAR] = ACTIONS(3117), + [anon_sym_AMP] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(1969), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(1963), + [anon_sym_compl] = ACTIONS(1963), + [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1971), + [anon_sym_sizeof] = ACTIONS(1973), + [sym_number_literal] = ACTIONS(1721), + [anon_sym_L_SQUOTE] = ACTIONS(1723), + [anon_sym_u_SQUOTE] = ACTIONS(1723), + [anon_sym_U_SQUOTE] = ACTIONS(1723), + [anon_sym_u8_SQUOTE] = ACTIONS(1723), + [anon_sym_SQUOTE] = ACTIONS(1723), + [anon_sym_L_DQUOTE] = ACTIONS(1725), + [anon_sym_u_DQUOTE] = ACTIONS(1725), + [anon_sym_U_DQUOTE] = ACTIONS(1725), + [anon_sym_u8_DQUOTE] = ACTIONS(1725), + [anon_sym_DQUOTE] = ACTIONS(1725), + [sym_true] = ACTIONS(1727), + [sym_false] = ACTIONS(1727), + [sym_null] = ACTIONS(1727), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1975), + [anon_sym_co_await] = ACTIONS(1977), + [anon_sym_new] = ACTIONS(1979), + [anon_sym_requires] = ACTIONS(1735), + [sym_this] = ACTIONS(1727), + [sym_nullptr] = ACTIONS(1727), + [sym_raw_string_literal] = ACTIONS(1737), + }, + [1621] = { + [sym__expression] = STATE(3005), + [sym_conditional_expression] = STATE(2562), + [sym_assignment_expression] = STATE(2562), + [sym_pointer_expression] = STATE(2549), + [sym_unary_expression] = STATE(2562), + [sym_binary_expression] = STATE(2562), + [sym_update_expression] = STATE(2562), + [sym_cast_expression] = STATE(2562), + [sym_sizeof_expression] = STATE(2562), + [sym_subscript_expression] = STATE(2549), + [sym_call_expression] = STATE(2549), + [sym_field_expression] = STATE(2549), + [sym_compound_literal_expression] = STATE(2562), + [sym_parenthesized_expression] = STATE(2549), + [sym_char_literal] = STATE(2344), + [sym_concatenated_string] = STATE(2344), + [sym_string_literal] = STATE(1824), + [sym__class_name] = STATE(6654), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2562), + [sym_co_await_expression] = STATE(2562), + [sym_new_expression] = STATE(2562), + [sym_delete_expression] = STATE(2562), + [sym_requires_clause] = STATE(2562), + [sym_requires_expression] = STATE(2562), + [sym_lambda_expression] = STATE(2562), + [sym_lambda_capture_specifier] = STATE(4787), + [sym_fold_expression] = STATE(2562), + [sym_parameter_pack_expansion] = STATE(2562), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2549), + [sym_qualified_type_identifier] = STATE(6654), + [sym_user_defined_literal] = STATE(2562), + [sym_identifier] = ACTIONS(1697), + [anon_sym_LPAREN2] = ACTIONS(1961), + [anon_sym_BANG] = ACTIONS(1965), + [anon_sym_TILDE] = ACTIONS(1965), + [anon_sym_DASH] = ACTIONS(1963), + [anon_sym_PLUS] = ACTIONS(1963), + [anon_sym_STAR] = ACTIONS(3117), + [anon_sym_AMP] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(1969), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(1963), + [anon_sym_compl] = ACTIONS(1963), + [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1971), + [anon_sym_sizeof] = ACTIONS(1973), + [sym_number_literal] = ACTIONS(1721), + [anon_sym_L_SQUOTE] = ACTIONS(1723), + [anon_sym_u_SQUOTE] = ACTIONS(1723), + [anon_sym_U_SQUOTE] = ACTIONS(1723), + [anon_sym_u8_SQUOTE] = ACTIONS(1723), + [anon_sym_SQUOTE] = ACTIONS(1723), + [anon_sym_L_DQUOTE] = ACTIONS(1725), + [anon_sym_u_DQUOTE] = ACTIONS(1725), + [anon_sym_U_DQUOTE] = ACTIONS(1725), + [anon_sym_u8_DQUOTE] = ACTIONS(1725), + [anon_sym_DQUOTE] = ACTIONS(1725), + [sym_true] = ACTIONS(1727), + [sym_false] = ACTIONS(1727), + [sym_null] = ACTIONS(1727), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1975), + [anon_sym_co_await] = ACTIONS(1977), + [anon_sym_new] = ACTIONS(1979), + [anon_sym_requires] = ACTIONS(1735), + [sym_this] = ACTIONS(1727), + [sym_nullptr] = ACTIONS(1727), + [sym_raw_string_literal] = ACTIONS(1737), + }, + [1622] = { + [sym__expression] = STATE(2593), + [sym_conditional_expression] = STATE(2821), + [sym_assignment_expression] = STATE(2821), + [sym_pointer_expression] = STATE(2805), + [sym_unary_expression] = STATE(2821), + [sym_binary_expression] = STATE(2821), + [sym_update_expression] = STATE(2821), + [sym_cast_expression] = STATE(2821), + [sym_sizeof_expression] = STATE(2821), + [sym_subscript_expression] = STATE(2805), + [sym_call_expression] = STATE(2805), + [sym_field_expression] = STATE(2805), + [sym_compound_literal_expression] = STATE(2821), + [sym_parenthesized_expression] = STATE(2805), + [sym_char_literal] = STATE(2577), + [sym_concatenated_string] = STATE(2577), + [sym_string_literal] = STATE(1861), + [sym__class_name] = STATE(6652), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2821), + [sym_co_await_expression] = STATE(2821), + [sym_new_expression] = STATE(2821), + [sym_delete_expression] = STATE(2821), + [sym_requires_clause] = STATE(2821), + [sym_requires_expression] = STATE(2821), + [sym_lambda_expression] = STATE(2821), + [sym_lambda_capture_specifier] = STATE(4790), + [sym_fold_expression] = STATE(2821), + [sym_parameter_pack_expansion] = STATE(2821), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4904), + [sym_qualified_identifier] = STATE(2805), + [sym_qualified_type_identifier] = STATE(6652), + [sym_user_defined_literal] = STATE(2821), + [sym_identifier] = ACTIONS(3879), + [anon_sym_LPAREN2] = ACTIONS(1741), + [anon_sym_BANG] = ACTIONS(1745), + [anon_sym_TILDE] = ACTIONS(1745), + [anon_sym_DASH] = ACTIONS(1743), + [anon_sym_PLUS] = ACTIONS(1743), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1753), + [anon_sym_not] = ACTIONS(1743), + [anon_sym_compl] = ACTIONS(1743), + [anon_sym_DASH_DASH] = ACTIONS(1755), + [anon_sym_PLUS_PLUS] = ACTIONS(1755), + [anon_sym_sizeof] = ACTIONS(1757), + [sym_number_literal] = ACTIONS(1759), + [anon_sym_L_SQUOTE] = ACTIONS(1761), + [anon_sym_u_SQUOTE] = ACTIONS(1761), + [anon_sym_U_SQUOTE] = ACTIONS(1761), + [anon_sym_u8_SQUOTE] = ACTIONS(1761), + [anon_sym_SQUOTE] = ACTIONS(1761), + [anon_sym_L_DQUOTE] = ACTIONS(1763), + [anon_sym_u_DQUOTE] = ACTIONS(1763), + [anon_sym_U_DQUOTE] = ACTIONS(1763), + [anon_sym_u8_DQUOTE] = ACTIONS(1763), + [anon_sym_DQUOTE] = ACTIONS(1763), + [sym_true] = ACTIONS(1765), + [sym_false] = ACTIONS(1765), + [sym_null] = ACTIONS(1765), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1767), + [anon_sym_co_await] = ACTIONS(1769), + [anon_sym_new] = ACTIONS(1771), + [anon_sym_requires] = ACTIONS(1773), + [sym_this] = ACTIONS(1765), + [sym_nullptr] = ACTIONS(1765), + [sym_raw_string_literal] = ACTIONS(1775), + }, + [1623] = { + [sym__expression] = STATE(2593), + [sym_conditional_expression] = STATE(2821), + [sym_assignment_expression] = STATE(2821), + [sym_pointer_expression] = STATE(2805), + [sym_unary_expression] = STATE(2821), + [sym_binary_expression] = STATE(2821), + [sym_update_expression] = STATE(2821), + [sym_cast_expression] = STATE(2821), + [sym_sizeof_expression] = STATE(2821), + [sym_subscript_expression] = STATE(2805), + [sym_call_expression] = STATE(2805), + [sym_field_expression] = STATE(2805), + [sym_compound_literal_expression] = STATE(2821), + [sym_parenthesized_expression] = STATE(2805), + [sym_char_literal] = STATE(2577), + [sym_concatenated_string] = STATE(2577), + [sym_string_literal] = STATE(1861), + [sym__class_name] = STATE(6652), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2821), + [sym_co_await_expression] = STATE(2821), + [sym_new_expression] = STATE(2821), + [sym_delete_expression] = STATE(2821), + [sym_requires_clause] = STATE(2821), + [sym_requires_expression] = STATE(2821), + [sym_lambda_expression] = STATE(2821), + [sym_lambda_capture_specifier] = STATE(4790), + [sym_fold_expression] = STATE(2821), + [sym_parameter_pack_expansion] = STATE(2821), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4904), + [sym_qualified_identifier] = STATE(2805), + [sym_qualified_type_identifier] = STATE(6652), + [sym_user_defined_literal] = STATE(2821), + [sym_identifier] = ACTIONS(1739), + [anon_sym_LPAREN2] = ACTIONS(1741), + [anon_sym_BANG] = ACTIONS(1745), + [anon_sym_TILDE] = ACTIONS(1745), + [anon_sym_DASH] = ACTIONS(1743), + [anon_sym_PLUS] = ACTIONS(1743), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1753), + [anon_sym_not] = ACTIONS(1743), + [anon_sym_compl] = ACTIONS(1743), + [anon_sym_DASH_DASH] = ACTIONS(1755), + [anon_sym_PLUS_PLUS] = ACTIONS(1755), + [anon_sym_sizeof] = ACTIONS(1757), + [sym_number_literal] = ACTIONS(1759), + [anon_sym_L_SQUOTE] = ACTIONS(1761), + [anon_sym_u_SQUOTE] = ACTIONS(1761), + [anon_sym_U_SQUOTE] = ACTIONS(1761), + [anon_sym_u8_SQUOTE] = ACTIONS(1761), + [anon_sym_SQUOTE] = ACTIONS(1761), + [anon_sym_L_DQUOTE] = ACTIONS(1763), + [anon_sym_u_DQUOTE] = ACTIONS(1763), + [anon_sym_U_DQUOTE] = ACTIONS(1763), + [anon_sym_u8_DQUOTE] = ACTIONS(1763), + [anon_sym_DQUOTE] = ACTIONS(1763), + [sym_true] = ACTIONS(1765), + [sym_false] = ACTIONS(1765), + [sym_null] = ACTIONS(1765), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1767), + [anon_sym_co_await] = ACTIONS(1769), + [anon_sym_new] = ACTIONS(1771), + [anon_sym_requires] = ACTIONS(1773), + [sym_this] = ACTIONS(1765), + [sym_nullptr] = ACTIONS(1765), + [sym_raw_string_literal] = ACTIONS(1775), + }, + [1624] = { + [sym__expression] = STATE(3915), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1625] = { + [sym__expression] = STATE(3894), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1626] = { + [sym__expression] = STATE(3558), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(3703), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1627] = { + [sym__expression] = STATE(3000), + [sym_conditional_expression] = STATE(2562), + [sym_assignment_expression] = STATE(2562), + [sym_pointer_expression] = STATE(2549), + [sym_unary_expression] = STATE(2562), + [sym_binary_expression] = STATE(2562), + [sym_update_expression] = STATE(2562), + [sym_cast_expression] = STATE(2562), + [sym_sizeof_expression] = STATE(2562), + [sym_subscript_expression] = STATE(2549), + [sym_call_expression] = STATE(2549), + [sym_field_expression] = STATE(2549), + [sym_compound_literal_expression] = STATE(2562), + [sym_parenthesized_expression] = STATE(2549), + [sym_char_literal] = STATE(2344), + [sym_concatenated_string] = STATE(2344), + [sym_string_literal] = STATE(1824), + [sym__class_name] = STATE(6654), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2562), + [sym_co_await_expression] = STATE(2562), + [sym_new_expression] = STATE(2562), + [sym_delete_expression] = STATE(2562), + [sym_requires_clause] = STATE(2562), + [sym_requires_expression] = STATE(2562), + [sym_lambda_expression] = STATE(2562), + [sym_lambda_capture_specifier] = STATE(4787), + [sym_fold_expression] = STATE(2562), + [sym_parameter_pack_expansion] = STATE(2562), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2549), + [sym_qualified_type_identifier] = STATE(6654), + [sym_user_defined_literal] = STATE(2562), + [sym_identifier] = ACTIONS(1697), + [anon_sym_LPAREN2] = ACTIONS(1961), + [anon_sym_BANG] = ACTIONS(1965), + [anon_sym_TILDE] = ACTIONS(1965), + [anon_sym_DASH] = ACTIONS(1963), + [anon_sym_PLUS] = ACTIONS(1963), + [anon_sym_STAR] = ACTIONS(3117), + [anon_sym_AMP] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(1969), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(1963), + [anon_sym_compl] = ACTIONS(1963), + [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1971), + [anon_sym_sizeof] = ACTIONS(1973), + [sym_number_literal] = ACTIONS(1721), + [anon_sym_L_SQUOTE] = ACTIONS(1723), + [anon_sym_u_SQUOTE] = ACTIONS(1723), + [anon_sym_U_SQUOTE] = ACTIONS(1723), + [anon_sym_u8_SQUOTE] = ACTIONS(1723), + [anon_sym_SQUOTE] = ACTIONS(1723), + [anon_sym_L_DQUOTE] = ACTIONS(1725), + [anon_sym_u_DQUOTE] = ACTIONS(1725), + [anon_sym_U_DQUOTE] = ACTIONS(1725), + [anon_sym_u8_DQUOTE] = ACTIONS(1725), + [anon_sym_DQUOTE] = ACTIONS(1725), + [sym_true] = ACTIONS(1727), + [sym_false] = ACTIONS(1727), + [sym_null] = ACTIONS(1727), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1975), + [anon_sym_co_await] = ACTIONS(1977), + [anon_sym_new] = ACTIONS(1979), + [anon_sym_requires] = ACTIONS(1735), + [sym_this] = ACTIONS(1727), + [sym_nullptr] = ACTIONS(1727), + [sym_raw_string_literal] = ACTIONS(1737), + }, + [1628] = { + [sym__expression] = STATE(3552), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1629] = { + [sym__expression] = STATE(2930), + [sym_conditional_expression] = STATE(2999), + [sym_assignment_expression] = STATE(2999), + [sym_pointer_expression] = STATE(2973), + [sym_unary_expression] = STATE(2999), + [sym_binary_expression] = STATE(2999), + [sym_update_expression] = STATE(2999), + [sym_cast_expression] = STATE(2999), + [sym_sizeof_expression] = STATE(2999), + [sym_subscript_expression] = STATE(2973), + [sym_call_expression] = STATE(2973), + [sym_field_expression] = STATE(2973), + [sym_compound_literal_expression] = STATE(2999), + [sym_parenthesized_expression] = STATE(2973), + [sym_char_literal] = STATE(2933), + [sym_concatenated_string] = STATE(2933), + [sym_string_literal] = STATE(1927), + [sym__class_name] = STATE(6445), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2999), + [sym_co_await_expression] = STATE(2999), + [sym_new_expression] = STATE(2999), + [sym_delete_expression] = STATE(2999), + [sym_requires_clause] = STATE(2999), + [sym_requires_expression] = STATE(2999), + [sym_lambda_expression] = STATE(2999), + [sym_lambda_capture_specifier] = STATE(4767), + [sym_fold_expression] = STATE(2999), + [sym_parameter_pack_expansion] = STATE(2999), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2973), + [sym_qualified_type_identifier] = STATE(6445), + [sym_user_defined_literal] = STATE(2999), + [sym_identifier] = ACTIONS(1919), + [anon_sym_LPAREN2] = ACTIONS(1921), + [anon_sym_BANG] = ACTIONS(1925), + [anon_sym_TILDE] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1923), + [anon_sym_PLUS] = ACTIONS(1923), + [anon_sym_STAR] = ACTIONS(2671), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_COLON_COLON] = ACTIONS(1929), + [anon_sym_LBRACK] = ACTIONS(3881), + [sym_primitive_type] = ACTIONS(1933), + [anon_sym_not] = ACTIONS(1923), + [anon_sym_compl] = ACTIONS(1923), + [anon_sym_DASH_DASH] = ACTIONS(1935), + [anon_sym_PLUS_PLUS] = ACTIONS(1935), + [anon_sym_sizeof] = ACTIONS(1937), + [sym_number_literal] = ACTIONS(1939), + [anon_sym_L_SQUOTE] = ACTIONS(1941), + [anon_sym_u_SQUOTE] = ACTIONS(1941), + [anon_sym_U_SQUOTE] = ACTIONS(1941), + [anon_sym_u8_SQUOTE] = ACTIONS(1941), + [anon_sym_SQUOTE] = ACTIONS(1941), + [anon_sym_L_DQUOTE] = ACTIONS(1943), + [anon_sym_u_DQUOTE] = ACTIONS(1943), + [anon_sym_U_DQUOTE] = ACTIONS(1943), + [anon_sym_u8_DQUOTE] = ACTIONS(1943), + [anon_sym_DQUOTE] = ACTIONS(1943), + [sym_true] = ACTIONS(1945), + [sym_false] = ACTIONS(1945), + [sym_null] = ACTIONS(1945), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1947), + [anon_sym_co_await] = ACTIONS(1949), + [anon_sym_new] = ACTIONS(1951), + [anon_sym_requires] = ACTIONS(1953), + [sym_this] = ACTIONS(1945), + [sym_nullptr] = ACTIONS(1945), + [sym_raw_string_literal] = ACTIONS(1955), + }, + [1630] = { + [sym__expression] = STATE(2996), + [sym_conditional_expression] = STATE(2562), + [sym_assignment_expression] = STATE(2562), + [sym_pointer_expression] = STATE(2549), + [sym_unary_expression] = STATE(2562), + [sym_binary_expression] = STATE(2562), + [sym_update_expression] = STATE(2562), + [sym_cast_expression] = STATE(2562), + [sym_sizeof_expression] = STATE(2562), + [sym_subscript_expression] = STATE(2549), + [sym_call_expression] = STATE(2549), + [sym_field_expression] = STATE(2549), + [sym_compound_literal_expression] = STATE(2562), + [sym_parenthesized_expression] = STATE(2549), + [sym_char_literal] = STATE(2344), + [sym_concatenated_string] = STATE(2344), + [sym_string_literal] = STATE(1824), + [sym__class_name] = STATE(6654), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2562), + [sym_co_await_expression] = STATE(2562), + [sym_new_expression] = STATE(2562), + [sym_delete_expression] = STATE(2562), + [sym_requires_clause] = STATE(2562), + [sym_requires_expression] = STATE(2562), + [sym_lambda_expression] = STATE(2562), + [sym_lambda_capture_specifier] = STATE(4787), + [sym_fold_expression] = STATE(2562), + [sym_parameter_pack_expansion] = STATE(2562), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2549), + [sym_qualified_type_identifier] = STATE(6654), + [sym_user_defined_literal] = STATE(2562), + [sym_identifier] = ACTIONS(1697), + [anon_sym_LPAREN2] = ACTIONS(1961), + [anon_sym_BANG] = ACTIONS(1965), + [anon_sym_TILDE] = ACTIONS(1965), + [anon_sym_DASH] = ACTIONS(1963), + [anon_sym_PLUS] = ACTIONS(1963), + [anon_sym_STAR] = ACTIONS(3117), + [anon_sym_AMP] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(1969), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(1963), + [anon_sym_compl] = ACTIONS(1963), + [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1971), + [anon_sym_sizeof] = ACTIONS(1973), + [sym_number_literal] = ACTIONS(1721), + [anon_sym_L_SQUOTE] = ACTIONS(1723), + [anon_sym_u_SQUOTE] = ACTIONS(1723), + [anon_sym_U_SQUOTE] = ACTIONS(1723), + [anon_sym_u8_SQUOTE] = ACTIONS(1723), + [anon_sym_SQUOTE] = ACTIONS(1723), + [anon_sym_L_DQUOTE] = ACTIONS(1725), + [anon_sym_u_DQUOTE] = ACTIONS(1725), + [anon_sym_U_DQUOTE] = ACTIONS(1725), + [anon_sym_u8_DQUOTE] = ACTIONS(1725), + [anon_sym_DQUOTE] = ACTIONS(1725), + [sym_true] = ACTIONS(1727), + [sym_false] = ACTIONS(1727), + [sym_null] = ACTIONS(1727), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1975), + [anon_sym_co_await] = ACTIONS(1977), + [anon_sym_new] = ACTIONS(1979), + [anon_sym_requires] = ACTIONS(1735), + [sym_this] = ACTIONS(1727), + [sym_nullptr] = ACTIONS(1727), + [sym_raw_string_literal] = ACTIONS(1737), + }, + [1631] = { + [sym__expression] = STATE(2995), + [sym_conditional_expression] = STATE(2562), + [sym_assignment_expression] = STATE(2562), + [sym_pointer_expression] = STATE(2549), + [sym_unary_expression] = STATE(2562), + [sym_binary_expression] = STATE(2562), + [sym_update_expression] = STATE(2562), + [sym_cast_expression] = STATE(2562), + [sym_sizeof_expression] = STATE(2562), + [sym_subscript_expression] = STATE(2549), + [sym_call_expression] = STATE(2549), + [sym_field_expression] = STATE(2549), + [sym_compound_literal_expression] = STATE(2562), + [sym_parenthesized_expression] = STATE(2549), + [sym_char_literal] = STATE(2344), + [sym_concatenated_string] = STATE(2344), + [sym_string_literal] = STATE(1824), + [sym__class_name] = STATE(6654), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2562), + [sym_co_await_expression] = STATE(2562), + [sym_new_expression] = STATE(2562), + [sym_delete_expression] = STATE(2562), + [sym_requires_clause] = STATE(2562), + [sym_requires_expression] = STATE(2562), + [sym_lambda_expression] = STATE(2562), + [sym_lambda_capture_specifier] = STATE(4787), + [sym_fold_expression] = STATE(2562), + [sym_parameter_pack_expansion] = STATE(2562), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2549), + [sym_qualified_type_identifier] = STATE(6654), + [sym_user_defined_literal] = STATE(2562), + [sym_identifier] = ACTIONS(1697), + [anon_sym_LPAREN2] = ACTIONS(1961), + [anon_sym_BANG] = ACTIONS(1965), + [anon_sym_TILDE] = ACTIONS(1965), + [anon_sym_DASH] = ACTIONS(1963), + [anon_sym_PLUS] = ACTIONS(1963), + [anon_sym_STAR] = ACTIONS(3117), + [anon_sym_AMP] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(1969), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(1963), + [anon_sym_compl] = ACTIONS(1963), + [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1971), + [anon_sym_sizeof] = ACTIONS(1973), + [sym_number_literal] = ACTIONS(1721), + [anon_sym_L_SQUOTE] = ACTIONS(1723), + [anon_sym_u_SQUOTE] = ACTIONS(1723), + [anon_sym_U_SQUOTE] = ACTIONS(1723), + [anon_sym_u8_SQUOTE] = ACTIONS(1723), + [anon_sym_SQUOTE] = ACTIONS(1723), + [anon_sym_L_DQUOTE] = ACTIONS(1725), + [anon_sym_u_DQUOTE] = ACTIONS(1725), + [anon_sym_U_DQUOTE] = ACTIONS(1725), + [anon_sym_u8_DQUOTE] = ACTIONS(1725), + [anon_sym_DQUOTE] = ACTIONS(1725), + [sym_true] = ACTIONS(1727), + [sym_false] = ACTIONS(1727), + [sym_null] = ACTIONS(1727), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1975), + [anon_sym_co_await] = ACTIONS(1977), + [anon_sym_new] = ACTIONS(1979), + [anon_sym_requires] = ACTIONS(1735), + [sym_this] = ACTIONS(1727), + [sym_nullptr] = ACTIONS(1727), + [sym_raw_string_literal] = ACTIONS(1737), + }, + [1632] = { + [sym__expression] = STATE(3945), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3121), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3121), + [sym_call_expression] = STATE(3121), + [sym_field_expression] = STATE(3121), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3121), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3121), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3109), + [anon_sym_LPAREN2] = ACTIONS(3111), + [anon_sym_BANG] = ACTIONS(3115), + [anon_sym_TILDE] = ACTIONS(3115), + [anon_sym_DASH] = ACTIONS(3113), + [anon_sym_PLUS] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(3117), + [anon_sym_AMP] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(3119), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3113), + [anon_sym_compl] = ACTIONS(3113), + [anon_sym_DASH_DASH] = ACTIONS(3121), + [anon_sym_PLUS_PLUS] = ACTIONS(3121), + [anon_sym_sizeof] = ACTIONS(3123), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3125), + [anon_sym_co_await] = ACTIONS(3127), + [anon_sym_new] = ACTIONS(3129), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1633] = { + [sym__expression] = STATE(2986), + [sym_conditional_expression] = STATE(2562), + [sym_assignment_expression] = STATE(2562), + [sym_pointer_expression] = STATE(2549), + [sym_unary_expression] = STATE(2562), + [sym_binary_expression] = STATE(2562), + [sym_update_expression] = STATE(2562), + [sym_cast_expression] = STATE(2562), + [sym_sizeof_expression] = STATE(2562), + [sym_subscript_expression] = STATE(2549), + [sym_call_expression] = STATE(2549), + [sym_field_expression] = STATE(2549), + [sym_compound_literal_expression] = STATE(2562), + [sym_parenthesized_expression] = STATE(2549), + [sym_char_literal] = STATE(2344), + [sym_concatenated_string] = STATE(2344), + [sym_string_literal] = STATE(1824), + [sym__class_name] = STATE(6654), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2562), + [sym_co_await_expression] = STATE(2562), + [sym_new_expression] = STATE(2562), + [sym_delete_expression] = STATE(2562), + [sym_requires_clause] = STATE(2562), + [sym_requires_expression] = STATE(2562), + [sym_lambda_expression] = STATE(2562), + [sym_lambda_capture_specifier] = STATE(4787), + [sym_fold_expression] = STATE(2562), + [sym_parameter_pack_expansion] = STATE(2562), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2549), + [sym_qualified_type_identifier] = STATE(6654), + [sym_user_defined_literal] = STATE(2562), + [sym_identifier] = ACTIONS(1697), + [anon_sym_LPAREN2] = ACTIONS(1961), + [anon_sym_BANG] = ACTIONS(1965), + [anon_sym_TILDE] = ACTIONS(1965), + [anon_sym_DASH] = ACTIONS(1963), + [anon_sym_PLUS] = ACTIONS(1963), + [anon_sym_STAR] = ACTIONS(3117), + [anon_sym_AMP] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(1969), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(1963), + [anon_sym_compl] = ACTIONS(1963), + [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1971), + [anon_sym_sizeof] = ACTIONS(1973), + [sym_number_literal] = ACTIONS(1721), + [anon_sym_L_SQUOTE] = ACTIONS(1723), + [anon_sym_u_SQUOTE] = ACTIONS(1723), + [anon_sym_U_SQUOTE] = ACTIONS(1723), + [anon_sym_u8_SQUOTE] = ACTIONS(1723), + [anon_sym_SQUOTE] = ACTIONS(1723), + [anon_sym_L_DQUOTE] = ACTIONS(1725), + [anon_sym_u_DQUOTE] = ACTIONS(1725), + [anon_sym_U_DQUOTE] = ACTIONS(1725), + [anon_sym_u8_DQUOTE] = ACTIONS(1725), + [anon_sym_DQUOTE] = ACTIONS(1725), + [sym_true] = ACTIONS(1727), + [sym_false] = ACTIONS(1727), + [sym_null] = ACTIONS(1727), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1975), + [anon_sym_co_await] = ACTIONS(1977), + [anon_sym_new] = ACTIONS(1979), + [anon_sym_requires] = ACTIONS(1735), + [sym_this] = ACTIONS(1727), + [sym_nullptr] = ACTIONS(1727), + [sym_raw_string_literal] = ACTIONS(1737), + }, + [1634] = { + [sym__expression] = STATE(3585), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3001), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3001), + [sym_call_expression] = STATE(3001), + [sym_field_expression] = STATE(3001), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3001), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3001), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3085), + [anon_sym_LPAREN2] = ACTIONS(3087), + [anon_sym_BANG] = ACTIONS(3091), + [anon_sym_TILDE] = ACTIONS(3091), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3089), + [anon_sym_compl] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3095), + [anon_sym_PLUS_PLUS] = ACTIONS(3095), + [anon_sym_sizeof] = ACTIONS(3097), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3099), + [anon_sym_co_await] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1635] = { + [sym__expression] = STATE(3970), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1636] = { + [sym__expression] = STATE(3814), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3001), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3001), + [sym_call_expression] = STATE(3001), + [sym_field_expression] = STATE(3001), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3001), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3001), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3085), + [anon_sym_LPAREN2] = ACTIONS(3087), + [anon_sym_BANG] = ACTIONS(3091), + [anon_sym_TILDE] = ACTIONS(3091), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3089), + [anon_sym_compl] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3095), + [anon_sym_PLUS_PLUS] = ACTIONS(3095), + [anon_sym_sizeof] = ACTIONS(3097), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3099), + [anon_sym_co_await] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1637] = { + [sym__expression] = STATE(3646), + [sym_conditional_expression] = STATE(3865), + [sym_assignment_expression] = STATE(3865), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3865), + [sym_binary_expression] = STATE(3865), + [sym_update_expression] = STATE(3865), + [sym_cast_expression] = STATE(3865), + [sym_sizeof_expression] = STATE(3865), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3865), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3707), + [sym_concatenated_string] = STATE(3707), + [sym_string_literal] = STATE(3250), + [sym__class_name] = STATE(6539), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3865), + [sym_co_await_expression] = STATE(3865), + [sym_new_expression] = STATE(3865), + [sym_delete_expression] = STATE(3865), + [sym_requires_clause] = STATE(3865), + [sym_requires_expression] = STATE(3865), + [sym_lambda_expression] = STATE(3865), + [sym_lambda_capture_specifier] = STATE(4789), + [sym_fold_expression] = STATE(3865), + [sym_parameter_pack_expansion] = STATE(3865), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(6539), + [sym_user_defined_literal] = STATE(3865), + [sym_identifier] = ACTIONS(3105), + [anon_sym_LPAREN2] = ACTIONS(2665), + [anon_sym_BANG] = ACTIONS(2667), + [anon_sym_TILDE] = ACTIONS(2667), + [anon_sym_DASH] = ACTIONS(2669), + [anon_sym_PLUS] = ACTIONS(2669), + [anon_sym_STAR] = ACTIONS(2671), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_COLON_COLON] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1933), + [anon_sym_not] = ACTIONS(2669), + [anon_sym_compl] = ACTIONS(2669), + [anon_sym_DASH_DASH] = ACTIONS(2687), + [anon_sym_PLUS_PLUS] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2689), + [sym_number_literal] = ACTIONS(2691), + [anon_sym_L_SQUOTE] = ACTIONS(2693), + [anon_sym_u_SQUOTE] = ACTIONS(2693), + [anon_sym_U_SQUOTE] = ACTIONS(2693), + [anon_sym_u8_SQUOTE] = ACTIONS(2693), + [anon_sym_SQUOTE] = ACTIONS(2693), + [anon_sym_L_DQUOTE] = ACTIONS(2695), + [anon_sym_u_DQUOTE] = ACTIONS(2695), + [anon_sym_U_DQUOTE] = ACTIONS(2695), + [anon_sym_u8_DQUOTE] = ACTIONS(2695), + [anon_sym_DQUOTE] = ACTIONS(2695), + [sym_true] = ACTIONS(2697), + [sym_false] = ACTIONS(2697), + [sym_null] = ACTIONS(2697), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(2707), + [anon_sym_co_await] = ACTIONS(2709), + [anon_sym_new] = ACTIONS(2711), + [anon_sym_requires] = ACTIONS(2713), + [sym_this] = ACTIONS(2697), + [sym_nullptr] = ACTIONS(2697), + [sym_raw_string_literal] = ACTIONS(2715), + }, + [1638] = { + [sym__expression] = STATE(3980), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1639] = { + [sym__expression] = STATE(3803), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3001), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3001), + [sym_call_expression] = STATE(3001), + [sym_field_expression] = STATE(3001), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3001), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3001), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3085), + [anon_sym_LPAREN2] = ACTIONS(3087), + [anon_sym_BANG] = ACTIONS(3091), + [anon_sym_TILDE] = ACTIONS(3091), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3089), + [anon_sym_compl] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3095), + [anon_sym_PLUS_PLUS] = ACTIONS(3095), + [anon_sym_sizeof] = ACTIONS(3097), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3099), + [anon_sym_co_await] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1640] = { + [sym__expression] = STATE(3927), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3121), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3121), + [sym_call_expression] = STATE(3121), + [sym_field_expression] = STATE(3121), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3121), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3121), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3109), + [anon_sym_LPAREN2] = ACTIONS(3111), + [anon_sym_BANG] = ACTIONS(3115), + [anon_sym_TILDE] = ACTIONS(3115), + [anon_sym_DASH] = ACTIONS(3113), + [anon_sym_PLUS] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(3117), + [anon_sym_AMP] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(3119), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3113), + [anon_sym_compl] = ACTIONS(3113), + [anon_sym_DASH_DASH] = ACTIONS(3121), + [anon_sym_PLUS_PLUS] = ACTIONS(3121), + [anon_sym_sizeof] = ACTIONS(3123), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3125), + [anon_sym_co_await] = ACTIONS(3127), + [anon_sym_new] = ACTIONS(3129), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1641] = { + [sym__expression] = STATE(3931), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1642] = { + [sym__expression] = STATE(3939), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3121), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3121), + [sym_call_expression] = STATE(3121), + [sym_field_expression] = STATE(3121), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3121), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3121), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3109), + [anon_sym_LPAREN2] = ACTIONS(3111), + [anon_sym_BANG] = ACTIONS(3115), + [anon_sym_TILDE] = ACTIONS(3115), + [anon_sym_DASH] = ACTIONS(3113), + [anon_sym_PLUS] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(3117), + [anon_sym_AMP] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(3119), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3113), + [anon_sym_compl] = ACTIONS(3113), + [anon_sym_DASH_DASH] = ACTIONS(3121), + [anon_sym_PLUS_PLUS] = ACTIONS(3121), + [anon_sym_sizeof] = ACTIONS(3123), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3125), + [anon_sym_co_await] = ACTIONS(3127), + [anon_sym_new] = ACTIONS(3129), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1643] = { + [sym__expression] = STATE(3882), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3121), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3121), + [sym_call_expression] = STATE(3121), + [sym_field_expression] = STATE(3121), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3121), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3121), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3109), + [anon_sym_LPAREN2] = ACTIONS(3111), + [anon_sym_BANG] = ACTIONS(3115), + [anon_sym_TILDE] = ACTIONS(3115), + [anon_sym_DASH] = ACTIONS(3113), + [anon_sym_PLUS] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(3117), + [anon_sym_AMP] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(3119), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3113), + [anon_sym_compl] = ACTIONS(3113), + [anon_sym_DASH_DASH] = ACTIONS(3121), + [anon_sym_PLUS_PLUS] = ACTIONS(3121), + [anon_sym_sizeof] = ACTIONS(3123), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3125), + [anon_sym_co_await] = ACTIONS(3127), + [anon_sym_new] = ACTIONS(3129), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1644] = { + [sym__expression] = STATE(3941), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1645] = { + [sym__expression] = STATE(2530), + [sym_conditional_expression] = STATE(2562), + [sym_assignment_expression] = STATE(2562), + [sym_pointer_expression] = STATE(2549), + [sym_unary_expression] = STATE(2562), + [sym_binary_expression] = STATE(2562), + [sym_update_expression] = STATE(2562), + [sym_cast_expression] = STATE(2562), + [sym_sizeof_expression] = STATE(2562), + [sym_subscript_expression] = STATE(2549), + [sym_call_expression] = STATE(2549), + [sym_field_expression] = STATE(2549), + [sym_compound_literal_expression] = STATE(2562), + [sym_parenthesized_expression] = STATE(2549), + [sym_char_literal] = STATE(2344), + [sym_concatenated_string] = STATE(2344), + [sym_string_literal] = STATE(1824), + [sym__class_name] = STATE(6654), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2562), + [sym_co_await_expression] = STATE(2562), + [sym_new_expression] = STATE(2562), + [sym_delete_expression] = STATE(2562), + [sym_requires_clause] = STATE(2562), + [sym_requires_expression] = STATE(2562), + [sym_lambda_expression] = STATE(2562), + [sym_lambda_capture_specifier] = STATE(4787), + [sym_fold_expression] = STATE(2562), + [sym_parameter_pack_expansion] = STATE(2562), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2549), + [sym_qualified_type_identifier] = STATE(6654), + [sym_user_defined_literal] = STATE(2562), + [sym_identifier] = ACTIONS(1697), + [anon_sym_LPAREN2] = ACTIONS(1701), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1703), + [anon_sym_PLUS] = ACTIONS(1703), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(1703), + [anon_sym_compl] = ACTIONS(1703), + [anon_sym_DASH_DASH] = ACTIONS(1717), + [anon_sym_PLUS_PLUS] = ACTIONS(1717), + [anon_sym_sizeof] = ACTIONS(1719), + [sym_number_literal] = ACTIONS(1721), + [anon_sym_L_SQUOTE] = ACTIONS(1723), + [anon_sym_u_SQUOTE] = ACTIONS(1723), + [anon_sym_U_SQUOTE] = ACTIONS(1723), + [anon_sym_u8_SQUOTE] = ACTIONS(1723), + [anon_sym_SQUOTE] = ACTIONS(1723), + [anon_sym_L_DQUOTE] = ACTIONS(1725), + [anon_sym_u_DQUOTE] = ACTIONS(1725), + [anon_sym_U_DQUOTE] = ACTIONS(1725), + [anon_sym_u8_DQUOTE] = ACTIONS(1725), + [anon_sym_DQUOTE] = ACTIONS(1725), + [sym_true] = ACTIONS(1727), + [sym_false] = ACTIONS(1727), + [sym_null] = ACTIONS(1727), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1729), + [anon_sym_co_await] = ACTIONS(1731), + [anon_sym_new] = ACTIONS(1733), + [anon_sym_requires] = ACTIONS(1735), + [sym_this] = ACTIONS(1727), + [sym_nullptr] = ACTIONS(1727), + [sym_raw_string_literal] = ACTIONS(1737), + }, + [1646] = { + [sym__expression] = STATE(2530), + [sym_conditional_expression] = STATE(2562), + [sym_assignment_expression] = STATE(2562), + [sym_pointer_expression] = STATE(2549), + [sym_unary_expression] = STATE(2562), + [sym_binary_expression] = STATE(2562), + [sym_update_expression] = STATE(2562), + [sym_cast_expression] = STATE(2562), + [sym_sizeof_expression] = STATE(2562), + [sym_subscript_expression] = STATE(2549), + [sym_call_expression] = STATE(2549), + [sym_field_expression] = STATE(2549), + [sym_compound_literal_expression] = STATE(2562), + [sym_parenthesized_expression] = STATE(2549), + [sym_char_literal] = STATE(2344), + [sym_concatenated_string] = STATE(2344), + [sym_string_literal] = STATE(1824), + [sym__class_name] = STATE(6654), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2562), + [sym_co_await_expression] = STATE(2562), + [sym_new_expression] = STATE(2562), + [sym_delete_expression] = STATE(2562), + [sym_requires_clause] = STATE(2562), + [sym_requires_expression] = STATE(2562), + [sym_lambda_expression] = STATE(2562), + [sym_lambda_capture_specifier] = STATE(4787), + [sym_fold_expression] = STATE(2562), + [sym_parameter_pack_expansion] = STATE(2562), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2549), + [sym_qualified_type_identifier] = STATE(6654), + [sym_user_defined_literal] = STATE(2562), + [sym_identifier] = ACTIONS(3883), + [anon_sym_LPAREN2] = ACTIONS(1701), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1703), + [anon_sym_PLUS] = ACTIONS(1703), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(1703), + [anon_sym_compl] = ACTIONS(1703), + [anon_sym_DASH_DASH] = ACTIONS(1717), + [anon_sym_PLUS_PLUS] = ACTIONS(1717), + [anon_sym_sizeof] = ACTIONS(1719), + [sym_number_literal] = ACTIONS(1721), + [anon_sym_L_SQUOTE] = ACTIONS(1723), + [anon_sym_u_SQUOTE] = ACTIONS(1723), + [anon_sym_U_SQUOTE] = ACTIONS(1723), + [anon_sym_u8_SQUOTE] = ACTIONS(1723), + [anon_sym_SQUOTE] = ACTIONS(1723), + [anon_sym_L_DQUOTE] = ACTIONS(1725), + [anon_sym_u_DQUOTE] = ACTIONS(1725), + [anon_sym_U_DQUOTE] = ACTIONS(1725), + [anon_sym_u8_DQUOTE] = ACTIONS(1725), + [anon_sym_DQUOTE] = ACTIONS(1725), + [sym_true] = ACTIONS(1727), + [sym_false] = ACTIONS(1727), + [sym_null] = ACTIONS(1727), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1729), + [anon_sym_co_await] = ACTIONS(1731), + [anon_sym_new] = ACTIONS(1733), + [anon_sym_requires] = ACTIONS(1735), + [sym_this] = ACTIONS(1727), + [sym_nullptr] = ACTIONS(1727), + [sym_raw_string_literal] = ACTIONS(1737), + }, + [1647] = { + [sym__expression] = STATE(3717), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3001), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3001), + [sym_call_expression] = STATE(3001), + [sym_field_expression] = STATE(3001), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3001), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3001), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3085), + [anon_sym_LPAREN2] = ACTIONS(3087), + [anon_sym_BANG] = ACTIONS(3091), + [anon_sym_TILDE] = ACTIONS(3091), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3089), + [anon_sym_compl] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3095), + [anon_sym_PLUS_PLUS] = ACTIONS(3095), + [anon_sym_sizeof] = ACTIONS(3097), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3099), + [anon_sym_co_await] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1648] = { + [sym__expression] = STATE(3555), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1649] = { + [sym__expression] = STATE(3968), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3121), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3121), + [sym_call_expression] = STATE(3121), + [sym_field_expression] = STATE(3121), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3121), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3121), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3109), + [anon_sym_LPAREN2] = ACTIONS(3111), + [anon_sym_BANG] = ACTIONS(3115), + [anon_sym_TILDE] = ACTIONS(3115), + [anon_sym_DASH] = ACTIONS(3113), + [anon_sym_PLUS] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(3117), + [anon_sym_AMP] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(3119), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3113), + [anon_sym_compl] = ACTIONS(3113), + [anon_sym_DASH_DASH] = ACTIONS(3121), + [anon_sym_PLUS_PLUS] = ACTIONS(3121), + [anon_sym_sizeof] = ACTIONS(3123), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3125), + [anon_sym_co_await] = ACTIONS(3127), + [anon_sym_new] = ACTIONS(3129), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1650] = { + [sym__expression] = STATE(2476), + [sym_conditional_expression] = STATE(2562), + [sym_assignment_expression] = STATE(2562), + [sym_pointer_expression] = STATE(2549), + [sym_unary_expression] = STATE(2562), + [sym_binary_expression] = STATE(2562), + [sym_update_expression] = STATE(2562), + [sym_cast_expression] = STATE(2562), + [sym_sizeof_expression] = STATE(2562), + [sym_subscript_expression] = STATE(2549), + [sym_call_expression] = STATE(2549), + [sym_field_expression] = STATE(2549), + [sym_compound_literal_expression] = STATE(2562), + [sym_parenthesized_expression] = STATE(2549), + [sym_char_literal] = STATE(2344), + [sym_concatenated_string] = STATE(2344), + [sym_string_literal] = STATE(1824), + [sym__class_name] = STATE(6654), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2562), + [sym_co_await_expression] = STATE(2562), + [sym_new_expression] = STATE(2562), + [sym_delete_expression] = STATE(2562), + [sym_requires_clause] = STATE(2562), + [sym_requires_expression] = STATE(2562), + [sym_lambda_expression] = STATE(2562), + [sym_lambda_capture_specifier] = STATE(4787), + [sym_fold_expression] = STATE(2562), + [sym_parameter_pack_expansion] = STATE(2562), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2549), + [sym_qualified_type_identifier] = STATE(6654), + [sym_user_defined_literal] = STATE(2562), + [sym_identifier] = ACTIONS(1697), + [anon_sym_LPAREN2] = ACTIONS(1701), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1703), + [anon_sym_PLUS] = ACTIONS(1703), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(1703), + [anon_sym_compl] = ACTIONS(1703), + [anon_sym_DASH_DASH] = ACTIONS(1717), + [anon_sym_PLUS_PLUS] = ACTIONS(1717), + [anon_sym_sizeof] = ACTIONS(1719), + [sym_number_literal] = ACTIONS(1721), + [anon_sym_L_SQUOTE] = ACTIONS(1723), + [anon_sym_u_SQUOTE] = ACTIONS(1723), + [anon_sym_U_SQUOTE] = ACTIONS(1723), + [anon_sym_u8_SQUOTE] = ACTIONS(1723), + [anon_sym_SQUOTE] = ACTIONS(1723), + [anon_sym_L_DQUOTE] = ACTIONS(1725), + [anon_sym_u_DQUOTE] = ACTIONS(1725), + [anon_sym_U_DQUOTE] = ACTIONS(1725), + [anon_sym_u8_DQUOTE] = ACTIONS(1725), + [anon_sym_DQUOTE] = ACTIONS(1725), + [sym_true] = ACTIONS(1727), + [sym_false] = ACTIONS(1727), + [sym_null] = ACTIONS(1727), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1729), + [anon_sym_co_await] = ACTIONS(1731), + [anon_sym_new] = ACTIONS(1733), + [anon_sym_requires] = ACTIONS(1735), + [sym_this] = ACTIONS(1727), + [sym_nullptr] = ACTIONS(1727), + [sym_raw_string_literal] = ACTIONS(1737), + }, + [1651] = { + [sym__expression] = STATE(3910), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1652] = { + [sym__expression] = STATE(3575), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(3885), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1653] = { + [sym__expression] = STATE(3703), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1654] = { + [sym__expression] = STATE(3479), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1655] = { + [sym__expression] = STATE(2498), + [sym_conditional_expression] = STATE(2562), + [sym_assignment_expression] = STATE(2562), + [sym_pointer_expression] = STATE(2549), + [sym_unary_expression] = STATE(2562), + [sym_binary_expression] = STATE(2562), + [sym_update_expression] = STATE(2562), + [sym_cast_expression] = STATE(2562), + [sym_sizeof_expression] = STATE(2562), + [sym_subscript_expression] = STATE(2549), + [sym_call_expression] = STATE(2549), + [sym_field_expression] = STATE(2549), + [sym_compound_literal_expression] = STATE(2562), + [sym_parenthesized_expression] = STATE(2549), + [sym_char_literal] = STATE(2344), + [sym_concatenated_string] = STATE(2344), + [sym_string_literal] = STATE(1824), + [sym__class_name] = STATE(6654), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2562), + [sym_co_await_expression] = STATE(2562), + [sym_new_expression] = STATE(2562), + [sym_delete_expression] = STATE(2562), + [sym_requires_clause] = STATE(2562), + [sym_requires_expression] = STATE(2562), + [sym_lambda_expression] = STATE(2562), + [sym_lambda_capture_specifier] = STATE(4787), + [sym_fold_expression] = STATE(2562), + [sym_parameter_pack_expansion] = STATE(2562), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2549), + [sym_qualified_type_identifier] = STATE(6654), + [sym_user_defined_literal] = STATE(2562), + [sym_identifier] = ACTIONS(1697), + [anon_sym_LPAREN2] = ACTIONS(1701), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1703), + [anon_sym_PLUS] = ACTIONS(1703), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(3887), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(1703), + [anon_sym_compl] = ACTIONS(1703), + [anon_sym_DASH_DASH] = ACTIONS(1717), + [anon_sym_PLUS_PLUS] = ACTIONS(1717), + [anon_sym_sizeof] = ACTIONS(1719), + [sym_number_literal] = ACTIONS(1721), + [anon_sym_L_SQUOTE] = ACTIONS(1723), + [anon_sym_u_SQUOTE] = ACTIONS(1723), + [anon_sym_U_SQUOTE] = ACTIONS(1723), + [anon_sym_u8_SQUOTE] = ACTIONS(1723), + [anon_sym_SQUOTE] = ACTIONS(1723), + [anon_sym_L_DQUOTE] = ACTIONS(1725), + [anon_sym_u_DQUOTE] = ACTIONS(1725), + [anon_sym_U_DQUOTE] = ACTIONS(1725), + [anon_sym_u8_DQUOTE] = ACTIONS(1725), + [anon_sym_DQUOTE] = ACTIONS(1725), + [sym_true] = ACTIONS(1727), + [sym_false] = ACTIONS(1727), + [sym_null] = ACTIONS(1727), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1729), + [anon_sym_co_await] = ACTIONS(1731), + [anon_sym_new] = ACTIONS(1733), + [anon_sym_requires] = ACTIONS(1735), + [sym_this] = ACTIONS(1727), + [sym_nullptr] = ACTIONS(1727), + [sym_raw_string_literal] = ACTIONS(1737), + }, + [1656] = { + [sym__expression] = STATE(3950), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1657] = { + [sym__expression] = STATE(2966), + [sym_conditional_expression] = STATE(2999), + [sym_assignment_expression] = STATE(2999), + [sym_pointer_expression] = STATE(2973), + [sym_unary_expression] = STATE(2999), + [sym_binary_expression] = STATE(2999), + [sym_update_expression] = STATE(2999), + [sym_cast_expression] = STATE(2999), + [sym_sizeof_expression] = STATE(2999), + [sym_subscript_expression] = STATE(2973), + [sym_call_expression] = STATE(2973), + [sym_field_expression] = STATE(2973), + [sym_compound_literal_expression] = STATE(2999), + [sym_parenthesized_expression] = STATE(2973), + [sym_char_literal] = STATE(2933), + [sym_concatenated_string] = STATE(2933), + [sym_string_literal] = STATE(1927), + [sym__class_name] = STATE(6445), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2999), + [sym_co_await_expression] = STATE(2999), + [sym_new_expression] = STATE(2999), + [sym_delete_expression] = STATE(2999), + [sym_requires_clause] = STATE(2999), + [sym_requires_expression] = STATE(2999), + [sym_lambda_expression] = STATE(2999), + [sym_lambda_capture_specifier] = STATE(4767), + [sym_fold_expression] = STATE(2999), + [sym_parameter_pack_expansion] = STATE(2999), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2973), + [sym_qualified_type_identifier] = STATE(6445), + [sym_user_defined_literal] = STATE(2999), + [sym_identifier] = ACTIONS(1919), + [anon_sym_LPAREN2] = ACTIONS(1921), + [anon_sym_BANG] = ACTIONS(1925), + [anon_sym_TILDE] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1923), + [anon_sym_PLUS] = ACTIONS(1923), + [anon_sym_STAR] = ACTIONS(2671), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_COLON_COLON] = ACTIONS(1929), + [anon_sym_LBRACK] = ACTIONS(3889), + [sym_primitive_type] = ACTIONS(1933), + [anon_sym_not] = ACTIONS(1923), + [anon_sym_compl] = ACTIONS(1923), + [anon_sym_DASH_DASH] = ACTIONS(1935), + [anon_sym_PLUS_PLUS] = ACTIONS(1935), + [anon_sym_sizeof] = ACTIONS(1937), + [sym_number_literal] = ACTIONS(1939), + [anon_sym_L_SQUOTE] = ACTIONS(1941), + [anon_sym_u_SQUOTE] = ACTIONS(1941), + [anon_sym_U_SQUOTE] = ACTIONS(1941), + [anon_sym_u8_SQUOTE] = ACTIONS(1941), + [anon_sym_SQUOTE] = ACTIONS(1941), + [anon_sym_L_DQUOTE] = ACTIONS(1943), + [anon_sym_u_DQUOTE] = ACTIONS(1943), + [anon_sym_U_DQUOTE] = ACTIONS(1943), + [anon_sym_u8_DQUOTE] = ACTIONS(1943), + [anon_sym_DQUOTE] = ACTIONS(1943), + [sym_true] = ACTIONS(1945), + [sym_false] = ACTIONS(1945), + [sym_null] = ACTIONS(1945), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1947), + [anon_sym_co_await] = ACTIONS(1949), + [anon_sym_new] = ACTIONS(1951), + [anon_sym_requires] = ACTIONS(1953), + [sym_this] = ACTIONS(1945), + [sym_nullptr] = ACTIONS(1945), + [sym_raw_string_literal] = ACTIONS(1955), + }, + [1658] = { + [sym__expression] = STATE(2536), + [sym_conditional_expression] = STATE(2562), + [sym_assignment_expression] = STATE(2562), + [sym_pointer_expression] = STATE(2549), + [sym_unary_expression] = STATE(2562), + [sym_binary_expression] = STATE(2562), + [sym_update_expression] = STATE(2562), + [sym_cast_expression] = STATE(2562), + [sym_sizeof_expression] = STATE(2562), + [sym_subscript_expression] = STATE(2549), + [sym_call_expression] = STATE(2549), + [sym_field_expression] = STATE(2549), + [sym_compound_literal_expression] = STATE(2562), + [sym_parenthesized_expression] = STATE(2549), + [sym_char_literal] = STATE(2344), + [sym_concatenated_string] = STATE(2344), + [sym_string_literal] = STATE(1824), + [sym__class_name] = STATE(6654), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2562), + [sym_co_await_expression] = STATE(2562), + [sym_new_expression] = STATE(2562), + [sym_delete_expression] = STATE(2562), + [sym_requires_clause] = STATE(2562), + [sym_requires_expression] = STATE(2562), + [sym_lambda_expression] = STATE(2562), + [sym_lambda_capture_specifier] = STATE(4787), + [sym_fold_expression] = STATE(2562), + [sym_parameter_pack_expansion] = STATE(2562), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2549), + [sym_qualified_type_identifier] = STATE(6654), + [sym_user_defined_literal] = STATE(2562), + [sym_identifier] = ACTIONS(1697), + [anon_sym_LPAREN2] = ACTIONS(1701), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1703), + [anon_sym_PLUS] = ACTIONS(1703), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(1703), + [anon_sym_compl] = ACTIONS(1703), + [anon_sym_DASH_DASH] = ACTIONS(1717), + [anon_sym_PLUS_PLUS] = ACTIONS(1717), + [anon_sym_sizeof] = ACTIONS(1719), + [sym_number_literal] = ACTIONS(1721), + [anon_sym_L_SQUOTE] = ACTIONS(1723), + [anon_sym_u_SQUOTE] = ACTIONS(1723), + [anon_sym_U_SQUOTE] = ACTIONS(1723), + [anon_sym_u8_SQUOTE] = ACTIONS(1723), + [anon_sym_SQUOTE] = ACTIONS(1723), + [anon_sym_L_DQUOTE] = ACTIONS(1725), + [anon_sym_u_DQUOTE] = ACTIONS(1725), + [anon_sym_U_DQUOTE] = ACTIONS(1725), + [anon_sym_u8_DQUOTE] = ACTIONS(1725), + [anon_sym_DQUOTE] = ACTIONS(1725), + [sym_true] = ACTIONS(1727), + [sym_false] = ACTIONS(1727), + [sym_null] = ACTIONS(1727), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1729), + [anon_sym_co_await] = ACTIONS(1731), + [anon_sym_new] = ACTIONS(1733), + [anon_sym_requires] = ACTIONS(1735), + [sym_this] = ACTIONS(1727), + [sym_nullptr] = ACTIONS(1727), + [sym_raw_string_literal] = ACTIONS(1737), + }, + [1659] = { + [sym__expression] = STATE(3749), + [sym_conditional_expression] = STATE(3865), + [sym_assignment_expression] = STATE(3865), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3865), + [sym_binary_expression] = STATE(3865), + [sym_update_expression] = STATE(3865), + [sym_cast_expression] = STATE(3865), + [sym_sizeof_expression] = STATE(3865), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3865), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3707), + [sym_concatenated_string] = STATE(3707), + [sym_string_literal] = STATE(3250), + [sym__class_name] = STATE(6539), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3865), + [sym_co_await_expression] = STATE(3865), + [sym_new_expression] = STATE(3865), + [sym_delete_expression] = STATE(3865), + [sym_requires_clause] = STATE(3865), + [sym_requires_expression] = STATE(3865), + [sym_lambda_expression] = STATE(3865), + [sym_lambda_capture_specifier] = STATE(4789), + [sym_fold_expression] = STATE(3865), + [sym_parameter_pack_expansion] = STATE(3865), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(6539), + [sym_user_defined_literal] = STATE(3865), + [sym_identifier] = ACTIONS(3105), + [anon_sym_LPAREN2] = ACTIONS(2665), + [anon_sym_BANG] = ACTIONS(2667), + [anon_sym_TILDE] = ACTIONS(2667), + [anon_sym_DASH] = ACTIONS(2669), + [anon_sym_PLUS] = ACTIONS(2669), + [anon_sym_STAR] = ACTIONS(2671), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_COLON_COLON] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1933), + [anon_sym_not] = ACTIONS(2669), + [anon_sym_compl] = ACTIONS(2669), + [anon_sym_DASH_DASH] = ACTIONS(2687), + [anon_sym_PLUS_PLUS] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2689), + [sym_number_literal] = ACTIONS(2691), + [anon_sym_L_SQUOTE] = ACTIONS(2693), + [anon_sym_u_SQUOTE] = ACTIONS(2693), + [anon_sym_U_SQUOTE] = ACTIONS(2693), + [anon_sym_u8_SQUOTE] = ACTIONS(2693), + [anon_sym_SQUOTE] = ACTIONS(2693), + [anon_sym_L_DQUOTE] = ACTIONS(2695), + [anon_sym_u_DQUOTE] = ACTIONS(2695), + [anon_sym_U_DQUOTE] = ACTIONS(2695), + [anon_sym_u8_DQUOTE] = ACTIONS(2695), + [anon_sym_DQUOTE] = ACTIONS(2695), + [sym_true] = ACTIONS(2697), + [sym_false] = ACTIONS(2697), + [sym_null] = ACTIONS(2697), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(2707), + [anon_sym_co_await] = ACTIONS(2709), + [anon_sym_new] = ACTIONS(2711), + [anon_sym_requires] = ACTIONS(2713), + [sym_this] = ACTIONS(2697), + [sym_nullptr] = ACTIONS(2697), + [sym_raw_string_literal] = ACTIONS(2715), + }, + [1660] = { + [sym__expression] = STATE(3779), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1661] = { + [sym__expression] = STATE(3052), + [sym_conditional_expression] = STATE(3135), + [sym_assignment_expression] = STATE(3135), + [sym_pointer_expression] = STATE(2788), + [sym_unary_expression] = STATE(3135), + [sym_binary_expression] = STATE(3135), + [sym_update_expression] = STATE(3135), + [sym_cast_expression] = STATE(3135), + [sym_sizeof_expression] = STATE(3135), + [sym_subscript_expression] = STATE(2788), + [sym_call_expression] = STATE(2788), + [sym_field_expression] = STATE(2788), + [sym_compound_literal_expression] = STATE(3135), + [sym_parenthesized_expression] = STATE(2788), + [sym_char_literal] = STATE(2981), + [sym_concatenated_string] = STATE(2981), + [sym_string_literal] = STATE(1970), + [sym__class_name] = STATE(6450), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3135), + [sym_co_await_expression] = STATE(3135), + [sym_new_expression] = STATE(3135), + [sym_delete_expression] = STATE(3135), + [sym_requires_clause] = STATE(3135), + [sym_requires_expression] = STATE(3135), + [sym_lambda_expression] = STATE(3135), + [sym_lambda_capture_specifier] = STATE(4771), + [sym_fold_expression] = STATE(3135), + [sym_parameter_pack_expansion] = STATE(3135), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4904), + [sym_qualified_identifier] = STATE(2788), + [sym_qualified_type_identifier] = STATE(6450), + [sym_user_defined_literal] = STATE(3135), + [sym_identifier] = ACTIONS(1957), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1753), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_co_await] = ACTIONS(1455), + [anon_sym_new] = ACTIONS(1457), + [anon_sym_requires] = ACTIONS(1459), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + [sym_raw_string_literal] = ACTIONS(1461), + }, + [1662] = { + [sym__expression] = STATE(3045), + [sym_conditional_expression] = STATE(3135), + [sym_assignment_expression] = STATE(3135), + [sym_pointer_expression] = STATE(2788), + [sym_unary_expression] = STATE(3135), + [sym_binary_expression] = STATE(3135), + [sym_update_expression] = STATE(3135), + [sym_cast_expression] = STATE(3135), + [sym_sizeof_expression] = STATE(3135), + [sym_subscript_expression] = STATE(2788), + [sym_call_expression] = STATE(2788), + [sym_field_expression] = STATE(2788), + [sym_compound_literal_expression] = STATE(3135), + [sym_parenthesized_expression] = STATE(2788), + [sym_char_literal] = STATE(2981), + [sym_concatenated_string] = STATE(2981), + [sym_string_literal] = STATE(1970), + [sym__class_name] = STATE(6450), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3135), + [sym_co_await_expression] = STATE(3135), + [sym_new_expression] = STATE(3135), + [sym_delete_expression] = STATE(3135), + [sym_requires_clause] = STATE(3135), + [sym_requires_expression] = STATE(3135), + [sym_lambda_expression] = STATE(3135), + [sym_lambda_capture_specifier] = STATE(4771), + [sym_fold_expression] = STATE(3135), + [sym_parameter_pack_expansion] = STATE(3135), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4904), + [sym_qualified_identifier] = STATE(2788), + [sym_qualified_type_identifier] = STATE(6450), + [sym_user_defined_literal] = STATE(3135), + [sym_identifier] = ACTIONS(1957), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(3891), + [sym_primitive_type] = ACTIONS(1753), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_co_await] = ACTIONS(1455), + [anon_sym_new] = ACTIONS(1457), + [anon_sym_requires] = ACTIONS(1459), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + [sym_raw_string_literal] = ACTIONS(1461), + }, + [1663] = { + [sym__expression] = STATE(3942), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3001), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3001), + [sym_call_expression] = STATE(3001), + [sym_field_expression] = STATE(3001), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3001), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3001), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3085), + [anon_sym_LPAREN2] = ACTIONS(3087), + [anon_sym_BANG] = ACTIONS(3091), + [anon_sym_TILDE] = ACTIONS(3091), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3089), + [anon_sym_compl] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3095), + [anon_sym_PLUS_PLUS] = ACTIONS(3095), + [anon_sym_sizeof] = ACTIONS(3097), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3099), + [anon_sym_co_await] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1664] = { + [sym__expression] = STATE(3647), + [sym_conditional_expression] = STATE(3865), + [sym_assignment_expression] = STATE(3865), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3865), + [sym_binary_expression] = STATE(3865), + [sym_update_expression] = STATE(3865), + [sym_cast_expression] = STATE(3865), + [sym_sizeof_expression] = STATE(3865), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3865), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3707), + [sym_concatenated_string] = STATE(3707), + [sym_string_literal] = STATE(3250), + [sym__class_name] = STATE(6539), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3865), + [sym_co_await_expression] = STATE(3865), + [sym_new_expression] = STATE(3865), + [sym_delete_expression] = STATE(3865), + [sym_requires_clause] = STATE(3865), + [sym_requires_expression] = STATE(3865), + [sym_lambda_expression] = STATE(3865), + [sym_lambda_capture_specifier] = STATE(4789), + [sym_fold_expression] = STATE(3865), + [sym_parameter_pack_expansion] = STATE(3865), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(6539), + [sym_user_defined_literal] = STATE(3865), + [sym_identifier] = ACTIONS(3105), + [anon_sym_LPAREN2] = ACTIONS(2665), + [anon_sym_BANG] = ACTIONS(2667), + [anon_sym_TILDE] = ACTIONS(2667), + [anon_sym_DASH] = ACTIONS(2669), + [anon_sym_PLUS] = ACTIONS(2669), + [anon_sym_STAR] = ACTIONS(2671), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_COLON_COLON] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1933), + [anon_sym_not] = ACTIONS(2669), + [anon_sym_compl] = ACTIONS(2669), + [anon_sym_DASH_DASH] = ACTIONS(2687), + [anon_sym_PLUS_PLUS] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2689), + [sym_number_literal] = ACTIONS(2691), + [anon_sym_L_SQUOTE] = ACTIONS(2693), + [anon_sym_u_SQUOTE] = ACTIONS(2693), + [anon_sym_U_SQUOTE] = ACTIONS(2693), + [anon_sym_u8_SQUOTE] = ACTIONS(2693), + [anon_sym_SQUOTE] = ACTIONS(2693), + [anon_sym_L_DQUOTE] = ACTIONS(2695), + [anon_sym_u_DQUOTE] = ACTIONS(2695), + [anon_sym_U_DQUOTE] = ACTIONS(2695), + [anon_sym_u8_DQUOTE] = ACTIONS(2695), + [anon_sym_DQUOTE] = ACTIONS(2695), + [sym_true] = ACTIONS(2697), + [sym_false] = ACTIONS(2697), + [sym_null] = ACTIONS(2697), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(2707), + [anon_sym_co_await] = ACTIONS(2709), + [anon_sym_new] = ACTIONS(2711), + [anon_sym_requires] = ACTIONS(2713), + [sym_this] = ACTIONS(2697), + [sym_nullptr] = ACTIONS(2697), + [sym_raw_string_literal] = ACTIONS(2715), + }, + [1665] = { + [sym__expression] = STATE(3046), + [sym_conditional_expression] = STATE(2562), + [sym_assignment_expression] = STATE(2562), + [sym_pointer_expression] = STATE(2549), + [sym_unary_expression] = STATE(2562), + [sym_binary_expression] = STATE(2562), + [sym_update_expression] = STATE(2562), + [sym_cast_expression] = STATE(2562), + [sym_sizeof_expression] = STATE(2562), + [sym_subscript_expression] = STATE(2549), + [sym_call_expression] = STATE(2549), + [sym_field_expression] = STATE(2549), + [sym_compound_literal_expression] = STATE(2562), + [sym_parenthesized_expression] = STATE(2549), + [sym_char_literal] = STATE(2344), + [sym_concatenated_string] = STATE(2344), + [sym_string_literal] = STATE(1824), + [sym__class_name] = STATE(6654), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2562), + [sym_co_await_expression] = STATE(2562), + [sym_new_expression] = STATE(2562), + [sym_delete_expression] = STATE(2562), + [sym_requires_clause] = STATE(2562), + [sym_requires_expression] = STATE(2562), + [sym_lambda_expression] = STATE(2562), + [sym_lambda_capture_specifier] = STATE(4787), + [sym_fold_expression] = STATE(2562), + [sym_parameter_pack_expansion] = STATE(2562), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2549), + [sym_qualified_type_identifier] = STATE(6654), + [sym_user_defined_literal] = STATE(2562), + [sym_identifier] = ACTIONS(1697), + [anon_sym_LPAREN2] = ACTIONS(1961), + [anon_sym_BANG] = ACTIONS(1965), + [anon_sym_TILDE] = ACTIONS(1965), + [anon_sym_DASH] = ACTIONS(1963), + [anon_sym_PLUS] = ACTIONS(1963), + [anon_sym_STAR] = ACTIONS(3117), + [anon_sym_AMP] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(1969), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(1963), + [anon_sym_compl] = ACTIONS(1963), + [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1971), + [anon_sym_sizeof] = ACTIONS(1973), + [sym_number_literal] = ACTIONS(1721), + [anon_sym_L_SQUOTE] = ACTIONS(1723), + [anon_sym_u_SQUOTE] = ACTIONS(1723), + [anon_sym_U_SQUOTE] = ACTIONS(1723), + [anon_sym_u8_SQUOTE] = ACTIONS(1723), + [anon_sym_SQUOTE] = ACTIONS(1723), + [anon_sym_L_DQUOTE] = ACTIONS(1725), + [anon_sym_u_DQUOTE] = ACTIONS(1725), + [anon_sym_U_DQUOTE] = ACTIONS(1725), + [anon_sym_u8_DQUOTE] = ACTIONS(1725), + [anon_sym_DQUOTE] = ACTIONS(1725), + [sym_true] = ACTIONS(1727), + [sym_false] = ACTIONS(1727), + [sym_null] = ACTIONS(1727), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1975), + [anon_sym_co_await] = ACTIONS(1977), + [anon_sym_new] = ACTIONS(1979), + [anon_sym_requires] = ACTIONS(1735), + [sym_this] = ACTIONS(1727), + [sym_nullptr] = ACTIONS(1727), + [sym_raw_string_literal] = ACTIONS(1737), + }, + [1666] = { + [sym__expression] = STATE(3479), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3001), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3001), + [sym_call_expression] = STATE(3001), + [sym_field_expression] = STATE(3001), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3001), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3001), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3085), + [anon_sym_LPAREN2] = ACTIONS(3087), + [anon_sym_BANG] = ACTIONS(3091), + [anon_sym_TILDE] = ACTIONS(3091), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3089), + [anon_sym_compl] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3095), + [anon_sym_PLUS_PLUS] = ACTIONS(3095), + [anon_sym_sizeof] = ACTIONS(3097), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3099), + [anon_sym_co_await] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1667] = { + [sym__expression] = STATE(2510), + [sym_conditional_expression] = STATE(2562), + [sym_assignment_expression] = STATE(2562), + [sym_pointer_expression] = STATE(2549), + [sym_unary_expression] = STATE(2562), + [sym_binary_expression] = STATE(2562), + [sym_update_expression] = STATE(2562), + [sym_cast_expression] = STATE(2562), + [sym_sizeof_expression] = STATE(2562), + [sym_subscript_expression] = STATE(2549), + [sym_call_expression] = STATE(2549), + [sym_field_expression] = STATE(2549), + [sym_compound_literal_expression] = STATE(2562), + [sym_parenthesized_expression] = STATE(2549), + [sym_char_literal] = STATE(2344), + [sym_concatenated_string] = STATE(2344), + [sym_string_literal] = STATE(1824), + [sym__class_name] = STATE(6654), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2562), + [sym_co_await_expression] = STATE(2562), + [sym_new_expression] = STATE(2562), + [sym_delete_expression] = STATE(2562), + [sym_requires_clause] = STATE(2562), + [sym_requires_expression] = STATE(2562), + [sym_lambda_expression] = STATE(2562), + [sym_lambda_capture_specifier] = STATE(4787), + [sym_fold_expression] = STATE(2562), + [sym_parameter_pack_expansion] = STATE(2562), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2549), + [sym_qualified_type_identifier] = STATE(6654), + [sym_user_defined_literal] = STATE(2562), + [sym_identifier] = ACTIONS(1697), + [anon_sym_LPAREN2] = ACTIONS(1701), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1703), + [anon_sym_PLUS] = ACTIONS(1703), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(3893), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(1703), + [anon_sym_compl] = ACTIONS(1703), + [anon_sym_DASH_DASH] = ACTIONS(1717), + [anon_sym_PLUS_PLUS] = ACTIONS(1717), + [anon_sym_sizeof] = ACTIONS(1719), + [sym_number_literal] = ACTIONS(1721), + [anon_sym_L_SQUOTE] = ACTIONS(1723), + [anon_sym_u_SQUOTE] = ACTIONS(1723), + [anon_sym_U_SQUOTE] = ACTIONS(1723), + [anon_sym_u8_SQUOTE] = ACTIONS(1723), + [anon_sym_SQUOTE] = ACTIONS(1723), + [anon_sym_L_DQUOTE] = ACTIONS(1725), + [anon_sym_u_DQUOTE] = ACTIONS(1725), + [anon_sym_U_DQUOTE] = ACTIONS(1725), + [anon_sym_u8_DQUOTE] = ACTIONS(1725), + [anon_sym_DQUOTE] = ACTIONS(1725), + [sym_true] = ACTIONS(1727), + [sym_false] = ACTIONS(1727), + [sym_null] = ACTIONS(1727), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1729), + [anon_sym_co_await] = ACTIONS(1731), + [anon_sym_new] = ACTIONS(1733), + [anon_sym_requires] = ACTIONS(1735), + [sym_this] = ACTIONS(1727), + [sym_nullptr] = ACTIONS(1727), + [sym_raw_string_literal] = ACTIONS(1737), + }, + [1668] = { + [sym__expression] = STATE(3817), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1669] = { + [sym__expression] = STATE(3738), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3001), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3001), + [sym_call_expression] = STATE(3001), + [sym_field_expression] = STATE(3001), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3001), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3001), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3085), + [anon_sym_LPAREN2] = ACTIONS(3087), + [anon_sym_BANG] = ACTIONS(3091), + [anon_sym_TILDE] = ACTIONS(3091), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_LBRACK] = ACTIONS(3895), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3089), + [anon_sym_compl] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3095), + [anon_sym_PLUS_PLUS] = ACTIONS(3095), + [anon_sym_sizeof] = ACTIONS(3097), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3099), + [anon_sym_co_await] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1670] = { + [sym__expression] = STATE(2980), + [sym_conditional_expression] = STATE(2562), + [sym_assignment_expression] = STATE(2562), + [sym_pointer_expression] = STATE(2549), + [sym_unary_expression] = STATE(2562), + [sym_binary_expression] = STATE(2562), + [sym_update_expression] = STATE(2562), + [sym_cast_expression] = STATE(2562), + [sym_sizeof_expression] = STATE(2562), + [sym_subscript_expression] = STATE(2549), + [sym_call_expression] = STATE(2549), + [sym_field_expression] = STATE(2549), + [sym_compound_literal_expression] = STATE(2562), + [sym_parenthesized_expression] = STATE(2549), + [sym_char_literal] = STATE(2344), + [sym_concatenated_string] = STATE(2344), + [sym_string_literal] = STATE(1824), + [sym__class_name] = STATE(6654), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2562), + [sym_co_await_expression] = STATE(2562), + [sym_new_expression] = STATE(2562), + [sym_delete_expression] = STATE(2562), + [sym_requires_clause] = STATE(2562), + [sym_requires_expression] = STATE(2562), + [sym_lambda_expression] = STATE(2562), + [sym_lambda_capture_specifier] = STATE(4787), + [sym_fold_expression] = STATE(2562), + [sym_parameter_pack_expansion] = STATE(2562), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2549), + [sym_qualified_type_identifier] = STATE(6654), + [sym_user_defined_literal] = STATE(2562), + [sym_identifier] = ACTIONS(1697), + [anon_sym_LPAREN2] = ACTIONS(1961), + [anon_sym_BANG] = ACTIONS(1965), + [anon_sym_TILDE] = ACTIONS(1965), + [anon_sym_DASH] = ACTIONS(1963), + [anon_sym_PLUS] = ACTIONS(1963), + [anon_sym_STAR] = ACTIONS(3117), + [anon_sym_AMP] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(1969), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(1963), + [anon_sym_compl] = ACTIONS(1963), + [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PLUS_PLUS] = ACTIONS(1971), + [anon_sym_sizeof] = ACTIONS(1973), + [sym_number_literal] = ACTIONS(1721), + [anon_sym_L_SQUOTE] = ACTIONS(1723), + [anon_sym_u_SQUOTE] = ACTIONS(1723), + [anon_sym_U_SQUOTE] = ACTIONS(1723), + [anon_sym_u8_SQUOTE] = ACTIONS(1723), + [anon_sym_SQUOTE] = ACTIONS(1723), + [anon_sym_L_DQUOTE] = ACTIONS(1725), + [anon_sym_u_DQUOTE] = ACTIONS(1725), + [anon_sym_U_DQUOTE] = ACTIONS(1725), + [anon_sym_u8_DQUOTE] = ACTIONS(1725), + [anon_sym_DQUOTE] = ACTIONS(1725), + [sym_true] = ACTIONS(1727), + [sym_false] = ACTIONS(1727), + [sym_null] = ACTIONS(1727), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1975), + [anon_sym_co_await] = ACTIONS(1977), + [anon_sym_new] = ACTIONS(1979), + [anon_sym_requires] = ACTIONS(1735), + [sym_this] = ACTIONS(1727), + [sym_nullptr] = ACTIONS(1727), + [sym_raw_string_literal] = ACTIONS(1737), + }, + [1671] = { + [sym__expression] = STATE(3043), + [sym_conditional_expression] = STATE(3135), + [sym_assignment_expression] = STATE(3135), + [sym_pointer_expression] = STATE(2788), + [sym_unary_expression] = STATE(3135), + [sym_binary_expression] = STATE(3135), + [sym_update_expression] = STATE(3135), + [sym_cast_expression] = STATE(3135), + [sym_sizeof_expression] = STATE(3135), + [sym_subscript_expression] = STATE(2788), + [sym_call_expression] = STATE(2788), + [sym_field_expression] = STATE(2788), + [sym_compound_literal_expression] = STATE(3135), + [sym_parenthesized_expression] = STATE(2788), + [sym_char_literal] = STATE(2981), + [sym_concatenated_string] = STATE(2981), + [sym_string_literal] = STATE(1970), + [sym__class_name] = STATE(6450), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3135), + [sym_co_await_expression] = STATE(3135), + [sym_new_expression] = STATE(3135), + [sym_delete_expression] = STATE(3135), + [sym_requires_clause] = STATE(3135), + [sym_requires_expression] = STATE(3135), + [sym_lambda_expression] = STATE(3135), + [sym_lambda_capture_specifier] = STATE(4771), + [sym_fold_expression] = STATE(3135), + [sym_parameter_pack_expansion] = STATE(3135), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4904), + [sym_qualified_identifier] = STATE(2788), + [sym_qualified_type_identifier] = STATE(6450), + [sym_user_defined_literal] = STATE(3135), + [sym_identifier] = ACTIONS(1957), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1753), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_co_await] = ACTIONS(1455), + [anon_sym_new] = ACTIONS(1457), + [anon_sym_requires] = ACTIONS(1459), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + [sym_raw_string_literal] = ACTIONS(1461), + }, + [1672] = { + [sym__expression] = STATE(2938), + [sym_conditional_expression] = STATE(2999), + [sym_assignment_expression] = STATE(2999), + [sym_pointer_expression] = STATE(2973), + [sym_unary_expression] = STATE(2999), + [sym_binary_expression] = STATE(2999), + [sym_update_expression] = STATE(2999), + [sym_cast_expression] = STATE(2999), + [sym_sizeof_expression] = STATE(2999), + [sym_subscript_expression] = STATE(2973), + [sym_call_expression] = STATE(2973), + [sym_field_expression] = STATE(2973), + [sym_compound_literal_expression] = STATE(2999), + [sym_parenthesized_expression] = STATE(2973), + [sym_char_literal] = STATE(2933), + [sym_concatenated_string] = STATE(2933), + [sym_string_literal] = STATE(1927), + [sym__class_name] = STATE(6445), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2999), + [sym_co_await_expression] = STATE(2999), + [sym_new_expression] = STATE(2999), + [sym_delete_expression] = STATE(2999), + [sym_requires_clause] = STATE(2999), + [sym_requires_expression] = STATE(2999), + [sym_lambda_expression] = STATE(2999), + [sym_lambda_capture_specifier] = STATE(4767), + [sym_fold_expression] = STATE(2999), + [sym_parameter_pack_expansion] = STATE(2999), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2973), + [sym_qualified_type_identifier] = STATE(6445), + [sym_user_defined_literal] = STATE(2999), + [sym_identifier] = ACTIONS(1919), + [anon_sym_LPAREN2] = ACTIONS(1921), + [anon_sym_BANG] = ACTIONS(1925), + [anon_sym_TILDE] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1923), + [anon_sym_PLUS] = ACTIONS(1923), + [anon_sym_STAR] = ACTIONS(2671), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_COLON_COLON] = ACTIONS(1929), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1933), + [anon_sym_not] = ACTIONS(1923), + [anon_sym_compl] = ACTIONS(1923), + [anon_sym_DASH_DASH] = ACTIONS(1935), + [anon_sym_PLUS_PLUS] = ACTIONS(1935), + [anon_sym_sizeof] = ACTIONS(1937), + [sym_number_literal] = ACTIONS(1939), + [anon_sym_L_SQUOTE] = ACTIONS(1941), + [anon_sym_u_SQUOTE] = ACTIONS(1941), + [anon_sym_U_SQUOTE] = ACTIONS(1941), + [anon_sym_u8_SQUOTE] = ACTIONS(1941), + [anon_sym_SQUOTE] = ACTIONS(1941), + [anon_sym_L_DQUOTE] = ACTIONS(1943), + [anon_sym_u_DQUOTE] = ACTIONS(1943), + [anon_sym_U_DQUOTE] = ACTIONS(1943), + [anon_sym_u8_DQUOTE] = ACTIONS(1943), + [anon_sym_DQUOTE] = ACTIONS(1943), + [sym_true] = ACTIONS(1945), + [sym_false] = ACTIONS(1945), + [sym_null] = ACTIONS(1945), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1947), + [anon_sym_co_await] = ACTIONS(1949), + [anon_sym_new] = ACTIONS(1951), + [anon_sym_requires] = ACTIONS(1953), + [sym_this] = ACTIONS(1945), + [sym_nullptr] = ACTIONS(1945), + [sym_raw_string_literal] = ACTIONS(1955), + }, + [1673] = { + [sym__expression] = STATE(3522), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3001), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3001), + [sym_call_expression] = STATE(3001), + [sym_field_expression] = STATE(3001), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3001), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3001), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3085), + [anon_sym_LPAREN2] = ACTIONS(3087), + [anon_sym_BANG] = ACTIONS(3091), + [anon_sym_TILDE] = ACTIONS(3091), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3089), + [anon_sym_compl] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3095), + [anon_sym_PLUS_PLUS] = ACTIONS(3095), + [anon_sym_sizeof] = ACTIONS(3097), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3099), + [anon_sym_co_await] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1674] = { + [sym__expression] = STATE(3649), + [sym_conditional_expression] = STATE(3865), + [sym_assignment_expression] = STATE(3865), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3865), + [sym_binary_expression] = STATE(3865), + [sym_update_expression] = STATE(3865), + [sym_cast_expression] = STATE(3865), + [sym_sizeof_expression] = STATE(3865), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3865), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3707), + [sym_concatenated_string] = STATE(3707), + [sym_string_literal] = STATE(3250), + [sym__class_name] = STATE(6539), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3865), + [sym_co_await_expression] = STATE(3865), + [sym_new_expression] = STATE(3865), + [sym_delete_expression] = STATE(3865), + [sym_requires_clause] = STATE(3865), + [sym_requires_expression] = STATE(3865), + [sym_lambda_expression] = STATE(3865), + [sym_lambda_capture_specifier] = STATE(4789), + [sym_fold_expression] = STATE(3865), + [sym_parameter_pack_expansion] = STATE(3865), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(6539), + [sym_user_defined_literal] = STATE(3865), + [sym_identifier] = ACTIONS(3105), + [anon_sym_LPAREN2] = ACTIONS(2665), + [anon_sym_BANG] = ACTIONS(2667), + [anon_sym_TILDE] = ACTIONS(2667), + [anon_sym_DASH] = ACTIONS(2669), + [anon_sym_PLUS] = ACTIONS(2669), + [anon_sym_STAR] = ACTIONS(2671), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_COLON_COLON] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1933), + [anon_sym_not] = ACTIONS(2669), + [anon_sym_compl] = ACTIONS(2669), + [anon_sym_DASH_DASH] = ACTIONS(2687), + [anon_sym_PLUS_PLUS] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2689), + [sym_number_literal] = ACTIONS(2691), + [anon_sym_L_SQUOTE] = ACTIONS(2693), + [anon_sym_u_SQUOTE] = ACTIONS(2693), + [anon_sym_U_SQUOTE] = ACTIONS(2693), + [anon_sym_u8_SQUOTE] = ACTIONS(2693), + [anon_sym_SQUOTE] = ACTIONS(2693), + [anon_sym_L_DQUOTE] = ACTIONS(2695), + [anon_sym_u_DQUOTE] = ACTIONS(2695), + [anon_sym_U_DQUOTE] = ACTIONS(2695), + [anon_sym_u8_DQUOTE] = ACTIONS(2695), + [anon_sym_DQUOTE] = ACTIONS(2695), + [sym_true] = ACTIONS(2697), + [sym_false] = ACTIONS(2697), + [sym_null] = ACTIONS(2697), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(2707), + [anon_sym_co_await] = ACTIONS(2709), + [anon_sym_new] = ACTIONS(2711), + [anon_sym_requires] = ACTIONS(2713), + [sym_this] = ACTIONS(2697), + [sym_nullptr] = ACTIONS(2697), + [sym_raw_string_literal] = ACTIONS(2715), + }, + [1675] = { + [sym__expression] = STATE(2939), + [sym_conditional_expression] = STATE(2999), + [sym_assignment_expression] = STATE(2999), + [sym_pointer_expression] = STATE(2973), + [sym_unary_expression] = STATE(2999), + [sym_binary_expression] = STATE(2999), + [sym_update_expression] = STATE(2999), + [sym_cast_expression] = STATE(2999), + [sym_sizeof_expression] = STATE(2999), + [sym_subscript_expression] = STATE(2973), + [sym_call_expression] = STATE(2973), + [sym_field_expression] = STATE(2973), + [sym_compound_literal_expression] = STATE(2999), + [sym_parenthesized_expression] = STATE(2973), + [sym_char_literal] = STATE(2933), + [sym_concatenated_string] = STATE(2933), + [sym_string_literal] = STATE(1927), + [sym__class_name] = STATE(6445), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2999), + [sym_co_await_expression] = STATE(2999), + [sym_new_expression] = STATE(2999), + [sym_delete_expression] = STATE(2999), + [sym_requires_clause] = STATE(2999), + [sym_requires_expression] = STATE(2999), + [sym_lambda_expression] = STATE(2999), + [sym_lambda_capture_specifier] = STATE(4767), + [sym_fold_expression] = STATE(2999), + [sym_parameter_pack_expansion] = STATE(2999), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2973), + [sym_qualified_type_identifier] = STATE(6445), + [sym_user_defined_literal] = STATE(2999), + [sym_identifier] = ACTIONS(1919), + [anon_sym_LPAREN2] = ACTIONS(1921), + [anon_sym_BANG] = ACTIONS(1925), + [anon_sym_TILDE] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1923), + [anon_sym_PLUS] = ACTIONS(1923), + [anon_sym_STAR] = ACTIONS(2671), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_COLON_COLON] = ACTIONS(1929), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1933), + [anon_sym_not] = ACTIONS(1923), + [anon_sym_compl] = ACTIONS(1923), + [anon_sym_DASH_DASH] = ACTIONS(1935), + [anon_sym_PLUS_PLUS] = ACTIONS(1935), + [anon_sym_sizeof] = ACTIONS(1937), + [sym_number_literal] = ACTIONS(1939), + [anon_sym_L_SQUOTE] = ACTIONS(1941), + [anon_sym_u_SQUOTE] = ACTIONS(1941), + [anon_sym_U_SQUOTE] = ACTIONS(1941), + [anon_sym_u8_SQUOTE] = ACTIONS(1941), + [anon_sym_SQUOTE] = ACTIONS(1941), + [anon_sym_L_DQUOTE] = ACTIONS(1943), + [anon_sym_u_DQUOTE] = ACTIONS(1943), + [anon_sym_U_DQUOTE] = ACTIONS(1943), + [anon_sym_u8_DQUOTE] = ACTIONS(1943), + [anon_sym_DQUOTE] = ACTIONS(1943), + [sym_true] = ACTIONS(1945), + [sym_false] = ACTIONS(1945), + [sym_null] = ACTIONS(1945), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1947), + [anon_sym_co_await] = ACTIONS(1949), + [anon_sym_new] = ACTIONS(1951), + [anon_sym_requires] = ACTIONS(1953), + [sym_this] = ACTIONS(1945), + [sym_nullptr] = ACTIONS(1945), + [sym_raw_string_literal] = ACTIONS(1955), + }, + [1676] = { + [sym__expression] = STATE(2545), + [sym_conditional_expression] = STATE(2562), + [sym_assignment_expression] = STATE(2562), + [sym_pointer_expression] = STATE(2549), + [sym_unary_expression] = STATE(2562), + [sym_binary_expression] = STATE(2562), + [sym_update_expression] = STATE(2562), + [sym_cast_expression] = STATE(2562), + [sym_sizeof_expression] = STATE(2562), + [sym_subscript_expression] = STATE(2549), + [sym_call_expression] = STATE(2549), + [sym_field_expression] = STATE(2549), + [sym_compound_literal_expression] = STATE(2562), + [sym_parenthesized_expression] = STATE(2549), + [sym_char_literal] = STATE(2344), + [sym_concatenated_string] = STATE(2344), + [sym_string_literal] = STATE(1824), + [sym__class_name] = STATE(6654), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2562), + [sym_co_await_expression] = STATE(2562), + [sym_new_expression] = STATE(2562), + [sym_delete_expression] = STATE(2562), + [sym_requires_clause] = STATE(2562), + [sym_requires_expression] = STATE(2562), + [sym_lambda_expression] = STATE(2562), + [sym_lambda_capture_specifier] = STATE(4787), + [sym_fold_expression] = STATE(2562), + [sym_parameter_pack_expansion] = STATE(2562), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2549), + [sym_qualified_type_identifier] = STATE(6654), + [sym_user_defined_literal] = STATE(2562), + [sym_identifier] = ACTIONS(1697), + [anon_sym_LPAREN2] = ACTIONS(1701), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1703), + [anon_sym_PLUS] = ACTIONS(1703), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(1703), + [anon_sym_compl] = ACTIONS(1703), + [anon_sym_DASH_DASH] = ACTIONS(1717), + [anon_sym_PLUS_PLUS] = ACTIONS(1717), + [anon_sym_sizeof] = ACTIONS(1719), + [sym_number_literal] = ACTIONS(1721), + [anon_sym_L_SQUOTE] = ACTIONS(1723), + [anon_sym_u_SQUOTE] = ACTIONS(1723), + [anon_sym_U_SQUOTE] = ACTIONS(1723), + [anon_sym_u8_SQUOTE] = ACTIONS(1723), + [anon_sym_SQUOTE] = ACTIONS(1723), + [anon_sym_L_DQUOTE] = ACTIONS(1725), + [anon_sym_u_DQUOTE] = ACTIONS(1725), + [anon_sym_U_DQUOTE] = ACTIONS(1725), + [anon_sym_u8_DQUOTE] = ACTIONS(1725), + [anon_sym_DQUOTE] = ACTIONS(1725), + [sym_true] = ACTIONS(1727), + [sym_false] = ACTIONS(1727), + [sym_null] = ACTIONS(1727), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1729), + [anon_sym_co_await] = ACTIONS(1731), + [anon_sym_new] = ACTIONS(1733), + [anon_sym_requires] = ACTIONS(1735), + [sym_this] = ACTIONS(1727), + [sym_nullptr] = ACTIONS(1727), + [sym_raw_string_literal] = ACTIONS(1737), + }, + [1677] = { + [sym__expression] = STATE(3529), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3001), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3001), + [sym_call_expression] = STATE(3001), + [sym_field_expression] = STATE(3001), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3001), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3001), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3085), + [anon_sym_LPAREN2] = ACTIONS(3087), + [anon_sym_BANG] = ACTIONS(3091), + [anon_sym_TILDE] = ACTIONS(3091), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3089), + [anon_sym_compl] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3095), + [anon_sym_PLUS_PLUS] = ACTIONS(3095), + [anon_sym_sizeof] = ACTIONS(3097), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3099), + [anon_sym_co_await] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1678] = { + [sym__expression] = STATE(3658), + [sym_conditional_expression] = STATE(3865), + [sym_assignment_expression] = STATE(3865), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3865), + [sym_binary_expression] = STATE(3865), + [sym_update_expression] = STATE(3865), + [sym_cast_expression] = STATE(3865), + [sym_sizeof_expression] = STATE(3865), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3865), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3707), + [sym_concatenated_string] = STATE(3707), + [sym_string_literal] = STATE(3250), + [sym__class_name] = STATE(6539), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3865), + [sym_co_await_expression] = STATE(3865), + [sym_new_expression] = STATE(3865), + [sym_delete_expression] = STATE(3865), + [sym_requires_clause] = STATE(3865), + [sym_requires_expression] = STATE(3865), + [sym_lambda_expression] = STATE(3865), + [sym_lambda_capture_specifier] = STATE(4789), + [sym_fold_expression] = STATE(3865), + [sym_parameter_pack_expansion] = STATE(3865), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(6539), + [sym_user_defined_literal] = STATE(3865), + [sym_identifier] = ACTIONS(3105), + [anon_sym_LPAREN2] = ACTIONS(2665), + [anon_sym_BANG] = ACTIONS(2667), + [anon_sym_TILDE] = ACTIONS(2667), + [anon_sym_DASH] = ACTIONS(2669), + [anon_sym_PLUS] = ACTIONS(2669), + [anon_sym_STAR] = ACTIONS(2671), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_COLON_COLON] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1933), + [anon_sym_not] = ACTIONS(2669), + [anon_sym_compl] = ACTIONS(2669), + [anon_sym_DASH_DASH] = ACTIONS(2687), + [anon_sym_PLUS_PLUS] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2689), + [sym_number_literal] = ACTIONS(2691), + [anon_sym_L_SQUOTE] = ACTIONS(2693), + [anon_sym_u_SQUOTE] = ACTIONS(2693), + [anon_sym_U_SQUOTE] = ACTIONS(2693), + [anon_sym_u8_SQUOTE] = ACTIONS(2693), + [anon_sym_SQUOTE] = ACTIONS(2693), + [anon_sym_L_DQUOTE] = ACTIONS(2695), + [anon_sym_u_DQUOTE] = ACTIONS(2695), + [anon_sym_U_DQUOTE] = ACTIONS(2695), + [anon_sym_u8_DQUOTE] = ACTIONS(2695), + [anon_sym_DQUOTE] = ACTIONS(2695), + [sym_true] = ACTIONS(2697), + [sym_false] = ACTIONS(2697), + [sym_null] = ACTIONS(2697), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(2707), + [anon_sym_co_await] = ACTIONS(2709), + [anon_sym_new] = ACTIONS(2711), + [anon_sym_requires] = ACTIONS(2713), + [sym_this] = ACTIONS(2697), + [sym_nullptr] = ACTIONS(2697), + [sym_raw_string_literal] = ACTIONS(2715), + }, + [1679] = { + [sym__expression] = STATE(3643), + [sym_conditional_expression] = STATE(3865), + [sym_assignment_expression] = STATE(3865), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3865), + [sym_binary_expression] = STATE(3865), + [sym_update_expression] = STATE(3865), + [sym_cast_expression] = STATE(3865), + [sym_sizeof_expression] = STATE(3865), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3865), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3707), + [sym_concatenated_string] = STATE(3707), + [sym_string_literal] = STATE(3250), + [sym__class_name] = STATE(6539), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3865), + [sym_co_await_expression] = STATE(3865), + [sym_new_expression] = STATE(3865), + [sym_delete_expression] = STATE(3865), + [sym_requires_clause] = STATE(3865), + [sym_requires_expression] = STATE(3865), + [sym_lambda_expression] = STATE(3865), + [sym_lambda_capture_specifier] = STATE(4789), + [sym_fold_expression] = STATE(3865), + [sym_parameter_pack_expansion] = STATE(3865), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(6539), + [sym_user_defined_literal] = STATE(3865), + [sym_identifier] = ACTIONS(3105), + [anon_sym_LPAREN2] = ACTIONS(2665), + [anon_sym_BANG] = ACTIONS(2667), + [anon_sym_TILDE] = ACTIONS(2667), + [anon_sym_DASH] = ACTIONS(2669), + [anon_sym_PLUS] = ACTIONS(2669), + [anon_sym_STAR] = ACTIONS(2671), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_COLON_COLON] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1933), + [anon_sym_not] = ACTIONS(2669), + [anon_sym_compl] = ACTIONS(2669), + [anon_sym_DASH_DASH] = ACTIONS(2687), + [anon_sym_PLUS_PLUS] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2689), + [sym_number_literal] = ACTIONS(2691), + [anon_sym_L_SQUOTE] = ACTIONS(2693), + [anon_sym_u_SQUOTE] = ACTIONS(2693), + [anon_sym_U_SQUOTE] = ACTIONS(2693), + [anon_sym_u8_SQUOTE] = ACTIONS(2693), + [anon_sym_SQUOTE] = ACTIONS(2693), + [anon_sym_L_DQUOTE] = ACTIONS(2695), + [anon_sym_u_DQUOTE] = ACTIONS(2695), + [anon_sym_U_DQUOTE] = ACTIONS(2695), + [anon_sym_u8_DQUOTE] = ACTIONS(2695), + [anon_sym_DQUOTE] = ACTIONS(2695), + [sym_true] = ACTIONS(2697), + [sym_false] = ACTIONS(2697), + [sym_null] = ACTIONS(2697), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(2707), + [anon_sym_co_await] = ACTIONS(2709), + [anon_sym_new] = ACTIONS(2711), + [anon_sym_requires] = ACTIONS(2713), + [sym_this] = ACTIONS(2697), + [sym_nullptr] = ACTIONS(2697), + [sym_raw_string_literal] = ACTIONS(2715), + }, + [1680] = { + [sym__expression] = STATE(3991), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1681] = { + [sym__expression] = STATE(3017), + [sym_conditional_expression] = STATE(3135), + [sym_assignment_expression] = STATE(3135), + [sym_pointer_expression] = STATE(2788), + [sym_unary_expression] = STATE(3135), + [sym_binary_expression] = STATE(3135), + [sym_update_expression] = STATE(3135), + [sym_cast_expression] = STATE(3135), + [sym_sizeof_expression] = STATE(3135), + [sym_subscript_expression] = STATE(2788), + [sym_call_expression] = STATE(2788), + [sym_field_expression] = STATE(2788), + [sym_compound_literal_expression] = STATE(3135), + [sym_parenthesized_expression] = STATE(2788), + [sym_char_literal] = STATE(2981), + [sym_concatenated_string] = STATE(2981), + [sym_string_literal] = STATE(1970), + [sym__class_name] = STATE(6450), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3135), + [sym_co_await_expression] = STATE(3135), + [sym_new_expression] = STATE(3135), + [sym_delete_expression] = STATE(3135), + [sym_requires_clause] = STATE(3135), + [sym_requires_expression] = STATE(3135), + [sym_lambda_expression] = STATE(3135), + [sym_lambda_capture_specifier] = STATE(4771), + [sym_fold_expression] = STATE(3135), + [sym_parameter_pack_expansion] = STATE(3135), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4904), + [sym_qualified_identifier] = STATE(2788), + [sym_qualified_type_identifier] = STATE(6450), + [sym_user_defined_literal] = STATE(3135), + [sym_identifier] = ACTIONS(3897), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1753), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_co_await] = ACTIONS(1455), + [anon_sym_new] = ACTIONS(1457), + [anon_sym_requires] = ACTIONS(1459), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + [sym_raw_string_literal] = ACTIONS(1461), + }, + [1682] = { + [sym__expression] = STATE(3017), + [sym_conditional_expression] = STATE(3135), + [sym_assignment_expression] = STATE(3135), + [sym_pointer_expression] = STATE(2788), + [sym_unary_expression] = STATE(3135), + [sym_binary_expression] = STATE(3135), + [sym_update_expression] = STATE(3135), + [sym_cast_expression] = STATE(3135), + [sym_sizeof_expression] = STATE(3135), + [sym_subscript_expression] = STATE(2788), + [sym_call_expression] = STATE(2788), + [sym_field_expression] = STATE(2788), + [sym_compound_literal_expression] = STATE(3135), + [sym_parenthesized_expression] = STATE(2788), + [sym_char_literal] = STATE(2981), + [sym_concatenated_string] = STATE(2981), + [sym_string_literal] = STATE(1970), + [sym__class_name] = STATE(6450), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3135), + [sym_co_await_expression] = STATE(3135), + [sym_new_expression] = STATE(3135), + [sym_delete_expression] = STATE(3135), + [sym_requires_clause] = STATE(3135), + [sym_requires_expression] = STATE(3135), + [sym_lambda_expression] = STATE(3135), + [sym_lambda_capture_specifier] = STATE(4771), + [sym_fold_expression] = STATE(3135), + [sym_parameter_pack_expansion] = STATE(3135), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4904), + [sym_qualified_identifier] = STATE(2788), + [sym_qualified_type_identifier] = STATE(6450), + [sym_user_defined_literal] = STATE(3135), + [sym_identifier] = ACTIONS(1957), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1753), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_co_await] = ACTIONS(1455), + [anon_sym_new] = ACTIONS(1457), + [anon_sym_requires] = ACTIONS(1459), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + [sym_raw_string_literal] = ACTIONS(1461), + }, + [1683] = { + [sym__expression] = STATE(3667), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3001), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3001), + [sym_call_expression] = STATE(3001), + [sym_field_expression] = STATE(3001), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3001), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3001), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3085), + [anon_sym_LPAREN2] = ACTIONS(3087), + [anon_sym_BANG] = ACTIONS(3091), + [anon_sym_TILDE] = ACTIONS(3091), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_LBRACK] = ACTIONS(3899), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3089), + [anon_sym_compl] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3095), + [anon_sym_PLUS_PLUS] = ACTIONS(3095), + [anon_sym_sizeof] = ACTIONS(3097), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3099), + [anon_sym_co_await] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1684] = { + [sym__expression] = STATE(3909), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3121), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3121), + [sym_call_expression] = STATE(3121), + [sym_field_expression] = STATE(3121), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3121), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3121), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3109), + [anon_sym_LPAREN2] = ACTIONS(3111), + [anon_sym_BANG] = ACTIONS(3115), + [anon_sym_TILDE] = ACTIONS(3115), + [anon_sym_DASH] = ACTIONS(3113), + [anon_sym_PLUS] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(3117), + [anon_sym_AMP] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(3119), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3113), + [anon_sym_compl] = ACTIONS(3113), + [anon_sym_DASH_DASH] = ACTIONS(3121), + [anon_sym_PLUS_PLUS] = ACTIONS(3121), + [anon_sym_sizeof] = ACTIONS(3123), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3125), + [anon_sym_co_await] = ACTIONS(3127), + [anon_sym_new] = ACTIONS(3129), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1685] = { + [sym__expression] = STATE(3661), + [sym_conditional_expression] = STATE(3865), + [sym_assignment_expression] = STATE(3865), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3865), + [sym_binary_expression] = STATE(3865), + [sym_update_expression] = STATE(3865), + [sym_cast_expression] = STATE(3865), + [sym_sizeof_expression] = STATE(3865), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3865), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3707), + [sym_concatenated_string] = STATE(3707), + [sym_string_literal] = STATE(3250), + [sym__class_name] = STATE(6539), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3865), + [sym_co_await_expression] = STATE(3865), + [sym_new_expression] = STATE(3865), + [sym_delete_expression] = STATE(3865), + [sym_requires_clause] = STATE(3865), + [sym_requires_expression] = STATE(3865), + [sym_lambda_expression] = STATE(3865), + [sym_lambda_capture_specifier] = STATE(4789), + [sym_fold_expression] = STATE(3865), + [sym_parameter_pack_expansion] = STATE(3865), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(6539), + [sym_user_defined_literal] = STATE(3865), + [sym_identifier] = ACTIONS(3105), + [anon_sym_LPAREN2] = ACTIONS(2665), + [anon_sym_BANG] = ACTIONS(2667), + [anon_sym_TILDE] = ACTIONS(2667), + [anon_sym_DASH] = ACTIONS(2669), + [anon_sym_PLUS] = ACTIONS(2669), + [anon_sym_STAR] = ACTIONS(2671), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_COLON_COLON] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1933), + [anon_sym_not] = ACTIONS(2669), + [anon_sym_compl] = ACTIONS(2669), + [anon_sym_DASH_DASH] = ACTIONS(2687), + [anon_sym_PLUS_PLUS] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2689), + [sym_number_literal] = ACTIONS(2691), + [anon_sym_L_SQUOTE] = ACTIONS(2693), + [anon_sym_u_SQUOTE] = ACTIONS(2693), + [anon_sym_U_SQUOTE] = ACTIONS(2693), + [anon_sym_u8_SQUOTE] = ACTIONS(2693), + [anon_sym_SQUOTE] = ACTIONS(2693), + [anon_sym_L_DQUOTE] = ACTIONS(2695), + [anon_sym_u_DQUOTE] = ACTIONS(2695), + [anon_sym_U_DQUOTE] = ACTIONS(2695), + [anon_sym_u8_DQUOTE] = ACTIONS(2695), + [anon_sym_DQUOTE] = ACTIONS(2695), + [sym_true] = ACTIONS(2697), + [sym_false] = ACTIONS(2697), + [sym_null] = ACTIONS(2697), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(2707), + [anon_sym_co_await] = ACTIONS(2709), + [anon_sym_new] = ACTIONS(2711), + [anon_sym_requires] = ACTIONS(2713), + [sym_this] = ACTIONS(2697), + [sym_nullptr] = ACTIONS(2697), + [sym_raw_string_literal] = ACTIONS(2715), + }, + [1686] = { + [sym__expression] = STATE(3579), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1687] = { + [sym__expression] = STATE(3981), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1688] = { + [sym__expression] = STATE(3870), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3001), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3001), + [sym_call_expression] = STATE(3001), + [sym_field_expression] = STATE(3001), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3001), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3001), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3085), + [anon_sym_LPAREN2] = ACTIONS(3087), + [anon_sym_BANG] = ACTIONS(3091), + [anon_sym_TILDE] = ACTIONS(3091), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3089), + [anon_sym_compl] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3095), + [anon_sym_PLUS_PLUS] = ACTIONS(3095), + [anon_sym_sizeof] = ACTIONS(3097), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3099), + [anon_sym_co_await] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1689] = { + [sym__expression] = STATE(3712), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3001), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3001), + [sym_call_expression] = STATE(3001), + [sym_field_expression] = STATE(3001), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3001), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3001), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3085), + [anon_sym_LPAREN2] = ACTIONS(3087), + [anon_sym_BANG] = ACTIONS(3091), + [anon_sym_TILDE] = ACTIONS(3091), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3089), + [anon_sym_compl] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3095), + [anon_sym_PLUS_PLUS] = ACTIONS(3095), + [anon_sym_sizeof] = ACTIONS(3097), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3099), + [anon_sym_co_await] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1690] = { + [sym__expression] = STATE(3437), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3001), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3001), + [sym_call_expression] = STATE(3001), + [sym_field_expression] = STATE(3001), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3001), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3001), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3085), + [anon_sym_LPAREN2] = ACTIONS(3087), + [anon_sym_BANG] = ACTIONS(3091), + [anon_sym_TILDE] = ACTIONS(3091), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3089), + [anon_sym_compl] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3095), + [anon_sym_PLUS_PLUS] = ACTIONS(3095), + [anon_sym_sizeof] = ACTIONS(3097), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3099), + [anon_sym_co_await] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1691] = { + [sym__expression] = STATE(3713), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3001), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3001), + [sym_call_expression] = STATE(3001), + [sym_field_expression] = STATE(3001), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3001), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3001), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3085), + [anon_sym_LPAREN2] = ACTIONS(3087), + [anon_sym_BANG] = ACTIONS(3091), + [anon_sym_TILDE] = ACTIONS(3091), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3089), + [anon_sym_compl] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3095), + [anon_sym_PLUS_PLUS] = ACTIONS(3095), + [anon_sym_sizeof] = ACTIONS(3097), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3099), + [anon_sym_co_await] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1692] = { + [sym__expression] = STATE(3976), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1693] = { + [sym__expression] = STATE(3714), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3001), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3001), + [sym_call_expression] = STATE(3001), + [sym_field_expression] = STATE(3001), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3001), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3001), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3085), + [anon_sym_LPAREN2] = ACTIONS(3087), + [anon_sym_BANG] = ACTIONS(3091), + [anon_sym_TILDE] = ACTIONS(3091), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3089), + [anon_sym_compl] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3095), + [anon_sym_PLUS_PLUS] = ACTIONS(3095), + [anon_sym_sizeof] = ACTIONS(3097), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3099), + [anon_sym_co_await] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1694] = { + [sym__expression] = STATE(3847), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3121), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3121), + [sym_call_expression] = STATE(3121), + [sym_field_expression] = STATE(3121), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3121), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3121), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3109), + [anon_sym_LPAREN2] = ACTIONS(3111), + [anon_sym_BANG] = ACTIONS(3115), + [anon_sym_TILDE] = ACTIONS(3115), + [anon_sym_DASH] = ACTIONS(3113), + [anon_sym_PLUS] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(3117), + [anon_sym_AMP] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(3119), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3113), + [anon_sym_compl] = ACTIONS(3113), + [anon_sym_DASH_DASH] = ACTIONS(3121), + [anon_sym_PLUS_PLUS] = ACTIONS(3121), + [anon_sym_sizeof] = ACTIONS(3123), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3125), + [anon_sym_co_await] = ACTIONS(3127), + [anon_sym_new] = ACTIONS(3129), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1695] = { + [sym__expression] = STATE(3719), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3001), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3001), + [sym_call_expression] = STATE(3001), + [sym_field_expression] = STATE(3001), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3001), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3001), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3085), + [anon_sym_LPAREN2] = ACTIONS(3087), + [anon_sym_BANG] = ACTIONS(3091), + [anon_sym_TILDE] = ACTIONS(3091), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3089), + [anon_sym_compl] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3095), + [anon_sym_PLUS_PLUS] = ACTIONS(3095), + [anon_sym_sizeof] = ACTIONS(3097), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3099), + [anon_sym_co_await] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1696] = { + [sym__expression] = STATE(3723), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3001), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3001), + [sym_call_expression] = STATE(3001), + [sym_field_expression] = STATE(3001), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3001), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3001), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3085), + [anon_sym_LPAREN2] = ACTIONS(3087), + [anon_sym_BANG] = ACTIONS(3091), + [anon_sym_TILDE] = ACTIONS(3091), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3089), + [anon_sym_compl] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3095), + [anon_sym_PLUS_PLUS] = ACTIONS(3095), + [anon_sym_sizeof] = ACTIONS(3097), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3099), + [anon_sym_co_await] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1697] = { + [sym__expression] = STATE(3933), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1698] = { + [sym__expression] = STATE(3672), + [sym_conditional_expression] = STATE(3865), + [sym_assignment_expression] = STATE(3865), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3865), + [sym_binary_expression] = STATE(3865), + [sym_update_expression] = STATE(3865), + [sym_cast_expression] = STATE(3865), + [sym_sizeof_expression] = STATE(3865), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3865), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3707), + [sym_concatenated_string] = STATE(3707), + [sym_string_literal] = STATE(3250), + [sym__class_name] = STATE(6539), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3865), + [sym_co_await_expression] = STATE(3865), + [sym_new_expression] = STATE(3865), + [sym_delete_expression] = STATE(3865), + [sym_requires_clause] = STATE(3865), + [sym_requires_expression] = STATE(3865), + [sym_lambda_expression] = STATE(3865), + [sym_lambda_capture_specifier] = STATE(4789), + [sym_fold_expression] = STATE(3865), + [sym_parameter_pack_expansion] = STATE(3865), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(6539), + [sym_user_defined_literal] = STATE(3865), + [sym_identifier] = ACTIONS(3105), + [anon_sym_LPAREN2] = ACTIONS(2665), + [anon_sym_BANG] = ACTIONS(2667), + [anon_sym_TILDE] = ACTIONS(2667), + [anon_sym_DASH] = ACTIONS(2669), + [anon_sym_PLUS] = ACTIONS(2669), + [anon_sym_STAR] = ACTIONS(2671), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_COLON_COLON] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1933), + [anon_sym_not] = ACTIONS(2669), + [anon_sym_compl] = ACTIONS(2669), + [anon_sym_DASH_DASH] = ACTIONS(2687), + [anon_sym_PLUS_PLUS] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2689), + [sym_number_literal] = ACTIONS(2691), + [anon_sym_L_SQUOTE] = ACTIONS(2693), + [anon_sym_u_SQUOTE] = ACTIONS(2693), + [anon_sym_U_SQUOTE] = ACTIONS(2693), + [anon_sym_u8_SQUOTE] = ACTIONS(2693), + [anon_sym_SQUOTE] = ACTIONS(2693), + [anon_sym_L_DQUOTE] = ACTIONS(2695), + [anon_sym_u_DQUOTE] = ACTIONS(2695), + [anon_sym_U_DQUOTE] = ACTIONS(2695), + [anon_sym_u8_DQUOTE] = ACTIONS(2695), + [anon_sym_DQUOTE] = ACTIONS(2695), + [sym_true] = ACTIONS(2697), + [sym_false] = ACTIONS(2697), + [sym_null] = ACTIONS(2697), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(2707), + [anon_sym_co_await] = ACTIONS(2709), + [anon_sym_new] = ACTIONS(2711), + [anon_sym_requires] = ACTIONS(2713), + [sym_this] = ACTIONS(2697), + [sym_nullptr] = ACTIONS(2697), + [sym_raw_string_literal] = ACTIONS(2715), + }, + [1699] = { + [sym__expression] = STATE(3673), + [sym_conditional_expression] = STATE(3865), + [sym_assignment_expression] = STATE(3865), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3865), + [sym_binary_expression] = STATE(3865), + [sym_update_expression] = STATE(3865), + [sym_cast_expression] = STATE(3865), + [sym_sizeof_expression] = STATE(3865), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3865), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3707), + [sym_concatenated_string] = STATE(3707), + [sym_string_literal] = STATE(3250), + [sym__class_name] = STATE(6539), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3865), + [sym_co_await_expression] = STATE(3865), + [sym_new_expression] = STATE(3865), + [sym_delete_expression] = STATE(3865), + [sym_requires_clause] = STATE(3865), + [sym_requires_expression] = STATE(3865), + [sym_lambda_expression] = STATE(3865), + [sym_lambda_capture_specifier] = STATE(4789), + [sym_fold_expression] = STATE(3865), + [sym_parameter_pack_expansion] = STATE(3865), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(6539), + [sym_user_defined_literal] = STATE(3865), + [sym_identifier] = ACTIONS(3105), + [anon_sym_LPAREN2] = ACTIONS(2665), + [anon_sym_BANG] = ACTIONS(2667), + [anon_sym_TILDE] = ACTIONS(2667), + [anon_sym_DASH] = ACTIONS(2669), + [anon_sym_PLUS] = ACTIONS(2669), + [anon_sym_STAR] = ACTIONS(2671), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_COLON_COLON] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1933), + [anon_sym_not] = ACTIONS(2669), + [anon_sym_compl] = ACTIONS(2669), + [anon_sym_DASH_DASH] = ACTIONS(2687), + [anon_sym_PLUS_PLUS] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2689), + [sym_number_literal] = ACTIONS(2691), + [anon_sym_L_SQUOTE] = ACTIONS(2693), + [anon_sym_u_SQUOTE] = ACTIONS(2693), + [anon_sym_U_SQUOTE] = ACTIONS(2693), + [anon_sym_u8_SQUOTE] = ACTIONS(2693), + [anon_sym_SQUOTE] = ACTIONS(2693), + [anon_sym_L_DQUOTE] = ACTIONS(2695), + [anon_sym_u_DQUOTE] = ACTIONS(2695), + [anon_sym_U_DQUOTE] = ACTIONS(2695), + [anon_sym_u8_DQUOTE] = ACTIONS(2695), + [anon_sym_DQUOTE] = ACTIONS(2695), + [sym_true] = ACTIONS(2697), + [sym_false] = ACTIONS(2697), + [sym_null] = ACTIONS(2697), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(2707), + [anon_sym_co_await] = ACTIONS(2709), + [anon_sym_new] = ACTIONS(2711), + [anon_sym_requires] = ACTIONS(2713), + [sym_this] = ACTIONS(2697), + [sym_nullptr] = ACTIONS(2697), + [sym_raw_string_literal] = ACTIONS(2715), + }, + [1700] = { + [sym__expression] = STATE(3848), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1701] = { + [sym__expression] = STATE(2971), + [sym_conditional_expression] = STATE(3135), + [sym_assignment_expression] = STATE(3135), + [sym_pointer_expression] = STATE(2788), + [sym_unary_expression] = STATE(3135), + [sym_binary_expression] = STATE(3135), + [sym_update_expression] = STATE(3135), + [sym_cast_expression] = STATE(3135), + [sym_sizeof_expression] = STATE(3135), + [sym_subscript_expression] = STATE(2788), + [sym_call_expression] = STATE(2788), + [sym_field_expression] = STATE(2788), + [sym_compound_literal_expression] = STATE(3135), + [sym_parenthesized_expression] = STATE(2788), + [sym_char_literal] = STATE(2981), + [sym_concatenated_string] = STATE(2981), + [sym_string_literal] = STATE(1970), + [sym__class_name] = STATE(6450), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3135), + [sym_co_await_expression] = STATE(3135), + [sym_new_expression] = STATE(3135), + [sym_delete_expression] = STATE(3135), + [sym_requires_clause] = STATE(3135), + [sym_requires_expression] = STATE(3135), + [sym_lambda_expression] = STATE(3135), + [sym_lambda_capture_specifier] = STATE(4771), + [sym_fold_expression] = STATE(3135), + [sym_parameter_pack_expansion] = STATE(3135), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4904), + [sym_qualified_identifier] = STATE(2788), + [sym_qualified_type_identifier] = STATE(6450), + [sym_user_defined_literal] = STATE(3135), + [sym_identifier] = ACTIONS(1957), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1753), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_co_await] = ACTIONS(1455), + [anon_sym_new] = ACTIONS(1457), + [anon_sym_requires] = ACTIONS(1459), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + [sym_raw_string_literal] = ACTIONS(1461), + }, + [1702] = { + [sym__expression] = STATE(2630), + [sym_conditional_expression] = STATE(2821), + [sym_assignment_expression] = STATE(2821), + [sym_pointer_expression] = STATE(2805), + [sym_unary_expression] = STATE(2821), + [sym_binary_expression] = STATE(2821), + [sym_update_expression] = STATE(2821), + [sym_cast_expression] = STATE(2821), + [sym_sizeof_expression] = STATE(2821), + [sym_subscript_expression] = STATE(2805), + [sym_call_expression] = STATE(2805), + [sym_field_expression] = STATE(2805), + [sym_compound_literal_expression] = STATE(2821), + [sym_parenthesized_expression] = STATE(2805), + [sym_char_literal] = STATE(2577), + [sym_concatenated_string] = STATE(2577), + [sym_string_literal] = STATE(1861), + [sym__class_name] = STATE(6652), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2821), + [sym_co_await_expression] = STATE(2821), + [sym_new_expression] = STATE(2821), + [sym_delete_expression] = STATE(2821), + [sym_requires_clause] = STATE(2821), + [sym_requires_expression] = STATE(2821), + [sym_lambda_expression] = STATE(2821), + [sym_lambda_capture_specifier] = STATE(4790), + [sym_fold_expression] = STATE(2821), + [sym_parameter_pack_expansion] = STATE(2821), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4904), + [sym_qualified_identifier] = STATE(2805), + [sym_qualified_type_identifier] = STATE(6652), + [sym_user_defined_literal] = STATE(2821), + [sym_identifier] = ACTIONS(1739), + [anon_sym_LPAREN2] = ACTIONS(1741), + [anon_sym_BANG] = ACTIONS(1745), + [anon_sym_TILDE] = ACTIONS(1745), + [anon_sym_DASH] = ACTIONS(1743), + [anon_sym_PLUS] = ACTIONS(1743), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1753), + [anon_sym_not] = ACTIONS(1743), + [anon_sym_compl] = ACTIONS(1743), + [anon_sym_DASH_DASH] = ACTIONS(1755), + [anon_sym_PLUS_PLUS] = ACTIONS(1755), + [anon_sym_sizeof] = ACTIONS(1757), + [sym_number_literal] = ACTIONS(1759), + [anon_sym_L_SQUOTE] = ACTIONS(1761), + [anon_sym_u_SQUOTE] = ACTIONS(1761), + [anon_sym_U_SQUOTE] = ACTIONS(1761), + [anon_sym_u8_SQUOTE] = ACTIONS(1761), + [anon_sym_SQUOTE] = ACTIONS(1761), + [anon_sym_L_DQUOTE] = ACTIONS(1763), + [anon_sym_u_DQUOTE] = ACTIONS(1763), + [anon_sym_U_DQUOTE] = ACTIONS(1763), + [anon_sym_u8_DQUOTE] = ACTIONS(1763), + [anon_sym_DQUOTE] = ACTIONS(1763), + [sym_true] = ACTIONS(1765), + [sym_false] = ACTIONS(1765), + [sym_null] = ACTIONS(1765), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1767), + [anon_sym_co_await] = ACTIONS(1769), + [anon_sym_new] = ACTIONS(1771), + [anon_sym_requires] = ACTIONS(1773), + [sym_this] = ACTIONS(1765), + [sym_nullptr] = ACTIONS(1765), + [sym_raw_string_literal] = ACTIONS(1775), + }, + [1703] = { + [sym__expression] = STATE(3556), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1704] = { + [sym__expression] = STATE(3840), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3001), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3001), + [sym_call_expression] = STATE(3001), + [sym_field_expression] = STATE(3001), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3001), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3001), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3085), + [anon_sym_LPAREN2] = ACTIONS(3087), + [anon_sym_BANG] = ACTIONS(3091), + [anon_sym_TILDE] = ACTIONS(3091), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3089), + [anon_sym_compl] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3095), + [anon_sym_PLUS_PLUS] = ACTIONS(3095), + [anon_sym_sizeof] = ACTIONS(3097), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3099), + [anon_sym_co_await] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1705] = { + [sym__expression] = STATE(3557), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1706] = { + [sym__expression] = STATE(3877), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3121), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3121), + [sym_call_expression] = STATE(3121), + [sym_field_expression] = STATE(3121), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3121), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3121), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3109), + [anon_sym_LPAREN2] = ACTIONS(3111), + [anon_sym_BANG] = ACTIONS(3115), + [anon_sym_TILDE] = ACTIONS(3115), + [anon_sym_DASH] = ACTIONS(3113), + [anon_sym_PLUS] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(3117), + [anon_sym_AMP] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(3119), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3113), + [anon_sym_compl] = ACTIONS(3113), + [anon_sym_DASH_DASH] = ACTIONS(3121), + [anon_sym_PLUS_PLUS] = ACTIONS(3121), + [anon_sym_sizeof] = ACTIONS(3123), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3125), + [anon_sym_co_await] = ACTIONS(3127), + [anon_sym_new] = ACTIONS(3129), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1707] = { + [sym__expression] = STATE(3565), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1708] = { + [sym__expression] = STATE(3902), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1709] = { + [sym__expression] = STATE(3724), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3001), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3001), + [sym_call_expression] = STATE(3001), + [sym_field_expression] = STATE(3001), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3001), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3001), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3085), + [anon_sym_LPAREN2] = ACTIONS(3087), + [anon_sym_BANG] = ACTIONS(3091), + [anon_sym_TILDE] = ACTIONS(3091), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3089), + [anon_sym_compl] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3095), + [anon_sym_PLUS_PLUS] = ACTIONS(3095), + [anon_sym_sizeof] = ACTIONS(3097), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3099), + [anon_sym_co_await] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1710] = { + [sym__expression] = STATE(3813), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1711] = { + [sym__expression] = STATE(3740), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3001), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3001), + [sym_call_expression] = STATE(3001), + [sym_field_expression] = STATE(3001), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3001), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3001), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3085), + [anon_sym_LPAREN2] = ACTIONS(3087), + [anon_sym_BANG] = ACTIONS(3091), + [anon_sym_TILDE] = ACTIONS(3091), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3089), + [anon_sym_compl] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3095), + [anon_sym_PLUS_PLUS] = ACTIONS(3095), + [anon_sym_sizeof] = ACTIONS(3097), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3099), + [anon_sym_co_await] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1712] = { + [sym__expression] = STATE(3901), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3121), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3121), + [sym_call_expression] = STATE(3121), + [sym_field_expression] = STATE(3121), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3121), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3121), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3109), + [anon_sym_LPAREN2] = ACTIONS(3111), + [anon_sym_BANG] = ACTIONS(3115), + [anon_sym_TILDE] = ACTIONS(3115), + [anon_sym_DASH] = ACTIONS(3113), + [anon_sym_PLUS] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(3117), + [anon_sym_AMP] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(3119), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3113), + [anon_sym_compl] = ACTIONS(3113), + [anon_sym_DASH_DASH] = ACTIONS(3121), + [anon_sym_PLUS_PLUS] = ACTIONS(3121), + [anon_sym_sizeof] = ACTIONS(3123), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3125), + [anon_sym_co_await] = ACTIONS(3127), + [anon_sym_new] = ACTIONS(3129), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1713] = { + [sym__expression] = STATE(3948), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3121), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3121), + [sym_call_expression] = STATE(3121), + [sym_field_expression] = STATE(3121), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3121), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3121), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3109), + [anon_sym_LPAREN2] = ACTIONS(3111), + [anon_sym_BANG] = ACTIONS(3115), + [anon_sym_TILDE] = ACTIONS(3115), + [anon_sym_DASH] = ACTIONS(3113), + [anon_sym_PLUS] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(3117), + [anon_sym_AMP] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(3119), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3113), + [anon_sym_compl] = ACTIONS(3113), + [anon_sym_DASH_DASH] = ACTIONS(3121), + [anon_sym_PLUS_PLUS] = ACTIONS(3121), + [anon_sym_sizeof] = ACTIONS(3123), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3125), + [anon_sym_co_await] = ACTIONS(3127), + [anon_sym_new] = ACTIONS(3129), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1714] = { + [sym__expression] = STATE(3926), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1715] = { + [sym__expression] = STATE(3849), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3121), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3121), + [sym_call_expression] = STATE(3121), + [sym_field_expression] = STATE(3121), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3121), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3121), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3109), + [anon_sym_LPAREN2] = ACTIONS(3111), + [anon_sym_BANG] = ACTIONS(3115), + [anon_sym_TILDE] = ACTIONS(3115), + [anon_sym_DASH] = ACTIONS(3113), + [anon_sym_PLUS] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(3117), + [anon_sym_AMP] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(3119), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3113), + [anon_sym_compl] = ACTIONS(3113), + [anon_sym_DASH_DASH] = ACTIONS(3121), + [anon_sym_PLUS_PLUS] = ACTIONS(3121), + [anon_sym_sizeof] = ACTIONS(3123), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3125), + [anon_sym_co_await] = ACTIONS(3127), + [anon_sym_new] = ACTIONS(3129), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1716] = { + [sym__expression] = STATE(3900), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1717] = { + [sym__expression] = STATE(3920), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3121), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3121), + [sym_call_expression] = STATE(3121), + [sym_field_expression] = STATE(3121), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3121), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3121), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3109), + [anon_sym_LPAREN2] = ACTIONS(3111), + [anon_sym_BANG] = ACTIONS(3115), + [anon_sym_TILDE] = ACTIONS(3115), + [anon_sym_DASH] = ACTIONS(3113), + [anon_sym_PLUS] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(3117), + [anon_sym_AMP] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(3119), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3113), + [anon_sym_compl] = ACTIONS(3113), + [anon_sym_DASH_DASH] = ACTIONS(3121), + [anon_sym_PLUS_PLUS] = ACTIONS(3121), + [anon_sym_sizeof] = ACTIONS(3123), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3125), + [anon_sym_co_await] = ACTIONS(3127), + [anon_sym_new] = ACTIONS(3129), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1718] = { + [sym__expression] = STATE(3570), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1719] = { + [sym__expression] = STATE(3708), + [sym_conditional_expression] = STATE(3865), + [sym_assignment_expression] = STATE(3865), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3865), + [sym_binary_expression] = STATE(3865), + [sym_update_expression] = STATE(3865), + [sym_cast_expression] = STATE(3865), + [sym_sizeof_expression] = STATE(3865), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3865), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3707), + [sym_concatenated_string] = STATE(3707), + [sym_string_literal] = STATE(3250), + [sym__class_name] = STATE(6539), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3865), + [sym_co_await_expression] = STATE(3865), + [sym_new_expression] = STATE(3865), + [sym_delete_expression] = STATE(3865), + [sym_requires_clause] = STATE(3865), + [sym_requires_expression] = STATE(3865), + [sym_lambda_expression] = STATE(3865), + [sym_lambda_capture_specifier] = STATE(4789), + [sym_fold_expression] = STATE(3865), + [sym_parameter_pack_expansion] = STATE(3865), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(6539), + [sym_user_defined_literal] = STATE(3865), + [sym_identifier] = ACTIONS(3105), + [anon_sym_LPAREN2] = ACTIONS(2665), + [anon_sym_BANG] = ACTIONS(2667), + [anon_sym_TILDE] = ACTIONS(2667), + [anon_sym_DASH] = ACTIONS(2669), + [anon_sym_PLUS] = ACTIONS(2669), + [anon_sym_STAR] = ACTIONS(2671), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_COLON_COLON] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1933), + [anon_sym_not] = ACTIONS(2669), + [anon_sym_compl] = ACTIONS(2669), + [anon_sym_DASH_DASH] = ACTIONS(2687), + [anon_sym_PLUS_PLUS] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2689), + [sym_number_literal] = ACTIONS(2691), + [anon_sym_L_SQUOTE] = ACTIONS(2693), + [anon_sym_u_SQUOTE] = ACTIONS(2693), + [anon_sym_U_SQUOTE] = ACTIONS(2693), + [anon_sym_u8_SQUOTE] = ACTIONS(2693), + [anon_sym_SQUOTE] = ACTIONS(2693), + [anon_sym_L_DQUOTE] = ACTIONS(2695), + [anon_sym_u_DQUOTE] = ACTIONS(2695), + [anon_sym_U_DQUOTE] = ACTIONS(2695), + [anon_sym_u8_DQUOTE] = ACTIONS(2695), + [anon_sym_DQUOTE] = ACTIONS(2695), + [sym_true] = ACTIONS(2697), + [sym_false] = ACTIONS(2697), + [sym_null] = ACTIONS(2697), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(2707), + [anon_sym_co_await] = ACTIONS(2709), + [anon_sym_new] = ACTIONS(2711), + [anon_sym_requires] = ACTIONS(2713), + [sym_this] = ACTIONS(2697), + [sym_nullptr] = ACTIONS(2697), + [sym_raw_string_literal] = ACTIONS(2715), + }, + [1720] = { + [sym__expression] = STATE(2548), + [sym_conditional_expression] = STATE(2562), + [sym_assignment_expression] = STATE(2562), + [sym_pointer_expression] = STATE(2549), + [sym_unary_expression] = STATE(2562), + [sym_binary_expression] = STATE(2562), + [sym_update_expression] = STATE(2562), + [sym_cast_expression] = STATE(2562), + [sym_sizeof_expression] = STATE(2562), + [sym_subscript_expression] = STATE(2549), + [sym_call_expression] = STATE(2549), + [sym_field_expression] = STATE(2549), + [sym_compound_literal_expression] = STATE(2562), + [sym_parenthesized_expression] = STATE(2549), + [sym_char_literal] = STATE(2344), + [sym_concatenated_string] = STATE(2344), + [sym_string_literal] = STATE(1824), + [sym__class_name] = STATE(6654), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2562), + [sym_co_await_expression] = STATE(2562), + [sym_new_expression] = STATE(2562), + [sym_delete_expression] = STATE(2562), + [sym_requires_clause] = STATE(2562), + [sym_requires_expression] = STATE(2562), + [sym_lambda_expression] = STATE(2562), + [sym_lambda_capture_specifier] = STATE(4787), + [sym_fold_expression] = STATE(2562), + [sym_parameter_pack_expansion] = STATE(2562), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2549), + [sym_qualified_type_identifier] = STATE(6654), + [sym_user_defined_literal] = STATE(2562), + [sym_identifier] = ACTIONS(1697), + [anon_sym_LPAREN2] = ACTIONS(1701), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1703), + [anon_sym_PLUS] = ACTIONS(1703), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(1703), + [anon_sym_compl] = ACTIONS(1703), + [anon_sym_DASH_DASH] = ACTIONS(1717), + [anon_sym_PLUS_PLUS] = ACTIONS(1717), + [anon_sym_sizeof] = ACTIONS(1719), + [sym_number_literal] = ACTIONS(1721), + [anon_sym_L_SQUOTE] = ACTIONS(1723), + [anon_sym_u_SQUOTE] = ACTIONS(1723), + [anon_sym_U_SQUOTE] = ACTIONS(1723), + [anon_sym_u8_SQUOTE] = ACTIONS(1723), + [anon_sym_SQUOTE] = ACTIONS(1723), + [anon_sym_L_DQUOTE] = ACTIONS(1725), + [anon_sym_u_DQUOTE] = ACTIONS(1725), + [anon_sym_U_DQUOTE] = ACTIONS(1725), + [anon_sym_u8_DQUOTE] = ACTIONS(1725), + [anon_sym_DQUOTE] = ACTIONS(1725), + [sym_true] = ACTIONS(1727), + [sym_false] = ACTIONS(1727), + [sym_null] = ACTIONS(1727), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1729), + [anon_sym_co_await] = ACTIONS(1731), + [anon_sym_new] = ACTIONS(1733), + [anon_sym_requires] = ACTIONS(1735), + [sym_this] = ACTIONS(1727), + [sym_nullptr] = ACTIONS(1727), + [sym_raw_string_literal] = ACTIONS(1737), + }, + [1721] = { + [sym__expression] = STATE(3863), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3121), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3121), + [sym_call_expression] = STATE(3121), + [sym_field_expression] = STATE(3121), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3121), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3121), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3109), + [anon_sym_LPAREN2] = ACTIONS(3111), + [anon_sym_BANG] = ACTIONS(3115), + [anon_sym_TILDE] = ACTIONS(3115), + [anon_sym_DASH] = ACTIONS(3113), + [anon_sym_PLUS] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(3117), + [anon_sym_AMP] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(3119), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3113), + [anon_sym_compl] = ACTIONS(3113), + [anon_sym_DASH_DASH] = ACTIONS(3121), + [anon_sym_PLUS_PLUS] = ACTIONS(3121), + [anon_sym_sizeof] = ACTIONS(3123), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3125), + [anon_sym_co_await] = ACTIONS(3127), + [anon_sym_new] = ACTIONS(3129), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1722] = { + [sym__expression] = STATE(3864), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3121), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3121), + [sym_call_expression] = STATE(3121), + [sym_field_expression] = STATE(3121), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3121), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3121), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3109), + [anon_sym_LPAREN2] = ACTIONS(3111), + [anon_sym_BANG] = ACTIONS(3115), + [anon_sym_TILDE] = ACTIONS(3115), + [anon_sym_DASH] = ACTIONS(3113), + [anon_sym_PLUS] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(3117), + [anon_sym_AMP] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(3119), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3113), + [anon_sym_compl] = ACTIONS(3113), + [anon_sym_DASH_DASH] = ACTIONS(3121), + [anon_sym_PLUS_PLUS] = ACTIONS(3121), + [anon_sym_sizeof] = ACTIONS(3123), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3125), + [anon_sym_co_await] = ACTIONS(3127), + [anon_sym_new] = ACTIONS(3129), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1723] = { + [sym__expression] = STATE(3702), + [sym_conditional_expression] = STATE(3865), + [sym_assignment_expression] = STATE(3865), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3865), + [sym_binary_expression] = STATE(3865), + [sym_update_expression] = STATE(3865), + [sym_cast_expression] = STATE(3865), + [sym_sizeof_expression] = STATE(3865), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3865), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3707), + [sym_concatenated_string] = STATE(3707), + [sym_string_literal] = STATE(3250), + [sym__class_name] = STATE(6539), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3865), + [sym_co_await_expression] = STATE(3865), + [sym_new_expression] = STATE(3865), + [sym_delete_expression] = STATE(3865), + [sym_requires_clause] = STATE(3865), + [sym_requires_expression] = STATE(3865), + [sym_lambda_expression] = STATE(3865), + [sym_lambda_capture_specifier] = STATE(4789), + [sym_fold_expression] = STATE(3865), + [sym_parameter_pack_expansion] = STATE(3865), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(6539), + [sym_user_defined_literal] = STATE(3865), + [sym_identifier] = ACTIONS(3105), + [anon_sym_LPAREN2] = ACTIONS(2665), + [anon_sym_BANG] = ACTIONS(2667), + [anon_sym_TILDE] = ACTIONS(2667), + [anon_sym_DASH] = ACTIONS(2669), + [anon_sym_PLUS] = ACTIONS(2669), + [anon_sym_STAR] = ACTIONS(2671), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_COLON_COLON] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1933), + [anon_sym_not] = ACTIONS(2669), + [anon_sym_compl] = ACTIONS(2669), + [anon_sym_DASH_DASH] = ACTIONS(2687), + [anon_sym_PLUS_PLUS] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2689), + [sym_number_literal] = ACTIONS(2691), + [anon_sym_L_SQUOTE] = ACTIONS(2693), + [anon_sym_u_SQUOTE] = ACTIONS(2693), + [anon_sym_U_SQUOTE] = ACTIONS(2693), + [anon_sym_u8_SQUOTE] = ACTIONS(2693), + [anon_sym_SQUOTE] = ACTIONS(2693), + [anon_sym_L_DQUOTE] = ACTIONS(2695), + [anon_sym_u_DQUOTE] = ACTIONS(2695), + [anon_sym_U_DQUOTE] = ACTIONS(2695), + [anon_sym_u8_DQUOTE] = ACTIONS(2695), + [anon_sym_DQUOTE] = ACTIONS(2695), + [sym_true] = ACTIONS(2697), + [sym_false] = ACTIONS(2697), + [sym_null] = ACTIONS(2697), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(2707), + [anon_sym_co_await] = ACTIONS(2709), + [anon_sym_new] = ACTIONS(2711), + [anon_sym_requires] = ACTIONS(2713), + [sym_this] = ACTIONS(2697), + [sym_nullptr] = ACTIONS(2697), + [sym_raw_string_literal] = ACTIONS(2715), + }, + [1724] = { + [sym__expression] = STATE(2945), + [sym_conditional_expression] = STATE(2999), + [sym_assignment_expression] = STATE(2999), + [sym_pointer_expression] = STATE(2973), + [sym_unary_expression] = STATE(2999), + [sym_binary_expression] = STATE(2999), + [sym_update_expression] = STATE(2999), + [sym_cast_expression] = STATE(2999), + [sym_sizeof_expression] = STATE(2999), + [sym_subscript_expression] = STATE(2973), + [sym_call_expression] = STATE(2973), + [sym_field_expression] = STATE(2973), + [sym_compound_literal_expression] = STATE(2999), + [sym_parenthesized_expression] = STATE(2973), + [sym_char_literal] = STATE(2933), + [sym_concatenated_string] = STATE(2933), + [sym_string_literal] = STATE(1927), + [sym__class_name] = STATE(6445), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2999), + [sym_co_await_expression] = STATE(2999), + [sym_new_expression] = STATE(2999), + [sym_delete_expression] = STATE(2999), + [sym_requires_clause] = STATE(2999), + [sym_requires_expression] = STATE(2999), + [sym_lambda_expression] = STATE(2999), + [sym_lambda_capture_specifier] = STATE(4767), + [sym_fold_expression] = STATE(2999), + [sym_parameter_pack_expansion] = STATE(2999), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2973), + [sym_qualified_type_identifier] = STATE(6445), + [sym_user_defined_literal] = STATE(2999), + [sym_identifier] = ACTIONS(1919), + [anon_sym_LPAREN2] = ACTIONS(1921), + [anon_sym_BANG] = ACTIONS(1925), + [anon_sym_TILDE] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1923), + [anon_sym_PLUS] = ACTIONS(1923), + [anon_sym_STAR] = ACTIONS(2671), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_COLON_COLON] = ACTIONS(1929), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1933), + [anon_sym_not] = ACTIONS(1923), + [anon_sym_compl] = ACTIONS(1923), + [anon_sym_DASH_DASH] = ACTIONS(1935), + [anon_sym_PLUS_PLUS] = ACTIONS(1935), + [anon_sym_sizeof] = ACTIONS(1937), + [sym_number_literal] = ACTIONS(1939), + [anon_sym_L_SQUOTE] = ACTIONS(1941), + [anon_sym_u_SQUOTE] = ACTIONS(1941), + [anon_sym_U_SQUOTE] = ACTIONS(1941), + [anon_sym_u8_SQUOTE] = ACTIONS(1941), + [anon_sym_SQUOTE] = ACTIONS(1941), + [anon_sym_L_DQUOTE] = ACTIONS(1943), + [anon_sym_u_DQUOTE] = ACTIONS(1943), + [anon_sym_U_DQUOTE] = ACTIONS(1943), + [anon_sym_u8_DQUOTE] = ACTIONS(1943), + [anon_sym_DQUOTE] = ACTIONS(1943), + [sym_true] = ACTIONS(1945), + [sym_false] = ACTIONS(1945), + [sym_null] = ACTIONS(1945), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1947), + [anon_sym_co_await] = ACTIONS(1949), + [anon_sym_new] = ACTIONS(1951), + [anon_sym_requires] = ACTIONS(1953), + [sym_this] = ACTIONS(1945), + [sym_nullptr] = ACTIONS(1945), + [sym_raw_string_literal] = ACTIONS(1955), + }, + [1725] = { + [sym__expression] = STATE(3571), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1726] = { + [sym__expression] = STATE(3867), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3121), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3121), + [sym_call_expression] = STATE(3121), + [sym_field_expression] = STATE(3121), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3121), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3121), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3109), + [anon_sym_LPAREN2] = ACTIONS(3111), + [anon_sym_BANG] = ACTIONS(3115), + [anon_sym_TILDE] = ACTIONS(3115), + [anon_sym_DASH] = ACTIONS(3113), + [anon_sym_PLUS] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(3117), + [anon_sym_AMP] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(3119), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3113), + [anon_sym_compl] = ACTIONS(3113), + [anon_sym_DASH_DASH] = ACTIONS(3121), + [anon_sym_PLUS_PLUS] = ACTIONS(3121), + [anon_sym_sizeof] = ACTIONS(3123), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3125), + [anon_sym_co_await] = ACTIONS(3127), + [anon_sym_new] = ACTIONS(3129), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1727] = { + [sym__expression] = STATE(3982), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3121), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3121), + [sym_call_expression] = STATE(3121), + [sym_field_expression] = STATE(3121), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3121), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3121), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3109), + [anon_sym_LPAREN2] = ACTIONS(3111), + [anon_sym_BANG] = ACTIONS(3115), + [anon_sym_TILDE] = ACTIONS(3115), + [anon_sym_DASH] = ACTIONS(3113), + [anon_sym_PLUS] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(3117), + [anon_sym_AMP] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(3119), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3113), + [anon_sym_compl] = ACTIONS(3113), + [anon_sym_DASH_DASH] = ACTIONS(3121), + [anon_sym_PLUS_PLUS] = ACTIONS(3121), + [anon_sym_sizeof] = ACTIONS(3123), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3125), + [anon_sym_co_await] = ACTIONS(3127), + [anon_sym_new] = ACTIONS(3129), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1728] = { + [sym__expression] = STATE(3868), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3121), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3121), + [sym_call_expression] = STATE(3121), + [sym_field_expression] = STATE(3121), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3121), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3121), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3109), + [anon_sym_LPAREN2] = ACTIONS(3111), + [anon_sym_BANG] = ACTIONS(3115), + [anon_sym_TILDE] = ACTIONS(3115), + [anon_sym_DASH] = ACTIONS(3113), + [anon_sym_PLUS] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(3117), + [anon_sym_AMP] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(3119), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3113), + [anon_sym_compl] = ACTIONS(3113), + [anon_sym_DASH_DASH] = ACTIONS(3121), + [anon_sym_PLUS_PLUS] = ACTIONS(3121), + [anon_sym_sizeof] = ACTIONS(3123), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3125), + [anon_sym_co_await] = ACTIONS(3127), + [anon_sym_new] = ACTIONS(3129), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1729] = { + [sym__expression] = STATE(3578), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1730] = { + [sym__expression] = STATE(3437), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1731] = { + [sym__expression] = STATE(3683), + [sym_conditional_expression] = STATE(3865), + [sym_assignment_expression] = STATE(3865), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3865), + [sym_binary_expression] = STATE(3865), + [sym_update_expression] = STATE(3865), + [sym_cast_expression] = STATE(3865), + [sym_sizeof_expression] = STATE(3865), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3865), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3707), + [sym_concatenated_string] = STATE(3707), + [sym_string_literal] = STATE(3250), + [sym__class_name] = STATE(6539), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3865), + [sym_co_await_expression] = STATE(3865), + [sym_new_expression] = STATE(3865), + [sym_delete_expression] = STATE(3865), + [sym_requires_clause] = STATE(3865), + [sym_requires_expression] = STATE(3865), + [sym_lambda_expression] = STATE(3865), + [sym_lambda_capture_specifier] = STATE(4789), + [sym_fold_expression] = STATE(3865), + [sym_parameter_pack_expansion] = STATE(3865), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(6539), + [sym_user_defined_literal] = STATE(3865), + [sym_identifier] = ACTIONS(3105), + [anon_sym_LPAREN2] = ACTIONS(2665), + [anon_sym_BANG] = ACTIONS(2667), + [anon_sym_TILDE] = ACTIONS(2667), + [anon_sym_DASH] = ACTIONS(2669), + [anon_sym_PLUS] = ACTIONS(2669), + [anon_sym_STAR] = ACTIONS(2671), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_COLON_COLON] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1933), + [anon_sym_not] = ACTIONS(2669), + [anon_sym_compl] = ACTIONS(2669), + [anon_sym_DASH_DASH] = ACTIONS(2687), + [anon_sym_PLUS_PLUS] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2689), + [sym_number_literal] = ACTIONS(2691), + [anon_sym_L_SQUOTE] = ACTIONS(2693), + [anon_sym_u_SQUOTE] = ACTIONS(2693), + [anon_sym_U_SQUOTE] = ACTIONS(2693), + [anon_sym_u8_SQUOTE] = ACTIONS(2693), + [anon_sym_SQUOTE] = ACTIONS(2693), + [anon_sym_L_DQUOTE] = ACTIONS(2695), + [anon_sym_u_DQUOTE] = ACTIONS(2695), + [anon_sym_U_DQUOTE] = ACTIONS(2695), + [anon_sym_u8_DQUOTE] = ACTIONS(2695), + [anon_sym_DQUOTE] = ACTIONS(2695), + [sym_true] = ACTIONS(2697), + [sym_false] = ACTIONS(2697), + [sym_null] = ACTIONS(2697), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(2707), + [anon_sym_co_await] = ACTIONS(2709), + [anon_sym_new] = ACTIONS(2711), + [anon_sym_requires] = ACTIONS(2713), + [sym_this] = ACTIONS(2697), + [sym_nullptr] = ACTIONS(2697), + [sym_raw_string_literal] = ACTIONS(2715), + }, + [1732] = { + [sym__expression] = STATE(3874), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3121), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3121), + [sym_call_expression] = STATE(3121), + [sym_field_expression] = STATE(3121), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3121), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3121), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3109), + [anon_sym_LPAREN2] = ACTIONS(3111), + [anon_sym_BANG] = ACTIONS(3115), + [anon_sym_TILDE] = ACTIONS(3115), + [anon_sym_DASH] = ACTIONS(3113), + [anon_sym_PLUS] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(3117), + [anon_sym_AMP] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(3119), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3113), + [anon_sym_compl] = ACTIONS(3113), + [anon_sym_DASH_DASH] = ACTIONS(3121), + [anon_sym_PLUS_PLUS] = ACTIONS(3121), + [anon_sym_sizeof] = ACTIONS(3123), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3125), + [anon_sym_co_await] = ACTIONS(3127), + [anon_sym_new] = ACTIONS(3129), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1733] = { + [sym__expression] = STATE(3574), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1734] = { + [sym__expression] = STATE(3876), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3121), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3121), + [sym_call_expression] = STATE(3121), + [sym_field_expression] = STATE(3121), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3121), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3121), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3109), + [anon_sym_LPAREN2] = ACTIONS(3111), + [anon_sym_BANG] = ACTIONS(3115), + [anon_sym_TILDE] = ACTIONS(3115), + [anon_sym_DASH] = ACTIONS(3113), + [anon_sym_PLUS] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(3117), + [anon_sym_AMP] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(3119), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3113), + [anon_sym_compl] = ACTIONS(3113), + [anon_sym_DASH_DASH] = ACTIONS(3121), + [anon_sym_PLUS_PLUS] = ACTIONS(3121), + [anon_sym_sizeof] = ACTIONS(3123), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3125), + [anon_sym_co_await] = ACTIONS(3127), + [anon_sym_new] = ACTIONS(3129), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1735] = { + [sym__expression] = STATE(3767), + [sym_conditional_expression] = STATE(3865), + [sym_assignment_expression] = STATE(3865), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3865), + [sym_binary_expression] = STATE(3865), + [sym_update_expression] = STATE(3865), + [sym_cast_expression] = STATE(3865), + [sym_sizeof_expression] = STATE(3865), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3865), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3707), + [sym_concatenated_string] = STATE(3707), + [sym_string_literal] = STATE(3250), + [sym__class_name] = STATE(6539), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3865), + [sym_co_await_expression] = STATE(3865), + [sym_new_expression] = STATE(3865), + [sym_delete_expression] = STATE(3865), + [sym_requires_clause] = STATE(3865), + [sym_requires_expression] = STATE(3865), + [sym_lambda_expression] = STATE(3865), + [sym_lambda_capture_specifier] = STATE(4789), + [sym_fold_expression] = STATE(3865), + [sym_parameter_pack_expansion] = STATE(3865), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(6539), + [sym_user_defined_literal] = STATE(3865), + [sym_identifier] = ACTIONS(3105), + [anon_sym_LPAREN2] = ACTIONS(2665), + [anon_sym_BANG] = ACTIONS(2667), + [anon_sym_TILDE] = ACTIONS(2667), + [anon_sym_DASH] = ACTIONS(2669), + [anon_sym_PLUS] = ACTIONS(2669), + [anon_sym_STAR] = ACTIONS(2671), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_COLON_COLON] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1933), + [anon_sym_not] = ACTIONS(2669), + [anon_sym_compl] = ACTIONS(2669), + [anon_sym_DASH_DASH] = ACTIONS(2687), + [anon_sym_PLUS_PLUS] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2689), + [sym_number_literal] = ACTIONS(2691), + [anon_sym_L_SQUOTE] = ACTIONS(2693), + [anon_sym_u_SQUOTE] = ACTIONS(2693), + [anon_sym_U_SQUOTE] = ACTIONS(2693), + [anon_sym_u8_SQUOTE] = ACTIONS(2693), + [anon_sym_SQUOTE] = ACTIONS(2693), + [anon_sym_L_DQUOTE] = ACTIONS(2695), + [anon_sym_u_DQUOTE] = ACTIONS(2695), + [anon_sym_U_DQUOTE] = ACTIONS(2695), + [anon_sym_u8_DQUOTE] = ACTIONS(2695), + [anon_sym_DQUOTE] = ACTIONS(2695), + [sym_true] = ACTIONS(2697), + [sym_false] = ACTIONS(2697), + [sym_null] = ACTIONS(2697), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(2707), + [anon_sym_co_await] = ACTIONS(2709), + [anon_sym_new] = ACTIONS(2711), + [anon_sym_requires] = ACTIONS(2713), + [sym_this] = ACTIONS(2697), + [sym_nullptr] = ACTIONS(2697), + [sym_raw_string_literal] = ACTIONS(2715), + }, + [1736] = { + [sym__expression] = STATE(3965), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3001), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3001), + [sym_call_expression] = STATE(3001), + [sym_field_expression] = STATE(3001), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3001), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3001), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3085), + [anon_sym_LPAREN2] = ACTIONS(3087), + [anon_sym_BANG] = ACTIONS(3091), + [anon_sym_TILDE] = ACTIONS(3091), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3089), + [anon_sym_compl] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3095), + [anon_sym_PLUS_PLUS] = ACTIONS(3095), + [anon_sym_sizeof] = ACTIONS(3097), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3099), + [anon_sym_co_await] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1737] = { + [sym__expression] = STATE(3878), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3121), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3121), + [sym_call_expression] = STATE(3121), + [sym_field_expression] = STATE(3121), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3121), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3121), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3109), + [anon_sym_LPAREN2] = ACTIONS(3111), + [anon_sym_BANG] = ACTIONS(3115), + [anon_sym_TILDE] = ACTIONS(3115), + [anon_sym_DASH] = ACTIONS(3113), + [anon_sym_PLUS] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(3117), + [anon_sym_AMP] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(3119), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3113), + [anon_sym_compl] = ACTIONS(3113), + [anon_sym_DASH_DASH] = ACTIONS(3121), + [anon_sym_PLUS_PLUS] = ACTIONS(3121), + [anon_sym_sizeof] = ACTIONS(3123), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3125), + [anon_sym_co_await] = ACTIONS(3127), + [anon_sym_new] = ACTIONS(3129), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1738] = { + [sym__expression] = STATE(3962), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1739] = { + [sym__expression] = STATE(3722), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1740] = { + [sym__expression] = STATE(3879), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3121), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3121), + [sym_call_expression] = STATE(3121), + [sym_field_expression] = STATE(3121), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3121), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3121), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3109), + [anon_sym_LPAREN2] = ACTIONS(3111), + [anon_sym_BANG] = ACTIONS(3115), + [anon_sym_TILDE] = ACTIONS(3115), + [anon_sym_DASH] = ACTIONS(3113), + [anon_sym_PLUS] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(3117), + [anon_sym_AMP] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(3119), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3113), + [anon_sym_compl] = ACTIONS(3113), + [anon_sym_DASH_DASH] = ACTIONS(3121), + [anon_sym_PLUS_PLUS] = ACTIONS(3121), + [anon_sym_sizeof] = ACTIONS(3123), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3125), + [anon_sym_co_await] = ACTIONS(3127), + [anon_sym_new] = ACTIONS(3129), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1741] = { + [sym__expression] = STATE(3733), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3001), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3001), + [sym_call_expression] = STATE(3001), + [sym_field_expression] = STATE(3001), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3001), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3001), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3085), + [anon_sym_LPAREN2] = ACTIONS(3087), + [anon_sym_BANG] = ACTIONS(3091), + [anon_sym_TILDE] = ACTIONS(3091), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3089), + [anon_sym_compl] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3095), + [anon_sym_PLUS_PLUS] = ACTIONS(3095), + [anon_sym_sizeof] = ACTIONS(3097), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3099), + [anon_sym_co_await] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1742] = { + [sym__expression] = STATE(3914), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1743] = { + [sym__expression] = STATE(3913), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3121), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3121), + [sym_call_expression] = STATE(3121), + [sym_field_expression] = STATE(3121), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3121), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3121), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3109), + [anon_sym_LPAREN2] = ACTIONS(3111), + [anon_sym_BANG] = ACTIONS(3115), + [anon_sym_TILDE] = ACTIONS(3115), + [anon_sym_DASH] = ACTIONS(3113), + [anon_sym_PLUS] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(3117), + [anon_sym_AMP] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(3119), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3113), + [anon_sym_compl] = ACTIONS(3113), + [anon_sym_DASH_DASH] = ACTIONS(3121), + [anon_sym_PLUS_PLUS] = ACTIONS(3121), + [anon_sym_sizeof] = ACTIONS(3123), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3125), + [anon_sym_co_await] = ACTIONS(3127), + [anon_sym_new] = ACTIONS(3129), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1744] = { + [sym__expression] = STATE(3828), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1745] = { + [sym__expression] = STATE(3880), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3121), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3121), + [sym_call_expression] = STATE(3121), + [sym_field_expression] = STATE(3121), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3121), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3121), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3109), + [anon_sym_LPAREN2] = ACTIONS(3111), + [anon_sym_BANG] = ACTIONS(3115), + [anon_sym_TILDE] = ACTIONS(3115), + [anon_sym_DASH] = ACTIONS(3113), + [anon_sym_PLUS] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(3117), + [anon_sym_AMP] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(3119), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3113), + [anon_sym_compl] = ACTIONS(3113), + [anon_sym_DASH_DASH] = ACTIONS(3121), + [anon_sym_PLUS_PLUS] = ACTIONS(3121), + [anon_sym_sizeof] = ACTIONS(3123), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3125), + [anon_sym_co_await] = ACTIONS(3127), + [anon_sym_new] = ACTIONS(3129), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1746] = { + [sym__expression] = STATE(3725), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3001), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3001), + [sym_call_expression] = STATE(3001), + [sym_field_expression] = STATE(3001), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3001), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3001), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3085), + [anon_sym_LPAREN2] = ACTIONS(3087), + [anon_sym_BANG] = ACTIONS(3091), + [anon_sym_TILDE] = ACTIONS(3091), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3089), + [anon_sym_compl] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3095), + [anon_sym_PLUS_PLUS] = ACTIONS(3095), + [anon_sym_sizeof] = ACTIONS(3097), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3099), + [anon_sym_co_await] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1747] = { + [sym__expression] = STATE(3783), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1748] = { + [sym__expression] = STATE(3664), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1749] = { + [sym__expression] = STATE(3949), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3121), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3121), + [sym_call_expression] = STATE(3121), + [sym_field_expression] = STATE(3121), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3121), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3121), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3109), + [anon_sym_LPAREN2] = ACTIONS(3111), + [anon_sym_BANG] = ACTIONS(3115), + [anon_sym_TILDE] = ACTIONS(3115), + [anon_sym_DASH] = ACTIONS(3113), + [anon_sym_PLUS] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(3117), + [anon_sym_AMP] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(3119), + [anon_sym_LBRACK] = ACTIONS(3901), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3113), + [anon_sym_compl] = ACTIONS(3113), + [anon_sym_DASH_DASH] = ACTIONS(3121), + [anon_sym_PLUS_PLUS] = ACTIONS(3121), + [anon_sym_sizeof] = ACTIONS(3123), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3125), + [anon_sym_co_await] = ACTIONS(3127), + [anon_sym_new] = ACTIONS(3129), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1750] = { + [sym__expression] = STATE(3873), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1751] = { + [sym__expression] = STATE(3549), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1752] = { + [sym__expression] = STATE(2958), + [sym_conditional_expression] = STATE(2999), + [sym_assignment_expression] = STATE(2999), + [sym_pointer_expression] = STATE(2973), + [sym_unary_expression] = STATE(2999), + [sym_binary_expression] = STATE(2999), + [sym_update_expression] = STATE(2999), + [sym_cast_expression] = STATE(2999), + [sym_sizeof_expression] = STATE(2999), + [sym_subscript_expression] = STATE(2973), + [sym_call_expression] = STATE(2973), + [sym_field_expression] = STATE(2973), + [sym_compound_literal_expression] = STATE(2999), + [sym_parenthesized_expression] = STATE(2973), + [sym_char_literal] = STATE(2933), + [sym_concatenated_string] = STATE(2933), + [sym_string_literal] = STATE(1927), + [sym__class_name] = STATE(6445), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2999), + [sym_co_await_expression] = STATE(2999), + [sym_new_expression] = STATE(2999), + [sym_delete_expression] = STATE(2999), + [sym_requires_clause] = STATE(2999), + [sym_requires_expression] = STATE(2999), + [sym_lambda_expression] = STATE(2999), + [sym_lambda_capture_specifier] = STATE(4767), + [sym_fold_expression] = STATE(2999), + [sym_parameter_pack_expansion] = STATE(2999), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(2973), + [sym_qualified_type_identifier] = STATE(6445), + [sym_user_defined_literal] = STATE(2999), + [sym_identifier] = ACTIONS(1919), + [anon_sym_LPAREN2] = ACTIONS(1921), + [anon_sym_BANG] = ACTIONS(1925), + [anon_sym_TILDE] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1923), + [anon_sym_PLUS] = ACTIONS(1923), + [anon_sym_STAR] = ACTIONS(2671), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_COLON_COLON] = ACTIONS(1929), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1933), + [anon_sym_not] = ACTIONS(1923), + [anon_sym_compl] = ACTIONS(1923), + [anon_sym_DASH_DASH] = ACTIONS(1935), + [anon_sym_PLUS_PLUS] = ACTIONS(1935), + [anon_sym_sizeof] = ACTIONS(1937), + [sym_number_literal] = ACTIONS(1939), + [anon_sym_L_SQUOTE] = ACTIONS(1941), + [anon_sym_u_SQUOTE] = ACTIONS(1941), + [anon_sym_U_SQUOTE] = ACTIONS(1941), + [anon_sym_u8_SQUOTE] = ACTIONS(1941), + [anon_sym_SQUOTE] = ACTIONS(1941), + [anon_sym_L_DQUOTE] = ACTIONS(1943), + [anon_sym_u_DQUOTE] = ACTIONS(1943), + [anon_sym_U_DQUOTE] = ACTIONS(1943), + [anon_sym_u8_DQUOTE] = ACTIONS(1943), + [anon_sym_DQUOTE] = ACTIONS(1943), + [sym_true] = ACTIONS(1945), + [sym_false] = ACTIONS(1945), + [sym_null] = ACTIONS(1945), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1947), + [anon_sym_co_await] = ACTIONS(1949), + [anon_sym_new] = ACTIONS(1951), + [anon_sym_requires] = ACTIONS(1953), + [sym_this] = ACTIONS(1945), + [sym_nullptr] = ACTIONS(1945), + [sym_raw_string_literal] = ACTIONS(1955), + }, + [1753] = { + [sym__expression] = STATE(3728), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3001), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3001), + [sym_call_expression] = STATE(3001), + [sym_field_expression] = STATE(3001), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3001), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3001), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3085), + [anon_sym_LPAREN2] = ACTIONS(3087), + [anon_sym_BANG] = ACTIONS(3091), + [anon_sym_TILDE] = ACTIONS(3091), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3089), + [anon_sym_compl] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3095), + [anon_sym_PLUS_PLUS] = ACTIONS(3095), + [anon_sym_sizeof] = ACTIONS(3097), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3099), + [anon_sym_co_await] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1754] = { + [sym__expression] = STATE(3028), + [sym_conditional_expression] = STATE(3135), + [sym_assignment_expression] = STATE(3135), + [sym_pointer_expression] = STATE(2788), + [sym_unary_expression] = STATE(3135), + [sym_binary_expression] = STATE(3135), + [sym_update_expression] = STATE(3135), + [sym_cast_expression] = STATE(3135), + [sym_sizeof_expression] = STATE(3135), + [sym_subscript_expression] = STATE(2788), + [sym_call_expression] = STATE(2788), + [sym_field_expression] = STATE(2788), + [sym_compound_literal_expression] = STATE(3135), + [sym_parenthesized_expression] = STATE(2788), + [sym_char_literal] = STATE(2981), + [sym_concatenated_string] = STATE(2981), + [sym_string_literal] = STATE(1970), + [sym__class_name] = STATE(6450), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3135), + [sym_co_await_expression] = STATE(3135), + [sym_new_expression] = STATE(3135), + [sym_delete_expression] = STATE(3135), + [sym_requires_clause] = STATE(3135), + [sym_requires_expression] = STATE(3135), + [sym_lambda_expression] = STATE(3135), + [sym_lambda_capture_specifier] = STATE(4771), + [sym_fold_expression] = STATE(3135), + [sym_parameter_pack_expansion] = STATE(3135), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4904), + [sym_qualified_identifier] = STATE(2788), + [sym_qualified_type_identifier] = STATE(6450), + [sym_user_defined_literal] = STATE(3135), + [sym_identifier] = ACTIONS(1957), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1753), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_co_await] = ACTIONS(1455), + [anon_sym_new] = ACTIONS(1457), + [anon_sym_requires] = ACTIONS(1459), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + [sym_raw_string_literal] = ACTIONS(1461), + }, + [1755] = { + [sym__expression] = STATE(3795), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1756] = { + [sym__expression] = STATE(3896), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3121), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3121), + [sym_call_expression] = STATE(3121), + [sym_field_expression] = STATE(3121), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3121), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3121), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3109), + [anon_sym_LPAREN2] = ACTIONS(3111), + [anon_sym_BANG] = ACTIONS(3115), + [anon_sym_TILDE] = ACTIONS(3115), + [anon_sym_DASH] = ACTIONS(3113), + [anon_sym_PLUS] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(3117), + [anon_sym_AMP] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(3119), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3113), + [anon_sym_compl] = ACTIONS(3113), + [anon_sym_DASH_DASH] = ACTIONS(3121), + [anon_sym_PLUS_PLUS] = ACTIONS(3121), + [anon_sym_sizeof] = ACTIONS(3123), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3125), + [anon_sym_co_await] = ACTIONS(3127), + [anon_sym_new] = ACTIONS(3129), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1757] = { + [sym__expression] = STATE(3650), + [sym_conditional_expression] = STATE(3865), + [sym_assignment_expression] = STATE(3865), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3865), + [sym_binary_expression] = STATE(3865), + [sym_update_expression] = STATE(3865), + [sym_cast_expression] = STATE(3865), + [sym_sizeof_expression] = STATE(3865), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3865), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3707), + [sym_concatenated_string] = STATE(3707), + [sym_string_literal] = STATE(3250), + [sym__class_name] = STATE(6539), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3865), + [sym_co_await_expression] = STATE(3865), + [sym_new_expression] = STATE(3865), + [sym_delete_expression] = STATE(3865), + [sym_requires_clause] = STATE(3865), + [sym_requires_expression] = STATE(3865), + [sym_lambda_expression] = STATE(3865), + [sym_lambda_capture_specifier] = STATE(4789), + [sym_fold_expression] = STATE(3865), + [sym_parameter_pack_expansion] = STATE(3865), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(6539), + [sym_user_defined_literal] = STATE(3865), + [sym_identifier] = ACTIONS(3105), + [anon_sym_LPAREN2] = ACTIONS(2665), + [anon_sym_BANG] = ACTIONS(2667), + [anon_sym_TILDE] = ACTIONS(2667), + [anon_sym_DASH] = ACTIONS(2669), + [anon_sym_PLUS] = ACTIONS(2669), + [anon_sym_STAR] = ACTIONS(2671), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_COLON_COLON] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(3903), + [sym_primitive_type] = ACTIONS(1933), + [anon_sym_not] = ACTIONS(2669), + [anon_sym_compl] = ACTIONS(2669), + [anon_sym_DASH_DASH] = ACTIONS(2687), + [anon_sym_PLUS_PLUS] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2689), + [sym_number_literal] = ACTIONS(2691), + [anon_sym_L_SQUOTE] = ACTIONS(2693), + [anon_sym_u_SQUOTE] = ACTIONS(2693), + [anon_sym_U_SQUOTE] = ACTIONS(2693), + [anon_sym_u8_SQUOTE] = ACTIONS(2693), + [anon_sym_SQUOTE] = ACTIONS(2693), + [anon_sym_L_DQUOTE] = ACTIONS(2695), + [anon_sym_u_DQUOTE] = ACTIONS(2695), + [anon_sym_U_DQUOTE] = ACTIONS(2695), + [anon_sym_u8_DQUOTE] = ACTIONS(2695), + [anon_sym_DQUOTE] = ACTIONS(2695), + [sym_true] = ACTIONS(2697), + [sym_false] = ACTIONS(2697), + [sym_null] = ACTIONS(2697), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(2707), + [anon_sym_co_await] = ACTIONS(2709), + [anon_sym_new] = ACTIONS(2711), + [anon_sym_requires] = ACTIONS(2713), + [sym_this] = ACTIONS(2697), + [sym_nullptr] = ACTIONS(2697), + [sym_raw_string_literal] = ACTIONS(2715), + }, + [1758] = { + [sym__expression] = STATE(3975), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3001), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3001), + [sym_call_expression] = STATE(3001), + [sym_field_expression] = STATE(3001), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3001), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3001), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3085), + [anon_sym_LPAREN2] = ACTIONS(3087), + [anon_sym_BANG] = ACTIONS(3091), + [anon_sym_TILDE] = ACTIONS(3091), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3089), + [anon_sym_compl] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3095), + [anon_sym_PLUS_PLUS] = ACTIONS(3095), + [anon_sym_sizeof] = ACTIONS(3097), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3099), + [anon_sym_co_await] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1759] = { + [sym__expression] = STATE(3022), + [sym_conditional_expression] = STATE(3135), + [sym_assignment_expression] = STATE(3135), + [sym_pointer_expression] = STATE(2788), + [sym_unary_expression] = STATE(3135), + [sym_binary_expression] = STATE(3135), + [sym_update_expression] = STATE(3135), + [sym_cast_expression] = STATE(3135), + [sym_sizeof_expression] = STATE(3135), + [sym_subscript_expression] = STATE(2788), + [sym_call_expression] = STATE(2788), + [sym_field_expression] = STATE(2788), + [sym_compound_literal_expression] = STATE(3135), + [sym_parenthesized_expression] = STATE(2788), + [sym_char_literal] = STATE(2981), + [sym_concatenated_string] = STATE(2981), + [sym_string_literal] = STATE(1970), + [sym__class_name] = STATE(6450), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3135), + [sym_co_await_expression] = STATE(3135), + [sym_new_expression] = STATE(3135), + [sym_delete_expression] = STATE(3135), + [sym_requires_clause] = STATE(3135), + [sym_requires_expression] = STATE(3135), + [sym_lambda_expression] = STATE(3135), + [sym_lambda_capture_specifier] = STATE(4771), + [sym_fold_expression] = STATE(3135), + [sym_parameter_pack_expansion] = STATE(3135), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4904), + [sym_qualified_identifier] = STATE(2788), + [sym_qualified_type_identifier] = STATE(6450), + [sym_user_defined_literal] = STATE(3135), + [sym_identifier] = ACTIONS(1957), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1753), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_co_await] = ACTIONS(1455), + [anon_sym_new] = ACTIONS(1457), + [anon_sym_requires] = ACTIONS(1459), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + [sym_raw_string_literal] = ACTIONS(1461), + }, + [1760] = { + [sym__expression] = STATE(2543), + [sym_conditional_expression] = STATE(2562), + [sym_assignment_expression] = STATE(2562), + [sym_pointer_expression] = STATE(2549), + [sym_unary_expression] = STATE(2562), + [sym_binary_expression] = STATE(2562), + [sym_update_expression] = STATE(2562), + [sym_cast_expression] = STATE(2562), + [sym_sizeof_expression] = STATE(2562), + [sym_subscript_expression] = STATE(2549), + [sym_call_expression] = STATE(2549), + [sym_field_expression] = STATE(2549), + [sym_compound_literal_expression] = STATE(2562), + [sym_parenthesized_expression] = STATE(2549), + [sym_char_literal] = STATE(2344), + [sym_concatenated_string] = STATE(2344), + [sym_string_literal] = STATE(1824), + [sym__class_name] = STATE(6654), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2562), + [sym_co_await_expression] = STATE(2562), + [sym_new_expression] = STATE(2562), + [sym_delete_expression] = STATE(2562), + [sym_requires_clause] = STATE(2562), + [sym_requires_expression] = STATE(2562), + [sym_lambda_expression] = STATE(2562), + [sym_lambda_capture_specifier] = STATE(4787), + [sym_fold_expression] = STATE(2562), + [sym_parameter_pack_expansion] = STATE(2562), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2549), + [sym_qualified_type_identifier] = STATE(6654), + [sym_user_defined_literal] = STATE(2562), + [sym_identifier] = ACTIONS(1697), + [anon_sym_LPAREN2] = ACTIONS(1701), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1703), + [anon_sym_PLUS] = ACTIONS(1703), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(1703), + [anon_sym_compl] = ACTIONS(1703), + [anon_sym_DASH_DASH] = ACTIONS(1717), + [anon_sym_PLUS_PLUS] = ACTIONS(1717), + [anon_sym_sizeof] = ACTIONS(1719), + [sym_number_literal] = ACTIONS(1721), + [anon_sym_L_SQUOTE] = ACTIONS(1723), + [anon_sym_u_SQUOTE] = ACTIONS(1723), + [anon_sym_U_SQUOTE] = ACTIONS(1723), + [anon_sym_u8_SQUOTE] = ACTIONS(1723), + [anon_sym_SQUOTE] = ACTIONS(1723), + [anon_sym_L_DQUOTE] = ACTIONS(1725), + [anon_sym_u_DQUOTE] = ACTIONS(1725), + [anon_sym_U_DQUOTE] = ACTIONS(1725), + [anon_sym_u8_DQUOTE] = ACTIONS(1725), + [anon_sym_DQUOTE] = ACTIONS(1725), + [sym_true] = ACTIONS(1727), + [sym_false] = ACTIONS(1727), + [sym_null] = ACTIONS(1727), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1729), + [anon_sym_co_await] = ACTIONS(1731), + [anon_sym_new] = ACTIONS(1733), + [anon_sym_requires] = ACTIONS(1735), + [sym_this] = ACTIONS(1727), + [sym_nullptr] = ACTIONS(1727), + [sym_raw_string_literal] = ACTIONS(1737), + }, + [1761] = { + [sym__expression] = STATE(3924), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3121), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3121), + [sym_call_expression] = STATE(3121), + [sym_field_expression] = STATE(3121), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3121), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(3121), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3109), + [anon_sym_LPAREN2] = ACTIONS(3111), + [anon_sym_BANG] = ACTIONS(3115), + [anon_sym_TILDE] = ACTIONS(3115), + [anon_sym_DASH] = ACTIONS(3113), + [anon_sym_PLUS] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(3117), + [anon_sym_AMP] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(3119), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(3113), + [anon_sym_compl] = ACTIONS(3113), + [anon_sym_DASH_DASH] = ACTIONS(3121), + [anon_sym_PLUS_PLUS] = ACTIONS(3121), + [anon_sym_sizeof] = ACTIONS(3123), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(3125), + [anon_sym_co_await] = ACTIONS(3127), + [anon_sym_new] = ACTIONS(3129), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1762] = { + [sym__expression] = STATE(3684), + [sym_conditional_expression] = STATE(3865), + [sym_assignment_expression] = STATE(3865), + [sym_pointer_expression] = STATE(3016), + [sym_unary_expression] = STATE(3865), + [sym_binary_expression] = STATE(3865), + [sym_update_expression] = STATE(3865), + [sym_cast_expression] = STATE(3865), + [sym_sizeof_expression] = STATE(3865), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3865), + [sym_parenthesized_expression] = STATE(3016), + [sym_char_literal] = STATE(3707), + [sym_concatenated_string] = STATE(3707), + [sym_string_literal] = STATE(3250), + [sym__class_name] = STATE(6539), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3865), + [sym_co_await_expression] = STATE(3865), + [sym_new_expression] = STATE(3865), + [sym_delete_expression] = STATE(3865), + [sym_requires_clause] = STATE(3865), + [sym_requires_expression] = STATE(3865), + [sym_lambda_expression] = STATE(3865), + [sym_lambda_capture_specifier] = STATE(4789), + [sym_fold_expression] = STATE(3865), + [sym_parameter_pack_expansion] = STATE(3865), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4924), + [sym_qualified_identifier] = STATE(3016), + [sym_qualified_type_identifier] = STATE(6539), + [sym_user_defined_literal] = STATE(3865), + [sym_identifier] = ACTIONS(3105), + [anon_sym_LPAREN2] = ACTIONS(2665), + [anon_sym_BANG] = ACTIONS(2667), + [anon_sym_TILDE] = ACTIONS(2667), + [anon_sym_DASH] = ACTIONS(2669), + [anon_sym_PLUS] = ACTIONS(2669), + [anon_sym_STAR] = ACTIONS(2671), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_COLON_COLON] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(3905), + [sym_primitive_type] = ACTIONS(1933), + [anon_sym_not] = ACTIONS(2669), + [anon_sym_compl] = ACTIONS(2669), + [anon_sym_DASH_DASH] = ACTIONS(2687), + [anon_sym_PLUS_PLUS] = ACTIONS(2687), + [anon_sym_sizeof] = ACTIONS(2689), + [sym_number_literal] = ACTIONS(2691), + [anon_sym_L_SQUOTE] = ACTIONS(2693), + [anon_sym_u_SQUOTE] = ACTIONS(2693), + [anon_sym_U_SQUOTE] = ACTIONS(2693), + [anon_sym_u8_SQUOTE] = ACTIONS(2693), + [anon_sym_SQUOTE] = ACTIONS(2693), + [anon_sym_L_DQUOTE] = ACTIONS(2695), + [anon_sym_u_DQUOTE] = ACTIONS(2695), + [anon_sym_U_DQUOTE] = ACTIONS(2695), + [anon_sym_u8_DQUOTE] = ACTIONS(2695), + [anon_sym_DQUOTE] = ACTIONS(2695), + [sym_true] = ACTIONS(2697), + [sym_false] = ACTIONS(2697), + [sym_null] = ACTIONS(2697), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(2707), + [anon_sym_co_await] = ACTIONS(2709), + [anon_sym_new] = ACTIONS(2711), + [anon_sym_requires] = ACTIONS(2713), + [sym_this] = ACTIONS(2697), + [sym_nullptr] = ACTIONS(2697), + [sym_raw_string_literal] = ACTIONS(2715), + }, + [1763] = { + [sym__expression] = STATE(2538), + [sym_conditional_expression] = STATE(2562), + [sym_assignment_expression] = STATE(2562), + [sym_pointer_expression] = STATE(2549), + [sym_unary_expression] = STATE(2562), + [sym_binary_expression] = STATE(2562), + [sym_update_expression] = STATE(2562), + [sym_cast_expression] = STATE(2562), + [sym_sizeof_expression] = STATE(2562), + [sym_subscript_expression] = STATE(2549), + [sym_call_expression] = STATE(2549), + [sym_field_expression] = STATE(2549), + [sym_compound_literal_expression] = STATE(2562), + [sym_parenthesized_expression] = STATE(2549), + [sym_char_literal] = STATE(2344), + [sym_concatenated_string] = STATE(2344), + [sym_string_literal] = STATE(1824), + [sym__class_name] = STATE(6654), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2562), + [sym_co_await_expression] = STATE(2562), + [sym_new_expression] = STATE(2562), + [sym_delete_expression] = STATE(2562), + [sym_requires_clause] = STATE(2562), + [sym_requires_expression] = STATE(2562), + [sym_lambda_expression] = STATE(2562), + [sym_lambda_capture_specifier] = STATE(4787), + [sym_fold_expression] = STATE(2562), + [sym_parameter_pack_expansion] = STATE(2562), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2549), + [sym_qualified_type_identifier] = STATE(6654), + [sym_user_defined_literal] = STATE(2562), + [sym_identifier] = ACTIONS(1697), + [anon_sym_LPAREN2] = ACTIONS(1701), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1703), + [anon_sym_PLUS] = ACTIONS(1703), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(1703), + [anon_sym_compl] = ACTIONS(1703), + [anon_sym_DASH_DASH] = ACTIONS(1717), + [anon_sym_PLUS_PLUS] = ACTIONS(1717), + [anon_sym_sizeof] = ACTIONS(1719), + [sym_number_literal] = ACTIONS(1721), + [anon_sym_L_SQUOTE] = ACTIONS(1723), + [anon_sym_u_SQUOTE] = ACTIONS(1723), + [anon_sym_U_SQUOTE] = ACTIONS(1723), + [anon_sym_u8_SQUOTE] = ACTIONS(1723), + [anon_sym_SQUOTE] = ACTIONS(1723), + [anon_sym_L_DQUOTE] = ACTIONS(1725), + [anon_sym_u_DQUOTE] = ACTIONS(1725), + [anon_sym_U_DQUOTE] = ACTIONS(1725), + [anon_sym_u8_DQUOTE] = ACTIONS(1725), + [anon_sym_DQUOTE] = ACTIONS(1725), + [sym_true] = ACTIONS(1727), + [sym_false] = ACTIONS(1727), + [sym_null] = ACTIONS(1727), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1729), + [anon_sym_co_await] = ACTIONS(1731), + [anon_sym_new] = ACTIONS(1733), + [anon_sym_requires] = ACTIONS(1735), + [sym_this] = ACTIONS(1727), + [sym_nullptr] = ACTIONS(1727), + [sym_raw_string_literal] = ACTIONS(1737), + }, + [1764] = { + [sym__expression] = STATE(2488), + [sym_conditional_expression] = STATE(2562), + [sym_assignment_expression] = STATE(2562), + [sym_pointer_expression] = STATE(2549), + [sym_unary_expression] = STATE(2562), + [sym_binary_expression] = STATE(2562), + [sym_update_expression] = STATE(2562), + [sym_cast_expression] = STATE(2562), + [sym_sizeof_expression] = STATE(2562), + [sym_subscript_expression] = STATE(2549), + [sym_call_expression] = STATE(2549), + [sym_field_expression] = STATE(2549), + [sym_compound_literal_expression] = STATE(2562), + [sym_parenthesized_expression] = STATE(2549), + [sym_char_literal] = STATE(2344), + [sym_concatenated_string] = STATE(2344), + [sym_string_literal] = STATE(1824), + [sym__class_name] = STATE(6654), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2562), + [sym_co_await_expression] = STATE(2562), + [sym_new_expression] = STATE(2562), + [sym_delete_expression] = STATE(2562), + [sym_requires_clause] = STATE(2562), + [sym_requires_expression] = STATE(2562), + [sym_lambda_expression] = STATE(2562), + [sym_lambda_capture_specifier] = STATE(4787), + [sym_fold_expression] = STATE(2562), + [sym_parameter_pack_expansion] = STATE(2562), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2549), + [sym_qualified_type_identifier] = STATE(6654), + [sym_user_defined_literal] = STATE(2562), + [sym_identifier] = ACTIONS(1697), + [anon_sym_LPAREN2] = ACTIONS(1701), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1703), + [anon_sym_PLUS] = ACTIONS(1703), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(1703), + [anon_sym_compl] = ACTIONS(1703), + [anon_sym_DASH_DASH] = ACTIONS(1717), + [anon_sym_PLUS_PLUS] = ACTIONS(1717), + [anon_sym_sizeof] = ACTIONS(1719), + [sym_number_literal] = ACTIONS(1721), + [anon_sym_L_SQUOTE] = ACTIONS(1723), + [anon_sym_u_SQUOTE] = ACTIONS(1723), + [anon_sym_U_SQUOTE] = ACTIONS(1723), + [anon_sym_u8_SQUOTE] = ACTIONS(1723), + [anon_sym_SQUOTE] = ACTIONS(1723), + [anon_sym_L_DQUOTE] = ACTIONS(1725), + [anon_sym_u_DQUOTE] = ACTIONS(1725), + [anon_sym_U_DQUOTE] = ACTIONS(1725), + [anon_sym_u8_DQUOTE] = ACTIONS(1725), + [anon_sym_DQUOTE] = ACTIONS(1725), + [sym_true] = ACTIONS(1727), + [sym_false] = ACTIONS(1727), + [sym_null] = ACTIONS(1727), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1729), + [anon_sym_co_await] = ACTIONS(1731), + [anon_sym_new] = ACTIONS(1733), + [anon_sym_requires] = ACTIONS(1735), + [sym_this] = ACTIONS(1727), + [sym_nullptr] = ACTIONS(1727), + [sym_raw_string_literal] = ACTIONS(1737), + }, + [1765] = { + [sym__expression] = STATE(3765), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(2729), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_subscript_expression] = STATE(2729), + [sym_call_expression] = STATE(2729), + [sym_field_expression] = STATE(2729), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(2729), + [sym_char_literal] = STATE(3403), + [sym_concatenated_string] = STATE(3403), + [sym_string_literal] = STATE(3109), + [sym__class_name] = STATE(6680), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3435), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(4778), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2729), + [sym_qualified_type_identifier] = STATE(6680), + [sym_user_defined_literal] = STATE(3435), + [sym_identifier] = ACTIONS(3007), + [anon_sym_LPAREN2] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(93), + [anon_sym_PLUS_PLUS] = ACTIONS(93), + [anon_sym_sizeof] = ACTIONS(95), + [sym_number_literal] = ACTIONS(97), + [anon_sym_L_SQUOTE] = ACTIONS(99), + [anon_sym_u_SQUOTE] = ACTIONS(99), + [anon_sym_U_SQUOTE] = ACTIONS(99), + [anon_sym_u8_SQUOTE] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(99), + [anon_sym_L_DQUOTE] = ACTIONS(101), + [anon_sym_u_DQUOTE] = ACTIONS(101), + [anon_sym_U_DQUOTE] = ACTIONS(101), + [anon_sym_u8_DQUOTE] = ACTIONS(101), + [anon_sym_DQUOTE] = ACTIONS(101), + [sym_true] = ACTIONS(103), + [sym_false] = ACTIONS(103), + [sym_null] = ACTIONS(103), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(121), + [anon_sym_co_await] = ACTIONS(137), + [anon_sym_new] = ACTIONS(139), + [anon_sym_requires] = ACTIONS(141), + [sym_this] = ACTIONS(103), + [sym_nullptr] = ACTIONS(103), + [sym_raw_string_literal] = ACTIONS(143), + }, + [1766] = { + [sym__expression] = STATE(3034), + [sym_conditional_expression] = STATE(3135), + [sym_assignment_expression] = STATE(3135), + [sym_pointer_expression] = STATE(2788), + [sym_unary_expression] = STATE(3135), + [sym_binary_expression] = STATE(3135), + [sym_update_expression] = STATE(3135), + [sym_cast_expression] = STATE(3135), + [sym_sizeof_expression] = STATE(3135), + [sym_subscript_expression] = STATE(2788), + [sym_call_expression] = STATE(2788), + [sym_field_expression] = STATE(2788), + [sym_compound_literal_expression] = STATE(3135), + [sym_parenthesized_expression] = STATE(2788), + [sym_char_literal] = STATE(2981), + [sym_concatenated_string] = STATE(2981), + [sym_string_literal] = STATE(1970), + [sym__class_name] = STATE(6450), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3135), + [sym_co_await_expression] = STATE(3135), + [sym_new_expression] = STATE(3135), + [sym_delete_expression] = STATE(3135), + [sym_requires_clause] = STATE(3135), + [sym_requires_expression] = STATE(3135), + [sym_lambda_expression] = STATE(3135), + [sym_lambda_capture_specifier] = STATE(4771), + [sym_fold_expression] = STATE(3135), + [sym_parameter_pack_expansion] = STATE(3135), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4904), + [sym_qualified_identifier] = STATE(2788), + [sym_qualified_type_identifier] = STATE(6450), + [sym_user_defined_literal] = STATE(3135), + [sym_identifier] = ACTIONS(1957), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1753), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_co_await] = ACTIONS(1455), + [anon_sym_new] = ACTIONS(1457), + [anon_sym_requires] = ACTIONS(1459), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + [sym_raw_string_literal] = ACTIONS(1461), + }, + [1767] = { + [sym__expression] = STATE(3033), + [sym_conditional_expression] = STATE(3135), + [sym_assignment_expression] = STATE(3135), + [sym_pointer_expression] = STATE(2788), + [sym_unary_expression] = STATE(3135), + [sym_binary_expression] = STATE(3135), + [sym_update_expression] = STATE(3135), + [sym_cast_expression] = STATE(3135), + [sym_sizeof_expression] = STATE(3135), + [sym_subscript_expression] = STATE(2788), + [sym_call_expression] = STATE(2788), + [sym_field_expression] = STATE(2788), + [sym_compound_literal_expression] = STATE(3135), + [sym_parenthesized_expression] = STATE(2788), + [sym_char_literal] = STATE(2981), + [sym_concatenated_string] = STATE(2981), + [sym_string_literal] = STATE(1970), + [sym__class_name] = STATE(6450), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(3135), + [sym_co_await_expression] = STATE(3135), + [sym_new_expression] = STATE(3135), + [sym_delete_expression] = STATE(3135), + [sym_requires_clause] = STATE(3135), + [sym_requires_expression] = STATE(3135), + [sym_lambda_expression] = STATE(3135), + [sym_lambda_capture_specifier] = STATE(4771), + [sym_fold_expression] = STATE(3135), + [sym_parameter_pack_expansion] = STATE(3135), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4904), + [sym_qualified_identifier] = STATE(2788), + [sym_qualified_type_identifier] = STATE(6450), + [sym_user_defined_literal] = STATE(3135), + [sym_identifier] = ACTIONS(1957), + [anon_sym_LPAREN2] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_TILDE] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1753), + [anon_sym_not] = ACTIONS(1423), + [anon_sym_compl] = ACTIONS(1423), + [anon_sym_DASH_DASH] = ACTIONS(1439), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_sizeof] = ACTIONS(1441), + [sym_number_literal] = ACTIONS(1443), + [anon_sym_L_SQUOTE] = ACTIONS(1445), + [anon_sym_u_SQUOTE] = ACTIONS(1445), + [anon_sym_U_SQUOTE] = ACTIONS(1445), + [anon_sym_u8_SQUOTE] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_L_DQUOTE] = ACTIONS(1447), + [anon_sym_u_DQUOTE] = ACTIONS(1447), + [anon_sym_U_DQUOTE] = ACTIONS(1447), + [anon_sym_u8_DQUOTE] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym_true] = ACTIONS(1449), + [sym_false] = ACTIONS(1449), + [sym_null] = ACTIONS(1449), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1453), + [anon_sym_co_await] = ACTIONS(1455), + [anon_sym_new] = ACTIONS(1457), + [anon_sym_requires] = ACTIONS(1459), + [sym_this] = ACTIONS(1449), + [sym_nullptr] = ACTIONS(1449), + [sym_raw_string_literal] = ACTIONS(1461), + }, + [1768] = { + [sym__expression] = STATE(2499), + [sym_conditional_expression] = STATE(2562), + [sym_assignment_expression] = STATE(2562), + [sym_pointer_expression] = STATE(2549), + [sym_unary_expression] = STATE(2562), + [sym_binary_expression] = STATE(2562), + [sym_update_expression] = STATE(2562), + [sym_cast_expression] = STATE(2562), + [sym_sizeof_expression] = STATE(2562), + [sym_subscript_expression] = STATE(2549), + [sym_call_expression] = STATE(2549), + [sym_field_expression] = STATE(2549), + [sym_compound_literal_expression] = STATE(2562), + [sym_parenthesized_expression] = STATE(2549), + [sym_char_literal] = STATE(2344), + [sym_concatenated_string] = STATE(2344), + [sym_string_literal] = STATE(1824), + [sym__class_name] = STATE(6654), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2562), + [sym_co_await_expression] = STATE(2562), + [sym_new_expression] = STATE(2562), + [sym_delete_expression] = STATE(2562), + [sym_requires_clause] = STATE(2562), + [sym_requires_expression] = STATE(2562), + [sym_lambda_expression] = STATE(2562), + [sym_lambda_capture_specifier] = STATE(4787), + [sym_fold_expression] = STATE(2562), + [sym_parameter_pack_expansion] = STATE(2562), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2549), + [sym_qualified_type_identifier] = STATE(6654), + [sym_user_defined_literal] = STATE(2562), + [sym_identifier] = ACTIONS(1697), + [anon_sym_LPAREN2] = ACTIONS(1701), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1703), + [anon_sym_PLUS] = ACTIONS(1703), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(1703), + [anon_sym_compl] = ACTIONS(1703), + [anon_sym_DASH_DASH] = ACTIONS(1717), + [anon_sym_PLUS_PLUS] = ACTIONS(1717), + [anon_sym_sizeof] = ACTIONS(1719), + [sym_number_literal] = ACTIONS(1721), + [anon_sym_L_SQUOTE] = ACTIONS(1723), + [anon_sym_u_SQUOTE] = ACTIONS(1723), + [anon_sym_U_SQUOTE] = ACTIONS(1723), + [anon_sym_u8_SQUOTE] = ACTIONS(1723), + [anon_sym_SQUOTE] = ACTIONS(1723), + [anon_sym_L_DQUOTE] = ACTIONS(1725), + [anon_sym_u_DQUOTE] = ACTIONS(1725), + [anon_sym_U_DQUOTE] = ACTIONS(1725), + [anon_sym_u8_DQUOTE] = ACTIONS(1725), + [anon_sym_DQUOTE] = ACTIONS(1725), + [sym_true] = ACTIONS(1727), + [sym_false] = ACTIONS(1727), + [sym_null] = ACTIONS(1727), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1729), + [anon_sym_co_await] = ACTIONS(1731), + [anon_sym_new] = ACTIONS(1733), + [anon_sym_requires] = ACTIONS(1735), + [sym_this] = ACTIONS(1727), + [sym_nullptr] = ACTIONS(1727), + [sym_raw_string_literal] = ACTIONS(1737), + }, + [1769] = { + [sym__expression] = STATE(2504), + [sym_conditional_expression] = STATE(2562), + [sym_assignment_expression] = STATE(2562), + [sym_pointer_expression] = STATE(2549), + [sym_unary_expression] = STATE(2562), + [sym_binary_expression] = STATE(2562), + [sym_update_expression] = STATE(2562), + [sym_cast_expression] = STATE(2562), + [sym_sizeof_expression] = STATE(2562), + [sym_subscript_expression] = STATE(2549), + [sym_call_expression] = STATE(2549), + [sym_field_expression] = STATE(2549), + [sym_compound_literal_expression] = STATE(2562), + [sym_parenthesized_expression] = STATE(2549), + [sym_char_literal] = STATE(2344), + [sym_concatenated_string] = STATE(2344), + [sym_string_literal] = STATE(1824), + [sym__class_name] = STATE(6654), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2562), + [sym_co_await_expression] = STATE(2562), + [sym_new_expression] = STATE(2562), + [sym_delete_expression] = STATE(2562), + [sym_requires_clause] = STATE(2562), + [sym_requires_expression] = STATE(2562), + [sym_lambda_expression] = STATE(2562), + [sym_lambda_capture_specifier] = STATE(4787), + [sym_fold_expression] = STATE(2562), + [sym_parameter_pack_expansion] = STATE(2562), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2549), + [sym_qualified_type_identifier] = STATE(6654), + [sym_user_defined_literal] = STATE(2562), + [sym_identifier] = ACTIONS(1697), + [anon_sym_LPAREN2] = ACTIONS(1701), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1703), + [anon_sym_PLUS] = ACTIONS(1703), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(1703), + [anon_sym_compl] = ACTIONS(1703), + [anon_sym_DASH_DASH] = ACTIONS(1717), + [anon_sym_PLUS_PLUS] = ACTIONS(1717), + [anon_sym_sizeof] = ACTIONS(1719), + [sym_number_literal] = ACTIONS(1721), + [anon_sym_L_SQUOTE] = ACTIONS(1723), + [anon_sym_u_SQUOTE] = ACTIONS(1723), + [anon_sym_U_SQUOTE] = ACTIONS(1723), + [anon_sym_u8_SQUOTE] = ACTIONS(1723), + [anon_sym_SQUOTE] = ACTIONS(1723), + [anon_sym_L_DQUOTE] = ACTIONS(1725), + [anon_sym_u_DQUOTE] = ACTIONS(1725), + [anon_sym_U_DQUOTE] = ACTIONS(1725), + [anon_sym_u8_DQUOTE] = ACTIONS(1725), + [anon_sym_DQUOTE] = ACTIONS(1725), + [sym_true] = ACTIONS(1727), + [sym_false] = ACTIONS(1727), + [sym_null] = ACTIONS(1727), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1729), + [anon_sym_co_await] = ACTIONS(1731), + [anon_sym_new] = ACTIONS(1733), + [anon_sym_requires] = ACTIONS(1735), + [sym_this] = ACTIONS(1727), + [sym_nullptr] = ACTIONS(1727), + [sym_raw_string_literal] = ACTIONS(1737), + }, + [1770] = { + [sym__expression] = STATE(2508), + [sym_conditional_expression] = STATE(2562), + [sym_assignment_expression] = STATE(2562), + [sym_pointer_expression] = STATE(2549), + [sym_unary_expression] = STATE(2562), + [sym_binary_expression] = STATE(2562), + [sym_update_expression] = STATE(2562), + [sym_cast_expression] = STATE(2562), + [sym_sizeof_expression] = STATE(2562), + [sym_subscript_expression] = STATE(2549), + [sym_call_expression] = STATE(2549), + [sym_field_expression] = STATE(2549), + [sym_compound_literal_expression] = STATE(2562), + [sym_parenthesized_expression] = STATE(2549), + [sym_char_literal] = STATE(2344), + [sym_concatenated_string] = STATE(2344), + [sym_string_literal] = STATE(1824), + [sym__class_name] = STATE(6654), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2562), + [sym_co_await_expression] = STATE(2562), + [sym_new_expression] = STATE(2562), + [sym_delete_expression] = STATE(2562), + [sym_requires_clause] = STATE(2562), + [sym_requires_expression] = STATE(2562), + [sym_lambda_expression] = STATE(2562), + [sym_lambda_capture_specifier] = STATE(4787), + [sym_fold_expression] = STATE(2562), + [sym_parameter_pack_expansion] = STATE(2562), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2549), + [sym_qualified_type_identifier] = STATE(6654), + [sym_user_defined_literal] = STATE(2562), + [sym_identifier] = ACTIONS(1697), + [anon_sym_LPAREN2] = ACTIONS(1701), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1703), + [anon_sym_PLUS] = ACTIONS(1703), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(1703), + [anon_sym_compl] = ACTIONS(1703), + [anon_sym_DASH_DASH] = ACTIONS(1717), + [anon_sym_PLUS_PLUS] = ACTIONS(1717), + [anon_sym_sizeof] = ACTIONS(1719), + [sym_number_literal] = ACTIONS(1721), + [anon_sym_L_SQUOTE] = ACTIONS(1723), + [anon_sym_u_SQUOTE] = ACTIONS(1723), + [anon_sym_U_SQUOTE] = ACTIONS(1723), + [anon_sym_u8_SQUOTE] = ACTIONS(1723), + [anon_sym_SQUOTE] = ACTIONS(1723), + [anon_sym_L_DQUOTE] = ACTIONS(1725), + [anon_sym_u_DQUOTE] = ACTIONS(1725), + [anon_sym_U_DQUOTE] = ACTIONS(1725), + [anon_sym_u8_DQUOTE] = ACTIONS(1725), + [anon_sym_DQUOTE] = ACTIONS(1725), + [sym_true] = ACTIONS(1727), + [sym_false] = ACTIONS(1727), + [sym_null] = ACTIONS(1727), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1729), + [anon_sym_co_await] = ACTIONS(1731), + [anon_sym_new] = ACTIONS(1733), + [anon_sym_requires] = ACTIONS(1735), + [sym_this] = ACTIONS(1727), + [sym_nullptr] = ACTIONS(1727), + [sym_raw_string_literal] = ACTIONS(1737), + }, + [1771] = { + [sym__expression] = STATE(2515), + [sym_conditional_expression] = STATE(2562), + [sym_assignment_expression] = STATE(2562), + [sym_pointer_expression] = STATE(2549), + [sym_unary_expression] = STATE(2562), + [sym_binary_expression] = STATE(2562), + [sym_update_expression] = STATE(2562), + [sym_cast_expression] = STATE(2562), + [sym_sizeof_expression] = STATE(2562), + [sym_subscript_expression] = STATE(2549), + [sym_call_expression] = STATE(2549), + [sym_field_expression] = STATE(2549), + [sym_compound_literal_expression] = STATE(2562), + [sym_parenthesized_expression] = STATE(2549), + [sym_char_literal] = STATE(2344), + [sym_concatenated_string] = STATE(2344), + [sym_string_literal] = STATE(1824), + [sym__class_name] = STATE(6654), + [sym_template_type] = STATE(3262), + [sym_template_function] = STATE(2562), + [sym_co_await_expression] = STATE(2562), + [sym_new_expression] = STATE(2562), + [sym_delete_expression] = STATE(2562), + [sym_requires_clause] = STATE(2562), + [sym_requires_expression] = STATE(2562), + [sym_lambda_expression] = STATE(2562), + [sym_lambda_capture_specifier] = STATE(4787), + [sym_fold_expression] = STATE(2562), + [sym_parameter_pack_expansion] = STATE(2562), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(4939), + [sym_qualified_identifier] = STATE(2549), + [sym_qualified_type_identifier] = STATE(6654), + [sym_user_defined_literal] = STATE(2562), + [sym_identifier] = ACTIONS(1697), + [anon_sym_LPAREN2] = ACTIONS(1701), + [anon_sym_BANG] = ACTIONS(1705), + [anon_sym_TILDE] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1703), + [anon_sym_PLUS] = ACTIONS(1703), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1715), + [anon_sym_not] = ACTIONS(1703), + [anon_sym_compl] = ACTIONS(1703), + [anon_sym_DASH_DASH] = ACTIONS(1717), + [anon_sym_PLUS_PLUS] = ACTIONS(1717), + [anon_sym_sizeof] = ACTIONS(1719), + [sym_number_literal] = ACTIONS(1721), + [anon_sym_L_SQUOTE] = ACTIONS(1723), + [anon_sym_u_SQUOTE] = ACTIONS(1723), + [anon_sym_U_SQUOTE] = ACTIONS(1723), + [anon_sym_u8_SQUOTE] = ACTIONS(1723), + [anon_sym_SQUOTE] = ACTIONS(1723), + [anon_sym_L_DQUOTE] = ACTIONS(1725), + [anon_sym_u_DQUOTE] = ACTIONS(1725), + [anon_sym_U_DQUOTE] = ACTIONS(1725), + [anon_sym_u8_DQUOTE] = ACTIONS(1725), + [anon_sym_DQUOTE] = ACTIONS(1725), + [sym_true] = ACTIONS(1727), + [sym_false] = ACTIONS(1727), + [sym_null] = ACTIONS(1727), + [sym_comment] = ACTIONS(3), + [anon_sym_template] = ACTIONS(976), + [anon_sym_delete] = ACTIONS(1729), + [anon_sym_co_await] = ACTIONS(1731), + [anon_sym_new] = ACTIONS(1733), + [anon_sym_requires] = ACTIONS(1735), + [sym_this] = ACTIONS(1727), + [sym_nullptr] = ACTIONS(1727), + [sym_raw_string_literal] = ACTIONS(1737), + }, + [1772] = { + [sym_identifier] = ACTIONS(3487), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3489), + [anon_sym_COMMA] = ACTIONS(3489), + [anon_sym_RPAREN] = ACTIONS(3489), + [anon_sym_LPAREN2] = ACTIONS(3489), + [anon_sym_TILDE] = ACTIONS(3489), + [anon_sym_DASH] = ACTIONS(3487), + [anon_sym_PLUS] = ACTIONS(3487), + [anon_sym_STAR] = ACTIONS(3489), + [anon_sym_SLASH] = ACTIONS(3487), + [anon_sym_PERCENT] = ACTIONS(3489), + [anon_sym_PIPE_PIPE] = ACTIONS(3489), + [anon_sym_AMP_AMP] = ACTIONS(3489), + [anon_sym_PIPE] = ACTIONS(3487), + [anon_sym_CARET] = ACTIONS(3489), + [anon_sym_AMP] = ACTIONS(3487), + [anon_sym_EQ_EQ] = ACTIONS(3489), + [anon_sym_BANG_EQ] = ACTIONS(3489), + [anon_sym_GT] = ACTIONS(3487), + [anon_sym_GT_EQ] = ACTIONS(3489), + [anon_sym_LT_EQ] = ACTIONS(3487), + [anon_sym_LT] = ACTIONS(3487), + [anon_sym_LT_LT] = ACTIONS(3489), + [anon_sym_GT_GT] = ACTIONS(3489), + [anon_sym_SEMI] = ACTIONS(3489), + [anon_sym_extern] = ACTIONS(3487), + [anon_sym___attribute__] = ACTIONS(3487), + [anon_sym_COLON_COLON] = ACTIONS(3489), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3489), + [anon_sym___declspec] = ACTIONS(3487), + [anon_sym___based] = ACTIONS(3487), + [anon_sym_LBRACE] = ACTIONS(3489), + [anon_sym_RBRACE] = ACTIONS(3489), + [anon_sym_LBRACK] = ACTIONS(3487), + [anon_sym_EQ] = ACTIONS(3487), + [anon_sym_static] = ACTIONS(3487), + [anon_sym_register] = ACTIONS(3487), + [anon_sym_inline] = ACTIONS(3487), + [anon_sym_thread_local] = ACTIONS(3487), + [anon_sym_const] = ACTIONS(3487), + [anon_sym_volatile] = ACTIONS(3487), + [anon_sym_restrict] = ACTIONS(3487), + [anon_sym__Atomic] = ACTIONS(3487), + [anon_sym_mutable] = ACTIONS(3487), + [anon_sym_constexpr] = ACTIONS(3487), + [anon_sym_constinit] = ACTIONS(3487), + [anon_sym_consteval] = ACTIONS(3487), + [anon_sym_COLON] = ACTIONS(3487), + [anon_sym_QMARK] = ACTIONS(3489), + [anon_sym_LT_EQ_GT] = ACTIONS(3489), + [anon_sym_or] = ACTIONS(3487), + [anon_sym_and] = ACTIONS(3487), + [anon_sym_bitor] = ACTIONS(3487), + [anon_sym_xor] = ACTIONS(3487), + [anon_sym_bitand] = ACTIONS(3487), + [anon_sym_not_eq] = ACTIONS(3487), + [anon_sym_DASH_DASH] = ACTIONS(3489), + [anon_sym_PLUS_PLUS] = ACTIONS(3489), + [anon_sym_DOT] = ACTIONS(3487), + [anon_sym_DASH_GT] = ACTIONS(3489), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3487), + [anon_sym_decltype] = ACTIONS(3487), + [anon_sym_final] = ACTIONS(3487), + [anon_sym_override] = ACTIONS(3487), + [anon_sym_virtual] = ACTIONS(3487), + [anon_sym_template] = ACTIONS(3487), + [anon_sym_operator] = ACTIONS(3487), + [anon_sym_try] = ACTIONS(3487), + [anon_sym_requires] = ACTIONS(3487), + }, + [1773] = { + [sym_identifier] = ACTIONS(3505), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3507), + [anon_sym_COMMA] = ACTIONS(3507), + [anon_sym_RPAREN] = ACTIONS(3507), + [anon_sym_LPAREN2] = ACTIONS(3507), + [anon_sym_TILDE] = ACTIONS(3507), + [anon_sym_DASH] = ACTIONS(3505), + [anon_sym_PLUS] = ACTIONS(3505), + [anon_sym_STAR] = ACTIONS(3507), + [anon_sym_SLASH] = ACTIONS(3505), + [anon_sym_PERCENT] = ACTIONS(3507), + [anon_sym_PIPE_PIPE] = ACTIONS(3507), + [anon_sym_AMP_AMP] = ACTIONS(3507), + [anon_sym_PIPE] = ACTIONS(3505), + [anon_sym_CARET] = ACTIONS(3507), + [anon_sym_AMP] = ACTIONS(3505), + [anon_sym_EQ_EQ] = ACTIONS(3507), + [anon_sym_BANG_EQ] = ACTIONS(3507), + [anon_sym_GT] = ACTIONS(3505), + [anon_sym_GT_EQ] = ACTIONS(3507), + [anon_sym_LT_EQ] = ACTIONS(3505), + [anon_sym_LT] = ACTIONS(3505), + [anon_sym_LT_LT] = ACTIONS(3507), + [anon_sym_GT_GT] = ACTIONS(3507), + [anon_sym_SEMI] = ACTIONS(3507), + [anon_sym_extern] = ACTIONS(3505), + [anon_sym___attribute__] = ACTIONS(3505), + [anon_sym_COLON_COLON] = ACTIONS(3507), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3507), + [anon_sym___declspec] = ACTIONS(3505), + [anon_sym___based] = ACTIONS(3505), + [anon_sym_LBRACE] = ACTIONS(3507), + [anon_sym_RBRACE] = ACTIONS(3507), + [anon_sym_LBRACK] = ACTIONS(3505), + [anon_sym_EQ] = ACTIONS(3505), + [anon_sym_static] = ACTIONS(3505), + [anon_sym_register] = ACTIONS(3505), + [anon_sym_inline] = ACTIONS(3505), + [anon_sym_thread_local] = ACTIONS(3505), + [anon_sym_const] = ACTIONS(3505), + [anon_sym_volatile] = ACTIONS(3505), + [anon_sym_restrict] = ACTIONS(3505), + [anon_sym__Atomic] = ACTIONS(3505), + [anon_sym_mutable] = ACTIONS(3505), + [anon_sym_constexpr] = ACTIONS(3505), + [anon_sym_constinit] = ACTIONS(3505), + [anon_sym_consteval] = ACTIONS(3505), + [anon_sym_COLON] = ACTIONS(3505), + [anon_sym_QMARK] = ACTIONS(3507), + [anon_sym_LT_EQ_GT] = ACTIONS(3507), + [anon_sym_or] = ACTIONS(3505), + [anon_sym_and] = ACTIONS(3505), + [anon_sym_bitor] = ACTIONS(3505), + [anon_sym_xor] = ACTIONS(3505), + [anon_sym_bitand] = ACTIONS(3505), + [anon_sym_not_eq] = ACTIONS(3505), + [anon_sym_DASH_DASH] = ACTIONS(3507), + [anon_sym_PLUS_PLUS] = ACTIONS(3507), + [anon_sym_DOT] = ACTIONS(3505), + [anon_sym_DASH_GT] = ACTIONS(3507), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3505), + [anon_sym_decltype] = ACTIONS(3505), + [anon_sym_final] = ACTIONS(3505), + [anon_sym_override] = ACTIONS(3505), + [anon_sym_virtual] = ACTIONS(3505), + [anon_sym_template] = ACTIONS(3505), + [anon_sym_operator] = ACTIONS(3505), + [anon_sym_try] = ACTIONS(3505), + [anon_sym_requires] = ACTIONS(3505), + }, + [1774] = { + [sym_identifier] = ACTIONS(3467), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3469), + [anon_sym_COMMA] = ACTIONS(3469), + [anon_sym_RPAREN] = ACTIONS(3469), + [anon_sym_LPAREN2] = ACTIONS(3469), + [anon_sym_TILDE] = ACTIONS(3469), + [anon_sym_DASH] = ACTIONS(3467), + [anon_sym_PLUS] = ACTIONS(3467), + [anon_sym_STAR] = ACTIONS(3469), + [anon_sym_SLASH] = ACTIONS(3467), + [anon_sym_PERCENT] = ACTIONS(3469), + [anon_sym_PIPE_PIPE] = ACTIONS(3469), + [anon_sym_AMP_AMP] = ACTIONS(3469), + [anon_sym_PIPE] = ACTIONS(3467), + [anon_sym_CARET] = ACTIONS(3469), + [anon_sym_AMP] = ACTIONS(3467), + [anon_sym_EQ_EQ] = ACTIONS(3469), + [anon_sym_BANG_EQ] = ACTIONS(3469), + [anon_sym_GT] = ACTIONS(3467), + [anon_sym_GT_EQ] = ACTIONS(3469), + [anon_sym_LT_EQ] = ACTIONS(3467), + [anon_sym_LT] = ACTIONS(3467), + [anon_sym_LT_LT] = ACTIONS(3469), + [anon_sym_GT_GT] = ACTIONS(3469), + [anon_sym_SEMI] = ACTIONS(3469), + [anon_sym_extern] = ACTIONS(3467), + [anon_sym___attribute__] = ACTIONS(3467), + [anon_sym_COLON_COLON] = ACTIONS(3469), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3469), + [anon_sym___declspec] = ACTIONS(3467), + [anon_sym___based] = ACTIONS(3467), + [anon_sym_LBRACE] = ACTIONS(3469), + [anon_sym_RBRACE] = ACTIONS(3469), + [anon_sym_LBRACK] = ACTIONS(3467), + [anon_sym_EQ] = ACTIONS(3467), + [anon_sym_static] = ACTIONS(3467), + [anon_sym_register] = ACTIONS(3467), + [anon_sym_inline] = ACTIONS(3467), + [anon_sym_thread_local] = ACTIONS(3467), + [anon_sym_const] = ACTIONS(3467), + [anon_sym_volatile] = ACTIONS(3467), + [anon_sym_restrict] = ACTIONS(3467), + [anon_sym__Atomic] = ACTIONS(3467), + [anon_sym_mutable] = ACTIONS(3467), + [anon_sym_constexpr] = ACTIONS(3467), + [anon_sym_constinit] = ACTIONS(3467), + [anon_sym_consteval] = ACTIONS(3467), + [anon_sym_COLON] = ACTIONS(3467), + [anon_sym_QMARK] = ACTIONS(3469), + [anon_sym_LT_EQ_GT] = ACTIONS(3469), + [anon_sym_or] = ACTIONS(3467), + [anon_sym_and] = ACTIONS(3467), + [anon_sym_bitor] = ACTIONS(3467), + [anon_sym_xor] = ACTIONS(3467), + [anon_sym_bitand] = ACTIONS(3467), + [anon_sym_not_eq] = ACTIONS(3467), + [anon_sym_DASH_DASH] = ACTIONS(3469), + [anon_sym_PLUS_PLUS] = ACTIONS(3469), + [anon_sym_DOT] = ACTIONS(3467), + [anon_sym_DASH_GT] = ACTIONS(3469), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3467), + [anon_sym_decltype] = ACTIONS(3467), + [anon_sym_final] = ACTIONS(3467), + [anon_sym_override] = ACTIONS(3467), + [anon_sym_virtual] = ACTIONS(3467), + [anon_sym_template] = ACTIONS(3467), + [anon_sym_operator] = ACTIONS(3467), + [anon_sym_try] = ACTIONS(3467), + [anon_sym_requires] = ACTIONS(3467), + }, + [1775] = { + [sym_identifier] = ACTIONS(3493), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3495), + [anon_sym_COMMA] = ACTIONS(3495), + [anon_sym_RPAREN] = ACTIONS(3495), + [anon_sym_LPAREN2] = ACTIONS(3495), + [anon_sym_TILDE] = ACTIONS(3495), + [anon_sym_DASH] = ACTIONS(3493), + [anon_sym_PLUS] = ACTIONS(3493), + [anon_sym_STAR] = ACTIONS(3495), + [anon_sym_SLASH] = ACTIONS(3493), + [anon_sym_PERCENT] = ACTIONS(3495), + [anon_sym_PIPE_PIPE] = ACTIONS(3495), + [anon_sym_AMP_AMP] = ACTIONS(3495), + [anon_sym_PIPE] = ACTIONS(3493), + [anon_sym_CARET] = ACTIONS(3495), + [anon_sym_AMP] = ACTIONS(3493), + [anon_sym_EQ_EQ] = ACTIONS(3495), + [anon_sym_BANG_EQ] = ACTIONS(3495), + [anon_sym_GT] = ACTIONS(3493), + [anon_sym_GT_EQ] = ACTIONS(3495), + [anon_sym_LT_EQ] = ACTIONS(3493), + [anon_sym_LT] = ACTIONS(3493), + [anon_sym_LT_LT] = ACTIONS(3495), + [anon_sym_GT_GT] = ACTIONS(3495), + [anon_sym_SEMI] = ACTIONS(3495), + [anon_sym_extern] = ACTIONS(3493), + [anon_sym___attribute__] = ACTIONS(3493), + [anon_sym_COLON_COLON] = ACTIONS(3495), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3495), + [anon_sym___declspec] = ACTIONS(3493), + [anon_sym___based] = ACTIONS(3493), + [anon_sym_LBRACE] = ACTIONS(3495), + [anon_sym_RBRACE] = ACTIONS(3495), + [anon_sym_LBRACK] = ACTIONS(3493), + [anon_sym_EQ] = ACTIONS(3493), + [anon_sym_static] = ACTIONS(3493), + [anon_sym_register] = ACTIONS(3493), + [anon_sym_inline] = ACTIONS(3493), + [anon_sym_thread_local] = ACTIONS(3493), + [anon_sym_const] = ACTIONS(3493), + [anon_sym_volatile] = ACTIONS(3493), + [anon_sym_restrict] = ACTIONS(3493), + [anon_sym__Atomic] = ACTIONS(3493), + [anon_sym_mutable] = ACTIONS(3493), + [anon_sym_constexpr] = ACTIONS(3493), + [anon_sym_constinit] = ACTIONS(3493), + [anon_sym_consteval] = ACTIONS(3493), + [anon_sym_COLON] = ACTIONS(3493), + [anon_sym_QMARK] = ACTIONS(3495), + [anon_sym_LT_EQ_GT] = ACTIONS(3495), + [anon_sym_or] = ACTIONS(3493), + [anon_sym_and] = ACTIONS(3493), + [anon_sym_bitor] = ACTIONS(3493), + [anon_sym_xor] = ACTIONS(3493), + [anon_sym_bitand] = ACTIONS(3493), + [anon_sym_not_eq] = ACTIONS(3493), + [anon_sym_DASH_DASH] = ACTIONS(3495), + [anon_sym_PLUS_PLUS] = ACTIONS(3495), + [anon_sym_DOT] = ACTIONS(3493), + [anon_sym_DASH_GT] = ACTIONS(3495), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3493), + [anon_sym_decltype] = ACTIONS(3493), + [anon_sym_final] = ACTIONS(3493), + [anon_sym_override] = ACTIONS(3493), + [anon_sym_virtual] = ACTIONS(3493), + [anon_sym_template] = ACTIONS(3493), + [anon_sym_operator] = ACTIONS(3493), + [anon_sym_try] = ACTIONS(3493), + [anon_sym_requires] = ACTIONS(3493), + }, + [1776] = { + [sym_identifier] = ACTIONS(3509), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3511), + [anon_sym_COMMA] = ACTIONS(3511), + [anon_sym_RPAREN] = ACTIONS(3511), + [anon_sym_LPAREN2] = ACTIONS(3511), + [anon_sym_TILDE] = ACTIONS(3511), + [anon_sym_DASH] = ACTIONS(3509), + [anon_sym_PLUS] = ACTIONS(3509), + [anon_sym_STAR] = ACTIONS(3511), + [anon_sym_SLASH] = ACTIONS(3509), + [anon_sym_PERCENT] = ACTIONS(3511), + [anon_sym_PIPE_PIPE] = ACTIONS(3511), + [anon_sym_AMP_AMP] = ACTIONS(3511), + [anon_sym_PIPE] = ACTIONS(3509), + [anon_sym_CARET] = ACTIONS(3511), + [anon_sym_AMP] = ACTIONS(3509), + [anon_sym_EQ_EQ] = ACTIONS(3511), + [anon_sym_BANG_EQ] = ACTIONS(3511), + [anon_sym_GT] = ACTIONS(3509), + [anon_sym_GT_EQ] = ACTIONS(3511), + [anon_sym_LT_EQ] = ACTIONS(3509), + [anon_sym_LT] = ACTIONS(3509), + [anon_sym_LT_LT] = ACTIONS(3511), + [anon_sym_GT_GT] = ACTIONS(3511), + [anon_sym_SEMI] = ACTIONS(3511), + [anon_sym_extern] = ACTIONS(3509), + [anon_sym___attribute__] = ACTIONS(3509), + [anon_sym_COLON_COLON] = ACTIONS(3511), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3511), + [anon_sym___declspec] = ACTIONS(3509), + [anon_sym___based] = ACTIONS(3509), + [anon_sym_LBRACE] = ACTIONS(3511), + [anon_sym_RBRACE] = ACTIONS(3511), + [anon_sym_LBRACK] = ACTIONS(3509), + [anon_sym_EQ] = ACTIONS(3509), + [anon_sym_static] = ACTIONS(3509), + [anon_sym_register] = ACTIONS(3509), + [anon_sym_inline] = ACTIONS(3509), + [anon_sym_thread_local] = ACTIONS(3509), + [anon_sym_const] = ACTIONS(3509), + [anon_sym_volatile] = ACTIONS(3509), + [anon_sym_restrict] = ACTIONS(3509), + [anon_sym__Atomic] = ACTIONS(3509), + [anon_sym_mutable] = ACTIONS(3509), + [anon_sym_constexpr] = ACTIONS(3509), + [anon_sym_constinit] = ACTIONS(3509), + [anon_sym_consteval] = ACTIONS(3509), + [anon_sym_COLON] = ACTIONS(3509), + [anon_sym_QMARK] = ACTIONS(3511), + [anon_sym_LT_EQ_GT] = ACTIONS(3511), + [anon_sym_or] = ACTIONS(3509), + [anon_sym_and] = ACTIONS(3509), + [anon_sym_bitor] = ACTIONS(3509), + [anon_sym_xor] = ACTIONS(3509), + [anon_sym_bitand] = ACTIONS(3509), + [anon_sym_not_eq] = ACTIONS(3509), + [anon_sym_DASH_DASH] = ACTIONS(3511), + [anon_sym_PLUS_PLUS] = ACTIONS(3511), + [anon_sym_DOT] = ACTIONS(3509), + [anon_sym_DASH_GT] = ACTIONS(3511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3509), + [anon_sym_decltype] = ACTIONS(3509), + [anon_sym_final] = ACTIONS(3509), + [anon_sym_override] = ACTIONS(3509), + [anon_sym_virtual] = ACTIONS(3509), + [anon_sym_template] = ACTIONS(3509), + [anon_sym_operator] = ACTIONS(3509), + [anon_sym_try] = ACTIONS(3509), + [anon_sym_requires] = ACTIONS(3509), + }, + [1777] = { + [sym_identifier] = ACTIONS(3501), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3503), + [anon_sym_COMMA] = ACTIONS(3503), + [anon_sym_RPAREN] = ACTIONS(3503), + [anon_sym_LPAREN2] = ACTIONS(3503), + [anon_sym_TILDE] = ACTIONS(3503), + [anon_sym_DASH] = ACTIONS(3501), + [anon_sym_PLUS] = ACTIONS(3501), + [anon_sym_STAR] = ACTIONS(3503), + [anon_sym_SLASH] = ACTIONS(3501), + [anon_sym_PERCENT] = ACTIONS(3503), + [anon_sym_PIPE_PIPE] = ACTIONS(3503), + [anon_sym_AMP_AMP] = ACTIONS(3503), + [anon_sym_PIPE] = ACTIONS(3501), + [anon_sym_CARET] = ACTIONS(3503), + [anon_sym_AMP] = ACTIONS(3501), + [anon_sym_EQ_EQ] = ACTIONS(3503), + [anon_sym_BANG_EQ] = ACTIONS(3503), + [anon_sym_GT] = ACTIONS(3501), + [anon_sym_GT_EQ] = ACTIONS(3503), + [anon_sym_LT_EQ] = ACTIONS(3501), + [anon_sym_LT] = ACTIONS(3501), + [anon_sym_LT_LT] = ACTIONS(3503), + [anon_sym_GT_GT] = ACTIONS(3503), + [anon_sym_SEMI] = ACTIONS(3503), + [anon_sym_extern] = ACTIONS(3501), + [anon_sym___attribute__] = ACTIONS(3501), + [anon_sym_COLON_COLON] = ACTIONS(3503), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3503), + [anon_sym___declspec] = ACTIONS(3501), + [anon_sym___based] = ACTIONS(3501), + [anon_sym_LBRACE] = ACTIONS(3503), + [anon_sym_RBRACE] = ACTIONS(3503), + [anon_sym_LBRACK] = ACTIONS(3501), + [anon_sym_EQ] = ACTIONS(3501), + [anon_sym_static] = ACTIONS(3501), + [anon_sym_register] = ACTIONS(3501), + [anon_sym_inline] = ACTIONS(3501), + [anon_sym_thread_local] = ACTIONS(3501), + [anon_sym_const] = ACTIONS(3501), + [anon_sym_volatile] = ACTIONS(3501), + [anon_sym_restrict] = ACTIONS(3501), + [anon_sym__Atomic] = ACTIONS(3501), + [anon_sym_mutable] = ACTIONS(3501), + [anon_sym_constexpr] = ACTIONS(3501), + [anon_sym_constinit] = ACTIONS(3501), + [anon_sym_consteval] = ACTIONS(3501), + [anon_sym_COLON] = ACTIONS(3501), + [anon_sym_QMARK] = ACTIONS(3503), + [anon_sym_LT_EQ_GT] = ACTIONS(3503), + [anon_sym_or] = ACTIONS(3501), + [anon_sym_and] = ACTIONS(3501), + [anon_sym_bitor] = ACTIONS(3501), + [anon_sym_xor] = ACTIONS(3501), + [anon_sym_bitand] = ACTIONS(3501), + [anon_sym_not_eq] = ACTIONS(3501), + [anon_sym_DASH_DASH] = ACTIONS(3503), + [anon_sym_PLUS_PLUS] = ACTIONS(3503), + [anon_sym_DOT] = ACTIONS(3501), + [anon_sym_DASH_GT] = ACTIONS(3503), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3501), + [anon_sym_decltype] = ACTIONS(3501), + [anon_sym_final] = ACTIONS(3501), + [anon_sym_override] = ACTIONS(3501), + [anon_sym_virtual] = ACTIONS(3501), + [anon_sym_template] = ACTIONS(3501), + [anon_sym_operator] = ACTIONS(3501), + [anon_sym_try] = ACTIONS(3501), + [anon_sym_requires] = ACTIONS(3501), + }, + [1778] = { + [sym_identifier] = ACTIONS(3497), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3499), + [anon_sym_COMMA] = ACTIONS(3499), + [anon_sym_RPAREN] = ACTIONS(3499), + [anon_sym_LPAREN2] = ACTIONS(3499), + [anon_sym_TILDE] = ACTIONS(3499), + [anon_sym_DASH] = ACTIONS(3497), + [anon_sym_PLUS] = ACTIONS(3497), + [anon_sym_STAR] = ACTIONS(3499), + [anon_sym_SLASH] = ACTIONS(3497), + [anon_sym_PERCENT] = ACTIONS(3499), + [anon_sym_PIPE_PIPE] = ACTIONS(3499), + [anon_sym_AMP_AMP] = ACTIONS(3499), + [anon_sym_PIPE] = ACTIONS(3497), + [anon_sym_CARET] = ACTIONS(3499), + [anon_sym_AMP] = ACTIONS(3497), + [anon_sym_EQ_EQ] = ACTIONS(3499), + [anon_sym_BANG_EQ] = ACTIONS(3499), + [anon_sym_GT] = ACTIONS(3497), + [anon_sym_GT_EQ] = ACTIONS(3499), + [anon_sym_LT_EQ] = ACTIONS(3497), + [anon_sym_LT] = ACTIONS(3497), + [anon_sym_LT_LT] = ACTIONS(3499), + [anon_sym_GT_GT] = ACTIONS(3499), + [anon_sym_SEMI] = ACTIONS(3499), + [anon_sym_extern] = ACTIONS(3497), + [anon_sym___attribute__] = ACTIONS(3497), + [anon_sym_COLON_COLON] = ACTIONS(3499), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3499), + [anon_sym___declspec] = ACTIONS(3497), + [anon_sym___based] = ACTIONS(3497), + [anon_sym_LBRACE] = ACTIONS(3499), + [anon_sym_RBRACE] = ACTIONS(3499), + [anon_sym_LBRACK] = ACTIONS(3497), + [anon_sym_EQ] = ACTIONS(3497), + [anon_sym_static] = ACTIONS(3497), + [anon_sym_register] = ACTIONS(3497), + [anon_sym_inline] = ACTIONS(3497), + [anon_sym_thread_local] = ACTIONS(3497), + [anon_sym_const] = ACTIONS(3497), + [anon_sym_volatile] = ACTIONS(3497), + [anon_sym_restrict] = ACTIONS(3497), + [anon_sym__Atomic] = ACTIONS(3497), + [anon_sym_mutable] = ACTIONS(3497), + [anon_sym_constexpr] = ACTIONS(3497), + [anon_sym_constinit] = ACTIONS(3497), + [anon_sym_consteval] = ACTIONS(3497), + [anon_sym_COLON] = ACTIONS(3497), + [anon_sym_QMARK] = ACTIONS(3499), + [anon_sym_LT_EQ_GT] = ACTIONS(3499), + [anon_sym_or] = ACTIONS(3497), + [anon_sym_and] = ACTIONS(3497), + [anon_sym_bitor] = ACTIONS(3497), + [anon_sym_xor] = ACTIONS(3497), + [anon_sym_bitand] = ACTIONS(3497), + [anon_sym_not_eq] = ACTIONS(3497), + [anon_sym_DASH_DASH] = ACTIONS(3499), + [anon_sym_PLUS_PLUS] = ACTIONS(3499), + [anon_sym_DOT] = ACTIONS(3497), + [anon_sym_DASH_GT] = ACTIONS(3499), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3497), + [anon_sym_decltype] = ACTIONS(3497), + [anon_sym_final] = ACTIONS(3497), + [anon_sym_override] = ACTIONS(3497), + [anon_sym_virtual] = ACTIONS(3497), + [anon_sym_template] = ACTIONS(3497), + [anon_sym_operator] = ACTIONS(3497), + [anon_sym_try] = ACTIONS(3497), + [anon_sym_requires] = ACTIONS(3497), + }, + [1779] = { + [sym_function_definition] = STATE(929), + [sym_declaration] = STATE(929), + [sym__declaration_modifiers] = STATE(2203), + [sym__declaration_specifiers] = STATE(4216), + [sym_attribute_specifier] = STATE(2203), + [sym_attribute_declaration] = STATE(2203), + [sym_ms_declspec_modifier] = STATE(2203), + [sym_ms_call_modifier] = STATE(2011), + [sym_declaration_list] = STATE(929), + [sym_storage_class_specifier] = STATE(2203), + [sym_type_qualifier] = STATE(2203), + [sym__type_specifier] = STATE(3251), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym_virtual_function_specifier] = STATE(2203), + [sym_dependent_type] = STATE(3481), + [sym_template_type] = STATE(3395), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(5394), + [sym_qualified_type_identifier] = STATE(3490), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [sym_identifier] = ACTIONS(2428), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(2434), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(3907), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(2438), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(976), + }, + [1780] = { + [sym_function_definition] = STATE(498), + [sym_declaration] = STATE(498), + [sym__declaration_modifiers] = STATE(2203), + [sym__declaration_specifiers] = STATE(4215), + [sym_attribute_specifier] = STATE(2203), + [sym_attribute_declaration] = STATE(2203), + [sym_ms_declspec_modifier] = STATE(2203), + [sym_ms_call_modifier] = STATE(1989), + [sym_declaration_list] = STATE(498), + [sym_storage_class_specifier] = STATE(2203), + [sym_type_qualifier] = STATE(2203), + [sym__type_specifier] = STATE(3251), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym_virtual_function_specifier] = STATE(2203), + [sym_dependent_type] = STATE(3481), + [sym_template_type] = STATE(3395), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(5394), + [sym_qualified_type_identifier] = STATE(3490), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [sym_identifier] = ACTIONS(2428), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(2434), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(3909), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(2438), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(976), + }, + [1781] = { + [sym_function_definition] = STATE(1014), + [sym_declaration] = STATE(1014), + [sym__declaration_modifiers] = STATE(2203), + [sym__declaration_specifiers] = STATE(4232), + [sym_attribute_specifier] = STATE(2203), + [sym_attribute_declaration] = STATE(2203), + [sym_ms_declspec_modifier] = STATE(2203), + [sym_ms_call_modifier] = STATE(2073), + [sym_declaration_list] = STATE(1014), + [sym_storage_class_specifier] = STATE(2203), + [sym_type_qualifier] = STATE(2203), + [sym__type_specifier] = STATE(3251), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym_virtual_function_specifier] = STATE(2203), + [sym_dependent_type] = STATE(3481), + [sym_template_type] = STATE(3395), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(5394), + [sym_qualified_type_identifier] = STATE(3490), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [sym_identifier] = ACTIONS(2428), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(2434), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(3911), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(2438), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(976), + }, + [1782] = { + [sym_function_definition] = STATE(1013), + [sym_declaration] = STATE(1013), + [sym__declaration_modifiers] = STATE(2203), + [sym__declaration_specifiers] = STATE(4230), + [sym_attribute_specifier] = STATE(2203), + [sym_attribute_declaration] = STATE(2203), + [sym_ms_declspec_modifier] = STATE(2203), + [sym_ms_call_modifier] = STATE(1995), + [sym_declaration_list] = STATE(1013), + [sym_storage_class_specifier] = STATE(2203), + [sym_type_qualifier] = STATE(2203), + [sym__type_specifier] = STATE(3251), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym_virtual_function_specifier] = STATE(2203), + [sym_dependent_type] = STATE(3481), + [sym_template_type] = STATE(3395), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(5394), + [sym_qualified_type_identifier] = STATE(3490), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [sym_identifier] = ACTIONS(2428), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(2434), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_LBRACE] = ACTIONS(3913), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(2438), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(67), + [anon_sym_union] = ACTIONS(69), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(976), + }, + [1783] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(3507), + [anon_sym_COMMA] = ACTIONS(3507), + [anon_sym_RPAREN] = ACTIONS(3507), + [anon_sym_LPAREN2] = ACTIONS(3507), + [anon_sym_DASH] = ACTIONS(3505), + [anon_sym_PLUS] = ACTIONS(3505), + [anon_sym_STAR] = ACTIONS(3505), + [anon_sym_SLASH] = ACTIONS(3505), + [anon_sym_PERCENT] = ACTIONS(3505), + [anon_sym_PIPE_PIPE] = ACTIONS(3507), + [anon_sym_AMP_AMP] = ACTIONS(3507), + [anon_sym_PIPE] = ACTIONS(3505), + [anon_sym_CARET] = ACTIONS(3505), + [anon_sym_AMP] = ACTIONS(3505), + [anon_sym_EQ_EQ] = ACTIONS(3507), + [anon_sym_BANG_EQ] = ACTIONS(3507), + [anon_sym_GT] = ACTIONS(3505), + [anon_sym_GT_EQ] = ACTIONS(3507), + [anon_sym_LT_EQ] = ACTIONS(3505), + [anon_sym_LT] = ACTIONS(3505), + [anon_sym_LT_LT] = ACTIONS(3505), + [anon_sym_GT_GT] = ACTIONS(3505), + [anon_sym_COLON_COLON] = ACTIONS(3507), + [anon_sym_LBRACE] = ACTIONS(3507), + [anon_sym_LBRACK] = ACTIONS(3507), + [anon_sym_EQ] = ACTIONS(3505), + [anon_sym_const] = ACTIONS(3505), + [anon_sym_volatile] = ACTIONS(3507), + [anon_sym_restrict] = ACTIONS(3507), + [anon_sym__Atomic] = ACTIONS(3507), + [anon_sym_mutable] = ACTIONS(3507), + [anon_sym_constexpr] = ACTIONS(3507), + [anon_sym_constinit] = ACTIONS(3507), + [anon_sym_consteval] = ACTIONS(3507), + [anon_sym_COLON] = ACTIONS(3505), + [anon_sym_QMARK] = ACTIONS(3507), + [anon_sym_STAR_EQ] = ACTIONS(3507), + [anon_sym_SLASH_EQ] = ACTIONS(3507), + [anon_sym_PERCENT_EQ] = ACTIONS(3507), + [anon_sym_PLUS_EQ] = ACTIONS(3507), + [anon_sym_DASH_EQ] = ACTIONS(3507), + [anon_sym_LT_LT_EQ] = ACTIONS(3507), + [anon_sym_GT_GT_EQ] = ACTIONS(3507), + [anon_sym_AMP_EQ] = ACTIONS(3507), + [anon_sym_CARET_EQ] = ACTIONS(3507), + [anon_sym_PIPE_EQ] = ACTIONS(3507), + [anon_sym_and_eq] = ACTIONS(3507), + [anon_sym_or_eq] = ACTIONS(3507), + [anon_sym_xor_eq] = ACTIONS(3507), + [anon_sym_LT_EQ_GT] = ACTIONS(3507), + [anon_sym_or] = ACTIONS(3505), + [anon_sym_and] = ACTIONS(3505), + [anon_sym_bitor] = ACTIONS(3507), + [anon_sym_xor] = ACTIONS(3505), + [anon_sym_bitand] = ACTIONS(3507), + [anon_sym_not_eq] = ACTIONS(3507), + [anon_sym_DASH_DASH] = ACTIONS(3507), + [anon_sym_PLUS_PLUS] = ACTIONS(3507), + [anon_sym_DOT] = ACTIONS(3505), + [anon_sym_DASH_GT] = ACTIONS(3505), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3507), + [anon_sym_decltype] = ACTIONS(3507), + [anon_sym_final] = ACTIONS(3507), + [anon_sym_override] = ACTIONS(3507), + [anon_sym_DOT_STAR] = ACTIONS(3507), + [anon_sym_DASH_GT_STAR] = ACTIONS(3507), + }, + [1784] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(3489), + [anon_sym_COMMA] = ACTIONS(3489), + [anon_sym_RPAREN] = ACTIONS(3489), + [anon_sym_LPAREN2] = ACTIONS(3489), + [anon_sym_DASH] = ACTIONS(3487), + [anon_sym_PLUS] = ACTIONS(3487), + [anon_sym_STAR] = ACTIONS(3487), + [anon_sym_SLASH] = ACTIONS(3487), + [anon_sym_PERCENT] = ACTIONS(3487), + [anon_sym_PIPE_PIPE] = ACTIONS(3489), + [anon_sym_AMP_AMP] = ACTIONS(3489), + [anon_sym_PIPE] = ACTIONS(3487), + [anon_sym_CARET] = ACTIONS(3487), + [anon_sym_AMP] = ACTIONS(3487), + [anon_sym_EQ_EQ] = ACTIONS(3489), + [anon_sym_BANG_EQ] = ACTIONS(3489), + [anon_sym_GT] = ACTIONS(3487), + [anon_sym_GT_EQ] = ACTIONS(3489), + [anon_sym_LT_EQ] = ACTIONS(3487), + [anon_sym_LT] = ACTIONS(3487), + [anon_sym_LT_LT] = ACTIONS(3487), + [anon_sym_GT_GT] = ACTIONS(3487), + [anon_sym_COLON_COLON] = ACTIONS(3489), + [anon_sym_LBRACE] = ACTIONS(3489), + [anon_sym_LBRACK] = ACTIONS(3489), + [anon_sym_EQ] = ACTIONS(3487), + [anon_sym_const] = ACTIONS(3487), + [anon_sym_volatile] = ACTIONS(3489), + [anon_sym_restrict] = ACTIONS(3489), + [anon_sym__Atomic] = ACTIONS(3489), + [anon_sym_mutable] = ACTIONS(3489), + [anon_sym_constexpr] = ACTIONS(3489), + [anon_sym_constinit] = ACTIONS(3489), + [anon_sym_consteval] = ACTIONS(3489), + [anon_sym_COLON] = ACTIONS(3487), + [anon_sym_QMARK] = ACTIONS(3489), + [anon_sym_STAR_EQ] = ACTIONS(3489), + [anon_sym_SLASH_EQ] = ACTIONS(3489), + [anon_sym_PERCENT_EQ] = ACTIONS(3489), + [anon_sym_PLUS_EQ] = ACTIONS(3489), + [anon_sym_DASH_EQ] = ACTIONS(3489), + [anon_sym_LT_LT_EQ] = ACTIONS(3489), + [anon_sym_GT_GT_EQ] = ACTIONS(3489), + [anon_sym_AMP_EQ] = ACTIONS(3489), + [anon_sym_CARET_EQ] = ACTIONS(3489), + [anon_sym_PIPE_EQ] = ACTIONS(3489), + [anon_sym_and_eq] = ACTIONS(3489), + [anon_sym_or_eq] = ACTIONS(3489), + [anon_sym_xor_eq] = ACTIONS(3489), + [anon_sym_LT_EQ_GT] = ACTIONS(3489), + [anon_sym_or] = ACTIONS(3487), + [anon_sym_and] = ACTIONS(3487), + [anon_sym_bitor] = ACTIONS(3489), + [anon_sym_xor] = ACTIONS(3487), + [anon_sym_bitand] = ACTIONS(3489), + [anon_sym_not_eq] = ACTIONS(3489), + [anon_sym_DASH_DASH] = ACTIONS(3489), + [anon_sym_PLUS_PLUS] = ACTIONS(3489), + [anon_sym_DOT] = ACTIONS(3487), + [anon_sym_DASH_GT] = ACTIONS(3487), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3489), + [anon_sym_decltype] = ACTIONS(3489), + [anon_sym_final] = ACTIONS(3489), + [anon_sym_override] = ACTIONS(3489), + [anon_sym_DOT_STAR] = ACTIONS(3489), + [anon_sym_DASH_GT_STAR] = ACTIONS(3489), + }, + [1785] = { + [sym_identifier] = ACTIONS(3014), + [anon_sym_LPAREN2] = ACTIONS(3019), + [anon_sym_BANG] = ACTIONS(3019), + [anon_sym_TILDE] = ACTIONS(3019), + [anon_sym_DASH] = ACTIONS(3014), + [anon_sym_PLUS] = ACTIONS(3014), + [anon_sym_STAR] = ACTIONS(3019), + [anon_sym_AMP] = ACTIONS(3019), + [anon_sym_extern] = ACTIONS(3014), + [anon_sym___attribute__] = ACTIONS(3014), + [anon_sym_COLON_COLON] = ACTIONS(3019), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3019), + [anon_sym___declspec] = ACTIONS(3014), + [anon_sym_LBRACK] = ACTIONS(3014), + [anon_sym_static] = ACTIONS(3014), + [anon_sym_register] = ACTIONS(3014), + [anon_sym_inline] = ACTIONS(3014), + [anon_sym_thread_local] = ACTIONS(3014), + [anon_sym_const] = ACTIONS(3014), + [anon_sym_volatile] = ACTIONS(3014), + [anon_sym_restrict] = ACTIONS(3014), + [anon_sym__Atomic] = ACTIONS(3014), + [anon_sym_mutable] = ACTIONS(3014), + [anon_sym_constexpr] = ACTIONS(3014), + [anon_sym_constinit] = ACTIONS(3014), + [anon_sym_consteval] = ACTIONS(3014), + [anon_sym_signed] = ACTIONS(3014), + [anon_sym_unsigned] = ACTIONS(3014), + [anon_sym_long] = ACTIONS(3014), + [anon_sym_short] = ACTIONS(3014), + [sym_primitive_type] = ACTIONS(3014), + [anon_sym_enum] = ACTIONS(3014), + [anon_sym_class] = ACTIONS(3014), + [anon_sym_struct] = ACTIONS(3014), + [anon_sym_union] = ACTIONS(3014), + [anon_sym_not] = ACTIONS(3014), + [anon_sym_compl] = ACTIONS(3014), + [anon_sym_DASH_DASH] = ACTIONS(3019), + [anon_sym_PLUS_PLUS] = ACTIONS(3019), + [anon_sym_sizeof] = ACTIONS(3014), + [sym_number_literal] = ACTIONS(3019), + [anon_sym_L_SQUOTE] = ACTIONS(3019), + [anon_sym_u_SQUOTE] = ACTIONS(3019), + [anon_sym_U_SQUOTE] = ACTIONS(3019), + [anon_sym_u8_SQUOTE] = ACTIONS(3019), + [anon_sym_SQUOTE] = ACTIONS(3019), + [anon_sym_L_DQUOTE] = ACTIONS(3019), + [anon_sym_u_DQUOTE] = ACTIONS(3019), + [anon_sym_U_DQUOTE] = ACTIONS(3019), + [anon_sym_u8_DQUOTE] = ACTIONS(3019), + [anon_sym_DQUOTE] = ACTIONS(3019), + [sym_true] = ACTIONS(3014), + [sym_false] = ACTIONS(3014), + [sym_null] = ACTIONS(3014), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3014), + [anon_sym_decltype] = ACTIONS(3014), + [anon_sym_virtual] = ACTIONS(3014), + [anon_sym_typename] = ACTIONS(3014), + [anon_sym_template] = ACTIONS(3014), + [anon_sym_delete] = ACTIONS(3014), + [anon_sym_co_await] = ACTIONS(3014), + [anon_sym_new] = ACTIONS(3014), + [anon_sym_requires] = ACTIONS(3014), + [sym_this] = ACTIONS(3014), + [sym_nullptr] = ACTIONS(3014), + [sym_raw_string_literal] = ACTIONS(3019), + }, + [1786] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(3503), + [anon_sym_COMMA] = ACTIONS(3503), + [anon_sym_RPAREN] = ACTIONS(3503), + [anon_sym_LPAREN2] = ACTIONS(3503), + [anon_sym_DASH] = ACTIONS(3501), + [anon_sym_PLUS] = ACTIONS(3501), + [anon_sym_STAR] = ACTIONS(3501), + [anon_sym_SLASH] = ACTIONS(3501), + [anon_sym_PERCENT] = ACTIONS(3501), + [anon_sym_PIPE_PIPE] = ACTIONS(3503), + [anon_sym_AMP_AMP] = ACTIONS(3503), + [anon_sym_PIPE] = ACTIONS(3501), + [anon_sym_CARET] = ACTIONS(3501), + [anon_sym_AMP] = ACTIONS(3501), + [anon_sym_EQ_EQ] = ACTIONS(3503), + [anon_sym_BANG_EQ] = ACTIONS(3503), + [anon_sym_GT] = ACTIONS(3501), + [anon_sym_GT_EQ] = ACTIONS(3503), + [anon_sym_LT_EQ] = ACTIONS(3501), + [anon_sym_LT] = ACTIONS(3501), + [anon_sym_LT_LT] = ACTIONS(3501), + [anon_sym_GT_GT] = ACTIONS(3501), + [anon_sym_COLON_COLON] = ACTIONS(3503), + [anon_sym_LBRACE] = ACTIONS(3503), + [anon_sym_LBRACK] = ACTIONS(3503), + [anon_sym_EQ] = ACTIONS(3501), + [anon_sym_const] = ACTIONS(3501), + [anon_sym_volatile] = ACTIONS(3503), + [anon_sym_restrict] = ACTIONS(3503), + [anon_sym__Atomic] = ACTIONS(3503), + [anon_sym_mutable] = ACTIONS(3503), + [anon_sym_constexpr] = ACTIONS(3503), + [anon_sym_constinit] = ACTIONS(3503), + [anon_sym_consteval] = ACTIONS(3503), + [anon_sym_COLON] = ACTIONS(3501), + [anon_sym_QMARK] = ACTIONS(3503), + [anon_sym_STAR_EQ] = ACTIONS(3503), + [anon_sym_SLASH_EQ] = ACTIONS(3503), + [anon_sym_PERCENT_EQ] = ACTIONS(3503), + [anon_sym_PLUS_EQ] = ACTIONS(3503), + [anon_sym_DASH_EQ] = ACTIONS(3503), + [anon_sym_LT_LT_EQ] = ACTIONS(3503), + [anon_sym_GT_GT_EQ] = ACTIONS(3503), + [anon_sym_AMP_EQ] = ACTIONS(3503), + [anon_sym_CARET_EQ] = ACTIONS(3503), + [anon_sym_PIPE_EQ] = ACTIONS(3503), + [anon_sym_and_eq] = ACTIONS(3503), + [anon_sym_or_eq] = ACTIONS(3503), + [anon_sym_xor_eq] = ACTIONS(3503), + [anon_sym_LT_EQ_GT] = ACTIONS(3503), + [anon_sym_or] = ACTIONS(3501), + [anon_sym_and] = ACTIONS(3501), + [anon_sym_bitor] = ACTIONS(3503), + [anon_sym_xor] = ACTIONS(3501), + [anon_sym_bitand] = ACTIONS(3503), + [anon_sym_not_eq] = ACTIONS(3503), + [anon_sym_DASH_DASH] = ACTIONS(3503), + [anon_sym_PLUS_PLUS] = ACTIONS(3503), + [anon_sym_DOT] = ACTIONS(3501), + [anon_sym_DASH_GT] = ACTIONS(3501), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3503), + [anon_sym_decltype] = ACTIONS(3503), + [anon_sym_final] = ACTIONS(3503), + [anon_sym_override] = ACTIONS(3503), + [anon_sym_DOT_STAR] = ACTIONS(3503), + [anon_sym_DASH_GT_STAR] = ACTIONS(3503), + }, + [1787] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(3499), + [anon_sym_COMMA] = ACTIONS(3499), + [anon_sym_RPAREN] = ACTIONS(3499), + [anon_sym_LPAREN2] = ACTIONS(3499), + [anon_sym_DASH] = ACTIONS(3497), + [anon_sym_PLUS] = ACTIONS(3497), + [anon_sym_STAR] = ACTIONS(3497), + [anon_sym_SLASH] = ACTIONS(3497), + [anon_sym_PERCENT] = ACTIONS(3497), + [anon_sym_PIPE_PIPE] = ACTIONS(3499), + [anon_sym_AMP_AMP] = ACTIONS(3499), + [anon_sym_PIPE] = ACTIONS(3497), + [anon_sym_CARET] = ACTIONS(3497), + [anon_sym_AMP] = ACTIONS(3497), + [anon_sym_EQ_EQ] = ACTIONS(3499), + [anon_sym_BANG_EQ] = ACTIONS(3499), + [anon_sym_GT] = ACTIONS(3497), + [anon_sym_GT_EQ] = ACTIONS(3499), + [anon_sym_LT_EQ] = ACTIONS(3497), + [anon_sym_LT] = ACTIONS(3497), + [anon_sym_LT_LT] = ACTIONS(3497), + [anon_sym_GT_GT] = ACTIONS(3497), + [anon_sym_COLON_COLON] = ACTIONS(3499), + [anon_sym_LBRACE] = ACTIONS(3499), + [anon_sym_LBRACK] = ACTIONS(3499), + [anon_sym_EQ] = ACTIONS(3497), + [anon_sym_const] = ACTIONS(3497), + [anon_sym_volatile] = ACTIONS(3499), + [anon_sym_restrict] = ACTIONS(3499), + [anon_sym__Atomic] = ACTIONS(3499), + [anon_sym_mutable] = ACTIONS(3499), + [anon_sym_constexpr] = ACTIONS(3499), + [anon_sym_constinit] = ACTIONS(3499), + [anon_sym_consteval] = ACTIONS(3499), + [anon_sym_COLON] = ACTIONS(3497), + [anon_sym_QMARK] = ACTIONS(3499), + [anon_sym_STAR_EQ] = ACTIONS(3499), + [anon_sym_SLASH_EQ] = ACTIONS(3499), + [anon_sym_PERCENT_EQ] = ACTIONS(3499), + [anon_sym_PLUS_EQ] = ACTIONS(3499), + [anon_sym_DASH_EQ] = ACTIONS(3499), + [anon_sym_LT_LT_EQ] = ACTIONS(3499), + [anon_sym_GT_GT_EQ] = ACTIONS(3499), + [anon_sym_AMP_EQ] = ACTIONS(3499), + [anon_sym_CARET_EQ] = ACTIONS(3499), + [anon_sym_PIPE_EQ] = ACTIONS(3499), + [anon_sym_and_eq] = ACTIONS(3499), + [anon_sym_or_eq] = ACTIONS(3499), + [anon_sym_xor_eq] = ACTIONS(3499), + [anon_sym_LT_EQ_GT] = ACTIONS(3499), + [anon_sym_or] = ACTIONS(3497), + [anon_sym_and] = ACTIONS(3497), + [anon_sym_bitor] = ACTIONS(3499), + [anon_sym_xor] = ACTIONS(3497), + [anon_sym_bitand] = ACTIONS(3499), + [anon_sym_not_eq] = ACTIONS(3499), + [anon_sym_DASH_DASH] = ACTIONS(3499), + [anon_sym_PLUS_PLUS] = ACTIONS(3499), + [anon_sym_DOT] = ACTIONS(3497), + [anon_sym_DASH_GT] = ACTIONS(3497), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3499), + [anon_sym_decltype] = ACTIONS(3499), + [anon_sym_final] = ACTIONS(3499), + [anon_sym_override] = ACTIONS(3499), + [anon_sym_DOT_STAR] = ACTIONS(3499), + [anon_sym_DASH_GT_STAR] = ACTIONS(3499), + }, + [1788] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(3511), + [anon_sym_COMMA] = ACTIONS(3511), + [anon_sym_RPAREN] = ACTIONS(3511), + [anon_sym_LPAREN2] = ACTIONS(3511), + [anon_sym_DASH] = ACTIONS(3509), + [anon_sym_PLUS] = ACTIONS(3509), + [anon_sym_STAR] = ACTIONS(3509), + [anon_sym_SLASH] = ACTIONS(3509), + [anon_sym_PERCENT] = ACTIONS(3509), + [anon_sym_PIPE_PIPE] = ACTIONS(3511), + [anon_sym_AMP_AMP] = ACTIONS(3511), + [anon_sym_PIPE] = ACTIONS(3509), + [anon_sym_CARET] = ACTIONS(3509), + [anon_sym_AMP] = ACTIONS(3509), + [anon_sym_EQ_EQ] = ACTIONS(3511), + [anon_sym_BANG_EQ] = ACTIONS(3511), + [anon_sym_GT] = ACTIONS(3509), + [anon_sym_GT_EQ] = ACTIONS(3511), + [anon_sym_LT_EQ] = ACTIONS(3509), + [anon_sym_LT] = ACTIONS(3509), + [anon_sym_LT_LT] = ACTIONS(3509), + [anon_sym_GT_GT] = ACTIONS(3509), + [anon_sym_COLON_COLON] = ACTIONS(3511), + [anon_sym_LBRACE] = ACTIONS(3511), + [anon_sym_LBRACK] = ACTIONS(3511), + [anon_sym_EQ] = ACTIONS(3509), + [anon_sym_const] = ACTIONS(3509), + [anon_sym_volatile] = ACTIONS(3511), + [anon_sym_restrict] = ACTIONS(3511), + [anon_sym__Atomic] = ACTIONS(3511), + [anon_sym_mutable] = ACTIONS(3511), + [anon_sym_constexpr] = ACTIONS(3511), + [anon_sym_constinit] = ACTIONS(3511), + [anon_sym_consteval] = ACTIONS(3511), + [anon_sym_COLON] = ACTIONS(3509), + [anon_sym_QMARK] = ACTIONS(3511), + [anon_sym_STAR_EQ] = ACTIONS(3511), + [anon_sym_SLASH_EQ] = ACTIONS(3511), + [anon_sym_PERCENT_EQ] = ACTIONS(3511), + [anon_sym_PLUS_EQ] = ACTIONS(3511), + [anon_sym_DASH_EQ] = ACTIONS(3511), + [anon_sym_LT_LT_EQ] = ACTIONS(3511), + [anon_sym_GT_GT_EQ] = ACTIONS(3511), + [anon_sym_AMP_EQ] = ACTIONS(3511), + [anon_sym_CARET_EQ] = ACTIONS(3511), + [anon_sym_PIPE_EQ] = ACTIONS(3511), + [anon_sym_and_eq] = ACTIONS(3511), + [anon_sym_or_eq] = ACTIONS(3511), + [anon_sym_xor_eq] = ACTIONS(3511), + [anon_sym_LT_EQ_GT] = ACTIONS(3511), + [anon_sym_or] = ACTIONS(3509), + [anon_sym_and] = ACTIONS(3509), + [anon_sym_bitor] = ACTIONS(3511), + [anon_sym_xor] = ACTIONS(3509), + [anon_sym_bitand] = ACTIONS(3511), + [anon_sym_not_eq] = ACTIONS(3511), + [anon_sym_DASH_DASH] = ACTIONS(3511), + [anon_sym_PLUS_PLUS] = ACTIONS(3511), + [anon_sym_DOT] = ACTIONS(3509), + [anon_sym_DASH_GT] = ACTIONS(3509), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3511), + [anon_sym_decltype] = ACTIONS(3511), + [anon_sym_final] = ACTIONS(3511), + [anon_sym_override] = ACTIONS(3511), + [anon_sym_DOT_STAR] = ACTIONS(3511), + [anon_sym_DASH_GT_STAR] = ACTIONS(3511), + }, + [1789] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(3469), + [anon_sym_COMMA] = ACTIONS(3469), + [anon_sym_RPAREN] = ACTIONS(3469), + [anon_sym_LPAREN2] = ACTIONS(3469), + [anon_sym_DASH] = ACTIONS(3467), + [anon_sym_PLUS] = ACTIONS(3467), + [anon_sym_STAR] = ACTIONS(3467), + [anon_sym_SLASH] = ACTIONS(3467), + [anon_sym_PERCENT] = ACTIONS(3467), + [anon_sym_PIPE_PIPE] = ACTIONS(3469), + [anon_sym_AMP_AMP] = ACTIONS(3469), + [anon_sym_PIPE] = ACTIONS(3467), + [anon_sym_CARET] = ACTIONS(3467), + [anon_sym_AMP] = ACTIONS(3467), + [anon_sym_EQ_EQ] = ACTIONS(3469), + [anon_sym_BANG_EQ] = ACTIONS(3469), + [anon_sym_GT] = ACTIONS(3467), + [anon_sym_GT_EQ] = ACTIONS(3469), + [anon_sym_LT_EQ] = ACTIONS(3467), + [anon_sym_LT] = ACTIONS(3467), + [anon_sym_LT_LT] = ACTIONS(3467), + [anon_sym_GT_GT] = ACTIONS(3467), + [anon_sym_COLON_COLON] = ACTIONS(3469), + [anon_sym_LBRACE] = ACTIONS(3469), + [anon_sym_LBRACK] = ACTIONS(3469), + [anon_sym_EQ] = ACTIONS(3467), + [anon_sym_const] = ACTIONS(3467), + [anon_sym_volatile] = ACTIONS(3469), + [anon_sym_restrict] = ACTIONS(3469), + [anon_sym__Atomic] = ACTIONS(3469), + [anon_sym_mutable] = ACTIONS(3469), + [anon_sym_constexpr] = ACTIONS(3469), + [anon_sym_constinit] = ACTIONS(3469), + [anon_sym_consteval] = ACTIONS(3469), + [anon_sym_COLON] = ACTIONS(3467), + [anon_sym_QMARK] = ACTIONS(3469), + [anon_sym_STAR_EQ] = ACTIONS(3469), + [anon_sym_SLASH_EQ] = ACTIONS(3469), + [anon_sym_PERCENT_EQ] = ACTIONS(3469), + [anon_sym_PLUS_EQ] = ACTIONS(3469), + [anon_sym_DASH_EQ] = ACTIONS(3469), + [anon_sym_LT_LT_EQ] = ACTIONS(3469), + [anon_sym_GT_GT_EQ] = ACTIONS(3469), + [anon_sym_AMP_EQ] = ACTIONS(3469), + [anon_sym_CARET_EQ] = ACTIONS(3469), + [anon_sym_PIPE_EQ] = ACTIONS(3469), + [anon_sym_and_eq] = ACTIONS(3469), + [anon_sym_or_eq] = ACTIONS(3469), + [anon_sym_xor_eq] = ACTIONS(3469), + [anon_sym_LT_EQ_GT] = ACTIONS(3469), + [anon_sym_or] = ACTIONS(3467), + [anon_sym_and] = ACTIONS(3467), + [anon_sym_bitor] = ACTIONS(3469), + [anon_sym_xor] = ACTIONS(3467), + [anon_sym_bitand] = ACTIONS(3469), + [anon_sym_not_eq] = ACTIONS(3469), + [anon_sym_DASH_DASH] = ACTIONS(3469), + [anon_sym_PLUS_PLUS] = ACTIONS(3469), + [anon_sym_DOT] = ACTIONS(3467), + [anon_sym_DASH_GT] = ACTIONS(3467), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3469), + [anon_sym_decltype] = ACTIONS(3469), + [anon_sym_final] = ACTIONS(3469), + [anon_sym_override] = ACTIONS(3469), + [anon_sym_DOT_STAR] = ACTIONS(3469), + [anon_sym_DASH_GT_STAR] = ACTIONS(3469), + }, + [1790] = { + [sym_function_definition] = STATE(2158), + [sym_declaration] = STATE(2158), + [sym__declaration_modifiers] = STATE(2203), + [sym__declaration_specifiers] = STATE(4222), + [sym_attribute_specifier] = STATE(2203), + [sym_attribute_declaration] = STATE(2203), + [sym_ms_declspec_modifier] = STATE(2203), + [sym_ms_call_modifier] = STATE(2121), + [sym_storage_class_specifier] = STATE(2203), + [sym_type_qualifier] = STATE(2203), + [sym__type_specifier] = STATE(3251), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(7047), + [sym_virtual_function_specifier] = STATE(2203), + [sym_dependent_type] = STATE(3481), + [sym_template_type] = STATE(4122), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(5394), + [sym_qualified_type_identifier] = STATE(4115), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [sym_identifier] = ACTIONS(3915), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(2434), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(2438), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(3917), + [anon_sym_struct] = ACTIONS(3919), + [anon_sym_union] = ACTIONS(3921), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(976), + }, + [1791] = { + [sym_function_definition] = STATE(2310), + [sym_declaration] = STATE(2310), + [sym__declaration_modifiers] = STATE(2203), + [sym__declaration_specifiers] = STATE(4239), + [sym_attribute_specifier] = STATE(2203), + [sym_attribute_declaration] = STATE(2203), + [sym_ms_declspec_modifier] = STATE(2203), + [sym_ms_call_modifier] = STATE(2103), + [sym_storage_class_specifier] = STATE(2203), + [sym_type_qualifier] = STATE(2203), + [sym__type_specifier] = STATE(3251), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(7276), + [sym_virtual_function_specifier] = STATE(2203), + [sym_dependent_type] = STATE(3481), + [sym_template_type] = STATE(4122), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(5394), + [sym_qualified_type_identifier] = STATE(4115), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [sym_identifier] = ACTIONS(3915), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(2434), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(2438), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(3923), + [anon_sym_struct] = ACTIONS(3925), + [anon_sym_union] = ACTIONS(3927), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(976), + }, + [1792] = { + [sym_identifier] = ACTIONS(2907), + [anon_sym_LPAREN2] = ACTIONS(2909), + [anon_sym_BANG] = ACTIONS(2909), + [anon_sym_TILDE] = ACTIONS(2909), + [anon_sym_DASH] = ACTIONS(2907), + [anon_sym_PLUS] = ACTIONS(2907), + [anon_sym_STAR] = ACTIONS(2909), + [anon_sym_AMP] = ACTIONS(2909), + [anon_sym_extern] = ACTIONS(2907), + [anon_sym___attribute__] = ACTIONS(2907), + [anon_sym_COLON_COLON] = ACTIONS(2909), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2909), + [anon_sym___declspec] = ACTIONS(2907), + [anon_sym_LBRACK] = ACTIONS(2907), + [anon_sym_static] = ACTIONS(2907), + [anon_sym_register] = ACTIONS(2907), + [anon_sym_inline] = ACTIONS(2907), + [anon_sym_thread_local] = ACTIONS(2907), + [anon_sym_const] = ACTIONS(2907), + [anon_sym_volatile] = ACTIONS(2907), + [anon_sym_restrict] = ACTIONS(2907), + [anon_sym__Atomic] = ACTIONS(2907), + [anon_sym_mutable] = ACTIONS(2907), + [anon_sym_constexpr] = ACTIONS(2907), + [anon_sym_constinit] = ACTIONS(2907), + [anon_sym_consteval] = ACTIONS(2907), + [anon_sym_signed] = ACTIONS(2907), + [anon_sym_unsigned] = ACTIONS(2907), + [anon_sym_long] = ACTIONS(2907), + [anon_sym_short] = ACTIONS(2907), + [sym_primitive_type] = ACTIONS(2907), + [anon_sym_enum] = ACTIONS(2907), + [anon_sym_class] = ACTIONS(2907), + [anon_sym_struct] = ACTIONS(2907), + [anon_sym_union] = ACTIONS(2907), + [anon_sym_not] = ACTIONS(2907), + [anon_sym_compl] = ACTIONS(2907), + [anon_sym_DASH_DASH] = ACTIONS(2909), + [anon_sym_PLUS_PLUS] = ACTIONS(2909), + [anon_sym_sizeof] = ACTIONS(2907), + [sym_number_literal] = ACTIONS(2909), + [anon_sym_L_SQUOTE] = ACTIONS(2909), + [anon_sym_u_SQUOTE] = ACTIONS(2909), + [anon_sym_U_SQUOTE] = ACTIONS(2909), + [anon_sym_u8_SQUOTE] = ACTIONS(2909), + [anon_sym_SQUOTE] = ACTIONS(2909), + [anon_sym_L_DQUOTE] = ACTIONS(2909), + [anon_sym_u_DQUOTE] = ACTIONS(2909), + [anon_sym_U_DQUOTE] = ACTIONS(2909), + [anon_sym_u8_DQUOTE] = ACTIONS(2909), + [anon_sym_DQUOTE] = ACTIONS(2909), + [sym_true] = ACTIONS(2907), + [sym_false] = ACTIONS(2907), + [sym_null] = ACTIONS(2907), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2907), + [anon_sym_decltype] = ACTIONS(2907), + [anon_sym_virtual] = ACTIONS(2907), + [anon_sym_typename] = ACTIONS(2907), + [anon_sym_template] = ACTIONS(2907), + [anon_sym_delete] = ACTIONS(2907), + [anon_sym_co_await] = ACTIONS(2907), + [anon_sym_new] = ACTIONS(2907), + [anon_sym_requires] = ACTIONS(2907), + [sym_this] = ACTIONS(2907), + [sym_nullptr] = ACTIONS(2907), + [sym_raw_string_literal] = ACTIONS(2909), + }, + [1793] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(3495), + [anon_sym_COMMA] = ACTIONS(3495), + [anon_sym_RPAREN] = ACTIONS(3495), + [anon_sym_LPAREN2] = ACTIONS(3495), + [anon_sym_DASH] = ACTIONS(3493), + [anon_sym_PLUS] = ACTIONS(3493), + [anon_sym_STAR] = ACTIONS(3493), + [anon_sym_SLASH] = ACTIONS(3493), + [anon_sym_PERCENT] = ACTIONS(3493), + [anon_sym_PIPE_PIPE] = ACTIONS(3495), + [anon_sym_AMP_AMP] = ACTIONS(3495), + [anon_sym_PIPE] = ACTIONS(3493), + [anon_sym_CARET] = ACTIONS(3493), + [anon_sym_AMP] = ACTIONS(3493), + [anon_sym_EQ_EQ] = ACTIONS(3495), + [anon_sym_BANG_EQ] = ACTIONS(3495), + [anon_sym_GT] = ACTIONS(3493), + [anon_sym_GT_EQ] = ACTIONS(3495), + [anon_sym_LT_EQ] = ACTIONS(3493), + [anon_sym_LT] = ACTIONS(3493), + [anon_sym_LT_LT] = ACTIONS(3493), + [anon_sym_GT_GT] = ACTIONS(3493), + [anon_sym_COLON_COLON] = ACTIONS(3495), + [anon_sym_LBRACE] = ACTIONS(3495), + [anon_sym_LBRACK] = ACTIONS(3495), + [anon_sym_EQ] = ACTIONS(3493), + [anon_sym_const] = ACTIONS(3493), + [anon_sym_volatile] = ACTIONS(3495), + [anon_sym_restrict] = ACTIONS(3495), + [anon_sym__Atomic] = ACTIONS(3495), + [anon_sym_mutable] = ACTIONS(3495), + [anon_sym_constexpr] = ACTIONS(3495), + [anon_sym_constinit] = ACTIONS(3495), + [anon_sym_consteval] = ACTIONS(3495), + [anon_sym_COLON] = ACTIONS(3493), + [anon_sym_QMARK] = ACTIONS(3495), + [anon_sym_STAR_EQ] = ACTIONS(3495), + [anon_sym_SLASH_EQ] = ACTIONS(3495), + [anon_sym_PERCENT_EQ] = ACTIONS(3495), + [anon_sym_PLUS_EQ] = ACTIONS(3495), + [anon_sym_DASH_EQ] = ACTIONS(3495), + [anon_sym_LT_LT_EQ] = ACTIONS(3495), + [anon_sym_GT_GT_EQ] = ACTIONS(3495), + [anon_sym_AMP_EQ] = ACTIONS(3495), + [anon_sym_CARET_EQ] = ACTIONS(3495), + [anon_sym_PIPE_EQ] = ACTIONS(3495), + [anon_sym_and_eq] = ACTIONS(3495), + [anon_sym_or_eq] = ACTIONS(3495), + [anon_sym_xor_eq] = ACTIONS(3495), + [anon_sym_LT_EQ_GT] = ACTIONS(3495), + [anon_sym_or] = ACTIONS(3493), + [anon_sym_and] = ACTIONS(3493), + [anon_sym_bitor] = ACTIONS(3495), + [anon_sym_xor] = ACTIONS(3493), + [anon_sym_bitand] = ACTIONS(3495), + [anon_sym_not_eq] = ACTIONS(3495), + [anon_sym_DASH_DASH] = ACTIONS(3495), + [anon_sym_PLUS_PLUS] = ACTIONS(3495), + [anon_sym_DOT] = ACTIONS(3493), + [anon_sym_DASH_GT] = ACTIONS(3493), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3495), + [anon_sym_decltype] = ACTIONS(3495), + [anon_sym_final] = ACTIONS(3495), + [anon_sym_override] = ACTIONS(3495), + [anon_sym_DOT_STAR] = ACTIONS(3495), + [anon_sym_DASH_GT_STAR] = ACTIONS(3495), + }, + [1794] = { + [sym_function_definition] = STATE(2280), + [sym_declaration] = STATE(2280), + [sym__declaration_modifiers] = STATE(2203), + [sym__declaration_specifiers] = STATE(4251), + [sym_attribute_specifier] = STATE(2203), + [sym_attribute_declaration] = STATE(2203), + [sym_ms_declspec_modifier] = STATE(2203), + [sym_ms_call_modifier] = STATE(1998), + [sym_storage_class_specifier] = STATE(2203), + [sym_type_qualifier] = STATE(2203), + [sym__type_specifier] = STATE(3251), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym__class_name] = STATE(6826), + [sym_virtual_function_specifier] = STATE(2203), + [sym_dependent_type] = STATE(3481), + [sym_template_type] = STATE(4122), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(5394), + [sym_qualified_type_identifier] = STATE(4115), + [aux_sym__declaration_specifiers_repeat1] = STATE(2203), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [sym_identifier] = ACTIONS(3915), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(2434), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym___cdecl] = ACTIONS(49), + [anon_sym___clrcall] = ACTIONS(49), + [anon_sym___stdcall] = ACTIONS(49), + [anon_sym___fastcall] = ACTIONS(49), + [anon_sym___thiscall] = ACTIONS(49), + [anon_sym___vectorcall] = ACTIONS(49), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(2438), + [anon_sym_enum] = ACTIONS(63), + [anon_sym_class] = ACTIONS(3929), + [anon_sym_struct] = ACTIONS(3931), + [anon_sym_union] = ACTIONS(3933), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_typename] = ACTIONS(113), + [anon_sym_template] = ACTIONS(976), + }, + [1795] = { + [sym_template_argument_list] = STATE(1828), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3419), + [anon_sym_COMMA] = ACTIONS(3419), + [anon_sym_RPAREN] = ACTIONS(3447), + [anon_sym_LPAREN2] = ACTIONS(3447), + [anon_sym_DASH] = ACTIONS(3414), + [anon_sym_PLUS] = ACTIONS(3414), + [anon_sym_STAR] = ACTIONS(3416), + [anon_sym_SLASH] = ACTIONS(3414), + [anon_sym_PERCENT] = ACTIONS(3414), + [anon_sym_PIPE_PIPE] = ACTIONS(3419), + [anon_sym_AMP_AMP] = ACTIONS(3409), + [anon_sym_PIPE] = ACTIONS(3414), + [anon_sym_CARET] = ACTIONS(3414), + [anon_sym_AMP] = ACTIONS(3416), + [anon_sym_EQ_EQ] = ACTIONS(3419), + [anon_sym_BANG_EQ] = ACTIONS(3419), + [anon_sym_GT] = ACTIONS(3414), + [anon_sym_GT_EQ] = ACTIONS(3419), + [anon_sym_LT_EQ] = ACTIONS(3414), + [anon_sym_LT] = ACTIONS(3421), + [anon_sym_LT_LT] = ACTIONS(3414), + [anon_sym_GT_GT] = ACTIONS(3414), + [anon_sym_COLON_COLON] = ACTIONS(3424), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3935), + [anon_sym_LBRACE] = ACTIONS(3426), + [anon_sym_LBRACK] = ACTIONS(3457), + [anon_sym_EQ] = ACTIONS(3414), + [anon_sym_const] = ACTIONS(3407), + [anon_sym_volatile] = ACTIONS(3412), + [anon_sym_restrict] = ACTIONS(3412), + [anon_sym__Atomic] = ACTIONS(3412), + [anon_sym_mutable] = ACTIONS(3412), + [anon_sym_constexpr] = ACTIONS(3412), + [anon_sym_constinit] = ACTIONS(3412), + [anon_sym_consteval] = ACTIONS(3412), + [anon_sym_QMARK] = ACTIONS(3419), + [anon_sym_STAR_EQ] = ACTIONS(3419), + [anon_sym_SLASH_EQ] = ACTIONS(3419), + [anon_sym_PERCENT_EQ] = ACTIONS(3419), + [anon_sym_PLUS_EQ] = ACTIONS(3419), + [anon_sym_DASH_EQ] = ACTIONS(3419), + [anon_sym_LT_LT_EQ] = ACTIONS(3419), + [anon_sym_GT_GT_EQ] = ACTIONS(3419), + [anon_sym_AMP_EQ] = ACTIONS(3419), + [anon_sym_CARET_EQ] = ACTIONS(3419), + [anon_sym_PIPE_EQ] = ACTIONS(3419), + [anon_sym_and_eq] = ACTIONS(3937), + [anon_sym_or_eq] = ACTIONS(3937), + [anon_sym_xor_eq] = ACTIONS(3937), + [anon_sym_LT_EQ_GT] = ACTIONS(3419), + [anon_sym_or] = ACTIONS(3414), + [anon_sym_and] = ACTIONS(3414), + [anon_sym_bitor] = ACTIONS(3419), + [anon_sym_xor] = ACTIONS(3414), + [anon_sym_bitand] = ACTIONS(3419), + [anon_sym_not_eq] = ACTIONS(3419), + [anon_sym_DASH_DASH] = ACTIONS(3419), + [anon_sym_PLUS_PLUS] = ACTIONS(3419), + [anon_sym_DOT] = ACTIONS(3414), + [anon_sym_DASH_GT] = ACTIONS(3414), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3412), + [anon_sym_decltype] = ACTIONS(3412), + [anon_sym_DOT_STAR] = ACTIONS(3419), + [anon_sym_DASH_GT_STAR] = ACTIONS(3419), + }, + [1796] = { + [sym_template_argument_list] = STATE(1801), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3442), + [anon_sym_COMMA] = ACTIONS(3442), + [anon_sym_RPAREN] = ACTIONS(3432), + [anon_sym_LPAREN2] = ACTIONS(3432), + [anon_sym_DASH] = ACTIONS(3437), + [anon_sym_PLUS] = ACTIONS(3437), + [anon_sym_STAR] = ACTIONS(3439), + [anon_sym_SLASH] = ACTIONS(3437), + [anon_sym_PERCENT] = ACTIONS(3437), + [anon_sym_PIPE_PIPE] = ACTIONS(3442), + [anon_sym_AMP_AMP] = ACTIONS(3432), + [anon_sym_PIPE] = ACTIONS(3437), + [anon_sym_CARET] = ACTIONS(3437), + [anon_sym_AMP] = ACTIONS(3439), + [anon_sym_EQ_EQ] = ACTIONS(3442), + [anon_sym_BANG_EQ] = ACTIONS(3442), + [anon_sym_GT] = ACTIONS(3437), + [anon_sym_GT_EQ] = ACTIONS(3442), + [anon_sym_LT_EQ] = ACTIONS(3437), + [anon_sym_LT] = ACTIONS(3444), + [anon_sym_LT_LT] = ACTIONS(3437), + [anon_sym_GT_GT] = ACTIONS(3437), + [anon_sym_COLON_COLON] = ACTIONS(3424), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3442), + [anon_sym_LBRACE] = ACTIONS(3435), + [anon_sym_LBRACK] = ACTIONS(3439), + [anon_sym_EQ] = ACTIONS(3437), + [anon_sym_const] = ACTIONS(3430), + [anon_sym_volatile] = ACTIONS(3435), + [anon_sym_restrict] = ACTIONS(3435), + [anon_sym__Atomic] = ACTIONS(3435), + [anon_sym_mutable] = ACTIONS(3435), + [anon_sym_constexpr] = ACTIONS(3435), + [anon_sym_constinit] = ACTIONS(3435), + [anon_sym_consteval] = ACTIONS(3435), + [anon_sym_QMARK] = ACTIONS(3442), + [anon_sym_STAR_EQ] = ACTIONS(3442), + [anon_sym_SLASH_EQ] = ACTIONS(3442), + [anon_sym_PERCENT_EQ] = ACTIONS(3442), + [anon_sym_PLUS_EQ] = ACTIONS(3442), + [anon_sym_DASH_EQ] = ACTIONS(3442), + [anon_sym_LT_LT_EQ] = ACTIONS(3442), + [anon_sym_GT_GT_EQ] = ACTIONS(3442), + [anon_sym_AMP_EQ] = ACTIONS(3442), + [anon_sym_CARET_EQ] = ACTIONS(3442), + [anon_sym_PIPE_EQ] = ACTIONS(3442), + [anon_sym_and_eq] = ACTIONS(3442), + [anon_sym_or_eq] = ACTIONS(3442), + [anon_sym_xor_eq] = ACTIONS(3442), + [anon_sym_LT_EQ_GT] = ACTIONS(3442), + [anon_sym_or] = ACTIONS(3437), + [anon_sym_and] = ACTIONS(3437), + [anon_sym_bitor] = ACTIONS(3442), + [anon_sym_xor] = ACTIONS(3437), + [anon_sym_bitand] = ACTIONS(3442), + [anon_sym_not_eq] = ACTIONS(3442), + [anon_sym_DASH_DASH] = ACTIONS(3442), + [anon_sym_PLUS_PLUS] = ACTIONS(3442), + [anon_sym_DOT] = ACTIONS(3437), + [anon_sym_DASH_GT] = ACTIONS(3437), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3435), + [anon_sym_decltype] = ACTIONS(3435), + [anon_sym_DOT_STAR] = ACTIONS(3442), + [anon_sym_DASH_GT_STAR] = ACTIONS(3442), + }, + [1797] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(3499), + [anon_sym_COMMA] = ACTIONS(3499), + [anon_sym_LPAREN2] = ACTIONS(3499), + [anon_sym_DASH] = ACTIONS(3497), + [anon_sym_PLUS] = ACTIONS(3497), + [anon_sym_STAR] = ACTIONS(3497), + [anon_sym_SLASH] = ACTIONS(3497), + [anon_sym_PERCENT] = ACTIONS(3497), + [anon_sym_PIPE_PIPE] = ACTIONS(3499), + [anon_sym_AMP_AMP] = ACTIONS(3499), + [anon_sym_PIPE] = ACTIONS(3497), + [anon_sym_CARET] = ACTIONS(3497), + [anon_sym_AMP] = ACTIONS(3497), + [anon_sym_EQ_EQ] = ACTIONS(3499), + [anon_sym_BANG_EQ] = ACTIONS(3499), + [anon_sym_GT] = ACTIONS(3497), + [anon_sym_GT_EQ] = ACTIONS(3497), + [anon_sym_LT_EQ] = ACTIONS(3497), + [anon_sym_LT] = ACTIONS(3497), + [anon_sym_LT_LT] = ACTIONS(3497), + [anon_sym_GT_GT] = ACTIONS(3497), + [anon_sym_COLON_COLON] = ACTIONS(3499), + [anon_sym_LBRACE] = ACTIONS(3499), + [anon_sym_LBRACK] = ACTIONS(3499), + [anon_sym_EQ] = ACTIONS(3497), + [anon_sym_const] = ACTIONS(3497), + [anon_sym_volatile] = ACTIONS(3499), + [anon_sym_restrict] = ACTIONS(3499), + [anon_sym__Atomic] = ACTIONS(3499), + [anon_sym_mutable] = ACTIONS(3499), + [anon_sym_constexpr] = ACTIONS(3499), + [anon_sym_constinit] = ACTIONS(3499), + [anon_sym_consteval] = ACTIONS(3499), + [anon_sym_COLON] = ACTIONS(3497), + [anon_sym_QMARK] = ACTIONS(3499), + [anon_sym_STAR_EQ] = ACTIONS(3499), + [anon_sym_SLASH_EQ] = ACTIONS(3499), + [anon_sym_PERCENT_EQ] = ACTIONS(3499), + [anon_sym_PLUS_EQ] = ACTIONS(3499), + [anon_sym_DASH_EQ] = ACTIONS(3499), + [anon_sym_LT_LT_EQ] = ACTIONS(3499), + [anon_sym_GT_GT_EQ] = ACTIONS(3497), + [anon_sym_AMP_EQ] = ACTIONS(3499), + [anon_sym_CARET_EQ] = ACTIONS(3499), + [anon_sym_PIPE_EQ] = ACTIONS(3499), + [anon_sym_and_eq] = ACTIONS(3499), + [anon_sym_or_eq] = ACTIONS(3499), + [anon_sym_xor_eq] = ACTIONS(3499), + [anon_sym_LT_EQ_GT] = ACTIONS(3499), + [anon_sym_or] = ACTIONS(3497), + [anon_sym_and] = ACTIONS(3497), + [anon_sym_bitor] = ACTIONS(3499), + [anon_sym_xor] = ACTIONS(3497), + [anon_sym_bitand] = ACTIONS(3499), + [anon_sym_not_eq] = ACTIONS(3499), + [anon_sym_DASH_DASH] = ACTIONS(3499), + [anon_sym_PLUS_PLUS] = ACTIONS(3499), + [anon_sym_DOT] = ACTIONS(3497), + [anon_sym_DASH_GT] = ACTIONS(3499), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3499), + [anon_sym_decltype] = ACTIONS(3499), + [anon_sym_final] = ACTIONS(3499), + [anon_sym_override] = ACTIONS(3499), + [anon_sym_GT2] = ACTIONS(3499), + }, + [1798] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(3511), + [anon_sym_COMMA] = ACTIONS(3511), + [anon_sym_LPAREN2] = ACTIONS(3511), + [anon_sym_DASH] = ACTIONS(3509), + [anon_sym_PLUS] = ACTIONS(3509), + [anon_sym_STAR] = ACTIONS(3509), + [anon_sym_SLASH] = ACTIONS(3509), + [anon_sym_PERCENT] = ACTIONS(3509), + [anon_sym_PIPE_PIPE] = ACTIONS(3511), + [anon_sym_AMP_AMP] = ACTIONS(3511), + [anon_sym_PIPE] = ACTIONS(3509), + [anon_sym_CARET] = ACTIONS(3509), + [anon_sym_AMP] = ACTIONS(3509), + [anon_sym_EQ_EQ] = ACTIONS(3511), + [anon_sym_BANG_EQ] = ACTIONS(3511), + [anon_sym_GT] = ACTIONS(3509), + [anon_sym_GT_EQ] = ACTIONS(3509), + [anon_sym_LT_EQ] = ACTIONS(3509), + [anon_sym_LT] = ACTIONS(3509), + [anon_sym_LT_LT] = ACTIONS(3509), + [anon_sym_GT_GT] = ACTIONS(3509), + [anon_sym_COLON_COLON] = ACTIONS(3511), + [anon_sym_LBRACE] = ACTIONS(3511), + [anon_sym_LBRACK] = ACTIONS(3511), + [anon_sym_EQ] = ACTIONS(3509), + [anon_sym_const] = ACTIONS(3509), + [anon_sym_volatile] = ACTIONS(3511), + [anon_sym_restrict] = ACTIONS(3511), + [anon_sym__Atomic] = ACTIONS(3511), + [anon_sym_mutable] = ACTIONS(3511), + [anon_sym_constexpr] = ACTIONS(3511), + [anon_sym_constinit] = ACTIONS(3511), + [anon_sym_consteval] = ACTIONS(3511), + [anon_sym_COLON] = ACTIONS(3509), + [anon_sym_QMARK] = ACTIONS(3511), + [anon_sym_STAR_EQ] = ACTIONS(3511), + [anon_sym_SLASH_EQ] = ACTIONS(3511), + [anon_sym_PERCENT_EQ] = ACTIONS(3511), + [anon_sym_PLUS_EQ] = ACTIONS(3511), + [anon_sym_DASH_EQ] = ACTIONS(3511), + [anon_sym_LT_LT_EQ] = ACTIONS(3511), + [anon_sym_GT_GT_EQ] = ACTIONS(3509), + [anon_sym_AMP_EQ] = ACTIONS(3511), + [anon_sym_CARET_EQ] = ACTIONS(3511), + [anon_sym_PIPE_EQ] = ACTIONS(3511), + [anon_sym_and_eq] = ACTIONS(3511), + [anon_sym_or_eq] = ACTIONS(3511), + [anon_sym_xor_eq] = ACTIONS(3511), + [anon_sym_LT_EQ_GT] = ACTIONS(3511), + [anon_sym_or] = ACTIONS(3509), + [anon_sym_and] = ACTIONS(3509), + [anon_sym_bitor] = ACTIONS(3511), + [anon_sym_xor] = ACTIONS(3509), + [anon_sym_bitand] = ACTIONS(3511), + [anon_sym_not_eq] = ACTIONS(3511), + [anon_sym_DASH_DASH] = ACTIONS(3511), + [anon_sym_PLUS_PLUS] = ACTIONS(3511), + [anon_sym_DOT] = ACTIONS(3509), + [anon_sym_DASH_GT] = ACTIONS(3511), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3511), + [anon_sym_decltype] = ACTIONS(3511), + [anon_sym_final] = ACTIONS(3511), + [anon_sym_override] = ACTIONS(3511), + [anon_sym_GT2] = ACTIONS(3511), + }, + [1799] = { + [sym_identifier] = ACTIONS(2476), + [aux_sym_preproc_def_token1] = ACTIONS(2476), + [anon_sym_COMMA] = ACTIONS(2478), + [anon_sym_RPAREN] = ACTIONS(2478), + [aux_sym_preproc_if_token1] = ACTIONS(2476), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2476), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2476), + [sym_preproc_directive] = ACTIONS(2476), + [anon_sym_LPAREN2] = ACTIONS(2478), + [anon_sym_TILDE] = ACTIONS(2478), + [anon_sym_STAR] = ACTIONS(2478), + [anon_sym_PIPE_PIPE] = ACTIONS(2478), + [anon_sym_AMP_AMP] = ACTIONS(2478), + [anon_sym_AMP] = ACTIONS(2476), + [anon_sym_SEMI] = ACTIONS(2478), + [anon_sym_typedef] = ACTIONS(2476), + [anon_sym_extern] = ACTIONS(2476), + [anon_sym___attribute__] = ACTIONS(2476), + [anon_sym_COLON_COLON] = ACTIONS(2478), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2478), + [anon_sym___declspec] = ACTIONS(2476), + [anon_sym___based] = ACTIONS(2476), + [anon_sym_LBRACE] = ACTIONS(2478), + [anon_sym_RBRACE] = ACTIONS(2478), + [anon_sym_LBRACK] = ACTIONS(2476), + [anon_sym_EQ] = ACTIONS(2478), + [anon_sym_static] = ACTIONS(2476), + [anon_sym_register] = ACTIONS(2476), + [anon_sym_inline] = ACTIONS(2476), + [anon_sym_thread_local] = ACTIONS(2476), + [anon_sym_const] = ACTIONS(2476), + [anon_sym_volatile] = ACTIONS(2476), + [anon_sym_restrict] = ACTIONS(2476), + [anon_sym__Atomic] = ACTIONS(2476), + [anon_sym_mutable] = ACTIONS(2476), + [anon_sym_constexpr] = ACTIONS(2476), + [anon_sym_constinit] = ACTIONS(2476), + [anon_sym_consteval] = ACTIONS(2476), + [anon_sym_signed] = ACTIONS(2476), + [anon_sym_unsigned] = ACTIONS(2476), + [anon_sym_long] = ACTIONS(2476), + [anon_sym_short] = ACTIONS(2476), + [sym_primitive_type] = ACTIONS(2476), + [anon_sym_enum] = ACTIONS(2476), + [anon_sym_class] = ACTIONS(2476), + [anon_sym_struct] = ACTIONS(2476), + [anon_sym_union] = ACTIONS(2476), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2476), + [anon_sym_decltype] = ACTIONS(2476), + [anon_sym_virtual] = ACTIONS(2476), + [anon_sym_explicit] = ACTIONS(2476), + [anon_sym_public] = ACTIONS(2476), + [anon_sym_private] = ACTIONS(2476), + [anon_sym_protected] = ACTIONS(2476), + [anon_sym_typename] = ACTIONS(2476), + [anon_sym_template] = ACTIONS(2476), + [anon_sym_GT2] = ACTIONS(2478), + [anon_sym_operator] = ACTIONS(2476), + [anon_sym_try] = ACTIONS(2476), + [anon_sym_friend] = ACTIONS(2476), + [anon_sym_using] = ACTIONS(2476), + [anon_sym_static_assert] = ACTIONS(2476), + [anon_sym_catch] = ACTIONS(2476), + [anon_sym_requires] = ACTIONS(2476), + }, + [1800] = { + [sym__declaration_modifiers] = STATE(2175), + [sym__declaration_specifiers] = STATE(3396), + [sym_attribute_specifier] = STATE(2175), + [sym_attribute_declaration] = STATE(2175), + [sym_ms_declspec_modifier] = STATE(2175), + [sym_storage_class_specifier] = STATE(2175), + [sym_type_qualifier] = STATE(2175), + [sym__type_specifier] = STATE(3251), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_parameter_declaration] = STATE(5902), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym_virtual_function_specifier] = STATE(2175), + [sym_dependent_type] = STATE(3481), + [sym_type_parameter_declaration] = STATE(5902), + [sym_variadic_type_parameter_declaration] = STATE(5902), + [sym_optional_type_parameter_declaration] = STATE(5902), + [sym_template_template_parameter_declaration] = STATE(5902), + [sym_optional_parameter_declaration] = STATE(5902), + [sym_variadic_parameter_declaration] = STATE(5902), + [sym_template_type] = STATE(3395), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(5354), + [sym_qualified_type_identifier] = STATE(3490), + [aux_sym__declaration_specifiers_repeat1] = STATE(2175), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [sym_identifier] = ACTIONS(3755), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3765), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(2438), + [anon_sym_enum] = ACTIONS(1431), + [anon_sym_class] = ACTIONS(3939), + [anon_sym_struct] = ACTIONS(1435), + [anon_sym_union] = ACTIONS(1437), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_typename] = ACTIONS(3941), + [anon_sym_template] = ACTIONS(3943), + [anon_sym_GT2] = ACTIONS(3945), + }, + [1801] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(3485), + [anon_sym_COMMA] = ACTIONS(3485), + [anon_sym_RPAREN] = ACTIONS(3475), + [anon_sym_LPAREN2] = ACTIONS(3475), + [anon_sym_DASH] = ACTIONS(3480), + [anon_sym_PLUS] = ACTIONS(3480), + [anon_sym_STAR] = ACTIONS(3482), + [anon_sym_SLASH] = ACTIONS(3480), + [anon_sym_PERCENT] = ACTIONS(3480), + [anon_sym_PIPE_PIPE] = ACTIONS(3485), + [anon_sym_AMP_AMP] = ACTIONS(3475), + [anon_sym_PIPE] = ACTIONS(3480), + [anon_sym_CARET] = ACTIONS(3480), + [anon_sym_AMP] = ACTIONS(3482), + [anon_sym_EQ_EQ] = ACTIONS(3485), + [anon_sym_BANG_EQ] = ACTIONS(3485), + [anon_sym_GT] = ACTIONS(3480), + [anon_sym_GT_EQ] = ACTIONS(3485), + [anon_sym_LT_EQ] = ACTIONS(3480), + [anon_sym_LT] = ACTIONS(3480), + [anon_sym_LT_LT] = ACTIONS(3480), + [anon_sym_GT_GT] = ACTIONS(3480), + [anon_sym_COLON_COLON] = ACTIONS(3478), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3485), + [anon_sym_LBRACE] = ACTIONS(3478), + [anon_sym_LBRACK] = ACTIONS(3482), + [anon_sym_EQ] = ACTIONS(3480), + [anon_sym_const] = ACTIONS(3473), + [anon_sym_volatile] = ACTIONS(3478), + [anon_sym_restrict] = ACTIONS(3478), + [anon_sym__Atomic] = ACTIONS(3478), + [anon_sym_mutable] = ACTIONS(3478), + [anon_sym_constexpr] = ACTIONS(3478), + [anon_sym_constinit] = ACTIONS(3478), + [anon_sym_consteval] = ACTIONS(3478), + [anon_sym_QMARK] = ACTIONS(3485), + [anon_sym_STAR_EQ] = ACTIONS(3485), + [anon_sym_SLASH_EQ] = ACTIONS(3485), + [anon_sym_PERCENT_EQ] = ACTIONS(3485), + [anon_sym_PLUS_EQ] = ACTIONS(3485), + [anon_sym_DASH_EQ] = ACTIONS(3485), + [anon_sym_LT_LT_EQ] = ACTIONS(3485), + [anon_sym_GT_GT_EQ] = ACTIONS(3485), + [anon_sym_AMP_EQ] = ACTIONS(3485), + [anon_sym_CARET_EQ] = ACTIONS(3485), + [anon_sym_PIPE_EQ] = ACTIONS(3485), + [anon_sym_and_eq] = ACTIONS(3485), + [anon_sym_or_eq] = ACTIONS(3485), + [anon_sym_xor_eq] = ACTIONS(3485), + [anon_sym_LT_EQ_GT] = ACTIONS(3485), + [anon_sym_or] = ACTIONS(3480), + [anon_sym_and] = ACTIONS(3480), + [anon_sym_bitor] = ACTIONS(3485), + [anon_sym_xor] = ACTIONS(3480), + [anon_sym_bitand] = ACTIONS(3485), + [anon_sym_not_eq] = ACTIONS(3485), + [anon_sym_DASH_DASH] = ACTIONS(3485), + [anon_sym_PLUS_PLUS] = ACTIONS(3485), + [anon_sym_DOT] = ACTIONS(3480), + [anon_sym_DASH_GT] = ACTIONS(3480), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3478), + [anon_sym_decltype] = ACTIONS(3478), + [anon_sym_DOT_STAR] = ACTIONS(3485), + [anon_sym_DASH_GT_STAR] = ACTIONS(3485), + }, + [1802] = { + [sym_identifier] = ACTIONS(2485), + [aux_sym_preproc_def_token1] = ACTIONS(2485), + [anon_sym_COMMA] = ACTIONS(2487), + [anon_sym_RPAREN] = ACTIONS(2487), + [aux_sym_preproc_if_token1] = ACTIONS(2485), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2485), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2485), + [sym_preproc_directive] = ACTIONS(2485), + [anon_sym_LPAREN2] = ACTIONS(2487), + [anon_sym_TILDE] = ACTIONS(2487), + [anon_sym_STAR] = ACTIONS(2487), + [anon_sym_PIPE_PIPE] = ACTIONS(2487), + [anon_sym_AMP_AMP] = ACTIONS(2487), + [anon_sym_AMP] = ACTIONS(2485), + [anon_sym_SEMI] = ACTIONS(2487), + [anon_sym_typedef] = ACTIONS(2485), + [anon_sym_extern] = ACTIONS(2485), + [anon_sym___attribute__] = ACTIONS(2485), + [anon_sym_COLON_COLON] = ACTIONS(2487), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2487), + [anon_sym___declspec] = ACTIONS(2485), + [anon_sym___based] = ACTIONS(2485), + [anon_sym_LBRACE] = ACTIONS(2487), + [anon_sym_RBRACE] = ACTIONS(2487), + [anon_sym_LBRACK] = ACTIONS(2485), + [anon_sym_EQ] = ACTIONS(2487), + [anon_sym_static] = ACTIONS(2485), + [anon_sym_register] = ACTIONS(2485), + [anon_sym_inline] = ACTIONS(2485), + [anon_sym_thread_local] = ACTIONS(2485), + [anon_sym_const] = ACTIONS(2485), + [anon_sym_volatile] = ACTIONS(2485), + [anon_sym_restrict] = ACTIONS(2485), + [anon_sym__Atomic] = ACTIONS(2485), + [anon_sym_mutable] = ACTIONS(2485), + [anon_sym_constexpr] = ACTIONS(2485), + [anon_sym_constinit] = ACTIONS(2485), + [anon_sym_consteval] = ACTIONS(2485), + [anon_sym_signed] = ACTIONS(2485), + [anon_sym_unsigned] = ACTIONS(2485), + [anon_sym_long] = ACTIONS(2485), + [anon_sym_short] = ACTIONS(2485), + [sym_primitive_type] = ACTIONS(2485), + [anon_sym_enum] = ACTIONS(2485), + [anon_sym_class] = ACTIONS(2485), + [anon_sym_struct] = ACTIONS(2485), + [anon_sym_union] = ACTIONS(2485), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2485), + [anon_sym_decltype] = ACTIONS(2485), + [anon_sym_virtual] = ACTIONS(2485), + [anon_sym_explicit] = ACTIONS(2485), + [anon_sym_public] = ACTIONS(2485), + [anon_sym_private] = ACTIONS(2485), + [anon_sym_protected] = ACTIONS(2485), + [anon_sym_typename] = ACTIONS(2485), + [anon_sym_template] = ACTIONS(2485), + [anon_sym_GT2] = ACTIONS(2487), + [anon_sym_operator] = ACTIONS(2485), + [anon_sym_try] = ACTIONS(2485), + [anon_sym_friend] = ACTIONS(2485), + [anon_sym_using] = ACTIONS(2485), + [anon_sym_static_assert] = ACTIONS(2485), + [anon_sym_catch] = ACTIONS(2485), + [anon_sym_requires] = ACTIONS(2485), + }, + [1803] = { + [sym_template_argument_list] = STATE(1814), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3442), + [anon_sym_COMMA] = ACTIONS(3442), + [anon_sym_RPAREN] = ACTIONS(3432), + [anon_sym_LPAREN2] = ACTIONS(3432), + [anon_sym_DASH] = ACTIONS(3437), + [anon_sym_PLUS] = ACTIONS(3437), + [anon_sym_STAR] = ACTIONS(3439), + [anon_sym_SLASH] = ACTIONS(3437), + [anon_sym_PERCENT] = ACTIONS(3437), + [anon_sym_PIPE_PIPE] = ACTIONS(3442), + [anon_sym_AMP_AMP] = ACTIONS(3432), + [anon_sym_PIPE] = ACTIONS(3437), + [anon_sym_CARET] = ACTIONS(3437), + [anon_sym_AMP] = ACTIONS(3439), + [anon_sym_EQ_EQ] = ACTIONS(3442), + [anon_sym_BANG_EQ] = ACTIONS(3442), + [anon_sym_GT] = ACTIONS(3437), + [anon_sym_GT_EQ] = ACTIONS(3442), + [anon_sym_LT_EQ] = ACTIONS(3437), + [anon_sym_LT] = ACTIONS(3947), + [anon_sym_LT_LT] = ACTIONS(3437), + [anon_sym_GT_GT] = ACTIONS(3437), + [anon_sym_COLON_COLON] = ACTIONS(3424), + [anon_sym_LBRACE] = ACTIONS(3435), + [anon_sym_LBRACK] = ACTIONS(3432), + [anon_sym_EQ] = ACTIONS(3437), + [anon_sym_const] = ACTIONS(3430), + [anon_sym_volatile] = ACTIONS(3435), + [anon_sym_restrict] = ACTIONS(3435), + [anon_sym__Atomic] = ACTIONS(3435), + [anon_sym_mutable] = ACTIONS(3435), + [anon_sym_constexpr] = ACTIONS(3435), + [anon_sym_constinit] = ACTIONS(3435), + [anon_sym_consteval] = ACTIONS(3435), + [anon_sym_QMARK] = ACTIONS(3442), + [anon_sym_STAR_EQ] = ACTIONS(3442), + [anon_sym_SLASH_EQ] = ACTIONS(3442), + [anon_sym_PERCENT_EQ] = ACTIONS(3442), + [anon_sym_PLUS_EQ] = ACTIONS(3442), + [anon_sym_DASH_EQ] = ACTIONS(3442), + [anon_sym_LT_LT_EQ] = ACTIONS(3442), + [anon_sym_GT_GT_EQ] = ACTIONS(3442), + [anon_sym_AMP_EQ] = ACTIONS(3442), + [anon_sym_CARET_EQ] = ACTIONS(3442), + [anon_sym_PIPE_EQ] = ACTIONS(3442), + [anon_sym_and_eq] = ACTIONS(3442), + [anon_sym_or_eq] = ACTIONS(3442), + [anon_sym_xor_eq] = ACTIONS(3442), + [anon_sym_LT_EQ_GT] = ACTIONS(3442), + [anon_sym_or] = ACTIONS(3437), + [anon_sym_and] = ACTIONS(3437), + [anon_sym_bitor] = ACTIONS(3442), + [anon_sym_xor] = ACTIONS(3437), + [anon_sym_bitand] = ACTIONS(3442), + [anon_sym_not_eq] = ACTIONS(3442), + [anon_sym_DASH_DASH] = ACTIONS(3442), + [anon_sym_PLUS_PLUS] = ACTIONS(3442), + [anon_sym_DOT] = ACTIONS(3437), + [anon_sym_DASH_GT] = ACTIONS(3437), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3435), + [anon_sym_decltype] = ACTIONS(3435), + [anon_sym_DOT_STAR] = ACTIONS(3442), + [anon_sym_DASH_GT_STAR] = ACTIONS(3442), + }, + [1804] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(3507), + [anon_sym_COMMA] = ACTIONS(3507), + [anon_sym_LPAREN2] = ACTIONS(3507), + [anon_sym_DASH] = ACTIONS(3505), + [anon_sym_PLUS] = ACTIONS(3505), + [anon_sym_STAR] = ACTIONS(3505), + [anon_sym_SLASH] = ACTIONS(3505), + [anon_sym_PERCENT] = ACTIONS(3505), + [anon_sym_PIPE_PIPE] = ACTIONS(3507), + [anon_sym_AMP_AMP] = ACTIONS(3507), + [anon_sym_PIPE] = ACTIONS(3505), + [anon_sym_CARET] = ACTIONS(3505), + [anon_sym_AMP] = ACTIONS(3505), + [anon_sym_EQ_EQ] = ACTIONS(3507), + [anon_sym_BANG_EQ] = ACTIONS(3507), + [anon_sym_GT] = ACTIONS(3505), + [anon_sym_GT_EQ] = ACTIONS(3505), + [anon_sym_LT_EQ] = ACTIONS(3505), + [anon_sym_LT] = ACTIONS(3505), + [anon_sym_LT_LT] = ACTIONS(3505), + [anon_sym_GT_GT] = ACTIONS(3505), + [anon_sym_COLON_COLON] = ACTIONS(3507), + [anon_sym_LBRACE] = ACTIONS(3507), + [anon_sym_LBRACK] = ACTIONS(3507), + [anon_sym_EQ] = ACTIONS(3505), + [anon_sym_const] = ACTIONS(3505), + [anon_sym_volatile] = ACTIONS(3507), + [anon_sym_restrict] = ACTIONS(3507), + [anon_sym__Atomic] = ACTIONS(3507), + [anon_sym_mutable] = ACTIONS(3507), + [anon_sym_constexpr] = ACTIONS(3507), + [anon_sym_constinit] = ACTIONS(3507), + [anon_sym_consteval] = ACTIONS(3507), + [anon_sym_COLON] = ACTIONS(3505), + [anon_sym_QMARK] = ACTIONS(3507), + [anon_sym_STAR_EQ] = ACTIONS(3507), + [anon_sym_SLASH_EQ] = ACTIONS(3507), + [anon_sym_PERCENT_EQ] = ACTIONS(3507), + [anon_sym_PLUS_EQ] = ACTIONS(3507), + [anon_sym_DASH_EQ] = ACTIONS(3507), + [anon_sym_LT_LT_EQ] = ACTIONS(3507), + [anon_sym_GT_GT_EQ] = ACTIONS(3505), + [anon_sym_AMP_EQ] = ACTIONS(3507), + [anon_sym_CARET_EQ] = ACTIONS(3507), + [anon_sym_PIPE_EQ] = ACTIONS(3507), + [anon_sym_and_eq] = ACTIONS(3507), + [anon_sym_or_eq] = ACTIONS(3507), + [anon_sym_xor_eq] = ACTIONS(3507), + [anon_sym_LT_EQ_GT] = ACTIONS(3507), + [anon_sym_or] = ACTIONS(3505), + [anon_sym_and] = ACTIONS(3505), + [anon_sym_bitor] = ACTIONS(3507), + [anon_sym_xor] = ACTIONS(3505), + [anon_sym_bitand] = ACTIONS(3507), + [anon_sym_not_eq] = ACTIONS(3507), + [anon_sym_DASH_DASH] = ACTIONS(3507), + [anon_sym_PLUS_PLUS] = ACTIONS(3507), + [anon_sym_DOT] = ACTIONS(3505), + [anon_sym_DASH_GT] = ACTIONS(3507), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3507), + [anon_sym_decltype] = ACTIONS(3507), + [anon_sym_final] = ACTIONS(3507), + [anon_sym_override] = ACTIONS(3507), + [anon_sym_GT2] = ACTIONS(3507), + }, + [1805] = { + [sym__declaration_modifiers] = STATE(2175), + [sym__declaration_specifiers] = STATE(3396), + [sym_attribute_specifier] = STATE(2175), + [sym_attribute_declaration] = STATE(2175), + [sym_ms_declspec_modifier] = STATE(2175), + [sym_storage_class_specifier] = STATE(2175), + [sym_type_qualifier] = STATE(2175), + [sym__type_specifier] = STATE(3251), + [sym_sized_type_specifier] = STATE(3481), + [sym_enum_specifier] = STATE(3481), + [sym_struct_specifier] = STATE(3481), + [sym_union_specifier] = STATE(3481), + [sym_parameter_declaration] = STATE(5893), + [sym_placeholder_type_specifier] = STATE(3481), + [sym_decltype_auto] = STATE(3494), + [sym_decltype] = STATE(3481), + [sym_class_specifier] = STATE(3481), + [sym_virtual_function_specifier] = STATE(2175), + [sym_dependent_type] = STATE(3481), + [sym_type_parameter_declaration] = STATE(5893), + [sym_variadic_type_parameter_declaration] = STATE(5893), + [sym_optional_type_parameter_declaration] = STATE(5893), + [sym_template_template_parameter_declaration] = STATE(5893), + [sym_optional_parameter_declaration] = STATE(5893), + [sym_variadic_parameter_declaration] = STATE(5893), + [sym_template_type] = STATE(3395), + [sym_dependent_type_identifier] = STATE(7236), + [sym__scope_resolution] = STATE(5354), + [sym_qualified_type_identifier] = STATE(3490), + [aux_sym__declaration_specifiers_repeat1] = STATE(2175), + [aux_sym_sized_type_specifier_repeat1] = STATE(3271), + [sym_identifier] = ACTIONS(3755), + [anon_sym_extern] = ACTIONS(55), + [anon_sym___attribute__] = ACTIONS(39), + [anon_sym_COLON_COLON] = ACTIONS(3765), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1393), + [anon_sym___declspec] = ACTIONS(45), + [anon_sym_static] = ACTIONS(55), + [anon_sym_register] = ACTIONS(55), + [anon_sym_inline] = ACTIONS(55), + [anon_sym_thread_local] = ACTIONS(55), + [anon_sym_const] = ACTIONS(57), + [anon_sym_volatile] = ACTIONS(57), + [anon_sym_restrict] = ACTIONS(57), + [anon_sym__Atomic] = ACTIONS(57), + [anon_sym_mutable] = ACTIONS(57), + [anon_sym_constexpr] = ACTIONS(57), + [anon_sym_constinit] = ACTIONS(57), + [anon_sym_consteval] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [sym_primitive_type] = ACTIONS(2438), + [anon_sym_enum] = ACTIONS(1431), + [anon_sym_class] = ACTIONS(3939), + [anon_sym_struct] = ACTIONS(1435), + [anon_sym_union] = ACTIONS(1437), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(105), + [anon_sym_decltype] = ACTIONS(107), + [anon_sym_virtual] = ACTIONS(109), + [anon_sym_typename] = ACTIONS(3941), + [anon_sym_template] = ACTIONS(3943), + [anon_sym_GT2] = ACTIONS(3950), + }, + [1806] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(3489), + [anon_sym_COMMA] = ACTIONS(3489), + [anon_sym_LPAREN2] = ACTIONS(3489), + [anon_sym_DASH] = ACTIONS(3487), + [anon_sym_PLUS] = ACTIONS(3487), + [anon_sym_STAR] = ACTIONS(3487), + [anon_sym_SLASH] = ACTIONS(3487), + [anon_sym_PERCENT] = ACTIONS(3487), + [anon_sym_PIPE_PIPE] = ACTIONS(3489), + [anon_sym_AMP_AMP] = ACTIONS(3489), + [anon_sym_PIPE] = ACTIONS(3487), + [anon_sym_CARET] = ACTIONS(3487), + [anon_sym_AMP] = ACTIONS(3487), + [anon_sym_EQ_EQ] = ACTIONS(3489), + [anon_sym_BANG_EQ] = ACTIONS(3489), + [anon_sym_GT] = ACTIONS(3487), + [anon_sym_GT_EQ] = ACTIONS(3487), + [anon_sym_LT_EQ] = ACTIONS(3487), + [anon_sym_LT] = ACTIONS(3487), + [anon_sym_LT_LT] = ACTIONS(3487), + [anon_sym_GT_GT] = ACTIONS(3487), + [anon_sym_COLON_COLON] = ACTIONS(3489), + [anon_sym_LBRACE] = ACTIONS(3489), + [anon_sym_LBRACK] = ACTIONS(3489), + [anon_sym_EQ] = ACTIONS(3487), + [anon_sym_const] = ACTIONS(3487), + [anon_sym_volatile] = ACTIONS(3489), + [anon_sym_restrict] = ACTIONS(3489), + [anon_sym__Atomic] = ACTIONS(3489), + [anon_sym_mutable] = ACTIONS(3489), + [anon_sym_constexpr] = ACTIONS(3489), + [anon_sym_constinit] = ACTIONS(3489), + [anon_sym_consteval] = ACTIONS(3489), + [anon_sym_COLON] = ACTIONS(3487), + [anon_sym_QMARK] = ACTIONS(3489), + [anon_sym_STAR_EQ] = ACTIONS(3489), + [anon_sym_SLASH_EQ] = ACTIONS(3489), + [anon_sym_PERCENT_EQ] = ACTIONS(3489), + [anon_sym_PLUS_EQ] = ACTIONS(3489), + [anon_sym_DASH_EQ] = ACTIONS(3489), + [anon_sym_LT_LT_EQ] = ACTIONS(3489), + [anon_sym_GT_GT_EQ] = ACTIONS(3487), + [anon_sym_AMP_EQ] = ACTIONS(3489), + [anon_sym_CARET_EQ] = ACTIONS(3489), + [anon_sym_PIPE_EQ] = ACTIONS(3489), + [anon_sym_and_eq] = ACTIONS(3489), + [anon_sym_or_eq] = ACTIONS(3489), + [anon_sym_xor_eq] = ACTIONS(3489), + [anon_sym_LT_EQ_GT] = ACTIONS(3489), + [anon_sym_or] = ACTIONS(3487), + [anon_sym_and] = ACTIONS(3487), + [anon_sym_bitor] = ACTIONS(3489), + [anon_sym_xor] = ACTIONS(3487), + [anon_sym_bitand] = ACTIONS(3489), + [anon_sym_not_eq] = ACTIONS(3489), + [anon_sym_DASH_DASH] = ACTIONS(3489), + [anon_sym_PLUS_PLUS] = ACTIONS(3489), + [anon_sym_DOT] = ACTIONS(3487), + [anon_sym_DASH_GT] = ACTIONS(3489), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3489), + [anon_sym_decltype] = ACTIONS(3489), + [anon_sym_final] = ACTIONS(3489), + [anon_sym_override] = ACTIONS(3489), + [anon_sym_GT2] = ACTIONS(3489), + }, + [1807] = { + [sym_template_argument_list] = STATE(1851), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3419), + [anon_sym_COMMA] = ACTIONS(3419), + [anon_sym_RPAREN] = ACTIONS(3409), + [anon_sym_LPAREN2] = ACTIONS(3409), + [anon_sym_DASH] = ACTIONS(3414), + [anon_sym_PLUS] = ACTIONS(3414), + [anon_sym_STAR] = ACTIONS(3416), + [anon_sym_SLASH] = ACTIONS(3414), + [anon_sym_PERCENT] = ACTIONS(3414), + [anon_sym_PIPE_PIPE] = ACTIONS(3419), + [anon_sym_AMP_AMP] = ACTIONS(3409), + [anon_sym_PIPE] = ACTIONS(3414), + [anon_sym_CARET] = ACTIONS(3414), + [anon_sym_AMP] = ACTIONS(3416), + [anon_sym_EQ_EQ] = ACTIONS(3419), + [anon_sym_BANG_EQ] = ACTIONS(3419), + [anon_sym_GT] = ACTIONS(3414), + [anon_sym_GT_EQ] = ACTIONS(3419), + [anon_sym_LT_EQ] = ACTIONS(3414), + [anon_sym_LT] = ACTIONS(3952), + [anon_sym_LT_LT] = ACTIONS(3414), + [anon_sym_GT_GT] = ACTIONS(3414), + [anon_sym_COLON_COLON] = ACTIONS(3424), + [anon_sym_LBRACE] = ACTIONS(3426), + [anon_sym_LBRACK] = ACTIONS(3409), + [anon_sym_EQ] = ACTIONS(3414), + [anon_sym_const] = ACTIONS(3407), + [anon_sym_volatile] = ACTIONS(3412), + [anon_sym_restrict] = ACTIONS(3412), + [anon_sym__Atomic] = ACTIONS(3412), + [anon_sym_mutable] = ACTIONS(3412), + [anon_sym_constexpr] = ACTIONS(3412), + [anon_sym_constinit] = ACTIONS(3412), + [anon_sym_consteval] = ACTIONS(3412), + [anon_sym_QMARK] = ACTIONS(3419), + [anon_sym_STAR_EQ] = ACTIONS(3419), + [anon_sym_SLASH_EQ] = ACTIONS(3419), + [anon_sym_PERCENT_EQ] = ACTIONS(3419), + [anon_sym_PLUS_EQ] = ACTIONS(3419), + [anon_sym_DASH_EQ] = ACTIONS(3419), + [anon_sym_LT_LT_EQ] = ACTIONS(3419), + [anon_sym_GT_GT_EQ] = ACTIONS(3419), + [anon_sym_AMP_EQ] = ACTIONS(3419), + [anon_sym_CARET_EQ] = ACTIONS(3419), + [anon_sym_PIPE_EQ] = ACTIONS(3419), + [anon_sym_and_eq] = ACTIONS(3937), + [anon_sym_or_eq] = ACTIONS(3937), + [anon_sym_xor_eq] = ACTIONS(3937), + [anon_sym_LT_EQ_GT] = ACTIONS(3419), + [anon_sym_or] = ACTIONS(3414), + [anon_sym_and] = ACTIONS(3414), + [anon_sym_bitor] = ACTIONS(3419), + [anon_sym_xor] = ACTIONS(3414), + [anon_sym_bitand] = ACTIONS(3419), + [anon_sym_not_eq] = ACTIONS(3419), + [anon_sym_DASH_DASH] = ACTIONS(3419), + [anon_sym_PLUS_PLUS] = ACTIONS(3419), + [anon_sym_DOT] = ACTIONS(3414), + [anon_sym_DASH_GT] = ACTIONS(3414), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3412), + [anon_sym_decltype] = ACTIONS(3412), + [anon_sym_DOT_STAR] = ACTIONS(3419), + [anon_sym_DASH_GT_STAR] = ACTIONS(3419), + }, + [1808] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(3495), + [anon_sym_COMMA] = ACTIONS(3495), + [anon_sym_LPAREN2] = ACTIONS(3495), + [anon_sym_DASH] = ACTIONS(3493), + [anon_sym_PLUS] = ACTIONS(3493), + [anon_sym_STAR] = ACTIONS(3493), + [anon_sym_SLASH] = ACTIONS(3493), + [anon_sym_PERCENT] = ACTIONS(3493), + [anon_sym_PIPE_PIPE] = ACTIONS(3495), + [anon_sym_AMP_AMP] = ACTIONS(3495), + [anon_sym_PIPE] = ACTIONS(3493), + [anon_sym_CARET] = ACTIONS(3493), + [anon_sym_AMP] = ACTIONS(3493), + [anon_sym_EQ_EQ] = ACTIONS(3495), + [anon_sym_BANG_EQ] = ACTIONS(3495), + [anon_sym_GT] = ACTIONS(3493), + [anon_sym_GT_EQ] = ACTIONS(3493), + [anon_sym_LT_EQ] = ACTIONS(3493), + [anon_sym_LT] = ACTIONS(3493), + [anon_sym_LT_LT] = ACTIONS(3493), + [anon_sym_GT_GT] = ACTIONS(3493), + [anon_sym_COLON_COLON] = ACTIONS(3495), + [anon_sym_LBRACE] = ACTIONS(3495), + [anon_sym_LBRACK] = ACTIONS(3495), + [anon_sym_EQ] = ACTIONS(3493), + [anon_sym_const] = ACTIONS(3493), + [anon_sym_volatile] = ACTIONS(3495), + [anon_sym_restrict] = ACTIONS(3495), + [anon_sym__Atomic] = ACTIONS(3495), + [anon_sym_mutable] = ACTIONS(3495), + [anon_sym_constexpr] = ACTIONS(3495), + [anon_sym_constinit] = ACTIONS(3495), + [anon_sym_consteval] = ACTIONS(3495), + [anon_sym_COLON] = ACTIONS(3493), + [anon_sym_QMARK] = ACTIONS(3495), + [anon_sym_STAR_EQ] = ACTIONS(3495), + [anon_sym_SLASH_EQ] = ACTIONS(3495), + [anon_sym_PERCENT_EQ] = ACTIONS(3495), + [anon_sym_PLUS_EQ] = ACTIONS(3495), + [anon_sym_DASH_EQ] = ACTIONS(3495), + [anon_sym_LT_LT_EQ] = ACTIONS(3495), + [anon_sym_GT_GT_EQ] = ACTIONS(3493), + [anon_sym_AMP_EQ] = ACTIONS(3495), + [anon_sym_CARET_EQ] = ACTIONS(3495), + [anon_sym_PIPE_EQ] = ACTIONS(3495), + [anon_sym_and_eq] = ACTIONS(3495), + [anon_sym_or_eq] = ACTIONS(3495), + [anon_sym_xor_eq] = ACTIONS(3495), + [anon_sym_LT_EQ_GT] = ACTIONS(3495), + [anon_sym_or] = ACTIONS(3493), + [anon_sym_and] = ACTIONS(3493), + [anon_sym_bitor] = ACTIONS(3495), + [anon_sym_xor] = ACTIONS(3493), + [anon_sym_bitand] = ACTIONS(3495), + [anon_sym_not_eq] = ACTIONS(3495), + [anon_sym_DASH_DASH] = ACTIONS(3495), + [anon_sym_PLUS_PLUS] = ACTIONS(3495), + [anon_sym_DOT] = ACTIONS(3493), + [anon_sym_DASH_GT] = ACTIONS(3495), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3495), + [anon_sym_decltype] = ACTIONS(3495), + [anon_sym_final] = ACTIONS(3495), + [anon_sym_override] = ACTIONS(3495), + [anon_sym_GT2] = ACTIONS(3495), + }, + [1809] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(3469), + [anon_sym_COMMA] = ACTIONS(3469), + [anon_sym_LPAREN2] = ACTIONS(3469), + [anon_sym_DASH] = ACTIONS(3467), + [anon_sym_PLUS] = ACTIONS(3467), + [anon_sym_STAR] = ACTIONS(3467), + [anon_sym_SLASH] = ACTIONS(3467), + [anon_sym_PERCENT] = ACTIONS(3467), + [anon_sym_PIPE_PIPE] = ACTIONS(3469), + [anon_sym_AMP_AMP] = ACTIONS(3469), + [anon_sym_PIPE] = ACTIONS(3467), + [anon_sym_CARET] = ACTIONS(3467), + [anon_sym_AMP] = ACTIONS(3467), + [anon_sym_EQ_EQ] = ACTIONS(3469), + [anon_sym_BANG_EQ] = ACTIONS(3469), + [anon_sym_GT] = ACTIONS(3467), + [anon_sym_GT_EQ] = ACTIONS(3467), + [anon_sym_LT_EQ] = ACTIONS(3467), + [anon_sym_LT] = ACTIONS(3467), + [anon_sym_LT_LT] = ACTIONS(3467), + [anon_sym_GT_GT] = ACTIONS(3467), + [anon_sym_COLON_COLON] = ACTIONS(3469), + [anon_sym_LBRACE] = ACTIONS(3469), + [anon_sym_LBRACK] = ACTIONS(3469), + [anon_sym_EQ] = ACTIONS(3467), + [anon_sym_const] = ACTIONS(3467), + [anon_sym_volatile] = ACTIONS(3469), + [anon_sym_restrict] = ACTIONS(3469), + [anon_sym__Atomic] = ACTIONS(3469), + [anon_sym_mutable] = ACTIONS(3469), + [anon_sym_constexpr] = ACTIONS(3469), + [anon_sym_constinit] = ACTIONS(3469), + [anon_sym_consteval] = ACTIONS(3469), + [anon_sym_COLON] = ACTIONS(3467), + [anon_sym_QMARK] = ACTIONS(3469), + [anon_sym_STAR_EQ] = ACTIONS(3469), + [anon_sym_SLASH_EQ] = ACTIONS(3469), + [anon_sym_PERCENT_EQ] = ACTIONS(3469), + [anon_sym_PLUS_EQ] = ACTIONS(3469), + [anon_sym_DASH_EQ] = ACTIONS(3469), + [anon_sym_LT_LT_EQ] = ACTIONS(3469), + [anon_sym_GT_GT_EQ] = ACTIONS(3467), + [anon_sym_AMP_EQ] = ACTIONS(3469), + [anon_sym_CARET_EQ] = ACTIONS(3469), + [anon_sym_PIPE_EQ] = ACTIONS(3469), + [anon_sym_and_eq] = ACTIONS(3469), + [anon_sym_or_eq] = ACTIONS(3469), + [anon_sym_xor_eq] = ACTIONS(3469), + [anon_sym_LT_EQ_GT] = ACTIONS(3469), + [anon_sym_or] = ACTIONS(3467), + [anon_sym_and] = ACTIONS(3467), + [anon_sym_bitor] = ACTIONS(3469), + [anon_sym_xor] = ACTIONS(3467), + [anon_sym_bitand] = ACTIONS(3469), + [anon_sym_not_eq] = ACTIONS(3469), + [anon_sym_DASH_DASH] = ACTIONS(3469), + [anon_sym_PLUS_PLUS] = ACTIONS(3469), + [anon_sym_DOT] = ACTIONS(3467), + [anon_sym_DASH_GT] = ACTIONS(3469), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3469), + [anon_sym_decltype] = ACTIONS(3469), + [anon_sym_final] = ACTIONS(3469), + [anon_sym_override] = ACTIONS(3469), + [anon_sym_GT2] = ACTIONS(3469), + }, + [1810] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(3503), + [anon_sym_COMMA] = ACTIONS(3503), + [anon_sym_LPAREN2] = ACTIONS(3503), + [anon_sym_DASH] = ACTIONS(3501), + [anon_sym_PLUS] = ACTIONS(3501), + [anon_sym_STAR] = ACTIONS(3501), + [anon_sym_SLASH] = ACTIONS(3501), + [anon_sym_PERCENT] = ACTIONS(3501), + [anon_sym_PIPE_PIPE] = ACTIONS(3503), + [anon_sym_AMP_AMP] = ACTIONS(3503), + [anon_sym_PIPE] = ACTIONS(3501), + [anon_sym_CARET] = ACTIONS(3501), + [anon_sym_AMP] = ACTIONS(3501), + [anon_sym_EQ_EQ] = ACTIONS(3503), + [anon_sym_BANG_EQ] = ACTIONS(3503), + [anon_sym_GT] = ACTIONS(3501), + [anon_sym_GT_EQ] = ACTIONS(3501), + [anon_sym_LT_EQ] = ACTIONS(3501), + [anon_sym_LT] = ACTIONS(3501), + [anon_sym_LT_LT] = ACTIONS(3501), + [anon_sym_GT_GT] = ACTIONS(3501), + [anon_sym_COLON_COLON] = ACTIONS(3503), + [anon_sym_LBRACE] = ACTIONS(3503), + [anon_sym_LBRACK] = ACTIONS(3503), + [anon_sym_EQ] = ACTIONS(3501), + [anon_sym_const] = ACTIONS(3501), + [anon_sym_volatile] = ACTIONS(3503), + [anon_sym_restrict] = ACTIONS(3503), + [anon_sym__Atomic] = ACTIONS(3503), + [anon_sym_mutable] = ACTIONS(3503), + [anon_sym_constexpr] = ACTIONS(3503), + [anon_sym_constinit] = ACTIONS(3503), + [anon_sym_consteval] = ACTIONS(3503), + [anon_sym_COLON] = ACTIONS(3501), + [anon_sym_QMARK] = ACTIONS(3503), + [anon_sym_STAR_EQ] = ACTIONS(3503), + [anon_sym_SLASH_EQ] = ACTIONS(3503), + [anon_sym_PERCENT_EQ] = ACTIONS(3503), + [anon_sym_PLUS_EQ] = ACTIONS(3503), + [anon_sym_DASH_EQ] = ACTIONS(3503), + [anon_sym_LT_LT_EQ] = ACTIONS(3503), + [anon_sym_GT_GT_EQ] = ACTIONS(3501), + [anon_sym_AMP_EQ] = ACTIONS(3503), + [anon_sym_CARET_EQ] = ACTIONS(3503), + [anon_sym_PIPE_EQ] = ACTIONS(3503), + [anon_sym_and_eq] = ACTIONS(3503), + [anon_sym_or_eq] = ACTIONS(3503), + [anon_sym_xor_eq] = ACTIONS(3503), + [anon_sym_LT_EQ_GT] = ACTIONS(3503), + [anon_sym_or] = ACTIONS(3501), + [anon_sym_and] = ACTIONS(3501), + [anon_sym_bitor] = ACTIONS(3503), + [anon_sym_xor] = ACTIONS(3501), + [anon_sym_bitand] = ACTIONS(3503), + [anon_sym_not_eq] = ACTIONS(3503), + [anon_sym_DASH_DASH] = ACTIONS(3503), + [anon_sym_PLUS_PLUS] = ACTIONS(3503), + [anon_sym_DOT] = ACTIONS(3501), + [anon_sym_DASH_GT] = ACTIONS(3503), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3503), + [anon_sym_decltype] = ACTIONS(3503), + [anon_sym_final] = ACTIONS(3503), + [anon_sym_override] = ACTIONS(3503), + [anon_sym_GT2] = ACTIONS(3503), + }, +}; + +static const uint16_t ts_small_parse_table[] = { + [0] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3501), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_const, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3503), 45, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [71] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1812), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(3959), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3955), 28, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + sym_primitive_type, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(3957), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [146] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym___attribute__, + ACTIONS(45), 1, + anon_sym___declspec, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(109), 1, + anon_sym_virtual, + ACTIONS(1393), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1431), 1, + anon_sym_enum, + ACTIONS(1435), 1, + anon_sym_struct, + ACTIONS(1437), 1, + anon_sym_union, + ACTIONS(2438), 1, + sym_primitive_type, + ACTIONS(3755), 1, + sym_identifier, + ACTIONS(3765), 1, + anon_sym_COLON_COLON, + ACTIONS(3939), 1, + anon_sym_class, + ACTIONS(3941), 1, + anon_sym_typename, + ACTIONS(3943), 1, + anon_sym_template, + STATE(3251), 1, + sym__type_specifier, + STATE(3271), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3395), 1, + sym_template_type, + STATE(3396), 1, + sym__declaration_specifiers, + STATE(3490), 1, + sym_qualified_type_identifier, + STATE(3494), 1, + sym_decltype_auto, + STATE(5354), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(55), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(6582), 7, + sym_parameter_declaration, + sym_type_parameter_declaration, + sym_variadic_type_parameter_declaration, + sym_optional_type_parameter_declaration, + sym_template_template_parameter_declaration, + sym_optional_parameter_declaration, + sym_variadic_parameter_declaration, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(2175), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + STATE(3481), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [271] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3473), 1, + anon_sym_const, + ACTIONS(3482), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(3475), 4, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_AMP_AMP, + anon_sym_LBRACK, + ACTIONS(3478), 11, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + ACTIONS(3480), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3485), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [350] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3467), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_const, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3469), 45, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [421] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3505), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_const, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3507), 45, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [492] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3509), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_const, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3511), 45, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [563] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3497), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_const, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3499), 45, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [634] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3487), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_const, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3489), 45, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [705] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3493), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_const, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3495), 45, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [776] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3962), 1, + sym_identifier, + ACTIONS(3970), 1, + sym_primitive_type, + STATE(1812), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(3968), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3966), 26, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_auto, + anon_sym_decltype, + ACTIONS(3964), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [855] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3482), 2, + anon_sym_AMP, + anon_sym_LBRACK, + ACTIONS(3478), 4, + anon_sym_TILDE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(3475), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(3485), 13, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + ACTIONS(3480), 14, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + ACTIONS(3473), 23, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_EQ, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [933] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3424), 1, + anon_sym_COLON_COLON, + ACTIONS(3430), 1, + anon_sym_const, + ACTIONS(3972), 1, + anon_sym_LT, + STATE(1839), 1, + sym_template_argument_list, + ACTIONS(3439), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(3432), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_AMP_AMP, + anon_sym_LBRACK, + anon_sym_GT2, + ACTIONS(3435), 10, + anon_sym_LBRACE, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + ACTIONS(3437), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3442), 23, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [1017] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3975), 1, + sym_literal_suffix, + ACTIONS(3977), 1, + sym_raw_string_literal, + STATE(1829), 2, + sym_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(1725), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(3414), 24, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + ACTIONS(3419), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [1095] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3482), 2, + anon_sym_AMP, + anon_sym_LBRACK, + ACTIONS(3478), 3, + anon_sym_TILDE, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(3475), 5, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3480), 14, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + ACTIONS(3485), 16, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + ACTIONS(3473), 22, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [1173] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3482), 2, + anon_sym_AMP, + anon_sym_LBRACK, + ACTIONS(3475), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(3478), 4, + anon_sym_TILDE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(3480), 14, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + ACTIONS(3485), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + ACTIONS(3473), 22, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [1251] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3986), 1, + sym_raw_string_literal, + STATE(1827), 2, + sym_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(3983), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(3981), 25, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(3979), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [1327] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3473), 1, + anon_sym_const, + ACTIONS(3475), 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_AMP_AMP, + ACTIONS(3482), 3, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_LBRACK, + ACTIONS(3478), 11, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + ACTIONS(3480), 14, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3485), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [1405] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3993), 1, + sym_raw_string_literal, + STATE(1827), 2, + sym_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(1725), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(3991), 25, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(3989), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [1481] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3407), 1, + anon_sym_const, + ACTIONS(3424), 1, + anon_sym_COLON_COLON, + ACTIONS(3426), 1, + anon_sym_LBRACE, + ACTIONS(3995), 1, + anon_sym_LT, + STATE(3163), 1, + sym_template_argument_list, + ACTIONS(3416), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(3998), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(3409), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_AMP_AMP, + anon_sym_LBRACK, + anon_sym_GT2, + ACTIONS(3412), 9, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + ACTIONS(3419), 11, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + ACTIONS(4000), 12, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(3414), 15, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + [1571] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4002), 1, + sym_identifier, + ACTIONS(4006), 1, + sym_primitive_type, + STATE(1834), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(4004), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3964), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + ACTIONS(3966), 27, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [1648] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4012), 1, + anon_sym_LBRACE, + ACTIONS(4014), 1, + anon_sym_COLON, + STATE(2079), 1, + sym_field_declaration_list, + STATE(5808), 1, + sym_virtual_specifier, + STATE(6584), 1, + sym_base_class_clause, + ACTIONS(4016), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4010), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4008), 36, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [1729] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4012), 1, + anon_sym_LBRACE, + ACTIONS(4014), 1, + anon_sym_COLON, + STATE(2071), 1, + sym_field_declaration_list, + STATE(5791), 1, + sym_virtual_specifier, + STATE(6575), 1, + sym_base_class_clause, + ACTIONS(4016), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4020), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4018), 36, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [1810] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1834), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(4022), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3957), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + ACTIONS(3955), 29, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + sym_primitive_type, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + anon_sym_DASH_GT, + sym_identifier, + sym_auto, + anon_sym_decltype, + [1883] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4012), 1, + anon_sym_LBRACE, + ACTIONS(4014), 1, + anon_sym_COLON, + STATE(2075), 1, + sym_field_declaration_list, + STATE(5799), 1, + sym_virtual_specifier, + STATE(6579), 1, + sym_base_class_clause, + ACTIONS(4016), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4027), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4025), 36, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [1964] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4012), 1, + anon_sym_LBRACE, + ACTIONS(4014), 1, + anon_sym_COLON, + STATE(2106), 1, + sym_field_declaration_list, + STATE(5578), 1, + sym_virtual_specifier, + STATE(6611), 1, + sym_base_class_clause, + ACTIONS(4016), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4031), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4029), 36, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [2045] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4012), 1, + anon_sym_LBRACE, + ACTIONS(4014), 1, + anon_sym_COLON, + STATE(2102), 1, + sym_field_declaration_list, + STATE(5601), 1, + sym_virtual_specifier, + STATE(6609), 1, + sym_base_class_clause, + ACTIONS(4016), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4035), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4033), 36, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [2126] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4012), 1, + anon_sym_LBRACE, + ACTIONS(4014), 1, + anon_sym_COLON, + STATE(2099), 1, + sym_field_declaration_list, + STATE(5635), 1, + sym_virtual_specifier, + STATE(6605), 1, + sym_base_class_clause, + ACTIONS(4016), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4039), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4037), 36, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [2207] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3473), 1, + anon_sym_const, + ACTIONS(3482), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(3475), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_AMP_AMP, + anon_sym_LBRACK, + anon_sym_GT2, + ACTIONS(3478), 11, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + ACTIONS(3480), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3485), 23, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [2284] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4012), 1, + anon_sym_LBRACE, + ACTIONS(4014), 1, + anon_sym_COLON, + STATE(2043), 1, + sym_field_declaration_list, + STATE(5727), 1, + sym_virtual_specifier, + STATE(6569), 1, + sym_base_class_clause, + ACTIONS(4016), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4043), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4041), 36, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [2365] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4012), 1, + anon_sym_LBRACE, + ACTIONS(4014), 1, + anon_sym_COLON, + STATE(2039), 1, + sym_field_declaration_list, + STATE(5712), 1, + sym_virtual_specifier, + STATE(6517), 1, + sym_base_class_clause, + ACTIONS(4016), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4047), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4045), 36, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [2446] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4012), 1, + anon_sym_LBRACE, + ACTIONS(4014), 1, + anon_sym_COLON, + STATE(2033), 1, + sym_field_declaration_list, + STATE(5702), 1, + sym_virtual_specifier, + STATE(6563), 1, + sym_base_class_clause, + ACTIONS(4016), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4051), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4049), 36, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [2527] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym___attribute__, + ACTIONS(45), 1, + anon_sym___declspec, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(109), 1, + anon_sym_virtual, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1393), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1431), 1, + anon_sym_enum, + ACTIONS(1433), 1, + anon_sym_class, + ACTIONS(1435), 1, + anon_sym_struct, + ACTIONS(1437), 1, + anon_sym_union, + ACTIONS(1451), 1, + anon_sym_typename, + ACTIONS(1465), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2438), 1, + sym_primitive_type, + ACTIONS(3755), 1, + sym_identifier, + ACTIONS(3765), 1, + anon_sym_COLON_COLON, + ACTIONS(3791), 1, + anon_sym_RPAREN, + STATE(3251), 1, + sym__type_specifier, + STATE(3271), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3387), 1, + sym__declaration_specifiers, + STATE(3395), 1, + sym_template_type, + STATE(3490), 1, + sym_qualified_type_identifier, + STATE(3494), 1, + sym_decltype_auto, + STATE(5354), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + STATE(5842), 3, + sym_parameter_declaration, + sym_optional_parameter_declaration, + sym_variadic_parameter_declaration, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(55), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(2175), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + STATE(3481), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [2654] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym___attribute__, + ACTIONS(45), 1, + anon_sym___declspec, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(109), 1, + anon_sym_virtual, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1393), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1431), 1, + anon_sym_enum, + ACTIONS(1433), 1, + anon_sym_class, + ACTIONS(1435), 1, + anon_sym_struct, + ACTIONS(1437), 1, + anon_sym_union, + ACTIONS(1451), 1, + anon_sym_typename, + ACTIONS(2438), 1, + sym_primitive_type, + ACTIONS(3133), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3135), 1, + anon_sym_RPAREN, + ACTIONS(3755), 1, + sym_identifier, + ACTIONS(3765), 1, + anon_sym_COLON_COLON, + STATE(3251), 1, + sym__type_specifier, + STATE(3271), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3387), 1, + sym__declaration_specifiers, + STATE(3395), 1, + sym_template_type, + STATE(3490), 1, + sym_qualified_type_identifier, + STATE(3494), 1, + sym_decltype_auto, + STATE(5354), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + STATE(5909), 3, + sym_parameter_declaration, + sym_optional_parameter_declaration, + sym_variadic_parameter_declaration, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(55), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(2175), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + STATE(3481), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [2781] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1711), 1, + anon_sym_LBRACE, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4059), 1, + anon_sym_LBRACK, + ACTIONS(4061), 1, + sym_auto, + ACTIONS(4063), 1, + anon_sym_decltype, + STATE(1993), 1, + sym_new_declarator, + STATE(2126), 1, + sym_decltype_auto, + STATE(2551), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4057), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4053), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [2865] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4014), 1, + anon_sym_COLON, + ACTIONS(4065), 1, + anon_sym_LBRACE, + STATE(2413), 1, + sym_field_declaration_list, + STATE(5577), 1, + sym_virtual_specifier, + STATE(6316), 1, + sym_base_class_clause, + ACTIONS(4016), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4039), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4037), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [2945] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4070), 1, + sym_raw_string_literal, + STATE(1847), 2, + sym_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(4067), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(3979), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + ACTIONS(3981), 26, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + anon_sym_DASH_GT, + sym_literal_suffix, + [3019] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4014), 1, + anon_sym_COLON, + ACTIONS(4065), 1, + anon_sym_LBRACE, + STATE(2432), 1, + sym_field_declaration_list, + STATE(5781), 1, + sym_virtual_specifier, + STATE(6306), 1, + sym_base_class_clause, + ACTIONS(4016), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4010), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4008), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [3099] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4014), 1, + anon_sym_COLON, + ACTIONS(4065), 1, + anon_sym_LBRACE, + STATE(2444), 1, + sym_field_declaration_list, + STATE(5797), 1, + sym_virtual_specifier, + STATE(6299), 1, + sym_base_class_clause, + ACTIONS(4016), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4027), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4025), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [3179] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4014), 1, + anon_sym_COLON, + ACTIONS(4065), 1, + anon_sym_LBRACE, + STATE(2340), 1, + sym_field_declaration_list, + STATE(5660), 1, + sym_virtual_specifier, + STATE(6263), 1, + sym_base_class_clause, + ACTIONS(4016), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4051), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4049), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [3259] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3473), 1, + anon_sym_const, + ACTIONS(3482), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(3475), 4, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_AMP_AMP, + anon_sym_LBRACK, + ACTIONS(3478), 11, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + ACTIONS(3480), 14, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3485), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [3335] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1711), 1, + anon_sym_LBRACE, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4059), 1, + anon_sym_LBRACK, + ACTIONS(4061), 1, + sym_auto, + ACTIONS(4063), 1, + anon_sym_decltype, + STATE(2007), 1, + sym_new_declarator, + STATE(2126), 1, + sym_decltype_auto, + STATE(2556), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4075), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4073), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [3419] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4079), 25, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(4077), 35, + sym_raw_string_literal, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [3487] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4014), 1, + anon_sym_COLON, + ACTIONS(4065), 1, + anon_sym_LBRACE, + STATE(2448), 1, + sym_field_declaration_list, + STATE(5816), 1, + sym_virtual_specifier, + STATE(6291), 1, + sym_base_class_clause, + ACTIONS(4016), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4020), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4018), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [3567] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4014), 1, + anon_sym_COLON, + ACTIONS(4065), 1, + anon_sym_LBRACE, + STATE(2353), 1, + sym_field_declaration_list, + STATE(5687), 1, + sym_virtual_specifier, + STATE(6270), 1, + sym_base_class_clause, + ACTIONS(4016), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4047), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4045), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [3647] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym___attribute__, + ACTIONS(45), 1, + anon_sym___declspec, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(109), 1, + anon_sym_virtual, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1393), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1431), 1, + anon_sym_enum, + ACTIONS(1433), 1, + anon_sym_class, + ACTIONS(1435), 1, + anon_sym_struct, + ACTIONS(1437), 1, + anon_sym_union, + ACTIONS(1451), 1, + anon_sym_typename, + ACTIONS(2438), 1, + sym_primitive_type, + ACTIONS(3755), 1, + sym_identifier, + ACTIONS(3765), 1, + anon_sym_COLON_COLON, + ACTIONS(4081), 1, + anon_sym_DOT_DOT_DOT, + STATE(3251), 1, + sym__type_specifier, + STATE(3271), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3387), 1, + sym__declaration_specifiers, + STATE(3395), 1, + sym_template_type, + STATE(3490), 1, + sym_qualified_type_identifier, + STATE(3494), 1, + sym_decltype_auto, + STATE(5354), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + STATE(6572), 3, + sym_parameter_declaration, + sym_optional_parameter_declaration, + sym_variadic_parameter_declaration, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(55), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(2175), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + STATE(3481), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [3771] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4014), 1, + anon_sym_COLON, + ACTIONS(4065), 1, + anon_sym_LBRACE, + STATE(2362), 1, + sym_field_declaration_list, + STATE(5566), 1, + sym_virtual_specifier, + STATE(6274), 1, + sym_base_class_clause, + ACTIONS(4016), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4043), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4041), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [3851] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym___attribute__, + ACTIONS(45), 1, + anon_sym___declspec, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(109), 1, + anon_sym_virtual, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1393), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1417), 1, + anon_sym_RPAREN, + ACTIONS(1431), 1, + anon_sym_enum, + ACTIONS(1433), 1, + anon_sym_class, + ACTIONS(1435), 1, + anon_sym_struct, + ACTIONS(1437), 1, + anon_sym_union, + ACTIONS(1451), 1, + anon_sym_typename, + ACTIONS(2438), 1, + sym_primitive_type, + ACTIONS(3755), 1, + sym_identifier, + ACTIONS(3765), 1, + anon_sym_COLON_COLON, + STATE(3251), 1, + sym__type_specifier, + STATE(3271), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3387), 1, + sym__declaration_specifiers, + STATE(3395), 1, + sym_template_type, + STATE(3490), 1, + sym_qualified_type_identifier, + STATE(3494), 1, + sym_decltype_auto, + STATE(5354), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + STATE(5863), 3, + sym_parameter_declaration, + sym_optional_parameter_declaration, + sym_variadic_parameter_declaration, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(55), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(2175), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + STATE(3481), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [3975] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4014), 1, + anon_sym_COLON, + ACTIONS(4065), 1, + anon_sym_LBRACE, + STATE(2407), 1, + sym_field_declaration_list, + STATE(5532), 1, + sym_virtual_specifier, + STATE(6324), 1, + sym_base_class_clause, + ACTIONS(4016), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4031), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4029), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [4055] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4014), 1, + anon_sym_COLON, + ACTIONS(4065), 1, + anon_sym_LBRACE, + STATE(2409), 1, + sym_field_declaration_list, + STATE(5549), 1, + sym_virtual_specifier, + STATE(6321), 1, + sym_base_class_clause, + ACTIONS(4016), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4035), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4033), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [4135] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4083), 1, + sym_literal_suffix, + ACTIONS(4085), 1, + sym_raw_string_literal, + STATE(1865), 2, + sym_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(1763), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(3414), 25, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3419), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [4211] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4089), 25, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(4087), 35, + sym_raw_string_literal, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [4279] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1711), 1, + anon_sym_LBRACE, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4059), 1, + anon_sym_LBRACK, + ACTIONS(4061), 1, + sym_auto, + ACTIONS(4063), 1, + anon_sym_decltype, + STATE(1996), 1, + sym_new_declarator, + STATE(2126), 1, + sym_decltype_auto, + STATE(2503), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4093), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4091), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [4363] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3424), 1, + anon_sym_COLON_COLON, + ACTIONS(4097), 1, + anon_sym_LT, + STATE(1873), 1, + sym_template_argument_list, + ACTIONS(4095), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3426), 39, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + [4437] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4099), 1, + sym_raw_string_literal, + STATE(1847), 2, + sym_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(1763), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(3989), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + ACTIONS(3991), 26, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + anon_sym_DASH_GT, + sym_literal_suffix, + [4511] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1711), 1, + anon_sym_LBRACE, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4059), 1, + anon_sym_LBRACK, + ACTIONS(4061), 1, + sym_auto, + ACTIONS(4063), 1, + anon_sym_decltype, + STATE(2077), 1, + sym_new_declarator, + STATE(2126), 1, + sym_decltype_auto, + STATE(2569), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4103), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4101), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [4595] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3424), 1, + anon_sym_COLON_COLON, + ACTIONS(4105), 1, + anon_sym_LT, + STATE(1873), 1, + sym_template_argument_list, + ACTIONS(3430), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3435), 39, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + [4669] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4108), 1, + anon_sym_catch, + STATE(1876), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + ACTIONS(2426), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2424), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [4740] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3487), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3489), 40, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + [4807] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3424), 1, + anon_sym_COLON_COLON, + ACTIONS(4110), 1, + anon_sym_LT, + STATE(1897), 1, + sym_template_argument_list, + ACTIONS(4095), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3426), 37, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [4880] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4112), 1, + sym_identifier, + ACTIONS(4116), 1, + sym_primitive_type, + STATE(1874), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(4114), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3964), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + ACTIONS(3966), 28, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_auto, + anon_sym_decltype, + [4955] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3467), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3469), 40, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + [5022] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3473), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3478), 40, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + [5089] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1874), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(4118), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3957), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + ACTIONS(3955), 30, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + sym_primitive_type, + anon_sym_GT_GT_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + sym_auto, + anon_sym_decltype, + [5160] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4125), 1, + anon_sym_COLON_COLON, + ACTIONS(4123), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4121), 39, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + [5229] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4127), 1, + anon_sym_catch, + STATE(1876), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + ACTIONS(2413), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2411), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [5300] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3497), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3499), 40, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + [5367] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3501), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3503), 40, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + [5434] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym___attribute__, + ACTIONS(45), 1, + anon_sym___declspec, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(109), 1, + anon_sym_virtual, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1393), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1431), 1, + anon_sym_enum, + ACTIONS(1433), 1, + anon_sym_class, + ACTIONS(1435), 1, + anon_sym_struct, + ACTIONS(1437), 1, + anon_sym_union, + ACTIONS(1451), 1, + anon_sym_typename, + ACTIONS(2438), 1, + sym_primitive_type, + ACTIONS(3755), 1, + sym_identifier, + ACTIONS(3765), 1, + anon_sym_COLON_COLON, + STATE(3251), 1, + sym__type_specifier, + STATE(3271), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3387), 1, + sym__declaration_specifiers, + STATE(3395), 1, + sym_template_type, + STATE(3490), 1, + sym_qualified_type_identifier, + STATE(3494), 1, + sym_decltype_auto, + STATE(5354), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + STATE(6577), 3, + sym_parameter_declaration, + sym_optional_parameter_declaration, + sym_variadic_parameter_declaration, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(55), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(2175), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + STATE(3481), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [5555] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3493), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3495), 40, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + [5622] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4108), 1, + anon_sym_catch, + STATE(1876), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + ACTIONS(2407), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2405), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [5693] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3424), 1, + anon_sym_COLON_COLON, + ACTIONS(4130), 1, + anon_sym_LT, + STATE(1897), 1, + sym_template_argument_list, + ACTIONS(3430), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3435), 37, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [5766] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3509), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3511), 40, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + [5833] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4135), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4133), 40, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + [5900] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4108), 1, + anon_sym_catch, + STATE(1876), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + ACTIONS(2422), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2420), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [5971] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4125), 1, + anon_sym_COLON_COLON, + ACTIONS(4139), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4137), 39, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + [6040] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3505), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3507), 40, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + [6107] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4125), 1, + anon_sym_COLON_COLON, + ACTIONS(4139), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4137), 39, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + [6176] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2507), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(2478), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2476), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [6244] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4135), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4133), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [6310] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4143), 13, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4141), 45, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_using, + anon_sym_concept, + anon_sym_requires, + [6376] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4145), 1, + sym_raw_string_literal, + STATE(1914), 2, + sym_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(1943), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(3989), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + ACTIONS(3991), 27, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + [6448] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4125), 1, + anon_sym_COLON_COLON, + ACTIONS(4123), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4121), 37, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [6516] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4149), 13, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4147), 45, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_using, + anon_sym_concept, + anon_sym_requires, + [6582] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4155), 1, + anon_sym_COLON, + STATE(1950), 1, + sym__enum_base_clause, + STATE(2085), 1, + sym_enumerator_list, + ACTIONS(4153), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4151), 37, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [6654] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3424), 1, + anon_sym_COLON_COLON, + STATE(3279), 1, + sym_template_argument_list, + ACTIONS(4159), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4157), 37, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [6724] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3473), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3478), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [6790] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4163), 13, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4161), 45, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_using, + anon_sym_concept, + anon_sym_requires, + [6856] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4167), 13, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4165), 45, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_using, + anon_sym_concept, + anon_sym_requires, + [6922] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4171), 13, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4169), 45, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_using, + anon_sym_concept, + anon_sym_requires, + [6988] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4175), 13, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4173), 45, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_using, + anon_sym_concept, + anon_sym_requires, + [7054] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1751), 1, + anon_sym_LBRACE, + ACTIONS(4177), 1, + anon_sym_LPAREN2, + ACTIONS(4179), 1, + anon_sym_LBRACK, + ACTIONS(4181), 1, + sym_auto, + ACTIONS(4183), 1, + anon_sym_decltype, + STATE(2328), 1, + sym_decltype_auto, + STATE(2351), 1, + sym_new_declarator, + STATE(2769), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4093), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4091), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [7136] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4187), 13, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4185), 45, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_using, + anon_sym_concept, + anon_sym_requires, + [7202] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1904), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(4189), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3957), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + ACTIONS(3955), 28, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [7272] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1905), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(4192), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3955), 26, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + sym_primitive_type, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + anon_sym_DASH_GT, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(3957), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [7342] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1751), 1, + anon_sym_LBRACE, + ACTIONS(4177), 1, + anon_sym_LPAREN2, + ACTIONS(4179), 1, + anon_sym_LBRACK, + ACTIONS(4181), 1, + sym_auto, + ACTIONS(4183), 1, + anon_sym_decltype, + STATE(2328), 1, + sym_decltype_auto, + STATE(2372), 1, + sym_new_declarator, + STATE(2727), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4057), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4053), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [7424] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4014), 1, + anon_sym_COLON, + ACTIONS(4195), 1, + anon_sym_LBRACE, + STATE(2683), 1, + sym_field_declaration_list, + STATE(5804), 1, + sym_virtual_specifier, + STATE(6120), 1, + sym_base_class_clause, + ACTIONS(4016), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4043), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4041), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [7502] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4014), 1, + anon_sym_COLON, + ACTIONS(4195), 1, + anon_sym_LBRACE, + STATE(2690), 1, + sym_field_declaration_list, + STATE(5769), 1, + sym_virtual_specifier, + STATE(6153), 1, + sym_base_class_clause, + ACTIONS(4016), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4020), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4018), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [7580] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3424), 1, + anon_sym_COLON_COLON, + ACTIONS(4097), 1, + anon_sym_LT, + STATE(1873), 1, + sym_template_argument_list, + ACTIONS(3407), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3412), 37, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [7652] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4197), 1, + sym_identifier, + ACTIONS(4201), 1, + sym_primitive_type, + STATE(1905), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(4199), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3966), 24, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + ACTIONS(3964), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [7726] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4014), 1, + anon_sym_COLON, + ACTIONS(4195), 1, + anon_sym_LBRACE, + STATE(2673), 1, + sym_field_declaration_list, + STATE(5806), 1, + sym_virtual_specifier, + STATE(6123), 1, + sym_base_class_clause, + ACTIONS(4016), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4047), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4045), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [7804] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4139), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4137), 40, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + [7870] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4205), 13, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4203), 45, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_using, + anon_sym_concept, + anon_sym_requires, + [7936] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3795), 25, + ACTIONS(4210), 1, + sym_raw_string_literal, + STATE(1914), 2, + sym_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(4207), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(3979), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + ACTIONS(3981), 27, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + [8008] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4014), 1, + anon_sym_COLON, + ACTIONS(4195), 1, + anon_sym_LBRACE, + STATE(2625), 1, + sym_field_declaration_list, + STATE(5661), 1, + sym_virtual_specifier, + STATE(6192), 1, + sym_base_class_clause, + ACTIONS(4016), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4031), 20, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4029), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [8086] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4014), 1, + anon_sym_COLON, + ACTIONS(4195), 1, + anon_sym_LBRACE, + STATE(2608), 1, + sym_field_declaration_list, + STATE(5673), 1, + sym_virtual_specifier, + STATE(6187), 1, + sym_base_class_clause, + ACTIONS(4016), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4035), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4033), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [8164] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4014), 1, + anon_sym_COLON, + ACTIONS(4195), 1, anon_sym_LBRACE, - anon_sym_RBRACE, + STATE(2604), 1, + sym_field_declaration_list, + STATE(5707), 1, + sym_virtual_specifier, + STATE(6183), 1, + sym_base_class_clause, + ACTIONS(4016), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4039), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4037), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - ACTIONS(3793), 38, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [8242] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4089), 26, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + anon_sym_DASH_GT, + sym_literal_suffix, + ACTIONS(4087), 32, + sym_raw_string_literal, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [8308] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4215), 13, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4213), 45, + anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_LBRACK, - anon_sym_EQ, anon_sym_static, anon_sym_register, anon_sym_inline, @@ -201870,62 +220846,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, - anon_sym_DOT, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, anon_sym_template, anon_sym_operator, anon_sym_try, + anon_sym_using, + anon_sym_concept, anon_sym_requires, - [71] = 3, + [8374] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3776), 25, + ACTIONS(4014), 1, + anon_sym_COLON, + ACTIONS(4195), 1, + anon_sym_LBRACE, + STATE(2695), 1, + sym_field_declaration_list, + STATE(5758), 1, + sym_virtual_specifier, + STATE(6159), 1, + sym_base_class_clause, + ACTIONS(4016), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4027), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4025), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - ACTIONS(3774), 38, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [8452] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4219), 13, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4217), 45, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_LBRACK, - anon_sym_EQ, anon_sym_static, anon_sym_register, anon_sym_inline, @@ -201938,62 +220978,260 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, - anon_sym_DOT, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, anon_sym_template, anon_sym_operator, anon_sym_try, + anon_sym_using, + anon_sym_concept, anon_sym_requires, - [142] = 3, + [8518] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3799), 25, + ACTIONS(4079), 26, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + anon_sym_DASH_GT, + sym_literal_suffix, + ACTIONS(4077), 32, + sym_raw_string_literal, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [8584] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4014), 1, + anon_sym_COLON, + ACTIONS(4195), 1, + anon_sym_LBRACE, + STATE(2580), 1, + sym_field_declaration_list, + STATE(5544), 1, + sym_virtual_specifier, + STATE(6126), 1, + sym_base_class_clause, + ACTIONS(4016), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4051), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4049), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - ACTIONS(3797), 38, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [8662] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1751), 1, + anon_sym_LBRACE, + ACTIONS(4177), 1, + anon_sym_LPAREN2, + ACTIONS(4179), 1, + anon_sym_LBRACK, + ACTIONS(4181), 1, + sym_auto, + ACTIONS(4183), 1, + anon_sym_decltype, + STATE(2328), 1, + sym_decltype_auto, + STATE(2337), 1, + sym_new_declarator, + STATE(2813), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4075), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4073), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [8744] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4223), 13, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4221), 45, + anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_LBRACK, - anon_sym_EQ, anon_sym_static, anon_sym_register, anon_sym_inline, @@ -202006,87 +221244,199 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, - anon_sym_DOT, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, anon_sym_template, anon_sym_operator, anon_sym_try, + anon_sym_using, + anon_sym_concept, anon_sym_requires, - [213] = 30, + [8810] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym___attribute__, - ACTIONS(45), 1, - anon_sym___declspec, - ACTIONS(105), 1, + ACTIONS(1751), 1, + anon_sym_LBRACE, + ACTIONS(4177), 1, + anon_sym_LPAREN2, + ACTIONS(4179), 1, + anon_sym_LBRACK, + ACTIONS(4181), 1, sym_auto, - ACTIONS(107), 1, + ACTIONS(4183), 1, anon_sym_decltype, - ACTIONS(109), 1, - anon_sym_virtual, - ACTIONS(1389), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1427), 1, - anon_sym_enum, - ACTIONS(1431), 1, - anon_sym_struct, - ACTIONS(1433), 1, - anon_sym_union, - ACTIONS(2809), 1, - sym_primitive_type, - ACTIONS(3365), 1, - sym_identifier, - ACTIONS(3377), 1, - anon_sym_COLON_COLON, - ACTIONS(3853), 1, - anon_sym_class, - ACTIONS(3855), 1, - anon_sym_typename, - ACTIONS(3857), 1, - anon_sym_template, - STATE(2596), 1, - sym__type_specifier, - STATE(2737), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2976), 1, - sym_template_type, - STATE(3046), 1, - sym__declaration_specifiers, - STATE(3123), 1, + STATE(2319), 1, + sym_new_declarator, + STATE(2328), 1, sym_decltype_auto, - STATE(3198), 1, - sym_qualified_type_identifier, - STATE(5144), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - ACTIONS(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(55), 5, + STATE(2842), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4103), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4101), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [8892] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4225), 1, + sym_literal_suffix, + ACTIONS(4227), 1, + sym_raw_string_literal, + STATE(1892), 2, + sym_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(1943), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(3419), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + ACTIONS(3414), 26, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + [8966] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4231), 13, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4229), 45, + anon_sym_AMP, anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(6128), 7, - sym_parameter_declaration, - sym_type_parameter_declaration, - sym_variadic_type_parameter_declaration, - sym_optional_type_parameter_declaration, - sym_template_template_parameter_declaration, - sym_optional_parameter_declaration, - sym_variadic_parameter_declaration, - ACTIONS(57), 8, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -202095,68 +221445,314 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(1892), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual_function_specifier, - aux_sym__declaration_specifiers_repeat1, - STATE(3139), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [338] = 3, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_using, + anon_sym_concept, + anon_sym_requires, + [9032] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3807), 25, + ACTIONS(4125), 1, + anon_sym_COLON_COLON, + ACTIONS(4139), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4137), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [9100] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4155), 1, + anon_sym_COLON, + STATE(1949), 1, + sym__enum_base_clause, + STATE(2110), 1, + sym_enumerator_list, + ACTIONS(4235), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4233), 37, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - ACTIONS(3805), 38, + sym_auto, + anon_sym_decltype, + [9172] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4223), 13, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4221), 45, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_using, + anon_sym_concept, + anon_sym_requires, + [9238] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4125), 1, + anon_sym_COLON_COLON, + ACTIONS(4139), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4137), 37, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [9306] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4223), 13, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4221), 45, + anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_LBRACK, - anon_sym_EQ, anon_sym_static, anon_sym_register, anon_sym_inline, @@ -202169,62 +221765,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, - anon_sym_DOT, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, anon_sym_template, anon_sym_operator, anon_sym_try, + anon_sym_using, + anon_sym_concept, anon_sym_requires, - [409] = 3, + [9372] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3803), 25, - anon_sym_DOT_DOT_DOT, + ACTIONS(4239), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - ACTIONS(3801), 38, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4237), 45, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_LBRACK, - anon_sym_EQ, anon_sym_static, anon_sym_register, anon_sym_inline, @@ -202237,27 +221828,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, - anon_sym_DOT, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, anon_sym_template, anon_sym_operator, anon_sym_try, + anon_sym_using, + anon_sym_concept, anon_sym_requires, - [480] = 3, + [9438] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3780), 25, + ACTIONS(4241), 1, + sym_identifier, + ACTIONS(4245), 1, + sym_primitive_type, + STATE(1904), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(4243), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3964), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -202269,16 +221879,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - ACTIONS(3778), 38, + ACTIONS(3966), 26, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -202287,16 +221898,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -202305,155 +221906,203 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, anon_sym_requires, - [551] = 3, + [9512] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3784), 25, + ACTIONS(4014), 1, + anon_sym_COLON, + ACTIONS(4195), 1, + anon_sym_LBRACE, + STATE(2693), 1, + sym_field_declaration_list, + STATE(5739), 1, + sym_virtual_specifier, + STATE(6167), 1, + sym_base_class_clause, + ACTIONS(4016), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4010), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4008), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - ACTIONS(3782), 38, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [9590] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3473), 17, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, anon_sym_COLON, anon_sym_DOT, - sym_identifier, + anon_sym_DASH_GT, + ACTIONS(3478), 40, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, anon_sym_requires, - [622] = 32, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [9655] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym___attribute__, - ACTIONS(45), 1, - anon_sym___declspec, - ACTIONS(105), 1, - sym_auto, - ACTIONS(107), 1, - anon_sym_decltype, - ACTIONS(109), 1, - anon_sym_virtual, - ACTIONS(972), 1, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(111), 1, + anon_sym_explicit, + ACTIONS(117), 1, + anon_sym_operator, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(1389), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1427), 1, - anon_sym_enum, - ACTIONS(1429), 1, - anon_sym_class, - ACTIONS(1431), 1, - anon_sym_struct, - ACTIONS(1433), 1, - anon_sym_union, - ACTIONS(1447), 1, - anon_sym_typename, - ACTIONS(2809), 1, - sym_primitive_type, - ACTIONS(3083), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(3085), 1, - anon_sym_RPAREN, - ACTIONS(3365), 1, + ACTIONS(1519), 1, + anon_sym_LPAREN2, + ACTIONS(1521), 1, + anon_sym_TILDE, + ACTIONS(1523), 1, + anon_sym_STAR, + ACTIONS(1525), 1, + anon_sym_AMP, + ACTIONS(1531), 1, + anon_sym_LBRACK, + ACTIONS(4247), 1, sym_identifier, - ACTIONS(3377), 1, + ACTIONS(4251), 1, + anon_sym___attribute__, + ACTIONS(4253), 1, anon_sym_COLON_COLON, - STATE(2596), 1, - sym__type_specifier, - STATE(2737), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2976), 1, - sym_template_type, - STATE(2998), 1, - sym__declaration_specifiers, - STATE(3123), 1, - sym_decltype_auto, - STATE(3198), 1, - sym_qualified_type_identifier, - STATE(5144), 1, + ACTIONS(4255), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4257), 1, + anon_sym___declspec, + ACTIONS(4261), 1, + anon_sym_virtual, + STATE(4804), 1, sym__scope_resolution, - STATE(6663), 1, + STATE(4982), 1, + sym_function_declarator, + STATE(5461), 1, + sym__declarator, + STATE(7250), 1, + sym_ms_based_modifier, + STATE(5463), 2, + sym_operator_cast, + sym_qualified_operator_cast_identifier, + STATE(7236), 2, + sym_template_type, sym_dependent_type_identifier, - STATE(5626), 3, - sym_parameter_declaration, - sym_optional_parameter_declaration, - sym_variadic_parameter_declaration, - ACTIONS(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(55), 5, + ACTIONS(4249), 5, anon_sym_extern, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - ACTIONS(57), 8, + ACTIONS(4259), 8, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -202462,7 +222111,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(1892), 8, + STATE(3527), 10, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -202470,85 +222119,53 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, sym_virtual_function_specifier, - aux_sym__declaration_specifiers_repeat1, - STATE(3139), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [749] = 32, + sym_explicit_function_specifier, + sym__constructor_specifiers, + aux_sym_operator_cast_definition_repeat1, + STATE(5080), 10, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [9768] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym___attribute__, - ACTIONS(45), 1, - anon_sym___declspec, - ACTIONS(105), 1, - sym_auto, - ACTIONS(107), 1, - anon_sym_decltype, - ACTIONS(109), 1, - anon_sym_virtual, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1389), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1427), 1, - anon_sym_enum, - ACTIONS(1429), 1, - anon_sym_class, - ACTIONS(1431), 1, - anon_sym_struct, - ACTIONS(1433), 1, - anon_sym_union, - ACTIONS(1447), 1, - anon_sym_typename, - ACTIONS(1461), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2809), 1, - sym_primitive_type, - ACTIONS(3365), 1, - sym_identifier, - ACTIONS(3367), 1, - anon_sym_RPAREN, - ACTIONS(3377), 1, + ACTIONS(4263), 1, + anon_sym_catch, + STATE(1958), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + ACTIONS(2422), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_COLON_COLON, - STATE(2596), 1, - sym__type_specifier, - STATE(2737), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2976), 1, - sym_template_type, - STATE(2998), 1, - sym__declaration_specifiers, - STATE(3123), 1, - sym_decltype_auto, - STATE(3198), 1, - sym_qualified_type_identifier, - STATE(5144), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - STATE(5660), 3, - sym_parameter_declaration, - sym_optional_parameter_declaration, - sym_variadic_parameter_declaration, - ACTIONS(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(55), 5, + anon_sym_LBRACK_LBRACK, + ACTIONS(2420), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - ACTIONS(57), 8, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -202557,91 +222174,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(1892), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual_function_specifier, - aux_sym__declaration_specifiers_repeat1, - STATE(3139), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [876] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 1, - anon_sym___attribute__, - ACTIONS(45), 1, - anon_sym___declspec, - ACTIONS(105), 1, - sym_auto, - ACTIONS(107), 1, - anon_sym_decltype, - ACTIONS(109), 1, - anon_sym_virtual, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1389), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1413), 1, - anon_sym_RPAREN, - ACTIONS(1427), 1, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, anon_sym_enum, - ACTIONS(1429), 1, anon_sym_class, - ACTIONS(1431), 1, anon_sym_struct, - ACTIONS(1433), 1, anon_sym_union, - ACTIONS(1447), 1, - anon_sym_typename, - ACTIONS(2809), 1, - sym_primitive_type, - ACTIONS(3365), 1, sym_identifier, - ACTIONS(3377), 1, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [9837] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2464), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_COLON_COLON, - STATE(2596), 1, - sym__type_specifier, - STATE(2737), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2976), 1, - sym_template_type, - STATE(2998), 1, - sym__declaration_specifiers, - STATE(3123), 1, - sym_decltype_auto, - STATE(3198), 1, - sym_qualified_type_identifier, - STATE(5144), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - STATE(5680), 3, - sym_parameter_declaration, - sym_optional_parameter_declaration, - sym_variadic_parameter_declaration, - ACTIONS(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(55), 5, + anon_sym_LBRACK_LBRACK, + ACTIONS(2462), 51, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - ACTIONS(57), 8, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -202650,140 +222235,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(1892), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual_function_specifier, - aux_sym__declaration_specifiers_repeat1, - STATE(3139), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [1000] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 1, - anon_sym___attribute__, - ACTIONS(45), 1, - anon_sym___declspec, - ACTIONS(105), 1, - sym_auto, - ACTIONS(107), 1, - anon_sym_decltype, - ACTIONS(109), 1, - anon_sym_virtual, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1389), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1427), 1, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, anon_sym_enum, - ACTIONS(1429), 1, anon_sym_class, - ACTIONS(1431), 1, anon_sym_struct, - ACTIONS(1433), 1, anon_sym_union, - ACTIONS(1447), 1, - anon_sym_typename, - ACTIONS(2809), 1, - sym_primitive_type, - ACTIONS(3365), 1, sym_identifier, - ACTIONS(3377), 1, - anon_sym_COLON_COLON, - ACTIONS(3863), 1, - anon_sym_DOT_DOT_DOT, - STATE(2596), 1, - sym__type_specifier, - STATE(2737), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2976), 1, - sym_template_type, - STATE(2998), 1, - sym__declaration_specifiers, - STATE(3123), 1, - sym_decltype_auto, - STATE(3198), 1, - sym_qualified_type_identifier, - STATE(5144), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - STATE(6119), 3, - sym_parameter_declaration, - sym_optional_parameter_declaration, - sym_variadic_parameter_declaration, - ACTIONS(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(55), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(57), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(1892), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual_function_specifier, - aux_sym__declaration_specifiers_repeat1, - STATE(3139), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [1124] = 5, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + anon_sym_catch, + [9902] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3865), 1, + ACTIONS(4263), 1, anon_sym_catch, - STATE(1743), 2, + STATE(1958), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - ACTIONS(2265), 6, + ACTIONS(2426), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2263), 50, + ACTIONS(2424), 48, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym_AMP, anon_sym_typedef, @@ -202827,29 +222323,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [1195] = 5, + [9971] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3868), 1, - anon_sym_catch, - STATE(1743), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - ACTIONS(2280), 6, + ACTIONS(2464), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2278), 50, + anon_sym_RBRACE, + ACTIONS(2462), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym_AMP, anon_sym_typedef, @@ -202879,6 +222368,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_class, anon_sym_struct, anon_sym_union, + anon_sym_else, + anon_sym_while, sym_identifier, sym_auto, anon_sym_decltype, @@ -202893,29 +222384,611 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [1266] = 5, + anon_sym_catch, + [10036] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4125), 1, + anon_sym_COLON_COLON, + ACTIONS(4139), 21, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4137), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [10103] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4014), 1, + anon_sym_COLON, + ACTIONS(4265), 1, + anon_sym_LBRACE, + STATE(2779), 1, + sym_field_declaration_list, + STATE(5772), 1, + sym_virtual_specifier, + STATE(6721), 1, + sym_base_class_clause, + ACTIONS(4016), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4031), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4029), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [10180] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4014), 1, + anon_sym_COLON, + ACTIONS(4265), 1, + anon_sym_LBRACE, + STATE(2738), 1, + sym_field_declaration_list, + STATE(5784), 1, + sym_virtual_specifier, + STATE(6725), 1, + sym_base_class_clause, + ACTIONS(4016), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4035), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4033), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [10257] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4014), 1, + anon_sym_COLON, + ACTIONS(4265), 1, + anon_sym_LBRACE, + STATE(2717), 1, + sym_field_declaration_list, + STATE(5802), 1, + sym_virtual_specifier, + STATE(6729), 1, + sym_base_class_clause, + ACTIONS(4016), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4039), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4037), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [10334] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4125), 1, + anon_sym_COLON_COLON, + ACTIONS(4139), 21, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4137), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [10401] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4135), 21, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4133), 36, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [10466] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(2082), 1, + sym_enumerator_list, + ACTIONS(4269), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4267), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [10533] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(2046), 1, + sym_enumerator_list, + ACTIONS(4273), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4271), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [10600] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4061), 1, + sym_auto, + ACTIONS(4063), 1, + anon_sym_decltype, + STATE(2126), 1, + sym_decltype_auto, + ACTIONS(4277), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4275), 36, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [10671] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3868), 1, + ACTIONS(4263), 1, anon_sym_catch, - STATE(1743), 2, + STATE(1958), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - ACTIONS(2259), 6, + ACTIONS(2407), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2257), 50, + ACTIONS(2405), 48, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym_AMP, anon_sym_typedef, @@ -202959,137 +223032,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [1337] = 5, + [10740] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3868), 1, - anon_sym_catch, - STATE(1743), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - ACTIONS(2276), 6, + ACTIONS(4282), 1, + sym_raw_string_literal, + STATE(1953), 2, + sym_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(4279), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(3981), 23, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + anon_sym_DASH_GT, + sym_literal_suffix, + ACTIONS(3979), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [10811] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(111), 1, + anon_sym_explicit, + ACTIONS(117), 1, + anon_sym_operator, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1519), 1, anon_sym_LPAREN2, + ACTIONS(1521), 1, anon_sym_TILDE, + ACTIONS(1523), 1, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2274), 50, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, + ACTIONS(1525), 1, anon_sym_AMP, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + ACTIONS(1531), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, + ACTIONS(4247), 1, sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [1408] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 1, + ACTIONS(4251), 1, anon_sym___attribute__, - ACTIONS(45), 1, + ACTIONS(4253), 1, + anon_sym_COLON_COLON, + ACTIONS(4255), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4257), 1, anon_sym___declspec, - ACTIONS(105), 1, - sym_auto, - ACTIONS(107), 1, - anon_sym_decltype, - ACTIONS(109), 1, + ACTIONS(4261), 1, anon_sym_virtual, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1389), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1427), 1, - anon_sym_enum, - ACTIONS(1429), 1, - anon_sym_class, - ACTIONS(1431), 1, - anon_sym_struct, - ACTIONS(1433), 1, - anon_sym_union, - ACTIONS(1447), 1, - anon_sym_typename, - ACTIONS(2809), 1, - sym_primitive_type, - ACTIONS(3365), 1, - sym_identifier, - ACTIONS(3377), 1, - anon_sym_COLON_COLON, - STATE(2596), 1, - sym__type_specifier, - STATE(2737), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2976), 1, - sym_template_type, - STATE(2998), 1, - sym__declaration_specifiers, - STATE(3123), 1, - sym_decltype_auto, - STATE(3198), 1, - sym_qualified_type_identifier, - STATE(5144), 1, + STATE(4804), 1, sym__scope_resolution, - STATE(6663), 1, + STATE(5040), 1, + sym_function_declarator, + STATE(5461), 1, + sym__declarator, + STATE(7250), 1, + sym_ms_based_modifier, + STATE(5466), 2, + sym_operator_cast, + sym_qualified_operator_cast_identifier, + STATE(7236), 2, + sym_template_type, sym_dependent_type_identifier, - STATE(6120), 3, - sym_parameter_declaration, - sym_optional_parameter_declaration, - sym_variadic_parameter_declaration, - ACTIONS(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(55), 5, + ACTIONS(4249), 5, anon_sym_extern, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - ACTIONS(57), 8, + ACTIONS(4259), 8, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -203098,7 +223161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(1892), 8, + STATE(3527), 10, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -203106,108 +223169,252 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, sym_virtual_function_specifier, - aux_sym__declaration_specifiers_repeat1, - STATE(3139), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [1529] = 3, + sym_explicit_function_specifier, + sym__constructor_specifiers, + aux_sym_operator_cast_definition_repeat1, + STATE(5080), 10, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [10924] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3872), 13, + ACTIONS(4014), 1, + anon_sym_COLON, + ACTIONS(4265), 1, + anon_sym_LBRACE, + STATE(2869), 1, + sym_field_declaration_list, + STATE(5759), 1, + sym_virtual_specifier, + STATE(6711), 1, + sym_base_class_clause, + ACTIONS(4016), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4010), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4008), 34, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [11001] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4014), 1, + anon_sym_COLON, + ACTIONS(4265), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(3870), 45, + STATE(2854), 1, + sym_field_declaration_list, + STATE(5753), 1, + sym_virtual_specifier, + STATE(6706), 1, + sym_base_class_clause, + ACTIONS(4016), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4027), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4025), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_using, - anon_sym_concept, - anon_sym_requires, - [1595] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [11078] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3876), 13, + ACTIONS(4014), 1, + anon_sym_COLON, + ACTIONS(4265), 1, + anon_sym_LBRACE, + STATE(2698), 1, + sym_field_declaration_list, + STATE(5747), 1, + sym_virtual_specifier, + STATE(6703), 1, + sym_base_class_clause, + ACTIONS(4016), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4020), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4018), 34, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [11155] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4285), 1, + anon_sym_catch, + STATE(1958), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + ACTIONS(2413), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(3874), 45, + ACTIONS(2411), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym_AMP, + anon_sym_typedef, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, anon_sym_LBRACK, anon_sym_static, anon_sym_register, @@ -203235,173 +223442,332 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_virtual, anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, anon_sym_typename, anon_sym_template, anon_sym_operator, - anon_sym_try, + anon_sym_friend, anon_sym_using, - anon_sym_concept, - anon_sym_requires, - [1661] = 3, + anon_sym_static_assert, + [11224] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3880), 13, + ACTIONS(4139), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4137), 38, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(3878), 45, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_using, - anon_sym_concept, - anon_sym_requires, - [1727] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [11289] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3884), 13, + ACTIONS(4125), 1, + anon_sym_COLON_COLON, + ACTIONS(4290), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4288), 37, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(3882), 45, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_using, - anon_sym_concept, - anon_sym_requires, - [1793] = 3, + [11356] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3888), 13, + ACTIONS(4014), 1, + anon_sym_COLON, + ACTIONS(4265), 1, + anon_sym_LBRACE, + STATE(2745), 1, + sym_field_declaration_list, + STATE(5705), 1, + sym_virtual_specifier, + STATE(6695), 1, + sym_base_class_clause, + ACTIONS(4016), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4043), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4041), 34, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [11433] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4014), 1, + anon_sym_COLON, + ACTIONS(4265), 1, anon_sym_LBRACE, + STATE(2756), 1, + sym_field_declaration_list, + STATE(5701), 1, + sym_virtual_specifier, + STATE(6688), 1, + sym_base_class_clause, + ACTIONS(4016), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4047), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT2, - ACTIONS(3886), 45, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4045), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [11510] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(111), 1, + anon_sym_explicit, + ACTIONS(117), 1, + anon_sym_operator, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1519), 1, + anon_sym_LPAREN2, + ACTIONS(1521), 1, + anon_sym_TILDE, + ACTIONS(1523), 1, + anon_sym_STAR, + ACTIONS(1525), 1, anon_sym_AMP, - anon_sym_extern, + ACTIONS(1531), 1, + anon_sym_LBRACK, + ACTIONS(4247), 1, + sym_identifier, + ACTIONS(4251), 1, anon_sym___attribute__, + ACTIONS(4253), 1, + anon_sym_COLON_COLON, + ACTIONS(4255), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4257), 1, anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, + ACTIONS(4261), 1, + anon_sym_virtual, + STATE(4804), 1, + sym__scope_resolution, + STATE(4985), 1, + sym_function_declarator, + STATE(5461), 1, + sym__declarator, + STATE(7250), 1, + sym_ms_based_modifier, + STATE(5476), 2, + sym_operator_cast, + sym_qualified_operator_cast_identifier, + STATE(7236), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(4249), 5, + anon_sym_extern, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, + ACTIONS(4259), 8, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -203410,61 +223776,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_using, - anon_sym_concept, - anon_sym_requires, - [1859] = 3, + STATE(3527), 10, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + sym_explicit_function_specifier, + sym__constructor_specifiers, + aux_sym_operator_cast_definition_repeat1, + STATE(5080), 10, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [11623] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3892), 13, + ACTIONS(4014), 1, + anon_sym_COLON, + ACTIONS(4265), 1, + anon_sym_LBRACE, + STATE(2770), 1, + sym_field_declaration_list, + STATE(5700), 1, + sym_virtual_specifier, + STATE(6684), 1, + sym_base_class_clause, + ACTIONS(4016), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4051), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4049), 34, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(3890), 45, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [11700] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(111), 1, + anon_sym_explicit, + ACTIONS(117), 1, + anon_sym_operator, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1519), 1, + anon_sym_LPAREN2, + ACTIONS(1521), 1, + anon_sym_TILDE, + ACTIONS(1523), 1, + anon_sym_STAR, + ACTIONS(1525), 1, anon_sym_AMP, - anon_sym_extern, + ACTIONS(1531), 1, + anon_sym_LBRACK, + ACTIONS(4247), 1, + sym_identifier, + ACTIONS(4251), 1, anon_sym___attribute__, + ACTIONS(4253), 1, + anon_sym_COLON_COLON, + ACTIONS(4255), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4257), 1, anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, + ACTIONS(4261), 1, + anon_sym_virtual, + STATE(4804), 1, + sym__scope_resolution, + STATE(5071), 1, + sym_function_declarator, + STATE(5461), 1, + sym__declarator, + STATE(7250), 1, + sym_ms_based_modifier, + STATE(5463), 2, + sym_operator_cast, + sym_qualified_operator_cast_identifier, + STATE(7236), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(4249), 5, + anon_sym_extern, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, + ACTIONS(4259), 8, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -203473,124 +223930,276 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, + STATE(3527), 10, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + sym_explicit_function_specifier, + sym__constructor_specifiers, + aux_sym_operator_cast_definition_repeat1, + STATE(5080), 10, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [11813] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4292), 1, + anon_sym_COLON, + STATE(2167), 1, + sym__enum_base_clause, + STATE(2427), 1, + sym_enumerator_list, + ACTIONS(4153), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4151), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_using, - anon_sym_concept, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [11884] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3473), 21, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3478), 36, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [1925] = 3, + [11949] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3896), 13, + ACTIONS(3424), 1, + anon_sym_COLON_COLON, + ACTIONS(4294), 1, + anon_sym_LT, + STATE(1967), 1, + sym_template_argument_list, + ACTIONS(4095), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3426), 34, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(3894), 45, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_using, - anon_sym_concept, - anon_sym_requires, - [1991] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + [12020] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3900), 13, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(111), 1, + anon_sym_explicit, + ACTIONS(117), 1, + anon_sym_operator, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1519), 1, anon_sym_LPAREN2, + ACTIONS(1521), 1, anon_sym_TILDE, + ACTIONS(1523), 1, anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(3898), 45, + ACTIONS(1525), 1, anon_sym_AMP, - anon_sym_extern, + ACTIONS(1531), 1, + anon_sym_LBRACK, + ACTIONS(4247), 1, + sym_identifier, + ACTIONS(4251), 1, anon_sym___attribute__, + ACTIONS(4253), 1, + anon_sym_COLON_COLON, + ACTIONS(4255), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4257), 1, anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, + ACTIONS(4261), 1, + anon_sym_virtual, + STATE(4804), 1, + sym__scope_resolution, + STATE(5068), 1, + sym_function_declarator, + STATE(5461), 1, + sym__declarator, + STATE(7250), 1, + sym_ms_based_modifier, + STATE(5476), 2, + sym_operator_cast, + sym_qualified_operator_cast_identifier, + STATE(7236), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(4249), 5, + anon_sym_extern, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, + ACTIONS(4259), 8, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -203599,56 +224208,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_using, - anon_sym_concept, - anon_sym_requires, - [2057] = 3, + STATE(3527), 10, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + sym_explicit_function_specifier, + sym__constructor_specifiers, + aux_sym_operator_cast_definition_repeat1, + STATE(5080), 10, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [12133] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3904), 13, + ACTIONS(4296), 1, + sym_literal_suffix, + ACTIONS(4298), 1, + sym_raw_string_literal, + STATE(1978), 2, + sym_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(1447), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(3414), 22, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3419), 26, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [12206] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4300), 1, + anon_sym_catch, + STATE(1972), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + ACTIONS(2426), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(3902), 45, + anon_sym_RBRACE, + ACTIONS(2424), 47, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym_AMP, + anon_sym_typedef, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, anon_sym_LBRACK, anon_sym_static, anon_sym_register, @@ -203676,42 +224351,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_virtual, anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, anon_sym_typename, anon_sym_template, anon_sym_operator, - anon_sym_try, + anon_sym_friend, anon_sym_using, - anon_sym_concept, - anon_sym_requires, - [2123] = 3, + anon_sym_static_assert, + [12275] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3908), 13, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4302), 1, + anon_sym_catch, + STATE(1972), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + ACTIONS(2413), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(3906), 45, + anon_sym_RBRACE, + ACTIONS(2411), 47, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym_AMP, + anon_sym_typedef, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, anon_sym_LBRACK, anon_sym_static, anon_sym_register, @@ -203739,34 +224415,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_virtual, anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, anon_sym_typename, anon_sym_template, anon_sym_operator, - anon_sym_try, + anon_sym_friend, anon_sym_using, - anon_sym_concept, - anon_sym_requires, - [2189] = 4, + anon_sym_static_assert, + [12344] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2391), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(2289), 6, + ACTIONS(4300), 1, + anon_sym_catch, + STATE(1972), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + ACTIONS(2422), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2287), 50, + anon_sym_RBRACE, + ACTIONS(2420), 47, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym_AMP, anon_sym_typedef, @@ -203810,40 +224488,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [2257] = 3, + [12413] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3912), 13, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(111), 1, + anon_sym_explicit, + ACTIONS(117), 1, + anon_sym_operator, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1519), 1, anon_sym_LPAREN2, + ACTIONS(1521), 1, anon_sym_TILDE, + ACTIONS(1523), 1, anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(3910), 45, + ACTIONS(1525), 1, anon_sym_AMP, - anon_sym_extern, + ACTIONS(1531), 1, + anon_sym_LBRACK, + ACTIONS(4247), 1, + sym_identifier, + ACTIONS(4251), 1, anon_sym___attribute__, + ACTIONS(4253), 1, + anon_sym_COLON_COLON, + ACTIONS(4255), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4257), 1, anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, + ACTIONS(4261), 1, + anon_sym_virtual, + STATE(4804), 1, + sym__scope_resolution, + STATE(5041), 1, + sym_function_declarator, + STATE(5461), 1, + sym__declarator, + STATE(7250), 1, + sym_ms_based_modifier, + STATE(5481), 2, + sym_operator_cast, + sym_qualified_operator_cast_identifier, + STATE(7236), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(4249), 5, + anon_sym_extern, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, + ACTIONS(4259), 8, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -203852,61 +224552,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_using, - anon_sym_concept, - anon_sym_requires, - [2323] = 3, + STATE(3527), 10, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + sym_explicit_function_specifier, + sym__constructor_specifiers, + aux_sym_operator_cast_definition_repeat1, + STATE(5080), 10, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [12526] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3916), 13, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(111), 1, + anon_sym_explicit, + ACTIONS(117), 1, + anon_sym_operator, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1519), 1, anon_sym_LPAREN2, + ACTIONS(1521), 1, anon_sym_TILDE, + ACTIONS(1523), 1, anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(3914), 45, + ACTIONS(1525), 1, anon_sym_AMP, - anon_sym_extern, + ACTIONS(1531), 1, + anon_sym_LBRACK, + ACTIONS(4247), 1, + sym_identifier, + ACTIONS(4251), 1, anon_sym___attribute__, + ACTIONS(4253), 1, + anon_sym_COLON_COLON, + ACTIONS(4255), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4257), 1, anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, + ACTIONS(4261), 1, + anon_sym_virtual, + STATE(4804), 1, + sym__scope_resolution, + STATE(4948), 1, + sym_function_declarator, + STATE(5461), 1, + sym__declarator, + STATE(7250), 1, + sym_ms_based_modifier, + STATE(5466), 2, + sym_operator_cast, + sym_qualified_operator_cast_identifier, + STATE(7236), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(4249), 5, + anon_sym_extern, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, + ACTIONS(4259), 8, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -203915,119 +224638,251 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_using, - anon_sym_concept, - anon_sym_requires, - [2389] = 3, + STATE(3527), 10, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + sym_explicit_function_specifier, + sym__constructor_specifiers, + aux_sym_operator_cast_definition_repeat1, + STATE(5080), 10, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [12639] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3876), 13, + ACTIONS(4292), 1, + anon_sym_COLON, + STATE(2178), 1, + sym__enum_base_clause, + STATE(2395), 1, + sym_enumerator_list, + ACTIONS(4235), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4233), 35, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(3874), 45, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [12710] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3424), 1, + anon_sym_COLON_COLON, + ACTIONS(4305), 1, + anon_sym_LT, + STATE(1967), 1, + sym_template_argument_list, + ACTIONS(3430), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3435), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_using, - anon_sym_concept, - anon_sym_requires, - [2455] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + [12781] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3876), 13, + ACTIONS(4308), 1, + sym_raw_string_literal, + STATE(1953), 2, + sym_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(1447), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(3991), 23, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + anon_sym_DASH_GT, + sym_literal_suffix, + ACTIONS(3989), 26, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [12852] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4300), 1, + anon_sym_catch, + STATE(1972), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + ACTIONS(2407), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(3874), 45, + anon_sym_RBRACE, + ACTIONS(2405), 47, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym_AMP, + anon_sym_typedef, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, anon_sym_LBRACK, anon_sym_static, anon_sym_register, @@ -204055,42 +224910,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_virtual, anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, anon_sym_typename, anon_sym_template, anon_sym_operator, - anon_sym_try, + anon_sym_friend, anon_sym_using, - anon_sym_concept, - anon_sym_requires, - [2521] = 3, + anon_sym_static_assert, + [12921] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3920), 13, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2487), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(3918), 45, + ACTIONS(2485), 51, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, anon_sym_AMP, + anon_sym_typedef, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, anon_sym_LBRACK, anon_sym_static, anon_sym_register, @@ -204118,120 +224971,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_virtual, anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, anon_sym_typename, anon_sym_template, anon_sym_operator, - anon_sym_try, + anon_sym_friend, anon_sym_using, - anon_sym_concept, - anon_sym_requires, - [2587] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(111), 1, - anon_sym_explicit, - ACTIONS(117), 1, - anon_sym_operator, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1515), 1, - anon_sym_LPAREN2, - ACTIONS(1517), 1, - anon_sym_TILDE, - ACTIONS(1519), 1, - anon_sym_STAR, - ACTIONS(1521), 1, - anon_sym_AMP, - ACTIONS(1527), 1, - anon_sym_LBRACK, - ACTIONS(3922), 1, - sym_identifier, - ACTIONS(3926), 1, - anon_sym___attribute__, - ACTIONS(3928), 1, - anon_sym_COLON_COLON, - ACTIONS(3930), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3932), 1, - anon_sym___declspec, - ACTIONS(3936), 1, - anon_sym_virtual, - STATE(4596), 1, - sym__scope_resolution, - STATE(4711), 1, - sym_function_declarator, - STATE(5174), 1, - sym__declarator, - STATE(6716), 1, - sym_ms_based_modifier, - STATE(5221), 2, - sym_operator_cast, - sym_qualified_operator_cast_identifier, - STATE(6663), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(3924), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(3934), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(3171), 10, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual_function_specifier, - sym_explicit_function_specifier, - sym__constructor_specifiers, - aux_sym_operator_cast_definition_repeat1, - STATE(4825), 10, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [2700] = 5, + anon_sym_static_assert, + anon_sym_catch, + [12986] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3938), 1, - anon_sym_catch, - STATE(1765), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - ACTIONS(2265), 7, + ACTIONS(2478), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2263), 47, + ACTIONS(2476), 51, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym_AMP, anon_sym_typedef, @@ -204275,69 +225042,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [2769] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3801), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_const, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3803), 39, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [2834] = 27, + anon_sym_catch, + [13051] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(29), 1, @@ -204348,51 +225054,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_explicit, ACTIONS(117), 1, anon_sym_operator, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(1515), 1, + ACTIONS(1519), 1, anon_sym_LPAREN2, - ACTIONS(1517), 1, + ACTIONS(1521), 1, anon_sym_TILDE, - ACTIONS(1519), 1, + ACTIONS(1523), 1, anon_sym_STAR, - ACTIONS(1521), 1, + ACTIONS(1525), 1, anon_sym_AMP, - ACTIONS(1527), 1, + ACTIONS(1531), 1, anon_sym_LBRACK, - ACTIONS(3922), 1, + ACTIONS(4247), 1, sym_identifier, - ACTIONS(3926), 1, + ACTIONS(4251), 1, anon_sym___attribute__, - ACTIONS(3928), 1, + ACTIONS(4253), 1, anon_sym_COLON_COLON, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3932), 1, + ACTIONS(4257), 1, anon_sym___declspec, - ACTIONS(3936), 1, + ACTIONS(4261), 1, anon_sym_virtual, - STATE(4596), 1, + STATE(4804), 1, sym__scope_resolution, - STATE(4681), 1, + STATE(4960), 1, sym_function_declarator, - STATE(5174), 1, + STATE(5461), 1, sym__declarator, - STATE(6716), 1, + STATE(7250), 1, sym_ms_based_modifier, - STATE(5185), 2, + STATE(5481), 2, sym_operator_cast, sym_qualified_operator_cast_identifier, - STATE(6663), 2, + STATE(7236), 2, sym_template_type, sym_dependent_type_identifier, - ACTIONS(3924), 5, + ACTIONS(4249), 5, anon_sym_extern, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - ACTIONS(3934), 8, + ACTIONS(4259), 8, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -204401,7 +225107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(3171), 10, + STATE(3527), 10, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -204412,7 +225118,7 @@ static const uint16_t ts_small_parse_table[] = { sym_explicit_function_specifier, sym__constructor_specifiers, aux_sym_operator_cast_definition_repeat1, - STATE(4825), 10, + STATE(5080), 10, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -204423,7 +225129,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [2947] = 27, + [13164] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(29), 1, @@ -204434,51 +225140,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_explicit, ACTIONS(117), 1, anon_sym_operator, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(1515), 1, + ACTIONS(1519), 1, anon_sym_LPAREN2, - ACTIONS(1517), 1, + ACTIONS(1521), 1, anon_sym_TILDE, - ACTIONS(1519), 1, + ACTIONS(1523), 1, anon_sym_STAR, - ACTIONS(1521), 1, + ACTIONS(1525), 1, anon_sym_AMP, - ACTIONS(1527), 1, + ACTIONS(1531), 1, anon_sym_LBRACK, - ACTIONS(3922), 1, + ACTIONS(4247), 1, sym_identifier, - ACTIONS(3926), 1, + ACTIONS(4251), 1, anon_sym___attribute__, - ACTIONS(3928), 1, + ACTIONS(4253), 1, anon_sym_COLON_COLON, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3932), 1, + ACTIONS(4257), 1, anon_sym___declspec, - ACTIONS(3936), 1, + ACTIONS(4261), 1, anon_sym_virtual, - STATE(4596), 1, + STATE(4804), 1, sym__scope_resolution, - STATE(4756), 1, + STATE(4980), 1, sym_function_declarator, - STATE(5174), 1, + STATE(5461), 1, sym__declarator, - STATE(6716), 1, + STATE(7250), 1, sym_ms_based_modifier, - STATE(5190), 2, + STATE(5459), 2, sym_operator_cast, sym_qualified_operator_cast_identifier, - STATE(6663), 2, + STATE(7236), 2, sym_template_type, sym_dependent_type_identifier, - ACTIONS(3924), 5, + ACTIONS(4249), 5, anon_sym_extern, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - ACTIONS(3934), 8, + ACTIONS(4259), 8, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -204487,7 +225193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(3171), 10, + STATE(3527), 10, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -204498,7 +225204,7 @@ static const uint16_t ts_small_parse_table[] = { sym_explicit_function_specifier, sym__constructor_specifiers, aux_sym_operator_cast_definition_repeat1, - STATE(4825), 10, + STATE(5080), 10, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -204509,69 +225215,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [3060] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3774), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_const, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3776), 39, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [3125] = 27, + [13277] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(29), 1, @@ -204582,51 +225226,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_explicit, ACTIONS(117), 1, anon_sym_operator, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(1515), 1, + ACTIONS(1519), 1, anon_sym_LPAREN2, - ACTIONS(1517), 1, + ACTIONS(1521), 1, anon_sym_TILDE, - ACTIONS(1519), 1, + ACTIONS(1523), 1, anon_sym_STAR, - ACTIONS(1521), 1, + ACTIONS(1525), 1, anon_sym_AMP, - ACTIONS(1527), 1, + ACTIONS(1531), 1, anon_sym_LBRACK, - ACTIONS(3922), 1, + ACTIONS(4247), 1, sym_identifier, - ACTIONS(3926), 1, + ACTIONS(4251), 1, anon_sym___attribute__, - ACTIONS(3928), 1, + ACTIONS(4253), 1, anon_sym_COLON_COLON, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3932), 1, + ACTIONS(4257), 1, anon_sym___declspec, - ACTIONS(3936), 1, + ACTIONS(4261), 1, anon_sym_virtual, - STATE(4596), 1, + STATE(4804), 1, sym__scope_resolution, - STATE(4679), 1, + STATE(4950), 1, sym_function_declarator, - STATE(5174), 1, + STATE(5461), 1, sym__declarator, - STATE(6716), 1, + STATE(7250), 1, sym_ms_based_modifier, - STATE(5203), 2, + STATE(5471), 2, sym_operator_cast, sym_qualified_operator_cast_identifier, - STATE(6663), 2, + STATE(7236), 2, sym_template_type, sym_dependent_type_identifier, - ACTIONS(3924), 5, + ACTIONS(4249), 5, anon_sym_extern, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - ACTIONS(3934), 8, + ACTIONS(4259), 8, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -204635,7 +225279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(3171), 10, + STATE(3527), 10, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -204646,80 +225290,18 @@ static const uint16_t ts_small_parse_table[] = { sym_explicit_function_specifier, sym__constructor_specifiers, aux_sym_operator_cast_definition_repeat1, - STATE(4825), 10, + STATE(5080), 10, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_array_declarator, sym_reference_declarator, sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [3238] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2293), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2291), 50, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_else, - anon_sym_while, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - anon_sym_catch, - [3303] = 27, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [13390] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(29), 1, @@ -204730,51 +225312,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_explicit, ACTIONS(117), 1, anon_sym_operator, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(1515), 1, + ACTIONS(1519), 1, anon_sym_LPAREN2, - ACTIONS(1517), 1, + ACTIONS(1521), 1, anon_sym_TILDE, - ACTIONS(1519), 1, + ACTIONS(1523), 1, anon_sym_STAR, - ACTIONS(1521), 1, + ACTIONS(1525), 1, anon_sym_AMP, - ACTIONS(1527), 1, + ACTIONS(1531), 1, anon_sym_LBRACK, - ACTIONS(3922), 1, + ACTIONS(4247), 1, sym_identifier, - ACTIONS(3926), 1, + ACTIONS(4251), 1, anon_sym___attribute__, - ACTIONS(3928), 1, + ACTIONS(4253), 1, anon_sym_COLON_COLON, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3932), 1, + ACTIONS(4257), 1, anon_sym___declspec, - ACTIONS(3936), 1, + ACTIONS(4261), 1, anon_sym_virtual, - STATE(4596), 1, + STATE(4804), 1, sym__scope_resolution, - STATE(4754), 1, + STATE(4961), 1, sym_function_declarator, - STATE(5174), 1, + STATE(5461), 1, sym__declarator, - STATE(6716), 1, + STATE(7250), 1, sym_ms_based_modifier, - STATE(5203), 2, + STATE(5458), 2, sym_operator_cast, sym_qualified_operator_cast_identifier, - STATE(6663), 2, + STATE(7236), 2, sym_template_type, sym_dependent_type_identifier, - ACTIONS(3924), 5, + ACTIONS(4249), 5, anon_sym_extern, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - ACTIONS(3934), 8, + ACTIONS(4259), 8, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -204783,7 +225365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(3171), 10, + STATE(3527), 10, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -204794,7 +225376,7 @@ static const uint16_t ts_small_parse_table[] = { sym_explicit_function_specifier, sym__constructor_specifiers, aux_sym_operator_cast_definition_repeat1, - STATE(4825), 10, + STATE(5080), 10, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -204805,72 +225387,10 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [3416] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2304), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2302), 51, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - anon_sym_catch, - [3481] = 3, + [13503] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3782), 18, + ACTIONS(4312), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -204885,11 +225405,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_const, - anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3784), 39, + ACTIONS(4310), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -204899,16 +225419,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_COLON_COLON, + anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -204920,50 +225436,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [3546] = 3, + [13567] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3805), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_const, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3807), 39, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + ACTIONS(39), 1, + anon_sym___attribute__, + ACTIONS(45), 1, + anon_sym___declspec, + ACTIONS(63), 1, + anon_sym_enum, + ACTIONS(65), 1, + anon_sym_class, + ACTIONS(67), 1, + anon_sym_struct, + ACTIONS(69), 1, + anon_sym_union, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(109), 1, + anon_sym_virtual, + ACTIONS(113), 1, + anon_sym_typename, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1393), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2428), 1, + sym_identifier, + ACTIONS(2434), 1, anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, + ACTIONS(2438), 1, + sym_primitive_type, + STATE(3251), 1, + sym__type_specifier, + STATE(3271), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3395), 1, + sym_template_type, + STATE(3490), 1, + sym_qualified_type_identifier, + STATE(3494), 1, + sym_decltype_auto, + STATE(4264), 1, + sym__declaration_specifiers, + STATE(5394), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(55), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(57), 8, + anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -204971,37 +225517,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [3611] = 3, + STATE(2203), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + STATE(3481), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [13683] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2293), 6, + ACTIONS(2933), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2291), 51, + ACTIONS(2931), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -205052,63 +225596,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - anon_sym_catch, - [3676] = 27, + [13747] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(111), 1, - anon_sym_explicit, - ACTIONS(117), 1, - anon_sym_operator, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1515), 1, - anon_sym_LPAREN2, - ACTIONS(1517), 1, - anon_sym_TILDE, - ACTIONS(1519), 1, - anon_sym_STAR, - ACTIONS(1521), 1, - anon_sym_AMP, - ACTIONS(1527), 1, - anon_sym_LBRACK, - ACTIONS(3922), 1, - sym_identifier, - ACTIONS(3926), 1, + ACTIONS(39), 1, anon_sym___attribute__, - ACTIONS(3928), 1, - anon_sym_COLON_COLON, - ACTIONS(3930), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3932), 1, + ACTIONS(45), 1, anon_sym___declspec, - ACTIONS(3936), 1, + ACTIONS(63), 1, + anon_sym_enum, + ACTIONS(65), 1, + anon_sym_class, + ACTIONS(67), 1, + anon_sym_struct, + ACTIONS(69), 1, + anon_sym_union, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(109), 1, anon_sym_virtual, - STATE(4596), 1, - sym__scope_resolution, - STATE(4705), 1, - sym_function_declarator, - STATE(5174), 1, - sym__declarator, - STATE(6716), 1, - sym_ms_based_modifier, - STATE(5192), 2, - sym_operator_cast, - sym_qualified_operator_cast_identifier, - STATE(6663), 2, + ACTIONS(113), 1, + anon_sym_typename, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1393), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2428), 1, + sym_identifier, + ACTIONS(2434), 1, + anon_sym_COLON_COLON, + ACTIONS(2438), 1, + sym_primitive_type, + STATE(3251), 1, + sym__type_specifier, + STATE(3271), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3395), 1, sym_template_type, + STATE(3490), 1, + sym_qualified_type_identifier, + STATE(3494), 1, + sym_decltype_auto, + STATE(4308), 1, + sym__declaration_specifiers, + STATE(5394), 1, + sym__scope_resolution, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(3924), 5, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(55), 5, anon_sym_extern, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - ACTIONS(3934), 8, + ACTIONS(57), 8, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -205117,7 +225665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(3171), 10, + STATE(2203), 8, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -205125,41 +225673,34 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, sym_virtual_function_specifier, - sym_explicit_function_specifier, - sym__constructor_specifiers, - aux_sym_operator_cast_definition_repeat1, - STATE(4825), 10, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [3789] = 5, + aux_sym__declaration_specifiers_repeat1, + STATE(3481), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [13863] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3941), 1, - anon_sym_catch, - STATE(1781), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - ACTIONS(2276), 6, + ACTIONS(4316), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2274), 48, + ACTIONS(4314), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym_AMP, anon_sym_typedef, @@ -205203,17 +225744,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [3858] = 3, + [13927] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2289), 6, + ACTIONS(4320), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2287), 51, + ACTIONS(4318), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -205264,63 +225805,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - anon_sym_catch, - [3923] = 27, + [13991] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(111), 1, - anon_sym_explicit, - ACTIONS(117), 1, - anon_sym_operator, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1515), 1, + ACTIONS(4320), 6, anon_sym_LPAREN2, - ACTIONS(1517), 1, anon_sym_TILDE, - ACTIONS(1519), 1, anon_sym_STAR, - ACTIONS(1521), 1, - anon_sym_AMP, - ACTIONS(1527), 1, - anon_sym_LBRACK, - ACTIONS(3922), 1, - sym_identifier, - ACTIONS(3926), 1, - anon_sym___attribute__, - ACTIONS(3928), 1, + anon_sym_AMP_AMP, anon_sym_COLON_COLON, - ACTIONS(3930), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3932), 1, - anon_sym___declspec, - ACTIONS(3936), 1, - anon_sym_virtual, - STATE(4596), 1, - sym__scope_resolution, - STATE(4692), 1, - sym_function_declarator, - STATE(5174), 1, - sym__declarator, - STATE(6716), 1, - sym_ms_based_modifier, - STATE(5190), 2, - sym_operator_cast, - sym_qualified_operator_cast_identifier, - STATE(6663), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(3924), 5, + ACTIONS(4318), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - ACTIONS(3934), 8, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -205329,49 +225843,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(3171), 10, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual_function_specifier, - sym_explicit_function_specifier, - sym__constructor_specifiers, - aux_sym_operator_cast_definition_repeat1, - STATE(4825), 10, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [4036] = 5, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [14055] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3943), 1, - anon_sym_catch, - STATE(1781), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - ACTIONS(2265), 6, + ACTIONS(1711), 1, + anon_sym_LBRACE, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + STATE(2564), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4324), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4322), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [14125] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2921), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2263), 48, + ACTIONS(2919), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym_AMP, anon_sym_typedef, @@ -205415,62 +225991,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [4105] = 27, + [14189] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(111), 1, - anon_sym_explicit, - ACTIONS(117), 1, - anon_sym_operator, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1515), 1, - anon_sym_LPAREN2, - ACTIONS(1517), 1, - anon_sym_TILDE, - ACTIONS(1519), 1, - anon_sym_STAR, - ACTIONS(1521), 1, - anon_sym_AMP, - ACTIONS(1527), 1, - anon_sym_LBRACK, - ACTIONS(3922), 1, - sym_identifier, - ACTIONS(3926), 1, + ACTIONS(39), 1, anon_sym___attribute__, - ACTIONS(3928), 1, - anon_sym_COLON_COLON, - ACTIONS(3930), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3932), 1, + ACTIONS(45), 1, anon_sym___declspec, - ACTIONS(3936), 1, + ACTIONS(63), 1, + anon_sym_enum, + ACTIONS(65), 1, + anon_sym_class, + ACTIONS(67), 1, + anon_sym_struct, + ACTIONS(69), 1, + anon_sym_union, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(109), 1, anon_sym_virtual, - STATE(4596), 1, - sym__scope_resolution, - STATE(4677), 1, - sym_function_declarator, - STATE(5174), 1, - sym__declarator, - STATE(6716), 1, - sym_ms_based_modifier, - STATE(5197), 2, - sym_operator_cast, - sym_qualified_operator_cast_identifier, - STATE(6663), 2, + ACTIONS(113), 1, + anon_sym_typename, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1393), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2428), 1, + sym_identifier, + ACTIONS(2434), 1, + anon_sym_COLON_COLON, + ACTIONS(2438), 1, + sym_primitive_type, + STATE(3251), 1, + sym__type_specifier, + STATE(3271), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3395), 1, sym_template_type, + STATE(3490), 1, + sym_qualified_type_identifier, + STATE(3494), 1, + sym_decltype_auto, + STATE(4283), 1, + sym__declaration_specifiers, + STATE(5394), 1, + sym__scope_resolution, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(3924), 5, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(55), 5, anon_sym_extern, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - ACTIONS(3934), 8, + ACTIONS(57), 8, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -205479,7 +226060,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(3171), 10, + STATE(2203), 8, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -205487,110 +226068,90 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, sym_virtual_function_specifier, - sym_explicit_function_specifier, - sym__constructor_specifiers, - aux_sym_operator_cast_definition_repeat1, - STATE(4825), 10, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [4218] = 27, + aux_sym__declaration_specifiers_repeat1, + STATE(3481), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [14305] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(111), 1, - anon_sym_explicit, - ACTIONS(117), 1, - anon_sym_operator, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1515), 1, + ACTIONS(1711), 1, + anon_sym_LBRACE, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(1517), 1, - anon_sym_TILDE, - ACTIONS(1519), 1, + STATE(2475), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4328), 18, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(1521), 1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(1527), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4326), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(3922), 1, - sym_identifier, - ACTIONS(3926), 1, - anon_sym___attribute__, - ACTIONS(3928), 1, - anon_sym_COLON_COLON, - ACTIONS(3930), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3932), 1, - anon_sym___declspec, - ACTIONS(3936), 1, - anon_sym_virtual, - STATE(4596), 1, - sym__scope_resolution, - STATE(4743), 1, - sym_function_declarator, - STATE(5174), 1, - sym__declarator, - STATE(6716), 1, - sym_ms_based_modifier, - STATE(5208), 2, - sym_operator_cast, - sym_qualified_operator_cast_identifier, - STATE(6663), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(3924), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(3934), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(3171), 10, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual_function_specifier, - sym_explicit_function_specifier, - sym__constructor_specifiers, - aux_sym_operator_cast_definition_repeat1, - STATE(4825), 10, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [4331] = 3, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [14375] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3797), 18, + ACTIONS(3424), 1, + anon_sym_COLON_COLON, + ACTIONS(4110), 1, + anon_sym_LT, + STATE(1897), 1, + sym_template_argument_list, + ACTIONS(3407), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -205601,15 +226162,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_const, - anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3799), 39, + ACTIONS(3412), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -205619,16 +226180,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -205640,19 +226193,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [4396] = 3, + [14445] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym___attribute__, + ACTIONS(45), 1, + anon_sym___declspec, + ACTIONS(63), 1, + anon_sym_enum, + ACTIONS(65), 1, + anon_sym_class, + ACTIONS(67), 1, + anon_sym_struct, + ACTIONS(69), 1, + anon_sym_union, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(109), 1, + anon_sym_virtual, + ACTIONS(113), 1, + anon_sym_typename, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1393), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2428), 1, + sym_identifier, + ACTIONS(2434), 1, + anon_sym_COLON_COLON, + ACTIONS(2438), 1, + sym_primitive_type, + STATE(3251), 1, + sym__type_specifier, + STATE(3271), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3395), 1, + sym_template_type, + STATE(3490), 1, + sym_qualified_type_identifier, + STATE(3494), 1, + sym_decltype_auto, + STATE(4263), 1, + sym__declaration_specifiers, + STATE(5394), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(55), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(2203), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + STATE(3481), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [14561] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3793), 18, + ACTIONS(3424), 1, + anon_sym_COLON_COLON, + ACTIONS(4330), 1, + anon_sym_LT, + STATE(1937), 1, + sym_template_argument_list, + ACTIONS(3430), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -205663,15 +226313,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_const, anon_sym_COLON, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3795), 39, + ACTIONS(3435), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -205681,16 +226329,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -205703,6 +226343,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, sym_auto, @@ -205711,27 +226357,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [4461] = 5, + [14631] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3941), 1, - anon_sym_catch, - STATE(1781), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - ACTIONS(2259), 6, + ACTIONS(2917), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2257), 48, + ACTIONS(2915), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym_AMP, anon_sym_typedef, @@ -205775,27 +226418,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [4530] = 5, + [14695] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3946), 1, - anon_sym_catch, - STATE(1765), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - ACTIONS(2259), 7, + ACTIONS(2913), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2257), 47, + ACTIONS(2911), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym_AMP, anon_sym_typedef, @@ -205839,27 +226479,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [4599] = 5, + [14759] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3941), 1, - anon_sym_catch, - STATE(1781), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - ACTIONS(2280), 6, + ACTIONS(4335), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2278), 48, + ACTIONS(4333), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym_AMP, anon_sym_typedef, @@ -205903,27 +226540,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [4668] = 5, + [14823] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3946), 1, - anon_sym_catch, - STATE(1765), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - ACTIONS(2276), 7, + ACTIONS(4339), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2274), 47, + ACTIONS(4337), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym_AMP, anon_sym_typedef, @@ -205967,113 +226601,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [4737] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(111), 1, - anon_sym_explicit, - ACTIONS(117), 1, - anon_sym_operator, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1515), 1, - anon_sym_LPAREN2, - ACTIONS(1517), 1, - anon_sym_TILDE, - ACTIONS(1519), 1, - anon_sym_STAR, - ACTIONS(1521), 1, - anon_sym_AMP, - ACTIONS(1527), 1, - anon_sym_LBRACK, - ACTIONS(3922), 1, - sym_identifier, - ACTIONS(3926), 1, - anon_sym___attribute__, - ACTIONS(3928), 1, - anon_sym_COLON_COLON, - ACTIONS(3930), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3932), 1, - anon_sym___declspec, - ACTIONS(3936), 1, - anon_sym_virtual, - STATE(4596), 1, - sym__scope_resolution, - STATE(4795), 1, - sym_function_declarator, - STATE(5174), 1, - sym__declarator, - STATE(6716), 1, - sym_ms_based_modifier, - STATE(5197), 2, - sym_operator_cast, - sym_qualified_operator_cast_identifier, - STATE(6663), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(3924), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(3934), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(3171), 10, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual_function_specifier, - sym_explicit_function_specifier, - sym__constructor_specifiers, - aux_sym_operator_cast_definition_repeat1, - STATE(4825), 10, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [4850] = 5, + [14887] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3946), 1, - anon_sym_catch, - STATE(1765), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - ACTIONS(2280), 7, + ACTIONS(4343), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2278), 47, + ACTIONS(4341), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym_AMP, anon_sym_typedef, @@ -206117,127 +226662,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [4919] = 27, + [14951] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(111), 1, - anon_sym_explicit, - ACTIONS(117), 1, - anon_sym_operator, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1515), 1, + ACTIONS(2731), 6, anon_sym_LPAREN2, - ACTIONS(1517), 1, anon_sym_TILDE, - ACTIONS(1519), 1, anon_sym_STAR, - ACTIONS(1521), 1, - anon_sym_AMP, - ACTIONS(1527), 1, - anon_sym_LBRACK, - ACTIONS(3922), 1, - sym_identifier, - ACTIONS(3926), 1, - anon_sym___attribute__, - ACTIONS(3928), 1, + anon_sym_AMP_AMP, anon_sym_COLON_COLON, - ACTIONS(3930), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3932), 1, - anon_sym___declspec, - ACTIONS(3936), 1, - anon_sym_virtual, - STATE(4596), 1, - sym__scope_resolution, - STATE(4691), 1, - sym_function_declarator, - STATE(5174), 1, - sym__declarator, - STATE(6716), 1, - sym_ms_based_modifier, - STATE(5208), 2, - sym_operator_cast, - sym_qualified_operator_cast_identifier, - STATE(6663), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(3924), 5, + ACTIONS(2729), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - ACTIONS(3934), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(3171), 10, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual_function_specifier, - sym_explicit_function_specifier, - sym__constructor_specifiers, - aux_sym_operator_cast_definition_repeat1, - STATE(4825), 10, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [5032] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3778), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, anon_sym_const, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3780), 39, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -206245,37 +226700,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [5097] = 3, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [15015] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2661), 6, + ACTIONS(4347), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2659), 50, + ACTIONS(4345), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -206326,17 +226784,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [5161] = 3, + [15079] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1711), 1, + anon_sym_LBRACE, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + STATE(2466), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4351), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4349), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [15149] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3950), 6, + ACTIONS(4347), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(3948), 50, + ACTIONS(4345), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -206387,17 +226909,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [5225] = 3, + [15213] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2791), 6, + ACTIONS(4355), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2789), 50, + ACTIONS(4353), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -206448,7 +226970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [5289] = 29, + [15277] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, @@ -206471,31 +226993,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_virtual, ACTIONS(113), 1, anon_sym_typename, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(1389), 1, + ACTIONS(1393), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2809), 1, - sym_primitive_type, - ACTIONS(3001), 1, + ACTIONS(2428), 1, sym_identifier, - ACTIONS(3007), 1, + ACTIONS(2434), 1, anon_sym_COLON_COLON, - STATE(2596), 1, + ACTIONS(2438), 1, + sym_primitive_type, + STATE(3251), 1, sym__type_specifier, - STATE(2737), 1, + STATE(3271), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2976), 1, + STATE(3395), 1, sym_template_type, - STATE(3123), 1, - sym_decltype_auto, - STATE(3198), 1, + STATE(3490), 1, sym_qualified_type_identifier, - STATE(4018), 1, + STATE(3494), 1, + sym_decltype_auto, + STATE(4311), 1, sym__declaration_specifiers, - STATE(5131), 1, + STATE(5394), 1, sym__scope_resolution, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, ACTIONS(59), 4, anon_sym_signed, @@ -206517,7 +227039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(1894), 8, + STATE(2203), 8, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -206526,7 +227048,7 @@ static const uint16_t ts_small_parse_table[] = { sym_type_qualifier, sym_virtual_function_specifier, aux_sym__declaration_specifiers_repeat1, - STATE(3139), 8, + STATE(3481), 8, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -206535,97 +227057,67 @@ static const uint16_t ts_small_parse_table[] = { sym_decltype, sym_class_specifier, sym_dependent_type, - [5405] = 3, + [15393] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(2803), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2801), 50, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - anon_sym_extern, + ACTIONS(39), 1, anon_sym___attribute__, + ACTIONS(45), 1, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, + ACTIONS(63), 1, anon_sym_enum, + ACTIONS(65), 1, anon_sym_class, + ACTIONS(67), 1, anon_sym_struct, + ACTIONS(69), 1, anon_sym_union, - sym_identifier, + ACTIONS(105), 1, sym_auto, + ACTIONS(107), 1, anon_sym_decltype, + ACTIONS(109), 1, anon_sym_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, + ACTIONS(113), 1, anon_sym_typename, + ACTIONS(976), 1, anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [5469] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2701), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, + ACTIONS(1393), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2699), 50, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, + ACTIONS(2428), 1, + sym_identifier, + ACTIONS(2434), 1, + anon_sym_COLON_COLON, + ACTIONS(2438), 1, + sym_primitive_type, + STATE(3251), 1, + sym__type_specifier, + STATE(3271), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3395), 1, + sym_template_type, + STATE(3490), 1, + sym_qualified_type_identifier, + STATE(3494), 1, + sym_decltype_auto, + STATE(4279), 1, + sym__declaration_specifiers, + STATE(5394), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(55), 5, anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, + ACTIONS(57), 8, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -206634,40 +227126,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [5533] = 3, + STATE(2203), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + STATE(3481), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [15509] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2687), 6, + ACTIONS(2885), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2685), 50, + ACTIONS(2883), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -206718,17 +227205,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [5597] = 3, + [15573] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4359), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4357), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [15637] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4363), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4361), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [15701] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3954), 6, + ACTIONS(4367), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(3952), 50, + ACTIONS(4365), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -206779,17 +227388,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [5661] = 3, + [15765] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4371), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4369), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [15829] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3958), 6, + ACTIONS(4375), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(3956), 50, + ACTIONS(4373), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -206840,17 +227510,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [5725] = 3, + [15893] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3962), 6, + ACTIONS(4379), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(3960), 50, + ACTIONS(4377), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -206901,68 +227571,601 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [5789] = 29, + [15957] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym___attribute__, - ACTIONS(45), 1, - anon_sym___declspec, - ACTIONS(63), 1, - anon_sym_enum, - ACTIONS(65), 1, - anon_sym_class, - ACTIONS(67), 1, - anon_sym_struct, - ACTIONS(69), 1, - anon_sym_union, - ACTIONS(105), 1, + ACTIONS(4383), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4381), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, sym_auto, - ACTIONS(107), 1, anon_sym_decltype, - ACTIONS(109), 1, - anon_sym_virtual, - ACTIONS(113), 1, - anon_sym_typename, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1389), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2809), 1, - sym_primitive_type, - ACTIONS(3001), 1, - sym_identifier, - ACTIONS(3007), 1, - anon_sym_COLON_COLON, - STATE(2596), 1, - sym__type_specifier, - STATE(2737), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2976), 1, - sym_template_type, - STATE(3123), 1, - sym_decltype_auto, - STATE(3198), 1, - sym_qualified_type_identifier, - STATE(4035), 1, - sym__declaration_specifiers, - STATE(5131), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - ACTIONS(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(55), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(57), 8, + [16021] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4387), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4385), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [16085] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4391), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4389), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [16149] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4395), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4393), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [16213] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4399), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4397), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [16277] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4403), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4401), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [16341] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4407), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4405), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [16405] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4411), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4409), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [16469] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4415), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4413), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [16533] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4014), 1, + anon_sym_COLON, + ACTIONS(4417), 1, + anon_sym_LBRACE, + STATE(2878), 1, + sym_field_declaration_list, + STATE(5618), 1, + sym_virtual_specifier, + STATE(6478), 1, + sym_base_class_clause, + ACTIONS(4016), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4031), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym_const, + anon_sym_DOT, + ACTIONS(4029), 39, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -206970,35 +228173,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(1894), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual_function_specifier, - aux_sym__declaration_specifiers_repeat1, - STATE(3139), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [5905] = 3, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [16609] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2775), 6, + ACTIONS(2657), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2773), 50, + ACTIONS(2655), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -207049,82 +228248,269 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [5969] = 7, + [16673] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3820), 2, + ACTIONS(4139), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym_LBRACK, - ACTIONS(3816), 4, - anon_sym_TILDE, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(3813), 6, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4137), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(3818), 8, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [16737] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1931), 1, + anon_sym_LBRACE, + ACTIONS(4419), 1, + anon_sym_LPAREN2, + ACTIONS(4421), 1, + anon_sym_LBRACK, + ACTIONS(4423), 1, + sym_auto, + ACTIONS(4425), 1, + anon_sym_decltype, + STATE(2595), 1, + sym_new_declarator, + STATE(2637), 1, + sym_decltype_auto, + STATE(3024), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4057), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(3823), 13, - anon_sym_PERCENT, + ACTIONS(4053), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_PIPE_PIPE, - anon_sym_CARET, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [16817] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4429), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4427), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - ACTIONS(3811), 23, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + sym_auto, + anon_sym_decltype, + [16881] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4433), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4431), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - [6041] = 3, + [16945] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2667), 6, + ACTIONS(2657), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2665), 50, + ACTIONS(2655), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -207175,145 +228561,227 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [6105] = 29, + [17009] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym___attribute__, - ACTIONS(45), 1, - anon_sym___declspec, - ACTIONS(63), 1, - anon_sym_enum, - ACTIONS(65), 1, - anon_sym_class, - ACTIONS(67), 1, - anon_sym_struct, - ACTIONS(69), 1, - anon_sym_union, - ACTIONS(105), 1, - sym_auto, - ACTIONS(107), 1, - anon_sym_decltype, - ACTIONS(109), 1, - anon_sym_virtual, - ACTIONS(113), 1, - anon_sym_typename, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1389), 1, + ACTIONS(4437), 23, + sym_raw_string_literal, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2809), 1, + anon_sym_LBRACE, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(4435), 33, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, sym_primitive_type, - ACTIONS(3001), 1, + anon_sym_if, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_while, + anon_sym_do, + anon_sym_for, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_goto, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + sym_true, + sym_false, + sym_null, sym_identifier, - ACTIONS(3007), 1, - anon_sym_COLON_COLON, - STATE(2596), 1, - sym__type_specifier, - STATE(2737), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2976), 1, - sym_template_type, - STATE(3123), 1, - sym_decltype_auto, - STATE(3198), 1, - sym_qualified_type_identifier, - STATE(4021), 1, - sym__declaration_specifiers, - STATE(5131), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - ACTIONS(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(55), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(57), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(1894), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual_function_specifier, - aux_sym__declaration_specifiers_repeat1, - STATE(3139), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [6221] = 10, + anon_sym_template, + anon_sym_try, + anon_sym_delete, + anon_sym_throw, + anon_sym_co_return, + anon_sym_co_yield, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + sym_nullptr, + [17073] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, - anon_sym_COLON_COLON, - ACTIONS(3752), 1, - anon_sym_const, - ACTIONS(3766), 1, + ACTIONS(4441), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, anon_sym_LT, - STATE(1863), 1, - sym_template_argument_list, - ACTIONS(3754), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4439), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(3761), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [17137] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4445), 18, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym_LBRACK, - ACTIONS(3757), 10, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4443), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - ACTIONS(3759), 13, + [17201] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4449), 18, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PIPE, anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3764), 23, + ACTIONS(4447), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -207325,205 +228793,578 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [6299] = 3, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [17265] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2641), 6, + ACTIONS(4453), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4451), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [17329] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4457), 18, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4455), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2639), 50, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [17393] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4461), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4459), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [6363] = 3, + [17457] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2759), 6, + ACTIONS(4465), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4463), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [17521] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4469), 18, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4467), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2757), 50, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [17585] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4473), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4471), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [6427] = 3, + [17649] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2611), 6, + ACTIONS(4477), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4475), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [17713] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4481), 18, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4479), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2609), 50, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [17777] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4485), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4483), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [6491] = 3, + [17841] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2517), 6, + ACTIONS(2743), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2515), 50, + ACTIONS(2741), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -207574,17 +229415,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [6555] = 3, + [17905] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2679), 6, + ACTIONS(2747), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2677), 50, + ACTIONS(2745), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -207635,36 +229476,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [6619] = 7, + [17969] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3820), 2, - anon_sym_AMP, - anon_sym_LBRACK, - ACTIONS(3813), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - ACTIONS(3816), 4, - anon_sym_TILDE, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, + ACTIONS(4014), 1, + anon_sym_COLON, + ACTIONS(4417), 1, anon_sym_LBRACE, - ACTIONS(3818), 8, + STATE(2911), 1, + sym_field_declaration_list, + STATE(5598), 1, + sym_virtual_specifier, + STATE(6482), 1, + sym_base_class_clause, + ACTIONS(4016), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4035), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_const, anon_sym_DOT, - ACTIONS(3823), 17, + ACTIONS(4033), 39, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -207672,21 +229519,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - ACTIONS(3811), 22, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -207694,110 +229529,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - [6691] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 1, - anon_sym___attribute__, - ACTIONS(45), 1, - anon_sym___declspec, - ACTIONS(63), 1, - anon_sym_enum, - ACTIONS(65), 1, - anon_sym_class, - ACTIONS(67), 1, - anon_sym_struct, - ACTIONS(69), 1, - anon_sym_union, - ACTIONS(105), 1, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, sym_auto, - ACTIONS(107), 1, anon_sym_decltype, - ACTIONS(109), 1, - anon_sym_virtual, - ACTIONS(113), 1, - anon_sym_typename, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1389), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2809), 1, - sym_primitive_type, - ACTIONS(3001), 1, - sym_identifier, - ACTIONS(3007), 1, - anon_sym_COLON_COLON, - STATE(2596), 1, - sym__type_specifier, - STATE(2737), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2976), 1, - sym_template_type, - STATE(3123), 1, - sym_decltype_auto, - STATE(3198), 1, - sym_qualified_type_identifier, - STATE(4005), 1, - sym__declaration_specifiers, - STATE(5131), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - ACTIONS(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(55), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(57), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(1894), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual_function_specifier, - aux_sym__declaration_specifiers_repeat1, - STATE(3139), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [6807] = 3, + anon_sym_requires, + [18045] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2765), 6, + ACTIONS(2751), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2763), 50, + ACTIONS(2749), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -207848,38 +229604,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [6871] = 4, + [18109] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2391), 2, + ACTIONS(4014), 1, + anon_sym_COLON, + ACTIONS(4417), 1, + anon_sym_LBRACE, + STATE(2894), 1, + sym_field_declaration_list, + STATE(5571), 1, + sym_virtual_specifier, + STATE(6507), 1, + sym_base_class_clause, + ACTIONS(4016), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4039), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4037), 39, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(2289), 7, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, anon_sym_RBRACE, - ACTIONS(2287), 47, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, + anon_sym_RBRACK, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -207887,40 +229657,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [6937] = 3, + anon_sym_requires, + [18185] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2759), 6, + ACTIONS(4489), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2757), 50, + ACTIONS(4487), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -207971,17 +229732,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [7001] = 3, + [18249] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3966), 6, + ACTIONS(4493), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(3964), 50, + ACTIONS(4491), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -208032,17 +229793,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [7065] = 3, + [18313] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2473), 6, + ACTIONS(4497), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2471), 50, + ACTIONS(4495), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -208093,17 +229854,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [7129] = 3, + [18377] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3970), 6, + ACTIONS(4501), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(3968), 50, + ACTIONS(4499), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -208154,17 +229915,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [7193] = 3, + [18441] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2469), 6, + ACTIONS(4501), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2467), 50, + ACTIONS(4499), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -208215,25 +229976,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [7257] = 4, + [18505] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2391), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(2289), 6, + ACTIONS(4497), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2287), 48, + ACTIONS(4495), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym_AMP, anon_sym_typedef, @@ -208277,17 +230037,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [7323] = 3, + [18569] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3974), 6, + ACTIONS(4505), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(3972), 50, + ACTIONS(4503), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -208338,17 +230098,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [7387] = 3, + [18633] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 6, + ACTIONS(4509), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(3976), 50, + ACTIONS(4507), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -208399,17 +230159,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [7451] = 3, + [18697] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2513), 6, + ACTIONS(4513), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2511), 50, + ACTIONS(4511), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -208460,191 +230220,262 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [7515] = 29, + [18761] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym___attribute__, - ACTIONS(45), 1, - anon_sym___declspec, - ACTIONS(63), 1, - anon_sym_enum, - ACTIONS(65), 1, - anon_sym_class, - ACTIONS(67), 1, - anon_sym_struct, - ACTIONS(69), 1, - anon_sym_union, - ACTIONS(105), 1, + ACTIONS(4125), 1, + anon_sym_COLON_COLON, + ACTIONS(4123), 21, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4121), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, sym_auto, - ACTIONS(107), 1, anon_sym_decltype, - ACTIONS(109), 1, - anon_sym_virtual, - ACTIONS(113), 1, - anon_sym_typename, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1389), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2809), 1, - sym_primitive_type, - ACTIONS(3001), 1, - sym_identifier, - ACTIONS(3007), 1, - anon_sym_COLON_COLON, - STATE(2596), 1, - sym__type_specifier, - STATE(2737), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2976), 1, - sym_template_type, - STATE(3123), 1, - sym_decltype_auto, - STATE(3198), 1, - sym_qualified_type_identifier, - STATE(4037), 1, - sym__declaration_specifiers, - STATE(5131), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - ACTIONS(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(55), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(57), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(1894), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual_function_specifier, - aux_sym__declaration_specifiers_repeat1, - STATE(3139), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [7631] = 29, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + [18827] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym___attribute__, - ACTIONS(45), 1, - anon_sym___declspec, - ACTIONS(63), 1, - anon_sym_enum, - ACTIONS(65), 1, - anon_sym_class, - ACTIONS(67), 1, - anon_sym_struct, - ACTIONS(69), 1, - anon_sym_union, - ACTIONS(105), 1, + ACTIONS(4517), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4515), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, sym_auto, - ACTIONS(107), 1, anon_sym_decltype, - ACTIONS(109), 1, - anon_sym_virtual, - ACTIONS(113), 1, - anon_sym_typename, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1389), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2809), 1, - sym_primitive_type, - ACTIONS(3001), 1, - sym_identifier, - ACTIONS(3007), 1, + [18891] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4521), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4519), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [18955] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2617), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_COLON_COLON, - STATE(2596), 1, - sym__type_specifier, - STATE(2737), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2976), 1, - sym_template_type, - STATE(3123), 1, - sym_decltype_auto, - STATE(3198), 1, - sym_qualified_type_identifier, - STATE(4004), 1, - sym__declaration_specifiers, - STATE(5131), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - ACTIONS(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(55), 5, + anon_sym_LBRACK_LBRACK, + ACTIONS(2615), 50, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(57), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(1894), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual_function_specifier, - aux_sym__declaration_specifiers_repeat1, - STATE(3139), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [7747] = 3, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [19019] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3982), 6, + ACTIONS(2909), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(3980), 50, + ACTIONS(2907), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -208695,17 +230526,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [7811] = 3, + [19083] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2597), 6, + ACTIONS(2881), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2595), 50, + ACTIONS(2879), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -208756,7 +230587,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [7875] = 29, + [19147] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4525), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4523), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [19211] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, @@ -208779,31 +230671,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_virtual, ACTIONS(113), 1, anon_sym_typename, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(1389), 1, + ACTIONS(1393), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2809), 1, - sym_primitive_type, - ACTIONS(3001), 1, + ACTIONS(2428), 1, sym_identifier, - ACTIONS(3007), 1, + ACTIONS(2434), 1, anon_sym_COLON_COLON, - STATE(2596), 1, + ACTIONS(2438), 1, + sym_primitive_type, + STATE(3251), 1, sym__type_specifier, - STATE(2737), 1, + STATE(3271), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2976), 1, + STATE(3395), 1, sym_template_type, - STATE(3123), 1, - sym_decltype_auto, - STATE(3198), 1, + STATE(3490), 1, sym_qualified_type_identifier, - STATE(4038), 1, + STATE(3494), 1, + sym_decltype_auto, + STATE(4301), 1, sym__declaration_specifiers, - STATE(5131), 1, + STATE(5394), 1, sym__scope_resolution, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, ACTIONS(59), 4, anon_sym_signed, @@ -208825,7 +230717,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(1894), 8, + STATE(2203), 8, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -208834,7 +230726,7 @@ static const uint16_t ts_small_parse_table[] = { sym_type_qualifier, sym_virtual_function_specifier, aux_sym__declaration_specifiers_repeat1, - STATE(3139), 8, + STATE(3481), 8, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -208843,62 +230735,166 @@ static const uint16_t ts_small_parse_table[] = { sym_decltype, sym_class_specifier, sym_dependent_type, - [7991] = 14, + [19327] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3714), 1, - anon_sym_const, - ACTIONS(3729), 1, + ACTIONS(4529), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4527), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(3735), 1, - anon_sym_COLON_COLON, - ACTIONS(3740), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(3742), 1, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(3769), 1, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [19391] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4533), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(3984), 1, - anon_sym_LBRACK_LBRACK, - STATE(1863), 1, - sym_template_argument_list, - ACTIONS(3718), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4531), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(3726), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(3722), 9, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - ACTIONS(3724), 13, + [19455] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4537), 18, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PIPE, anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3716), 22, + ACTIONS(4535), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -208910,102 +230906,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [8077] = 3, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [19519] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(2649), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2647), 50, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - anon_sym_extern, + ACTIONS(39), 1, anon_sym___attribute__, + ACTIONS(45), 1, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, + ACTIONS(63), 1, anon_sym_enum, + ACTIONS(65), 1, anon_sym_class, + ACTIONS(67), 1, anon_sym_struct, + ACTIONS(69), 1, anon_sym_union, - sym_identifier, + ACTIONS(105), 1, sym_auto, + ACTIONS(107), 1, anon_sym_decltype, + ACTIONS(109), 1, anon_sym_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, + ACTIONS(113), 1, anon_sym_typename, + ACTIONS(976), 1, anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [8141] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2407), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, + ACTIONS(1393), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2405), 50, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, + ACTIONS(2428), 1, + sym_identifier, + ACTIONS(2434), 1, + anon_sym_COLON_COLON, + ACTIONS(2438), 1, + sym_primitive_type, + STATE(3251), 1, + sym__type_specifier, + STATE(3271), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3395), 1, + sym_template_type, + STATE(3490), 1, + sym_qualified_type_identifier, + STATE(3494), 1, + sym_decltype_auto, + STATE(4298), 1, + sym__declaration_specifiers, + STATE(5394), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(55), 5, anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, + ACTIONS(57), 8, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -209014,101 +230987,465 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, + STATE(2203), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + STATE(3481), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [19635] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4541), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4539), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [8205] = 3, + [19699] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3988), 6, + ACTIONS(4545), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4543), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [19763] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4549), 18, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4547), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3986), 50, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [19827] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1711), 1, + anon_sym_LBRACE, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + STATE(2506), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4553), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4551), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [19897] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4557), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4555), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [8269] = 3, + [19961] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3988), 6, + ACTIONS(4561), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4559), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [20025] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4565), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4563), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [20089] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2877), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(3986), 50, + ACTIONS(2875), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -209159,78 +231496,326 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [8333] = 3, + [20153] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3992), 6, + ACTIONS(4569), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4567), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [20217] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4573), 18, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4571), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [20281] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3424), 1, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3990), 50, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, + ACTIONS(3426), 1, + anon_sym_LBRACE, + ACTIONS(4575), 1, + anon_sym_LT, + STATE(2187), 1, + sym_template_argument_list, + ACTIONS(3414), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3419), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [20353] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4580), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4578), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [8397] = 3, + [20417] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2407), 6, + ACTIONS(4584), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4582), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [20481] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2637), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2405), 50, + ACTIONS(2635), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -209281,17 +231866,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [8461] = 3, + [20545] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2649), 6, + ACTIONS(2755), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2647), 50, + ACTIONS(2753), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -209342,17 +231927,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [8525] = 3, + [20609] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2527), 6, + ACTIONS(2759), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2525), 50, + ACTIONS(2757), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -209403,104 +231988,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [8589] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 1, - anon_sym___attribute__, - ACTIONS(45), 1, - anon_sym___declspec, - ACTIONS(63), 1, - anon_sym_enum, - ACTIONS(65), 1, - anon_sym_class, - ACTIONS(67), 1, - anon_sym_struct, - ACTIONS(69), 1, - anon_sym_union, - ACTIONS(105), 1, - sym_auto, - ACTIONS(107), 1, - anon_sym_decltype, - ACTIONS(109), 1, - anon_sym_virtual, - ACTIONS(113), 1, - anon_sym_typename, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1389), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2809), 1, - sym_primitive_type, - ACTIONS(3001), 1, - sym_identifier, - ACTIONS(3007), 1, - anon_sym_COLON_COLON, - STATE(2596), 1, - sym__type_specifier, - STATE(2737), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2976), 1, - sym_template_type, - STATE(3123), 1, - sym_decltype_auto, - STATE(3198), 1, - sym_qualified_type_identifier, - STATE(4044), 1, - sym__declaration_specifiers, - STATE(5131), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - ACTIONS(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(55), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(57), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(1894), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual_function_specifier, - aux_sym__declaration_specifiers_repeat1, - STATE(3139), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [8705] = 3, + [20673] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2727), 6, + ACTIONS(4588), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2725), 50, + ACTIONS(4586), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -209551,17 +232049,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [8769] = 3, + [20737] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4290), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4288), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [20801] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2635), 6, + ACTIONS(2621), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2633), 50, + ACTIONS(2619), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -209612,17 +232171,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [8833] = 3, + [20865] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2671), 6, + ACTIONS(2625), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2669), 50, + ACTIONS(2623), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -209673,17 +232232,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [8897] = 3, + [20929] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2779), 6, + ACTIONS(4592), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2777), 50, + ACTIONS(4590), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -209734,17 +232293,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [8961] = 3, + [20993] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2719), 6, + ACTIONS(2735), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2717), 50, + ACTIONS(2733), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -209795,24 +232354,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [9025] = 3, + [21057] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3996), 6, + ACTIONS(2507), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(2478), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(3994), 50, + ACTIONS(2476), 48, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym_AMP, anon_sym_typedef, @@ -209856,17 +232416,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [9089] = 3, + [21123] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4000), 6, + ACTIONS(4596), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(3998), 50, + ACTIONS(4594), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -209917,17 +232477,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [9153] = 3, + [21187] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4004), 6, + ACTIONS(2767), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4002), 50, + ACTIONS(2765), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -209978,17 +232538,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [9217] = 3, + [21251] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4600), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4598), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [21315] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4008), 6, + ACTIONS(4596), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4006), 50, + ACTIONS(4594), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -210039,97 +232660,189 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [9281] = 3, + [21379] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4012), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(4604), 18, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4602), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4010), 50, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [21443] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4608), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym_typedef, - anon_sym_extern, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4606), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [21507] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, anon_sym___attribute__, + ACTIONS(45), 1, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, + ACTIONS(63), 1, anon_sym_enum, + ACTIONS(65), 1, anon_sym_class, + ACTIONS(67), 1, anon_sym_struct, + ACTIONS(69), 1, anon_sym_union, - sym_identifier, + ACTIONS(105), 1, sym_auto, + ACTIONS(107), 1, anon_sym_decltype, + ACTIONS(109), 1, anon_sym_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, + ACTIONS(113), 1, anon_sym_typename, + ACTIONS(976), 1, anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [9345] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4016), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, + ACTIONS(1393), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4014), 50, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, + ACTIONS(2428), 1, + sym_identifier, + ACTIONS(2434), 1, + anon_sym_COLON_COLON, + ACTIONS(2438), 1, + sym_primitive_type, + STATE(3251), 1, + sym__type_specifier, + STATE(3271), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3395), 1, + sym_template_type, + STATE(3490), 1, + sym_qualified_type_identifier, + STATE(3494), 1, + sym_decltype_auto, + STATE(4282), 1, + sym__declaration_specifiers, + STATE(5394), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(55), 5, anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, + ACTIONS(57), 8, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -210138,40 +232851,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [9409] = 3, + STATE(2203), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + STATE(3481), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [21623] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4000), 6, + ACTIONS(4612), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(3998), 50, + ACTIONS(4610), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -210222,17 +232930,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [9473] = 3, + [21687] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4616), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4614), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [21751] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4620), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4618), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [21815] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4020), 6, + ACTIONS(4624), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4018), 50, + ACTIONS(4622), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -210283,78 +233113,200 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [9537] = 3, + [21879] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4020), 6, + ACTIONS(4628), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4626), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [21943] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4632), 18, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4630), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4018), 50, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [22007] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4636), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4634), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [9601] = 3, + [22071] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4016), 6, + ACTIONS(2775), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4014), 50, + ACTIONS(2773), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -210405,17 +233357,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [9665] = 3, + [22135] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4640), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4638), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [22199] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4024), 6, + ACTIONS(4644), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4022), 50, + ACTIONS(4642), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -210466,17 +233479,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [9729] = 3, + [22263] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4648), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4646), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [22327] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4028), 6, + ACTIONS(2871), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4026), 50, + ACTIONS(2869), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -210527,17 +233601,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [9793] = 3, + [22391] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2675), 6, + ACTIONS(2637), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2673), 50, + ACTIONS(2635), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -210588,82 +233662,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [9857] = 7, + [22455] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3820), 2, - anon_sym_AMP, - anon_sym_LBRACK, - ACTIONS(3816), 3, - anon_sym_TILDE, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(3813), 5, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(3818), 8, + ACTIONS(4652), 18, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(3823), 16, + ACTIONS(4650), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_PERCENT, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, - anon_sym_CARET, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - ACTIONS(3811), 22, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - [9929] = 3, + [22519] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2657), 6, + ACTIONS(2867), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2655), 50, + ACTIONS(2865), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -210714,55 +233784,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [9993] = 7, + [22583] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3811), 1, - anon_sym_const, - ACTIONS(3813), 3, + ACTIONS(4656), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4654), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(3820), 3, - anon_sym_STAR, - anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(3816), 11, - anon_sym_COLON_COLON, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [22647] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1931), 1, anon_sym_LBRACE, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, + ACTIONS(4419), 1, + anon_sym_LPAREN2, + ACTIONS(4421), 1, + anon_sym_LBRACK, + ACTIONS(4423), 1, sym_auto, + ACTIONS(4425), 1, anon_sym_decltype, - ACTIONS(3818), 14, + STATE(2629), 1, + sym_new_declarator, + STATE(2637), 1, + sym_decltype_auto, + STATE(3002), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4093), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PIPE, anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3823), 24, + ACTIONS(4091), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -210770,45 +233900,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [10065] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [22727] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(2711), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2709), 50, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - anon_sym_extern, + ACTIONS(39), 1, anon_sym___attribute__, + ACTIONS(45), 1, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, + ACTIONS(63), 1, + anon_sym_enum, + ACTIONS(65), 1, + anon_sym_class, + ACTIONS(67), 1, + anon_sym_struct, + ACTIONS(69), 1, + anon_sym_union, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(109), 1, + anon_sym_virtual, + ACTIONS(113), 1, + anon_sym_typename, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1393), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2428), 1, + sym_identifier, + ACTIONS(2434), 1, + anon_sym_COLON_COLON, + ACTIONS(2438), 1, + sym_primitive_type, + STATE(3251), 1, + sym__type_specifier, + STATE(3271), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3395), 1, + sym_template_type, + STATE(3490), 1, + sym_qualified_type_identifier, + STATE(3494), 1, + sym_decltype_auto, + STATE(4272), 1, + sym__declaration_specifiers, + STATE(5394), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(55), 5, + anon_sym_extern, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, + ACTIONS(57), 8, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -210817,47 +233983,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [10129] = 3, + STATE(2203), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + STATE(3481), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [22843] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2731), 6, + ACTIONS(2507), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(2478), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2729), 50, + anon_sym_RBRACE, + ACTIONS(2476), 47, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym_AMP, anon_sym_typedef, @@ -210901,17 +234063,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [10193] = 3, + [22909] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2735), 6, + ACTIONS(2649), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2733), 50, + ACTIONS(2647), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -210962,17 +234124,226 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [10257] = 3, + [22973] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym___attribute__, + ACTIONS(45), 1, + anon_sym___declspec, + ACTIONS(63), 1, + anon_sym_enum, + ACTIONS(65), 1, + anon_sym_class, + ACTIONS(67), 1, + anon_sym_struct, + ACTIONS(69), 1, + anon_sym_union, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(109), 1, + anon_sym_virtual, + ACTIONS(113), 1, + anon_sym_typename, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1393), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2428), 1, + sym_identifier, + ACTIONS(2434), 1, + anon_sym_COLON_COLON, + ACTIONS(2438), 1, + sym_primitive_type, + STATE(3251), 1, + sym__type_specifier, + STATE(3271), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3395), 1, + sym_template_type, + STATE(3490), 1, + sym_qualified_type_identifier, + STATE(3494), 1, + sym_decltype_auto, + STATE(4290), 1, + sym__declaration_specifiers, + STATE(5394), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(55), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(2203), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + STATE(3481), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [23089] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4089), 27, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(4087), 29, + sym_raw_string_literal, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_GT2, + [23153] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4660), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4658), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [23217] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2799), 6, + ACTIONS(2795), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2797), 50, + ACTIONS(2793), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -211023,7 +234394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [10321] = 29, + [23281] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, @@ -211046,31 +234417,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_virtual, ACTIONS(113), 1, anon_sym_typename, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(1389), 1, + ACTIONS(1393), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2809), 1, - sym_primitive_type, - ACTIONS(3001), 1, + ACTIONS(2428), 1, sym_identifier, - ACTIONS(3007), 1, + ACTIONS(2434), 1, anon_sym_COLON_COLON, - STATE(2596), 1, + ACTIONS(2438), 1, + sym_primitive_type, + STATE(3251), 1, sym__type_specifier, - STATE(2737), 1, + STATE(3271), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2976), 1, + STATE(3395), 1, sym_template_type, - STATE(3123), 1, - sym_decltype_auto, - STATE(3198), 1, + STATE(3490), 1, sym_qualified_type_identifier, - STATE(4057), 1, + STATE(3494), 1, + sym_decltype_auto, + STATE(4275), 1, sym__declaration_specifiers, - STATE(5131), 1, + STATE(5394), 1, sym__scope_resolution, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, ACTIONS(59), 4, anon_sym_signed, @@ -211092,7 +234463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(1894), 8, + STATE(2203), 8, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -211101,7 +234472,7 @@ static const uint16_t ts_small_parse_table[] = { sym_type_qualifier, sym_virtual_function_specifier, aux_sym__declaration_specifiers_repeat1, - STATE(3139), 8, + STATE(3481), 8, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -211110,17 +234481,17 @@ static const uint16_t ts_small_parse_table[] = { sym_decltype, sym_class_specifier, sym_dependent_type, - [10437] = 3, + [23397] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2353), 6, + ACTIONS(2863), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2351), 50, + ACTIONS(2861), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -211171,17 +234542,226 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [10501] = 3, + [23461] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4664), 23, + sym_raw_string_literal, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(4662), 33, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + sym_primitive_type, + anon_sym_if, + anon_sym_switch, + anon_sym_case, + anon_sym_default, + anon_sym_while, + anon_sym_do, + anon_sym_for, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_goto, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + sym_true, + sym_false, + sym_null, + sym_identifier, + anon_sym_template, + anon_sym_try, + anon_sym_delete, + anon_sym_throw, + anon_sym_co_return, + anon_sym_co_yield, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + sym_nullptr, + [23525] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym___attribute__, + ACTIONS(45), 1, + anon_sym___declspec, + ACTIONS(63), 1, + anon_sym_enum, + ACTIONS(65), 1, + anon_sym_class, + ACTIONS(67), 1, + anon_sym_struct, + ACTIONS(69), 1, + anon_sym_union, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(109), 1, + anon_sym_virtual, + ACTIONS(113), 1, + anon_sym_typename, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1393), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2428), 1, + sym_identifier, + ACTIONS(2434), 1, + anon_sym_COLON_COLON, + ACTIONS(2438), 1, + sym_primitive_type, + STATE(3251), 1, + sym__type_specifier, + STATE(3271), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3395), 1, + sym_template_type, + STATE(3490), 1, + sym_qualified_type_identifier, + STATE(3494), 1, + sym_decltype_auto, + STATE(4299), 1, + sym__declaration_specifiers, + STATE(5394), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(55), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(2203), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + STATE(3481), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [23641] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4668), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4666), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [23705] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2353), 6, + ACTIONS(2863), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2351), 50, + ACTIONS(2861), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -211232,17 +234812,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [10565] = 3, + [23769] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4672), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4670), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [23833] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2693), 6, + ACTIONS(2859), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2691), 50, + ACTIONS(2857), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -211293,104 +234934,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [10629] = 29, + [23897] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym___attribute__, - ACTIONS(45), 1, - anon_sym___declspec, - ACTIONS(63), 1, - anon_sym_enum, - ACTIONS(65), 1, - anon_sym_class, - ACTIONS(67), 1, - anon_sym_struct, - ACTIONS(69), 1, - anon_sym_union, - ACTIONS(105), 1, + ACTIONS(4676), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4674), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, sym_auto, - ACTIONS(107), 1, anon_sym_decltype, - ACTIONS(109), 1, - anon_sym_virtual, - ACTIONS(113), 1, - anon_sym_typename, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1389), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2809), 1, - sym_primitive_type, - ACTIONS(3001), 1, - sym_identifier, - ACTIONS(3007), 1, - anon_sym_COLON_COLON, - STATE(2596), 1, - sym__type_specifier, - STATE(2737), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2976), 1, - sym_template_type, - STATE(3123), 1, - sym_decltype_auto, - STATE(3198), 1, - sym_qualified_type_identifier, - STATE(4028), 1, - sym__declaration_specifiers, - STATE(5131), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - ACTIONS(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(55), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(57), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(1894), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual_function_specifier, - aux_sym__declaration_specifiers_repeat1, - STATE(3139), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [10745] = 3, + [23961] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2631), 6, + ACTIONS(2851), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2629), 50, + ACTIONS(2849), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -211441,68 +235056,307 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [10809] = 29, + [24025] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym___attribute__, - ACTIONS(45), 1, - anon_sym___declspec, - ACTIONS(63), 1, - anon_sym_enum, - ACTIONS(65), 1, - anon_sym_class, - ACTIONS(67), 1, - anon_sym_struct, - ACTIONS(69), 1, - anon_sym_union, - ACTIONS(105), 1, + ACTIONS(4680), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4678), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, sym_auto, - ACTIONS(107), 1, anon_sym_decltype, - ACTIONS(109), 1, - anon_sym_virtual, - ACTIONS(113), 1, - anon_sym_typename, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1389), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2809), 1, - sym_primitive_type, - ACTIONS(3001), 1, - sym_identifier, - ACTIONS(3007), 1, + [24089] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3424), 1, anon_sym_COLON_COLON, - STATE(2596), 1, - sym__type_specifier, - STATE(2737), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2976), 1, - sym_template_type, - STATE(3123), 1, - sym_decltype_auto, - STATE(3198), 1, - sym_qualified_type_identifier, - STATE(4047), 1, - sym__declaration_specifiers, - STATE(5131), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - ACTIONS(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(55), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(57), 8, + ACTIONS(4682), 1, + anon_sym_LT, + STATE(1937), 1, + sym_template_argument_list, + ACTIONS(4095), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3426), 37, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [24159] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3424), 1, + anon_sym_COLON_COLON, + STATE(3279), 1, + sym_template_argument_list, + ACTIONS(4159), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4157), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [24227] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4014), 1, + anon_sym_COLON, + ACTIONS(4417), 1, + anon_sym_LBRACE, + STATE(2797), 1, + sym_field_declaration_list, + STATE(5559), 1, + sym_virtual_specifier, + STATE(6552), 1, + sym_base_class_clause, + ACTIONS(4016), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4020), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4018), 39, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [24303] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4014), 1, + anon_sym_COLON, + ACTIONS(4417), 1, + anon_sym_LBRACE, + STATE(2852), 1, + sym_field_declaration_list, + STATE(5655), 1, + sym_virtual_specifier, + STATE(6566), 1, + sym_base_class_clause, + ACTIONS(4016), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4051), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym_const, + anon_sym_DOT, + ACTIONS(4049), 39, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -211510,86 +235364,257 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(1894), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual_function_specifier, - aux_sym__declaration_specifiers_repeat1, - STATE(3139), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [10925] = 29, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [24379] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym___attribute__, - ACTIONS(45), 1, - anon_sym___declspec, - ACTIONS(63), 1, - anon_sym_enum, - ACTIONS(65), 1, - anon_sym_class, - ACTIONS(67), 1, - anon_sym_struct, - ACTIONS(69), 1, - anon_sym_union, - ACTIONS(105), 1, + ACTIONS(1931), 1, + anon_sym_LBRACE, + ACTIONS(4419), 1, + anon_sym_LPAREN2, + ACTIONS(4421), 1, + anon_sym_LBRACK, + ACTIONS(4423), 1, sym_auto, - ACTIONS(107), 1, + ACTIONS(4425), 1, anon_sym_decltype, - ACTIONS(109), 1, - anon_sym_virtual, - ACTIONS(113), 1, - anon_sym_typename, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1389), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2809), 1, - sym_primitive_type, - ACTIONS(3001), 1, - sym_identifier, - ACTIONS(3007), 1, - anon_sym_COLON_COLON, - STATE(2596), 1, - sym__type_specifier, - STATE(2737), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2976), 1, - sym_template_type, - STATE(3123), 1, + STATE(2637), 1, sym_decltype_auto, - STATE(3198), 1, - sym_qualified_type_identifier, - STATE(4024), 1, - sym__declaration_specifiers, - STATE(5131), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - ACTIONS(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(55), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(57), 8, + STATE(2659), 1, + sym_new_declarator, + STATE(3071), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4103), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4101), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [24459] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4290), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4288), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [24523] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4686), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4684), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [24587] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4014), 1, + anon_sym_COLON, + ACTIONS(4417), 1, + anon_sym_LBRACE, + STATE(2848), 1, + sym_field_declaration_list, + STATE(5674), 1, + sym_virtual_specifier, + STATE(6599), 1, + sym_base_class_clause, + ACTIONS(4016), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4047), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym_const, + anon_sym_DOT, + ACTIONS(4045), 39, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -211597,35 +235622,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(1894), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual_function_specifier, - aux_sym__declaration_specifiers_repeat1, - STATE(3139), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [11041] = 3, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [24663] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2697), 6, + ACTIONS(2831), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2695), 50, + ACTIONS(2829), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -211676,17 +235697,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [11105] = 3, + [24727] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4079), 27, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(4077), 29, + sym_raw_string_literal, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_GT2, + [24791] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4032), 6, + ACTIONS(2787), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4030), 50, + ACTIONS(2785), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -211737,17 +235819,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [11169] = 3, + [24855] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4014), 1, + anon_sym_COLON, + ACTIONS(4417), 1, + anon_sym_LBRACE, + STATE(2836), 1, + sym_field_declaration_list, + STATE(5706), 1, + sym_virtual_specifier, + STATE(6595), 1, + sym_base_class_clause, + ACTIONS(4016), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4043), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4041), 39, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [24931] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2741), 6, + ACTIONS(2803), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2739), 50, + ACTIONS(2801), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -211798,17 +235947,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [11233] = 3, + [24995] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4014), 1, + anon_sym_COLON, + ACTIONS(4417), 1, + anon_sym_LBRACE, + STATE(2880), 1, + sym_field_declaration_list, + STATE(5640), 1, + sym_virtual_specifier, + STATE(6540), 1, + sym_base_class_clause, + ACTIONS(4016), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4010), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4008), 39, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [25071] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1931), 1, + anon_sym_LBRACE, + ACTIONS(4419), 1, + anon_sym_LPAREN2, + ACTIONS(4421), 1, + anon_sym_LBRACK, + ACTIONS(4423), 1, + sym_auto, + ACTIONS(4425), 1, + anon_sym_decltype, + STATE(2637), 1, + sym_decltype_auto, + STATE(2669), 1, + sym_new_declarator, + STATE(3048), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4075), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4073), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [25151] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2749), 6, + ACTIONS(2807), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2747), 50, + ACTIONS(2805), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -211859,17 +236144,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [11297] = 3, + [25215] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2755), 6, + ACTIONS(2807), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2753), 50, + ACTIONS(2805), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -211920,104 +236205,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [11361] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(39), 1, - anon_sym___attribute__, - ACTIONS(45), 1, - anon_sym___declspec, - ACTIONS(63), 1, - anon_sym_enum, - ACTIONS(65), 1, - anon_sym_class, - ACTIONS(67), 1, - anon_sym_struct, - ACTIONS(69), 1, - anon_sym_union, - ACTIONS(105), 1, - sym_auto, - ACTIONS(107), 1, - anon_sym_decltype, - ACTIONS(109), 1, - anon_sym_virtual, - ACTIONS(113), 1, - anon_sym_typename, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1389), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2809), 1, - sym_primitive_type, - ACTIONS(3001), 1, - sym_identifier, - ACTIONS(3007), 1, - anon_sym_COLON_COLON, - STATE(2596), 1, - sym__type_specifier, - STATE(2737), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2976), 1, - sym_template_type, - STATE(3123), 1, - sym_decltype_auto, - STATE(3198), 1, - sym_qualified_type_identifier, - STATE(4022), 1, - sym__declaration_specifiers, - STATE(5131), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - ACTIONS(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(55), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(57), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(1894), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual_function_specifier, - aux_sym__declaration_specifiers_repeat1, - STATE(3139), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [11477] = 3, + [25279] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2615), 6, + ACTIONS(2811), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2613), 50, + ACTIONS(2809), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -212068,17 +236266,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [11541] = 3, + [25343] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4036), 6, + ACTIONS(4690), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4034), 50, + ACTIONS(4688), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -212129,17 +236327,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [11605] = 3, + [25407] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4040), 6, + ACTIONS(4694), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4038), 50, + ACTIONS(4692), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -212190,17 +236388,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [11669] = 3, + [25471] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4044), 6, + ACTIONS(2661), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4042), 50, + ACTIONS(2659), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -212251,17 +236449,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [11733] = 3, + [25535] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4048), 6, + ACTIONS(4698), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4046), 50, + ACTIONS(4696), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -212312,17 +236510,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [11797] = 3, + [25599] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3424), 1, + anon_sym_COLON_COLON, + ACTIONS(3435), 1, + anon_sym_LBRACE, + ACTIONS(4700), 1, + anon_sym_LT, + STATE(2187), 1, + sym_template_argument_list, + ACTIONS(3437), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3442), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [25671] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4052), 6, + ACTIONS(2827), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4050), 50, + ACTIONS(2825), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -212373,17 +236636,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [11861] = 3, + [25735] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4052), 6, + ACTIONS(2815), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4050), 50, + ACTIONS(2813), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -212434,22 +236697,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [11925] = 3, + [25799] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4014), 1, + anon_sym_COLON, + ACTIONS(4417), 1, + anon_sym_LBRACE, + STATE(2825), 1, + sym_field_declaration_list, + STATE(5537), 1, + sym_virtual_specifier, + STATE(6549), 1, + sym_base_class_clause, + ACTIONS(4016), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4027), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4025), 39, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [25875] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2304), 6, + ACTIONS(2819), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2302), 49, + ACTIONS(2817), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym_AMP, anon_sym_typedef, @@ -212493,23 +236825,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - anon_sym_catch, - [11988] = 3, + [25939] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2289), 6, + ACTIONS(2823), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2287), 49, + ACTIONS(2821), 50, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, sym_preproc_directive, anon_sym_AMP, anon_sym_typedef, @@ -212553,55 +236886,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - anon_sym_catch, - [12051] = 10, + [26003] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, - anon_sym_COLON_COLON, - ACTIONS(3752), 1, - anon_sym_const, - ACTIONS(4054), 1, - anon_sym_LT, - STATE(1905), 1, - sym_template_argument_list, - ACTIONS(3761), 2, + STATE(2366), 1, + sym_enumerator_list, + ACTIONS(4273), 19, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(3754), 4, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4271), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [26068] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3478), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(3480), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LBRACK, - ACTIONS(3757), 10, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3485), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [26133] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1959), 1, anon_sym_LBRACE, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, + ACTIONS(4703), 1, + anon_sym_LPAREN2, + ACTIONS(4705), 1, + anon_sym_LBRACK, + ACTIONS(4707), 1, sym_auto, + ACTIONS(4709), 1, anon_sym_decltype, - ACTIONS(3759), 13, + STATE(2789), 1, + sym_decltype_auto, + STATE(2792), 1, + sym_new_declarator, + STATE(3103), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4093), 16, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PIPE, anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3764), 22, + ACTIONS(4091), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -212617,201 +237066,370 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [12128] = 28, + [26212] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym___attribute__, - ACTIONS(45), 1, - anon_sym___declspec, - ACTIONS(105), 1, + ACTIONS(4125), 1, + anon_sym_COLON_COLON, + ACTIONS(4123), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4121), 37, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, sym_auto, - ACTIONS(107), 1, anon_sym_decltype, - ACTIONS(109), 1, - anon_sym_virtual, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1389), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1427), 1, - anon_sym_enum, - ACTIONS(1429), 1, - anon_sym_class, - ACTIONS(1431), 1, - anon_sym_struct, - ACTIONS(1433), 1, - anon_sym_union, - ACTIONS(1447), 1, - anon_sym_typename, - ACTIONS(2809), 1, - sym_primitive_type, - ACTIONS(3365), 1, - sym_identifier, - ACTIONS(3377), 1, - anon_sym_COLON_COLON, - STATE(2557), 1, - sym__type_specifier, - STATE(2737), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2976), 1, - sym_template_type, - STATE(3123), 1, - sym_decltype_auto, - STATE(3198), 1, - sym_qualified_type_identifier, - STATE(5144), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - ACTIONS(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(55), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(57), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(3007), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual_function_specifier, - aux_sym__declaration_specifiers_repeat1, - STATE(3139), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [12241] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [26277] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2293), 6, + ACTIONS(3424), 1, + anon_sym_COLON_COLON, + ACTIONS(3426), 1, + anon_sym_LBRACE, + ACTIONS(4713), 1, + anon_sym_LT, + ACTIONS(4716), 1, + anon_sym_LBRACK, + STATE(2574), 1, + sym_template_argument_list, + ACTIONS(4711), 3, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, + anon_sym_LBRACK_LBRACK, + ACTIONS(3414), 18, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3419), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [26352] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4125), 1, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2291), 49, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + ACTIONS(4290), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4288), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - anon_sym_catch, - [12304] = 28, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [26417] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3437), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3442), 36, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_try, + [26480] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3437), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3442), 36, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_try, + [26543] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, anon_sym___attribute__, ACTIONS(45), 1, anon_sym___declspec, - ACTIONS(63), 1, - anon_sym_enum, - ACTIONS(65), 1, - anon_sym_class, - ACTIONS(67), 1, - anon_sym_struct, - ACTIONS(69), 1, - anon_sym_union, ACTIONS(105), 1, sym_auto, ACTIONS(107), 1, anon_sym_decltype, ACTIONS(109), 1, anon_sym_virtual, - ACTIONS(113), 1, - anon_sym_typename, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(1389), 1, + ACTIONS(1393), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2809), 1, + ACTIONS(1431), 1, + anon_sym_enum, + ACTIONS(1433), 1, + anon_sym_class, + ACTIONS(1435), 1, + anon_sym_struct, + ACTIONS(1437), 1, + anon_sym_union, + ACTIONS(1451), 1, + anon_sym_typename, + ACTIONS(2438), 1, sym_primitive_type, - ACTIONS(3001), 1, + ACTIONS(3755), 1, sym_identifier, - ACTIONS(3007), 1, + ACTIONS(3765), 1, anon_sym_COLON_COLON, - STATE(2557), 1, + STATE(3255), 1, sym__type_specifier, - STATE(2737), 1, + STATE(3271), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2976), 1, + STATE(3395), 1, sym_template_type, - STATE(3123), 1, - sym_decltype_auto, - STATE(3198), 1, + STATE(3490), 1, sym_qualified_type_identifier, - STATE(5131), 1, + STATE(3494), 1, + sym_decltype_auto, + STATE(5354), 1, sym__scope_resolution, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, ACTIONS(59), 4, anon_sym_signed, @@ -212833,7 +237451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(3007), 8, + STATE(3420), 8, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -212842,7 +237460,7 @@ static const uint16_t ts_small_parse_table[] = { sym_type_qualifier, sym_virtual_function_specifier, aux_sym__declaration_specifiers_repeat1, - STATE(3139), 8, + STATE(3481), 8, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -212851,55 +237469,232 @@ static const uint16_t ts_small_parse_table[] = { sym_decltype, sym_class_specifier, sym_dependent_type, - [12417] = 11, + [26656] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3437), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3442), 36, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_try, + [26719] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4059), 1, + anon_sym_LBRACK, + STATE(2460), 1, + sym_new_declarator, + ACTIONS(4720), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4718), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [26786] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3714), 1, - anon_sym_const, - ACTIONS(3735), 1, - anon_sym_COLON_COLON, - ACTIONS(3740), 1, - anon_sym_LBRACE, - ACTIONS(4057), 1, - anon_sym_LT, - STATE(1905), 1, - sym_template_argument_list, - ACTIONS(3726), 2, + STATE(2430), 1, + sym_enumerator_list, + ACTIONS(4269), 19, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(3729), 4, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4267), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(3722), 9, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [26851] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1959), 1, + anon_sym_LBRACE, + ACTIONS(4703), 1, + anon_sym_LPAREN2, + ACTIONS(4705), 1, + anon_sym_LBRACK, + ACTIONS(4707), 1, sym_auto, + ACTIONS(4709), 1, anon_sym_decltype, - ACTIONS(3724), 13, + STATE(2789), 1, + sym_decltype_auto, + STATE(2798), 1, + sym_new_declarator, + STATE(3108), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4103), 16, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PIPE, anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3716), 22, + ACTIONS(4101), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -212915,99 +237710,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [12496] = 28, + [26930] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym___attribute__, - ACTIONS(45), 1, - anon_sym___declspec, - ACTIONS(109), 1, - anon_sym_virtual, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1389), 1, + ACTIONS(3437), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3442), 36, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1531), 1, - sym_primitive_type, - ACTIONS(1533), 1, - anon_sym_enum, - ACTIONS(1535), 1, - anon_sym_class, - ACTIONS(1537), 1, - anon_sym_struct, - ACTIONS(1539), 1, - anon_sym_union, - ACTIONS(1541), 1, - sym_auto, - ACTIONS(1543), 1, - anon_sym_decltype, - ACTIONS(1547), 1, - anon_sym_typename, - ACTIONS(3365), 1, - sym_identifier, - ACTIONS(4060), 1, - anon_sym_COLON_COLON, - STATE(2976), 1, - sym_template_type, - STATE(3166), 1, - sym__type_specifier, - STATE(3286), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3366), 1, - sym_decltype_auto, - STATE(3400), 1, - sym_qualified_type_identifier, - STATE(5072), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - ACTIONS(1529), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(55), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(57), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(3007), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual_function_specifier, - aux_sym__declaration_specifiers_repeat1, - STATE(3371), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [12609] = 3, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_try, + [26993] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3782), 19, + ACTIONS(4079), 23, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -213017,34 +237793,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_const, - anon_sym_COLON, - anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(3784), 36, + anon_sym_DASH_GT, + sym_literal_suffix, + ACTIONS(4077), 32, + sym_raw_string_literal, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_COLON_COLON, - anon_sym_LBRACE, + anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -213052,22 +237826,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - [12672] = 3, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [27056] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3805), 19, + ACTIONS(4135), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -213077,34 +237853,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_const, anon_sym_COLON, - anon_sym_GT_GT_EQ, anon_sym_DOT, - ACTIONS(3807), 36, + anon_sym_DASH_GT, + ACTIONS(4133), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -213112,77 +237881,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, - [12735] = 28, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [27119] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, - anon_sym___attribute__, - ACTIONS(45), 1, - anon_sym___declspec, - ACTIONS(105), 1, - sym_auto, - ACTIONS(107), 1, - anon_sym_decltype, - ACTIONS(109), 1, - anon_sym_virtual, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1389), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2809), 1, - sym_primitive_type, - ACTIONS(3001), 1, - sym_identifier, - ACTIONS(3007), 1, - anon_sym_COLON_COLON, - ACTIONS(3011), 1, - anon_sym_enum, - ACTIONS(3013), 1, - anon_sym_class, - ACTIONS(3015), 1, - anon_sym_struct, - ACTIONS(3017), 1, - anon_sym_union, - ACTIONS(3019), 1, - anon_sym_typename, - STATE(2976), 1, - sym_template_type, - STATE(3123), 1, - sym_decltype_auto, - STATE(3184), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3198), 1, - sym_qualified_type_identifier, - STATE(3442), 1, - sym__type_specifier, - STATE(5131), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - ACTIONS(3009), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(55), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(57), 8, + ACTIONS(4137), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + ACTIONS(4139), 30, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___based, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -213191,28 +237947,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(3007), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual_function_specifier, - aux_sym__declaration_specifiers_repeat1, - STATE(3139), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [12848] = 3, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [27182] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3774), 19, + ACTIONS(1959), 1, + anon_sym_LBRACE, + ACTIONS(4703), 1, + anon_sym_LPAREN2, + ACTIONS(4705), 1, + anon_sym_LBRACK, + ACTIONS(4707), 1, + sym_auto, + ACTIONS(4709), 1, + anon_sym_decltype, + STATE(2789), 1, + sym_decltype_auto, + STATE(2864), 1, + sym_new_declarator, + STATE(3105), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4057), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -213222,34 +237990,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_const, - anon_sym_COLON, - anon_sym_GT_GT_EQ, anon_sym_DOT, - ACTIONS(3776), 36, + anon_sym_DASH_GT, + ACTIONS(4053), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, + anon_sym_GT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -213257,22 +238013,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - [12911] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [27261] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3797), 19, + ACTIONS(4089), 23, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -213282,34 +238041,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_const, - anon_sym_COLON, - anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(3799), 36, + anon_sym_DASH_GT, + sym_literal_suffix, + ACTIONS(4087), 32, + sym_raw_string_literal, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_COLON_COLON, - anon_sym_LBRACE, + anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -213317,22 +238074,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - [12974] = 3, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [27324] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3793), 19, + ACTIONS(4125), 1, + anon_sym_COLON_COLON, + ACTIONS(4139), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -213342,34 +238103,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_const, anon_sym_COLON, - anon_sym_GT_GT_EQ, anon_sym_DOT, - ACTIONS(3795), 36, + anon_sym_DASH_GT, + ACTIONS(4137), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_COLON_COLON, + anon_sym_GT_EQ, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -213377,22 +238130,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, - [13037] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [27389] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3778), 19, + ACTIONS(3478), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(3480), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -213402,34 +238165,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_const, anon_sym_COLON, - anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(3780), 36, + ACTIONS(3485), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_COLON_COLON, - anon_sym_LBRACE, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -213437,22 +238196,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - [13100] = 3, + [27454] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3801), 19, + ACTIONS(4181), 1, + sym_auto, + ACTIONS(4183), 1, + anon_sym_decltype, + STATE(2328), 1, + sym_decltype_auto, + ACTIONS(4277), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -213462,34 +238229,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_const, - anon_sym_COLON, - anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(3803), 36, + anon_sym_DASH_GT, + ACTIONS(4275), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_COLON_COLON, + anon_sym_GT_EQ, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -213497,62 +238258,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - [13163] = 7, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [27523] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3811), 1, - anon_sym_const, - ACTIONS(3820), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(3813), 4, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_AMP_AMP, - anon_sym_LBRACK, - ACTIONS(3816), 11, + ACTIONS(3424), 1, anon_sym_COLON_COLON, + ACTIONS(3426), 1, anon_sym_LBRACE, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - ACTIONS(3818), 14, + ACTIONS(3935), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4725), 1, + anon_sym_LT, + ACTIONS(4728), 1, + anon_sym_LBRACK, + STATE(2332), 1, + sym_template_argument_list, + ACTIONS(4722), 2, + anon_sym_RPAREN, + anon_sym_LPAREN2, + ACTIONS(3414), 18, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PIPE, anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3823), 22, + ACTIONS(3419), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -213567,216 +238329,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [13233] = 3, + [27600] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2759), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, + ACTIONS(3424), 1, anon_sym_COLON_COLON, + ACTIONS(3426), 1, + anon_sym_LBRACE, + ACTIONS(3952), 1, + anon_sym_LT, + ACTIONS(4716), 1, + anon_sym_LBRACK, + STATE(2921), 1, + sym_template_argument_list, + ACTIONS(3937), 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(4711), 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2757), 47, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + ACTIONS(3414), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym_typedef, - anon_sym_extern, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3419), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [27677] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, anon_sym___attribute__, + ACTIONS(45), 1, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, + ACTIONS(109), 1, anon_sym_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, + ACTIONS(976), 1, anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [13295] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2667), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, + ACTIONS(1393), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2665), 47, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + ACTIONS(1535), 1, sym_primitive_type, + ACTIONS(1537), 1, anon_sym_enum, + ACTIONS(1539), 1, anon_sym_class, + ACTIONS(1541), 1, anon_sym_struct, + ACTIONS(1543), 1, anon_sym_union, - sym_identifier, + ACTIONS(1545), 1, sym_auto, + ACTIONS(1547), 1, anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, + ACTIONS(1551), 1, anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [13357] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2719), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, + ACTIONS(3755), 1, + sym_identifier, + ACTIONS(4731), 1, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2717), 48, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, + STATE(3395), 1, + sym_template_type, + STATE(3524), 1, + sym__type_specifier, + STATE(3805), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4003), 1, + sym_qualified_type_identifier, + STATE(4021), 1, + sym_decltype_auto, + STATE(5352), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(1533), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [13419] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2711), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2709), 48, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, + ACTIONS(55), 5, anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, + ACTIONS(57), 8, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -213785,244 +238474,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [13481] = 3, + STATE(3420), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + STATE(4001), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [27790] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2799), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(3437), 19, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2797), 48, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [13543] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2687), 7, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3442), 36, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(2685), 47, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [13605] = 27, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_try, + [27853] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1497), 1, - anon_sym_operator, - ACTIONS(1517), 1, - anon_sym_TILDE, - ACTIONS(3087), 1, - anon_sym_LPAREN2, - ACTIONS(4062), 1, - sym_identifier, - ACTIONS(4066), 1, + ACTIONS(4733), 1, + anon_sym_COLON, + STATE(2512), 1, + sym__enum_base_clause, + STATE(2575), 1, + sym_enumerator_list, + ACTIONS(4235), 20, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(4068), 1, - anon_sym_AMP_AMP, - ACTIONS(4070), 1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(4072), 1, - anon_sym_COLON_COLON, - ACTIONS(4074), 1, - anon_sym_LBRACK, - STATE(4080), 1, - sym_parameter_list, - STATE(4135), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4678), 1, - sym__scope_resolution, - STATE(4884), 1, - sym__declarator, - STATE(5117), 1, - sym__abstract_declarator, - STATE(6932), 1, - sym_ms_based_modifier, - ACTIONS(2919), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(4064), 2, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4233), 32, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - STATE(2312), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(2367), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(6663), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2917), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(4832), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(2921), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(4825), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [13715] = 3, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [27922] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2755), 7, + ACTIONS(2464), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2753), 47, + ACTIONS(2462), 49, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -214068,159 +238674,205 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [13777] = 3, + anon_sym_catch, + [27985] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3966), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(4733), 1, + anon_sym_COLON, + STATE(2501), 1, + sym__enum_base_clause, + STATE(2610), 1, + sym_enumerator_list, + ACTIONS(4153), 20, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3964), 48, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4151), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [13839] = 27, + anon_sym_GT2, + [28054] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1497), 1, - anon_sym_operator, - ACTIONS(1517), 1, - anon_sym_TILDE, - ACTIONS(3087), 1, - anon_sym_LPAREN2, - ACTIONS(4062), 1, - sym_identifier, - ACTIONS(4072), 1, + ACTIONS(3424), 1, anon_sym_COLON_COLON, - ACTIONS(4074), 1, - anon_sym_LBRACK, - ACTIONS(4076), 1, + ACTIONS(3435), 1, + anon_sym_LBRACE, + ACTIONS(3444), 1, + anon_sym_LT, + STATE(2332), 1, + sym_template_argument_list, + ACTIONS(3437), 19, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(4078), 1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3442), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(4080), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [28125] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4737), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - STATE(4077), 1, - sym_parameter_list, - STATE(4135), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4678), 1, - sym__scope_resolution, - STATE(4884), 1, - sym__declarator, - STATE(5149), 1, - sym__abstract_declarator, - STATE(6932), 1, - sym_ms_based_modifier, - ACTIONS(2919), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(4064), 2, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4735), 36, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_GT2, - STATE(2318), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(2367), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(6663), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2917), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(4832), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(2921), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(4825), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [13949] = 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_try, + [28188] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2597), 6, + ACTIONS(2478), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2595), 48, + ACTIONS(2476), 49, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -214269,20 +238921,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [14011] = 3, + anon_sym_catch, + [28251] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2701), 7, + ACTIONS(2487), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2699), 47, + ACTIONS(2485), 49, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -214328,93 +238981,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [14073] = 3, + anon_sym_catch, + [28314] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2649), 6, + ACTIONS(1959), 1, + anon_sym_LBRACE, + ACTIONS(4703), 1, anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(4705), 1, + anon_sym_LBRACK, + ACTIONS(4707), 1, + sym_auto, + ACTIONS(4709), 1, + anon_sym_decltype, + STATE(2740), 1, + sym_new_declarator, + STATE(2789), 1, + sym_decltype_auto, + STATE(3097), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4075), 16, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2647), 48, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym_typedef, - anon_sym_extern, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4073), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [28393] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, anon_sym___attribute__, + ACTIONS(45), 1, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(109), 1, + anon_sym_virtual, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1393), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2428), 1, + sym_identifier, + ACTIONS(2434), 1, + anon_sym_COLON_COLON, + ACTIONS(2438), 1, sym_primitive_type, + ACTIONS(2440), 1, anon_sym_enum, + ACTIONS(2442), 1, anon_sym_class, + ACTIONS(2444), 1, anon_sym_struct, + ACTIONS(2446), 1, anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, + ACTIONS(2448), 1, anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [14135] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2649), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2647), 48, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, + STATE(3395), 1, + sym_template_type, + STATE(3490), 1, + sym_qualified_type_identifier, + STATE(3494), 1, + sym_decltype_auto, + STATE(3511), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4067), 1, + sym__type_specifier, + STATE(5394), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(2436), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(55), 5, anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, + ACTIONS(57), 8, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -214423,116 +239117,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [14197] = 3, + STATE(3420), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + STATE(3481), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [28506] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2803), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, + ACTIONS(4125), 1, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2801), 47, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + ACTIONS(4139), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym_typedef, - anon_sym_extern, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4137), 37, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [28571] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, anon_sym___attribute__, + ACTIONS(45), 1, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, + ACTIONS(63), 1, anon_sym_enum, + ACTIONS(65), 1, anon_sym_class, + ACTIONS(67), 1, anon_sym_struct, + ACTIONS(69), 1, anon_sym_union, - sym_identifier, + ACTIONS(105), 1, sym_auto, + ACTIONS(107), 1, anon_sym_decltype, + ACTIONS(109), 1, anon_sym_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, + ACTIONS(113), 1, anon_sym_typename, + ACTIONS(976), 1, anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [14259] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3970), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, + ACTIONS(1393), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3968), 48, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, + ACTIONS(2428), 1, + sym_identifier, + ACTIONS(2434), 1, + anon_sym_COLON_COLON, + ACTIONS(2438), 1, + sym_primitive_type, + STATE(3255), 1, + sym__type_specifier, + STATE(3271), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3395), 1, + sym_template_type, + STATE(3490), 1, + sym_qualified_type_identifier, + STATE(3494), 1, + sym_decltype_auto, + STATE(5394), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(55), 5, anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, + ACTIONS(57), 8, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -214541,40 +239263,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, + STATE(3420), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + STATE(3481), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [28684] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4312), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4310), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [14321] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [28746] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3974), 6, + ACTIONS(4596), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(3972), 48, + ACTIONS(4594), 48, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -214623,10 +239399,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [14383] = 3, + [28808] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2791), 7, + ACTIONS(2807), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -214634,7 +239410,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2789), 47, + ACTIONS(2805), 47, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -214682,20 +239458,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [14445] = 3, + [28870] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2749), 7, + ACTIONS(2877), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2747), 47, + ACTIONS(2875), 48, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -214741,20 +239517,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [14507] = 3, + [28932] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2649), 7, + ACTIONS(2881), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2647), 47, + ACTIONS(2879), 48, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -214800,84 +239576,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [14569] = 3, + [28994] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3988), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(4745), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(4743), 2, + anon_sym_delete, + anon_sym_new, + ACTIONS(4741), 20, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_not, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DASH_GT, + ACTIONS(4739), 31, + anon_sym_COMMA, + anon_sym_TILDE, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(3986), 47, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_compl, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_co_await, + anon_sym_DASH_GT_STAR, + anon_sym_LPAREN_RPAREN, + anon_sym_LBRACK_RBRACK, + [29060] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4747), 1, + anon_sym_COLON, + STATE(2623), 1, + sym__enum_base_clause, + STATE(2885), 1, + sym_enumerator_list, + ACTIONS(4153), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4151), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [14631] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [29128] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3988), 7, + ACTIONS(4751), 13, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(3986), 47, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + ACTIONS(4749), 41, anon_sym_AMP, - anon_sym_typedef, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -214907,31 +239747,92 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_virtual, anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, anon_sym_typename, anon_sym_template, anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [14693] = 3, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [29190] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2452), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(4753), 2, + anon_sym_delete, + anon_sym_new, + ACTIONS(2432), 20, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_not, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DASH_GT, + ACTIONS(2430), 31, + anon_sym_COMMA, + anon_sym_TILDE, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_compl, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_co_await, + anon_sym_DASH_GT_STAR, + anon_sym_LPAREN_RPAREN, + anon_sym_LBRACK_RBRACK, + [29256] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3992), 7, + ACTIONS(2885), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(3990), 47, + ACTIONS(2883), 48, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -214977,34 +239878,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [14755] = 3, + [29318] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2649), 7, - anon_sym_LPAREN2, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1521), 1, anon_sym_TILDE, + ACTIONS(3137), 1, + anon_sym_LPAREN2, + ACTIONS(4755), 1, + sym_identifier, + ACTIONS(4759), 1, anon_sym_STAR, + ACTIONS(4761), 1, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2647), 47, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + ACTIONS(4763), 1, anon_sym_AMP, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + ACTIONS(4765), 1, + anon_sym_COLON_COLON, + ACTIONS(4767), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, + STATE(4345), 1, + sym_parameter_list, + STATE(4398), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4973), 1, + sym__scope_resolution, + STATE(5181), 1, + sym__declarator, + STATE(5377), 1, + sym__abstract_declarator, + STATE(7300), 1, + sym_ms_based_modifier, + ACTIONS(2963), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(4757), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(3205), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(3220), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(7236), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2961), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(5127), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(2965), 8, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -215013,33 +239949,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [14817] = 3, + STATE(5080), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [29428] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4775), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(4773), 2, + anon_sym_delete, + anon_sym_new, + ACTIONS(4771), 20, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_not, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DASH_GT, + ACTIONS(4769), 31, + anon_sym_COMMA, + anon_sym_TILDE, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_compl, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_co_await, + anon_sym_DASH_GT_STAR, + anon_sym_LPAREN_RPAREN, + anon_sym_LBRACK_RBRACK, + [29494] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2741), 7, + ACTIONS(4379), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -215047,7 +240033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2739), 47, + ACTIONS(4377), 47, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -215095,10 +240081,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [14879] = 3, + [29556] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2735), 7, + ACTIONS(4375), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -215106,7 +240092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2733), 47, + ACTIONS(4373), 47, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -215154,17 +240140,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [14941] = 3, + [29618] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2631), 6, + ACTIONS(2735), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2629), 48, + ACTIONS(2733), 48, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -215213,10 +240199,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [15003] = 3, + [29680] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4044), 7, + ACTIONS(2863), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -215224,7 +240210,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(4042), 47, + ACTIONS(2861), 47, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -215272,10 +240258,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [15065] = 3, + [29742] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2353), 7, + ACTIONS(2863), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -215283,7 +240269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2351), 47, + ACTIONS(2861), 47, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -215331,20 +240317,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [15127] = 3, + [29804] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2615), 6, + ACTIONS(4367), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2613), 48, + anon_sym_RBRACE, + ACTIONS(4365), 47, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -215390,10 +240376,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [15189] = 3, + [29866] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2353), 7, + ACTIONS(4355), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -215401,7 +240387,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2351), 47, + ACTIONS(4353), 47, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -215449,10 +240435,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [15251] = 3, + [29928] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2731), 7, + ACTIONS(4347), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -215460,7 +240446,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2729), 47, + ACTIONS(4345), 47, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -215508,20 +240494,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [15313] = 3, + [29990] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2765), 6, + ACTIONS(4343), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2763), 48, + anon_sym_RBRACE, + ACTIONS(4341), 47, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -215567,20 +240553,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [15375] = 3, + [30052] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2635), 6, + ACTIONS(3424), 1, + anon_sym_COLON_COLON, + ACTIONS(3426), 1, + anon_sym_LBRACE, + ACTIONS(3461), 1, + anon_sym_EQ, + ACTIONS(4777), 1, + anon_sym_LT, + STATE(3356), 1, + sym_template_argument_list, + ACTIONS(3465), 13, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(3414), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3419), 20, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [30126] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4339), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2633), 48, + anon_sym_RBRACE, + ACTIONS(4337), 47, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -215626,20 +240677,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [15437] = 3, + [30188] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4004), 6, + ACTIONS(4335), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4002), 48, + anon_sym_RBRACE, + ACTIONS(4333), 47, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -215685,20 +240736,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [15499] = 3, + [30250] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4786), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(4784), 2, + anon_sym_delete, + anon_sym_new, + ACTIONS(4782), 20, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_not, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DASH_GT, + ACTIONS(4780), 31, + anon_sym_COMMA, + anon_sym_TILDE, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_compl, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_co_await, + anon_sym_DASH_GT_STAR, + anon_sym_LPAREN_RPAREN, + anon_sym_LBRACK_RBRACK, + [30316] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4794), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(4792), 2, + anon_sym_delete, + anon_sym_new, + ACTIONS(4790), 20, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_not, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DASH_GT, + ACTIONS(4788), 31, + anon_sym_COMMA, + anon_sym_TILDE, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_compl, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_co_await, + anon_sym_DASH_GT_STAR, + anon_sym_LPAREN_RPAREN, + anon_sym_LBRACK_RBRACK, + [30382] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4008), 6, + ACTIONS(2751), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4006), 48, + anon_sym_RBRACE, + ACTIONS(2749), 47, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -215744,17 +240917,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [15561] = 3, + [30444] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2661), 6, + ACTIONS(2775), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2659), 48, + ACTIONS(2773), 48, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -215803,17 +240976,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [15623] = 3, + [30506] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4012), 6, + ACTIONS(2767), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4010), 48, + ACTIONS(2765), 48, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -215862,10 +241035,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [15685] = 3, + [30568] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2469), 7, + ACTIONS(3493), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(3495), 43, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [30630] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4644), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -215873,7 +241105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2467), 47, + ACTIONS(4642), 47, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -215921,10 +241153,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [15747] = 3, + [30692] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2473), 7, + ACTIONS(4624), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -215932,7 +241164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2471), 47, + ACTIONS(4622), 47, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -215980,10 +241212,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [15809] = 3, + [30754] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2671), 7, + ACTIONS(2735), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -215991,7 +241223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2669), 47, + ACTIONS(2733), 47, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -216039,20 +241271,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [15871] = 3, + [30816] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4359), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4357), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [30878] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4016), 6, + ACTIONS(2917), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4014), 48, + anon_sym_RBRACE, + ACTIONS(2915), 47, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -216098,20 +241389,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [15933] = 3, + [30940] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4020), 6, + ACTIONS(4612), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4018), 48, + anon_sym_RBRACE, + ACTIONS(4610), 47, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -216157,17 +241448,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [15995] = 3, + [31002] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4020), 6, + ACTIONS(2863), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4018), 48, + ACTIONS(2861), 48, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -216216,20 +241507,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [16057] = 3, + [31064] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4016), 6, + ACTIONS(4596), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4014), 48, + anon_sym_RBRACE, + ACTIONS(4594), 47, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -216275,20 +241566,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [16119] = 3, + [31126] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4363), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4361), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [31188] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2749), 6, + ACTIONS(4596), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2747), 48, + anon_sym_RBRACE, + ACTIONS(4594), 47, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -216334,10 +241684,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [16181] = 3, + [31250] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2727), 7, + ACTIONS(4592), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -216345,7 +241695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2725), 47, + ACTIONS(4590), 47, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -216393,20 +241743,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [16243] = 3, + [31312] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4024), 6, + ACTIONS(3424), 1, + anon_sym_COLON_COLON, + ACTIONS(3426), 1, + anon_sym_LBRACE, + ACTIONS(3461), 1, + anon_sym_EQ, + ACTIONS(4716), 1, + anon_sym_LBRACK, + ACTIONS(4777), 1, + anon_sym_LT, + STATE(3356), 1, + sym_template_argument_list, + ACTIONS(4711), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(3465), 13, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(3414), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3419), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [31390] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4588), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4022), 48, + anon_sym_RBRACE, + ACTIONS(4586), 47, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -216452,20 +241869,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [16305] = 3, + [31452] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3424), 1, + anon_sym_COLON_COLON, + ACTIONS(3426), 1, + anon_sym_LBRACE, + ACTIONS(3935), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4722), 1, + anon_sym_LPAREN2, + ACTIONS(4728), 1, + anon_sym_LBRACK, + ACTIONS(4796), 1, + anon_sym_LT, + STATE(2168), 1, + sym_template_argument_list, + ACTIONS(3414), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3419), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [31528] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4028), 6, + ACTIONS(4489), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4026), 48, + anon_sym_RBRACE, + ACTIONS(4487), 47, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -216511,20 +241994,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [16367] = 3, + [31590] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4036), 6, + ACTIONS(4493), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4034), 48, + anon_sym_RBRACE, + ACTIONS(4491), 47, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -216570,20 +242053,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [16429] = 3, + [31652] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4040), 6, + ACTIONS(4497), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4038), 48, + anon_sym_RBRACE, + ACTIONS(4495), 47, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -216629,20 +242112,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [16491] = 3, + [31714] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4044), 6, + ACTIONS(4501), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4042), 48, + anon_sym_RBRACE, + ACTIONS(4499), 47, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -216688,20 +242171,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [16553] = 3, + [31776] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4048), 6, + ACTIONS(4501), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4046), 48, + anon_sym_RBRACE, + ACTIONS(4499), 47, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -216747,20 +242230,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [16615] = 3, + [31838] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4052), 6, + ACTIONS(4497), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4050), 48, + anon_sym_RBRACE, + ACTIONS(4495), 47, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -216806,20 +242289,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [16677] = 3, + [31900] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4052), 6, + ACTIONS(4505), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4050), 48, + anon_sym_RBRACE, + ACTIONS(4503), 47, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -216865,20 +242348,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [16739] = 3, + [31962] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2791), 6, + ACTIONS(4371), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4369), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [32024] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4316), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2789), 48, + anon_sym_RBRACE, + ACTIONS(4314), 47, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -216924,76 +242466,256 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [16801] = 3, + [32086] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4032), 6, + ACTIONS(4747), 1, + anon_sym_COLON, + STATE(2691), 1, + sym__enum_base_clause, + STATE(2771), 1, + sym_enumerator_list, + ACTIONS(4235), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4233), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [32154] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4383), 19, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4381), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4030), 48, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [32216] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4387), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4385), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [32278] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4391), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4389), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [16863] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [32340] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3982), 6, + ACTIONS(2759), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(3980), 48, + ACTIONS(2757), 48, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -217042,20 +242764,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [16925] = 3, + [32402] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2775), 6, + ACTIONS(2795), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2773), 48, + anon_sym_RBRACE, + ACTIONS(2793), 47, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -217101,20 +242823,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [16987] = 3, + [32464] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 6, + ACTIONS(4347), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(3976), 48, + anon_sym_RBRACE, + ACTIONS(4345), 47, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -217160,20 +242882,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [17049] = 3, + [32526] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2779), 6, + ACTIONS(4320), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2777), 48, + anon_sym_RBRACE, + ACTIONS(4318), 47, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -217219,76 +242941,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [17111] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4084), 23, - sym_raw_string_literal, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(4082), 31, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - sym_primitive_type, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - anon_sym_template, - anon_sym_try, - anon_sym_delete, - anon_sym_throw, - anon_sym_co_return, - anon_sym_co_yield, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - sym_nullptr, - [17173] = 3, + [32588] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3962), 6, + ACTIONS(2755), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(3960), 48, + ACTIONS(2753), 48, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -217337,20 +243000,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [17235] = 3, + [32650] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3958), 6, + ACTIONS(4320), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(3956), 48, + anon_sym_RBRACE, + ACTIONS(4318), 47, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -217396,10 +243059,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [17297] = 3, + [32712] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2679), 7, + ACTIONS(4509), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -217407,7 +243070,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2677), 47, + ACTIONS(4507), 47, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -217455,20 +243118,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [17359] = 3, + [32774] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2611), 6, + ACTIONS(4513), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2609), 48, + anon_sym_RBRACE, + ACTIONS(4511), 47, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -217514,42 +243177,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [17421] = 3, + [32836] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2675), 7, + ACTIONS(4801), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, + anon_sym_RBRACK_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(2673), 47, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + ACTIONS(4799), 29, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -217559,34 +243224,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_class, anon_sym_struct, anon_sym_union, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, anon_sym_typename, anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [17483] = 3, + [32898] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4686), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4684), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [32960] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2693), 7, + ACTIONS(2747), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2691), 47, + ACTIONS(2745), 48, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -217632,20 +243354,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [17545] = 3, + [33022] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2759), 6, + ACTIONS(4690), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2757), 48, + anon_sym_RBRACE, + ACTIONS(4688), 47, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -217691,17 +243413,194 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [17607] = 3, + [33084] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2759), 6, + ACTIONS(4805), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4803), 36, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [33146] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4395), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4393), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [33208] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4399), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4397), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [33270] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2743), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2757), 48, + ACTIONS(2741), 48, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -217750,17 +243649,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [17669] = 3, + [33332] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2755), 6, + ACTIONS(2617), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2753), 48, + ACTIONS(2615), 48, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -217809,76 +243708,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [17731] = 3, + [33394] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4088), 23, - sym_raw_string_literal, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, + ACTIONS(4403), 19, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4401), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(4086), 31, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - sym_primitive_type, - anon_sym_if, - anon_sym_switch, - anon_sym_case, - anon_sym_default, - anon_sym_while, - anon_sym_do, - anon_sym_for, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_goto, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - anon_sym_template, - anon_sym_try, - anon_sym_delete, - anon_sym_throw, - anon_sym_co_return, - anon_sym_co_yield, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - sym_nullptr, - [17793] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [33456] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2407), 6, + ACTIONS(2909), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2405), 48, + ACTIONS(2907), 48, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -217927,20 +243826,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [17855] = 3, + [33518] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2641), 6, + ACTIONS(4694), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2639), 48, + anon_sym_RBRACE, + ACTIONS(4692), 47, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -217986,76 +243885,253 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [17917] = 3, + [33580] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2741), 6, + ACTIONS(4407), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4405), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [33642] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4411), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4409), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [33704] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4415), 19, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4413), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2739), 48, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [33766] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4290), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4288), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [17979] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [33828] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2735), 6, + ACTIONS(2621), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2733), 48, + ACTIONS(2619), 48, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -218104,17 +244180,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [18041] = 3, + [33890] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2731), 6, + ACTIONS(2871), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2729), 48, + ACTIONS(2869), 48, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -218163,17 +244239,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [18103] = 3, + [33952] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2697), 6, + ACTIONS(2625), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2695), 48, + ACTIONS(2623), 48, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -218222,17 +244298,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [18165] = 3, + [34014] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3954), 6, + ACTIONS(2867), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(3952), 48, + ACTIONS(2865), 48, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -218281,10 +244357,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [18227] = 3, + [34076] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2407), 7, + ACTIONS(4680), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4678), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [34138] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4698), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -218292,7 +244427,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2405), 47, + ACTIONS(4696), 47, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -218340,42 +244475,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [18289] = 3, + [34200] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4000), 6, + ACTIONS(4809), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3998), 48, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_RBRACK_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + ACTIONS(4807), 29, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -218385,90 +244522,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_class, anon_sym_struct, anon_sym_union, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, anon_sym_typename, anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [18351] = 3, + [34262] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2407), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(4676), 19, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4674), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2405), 47, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [34324] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4672), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4670), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [18413] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [34386] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2675), 6, + ACTIONS(2649), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2673), 48, + ACTIONS(2647), 48, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -218517,20 +244711,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [18475] = 3, + [34448] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3424), 1, + anon_sym_COLON_COLON, + ACTIONS(3426), 1, + anon_sym_LBRACE, + ACTIONS(3952), 1, + anon_sym_LT, + STATE(2921), 1, + sym_template_argument_list, + ACTIONS(3937), 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(3414), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3419), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [34520] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4668), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4666), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [34582] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2671), 6, + ACTIONS(2933), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2669), 48, + anon_sym_RBRACE, + ACTIONS(2931), 47, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -218576,17 +244893,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [18537] = 3, + [34644] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4000), 6, + ACTIONS(3424), 1, + anon_sym_COLON_COLON, + ACTIONS(4294), 1, + anon_sym_LT, + STATE(1967), 1, + sym_template_argument_list, + ACTIONS(3407), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3412), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [34712] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2731), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(3998), 48, + ACTIONS(2729), 48, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -218635,17 +245014,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [18599] = 3, + [34774] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2527), 6, + ACTIONS(4811), 1, + sym_identifier, + ACTIONS(4815), 1, + sym_primitive_type, + STATE(2379), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(4813), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3964), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + ACTIONS(3966), 28, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [34844] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4819), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_RBRACK_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + ACTIONS(4817), 29, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_typename, + anon_sym_template, + [34906] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2787), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2525), 48, + ACTIONS(2785), 48, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -218694,17 +245195,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [18661] = 3, + [34968] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2657), 6, + ACTIONS(2803), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2655), 48, + ACTIONS(2801), 48, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -218753,17 +245254,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [18723] = 3, + [35030] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3950), 6, + ACTIONS(2751), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(3948), 48, + ACTIONS(2749), 48, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -218812,20 +245313,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [18785] = 3, + [35092] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3996), 6, + ACTIONS(2617), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(3994), 48, + anon_sym_RBRACE, + ACTIONS(2615), 47, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -218871,20 +245372,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [18847] = 3, + [35154] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3996), 7, + ACTIONS(2863), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(3994), 47, + ACTIONS(2861), 48, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -218930,10 +245431,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [18909] = 3, + [35216] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2527), 7, + ACTIONS(2921), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -218941,7 +245442,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2525), 47, + ACTIONS(2919), 47, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -218989,25 +245490,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [18971] = 3, + [35278] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4036), 7, + ACTIONS(4823), 13, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(4034), 47, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + ACTIONS(4821), 41, anon_sym_AMP, - anon_sym_typedef, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -219037,31 +245538,31 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_virtual, anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, anon_sym_typename, anon_sym_template, anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [19033] = 3, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [35340] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2517), 7, + ACTIONS(4698), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2515), 47, + ACTIONS(4696), 48, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -219107,20 +245608,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [19095] = 3, + [35402] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4040), 7, + ACTIONS(4694), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(4038), 47, + ACTIONS(4692), 48, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -219166,71 +245667,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [19157] = 5, + [35464] = 3, ACTIONS(3), 1, sym_comment, - STATE(2000), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(4094), 4, + ACTIONS(4690), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4688), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(4090), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, sym_primitive_type, - anon_sym_DOT, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(4092), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [19223] = 3, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [35526] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3950), 7, + ACTIONS(2913), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -219238,7 +245737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(3948), 47, + ACTIONS(2911), 47, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -219286,20 +245785,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [19285] = 3, + [35588] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3992), 6, + ACTIONS(2909), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(3990), 48, + anon_sym_RBRACE, + ACTIONS(2907), 47, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -219345,20 +245844,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [19347] = 3, + [35650] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2641), 7, + ACTIONS(2807), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2639), 47, + ACTIONS(2805), 48, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -219404,20 +245903,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [19409] = 3, + [35712] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4000), 7, + ACTIONS(2807), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(3998), 47, + ACTIONS(2805), 48, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -219463,20 +245962,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [19471] = 3, + [35774] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2611), 7, + ACTIONS(2811), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2609), 47, + ACTIONS(2809), 48, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -219522,17 +246021,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [19533] = 3, + [35836] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3988), 6, + ACTIONS(2661), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(3986), 48, + ACTIONS(2659), 48, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -219581,17 +246080,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [19595] = 3, + [35898] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2353), 6, + ACTIONS(2815), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2351), 48, + ACTIONS(2813), 48, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -219640,20 +246139,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [19657] = 3, + [35960] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1751), 1, + anon_sym_LBRACE, + ACTIONS(4177), 1, + anon_sym_LPAREN2, + STATE(2883), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4553), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4551), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [36028] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2353), 6, + ACTIONS(2621), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2351), 48, + anon_sym_RBRACE, + ACTIONS(2619), 47, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -219699,10 +246260,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [19719] = 3, + [36090] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2661), 7, + ACTIONS(2625), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -219710,7 +246271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2659), 47, + ACTIONS(2623), 47, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -219758,20 +246319,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [19781] = 3, + [36152] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2667), 6, + ACTIONS(2885), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2665), 48, + anon_sym_RBRACE, + ACTIONS(2883), 47, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -219817,20 +246378,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [19843] = 3, + [36214] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3988), 6, + ACTIONS(2881), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(3986), 48, + anon_sym_RBRACE, + ACTIONS(2879), 47, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -219876,10 +246437,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [19905] = 3, + [36276] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2697), 7, + ACTIONS(2877), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -219887,7 +246448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2695), 47, + ACTIONS(2875), 47, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -219935,20 +246496,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [19967] = 3, + [36338] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4028), 7, + ACTIONS(2819), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(4026), 47, + ACTIONS(2817), 48, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -219994,10 +246555,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [20029] = 3, + [36400] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4024), 7, + ACTIONS(2871), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -220005,7 +246566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(4022), 47, + ACTIONS(2869), 47, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -220053,25 +246614,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [20091] = 3, + [36462] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4099), 13, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2867), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - ACTIONS(4097), 41, + anon_sym_RBRACE, + ACTIONS(2865), 47, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym_AMP, + anon_sym_typedef, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -220101,28 +246662,87 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_virtual, anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, anon_sym_typename, anon_sym_template, anon_sym_operator, - anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, - anon_sym_requires, - [20153] = 3, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [36524] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4660), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4658), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [36586] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2687), 6, + ACTIONS(2823), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2685), 48, + ACTIONS(2821), 48, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -220171,17 +246791,197 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [20215] = 3, + [36648] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2460), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(4825), 2, + anon_sym_delete, + anon_sym_new, + ACTIONS(2456), 20, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_not, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DASH_GT, + ACTIONS(2454), 31, + anon_sym_COMMA, + anon_sym_TILDE, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_compl, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_co_await, + anon_sym_DASH_GT_STAR, + anon_sym_LPAREN_RPAREN, + anon_sym_LBRACK_RBRACK, + [36714] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4429), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4427), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [36776] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3478), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(3480), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3485), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [36840] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2693), 6, + ACTIONS(2913), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2691), 48, + ACTIONS(2911), 48, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -220230,10 +247030,249 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [20277] = 3, + [36902] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3467), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(3469), 43, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [36964] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3501), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(3503), 43, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [37026] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3505), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(3507), 43, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [37088] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1751), 1, + anon_sym_LBRACE, + ACTIONS(4177), 1, + anon_sym_LPAREN2, + STATE(2876), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4351), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4349), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [37156] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3966), 7, + ACTIONS(2859), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -220241,7 +247280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(3964), 47, + ACTIONS(2857), 47, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -220289,17 +247328,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [20339] = 3, + [37218] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2701), 6, + ACTIONS(2917), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2699), 48, + ACTIONS(2915), 48, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -220348,20 +247387,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [20401] = 3, + [37280] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2407), 6, + ACTIONS(4433), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4431), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [37342] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4441), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4439), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [37404] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2851), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2405), 48, + anon_sym_RBRACE, + ACTIONS(2849), 47, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -220407,20 +247564,199 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [20463] = 3, + [37466] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4445), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4443), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [37528] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3975), 1, + sym_literal_suffix, + ACTIONS(3414), 24, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + ACTIONS(3419), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [37592] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4831), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(4829), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4827), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [37656] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4016), 7, + ACTIONS(2827), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(4014), 47, + ACTIONS(2825), 48, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -220466,20 +247802,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [20525] = 3, + [37718] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1521), 1, + anon_sym_TILDE, + ACTIONS(3137), 1, + anon_sym_LPAREN2, + ACTIONS(4755), 1, + sym_identifier, + ACTIONS(4765), 1, + anon_sym_COLON_COLON, + ACTIONS(4767), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_STAR, + ACTIONS(4835), 1, + anon_sym_AMP_AMP, + ACTIONS(4837), 1, + anon_sym_AMP, + STATE(4328), 1, + sym_parameter_list, + STATE(4398), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4973), 1, + sym__scope_resolution, + STATE(5181), 1, + sym__declarator, + STATE(5422), 1, + sym__abstract_declarator, + STATE(7300), 1, + sym_ms_based_modifier, + ACTIONS(2963), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(4757), 2, + anon_sym_COMMA, + anon_sym_GT2, + STATE(3207), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(3220), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(7236), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2961), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(5127), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(2965), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5080), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [37828] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4020), 7, + ACTIONS(2831), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(4018), 47, + ACTIONS(2829), 48, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -220514,21 +247933,326 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [20587] = 3, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [37890] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4125), 1, + anon_sym_COLON_COLON, + ACTIONS(4123), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(4121), 42, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [37954] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3424), 1, + anon_sym_COLON_COLON, + ACTIONS(3426), 1, + anon_sym_LBRACE, + ACTIONS(4575), 1, + anon_sym_LT, + ACTIONS(4716), 1, + anon_sym_LBRACK, + STATE(2187), 1, + sym_template_argument_list, + ACTIONS(4711), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(3414), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3419), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [38028] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1751), 1, + anon_sym_LBRACE, + ACTIONS(4177), 1, + anon_sym_LPAREN2, + STATE(2841), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4328), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4326), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [38096] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4449), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4447), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [38158] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4453), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4451), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [38220] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3970), 7, + ACTIONS(2649), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -220536,7 +248260,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(3968), 47, + ACTIONS(2647), 47, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -220584,69 +248308,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [20649] = 3, + [38282] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4020), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(4457), 19, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4455), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(4018), 47, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [38344] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4461), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4459), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [20711] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [38406] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2759), 7, + ACTIONS(2831), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -220654,7 +248437,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2757), 47, + ACTIONS(2829), 47, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -220702,10 +248485,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [20773] = 3, + [38468] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4465), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4463), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [38530] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2513), 7, + ACTIONS(2827), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -220713,7 +248555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2511), 47, + ACTIONS(2825), 47, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -220761,10 +248603,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [20835] = 3, + [38592] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2775), 7, + ACTIONS(2823), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -220772,7 +248614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2773), 47, + ACTIONS(2821), 47, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -220820,10 +248662,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [20897] = 3, + [38654] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3974), 7, + ACTIONS(2819), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -220831,7 +248673,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(3972), 47, + ACTIONS(2817), 47, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -220879,20 +248721,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [20959] = 3, + [38716] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2803), 6, + ACTIONS(4469), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4467), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [38778] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2815), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2801), 48, + anon_sym_RBRACE, + ACTIONS(2813), 47, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -220938,69 +248839,187 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [21021] = 3, + [38840] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4016), 7, + ACTIONS(4473), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4471), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [38902] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4477), 19, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4475), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(4014), 47, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [38964] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4481), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4479), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [21083] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [39026] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4048), 7, + ACTIONS(2661), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -221008,7 +249027,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(4046), 47, + ACTIONS(2659), 47, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -221056,21 +249075,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [21145] = 7, + [39088] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4101), 1, - sym_identifier, - ACTIONS(4109), 1, - sym_primitive_type, - STATE(2000), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(4107), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4105), 17, + ACTIONS(4485), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -221085,10 +249093,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - sym_auto, - anon_sym_decltype, - ACTIONS(4103), 30, + anon_sym_DASH_GT, + ACTIONS(4483), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -221098,12 +249108,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -221115,14 +249121,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [39150] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3424), 1, + anon_sym_COLON_COLON, + ACTIONS(3435), 1, + anon_sym_LBRACE, + ACTIONS(3947), 1, + anon_sym_LT, + STATE(2574), 1, + sym_template_argument_list, + ACTIONS(3437), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, anon_sym_DASH_GT, - [21215] = 3, + ACTIONS(3442), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [39220] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2615), 7, + ACTIONS(2811), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -221130,7 +249208,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2613), 47, + ACTIONS(2809), 47, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -221178,20 +249256,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [21277] = 3, + [39282] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2631), 7, + ACTIONS(2637), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2629), 47, + ACTIONS(2635), 48, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -221237,20 +249315,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [21339] = 3, + [39344] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1751), 1, + anon_sym_LBRACE, + ACTIONS(4177), 1, + anon_sym_LPAREN2, + STATE(2812), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4324), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4322), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [39412] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2799), 7, + ACTIONS(2637), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2797), 47, + ACTIONS(2635), 48, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -221296,10 +249436,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [21401] = 3, + [39474] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2711), 7, + ACTIONS(2803), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -221307,7 +249447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2709), 47, + ACTIONS(2801), 47, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -221355,10 +249495,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [21463] = 3, + [39536] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2719), 7, + ACTIONS(2787), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -221366,7 +249506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2717), 47, + ACTIONS(2785), 47, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -221414,93 +249554,224 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [21525] = 3, + [39598] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2779), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(4841), 25, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(4839), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, anon_sym_RBRACE, - ACTIONS(2777), 47, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [39660] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4656), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4654), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [21587] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [39722] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4652), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4650), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [39784] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2635), 7, + STATE(2379), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(4843), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3957), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2633), 47, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + ACTIONS(3955), 30, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -221509,58 +249780,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [21649] = 3, + anon_sym_requires, + [39850] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4052), 7, + ACTIONS(4125), 1, + anon_sym_COLON_COLON, + ACTIONS(4139), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(4137), 42, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(4050), 47, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, + anon_sym_RBRACK, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -221568,58 +249836,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [21711] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [39914] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2513), 6, + ACTIONS(4125), 1, + anon_sym_COLON_COLON, + ACTIONS(4139), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(4137), 42, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2511), 48, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - anon_sym_AMP, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, + anon_sym_RBRACK, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -221627,43 +249896,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [21773] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [39978] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2469), 6, + ACTIONS(2775), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2467), 48, + anon_sym_RBRACE, + ACTIONS(2773), 47, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -221709,20 +249971,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [21835] = 3, + [40040] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2473), 6, + ACTIONS(2767), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2471), 48, + anon_sym_RBRACE, + ACTIONS(2765), 47, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -221768,17 +250030,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [21897] = 3, + [40102] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4648), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4646), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [40164] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2679), 6, + ACTIONS(4513), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2677), 48, + ACTIONS(4511), 48, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -221827,17 +250148,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [21959] = 3, + [40226] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2517), 6, + ACTIONS(4509), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2515), 48, + ACTIONS(4507), 48, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -221886,20 +250207,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [22021] = 3, + [40288] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4052), 7, + ACTIONS(4505), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(4050), 47, + ACTIONS(4503), 48, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -221945,20 +250266,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [22083] = 3, + [40350] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4032), 7, + ACTIONS(4497), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(4030), 47, + ACTIONS(4495), 48, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -222004,17 +250325,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [22145] = 3, + [40412] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2727), 6, + ACTIONS(4501), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2725), 48, + ACTIONS(4499), 48, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -222063,20 +250384,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [22207] = 3, + [40474] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2597), 7, + ACTIONS(4501), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2595), 47, + ACTIONS(4499), 48, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -222122,20 +250443,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [22269] = 3, + [40536] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3982), 7, + ACTIONS(4497), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(3980), 47, + ACTIONS(4495), 48, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -222181,20 +250502,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [22331] = 3, + [40598] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2657), 7, + ACTIONS(4493), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2655), 47, + ACTIONS(4491), 48, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -222240,20 +250561,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [22393] = 3, + [40660] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2765), 7, + ACTIONS(4489), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2763), 47, + ACTIONS(4487), 48, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -222299,143 +250620,265 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [22455] = 3, + [40722] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3978), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(4640), 19, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(3976), 47, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4638), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [22517] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [40784] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4012), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(4636), 19, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4634), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(4010), 47, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [40846] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4632), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym_typedef, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4630), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_friend, - anon_sym_using, - anon_sym_static_assert, - [22579] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [40908] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3424), 1, + anon_sym_COLON_COLON, + ACTIONS(3435), 1, + anon_sym_LBRACE, + ACTIONS(3517), 1, + anon_sym_LT, + STATE(2168), 1, + sym_template_argument_list, + ACTIONS(3437), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3442), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [40978] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4113), 13, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2759), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - ACTIONS(4111), 41, + anon_sym_RBRACE, + ACTIONS(2757), 47, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym_AMP, + anon_sym_typedef, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -222465,21 +250908,21 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_virtual, anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, anon_sym_typename, anon_sym_template, anon_sym_operator, - anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, - anon_sym_requires, - [22641] = 3, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [41040] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3962), 7, + ACTIONS(2755), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -222487,7 +250930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(3960), 47, + ACTIONS(2753), 47, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -222535,20 +250978,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [22703] = 3, + [41102] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3424), 1, + anon_sym_COLON_COLON, + STATE(3279), 1, + sym_template_argument_list, + ACTIONS(4159), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4157), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [41168] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4628), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4626), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [41230] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3958), 7, + ACTIONS(2657), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(3956), 47, + ACTIONS(2655), 48, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -222594,20 +251157,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [22765] = 3, + [41292] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4008), 7, + ACTIONS(2657), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(4006), 47, + ACTIONS(2655), 48, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -222653,20 +251216,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [22827] = 3, + [41354] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3954), 7, + ACTIONS(2795), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(3952), 47, + ACTIONS(2793), 48, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -222712,10 +251275,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [22889] = 3, + [41416] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4000), 7, + ACTIONS(2747), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -222723,7 +251286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(3998), 47, + ACTIONS(2745), 47, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -222771,10 +251334,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [22951] = 3, + [41478] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4004), 7, + ACTIONS(2743), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -222782,7 +251345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(4002), 47, + ACTIONS(2741), 47, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -222830,57 +251393,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_friend, anon_sym_using, anon_sym_static_assert, - [23013] = 10, + [41540] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, - anon_sym_COLON_COLON, - ACTIONS(3752), 1, - anon_sym_const, - ACTIONS(4115), 1, - anon_sym_LT, - STATE(2078), 1, - sym_template_argument_list, - ACTIONS(3761), 2, + ACTIONS(4620), 19, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(3754), 6, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4618), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_LBRACK, - anon_sym_GT2, - ACTIONS(3757), 10, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACE, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, sym_auto, anon_sym_decltype, - ACTIONS(3759), 14, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [41602] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4616), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PIPE, anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(3764), 17, + anon_sym_DASH_GT, + ACTIONS(4614), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -222888,30 +251494,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [23088] = 7, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [41664] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4118), 1, - sym_literal_suffix, - ACTIONS(4120), 1, - sym_raw_string_literal, - STATE(2066), 2, - sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(2330), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(3724), 15, + ACTIONS(4608), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -222926,8 +251529,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(3716), 29, + anon_sym_DASH_GT, + ACTIONS(4606), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -222937,11 +251544,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -222953,25 +251557,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [23157] = 6, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [41726] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4129), 1, - sym_raw_string_literal, - STATE(2064), 2, - sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(4126), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(4124), 16, + ACTIONS(4604), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -222986,9 +251588,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(4122), 29, + anon_sym_DASH_GT, + ACTIONS(4602), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -222998,11 +251603,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -223014,73 +251616,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [23224] = 27, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [41788] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1497), 1, - anon_sym_operator, - ACTIONS(1517), 1, - anon_sym_TILDE, - ACTIONS(3087), 1, + ACTIONS(4135), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(4133), 43, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(3089), 1, anon_sym_STAR, - ACTIONS(3091), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(3093), 1, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [41850] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3473), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(3922), 1, - sym_identifier, - ACTIONS(4064), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(3478), 43, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(4074), 1, - anon_sym_LBRACK, - ACTIONS(4132), 1, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, anon_sym_COLON_COLON, - STATE(4080), 1, - sym_parameter_list, - STATE(4135), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4697), 1, - sym__scope_resolution, - STATE(5044), 1, - sym__declarator, - STATE(5117), 1, - sym__abstract_declarator, - STATE(6716), 1, - sym_ms_based_modifier, - ACTIONS(2919), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(2438), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(2502), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6663), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2917), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(4832), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(2921), 8, - anon_sym_const, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -223088,33 +251731,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(4825), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [23333] = 6, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [41912] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4138), 1, - sym_raw_string_literal, - STATE(2064), 2, - sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(2330), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(4136), 16, + ACTIONS(4600), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -223129,9 +251765,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(4134), 29, + anon_sym_DASH_GT, + ACTIONS(4598), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -223141,11 +251780,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -223157,46 +251793,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [23400] = 13, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [41974] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3714), 1, - anon_sym_const, - ACTIONS(3735), 1, - anon_sym_COLON_COLON, - ACTIONS(3740), 1, - anon_sym_LBRACE, - ACTIONS(4140), 1, - anon_sym_LT, - STATE(2963), 1, - sym_template_argument_list, - ACTIONS(3726), 2, - anon_sym_STAR, + ACTIONS(3487), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(4143), 2, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(3729), 6, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(3489), 43, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_AMP_AMP, - anon_sym_LBRACK, - anon_sym_GT2, - ACTIONS(3716), 8, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - ACTIONS(3722), 9, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [42036] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3497), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(3499), 43, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -223204,59 +251908,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - ACTIONS(4145), 9, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(3724), 12, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [42098] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3509), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(3511), 43, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_DOT, - [23481] = 6, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [42160] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, - anon_sym_COLON_COLON, - ACTIONS(4147), 1, - anon_sym_LT, - STATE(2144), 1, - sym_template_argument_list, - ACTIONS(3757), 6, + ACTIONS(2851), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(3752), 43, + ACTIONS(2849), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym_AMP, + anon_sym_typedef, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, anon_sym_LBRACK, anon_sym_static, anon_sym_register, @@ -223284,22 +252033,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_virtual, anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, anon_sym_typename, anon_sym_template, anon_sym_operator, + anon_sym_friend, anon_sym_using, - anon_sym_concept, - [23547] = 5, + anon_sym_static_assert, + [42222] = 3, ACTIONS(3), 1, sym_comment, - STATE(2069), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(4149), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4090), 20, + ACTIONS(4290), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -223314,13 +252060,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - sym_primitive_type, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(4092), 27, + ACTIONS(4288), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -223343,28 +252088,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [23611] = 9, + [42284] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2921), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2919), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [42346] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4156), 1, + ACTIONS(3424), 1, + anon_sym_COLON_COLON, + ACTIONS(3426), 1, anon_sym_LBRACE, - ACTIONS(4158), 1, - anon_sym_COLON, - STATE(2234), 1, - sym_field_declaration_list, - STATE(5450), 1, - sym_virtual_specifier, - STATE(5953), 1, - sym_base_class_clause, - ACTIONS(4160), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4154), 15, + ACTIONS(4713), 1, + anon_sym_LT, + STATE(2574), 1, + sym_template_argument_list, + ACTIONS(3414), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -223375,12 +252182,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4152), 30, + anon_sym_DASH_GT, + ACTIONS(3419), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -223390,10 +252200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -223405,29 +252212,257 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [42416] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2731), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2729), 47, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - [23683] = 9, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [42478] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4156), 1, - anon_sym_LBRACE, - ACTIONS(4158), 1, - anon_sym_COLON, - STATE(2257), 1, - sym_field_declaration_list, - STATE(5372), 1, - sym_virtual_specifier, - STATE(5916), 1, - sym_base_class_clause, - ACTIONS(4160), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4164), 15, + ACTIONS(2807), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2805), 47, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [42540] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2657), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2655), 47, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [42602] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2657), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2655), 47, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [42664] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4139), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -223443,7 +252478,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_DOT, - ACTIONS(4162), 30, + anon_sym_DASH_GT, + ACTIONS(4137), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -223453,10 +252489,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -223469,28 +252504,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - [23755] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4156), 1, - anon_sym_LBRACE, - ACTIONS(4158), 1, - anon_sym_COLON, - STATE(2214), 1, - sym_field_declaration_list, - STATE(5366), 1, - sym_virtual_specifier, - STATE(5997), 1, - sym_base_class_clause, - ACTIONS(4160), 2, anon_sym_final, anon_sym_override, - ACTIONS(4168), 15, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [42726] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4584), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -223505,8 +252536,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4166), 30, + anon_sym_DASH_GT, + ACTIONS(4582), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -223516,10 +252551,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -223531,88 +252564,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - [23827] = 5, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [42788] = 3, ACTIONS(3), 1, sym_comment, - STATE(2073), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(4170), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4090), 22, + ACTIONS(4580), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - ACTIONS(4092), 25, + anon_sym_DASH_GT, + ACTIONS(4578), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [23891] = 9, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [42850] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4156), 1, - anon_sym_LBRACE, - ACTIONS(4158), 1, - anon_sym_COLON, - STATE(2225), 1, - sym_field_declaration_list, - STATE(5457), 1, - sym_virtual_specifier, - STATE(5949), 1, - sym_base_class_clause, - ACTIONS(4160), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4175), 15, + ACTIONS(2859), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2857), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [42912] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4573), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -223627,8 +252713,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4173), 30, + anon_sym_DASH_GT, + ACTIONS(4571), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -223638,10 +252728,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -223653,90 +252741,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - [23963] = 7, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [42974] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4177), 1, - sym_identifier, - ACTIONS(4181), 1, - sym_primitive_type, - STATE(2073), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(4179), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4105), 20, + ACTIONS(4569), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - ACTIONS(4103), 25, + anon_sym_DASH_GT, + ACTIONS(4567), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [24031] = 9, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [43036] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4156), 1, - anon_sym_LBRACE, - ACTIONS(4158), 1, - anon_sym_COLON, - STATE(2246), 1, - sym_field_declaration_list, - STATE(5507), 1, - sym_virtual_specifier, - STATE(5880), 1, - sym_base_class_clause, - ACTIONS(4160), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4185), 15, + ACTIONS(4565), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -223751,8 +252831,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4183), 30, + anon_sym_DASH_GT, + ACTIONS(4563), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -223762,10 +252846,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -223777,29 +252859,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - [24103] = 9, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [43098] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4156), 1, - anon_sym_LBRACE, - ACTIONS(4158), 1, - anon_sym_COLON, - STATE(2238), 1, - sym_field_declaration_list, - STATE(5489), 1, - sym_virtual_specifier, - STATE(5912), 1, - sym_base_class_clause, - ACTIONS(4160), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4189), 15, + ACTIONS(4561), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -223814,8 +252890,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4187), 30, + anon_sym_DASH_GT, + ACTIONS(4559), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -223825,10 +252905,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -223840,30 +252918,225 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - [24175] = 7, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [43160] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3811), 1, + ACTIONS(4379), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4377), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, anon_sym_const, - ACTIONS(3820), 2, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [43222] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4375), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4373), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym_AMP, - ACTIONS(3813), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [43284] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4367), 6, anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4365), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - anon_sym_GT2, - ACTIONS(3816), 11, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [43346] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4355), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_COLON_COLON, - anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, + ACTIONS(4353), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -223871,70 +253144,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(3818), 15, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(3823), 17, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [24243] = 6, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [43408] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, + ACTIONS(4347), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_COLON_COLON, - ACTIONS(4147), 1, - anon_sym_LT, - STATE(2144), 1, - sym_template_argument_list, - ACTIONS(3740), 6, + anon_sym_LBRACK_LBRACK, + ACTIONS(4345), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [43470] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4347), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4191), 43, + ACTIONS(4345), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym_AMP, + anon_sym_typedef, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, anon_sym_LBRACK, anon_sym_static, anon_sym_register, @@ -223962,28 +253276,196 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_virtual, anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, anon_sym_typename, anon_sym_template, anon_sym_operator, + anon_sym_friend, anon_sym_using, - anon_sym_concept, - [24309] = 9, + anon_sym_static_assert, + [43532] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4156), 1, - anon_sym_LBRACE, - ACTIONS(4158), 1, - anon_sym_COLON, - STATE(2289), 1, - sym_field_declaration_list, - STATE(5481), 1, - sym_virtual_specifier, - STATE(5946), 1, - sym_base_class_clause, - ACTIONS(4160), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4195), 15, + ACTIONS(4343), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4341), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [43594] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4339), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4337), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [43656] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4335), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4333), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [43718] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4557), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -223998,8 +253480,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4193), 30, + anon_sym_DASH_GT, + ACTIONS(4555), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -224009,10 +253495,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -224024,29 +253508,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - [24381] = 9, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [43780] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4156), 1, - anon_sym_LBRACE, - ACTIONS(4158), 1, - anon_sym_COLON, - STATE(2231), 1, - sym_field_declaration_list, - STATE(5509), 1, - sym_virtual_specifier, - STATE(5909), 1, - sym_base_class_clause, - ACTIONS(4160), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4199), 15, + ACTIONS(4549), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -224061,8 +253539,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4197), 30, + anon_sym_DASH_GT, + ACTIONS(4547), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -224072,10 +253554,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -224087,27 +253567,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - [24453] = 7, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [43842] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4201), 1, - sym_identifier, - ACTIONS(4205), 1, - sym_primitive_type, - STATE(2069), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(4203), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4105), 18, + ACTIONS(4545), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -224122,11 +253598,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, + ACTIONS(4543), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, sym_auto, anon_sym_decltype, - ACTIONS(4103), 27, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [43904] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4541), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4539), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -224149,28 +253685,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [24521] = 9, + [43966] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4156), 1, - anon_sym_LBRACE, - ACTIONS(4158), 1, - anon_sym_COLON, - STATE(2288), 1, - sym_field_declaration_list, - STATE(5250), 1, - sym_virtual_specifier, - STATE(6001), 1, - sym_base_class_clause, - ACTIONS(4160), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4209), 15, + ACTIONS(2933), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2931), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [44028] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4537), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -224185,8 +253775,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4207), 30, + anon_sym_DASH_GT, + ACTIONS(4535), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -224196,10 +253790,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -224211,29 +253803,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - [24593] = 9, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [44090] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON, - ACTIONS(4211), 1, - anon_sym_LBRACE, - STATE(2400), 1, - sym_field_declaration_list, - STATE(5315), 1, - sym_virtual_specifier, - STATE(6113), 1, - sym_base_class_clause, - ACTIONS(4160), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4189), 16, + ACTIONS(4533), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -224248,9 +253834,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4187), 28, + ACTIONS(4531), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -224260,6 +253849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -224272,17 +253862,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, sym_auto, anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [24664] = 3, + [44152] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3811), 17, + ACTIONS(4529), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -224297,10 +253893,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3816), 34, + ACTIONS(4527), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -224310,8 +253908,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -224325,31 +253921,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [24723] = 6, + [44214] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4213), 1, - sym_raw_string_literal, - STATE(2102), 2, - sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(1443), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(4136), 17, + ACTIONS(4525), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -224364,10 +253952,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - sym_literal_suffix, - ACTIONS(4134), 26, + ACTIONS(4523), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -224377,6 +253967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -224389,15 +253980,318 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [24788] = 3, + [44276] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2637), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2635), 47, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [44338] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2637), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2635), 47, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [44400] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4320), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4318), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [44462] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4320), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4318), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [44524] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4316), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4314), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [44586] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4217), 16, + ACTIONS(4521), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -224412,10 +254306,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(4215), 35, - sym_raw_string_literal, + anon_sym_DASH_GT, + ACTIONS(4519), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -224425,11 +254321,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -224441,32 +254334,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [24847] = 9, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [44648] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON, - ACTIONS(4211), 1, - anon_sym_LBRACE, - STATE(2439), 1, - sym_field_declaration_list, - STATE(5405), 1, - sym_virtual_specifier, - STATE(6185), 1, - sym_base_class_clause, - ACTIONS(4160), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4164), 16, + ACTIONS(4517), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -224481,9 +254365,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4162), 28, + ACTIONS(4515), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -224493,6 +254380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -224505,81 +254393,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, sym_auto, anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [24918] = 11, + [44710] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2320), 1, - anon_sym_LBRACE, - ACTIONS(4221), 1, + ACTIONS(4588), 6, anon_sym_LPAREN2, - ACTIONS(4225), 1, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4586), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - ACTIONS(4227), 1, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, - ACTIONS(4229), 1, anon_sym_decltype, - STATE(2245), 1, - sym_decltype_auto, - STATE(2283), 1, - sym_new_declarator, - STATE(2599), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4223), 15, - anon_sym_DASH, - anon_sym_PLUS, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [44772] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4592), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(4219), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [24993] = 3, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4590), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [44834] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4233), 16, + ACTIONS(4848), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -224594,10 +254542,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(4231), 35, - sym_raw_string_literal, + ACTIONS(4846), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -224608,6 +254557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -224623,114 +254573,292 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [25052] = 9, + [44896] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON, - ACTIONS(4211), 1, - anon_sym_LBRACE, - STATE(2443), 1, - sym_field_declaration_list, - STATE(5408), 1, - sym_virtual_specifier, - STATE(6187), 1, - sym_base_class_clause, - ACTIONS(4160), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4168), 16, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(4644), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4642), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4166), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [44958] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4624), 6, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4622), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [25123] = 11, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [45020] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2320), 1, - anon_sym_LBRACE, - ACTIONS(4221), 1, + ACTIONS(4612), 6, anon_sym_LPAREN2, - ACTIONS(4225), 1, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4610), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - ACTIONS(4227), 1, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, - ACTIONS(4229), 1, anon_sym_decltype, - STATE(2245), 1, - sym_decltype_auto, - STATE(2248), 1, - sym_new_declarator, - STATE(2571), 2, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [45082] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4596), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4594), 48, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym_AMP, + anon_sym_typedef, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_friend, + anon_sym_using, + anon_sym_static_assert, + [45144] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4862), 1, + anon_sym_LT_EQ_GT, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + STATE(2487), 1, sym_argument_list, - sym_initializer_list, - ACTIONS(4237), 15, + ACTIONS(4852), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(4858), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4864), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4854), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4856), 10, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, - anon_sym_DOT, - ACTIONS(4235), 27, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4850), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -224742,7 +254870,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_RBRACE, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -224754,27 +254881,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [25198] = 7, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [45225] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4239), 1, - sym_literal_suffix, - ACTIONS(4241), 1, - sym_raw_string_literal, - STATE(2086), 2, - sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(1443), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(3724), 16, + ACTIONS(4872), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -224789,9 +254905,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3716), 26, + ACTIONS(4870), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -224801,7 +254919,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -224813,32 +254935,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [25265] = 11, + anon_sym_DASH_GT, + [45286] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2320), 1, - anon_sym_LBRACE, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4225), 1, - anon_sym_LBRACK, - ACTIONS(4227), 1, - sym_auto, - ACTIONS(4229), 1, - anon_sym_decltype, - STATE(2245), 1, - sym_decltype_auto, - STATE(2293), 1, - sym_new_declarator, - STATE(2613), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4245), 15, + ACTIONS(4876), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -224853,11 +254963,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4243), 27, + ACTIONS(4874), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -224865,6 +254979,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, @@ -224878,27 +254993,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [25340] = 9, + [45347] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON, - ACTIONS(4211), 1, - anon_sym_LBRACE, - STATE(2342), 1, - sym_field_declaration_list, - STATE(5337), 1, - sym_virtual_specifier, - STATE(6149), 1, - sym_base_class_clause, - ACTIONS(4160), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4195), 16, + STATE(1949), 1, + sym__enum_base_clause, + STATE(2110), 1, + sym_enumerator_list, + ACTIONS(4235), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -224913,19 +255025,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4193), 28, + ACTIONS(4233), 33, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -224937,30 +255051,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [25411] = 9, + [45412] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON, - ACTIONS(4211), 1, - anon_sym_LBRACE, - STATE(2396), 1, - sym_field_declaration_list, - STATE(5318), 1, - sym_virtual_specifier, - STATE(6116), 1, - sym_base_class_clause, - ACTIONS(4160), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4185), 16, + ACTIONS(4165), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -224975,9 +255081,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4183), 28, + ACTIONS(4167), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -224987,7 +255095,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -224999,30 +255111,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [25482] = 9, + anon_sym_DASH_GT, + [45473] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON, - ACTIONS(4211), 1, - anon_sym_LBRACE, - STATE(2336), 1, - sym_field_declaration_list, - STATE(5346), 1, - sym_virtual_specifier, - STATE(6073), 1, - sym_base_class_clause, - ACTIONS(4160), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4154), 16, + ACTIONS(4737), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -225037,9 +255139,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4152), 28, + ACTIONS(4735), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -225049,7 +255153,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -225061,23 +255169,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [25553] = 6, + anon_sym_DASH_GT, + [45534] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, - anon_sym_COLON_COLON, - ACTIONS(4247), 1, - anon_sym_LT, - STATE(2131), 1, - sym_template_argument_list, - ACTIONS(3752), 15, + ACTIONS(4880), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -225088,12 +255193,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(3757), 33, + ACTIONS(4878), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -225104,10 +255212,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -225119,35 +255227,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [25618] = 11, + [45595] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2320), 1, - anon_sym_LBRACE, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4225), 1, - anon_sym_LBRACK, - ACTIONS(4227), 1, - sym_auto, - ACTIONS(4229), 1, - anon_sym_decltype, - STATE(2245), 1, - sym_decltype_auto, - STATE(2297), 1, - sym_new_declarator, - STATE(2622), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4252), 15, + ACTIONS(4884), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -225162,11 +255255,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4250), 27, + ACTIONS(4882), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -225174,6 +255271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, @@ -225187,27 +255285,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [25693] = 9, + [45656] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON, - ACTIONS(4211), 1, - anon_sym_LBRACE, - STATE(2454), 1, - sym_field_declaration_list, - STATE(5412), 1, - sym_virtual_specifier, - STATE(6189), 1, - sym_base_class_clause, - ACTIONS(4160), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4209), 16, + ACTIONS(4221), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -225222,9 +255313,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4207), 28, + ACTIONS(4223), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -225234,7 +255327,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -225246,57 +255343,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [25764] = 9, + anon_sym_DASH_GT, + [45717] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON, - ACTIONS(4211), 1, - anon_sym_LBRACE, - STATE(2404), 1, - sym_field_declaration_list, - STATE(5310), 1, - sym_virtual_specifier, - STATE(6110), 1, - sym_base_class_clause, - ACTIONS(4160), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4199), 16, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4862), 1, + anon_sym_LT_EQ_GT, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(4888), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4890), 1, + anon_sym_AMP_AMP, + ACTIONS(4892), 1, + anon_sym_PIPE, + ACTIONS(4896), 1, + anon_sym_AMP, + ACTIONS(4902), 1, + anon_sym_GT_EQ, + ACTIONS(4904), 1, + anon_sym_EQ, + ACTIONS(4906), 1, + anon_sym_or, + ACTIONS(4908), 1, + anon_sym_and, + ACTIONS(4910), 1, + anon_sym_bitor, + ACTIONS(4912), 1, + anon_sym_bitand, + STATE(2487), 1, + sym_argument_list, + ACTIONS(4852), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(4858), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4864), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4894), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(4854), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(4898), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(4900), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4197), 28, + ACTIONS(4886), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -225308,28 +255430,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [25835] = 6, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [45822] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4257), 1, - sym_raw_string_literal, - STATE(2102), 2, - sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(4254), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(4124), 17, + ACTIONS(4916), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -225344,10 +255451,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - sym_literal_suffix, - ACTIONS(4122), 26, + ACTIONS(4914), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -225357,7 +255465,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -225369,21 +255481,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [25900] = 6, + anon_sym_DASH_GT, + [45883] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, - anon_sym_COLON_COLON, - ACTIONS(4260), 1, - anon_sym_LT, - STATE(2131), 1, - sym_template_argument_list, - ACTIONS(4191), 15, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + STATE(2487), 1, + sym_argument_list, + ACTIONS(4864), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4920), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -225394,25 +255518,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(3740), 33, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4918), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -225425,31 +255548,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [25965] = 9, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [45956] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON, - ACTIONS(4211), 1, - anon_sym_LBRACE, - STATE(2339), 1, - sym_field_declaration_list, - STATE(5341), 1, - sym_virtual_specifier, - STATE(6153), 1, - sym_base_class_clause, - ACTIONS(4160), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4175), 16, + ACTIONS(4221), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -225464,9 +255573,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4173), 28, + ACTIONS(4223), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -225476,7 +255587,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -225488,310 +255603,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [26036] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON, - ACTIONS(4262), 1, - anon_sym_LBRACE, - STATE(2513), 1, - sym_field_declaration_list, - STATE(5443), 1, - sym_virtual_specifier, - STATE(6341), 1, - sym_base_class_clause, - ACTIONS(4160), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4175), 10, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(4173), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [26106] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4266), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4264), 43, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_using, - anon_sym_concept, - [26164] = 3, + [46017] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3807), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3805), 43, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, + ACTIONS(4423), 1, sym_auto, + ACTIONS(4425), 1, anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_using, - anon_sym_concept, - [26222] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON, - ACTIONS(4262), 1, - anon_sym_LBRACE, - STATE(2381), 1, - sym_field_declaration_list, - STATE(5416), 1, - sym_virtual_specifier, - STATE(6090), 1, - sym_base_class_clause, - ACTIONS(4160), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4164), 10, + STATE(2637), 1, + sym_decltype_auto, + ACTIONS(4277), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_const, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4162), 33, + ACTIONS(4275), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [26292] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3776), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3774), 43, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_using, - anon_sym_concept, - [26350] = 6, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [46084] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, - anon_sym_COLON_COLON, - ACTIONS(4268), 1, - anon_sym_LT, - STATE(2085), 1, - sym_template_argument_list, - ACTIONS(4191), 16, + ACTIONS(4922), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -225802,13 +255688,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3740), 31, + ACTIONS(2507), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -225818,8 +255706,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -225831,87 +255722,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [26414] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4274), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4276), 1, - anon_sym_AMP_AMP, - ACTIONS(4272), 5, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4270), 43, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_using, - anon_sym_concept, - [26476] = 7, + anon_sym_DASH_GT, + [46145] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4278), 1, - sym_identifier, - ACTIONS(4282), 1, - sym_primitive_type, - STATE(2116), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(4280), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4105), 19, + ACTIONS(4147), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -225921,26 +255745,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - sym_auto, - anon_sym_decltype, - ACTIONS(4103), 24, + ACTIONS(4149), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -225948,98 +255776,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - anon_sym_GT2, - [26542] = 3, + [46206] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2289), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(3424), 1, + anon_sym_COLON_COLON, + ACTIONS(3426), 1, + anon_sym_LBRACE, + ACTIONS(3461), 1, + anon_sym_EQ, + ACTIONS(3491), 1, + anon_sym_COLON, + ACTIONS(4777), 1, + anon_sym_LT, + STATE(3356), 1, + sym_template_argument_list, + ACTIONS(3465), 13, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(3414), 16, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3419), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2287), 43, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_using, - anon_sym_concept, - [26600] = 3, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [46281] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3803), 7, + ACTIONS(4014), 1, + anon_sym_COLON, + ACTIONS(4924), 1, + anon_sym_LBRACE, + STATE(3193), 1, + sym_field_declaration_list, + STATE(5813), 1, + sym_virtual_specifier, + STATE(6351), 1, + sym_base_class_clause, + ACTIONS(4016), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4051), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4049), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3801), 43, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -226047,53 +255904,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_using, - anon_sym_concept, - [26658] = 3, + anon_sym_GT2, + anon_sym_requires, + [46354] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4286), 6, + ACTIONS(4014), 1, + anon_sym_COLON, + ACTIONS(4924), 1, + anon_sym_LBRACE, + STATE(3189), 1, + sym_field_declaration_list, + STATE(5811), 1, + sym_virtual_specifier, + STATE(6354), 1, + sym_base_class_clause, + ACTIONS(4016), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4047), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4045), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4284), 44, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -226101,37 +255968,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_using, - anon_sym_concept, + anon_sym_GT2, anon_sym_requires, - [26716] = 5, + [46427] = 5, ACTIONS(3), 1, sym_comment, - STATE(2116), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(4288), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4090), 21, + STATE(1950), 1, + sym__enum_base_clause, + STATE(2085), 1, + sym_enumerator_list, + ACTIONS(4153), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -226141,28 +256000,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - sym_primitive_type, - anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(4092), 24, + ACTIONS(4151), 33, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -226170,20 +256027,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - anon_sym_GT2, - [26778] = 4, + sym_auto, + anon_sym_decltype, + [46492] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4295), 1, - anon_sym_COLON_COLON, - ACTIONS(4293), 16, + ACTIONS(4928), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -226198,9 +256061,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4291), 33, + ACTIONS(4926), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -226211,10 +256076,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -226226,20 +256091,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [26838] = 4, + [46553] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4295), 1, + ACTIONS(3424), 1, anon_sym_COLON_COLON, - ACTIONS(4293), 16, + ACTIONS(3426), 1, + anon_sym_LBRACE, + ACTIONS(3461), 1, + anon_sym_EQ, + ACTIONS(3515), 1, + anon_sym_COLON, + ACTIONS(4777), 1, + anon_sym_LT, + STATE(3356), 1, + sym_template_argument_list, + ACTIONS(3465), 13, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(3414), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -226250,16 +256141,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4291), 33, + ACTIONS(3419), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -226267,33 +256157,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_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_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [26898] = 3, + [46628] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3782), 16, + ACTIONS(4932), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -226308,9 +256184,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(3784), 34, + ACTIONS(4930), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -226321,11 +256199,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -226337,210 +256214,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [26956] = 3, + [46689] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3795), 7, + ACTIONS(4055), 1, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3793), 43, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + ACTIONS(4860), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_using, - anon_sym_concept, - [27014] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3799), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + STATE(2487), 1, + sym_argument_list, + ACTIONS(4852), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4858), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4864), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4854), 3, anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3797), 43, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4936), 10, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_using, - anon_sym_concept, - [27072] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3784), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4934), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3782), 43, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_using, - anon_sym_concept, - [27130] = 9, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [46768] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(4262), 1, + ACTIONS(4924), 1, anon_sym_LBRACE, - STATE(2475), 1, + STATE(3185), 1, sym_field_declaration_list, - STATE(5407), 1, + STATE(5807), 1, sym_virtual_specifier, - STATE(6346), 1, + STATE(6357), 1, sym_base_class_clause, - ACTIONS(4160), 2, + ACTIONS(4016), 2, anon_sym_final, anon_sym_override, - ACTIONS(4168), 10, + ACTIONS(4043), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(4166), 33, + ACTIONS(4041), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -226549,13 +256331,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -226565,16 +256342,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_auto, anon_sym_decltype, + anon_sym_GT2, anon_sym_requires, - [27200] = 3, + [46841] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3424), 1, + anon_sym_COLON_COLON, + ACTIONS(3426), 1, + anon_sym_LBRACE, + ACTIONS(3461), 1, + anon_sym_EQ, + ACTIONS(3471), 1, + anon_sym_COLON, + ACTIONS(4777), 1, + anon_sym_LT, + STATE(3356), 1, + sym_template_argument_list, + ACTIONS(3465), 13, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(3414), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3419), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [46916] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3805), 16, + ACTIONS(4940), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -226589,9 +256438,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(3807), 34, + ACTIONS(4938), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -226602,11 +256453,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -226618,399 +256468,537 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [27258] = 3, + [46977] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(2304), 7, + ACTIONS(4055), 1, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4862), 1, + anon_sym_LT_EQ_GT, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(4888), 1, anon_sym_PIPE_PIPE, + ACTIONS(4890), 1, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2302), 43, + ACTIONS(4892), 1, + anon_sym_PIPE, + ACTIONS(4896), 1, anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_using, - anon_sym_concept, - [27316] = 9, + ACTIONS(4902), 1, + anon_sym_GT_EQ, + ACTIONS(4906), 1, + anon_sym_or, + ACTIONS(4908), 1, + anon_sym_and, + ACTIONS(4910), 1, + anon_sym_bitor, + ACTIONS(4912), 1, + anon_sym_bitand, + ACTIONS(4942), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4946), 1, + anon_sym_EQ, + STATE(2487), 1, + sym_argument_list, + ACTIONS(4852), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4858), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4864), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4894), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(4854), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4898), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(4900), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4944), 19, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [47084] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON, - ACTIONS(4262), 1, - anon_sym_LBRACE, - STATE(2391), 1, - sym_field_declaration_list, - STATE(5487), 1, - sym_virtual_specifier, - STATE(6301), 1, - sym_base_class_clause, - ACTIONS(4160), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4185), 10, + ACTIONS(4807), 18, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_const, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4183), 33, + ACTIONS(4809), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, + anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [27386] = 9, + [47145] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON, - ACTIONS(4262), 1, - anon_sym_LBRACE, - STATE(2521), 1, - sym_field_declaration_list, - STATE(5446), 1, - sym_virtual_specifier, - STATE(6338), 1, - sym_base_class_clause, - ACTIONS(4160), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4195), 10, + ACTIONS(4203), 18, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_const, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4193), 33, + ACTIONS(4205), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, + anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [27456] = 4, + [47206] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4295), 1, - anon_sym_COLON_COLON, - ACTIONS(4291), 6, + ACTIONS(4055), 1, anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + STATE(2487), 1, + sym_argument_list, + ACTIONS(4864), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4950), 17, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4948), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, - ACTIONS(4293), 43, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_using, - anon_sym_concept, - [27516] = 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [47279] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(4295), 1, - anon_sym_COLON_COLON, - ACTIONS(4299), 6, + ACTIONS(4055), 1, anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4862), 1, + anon_sym_LT_EQ_GT, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + STATE(2487), 1, + sym_argument_list, + ACTIONS(4852), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4858), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4864), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4854), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4936), 10, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4934), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, - ACTIONS(4297), 43, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_using, - anon_sym_concept, - [27576] = 9, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [47360] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON, - ACTIONS(4262), 1, - anon_sym_LBRACE, - STATE(2350), 1, - sym_field_declaration_list, - STATE(5490), 1, - sym_virtual_specifier, - STATE(6298), 1, - sym_base_class_clause, - ACTIONS(4160), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4189), 10, + ACTIONS(4956), 1, + anon_sym_LT, + STATE(2472), 1, + sym_template_argument_list, + ACTIONS(4954), 17, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_const, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4187), 33, + ACTIONS(4952), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [27646] = 3, + [47425] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(3811), 16, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4862), 1, + anon_sym_LT_EQ_GT, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(4888), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4890), 1, + anon_sym_AMP_AMP, + ACTIONS(4892), 1, + anon_sym_PIPE, + ACTIONS(4896), 1, + anon_sym_AMP, + ACTIONS(4902), 1, + anon_sym_GT_EQ, + ACTIONS(4906), 1, + anon_sym_or, + ACTIONS(4908), 1, + anon_sym_and, + ACTIONS(4910), 1, + anon_sym_bitor, + ACTIONS(4912), 1, + anon_sym_bitand, + ACTIONS(4961), 1, + anon_sym_EQ, + STATE(2487), 1, + sym_argument_list, + ACTIONS(4852), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(4858), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4864), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4894), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(4854), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(4898), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(4900), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + ACTIONS(4959), 20, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [47530] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4862), 1, + anon_sym_LT_EQ_GT, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(4902), 1, + anon_sym_GT_EQ, + STATE(2487), 1, + sym_argument_list, + ACTIONS(4852), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(4858), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(4864), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4854), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4900), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4936), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(3816), 34, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4934), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -227023,18 +257011,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [27704] = 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [47615] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3774), 16, + ACTIONS(4965), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -227049,9 +257035,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(3776), 34, + ACTIONS(4963), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -227062,11 +257050,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -227078,18 +257065,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [27762] = 3, + [47676] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4264), 16, + STATE(2632), 1, + sym_enumerator_list, + ACTIONS(4273), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -227099,29 +257090,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_COLON, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4266), 34, + ACTIONS(4271), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -227129,83 +257118,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [27820] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4291), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4293), 43, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_using, - anon_sym_concept, - [27878] = 6, + anon_sym_GT2, + [47739] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, + ACTIONS(3424), 1, anon_sym_COLON_COLON, - ACTIONS(4301), 1, + ACTIONS(4682), 1, anon_sym_LT, - STATE(2085), 1, + STATE(1937), 1, sym_template_argument_list, - ACTIONS(3752), 16, + ACTIONS(3407), 15, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -227219,10 +257157,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_COLON, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3757), 31, + ACTIONS(3412), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -227246,18 +257183,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [27942] = 3, + [47806] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3797), 16, + ACTIONS(4969), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -227272,9 +257213,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(3799), 34, + ACTIONS(4967), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -227285,11 +257228,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -227301,49 +257243,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [28000] = 3, + [47867] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3793), 16, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4862), 1, + anon_sym_LT_EQ_GT, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(4902), 1, + anon_sym_GT_EQ, + STATE(2487), 1, + sym_argument_list, + ACTIONS(4852), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(4858), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4864), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4854), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(4898), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(4900), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(4936), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(3795), 34, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4934), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -227356,18 +257319,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [28058] = 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + anon_sym_bitand, + [47954] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3778), 16, + ACTIONS(4973), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -227382,9 +257342,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(3780), 34, + ACTIONS(4971), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -227395,11 +257357,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -227411,18 +257372,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [28116] = 3, + [48015] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3801), 16, + ACTIONS(4977), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -227437,9 +257400,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(3803), 34, + ACTIONS(4975), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -227450,11 +257415,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -227466,45 +257430,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [28174] = 9, + [48076] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(4262), 1, + ACTIONS(4924), 1, anon_sym_LBRACE, - STATE(2379), 1, + STATE(3175), 1, sym_field_declaration_list, - STATE(5495), 1, + STATE(5790), 1, sym_virtual_specifier, - STATE(6292), 1, + STATE(6395), 1, sym_base_class_clause, - ACTIONS(4160), 2, + ACTIONS(4016), 2, anon_sym_final, anon_sym_override, - ACTIONS(4199), 10, + ACTIONS(4020), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(4197), 33, + ACTIONS(4018), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -227513,13 +257480,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -227529,361 +257491,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_auto, anon_sym_decltype, + anon_sym_GT2, anon_sym_requires, - [28244] = 4, + [48149] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4276), 1, - anon_sym_AMP_AMP, - ACTIONS(4306), 6, + ACTIONS(4055), 1, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4304), 43, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + ACTIONS(4860), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_using, - anon_sym_concept, - [28304] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3780), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3778), 43, + ACTIONS(4862), 1, + anon_sym_LT_EQ_GT, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(4896), 1, anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_using, - anon_sym_concept, - [28362] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON, - ACTIONS(4262), 1, - anon_sym_LBRACE, - STATE(2509), 1, - sym_field_declaration_list, - STATE(5441), 1, - sym_virtual_specifier, - STATE(6345), 1, - sym_base_class_clause, - ACTIONS(4160), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4154), 10, + ACTIONS(4902), 1, + anon_sym_GT_EQ, + ACTIONS(4912), 1, + anon_sym_bitand, + STATE(2487), 1, + sym_argument_list, + ACTIONS(4852), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(4152), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + ACTIONS(4858), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + ACTIONS(4864), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [28432] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3816), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(4854), 3, anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3811), 43, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_using, - anon_sym_concept, - [28490] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON, - ACTIONS(4262), 1, - anon_sym_LBRACE, - STATE(2329), 1, - sym_field_declaration_list, - STATE(5402), 1, - sym_virtual_specifier, - STATE(6351), 1, - sym_base_class_clause, - ACTIONS(4160), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4209), 10, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + anon_sym_PERCENT, + ACTIONS(4898), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(4900), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(4207), 33, + ACTIONS(4936), 6, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4934), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [28560] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4310), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4308), 44, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_using, - anon_sym_concept, - anon_sym_requires, - [28618] = 4, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + [48240] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4295), 1, - anon_sym_COLON_COLON, - ACTIONS(4297), 16, + ACTIONS(4185), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -227898,9 +257595,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4299), 33, + ACTIONS(4187), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -227911,10 +257610,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -227926,168 +257625,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [28678] = 3, + [48301] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4314), 6, + ACTIONS(4055), 1, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4312), 44, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + ACTIONS(4860), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_using, - anon_sym_concept, - anon_sym_requires, - [28736] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4295), 1, - anon_sym_COLON_COLON, - ACTIONS(4291), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + ACTIONS(4862), 1, + anon_sym_LT_EQ_GT, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(4888), 1, anon_sym_PIPE_PIPE, + ACTIONS(4890), 1, anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, - ACTIONS(4293), 43, + ACTIONS(4892), 1, + anon_sym_PIPE, + ACTIONS(4896), 1, anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - anon_sym_using, - anon_sym_concept, - [28796] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON, - ACTIONS(4316), 1, - anon_sym_LBRACE, - STATE(2678), 1, - sym_field_declaration_list, - STATE(5329), 1, - sym_virtual_specifier, - STATE(5974), 1, - sym_base_class_clause, - ACTIONS(4160), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4195), 17, + ACTIONS(4902), 1, + anon_sym_GT_EQ, + ACTIONS(4906), 1, + anon_sym_or, + ACTIONS(4908), 1, + anon_sym_and, + ACTIONS(4910), 1, + anon_sym_bitor, + ACTIONS(4912), 1, + anon_sym_bitand, + ACTIONS(4981), 1, + anon_sym_EQ, + STATE(2487), 1, + sym_argument_list, + ACTIONS(4852), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(4858), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4864), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4894), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(4854), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(4898), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(4900), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(4193), 25, + ACTIONS(4979), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -228095,31 +257708,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [28865] = 6, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [48406] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4318), 1, - sym_raw_string_literal, - STATE(2152), 2, - sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(2855), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(4136), 18, + ACTIONS(4169), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -228129,24 +257728,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(4134), 23, + ACTIONS(4171), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -228154,29 +257759,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - anon_sym_GT2, - [28928] = 6, + [48467] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4323), 1, - sym_raw_string_literal, - STATE(2152), 2, - sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(4320), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(4124), 18, + STATE(2619), 1, + sym_enumerator_list, + ACTIONS(4269), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -228193,9 +257795,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(4122), 23, + ACTIONS(4267), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -228203,6 +257807,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -228214,88 +257819,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, anon_sym_GT2, - [28991] = 9, + [48530] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(4316), 1, + ACTIONS(4924), 1, anon_sym_LBRACE, - STATE(2753), 1, + STATE(3172), 1, sym_field_declaration_list, - STATE(5354), 1, + STATE(5785), 1, sym_virtual_specifier, - STATE(6127), 1, + STATE(6400), 1, sym_base_class_clause, - ACTIONS(4160), 2, + ACTIONS(4016), 2, anon_sym_final, anon_sym_override, - ACTIONS(4164), 17, + ACTIONS(4027), 12, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym_const, anon_sym_DOT, - ACTIONS(4162), 25, + ACTIONS(4025), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_auto, anon_sym_decltype, anon_sym_GT2, - [29060] = 7, + anon_sym_requires, + [48603] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4326), 1, - sym_literal_suffix, - ACTIONS(4328), 1, - sym_raw_string_literal, - STATE(2151), 2, - sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(2855), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(3724), 17, + ACTIONS(4217), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -228305,23 +257909,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(3716), 23, + ACTIONS(4219), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -228329,48 +257940,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - anon_sym_GT2, - [29125] = 3, + [48664] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(4264), 17, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4862), 1, + anon_sym_LT_EQ_GT, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(4896), 1, + anon_sym_AMP, + ACTIONS(4902), 1, + anon_sym_GT_EQ, + ACTIONS(4912), 1, + anon_sym_bitand, + STATE(2487), 1, + sym_argument_list, + ACTIONS(4852), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(4858), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4864), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4894), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(4854), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(4898), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(4900), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(4936), 4, + anon_sym_PIPE, anon_sym_EQ, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4266), 32, + anon_sym_or, + anon_sym_and, + ACTIONS(4934), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -228382,36 +258024,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [29182] = 11, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + [48757] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2367), 1, - anon_sym_LBRACE, - ACTIONS(4330), 1, - anon_sym_LPAREN2, - ACTIONS(4332), 1, - anon_sym_LBRACK, - ACTIONS(4334), 1, - sym_auto, - ACTIONS(4336), 1, - anon_sym_decltype, - STATE(2474), 1, - sym_new_declarator, - STATE(2490), 1, - sym_decltype_auto, - STATE(2795), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4245), 16, + ACTIONS(4987), 1, + anon_sym_AMP_AMP, + ACTIONS(4985), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -228426,17 +258048,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4243), 24, + ACTIONS(4983), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -228448,28 +258077,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [29255] = 9, + anon_sym_DASH_GT, + [48820] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON, - ACTIONS(4316), 1, + ACTIONS(3424), 1, + anon_sym_COLON_COLON, + ACTIONS(3426), 1, anon_sym_LBRACE, - STATE(2756), 1, - sym_field_declaration_list, - STATE(5357), 1, - sym_virtual_specifier, - STATE(6139), 1, - sym_base_class_clause, - ACTIONS(4160), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4168), 17, + ACTIONS(4777), 1, + anon_sym_LT, + ACTIONS(4989), 1, + anon_sym_COMMA, + ACTIONS(4992), 1, + anon_sym_RBRACK, + ACTIONS(4995), 1, + anon_sym_EQ, + STATE(3356), 1, + sym_template_argument_list, + STATE(5939), 1, + aux_sym_structured_binding_declarator_repeat1, + ACTIONS(4997), 13, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(3414), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -228479,57 +258130,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4166), 25, + ACTIONS(3419), 16, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [48899] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3424), 1, + anon_sym_COLON_COLON, + ACTIONS(3426), 1, + anon_sym_LBRACE, + ACTIONS(4777), 1, + anon_sym_LT, + ACTIONS(4992), 1, + anon_sym_RBRACK, + ACTIONS(4995), 1, + anon_sym_EQ, + ACTIONS(4999), 1, + anon_sym_COMMA, + STATE(3356), 1, + sym_template_argument_list, + STATE(5939), 1, + aux_sym_structured_binding_declarator_repeat1, + ACTIONS(4997), 13, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [29324] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON, - ACTIONS(4316), 1, - anon_sym_LBRACE, - STATE(2758), 1, - sym_field_declaration_list, - STATE(5361), 1, - sym_virtual_specifier, - STATE(6161), 1, - sym_base_class_clause, - ACTIONS(4160), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4209), 17, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(3414), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -228539,50 +258197,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4207), 25, + ACTIONS(3419), 16, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [29393] = 6, + [48978] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4342), 1, - anon_sym_COLON, - STATE(2203), 1, - sym__enum_base_clause, - STATE(2266), 1, - sym_enumerator_list, - ACTIONS(4340), 15, + ACTIONS(4932), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -228597,8 +258239,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4338), 31, + ACTIONS(4930), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -228609,10 +258254,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -228624,20 +258269,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [29456] = 5, + [49039] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, + ACTIONS(3424), 1, anon_sym_COLON_COLON, - STATE(2626), 1, + ACTIONS(3426), 1, + anon_sym_LBRACE, + ACTIONS(3461), 1, + anon_sym_EQ, + ACTIONS(4777), 1, + anon_sym_LT, + ACTIONS(5001), 1, + anon_sym_COLON, + STATE(3356), 1, sym_template_argument_list, - ACTIONS(4346), 16, + ACTIONS(3465), 13, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(3414), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -228648,16 +258319,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4344), 31, + ACTIONS(3419), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -228665,33 +258335,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_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_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [29517] = 4, + [49114] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4295), 1, - anon_sym_COLON_COLON, - ACTIONS(4293), 17, + ACTIONS(3437), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -228706,10 +258362,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4291), 31, + ACTIONS(3442), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -228719,8 +258376,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -228732,32 +258392,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [29576] = 9, + anon_sym_DASH_GT, + [49175] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON, - ACTIONS(4316), 1, - anon_sym_LBRACE, - STATE(2639), 1, - sym_field_declaration_list, - STATE(5317), 1, - sym_virtual_specifier, - STATE(5934), 1, - sym_base_class_clause, - ACTIONS(4160), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4199), 17, + ACTIONS(4817), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -228767,23 +258415,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4197), 25, + ACTIONS(4819), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -228791,33 +258446,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [29645] = 9, + [49236] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON, - ACTIONS(4316), 1, - anon_sym_LBRACE, - STATE(2645), 1, - sym_field_declaration_list, - STATE(5320), 1, - sym_virtual_specifier, - STATE(5939), 1, - sym_base_class_clause, - ACTIONS(4160), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4189), 17, + ACTIONS(2476), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -228827,23 +258473,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4187), 25, + ACTIONS(2478), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -228851,20 +258504,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [29714] = 3, + [49297] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4293), 15, + ACTIONS(3437), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -228879,8 +258536,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4291), 34, + ACTIONS(3442), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -228891,7 +258551,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -228907,20 +258566,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [29771] = 4, + [49358] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4295), 1, - anon_sym_COLON_COLON, - ACTIONS(4293), 17, + ACTIONS(3437), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -228935,10 +258594,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4291), 31, + ACTIONS(3442), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -228948,8 +258608,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -228961,32 +258624,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [29830] = 9, + anon_sym_DASH_GT, + [49419] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON, - ACTIONS(4316), 1, - anon_sym_LBRACE, - STATE(2651), 1, - sym_field_declaration_list, - STATE(5321), 1, - sym_virtual_specifier, - STATE(5956), 1, - sym_base_class_clause, - ACTIONS(4160), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4185), 17, + ACTIONS(4221), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -228996,23 +258647,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4183), 25, + ACTIONS(4223), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -229020,37 +258678,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [29899] = 11, + [49480] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2367), 1, - anon_sym_LBRACE, - ACTIONS(4330), 1, - anon_sym_LPAREN2, - ACTIONS(4332), 1, - anon_sym_LBRACK, - ACTIONS(4334), 1, - sym_auto, - ACTIONS(4336), 1, - anon_sym_decltype, - STATE(2413), 1, - sym_new_declarator, - STATE(2490), 1, - sym_decltype_auto, - STATE(2780), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4223), 16, + ACTIONS(3437), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -229065,17 +258710,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4219), 24, + ACTIONS(3442), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -229087,32 +258740,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [29972] = 11, + anon_sym_DASH_GT, + [49541] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2367), 1, - anon_sym_LBRACE, - ACTIONS(4330), 1, - anon_sym_LPAREN2, - ACTIONS(4332), 1, - anon_sym_LBRACK, - ACTIONS(4334), 1, - sym_auto, - ACTIONS(4336), 1, - anon_sym_decltype, - STATE(2488), 1, - sym_new_declarator, - STATE(2490), 1, - sym_decltype_auto, - STATE(2805), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4252), 16, + ACTIONS(3437), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -229127,17 +258768,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4250), 24, + ACTIONS(3442), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -229149,15 +258798,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [30045] = 3, + anon_sym_DASH_GT, + [49602] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4233), 17, + ACTIONS(3424), 1, + anon_sym_COLON_COLON, + STATE(3279), 1, + sym_template_argument_list, + ACTIONS(4159), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -229174,9 +258832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - sym_literal_suffix, - ACTIONS(4231), 32, - sym_raw_string_literal, + ACTIONS(4157), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -229186,6 +258842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -229199,73 +258856,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, + sym_auto, + anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [30102] = 3, + [49667] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4293), 24, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5005), 17, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___based, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(4291), 25, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(5003), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [30159] = 3, + [49738] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4217), 17, + ACTIONS(2485), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -229280,11 +258949,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - sym_literal_suffix, - ACTIONS(4215), 32, - sym_raw_string_literal, + ACTIONS(2487), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -229294,7 +258963,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -229306,37 +258979,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [30216] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2367), 1, - anon_sym_LBRACE, - ACTIONS(4330), 1, - anon_sym_LPAREN2, - ACTIONS(4332), 1, - anon_sym_LBRACK, - ACTIONS(4334), 1, - sym_auto, - ACTIONS(4336), 1, - anon_sym_decltype, - STATE(2429), 1, - sym_new_declarator, - STATE(2490), 1, - sym_decltype_auto, - STATE(2802), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4237), 16, + anon_sym_DASH_GT, + [49799] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5009), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -229351,17 +259007,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4235), 24, + ACTIONS(5007), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -229373,28 +259037,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [30289] = 9, + anon_sym_DASH_GT, + [49860] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON, - ACTIONS(4316), 1, - anon_sym_LBRACE, - STATE(2683), 1, - sym_field_declaration_list, - STATE(5333), 1, - sym_virtual_specifier, - STATE(5983), 1, - sym_base_class_clause, - ACTIONS(4160), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4175), 17, + ACTIONS(5013), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -229404,23 +259060,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4173), 25, + ACTIONS(5011), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -229428,33 +259091,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [30358] = 9, + [49921] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON, - ACTIONS(4316), 1, - anon_sym_LBRACE, - STATE(2690), 1, - sym_field_declaration_list, - STATE(5335), 1, - sym_virtual_specifier, - STATE(5988), 1, - sym_base_class_clause, - ACTIONS(4160), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4154), 17, + ACTIONS(5015), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(4829), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -229464,23 +259120,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4152), 25, + anon_sym_DASH_GT, + ACTIONS(4827), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK, + anon_sym_GT_EQ, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -229488,22 +259149,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [30427] = 4, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [49984] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4295), 1, - anon_sym_COLON_COLON, - ACTIONS(4297), 17, + ACTIONS(5019), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -229518,10 +259182,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4299), 31, + ACTIONS(5017), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -229531,8 +259196,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -229544,25 +259212,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [30486] = 6, + anon_sym_DASH_GT, + [50045] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, - anon_sym_COLON_COLON, - ACTIONS(4260), 1, - anon_sym_LT, - STATE(2131), 1, - sym_template_argument_list, - ACTIONS(3714), 15, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5023), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -229573,25 +259246,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(3722), 31, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(5021), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -229604,22 +259276,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [30549] = 6, + [50116] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4342), 1, - anon_sym_COLON, - STATE(2196), 1, - sym__enum_base_clause, - STATE(2259), 1, - sym_enumerator_list, - ACTIONS(4350), 15, + ACTIONS(4213), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -229634,8 +259303,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4348), 31, + ACTIONS(4215), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -229646,10 +259318,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -229661,128 +259333,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [30612] = 3, + [50177] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3782), 11, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4862), 1, + anon_sym_LT_EQ_GT, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(4892), 1, + anon_sym_PIPE, + ACTIONS(4896), 1, + anon_sym_AMP, + ACTIONS(4902), 1, + anon_sym_GT_EQ, + ACTIONS(4910), 1, + anon_sym_bitor, + ACTIONS(4912), 1, + anon_sym_bitand, + STATE(2487), 1, + sym_argument_list, + ACTIONS(4852), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(4858), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4864), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4894), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(4854), 3, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + anon_sym_PERCENT, + ACTIONS(4898), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(4900), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_const, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(3784), 37, + ACTIONS(4936), 3, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + ACTIONS(4934), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [30668] = 3, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [50274] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3805), 11, + ACTIONS(4987), 1, + anon_sym_AMP_AMP, + ACTIONS(5029), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5027), 18, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_const, - anon_sym_COLON, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(3807), 37, + ACTIONS(5025), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, + anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [30724] = 6, + [50339] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4352), 1, - anon_sym_COLON, - STATE(2322), 1, - sym__enum_base_clause, - STATE(2457), 1, - sym_enumerator_list, - ACTIONS(4340), 16, + ACTIONS(4237), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -229797,9 +259497,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4338), 29, + ACTIONS(4239), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -229809,8 +259511,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -229822,235 +259527,214 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [30786] = 3, + anon_sym_DASH_GT, + [50400] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4354), 23, + ACTIONS(4141), 18, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - ACTIONS(4356), 25, + ACTIONS(4143), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_RBRACK_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [30842] = 7, + [50461] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4358), 1, - sym_identifier, - ACTIONS(4362), 1, - sym_primitive_type, - STATE(2195), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(4360), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4103), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - ACTIONS(4105), 22, + ACTIONS(5033), 18, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_DOT, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [30906] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4264), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_const, - anon_sym_COLON, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4266), 37, + ACTIONS(5031), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, + anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [30962] = 3, + [50522] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3801), 11, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4862), 1, + anon_sym_LT_EQ_GT, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(4890), 1, + anon_sym_AMP_AMP, + ACTIONS(4892), 1, + anon_sym_PIPE, + ACTIONS(4896), 1, + anon_sym_AMP, + ACTIONS(4902), 1, + anon_sym_GT_EQ, + ACTIONS(4908), 1, + anon_sym_and, + ACTIONS(4910), 1, + anon_sym_bitor, + ACTIONS(4912), 1, + anon_sym_bitand, + STATE(2487), 1, + sym_argument_list, + ACTIONS(4852), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(4858), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4864), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4894), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(4936), 2, + anon_sym_EQ, + anon_sym_or, + ACTIONS(4854), 3, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + anon_sym_PERCENT, + ACTIONS(4898), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(4900), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_const, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(3803), 37, + ACTIONS(4934), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [31018] = 4, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [50623] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4295), 1, - anon_sym_COLON_COLON, - ACTIONS(4293), 18, + ACTIONS(4229), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -230060,25 +259744,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_COLON, - anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4291), 29, + ACTIONS(4231), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -230086,132 +259775,198 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [31076] = 3, + [50684] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3778), 11, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4862), 1, + anon_sym_LT_EQ_GT, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(4888), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4890), 1, + anon_sym_AMP_AMP, + ACTIONS(4892), 1, + anon_sym_PIPE, + ACTIONS(4896), 1, + anon_sym_AMP, + ACTIONS(4902), 1, + anon_sym_GT_EQ, + ACTIONS(4906), 1, + anon_sym_or, + ACTIONS(4908), 1, + anon_sym_and, + ACTIONS(4910), 1, + anon_sym_bitor, + ACTIONS(4912), 1, + anon_sym_bitand, + ACTIONS(4942), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5037), 1, + anon_sym_EQ, + ACTIONS(5039), 1, + anon_sym_QMARK, + STATE(2487), 1, + sym_argument_list, + ACTIONS(4852), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(4858), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4864), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4894), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(4854), 3, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + anon_sym_PERCENT, + ACTIONS(4898), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(4900), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_const, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(3780), 37, - anon_sym_DOT_DOT_DOT, + ACTIONS(5035), 18, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [31132] = 4, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [50793] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4295), 1, - anon_sym_COLON_COLON, - ACTIONS(4297), 11, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + STATE(2487), 1, + sym_argument_list, + ACTIONS(4852), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(4864), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4854), 3, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4936), 12, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_const, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(4299), 36, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4934), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [31190] = 4, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [50870] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4295), 1, + ACTIONS(3424), 1, anon_sym_COLON_COLON, - ACTIONS(4293), 18, + ACTIONS(3426), 1, + anon_sym_LBRACE, + ACTIONS(3461), 1, + anon_sym_EQ, + ACTIONS(3513), 1, + anon_sym_COLON, + ACTIONS(4777), 1, + anon_sym_LT, + STATE(3356), 1, + sym_template_argument_list, + ACTIONS(3465), 13, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(3414), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -230221,16 +259976,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4291), 29, + ACTIONS(3419), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -230238,91 +259991,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, + anon_sym_GT_EQ, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [31248] = 3, + [50945] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3774), 11, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + STATE(2487), 1, + sym_argument_list, + ACTIONS(4864), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5043), 17, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_const, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(3776), 37, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(5041), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [31304] = 6, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [51018] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4227), 1, - sym_auto, - ACTIONS(4229), 1, - anon_sym_decltype, - STATE(2245), 1, - sym_decltype_auto, - ACTIONS(4366), 15, + ACTIONS(3414), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -230337,8 +260084,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4364), 30, + ACTIONS(3419), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -230349,7 +260099,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -230365,16 +260114,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [31366] = 4, + [51079] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4295), 1, - anon_sym_COLON_COLON, - ACTIONS(4370), 16, + ACTIONS(4179), 1, + anon_sym_LBRACK, + STATE(2620), 1, + sym_new_declarator, + ACTIONS(4720), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -230389,9 +260146,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4368), 31, + anon_sym_DASH_GT, + ACTIONS(4718), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -230401,11 +260161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -230417,16 +260173,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [31424] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [51144] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3811), 18, + ACTIONS(5047), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -230436,26 +260197,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_COLON, - anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(3816), 30, + ACTIONS(5045), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_COLON_COLON, - anon_sym_LBRACE, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -230463,76 +260228,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [31480] = 3, + [51205] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1521), 1, + anon_sym_TILDE, + ACTIONS(3137), 1, + anon_sym_LPAREN2, + ACTIONS(3139), 1, + anon_sym_STAR, + ACTIONS(3141), 1, + anon_sym_AMP_AMP, + ACTIONS(3143), 1, + anon_sym_AMP, + ACTIONS(4247), 1, + sym_identifier, + ACTIONS(4757), 1, + anon_sym_RPAREN, + ACTIONS(4767), 1, + anon_sym_LBRACK, + ACTIONS(5049), 1, + anon_sym_COLON_COLON, + STATE(4345), 1, + sym_parameter_list, + STATE(4398), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4946), 1, + sym__scope_resolution, + STATE(5326), 1, + sym__declarator, + STATE(5377), 1, + sym__abstract_declarator, + STATE(7250), 1, + sym_ms_based_modifier, + ACTIONS(2963), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3218), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(3228), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(7236), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2961), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(5127), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(2965), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5080), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [51314] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4372), 23, + ACTIONS(3424), 1, + anon_sym_COLON_COLON, + ACTIONS(3426), 1, + anon_sym_LBRACE, + ACTIONS(3461), 1, + anon_sym_EQ, + ACTIONS(3463), 1, + anon_sym_COLON, + ACTIONS(4777), 1, + anon_sym_LT, + STATE(3356), 1, + sym_template_argument_list, + ACTIONS(3465), 13, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(3414), 16, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - ACTIONS(4374), 25, + ACTIONS(3419), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_RBRACK_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [31536] = 3, + [51389] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4293), 16, + ACTIONS(5053), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -230547,9 +260407,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4291), 32, + ACTIONS(5051), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -230559,8 +260421,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -230573,76 +260437,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [31592] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2195), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(4376), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4092), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - anon_sym_GT2, - ACTIONS(4090), 24, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [31652] = 4, + [51450] = 4, ACTIONS(3), 1, sym_comment, - STATE(2258), 1, - sym_enumerator_list, - ACTIONS(4381), 15, + ACTIONS(4125), 1, + anon_sym_COLON_COLON, + ACTIONS(4290), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -230652,28 +260462,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4379), 32, + ACTIONS(4288), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -230681,79 +260490,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - [31710] = 3, + anon_sym_GT2, + [51513] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4383), 23, + ACTIONS(5057), 18, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - ACTIONS(4385), 25, + ACTIONS(5055), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_RBRACK_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [31766] = 6, + [51574] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, - anon_sym_COLON_COLON, - ACTIONS(4387), 1, - anon_sym_LT, - STATE(2192), 1, - sym_template_argument_list, - ACTIONS(4191), 17, + ACTIONS(4829), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -230763,24 +260577,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_COLON, - anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(3740), 28, + ACTIONS(4827), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -230788,75 +260608,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - [31828] = 3, + [51635] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3793), 11, + ACTIONS(4173), 18, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_const, - anon_sym_COLON, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(3795), 37, + ACTIONS(4175), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, + anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [31884] = 3, + [51696] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4264), 18, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + STATE(2487), 1, + sym_argument_list, + ACTIONS(4864), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4936), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -230866,26 +260706,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_COLON, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(4266), 30, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4934), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -230893,38 +260733,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [51769] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4014), 1, + anon_sym_COLON, + ACTIONS(4924), 1, + anon_sym_LBRACE, + STATE(3153), 1, + sym_field_declaration_list, + STATE(5746), 1, + sym_virtual_specifier, + STATE(6420), 1, + sym_base_class_clause, + ACTIONS(4016), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [31940] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3811), 11, + ACTIONS(4031), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_GT_GT, anon_sym_const, - anon_sym_COLON, anon_sym_DOT, - ACTIONS(3816), 37, + ACTIONS(4029), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -230933,15 +260784,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -230951,73 +260795,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [31996] = 3, + [51842] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3797), 11, + ACTIONS(5061), 18, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_const, - anon_sym_COLON, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(3799), 37, + ACTIONS(5059), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, + anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [32052] = 4, + [51903] = 3, ACTIONS(3), 1, sym_comment, - STATE(2242), 1, - sym_enumerator_list, - ACTIONS(4391), 15, + ACTIONS(3414), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -231032,8 +260884,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4389), 32, + ACTIONS(3419), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -231044,7 +260899,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -231060,78 +260914,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [32110] = 6, + [51964] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, - anon_sym_COLON_COLON, - ACTIONS(4393), 1, - anon_sym_LT, - STATE(2192), 1, - sym_template_argument_list, - ACTIONS(3752), 17, + ACTIONS(4014), 1, + anon_sym_COLON, + ACTIONS(4924), 1, + anon_sym_LBRACE, + STATE(3155), 1, + sym_field_declaration_list, + STATE(5750), 1, + sym_virtual_specifier, + STATE(6418), 1, + sym_base_class_clause, + ACTIONS(4016), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4035), 12, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, + anon_sym_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_GT_GT_EQ, + anon_sym_const, anon_sym_DOT, - ACTIONS(3757), 28, + ACTIONS(4033), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, + anon_sym_LT_LT, anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_GT2, - [32172] = 6, + anon_sym_requires, + [52037] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4352), 1, - anon_sym_COLON, - STATE(2315), 1, - sym__enum_base_clause, - STATE(2331), 1, - sym_enumerator_list, - ACTIONS(4350), 16, + ACTIONS(5065), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -231146,9 +261006,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4348), 29, + ACTIONS(5063), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -231158,8 +261020,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -231171,88 +261036,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [32234] = 4, + anon_sym_DASH_GT, + [52098] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4295), 1, - anon_sym_COLON_COLON, - ACTIONS(4293), 11, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + STATE(2487), 1, + sym_argument_list, + ACTIONS(4864), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4854), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4936), 14, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_const, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(4291), 36, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4934), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [32292] = 4, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [52173] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4295), 1, - anon_sym_COLON_COLON, - ACTIONS(4293), 11, + ACTIONS(4014), 1, + anon_sym_COLON, + ACTIONS(4924), 1, + anon_sym_LBRACE, + STATE(3158), 1, + sym_field_declaration_list, + STATE(5754), 1, + sym_virtual_specifier, + STATE(6415), 1, + sym_base_class_clause, + ACTIONS(4016), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4039), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_GT_GT, anon_sym_const, - anon_sym_COLON, anon_sym_DOT, - ACTIONS(4291), 36, + ACTIONS(4037), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -231261,14 +261151,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -231278,18 +261162,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [32350] = 3, + [52246] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4398), 15, + ACTIONS(4799), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -231304,8 +261193,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4396), 32, + ACTIONS(4801), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -231316,7 +261208,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -231332,16 +261223,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [32405] = 3, + [52307] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4217), 18, + ACTIONS(4716), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -231351,25 +261246,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(4215), 29, - sym_raw_string_literal, + ACTIONS(4711), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -231377,23 +261277,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_GT2, - [32460] = 3, + [52368] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4402), 15, + ACTIONS(5069), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -231408,8 +261309,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4400), 32, + ACTIONS(5067), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -231420,7 +261324,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -231436,47 +261339,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [32515] = 3, + [52429] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4406), 15, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4862), 1, + anon_sym_LT_EQ_GT, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(4888), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4890), 1, + anon_sym_AMP_AMP, + ACTIONS(4892), 1, + anon_sym_PIPE, + ACTIONS(4896), 1, + anon_sym_AMP, + ACTIONS(4902), 1, + anon_sym_GT_EQ, + ACTIONS(4906), 1, + anon_sym_or, + ACTIONS(4908), 1, + anon_sym_and, + ACTIONS(4910), 1, + anon_sym_bitor, + ACTIONS(4912), 1, + anon_sym_bitand, + ACTIONS(5073), 1, + anon_sym_EQ, + STATE(2487), 1, + sym_argument_list, + ACTIONS(4852), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(4858), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4864), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4894), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(4854), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(4898), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(4900), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(4404), 32, + ACTIONS(5071), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -231488,16 +261426,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [52534] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4014), 1, + anon_sym_COLON, + ACTIONS(4924), 1, + anon_sym_LBRACE, + STATE(3169), 1, + sym_field_declaration_list, + STATE(5780), 1, + sym_virtual_specifier, + STATE(6403), 1, + sym_base_class_clause, + ACTIONS(4016), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4010), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4008), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - [32570] = 3, + anon_sym_GT2, + anon_sym_requires, + [52607] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4410), 15, + ACTIONS(4161), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -231512,8 +261511,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4408), 32, + ACTIONS(4163), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -231524,7 +261526,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -231540,16 +261541,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [32625] = 3, + [52668] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4414), 15, + ACTIONS(5077), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -231564,8 +261569,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4412), 32, + ACTIONS(5075), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -231576,7 +261584,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -231592,16 +261599,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [32680] = 3, + [52729] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4418), 15, + ACTIONS(3478), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(3480), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -231616,8 +261630,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4416), 32, + anon_sym_DASH_GT, + ACTIONS(3485), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -231627,12 +261645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -231644,16 +261657,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [32735] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [52792] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4422), 15, + ACTIONS(4636), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -231663,28 +261681,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4420), 32, + ACTIONS(4634), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -231692,20 +261709,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - [32790] = 3, + anon_sym_GT2, + [52852] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4839), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + ACTIONS(4841), 26, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + anon_sym_DASH_GT, + sym_literal_suffix, + [52912] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4426), 15, + ACTIONS(4083), 1, + sym_literal_suffix, + ACTIONS(3414), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -231720,8 +261802,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(4424), 32, + anon_sym_DASH_GT, + ACTIONS(3419), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -231731,12 +261823,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -231751,13 +261838,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [32845] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [52974] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4430), 15, + ACTIONS(4429), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -231767,28 +261853,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4428), 32, + ACTIONS(4427), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -231796,128 +261881,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - [32900] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1718), 1, - sym_string_literal, - ACTIONS(4436), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(4434), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4432), 35, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [32959] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1719), 1, - sym_string_literal, - ACTIONS(4436), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(4434), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4432), 35, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [33018] = 3, + anon_sym_GT2, + [53034] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4440), 15, + ACTIONS(4656), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -231927,28 +261910,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4438), 32, + ACTIONS(4654), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -231956,20 +261938,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - [33073] = 3, + anon_sym_GT2, + [53094] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4444), 15, + ACTIONS(4433), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -231979,28 +261967,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4442), 32, + ACTIONS(4431), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -232008,51 +261995,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - [33128] = 3, + anon_sym_GT2, + [53154] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(4370), 15, + ACTIONS(4177), 1, + anon_sym_LPAREN2, + ACTIONS(4904), 1, + anon_sym_EQ, + ACTIONS(5083), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5085), 1, + anon_sym_AMP_AMP, + ACTIONS(5087), 1, + anon_sym_PIPE, + ACTIONS(5091), 1, + anon_sym_AMP, + ACTIONS(5097), 1, + anon_sym_GT_EQ, + ACTIONS(5101), 1, + anon_sym_LBRACK, + ACTIONS(5103), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5105), 1, + anon_sym_or, + ACTIONS(5107), 1, + anon_sym_and, + ACTIONS(5109), 1, + anon_sym_bitor, + ACTIONS(5111), 1, + anon_sym_bitand, + STATE(2713), 1, + sym_argument_list, + ACTIONS(5079), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(5089), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5099), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5113), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5115), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5081), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(5093), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5095), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(4368), 32, + ACTIONS(4886), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [53256] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4177), 1, anon_sym_LPAREN2, + ACTIONS(5073), 1, + anon_sym_EQ, + ACTIONS(5083), 1, anon_sym_PIPE_PIPE, + ACTIONS(5085), 1, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(5087), 1, + anon_sym_PIPE, + ACTIONS(5091), 1, + anon_sym_AMP, + ACTIONS(5097), 1, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(5101), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, + ACTIONS(5103), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5105), 1, + anon_sym_or, + ACTIONS(5107), 1, + anon_sym_and, + ACTIONS(5109), 1, + anon_sym_bitor, + ACTIONS(5111), 1, + anon_sym_bitand, + STATE(2713), 1, + sym_argument_list, + ACTIONS(5079), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5089), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5099), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5113), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5115), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5081), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5093), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5095), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5071), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -232064,74 +262162,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [33183] = 9, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [53358] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON, - ACTIONS(4446), 1, - anon_sym_LBRACE, - STATE(2916), 1, - sym_field_declaration_list, - STATE(5477), 1, - sym_virtual_specifier, - STATE(6178), 1, - sym_base_class_clause, - ACTIONS(4160), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4195), 12, + ACTIONS(4541), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_const, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4193), 28, + ACTIONS(4539), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_auto, anon_sym_decltype, anon_sym_GT2, - anon_sym_requires, - [33250] = 3, + [53418] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4450), 15, + ACTIONS(4940), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -232145,9 +262241,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4448), 32, + anon_sym_DASH_GT, + ACTIONS(4938), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -232157,12 +262258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -232174,16 +262270,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [33305] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [53478] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4454), 15, + ACTIONS(3935), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4728), 1, + anon_sym_LBRACK, + ACTIONS(4722), 2, + anon_sym_RPAREN, + anon_sym_LPAREN2, + ACTIONS(3414), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -232198,23 +262306,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4452), 32, + anon_sym_DASH_GT, + ACTIONS(3419), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -232226,16 +262330,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [33360] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [53544] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4458), 15, + ACTIONS(3935), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4728), 1, + anon_sym_LBRACK, + ACTIONS(4722), 2, + anon_sym_RPAREN, + anon_sym_LPAREN2, + ACTIONS(3414), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -232250,23 +262366,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4456), 32, + anon_sym_DASH_GT, + ACTIONS(3419), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -232278,16 +262390,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [33415] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [53610] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4462), 15, + ACTIONS(4441), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -232297,28 +262414,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4460), 32, + ACTIONS(4439), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -232326,20 +262442,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - [33470] = 3, + anon_sym_GT2, + [53670] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4466), 15, + ACTIONS(4640), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -232349,28 +262471,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4464), 32, + ACTIONS(4638), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -232378,20 +262499,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - [33525] = 3, + anon_sym_GT2, + [53730] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4470), 15, + ACTIONS(5117), 1, + anon_sym_LT, + STATE(2704), 1, + sym_template_argument_list, + ACTIONS(4954), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -232402,12 +262533,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4468), 32, + anon_sym_DASH_GT, + ACTIONS(4952), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -232417,12 +262551,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -232434,44 +262563,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [33580] = 9, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [53794] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON, - ACTIONS(4446), 1, - anon_sym_LBRACE, - STATE(2887), 1, - sym_field_declaration_list, - STATE(5458), 1, - sym_virtual_specifier, - STATE(6255), 1, - sym_base_class_clause, - ACTIONS(4160), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4199), 12, + STATE(2914), 1, + sym_enumerator_list, + ACTIONS(4269), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(4197), 28, + ACTIONS(4267), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -232480,8 +262602,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -232489,71 +262617,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, + anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_GT2, anon_sym_requires, - [33647] = 3, + [53856] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4474), 15, + ACTIONS(5120), 1, + sym_auto, + ACTIONS(5122), 1, + anon_sym_decltype, + STATE(2722), 1, + sym_decltype_auto, + ACTIONS(4277), 10, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_const, anon_sym_DOT, - ACTIONS(4472), 32, + ACTIONS(4275), 39, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, anon_sym_COLON, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [33702] = 3, + anon_sym_requires, + [53922] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4478), 15, + ACTIONS(4415), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -232563,28 +262705,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4476), 32, + ACTIONS(4413), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -232592,20 +262733,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - [33757] = 3, + anon_sym_GT2, + [53982] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4482), 15, + ACTIONS(4177), 1, + anon_sym_LPAREN2, + ACTIONS(5101), 1, + anon_sym_LBRACK, + STATE(2713), 1, + sym_argument_list, + ACTIONS(5115), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5005), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -232620,23 +262776,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_DOT, - ACTIONS(4480), 32, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(5003), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -232648,16 +262799,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [33812] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [54050] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4486), 15, + ACTIONS(4290), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -232667,28 +262823,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4484), 32, + ACTIONS(4288), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -232696,20 +262851,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - [33867] = 3, + anon_sym_GT2, + [54110] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4490), 15, + ACTIONS(1931), 1, + anon_sym_LBRACE, + ACTIONS(4419), 1, + anon_sym_LPAREN2, + STATE(2978), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4324), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -232719,28 +262887,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4488), 32, + ACTIONS(4322), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -232748,20 +262913,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [33922] = 3, + anon_sym_GT2, + [54176] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4494), 15, + ACTIONS(4485), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -232771,28 +262940,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4492), 32, + ACTIONS(4483), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -232800,37 +262968,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - [33977] = 11, + anon_sym_GT2, + [54236] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2843), 1, - anon_sym_LBRACE, - ACTIONS(4496), 1, - anon_sym_LPAREN2, - ACTIONS(4498), 1, - anon_sym_LBRACK, - ACTIONS(4500), 1, - sym_auto, - ACTIONS(4502), 1, - anon_sym_decltype, - STATE(2702), 1, - sym_new_declarator, - STATE(2736), 1, - sym_decltype_auto, - STATE(3013), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4252), 17, + ACTIONS(4411), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -232847,14 +263004,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4250), 21, + ACTIONS(4409), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -232865,15 +263028,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, anon_sym_GT2, - [34048] = 3, + [54296] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4506), 15, + ACTIONS(4445), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -232883,28 +263054,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4504), 32, + ACTIONS(4443), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -232912,104 +263082,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - [34103] = 3, + anon_sym_GT2, + [54356] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4510), 15, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, + ACTIONS(3424), 1, + anon_sym_COLON_COLON, + ACTIONS(5124), 1, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(4508), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(2957), 1, + sym_template_argument_list, + ACTIONS(3426), 6, anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_LBRACK_LBRACK, + ACTIONS(4095), 43, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - [34158] = 3, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_using, + anon_sym_concept, + [54422] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4514), 15, + ACTIONS(4177), 1, + anon_sym_LPAREN2, + ACTIONS(5037), 1, + anon_sym_EQ, + ACTIONS(5083), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5085), 1, + anon_sym_AMP_AMP, + ACTIONS(5087), 1, + anon_sym_PIPE, + ACTIONS(5091), 1, + anon_sym_AMP, + ACTIONS(5097), 1, + anon_sym_GT_EQ, + ACTIONS(5101), 1, + anon_sym_LBRACK, + ACTIONS(5103), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5105), 1, + anon_sym_or, + ACTIONS(5107), 1, + anon_sym_and, + ACTIONS(5109), 1, + anon_sym_bitor, + ACTIONS(5111), 1, + anon_sym_bitand, + ACTIONS(5126), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5128), 1, + anon_sym_QMARK, + STATE(2713), 1, + sym_argument_list, + ACTIONS(5079), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(5089), 2, anon_sym_CARET, - anon_sym_AMP, + anon_sym_xor, + ACTIONS(5099), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5113), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5115), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5081), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5093), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5095), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(4512), 32, - anon_sym_DOT_DOT_DOT, + ACTIONS(5035), 17, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -233020,16 +263233,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [34213] = 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [54528] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 15, + ACTIONS(4648), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -233039,28 +263251,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4516), 32, + ACTIONS(4646), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -233068,72 +263279,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - [34268] = 3, + anon_sym_GT2, + [54588] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4522), 15, + STATE(2810), 1, + sym_enumerator_list, + ACTIONS(4273), 10, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_const, anon_sym_DOT, - ACTIONS(4520), 32, + ACTIONS(4271), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, anon_sym_COLON, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - [34323] = 3, + anon_sym_requires, + [54650] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4526), 15, + ACTIONS(4517), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -233143,28 +263366,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4524), 32, + ACTIONS(4515), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -233172,20 +263394,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - [34378] = 3, + anon_sym_GT2, + [54710] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4530), 15, + ACTIONS(4600), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -233195,28 +263423,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4528), 32, + ACTIONS(4598), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -233224,20 +263451,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - [34433] = 3, + anon_sym_GT2, + [54770] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4534), 15, + ACTIONS(4521), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -233247,28 +263480,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4532), 32, + ACTIONS(4519), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -233276,20 +263508,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - [34488] = 3, + anon_sym_GT2, + [54830] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4538), 15, + ACTIONS(4604), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -233299,28 +263537,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4536), 32, + ACTIONS(4602), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -233328,20 +263565,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - [34543] = 3, + anon_sym_GT2, + [54890] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4542), 15, + ACTIONS(4584), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -233351,28 +263594,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4540), 32, + ACTIONS(4582), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -233380,27 +263622,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - [34598] = 6, + anon_sym_GT2, + [54950] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2320), 1, - anon_sym_LBRACE, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - STATE(2616), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4546), 15, + ACTIONS(4608), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -233410,26 +263651,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4544), 28, + ACTIONS(4606), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -233437,18 +263679,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [34659] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [55010] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4550), 15, + ACTIONS(4125), 1, + anon_sym_COLON_COLON, + ACTIONS(4290), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -233464,7 +263716,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_DOT, - ACTIONS(4548), 32, + anon_sym_DASH_GT, + ACTIONS(4288), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -233474,12 +263727,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -233492,15 +263741,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - [34714] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [55072] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4554), 15, + ACTIONS(4580), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -233510,28 +263766,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4552), 32, + ACTIONS(4578), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -233539,20 +263794,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - [34769] = 3, + anon_sym_GT2, + [55132] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4558), 15, + ACTIONS(3424), 1, + anon_sym_COLON_COLON, + ACTIONS(3426), 1, + anon_sym_LBRACE, + ACTIONS(3995), 1, + anon_sym_LT, + STATE(3632), 1, + sym_template_argument_list, + ACTIONS(3998), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(4000), 12, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(3414), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -233562,49 +263847,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4556), 32, + ACTIONS(3419), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_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_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [34824] = 3, + anon_sym_GT2, + [55204] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4562), 15, + ACTIONS(4686), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -233614,28 +263886,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4560), 32, + ACTIONS(4684), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -233643,24 +263914,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - [34879] = 5, + anon_sym_GT2, + [55264] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, - anon_sym_COLON_COLON, - STATE(2626), 1, - sym_template_argument_list, - ACTIONS(4346), 16, + ACTIONS(4829), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -233674,10 +263947,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4344), 29, + ACTIONS(4827), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -233687,8 +263964,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -233700,34 +263976,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [34938] = 11, + [55324] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2843), 1, - anon_sym_LBRACE, - ACTIONS(4496), 1, - anon_sym_LPAREN2, - ACTIONS(4498), 1, - anon_sym_LBRACK, - ACTIONS(4500), 1, - sym_auto, - ACTIONS(4502), 1, - anon_sym_decltype, - STATE(2736), 1, - sym_decltype_auto, - STATE(2754), 1, - sym_new_declarator, - STATE(3076), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4237), 17, + ACTIONS(4290), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -233744,14 +264007,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4235), 21, + ACTIONS(4288), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -233762,15 +264031,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, anon_sym_GT2, - [35009] = 3, + [55384] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4566), 15, + ACTIONS(4573), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -233780,28 +264057,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4564), 32, + ACTIONS(4571), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -233809,28 +264085,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - [35064] = 7, + anon_sym_GT2, + [55444] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, - anon_sym_COLON_COLON, - ACTIONS(3757), 1, - anon_sym_LBRACE, - ACTIONS(4568), 1, - anon_sym_LT, - STATE(2302), 1, - sym_template_argument_list, - ACTIONS(3759), 15, + ACTIONS(4177), 1, + anon_sym_LPAREN2, + ACTIONS(5101), 1, + anon_sym_LBRACK, + STATE(2713), 1, + sym_argument_list, + ACTIONS(5113), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5115), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4920), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -233841,25 +264127,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(3764), 28, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4918), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -233871,45 +264154,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [35127] = 3, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [55514] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(4573), 15, + ACTIONS(4177), 1, + anon_sym_LPAREN2, + ACTIONS(5101), 1, + anon_sym_LBRACK, + ACTIONS(5103), 1, + anon_sym_LT_EQ_GT, + STATE(2713), 1, + sym_argument_list, + ACTIONS(5079), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(5099), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5113), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5115), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5081), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4856), 10, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, - anon_sym_DOT, - ACTIONS(4571), 32, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4850), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -233921,16 +264221,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [35182] = 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [55592] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4577), 15, + ACTIONS(4632), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -233940,28 +264242,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4575), 32, + ACTIONS(4630), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -233969,20 +264270,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - [35237] = 3, + anon_sym_GT2, + [55652] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4581), 15, + ACTIONS(4569), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -233992,28 +264299,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4579), 32, + ACTIONS(4567), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -234021,144 +264327,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [35292] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON, - ACTIONS(4446), 1, - anon_sym_LBRACE, - STATE(2960), 1, - sym_field_declaration_list, - STATE(5479), 1, - sym_virtual_specifier, - STATE(6173), 1, - sym_base_class_clause, - ACTIONS(4160), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4175), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(4173), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_auto, anon_sym_decltype, anon_sym_GT2, - anon_sym_requires, - [35359] = 9, + [55712] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON, - ACTIONS(4446), 1, - anon_sym_LBRACE, - STATE(2955), 1, - sym_field_declaration_list, - STATE(5484), 1, - sym_virtual_specifier, - STATE(6170), 1, - sym_base_class_clause, - ACTIONS(4160), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4154), 12, + ACTIONS(4848), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_const, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4152), 28, + anon_sym_DASH_GT, + ACTIONS(4846), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - anon_sym_requires, - [35426] = 7, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [55772] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, - anon_sym_COLON_COLON, - ACTIONS(3740), 1, - anon_sym_LBRACE, - ACTIONS(4583), 1, - anon_sym_LT, - STATE(2302), 1, - sym_template_argument_list, - ACTIONS(3724), 15, + ACTIONS(4525), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -234168,26 +264413,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_COLON, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(3716), 28, + ACTIONS(4523), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -234195,72 +264441,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [35489] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1713), 1, - sym_string_literal, - ACTIONS(4436), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(4434), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4432), 35, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [35548] = 3, + anon_sym_GT2, + [55832] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4588), 15, + ACTIONS(4628), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -234270,28 +264470,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4586), 32, + ACTIONS(4626), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -234299,20 +264498,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - [35603] = 3, + anon_sym_GT2, + [55892] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4592), 15, + STATE(2732), 1, + sym_enumerator_list, + ACTIONS(4273), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -234328,7 +264535,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_DOT, - ACTIONS(4590), 32, + anon_sym_DASH_GT, + ACTIONS(4271), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -234338,12 +264546,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -234356,46 +264560,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - [35658] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [55954] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(4596), 15, + ACTIONS(4177), 1, + anon_sym_LPAREN2, + ACTIONS(4961), 1, + anon_sym_EQ, + ACTIONS(5083), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5085), 1, + anon_sym_AMP_AMP, + ACTIONS(5087), 1, + anon_sym_PIPE, + ACTIONS(5091), 1, + anon_sym_AMP, + ACTIONS(5097), 1, + anon_sym_GT_EQ, + ACTIONS(5101), 1, + anon_sym_LBRACK, + ACTIONS(5103), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5105), 1, + anon_sym_or, + ACTIONS(5107), 1, + anon_sym_and, + ACTIONS(5109), 1, + anon_sym_bitor, + ACTIONS(5111), 1, + anon_sym_bitand, + STATE(2713), 1, + sym_argument_list, + ACTIONS(5079), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(5089), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5099), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5113), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5115), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5081), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(5093), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5095), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(4594), 32, + ACTIONS(4959), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -234407,18 +264645,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [35713] = 4, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [56056] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4295), 1, - anon_sym_COLON_COLON, - ACTIONS(4297), 18, + ACTIONS(4620), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -234434,10 +264669,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_COLON, anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4299), 28, + ACTIONS(4618), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -234457,131 +264694,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_GT2, - [35770] = 5, + [56116] = 3, ACTIONS(3), 1, sym_comment, - STATE(2268), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(4602), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(4598), 15, + ACTIONS(4616), 20, anon_sym_DASH, anon_sym_PLUS, - sym_primitive_type, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - sym_nullptr, - ACTIONS(4600), 22, - sym_raw_string_literal, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, anon_sym_STAR, - anon_sym_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [35829] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON, - ACTIONS(4446), 1, - anon_sym_LBRACE, - STATE(2871), 1, - sym_field_declaration_list, - STATE(5505), 1, - sym_virtual_specifier, - STATE(6096), 1, - sym_base_class_clause, - ACTIONS(4160), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4164), 12, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_const, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4162), 28, + ACTIONS(4614), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_auto, anon_sym_decltype, anon_sym_GT2, - anon_sym_requires, - [35896] = 3, + [56176] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4293), 17, + ACTIONS(4359), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -234598,8 +264784,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4291), 30, + ACTIONS(4357), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -234609,7 +264798,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -234620,20 +264808,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_GT2, - anon_sym_requires, - [35951] = 3, + [56236] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4607), 15, + ACTIONS(4177), 1, + anon_sym_LPAREN2, + ACTIONS(5101), 1, + anon_sym_LBRACK, + STATE(2713), 1, + sym_argument_list, + ACTIONS(5115), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5023), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -234648,23 +264848,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_DOT, - ACTIONS(4605), 32, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(5021), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -234676,132 +264871,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [36006] = 9, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [56304] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON, - ACTIONS(4446), 1, + ACTIONS(1931), 1, anon_sym_LBRACE, - STATE(2925), 1, - sym_field_declaration_list, - STATE(5460), 1, - sym_virtual_specifier, - STATE(6230), 1, - sym_base_class_clause, - ACTIONS(4160), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4189), 12, + ACTIONS(4419), 1, + anon_sym_LPAREN2, + STATE(3035), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4328), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_const, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4187), 28, + ACTIONS(4326), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, anon_sym_GT2, - anon_sym_requires, - [36073] = 9, + [56370] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON, - ACTIONS(4446), 1, - anon_sym_LBRACE, - STATE(2949), 1, - sym_field_declaration_list, - STATE(5463), 1, - sym_virtual_specifier, - STATE(6225), 1, - sym_base_class_clause, - ACTIONS(4160), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4185), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(4183), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(4177), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + ACTIONS(5101), 1, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + STATE(2713), 1, + sym_argument_list, + ACTIONS(5113), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(5115), 2, + anon_sym_DOT, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - anon_sym_requires, - [36140] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4611), 15, + ACTIONS(5043), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -234816,23 +264972,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_DOT, - ACTIONS(4609), 32, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(5041), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -234844,16 +264995,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [36195] = 3, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [56440] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4615), 15, + ACTIONS(5130), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(4829), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -234867,12 +265023,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4613), 32, + ACTIONS(4827), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -234880,11 +265039,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -234896,74 +265052,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [36250] = 9, + [56502] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON, - ACTIONS(4446), 1, - anon_sym_LBRACE, - STATE(2898), 1, - sym_field_declaration_list, - STATE(5370), 1, - sym_virtual_specifier, - STATE(6085), 1, - sym_base_class_clause, - ACTIONS(4160), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4168), 12, + ACTIONS(4481), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_const, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4166), 28, + ACTIONS(4479), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_auto, anon_sym_decltype, anon_sym_GT2, - anon_sym_requires, - [36317] = 3, + [56562] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4619), 15, + ACTIONS(4449), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -234973,28 +265132,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4617), 32, + ACTIONS(4447), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -235002,20 +265160,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - [36372] = 3, + anon_sym_GT2, + [56622] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4623), 15, + ACTIONS(4407), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -235025,28 +265189,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4621), 32, + ACTIONS(4405), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -235054,20 +265217,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - [36427] = 3, + anon_sym_GT2, + [56682] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4627), 15, + ACTIONS(4680), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -235077,28 +265246,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4625), 32, + ACTIONS(4678), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -235106,20 +265274,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - [36482] = 3, + anon_sym_GT2, + [56742] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4631), 15, + ACTIONS(4177), 1, + anon_sym_LPAREN2, + ACTIONS(5101), 1, + anon_sym_LBRACK, + STATE(2713), 1, + sym_argument_list, + ACTIONS(5113), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5115), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4950), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -235134,23 +265320,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_DOT, - ACTIONS(4629), 32, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4948), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -235162,16 +265343,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [36537] = 3, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [56812] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4635), 15, + ACTIONS(4660), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -235181,28 +265365,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4633), 32, + ACTIONS(4658), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -235210,20 +265393,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - [36592] = 3, + anon_sym_GT2, + [56872] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4233), 18, + ACTIONS(3424), 1, + anon_sym_COLON_COLON, + ACTIONS(3435), 1, + anon_sym_LBRACE, + ACTIONS(3972), 1, + anon_sym_LT, + STATE(2807), 1, + sym_template_argument_list, + ACTIONS(3437), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -235235,15 +265432,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(4231), 29, - sym_raw_string_literal, + ACTIONS(3442), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -235262,27 +265459,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, anon_sym_GT2, - [36647] = 6, + [56940] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2320), 1, - anon_sym_LBRACE, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - STATE(2562), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4639), 15, + ACTIONS(5132), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(4829), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -235296,22 +265489,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4637), 28, + anon_sym_DASH_GT, + ACTIONS(4827), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -235323,85 +265517,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [36708] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1716), 1, - sym_string_literal, - ACTIONS(4436), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(4434), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4432), 35, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [36767] = 11, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [57002] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2843), 1, - anon_sym_LBRACE, - ACTIONS(4496), 1, - anon_sym_LPAREN2, - ACTIONS(4498), 1, - anon_sym_LBRACK, - ACTIONS(4500), 1, - sym_auto, - ACTIONS(4502), 1, - anon_sym_decltype, - STATE(2736), 1, - sym_decltype_auto, - STATE(2757), 1, - sym_new_declarator, - STATE(3014), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4223), 17, + ACTIONS(4676), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -235418,14 +265548,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4219), 21, + ACTIONS(4674), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -235436,15 +265572,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, anon_sym_GT2, - [36838] = 3, + [57062] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4643), 15, + ACTIONS(4457), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -235454,28 +265598,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4641), 32, + ACTIONS(4455), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -235483,78 +265626,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - [36893] = 9, + anon_sym_GT2, + [57122] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON, - ACTIONS(4446), 1, - anon_sym_LBRACE, - STATE(2891), 1, - sym_field_declaration_list, - STATE(5512), 1, - sym_virtual_specifier, - STATE(6083), 1, - sym_base_class_clause, - ACTIONS(4160), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4209), 12, + ACTIONS(4652), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_const, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4207), 28, + ACTIONS(4650), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_auto, anon_sym_decltype, anon_sym_GT2, - anon_sym_requires, - [36960] = 3, + [57182] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4647), 15, + ACTIONS(4672), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -235564,28 +265712,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4645), 32, + ACTIONS(4670), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -235593,20 +265740,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - [37015] = 3, + anon_sym_GT2, + [57242] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4651), 15, + ACTIONS(4312), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -235616,28 +265769,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4649), 32, + ACTIONS(4310), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -235645,51 +265797,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - [37070] = 3, + anon_sym_GT2, + [57302] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4655), 15, + ACTIONS(4177), 1, + anon_sym_LPAREN2, + ACTIONS(5101), 1, + anon_sym_LBRACK, + STATE(2713), 1, + sym_argument_list, + ACTIONS(5079), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(5099), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5113), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5115), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5081), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4936), 10, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, - anon_sym_DOT, - ACTIONS(4653), 32, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4934), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -235701,21 +265869,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [37125] = 3, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [57378] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4659), 15, + ACTIONS(4177), 1, + anon_sym_LPAREN2, + ACTIONS(5101), 1, + anon_sym_LBRACK, + STATE(2713), 1, + sym_argument_list, + ACTIONS(5079), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(5113), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5115), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5081), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4936), 12, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -235725,23 +265910,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_DOT, - ACTIONS(4657), 32, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4934), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -235753,47 +265933,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [37180] = 3, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [57452] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(4663), 15, + ACTIONS(4177), 1, + anon_sym_LPAREN2, + ACTIONS(5101), 1, + anon_sym_LBRACK, + ACTIONS(5103), 1, + anon_sym_LT_EQ_GT, + STATE(2713), 1, + sym_argument_list, + ACTIONS(5079), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(5099), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5113), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5115), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5081), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4936), 10, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, - anon_sym_DOT, - ACTIONS(4661), 32, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4934), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -235805,39 +266000,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [37235] = 6, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [57530] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2320), 1, - anon_sym_LBRACE, - ACTIONS(4221), 1, + ACTIONS(4177), 1, anon_sym_LPAREN2, - STATE(2570), 2, + ACTIONS(5097), 1, + anon_sym_GT_EQ, + ACTIONS(5101), 1, + anon_sym_LBRACK, + ACTIONS(5103), 1, + anon_sym_LT_EQ_GT, + STATE(2713), 1, sym_argument_list, - sym_initializer_list, - ACTIONS(4667), 15, + ACTIONS(5079), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(5099), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5113), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5115), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5081), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(5095), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(4936), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ, - anon_sym_DOT, - ACTIONS(4665), 28, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4934), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -235845,12 +266057,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -235862,45 +266068,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [37296] = 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [57612] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(4671), 15, + ACTIONS(4177), 1, + anon_sym_LPAREN2, + ACTIONS(5097), 1, + anon_sym_GT_EQ, + ACTIONS(5101), 1, + anon_sym_LBRACK, + ACTIONS(5103), 1, + anon_sym_LT_EQ_GT, + STATE(2713), 1, + sym_argument_list, + ACTIONS(5079), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(5099), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5113), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5115), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5081), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(5093), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5095), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(4936), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ, - anon_sym_DOT, - ACTIONS(4669), 32, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4934), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -235912,49 +266138,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [37351] = 6, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [57696] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, - anon_sym_COLON_COLON, - ACTIONS(4268), 1, - anon_sym_LT, - STATE(2085), 1, - sym_template_argument_list, - ACTIONS(3714), 15, + ACTIONS(4177), 1, + anon_sym_LPAREN2, + ACTIONS(5091), 1, + anon_sym_AMP, + ACTIONS(5097), 1, + anon_sym_GT_EQ, + ACTIONS(5101), 1, + anon_sym_LBRACK, + ACTIONS(5103), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5111), 1, + anon_sym_bitand, + STATE(2713), 1, + sym_argument_list, + ACTIONS(5079), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(5099), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5113), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5115), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5081), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(5093), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5095), 3, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_LT, + ACTIONS(4936), 6, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3722), 29, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4934), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -235966,17 +266210,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [37412] = 3, + [57784] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4675), 15, + ACTIONS(4363), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -235986,28 +266229,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4673), 32, + ACTIONS(4361), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -236015,56 +266257,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - [37467] = 6, + anon_sym_GT2, + [57844] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2320), 1, - anon_sym_LBRACE, - ACTIONS(4221), 1, + ACTIONS(4177), 1, anon_sym_LPAREN2, - STATE(2600), 2, + ACTIONS(5091), 1, + anon_sym_AMP, + ACTIONS(5097), 1, + anon_sym_GT_EQ, + ACTIONS(5101), 1, + anon_sym_LBRACK, + ACTIONS(5103), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5111), 1, + anon_sym_bitand, + STATE(2713), 1, sym_argument_list, - sym_initializer_list, - ACTIONS(4679), 15, + ACTIONS(5079), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(5089), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5099), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5113), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5115), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5081), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(5093), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5095), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(4936), 4, + anon_sym_PIPE, anon_sym_EQ, - anon_sym_DOT, - ACTIONS(4677), 28, + anon_sym_or, + anon_sym_and, + ACTIONS(4934), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -236076,45 +266339,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [37528] = 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [57934] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4370), 15, + ACTIONS(4177), 1, + anon_sym_LPAREN2, + ACTIONS(5087), 1, + anon_sym_PIPE, + ACTIONS(5091), 1, + anon_sym_AMP, + ACTIONS(5097), 1, + anon_sym_GT_EQ, + ACTIONS(5101), 1, + anon_sym_LBRACK, + ACTIONS(5103), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5109), 1, + anon_sym_bitor, + ACTIONS(5111), 1, + anon_sym_bitand, + STATE(2713), 1, + sym_argument_list, + ACTIONS(5079), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(5089), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5099), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5113), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5115), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4936), 3, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + ACTIONS(5081), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(5093), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5095), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(4368), 32, + ACTIONS(4934), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -236126,33 +266414,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [58028] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4177), 1, + anon_sym_LPAREN2, + ACTIONS(5085), 1, + anon_sym_AMP_AMP, + ACTIONS(5087), 1, + anon_sym_PIPE, + ACTIONS(5091), 1, + anon_sym_AMP, + ACTIONS(5097), 1, + anon_sym_GT_EQ, + ACTIONS(5101), 1, + anon_sym_LBRACK, + ACTIONS(5103), 1, anon_sym_LT_EQ_GT, + ACTIONS(5107), 1, + anon_sym_and, + ACTIONS(5109), 1, + anon_sym_bitor, + ACTIONS(5111), 1, + anon_sym_bitand, + STATE(2713), 1, + sym_argument_list, + ACTIONS(4936), 2, + anon_sym_EQ, + anon_sym_or, + ACTIONS(5079), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5089), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5099), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5113), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(5115), 2, + anon_sym_DOT, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [37583] = 11, + ACTIONS(5081), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5093), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5095), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4934), 20, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [58126] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2843), 1, - anon_sym_LBRACE, - ACTIONS(4496), 1, + ACTIONS(4177), 1, anon_sym_LPAREN2, - ACTIONS(4498), 1, + ACTIONS(5101), 1, anon_sym_LBRACK, - ACTIONS(4500), 1, - sym_auto, - ACTIONS(4502), 1, - anon_sym_decltype, - STATE(2648), 1, - sym_new_declarator, - STATE(2736), 1, - sym_decltype_auto, - STATE(2983), 2, + STATE(2713), 1, sym_argument_list, - sym_initializer_list, - ACTIONS(4245), 17, + ACTIONS(5113), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5115), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4936), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -236162,21 +266520,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(4243), 21, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4934), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -236184,23 +266544,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [58196] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4177), 1, + anon_sym_LPAREN2, + ACTIONS(5101), 1, + anon_sym_LBRACK, + STATE(2713), 1, + sym_argument_list, + ACTIONS(5113), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(5115), 2, + anon_sym_DOT, anon_sym_DASH_GT, - anon_sym_GT2, - [37654] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4683), 15, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(5081), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4936), 14, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -236210,23 +266588,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_DOT, - ACTIONS(4681), 32, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4934), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -236238,16 +266611,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [37709] = 3, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [58268] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3759), 16, + ACTIONS(3935), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4728), 1, + anon_sym_LBRACK, + ACTIONS(4722), 2, + anon_sym_RPAREN, + anon_sym_LPAREN2, + ACTIONS(3937), 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(3414), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -236261,24 +266648,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(3764), 30, + anon_sym_DASH_GT, + ACTIONS(3419), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -236291,17 +266674,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_try, - [37763] = 4, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [58336] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3816), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(3818), 16, + ACTIONS(4371), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -236311,27 +266694,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_COLON, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(3823), 28, + ACTIONS(4369), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -236339,24 +266722,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [37819] = 6, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [58396] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4685), 1, - anon_sym_COLON, - STATE(2565), 1, - sym__enum_base_clause, - STATE(2762), 1, - sym_enumerator_list, - ACTIONS(4340), 17, + ACTIONS(1931), 1, + anon_sym_LBRACE, + ACTIONS(4419), 1, + anon_sym_LPAREN2, + STATE(2976), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4553), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -236373,16 +266765,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4338), 26, + ACTIONS(4551), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -236394,72 +266787,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, anon_sym_GT2, - [37879] = 4, + [58462] = 6, ACTIONS(3), 1, sym_comment, - STATE(2393), 1, - sym_enumerator_list, - ACTIONS(4381), 10, + ACTIONS(4707), 1, + sym_auto, + ACTIONS(4709), 1, + anon_sym_decltype, + STATE(2789), 1, + sym_decltype_auto, + ACTIONS(4277), 16, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_const, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(4379), 35, + anon_sym_DASH_GT, + ACTIONS(4275), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [37935] = 4, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [58528] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3816), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(3818), 17, + ACTIONS(4461), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -236469,27 +266871,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_COLON, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(3823), 27, + ACTIONS(4459), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -236497,32 +266899,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [37991] = 9, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [58588] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, - anon_sym_COLON_COLON, - ACTIONS(3740), 1, - anon_sym_LBRACE, - ACTIONS(4057), 1, - anon_sym_LT, - ACTIONS(4689), 1, - anon_sym_LBRACK, - STATE(2574), 1, - sym_template_argument_list, - ACTIONS(4687), 3, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(3724), 15, + ACTIONS(4565), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -236532,20 +266928,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3716), 23, + ACTIONS(4563), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -236553,77 +266956,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [38057] = 4, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [58648] = 3, ACTIONS(3), 1, sym_comment, - STATE(2504), 1, - sym_enumerator_list, - ACTIONS(4391), 10, + ACTIONS(4383), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_const, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4389), 35, + ACTIONS(4381), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_requires, - [38113] = 6, + anon_sym_GT2, + [58708] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4691), 1, - sym_auto, - ACTIONS(4693), 1, - anon_sym_decltype, - STATE(2476), 1, - sym_decltype_auto, - ACTIONS(4366), 10, + ACTIONS(4125), 1, + anon_sym_COLON_COLON, + ACTIONS(4290), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -236633,8 +267044,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_const, + anon_sym_COLON, anon_sym_DOT, - ACTIONS(4364), 33, + ACTIONS(4288), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -236661,19 +267073,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, anon_sym_requires, - [38173] = 4, + [58770] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4295), 1, - anon_sym_COLON_COLON, - ACTIONS(4370), 16, + ACTIONS(4387), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -236683,23 +267100,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4368), 29, + ACTIONS(4385), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -236709,27 +267128,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [38229] = 6, + anon_sym_GT2, + [58830] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4334), 1, - sym_auto, - ACTIONS(4336), 1, - anon_sym_decltype, - STATE(2490), 1, - sym_decltype_auto, - ACTIONS(4366), 16, + ACTIONS(4716), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -236743,10 +267161,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4364), 27, + ACTIONS(4711), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -236756,8 +267178,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -236769,15 +267190,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [38289] = 3, + [58890] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3759), 16, + ACTIONS(4403), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -236787,28 +267214,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(3764), 30, + ACTIONS(4401), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -236816,90 +267242,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - anon_sym_try, - [38343] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1497), 1, - anon_sym_operator, - ACTIONS(1517), 1, - anon_sym_TILDE, - ACTIONS(3087), 1, - anon_sym_LPAREN2, - ACTIONS(4062), 1, - sym_identifier, - ACTIONS(4066), 1, - anon_sym_STAR, - ACTIONS(4068), 1, - anon_sym_AMP_AMP, - ACTIONS(4070), 1, - anon_sym_AMP, - ACTIONS(4072), 1, - anon_sym_COLON_COLON, - ACTIONS(4074), 1, - anon_sym_LBRACK, - STATE(4080), 1, - sym_parameter_list, - STATE(4678), 1, - sym__scope_resolution, - STATE(4918), 1, - sym__declarator, - STATE(5151), 1, - sym__abstract_declarator, - STATE(6932), 1, - sym_ms_based_modifier, - ACTIONS(4695), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(4149), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6663), 2, - sym_template_type, - sym_dependent_type_identifier, - STATE(4832), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(2921), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(4825), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [38437] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [58950] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4699), 16, + ACTIONS(4477), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -236909,28 +267271,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4697), 30, + ACTIONS(4475), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -236938,25 +267299,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - anon_sym_try, - [38491] = 6, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [59010] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4685), 1, - anon_sym_COLON, - STATE(2563), 1, - sym__enum_base_clause, - STATE(2696), 1, - sym_enumerator_list, - ACTIONS(4350), 17, + ACTIONS(1931), 1, + anon_sym_LBRACE, + ACTIONS(4419), 1, + anon_sym_LPAREN2, + STATE(3014), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4351), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -236973,16 +267342,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4348), 26, + ACTIONS(4349), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -236994,19 +267364,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, + anon_sym_GT2, + [59076] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3424), 1, + anon_sym_COLON_COLON, + ACTIONS(5124), 1, + anon_sym_LT, + STATE(2957), 1, + sym_template_argument_list, + ACTIONS(3435), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LBRACK_LBRACK, + ACTIONS(3430), 43, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [38551] = 4, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_using, + anon_sym_concept, + [59142] = 3, ACTIONS(3), 1, sym_comment, - STATE(2383), 1, - sym_enumerator_list, - ACTIONS(4381), 16, + ACTIONS(3437), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -237020,10 +267452,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4379), 29, + ACTIONS(3442), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -237033,8 +267469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -237046,21 +267481,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [38607] = 5, + [59202] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4225), 1, + ACTIONS(3424), 1, + anon_sym_COLON_COLON, + ACTIONS(3426), 1, + anon_sym_LBRACE, + ACTIONS(4777), 1, + anon_sym_LT, + ACTIONS(4995), 1, + anon_sym_EQ, + STATE(3356), 1, + sym_template_argument_list, + ACTIONS(4997), 13, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(3414), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3419), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, - STATE(2459), 1, - sym_new_declarator, - ACTIONS(4703), 15, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [59274] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4453), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -237070,27 +267568,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4701), 29, + ACTIONS(4451), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -237098,18 +267596,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [38665] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [59334] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3759), 16, + ACTIONS(4391), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -237119,28 +267625,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(3764), 30, + ACTIONS(4389), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -237148,105 +267653,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - anon_sym_try, - [38719] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1497), 1, - anon_sym_operator, - ACTIONS(1517), 1, - anon_sym_TILDE, - ACTIONS(3087), 1, - anon_sym_LPAREN2, - ACTIONS(4062), 1, - sym_identifier, - ACTIONS(4072), 1, - anon_sym_COLON_COLON, - ACTIONS(4074), 1, - anon_sym_LBRACK, - ACTIONS(4076), 1, - anon_sym_STAR, - ACTIONS(4078), 1, - anon_sym_AMP_AMP, - ACTIONS(4080), 1, - anon_sym_AMP, - STATE(4077), 1, - sym_parameter_list, - STATE(4678), 1, - sym__scope_resolution, - STATE(4918), 1, - sym__declarator, - STATE(5089), 1, - sym__abstract_declarator, - STATE(6932), 1, - sym_ms_based_modifier, - ACTIONS(4695), 2, - anon_sym_COMMA, + sym_auto, + anon_sym_decltype, anon_sym_GT2, - STATE(4149), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6663), 2, - sym_template_type, - sym_dependent_type_identifier, - STATE(4832), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(2921), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(4825), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [38813] = 10, + [59394] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, - anon_sym_COLON_COLON, - ACTIONS(3740), 1, - anon_sym_LBRACE, - ACTIONS(3769), 1, - anon_sym_LT, - ACTIONS(3984), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4708), 1, - anon_sym_LBRACK, - STATE(2466), 1, - sym_template_argument_list, - ACTIONS(4705), 2, - anon_sym_RPAREN, - anon_sym_LPAREN2, - ACTIONS(3724), 15, + ACTIONS(4737), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -237257,19 +267683,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3716), 23, + ACTIONS(4735), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -237281,15 +267715,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [38881] = 3, + [59454] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3759), 16, + ACTIONS(4395), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -237299,28 +267739,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(3764), 30, + ACTIONS(4393), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -237328,19 +267767,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - anon_sym_try, - [38935] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [59514] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3759), 16, + ACTIONS(4473), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -237350,28 +267796,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(3764), 30, + ACTIONS(4471), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -237379,21 +267824,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - anon_sym_try, - [38989] = 4, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [59574] = 3, ACTIONS(3), 1, sym_comment, - STATE(2333), 1, - sym_enumerator_list, - ACTIONS(4391), 16, + ACTIONS(3437), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -237407,10 +267857,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4389), 29, + ACTIONS(3442), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -237420,8 +267874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -237433,77 +267886,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [39045] = 4, + [59634] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4295), 1, - anon_sym_COLON_COLON, - ACTIONS(4370), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(4177), 1, + anon_sym_LPAREN2, + ACTIONS(4946), 1, + anon_sym_EQ, + ACTIONS(5083), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5085), 1, + anon_sym_AMP_AMP, + ACTIONS(5087), 1, anon_sym_PIPE, + ACTIONS(5091), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_const, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(4368), 34, + ACTIONS(5097), 1, + anon_sym_GT_EQ, + ACTIONS(5101), 1, + anon_sym_LBRACK, + ACTIONS(5103), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5105), 1, + anon_sym_or, + ACTIONS(5107), 1, + anon_sym_and, + ACTIONS(5109), 1, + anon_sym_bitor, + ACTIONS(5111), 1, + anon_sym_bitand, + ACTIONS(5126), 1, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + STATE(2713), 1, + sym_argument_list, + ACTIONS(5079), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5089), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5099), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5113), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5115), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5081), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(5093), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, + anon_sym_not_eq, + ACTIONS(5095), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4944), 18, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [39101] = 7, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [59738] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, - anon_sym_COLON_COLON, - ACTIONS(3757), 1, - anon_sym_LBRACE, - ACTIONS(3766), 1, - anon_sym_LT, - STATE(2466), 1, - sym_template_argument_list, - ACTIONS(3759), 16, + ACTIONS(3437), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -237514,13 +267990,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LBRACK, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3764), 26, + ACTIONS(3442), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -237542,43 +268022,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [39163] = 3, + [59798] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(4410), 16, + ACTIONS(4177), 1, + anon_sym_LPAREN2, + ACTIONS(4981), 1, + anon_sym_EQ, + ACTIONS(5083), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5085), 1, + anon_sym_AMP_AMP, + ACTIONS(5087), 1, + anon_sym_PIPE, + ACTIONS(5091), 1, + anon_sym_AMP, + ACTIONS(5097), 1, + anon_sym_GT_EQ, + ACTIONS(5101), 1, + anon_sym_LBRACK, + ACTIONS(5103), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5105), 1, + anon_sym_or, + ACTIONS(5107), 1, + anon_sym_and, + ACTIONS(5109), 1, + anon_sym_bitor, + ACTIONS(5111), 1, + anon_sym_bitand, + STATE(2713), 1, + sym_argument_list, + ACTIONS(5079), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(5089), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5099), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5113), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5115), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5081), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(5093), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5095), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4408), 29, + ACTIONS(4979), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -237590,23 +268106,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [39216] = 6, + [59900] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, - anon_sym_COLON_COLON, - ACTIONS(4387), 1, - anon_sym_LT, - STATE(2192), 1, - sym_template_argument_list, - ACTIONS(3714), 16, + ACTIONS(3437), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -237616,23 +268124,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(3722), 26, + anon_sym_DASH_GT, + ACTIONS(3442), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_GT_EQ, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -237640,170 +268153,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [39275] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [59960] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4683), 10, + ACTIONS(4469), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(4681), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [39328] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4530), 10, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_const, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4528), 35, + ACTIONS(4467), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_requires, - [39381] = 3, + anon_sym_GT2, + [60020] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4647), 10, + ACTIONS(3424), 1, + anon_sym_COLON_COLON, + ACTIONS(3426), 1, + anon_sym_LBRACE, + ACTIONS(5134), 1, + anon_sym_LT, + STATE(2807), 1, + sym_template_argument_list, + ACTIONS(3414), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_const, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4645), 35, + ACTIONS(3419), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [39434] = 3, + anon_sym_GT2, + [60088] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4588), 16, + ACTIONS(3437), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -237817,10 +268303,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4586), 29, + ACTIONS(3442), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -237830,8 +268320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -237843,17 +268332,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [39487] = 3, + [60148] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4581), 16, + ACTIONS(4668), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -237863,23 +268356,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4579), 29, + ACTIONS(4666), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -237889,21 +268384,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [39540] = 3, + anon_sym_GT2, + [60208] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4554), 16, + ACTIONS(4549), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -237913,23 +268413,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4552), 29, + ACTIONS(4547), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -237939,21 +268441,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [39593] = 3, + anon_sym_GT2, + [60268] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4522), 16, + ACTIONS(4399), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -237963,23 +268470,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4520), 29, + ACTIONS(4397), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -237989,112 +268498,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [39646] = 44, + anon_sym_GT2, + [60328] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4330), 1, - anon_sym_LPAREN2, - ACTIONS(4711), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4713), 1, - anon_sym_COMMA, - ACTIONS(4715), 1, - anon_sym_RPAREN, - ACTIONS(4717), 1, + ACTIONS(4529), 20, anon_sym_DASH, - ACTIONS(4719), 1, anon_sym_PLUS, - ACTIONS(4721), 1, anon_sym_STAR, - ACTIONS(4723), 1, anon_sym_SLASH, - ACTIONS(4725), 1, anon_sym_PERCENT, - ACTIONS(4727), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4729), 1, - anon_sym_AMP_AMP, - ACTIONS(4731), 1, anon_sym_PIPE, - ACTIONS(4733), 1, anon_sym_CARET, - ACTIONS(4735), 1, anon_sym_AMP, - ACTIONS(4737), 1, - anon_sym_EQ_EQ, - ACTIONS(4739), 1, - anon_sym_BANG_EQ, - ACTIONS(4741), 1, anon_sym_GT, - ACTIONS(4743), 1, anon_sym_GT_EQ, - ACTIONS(4745), 1, anon_sym_LT_EQ, - ACTIONS(4747), 1, anon_sym_LT, - ACTIONS(4749), 1, anon_sym_LT_LT, - ACTIONS(4751), 1, anon_sym_GT_GT, - ACTIONS(4753), 1, - anon_sym_LBRACK, - ACTIONS(4755), 1, anon_sym_EQ, - ACTIONS(4757), 1, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4527), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, - ACTIONS(4759), 1, anon_sym_STAR_EQ, - ACTIONS(4761), 1, anon_sym_SLASH_EQ, - ACTIONS(4763), 1, anon_sym_PERCENT_EQ, - ACTIONS(4765), 1, anon_sym_PLUS_EQ, - ACTIONS(4767), 1, anon_sym_DASH_EQ, - ACTIONS(4769), 1, anon_sym_LT_LT_EQ, - ACTIONS(4771), 1, - anon_sym_GT_GT_EQ, - ACTIONS(4773), 1, anon_sym_AMP_EQ, - ACTIONS(4775), 1, anon_sym_CARET_EQ, - ACTIONS(4777), 1, anon_sym_PIPE_EQ, - ACTIONS(4779), 1, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - ACTIONS(4785), 1, - anon_sym_DOT_STAR, - ACTIONS(4787), 1, - anon_sym_DASH_GT_STAR, - STATE(1544), 1, - sym__binary_fold_operator, - STATE(2797), 1, - sym_argument_list, - STATE(6706), 1, - sym__fold_operator, - ACTIONS(4781), 2, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(4783), 2, - anon_sym_DOT, anon_sym_DASH_GT, - [39781] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [60388] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4490), 16, + ACTIONS(4533), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -238104,23 +268584,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4488), 29, + ACTIONS(4531), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -238130,21 +268612,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [39834] = 3, + anon_sym_GT2, + [60448] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4486), 16, + STATE(2820), 1, + sym_enumerator_list, + ACTIONS(4269), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -238161,7 +268650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4484), 29, + ACTIONS(4267), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -238185,16 +268674,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, sym_auto, anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [39887] = 3, + [60510] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4466), 16, + ACTIONS(4537), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -238204,23 +268699,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4464), 29, + ACTIONS(4535), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -238230,21 +268727,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [39940] = 3, + anon_sym_GT2, + [60570] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4462), 16, + ACTIONS(4561), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -238254,23 +268756,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4460), 29, + ACTIONS(4559), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -238280,21 +268784,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [39993] = 3, + anon_sym_GT2, + [60630] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4454), 16, + ACTIONS(4557), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -238304,23 +268813,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4452), 29, + ACTIONS(4555), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -238330,21 +268841,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [40046] = 3, + anon_sym_GT2, + [60690] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4450), 16, + ACTIONS(4545), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -238354,23 +268870,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4448), 29, + ACTIONS(4543), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -238380,21 +268898,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [40099] = 3, + anon_sym_GT2, + [60750] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4426), 16, + ACTIONS(4465), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -238404,23 +268927,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4424), 29, + ACTIONS(4463), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -238430,71 +268955,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [40152] = 3, + anon_sym_GT2, + [60810] = 50, ACTIONS(3), 1, sym_comment, - ACTIONS(4651), 16, + ACTIONS(4177), 1, + anon_sym_LPAREN2, + ACTIONS(5101), 1, + anon_sym_LBRACK, + ACTIONS(5137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5139), 1, + anon_sym_COMMA, + ACTIONS(5141), 1, + anon_sym_RPAREN, + ACTIONS(5143), 1, anon_sym_DASH, + ACTIONS(5145), 1, anon_sym_PLUS, + ACTIONS(5147), 1, anon_sym_STAR, + ACTIONS(5149), 1, anon_sym_SLASH, + ACTIONS(5151), 1, anon_sym_PERCENT, + ACTIONS(5153), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5155), 1, + anon_sym_AMP_AMP, + ACTIONS(5157), 1, anon_sym_PIPE, + ACTIONS(5159), 1, anon_sym_CARET, + ACTIONS(5161), 1, anon_sym_AMP, + ACTIONS(5163), 1, + anon_sym_EQ_EQ, + ACTIONS(5165), 1, + anon_sym_BANG_EQ, + ACTIONS(5167), 1, anon_sym_GT, + ACTIONS(5169), 1, + anon_sym_GT_EQ, + ACTIONS(5171), 1, anon_sym_LT_EQ, + ACTIONS(5173), 1, anon_sym_LT, + ACTIONS(5175), 1, anon_sym_LT_LT, + ACTIONS(5177), 1, anon_sym_GT_GT, + ACTIONS(5179), 1, anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4649), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, + ACTIONS(5181), 1, anon_sym_QMARK, + ACTIONS(5183), 1, anon_sym_STAR_EQ, + ACTIONS(5185), 1, anon_sym_SLASH_EQ, + ACTIONS(5187), 1, anon_sym_PERCENT_EQ, + ACTIONS(5189), 1, anon_sym_PLUS_EQ, + ACTIONS(5191), 1, anon_sym_DASH_EQ, + ACTIONS(5193), 1, anon_sym_LT_LT_EQ, + ACTIONS(5195), 1, anon_sym_GT_GT_EQ, + ACTIONS(5197), 1, anon_sym_AMP_EQ, + ACTIONS(5199), 1, anon_sym_CARET_EQ, + ACTIONS(5201), 1, anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, + ACTIONS(5203), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5205), 1, + anon_sym_or, + ACTIONS(5207), 1, + anon_sym_and, + ACTIONS(5209), 1, + anon_sym_bitor, + ACTIONS(5211), 1, + anon_sym_xor, + ACTIONS(5213), 1, + anon_sym_bitand, + ACTIONS(5215), 1, + anon_sym_not_eq, + ACTIONS(5219), 1, anon_sym_DOT_STAR, + ACTIONS(5221), 1, anon_sym_DASH_GT_STAR, - [40205] = 3, + STATE(1668), 1, + sym__binary_fold_operator, + STATE(2713), 1, + sym_argument_list, + STATE(7078), 1, + sym__fold_operator, + ACTIONS(5115), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5217), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [60963] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4663), 16, + ACTIONS(4533), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -238511,7 +269094,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4661), 29, + ACTIONS(4531), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -238535,66 +269118,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, sym_auto, anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [40258] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4514), 10, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(4512), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [40311] = 3, + [61022] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4422), 16, + ACTIONS(3437), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -238609,9 +269148,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4420), 29, + ACTIONS(3442), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -238621,7 +269163,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -238634,31 +269175,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [40364] = 3, + [61081] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4370), 10, + ACTIONS(3509), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_GT_GT, anon_sym_const, + anon_sym_COLON, anon_sym_DOT, - ACTIONS(4368), 35, + ACTIONS(3511), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -238667,14 +269214,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, + anon_sym_COLON_COLON, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -238682,19 +269225,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [40417] = 3, + [61140] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4643), 10, + ACTIONS(4584), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -238705,7 +269256,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_const, anon_sym_DOT, - ACTIONS(4641), 35, + ACTIONS(4582), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -238735,236 +269286,190 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_auto, anon_sym_decltype, anon_sym_requires, - [40470] = 3, + [61199] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4635), 10, + ACTIONS(4668), 16, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_const, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(4633), 35, + anon_sym_DASH_GT, + ACTIONS(4666), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_requires, - [40523] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1497), 1, - anon_sym_operator, - ACTIONS(1515), 1, - anon_sym_LPAREN2, - ACTIONS(1517), 1, - anon_sym_TILDE, - ACTIONS(4062), 1, - sym_identifier, - ACTIONS(4072), 1, - anon_sym_COLON_COLON, - ACTIONS(4789), 1, - anon_sym_STAR, - ACTIONS(4791), 1, - anon_sym_AMP_AMP, - ACTIONS(4793), 1, - anon_sym_AMP, - ACTIONS(4795), 1, - anon_sym_LBRACK, - STATE(4135), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4678), 1, - sym__scope_resolution, - STATE(4858), 1, - sym__declarator, - STATE(6414), 1, - sym_ms_based_modifier, - ACTIONS(2919), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(2376), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(3257), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6663), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2917), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(2921), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(4825), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [40616] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [61258] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4506), 10, + ACTIONS(4880), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_const, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4504), 35, + anon_sym_DASH_GT, + ACTIONS(4878), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [40669] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [61317] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4596), 10, + ACTIONS(4884), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_const, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4594), 35, + anon_sym_DASH_GT, + ACTIONS(4882), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [40722] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [61376] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4659), 16, + ACTIONS(4672), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -238981,7 +269486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4657), 29, + ACTIONS(4670), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -239005,16 +269510,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, sym_auto, anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [40775] = 3, + [61435] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4510), 16, + ACTIONS(4805), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -239029,9 +269540,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4508), 29, + ACTIONS(4803), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -239041,7 +269555,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -239054,367 +269567,413 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [40828] = 3, + [61494] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4592), 10, + ACTIONS(4676), 16, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_const, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(4590), 35, + anon_sym_DASH_GT, + ACTIONS(4674), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_requires, - [40881] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [61553] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4444), 10, + ACTIONS(3437), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_const, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4442), 35, + anon_sym_DASH_GT, + ACTIONS(3442), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [40934] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [61612] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4494), 10, + ACTIONS(4922), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_const, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4492), 35, + anon_sym_DASH_GT, + ACTIONS(2507), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [40987] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [61671] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4482), 10, + ACTIONS(3437), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_const, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4480), 35, + anon_sym_DASH_GT, + ACTIONS(3442), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [41040] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [61730] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4478), 10, + ACTIONS(3437), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_const, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4476), 35, + anon_sym_DASH_GT, + ACTIONS(3442), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [41093] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [61789] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4675), 10, + ACTIONS(3437), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_const, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4673), 35, + anon_sym_DASH_GT, + ACTIONS(3442), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [41146] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [61848] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4402), 10, + ACTIONS(4932), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_const, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4400), 35, + anon_sym_DASH_GT, + ACTIONS(4930), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [41199] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [61907] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4410), 10, + ACTIONS(4525), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -239425,7 +269984,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_const, anon_sym_DOT, - ACTIONS(4408), 35, + ACTIONS(4523), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -239455,235 +270014,181 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_auto, anon_sym_decltype, anon_sym_requires, - [41252] = 3, + [61966] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4414), 10, + ACTIONS(4799), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_const, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4412), 35, + anon_sym_DASH_GT, + ACTIONS(4801), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [41305] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1497), 1, - anon_sym_operator, - ACTIONS(1515), 1, - anon_sym_LPAREN2, - ACTIONS(1517), 1, - anon_sym_TILDE, - ACTIONS(4062), 1, - sym_identifier, - ACTIONS(4072), 1, - anon_sym_COLON_COLON, - ACTIONS(4795), 1, - anon_sym_LBRACK, - ACTIONS(4797), 1, - anon_sym_STAR, - ACTIONS(4799), 1, - anon_sym_AMP_AMP, - ACTIONS(4801), 1, - anon_sym_AMP, - STATE(4135), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4678), 1, - sym__scope_resolution, - STATE(4884), 1, - sym__declarator, - STATE(6932), 1, - sym_ms_based_modifier, - ACTIONS(2919), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(2367), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(3265), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6663), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2917), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(2921), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(4825), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [41398] = 44, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [62025] = 50, ACTIONS(3), 1, sym_comment, - ACTIONS(4330), 1, + ACTIONS(4177), 1, anon_sym_LPAREN2, - ACTIONS(4711), 1, + ACTIONS(5101), 1, + anon_sym_LBRACK, + ACTIONS(5137), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(4713), 1, + ACTIONS(5139), 1, anon_sym_COMMA, - ACTIONS(4717), 1, + ACTIONS(5143), 1, anon_sym_DASH, - ACTIONS(4719), 1, + ACTIONS(5145), 1, anon_sym_PLUS, - ACTIONS(4721), 1, + ACTIONS(5147), 1, anon_sym_STAR, - ACTIONS(4723), 1, + ACTIONS(5149), 1, anon_sym_SLASH, - ACTIONS(4725), 1, + ACTIONS(5151), 1, anon_sym_PERCENT, - ACTIONS(4727), 1, + ACTIONS(5153), 1, anon_sym_PIPE_PIPE, - ACTIONS(4729), 1, + ACTIONS(5155), 1, anon_sym_AMP_AMP, - ACTIONS(4731), 1, + ACTIONS(5157), 1, anon_sym_PIPE, - ACTIONS(4733), 1, + ACTIONS(5159), 1, anon_sym_CARET, - ACTIONS(4735), 1, + ACTIONS(5161), 1, anon_sym_AMP, - ACTIONS(4737), 1, + ACTIONS(5163), 1, anon_sym_EQ_EQ, - ACTIONS(4739), 1, + ACTIONS(5165), 1, anon_sym_BANG_EQ, - ACTIONS(4741), 1, + ACTIONS(5167), 1, anon_sym_GT, - ACTIONS(4743), 1, + ACTIONS(5169), 1, anon_sym_GT_EQ, - ACTIONS(4745), 1, + ACTIONS(5171), 1, anon_sym_LT_EQ, - ACTIONS(4747), 1, + ACTIONS(5173), 1, anon_sym_LT, - ACTIONS(4749), 1, + ACTIONS(5175), 1, anon_sym_LT_LT, - ACTIONS(4751), 1, + ACTIONS(5177), 1, anon_sym_GT_GT, - ACTIONS(4753), 1, - anon_sym_LBRACK, - ACTIONS(4755), 1, + ACTIONS(5179), 1, anon_sym_EQ, - ACTIONS(4757), 1, + ACTIONS(5181), 1, anon_sym_QMARK, - ACTIONS(4759), 1, + ACTIONS(5183), 1, anon_sym_STAR_EQ, - ACTIONS(4761), 1, + ACTIONS(5185), 1, anon_sym_SLASH_EQ, - ACTIONS(4763), 1, + ACTIONS(5187), 1, anon_sym_PERCENT_EQ, - ACTIONS(4765), 1, + ACTIONS(5189), 1, anon_sym_PLUS_EQ, - ACTIONS(4767), 1, + ACTIONS(5191), 1, anon_sym_DASH_EQ, - ACTIONS(4769), 1, + ACTIONS(5193), 1, anon_sym_LT_LT_EQ, - ACTIONS(4771), 1, + ACTIONS(5195), 1, anon_sym_GT_GT_EQ, - ACTIONS(4773), 1, + ACTIONS(5197), 1, anon_sym_AMP_EQ, - ACTIONS(4775), 1, + ACTIONS(5199), 1, anon_sym_CARET_EQ, - ACTIONS(4777), 1, + ACTIONS(5201), 1, anon_sym_PIPE_EQ, - ACTIONS(4779), 1, - anon_sym_LT_EQ_GT, - ACTIONS(4785), 1, + ACTIONS(5203), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5205), 1, + anon_sym_or, + ACTIONS(5207), 1, + anon_sym_and, + ACTIONS(5209), 1, + anon_sym_bitor, + ACTIONS(5211), 1, + anon_sym_xor, + ACTIONS(5213), 1, + anon_sym_bitand, + ACTIONS(5215), 1, + anon_sym_not_eq, + ACTIONS(5219), 1, anon_sym_DOT_STAR, - ACTIONS(4787), 1, + ACTIONS(5221), 1, anon_sym_DASH_GT_STAR, - ACTIONS(4803), 1, + ACTIONS(5223), 1, anon_sym_RPAREN, - STATE(1544), 1, + STATE(1668), 1, sym__binary_fold_operator, - STATE(2797), 1, + STATE(2713), 1, sym_argument_list, - STATE(6706), 1, + STATE(7078), 1, sym__fold_operator, - ACTIONS(4781), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4783), 2, + ACTIONS(5115), 2, anon_sym_DOT, anon_sym_DASH_GT, - [41533] = 7, + ACTIONS(5217), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [62178] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, - anon_sym_COLON_COLON, - ACTIONS(3757), 1, - anon_sym_LBRACE, - ACTIONS(3788), 1, - anon_sym_LT, - STATE(2305), 1, - sym_template_argument_list, - ACTIONS(3759), 15, + ACTIONS(4600), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -239694,23 +270199,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_DOT, - ACTIONS(3764), 26, + anon_sym_DASH_GT, + ACTIONS(4598), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -239723,133 +270229,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [41594] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [62237] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4430), 10, + ACTIONS(4221), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_const, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4428), 35, + anon_sym_DASH_GT, + ACTIONS(4223), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [41647] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1497), 1, - anon_sym_operator, - ACTIONS(1515), 1, - anon_sym_LPAREN2, - ACTIONS(1517), 1, - anon_sym_TILDE, - ACTIONS(4062), 1, - sym_identifier, - ACTIONS(4072), 1, - anon_sym_COLON_COLON, - ACTIONS(4795), 1, - anon_sym_LBRACK, - ACTIONS(4797), 1, - anon_sym_STAR, - ACTIONS(4799), 1, - anon_sym_AMP_AMP, - ACTIONS(4801), 1, - anon_sym_AMP, - STATE(4135), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4678), 1, - sym__scope_resolution, - STATE(4918), 1, - sym__declarator, - STATE(6932), 1, - sym_ms_based_modifier, - ACTIONS(2919), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3259), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4009), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(6663), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2917), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(2921), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(4825), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [41740] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [62296] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4440), 10, + ACTIONS(4359), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -239860,7 +270311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_const, anon_sym_DOT, - ACTIONS(4438), 35, + ACTIONS(4357), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -239890,74 +270341,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_auto, anon_sym_decltype, anon_sym_requires, - [41793] = 3, + [62355] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4458), 10, + ACTIONS(4221), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_const, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4456), 35, + anon_sym_DASH_GT, + ACTIONS(4223), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [41846] = 7, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [62414] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, - anon_sym_COLON_COLON, - ACTIONS(3740), 1, - anon_sym_LBRACE, - ACTIONS(4057), 1, - anon_sym_LT, - STATE(2574), 1, - sym_template_argument_list, - ACTIONS(3724), 15, + ACTIONS(4680), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -239968,12 +270423,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3716), 26, + ACTIONS(4678), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -239983,6 +270439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -239996,131 +270453,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [41907] = 23, + [62473] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1497), 1, - anon_sym_operator, - ACTIONS(1515), 1, - anon_sym_LPAREN2, - ACTIONS(1517), 1, - anon_sym_TILDE, - ACTIONS(4062), 1, - sym_identifier, - ACTIONS(4072), 1, - anon_sym_COLON_COLON, - ACTIONS(4795), 1, - anon_sym_LBRACK, - ACTIONS(4797), 1, - anon_sym_STAR, - ACTIONS(4799), 1, - anon_sym_AMP_AMP, - ACTIONS(4801), 1, + ACTIONS(4660), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - STATE(4135), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4678), 1, - sym__scope_resolution, - STATE(4916), 1, - sym__declarator, - STATE(6932), 1, - sym_ms_based_modifier, - ACTIONS(2919), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3264), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4009), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(6663), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2917), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(2921), 8, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(4825), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [42000] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1497), 1, - anon_sym_operator, - ACTIONS(1515), 1, + anon_sym_DOT, + ACTIONS(4658), 41, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(1517), 1, - anon_sym_TILDE, - ACTIONS(4062), 1, - sym_identifier, - ACTIONS(4072), 1, - anon_sym_COLON_COLON, - ACTIONS(4795), 1, - anon_sym_LBRACK, - ACTIONS(4805), 1, anon_sym_STAR, - ACTIONS(4807), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(4809), 1, - anon_sym_AMP, - STATE(4135), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4678), 1, - sym__scope_resolution, - STATE(4826), 1, - sym__declarator, - STATE(6782), 1, - sym_ms_based_modifier, - ACTIONS(2919), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3254), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4009), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(6663), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2917), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(2921), 8, - anon_sym_const, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -240128,30 +270506,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(4825), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [42093] = 7, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [62532] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, - anon_sym_COLON_COLON, - ACTIONS(3757), 1, - anon_sym_LBRACE, - ACTIONS(4054), 1, - anon_sym_LT, - STATE(2574), 1, - sym_template_argument_list, - ACTIONS(3759), 15, + ACTIONS(4221), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -240162,12 +270535,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3764), 26, + ACTIONS(4223), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -240189,15 +270566,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [42154] = 3, + [62591] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4406), 10, + ACTIONS(4580), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -240208,7 +270591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_const, anon_sym_DOT, - ACTIONS(4404), 35, + ACTIONS(4578), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -240238,191 +270621,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_auto, anon_sym_decltype, anon_sym_requires, - [42207] = 44, + [62650] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4330), 1, - anon_sym_LPAREN2, - ACTIONS(4711), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4717), 1, + ACTIONS(4648), 16, anon_sym_DASH, - ACTIONS(4719), 1, anon_sym_PLUS, - ACTIONS(4721), 1, anon_sym_STAR, - ACTIONS(4723), 1, anon_sym_SLASH, - ACTIONS(4725), 1, anon_sym_PERCENT, - ACTIONS(4727), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4729), 1, - anon_sym_AMP_AMP, - ACTIONS(4731), 1, anon_sym_PIPE, - ACTIONS(4733), 1, anon_sym_CARET, - ACTIONS(4735), 1, anon_sym_AMP, - ACTIONS(4737), 1, - anon_sym_EQ_EQ, - ACTIONS(4739), 1, - anon_sym_BANG_EQ, - ACTIONS(4741), 1, anon_sym_GT, - ACTIONS(4743), 1, - anon_sym_GT_EQ, - ACTIONS(4745), 1, anon_sym_LT_EQ, - ACTIONS(4747), 1, anon_sym_LT, - ACTIONS(4749), 1, anon_sym_LT_LT, - ACTIONS(4751), 1, anon_sym_GT_GT, - ACTIONS(4753), 1, - anon_sym_LBRACK, - ACTIONS(4755), 1, anon_sym_EQ, - ACTIONS(4757), 1, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4646), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, - ACTIONS(4759), 1, anon_sym_STAR_EQ, - ACTIONS(4761), 1, anon_sym_SLASH_EQ, - ACTIONS(4763), 1, anon_sym_PERCENT_EQ, - ACTIONS(4765), 1, anon_sym_PLUS_EQ, - ACTIONS(4767), 1, anon_sym_DASH_EQ, - ACTIONS(4769), 1, anon_sym_LT_LT_EQ, - ACTIONS(4771), 1, anon_sym_GT_GT_EQ, - ACTIONS(4773), 1, anon_sym_AMP_EQ, - ACTIONS(4775), 1, anon_sym_CARET_EQ, - ACTIONS(4777), 1, anon_sym_PIPE_EQ, - ACTIONS(4779), 1, anon_sym_LT_EQ_GT, - ACTIONS(4785), 1, - anon_sym_DOT_STAR, - ACTIONS(4787), 1, - anon_sym_DASH_GT_STAR, - ACTIONS(4811), 1, - anon_sym_COMMA, - ACTIONS(4813), 1, - anon_sym_RPAREN, - STATE(1544), 1, - sym__binary_fold_operator, - STATE(2797), 1, - sym_argument_list, - STATE(6706), 1, - sym__fold_operator, - ACTIONS(4781), 2, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(4783), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - [42342] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1497), 1, - anon_sym_operator, - ACTIONS(1515), 1, - anon_sym_LPAREN2, - ACTIONS(1517), 1, - anon_sym_TILDE, - ACTIONS(4062), 1, - sym_identifier, - ACTIONS(4072), 1, - anon_sym_COLON_COLON, - ACTIONS(4789), 1, - anon_sym_STAR, - ACTIONS(4791), 1, - anon_sym_AMP_AMP, - ACTIONS(4793), 1, - anon_sym_AMP, - ACTIONS(4795), 1, - anon_sym_LBRACK, - STATE(4135), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4678), 1, - sym__scope_resolution, - STATE(4803), 1, - sym__declarator, - STATE(6414), 1, - sym_ms_based_modifier, - ACTIONS(2919), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3258), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4009), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(6663), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2917), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(2921), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(4825), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [42435] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [62709] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4550), 10, + ACTIONS(3497), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_GT_GT, anon_sym_const, + anon_sym_COLON, anon_sym_DOT, - ACTIONS(4548), 35, + ACTIONS(3499), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -240431,14 +270717,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, + anon_sym_COLON_COLON, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -240446,210 +270728,253 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [42488] = 3, + [62768] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4562), 10, + ACTIONS(5047), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_const, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4560), 35, + anon_sym_DASH_GT, + ACTIONS(5045), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [62827] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4485), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4483), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_requires, - [42541] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [62886] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4474), 10, + ACTIONS(3461), 1, + anon_sym_EQ, + ACTIONS(3465), 13, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(3414), 17, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_const, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4472), 35, + ACTIONS(3419), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [42594] = 44, + [62949] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4330), 1, - anon_sym_LPAREN2, - ACTIONS(4711), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4713), 1, - anon_sym_COMMA, - ACTIONS(4717), 1, + ACTIONS(4173), 19, anon_sym_DASH, - ACTIONS(4719), 1, anon_sym_PLUS, - ACTIONS(4721), 1, anon_sym_STAR, - ACTIONS(4723), 1, anon_sym_SLASH, - ACTIONS(4725), 1, anon_sym_PERCENT, - ACTIONS(4727), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4729), 1, - anon_sym_AMP_AMP, - ACTIONS(4731), 1, anon_sym_PIPE, - ACTIONS(4733), 1, anon_sym_CARET, - ACTIONS(4735), 1, anon_sym_AMP, - ACTIONS(4737), 1, - anon_sym_EQ_EQ, - ACTIONS(4739), 1, - anon_sym_BANG_EQ, - ACTIONS(4741), 1, anon_sym_GT, - ACTIONS(4743), 1, - anon_sym_GT_EQ, - ACTIONS(4745), 1, anon_sym_LT_EQ, - ACTIONS(4747), 1, anon_sym_LT, - ACTIONS(4749), 1, anon_sym_LT_LT, - ACTIONS(4751), 1, anon_sym_GT_GT, - ACTIONS(4753), 1, - anon_sym_LBRACK, - ACTIONS(4755), 1, anon_sym_EQ, - ACTIONS(4757), 1, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4175), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, - ACTIONS(4759), 1, anon_sym_STAR_EQ, - ACTIONS(4761), 1, anon_sym_SLASH_EQ, - ACTIONS(4763), 1, anon_sym_PERCENT_EQ, - ACTIONS(4765), 1, anon_sym_PLUS_EQ, - ACTIONS(4767), 1, anon_sym_DASH_EQ, - ACTIONS(4769), 1, anon_sym_LT_LT_EQ, - ACTIONS(4771), 1, anon_sym_GT_GT_EQ, - ACTIONS(4773), 1, anon_sym_AMP_EQ, - ACTIONS(4775), 1, anon_sym_CARET_EQ, - ACTIONS(4777), 1, anon_sym_PIPE_EQ, - ACTIONS(4779), 1, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - ACTIONS(4785), 1, - anon_sym_DOT_STAR, - ACTIONS(4787), 1, - anon_sym_DASH_GT_STAR, - ACTIONS(4815), 1, - anon_sym_RPAREN, - STATE(1544), 1, - sym__binary_fold_operator, - STATE(2797), 1, - sym_argument_list, - STATE(6706), 1, - sym__fold_operator, - ACTIONS(4781), 2, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(4783), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - [42729] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [63008] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4573), 10, + ACTIONS(4686), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -240660,7 +270985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_const, anon_sym_DOT, - ACTIONS(4571), 35, + ACTIONS(4684), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -240690,16 +271015,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_auto, anon_sym_decltype, anon_sym_requires, - [42782] = 3, + [63067] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4607), 16, + ACTIONS(4481), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -240716,7 +271047,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4605), 29, + ACTIONS(4479), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -240740,16 +271071,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, sym_auto, anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [42835] = 3, + [63126] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4577), 16, + ACTIONS(4161), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -240764,9 +271101,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4575), 29, + ACTIONS(4163), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -240776,7 +271116,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -240789,141 +271128,185 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [42888] = 3, + [63185] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4470), 10, + ACTIONS(3461), 1, + anon_sym_EQ, + ACTIONS(3935), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4722), 1, + anon_sym_LPAREN2, + ACTIONS(4728), 1, + anon_sym_LBRACK, + ACTIONS(3465), 13, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(3414), 17, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_const, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4468), 35, + ACTIONS(3419), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [42941] = 23, + [63254] = 50, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1497), 1, - anon_sym_operator, - ACTIONS(1515), 1, + ACTIONS(4177), 1, anon_sym_LPAREN2, - ACTIONS(1517), 1, - anon_sym_TILDE, - ACTIONS(4795), 1, + ACTIONS(5101), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, - sym_identifier, - ACTIONS(4819), 1, + ACTIONS(5137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5143), 1, + anon_sym_DASH, + ACTIONS(5145), 1, + anon_sym_PLUS, + ACTIONS(5147), 1, anon_sym_STAR, - ACTIONS(4821), 1, + ACTIONS(5149), 1, + anon_sym_SLASH, + ACTIONS(5151), 1, + anon_sym_PERCENT, + ACTIONS(5153), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5155), 1, anon_sym_AMP_AMP, - ACTIONS(4823), 1, + ACTIONS(5157), 1, + anon_sym_PIPE, + ACTIONS(5159), 1, + anon_sym_CARET, + ACTIONS(5161), 1, anon_sym_AMP, - ACTIONS(4825), 1, - anon_sym_COLON_COLON, - STATE(4135), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4708), 1, - sym__scope_resolution, - STATE(5052), 1, - sym__declarator, - STATE(6547), 1, - sym_ms_based_modifier, - ACTIONS(2919), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3261), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4009), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(6663), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2917), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(2921), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(4825), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [43034] = 5, + ACTIONS(5163), 1, + anon_sym_EQ_EQ, + ACTIONS(5165), 1, + anon_sym_BANG_EQ, + ACTIONS(5167), 1, + anon_sym_GT, + ACTIONS(5169), 1, + anon_sym_GT_EQ, + ACTIONS(5171), 1, + anon_sym_LT_EQ, + ACTIONS(5173), 1, + anon_sym_LT, + ACTIONS(5175), 1, + anon_sym_LT_LT, + ACTIONS(5177), 1, + anon_sym_GT_GT, + ACTIONS(5179), 1, + anon_sym_EQ, + ACTIONS(5181), 1, + anon_sym_QMARK, + ACTIONS(5183), 1, + anon_sym_STAR_EQ, + ACTIONS(5185), 1, + anon_sym_SLASH_EQ, + ACTIONS(5187), 1, + anon_sym_PERCENT_EQ, + ACTIONS(5189), 1, + anon_sym_PLUS_EQ, + ACTIONS(5191), 1, + anon_sym_DASH_EQ, + ACTIONS(5193), 1, + anon_sym_LT_LT_EQ, + ACTIONS(5195), 1, + anon_sym_GT_GT_EQ, + ACTIONS(5197), 1, + anon_sym_AMP_EQ, + ACTIONS(5199), 1, + anon_sym_CARET_EQ, + ACTIONS(5201), 1, + anon_sym_PIPE_EQ, + ACTIONS(5203), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5205), 1, + anon_sym_or, + ACTIONS(5207), 1, + anon_sym_and, + ACTIONS(5209), 1, + anon_sym_bitor, + ACTIONS(5211), 1, + anon_sym_xor, + ACTIONS(5213), 1, + anon_sym_bitand, + ACTIONS(5215), 1, + anon_sym_not_eq, + ACTIONS(5219), 1, + anon_sym_DOT_STAR, + ACTIONS(5221), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(5225), 1, + anon_sym_COMMA, + ACTIONS(5227), 1, + anon_sym_RPAREN, + STATE(1668), 1, + sym__binary_fold_operator, + STATE(2713), 1, + sym_argument_list, + STATE(7078), 1, + sym__fold_operator, + ACTIONS(5115), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5217), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [63407] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, - anon_sym_COLON_COLON, - STATE(2626), 1, - sym_template_argument_list, - ACTIONS(4346), 17, + ACTIONS(4604), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -240933,22 +271316,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_DOT, - ACTIONS(4344), 26, + anon_sym_DASH_GT, + ACTIONS(4602), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -240958,51 +271342,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [43091] = 6, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [63466] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, - anon_sym_COLON_COLON, - ACTIONS(4827), 1, + ACTIONS(3487), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_LT, - STATE(2626), 1, - sym_template_argument_list, - ACTIONS(3757), 13, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(3489), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_COLON_COLON, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(3752), 29, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -241010,241 +271398,254 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, - sym_identifier, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, + anon_sym_GT2, anon_sym_requires, - [43150] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1497), 1, - anon_sym_operator, - ACTIONS(1515), 1, - anon_sym_LPAREN2, - ACTIONS(1517), 1, - anon_sym_TILDE, - ACTIONS(4795), 1, - anon_sym_LBRACK, - ACTIONS(4817), 1, - sym_identifier, - ACTIONS(4819), 1, - anon_sym_STAR, - ACTIONS(4821), 1, - anon_sym_AMP_AMP, - ACTIONS(4823), 1, - anon_sym_AMP, - ACTIONS(4825), 1, - anon_sym_COLON_COLON, - STATE(4135), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4708), 1, - sym__scope_resolution, - STATE(5060), 1, - sym__declarator, - STATE(6547), 1, - sym_ms_based_modifier, - ACTIONS(2919), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(2385), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(3262), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6663), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2917), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(2921), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(4825), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [43243] = 3, + [63525] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4398), 10, + ACTIONS(4608), 16, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_const, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(4396), 35, + anon_sym_DASH_GT, + ACTIONS(4606), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_requires, - [43296] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [63584] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4542), 10, + ACTIONS(4312), 16, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_const, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(4540), 35, + anon_sym_DASH_GT, + ACTIONS(4310), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_requires, - [43349] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [63643] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4538), 10, + ACTIONS(1959), 1, + anon_sym_LBRACE, + ACTIONS(4703), 1, + anon_sym_LPAREN2, + STATE(3115), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4351), 16, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_const, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(4536), 35, + anon_sym_DASH_GT, + ACTIONS(4349), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [63708] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4477), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4475), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_requires, - [43402] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [63767] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4526), 10, + ACTIONS(4656), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -241255,7 +271656,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_const, anon_sym_DOT, - ACTIONS(4524), 35, + ACTIONS(4654), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -241285,16 +271686,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_auto, anon_sym_decltype, anon_sym_requires, - [43455] = 3, + [63826] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4577), 10, + ACTIONS(4652), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -241305,7 +271712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_const, anon_sym_DOT, - ACTIONS(4575), 35, + ACTIONS(4650), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -241335,16 +271742,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_auto, anon_sym_decltype, anon_sym_requires, - [43508] = 3, + [63885] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4398), 16, + ACTIONS(4473), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -241361,7 +271774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4396), 29, + ACTIONS(4471), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -241385,16 +271798,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, sym_auto, anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [43561] = 3, + [63944] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4542), 16, + ACTIONS(4469), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -241411,7 +271830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4540), 29, + ACTIONS(4467), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -241435,16 +271854,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, sym_auto, anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [43614] = 3, + [64003] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4538), 16, + ACTIONS(4465), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -241461,7 +271886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4536), 29, + ACTIONS(4463), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -241485,16 +271910,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, sym_auto, anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [43667] = 3, + [64062] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4526), 16, + ACTIONS(4229), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -241509,9 +271940,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4524), 29, + ACTIONS(4231), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -241521,7 +271955,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -241534,17 +271967,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [43720] = 3, + [64121] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 16, + ACTIONS(4461), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -241561,7 +271998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4516), 29, + ACTIONS(4459), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -241585,16 +272022,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, sym_auto, anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [43773] = 3, + [64180] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4514), 16, + ACTIONS(4457), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -241611,7 +272054,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4512), 29, + ACTIONS(4455), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -241635,16 +272078,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, sym_auto, anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [43826] = 3, + [64239] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4506), 16, + ACTIONS(5053), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -241659,9 +272108,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4504), 29, + ACTIONS(5051), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -241671,7 +272123,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -241684,17 +272135,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [43879] = 3, + [64298] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4494), 16, + ACTIONS(4359), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -241711,7 +272166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4492), 29, + ACTIONS(4357), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -241735,16 +272190,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, sym_auto, anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [43932] = 3, + [64357] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4482), 16, + ACTIONS(4147), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -241759,9 +272220,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4480), 29, + ACTIONS(4149), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -241771,7 +272235,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -241784,17 +272247,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [43985] = 3, + [64416] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4478), 16, + ACTIONS(4521), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -241811,7 +272278,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4476), 29, + ACTIONS(4519), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -241835,16 +272302,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, sym_auto, anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [44038] = 3, + [64475] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4474), 16, + ACTIONS(4165), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -241859,9 +272332,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4472), 29, + ACTIONS(4167), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -241871,7 +272347,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -241884,17 +272359,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [44091] = 3, + [64534] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4470), 16, + ACTIONS(5061), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -241909,9 +272388,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4468), 29, + ACTIONS(5059), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -241921,7 +272403,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -241934,217 +272415,292 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [44144] = 3, + [64593] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4611), 10, + ACTIONS(4453), 16, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_const, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(4609), 35, + anon_sym_DASH_GT, + ACTIONS(4451), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_requires, - [44197] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [64652] = 50, ACTIONS(3), 1, sym_comment, - ACTIONS(4558), 10, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(4556), 35, + ACTIONS(4177), 1, + anon_sym_LPAREN2, + ACTIONS(5101), 1, + anon_sym_LBRACK, + ACTIONS(5137), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(5139), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(5143), 1, + anon_sym_DASH, + ACTIONS(5145), 1, + anon_sym_PLUS, + ACTIONS(5147), 1, anon_sym_STAR, + ACTIONS(5149), 1, + anon_sym_SLASH, + ACTIONS(5151), 1, anon_sym_PERCENT, + ACTIONS(5153), 1, anon_sym_PIPE_PIPE, + ACTIONS(5155), 1, anon_sym_AMP_AMP, + ACTIONS(5157), 1, + anon_sym_PIPE, + ACTIONS(5159), 1, anon_sym_CARET, + ACTIONS(5161), 1, + anon_sym_AMP, + ACTIONS(5163), 1, anon_sym_EQ_EQ, + ACTIONS(5165), 1, anon_sym_BANG_EQ, + ACTIONS(5167), 1, + anon_sym_GT, + ACTIONS(5169), 1, anon_sym_GT_EQ, + ACTIONS(5171), 1, + anon_sym_LT_EQ, + ACTIONS(5173), 1, + anon_sym_LT, + ACTIONS(5175), 1, anon_sym_LT_LT, + ACTIONS(5177), 1, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, + ACTIONS(5179), 1, + anon_sym_EQ, + ACTIONS(5181), 1, anon_sym_QMARK, - anon_sym_LT_EQ_GT, + ACTIONS(5183), 1, + anon_sym_STAR_EQ, + ACTIONS(5185), 1, + anon_sym_SLASH_EQ, + ACTIONS(5187), 1, + anon_sym_PERCENT_EQ, + ACTIONS(5189), 1, + anon_sym_PLUS_EQ, + ACTIONS(5191), 1, + anon_sym_DASH_EQ, + ACTIONS(5193), 1, + anon_sym_LT_LT_EQ, + ACTIONS(5195), 1, + anon_sym_GT_GT_EQ, + ACTIONS(5197), 1, + anon_sym_AMP_EQ, + ACTIONS(5199), 1, + anon_sym_CARET_EQ, + ACTIONS(5201), 1, + anon_sym_PIPE_EQ, + ACTIONS(5203), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5205), 1, + anon_sym_or, + ACTIONS(5207), 1, + anon_sym_and, + ACTIONS(5209), 1, + anon_sym_bitor, + ACTIONS(5211), 1, + anon_sym_xor, + ACTIONS(5213), 1, + anon_sym_bitand, + ACTIONS(5215), 1, + anon_sym_not_eq, + ACTIONS(5219), 1, + anon_sym_DOT_STAR, + ACTIONS(5221), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(5229), 1, + anon_sym_RPAREN, + STATE(1668), 1, + sym__binary_fold_operator, + STATE(2713), 1, + sym_argument_list, + STATE(7078), 1, + sym__fold_operator, + ACTIONS(5115), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5217), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [44250] = 3, + [64805] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4566), 10, + ACTIONS(4449), 16, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_const, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(4564), 35, + anon_sym_DASH_GT, + ACTIONS(4447), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_requires, - [44303] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [64864] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4619), 10, + ACTIONS(4829), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_const, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4617), 35, + anon_sym_DASH_GT, + ACTIONS(4827), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [44356] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [64923] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4627), 10, + ACTIONS(4403), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -242155,7 +272711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_const, anon_sym_DOT, - ACTIONS(4625), 35, + ACTIONS(4401), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -242185,143 +272741,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_auto, anon_sym_decltype, anon_sym_requires, - [44409] = 3, + [64982] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4607), 10, + ACTIONS(4445), 16, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_const, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(4605), 35, + anon_sym_DASH_GT, + ACTIONS(4443), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_requires, - [44462] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1497), 1, - anon_sym_operator, - ACTIONS(1515), 1, - anon_sym_LPAREN2, - ACTIONS(1517), 1, - anon_sym_TILDE, - ACTIONS(4062), 1, - sym_identifier, - ACTIONS(4072), 1, - anon_sym_COLON_COLON, - ACTIONS(4795), 1, - anon_sym_LBRACK, - ACTIONS(4797), 1, - anon_sym_STAR, - ACTIONS(4799), 1, - anon_sym_AMP_AMP, - ACTIONS(4801), 1, - anon_sym_AMP, - STATE(4135), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4678), 1, - sym__scope_resolution, - STATE(4918), 1, - sym__declarator, - STATE(6932), 1, - sym_ms_based_modifier, - ACTIONS(2919), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(2371), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(3259), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6663), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2917), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(2921), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(4825), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [44555] = 6, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [65041] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2367), 1, - anon_sym_LBRACE, - ACTIONS(4330), 1, - anon_sym_LPAREN2, - STATE(2799), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4639), 16, + ACTIONS(4686), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -242338,15 +272829,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4637), 25, + ACTIONS(4684), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -242360,245 +272853,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [44614] = 44, + [65100] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4330), 1, - anon_sym_LPAREN2, - ACTIONS(4711), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4713), 1, - anon_sym_COMMA, - ACTIONS(4717), 1, + ACTIONS(4441), 16, anon_sym_DASH, - ACTIONS(4719), 1, anon_sym_PLUS, - ACTIONS(4721), 1, anon_sym_STAR, - ACTIONS(4723), 1, anon_sym_SLASH, - ACTIONS(4725), 1, anon_sym_PERCENT, - ACTIONS(4727), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4729), 1, - anon_sym_AMP_AMP, - ACTIONS(4731), 1, anon_sym_PIPE, - ACTIONS(4733), 1, anon_sym_CARET, - ACTIONS(4735), 1, anon_sym_AMP, - ACTIONS(4737), 1, - anon_sym_EQ_EQ, - ACTIONS(4739), 1, - anon_sym_BANG_EQ, - ACTIONS(4741), 1, anon_sym_GT, - ACTIONS(4743), 1, - anon_sym_GT_EQ, - ACTIONS(4745), 1, anon_sym_LT_EQ, - ACTIONS(4747), 1, anon_sym_LT, - ACTIONS(4749), 1, anon_sym_LT_LT, - ACTIONS(4751), 1, anon_sym_GT_GT, - ACTIONS(4753), 1, - anon_sym_LBRACK, - ACTIONS(4755), 1, anon_sym_EQ, - ACTIONS(4757), 1, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4439), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, - ACTIONS(4759), 1, anon_sym_STAR_EQ, - ACTIONS(4761), 1, anon_sym_SLASH_EQ, - ACTIONS(4763), 1, anon_sym_PERCENT_EQ, - ACTIONS(4765), 1, anon_sym_PLUS_EQ, - ACTIONS(4767), 1, anon_sym_DASH_EQ, - ACTIONS(4769), 1, anon_sym_LT_LT_EQ, - ACTIONS(4771), 1, anon_sym_GT_GT_EQ, - ACTIONS(4773), 1, anon_sym_AMP_EQ, - ACTIONS(4775), 1, anon_sym_CARET_EQ, - ACTIONS(4777), 1, anon_sym_PIPE_EQ, - ACTIONS(4779), 1, anon_sym_LT_EQ_GT, - ACTIONS(4785), 1, - anon_sym_DOT_STAR, - ACTIONS(4787), 1, - anon_sym_DASH_GT_STAR, - ACTIONS(4829), 1, - anon_sym_RPAREN, - STATE(1544), 1, - sym__binary_fold_operator, - STATE(2797), 1, - sym_argument_list, - STATE(6706), 1, - sym__fold_operator, - ACTIONS(4781), 2, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(4783), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - [44749] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1497), 1, - anon_sym_operator, - ACTIONS(1515), 1, - anon_sym_LPAREN2, - ACTIONS(1517), 1, - anon_sym_TILDE, - ACTIONS(3922), 1, - sym_identifier, - ACTIONS(4132), 1, - anon_sym_COLON_COLON, - ACTIONS(4795), 1, - anon_sym_LBRACK, - ACTIONS(4831), 1, - anon_sym_STAR, - ACTIONS(4833), 1, - anon_sym_AMP_AMP, - ACTIONS(4835), 1, - anon_sym_AMP, - STATE(4135), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4697), 1, - sym__scope_resolution, - STATE(5075), 1, - sym__declarator, - STATE(6466), 1, - sym_ms_based_modifier, - ACTIONS(2919), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(2478), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(3268), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6663), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2917), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(2921), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(4825), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [44842] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1497), 1, - anon_sym_operator, - ACTIONS(1515), 1, - anon_sym_LPAREN2, - ACTIONS(1517), 1, - anon_sym_TILDE, - ACTIONS(4062), 1, - sym_identifier, - ACTIONS(4072), 1, - anon_sym_COLON_COLON, - ACTIONS(4795), 1, - anon_sym_LBRACK, - ACTIONS(4805), 1, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [65159] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4940), 19, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(4807), 1, - anon_sym_AMP_AMP, - ACTIONS(4809), 1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - STATE(4135), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4678), 1, - sym__scope_resolution, - STATE(4812), 1, - sym__declarator, - STATE(6782), 1, - sym_ms_based_modifier, - ACTIONS(2919), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(2372), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(3251), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6663), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2917), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(2921), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(4825), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [44935] = 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4938), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [65218] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4490), 10, + ACTIONS(4395), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -242609,7 +272991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_const, anon_sym_DOT, - ACTIONS(4488), 35, + ACTIONS(4393), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -242639,16 +273021,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_auto, anon_sym_decltype, anon_sym_requires, - [44988] = 3, + [65277] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4370), 16, + ACTIONS(4965), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -242663,9 +273051,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4368), 29, + ACTIONS(4963), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -242675,7 +273066,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -242688,38 +273078,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [45041] = 9, + [65336] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, - anon_sym_COLON_COLON, - ACTIONS(3740), 1, - anon_sym_LBRACE, - ACTIONS(3746), 1, - anon_sym_EQ, - ACTIONS(4837), 1, - anon_sym_LT, - STATE(3315), 1, - sym_template_argument_list, - ACTIONS(3750), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(3724), 13, + ACTIONS(5033), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -242730,10 +273103,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(3716), 17, + anon_sym_DASH_GT, + ACTIONS(5031), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -242743,70 +273122,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [45106] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4099), 22, - sym_raw_string_literal, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(4097), 23, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - sym_nullptr, - [45159] = 4, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [65395] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4295), 1, - anon_sym_COLON_COLON, - ACTIONS(4293), 13, + ACTIONS(4135), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -242820,7 +273162,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_COLON, anon_sym_DOT, - ACTIONS(4291), 31, + ACTIONS(4133), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -242832,6 +273174,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_LT, + anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_volatile, @@ -242843,6 +273186,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, @@ -242852,412 +273201,348 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [45214] = 3, + [65454] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4615), 10, + ACTIONS(4969), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_const, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4613), 35, + anon_sym_DASH_GT, + ACTIONS(4967), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [45267] = 4, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [65513] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4295), 1, - anon_sym_COLON_COLON, - ACTIONS(4293), 13, + ACTIONS(4433), 16, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_const, - anon_sym_COLON, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(4291), 31, + anon_sym_DASH_GT, + ACTIONS(4431), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_GT_EQ, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [45322] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [65572] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4264), 13, + ACTIONS(4636), 16, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_const, - anon_sym_COLON, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(4266), 32, + anon_sym_DASH_GT, + ACTIONS(4634), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_COLON_COLON, + anon_sym_GT_EQ, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [45375] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [65631] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3811), 13, + ACTIONS(4429), 16, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_const, - anon_sym_COLON, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(3816), 32, + anon_sym_DASH_GT, + ACTIONS(4427), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_COLON_COLON, + anon_sym_GT_EQ, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [45428] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [65690] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3805), 13, + ACTIONS(4829), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_const, - anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(3807), 32, + ACTIONS(4827), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [45481] = 44, + [65749] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4330), 1, - anon_sym_LPAREN2, - ACTIONS(4711), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4717), 1, + ACTIONS(5231), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5233), 1, + anon_sym_AMP_AMP, + ACTIONS(5027), 19, anon_sym_DASH, - ACTIONS(4719), 1, anon_sym_PLUS, - ACTIONS(4721), 1, anon_sym_STAR, - ACTIONS(4723), 1, anon_sym_SLASH, - ACTIONS(4725), 1, anon_sym_PERCENT, - ACTIONS(4727), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4729), 1, - anon_sym_AMP_AMP, - ACTIONS(4731), 1, anon_sym_PIPE, - ACTIONS(4733), 1, anon_sym_CARET, - ACTIONS(4735), 1, anon_sym_AMP, - ACTIONS(4737), 1, - anon_sym_EQ_EQ, - ACTIONS(4739), 1, - anon_sym_BANG_EQ, - ACTIONS(4741), 1, anon_sym_GT, - ACTIONS(4743), 1, - anon_sym_GT_EQ, - ACTIONS(4745), 1, anon_sym_LT_EQ, - ACTIONS(4747), 1, anon_sym_LT, - ACTIONS(4749), 1, anon_sym_LT_LT, - ACTIONS(4751), 1, anon_sym_GT_GT, - ACTIONS(4753), 1, - anon_sym_LBRACK, - ACTIONS(4755), 1, anon_sym_EQ, - ACTIONS(4757), 1, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5025), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, - ACTIONS(4759), 1, anon_sym_STAR_EQ, - ACTIONS(4761), 1, anon_sym_SLASH_EQ, - ACTIONS(4763), 1, anon_sym_PERCENT_EQ, - ACTIONS(4765), 1, anon_sym_PLUS_EQ, - ACTIONS(4767), 1, anon_sym_DASH_EQ, - ACTIONS(4769), 1, anon_sym_LT_LT_EQ, - ACTIONS(4771), 1, anon_sym_GT_GT_EQ, - ACTIONS(4773), 1, anon_sym_AMP_EQ, - ACTIONS(4775), 1, anon_sym_CARET_EQ, - ACTIONS(4777), 1, anon_sym_PIPE_EQ, - ACTIONS(4779), 1, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - ACTIONS(4785), 1, - anon_sym_DOT_STAR, - ACTIONS(4787), 1, - anon_sym_DASH_GT_STAR, - ACTIONS(4811), 1, - anon_sym_COMMA, - ACTIONS(4840), 1, - anon_sym_RPAREN, - STATE(1544), 1, - sym__binary_fold_operator, - STATE(2797), 1, - sym_argument_list, - STATE(6706), 1, - sym__fold_operator, - ACTIONS(4781), 2, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(4783), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - [45616] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3735), 1, - anon_sym_COLON_COLON, - ACTIONS(4827), 1, - anon_sym_LT, - STATE(2626), 1, - sym_template_argument_list, - ACTIONS(3740), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4191), 29, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [45675] = 6, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [65812] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2367), 1, - anon_sym_LBRACE, - ACTIONS(4330), 1, - anon_sym_LPAREN2, - STATE(2777), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4546), 16, + ACTIONS(4213), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -243272,12 +273557,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4544), 25, + ACTIONS(4215), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -243295,31 +273584,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [45734] = 3, + [65871] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3774), 13, + ACTIONS(4363), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, anon_sym_const, - anon_sym_COLON, anon_sym_DOT, - ACTIONS(3776), 32, + ACTIONS(4361), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -243328,10 +273621,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_COLON_COLON, + anon_sym_GT_GT, + anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -243339,21 +273636,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, + anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [45787] = 3, + [65930] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4683), 16, + ACTIONS(4656), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -243370,7 +273671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4681), 29, + ACTIONS(4654), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -243394,31 +273695,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, sym_auto, anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [45840] = 11, + [65989] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, - anon_sym_COLON_COLON, - ACTIONS(3740), 1, - anon_sym_LBRACE, - ACTIONS(3746), 1, - anon_sym_EQ, - ACTIONS(4689), 1, - anon_sym_LBRACK, - ACTIONS(4837), 1, + ACTIONS(4616), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, anon_sym_LT, - STATE(3315), 1, - sym_template_argument_list, - ACTIONS(4687), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4614), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(3750), 10, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -243429,7 +273750,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(3724), 13, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [66048] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4620), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -243440,28 +273777,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(3716), 14, + anon_sym_DASH_GT, + ACTIONS(4618), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [45909] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [66107] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4623), 10, + ACTIONS(4290), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -243472,7 +273833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_const, anon_sym_DOT, - ACTIONS(4621), 35, + ACTIONS(4288), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -243502,32 +273863,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_auto, anon_sym_decltype, anon_sym_requires, - [45962] = 3, + [66166] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3778), 13, + ACTIONS(4391), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, anon_sym_const, - anon_sym_COLON, anon_sym_DOT, - ACTIONS(3780), 32, + ACTIONS(4389), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -243536,10 +273901,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_COLON_COLON, + anon_sym_GT_GT, + anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -243547,35 +273916,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, + anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [46015] = 10, + [66225] = 50, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, - anon_sym_COLON_COLON, - ACTIONS(3740), 1, - anon_sym_LBRACE, - ACTIONS(3984), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4705), 1, + ACTIONS(4177), 1, anon_sym_LPAREN2, - ACTIONS(4708), 1, + ACTIONS(5101), 1, anon_sym_LBRACK, - ACTIONS(4842), 1, + ACTIONS(5137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5139), 1, + anon_sym_COMMA, + ACTIONS(5143), 1, + anon_sym_DASH, + ACTIONS(5145), 1, + anon_sym_PLUS, + ACTIONS(5147), 1, + anon_sym_STAR, + ACTIONS(5149), 1, + anon_sym_SLASH, + ACTIONS(5151), 1, + anon_sym_PERCENT, + ACTIONS(5153), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5155), 1, + anon_sym_AMP_AMP, + ACTIONS(5157), 1, + anon_sym_PIPE, + ACTIONS(5159), 1, + anon_sym_CARET, + ACTIONS(5161), 1, + anon_sym_AMP, + ACTIONS(5163), 1, + anon_sym_EQ_EQ, + ACTIONS(5165), 1, + anon_sym_BANG_EQ, + ACTIONS(5167), 1, + anon_sym_GT, + ACTIONS(5169), 1, + anon_sym_GT_EQ, + ACTIONS(5171), 1, + anon_sym_LT_EQ, + ACTIONS(5173), 1, anon_sym_LT, - STATE(2305), 1, - sym_template_argument_list, - ACTIONS(3724), 14, + ACTIONS(5175), 1, + anon_sym_LT_LT, + ACTIONS(5177), 1, + anon_sym_GT_GT, + ACTIONS(5179), 1, + anon_sym_EQ, + ACTIONS(5181), 1, + anon_sym_QMARK, + ACTIONS(5183), 1, + anon_sym_STAR_EQ, + ACTIONS(5185), 1, + anon_sym_SLASH_EQ, + ACTIONS(5187), 1, + anon_sym_PERCENT_EQ, + ACTIONS(5189), 1, + anon_sym_PLUS_EQ, + ACTIONS(5191), 1, + anon_sym_DASH_EQ, + ACTIONS(5193), 1, + anon_sym_LT_LT_EQ, + ACTIONS(5195), 1, + anon_sym_GT_GT_EQ, + ACTIONS(5197), 1, + anon_sym_AMP_EQ, + ACTIONS(5199), 1, + anon_sym_CARET_EQ, + ACTIONS(5201), 1, + anon_sym_PIPE_EQ, + ACTIONS(5203), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5205), 1, + anon_sym_or, + ACTIONS(5207), 1, + anon_sym_and, + ACTIONS(5209), 1, + anon_sym_bitor, + ACTIONS(5211), 1, + anon_sym_xor, + ACTIONS(5213), 1, + anon_sym_bitand, + ACTIONS(5215), 1, + anon_sym_not_eq, + ACTIONS(5219), 1, + anon_sym_DOT_STAR, + ACTIONS(5221), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(5235), 1, + anon_sym_RPAREN, + STATE(1668), 1, + sym__binary_fold_operator, + STATE(2713), 1, + sym_argument_list, + STATE(7078), 1, + sym__fold_operator, + ACTIONS(5115), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5217), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [66378] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4716), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -243586,19 +274048,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(3716), 24, + ACTIONS(4711), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -243611,30 +274080,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [46082] = 3, + [66437] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3801), 13, + ACTIONS(4517), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, anon_sym_const, - anon_sym_COLON, anon_sym_DOT, - ACTIONS(3803), 32, + ACTIONS(4515), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -243643,10 +274116,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_COLON_COLON, + anon_sym_GT_GT, + anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -243654,159 +274131,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, + anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [46135] = 44, + [66496] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4330), 1, - anon_sym_LPAREN2, - ACTIONS(4711), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4717), 1, + ACTIONS(4521), 10, anon_sym_DASH, - ACTIONS(4719), 1, anon_sym_PLUS, - ACTIONS(4721), 1, - anon_sym_STAR, - ACTIONS(4723), 1, anon_sym_SLASH, - ACTIONS(4725), 1, - anon_sym_PERCENT, - ACTIONS(4727), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4729), 1, - anon_sym_AMP_AMP, - ACTIONS(4731), 1, anon_sym_PIPE, - ACTIONS(4733), 1, - anon_sym_CARET, - ACTIONS(4735), 1, anon_sym_AMP, - ACTIONS(4737), 1, - anon_sym_EQ_EQ, - ACTIONS(4739), 1, - anon_sym_BANG_EQ, - ACTIONS(4741), 1, anon_sym_GT, - ACTIONS(4743), 1, - anon_sym_GT_EQ, - ACTIONS(4745), 1, anon_sym_LT_EQ, - ACTIONS(4747), 1, anon_sym_LT, - ACTIONS(4749), 1, - anon_sym_LT_LT, - ACTIONS(4751), 1, - anon_sym_GT_GT, - ACTIONS(4753), 1, - anon_sym_LBRACK, - ACTIONS(4755), 1, - anon_sym_EQ, - ACTIONS(4757), 1, - anon_sym_QMARK, - ACTIONS(4759), 1, - anon_sym_STAR_EQ, - ACTIONS(4761), 1, - anon_sym_SLASH_EQ, - ACTIONS(4763), 1, - anon_sym_PERCENT_EQ, - ACTIONS(4765), 1, - anon_sym_PLUS_EQ, - ACTIONS(4767), 1, - anon_sym_DASH_EQ, - ACTIONS(4769), 1, - anon_sym_LT_LT_EQ, - ACTIONS(4771), 1, - anon_sym_GT_GT_EQ, - ACTIONS(4773), 1, - anon_sym_AMP_EQ, - ACTIONS(4775), 1, - anon_sym_CARET_EQ, - ACTIONS(4777), 1, - anon_sym_PIPE_EQ, - ACTIONS(4779), 1, - anon_sym_LT_EQ_GT, - ACTIONS(4785), 1, - anon_sym_DOT_STAR, - ACTIONS(4787), 1, - anon_sym_DASH_GT_STAR, - ACTIONS(4811), 1, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4519), 41, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - ACTIONS(4845), 1, anon_sym_RPAREN, - STATE(1544), 1, - sym__binary_fold_operator, - STATE(2797), 1, - sym_argument_list, - STATE(6706), 1, - sym__fold_operator, - ACTIONS(4781), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4783), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - [46270] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1497), 1, - anon_sym_operator, - ACTIONS(1515), 1, anon_sym_LPAREN2, - ACTIONS(1517), 1, - anon_sym_TILDE, - ACTIONS(1519), 1, anon_sym_STAR, - ACTIONS(1521), 1, - anon_sym_AMP, - ACTIONS(3922), 1, - sym_identifier, - ACTIONS(4132), 1, - anon_sym_COLON_COLON, - ACTIONS(4795), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - STATE(4135), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4697), 1, - sym__scope_resolution, - STATE(5039), 1, - sym__declarator, - STATE(6716), 1, - sym_ms_based_modifier, - ACTIONS(2919), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3260), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4009), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(6663), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2917), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(2921), 8, - anon_sym_const, + anon_sym_RBRACK, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -243814,22 +274187,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(4825), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [46363] = 3, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [66555] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4573), 16, + ACTIONS(3935), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4722), 1, + anon_sym_LPAREN2, + ACTIONS(4728), 1, + anon_sym_LBRACK, + ACTIONS(3414), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -243844,20 +274226,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4571), 29, + ACTIONS(3419), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -243869,17 +274251,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [46416] = 3, + anon_sym_DASH_GT, + [66620] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4406), 16, + ACTIONS(3935), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4722), 1, + anon_sym_LPAREN2, + ACTIONS(4728), 1, + anon_sym_LBRACK, + ACTIONS(3414), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -243894,20 +274285,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4404), 29, + ACTIONS(3419), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -243919,17 +274310,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [46469] = 3, + anon_sym_DASH_GT, + [66685] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4675), 16, + ACTIONS(3937), 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(3414), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -243944,9 +274342,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4673), 29, + ACTIONS(3419), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -243956,7 +274357,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -243970,16 +274370,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [46522] = 3, + [66746] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4402), 16, + ACTIONS(4660), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -243996,7 +274397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4400), 29, + ACTIONS(4658), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -244020,16 +274421,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, sym_auto, anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [46575] = 3, + [66805] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4418), 16, + ACTIONS(4290), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -244046,7 +274453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4416), 29, + ACTIONS(4288), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -244070,16 +274477,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, sym_auto, anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [46628] = 3, + [66864] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4414), 16, + ACTIONS(4928), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -244094,9 +274507,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4412), 29, + ACTIONS(4926), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -244106,7 +274522,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -244119,17 +274534,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [46681] = 3, + [66923] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4430), 16, + ACTIONS(1959), 1, + anon_sym_LBRACE, + ACTIONS(4703), 1, + anon_sym_LPAREN2, + STATE(3106), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4328), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -244146,17 +274572,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4428), 29, + ACTIONS(4326), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -244170,16 +274594,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [46734] = 3, + [66988] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4440), 16, + ACTIONS(4807), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -244194,9 +274622,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4438), 29, + ACTIONS(4809), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -244206,7 +274637,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -244219,17 +274649,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [46787] = 3, + [67047] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4458), 16, + ACTIONS(4973), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -244244,9 +274678,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4456), 29, + ACTIONS(4971), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -244256,7 +274693,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -244269,234 +274705,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [46840] = 3, + [67106] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4550), 16, + ACTIONS(4549), 10, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_const, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4548), 29, + ACTIONS(4547), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [46893] = 3, + anon_sym_requires, + [67165] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4562), 16, + ACTIONS(4529), 10, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_const, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4560), 29, + ACTIONS(4527), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [46946] = 23, + anon_sym_requires, + [67224] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1497), 1, - anon_sym_operator, - ACTIONS(1515), 1, - anon_sym_LPAREN2, - ACTIONS(1517), 1, - anon_sym_TILDE, - ACTIONS(1519), 1, - anon_sym_STAR, - ACTIONS(1521), 1, + ACTIONS(4533), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(3922), 1, - sym_identifier, - ACTIONS(4132), 1, - anon_sym_COLON_COLON, - ACTIONS(4795), 1, - anon_sym_LBRACK, - STATE(4135), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4697), 1, - sym__scope_resolution, - STATE(5044), 1, - sym__declarator, - STATE(6716), 1, - sym_ms_based_modifier, - ACTIONS(2919), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(2438), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(3255), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6663), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2917), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(2921), 8, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(4825), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [47039] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1497), 1, - anon_sym_operator, - ACTIONS(1515), 1, + anon_sym_DOT, + ACTIONS(4531), 41, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(1517), 1, - anon_sym_TILDE, - ACTIONS(3922), 1, - sym_identifier, - ACTIONS(4132), 1, - anon_sym_COLON_COLON, - ACTIONS(4795), 1, - anon_sym_LBRACK, - ACTIONS(4831), 1, anon_sym_STAR, - ACTIONS(4833), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(4835), 1, - anon_sym_AMP, - STATE(4135), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4697), 1, - sym__scope_resolution, - STATE(5098), 1, - sym__declarator, - STATE(6466), 1, - sym_ms_based_modifier, - ACTIONS(2919), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(2501), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(3253), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6663), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2917), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(2921), 8, - anon_sym_const, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -244504,22 +274869,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(4825), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [47132] = 3, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [67283] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4530), 16, + ACTIONS(1959), 1, + anon_sym_LBRACE, + ACTIONS(4703), 1, + anon_sym_LPAREN2, + STATE(3117), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4553), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -244536,17 +274911,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4528), 29, + ACTIONS(4551), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -244560,66 +274933,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [47185] = 3, + [67348] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4655), 10, + ACTIONS(5077), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_const, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4653), 35, + anon_sym_DASH_GT, + ACTIONS(5075), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [47238] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [67407] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4647), 16, + ACTIONS(4383), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -244636,7 +275019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4645), 29, + ACTIONS(4381), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -244660,66 +275043,228 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, sym_auto, anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [47291] = 3, + [67466] = 50, ACTIONS(3), 1, sym_comment, - ACTIONS(4643), 16, + ACTIONS(4177), 1, + anon_sym_LPAREN2, + ACTIONS(5101), 1, + anon_sym_LBRACK, + ACTIONS(5137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5143), 1, anon_sym_DASH, + ACTIONS(5145), 1, anon_sym_PLUS, + ACTIONS(5147), 1, anon_sym_STAR, + ACTIONS(5149), 1, anon_sym_SLASH, + ACTIONS(5151), 1, anon_sym_PERCENT, + ACTIONS(5153), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5155), 1, + anon_sym_AMP_AMP, + ACTIONS(5157), 1, anon_sym_PIPE, + ACTIONS(5159), 1, anon_sym_CARET, + ACTIONS(5161), 1, anon_sym_AMP, + ACTIONS(5163), 1, + anon_sym_EQ_EQ, + ACTIONS(5165), 1, + anon_sym_BANG_EQ, + ACTIONS(5167), 1, anon_sym_GT, + ACTIONS(5169), 1, + anon_sym_GT_EQ, + ACTIONS(5171), 1, anon_sym_LT_EQ, + ACTIONS(5173), 1, anon_sym_LT, + ACTIONS(5175), 1, anon_sym_LT_LT, + ACTIONS(5177), 1, anon_sym_GT_GT, + ACTIONS(5179), 1, anon_sym_EQ, + ACTIONS(5181), 1, + anon_sym_QMARK, + ACTIONS(5183), 1, + anon_sym_STAR_EQ, + ACTIONS(5185), 1, + anon_sym_SLASH_EQ, + ACTIONS(5187), 1, + anon_sym_PERCENT_EQ, + ACTIONS(5189), 1, + anon_sym_PLUS_EQ, + ACTIONS(5191), 1, + anon_sym_DASH_EQ, + ACTIONS(5193), 1, + anon_sym_LT_LT_EQ, + ACTIONS(5195), 1, + anon_sym_GT_GT_EQ, + ACTIONS(5197), 1, + anon_sym_AMP_EQ, + ACTIONS(5199), 1, + anon_sym_CARET_EQ, + ACTIONS(5201), 1, + anon_sym_PIPE_EQ, + ACTIONS(5203), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5205), 1, + anon_sym_or, + ACTIONS(5207), 1, + anon_sym_and, + ACTIONS(5209), 1, + anon_sym_bitor, + ACTIONS(5211), 1, + anon_sym_xor, + ACTIONS(5213), 1, + anon_sym_bitand, + ACTIONS(5215), 1, + anon_sym_not_eq, + ACTIONS(5219), 1, + anon_sym_DOT_STAR, + ACTIONS(5221), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(5225), 1, + anon_sym_COMMA, + ACTIONS(5237), 1, + anon_sym_RPAREN, + STATE(1668), 1, + sym__binary_fold_operator, + STATE(2713), 1, + sym_argument_list, + STATE(7078), 1, + sym__fold_operator, + ACTIONS(5115), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4641), 29, + ACTIONS(5217), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [67619] = 50, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4177), 1, + anon_sym_LPAREN2, + ACTIONS(5101), 1, + anon_sym_LBRACK, + ACTIONS(5137), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(5139), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(5143), 1, + anon_sym_DASH, + ACTIONS(5145), 1, + anon_sym_PLUS, + ACTIONS(5147), 1, + anon_sym_STAR, + ACTIONS(5149), 1, + anon_sym_SLASH, + ACTIONS(5151), 1, + anon_sym_PERCENT, + ACTIONS(5153), 1, anon_sym_PIPE_PIPE, + ACTIONS(5155), 1, anon_sym_AMP_AMP, + ACTIONS(5157), 1, + anon_sym_PIPE, + ACTIONS(5159), 1, + anon_sym_CARET, + ACTIONS(5161), 1, + anon_sym_AMP, + ACTIONS(5163), 1, anon_sym_EQ_EQ, + ACTIONS(5165), 1, anon_sym_BANG_EQ, + ACTIONS(5167), 1, + anon_sym_GT, + ACTIONS(5169), 1, anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, + ACTIONS(5171), 1, + anon_sym_LT_EQ, + ACTIONS(5173), 1, + anon_sym_LT, + ACTIONS(5175), 1, + anon_sym_LT_LT, + ACTIONS(5177), 1, + anon_sym_GT_GT, + ACTIONS(5179), 1, + anon_sym_EQ, + ACTIONS(5181), 1, anon_sym_QMARK, + ACTIONS(5183), 1, anon_sym_STAR_EQ, + ACTIONS(5185), 1, anon_sym_SLASH_EQ, + ACTIONS(5187), 1, anon_sym_PERCENT_EQ, + ACTIONS(5189), 1, anon_sym_PLUS_EQ, + ACTIONS(5191), 1, anon_sym_DASH_EQ, + ACTIONS(5193), 1, anon_sym_LT_LT_EQ, + ACTIONS(5195), 1, anon_sym_GT_GT_EQ, + ACTIONS(5197), 1, anon_sym_AMP_EQ, + ACTIONS(5199), 1, anon_sym_CARET_EQ, + ACTIONS(5201), 1, anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, + ACTIONS(5203), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5205), 1, + anon_sym_or, + ACTIONS(5207), 1, + anon_sym_and, + ACTIONS(5209), 1, + anon_sym_bitor, + ACTIONS(5211), 1, + anon_sym_xor, + ACTIONS(5213), 1, + anon_sym_bitand, + ACTIONS(5215), 1, + anon_sym_not_eq, + ACTIONS(5219), 1, anon_sym_DOT_STAR, + ACTIONS(5221), 1, anon_sym_DASH_GT_STAR, - [47344] = 3, + ACTIONS(5239), 1, + anon_sym_RPAREN, + STATE(1668), 1, + sym__binary_fold_operator, + STATE(2713), 1, + sym_argument_list, + STATE(7078), 1, + sym__fold_operator, + ACTIONS(5115), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5217), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [67772] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4635), 16, + ACTIONS(5019), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -244734,9 +275279,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4633), 29, + ACTIONS(5017), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -244746,7 +275294,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -244759,17 +275306,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [47397] = 3, + [67831] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4596), 16, + ACTIONS(4628), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -244786,7 +275337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4594), 29, + ACTIONS(4626), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -244810,86 +275361,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, sym_auto, anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [47450] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1497), 1, - anon_sym_operator, - ACTIONS(1515), 1, - anon_sym_LPAREN2, - ACTIONS(1517), 1, - anon_sym_TILDE, - ACTIONS(1519), 1, - anon_sym_STAR, - ACTIONS(1521), 1, - anon_sym_AMP, - ACTIONS(3922), 1, - sym_identifier, - ACTIONS(4132), 1, - anon_sym_COLON_COLON, - ACTIONS(4795), 1, - anon_sym_LBRACK, - STATE(4135), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4697), 1, - sym__scope_resolution, - STATE(5039), 1, - sym__declarator, - STATE(6716), 1, - sym_ms_based_modifier, - ACTIONS(2919), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(2477), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(3260), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6663), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2917), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(2921), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(4825), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [47543] = 3, + [67890] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4849), 15, + ACTIONS(3414), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -244904,8 +275391,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4847), 30, + anon_sym_DASH_GT, + ACTIONS(3419), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -244915,12 +275406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -244932,30 +275418,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [47596] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [67949] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3793), 13, + ACTIONS(4485), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, anon_sym_const, - anon_sym_COLON, anon_sym_DOT, - ACTIONS(3795), 32, + ACTIONS(4483), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -244964,10 +275455,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_COLON_COLON, + anon_sym_GT_GT, + anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -244975,21 +275470,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, + anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [47649] = 3, + [68008] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4592), 16, + ACTIONS(3478), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(3480), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -244999,24 +275501,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4590), 29, + ACTIONS(3485), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -245025,21 +275528,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [47702] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [68069] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4444), 16, + ACTIONS(2476), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -245054,9 +275560,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4442), 29, + ACTIONS(2478), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -245066,7 +275575,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -245079,33 +275587,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [47755] = 3, + [68128] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3797), 13, + ACTIONS(4537), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, anon_sym_const, - anon_sym_COLON, anon_sym_DOT, - ACTIONS(3799), 32, + ACTIONS(4535), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -245114,60 +275624,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [47808] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3782), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(3784), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT_LT, - anon_sym_COLON_COLON, + anon_sym_GT_GT, + anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -245175,21 +275639,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, + anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [47861] = 3, + [68187] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 10, + ACTIONS(4481), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -245200,7 +275668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_const, anon_sym_DOT, - ACTIONS(4516), 35, + ACTIONS(4479), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -245230,67 +275698,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_auto, anon_sym_decltype, anon_sym_requires, - [47914] = 4, + [68246] = 50, ACTIONS(3), 1, sym_comment, - ACTIONS(3816), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(3818), 17, + ACTIONS(4177), 1, + anon_sym_LPAREN2, + ACTIONS(5101), 1, + anon_sym_LBRACK, + ACTIONS(5137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5139), 1, + anon_sym_COMMA, + ACTIONS(5143), 1, anon_sym_DASH, + ACTIONS(5145), 1, anon_sym_PLUS, + ACTIONS(5147), 1, anon_sym_STAR, + ACTIONS(5149), 1, anon_sym_SLASH, + ACTIONS(5151), 1, anon_sym_PERCENT, + ACTIONS(5153), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5155), 1, + anon_sym_AMP_AMP, + ACTIONS(5157), 1, anon_sym_PIPE, + ACTIONS(5159), 1, anon_sym_CARET, + ACTIONS(5161), 1, anon_sym_AMP, + ACTIONS(5163), 1, + anon_sym_EQ_EQ, + ACTIONS(5165), 1, + anon_sym_BANG_EQ, + ACTIONS(5167), 1, anon_sym_GT, + ACTIONS(5169), 1, + anon_sym_GT_EQ, + ACTIONS(5171), 1, anon_sym_LT_EQ, + ACTIONS(5173), 1, anon_sym_LT, + ACTIONS(5175), 1, anon_sym_LT_LT, + ACTIONS(5177), 1, anon_sym_GT_GT, - anon_sym_LBRACK, + ACTIONS(5179), 1, anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3823), 26, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, + ACTIONS(5181), 1, anon_sym_QMARK, + ACTIONS(5183), 1, anon_sym_STAR_EQ, + ACTIONS(5185), 1, anon_sym_SLASH_EQ, + ACTIONS(5187), 1, anon_sym_PERCENT_EQ, + ACTIONS(5189), 1, anon_sym_PLUS_EQ, + ACTIONS(5191), 1, anon_sym_DASH_EQ, + ACTIONS(5193), 1, anon_sym_LT_LT_EQ, + ACTIONS(5195), 1, anon_sym_GT_GT_EQ, + ACTIONS(5197), 1, anon_sym_AMP_EQ, + ACTIONS(5199), 1, anon_sym_CARET_EQ, + ACTIONS(5201), 1, anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(5203), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5205), 1, + anon_sym_or, + ACTIONS(5207), 1, + anon_sym_and, + ACTIONS(5209), 1, + anon_sym_bitor, + ACTIONS(5211), 1, + anon_sym_xor, + ACTIONS(5213), 1, + anon_sym_bitand, + ACTIONS(5215), 1, + anon_sym_not_eq, + ACTIONS(5219), 1, anon_sym_DOT_STAR, + ACTIONS(5221), 1, anon_sym_DASH_GT_STAR, - [47969] = 3, + ACTIONS(5241), 1, + anon_sym_RPAREN, + STATE(1668), 1, + sym__binary_fold_operator, + STATE(2713), 1, + sym_argument_list, + STATE(7078), 1, + sym__fold_operator, + ACTIONS(5115), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5217), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [68399] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4611), 16, + ACTIONS(5065), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -245305,9 +275831,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4609), 29, + ACTIONS(5063), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -245317,7 +275846,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -245330,17 +275858,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [48022] = 3, + [68458] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4619), 16, + ACTIONS(5057), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -245355,9 +275887,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4617), 29, + ACTIONS(5055), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -245367,7 +275902,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -245380,17 +275914,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [48075] = 3, + [68517] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4627), 16, + ACTIONS(4517), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -245407,7 +275945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4625), 29, + ACTIONS(4515), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -245431,16 +275969,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, sym_auto, anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [48128] = 3, + [68576] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4853), 15, + ACTIONS(4141), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -245455,8 +275999,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4851), 30, + anon_sym_DASH_GT, + ACTIONS(4143), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -245466,12 +276014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -245483,105 +276026,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [48181] = 44, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4330), 1, - anon_sym_LPAREN2, - ACTIONS(4711), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4713), 1, - anon_sym_COMMA, - ACTIONS(4717), 1, - anon_sym_DASH, - ACTIONS(4719), 1, - anon_sym_PLUS, - ACTIONS(4721), 1, - anon_sym_STAR, - ACTIONS(4723), 1, - anon_sym_SLASH, - ACTIONS(4725), 1, - anon_sym_PERCENT, - ACTIONS(4727), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4729), 1, - anon_sym_AMP_AMP, - ACTIONS(4731), 1, - anon_sym_PIPE, - ACTIONS(4733), 1, - anon_sym_CARET, - ACTIONS(4735), 1, - anon_sym_AMP, - ACTIONS(4737), 1, - anon_sym_EQ_EQ, - ACTIONS(4739), 1, - anon_sym_BANG_EQ, - ACTIONS(4741), 1, - anon_sym_GT, - ACTIONS(4743), 1, - anon_sym_GT_EQ, - ACTIONS(4745), 1, - anon_sym_LT_EQ, - ACTIONS(4747), 1, - anon_sym_LT, - ACTIONS(4749), 1, - anon_sym_LT_LT, - ACTIONS(4751), 1, - anon_sym_GT_GT, - ACTIONS(4753), 1, - anon_sym_LBRACK, - ACTIONS(4755), 1, - anon_sym_EQ, - ACTIONS(4757), 1, - anon_sym_QMARK, - ACTIONS(4759), 1, - anon_sym_STAR_EQ, - ACTIONS(4761), 1, - anon_sym_SLASH_EQ, - ACTIONS(4763), 1, - anon_sym_PERCENT_EQ, - ACTIONS(4765), 1, - anon_sym_PLUS_EQ, - ACTIONS(4767), 1, - anon_sym_DASH_EQ, - ACTIONS(4769), 1, - anon_sym_LT_LT_EQ, - ACTIONS(4771), 1, - anon_sym_GT_GT_EQ, - ACTIONS(4773), 1, - anon_sym_AMP_EQ, - ACTIONS(4775), 1, - anon_sym_CARET_EQ, - ACTIONS(4777), 1, - anon_sym_PIPE_EQ, - ACTIONS(4779), 1, - anon_sym_LT_EQ_GT, - ACTIONS(4785), 1, anon_sym_DOT_STAR, - ACTIONS(4787), 1, anon_sym_DASH_GT_STAR, - ACTIONS(4855), 1, - anon_sym_RPAREN, - STATE(1544), 1, - sym__binary_fold_operator, - STATE(2797), 1, - sym_argument_list, - STATE(6706), 1, - sym__fold_operator, - ACTIONS(4781), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4783), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - [48316] = 3, + [68635] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4558), 16, + ACTIONS(4237), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -245596,9 +276055,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4556), 29, + ACTIONS(4239), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -245608,7 +276070,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -245621,17 +276082,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [48369] = 3, + [68694] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4566), 16, + ACTIONS(5233), 1, + anon_sym_AMP_AMP, + ACTIONS(4985), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -245646,19 +276113,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4564), 29, + ACTIONS(4983), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -245671,24 +276139,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [48422] = 6, + [68755] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2367), 1, - anon_sym_LBRACE, - ACTIONS(4330), 1, - anon_sym_LPAREN2, - STATE(2788), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4667), 16, + ACTIONS(4185), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -245703,12 +276168,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4665), 25, + ACTIONS(4187), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -245726,15 +276195,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [48481] = 3, + [68814] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4418), 10, + ACTIONS(4541), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -245745,7 +276220,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_const, anon_sym_DOT, - ACTIONS(4416), 35, + ACTIONS(4539), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -245775,329 +276250,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_auto, anon_sym_decltype, anon_sym_requires, - [48534] = 3, + [68873] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4534), 10, + ACTIONS(4569), 16, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(4532), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [48587] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1497), 1, - anon_sym_operator, - ACTIONS(1515), 1, - anon_sym_LPAREN2, - ACTIONS(1517), 1, - anon_sym_TILDE, - ACTIONS(1519), 1, - anon_sym_STAR, - ACTIONS(1521), 1, - anon_sym_AMP, - ACTIONS(3922), 1, - sym_identifier, - ACTIONS(4132), 1, - anon_sym_COLON_COLON, - ACTIONS(4795), 1, - anon_sym_LBRACK, - STATE(4135), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4697), 1, - sym__scope_resolution, - STATE(5064), 1, - sym__declarator, - STATE(6716), 1, - sym_ms_based_modifier, - ACTIONS(2919), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3269), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4009), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(6663), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2917), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(2921), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(4825), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [48680] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1497), 1, - anon_sym_operator, - ACTIONS(1515), 1, - anon_sym_LPAREN2, - ACTIONS(1517), 1, - anon_sym_TILDE, - ACTIONS(3922), 1, - sym_identifier, - ACTIONS(4132), 1, - anon_sym_COLON_COLON, - ACTIONS(4795), 1, - anon_sym_LBRACK, - ACTIONS(4831), 1, - anon_sym_STAR, - ACTIONS(4833), 1, - anon_sym_AMP_AMP, - ACTIONS(4835), 1, - anon_sym_AMP, - STATE(4135), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4697), 1, - sym__scope_resolution, - STATE(5076), 1, - sym__declarator, - STATE(6466), 1, - sym_ms_based_modifier, - ACTIONS(2919), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3249), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4009), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(6663), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2917), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(2921), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(4825), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [48773] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1497), 1, - anon_sym_operator, - ACTIONS(1515), 1, - anon_sym_LPAREN2, - ACTIONS(1517), 1, - anon_sym_TILDE, - ACTIONS(4795), 1, - anon_sym_LBRACK, - ACTIONS(4817), 1, - sym_identifier, - ACTIONS(4819), 1, anon_sym_STAR, - ACTIONS(4821), 1, - anon_sym_AMP_AMP, - ACTIONS(4823), 1, - anon_sym_AMP, - ACTIONS(4825), 1, - anon_sym_COLON_COLON, - STATE(4135), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4708), 1, - sym__scope_resolution, - STATE(5052), 1, - sym__declarator, - STATE(6547), 1, - sym_ms_based_modifier, - ACTIONS(2919), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(2520), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(3261), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6663), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2917), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(2921), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(4825), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [48866] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4295), 1, - anon_sym_COLON_COLON, - ACTIONS(4297), 13, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_const, - anon_sym_COLON, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(4299), 31, + anon_sym_DASH_GT, + ACTIONS(4567), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_GT_EQ, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [48921] = 4, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [68932] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4857), 1, - sym_literal_suffix, - ACTIONS(3724), 15, + ACTIONS(3414), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -246112,8 +276336,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(3716), 29, + anon_sym_DASH_GT, + ACTIONS(3419), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -246123,11 +276351,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -246139,14 +276363,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [48976] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [68991] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4631), 16, + ACTIONS(4716), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -246161,9 +276392,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4629), 29, + ACTIONS(4711), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -246173,7 +276407,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -246186,17 +276419,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [49029] = 3, + [69050] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4510), 10, + ACTIONS(4668), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -246207,7 +276444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_const, anon_sym_DOT, - ACTIONS(4508), 35, + ACTIONS(4666), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -246237,66 +276474,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_auto, anon_sym_decltype, anon_sym_requires, - [49082] = 3, + [69109] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4671), 10, + ACTIONS(4632), 16, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_const, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(4669), 35, + anon_sym_DASH_GT, + ACTIONS(4630), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_requires, - [49135] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [69168] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4370), 10, + ACTIONS(4545), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -246307,7 +276556,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_const, anon_sym_DOT, - ACTIONS(4368), 35, + ACTIONS(4543), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -246337,98 +276586,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_auto, anon_sym_decltype, anon_sym_requires, - [49188] = 3, + [69227] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4659), 10, + ACTIONS(4525), 16, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_const, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(4657), 35, + anon_sym_DASH_GT, + ACTIONS(4523), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_requires, - [49241] = 5, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [69286] = 4, ACTIONS(3), 1, sym_comment, - STATE(2487), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(4859), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4092), 13, + ACTIONS(4125), 1, + anon_sym_COLON_COLON, + ACTIONS(4139), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(4137), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4090), 27, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -246436,26 +276694,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - sym_primitive_type, - sym_identifier, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [49298] = 6, + [69347] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2367), 1, + ACTIONS(3424), 1, + anon_sym_COLON_COLON, + ACTIONS(3426), 1, anon_sym_LBRACE, - ACTIONS(4330), 1, + ACTIONS(4777), 1, + anon_sym_LT, + ACTIONS(5243), 1, + anon_sym_EQ, + STATE(3356), 1, + sym_template_argument_list, + ACTIONS(5245), 13, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(3419), 16, + anon_sym_DOT_DOT_DOT, anon_sym_LPAREN2, - STATE(2778), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4679), 16, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + ACTIONS(3414), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -246466,89 +276766,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4677), 25, + [69418] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4411), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4409), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [49357] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1497), 1, - anon_sym_operator, - ACTIONS(1515), 1, - anon_sym_LPAREN2, - ACTIONS(1517), 1, - anon_sym_TILDE, - ACTIONS(4062), 1, - sym_identifier, - ACTIONS(4072), 1, - anon_sym_COLON_COLON, - ACTIONS(4795), 1, - anon_sym_LBRACK, - ACTIONS(4805), 1, - anon_sym_STAR, - ACTIONS(4807), 1, - anon_sym_AMP_AMP, - ACTIONS(4809), 1, - anon_sym_AMP, - STATE(4135), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4678), 1, - sym__scope_resolution, - STATE(4812), 1, - sym__declarator, - STATE(6782), 1, - sym_ms_based_modifier, - ACTIONS(2919), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3251), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4009), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(6663), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2917), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(2921), 8, - anon_sym_const, + anon_sym_RBRACK, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -246556,142 +276814,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(4825), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [49450] = 3, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [69477] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4534), 16, + ACTIONS(4477), 10, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_const, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4532), 29, + ACTIONS(4475), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [49503] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1497), 1, - anon_sym_operator, - ACTIONS(1515), 1, - anon_sym_LPAREN2, - ACTIONS(1517), 1, - anon_sym_TILDE, - ACTIONS(4062), 1, - sym_identifier, - ACTIONS(4072), 1, - anon_sym_COLON_COLON, - ACTIONS(4795), 1, - anon_sym_LBRACK, - ACTIONS(4805), 1, - anon_sym_STAR, - ACTIONS(4807), 1, - anon_sym_AMP_AMP, - ACTIONS(4809), 1, - anon_sym_AMP, - STATE(4135), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4678), 1, - sym__scope_resolution, - STATE(4823), 1, - sym__declarator, - STATE(6782), 1, - sym_ms_based_modifier, - ACTIONS(2919), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(2489), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(3256), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6663), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2917), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(2921), 8, - anon_sym_const, + anon_sym_RBRACK, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(4825), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [49596] = 3, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [69536] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4864), 15, + ACTIONS(4203), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -246706,8 +276903,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4862), 30, + anon_sym_DASH_GT, + ACTIONS(4205), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -246717,11 +276918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -246733,15 +276930,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_literal_suffix, - [49649] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [69595] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4370), 16, + ACTIONS(4217), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -246756,9 +276959,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4368), 29, + ACTIONS(4219), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -246768,7 +276974,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -246781,67 +276986,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [49702] = 3, + [69654] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4631), 10, + ACTIONS(4529), 16, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_const, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(4629), 35, + anon_sym_DASH_GT, + ACTIONS(4527), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_requires, - [49755] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [69713] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4422), 10, + ACTIONS(4312), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -246852,7 +277067,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_const, anon_sym_DOT, - ACTIONS(4420), 35, + ACTIONS(4310), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -246882,107 +277097,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_auto, anon_sym_decltype, anon_sym_requires, - [49808] = 44, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4330), 1, - anon_sym_LPAREN2, - ACTIONS(4711), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4713), 1, - anon_sym_COMMA, - ACTIONS(4717), 1, - anon_sym_DASH, - ACTIONS(4719), 1, - anon_sym_PLUS, - ACTIONS(4721), 1, - anon_sym_STAR, - ACTIONS(4723), 1, - anon_sym_SLASH, - ACTIONS(4725), 1, - anon_sym_PERCENT, - ACTIONS(4727), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4729), 1, - anon_sym_AMP_AMP, - ACTIONS(4731), 1, - anon_sym_PIPE, - ACTIONS(4733), 1, - anon_sym_CARET, - ACTIONS(4735), 1, - anon_sym_AMP, - ACTIONS(4737), 1, - anon_sym_EQ_EQ, - ACTIONS(4739), 1, - anon_sym_BANG_EQ, - ACTIONS(4741), 1, - anon_sym_GT, - ACTIONS(4743), 1, - anon_sym_GT_EQ, - ACTIONS(4745), 1, - anon_sym_LT_EQ, - ACTIONS(4747), 1, - anon_sym_LT, - ACTIONS(4749), 1, - anon_sym_LT_LT, - ACTIONS(4751), 1, - anon_sym_GT_GT, - ACTIONS(4753), 1, - anon_sym_LBRACK, - ACTIONS(4755), 1, - anon_sym_EQ, - ACTIONS(4757), 1, - anon_sym_QMARK, - ACTIONS(4759), 1, - anon_sym_STAR_EQ, - ACTIONS(4761), 1, - anon_sym_SLASH_EQ, - ACTIONS(4763), 1, - anon_sym_PERCENT_EQ, - ACTIONS(4765), 1, - anon_sym_PLUS_EQ, - ACTIONS(4767), 1, - anon_sym_DASH_EQ, - ACTIONS(4769), 1, - anon_sym_LT_LT_EQ, - ACTIONS(4771), 1, - anon_sym_GT_GT_EQ, - ACTIONS(4773), 1, - anon_sym_AMP_EQ, - ACTIONS(4775), 1, - anon_sym_CARET_EQ, - ACTIONS(4777), 1, - anon_sym_PIPE_EQ, - ACTIONS(4779), 1, - anon_sym_LT_EQ_GT, - ACTIONS(4785), 1, - anon_sym_DOT_STAR, - ACTIONS(4787), 1, - anon_sym_DASH_GT_STAR, - ACTIONS(4866), 1, - anon_sym_RPAREN, - STATE(1544), 1, - sym__binary_fold_operator, - STATE(2797), 1, - sym_argument_list, - STATE(6706), 1, - sym__fold_operator, - ACTIONS(4781), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4783), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - [49943] = 3, + [69772] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4588), 10, + ACTIONS(4473), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -246993,7 +277123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_const, anon_sym_DOT, - ACTIONS(4586), 35, + ACTIONS(4471), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -247023,86 +277153,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_auto, anon_sym_decltype, anon_sym_requires, - [49996] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1497), 1, - anon_sym_operator, - ACTIONS(1515), 1, - anon_sym_LPAREN2, - ACTIONS(1517), 1, - anon_sym_TILDE, - ACTIONS(4062), 1, - sym_identifier, - ACTIONS(4072), 1, - anon_sym_COLON_COLON, - ACTIONS(4789), 1, - anon_sym_STAR, - ACTIONS(4791), 1, - anon_sym_AMP_AMP, - ACTIONS(4793), 1, - anon_sym_AMP, - ACTIONS(4795), 1, - anon_sym_LBRACK, - STATE(4135), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4678), 1, - sym__scope_resolution, - STATE(4858), 1, - sym__declarator, - STATE(6414), 1, - sym_ms_based_modifier, - ACTIONS(2919), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3257), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4009), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(6663), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2917), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(2921), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(4825), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [50089] = 3, + [69831] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4581), 10, + ACTIONS(4469), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -247113,7 +277179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_const, anon_sym_DOT, - ACTIONS(4579), 35, + ACTIONS(4467), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -247143,16 +277209,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_auto, anon_sym_decltype, anon_sym_requires, - [50142] = 3, + [69890] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4554), 10, + ACTIONS(4465), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -247163,7 +277235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_const, anon_sym_DOT, - ACTIONS(4552), 35, + ACTIONS(4463), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -247193,169 +277265,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_auto, anon_sym_decltype, anon_sym_requires, - [50195] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1497), 1, - anon_sym_operator, - ACTIONS(1515), 1, - anon_sym_LPAREN2, - ACTIONS(1517), 1, - anon_sym_TILDE, - ACTIONS(3922), 1, - sym_identifier, - ACTIONS(4132), 1, - anon_sym_COLON_COLON, - ACTIONS(4795), 1, - anon_sym_LBRACK, - ACTIONS(4831), 1, - anon_sym_STAR, - ACTIONS(4833), 1, - anon_sym_AMP_AMP, - ACTIONS(4835), 1, - anon_sym_AMP, - STATE(4135), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4697), 1, - sym__scope_resolution, - STATE(5075), 1, - sym__declarator, - STATE(6466), 1, - sym_ms_based_modifier, - ACTIONS(2919), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3268), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4009), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(6663), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2917), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(2921), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(4825), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [50288] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1497), 1, - anon_sym_operator, - ACTIONS(1517), 1, - anon_sym_TILDE, - ACTIONS(3087), 1, - anon_sym_LPAREN2, - ACTIONS(3089), 1, - anon_sym_STAR, - ACTIONS(3091), 1, - anon_sym_AMP_AMP, - ACTIONS(3093), 1, - anon_sym_AMP, - ACTIONS(3922), 1, - sym_identifier, - ACTIONS(4074), 1, - anon_sym_LBRACK, - ACTIONS(4132), 1, - anon_sym_COLON_COLON, - ACTIONS(4695), 1, - anon_sym_RPAREN, - STATE(4080), 1, - sym_parameter_list, - STATE(4697), 1, - sym__scope_resolution, - STATE(5039), 1, - sym__declarator, - STATE(5151), 1, - sym__abstract_declarator, - STATE(6716), 1, - sym_ms_based_modifier, - STATE(4149), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6663), 2, - sym_template_type, - sym_dependent_type_identifier, - STATE(4832), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(2921), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(4825), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [50381] = 9, + [69949] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, - anon_sym_COLON_COLON, - ACTIONS(3740), 1, - anon_sym_LBRACE, - ACTIONS(4583), 1, - anon_sym_LT, - ACTIONS(4689), 1, - anon_sym_LBRACK, - STATE(2302), 1, - sym_template_argument_list, - ACTIONS(4687), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(3724), 14, + ACTIONS(4537), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -247366,20 +277291,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, anon_sym_DOT, - ACTIONS(3716), 24, + anon_sym_DASH_GT, + ACTIONS(4535), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -247392,63 +277321,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [50446] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [70008] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4522), 10, + ACTIONS(4363), 16, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_const, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(4520), 35, + anon_sym_DASH_GT, + ACTIONS(4361), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_requires, - [50499] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [70067] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4663), 10, + ACTIONS(4648), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -247459,7 +277403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_const, anon_sym_DOT, - ACTIONS(4661), 35, + ACTIONS(4646), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -247489,86 +277433,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_auto, anon_sym_decltype, anon_sym_requires, - [50552] = 23, + [70126] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1497), 1, - anon_sym_operator, - ACTIONS(1515), 1, - anon_sym_LPAREN2, - ACTIONS(1517), 1, - anon_sym_TILDE, - ACTIONS(4062), 1, - sym_identifier, - ACTIONS(4072), 1, - anon_sym_COLON_COLON, - ACTIONS(4789), 1, + ACTIONS(4916), 19, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(4791), 1, - anon_sym_AMP_AMP, - ACTIONS(4793), 1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(4795), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4914), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, - STATE(4135), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4678), 1, - sym__scope_resolution, - STATE(4865), 1, - sym__declarator, - STATE(6414), 1, - sym_ms_based_modifier, - ACTIONS(2919), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(2498), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(3247), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6663), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2917), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(2921), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(4825), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [50645] = 3, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [70185] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4671), 16, + ACTIONS(5069), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -247583,9 +277519,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4669), 29, + ACTIONS(5067), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -247595,7 +277534,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -247608,17 +277546,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_auto, - anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [50698] = 3, + [70244] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4655), 16, + ACTIONS(4541), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -247635,7 +277577,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4653), 29, + ACTIONS(4539), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -247659,16 +277601,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, sym_auto, anon_sym_decltype, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [50751] = 3, + [70303] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4486), 10, + ACTIONS(4407), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -247679,7 +277627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_const, anon_sym_DOT, - ACTIONS(4484), 35, + ACTIONS(4405), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -247709,16 +277657,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_auto, anon_sym_decltype, anon_sym_requires, - [50804] = 3, + [70362] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4466), 10, + ACTIONS(4461), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -247729,7 +277683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_const, anon_sym_DOT, - ACTIONS(4464), 35, + ACTIONS(4459), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -247759,66 +277713,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_auto, anon_sym_decltype, anon_sym_requires, - [50857] = 3, + [70421] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4623), 16, + ACTIONS(4457), 10, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_const, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4621), 29, + ACTIONS(4455), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [50910] = 3, + anon_sym_requires, + [70480] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4462), 10, + ACTIONS(4290), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -247829,7 +277795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_const, anon_sym_DOT, - ACTIONS(4460), 35, + ACTIONS(4288), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -247859,16 +277825,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_auto, anon_sym_decltype, anon_sym_requires, - [50963] = 3, + [70539] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4454), 10, + ACTIONS(4453), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -247879,7 +277851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_const, anon_sym_DOT, - ACTIONS(4452), 35, + ACTIONS(4451), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -247909,248 +277881,246 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_auto, anon_sym_decltype, anon_sym_requires, - [51016] = 44, + [70598] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4330), 1, - anon_sym_LPAREN2, - ACTIONS(4711), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4713), 1, - anon_sym_COMMA, - ACTIONS(4717), 1, + ACTIONS(4449), 10, anon_sym_DASH, - ACTIONS(4719), 1, anon_sym_PLUS, - ACTIONS(4721), 1, - anon_sym_STAR, - ACTIONS(4723), 1, anon_sym_SLASH, - ACTIONS(4725), 1, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4447), 41, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(4727), 1, anon_sym_PIPE_PIPE, - ACTIONS(4729), 1, anon_sym_AMP_AMP, - ACTIONS(4731), 1, - anon_sym_PIPE, - ACTIONS(4733), 1, anon_sym_CARET, - ACTIONS(4735), 1, - anon_sym_AMP, - ACTIONS(4737), 1, anon_sym_EQ_EQ, - ACTIONS(4739), 1, anon_sym_BANG_EQ, - ACTIONS(4741), 1, - anon_sym_GT, - ACTIONS(4743), 1, anon_sym_GT_EQ, - ACTIONS(4745), 1, - anon_sym_LT_EQ, - ACTIONS(4747), 1, - anon_sym_LT, - ACTIONS(4749), 1, anon_sym_LT_LT, - ACTIONS(4751), 1, anon_sym_GT_GT, - ACTIONS(4753), 1, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(4755), 1, - anon_sym_EQ, - ACTIONS(4757), 1, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4759), 1, - anon_sym_STAR_EQ, - ACTIONS(4761), 1, - anon_sym_SLASH_EQ, - ACTIONS(4763), 1, - anon_sym_PERCENT_EQ, - ACTIONS(4765), 1, - anon_sym_PLUS_EQ, - ACTIONS(4767), 1, - anon_sym_DASH_EQ, - ACTIONS(4769), 1, - anon_sym_LT_LT_EQ, - ACTIONS(4771), 1, - anon_sym_GT_GT_EQ, - ACTIONS(4773), 1, - anon_sym_AMP_EQ, - ACTIONS(4775), 1, - anon_sym_CARET_EQ, - ACTIONS(4777), 1, - anon_sym_PIPE_EQ, - ACTIONS(4779), 1, anon_sym_LT_EQ_GT, - ACTIONS(4785), 1, - anon_sym_DOT_STAR, - ACTIONS(4787), 1, - anon_sym_DASH_GT_STAR, - ACTIONS(4868), 1, - anon_sym_RPAREN, - STATE(1544), 1, - sym__binary_fold_operator, - STATE(2797), 1, - sym_argument_list, - STATE(6706), 1, - sym__fold_operator, - ACTIONS(4781), 2, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(4783), 2, - anon_sym_DOT, anon_sym_DASH_GT, - [51151] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [70657] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4615), 16, + ACTIONS(4445), 10, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_const, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4613), 29, + ACTIONS(4443), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [51204] = 44, + anon_sym_requires, + [70716] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4330), 1, - anon_sym_LPAREN2, - ACTIONS(4711), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4713), 1, - anon_sym_COMMA, - ACTIONS(4717), 1, + ACTIONS(4441), 10, anon_sym_DASH, - ACTIONS(4719), 1, anon_sym_PLUS, - ACTIONS(4721), 1, - anon_sym_STAR, - ACTIONS(4723), 1, anon_sym_SLASH, - ACTIONS(4725), 1, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4439), 41, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(4727), 1, anon_sym_PIPE_PIPE, - ACTIONS(4729), 1, anon_sym_AMP_AMP, - ACTIONS(4731), 1, - anon_sym_PIPE, - ACTIONS(4733), 1, anon_sym_CARET, - ACTIONS(4735), 1, - anon_sym_AMP, - ACTIONS(4737), 1, anon_sym_EQ_EQ, - ACTIONS(4739), 1, anon_sym_BANG_EQ, - ACTIONS(4741), 1, - anon_sym_GT, - ACTIONS(4743), 1, anon_sym_GT_EQ, - ACTIONS(4745), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [70775] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4433), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, anon_sym_LT_EQ, - ACTIONS(4747), 1, anon_sym_LT, - ACTIONS(4749), 1, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4431), 41, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, - ACTIONS(4751), 1, anon_sym_GT_GT, - ACTIONS(4753), 1, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(4755), 1, - anon_sym_EQ, - ACTIONS(4757), 1, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4759), 1, - anon_sym_STAR_EQ, - ACTIONS(4761), 1, - anon_sym_SLASH_EQ, - ACTIONS(4763), 1, - anon_sym_PERCENT_EQ, - ACTIONS(4765), 1, - anon_sym_PLUS_EQ, - ACTIONS(4767), 1, - anon_sym_DASH_EQ, - ACTIONS(4769), 1, - anon_sym_LT_LT_EQ, - ACTIONS(4771), 1, - anon_sym_GT_GT_EQ, - ACTIONS(4773), 1, - anon_sym_AMP_EQ, - ACTIONS(4775), 1, - anon_sym_CARET_EQ, - ACTIONS(4777), 1, - anon_sym_PIPE_EQ, - ACTIONS(4779), 1, anon_sym_LT_EQ_GT, - ACTIONS(4785), 1, - anon_sym_DOT_STAR, - ACTIONS(4787), 1, - anon_sym_DASH_GT_STAR, - ACTIONS(4870), 1, - anon_sym_RPAREN, - STATE(1544), 1, - sym__binary_fold_operator, - STATE(2797), 1, - sym_argument_list, - STATE(6706), 1, - sym__fold_operator, - ACTIONS(4781), 2, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(4783), 2, - anon_sym_DOT, anon_sym_DASH_GT, - [51339] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [70834] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4450), 10, + ACTIONS(4429), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -248161,7 +278131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_const, anon_sym_DOT, - ACTIONS(4448), 35, + ACTIONS(4427), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -248191,18 +278161,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_auto, anon_sym_decltype, anon_sym_requires, - [51392] = 4, + [70893] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4876), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(4874), 16, + ACTIONS(4545), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -248216,10 +278190,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_DOT, - ACTIONS(4872), 28, + anon_sym_DASH_GT, + ACTIONS(4543), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -248229,10 +278203,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -248245,13 +278217,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [70952] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4549), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, anon_sym_DASH_GT, - [51447] = 3, + ACTIONS(4547), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [71011] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4426), 10, + ACTIONS(4640), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -248262,7 +278299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_const, anon_sym_DOT, - ACTIONS(4424), 35, + ACTIONS(4638), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -248292,63 +278329,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_auto, anon_sym_decltype, anon_sym_requires, - [51500] = 23, + [71070] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1497), 1, - anon_sym_operator, - ACTIONS(1515), 1, + ACTIONS(4387), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4385), 41, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(1517), 1, - anon_sym_TILDE, - ACTIONS(4795), 1, - anon_sym_LBRACK, - ACTIONS(4817), 1, - sym_identifier, - ACTIONS(4819), 1, anon_sym_STAR, - ACTIONS(4821), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(4823), 1, - anon_sym_AMP, - ACTIONS(4825), 1, - anon_sym_COLON_COLON, - STATE(4135), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4708), 1, - sym__scope_resolution, - STATE(5035), 1, - sym__declarator, - STATE(6547), 1, - sym_ms_based_modifier, - ACTIONS(2919), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3244), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4009), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(6663), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2917), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(2921), 8, - anon_sym_const, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -248356,22 +278382,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(4825), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [51593] = 3, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [71129] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4651), 10, + ACTIONS(4557), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -248382,7 +278411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_const, anon_sym_DOT, - ACTIONS(4649), 35, + ACTIONS(4555), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -248412,16 +278441,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_auto, anon_sym_decltype, anon_sym_requires, - [51646] = 3, + [71188] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4874), 15, + ACTIONS(4940), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -248435,12 +278470,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4872), 29, + ACTIONS(4938), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -248448,10 +278486,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -248463,85 +278499,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [51698] = 12, + [71247] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, - anon_sym_COLON_COLON, - ACTIONS(3740), 1, - anon_sym_LBRACE, - ACTIONS(4837), 1, + ACTIONS(4636), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(4878), 1, - anon_sym_COMMA, - ACTIONS(4881), 1, - anon_sym_RBRACK, - ACTIONS(4884), 1, - anon_sym_EQ, - STATE(3315), 1, - sym_template_argument_list, - STATE(5677), 1, - aux_sym_structured_binding_declarator_repeat1, - ACTIONS(4886), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(3716), 13, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4634), 41, anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - ACTIONS(3724), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - [51768] = 9, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [71306] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - STATE(2534), 1, - sym_argument_list, - ACTIONS(4894), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4890), 14, + ACTIONS(4371), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -248556,18 +278583,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(4888), 23, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4369), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -248580,97 +278609,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - [51832] = 8, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [71365] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(3505), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(3507), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(4892), 1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - STATE(2534), 1, - sym_argument_list, - ACTIONS(4902), 14, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [71424] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4672), 10, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(4900), 25, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4670), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [51894] = 13, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [71483] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(1959), 1, + anon_sym_LBRACE, + ACTIONS(4703), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(4914), 1, - anon_sym_LT_EQ_GT, - STATE(2534), 1, - sym_argument_list, - ACTIONS(4894), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4906), 2, + STATE(3130), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4324), 16, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4912), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4908), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4910), 7, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(4904), 22, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4322), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -248679,9 +278769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -248693,77 +278781,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [51966] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(4914), 1, anon_sym_LT_EQ_GT, - ACTIONS(4918), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4920), 1, - anon_sym_AMP_AMP, - ACTIONS(4922), 1, - anon_sym_PIPE, - ACTIONS(4924), 1, - anon_sym_CARET, - ACTIONS(4926), 1, - anon_sym_AMP, - ACTIONS(4932), 1, - anon_sym_GT_EQ, - ACTIONS(4934), 1, - anon_sym_EQ, - STATE(2534), 1, - sym_argument_list, - ACTIONS(4894), 2, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(4906), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4912), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4928), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4908), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4930), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4916), 17, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [52054] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [71548] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4938), 15, + ACTIONS(5009), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -248778,8 +278810,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4936), 29, + anon_sym_DASH_GT, + ACTIONS(5007), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -248789,11 +278825,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -248805,24 +278837,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [52106] = 8, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [71607] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - STATE(2534), 1, - sym_argument_list, - ACTIONS(4942), 14, + ACTIONS(5013), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -248837,18 +278866,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(4940), 25, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5011), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -248860,64 +278893,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [52168] = 5, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [71666] = 4, ACTIONS(3), 1, sym_comment, - STATE(2203), 1, - sym__enum_base_clause, - STATE(2266), 1, - sym_enumerator_list, - ACTIONS(4340), 15, + ACTIONS(4125), 1, + anon_sym_COLON_COLON, + ACTIONS(4139), 13, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_const, + anon_sym_COLON, anon_sym_DOT, - ACTIONS(4338), 27, + ACTIONS(4137), 37, anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_COLON, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - [52224] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [71727] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3724), 15, + ACTIONS(4557), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -248933,7 +278980,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_DOT, - ACTIONS(3716), 29, + anon_sym_DASH_GT, + ACTIONS(4555), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -248943,11 +278991,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -248960,17 +279005,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [52276] = 5, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [71786] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4944), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4946), 1, - anon_sym_AMP_AMP, - ACTIONS(4270), 15, + ACTIONS(4561), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -248986,19 +279036,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_DOT, - ACTIONS(4272), 27, + anon_sym_DASH_GT, + ACTIONS(4559), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -249011,13 +279061,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [52332] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [71845] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4372), 15, + ACTIONS(4640), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -249033,7 +279092,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_DOT, - ACTIONS(4374), 29, + anon_sym_DASH_GT, + ACTIONS(4638), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -249043,11 +279103,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -249060,111 +279117,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [52384] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [71904] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4950), 15, + ACTIONS(4676), 10, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_const, anon_sym_DOT, - ACTIONS(4948), 29, + ACTIONS(4674), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, anon_sym_COLON, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [52436] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [71963] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4954), 15, + ACTIONS(4632), 10, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_const, anon_sym_DOT, - ACTIONS(4952), 29, + ACTIONS(4630), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, anon_sym_COLON, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [52488] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [72022] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4958), 15, + ACTIONS(4565), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -249180,7 +279260,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_DOT, - ACTIONS(4956), 29, + anon_sym_DASH_GT, + ACTIONS(4563), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -249190,11 +279271,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -249207,62 +279285,181 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [52540] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [72081] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4962), 15, + ACTIONS(4628), 10, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_const, anon_sym_DOT, - ACTIONS(4960), 29, + ACTIONS(4626), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, anon_sym_COLON, anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [72140] = 50, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4177), 1, + anon_sym_LPAREN2, + ACTIONS(5101), 1, + anon_sym_LBRACK, + ACTIONS(5137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5143), 1, + anon_sym_DASH, + ACTIONS(5145), 1, + anon_sym_PLUS, + ACTIONS(5147), 1, + anon_sym_STAR, + ACTIONS(5149), 1, + anon_sym_SLASH, + ACTIONS(5151), 1, + anon_sym_PERCENT, + ACTIONS(5153), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5155), 1, + anon_sym_AMP_AMP, + ACTIONS(5157), 1, + anon_sym_PIPE, + ACTIONS(5159), 1, + anon_sym_CARET, + ACTIONS(5161), 1, + anon_sym_AMP, + ACTIONS(5163), 1, + anon_sym_EQ_EQ, + ACTIONS(5165), 1, + anon_sym_BANG_EQ, + ACTIONS(5167), 1, + anon_sym_GT, + ACTIONS(5169), 1, + anon_sym_GT_EQ, + ACTIONS(5171), 1, + anon_sym_LT_EQ, + ACTIONS(5173), 1, + anon_sym_LT, + ACTIONS(5175), 1, + anon_sym_LT_LT, + ACTIONS(5177), 1, + anon_sym_GT_GT, + ACTIONS(5179), 1, + anon_sym_EQ, + ACTIONS(5181), 1, + anon_sym_QMARK, + ACTIONS(5183), 1, anon_sym_STAR_EQ, + ACTIONS(5185), 1, anon_sym_SLASH_EQ, + ACTIONS(5187), 1, anon_sym_PERCENT_EQ, + ACTIONS(5189), 1, anon_sym_PLUS_EQ, + ACTIONS(5191), 1, anon_sym_DASH_EQ, + ACTIONS(5193), 1, anon_sym_LT_LT_EQ, + ACTIONS(5195), 1, anon_sym_GT_GT_EQ, + ACTIONS(5197), 1, anon_sym_AMP_EQ, + ACTIONS(5199), 1, anon_sym_CARET_EQ, + ACTIONS(5201), 1, anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, + ACTIONS(5203), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5205), 1, + anon_sym_or, + ACTIONS(5207), 1, + anon_sym_and, + ACTIONS(5209), 1, + anon_sym_bitor, + ACTIONS(5211), 1, + anon_sym_xor, + ACTIONS(5213), 1, + anon_sym_bitand, + ACTIONS(5215), 1, + anon_sym_not_eq, + ACTIONS(5219), 1, + anon_sym_DOT_STAR, + ACTIONS(5221), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(5225), 1, + anon_sym_COMMA, + ACTIONS(5247), 1, + anon_sym_RPAREN, + STATE(1668), 1, + sym__binary_fold_operator, + STATE(2713), 1, + sym_argument_list, + STATE(7078), 1, + sym__fold_operator, + ACTIONS(5115), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5217), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [52592] = 3, + [72293] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3902), 15, + ACTIONS(4872), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -249277,8 +279474,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(3904), 29, + anon_sym_DASH_GT, + ACTIONS(4870), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -249288,11 +279489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -249304,112 +279501,180 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [52644] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [72352] = 50, ACTIONS(3), 1, sym_comment, - ACTIONS(3759), 15, + ACTIONS(4177), 1, + anon_sym_LPAREN2, + ACTIONS(5101), 1, + anon_sym_LBRACK, + ACTIONS(5137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5139), 1, + anon_sym_COMMA, + ACTIONS(5143), 1, anon_sym_DASH, + ACTIONS(5145), 1, anon_sym_PLUS, + ACTIONS(5147), 1, anon_sym_STAR, + ACTIONS(5149), 1, anon_sym_SLASH, + ACTIONS(5151), 1, anon_sym_PERCENT, + ACTIONS(5153), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5155), 1, + anon_sym_AMP_AMP, + ACTIONS(5157), 1, anon_sym_PIPE, + ACTIONS(5159), 1, anon_sym_CARET, + ACTIONS(5161), 1, anon_sym_AMP, + ACTIONS(5163), 1, + anon_sym_EQ_EQ, + ACTIONS(5165), 1, + anon_sym_BANG_EQ, + ACTIONS(5167), 1, anon_sym_GT, + ACTIONS(5169), 1, + anon_sym_GT_EQ, + ACTIONS(5171), 1, anon_sym_LT_EQ, + ACTIONS(5173), 1, anon_sym_LT, + ACTIONS(5175), 1, anon_sym_LT_LT, + ACTIONS(5177), 1, anon_sym_GT_GT, + ACTIONS(5179), 1, anon_sym_EQ, - anon_sym_DOT, - ACTIONS(3764), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, + ACTIONS(5181), 1, anon_sym_QMARK, + ACTIONS(5183), 1, anon_sym_STAR_EQ, + ACTIONS(5185), 1, anon_sym_SLASH_EQ, + ACTIONS(5187), 1, anon_sym_PERCENT_EQ, + ACTIONS(5189), 1, anon_sym_PLUS_EQ, + ACTIONS(5191), 1, anon_sym_DASH_EQ, + ACTIONS(5193), 1, anon_sym_LT_LT_EQ, + ACTIONS(5195), 1, anon_sym_GT_GT_EQ, + ACTIONS(5197), 1, anon_sym_AMP_EQ, + ACTIONS(5199), 1, anon_sym_CARET_EQ, + ACTIONS(5201), 1, anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, + ACTIONS(5203), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5205), 1, + anon_sym_or, + ACTIONS(5207), 1, + anon_sym_and, + ACTIONS(5209), 1, + anon_sym_bitor, + ACTIONS(5211), 1, + anon_sym_xor, + ACTIONS(5213), 1, + anon_sym_bitand, + ACTIONS(5215), 1, + anon_sym_not_eq, + ACTIONS(5219), 1, + anon_sym_DOT_STAR, + ACTIONS(5221), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(5249), 1, + anon_sym_RPAREN, + STATE(1668), 1, + sym__binary_fold_operator, + STATE(2713), 1, + sym_argument_list, + STATE(7078), 1, + sym__fold_operator, + ACTIONS(5115), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5217), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [52696] = 3, + [72505] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3886), 15, + ACTIONS(4620), 10, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_const, anon_sym_DOT, - ACTIONS(3888), 29, + ACTIONS(4618), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, anon_sym_COLON, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [52748] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [72564] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3724), 15, + ACTIONS(4169), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -249424,8 +279689,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(3716), 29, + anon_sym_DASH_GT, + ACTIONS(4171), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -249435,11 +279704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -249451,112 +279716,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [52800] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [72623] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3759), 15, + ACTIONS(4561), 10, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_const, anon_sym_DOT, - ACTIONS(3764), 29, + ACTIONS(4559), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, anon_sym_COLON, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [52852] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [72682] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3759), 15, + ACTIONS(4565), 10, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_const, anon_sym_DOT, - ACTIONS(3764), 29, + ACTIONS(4563), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, anon_sym_COLON, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [52904] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [72741] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3759), 15, + ACTIONS(4573), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -249572,7 +279858,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_DOT, - ACTIONS(3764), 29, + anon_sym_DASH_GT, + ACTIONS(4571), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -249582,11 +279869,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -249599,13 +279883,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [52956] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [72800] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3874), 15, + ACTIONS(4977), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -249620,8 +279913,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(3876), 29, + anon_sym_DASH_GT, + ACTIONS(4975), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -249631,11 +279928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -249647,37 +279940,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [53008] = 10, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [72859] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, - anon_sym_COLON_COLON, - ACTIONS(3740), 1, - anon_sym_LBRACE, - ACTIONS(3746), 1, - anon_sym_EQ, - ACTIONS(3748), 1, - anon_sym_COLON, - ACTIONS(4837), 1, - anon_sym_LT, - STATE(3315), 1, - sym_template_argument_list, - ACTIONS(3750), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(3724), 13, + ACTIONS(4387), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -249688,29 +279965,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(3716), 15, + anon_sym_DASH_GT, + ACTIONS(4385), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [53074] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [72918] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4966), 15, + ACTIONS(4580), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -249726,7 +280026,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_DOT, - ACTIONS(4964), 29, + anon_sym_DASH_GT, + ACTIONS(4578), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -249736,11 +280037,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -249753,13 +280051,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [53126] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [72977] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4970), 15, + ACTIONS(4584), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -249775,7 +280082,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_DOT, - ACTIONS(4968), 29, + anon_sym_DASH_GT, + ACTIONS(4582), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -249785,11 +280093,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -249802,17 +280107,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [53178] = 5, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [73036] = 3, ACTIONS(3), 1, sym_comment, - STATE(2196), 1, - sym__enum_base_clause, - STATE(2259), 1, - sym_enumerator_list, - ACTIONS(4350), 15, + ACTIONS(4391), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -249828,8 +280138,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_DOT, - ACTIONS(4348), 27, + anon_sym_DASH_GT, + ACTIONS(4389), 35, anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -249838,7 +280151,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -249851,15 +280163,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - [53234] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [73095] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4293), 12, + ACTIONS(3501), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -249871,8 +280190,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_const, + anon_sym_COLON, anon_sym_DOT, - ACTIONS(4291), 32, + ACTIONS(3503), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -249884,6 +280204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_LT, + anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_volatile, @@ -249893,9 +280214,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, @@ -249905,10 +280231,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [53286] = 3, + [73154] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3874), 15, + ACTIONS(4817), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -249923,8 +280249,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(3876), 29, + anon_sym_DASH_GT, + ACTIONS(4819), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -249934,11 +280264,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -249950,14 +280276,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [53338] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [73213] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3874), 15, + ACTIONS(4395), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -249973,7 +280306,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_DOT, - ACTIONS(3876), 29, + anon_sym_DASH_GT, + ACTIONS(4393), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -249983,11 +280317,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -250000,36 +280331,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [53390] = 10, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [73272] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, - anon_sym_COLON_COLON, - ACTIONS(3740), 1, - anon_sym_LBRACE, - ACTIONS(3746), 1, - anon_sym_EQ, - ACTIONS(3791), 1, - anon_sym_COLON, - ACTIONS(4837), 1, - anon_sym_LT, - STATE(3315), 1, - sym_template_argument_list, - ACTIONS(3750), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(3724), 13, + ACTIONS(4399), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -250040,81 +280357,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(3716), 15, + anon_sym_DASH_GT, + ACTIONS(4397), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [53456] = 21, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [73331] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(4914), 1, - anon_sym_LT_EQ_GT, - ACTIONS(4918), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4920), 1, - anon_sym_AMP_AMP, - ACTIONS(4922), 1, - anon_sym_PIPE, - ACTIONS(4924), 1, - anon_sym_CARET, - ACTIONS(4926), 1, - anon_sym_AMP, - ACTIONS(4932), 1, - anon_sym_GT_EQ, - ACTIONS(4974), 1, - anon_sym_EQ, - STATE(2534), 1, - sym_argument_list, - ACTIONS(4894), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4906), 2, + ACTIONS(4403), 16, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4912), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4928), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4908), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4930), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(4972), 17, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4401), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -250126,395 +280442,359 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [53544] = 10, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [73390] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, - anon_sym_COLON_COLON, - ACTIONS(3740), 1, - anon_sym_LBRACE, - ACTIONS(3746), 1, - anon_sym_EQ, - ACTIONS(3809), 1, - anon_sym_COLON, - ACTIONS(4837), 1, - anon_sym_LT, - STATE(3315), 1, - sym_template_argument_list, - ACTIONS(3750), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(3724), 13, + ACTIONS(4415), 10, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_LT, + anon_sym_const, anon_sym_DOT, - ACTIONS(3716), 15, + ACTIONS(4413), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [53610] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [73449] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4978), 15, + ACTIONS(4600), 10, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_const, anon_sym_DOT, - ACTIONS(4976), 29, + ACTIONS(4598), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, anon_sym_COLON, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [53662] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3926), 1, - anon_sym___attribute__, - ACTIONS(3930), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3932), 1, - anon_sym___declspec, - ACTIONS(3936), 1, - anon_sym_virtual, - ACTIONS(4984), 1, sym_auto, - ACTIONS(4986), 1, anon_sym_decltype, - STATE(3142), 1, - sym_decltype_auto, - ACTIONS(3924), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(4980), 6, - anon_sym_AMP, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - anon_sym_template, - anon_sym_operator, - ACTIONS(3934), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(2894), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual_function_specifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(4982), 10, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_EQ, - anon_sym_GT2, - [53734] = 9, + anon_sym_requires, + [73508] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - STATE(2534), 1, - sym_argument_list, - ACTIONS(4894), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4990), 14, + ACTIONS(4399), 10, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(4988), 23, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4397), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_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_LT_EQ_GT, - [53798] = 3, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [73567] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4950), 15, + ACTIONS(4616), 10, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_const, anon_sym_DOT, - ACTIONS(4948), 29, + ACTIONS(4614), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, anon_sym_COLON, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [53850] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [73626] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4992), 15, + ACTIONS(3473), 13, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_const, + anon_sym_COLON, anon_sym_DOT, - ACTIONS(2391), 29, + ACTIONS(3478), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LT_LT, + anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [53902] = 22, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [73685] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(4914), 1, - anon_sym_LT_EQ_GT, - ACTIONS(4918), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4920), 1, - anon_sym_AMP_AMP, - ACTIONS(4922), 1, - anon_sym_PIPE, - ACTIONS(4924), 1, - anon_sym_CARET, - ACTIONS(4926), 1, - anon_sym_AMP, - ACTIONS(4932), 1, - anon_sym_GT_EQ, - ACTIONS(4994), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4998), 1, - anon_sym_EQ, - STATE(2534), 1, - sym_argument_list, - ACTIONS(4894), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4906), 2, + ACTIONS(3467), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4912), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4928), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4908), 3, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4930), 3, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(4996), 16, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(3469), 38, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [53992] = 3, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [73744] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5002), 15, + ACTIONS(4407), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -250530,7 +280810,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_DOT, - ACTIONS(5000), 29, + anon_sym_DASH_GT, + ACTIONS(4405), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -250540,11 +280821,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -250557,15 +280835,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [54044] = 4, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [73803] = 3, ACTIONS(3), 1, sym_comment, - STATE(2655), 1, - sym_enumerator_list, - ACTIONS(4381), 17, + ACTIONS(4411), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -250575,22 +280860,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_DOT, - ACTIONS(4379), 26, + anon_sym_DASH_GT, + ACTIONS(4409), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -250600,20 +280886,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [54098] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [73862] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3906), 15, + ACTIONS(4421), 1, + anon_sym_LBRACK, + STATE(2961), 1, + sym_new_declarator, + ACTIONS(4720), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -250623,27 +280920,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(3908), 29, + ACTIONS(4718), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, + anon_sym_LBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -250651,20 +280947,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [54150] = 4, + anon_sym_GT2, + [73925] = 3, ACTIONS(3), 1, sym_comment, - STATE(2694), 1, - sym_enumerator_list, - ACTIONS(4391), 17, + ACTIONS(4876), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -250674,23 +280974,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4389), 26, + anon_sym_DASH_GT, + ACTIONS(4874), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -250699,20 +281002,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [54204] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [73984] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2302), 15, + ACTIONS(4415), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -250728,7 +281036,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_DOT, - ACTIONS(2304), 29, + anon_sym_DASH_GT, + ACTIONS(4413), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -250738,11 +281047,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -250755,13 +281061,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [54256] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [74043] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5006), 15, + ACTIONS(4737), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -250776,8 +281091,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(5004), 29, + anon_sym_DASH_GT, + ACTIONS(4735), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -250787,11 +281106,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -250803,184 +281118,237 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [54308] = 23, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [74102] = 50, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4177), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(5101), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(4914), 1, - anon_sym_LT_EQ_GT, - ACTIONS(4918), 1, + ACTIONS(5137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5139), 1, + anon_sym_COMMA, + ACTIONS(5143), 1, + anon_sym_DASH, + ACTIONS(5145), 1, + anon_sym_PLUS, + ACTIONS(5147), 1, + anon_sym_STAR, + ACTIONS(5149), 1, + anon_sym_SLASH, + ACTIONS(5151), 1, + anon_sym_PERCENT, + ACTIONS(5153), 1, anon_sym_PIPE_PIPE, - ACTIONS(4920), 1, + ACTIONS(5155), 1, anon_sym_AMP_AMP, - ACTIONS(4922), 1, + ACTIONS(5157), 1, anon_sym_PIPE, - ACTIONS(4924), 1, + ACTIONS(5159), 1, anon_sym_CARET, - ACTIONS(4926), 1, + ACTIONS(5161), 1, anon_sym_AMP, - ACTIONS(4932), 1, - anon_sym_GT_EQ, - ACTIONS(4994), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5010), 1, - anon_sym_EQ, - ACTIONS(5012), 1, - anon_sym_QMARK, - STATE(2534), 1, - sym_argument_list, - ACTIONS(4894), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4906), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(4912), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4928), 2, + ACTIONS(5163), 1, anon_sym_EQ_EQ, + ACTIONS(5165), 1, anon_sym_BANG_EQ, - ACTIONS(4908), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4930), 3, + ACTIONS(5167), 1, anon_sym_GT, + ACTIONS(5169), 1, + anon_sym_GT_EQ, + ACTIONS(5171), 1, anon_sym_LT_EQ, + ACTIONS(5173), 1, anon_sym_LT, - ACTIONS(5008), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(5175), 1, + anon_sym_LT_LT, + ACTIONS(5177), 1, + anon_sym_GT_GT, + ACTIONS(5179), 1, + anon_sym_EQ, + ACTIONS(5181), 1, + anon_sym_QMARK, + ACTIONS(5183), 1, anon_sym_STAR_EQ, + ACTIONS(5185), 1, anon_sym_SLASH_EQ, + ACTIONS(5187), 1, anon_sym_PERCENT_EQ, + ACTIONS(5189), 1, anon_sym_PLUS_EQ, + ACTIONS(5191), 1, anon_sym_DASH_EQ, + ACTIONS(5193), 1, anon_sym_LT_LT_EQ, + ACTIONS(5195), 1, anon_sym_GT_GT_EQ, + ACTIONS(5197), 1, anon_sym_AMP_EQ, + ACTIONS(5199), 1, anon_sym_CARET_EQ, + ACTIONS(5201), 1, anon_sym_PIPE_EQ, - [54400] = 6, + ACTIONS(5203), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5205), 1, + anon_sym_or, + ACTIONS(5207), 1, + anon_sym_and, + ACTIONS(5209), 1, + anon_sym_bitor, + ACTIONS(5211), 1, + anon_sym_xor, + ACTIONS(5213), 1, + anon_sym_bitand, + ACTIONS(5215), 1, + anon_sym_not_eq, + ACTIONS(5219), 1, + anon_sym_DOT_STAR, + ACTIONS(5221), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(5251), 1, + anon_sym_RPAREN, + STATE(1668), 1, + sym__binary_fold_operator, + STATE(2713), 1, + sym_argument_list, + STATE(7078), 1, + sym__fold_operator, + ACTIONS(5115), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5217), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [74255] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4500), 1, - sym_auto, - ACTIONS(4502), 1, - anon_sym_decltype, - STATE(2736), 1, - sym_decltype_auto, - ACTIONS(4366), 17, + ACTIONS(4125), 1, + anon_sym_COLON_COLON, + ACTIONS(4123), 13, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym_const, + anon_sym_COLON, anon_sym_DOT, - ACTIONS(4364), 24, + ACTIONS(4121), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [54458] = 3, + anon_sym_requires, + [74316] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5016), 15, + ACTIONS(4680), 10, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_const, anon_sym_DOT, - ACTIONS(5014), 29, + ACTIONS(4678), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, anon_sym_COLON, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [54510] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [74375] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5020), 15, + ACTIONS(2485), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -250995,8 +281363,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(5018), 29, + anon_sym_DASH_GT, + ACTIONS(2487), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -251006,11 +281378,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -251022,124 +281390,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [54562] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [74434] = 50, ACTIONS(3), 1, sym_comment, - ACTIONS(3882), 15, + ACTIONS(4177), 1, + anon_sym_LPAREN2, + ACTIONS(5101), 1, + anon_sym_LBRACK, + ACTIONS(5137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5139), 1, + anon_sym_COMMA, + ACTIONS(5143), 1, anon_sym_DASH, + ACTIONS(5145), 1, anon_sym_PLUS, + ACTIONS(5147), 1, anon_sym_STAR, + ACTIONS(5149), 1, anon_sym_SLASH, + ACTIONS(5151), 1, anon_sym_PERCENT, + ACTIONS(5153), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5155), 1, + anon_sym_AMP_AMP, + ACTIONS(5157), 1, anon_sym_PIPE, + ACTIONS(5159), 1, anon_sym_CARET, + ACTIONS(5161), 1, anon_sym_AMP, + ACTIONS(5163), 1, + anon_sym_EQ_EQ, + ACTIONS(5165), 1, + anon_sym_BANG_EQ, + ACTIONS(5167), 1, anon_sym_GT, + ACTIONS(5169), 1, + anon_sym_GT_EQ, + ACTIONS(5171), 1, anon_sym_LT_EQ, + ACTIONS(5173), 1, anon_sym_LT, + ACTIONS(5175), 1, anon_sym_LT_LT, + ACTIONS(5177), 1, anon_sym_GT_GT, + ACTIONS(5179), 1, anon_sym_EQ, - anon_sym_DOT, - ACTIONS(3884), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, + ACTIONS(5181), 1, anon_sym_QMARK, + ACTIONS(5183), 1, anon_sym_STAR_EQ, + ACTIONS(5185), 1, anon_sym_SLASH_EQ, + ACTIONS(5187), 1, anon_sym_PERCENT_EQ, + ACTIONS(5189), 1, anon_sym_PLUS_EQ, + ACTIONS(5191), 1, anon_sym_DASH_EQ, + ACTIONS(5193), 1, anon_sym_LT_LT_EQ, + ACTIONS(5195), 1, anon_sym_GT_GT_EQ, + ACTIONS(5197), 1, anon_sym_AMP_EQ, + ACTIONS(5199), 1, anon_sym_CARET_EQ, + ACTIONS(5201), 1, anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(5203), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5205), 1, + anon_sym_or, + ACTIONS(5207), 1, + anon_sym_and, + ACTIONS(5209), 1, + anon_sym_bitor, + ACTIONS(5211), 1, + anon_sym_xor, + ACTIONS(5213), 1, + anon_sym_bitand, + ACTIONS(5215), 1, + anon_sym_not_eq, + ACTIONS(5219), 1, + anon_sym_DOT_STAR, + ACTIONS(5221), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(5253), 1, + anon_sym_RPAREN, + STATE(1668), 1, + sym__binary_fold_operator, + STATE(2713), 1, + sym_argument_list, + STATE(7078), 1, + sym__fold_operator, + ACTIONS(5115), 2, + anon_sym_DOT, anon_sym_DASH_GT, - [54614] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3735), 1, - anon_sym_COLON_COLON, - ACTIONS(3740), 1, - anon_sym_LBRACE, - ACTIONS(4837), 1, - anon_sym_LT, - ACTIONS(4881), 1, - anon_sym_RBRACK, - ACTIONS(4884), 1, - anon_sym_EQ, - ACTIONS(5022), 1, - anon_sym_COMMA, - STATE(3315), 1, - sym_template_argument_list, - STATE(5677), 1, - aux_sym_structured_binding_declarator_repeat1, - ACTIONS(4886), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(3716), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + ACTIONS(5217), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - ACTIONS(3724), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - [54684] = 4, + [74587] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3816), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(3818), 16, + ACTIONS(4932), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -251154,9 +281522,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3823), 26, + ACTIONS(4930), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -251178,188 +281549,250 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [54738] = 3, + [74646] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3918), 15, + ACTIONS(4608), 10, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_const, anon_sym_DOT, - ACTIONS(3920), 29, + ACTIONS(4606), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, anon_sym_COLON, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [54790] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [74705] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2287), 15, + ACTIONS(3493), 13, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_const, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(3495), 38, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [74764] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4383), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_const, anon_sym_DOT, - ACTIONS(2289), 29, + ACTIONS(4381), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, anon_sym_COLON, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [54842] = 10, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [74823] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, - anon_sym_COLON_COLON, - ACTIONS(3740), 1, - anon_sym_LBRACE, - ACTIONS(3746), 1, - anon_sym_EQ, - ACTIONS(3786), 1, - anon_sym_COLON, - ACTIONS(4837), 1, - anon_sym_LT, - STATE(3315), 1, - sym_template_argument_list, - ACTIONS(3750), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(3724), 13, + ACTIONS(4569), 10, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_LT, + anon_sym_const, anon_sym_DOT, - ACTIONS(3716), 15, + ACTIONS(4567), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [54908] = 10, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [74882] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - STATE(2534), 1, - sym_argument_list, - ACTIONS(4894), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4908), 3, + ACTIONS(4290), 16, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5026), 11, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -251369,18 +281802,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(5024), 23, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4288), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -251393,23 +281828,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - [54974] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - STATE(2534), 1, - sym_argument_list, - ACTIONS(4894), 2, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5026), 14, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [74941] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4652), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -251424,18 +281858,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(5024), 23, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4650), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -251448,181 +281884,248 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - [55038] = 10, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_auto, + anon_sym_decltype, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [75000] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, - anon_sym_COLON_COLON, - ACTIONS(3740), 1, - anon_sym_LBRACE, - ACTIONS(3746), 1, - anon_sym_EQ, - ACTIONS(4837), 1, - anon_sym_LT, - ACTIONS(5028), 1, - anon_sym_COLON, - STATE(3315), 1, - sym_template_argument_list, - ACTIONS(3750), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(3724), 13, + ACTIONS(4604), 10, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_LT, + anon_sym_const, anon_sym_DOT, - ACTIONS(3716), 15, + ACTIONS(4602), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [55104] = 20, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [75059] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(4914), 1, - anon_sym_LT_EQ_GT, - ACTIONS(4920), 1, - anon_sym_AMP_AMP, - ACTIONS(4922), 1, - anon_sym_PIPE, - ACTIONS(4924), 1, - anon_sym_CARET, - ACTIONS(4926), 1, - anon_sym_AMP, - ACTIONS(4932), 1, - anon_sym_GT_EQ, - ACTIONS(5026), 1, - anon_sym_EQ, - STATE(2534), 1, - sym_argument_list, - ACTIONS(4894), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4906), 2, + ACTIONS(4573), 10, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4912), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4928), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4908), 3, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4930), 3, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(5024), 18, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4571), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [55190] = 3, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [75118] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4383), 15, + ACTIONS(4371), 10, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_const, anon_sym_DOT, - ACTIONS(4385), 29, + ACTIONS(4369), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, anon_sym_COLON, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [55242] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [75177] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2478), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2476), 43, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_using, + anon_sym_concept, + [75235] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5032), 15, + ACTIONS(3478), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(3480), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -251638,7 +282141,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_DOT, - ACTIONS(5030), 29, + anon_sym_DASH_GT, + ACTIONS(3485), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -251648,11 +282152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -251665,43 +282165,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [55294] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [75295] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5036), 15, + ACTIONS(4419), 1, + anon_sym_LPAREN2, + ACTIONS(5261), 1, + anon_sym_LBRACK, + ACTIONS(5263), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5267), 1, + anon_sym_DOT, + ACTIONS(5269), 1, + anon_sym_DASH_GT, + STATE(3020), 1, + sym_argument_list, + ACTIONS(5255), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(5259), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5265), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5257), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4856), 12, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, - anon_sym_DOT, - ACTIONS(5034), 29, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4850), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -251709,48 +282230,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [55346] = 4, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_GT2, + [75373] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5038), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(4874), 17, + ACTIONS(4419), 1, + anon_sym_LPAREN2, + ACTIONS(5261), 1, + anon_sym_LBRACK, + ACTIONS(5267), 1, + anon_sym_DOT, + ACTIONS(5269), 1, + anon_sym_DASH_GT, + STATE(3020), 1, + sym_argument_list, + ACTIONS(5255), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(5259), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5265), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5257), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4936), 12, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4872), 26, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4934), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -251758,69 +282293,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [55400] = 19, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_GT2, + [75449] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4125), 1, + anon_sym_COLON_COLON, + ACTIONS(4121), 6, anon_sym_LPAREN2, - ACTIONS(4892), 1, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LBRACK_LBRACK, + ACTIONS(4123), 43, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_LBRACK, - ACTIONS(4896), 1, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_using, + anon_sym_concept, + [75509] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3495), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3493), 43, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_using, + anon_sym_concept, + [75567] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4419), 1, + anon_sym_LPAREN2, + ACTIONS(5261), 1, + anon_sym_LBRACK, + ACTIONS(5267), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(5269), 1, anon_sym_DASH_GT, - ACTIONS(4914), 1, - anon_sym_LT_EQ_GT, - ACTIONS(4922), 1, - anon_sym_PIPE, - ACTIONS(4924), 1, - anon_sym_CARET, - ACTIONS(4926), 1, - anon_sym_AMP, - ACTIONS(4932), 1, - anon_sym_GT_EQ, - ACTIONS(5026), 1, - anon_sym_EQ, - STATE(2534), 1, + STATE(3020), 1, sym_argument_list, - ACTIONS(4894), 2, + ACTIONS(5265), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(4906), 2, + ACTIONS(4950), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4912), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4928), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4908), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4930), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(5024), 19, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4948), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -251828,63 +282465,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [55484] = 18, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_GT2, + [75637] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4419), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(5261), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(5263), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5267), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(5269), 1, anon_sym_DASH_GT, - ACTIONS(4914), 1, - anon_sym_LT_EQ_GT, - ACTIONS(4924), 1, - anon_sym_CARET, - ACTIONS(4926), 1, - anon_sym_AMP, - ACTIONS(4932), 1, - anon_sym_GT_EQ, - STATE(2534), 1, + STATE(3020), 1, sym_argument_list, - ACTIONS(4894), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4906), 2, + ACTIONS(5255), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4912), 2, + ACTIONS(5259), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4928), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5026), 2, - anon_sym_PIPE, - anon_sym_EQ, - ACTIONS(4908), 3, + ACTIONS(5265), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5257), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4930), 3, + ACTIONS(4936), 12, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(5024), 19, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4934), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -251892,62 +282531,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [55566] = 17, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_GT2, + [75715] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4419), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(5261), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(5263), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5267), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(5269), 1, anon_sym_DASH_GT, - ACTIONS(4914), 1, - anon_sym_LT_EQ_GT, - ACTIONS(4926), 1, - anon_sym_AMP, - ACTIONS(4932), 1, - anon_sym_GT_EQ, - STATE(2534), 1, + STATE(3020), 1, sym_argument_list, - ACTIONS(4894), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4906), 2, + ACTIONS(5255), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4912), 2, + ACTIONS(5259), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4928), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4908), 3, + ACTIONS(5265), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5257), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4930), 3, + ACTIONS(5271), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(5026), 3, + ACTIONS(4936), 8, anon_sym_PIPE, anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ, - ACTIONS(5024), 19, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4934), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -251955,61 +282597,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [55646] = 16, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_GT2, + [75795] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4419), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(5261), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(5263), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5267), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(5269), 1, anon_sym_DASH_GT, - ACTIONS(4914), 1, - anon_sym_LT_EQ_GT, - ACTIONS(4932), 1, - anon_sym_GT_EQ, - STATE(2534), 1, + STATE(3020), 1, sym_argument_list, - ACTIONS(4894), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4906), 2, + ACTIONS(5255), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4912), 2, + ACTIONS(5259), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4928), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4908), 3, + ACTIONS(5265), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5257), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4930), 3, + ACTIONS(5273), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5271), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(5026), 4, + ACTIONS(4936), 8, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_EQ, - ACTIONS(5024), 19, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4934), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -252017,43 +282665,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [55724] = 4, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_GT2, + [75877] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(4295), 1, - anon_sym_COLON_COLON, - ACTIONS(4370), 17, + ACTIONS(4419), 1, + anon_sym_LPAREN2, + ACTIONS(5261), 1, + anon_sym_LBRACK, + ACTIONS(5263), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5267), 1, + anon_sym_DOT, + ACTIONS(5269), 1, + anon_sym_DASH_GT, + ACTIONS(5275), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5277), 1, + anon_sym_AMP_AMP, + ACTIONS(5279), 1, + anon_sym_PIPE, + ACTIONS(5283), 1, + anon_sym_AMP, + ACTIONS(5285), 1, + anon_sym_or, + ACTIONS(5287), 1, + anon_sym_and, + ACTIONS(5289), 1, + anon_sym_bitor, + ACTIONS(5291), 1, + anon_sym_bitand, + STATE(3020), 1, + sym_argument_list, + ACTIONS(4961), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(5255), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(5259), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5265), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5281), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5257), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(5273), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5271), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(4368), 26, + ACTIONS(4959), 16, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -252064,63 +282746,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_GT2, - [55778] = 15, + [75977] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4419), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(5261), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(4914), 1, + ACTIONS(5263), 1, anon_sym_LT_EQ_GT, - ACTIONS(4932), 1, - anon_sym_GT_EQ, - STATE(2534), 1, + ACTIONS(5267), 1, + anon_sym_DOT, + ACTIONS(5269), 1, + anon_sym_DASH_GT, + ACTIONS(5283), 1, + anon_sym_AMP, + ACTIONS(5291), 1, + anon_sym_bitand, + STATE(3020), 1, sym_argument_list, - ACTIONS(4894), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4906), 2, + ACTIONS(5255), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4912), 2, + ACTIONS(5259), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4908), 3, + ACTIONS(5265), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5257), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4930), 3, + ACTIONS(5273), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5271), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(5026), 4, + ACTIONS(4936), 7, anon_sym_PIPE, anon_sym_CARET, - anon_sym_AMP, anon_sym_EQ, - ACTIONS(5024), 21, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4934), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -252128,58 +282811,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [55854] = 13, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + anon_sym_GT2, + [76063] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4419), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(5261), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(5263), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5267), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(5269), 1, anon_sym_DASH_GT, - ACTIONS(4914), 1, - anon_sym_LT_EQ_GT, - STATE(2534), 1, + ACTIONS(5283), 1, + anon_sym_AMP, + ACTIONS(5291), 1, + anon_sym_bitand, + STATE(3020), 1, sym_argument_list, - ACTIONS(4894), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4906), 2, + ACTIONS(5255), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4912), 2, + ACTIONS(5259), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4908), 3, + ACTIONS(5265), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5281), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5257), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5026), 7, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(5273), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5271), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + ACTIONS(4936), 5, + anon_sym_PIPE, anon_sym_EQ, - ACTIONS(5024), 22, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + ACTIONS(4934), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -252187,113 +282881,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [55926] = 11, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + anon_sym_GT2, + [76151] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4225), 1, + sym_literal_suffix, + ACTIONS(3419), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(4892), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - STATE(2534), 1, - sym_argument_list, - ACTIONS(4894), 2, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(4906), 2, + anon_sym_DASH_GT, + anon_sym_GT2, + ACTIONS(3414), 26, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4908), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5026), 9, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(5024), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_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_LT_EQ_GT, - [55994] = 12, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + [76211] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4419), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(5261), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(5263), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5267), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(5269), 1, anon_sym_DASH_GT, - STATE(2534), 1, + ACTIONS(5277), 1, + anon_sym_AMP_AMP, + ACTIONS(5279), 1, + anon_sym_PIPE, + ACTIONS(5283), 1, + anon_sym_AMP, + ACTIONS(5287), 1, + anon_sym_and, + ACTIONS(5289), 1, + anon_sym_bitor, + ACTIONS(5291), 1, + anon_sym_bitand, + STATE(3020), 1, sym_argument_list, - ACTIONS(4894), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4906), 2, + ACTIONS(5255), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4912), 2, + ACTIONS(5259), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4908), 3, + ACTIONS(5265), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5281), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(4936), 3, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + ACTIONS(5257), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5026), 7, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(5273), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5271), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_EQ, - ACTIONS(5024), 23, + ACTIONS(4934), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -252301,15 +283012,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_LT_EQ_GT, - [56064] = 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_GT2, + [76307] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3898), 15, + ACTIONS(4419), 1, + anon_sym_LPAREN2, + ACTIONS(5261), 1, + anon_sym_LBRACK, + ACTIONS(5267), 1, + anon_sym_DOT, + ACTIONS(5269), 1, + anon_sym_DASH_GT, + STATE(3020), 1, + sym_argument_list, + ACTIONS(5265), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4936), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -252319,27 +283045,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_DOT, - ACTIONS(3900), 29, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4934), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -252347,45 +283069,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [56116] = 13, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_GT2, + [76377] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3926), 1, - anon_sym___attribute__, - ACTIONS(3930), 1, + ACTIONS(3503), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(3932), 1, - anon_sym___declspec, - ACTIONS(3936), 1, - anon_sym_virtual, - ACTIONS(4984), 1, - sym_auto, - ACTIONS(4986), 1, - anon_sym_decltype, - STATE(3142), 1, - sym_decltype_auto, - ACTIONS(3924), 5, + ACTIONS(3501), 43, + anon_sym_AMP, anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - ACTIONS(5040), 6, - anon_sym_AMP, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - anon_sym_template, - anon_sym_operator, - ACTIONS(3934), 8, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -252394,60 +283116,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(2922), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual_function_specifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(5042), 10, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_EQ, - anon_sym_GT2, - [56188] = 3, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_using, + anon_sym_concept, + [76435] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3894), 15, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(4419), 1, + anon_sym_LPAREN2, + ACTIONS(5261), 1, + anon_sym_LBRACK, + ACTIONS(5267), 1, + anon_sym_DOT, + ACTIONS(5269), 1, + anon_sym_DASH_GT, + STATE(3020), 1, + sym_argument_list, + ACTIONS(5265), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5257), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4936), 16, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_DOT, - ACTIONS(3896), 29, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4934), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -252455,18 +283186,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [56240] = 3, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_GT2, + [76507] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4699), 15, + ACTIONS(4419), 1, + anon_sym_LPAREN2, + ACTIONS(5261), 1, + anon_sym_LBRACK, + ACTIONS(5267), 1, + anon_sym_DOT, + ACTIONS(5269), 1, + anon_sym_DASH_GT, + STATE(3020), 1, + sym_argument_list, + ACTIONS(5023), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -252476,27 +283220,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_DOT, - ACTIONS(4697), 29, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(5021), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -252504,97 +283244,362 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [56292] = 3, + anon_sym_GT2, + [76575] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5046), 15, + ACTIONS(4419), 1, + anon_sym_LPAREN2, + ACTIONS(5261), 1, + anon_sym_LBRACK, + ACTIONS(5263), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5267), 1, + anon_sym_DOT, + ACTIONS(5269), 1, + anon_sym_DASH_GT, + ACTIONS(5275), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5277), 1, + anon_sym_AMP_AMP, + ACTIONS(5279), 1, + anon_sym_PIPE, + ACTIONS(5283), 1, + anon_sym_AMP, + ACTIONS(5285), 1, + anon_sym_or, + ACTIONS(5287), 1, + anon_sym_and, + ACTIONS(5289), 1, + anon_sym_bitor, + ACTIONS(5291), 1, + anon_sym_bitand, + ACTIONS(5293), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5295), 1, + anon_sym_QMARK, + STATE(3020), 1, + sym_argument_list, + ACTIONS(5037), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(5255), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(5259), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5265), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5281), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5257), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(5273), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5271), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(5044), 29, - anon_sym_DOT_DOT_DOT, + ACTIONS(5035), 14, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [56344] = 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_GT2, + [76679] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3507), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3505), 43, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_using, + anon_sym_concept, + [76737] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2487), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2485), 43, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_using, + anon_sym_concept, + [76795] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3489), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3487), 43, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_using, + anon_sym_concept, + [76853] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3499), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3497), 43, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_using, + anon_sym_concept, + [76911] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5050), 15, + ACTIONS(4419), 1, + anon_sym_LPAREN2, + ACTIONS(5261), 1, + anon_sym_LBRACK, + ACTIONS(5267), 1, + anon_sym_DOT, + ACTIONS(5269), 1, + anon_sym_DASH_GT, + STATE(3020), 1, + sym_argument_list, + ACTIONS(5255), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(5265), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5257), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4936), 14, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_DOT, - ACTIONS(5048), 29, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4934), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -252602,70 +283607,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [56396] = 21, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_GT2, + [76985] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4419), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(5261), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(5267), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(5269), 1, anon_sym_DASH_GT, - ACTIONS(4914), 1, - anon_sym_LT_EQ_GT, - ACTIONS(4918), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4920), 1, - anon_sym_AMP_AMP, - ACTIONS(4922), 1, - anon_sym_PIPE, - ACTIONS(4924), 1, - anon_sym_CARET, - ACTIONS(4926), 1, - anon_sym_AMP, - ACTIONS(4932), 1, - anon_sym_GT_EQ, - ACTIONS(5054), 1, - anon_sym_EQ, - STATE(2534), 1, + STATE(3020), 1, sym_argument_list, - ACTIONS(4894), 2, + ACTIONS(5265), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(4906), 2, + ACTIONS(4920), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4912), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4928), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4908), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4930), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(5052), 17, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4918), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -252673,53 +283668,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [56484] = 9, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_GT2, + [77055] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4419), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(5261), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(5263), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5267), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(5269), 1, anon_sym_DASH_GT, - STATE(2534), 1, + ACTIONS(5279), 1, + anon_sym_PIPE, + ACTIONS(5283), 1, + anon_sym_AMP, + ACTIONS(5289), 1, + anon_sym_bitor, + ACTIONS(5291), 1, + anon_sym_bitand, + STATE(3020), 1, sym_argument_list, - ACTIONS(4894), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5058), 14, + ACTIONS(5255), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(5259), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5265), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5281), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5257), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(5273), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(4936), 4, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + ACTIONS(5271), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(5056), 23, + ACTIONS(4934), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -252727,15 +283744,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_LT_EQ_GT, - [56548] = 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_GT2, + [77147] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3759), 15, + ACTIONS(4705), 1, + anon_sym_LBRACK, + STATE(3036), 1, + sym_new_declarator, + ACTIONS(4720), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -252751,7 +283774,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_DOT, - ACTIONS(3764), 29, + anon_sym_DASH_GT, + ACTIONS(4718), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -252761,11 +283785,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, + anon_sym_LBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -252778,13 +283798,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [56600] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [77209] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3890), 15, + ACTIONS(5297), 1, + anon_sym_LT, + STATE(3038), 1, + sym_template_argument_list, + ACTIONS(4954), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -252794,27 +283825,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(3892), 29, + ACTIONS(4952), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -252822,48 +283851,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [56652] = 3, + anon_sym_GT2, + [77271] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(3878), 15, + ACTIONS(4419), 1, + anon_sym_LPAREN2, + ACTIONS(5261), 1, + anon_sym_LBRACK, + ACTIONS(5263), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5267), 1, + anon_sym_DOT, + ACTIONS(5269), 1, + anon_sym_DASH_GT, + ACTIONS(5275), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5277), 1, + anon_sym_AMP_AMP, + ACTIONS(5279), 1, + anon_sym_PIPE, + ACTIONS(5283), 1, + anon_sym_AMP, + ACTIONS(5285), 1, + anon_sym_or, + ACTIONS(5287), 1, + anon_sym_and, + ACTIONS(5289), 1, + anon_sym_bitor, + ACTIONS(5291), 1, + anon_sym_bitand, + ACTIONS(5293), 1, + anon_sym_DOT_DOT_DOT, + STATE(3020), 1, + sym_argument_list, + ACTIONS(4946), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(5255), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(5259), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5265), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5281), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5257), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(5273), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5271), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(3880), 29, - anon_sym_DOT_DOT_DOT, + ACTIONS(4944), 15, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -252871,123 +283935,470 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [56704] = 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_GT2, + [77373] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5300), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5302), 1, + anon_sym_AMP_AMP, + ACTIONS(5025), 5, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(5027), 43, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_using, + anon_sym_concept, + [77435] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3511), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3509), 43, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_using, + anon_sym_concept, + [77493] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4137), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4139), 43, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_using, + anon_sym_concept, + [77551] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3469), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3467), 43, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_using, + anon_sym_concept, + [77609] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5302), 1, + anon_sym_AMP_AMP, + ACTIONS(4983), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4985), 43, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_using, + anon_sym_concept, + [77669] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5306), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(5304), 44, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_using, + anon_sym_concept, + anon_sym_requires, + [77727] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5062), 15, + ACTIONS(4139), 12, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_const, anon_sym_DOT, - ACTIONS(5060), 29, + ACTIONS(4137), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LT_LT, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, anon_sym_COLON, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [56756] = 10, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [77785] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, - anon_sym_COLON_COLON, - ACTIONS(3740), 1, - anon_sym_LBRACE, - ACTIONS(3746), 1, - anon_sym_EQ, - ACTIONS(3772), 1, - anon_sym_COLON, - ACTIONS(4837), 1, - anon_sym_LT, - STATE(3315), 1, - sym_template_argument_list, - ACTIONS(3750), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(3724), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(3716), 15, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(3478), 7, anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3473), 43, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [56822] = 3, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_using, + anon_sym_concept, + [77843] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4689), 15, + ACTIONS(4419), 1, + anon_sym_LPAREN2, + ACTIONS(5261), 1, + anon_sym_LBRACK, + ACTIONS(5267), 1, + anon_sym_DOT, + ACTIONS(5269), 1, + anon_sym_DASH_GT, + STATE(3020), 1, + sym_argument_list, + ACTIONS(5005), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -252997,27 +284408,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_DOT, - ACTIONS(4687), 29, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(5003), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -253025,196 +284432,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [56874] = 3, + anon_sym_GT2, + [77911] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3910), 15, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(5310), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(5308), 44, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(3912), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_using, + anon_sym_concept, + anon_sym_requires, + [77969] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4419), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(5261), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + ACTIONS(5263), 1, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(5267), 1, + anon_sym_DOT, + ACTIONS(5269), 1, anon_sym_DASH_GT, - [56926] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4946), 1, + ACTIONS(5275), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5277), 1, anon_sym_AMP_AMP, - ACTIONS(4304), 15, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(5279), 1, anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(5283), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(5285), 1, + anon_sym_or, + ACTIONS(5287), 1, + anon_sym_and, + ACTIONS(5289), 1, + anon_sym_bitor, + ACTIONS(5291), 1, + anon_sym_bitand, + STATE(3020), 1, + sym_argument_list, + ACTIONS(5073), 2, anon_sym_EQ, - anon_sym_DOT, - ACTIONS(4306), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [56980] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3870), 15, + ACTIONS(5255), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, + ACTIONS(5259), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(3872), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_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_LT_EQ_GT, + ACTIONS(5265), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [57032] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3914), 15, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(5281), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5257), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(5273), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5271), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(3916), 29, + ACTIONS(5071), 16, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -253222,18 +284569,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [57084] = 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_GT2, + [78069] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5066), 15, + ACTIONS(4848), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -253243,27 +284589,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(5064), 29, + ACTIONS(4846), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -253271,18 +284617,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [57136] = 3, + anon_sym_GT2, + [78127] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5070), 15, + ACTIONS(5312), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(4829), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -253292,27 +284646,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(5068), 29, + ACTIONS(4827), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -253320,22 +284673,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [57188] = 5, + anon_sym_GT2, + [78187] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4332), 1, + ACTIONS(4419), 1, + anon_sym_LPAREN2, + ACTIONS(5261), 1, anon_sym_LBRACK, - STATE(2636), 1, - sym_new_declarator, - ACTIONS(4703), 16, + ACTIONS(5267), 1, + anon_sym_DOT, + ACTIONS(5269), 1, + anon_sym_DASH_GT, + STATE(3020), 1, + sym_argument_list, + ACTIONS(5265), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5043), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -253345,24 +284713,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4701), 26, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(5041), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -253370,49 +284737,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [57244] = 3, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_GT2, + [78257] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5074), 15, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(5072), 29, + ACTIONS(4839), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -253420,7 +284767,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, @@ -253428,10 +284774,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [57296] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4354), 15, + anon_sym_GT2, + ACTIONS(4841), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -253441,98 +284785,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(4356), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + sym_literal_suffix, + [78315] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4125), 1, + anon_sym_COLON_COLON, + ACTIONS(4137), 6, anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACK_LBRACK, + ACTIONS(4139), 43, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [57348] = 21, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_using, + anon_sym_concept, + [78375] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4419), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(5261), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(5263), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5267), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(5269), 1, anon_sym_DASH_GT, - ACTIONS(4914), 1, - anon_sym_LT_EQ_GT, - ACTIONS(4918), 1, + ACTIONS(5275), 1, anon_sym_PIPE_PIPE, - ACTIONS(4920), 1, + ACTIONS(5277), 1, anon_sym_AMP_AMP, - ACTIONS(4922), 1, + ACTIONS(5279), 1, anon_sym_PIPE, - ACTIONS(4924), 1, - anon_sym_CARET, - ACTIONS(4926), 1, + ACTIONS(5283), 1, anon_sym_AMP, - ACTIONS(4932), 1, - anon_sym_GT_EQ, - ACTIONS(5078), 1, - anon_sym_EQ, - STATE(2534), 1, + ACTIONS(5285), 1, + anon_sym_or, + ACTIONS(5287), 1, + anon_sym_and, + ACTIONS(5289), 1, + anon_sym_bitor, + ACTIONS(5291), 1, + anon_sym_bitand, + STATE(3020), 1, sym_argument_list, - ACTIONS(4894), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4906), 2, + ACTIONS(4981), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(5255), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(4912), 2, + ACTIONS(5259), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4928), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4908), 3, + ACTIONS(5265), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5281), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5257), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4930), 3, + ACTIONS(5273), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5271), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(5076), 17, + ACTIONS(4979), 16, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -253540,239 +284928,186 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [57436] = 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_GT2, + [78475] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5082), 15, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(5080), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4133), 7, anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4135), 43, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [57488] = 5, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_using, + anon_sym_concept, + [78533] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5088), 1, - anon_sym_LT, - STATE(2547), 1, - sym_template_argument_list, - ACTIONS(5086), 14, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(5084), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4125), 1, + anon_sym_COLON_COLON, + ACTIONS(4137), 6, anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACK_LBRACK, + ACTIONS(4139), 43, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [57544] = 3, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + anon_sym_using, + anon_sym_concept, + [78593] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5093), 15, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(5091), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4419), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(5261), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + ACTIONS(5263), 1, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(5267), 1, + anon_sym_DOT, + ACTIONS(5269), 1, anon_sym_DASH_GT, - [57596] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5097), 15, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(5275), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5277), 1, + anon_sym_AMP_AMP, + ACTIONS(5279), 1, anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(5283), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(5285), 1, + anon_sym_or, + ACTIONS(5287), 1, + anon_sym_and, + ACTIONS(5289), 1, + anon_sym_bitor, + ACTIONS(5291), 1, + anon_sym_bitand, + STATE(3020), 1, + sym_argument_list, + ACTIONS(4904), 2, anon_sym_EQ, - anon_sym_DOT, - ACTIONS(5095), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [57648] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4530), 17, + ACTIONS(5255), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(5259), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5265), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5281), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5257), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(5273), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5271), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(4528), 26, + ACTIONS(4886), 16, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -253783,37 +285118,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_GT2, - [57699] = 3, + [78693] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3807), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5316), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(3805), 29, + ACTIONS(5314), 44, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_LBRACK, anon_sym_static, anon_sym_register, @@ -253827,54 +285157,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, anon_sym_template, anon_sym_operator, - anon_sym_try, + anon_sym_using, + anon_sym_concept, anon_sym_requires, - [57750] = 7, + [78751] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4330), 1, + ACTIONS(4177), 1, anon_sym_LPAREN2, - ACTIONS(4753), 1, + ACTIONS(5037), 1, + anon_sym_EQ, + ACTIONS(5101), 1, anon_sym_LBRACK, - STATE(2797), 1, + ACTIONS(5137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5181), 1, + anon_sym_QMARK, + ACTIONS(5203), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5209), 1, + anon_sym_bitor, + ACTIONS(5211), 1, + anon_sym_xor, + ACTIONS(5213), 1, + anon_sym_bitand, + ACTIONS(5322), 1, + anon_sym_PIPE, + ACTIONS(5324), 1, + anon_sym_CARET, + ACTIONS(5326), 1, + anon_sym_AMP, + ACTIONS(5330), 1, + anon_sym_GT_EQ, + STATE(2713), 1, sym_argument_list, - ACTIONS(4783), 2, + ACTIONS(5115), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4942), 14, + ACTIONS(5205), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5207), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5217), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5318), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(5332), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5215), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5320), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(5328), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(4940), 24, - anon_sym_DOT_DOT_DOT, + ACTIONS(5035), 14, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -253885,40 +285251,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [57809] = 3, + [78852] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3816), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(3811), 29, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, + STATE(2972), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(5338), 8, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -253927,29 +285268,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, + ACTIONS(5334), 17, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + sym_true, + sym_false, + sym_null, sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, anon_sym_template, - anon_sym_operator, - anon_sym_try, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, anon_sym_requires, - [57860] = 7, + sym_this, + sym_nullptr, + ACTIONS(5336), 22, + sym_raw_string_literal, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [78913] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, - anon_sym_COLON_COLON, - ACTIONS(3757), 1, - anon_sym_LBRACE, - ACTIONS(4115), 1, - anon_sym_LT, - STATE(2772), 1, - sym_template_argument_list, - ACTIONS(3759), 16, + ACTIONS(3414), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -253961,12 +285324,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(3764), 23, + ACTIONS(3419), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -253985,63 +285352,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [78970] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(5341), 1, + anon_sym_DOT, + ACTIONS(5343), 1, + anon_sym_DASH_GT, + STATE(2487), 1, + sym_argument_list, + ACTIONS(4864), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4950), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4948), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [57919] = 20, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [79039] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(4330), 1, + ACTIONS(4177), 1, anon_sym_LPAREN2, - ACTIONS(4753), 1, + ACTIONS(5101), 1, anon_sym_LBRACK, - ACTIONS(4779), 1, + ACTIONS(5203), 1, anon_sym_LT_EQ_GT, - ACTIONS(5054), 1, - anon_sym_EQ, - ACTIONS(5103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5105), 1, - anon_sym_AMP_AMP, - ACTIONS(5107), 1, - anon_sym_PIPE, - ACTIONS(5109), 1, - anon_sym_CARET, - ACTIONS(5111), 1, - anon_sym_AMP, - ACTIONS(5117), 1, + ACTIONS(5330), 1, anon_sym_GT_EQ, - STATE(2797), 1, + STATE(2713), 1, sym_argument_list, - ACTIONS(4781), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4783), 2, + ACTIONS(5115), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5099), 2, + ACTIONS(5217), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5318), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5113), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5119), 2, + ACTIONS(5332), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5101), 3, + ACTIONS(5215), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5320), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5115), 3, + ACTIONS(5328), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(5052), 16, + ACTIONS(4936), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(4934), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -254053,18 +285482,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [58004] = 5, + [79120] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5127), 1, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(5125), 2, - anon_sym_delete, - anon_sym_new, - ACTIONS(5123), 16, - anon_sym_BANG, + ACTIONS(4977), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -254074,143 +285502,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_DASH_GT, - ACTIONS(5121), 24, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4975), 29, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_TILDE, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_co_await, - anon_sym_DASH_GT_STAR, - anon_sym_LPAREN_RPAREN, - anon_sym_LBRACK_RBRACK, - [58059] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3735), 1, - anon_sym_COLON_COLON, - ACTIONS(5129), 1, - anon_sym_LT, - STATE(2626), 1, - sym_template_argument_list, - ACTIONS(3757), 11, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(3752), 29, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [58116] = 22, + anon_sym_DASH_GT, + anon_sym_GT2, + [79177] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4330), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4711), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4753), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4757), 1, - anon_sym_QMARK, - ACTIONS(4779), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5010), 1, + ACTIONS(5073), 1, anon_sym_EQ, - ACTIONS(5103), 1, + ACTIONS(5341), 1, + anon_sym_DOT, + ACTIONS(5343), 1, + anon_sym_DASH_GT, + ACTIONS(5349), 1, anon_sym_PIPE_PIPE, - ACTIONS(5105), 1, + ACTIONS(5351), 1, anon_sym_AMP_AMP, - ACTIONS(5107), 1, + ACTIONS(5353), 1, anon_sym_PIPE, - ACTIONS(5109), 1, - anon_sym_CARET, - ACTIONS(5111), 1, + ACTIONS(5357), 1, anon_sym_AMP, - ACTIONS(5117), 1, + ACTIONS(5363), 1, anon_sym_GT_EQ, - STATE(2797), 1, + ACTIONS(5367), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5369), 1, + anon_sym_or, + ACTIONS(5371), 1, + anon_sym_and, + ACTIONS(5373), 1, + anon_sym_bitor, + ACTIONS(5375), 1, + anon_sym_bitand, + STATE(2487), 1, sym_argument_list, - ACTIONS(4781), 2, + ACTIONS(4864), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(4783), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5099), 2, + ACTIONS(5345), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5113), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5119), 2, + ACTIONS(5355), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5365), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5101), 3, + ACTIONS(5347), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5115), 3, + ACTIONS(5359), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5361), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(5008), 14, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5071), 16, + anon_sym_DOT_DOT_DOT, + anon_sym_COLON, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -254221,18 +285616,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [58205] = 5, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [79278] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3031), 1, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(5131), 2, - anon_sym_delete, - anon_sym_new, - ACTIONS(3027), 16, - anon_sym_BANG, + ACTIONS(5065), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -254242,121 +285632,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_DASH_GT, - ACTIONS(3025), 24, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5063), 29, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_TILDE, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_co_await, - anon_sym_DASH_GT_STAR, - anon_sym_LPAREN_RPAREN, - anon_sym_LBRACK_RBRACK, - [58260] = 6, + anon_sym_DASH_GT, + anon_sym_GT2, + [79335] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, - anon_sym_COLON_COLON, - ACTIONS(5129), 1, - anon_sym_LT, - STATE(2626), 1, - sym_template_argument_list, - ACTIONS(3740), 11, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4055), 1, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4904), 1, + anon_sym_EQ, + ACTIONS(5341), 1, + anon_sym_DOT, + ACTIONS(5343), 1, + anon_sym_DASH_GT, + ACTIONS(5349), 1, anon_sym_PIPE_PIPE, + ACTIONS(5351), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(4191), 29, + ACTIONS(5353), 1, + anon_sym_PIPE, + ACTIONS(5357), 1, anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [58317] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5139), 1, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(5137), 2, - anon_sym_delete, - anon_sym_new, - ACTIONS(5135), 16, - anon_sym_BANG, + ACTIONS(5363), 1, + anon_sym_GT_EQ, + ACTIONS(5367), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5369), 1, + anon_sym_or, + ACTIONS(5371), 1, + anon_sym_and, + ACTIONS(5373), 1, + anon_sym_bitor, + ACTIONS(5375), 1, + anon_sym_bitand, + STATE(2487), 1, + sym_argument_list, + ACTIONS(4864), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5345), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(5355), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5365), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5347), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(5359), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5361), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DASH_GT, - ACTIONS(5133), 24, - anon_sym_COMMA, - anon_sym_TILDE, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + ACTIONS(4886), 16, + anon_sym_DOT_DOT_DOT, + anon_sym_COLON, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -254367,95 +285746,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_co_await, - anon_sym_DASH_GT_STAR, - anon_sym_LPAREN_RPAREN, - anon_sym_LBRACK_RBRACK, - [58372] = 4, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [79436] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(4295), 1, - anon_sym_COLON_COLON, - ACTIONS(4299), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4055), 1, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4942), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5037), 1, + anon_sym_EQ, + ACTIONS(5341), 1, + anon_sym_DOT, + ACTIONS(5343), 1, + anon_sym_DASH_GT, + ACTIONS(5349), 1, anon_sym_PIPE_PIPE, + ACTIONS(5351), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4297), 29, + ACTIONS(5353), 1, + anon_sym_PIPE, + ACTIONS(5357), 1, anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [58425] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4849), 16, + ACTIONS(5363), 1, + anon_sym_GT_EQ, + ACTIONS(5367), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5369), 1, + anon_sym_or, + ACTIONS(5371), 1, + anon_sym_and, + ACTIONS(5373), 1, + anon_sym_bitor, + ACTIONS(5375), 1, + anon_sym_bitand, + ACTIONS(5377), 1, + anon_sym_QMARK, + STATE(2487), 1, + sym_argument_list, + ACTIONS(4864), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5345), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(5355), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5365), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5347), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(5359), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5361), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4847), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, + ACTIONS(5035), 14, + anon_sym_COLON, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -254466,15 +285824,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [58476] = 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [79541] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4470), 17, + ACTIONS(4296), 1, + sym_literal_suffix, + ACTIONS(3414), 22, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -254484,23 +285842,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(4468), 26, + anon_sym_DASH_GT, + ACTIONS(3419), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -254509,101 +285873,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [58527] = 9, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [79600] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, - anon_sym_COLON_COLON, - ACTIONS(3740), 1, - anon_sym_LBRACE, - ACTIONS(4140), 1, - anon_sym_LT, - STATE(3521), 1, - sym_template_argument_list, - ACTIONS(4143), 2, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(4145), 9, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(3716), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(4177), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(5101), 1, anon_sym_LBRACK, - anon_sym_QMARK, + ACTIONS(5203), 1, anon_sym_LT_EQ_GT, + ACTIONS(5330), 1, + anon_sym_GT_EQ, + STATE(2713), 1, + sym_argument_list, + ACTIONS(5115), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5217), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - ACTIONS(3724), 14, + ACTIONS(5318), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(5332), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_DOT, - [58590] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4474), 17, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(5320), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(5328), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(4936), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(4472), 26, + ACTIONS(4934), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -254611,20 +285935,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [58641] = 3, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [79679] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4370), 17, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(5341), 1, + anon_sym_DOT, + ACTIONS(5343), 1, + anon_sym_DASH_GT, + STATE(2487), 1, + sym_argument_list, + ACTIONS(4864), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4936), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -254634,24 +285973,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(4368), 26, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4934), 25, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_GT_EQ, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -254659,68 +285996,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [58692] = 20, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [79748] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4330), 1, + ACTIONS(4177), 1, anon_sym_LPAREN2, - ACTIONS(4753), 1, + ACTIONS(5101), 1, anon_sym_LBRACK, - ACTIONS(4779), 1, + ACTIONS(5203), 1, anon_sym_LT_EQ_GT, - ACTIONS(5078), 1, - anon_sym_EQ, - ACTIONS(5103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5105), 1, - anon_sym_AMP_AMP, - ACTIONS(5107), 1, - anon_sym_PIPE, - ACTIONS(5109), 1, - anon_sym_CARET, - ACTIONS(5111), 1, + ACTIONS(5213), 1, + anon_sym_bitand, + ACTIONS(5326), 1, anon_sym_AMP, - ACTIONS(5117), 1, + ACTIONS(5330), 1, anon_sym_GT_EQ, - STATE(2797), 1, + STATE(2713), 1, sym_argument_list, - ACTIONS(4781), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4783), 2, + ACTIONS(5115), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5099), 2, + ACTIONS(5217), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5318), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5113), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5119), 2, + ACTIONS(5332), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5101), 3, + ACTIONS(4936), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ, + ACTIONS(5215), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5320), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5115), 3, + ACTIONS(5328), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(5076), 16, + ACTIONS(4934), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -254732,12 +286069,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [58777] = 3, + [79833] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4478), 17, + ACTIONS(5019), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -254754,8 +286095,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4476), 26, + ACTIONS(5017), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -254763,7 +286107,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -254775,44 +286118,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, anon_sym_GT2, - [58828] = 3, + [79890] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(4482), 17, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(5341), 1, + anon_sym_DOT, + ACTIONS(5343), 1, + anon_sym_DASH_GT, + STATE(2487), 1, + sym_argument_list, + ACTIONS(4864), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5345), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(5365), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5347), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4936), 10, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(4480), 26, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4934), 25, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_GT_EQ, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -254820,20 +286181,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [58879] = 3, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [79965] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4494), 17, + ACTIONS(5379), 1, + anon_sym_AMP_AMP, + ACTIONS(4985), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -254850,16 +286214,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4492), 26, + ACTIONS(4983), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -254871,17 +286236,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, anon_sym_GT2, - [58930] = 3, + [80024] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4506), 17, + ACTIONS(4973), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -254898,8 +286267,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4504), 26, + ACTIONS(4971), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -254907,7 +286279,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -254919,17 +286290,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, anon_sym_GT2, - [58981] = 3, + [80081] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4514), 17, + ACTIONS(2476), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -254946,8 +286321,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4512), 26, + ACTIONS(2478), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -254955,7 +286333,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -254967,44 +286344,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, anon_sym_GT2, - [59032] = 3, + [80138] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 17, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(5341), 1, + anon_sym_DOT, + ACTIONS(5343), 1, + anon_sym_DASH_GT, + STATE(2487), 1, + sym_argument_list, + ACTIONS(4864), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5345), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(5347), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4936), 12, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(4516), 26, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4934), 25, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_GT_EQ, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -255012,52 +286406,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [59083] = 6, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [80211] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2843), 1, - anon_sym_LBRACE, - ACTIONS(4496), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - STATE(3074), 2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(5341), 1, + anon_sym_DOT, + ACTIONS(5343), 1, + anon_sym_DASH_GT, + ACTIONS(5367), 1, + anon_sym_LT_EQ_GT, + STATE(2487), 1, sym_argument_list, - sym_initializer_list, - ACTIONS(4667), 17, + ACTIONS(4864), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5345), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(5365), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5347), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4936), 10, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(4665), 22, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4934), 24, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK, + anon_sym_GT_EQ, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -255065,72 +286471,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [59140] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5141), 1, - anon_sym_LBRACE, - ACTIONS(5143), 1, - anon_sym_COLON, - STATE(3178), 1, - sym_field_declaration_list, - STATE(5486), 1, - sym_virtual_specifier, - STATE(5898), 1, - sym_base_class_clause, - ACTIONS(5145), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4207), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4209), 24, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - [59203] = 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [80288] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4526), 17, + ACTIONS(2485), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -255147,8 +286501,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4524), 26, + ACTIONS(2487), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -255156,7 +286513,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -255168,44 +286524,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, anon_sym_GT2, - [59254] = 3, + [80345] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(4538), 17, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4177), 1, + anon_sym_LPAREN2, + ACTIONS(4946), 1, + anon_sym_EQ, + ACTIONS(5101), 1, + anon_sym_LBRACK, + ACTIONS(5137), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5203), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5209), 1, + anon_sym_bitor, + ACTIONS(5211), 1, + anon_sym_xor, + ACTIONS(5213), 1, + anon_sym_bitand, + ACTIONS(5322), 1, anon_sym_PIPE, + ACTIONS(5324), 1, anon_sym_CARET, + ACTIONS(5326), 1, anon_sym_AMP, - anon_sym_GT, + ACTIONS(5330), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, + STATE(2713), 1, + sym_argument_list, + ACTIONS(5115), 2, anon_sym_DOT, - ACTIONS(4536), 26, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_DASH_GT, + ACTIONS(5205), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5207), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5217), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5318), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5332), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5215), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_not_eq, + ACTIONS(5320), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5328), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4944), 15, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -255213,20 +286604,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [59305] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [80444] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4542), 17, + ACTIONS(4237), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -255243,8 +286630,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4540), 26, + ACTIONS(4239), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -255252,7 +286642,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -255264,44 +286653,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, anon_sym_GT2, - [59356] = 3, + [80501] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(4398), 17, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(5341), 1, + anon_sym_DOT, + ACTIONS(5343), 1, + anon_sym_DASH_GT, + ACTIONS(5363), 1, + anon_sym_GT_EQ, + ACTIONS(5367), 1, + anon_sym_LT_EQ_GT, + STATE(2487), 1, + sym_argument_list, + ACTIONS(4864), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5345), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(5365), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5347), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(5361), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(4936), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(4396), 26, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4934), 23, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -255309,68 +286720,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [59407] = 20, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [80582] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(4330), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4753), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4779), 1, - anon_sym_LT_EQ_GT, - ACTIONS(4934), 1, - anon_sym_EQ, - ACTIONS(5103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5105), 1, - anon_sym_AMP_AMP, - ACTIONS(5107), 1, - anon_sym_PIPE, - ACTIONS(5109), 1, - anon_sym_CARET, - ACTIONS(5111), 1, - anon_sym_AMP, - ACTIONS(5117), 1, + ACTIONS(5341), 1, + anon_sym_DOT, + ACTIONS(5343), 1, + anon_sym_DASH_GT, + ACTIONS(5363), 1, anon_sym_GT_EQ, - STATE(2797), 1, + ACTIONS(5367), 1, + anon_sym_LT_EQ_GT, + STATE(2487), 1, sym_argument_list, - ACTIONS(4781), 2, + ACTIONS(4864), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(4783), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5099), 2, + ACTIONS(5345), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5113), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5119), 2, + ACTIONS(5365), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5101), 3, + ACTIONS(5347), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5115), 3, + ACTIONS(5359), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5361), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(4916), 16, + ACTIONS(4936), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4934), 20, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -255382,12 +286792,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [59492] = 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + anon_sym_bitand, + [80665] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4577), 17, + ACTIONS(3935), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4728), 1, + anon_sym_LBRACK, + ACTIONS(4722), 2, + anon_sym_RPAREN, + anon_sym_LPAREN2, + ACTIONS(3414), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -255397,24 +286817,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_DOT, - ACTIONS(4575), 26, + anon_sym_DASH_GT, + ACTIONS(3419), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_GT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -255422,20 +286839,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [59543] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [80728] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4607), 17, + ACTIONS(5077), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -255452,8 +286874,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4605), 26, + ACTIONS(5075), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -255461,7 +286886,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -255473,92 +286897,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [59594] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5141), 1, - anon_sym_LBRACE, - ACTIONS(5143), 1, - anon_sym_COLON, - STATE(3203), 1, - sym_field_declaration_list, - STATE(5472), 1, - sym_virtual_specifier, - STATE(6158), 1, - sym_base_class_clause, - ACTIONS(5145), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4187), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, anon_sym_GT2, - ACTIONS(4189), 24, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - [59657] = 9, + [80785] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, - anon_sym_COLON_COLON, - ACTIONS(3740), 1, - anon_sym_LBRACE, - ACTIONS(4837), 1, - anon_sym_LT, - ACTIONS(4884), 1, - anon_sym_EQ, - STATE(3315), 1, - sym_template_argument_list, - ACTIONS(4886), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(3724), 13, + ACTIONS(3414), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -255568,11 +286921,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(3716), 15, + ACTIONS(3419), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -255580,197 +286940,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [59720] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3803), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, anon_sym_GT2, - ACTIONS(3801), 29, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [59771] = 3, + [80842] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3780), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4055), 1, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(3778), 29, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + ACTIONS(4860), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [59822] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3776), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(3774), 29, + ACTIONS(5341), 1, + anon_sym_DOT, + ACTIONS(5343), 1, + anon_sym_DASH_GT, + ACTIONS(5357), 1, anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [59873] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4330), 1, - anon_sym_LPAREN2, - ACTIONS(4753), 1, - anon_sym_LBRACK, - STATE(2797), 1, + ACTIONS(5363), 1, + anon_sym_GT_EQ, + ACTIONS(5367), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5375), 1, + anon_sym_bitand, + STATE(2487), 1, sym_argument_list, - ACTIONS(4781), 2, + ACTIONS(4864), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(4783), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5058), 14, + ACTIONS(5345), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(5365), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5347), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(5359), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5361), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(4936), 6, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_EQ, - ACTIONS(5056), 22, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4934), 19, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -255782,13 +287027,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [59934] = 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + [80929] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3759), 17, + ACTIONS(4995), 1, + anon_sym_EQ, + ACTIONS(4997), 13, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(3414), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -255802,41 +287064,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3764), 26, + ACTIONS(3419), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_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_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [59985] = 3, + anon_sym_DASH_GT, + [80990] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3759), 17, + ACTIONS(4969), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -255846,25 +287100,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3764), 26, + ACTIONS(4967), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -255872,19 +287127,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [60036] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [81047] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3759), 17, + ACTIONS(4965), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -255894,25 +287154,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3764), 26, + ACTIONS(4963), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -255920,19 +287181,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [60087] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [81104] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4510), 17, + ACTIONS(4737), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -255949,8 +287215,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4508), 26, + ACTIONS(4735), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -255958,7 +287227,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -255970,45 +287238,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, anon_sym_GT2, - [60138] = 3, + [81161] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(3759), 17, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(5341), 1, + anon_sym_DOT, + ACTIONS(5343), 1, + anon_sym_DASH_GT, + ACTIONS(5357), 1, + anon_sym_AMP, + ACTIONS(5363), 1, + anon_sym_GT_EQ, + ACTIONS(5367), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5375), 1, + anon_sym_bitand, + STATE(2487), 1, + sym_argument_list, + ACTIONS(4864), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5345), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(5355), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5365), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5347), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(5359), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5361), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, + ACTIONS(4936), 4, + anon_sym_PIPE, anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3764), 26, + anon_sym_or, + anon_sym_and, + ACTIONS(4934), 19, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -256020,44 +287315,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + [81250] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(5341), 1, + anon_sym_DOT, + ACTIONS(5343), 1, + anon_sym_DASH_GT, + ACTIONS(5353), 1, + anon_sym_PIPE, + ACTIONS(5357), 1, + anon_sym_AMP, + ACTIONS(5363), 1, + anon_sym_GT_EQ, + ACTIONS(5367), 1, anon_sym_LT_EQ_GT, + ACTIONS(5373), 1, + anon_sym_bitor, + ACTIONS(5375), 1, + anon_sym_bitand, + STATE(2487), 1, + sym_argument_list, + ACTIONS(4864), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [60189] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5153), 1, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(5151), 2, - anon_sym_delete, - anon_sym_new, - ACTIONS(5149), 16, - anon_sym_BANG, + ACTIONS(5345), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(5355), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5365), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4936), 3, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + ACTIONS(5347), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(5359), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5361), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DASH_GT, - ACTIONS(5147), 24, - anon_sym_COMMA, - anon_sym_TILDE, + ACTIONS(4934), 18, + anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_COLON, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -256068,45 +287388,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [81343] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(5341), 1, + anon_sym_DOT, + ACTIONS(5343), 1, + anon_sym_DASH_GT, + ACTIONS(5351), 1, + anon_sym_AMP_AMP, + ACTIONS(5353), 1, + anon_sym_PIPE, + ACTIONS(5357), 1, + anon_sym_AMP, + ACTIONS(5363), 1, + anon_sym_GT_EQ, + ACTIONS(5367), 1, anon_sym_LT_EQ_GT, + ACTIONS(5371), 1, + anon_sym_and, + ACTIONS(5373), 1, + anon_sym_bitor, + ACTIONS(5375), 1, + anon_sym_bitand, + STATE(2487), 1, + sym_argument_list, + ACTIONS(4864), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_co_await, - anon_sym_DASH_GT_STAR, - anon_sym_LPAREN_RPAREN, - anon_sym_LBRACK_RBRACK, - [60244] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3759), 17, + ACTIONS(4936), 2, + anon_sym_EQ, + anon_sym_or, + ACTIONS(5345), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(5355), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5365), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5347), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(5359), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5361), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3764), 26, + ACTIONS(4934), 17, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -256118,15 +287462,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [60295] = 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [81440] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4659), 17, + ACTIONS(4165), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -256143,8 +287485,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4657), 26, + ACTIONS(4167), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -256152,7 +287497,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -256164,71 +287508,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [60346] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5141), 1, - anon_sym_LBRACE, - ACTIONS(5143), 1, - anon_sym_COLON, - STATE(3176), 1, - sym_field_declaration_list, - STATE(5434), 1, - sym_virtual_specifier, - STATE(5979), 1, - sym_base_class_clause, - ACTIONS(5145), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4166), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, anon_sym_GT2, - ACTIONS(4168), 24, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - [60409] = 3, + [81497] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4422), 17, + ACTIONS(4147), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -256245,8 +287539,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4420), 26, + ACTIONS(4149), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -256254,7 +287551,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -256266,78 +287562,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, anon_sym_GT2, - [60460] = 9, + [81554] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5141), 1, - anon_sym_LBRACE, - ACTIONS(5143), 1, - anon_sym_COLON, - STATE(3174), 1, - sym_field_declaration_list, - STATE(5485), 1, - sym_virtual_specifier, - STATE(6025), 1, - sym_base_class_clause, - ACTIONS(5145), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4162), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4055), 1, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4164), 24, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + ACTIONS(4860), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - [60523] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5155), 1, - sym_literal_suffix, - ACTIONS(3724), 16, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(5341), 1, + anon_sym_DOT, + ACTIONS(5343), 1, + anon_sym_DASH_GT, + STATE(2487), 1, + sym_argument_list, + ACTIONS(4864), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5347), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4936), 14, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -256347,19 +287605,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3716), 26, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4934), 25, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -256371,144 +287627,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [60576] = 9, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [81625] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5141), 1, - anon_sym_LBRACE, - ACTIONS(5143), 1, - anon_sym_COLON, - STATE(3125), 1, - sym_field_declaration_list, - STATE(5252), 1, - sym_virtual_specifier, - STATE(6253), 1, - sym_base_class_clause, - ACTIONS(5145), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4152), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4055), 1, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4154), 24, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + ACTIONS(4860), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - [60639] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4266), 14, + ACTIONS(4942), 1, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + ACTIONS(4946), 1, + anon_sym_EQ, + ACTIONS(5341), 1, + anon_sym_DOT, + ACTIONS(5343), 1, + anon_sym_DASH_GT, + ACTIONS(5349), 1, anon_sym_PIPE_PIPE, + ACTIONS(5351), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4264), 29, + ACTIONS(5353), 1, + anon_sym_PIPE, + ACTIONS(5357), 1, anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [60690] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4663), 17, + ACTIONS(5363), 1, + anon_sym_GT_EQ, + ACTIONS(5367), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5369), 1, + anon_sym_or, + ACTIONS(5371), 1, + anon_sym_and, + ACTIONS(5373), 1, + anon_sym_bitor, + ACTIONS(5375), 1, + anon_sym_bitand, + STATE(2487), 1, + sym_argument_list, + ACTIONS(4864), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5345), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(5355), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5365), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5347), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(5359), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5361), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(4661), 26, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, + ACTIONS(4944), 15, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -256516,47 +287704,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [81728] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4981), 1, + anon_sym_EQ, + ACTIONS(5341), 1, + anon_sym_DOT, + ACTIONS(5343), 1, + anon_sym_DASH_GT, + ACTIONS(5349), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5351), 1, + anon_sym_AMP_AMP, + ACTIONS(5353), 1, + anon_sym_PIPE, + ACTIONS(5357), 1, + anon_sym_AMP, + ACTIONS(5363), 1, + anon_sym_GT_EQ, + ACTIONS(5367), 1, anon_sym_LT_EQ_GT, + ACTIONS(5369), 1, + anon_sym_or, + ACTIONS(5371), 1, + anon_sym_and, + ACTIONS(5373), 1, + anon_sym_bitor, + ACTIONS(5375), 1, + anon_sym_bitand, + STATE(2487), 1, + sym_argument_list, + ACTIONS(4864), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [60741] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4651), 17, + ACTIONS(5345), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(5355), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5365), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5347), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(5359), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5361), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(4649), 26, + ACTIONS(4979), 16, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -256564,49 +287780,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [81829] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4177), 1, + anon_sym_LPAREN2, + ACTIONS(5101), 1, + anon_sym_LBRACK, + ACTIONS(5203), 1, anon_sym_LT_EQ_GT, + ACTIONS(5211), 1, + anon_sym_xor, + ACTIONS(5213), 1, + anon_sym_bitand, + ACTIONS(5324), 1, + anon_sym_CARET, + ACTIONS(5326), 1, + anon_sym_AMP, + ACTIONS(5330), 1, + anon_sym_GT_EQ, + STATE(2713), 1, + sym_argument_list, + ACTIONS(4936), 2, + anon_sym_PIPE, + anon_sym_EQ, + ACTIONS(5115), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5217), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [60792] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5157), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(4874), 17, + ACTIONS(5318), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(5332), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5215), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5320), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(5328), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4872), 25, + ACTIONS(4934), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -256618,15 +287852,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [60845] = 3, + [81918] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4426), 17, + ACTIONS(4872), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -256643,8 +287877,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4424), 26, + ACTIONS(4870), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -256652,7 +287889,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -256664,57 +287900,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, anon_sym_GT2, - [60896] = 12, + [81975] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4330), 1, + ACTIONS(4177), 1, anon_sym_LPAREN2, - ACTIONS(4753), 1, + ACTIONS(4936), 1, + anon_sym_EQ, + ACTIONS(5101), 1, anon_sym_LBRACK, - ACTIONS(4779), 1, + ACTIONS(5203), 1, anon_sym_LT_EQ_GT, - STATE(2797), 1, + ACTIONS(5209), 1, + anon_sym_bitor, + ACTIONS(5211), 1, + anon_sym_xor, + ACTIONS(5213), 1, + anon_sym_bitand, + ACTIONS(5322), 1, + anon_sym_PIPE, + ACTIONS(5324), 1, + anon_sym_CARET, + ACTIONS(5326), 1, + anon_sym_AMP, + ACTIONS(5330), 1, + anon_sym_GT_EQ, + STATE(2713), 1, sym_argument_list, - ACTIONS(4781), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4783), 2, + ACTIONS(5115), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5099), 2, + ACTIONS(5217), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5318), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5119), 2, + ACTIONS(5332), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5101), 3, + ACTIONS(5215), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5320), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4910), 7, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(5328), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_EQ, - ACTIONS(4904), 21, + ACTIONS(4934), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -256726,12 +287979,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_or, + anon_sym_and, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [60965] = 3, + [82068] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4450), 17, + ACTIONS(3998), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(4000), 12, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(3419), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + ACTIONS(3414), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -256746,19 +288035,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + [82129] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4177), 1, + anon_sym_LPAREN2, + ACTIONS(5101), 1, + anon_sym_LBRACK, + STATE(2713), 1, + sym_argument_list, + ACTIONS(5115), 2, anon_sym_DOT, - ACTIONS(4448), 26, + anon_sym_DASH_GT, + ACTIONS(5005), 14, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(5003), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_GT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -256766,20 +288082,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [61016] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [82194] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4454), 17, + ACTIONS(4161), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -256796,8 +288117,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4452), 26, + ACTIONS(4163), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -256805,7 +288129,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -256817,71 +288140,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, anon_sym_GT2, - [61067] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5141), 1, - anon_sym_LBRACE, - ACTIONS(5143), 1, - anon_sym_COLON, - STATE(3121), 1, - sym_field_declaration_list, - STATE(5439), 1, - sym_virtual_specifier, - STATE(6243), 1, - sym_base_class_clause, - ACTIONS(5145), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4173), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4175), 24, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - [61130] = 3, + [82251] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4462), 17, + ACTIONS(4173), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -256898,8 +288171,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4460), 26, + ACTIONS(4175), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -256907,7 +288183,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -256919,17 +288194,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, anon_sym_GT2, - [61181] = 3, + [82308] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4466), 17, + ACTIONS(4932), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -256946,8 +288225,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4464), 26, + ACTIONS(4930), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -256955,7 +288237,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -256967,29 +288248,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, anon_sym_GT2, - [61232] = 8, + [82365] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(4330), 1, + ACTIONS(4177), 1, anon_sym_LPAREN2, - ACTIONS(4753), 1, + ACTIONS(4936), 1, + anon_sym_EQ, + ACTIONS(5101), 1, anon_sym_LBRACK, - STATE(2797), 1, + ACTIONS(5203), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5209), 1, + anon_sym_bitor, + ACTIONS(5211), 1, + anon_sym_xor, + ACTIONS(5213), 1, + anon_sym_bitand, + ACTIONS(5322), 1, + anon_sym_PIPE, + ACTIONS(5324), 1, + anon_sym_CARET, + ACTIONS(5326), 1, + anon_sym_AMP, + ACTIONS(5330), 1, + anon_sym_GT_EQ, + STATE(2713), 1, sym_argument_list, - ACTIONS(4781), 2, + ACTIONS(5115), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5207), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5217), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(4783), 2, + ACTIONS(5318), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5332), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5215), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5320), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5328), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4934), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_or, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [82460] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4177), 1, + anon_sym_LPAREN2, + ACTIONS(5101), 1, + anon_sym_LBRACK, + STATE(2713), 1, + sym_argument_list, + ACTIONS(5115), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4890), 14, + ACTIONS(5217), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4936), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -257004,7 +288362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(4888), 22, + ACTIONS(4934), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -257025,20 +288383,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [61293] = 7, + [82527] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, - anon_sym_COLON_COLON, - ACTIONS(3740), 1, - anon_sym_LBRACE, - ACTIONS(5159), 1, - anon_sym_LT, - STATE(2772), 1, - sym_template_argument_list, - ACTIONS(3724), 16, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(5341), 1, + anon_sym_DOT, + ACTIONS(5343), 1, + anon_sym_DASH_GT, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5023), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -257048,22 +288414,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(3716), 23, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(5021), 27, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK, + anon_sym_GT_EQ, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -257071,72 +288437,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [61352] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5141), 1, - anon_sym_LBRACE, - ACTIONS(5143), 1, - anon_sym_COLON, - STATE(3170), 1, - sym_field_declaration_list, - STATE(5459), 1, - sym_virtual_specifier, - STATE(6238), 1, - sym_base_class_clause, - ACTIONS(5145), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4193), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4195), 24, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - [61415] = 3, + [82594] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4486), 17, + ACTIONS(5047), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -257153,8 +288470,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4484), 26, + ACTIONS(5045), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -257162,7 +288482,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -257174,45 +288493,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, anon_sym_GT2, - [61466] = 3, + [82651] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(4699), 17, + ACTIONS(4177), 1, + anon_sym_LPAREN2, + ACTIONS(4981), 1, + anon_sym_EQ, + ACTIONS(5101), 1, + anon_sym_LBRACK, + ACTIONS(5203), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5209), 1, + anon_sym_bitor, + ACTIONS(5211), 1, + anon_sym_xor, + ACTIONS(5213), 1, + anon_sym_bitand, + ACTIONS(5322), 1, + anon_sym_PIPE, + ACTIONS(5324), 1, + anon_sym_CARET, + ACTIONS(5326), 1, + anon_sym_AMP, + ACTIONS(5330), 1, + anon_sym_GT_EQ, + STATE(2713), 1, + sym_argument_list, + ACTIONS(5115), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5205), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5207), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5217), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5318), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(5332), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5215), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5320), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(5328), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4697), 26, + ACTIONS(4979), 16, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_DOT_STAR, + anon_sym_DASH_GT_STAR, + [82748] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4055), 1, anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4961), 1, + anon_sym_EQ, + ACTIONS(5341), 1, + anon_sym_DOT, + ACTIONS(5343), 1, + anon_sym_DASH_GT, + ACTIONS(5349), 1, anon_sym_PIPE_PIPE, + ACTIONS(5351), 1, anon_sym_AMP_AMP, + ACTIONS(5353), 1, + anon_sym_PIPE, + ACTIONS(5357), 1, + anon_sym_AMP, + ACTIONS(5363), 1, + anon_sym_GT_EQ, + ACTIONS(5367), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5369), 1, + anon_sym_or, + ACTIONS(5371), 1, + anon_sym_and, + ACTIONS(5373), 1, + anon_sym_bitor, + ACTIONS(5375), 1, + anon_sym_bitand, + STATE(2487), 1, + sym_argument_list, + ACTIONS(4864), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5345), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5355), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5365), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5347), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5359), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_not_eq, + ACTIONS(5361), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4959), 16, + anon_sym_DOT_DOT_DOT, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -257224,42 +288651,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [82849] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(5341), 1, + anon_sym_DOT, + ACTIONS(5343), 1, + anon_sym_DASH_GT, + ACTIONS(5367), 1, anon_sym_LT_EQ_GT, + STATE(2487), 1, + sym_argument_list, + ACTIONS(4864), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [61517] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4490), 17, + ACTIONS(5345), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(5365), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5347), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4856), 10, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4850), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [82926] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4177), 1, + anon_sym_LPAREN2, + ACTIONS(5101), 1, + anon_sym_LBRACK, + STATE(2713), 1, + sym_argument_list, + ACTIONS(5115), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5217), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5320), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4936), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(4488), 26, + ACTIONS(4934), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_GT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -257267,27 +288765,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [61568] = 6, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [82995] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3984), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4708), 1, - anon_sym_LBRACK, - ACTIONS(4705), 2, - anon_sym_RPAREN, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(3724), 16, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(5341), 1, + anon_sym_DOT, + ACTIONS(5343), 1, + anon_sym_DASH_GT, + STATE(2487), 1, + sym_argument_list, + ACTIONS(4864), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4920), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -257302,16 +288809,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3716), 23, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(4918), 25, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -257323,15 +288831,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [61625] = 3, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [83064] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4522), 17, + ACTIONS(4817), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -257348,8 +288858,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4520), 26, + ACTIONS(4819), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -257357,7 +288870,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -257369,17 +288881,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, anon_sym_GT2, - [61676] = 3, + [83121] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4554), 17, + ACTIONS(4213), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -257396,8 +288912,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4552), 26, + ACTIONS(4215), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -257405,7 +288924,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -257417,17 +288935,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, anon_sym_GT2, - [61727] = 3, + [83178] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4581), 17, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(5341), 1, + anon_sym_DOT, + ACTIONS(5343), 1, + anon_sym_DASH_GT, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5005), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -257437,24 +288969,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(4579), 26, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(5003), 27, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_GT_EQ, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -257462,47 +288992,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [61778] = 3, + [83245] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(4588), 17, + ACTIONS(4177), 1, + anon_sym_LPAREN2, + ACTIONS(5101), 1, + anon_sym_LBRACK, + ACTIONS(5203), 1, + anon_sym_LT_EQ_GT, + STATE(2713), 1, + sym_argument_list, + ACTIONS(5115), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5217), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5318), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(5332), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5320), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4936), 7, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(4586), 26, + ACTIONS(4934), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_GT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -257510,32 +289056,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [61829] = 6, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [83320] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3984), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4708), 1, - anon_sym_LBRACK, - ACTIONS(4705), 2, - anon_sym_RPAREN, + ACTIONS(4177), 1, anon_sym_LPAREN2, - ACTIONS(3724), 16, + ACTIONS(5101), 1, + anon_sym_LBRACK, + STATE(2713), 1, + sym_argument_list, + ACTIONS(5115), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5217), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5318), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(5320), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4936), 9, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -257545,11 +289100,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3716), 23, + ACTIONS(4934), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -257567,16 +289121,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [61886] = 4, + [83391] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5162), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(4874), 16, + ACTIONS(4916), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -257586,14 +289142,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4872), 26, + ACTIONS(4914), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -257601,10 +289161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -257612,22 +289169,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [61939] = 5, + anon_sym_GT2, + [83448] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, - anon_sym_LT, - STATE(2769), 1, - sym_template_argument_list, - ACTIONS(5086), 15, + ACTIONS(4848), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -257638,12 +289197,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5084), 26, + ACTIONS(4846), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -257653,6 +289213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -257666,14 +289227,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [61994] = 3, + [83505] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4683), 17, + ACTIONS(5013), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -257690,8 +289257,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4681), 26, + ACTIONS(5011), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -257699,7 +289269,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -257711,24 +289280,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, anon_sym_GT2, - [62045] = 6, + [83562] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2843), 1, - anon_sym_LBRACE, - ACTIONS(4496), 1, - anon_sym_LPAREN2, - STATE(3011), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4679), 17, + ACTIONS(4884), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -257745,10 +289311,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4677), 22, + ACTIONS(4882), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -257764,15 +289334,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, anon_sym_GT2, - [62102] = 3, + [83619] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4675), 17, + ACTIONS(5009), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -257789,8 +289365,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4673), 26, + ACTIONS(5007), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -257798,7 +289377,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -257810,39 +289388,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, anon_sym_GT2, - [62153] = 11, + [83676] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4330), 1, + ACTIONS(5033), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5031), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(4753), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LBRACK, - STATE(2797), 1, - sym_argument_list, - ACTIONS(4781), 2, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(4783), 2, + anon_sym_DASH_GT, + anon_sym_GT2, + [83733] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4177), 1, + anon_sym_LPAREN2, + ACTIONS(5101), 1, + anon_sym_LBRACK, + STATE(2713), 1, + sym_argument_list, + ACTIONS(5115), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5099), 2, + ACTIONS(5217), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5318), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5119), 2, + ACTIONS(5332), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5101), 3, + ACTIONS(5320), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5026), 7, + ACTIONS(4936), 7, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -257850,7 +289486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_EQ, - ACTIONS(5024), 22, + ACTIONS(4934), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -257871,12 +289507,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [62220] = 3, + [83806] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4402), 17, + ACTIONS(5379), 1, + anon_sym_AMP_AMP, + ACTIONS(5381), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5027), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -257893,16 +289539,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4400), 26, + ACTIONS(5025), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -257914,17 +289560,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, anon_sym_GT2, - [62271] = 3, + [83867] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4864), 16, + ACTIONS(4177), 1, + anon_sym_LPAREN2, + ACTIONS(5101), 1, + anon_sym_LBRACK, + STATE(2713), 1, + sym_argument_list, + ACTIONS(5115), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5217), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4920), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -257939,19 +289601,159 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + ACTIONS(4918), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [83934] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4177), 1, + anon_sym_LPAREN2, + ACTIONS(5101), 1, + anon_sym_LBRACK, + ACTIONS(5203), 1, + anon_sym_LT_EQ_GT, + STATE(2713), 1, + sym_argument_list, + ACTIONS(5115), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4862), 27, + ACTIONS(5217), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5318), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5332), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5320), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4856), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_EQ, + ACTIONS(4850), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [84009] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4177), 1, + anon_sym_LPAREN2, + ACTIONS(4961), 1, + anon_sym_EQ, + ACTIONS(5101), 1, + anon_sym_LBRACK, + ACTIONS(5203), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5209), 1, + anon_sym_bitor, + ACTIONS(5211), 1, + anon_sym_xor, + ACTIONS(5213), 1, + anon_sym_bitand, + ACTIONS(5322), 1, + anon_sym_PIPE, + ACTIONS(5324), 1, + anon_sym_CARET, + ACTIONS(5326), 1, + anon_sym_AMP, + ACTIONS(5330), 1, + anon_sym_GT_EQ, + STATE(2713), 1, + sym_argument_list, + ACTIONS(5115), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5205), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5207), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5217), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5318), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5332), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5215), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5320), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5328), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4959), 16, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -257963,16 +289765,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - sym_literal_suffix, - [62322] = 3, + [84106] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4631), 17, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(5341), 1, + anon_sym_DOT, + ACTIONS(5343), 1, + anon_sym_DASH_GT, + STATE(2487), 1, + sym_argument_list, + ACTIONS(4864), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5043), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -257982,24 +289793,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(4629), 26, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(5041), 25, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_GT_EQ, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -258007,20 +289816,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [62373] = 3, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [84175] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4370), 17, + ACTIONS(4807), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -258037,8 +289847,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4368), 26, + ACTIONS(4809), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -258046,7 +289859,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -258058,54 +289870,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, anon_sym_GT2, - [62424] = 10, + [84232] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4330), 1, - anon_sym_LPAREN2, - ACTIONS(4753), 1, - anon_sym_LBRACK, - STATE(2797), 1, - sym_argument_list, - ACTIONS(4781), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4783), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5099), 2, + ACTIONS(5057), 20, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5101), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5026), 9, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(5024), 22, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5055), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -258113,17 +289921,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [62489] = 3, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [84289] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4615), 17, + ACTIONS(4876), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -258140,8 +289955,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4613), 26, + ACTIONS(4874), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -258149,7 +289967,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -258161,57 +289978,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, anon_sym_GT2, - [62540] = 12, + [84346] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(4330), 1, + ACTIONS(4177), 1, anon_sym_LPAREN2, - ACTIONS(4753), 1, + ACTIONS(4904), 1, + anon_sym_EQ, + ACTIONS(5101), 1, anon_sym_LBRACK, - ACTIONS(4779), 1, + ACTIONS(5203), 1, anon_sym_LT_EQ_GT, - STATE(2797), 1, + ACTIONS(5209), 1, + anon_sym_bitor, + ACTIONS(5211), 1, + anon_sym_xor, + ACTIONS(5213), 1, + anon_sym_bitand, + ACTIONS(5322), 1, + anon_sym_PIPE, + ACTIONS(5324), 1, + anon_sym_CARET, + ACTIONS(5326), 1, + anon_sym_AMP, + ACTIONS(5330), 1, + anon_sym_GT_EQ, + STATE(2713), 1, sym_argument_list, - ACTIONS(4781), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4783), 2, + ACTIONS(5115), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5099), 2, + ACTIONS(5205), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5207), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5217), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5318), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5119), 2, + ACTIONS(5332), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5101), 3, + ACTIONS(5215), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5320), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5026), 7, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(5328), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_EQ, - ACTIONS(5024), 21, + ACTIONS(4886), 16, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -258225,10 +290063,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [62609] = 3, + [84443] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4623), 17, + ACTIONS(4928), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -258245,8 +290083,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4621), 26, + ACTIONS(4926), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -258254,7 +290095,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -258266,52 +290106,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, anon_sym_GT2, - [62660] = 14, + [84500] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4330), 1, + ACTIONS(4177), 1, anon_sym_LPAREN2, - ACTIONS(4753), 1, + ACTIONS(5101), 1, anon_sym_LBRACK, - ACTIONS(4779), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5117), 1, - anon_sym_GT_EQ, - STATE(2797), 1, + STATE(2713), 1, sym_argument_list, - ACTIONS(4781), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4783), 2, + ACTIONS(5115), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5099), 2, + ACTIONS(5023), 14, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5119), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5101), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5115), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(5026), 4, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(5024), 20, + ACTIONS(5021), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -258319,6 +290152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -258330,55 +290164,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [62733] = 15, + [84565] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(4330), 1, + ACTIONS(4177), 1, anon_sym_LPAREN2, - ACTIONS(4753), 1, + ACTIONS(5073), 1, + anon_sym_EQ, + ACTIONS(5101), 1, anon_sym_LBRACK, - ACTIONS(4779), 1, + ACTIONS(5203), 1, anon_sym_LT_EQ_GT, - ACTIONS(5117), 1, + ACTIONS(5209), 1, + anon_sym_bitor, + ACTIONS(5211), 1, + anon_sym_xor, + ACTIONS(5213), 1, + anon_sym_bitand, + ACTIONS(5322), 1, + anon_sym_PIPE, + ACTIONS(5324), 1, + anon_sym_CARET, + ACTIONS(5326), 1, + anon_sym_AMP, + ACTIONS(5330), 1, anon_sym_GT_EQ, - STATE(2797), 1, + STATE(2713), 1, sym_argument_list, - ACTIONS(4781), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4783), 2, + ACTIONS(5115), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5099), 2, + ACTIONS(5205), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5207), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5217), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5318), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5113), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5119), 2, + ACTIONS(5332), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5101), 3, + ACTIONS(5215), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5320), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5115), 3, + ACTIONS(5328), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(5026), 4, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - ACTIONS(5024), 18, + ACTIONS(5071), 16, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -258392,19 +290249,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [62808] = 7, + [84662] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4330), 1, - anon_sym_LPAREN2, - ACTIONS(4753), 1, - anon_sym_LBRACK, - STATE(2797), 1, - sym_argument_list, - ACTIONS(4783), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4902), 14, + ACTIONS(5061), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -258414,20 +290262,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(4900), 24, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5059), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -258435,116 +290289,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [62867] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4291), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4293), 29, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [62918] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4295), 1, - anon_sym_COLON_COLON, - ACTIONS(4291), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + anon_sym_DASH_GT, anon_sym_GT2, - ACTIONS(4293), 29, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [62971] = 3, + [84719] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4655), 17, + ACTIONS(4169), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -258561,8 +290323,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4653), 26, + ACTIONS(4171), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -258570,7 +290335,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -258582,17 +290346,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, anon_sym_GT2, - [63022] = 3, + [84776] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4410), 17, + ACTIONS(5053), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -258609,8 +290377,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4408), 26, + ACTIONS(5051), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -258618,7 +290389,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -258630,116 +290400,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [63073] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3023), 1, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(5167), 2, - anon_sym_delete, - anon_sym_new, - ACTIONS(3005), 16, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DASH_GT, - ACTIONS(3003), 24, - anon_sym_COMMA, - anon_sym_TILDE, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_co_await, - anon_sym_DASH_GT_STAR, - anon_sym_LPAREN_RPAREN, - anon_sym_LBRACK_RBRACK, - [63128] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4295), 1, - anon_sym_COLON_COLON, - ACTIONS(4291), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, anon_sym_GT2, - ACTIONS(4293), 29, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [63181] = 3, + [84833] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4671), 17, + ACTIONS(4880), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -258756,8 +290431,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4669), 26, + ACTIONS(4878), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -258765,7 +290443,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -258777,17 +290454,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, anon_sym_GT2, - [63232] = 3, + [84890] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4414), 17, + ACTIONS(4829), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -258804,8 +290485,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4412), 26, + ACTIONS(4827), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -258813,7 +290497,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -258825,17 +290508,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, anon_sym_GT2, - [63283] = 3, + [84947] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4430), 17, + ACTIONS(4203), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -258852,8 +290539,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4428), 26, + ACTIONS(4205), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -258861,7 +290551,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -258873,17 +290562,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, anon_sym_GT2, - [63334] = 3, + [85004] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4440), 17, + ACTIONS(4805), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -258900,8 +290593,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4438), 26, + ACTIONS(4803), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -258909,7 +290605,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -258921,279 +290616,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, anon_sym_GT2, - [63385] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4330), 1, - anon_sym_LPAREN2, - ACTIONS(4753), 1, - anon_sym_LBRACK, - ACTIONS(4779), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5111), 1, - anon_sym_AMP, - ACTIONS(5117), 1, - anon_sym_GT_EQ, - STATE(2797), 1, - sym_argument_list, - ACTIONS(4781), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4783), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5099), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5113), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5119), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5026), 3, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_EQ, - ACTIONS(5101), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5115), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(5024), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_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_DOT_STAR, - anon_sym_DASH_GT_STAR, - [63462] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4330), 1, - anon_sym_LPAREN2, - ACTIONS(4753), 1, - anon_sym_LBRACK, - ACTIONS(4779), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5109), 1, - anon_sym_CARET, - ACTIONS(5111), 1, - anon_sym_AMP, - ACTIONS(5117), 1, - anon_sym_GT_EQ, - STATE(2797), 1, - sym_argument_list, - ACTIONS(4781), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4783), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5026), 2, - anon_sym_PIPE, - anon_sym_EQ, - ACTIONS(5099), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5113), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5119), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5101), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5115), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(5024), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_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_DOT_STAR, - anon_sym_DASH_GT_STAR, - [63541] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4330), 1, - anon_sym_LPAREN2, - ACTIONS(4753), 1, - anon_sym_LBRACK, - ACTIONS(4779), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5026), 1, - anon_sym_EQ, - ACTIONS(5107), 1, - anon_sym_PIPE, - ACTIONS(5109), 1, - anon_sym_CARET, - ACTIONS(5111), 1, - anon_sym_AMP, - ACTIONS(5117), 1, - anon_sym_GT_EQ, - STATE(2797), 1, - sym_argument_list, - ACTIONS(4781), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4783), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5099), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5113), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5119), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5101), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5115), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(5024), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_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_DOT_STAR, - anon_sym_DASH_GT_STAR, - [63622] = 19, + [85061] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4330), 1, + ACTIONS(4177), 1, anon_sym_LPAREN2, - ACTIONS(4753), 1, + ACTIONS(5101), 1, anon_sym_LBRACK, - ACTIONS(4779), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5026), 1, - anon_sym_EQ, - ACTIONS(5105), 1, - anon_sym_AMP_AMP, - ACTIONS(5107), 1, - anon_sym_PIPE, - ACTIONS(5109), 1, - anon_sym_CARET, - ACTIONS(5111), 1, - anon_sym_AMP, - ACTIONS(5117), 1, - anon_sym_GT_EQ, - STATE(2797), 1, + STATE(2713), 1, sym_argument_list, - ACTIONS(4781), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4783), 2, + ACTIONS(5115), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5099), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5113), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5119), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5101), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5115), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(5024), 17, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_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_DOT_STAR, - anon_sym_DASH_GT_STAR, - [63705] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4330), 1, - anon_sym_LPAREN2, - ACTIONS(4753), 1, - anon_sym_LBRACK, - STATE(2797), 1, - sym_argument_list, - ACTIONS(4781), 2, + ACTIONS(5217), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(4783), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5026), 14, + ACTIONS(4950), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -259208,7 +290657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(5024), 22, + ACTIONS(4948), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -259229,12 +290678,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [63766] = 3, + [85128] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4874), 17, + ACTIONS(4841), 23, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -259248,11 +290703,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4872), 26, + sym_literal_suffix, + ACTIONS(4839), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -259262,7 +290723,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -259279,10 +290740,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [63817] = 3, + [85185] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4458), 17, + ACTIONS(4229), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -259299,8 +290760,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4456), 26, + ACTIONS(4231), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -259308,7 +290772,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -259320,17 +290783,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, anon_sym_GT2, - [63868] = 3, + [85242] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4550), 17, + ACTIONS(4221), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -259347,8 +290814,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4548), 26, + ACTIONS(4223), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -259356,7 +290826,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -259368,17 +290837,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, anon_sym_GT2, - [63919] = 3, + [85299] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4562), 17, + ACTIONS(3437), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -259395,8 +290868,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4560), 26, + ACTIONS(3442), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -259404,7 +290880,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -259416,53 +290891,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, anon_sym_GT2, - [63970] = 9, + [85356] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4330), 1, - anon_sym_LPAREN2, - ACTIONS(4753), 1, - anon_sym_LBRACK, - STATE(2797), 1, - sym_argument_list, - ACTIONS(4781), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4783), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5101), 3, + ACTIONS(4221), 20, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5026), 11, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(5024), 22, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4223), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -259470,17 +290942,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [64033] = 3, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [85413] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4534), 17, + ACTIONS(3437), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -259497,8 +290976,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4532), 26, + ACTIONS(3442), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -259506,7 +290988,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -259518,81 +290999,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [64084] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5169), 1, - sym_identifier, - ACTIONS(5174), 1, - sym_primitive_type, - STATE(2487), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5172), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4103), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, anon_sym_GT2, - ACTIONS(4105), 23, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - [64143] = 8, + [85470] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4330), 1, - anon_sym_LPAREN2, - ACTIONS(4753), 1, - anon_sym_LBRACK, - STATE(2797), 1, - sym_argument_list, - ACTIONS(4781), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4783), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4990), 14, + ACTIONS(5383), 1, + anon_sym_LT, + STATE(2472), 1, + sym_template_argument_list, + ACTIONS(4954), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -259603,19 +291028,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(4988), 22, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4952), 30, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -259627,19 +291056,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [64204] = 5, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [85531] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5182), 1, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(5180), 2, - anon_sym_delete, - anon_sym_new, - ACTIONS(5178), 16, - anon_sym_BANG, + ACTIONS(4932), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -259649,89 +291079,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_DASH_GT, - ACTIONS(5176), 24, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4930), 29, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_TILDE, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_co_await, - anon_sym_DASH_GT_STAR, - anon_sym_LPAREN_RPAREN, - anon_sym_LBRACK_RBRACK, - [64259] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3784), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + anon_sym_DASH_GT, anon_sym_GT2, - ACTIONS(3782), 29, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [64310] = 3, + [85588] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5006), 17, + ACTIONS(3437), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -259741,25 +291133,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5004), 26, + ACTIONS(3442), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -259767,67 +291160,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [64361] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3799), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + anon_sym_DASH_GT, anon_sym_GT2, - ACTIONS(3797), 29, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [64412] = 3, + [85645] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4611), 17, + ACTIONS(5069), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -259844,8 +291194,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4609), 26, + ACTIONS(5067), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -259853,7 +291206,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -259865,17 +291217,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, anon_sym_GT2, - [64463] = 3, + [85702] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4619), 17, + ACTIONS(4922), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -259892,8 +291248,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4617), 26, + ACTIONS(2507), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -259901,7 +291260,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -259913,17 +291271,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, anon_sym_GT2, - [64514] = 3, + [85759] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4627), 17, + ACTIONS(3437), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -259940,8 +291302,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4625), 26, + ACTIONS(3442), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -259949,7 +291314,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -259961,239 +291325,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [64565] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3795), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(3793), 29, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [64616] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5141), 1, - anon_sym_LBRACE, - ACTIONS(5143), 1, - anon_sym_COLON, - STATE(3190), 1, - sym_field_declaration_list, - STATE(5504), 1, - sym_virtual_specifier, - STATE(6148), 1, - sym_base_class_clause, - ACTIONS(5145), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4197), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4199), 24, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - [64679] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4330), 1, - anon_sym_LPAREN2, - ACTIONS(4711), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4753), 1, - anon_sym_LBRACK, - ACTIONS(4779), 1, - anon_sym_LT_EQ_GT, - ACTIONS(4998), 1, - anon_sym_EQ, - ACTIONS(5103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5105), 1, - anon_sym_AMP_AMP, - ACTIONS(5107), 1, - anon_sym_PIPE, - ACTIONS(5109), 1, - anon_sym_CARET, - ACTIONS(5111), 1, - anon_sym_AMP, - ACTIONS(5117), 1, - anon_sym_GT_EQ, - STATE(2797), 1, - sym_argument_list, - ACTIONS(4781), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4783), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5099), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5113), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5119), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5101), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5115), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4996), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_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_DOT_STAR, - anon_sym_DASH_GT_STAR, - [64766] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5141), 1, - anon_sym_LBRACE, - ACTIONS(5143), 1, - anon_sym_COLON, - STATE(3208), 1, - sym_field_declaration_list, - STATE(5476), 1, - sym_virtual_specifier, - STATE(6165), 1, - sym_base_class_clause, - ACTIONS(5145), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4183), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, anon_sym_GT2, - ACTIONS(4185), 24, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - [64829] = 3, + [85816] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4566), 17, + ACTIONS(4799), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -260210,8 +291356,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4564), 26, + ACTIONS(4801), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -260219,7 +291368,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -260231,17 +291379,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, anon_sym_GT2, - [64880] = 3, + [85873] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4558), 17, + ACTIONS(4716), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -260258,8 +291410,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4556), 26, + ACTIONS(4711), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -260267,7 +291422,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -260279,17 +291433,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, anon_sym_GT2, - [64931] = 3, + [85930] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4689), 17, + ACTIONS(4221), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -260299,25 +291457,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4687), 26, + ACTIONS(4223), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -260325,19 +291484,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [64982] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [85987] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4573), 17, + ACTIONS(4141), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -260354,8 +291518,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4571), 26, + ACTIONS(4143), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -260363,7 +291530,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -260375,24 +291541,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, anon_sym_GT2, - [65033] = 6, + [86044] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2843), 1, - anon_sym_LBRACE, - ACTIONS(4496), 1, - anon_sym_LPAREN2, - STATE(2985), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4546), 17, + ACTIONS(4185), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -260409,10 +291572,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4544), 22, + ACTIONS(4187), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -260428,15 +291595,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, anon_sym_GT2, - [65090] = 3, + [86101] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4406), 17, + ACTIONS(4940), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -260453,8 +291626,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4404), 26, + ACTIONS(4938), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -260462,7 +291638,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -260474,17 +291649,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, anon_sym_GT2, - [65141] = 3, + [86158] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4418), 17, + ACTIONS(3437), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -260501,8 +291680,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4416), 26, + ACTIONS(3442), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -260510,7 +291692,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -260522,24 +291703,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, anon_sym_GT2, - [65192] = 6, + [86215] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2843), 1, - anon_sym_LBRACE, - ACTIONS(4496), 1, - anon_sym_LPAREN2, - STATE(3039), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4639), 17, + ACTIONS(4217), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -260556,10 +291734,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4637), 22, + ACTIONS(4219), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -260575,15 +291757,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, anon_sym_GT2, - [65249] = 3, + [86272] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4647), 17, + ACTIONS(5053), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -260593,23 +291781,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_DOT, - ACTIONS(4645), 26, + anon_sym_DASH_GT, + ACTIONS(5051), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -260618,20 +291806,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [65300] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [86328] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4643), 17, + ACTIONS(5061), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -260641,23 +291834,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_DOT, - ACTIONS(4641), 26, + anon_sym_DASH_GT, + ACTIONS(5059), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -260666,68 +291859,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [65351] = 20, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [86384] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4330), 1, - anon_sym_LPAREN2, - ACTIONS(4753), 1, - anon_sym_LBRACK, - ACTIONS(4779), 1, - anon_sym_LT_EQ_GT, - ACTIONS(4974), 1, - anon_sym_EQ, - ACTIONS(5103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5105), 1, - anon_sym_AMP_AMP, - ACTIONS(5107), 1, + ACTIONS(5033), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, - ACTIONS(5109), 1, anon_sym_CARET, - ACTIONS(5111), 1, anon_sym_AMP, - ACTIONS(5117), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5031), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, - STATE(2797), 1, - sym_argument_list, - ACTIONS(4781), 2, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(4783), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5099), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [86440] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4203), 16, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5113), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5119), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5101), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5115), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(4972), 16, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4205), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -260739,12 +291969,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [65436] = 3, + [86496] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4635), 17, + ACTIONS(4229), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -260754,23 +291993,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_DOT, - ACTIONS(4633), 26, + anon_sym_DASH_GT, + ACTIONS(4231), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -260779,20 +292018,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [65487] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [86552] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4596), 17, + ACTIONS(4185), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -260802,23 +292046,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_DOT, - ACTIONS(4594), 26, + anon_sym_DASH_GT, + ACTIONS(4187), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -260827,20 +292071,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [65538] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [86608] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4592), 17, + ACTIONS(5386), 1, + anon_sym_AMP_AMP, + ACTIONS(4985), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -260850,23 +292101,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_DOT, - ACTIONS(4590), 26, + anon_sym_DASH_GT, + ACTIONS(4983), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -260875,20 +292125,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [65589] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [86666] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4444), 17, + ACTIONS(4807), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -260898,23 +292153,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_DOT, - ACTIONS(4442), 26, + anon_sym_DASH_GT, + ACTIONS(4809), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -260923,20 +292178,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [65640] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [86722] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3724), 16, + ACTIONS(4217), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -260953,7 +292213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3716), 26, + ACTIONS(4219), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -260976,14 +292236,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [65690] = 3, + [86778] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4938), 16, + ACTIONS(2485), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -261000,7 +292266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4936), 26, + ACTIONS(2487), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -261023,14 +292289,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [65740] = 3, + [86834] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5006), 16, + ACTIONS(5386), 1, + anon_sym_AMP_AMP, + ACTIONS(5388), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5027), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -261044,21 +292320,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_DOT, - ACTIONS(5004), 26, + anon_sym_DASH_GT, + ACTIONS(5025), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -261071,64 +292344,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [65790] = 7, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [86894] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5184), 1, - sym_literal_suffix, - ACTIONS(5186), 1, - sym_raw_string_literal, - STATE(2774), 2, - sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(101), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(3724), 9, + ACTIONS(4165), 16, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(3716), 24, + anon_sym_DASH_GT, + ACTIONS(4167), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [65848] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [86950] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4966), 16, + ACTIONS(4237), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -261145,7 +292427,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4964), 26, + ACTIONS(4239), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -261168,14 +292450,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [65898] = 3, + [87006] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4853), 16, + ACTIONS(4141), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -261192,7 +292480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4851), 26, + ACTIONS(4143), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -261215,18 +292503,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [65948] = 5, + [87062] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5188), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5190), 1, - anon_sym_AMP_AMP, - ACTIONS(4270), 16, + ACTIONS(4173), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -261243,11 +292533,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4272), 24, + ACTIONS(4175), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -261264,17 +292556,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [66002] = 4, + [87118] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3816), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(3818), 17, + ACTIONS(5057), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -261284,22 +292579,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_DOT, - ACTIONS(3823), 23, + anon_sym_DASH_GT, + ACTIONS(5055), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -261308,18 +292604,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [66054] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [87174] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3878), 16, + ACTIONS(4965), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -261336,7 +292639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3880), 26, + ACTIONS(4963), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -261359,64 +292662,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [66104] = 6, + [87230] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5192), 1, - sym_raw_string_literal, - STATE(2832), 2, - sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(101), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(4136), 10, + ACTIONS(4213), 16, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(4134), 24, + anon_sym_DASH_GT, + ACTIONS(4215), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [66160] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [87286] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3890), 16, + ACTIONS(4147), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -261433,7 +292745,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3892), 26, + ACTIONS(4149), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -261456,14 +292768,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [66210] = 3, + [87342] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3874), 16, + ACTIONS(4817), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -261480,7 +292798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3876), 26, + ACTIONS(4819), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -261503,14 +292821,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [66260] = 3, + [87398] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5074), 16, + ACTIONS(5390), 1, + sym_raw_string_literal, + STATE(3125), 2, + sym_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(101), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(3991), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(3989), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [87460] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4969), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -261527,7 +292907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5072), 26, + ACTIONS(4967), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -261550,14 +292930,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [66310] = 3, + [87516] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5050), 16, + ACTIONS(5077), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -261574,7 +292960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5048), 26, + ACTIONS(5075), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -261597,64 +292983,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [66360] = 6, + [87572] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, - anon_sym_COLON_COLON, - ACTIONS(5194), 1, - anon_sym_LT, - STATE(3086), 1, - sym_template_argument_list, - ACTIONS(4191), 16, + ACTIONS(5047), 16, anon_sym_DASH, anon_sym_PLUS, - sym_primitive_type, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - sym_nullptr, - ACTIONS(3740), 23, - sym_raw_string_literal, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5045), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [66416] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [87628] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5046), 16, + ACTIONS(4916), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -261671,7 +293066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5044), 26, + ACTIONS(4914), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -261694,14 +293089,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [66466] = 3, + [87684] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3910), 16, + ACTIONS(4221), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -261718,7 +293119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3912), 26, + ACTIONS(4223), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -261741,16 +293142,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [66516] = 4, + [87740] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5190), 1, - anon_sym_AMP_AMP, - ACTIONS(4304), 16, + ACTIONS(5069), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -261767,12 +293172,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4306), 25, + ACTIONS(5067), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -261789,14 +293195,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [66568] = 3, + [87796] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5392), 1, + sym_literal_suffix, + ACTIONS(5394), 1, + sym_raw_string_literal, + STATE(3102), 2, + sym_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(101), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(3414), 15, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + ACTIONS(3419), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [87860] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4992), 16, + ACTIONS(4221), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -261813,7 +293282,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2391), 26, + ACTIONS(4223), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -261836,14 +293305,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [66618] = 3, + [87916] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3874), 16, + ACTIONS(4221), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -261860,7 +293335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3876), 26, + ACTIONS(4223), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -261883,14 +293358,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [66668] = 3, + [87972] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5036), 16, + ACTIONS(4161), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -261907,7 +293388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5034), 26, + ACTIONS(4163), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -261930,14 +293411,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [66718] = 3, + [88028] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5396), 1, + sym_auto, + ACTIONS(5398), 1, + anon_sym_decltype, + STATE(3146), 1, + sym_decltype_auto, + ACTIONS(4277), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4275), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_requires, + [88090] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5032), 16, + ACTIONS(4799), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -261954,7 +293497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5030), 26, + ACTIONS(4801), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -261977,14 +293520,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [66768] = 3, + [88146] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3870), 16, + ACTIONS(4872), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -262001,7 +293550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3872), 26, + ACTIONS(4870), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -262024,14 +293573,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [66818] = 3, + [88202] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5016), 16, + ACTIONS(4169), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -262048,7 +293603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5014), 26, + ACTIONS(4171), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -262071,14 +293626,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [66868] = 3, + [88258] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4954), 16, + ACTIONS(4977), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -262095,7 +293656,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4952), 26, + ACTIONS(4975), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -262118,61 +293679,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [66918] = 3, + [88314] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3914), 16, + ACTIONS(4125), 1, + anon_sym_COLON_COLON, + ACTIONS(4290), 12, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_const, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3916), 26, + ACTIONS(4288), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [66968] = 3, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [88372] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4958), 16, + ACTIONS(3509), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -262187,12 +293761,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4956), 26, + ACTIONS(3511), 30, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -262200,6 +293774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -262211,15 +293786,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [67018] = 3, + anon_sym_DASH_GT, + [88428] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5070), 16, + ACTIONS(2476), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -262236,7 +293816,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5068), 26, + ACTIONS(2478), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -262259,14 +293839,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [67068] = 3, + [88484] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3886), 16, + ACTIONS(5243), 1, + anon_sym_EQ, + ACTIONS(5245), 13, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(3414), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -262280,13 +293882,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3888), 26, + ACTIONS(3419), 17, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -262294,26 +293895,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_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_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [67118] = 3, + anon_sym_DASH_GT, + [88544] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4383), 16, + ACTIONS(5019), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -262330,7 +293924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4385), 26, + ACTIONS(5017), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -262353,14 +293947,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [67168] = 3, + [88600] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5066), 16, + ACTIONS(4876), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -262377,7 +293977,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5064), 26, + ACTIONS(4874), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -262400,14 +294000,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [67218] = 3, + [88656] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3906), 16, + ACTIONS(5013), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -262424,7 +294030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3908), 26, + ACTIONS(5011), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -262447,61 +294053,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [67268] = 3, + [88712] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4950), 16, + ACTIONS(5403), 1, + sym_raw_string_literal, + STATE(3125), 2, + sym_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(5400), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(3981), 16, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4948), 26, + sym_literal_suffix, + ACTIONS(3979), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_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_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [67318] = 3, + anon_sym_DASH_GT, + [88774] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3882), 16, + ACTIONS(3497), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -262516,12 +294137,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3884), 26, + ACTIONS(3499), 30, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -262529,6 +294150,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -262540,15 +294162,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [67368] = 3, + anon_sym_DASH_GT, + [88830] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5002), 16, + ACTIONS(3487), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -262563,12 +294190,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5000), 26, + ACTIONS(3489), 30, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -262576,6 +294203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -262587,15 +294215,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [67418] = 3, + anon_sym_DASH_GT, + [88886] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4950), 16, + ACTIONS(3505), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -262610,12 +294243,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4948), 26, + ACTIONS(3507), 30, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -262623,6 +294256,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -262634,15 +294268,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [67468] = 3, + anon_sym_DASH_GT, + [88942] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4962), 16, + ACTIONS(3501), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -262657,12 +294296,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4960), 26, + ACTIONS(3503), 30, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -262670,6 +294309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -262681,15 +294321,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [67518] = 3, + anon_sym_DASH_GT, + [88998] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5020), 16, + ACTIONS(5065), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -262706,7 +294351,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5018), 26, + ACTIONS(5063), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -262729,14 +294374,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [67568] = 3, + [89054] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5082), 16, + ACTIONS(3467), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -262751,12 +294402,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5080), 26, + ACTIONS(3469), 30, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -262764,6 +294415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -262775,84 +294427,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [67618] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1483), 1, - anon_sym_enum, - ACTIONS(1485), 1, - anon_sym_class, - ACTIONS(1487), 1, - anon_sym_struct, - ACTIONS(1489), 1, - anon_sym_union, - ACTIONS(1491), 1, - sym_auto, - ACTIONS(1493), 1, - anon_sym_decltype, - ACTIONS(1495), 1, - anon_sym_typename, - ACTIONS(5196), 1, - sym_identifier, - ACTIONS(5198), 1, - anon_sym_RPAREN, - ACTIONS(5200), 1, - anon_sym_COLON_COLON, - ACTIONS(5202), 1, - sym_primitive_type, - STATE(2075), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2323), 1, - sym_template_type, - STATE(2485), 1, - sym_qualified_type_identifier, - STATE(2494), 1, - sym_decltype_auto, - STATE(3825), 1, - sym__type_specifier, - STATE(5137), 1, - sym__scope_resolution, - STATE(5535), 1, - sym_type_descriptor, - STATE(6663), 1, - sym_dependent_type_identifier, - STATE(3031), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1479), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(2346), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [67712] = 3, + anon_sym_DASH_GT, + [89110] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5097), 16, + ACTIONS(4922), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -262869,7 +294457,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5095), 26, + ACTIONS(2507), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -262892,14 +294480,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [67762] = 3, + [89166] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4689), 16, + ACTIONS(3493), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -262913,21 +294507,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(4687), 26, + ACTIONS(3495), 30, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -262939,14 +294533,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [67812] = 3, + [89222] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4978), 16, + ACTIONS(5009), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -262963,7 +294563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4976), 26, + ACTIONS(5007), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -262986,14 +294586,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [67862] = 3, + [89278] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3918), 16, + ACTIONS(3414), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -263010,7 +294616,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3920), 26, + ACTIONS(3419), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -263033,1073 +294639,1243 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [67912] = 5, + [89334] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4498), 1, - anon_sym_LBRACK, - STATE(2874), 1, - sym_new_declarator, - ACTIONS(4703), 17, + ACTIONS(4648), 12, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym_const, anon_sym_DOT, - ACTIONS(4701), 23, + ACTIONS(4646), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, anon_sym_GT2, - [67966] = 9, + anon_sym_requires, + [89389] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, - anon_sym_COLON_COLON, - ACTIONS(3740), 1, - anon_sym_LBRACE, - ACTIONS(4837), 1, + ACTIONS(4541), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(5204), 1, - anon_sym_EQ, - STATE(3315), 1, - sym_template_argument_list, - ACTIONS(5206), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(3716), 13, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4539), 35, anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - ACTIONS(3724), 14, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_DOT, - [68028] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [89444] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3902), 16, + ACTIONS(4686), 12, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_const, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3904), 26, + ACTIONS(4684), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [68078] = 3, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [89499] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3759), 16, + ACTIONS(4290), 12, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_const, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3764), 26, + ACTIONS(4288), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [68128] = 3, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [89554] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3759), 16, + ACTIONS(4290), 12, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_const, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3764), 26, + ACTIONS(4288), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [68178] = 6, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [89609] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3984), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4705), 1, - anon_sym_LPAREN2, - ACTIONS(4708), 1, - anon_sym_LBRACK, - ACTIONS(3724), 15, + ACTIONS(4680), 12, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_const, anon_sym_DOT, - ACTIONS(3716), 24, + ACTIONS(4678), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [68234] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [89664] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1781), 1, + sym_string_literal, + ACTIONS(5410), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(5408), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(5406), 35, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + [89723] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5006), 16, + ACTIONS(4676), 12, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_const, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5004), 26, + ACTIONS(4674), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [68284] = 8, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [89778] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3746), 1, - anon_sym_EQ, - ACTIONS(3984), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4705), 1, - anon_sym_LPAREN2, - ACTIONS(4708), 1, - anon_sym_LBRACK, - ACTIONS(3750), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(3716), 14, + ACTIONS(4672), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4670), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - ACTIONS(3724), 14, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [89833] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4668), 12, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_const, anon_sym_DOT, - [68344] = 3, + ACTIONS(4666), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [89888] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4372), 16, + ACTIONS(4660), 12, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_const, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4374), 26, + ACTIONS(4658), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [68394] = 3, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [89943] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3759), 16, + ACTIONS(4656), 12, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_const, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3764), 26, + ACTIONS(4654), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [68444] = 3, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [89998] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3759), 16, + ACTIONS(4652), 12, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_const, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3764), 26, + ACTIONS(4650), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [68494] = 3, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [90053] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3759), 16, + ACTIONS(4640), 12, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_const, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3764), 26, + ACTIONS(4638), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [68544] = 6, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [90108] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3984), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4705), 1, - anon_sym_LPAREN2, - ACTIONS(4708), 1, - anon_sym_LBRACK, - ACTIONS(3724), 15, + ACTIONS(4636), 12, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_const, anon_sym_DOT, - ACTIONS(3716), 24, + ACTIONS(4634), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [68600] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [90163] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5062), 16, + ACTIONS(4632), 12, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_const, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5060), 26, + ACTIONS(4630), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [68650] = 3, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [90218] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4874), 16, + ACTIONS(4628), 12, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_const, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4872), 26, + ACTIONS(4626), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [68700] = 3, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [90273] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2302), 16, + ACTIONS(4620), 12, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_const, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2304), 26, + ACTIONS(4618), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [68750] = 3, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [90328] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4970), 16, + ACTIONS(4616), 12, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_const, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4968), 26, + ACTIONS(4614), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [68800] = 6, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [90383] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, - anon_sym_COLON_COLON, - ACTIONS(5194), 1, - anon_sym_LT, - STATE(3086), 1, - sym_template_argument_list, - ACTIONS(3752), 16, + ACTIONS(4608), 12, anon_sym_DASH, anon_sym_PLUS, - sym_primitive_type, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - sym_nullptr, - ACTIONS(3757), 23, - sym_raw_string_literal, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4606), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [68856] = 3, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [90438] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3724), 16, + ACTIONS(4359), 12, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_const, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3716), 26, + ACTIONS(4357), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [68906] = 5, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [90493] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3746), 1, - anon_sym_EQ, - ACTIONS(3750), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(3724), 14, + ACTIONS(4604), 12, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_const, anon_sym_DOT, - ACTIONS(3716), 17, + ACTIONS(4602), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LT_LT, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [68960] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [90548] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3894), 16, + ACTIONS(4600), 12, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_const, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3896), 26, + ACTIONS(4598), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [69010] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1483), 1, - anon_sym_enum, - ACTIONS(1485), 1, - anon_sym_class, - ACTIONS(1487), 1, - anon_sym_struct, - ACTIONS(1489), 1, - anon_sym_union, - ACTIONS(1491), 1, + anon_sym_DASH_GT, sym_auto, - ACTIONS(1493), 1, anon_sym_decltype, - ACTIONS(1495), 1, - anon_sym_typename, - ACTIONS(5196), 1, - sym_identifier, - ACTIONS(5200), 1, + anon_sym_GT2, + anon_sym_requires, + [90603] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1780), 1, + sym_string_literal, + ACTIONS(5410), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(5408), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_COLON_COLON, - ACTIONS(5202), 1, - sym_primitive_type, - ACTIONS(5208), 1, - anon_sym_RPAREN, - STATE(2075), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2323), 1, - sym_template_type, - STATE(2485), 1, - sym_qualified_type_identifier, - STATE(2494), 1, - sym_decltype_auto, - STATE(3825), 1, - sym__type_specifier, - STATE(5137), 1, - sym__scope_resolution, - STATE(5645), 1, - sym_type_descriptor, - STATE(6663), 1, - sym_dependent_type_identifier, - STATE(3031), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1479), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 8, + anon_sym_LBRACK_LBRACK, + ACTIONS(5406), 35, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -264108,91 +295884,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(2346), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [69104] = 3, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + [90662] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2287), 16, + ACTIONS(4584), 12, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_const, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2289), 26, + ACTIONS(4582), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [69154] = 6, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [90717] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5213), 1, - sym_raw_string_literal, - STATE(2832), 2, - sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(5210), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(4124), 10, + ACTIONS(4580), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(4122), 24, + ACTIONS(4578), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -264201,241 +295980,273 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [69210] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [90772] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4689), 16, + ACTIONS(4312), 12, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_const, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4687), 26, + ACTIONS(4310), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [69260] = 3, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [90827] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3874), 16, + ACTIONS(3473), 1, + anon_sym_const, + ACTIONS(3482), 1, + anon_sym_AMP, + ACTIONS(3475), 7, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK, + anon_sym_GT2, + ACTIONS(3480), 10, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3876), 26, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(3478), 11, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + ACTIONS(3485), 17, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_LT_LT, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [69310] = 3, + anon_sym_DASH_GT, + [90890] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3898), 16, + ACTIONS(4363), 12, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_const, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3900), 26, + ACTIONS(4361), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [69360] = 3, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [90945] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4354), 16, + ACTIONS(4573), 12, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_const, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4356), 26, + ACTIONS(4571), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [69410] = 6, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [91000] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, - anon_sym_COLON_COLON, - ACTIONS(5129), 1, + ACTIONS(4569), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_LT, - STATE(2626), 1, - sym_template_argument_list, - ACTIONS(4344), 12, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4567), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4346), 27, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -264443,162 +296254,181 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, - sym_identifier, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, + anon_sym_GT2, anon_sym_requires, - [69466] = 3, + [91055] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4874), 16, + ACTIONS(4565), 12, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_EQ, + anon_sym_const, anon_sym_DOT, - ACTIONS(4872), 26, + ACTIONS(4563), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [69516] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [91110] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4699), 16, + ACTIONS(4371), 12, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_const, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4697), 26, + ACTIONS(4369), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [69566] = 3, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [91165] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5093), 16, + ACTIONS(4561), 12, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_const, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5091), 26, + ACTIONS(4559), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [69616] = 4, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [91220] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4295), 1, - anon_sym_COLON_COLON, - ACTIONS(4370), 12, + ACTIONS(4557), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -264611,7 +296441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(4368), 29, + ACTIONS(4555), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -264634,6 +296464,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, @@ -264641,16 +296477,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_GT2, anon_sym_requires, - [69668] = 6, + [91275] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5216), 1, - sym_auto, - ACTIONS(5218), 1, - anon_sym_decltype, - STATE(2855), 1, - sym_decltype_auto, - ACTIONS(4366), 12, + ACTIONS(4549), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -264663,7 +296493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(4364), 27, + ACTIONS(4547), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -264686,45 +296516,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, anon_sym_GT2, anon_sym_requires, - [69724] = 6, + [91330] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, - anon_sym_COLON_COLON, - ACTIONS(4827), 1, + ACTIONS(4545), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_LT, - STATE(2626), 1, - sym_template_argument_list, - ACTIONS(3722), 12, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4543), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(3714), 27, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -264732,26 +296566,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, - sym_identifier, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, + anon_sym_GT2, anon_sym_requires, - [69780] = 3, + [91385] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3119), 6, + STATE(1782), 1, + sym_string_literal, + ACTIONS(5410), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(5408), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(3117), 35, + ACTIONS(5406), 35, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -264787,10 +296635,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_typename, anon_sym_template, anon_sym_operator, - [69829] = 3, + [91444] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4370), 12, + ACTIONS(4537), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -264803,7 +296651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(4368), 29, + ACTIONS(4535), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -264826,6 +296674,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, @@ -264833,10 +296687,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_GT2, anon_sym_requires, - [69878] = 3, + [91499] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4675), 12, + ACTIONS(4533), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -264849,7 +296703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(4673), 29, + ACTIONS(4531), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -264872,6 +296726,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, @@ -264879,10 +296739,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_GT2, anon_sym_requires, - [69927] = 3, + [91554] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4410), 12, + ACTIONS(4529), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -264895,7 +296755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(4408), 29, + ACTIONS(4527), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -264918,6 +296778,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, @@ -264925,10 +296791,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_GT2, anon_sym_requires, - [69976] = 3, + [91609] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4751), 22, + sym_raw_string_literal, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(4749), 25, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + sym_true, + sym_false, + sym_null, + sym_identifier, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + sym_nullptr, + [91664] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4683), 12, + ACTIONS(4525), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -264941,7 +296859,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(4681), 29, + ACTIONS(4523), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -264964,6 +296882,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, @@ -264971,10 +296895,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_GT2, anon_sym_requires, - [70025] = 3, + [91719] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4655), 12, + ACTIONS(4521), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -264987,7 +296911,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(4653), 29, + ACTIONS(4519), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -265010,6 +296934,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, @@ -265017,32 +296947,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_GT2, anon_sym_requires, - [70074] = 10, + [91774] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5227), 1, - anon_sym___attribute__, - ACTIONS(5230), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5233), 1, - anon_sym___declspec, - ACTIONS(5239), 1, - anon_sym_virtual, - ACTIONS(5224), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(5220), 6, + ACTIONS(4517), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - anon_sym_template, - anon_sym_operator, - ACTIONS(5236), 8, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, anon_sym_const, + anon_sym_DOT, + ACTIONS(4515), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -265050,30 +296984,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(2850), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual_function_specifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(5222), 10, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_EQ, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, anon_sym_GT2, - [70137] = 3, + anon_sym_requires, + [91829] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4671), 12, + ACTIONS(4485), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -265086,7 +297015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(4669), 29, + ACTIONS(4483), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -265109,6 +297038,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, @@ -265116,62 +297051,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_GT2, anon_sym_requires, - [70186] = 9, + [91884] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4496), 1, - anon_sym_LPAREN2, - ACTIONS(5242), 1, - anon_sym_LBRACK, - ACTIONS(5246), 1, - anon_sym_DOT, - ACTIONS(5248), 1, - anon_sym_DASH_GT, - STATE(3005), 1, - sym_argument_list, - ACTIONS(5244), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5058), 16, + ACTIONS(4481), 12, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(5056), 18, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4479), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, anon_sym_GT2, - [70247] = 3, + anon_sym_requires, + [91939] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4615), 12, + ACTIONS(4477), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -265184,7 +297119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(4613), 29, + ACTIONS(4475), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -265207,6 +297142,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, @@ -265214,10 +297155,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_GT2, anon_sym_requires, - [70296] = 3, + [91994] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4414), 12, + ACTIONS(4473), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -265230,7 +297171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(4412), 29, + ACTIONS(4471), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -265253,6 +297194,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, @@ -265260,10 +297207,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_GT2, anon_sym_requires, - [70345] = 3, + [92049] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4534), 12, + ACTIONS(4469), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -265276,7 +297223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(4532), 29, + ACTIONS(4467), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -265299,6 +297246,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, @@ -265306,120 +297259,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_GT2, anon_sym_requires, - [70394] = 20, + [92104] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4496), 1, - anon_sym_LPAREN2, - ACTIONS(5242), 1, - anon_sym_LBRACK, - ACTIONS(5246), 1, - anon_sym_DOT, - ACTIONS(5248), 1, - anon_sym_DASH_GT, - ACTIONS(5254), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5256), 1, - anon_sym_AMP_AMP, - ACTIONS(5258), 1, - anon_sym_PIPE, - ACTIONS(5260), 1, - anon_sym_CARET, - ACTIONS(5262), 1, - anon_sym_AMP, - ACTIONS(5270), 1, - anon_sym_LT_EQ_GT, - STATE(3005), 1, - sym_argument_list, - ACTIONS(4934), 2, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(5244), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5250), 2, + ACTIONS(4465), 12, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5264), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5268), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5252), 3, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5266), 4, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(4916), 13, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4463), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT2, - [70477] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1483), 1, - anon_sym_enum, - ACTIONS(1485), 1, - anon_sym_class, - ACTIONS(1487), 1, - anon_sym_struct, - ACTIONS(1489), 1, - anon_sym_union, - ACTIONS(1491), 1, - sym_auto, - ACTIONS(1493), 1, - anon_sym_decltype, - ACTIONS(1495), 1, - anon_sym_typename, - ACTIONS(5196), 1, - sym_identifier, - ACTIONS(5200), 1, - anon_sym_COLON_COLON, - ACTIONS(5202), 1, - sym_primitive_type, - STATE(2075), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2323), 1, - sym_template_type, - STATE(2485), 1, - sym_qualified_type_identifier, - STATE(2494), 1, - sym_decltype_auto, - STATE(3825), 1, - sym__type_specifier, - STATE(5137), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - STATE(6877), 1, - sym_type_descriptor, - STATE(3031), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1479), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 8, - anon_sym_const, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -265427,19 +297296,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(2346), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [70568] = 3, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [92159] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4566), 12, + ACTIONS(4461), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -265452,7 +297327,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(4564), 29, + ACTIONS(4459), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -265475,6 +297350,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, @@ -265482,112 +297363,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_GT2, anon_sym_requires, - [70617] = 12, + [92214] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4496), 1, - anon_sym_LPAREN2, - ACTIONS(5242), 1, - anon_sym_LBRACK, - ACTIONS(5246), 1, - anon_sym_DOT, - ACTIONS(5248), 1, - anon_sym_DASH_GT, - STATE(3005), 1, - sym_argument_list, - ACTIONS(5244), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5250), 2, + ACTIONS(4457), 12, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5268), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5252), 3, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5026), 9, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(5024), 18, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4455), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_GT2, - [70684] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(105), 1, - sym_auto, - ACTIONS(107), 1, - anon_sym_decltype, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(2809), 1, - sym_primitive_type, - ACTIONS(3001), 1, - sym_identifier, - ACTIONS(3007), 1, - anon_sym_COLON_COLON, - ACTIONS(3011), 1, - anon_sym_enum, - ACTIONS(3013), 1, - anon_sym_class, - ACTIONS(3015), 1, - anon_sym_struct, - ACTIONS(3017), 1, - anon_sym_union, - ACTIONS(3019), 1, - anon_sym_typename, - STATE(2976), 1, - sym_template_type, - STATE(3123), 1, - sym_decltype_auto, - STATE(3184), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3198), 1, - sym_qualified_type_identifier, - STATE(3833), 1, - sym__type_specifier, - STATE(4798), 1, - sym_type_descriptor, - STATE(5131), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - STATE(3040), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(3009), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 8, - anon_sym_const, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -265595,19 +297400,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(3139), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [70775] = 3, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [92269] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4558), 12, + ACTIONS(4453), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -265620,7 +297431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(4556), 29, + ACTIONS(4451), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -265643,6 +297454,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, @@ -265650,166 +297467,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_GT2, anon_sym_requires, - [70824] = 13, + [92324] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4496), 1, - anon_sym_LPAREN2, - ACTIONS(5242), 1, - anon_sym_LBRACK, - ACTIONS(5246), 1, - anon_sym_DOT, - ACTIONS(5248), 1, - anon_sym_DASH_GT, - ACTIONS(5270), 1, - anon_sym_LT_EQ_GT, - STATE(3005), 1, - sym_argument_list, - ACTIONS(5244), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5250), 2, + ACTIONS(4449), 12, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5268), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5252), 3, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4910), 9, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(4904), 17, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4447), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, anon_sym_GT2, - [70893] = 9, + anon_sym_requires, + [92379] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4496), 1, - anon_sym_LPAREN2, - ACTIONS(5242), 1, - anon_sym_LBRACK, - ACTIONS(5246), 1, - anon_sym_DOT, - ACTIONS(5248), 1, - anon_sym_DASH_GT, - STATE(3005), 1, - sym_argument_list, - ACTIONS(5244), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4890), 16, + ACTIONS(4445), 12, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(4888), 18, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4443), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, anon_sym_GT2, - [70954] = 5, + anon_sym_requires, + [92434] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5272), 1, - anon_sym_LT, - STATE(3067), 1, - sym_template_argument_list, - ACTIONS(5086), 16, + ACTIONS(4441), 12, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, + anon_sym_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym_const, anon_sym_DOT, - ACTIONS(5084), 23, + ACTIONS(4439), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, anon_sym_GT2, - [71007] = 3, + anon_sym_requires, + [92489] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 12, + ACTIONS(4433), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -265822,7 +297639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(4516), 29, + ACTIONS(4431), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -265845,6 +297662,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, @@ -265852,303 +297675,218 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_GT2, anon_sym_requires, - [71056] = 13, + [92544] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4496), 1, - anon_sym_LPAREN2, - ACTIONS(5242), 1, - anon_sym_LBRACK, - ACTIONS(5246), 1, - anon_sym_DOT, - ACTIONS(5248), 1, - anon_sym_DASH_GT, - ACTIONS(5270), 1, - anon_sym_LT_EQ_GT, - STATE(3005), 1, - sym_argument_list, - ACTIONS(5244), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5250), 2, + ACTIONS(4429), 12, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5268), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5252), 3, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5026), 9, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(5024), 17, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4427), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT2, - [71125] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4496), 1, - anon_sym_LPAREN2, - ACTIONS(5242), 1, + anon_sym_LT_LT, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(5246), 1, - anon_sym_DOT, - ACTIONS(5248), 1, - anon_sym_DASH_GT, - ACTIONS(5270), 1, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - STATE(3005), 1, - sym_argument_list, - ACTIONS(5244), 2, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5250), 2, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [92599] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4415), 12, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5268), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5252), 3, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5266), 4, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(5026), 5, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(5024), 17, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4413), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT2, - [71196] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4496), 1, - anon_sym_LPAREN2, - ACTIONS(5242), 1, + anon_sym_LT_LT, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(5246), 1, - anon_sym_DOT, - ACTIONS(5248), 1, - anon_sym_DASH_GT, - ACTIONS(5270), 1, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - STATE(3005), 1, - sym_argument_list, - ACTIONS(5244), 2, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5250), 2, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [92654] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4411), 12, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5264), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5268), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5252), 3, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5266), 4, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(5026), 5, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(5024), 15, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4409), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT2, - [71269] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4496), 1, - anon_sym_LPAREN2, - ACTIONS(5242), 1, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(5246), 1, - anon_sym_DOT, - ACTIONS(5248), 1, - anon_sym_DASH_GT, - ACTIONS(5262), 1, - anon_sym_AMP, - ACTIONS(5270), 1, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - STATE(3005), 1, - sym_argument_list, - ACTIONS(5244), 2, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5250), 2, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_requires, + [92709] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4407), 12, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5264), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5268), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5252), 3, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5026), 4, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(5266), 4, + anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(5024), 15, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4405), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT2, - [71344] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4496), 1, anon_sym_LPAREN2, - ACTIONS(5242), 1, - anon_sym_LBRACK, - ACTIONS(5246), 1, - anon_sym_DOT, - ACTIONS(5248), 1, - anon_sym_DASH_GT, - ACTIONS(5254), 1, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, - ACTIONS(5256), 1, anon_sym_AMP_AMP, - ACTIONS(5258), 1, - anon_sym_PIPE, - ACTIONS(5260), 1, anon_sym_CARET, - ACTIONS(5262), 1, - anon_sym_AMP, - ACTIONS(5270), 1, - anon_sym_LT_EQ_GT, - STATE(3005), 1, - sym_argument_list, - ACTIONS(5054), 2, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(5244), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5250), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5264), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5268), 2, anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5252), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5266), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(5052), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, anon_sym_GT2, - [71427] = 3, + anon_sym_requires, + [92764] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4573), 12, + ACTIONS(4403), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -266161,7 +297899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(4571), 29, + ACTIONS(4401), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -266184,6 +297922,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, @@ -266191,10 +297935,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_GT2, anon_sym_requires, - [71476] = 3, + [92819] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4370), 12, + ACTIONS(4399), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -266207,7 +297951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(4368), 29, + ACTIONS(4397), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -266230,6 +297974,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, @@ -266237,227 +297987,181 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_GT2, anon_sym_requires, - [71525] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1483), 1, - anon_sym_enum, - ACTIONS(1485), 1, - anon_sym_class, - ACTIONS(1487), 1, - anon_sym_struct, - ACTIONS(1489), 1, - anon_sym_union, - ACTIONS(1491), 1, - sym_auto, - ACTIONS(1493), 1, - anon_sym_decltype, - ACTIONS(1495), 1, - anon_sym_typename, - ACTIONS(5196), 1, - sym_identifier, - ACTIONS(5200), 1, - anon_sym_COLON_COLON, - ACTIONS(5202), 1, - sym_primitive_type, - STATE(2075), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2323), 1, - sym_template_type, - STATE(2485), 1, - sym_qualified_type_identifier, - STATE(2494), 1, - sym_decltype_auto, - STATE(3825), 1, - sym__type_specifier, - STATE(4798), 1, - sym_type_descriptor, - STATE(5137), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - STATE(3031), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1479), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(2346), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [71616] = 3, + [92874] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4849), 17, + ACTIONS(4395), 12, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym_const, anon_sym_DOT, - ACTIONS(4847), 24, + ACTIONS(4393), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, anon_sym_GT2, - [71665] = 8, + anon_sym_requires, + [92929] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4496), 1, - anon_sym_LPAREN2, - ACTIONS(5242), 1, - anon_sym_LBRACK, - ACTIONS(5246), 1, - anon_sym_DOT, - ACTIONS(5248), 1, - anon_sym_DASH_GT, - STATE(3005), 1, - sym_argument_list, - ACTIONS(4902), 16, + ACTIONS(4391), 12, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(4900), 20, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4389), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, anon_sym_GT2, - [71724] = 3, + anon_sym_requires, + [92984] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4434), 6, + ACTIONS(4387), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(4385), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4432), 35, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, anon_sym_volatile, anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [71773] = 3, + anon_sym_GT2, + anon_sym_requires, + [93039] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5277), 6, + STATE(1779), 1, + sym_string_literal, + ACTIONS(5410), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(5408), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(5275), 35, + ACTIONS(5406), 35, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -266493,10 +298197,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_typename, anon_sym_template, anon_sym_operator, - [71822] = 3, + [93098] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4631), 12, + ACTIONS(4383), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -266509,7 +298213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(4629), 29, + ACTIONS(4381), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -266532,6 +298236,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, @@ -266539,25 +298249,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_GT2, anon_sym_requires, - [71871] = 3, + [93153] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1521), 1, + anon_sym_TILDE, + ACTIONS(3137), 1, + anon_sym_LPAREN2, + ACTIONS(4755), 1, + sym_identifier, + ACTIONS(4759), 1, + anon_sym_STAR, + ACTIONS(4761), 1, + anon_sym_AMP_AMP, + ACTIONS(4763), 1, + anon_sym_AMP, + ACTIONS(4765), 1, + anon_sym_COLON_COLON, + ACTIONS(4767), 1, + anon_sym_LBRACK, + STATE(4345), 1, + sym_parameter_list, + STATE(4973), 1, + sym__scope_resolution, + STATE(5151), 1, + sym__declarator, + STATE(5379), 1, + sym__abstract_declarator, + STATE(7300), 1, + sym_ms_based_modifier, + ACTIONS(5412), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(4386), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(7236), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5127), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(2965), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5080), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [93247] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4510), 12, + ACTIONS(4089), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym_const, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(4508), 29, + sym_literal_suffix, + ACTIONS(4087), 30, + sym_raw_string_literal, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -266566,135 +298353,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_LBRACE, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - anon_sym_requires, - [71920] = 17, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [93301] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(4496), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1521), 1, + anon_sym_TILDE, + ACTIONS(3137), 1, anon_sym_LPAREN2, - ACTIONS(5242), 1, + ACTIONS(4755), 1, + sym_identifier, + ACTIONS(4765), 1, + anon_sym_COLON_COLON, + ACTIONS(4767), 1, anon_sym_LBRACK, - ACTIONS(5246), 1, - anon_sym_DOT, - ACTIONS(5248), 1, - anon_sym_DASH_GT, - ACTIONS(5260), 1, - anon_sym_CARET, - ACTIONS(5262), 1, - anon_sym_AMP, - ACTIONS(5270), 1, - anon_sym_LT_EQ_GT, - STATE(3005), 1, - sym_argument_list, - ACTIONS(5244), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5250), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5264), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5268), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5026), 3, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(5252), 3, + ACTIONS(4833), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5266), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(5024), 15, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, + ACTIONS(4835), 1, anon_sym_AMP_AMP, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT2, - [71997] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(5279), 1, - sym_identifier, - ACTIONS(5281), 1, - anon_sym_COLON_COLON, - ACTIONS(5285), 1, - sym_primitive_type, - ACTIONS(5287), 1, - anon_sym_enum, - ACTIONS(5289), 1, - anon_sym_class, - ACTIONS(5291), 1, - anon_sym_struct, - ACTIONS(5293), 1, - anon_sym_union, - ACTIONS(5295), 1, - sym_auto, - ACTIONS(5297), 1, - anon_sym_decltype, - ACTIONS(5299), 1, - anon_sym_typename, - STATE(3761), 1, - sym__type_specifier, - STATE(4050), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4188), 1, - sym_template_type, - STATE(4232), 1, - sym_qualified_type_identifier, - STATE(4235), 1, - sym_decltype_auto, - STATE(4802), 1, - sym_type_descriptor, - STATE(5084), 1, + ACTIONS(4837), 1, + anon_sym_AMP, + STATE(4328), 1, + sym_parameter_list, + STATE(4973), 1, sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - STATE(3029), 2, + STATE(5151), 1, + sym__declarator, + STATE(5338), 1, + sym__abstract_declarator, + STATE(7300), 1, + sym_ms_based_modifier, + ACTIONS(5412), 2, + anon_sym_COMMA, + anon_sym_GT2, + STATE(4386), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(5283), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 8, + STATE(7236), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5127), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(2965), 8, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -266703,34 +298430,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(4234), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [72088] = 3, + STATE(5080), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [93395] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4444), 12, + ACTIONS(3424), 1, + anon_sym_COLON_COLON, + ACTIONS(5414), 1, + anon_sym_LT, + STATE(2412), 1, + sym_template_argument_list, + ACTIONS(3430), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_const, + anon_sym_COLON, anon_sym_DOT, - ACTIONS(4442), 29, + ACTIONS(3435), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -266739,111 +298473,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_GT2, - anon_sym_requires, - [72137] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1483), 1, - anon_sym_enum, - ACTIONS(1485), 1, - anon_sym_class, - ACTIONS(1487), 1, - anon_sym_struct, - ACTIONS(1489), 1, - anon_sym_union, - ACTIONS(1491), 1, - sym_auto, - ACTIONS(1493), 1, - anon_sym_decltype, - ACTIONS(1495), 1, - anon_sym_typename, - ACTIONS(5196), 1, - sym_identifier, - ACTIONS(5200), 1, - anon_sym_COLON_COLON, - ACTIONS(5202), 1, - sym_primitive_type, - STATE(2075), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2323), 1, - sym_template_type, - STATE(2485), 1, - sym_qualified_type_identifier, - STATE(2494), 1, - sym_decltype_auto, - STATE(3825), 1, - sym__type_specifier, - STATE(5137), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - STATE(6691), 1, - sym_type_descriptor, - STATE(3031), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1479), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(2346), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [72228] = 3, + anon_sym_final, + anon_sym_override, + [93455] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4592), 12, + ACTIONS(4079), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym_const, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(4590), 29, + sym_literal_suffix, + ACTIONS(4077), 30, + sym_raw_string_literal, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -266852,44 +298529,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_LBRACE, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - anon_sym_requires, - [72277] = 3, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [93509] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4470), 12, + ACTIONS(3424), 1, + anon_sym_COLON_COLON, + ACTIONS(5417), 1, + anon_sym_LT, + STATE(2412), 1, + sym_template_argument_list, + ACTIONS(4095), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_const, + anon_sym_COLON, anon_sym_DOT, - ACTIONS(4468), 29, + ACTIONS(3426), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -266898,116 +298578,886 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_GT2, - anon_sym_requires, - [72326] = 18, + anon_sym_final, + anon_sym_override, + [93569] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(4496), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1519), 1, anon_sym_LPAREN2, - ACTIONS(5242), 1, + ACTIONS(1521), 1, + anon_sym_TILDE, + ACTIONS(4755), 1, + sym_identifier, + ACTIONS(4765), 1, + anon_sym_COLON_COLON, + ACTIONS(5419), 1, + anon_sym_STAR, + ACTIONS(5421), 1, + anon_sym_AMP_AMP, + ACTIONS(5423), 1, + anon_sym_AMP, + ACTIONS(5425), 1, anon_sym_LBRACK, - ACTIONS(5246), 1, - anon_sym_DOT, - ACTIONS(5248), 1, - anon_sym_DASH_GT, - ACTIONS(5258), 1, - anon_sym_PIPE, - ACTIONS(5260), 1, - anon_sym_CARET, - ACTIONS(5262), 1, + STATE(4398), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4973), 1, + sym__scope_resolution, + STATE(5085), 1, + sym__declarator, + STATE(6817), 1, + sym_ms_based_modifier, + ACTIONS(2963), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3629), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4305), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(7236), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2961), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2965), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5080), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [93662] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1519), 1, + anon_sym_LPAREN2, + ACTIONS(1521), 1, + anon_sym_TILDE, + ACTIONS(5425), 1, + anon_sym_LBRACK, + ACTIONS(5427), 1, + sym_identifier, + ACTIONS(5429), 1, + anon_sym_STAR, + ACTIONS(5431), 1, + anon_sym_AMP_AMP, + ACTIONS(5433), 1, anon_sym_AMP, - ACTIONS(5270), 1, - anon_sym_LT_EQ_GT, - STATE(3005), 1, - sym_argument_list, - ACTIONS(5026), 2, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(5244), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5250), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5264), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5268), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5252), 3, + ACTIONS(5435), 1, + anon_sym_COLON_COLON, + STATE(4398), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4941), 1, + sym__scope_resolution, + STATE(5300), 1, + sym__declarator, + STATE(6755), 1, + sym_ms_based_modifier, + ACTIONS(2963), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3214), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(3590), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(7236), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2961), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2965), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5080), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [93755] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1519), 1, + anon_sym_LPAREN2, + ACTIONS(1521), 1, + anon_sym_TILDE, + ACTIONS(4755), 1, + sym_identifier, + ACTIONS(4765), 1, + anon_sym_COLON_COLON, + ACTIONS(5425), 1, + anon_sym_LBRACK, + ACTIONS(5437), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5266), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(5024), 15, + ACTIONS(5439), 1, + anon_sym_AMP_AMP, + ACTIONS(5441), 1, + anon_sym_AMP, + STATE(4398), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4973), 1, + sym__scope_resolution, + STATE(5146), 1, + sym__declarator, + STATE(6758), 1, + sym_ms_based_modifier, + ACTIONS(2963), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3581), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4305), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(7236), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2961), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2965), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5080), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [93848] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1519), 1, + anon_sym_LPAREN2, + ACTIONS(1521), 1, + anon_sym_TILDE, + ACTIONS(5425), 1, + anon_sym_LBRACK, + ACTIONS(5427), 1, + sym_identifier, + ACTIONS(5429), 1, + anon_sym_STAR, + ACTIONS(5431), 1, + anon_sym_AMP_AMP, + ACTIONS(5433), 1, + anon_sym_AMP, + ACTIONS(5435), 1, + anon_sym_COLON_COLON, + STATE(4398), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4941), 1, + sym__scope_resolution, + STATE(5303), 1, + sym__declarator, + STATE(6755), 1, + sym_ms_based_modifier, + ACTIONS(2963), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3638), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4305), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(7236), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2961), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2965), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5080), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [93941] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1519), 1, + anon_sym_LPAREN2, + ACTIONS(1521), 1, + anon_sym_TILDE, + ACTIONS(1523), 1, + anon_sym_STAR, + ACTIONS(1525), 1, + anon_sym_AMP, + ACTIONS(4247), 1, + sym_identifier, + ACTIONS(5049), 1, + anon_sym_COLON_COLON, + ACTIONS(5425), 1, + anon_sym_LBRACK, + STATE(4398), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4946), 1, + sym__scope_resolution, + STATE(5311), 1, + sym__declarator, + STATE(7250), 1, + sym_ms_based_modifier, + ACTIONS(2963), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3222), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(3605), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(7236), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2961), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2965), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5080), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [94034] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3216), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5443), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3957), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_GT2, - [72405] = 3, + ACTIONS(3955), 27, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [94091] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(4474), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1519), 1, + anon_sym_LPAREN2, + ACTIONS(1521), 1, + anon_sym_TILDE, + ACTIONS(5425), 1, + anon_sym_LBRACK, + ACTIONS(5427), 1, + sym_identifier, + ACTIONS(5429), 1, + anon_sym_STAR, + ACTIONS(5431), 1, + anon_sym_AMP_AMP, + ACTIONS(5433), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(5435), 1, + anon_sym_COLON_COLON, + STATE(4398), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4941), 1, + sym__scope_resolution, + STATE(5303), 1, + sym__declarator, + STATE(6755), 1, + sym_ms_based_modifier, + ACTIONS(2963), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3231), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(3638), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(7236), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2961), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2965), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5080), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [94184] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1521), 1, + anon_sym_TILDE, + ACTIONS(3137), 1, + anon_sym_LPAREN2, + ACTIONS(3139), 1, + anon_sym_STAR, + ACTIONS(3141), 1, + anon_sym_AMP_AMP, + ACTIONS(3143), 1, + anon_sym_AMP, + ACTIONS(4247), 1, + sym_identifier, + ACTIONS(4767), 1, + anon_sym_LBRACK, + ACTIONS(5049), 1, + anon_sym_COLON_COLON, + ACTIONS(5412), 1, + anon_sym_RPAREN, + STATE(4345), 1, + sym_parameter_list, + STATE(4946), 1, + sym__scope_resolution, + STATE(5311), 1, + sym__declarator, + STATE(5379), 1, + sym__abstract_declarator, + STATE(7250), 1, + sym_ms_based_modifier, + STATE(4386), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(7236), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5127), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(2965), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5080), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [94277] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1519), 1, + anon_sym_LPAREN2, + ACTIONS(1521), 1, + anon_sym_TILDE, + ACTIONS(4755), 1, + sym_identifier, + ACTIONS(4765), 1, + anon_sym_COLON_COLON, + ACTIONS(5425), 1, + anon_sym_LBRACK, + ACTIONS(5446), 1, + anon_sym_STAR, + ACTIONS(5448), 1, + anon_sym_AMP_AMP, + ACTIONS(5450), 1, + anon_sym_AMP, + STATE(4398), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4973), 1, + sym__scope_resolution, + STATE(5181), 1, + sym__declarator, + STATE(7300), 1, + sym_ms_based_modifier, + ACTIONS(2963), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3220), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(3594), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(7236), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2961), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2965), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5080), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [94370] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1519), 1, + anon_sym_LPAREN2, + ACTIONS(1521), 1, + anon_sym_TILDE, + ACTIONS(4755), 1, + sym_identifier, + ACTIONS(4765), 1, + anon_sym_COLON_COLON, + ACTIONS(5425), 1, + anon_sym_LBRACK, + ACTIONS(5446), 1, + anon_sym_STAR, + ACTIONS(5448), 1, + anon_sym_AMP_AMP, + ACTIONS(5450), 1, + anon_sym_AMP, + STATE(4398), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4973), 1, + sym__scope_resolution, + STATE(5151), 1, + sym__declarator, + STATE(7300), 1, + sym_ms_based_modifier, + ACTIONS(2963), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3626), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4305), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(7236), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2961), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2965), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5080), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [94463] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1519), 1, + anon_sym_LPAREN2, + ACTIONS(1521), 1, + anon_sym_TILDE, + ACTIONS(4247), 1, + sym_identifier, + ACTIONS(5049), 1, + anon_sym_COLON_COLON, + ACTIONS(5425), 1, + anon_sym_LBRACK, + ACTIONS(5452), 1, + anon_sym_STAR, + ACTIONS(5454), 1, + anon_sym_AMP_AMP, + ACTIONS(5456), 1, + anon_sym_AMP, + STATE(4398), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4946), 1, + sym__scope_resolution, + STATE(5365), 1, + sym__declarator, + STATE(6825), 1, + sym_ms_based_modifier, + ACTIONS(2963), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3588), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4305), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(7236), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2961), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2965), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5080), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [94556] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1519), 1, + anon_sym_LPAREN2, + ACTIONS(1521), 1, + anon_sym_TILDE, + ACTIONS(1523), 1, + anon_sym_STAR, + ACTIONS(1525), 1, + anon_sym_AMP, + ACTIONS(4247), 1, + sym_identifier, + ACTIONS(5049), 1, + anon_sym_COLON_COLON, + ACTIONS(5425), 1, + anon_sym_LBRACK, + STATE(4398), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4946), 1, + sym__scope_resolution, + STATE(5336), 1, + sym__declarator, + STATE(7250), 1, + sym_ms_based_modifier, + ACTIONS(2963), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3616), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4305), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(7236), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2961), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2965), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5080), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [94649] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3424), 1, + anon_sym_COLON_COLON, + ACTIONS(5458), 1, anon_sym_LT, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(4472), 29, + STATE(3279), 1, + sym_template_argument_list, + ACTIONS(3435), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(3430), 29, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -267015,45 +299465,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + anon_sym_COLON, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_GT2, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, anon_sym_requires, - [72454] = 3, + [94708] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(4596), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(4594), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1519), 1, anon_sym_LPAREN2, + ACTIONS(1521), 1, + anon_sym_TILDE, + ACTIONS(4755), 1, + sym_identifier, + ACTIONS(4765), 1, + anon_sym_COLON_COLON, + ACTIONS(5419), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(5421), 1, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACE, + ACTIONS(5423), 1, + anon_sym_AMP, + ACTIONS(5425), 1, anon_sym_LBRACK, + STATE(4398), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4973), 1, + sym__scope_resolution, + STATE(5105), 1, + sym__declarator, + STATE(6817), 1, + sym_ms_based_modifier, + ACTIONS(2963), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3587), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4305), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(7236), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2961), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2965), 8, + anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -267061,45 +299534,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - anon_sym_requires, - [72503] = 3, + STATE(5080), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [94801] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(4635), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(4633), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1519), 1, anon_sym_LPAREN2, + ACTIONS(1521), 1, + anon_sym_TILDE, + ACTIONS(1523), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACE, + ACTIONS(1525), 1, + anon_sym_AMP, + ACTIONS(4247), 1, + sym_identifier, + ACTIONS(5049), 1, + anon_sym_COLON_COLON, + ACTIONS(5425), 1, anon_sym_LBRACK, + STATE(4398), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4946), 1, + sym__scope_resolution, + STATE(5326), 1, + sym__declarator, + STATE(7250), 1, + sym_ms_based_modifier, + ACTIONS(2963), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3228), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(3628), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(7236), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2961), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2965), 8, + anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -267107,45 +299604,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - anon_sym_requires, - [72552] = 3, + STATE(5080), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [94894] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(4643), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(4641), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1519), 1, anon_sym_LPAREN2, + ACTIONS(1521), 1, + anon_sym_TILDE, + ACTIONS(4247), 1, + sym_identifier, + ACTIONS(5049), 1, + anon_sym_COLON_COLON, + ACTIONS(5425), 1, + anon_sym_LBRACK, + ACTIONS(5452), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(5454), 1, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACE, - anon_sym_LBRACK, + ACTIONS(5456), 1, + anon_sym_AMP, + STATE(4398), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4946), 1, + sym__scope_resolution, + STATE(5366), 1, + sym__declarator, + STATE(6825), 1, + sym_ms_based_modifier, + ACTIONS(2963), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3610), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4305), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(7236), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2961), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2965), 8, + anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -267153,45 +299674,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - anon_sym_requires, - [72601] = 3, + STATE(5080), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [94987] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(4647), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(4645), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1519), 1, anon_sym_LPAREN2, + ACTIONS(1521), 1, + anon_sym_TILDE, + ACTIONS(4247), 1, + sym_identifier, + ACTIONS(5049), 1, + anon_sym_COLON_COLON, + ACTIONS(5425), 1, + anon_sym_LBRACK, + ACTIONS(5452), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(5454), 1, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACE, - anon_sym_LBRACK, + ACTIONS(5456), 1, + anon_sym_AMP, + STATE(4398), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4946), 1, + sym__scope_resolution, + STATE(5368), 1, + sym__declarator, + STATE(6825), 1, + sym_ms_based_modifier, + ACTIONS(2963), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3226), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(3583), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(7236), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2961), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2965), 8, + anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -267199,45 +299744,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - anon_sym_requires, - [72650] = 3, + STATE(5080), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [95080] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(4526), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1519), 1, + anon_sym_LPAREN2, + ACTIONS(1521), 1, + anon_sym_TILDE, + ACTIONS(1523), 1, + anon_sym_STAR, + ACTIONS(1525), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, + ACTIONS(4247), 1, + sym_identifier, + ACTIONS(5049), 1, + anon_sym_COLON_COLON, + ACTIONS(5425), 1, + anon_sym_LBRACK, + STATE(4398), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4946), 1, + sym__scope_resolution, + STATE(5311), 1, + sym__declarator, + STATE(7250), 1, + sym_ms_based_modifier, + ACTIONS(2963), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3605), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4305), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(7236), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2961), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2965), 8, anon_sym_const, - anon_sym_DOT, - ACTIONS(4524), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5080), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [95173] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1519), 1, anon_sym_LPAREN2, + ACTIONS(1521), 1, + anon_sym_TILDE, + ACTIONS(4755), 1, + sym_identifier, + ACTIONS(4765), 1, + anon_sym_COLON_COLON, + ACTIONS(5425), 1, + anon_sym_LBRACK, + ACTIONS(5446), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(5448), 1, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACE, - anon_sym_LBRACK, + ACTIONS(5450), 1, + anon_sym_AMP, + STATE(4398), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4973), 1, + sym__scope_resolution, + STATE(5152), 1, + sym__declarator, + STATE(7300), 1, + sym_ms_based_modifier, + ACTIONS(2963), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3586), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4305), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(7236), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2961), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2965), 8, + anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -267245,45 +299884,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - anon_sym_requires, - [72699] = 3, + STATE(5080), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [95266] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4623), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(3424), 1, + anon_sym_COLON_COLON, + ACTIONS(5458), 1, anon_sym_LT, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(4621), 29, + STATE(3279), 1, + sym_template_argument_list, + ACTIONS(3426), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4095), 29, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -267291,40 +299938,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + anon_sym_COLON, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_GT2, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, anon_sym_requires, - [72748] = 10, + [95325] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3926), 1, - anon_sym___attribute__, - ACTIONS(3930), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3932), 1, - anon_sym___declspec, - ACTIONS(3936), 1, - anon_sym_virtual, - ACTIONS(3924), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(5301), 6, - anon_sym_AMP, + ACTIONS(47), 1, anon_sym___based, - anon_sym_LBRACK, - sym_identifier, + ACTIONS(976), 1, anon_sym_template, + ACTIONS(1501), 1, anon_sym_operator, - ACTIONS(3934), 8, + ACTIONS(1519), 1, + anon_sym_LPAREN2, + ACTIONS(1521), 1, + anon_sym_TILDE, + ACTIONS(5425), 1, + anon_sym_LBRACK, + ACTIONS(5427), 1, + sym_identifier, + ACTIONS(5429), 1, + anon_sym_STAR, + ACTIONS(5431), 1, + anon_sym_AMP_AMP, + ACTIONS(5433), 1, + anon_sym_AMP, + ACTIONS(5435), 1, + anon_sym_COLON_COLON, + STATE(4398), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4941), 1, + sym__scope_resolution, + STATE(5305), 1, + sym__declarator, + STATE(6755), 1, + sym_ms_based_modifier, + ACTIONS(2963), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3624), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4305), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(7236), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2961), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2965), 8, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -267333,56 +300007,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(2850), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual_function_specifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(5303), 10, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(5080), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [95418] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1519), 1, anon_sym_LPAREN2, + ACTIONS(1521), 1, anon_sym_TILDE, + ACTIONS(4755), 1, + sym_identifier, + ACTIONS(4765), 1, + anon_sym_COLON_COLON, + ACTIONS(5425), 1, + anon_sym_LBRACK, + ACTIONS(5437), 1, anon_sym_STAR, + ACTIONS(5439), 1, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_EQ, - anon_sym_GT2, - [72811] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4530), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(5441), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, + STATE(4398), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4973), 1, + sym__scope_resolution, + STATE(5140), 1, + sym__declarator, + STATE(6758), 1, + sym_ms_based_modifier, + ACTIONS(2963), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3213), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(3620), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(7236), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2961), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2965), 8, anon_sym_const, - anon_sym_DOT, - ACTIONS(4528), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -267390,112 +300077,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - anon_sym_requires, - [72860] = 4, + STATE(5080), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [95511] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(5305), 1, - sym_literal_suffix, - ACTIONS(3724), 17, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(3716), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1519), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(1521), 1, + anon_sym_TILDE, + ACTIONS(4247), 1, + sym_identifier, + ACTIONS(5049), 1, + anon_sym_COLON_COLON, + ACTIONS(5425), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [72911] = 24, + ACTIONS(5452), 1, + anon_sym_STAR, + ACTIONS(5454), 1, + anon_sym_AMP_AMP, + ACTIONS(5456), 1, + anon_sym_AMP, + STATE(4398), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4946), 1, + sym__scope_resolution, + STATE(5366), 1, + sym__declarator, + STATE(6825), 1, + sym_ms_based_modifier, + ACTIONS(2963), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3221), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(3610), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(7236), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2961), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2965), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5080), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [95604] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(105), 1, - sym_auto, - ACTIONS(107), 1, - anon_sym_decltype, - ACTIONS(972), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(2809), 1, - sym_primitive_type, - ACTIONS(3001), 1, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1519), 1, + anon_sym_LPAREN2, + ACTIONS(1521), 1, + anon_sym_TILDE, + ACTIONS(4755), 1, sym_identifier, - ACTIONS(3007), 1, + ACTIONS(4765), 1, anon_sym_COLON_COLON, - ACTIONS(3013), 1, - anon_sym_class, - ACTIONS(3015), 1, - anon_sym_struct, - ACTIONS(3017), 1, - anon_sym_union, - ACTIONS(5307), 1, - anon_sym_enum, - ACTIONS(5309), 1, - anon_sym_typename, - STATE(2976), 1, - sym_template_type, - STATE(3123), 1, - sym_decltype_auto, - STATE(3184), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3198), 1, - sym_qualified_type_identifier, - STATE(3940), 1, - sym__type_specifier, - STATE(4798), 1, - sym_type_descriptor, - STATE(5131), 1, + ACTIONS(5419), 1, + anon_sym_STAR, + ACTIONS(5421), 1, + anon_sym_AMP_AMP, + ACTIONS(5423), 1, + anon_sym_AMP, + ACTIONS(5425), 1, + anon_sym_LBRACK, + STATE(4398), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4973), 1, sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - STATE(3001), 2, + STATE(5105), 1, + sym__declarator, + STATE(6817), 1, + sym_ms_based_modifier, + ACTIONS(2963), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3211), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(3587), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(3009), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 8, + STATE(7236), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2961), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2965), 8, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -267504,45 +300217,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(3139), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [73002] = 3, + STATE(5080), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [95697] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(4418), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(4416), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1519), 1, anon_sym_LPAREN2, + ACTIONS(1521), 1, + anon_sym_TILDE, + ACTIONS(4755), 1, + sym_identifier, + ACTIONS(4765), 1, + anon_sym_COLON_COLON, + ACTIONS(5425), 1, + anon_sym_LBRACK, + ACTIONS(5446), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(5448), 1, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACE, - anon_sym_LBRACK, + ACTIONS(5450), 1, + anon_sym_AMP, + STATE(4398), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4973), 1, + sym__scope_resolution, + STATE(5151), 1, + sym__declarator, + STATE(7300), 1, + sym_ms_based_modifier, + ACTIONS(2963), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3229), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(3626), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(7236), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2961), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2965), 8, + anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -267550,45 +300287,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - anon_sym_requires, - [73051] = 3, + STATE(5080), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [95790] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(4406), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(4404), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1519), 1, anon_sym_LPAREN2, + ACTIONS(1521), 1, + anon_sym_TILDE, + ACTIONS(4755), 1, + sym_identifier, + ACTIONS(4765), 1, + anon_sym_COLON_COLON, + ACTIONS(5425), 1, + anon_sym_LBRACK, + ACTIONS(5437), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(5439), 1, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACE, - anon_sym_LBRACK, + ACTIONS(5441), 1, + anon_sym_AMP, + STATE(4398), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4973), 1, + sym__scope_resolution, + STATE(5146), 1, + sym__declarator, + STATE(6758), 1, + sym_ms_based_modifier, + ACTIONS(2963), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3237), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(3581), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(7236), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2961), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2965), 8, + anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -267596,53 +300357,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - anon_sym_requires, - [73100] = 6, + STATE(5080), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [95883] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(5318), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5314), 4, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1519), 1, anon_sym_LPAREN2, + ACTIONS(1521), 1, anon_sym_TILDE, + ACTIONS(4755), 1, + sym_identifier, + ACTIONS(4765), 1, + anon_sym_COLON_COLON, + ACTIONS(5425), 1, + anon_sym_LBRACK, + ACTIONS(5437), 1, anon_sym_STAR, + ACTIONS(5439), 1, anon_sym_AMP_AMP, - ACTIONS(5316), 5, + ACTIONS(5441), 1, anon_sym_AMP, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_explicit, - anon_sym_operator, - ACTIONS(5321), 12, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_auto, - anon_sym_decltype, - anon_sym_typename, - ACTIONS(5311), 18, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, + STATE(4398), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4973), 1, + sym__scope_resolution, + STATE(5142), 1, + sym__declarator, + STATE(6758), 1, + sym_ms_based_modifier, + ACTIONS(2963), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3636), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4305), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(7236), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2961), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2965), 8, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -267651,30 +300427,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - sym_identifier, - anon_sym_virtual, - anon_sym_template, - [73155] = 3, + STATE(5080), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [95976] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(5325), 6, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1519), 1, anon_sym_LPAREN2, + ACTIONS(1521), 1, anon_sym_TILDE, + ACTIONS(4755), 1, + sym_identifier, + ACTIONS(4765), 1, + anon_sym_COLON_COLON, + ACTIONS(5419), 1, anon_sym_STAR, + ACTIONS(5421), 1, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5323), 35, + ACTIONS(5423), 1, anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + ACTIONS(5425), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, + STATE(4398), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4973), 1, + sym__scope_resolution, + STATE(5118), 1, + sym__declarator, + STATE(6817), 1, + sym_ms_based_modifier, + ACTIONS(2963), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3224), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(3609), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(7236), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2961), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2965), 8, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -267683,40 +300497,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [73204] = 3, + STATE(5080), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [96069] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4422), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(4420), 29, + ACTIONS(5463), 1, + sym_raw_string_literal, + STATE(3239), 2, + sym_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(5460), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(3979), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -267728,28 +300535,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_LT, - anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, anon_sym_GT2, - anon_sym_requires, - [73253] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4663), 12, + ACTIONS(3981), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -267760,11 +300553,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_GT_GT, - anon_sym_const, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + [96127] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5466), 1, + anon_sym_COLON, + STATE(2602), 1, + sym__enum_base_clause, + STATE(2724), 1, + sym_enumerator_list, + ACTIONS(4153), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym_DOT, - ACTIONS(4661), 29, + ACTIONS(4151), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -267773,44 +300592,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_GT2, - anon_sym_requires, - [73302] = 3, + [96185] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4659), 12, + ACTIONS(5466), 1, + anon_sym_COLON, + STATE(2590), 1, + sym__enum_base_clause, + STATE(2860), 1, + sym_enumerator_list, + ACTIONS(4235), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym_const, anon_sym_DOT, - ACTIONS(4657), 29, + ACTIONS(4233), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -267819,42 +300644,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_GT2, - anon_sym_requires, - [73351] = 3, + [96243] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4402), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(4400), 29, + ACTIONS(5468), 1, + sym_raw_string_literal, + STATE(3239), 2, + sym_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(2695), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(3989), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -267866,254 +300691,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_LT, - anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, anon_sym_GT2, - anon_sym_requires, - [73400] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4496), 1, - anon_sym_LPAREN2, - ACTIONS(5242), 1, - anon_sym_LBRACK, - ACTIONS(5246), 1, - anon_sym_DOT, - ACTIONS(5248), 1, - anon_sym_DASH_GT, - STATE(3005), 1, - sym_argument_list, - ACTIONS(4942), 16, + ACTIONS(3991), 18, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(4940), 20, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_GT2, - [73459] = 3, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + [96301] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4864), 17, + ACTIONS(2485), 9, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_DOT, - ACTIONS(4862), 24, + ACTIONS(2487), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_while, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - anon_sym_GT2, - sym_literal_suffix, - [73508] = 9, + anon_sym_catch, + anon_sym_requires, + [96353] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4496), 1, + ACTIONS(1469), 1, + anon_sym_LBRACE, + ACTIONS(5120), 1, + sym_auto, + ACTIONS(5122), 1, + anon_sym_decltype, + ACTIONS(5470), 1, anon_sym_LPAREN2, - ACTIONS(5242), 1, + ACTIONS(5472), 1, anon_sym_LBRACK, - ACTIONS(5246), 1, - anon_sym_DOT, - ACTIONS(5248), 1, - anon_sym_DASH_GT, - STATE(3005), 1, + STATE(2722), 1, + sym_decltype_auto, + STATE(3404), 1, + sym_new_declarator, + STATE(3430), 2, sym_argument_list, - ACTIONS(5244), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4990), 16, + sym_initializer_list, + ACTIONS(4075), 9, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(4988), 18, + anon_sym_DOT, + ACTIONS(4073), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_GT2, - [73569] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4496), 1, - anon_sym_LPAREN2, - ACTIONS(5242), 1, - anon_sym_LBRACK, - ACTIONS(5246), 1, - anon_sym_DOT, - ACTIONS(5248), 1, - anon_sym_DASH_GT, - ACTIONS(5256), 1, - anon_sym_AMP_AMP, - ACTIONS(5258), 1, - anon_sym_PIPE, - ACTIONS(5260), 1, anon_sym_CARET, - ACTIONS(5262), 1, - anon_sym_AMP, - ACTIONS(5270), 1, - anon_sym_LT_EQ_GT, - STATE(3005), 1, - sym_argument_list, - ACTIONS(5026), 2, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(5244), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5250), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5264), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5268), 2, + anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5252), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5266), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(5024), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT2, - [73650] = 3, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [96421] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4478), 12, + ACTIONS(3424), 1, + anon_sym_COLON_COLON, + STATE(3279), 1, + sym_template_argument_list, + ACTIONS(4159), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym_const, + anon_sym_COLON, anon_sym_DOT, - ACTIONS(4476), 29, + ACTIONS(4157), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -268122,281 +300853,216 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_GT2, - anon_sym_requires, - [73699] = 24, + [96477] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1483), 1, - anon_sym_enum, - ACTIONS(1485), 1, - anon_sym_class, - ACTIONS(1487), 1, - anon_sym_struct, - ACTIONS(1489), 1, - anon_sym_union, - ACTIONS(1491), 1, + ACTIONS(1469), 1, + anon_sym_LBRACE, + ACTIONS(5120), 1, sym_auto, - ACTIONS(1493), 1, + ACTIONS(5122), 1, anon_sym_decltype, - ACTIONS(1495), 1, - anon_sym_typename, - ACTIONS(5196), 1, - sym_identifier, - ACTIONS(5200), 1, - anon_sym_COLON_COLON, - ACTIONS(5202), 1, - sym_primitive_type, - STATE(2075), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2323), 1, - sym_template_type, - STATE(2485), 1, - sym_qualified_type_identifier, - STATE(2494), 1, - sym_decltype_auto, - STATE(3825), 1, - sym__type_specifier, - STATE(5137), 1, - sym__scope_resolution, - STATE(6078), 1, - sym_type_descriptor, - STATE(6663), 1, - sym_dependent_type_identifier, - STATE(3031), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1479), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(2346), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [73790] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4496), 1, + ACTIONS(5470), 1, anon_sym_LPAREN2, - ACTIONS(5242), 1, + ACTIONS(5472), 1, anon_sym_LBRACK, - ACTIONS(5246), 1, - anon_sym_DOT, - ACTIONS(5248), 1, - anon_sym_DASH_GT, - STATE(3005), 1, + STATE(2722), 1, + sym_decltype_auto, + STATE(3390), 1, + sym_new_declarator, + STATE(3450), 2, sym_argument_list, - ACTIONS(5244), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5026), 16, + sym_initializer_list, + ACTIONS(4057), 9, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(5024), 18, + anon_sym_DOT, + ACTIONS(4053), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_GT2, - [73851] = 10, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [96545] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4496), 1, + ACTIONS(3424), 1, + anon_sym_COLON_COLON, + ACTIONS(5474), 1, + anon_sym_LT, + STATE(3287), 1, + sym_template_argument_list, + ACTIONS(4095), 18, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + sym_true, + sym_false, + sym_null, + sym_identifier, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + sym_nullptr, + ACTIONS(3426), 23, + sym_raw_string_literal, anon_sym_LPAREN2, - ACTIONS(5242), 1, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(5246), 1, - anon_sym_DOT, - ACTIONS(5248), 1, - anon_sym_DASH_GT, - STATE(3005), 1, - sym_argument_list, - ACTIONS(5244), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5252), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5026), 13, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [96603] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1469), 1, + anon_sym_LBRACE, + ACTIONS(5120), 1, + sym_auto, + ACTIONS(5122), 1, + anon_sym_decltype, + ACTIONS(5470), 1, + anon_sym_LPAREN2, + ACTIONS(5472), 1, + anon_sym_LBRACK, + STATE(2722), 1, + sym_decltype_auto, + STATE(3381), 1, + sym_new_declarator, + STATE(3503), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4093), 9, anon_sym_DASH, anon_sym_PLUS, + anon_sym_SLASH, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(5024), 18, + anon_sym_DOT, + ACTIONS(4091), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_GT2, - [73914] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4496), 1, - anon_sym_LPAREN2, - ACTIONS(5242), 1, - anon_sym_LBRACK, - ACTIONS(5246), 1, - anon_sym_DOT, - ACTIONS(5248), 1, - anon_sym_DASH_GT, - ACTIONS(5254), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5256), 1, - anon_sym_AMP_AMP, - ACTIONS(5258), 1, - anon_sym_PIPE, - ACTIONS(5260), 1, - anon_sym_CARET, - ACTIONS(5262), 1, - anon_sym_AMP, - ACTIONS(5270), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5327), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5329), 1, - anon_sym_QMARK, - STATE(3005), 1, - sym_argument_list, - ACTIONS(5010), 2, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(5244), 2, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5250), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5264), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5268), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5252), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5266), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(5008), 11, - anon_sym_COMMA, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT2, - [74001] = 3, + anon_sym_DASH_GT, + [96671] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4482), 12, + ACTIONS(3424), 1, + anon_sym_COLON_COLON, + ACTIONS(5417), 1, + anon_sym_LT, + STATE(2412), 1, + sym_template_argument_list, + ACTIONS(3407), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_const, + anon_sym_COLON, anon_sym_DOT, - ACTIONS(4480), 29, + ACTIONS(3412), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -268405,29 +301071,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_GT2, - anon_sym_requires, - [74050] = 3, + [96729] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4651), 12, + ACTIONS(5476), 1, + sym_literal_suffix, + ACTIONS(5478), 1, + sym_raw_string_literal, + STATE(3242), 2, + sym_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(2695), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(3414), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -268438,9 +301119,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_GT_GT, - anon_sym_const, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(4649), 29, + ACTIONS(3419), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -268452,74 +301138,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_LT, - anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, anon_sym_GT2, - anon_sym_requires, - [74099] = 24, + [96789] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1485), 1, - anon_sym_class, - ACTIONS(1487), 1, - anon_sym_struct, - ACTIONS(1489), 1, - anon_sym_union, - ACTIONS(1491), 1, + ACTIONS(4251), 1, + anon_sym___attribute__, + ACTIONS(4255), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4257), 1, + anon_sym___declspec, + ACTIONS(4261), 1, + anon_sym_virtual, + ACTIONS(5484), 1, sym_auto, - ACTIONS(1493), 1, + ACTIONS(5486), 1, anon_sym_decltype, - ACTIONS(5196), 1, - sym_identifier, - ACTIONS(5200), 1, - anon_sym_COLON_COLON, - ACTIONS(5202), 1, - sym_primitive_type, - ACTIONS(5331), 1, - anon_sym_enum, - ACTIONS(5333), 1, - anon_sym_typename, - STATE(2075), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2323), 1, - sym_template_type, - STATE(2485), 1, - sym_qualified_type_identifier, - STATE(2494), 1, + STATE(3441), 1, sym_decltype_auto, - STATE(4049), 1, - sym__type_specifier, - STATE(4802), 1, - sym_type_descriptor, - STATE(5137), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - STATE(3012), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1479), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 8, + ACTIONS(4249), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(5480), 6, + anon_sym_AMP, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + anon_sym_template, + anon_sym_operator, + ACTIONS(4259), 8, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -268528,231 +301184,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(2346), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [74190] = 20, + STATE(3321), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(5482), 10, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_EQ, + anon_sym_GT2, + [96861] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4496), 1, + ACTIONS(1469), 1, + anon_sym_LBRACE, + ACTIONS(5120), 1, + sym_auto, + ACTIONS(5122), 1, + anon_sym_decltype, + ACTIONS(5470), 1, anon_sym_LPAREN2, - ACTIONS(5242), 1, + ACTIONS(5472), 1, anon_sym_LBRACK, - ACTIONS(5246), 1, - anon_sym_DOT, - ACTIONS(5248), 1, - anon_sym_DASH_GT, - ACTIONS(5254), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5256), 1, - anon_sym_AMP_AMP, - ACTIONS(5258), 1, - anon_sym_PIPE, - ACTIONS(5260), 1, - anon_sym_CARET, - ACTIONS(5262), 1, - anon_sym_AMP, - ACTIONS(5270), 1, - anon_sym_LT_EQ_GT, - STATE(3005), 1, + STATE(2722), 1, + sym_decltype_auto, + STATE(3371), 1, + sym_new_declarator, + STATE(3443), 2, sym_argument_list, - ACTIONS(5078), 2, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(5244), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5250), 2, + sym_initializer_list, + ACTIONS(4103), 9, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5264), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5268), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5252), 3, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5266), 4, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(5076), 13, + anon_sym_DOT, + ACTIONS(4101), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT2, - [74273] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1483), 1, - anon_sym_enum, - ACTIONS(1485), 1, - anon_sym_class, - ACTIONS(1487), 1, - anon_sym_struct, - ACTIONS(1489), 1, - anon_sym_union, - ACTIONS(1491), 1, - sym_auto, - ACTIONS(1493), 1, - anon_sym_decltype, - ACTIONS(1495), 1, - anon_sym_typename, - ACTIONS(5196), 1, - sym_identifier, - ACTIONS(5200), 1, - anon_sym_COLON_COLON, - ACTIONS(5202), 1, - sym_primitive_type, - STATE(2075), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2323), 1, - sym_template_type, - STATE(2485), 1, - sym_qualified_type_identifier, - STATE(2494), 1, - sym_decltype_auto, - STATE(3825), 1, - sym__type_specifier, - STATE(5137), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - STATE(6856), 1, - sym_type_descriptor, - STATE(3031), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1479), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(2346), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [74364] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(2545), 1, - anon_sym_enum, - ACTIONS(2547), 1, - anon_sym_class, - ACTIONS(2549), 1, - anon_sym_struct, - ACTIONS(2551), 1, - anon_sym_union, - ACTIONS(2565), 1, - sym_auto, - ACTIONS(2567), 1, - anon_sym_decltype, - ACTIONS(2569), 1, - anon_sym_typename, - ACTIONS(5335), 1, - sym_identifier, - ACTIONS(5337), 1, - anon_sym_COLON_COLON, - ACTIONS(5339), 1, - sym_primitive_type, - STATE(2182), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2841), 1, - sym_template_type, - STATE(2845), 1, - sym_qualified_type_identifier, - STATE(2878), 1, - sym_decltype_auto, - STATE(3924), 1, - sym__type_specifier, - STATE(4802), 1, - sym_type_descriptor, - STATE(5169), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - STATE(2979), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2541), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(2872), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [74455] = 3, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [96929] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4426), 12, + ACTIONS(2476), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym_const, anon_sym_DOT, - ACTIONS(4424), 29, + ACTIONS(2478), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -268761,50 +301286,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_else, + anon_sym_while, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, + anon_sym_catch, + anon_sym_requires, + [96981] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3424), 1, + anon_sym_COLON_COLON, + ACTIONS(5474), 1, + anon_sym_LT, + STATE(3287), 1, + sym_template_argument_list, + ACTIONS(3430), 18, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + sym_true, + sym_false, + sym_null, + sym_identifier, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, anon_sym_requires, - [74504] = 10, + sym_this, + sym_nullptr, + ACTIONS(3435), 23, + sym_raw_string_literal, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [97039] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3926), 1, + ACTIONS(4251), 1, anon_sym___attribute__, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3932), 1, + ACTIONS(4257), 1, anon_sym___declspec, - ACTIONS(3936), 1, + ACTIONS(4261), 1, anon_sym_virtual, - ACTIONS(3924), 5, + ACTIONS(5484), 1, + sym_auto, + ACTIONS(5486), 1, + anon_sym_decltype, + STATE(3441), 1, + sym_decltype_auto, + ACTIONS(4249), 5, anon_sym_extern, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - ACTIONS(5341), 6, + ACTIONS(5488), 6, anon_sym_AMP, anon_sym___based, anon_sym_LBRACK, sym_identifier, anon_sym_template, anon_sym_operator, - ACTIONS(3934), 8, + ACTIONS(4259), 8, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -268813,7 +301401,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(2850), 8, + STATE(3318), 8, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -268822,7 +301410,7 @@ static const uint16_t ts_small_parse_table[] = { sym_type_qualifier, sym_virtual_function_specifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(5343), 10, + ACTIONS(5490), 10, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -268833,36 +301421,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_EQ, anon_sym_GT2, - [74567] = 3, + [97111] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4494), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(4492), 29, + ACTIONS(4133), 14, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4135), 29, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -268870,65 +301458,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + anon_sym_COLON, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_GT2, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, anon_sym_requires, - [74616] = 24, + [97162] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1483), 1, - anon_sym_enum, - ACTIONS(1485), 1, - anon_sym_class, - ACTIONS(1487), 1, - anon_sym_struct, - ACTIONS(1489), 1, - anon_sym_union, - ACTIONS(1491), 1, - sym_auto, - ACTIONS(1493), 1, - anon_sym_decltype, - ACTIONS(1495), 1, - anon_sym_typename, - ACTIONS(5196), 1, - sym_identifier, - ACTIONS(5200), 1, + ACTIONS(3495), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym_COLON_COLON, - ACTIONS(5202), 1, - sym_primitive_type, - STATE(2075), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2323), 1, - sym_template_type, - STATE(2485), 1, - sym_qualified_type_identifier, - STATE(2494), 1, - sym_decltype_auto, - STATE(3825), 1, - sym__type_specifier, - STATE(5137), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - STATE(6867), 1, - sym_type_descriptor, - STATE(3031), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1479), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 8, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(3493), 29, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -268937,35 +301506,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(2346), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [74707] = 3, + anon_sym_COLON, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [97213] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4506), 12, + ACTIONS(1469), 1, + anon_sym_LBRACE, + ACTIONS(5120), 1, + sym_auto, + ACTIONS(5122), 1, + anon_sym_decltype, + ACTIONS(5472), 1, + anon_sym_LBRACK, + ACTIONS(5492), 1, + anon_sym_LPAREN2, + STATE(2722), 1, + sym_decltype_auto, + STATE(3517), 1, + sym_new_declarator, + STATE(3450), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4057), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym_const, anon_sym_DOT, - ACTIONS(4504), 29, + ACTIONS(4053), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -268973,45 +301557,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, + anon_sym_GT_GT, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - anon_sym_requires, - [74756] = 3, + [97280] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4430), 12, + ACTIONS(1469), 1, + anon_sym_LBRACE, + ACTIONS(5120), 1, + sym_auto, + ACTIONS(5122), 1, + anon_sym_decltype, + ACTIONS(5472), 1, + anon_sym_LBRACK, + ACTIONS(5492), 1, + anon_sym_LPAREN2, + STATE(2722), 1, + sym_decltype_auto, + STATE(3530), 1, + sym_new_declarator, + STATE(3503), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4093), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym_const, anon_sym_DOT, - ACTIONS(4428), 29, + ACTIONS(4091), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -269019,9 +301613,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [97347] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5494), 1, anon_sym_LBRACE, + ACTIONS(5496), 1, + anon_sym_COLON, + STATE(3459), 1, + sym_field_declaration_list, + STATE(5812), 1, + sym_virtual_specifier, + STATE(6536), 1, + sym_base_class_clause, + ACTIONS(5498), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4029), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4031), 24, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -269029,98 +301677,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_GT2, - anon_sym_requires, - [74805] = 20, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [97410] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4496), 1, + ACTIONS(5494), 1, + anon_sym_LBRACE, + ACTIONS(5496), 1, + anon_sym_COLON, + STATE(3428), 1, + sym_field_declaration_list, + STATE(5798), 1, + sym_virtual_specifier, + STATE(6618), 1, + sym_base_class_clause, + ACTIONS(5498), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4045), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(5242), 1, - anon_sym_LBRACK, - ACTIONS(5246), 1, - anon_sym_DOT, - ACTIONS(5248), 1, - anon_sym_DASH_GT, - ACTIONS(5254), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5256), 1, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(5258), 1, - anon_sym_PIPE, - ACTIONS(5260), 1, - anon_sym_CARET, - ACTIONS(5262), 1, - anon_sym_AMP, - ACTIONS(5270), 1, - anon_sym_LT_EQ_GT, - STATE(3005), 1, - sym_argument_list, - ACTIONS(4974), 2, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(5244), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5250), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5264), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5268), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5252), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5266), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4972), 13, + anon_sym_GT2, + ACTIONS(4047), 24, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [97473] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4125), 1, + anon_sym_COLON_COLON, + ACTIONS(4121), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_GT2, - [74888] = 3, + ACTIONS(4123), 29, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [97526] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4588), 12, + ACTIONS(1469), 1, + anon_sym_LBRACE, + ACTIONS(5120), 1, + sym_auto, + ACTIONS(5122), 1, + anon_sym_decltype, + ACTIONS(5472), 1, + anon_sym_LBRACK, + ACTIONS(5492), 1, + anon_sym_LPAREN2, + STATE(2722), 1, + sym_decltype_auto, + STATE(3526), 1, + sym_new_declarator, + STATE(3430), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4075), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym_const, anon_sym_DOT, - ACTIONS(4586), 29, + ACTIONS(4073), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -269128,9 +301826,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [97593] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5494), 1, anon_sym_LBRACE, + ACTIONS(5496), 1, + anon_sym_COLON, + STATE(3429), 1, + sym_field_declaration_list, + STATE(5582), 1, + sym_virtual_specifier, + STATE(6608), 1, + sym_base_class_clause, + ACTIONS(5498), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4049), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4051), 24, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -269138,65 +301890,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_GT2, - anon_sym_requires, - [74937] = 24, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [97656] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1483), 1, - anon_sym_enum, - ACTIONS(1485), 1, - anon_sym_class, - ACTIONS(1487), 1, - anon_sym_struct, - ACTIONS(1489), 1, - anon_sym_union, - ACTIONS(1491), 1, - sym_auto, - ACTIONS(1493), 1, - anon_sym_decltype, - ACTIONS(1495), 1, - anon_sym_typename, - ACTIONS(5196), 1, - sym_identifier, - ACTIONS(5200), 1, + ACTIONS(3469), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym_COLON_COLON, - ACTIONS(5202), 1, - sym_primitive_type, - STATE(2075), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2323), 1, - sym_template_type, - STATE(2485), 1, - sym_qualified_type_identifier, - STATE(2494), 1, - sym_decltype_auto, - STATE(3825), 1, - sym__type_specifier, - STATE(5137), 1, - sym__scope_resolution, - STATE(6458), 1, - sym_type_descriptor, - STATE(6663), 1, - sym_dependent_type_identifier, - STATE(3031), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1479), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 8, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(3467), 29, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -269205,65 +301933,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(2346), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [75028] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1531), 1, - sym_primitive_type, - ACTIONS(1541), 1, + anon_sym_COLON, + sym_identifier, sym_auto, - ACTIONS(1543), 1, anon_sym_decltype, - ACTIONS(3001), 1, - sym_identifier, - ACTIONS(5345), 1, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [97707] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3503), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym_COLON_COLON, - ACTIONS(5349), 1, - anon_sym_enum, - ACTIONS(5351), 1, - anon_sym_class, - ACTIONS(5353), 1, - anon_sym_struct, - ACTIONS(5355), 1, - anon_sym_union, - ACTIONS(5357), 1, - anon_sym_typename, - STATE(2976), 1, - sym_template_type, - STATE(3366), 1, - sym_decltype_auto, - STATE(3400), 1, - sym_qualified_type_identifier, - STATE(3690), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3983), 1, - sym__type_specifier, - STATE(4798), 1, - sym_type_descriptor, - STATE(5088), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - STATE(3103), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(5347), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 8, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(3501), 29, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -269272,35 +301981,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(3371), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [75119] = 3, + anon_sym_COLON, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [97758] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4440), 12, + ACTIONS(1469), 1, + anon_sym_LBRACE, + ACTIONS(5120), 1, + sym_auto, + ACTIONS(5122), 1, + anon_sym_decltype, + ACTIONS(5472), 1, + anon_sym_LBRACK, + ACTIONS(5492), 1, + anon_sym_LPAREN2, + STATE(2722), 1, + sym_decltype_auto, + STATE(3508), 1, + sym_new_declarator, + STATE(3443), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4103), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym_const, anon_sym_DOT, - ACTIONS(4438), 29, + ACTIONS(4101), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -269308,9 +302032,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [97825] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5494), 1, anon_sym_LBRACE, + ACTIONS(5496), 1, + anon_sym_COLON, + STATE(3510), 1, + sym_field_declaration_list, + STATE(5726), 1, + sym_virtual_specifier, + STATE(6628), 1, + sym_base_class_clause, + ACTIONS(5498), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4041), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4043), 24, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -269318,45 +302096,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_GT2, - anon_sym_requires, - [75168] = 3, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [97888] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4581), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(4579), 29, + ACTIONS(5494), 1, + anon_sym_LBRACE, + ACTIONS(5496), 1, + anon_sym_COLON, + STATE(3470), 1, + sym_field_declaration_list, + STATE(5653), 1, + sym_virtual_specifier, + STATE(6525), 1, + sym_base_class_clause, + ACTIONS(5498), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4037), 12, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4039), 24, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -269364,45 +302150,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_GT2, - anon_sym_requires, - [75217] = 3, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [97951] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4458), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(3424), 1, + anon_sym_COLON_COLON, + ACTIONS(5500), 1, anon_sym_LT, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(4456), 29, + STATE(3279), 1, + sym_template_argument_list, + ACTIONS(3426), 11, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + ACTIONS(4095), 29, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -269410,65 +302196,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + anon_sym_COLON, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_GT2, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, anon_sym_requires, - [75266] = 24, + [98008] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(105), 1, - sym_auto, - ACTIONS(107), 1, - anon_sym_decltype, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(2809), 1, - sym_primitive_type, - ACTIONS(3365), 1, + ACTIONS(5502), 1, sym_identifier, - ACTIONS(3377), 1, - anon_sym_COLON_COLON, - ACTIONS(5359), 1, - anon_sym_enum, - ACTIONS(5361), 1, - anon_sym_class, - ACTIONS(5363), 1, - anon_sym_struct, - ACTIONS(5365), 1, - anon_sym_union, - ACTIONS(5367), 1, - anon_sym_typename, - STATE(2976), 1, - sym_template_type, - STATE(3123), 1, - sym_decltype_auto, - STATE(3184), 1, + ACTIONS(5507), 1, + sym_primitive_type, + STATE(3216), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3198), 1, - sym_qualified_type_identifier, - STATE(3563), 1, - sym__type_specifier, - STATE(4798), 1, - sym_type_descriptor, - STATE(5144), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - STATE(2980), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(3009), 4, + ACTIONS(5505), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(57), 8, + ACTIONS(3964), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(3966), 23, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -269477,19 +302254,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(3139), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [75357] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [98067] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4554), 12, + ACTIONS(3424), 1, + anon_sym_COLON_COLON, + ACTIONS(5509), 1, + anon_sym_LT, + STATE(2897), 1, + sym_template_argument_list, + ACTIONS(3430), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -269498,11 +302277,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_GT_GT, - anon_sym_const, + anon_sym_COLON, anon_sym_DOT, - ACTIONS(4552), 29, + ACTIONS(3435), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -269516,52 +302294,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - anon_sym_requires, - [75406] = 3, + [98124] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4522), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(4520), 29, + ACTIONS(3489), 14, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(3487), 29, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -269569,92 +302347,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + anon_sym_COLON, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_GT2, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, anon_sym_requires, - [75455] = 4, + [98175] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5369), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(4874), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(4872), 22, + ACTIONS(3499), 14, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_GT2, - [75506] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4607), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(3497), 29, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, anon_sym_const, - anon_sym_DOT, - ACTIONS(4605), 29, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [98226] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3511), 14, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(3509), 29, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -269662,45 +302443,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + anon_sym_COLON, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_GT2, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, anon_sym_requires, - [75555] = 3, + [98277] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4550), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(4548), 29, + ACTIONS(4125), 1, + anon_sym_COLON_COLON, + ACTIONS(4137), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4139), 29, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -269708,45 +302492,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + anon_sym_COLON, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_GT2, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, anon_sym_requires, - [75604] = 3, + [98330] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4490), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(3424), 1, + anon_sym_COLON_COLON, + ACTIONS(5500), 1, anon_sym_LT, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(4488), 29, + STATE(3279), 1, + sym_template_argument_list, + ACTIONS(3435), 11, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + ACTIONS(3430), 29, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -269754,45 +302543,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + anon_sym_COLON, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_GT2, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, anon_sym_requires, - [75653] = 3, + [98387] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4577), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(4575), 29, + ACTIONS(3507), 14, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(3505), 29, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -269800,45 +302591,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + anon_sym_COLON, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_GT2, - anon_sym_requires, - [75702] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4398), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(4396), 29, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [98438] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3478), 14, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(3473), 29, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -269846,65 +302639,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + anon_sym_COLON, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_GT2, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, anon_sym_requires, - [75751] = 24, + [98489] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1483), 1, - anon_sym_enum, - ACTIONS(1485), 1, - anon_sym_class, - ACTIONS(1487), 1, - anon_sym_struct, - ACTIONS(1489), 1, - anon_sym_union, - ACTIONS(1491), 1, - sym_auto, - ACTIONS(1493), 1, - anon_sym_decltype, - ACTIONS(1495), 1, - anon_sym_typename, - ACTIONS(5196), 1, - sym_identifier, - ACTIONS(5200), 1, + ACTIONS(5494), 1, + anon_sym_LBRACE, + ACTIONS(5496), 1, + anon_sym_COLON, + STATE(3464), 1, + sym_field_declaration_list, + STATE(5767), 1, + sym_virtual_specifier, + STATE(6534), 1, + sym_base_class_clause, + ACTIONS(5498), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4033), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym_COLON_COLON, - ACTIONS(5202), 1, - sym_primitive_type, - STATE(2075), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2323), 1, - sym_template_type, - STATE(2485), 1, - sym_qualified_type_identifier, - STATE(2494), 1, - sym_decltype_auto, - STATE(3825), 1, - sym__type_specifier, - STATE(5137), 1, - sym__scope_resolution, - STATE(6612), 1, - sym_type_descriptor, - STATE(6663), 1, - sym_dependent_type_identifier, - STATE(3031), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1479), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 8, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4035), 24, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -269913,65 +302698,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(2346), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [75842] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1531), 1, - sym_primitive_type, - ACTIONS(1533), 1, - anon_sym_enum, - ACTIONS(1535), 1, - anon_sym_class, - ACTIONS(1537), 1, - anon_sym_struct, - ACTIONS(1539), 1, - anon_sym_union, - ACTIONS(1541), 1, + sym_identifier, sym_auto, - ACTIONS(1543), 1, anon_sym_decltype, - ACTIONS(3365), 1, - sym_identifier, - ACTIONS(4060), 1, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [98552] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5494), 1, + anon_sym_LBRACE, + ACTIONS(5496), 1, + anon_sym_COLON, + STATE(3491), 1, + sym_field_declaration_list, + STATE(5645), 1, + sym_virtual_specifier, + STATE(6455), 1, + sym_base_class_clause, + ACTIONS(5498), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4008), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym_COLON_COLON, - ACTIONS(5371), 1, - anon_sym_typename, - STATE(2976), 1, - sym_template_type, - STATE(3366), 1, - sym_decltype_auto, - STATE(3400), 1, - sym_qualified_type_identifier, - STATE(3424), 1, - sym__type_specifier, - STATE(3690), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4798), 1, - sym_type_descriptor, - STATE(5072), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - STATE(3093), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(5347), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 8, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4010), 24, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -269980,45 +302752,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(3371), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [75933] = 3, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [98615] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4562), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(4560), 29, + ACTIONS(4137), 14, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4139), 29, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -270026,65 +302795,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + anon_sym_COLON, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_GT2, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, anon_sym_requires, - [75982] = 24, + [98666] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1483), 1, - anon_sym_enum, - ACTIONS(1485), 1, - anon_sym_class, - ACTIONS(1487), 1, - anon_sym_struct, - ACTIONS(1489), 1, - anon_sym_union, - ACTIONS(1491), 1, - sym_auto, - ACTIONS(1493), 1, - anon_sym_decltype, - ACTIONS(1495), 1, - anon_sym_typename, - ACTIONS(5196), 1, - sym_identifier, - ACTIONS(5200), 1, + ACTIONS(4125), 1, anon_sym_COLON_COLON, - ACTIONS(5202), 1, - sym_primitive_type, - STATE(2075), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2323), 1, - sym_template_type, - STATE(2485), 1, - sym_qualified_type_identifier, - STATE(2494), 1, - sym_decltype_auto, - STATE(3825), 1, - sym__type_specifier, - STATE(5137), 1, - sym__scope_resolution, - STATE(6617), 1, - sym_type_descriptor, - STATE(6663), 1, - sym_dependent_type_identifier, - STATE(3031), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1479), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 8, + ACTIONS(4137), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4139), 29, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -270093,19 +302844,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(2346), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [76073] = 3, + anon_sym_COLON, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [98719] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4542), 12, + ACTIONS(3424), 1, + anon_sym_COLON_COLON, + ACTIONS(5512), 1, + anon_sym_LT, + STATE(2897), 1, + sym_template_argument_list, + ACTIONS(4095), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -270114,11 +302873,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_GT_GT, - anon_sym_const, + anon_sym_COLON, anon_sym_DOT, - ACTIONS(4540), 29, + ACTIONS(3426), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -270132,72 +302890,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - anon_sym_requires, - [76122] = 24, + [98776] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1483), 1, - anon_sym_enum, - ACTIONS(1485), 1, - anon_sym_class, - ACTIONS(1487), 1, - anon_sym_struct, - ACTIONS(1489), 1, - anon_sym_union, - ACTIONS(1491), 1, - sym_auto, - ACTIONS(1493), 1, - anon_sym_decltype, - ACTIONS(1495), 1, - anon_sym_typename, - ACTIONS(5196), 1, - sym_identifier, - ACTIONS(5200), 1, + ACTIONS(5494), 1, + anon_sym_LBRACE, + ACTIONS(5496), 1, + anon_sym_COLON, + STATE(3487), 1, + sym_field_declaration_list, + STATE(5613), 1, + sym_virtual_specifier, + STATE(6472), 1, + sym_base_class_clause, + ACTIONS(5498), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4025), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym_COLON_COLON, - ACTIONS(5202), 1, - sym_primitive_type, - STATE(2075), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2323), 1, - sym_template_type, - STATE(2485), 1, - sym_qualified_type_identifier, - STATE(2494), 1, - sym_decltype_auto, - STATE(3825), 1, - sym__type_specifier, - STATE(5137), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - STATE(6896), 1, - sym_type_descriptor, - STATE(3031), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1479), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 8, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4027), 24, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -270206,45 +302954,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(2346), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [76213] = 3, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [98839] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4538), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(4536), 29, + ACTIONS(5494), 1, + anon_sym_LBRACE, + ACTIONS(5496), 1, + anon_sym_COLON, + STATE(3483), 1, + sym_field_declaration_list, + STATE(5585), 1, + sym_virtual_specifier, + STATE(6487), 1, + sym_base_class_clause, + ACTIONS(5498), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4018), 12, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4020), 24, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -270252,99 +303008,236 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_GT2, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [98902] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3473), 18, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + sym_true, + sym_false, + sym_null, + sym_identifier, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, anon_sym_requires, - [76262] = 11, + sym_this, + sym_nullptr, + ACTIONS(3478), 24, + sym_raw_string_literal, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [98952] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4496), 1, + ACTIONS(2551), 18, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + sym_true, + sym_false, + sym_null, + sym_identifier, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + sym_nullptr, + ACTIONS(2553), 24, + sym_raw_string_literal, anon_sym_LPAREN2, - ACTIONS(5242), 1, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(5246), 1, - anon_sym_DOT, - ACTIONS(5248), 1, - anon_sym_DASH_GT, - STATE(3005), 1, - sym_argument_list, - ACTIONS(5244), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5250), 2, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [99002] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4125), 1, + anon_sym_COLON_COLON, + ACTIONS(4139), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5252), 3, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + sym_true, + sym_false, + sym_null, + sym_identifier, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + sym_nullptr, + ACTIONS(4137), 23, + sym_raw_string_literal, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5026), 11, - anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(5024), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_GT2, - [76327] = 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [99054] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4514), 12, + ACTIONS(4125), 1, + anon_sym_COLON_COLON, + ACTIONS(4139), 18, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + sym_true, + sym_false, + sym_null, + sym_identifier, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + sym_nullptr, + ACTIONS(4137), 23, + sym_raw_string_literal, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [99106] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3424), 1, + anon_sym_COLON_COLON, + ACTIONS(5458), 1, anon_sym_LT, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(4512), 29, + STATE(3279), 1, + sym_template_argument_list, + ACTIONS(3412), 12, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(3407), 27, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -270352,19 +303245,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + anon_sym_COLON, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_GT2, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, anon_sym_requires, - [76376] = 3, + [99162] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4627), 12, + ACTIONS(3107), 1, + anon_sym_LBRACE, + ACTIONS(5396), 1, + sym_auto, + ACTIONS(5398), 1, + anon_sym_decltype, + ACTIONS(5514), 1, + anon_sym_LPAREN2, + ACTIONS(5516), 1, + anon_sym_LBRACK, + STATE(3146), 1, + sym_decltype_auto, + STATE(3576), 1, + sym_new_declarator, + STATE(3929), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4075), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -270375,12 +303285,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_GT_GT, - anon_sym_const, anon_sym_DOT, - ACTIONS(4625), 29, + ACTIONS(4073), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -270389,185 +303297,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_LT, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, anon_sym_GT2, - anon_sym_requires, - [76425] = 21, + [99228] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4496), 1, - anon_sym_LPAREN2, - ACTIONS(5242), 1, - anon_sym_LBRACK, - ACTIONS(5246), 1, - anon_sym_DOT, - ACTIONS(5248), 1, - anon_sym_DASH_GT, - ACTIONS(5254), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5256), 1, - anon_sym_AMP_AMP, - ACTIONS(5258), 1, - anon_sym_PIPE, - ACTIONS(5260), 1, - anon_sym_CARET, - ACTIONS(5262), 1, - anon_sym_AMP, - ACTIONS(5270), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5327), 1, - anon_sym_DOT_DOT_DOT, - STATE(3005), 1, - sym_argument_list, - ACTIONS(4998), 2, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(5244), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5250), 2, + ACTIONS(2607), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5264), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5268), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5252), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5266), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4996), 12, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT2, - [76510] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(105), 1, - sym_auto, - ACTIONS(107), 1, - anon_sym_decltype, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(2809), 1, sym_primitive_type, - ACTIONS(3365), 1, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + sym_true, + sym_false, + sym_null, sym_identifier, - ACTIONS(3377), 1, - anon_sym_COLON_COLON, - ACTIONS(5361), 1, - anon_sym_class, - ACTIONS(5363), 1, - anon_sym_struct, - ACTIONS(5365), 1, - anon_sym_union, - ACTIONS(5373), 1, - anon_sym_enum, - ACTIONS(5375), 1, anon_sym_typename, - STATE(2976), 1, - sym_template_type, - STATE(3123), 1, - sym_decltype_auto, - STATE(3184), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3198), 1, - sym_qualified_type_identifier, - STATE(3507), 1, - sym__type_specifier, - STATE(4798), 1, - sym_type_descriptor, - STATE(5144), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - STATE(3089), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(3009), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(3139), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [76601] = 3, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + sym_nullptr, + ACTIONS(2609), 24, + sym_raw_string_literal, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [99278] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4486), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(3424), 1, + anon_sym_COLON_COLON, + ACTIONS(5500), 1, anon_sym_LT, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(4484), 29, + STATE(3279), 1, + sym_template_argument_list, + ACTIONS(4157), 12, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4159), 27, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -270575,60 +303397,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + anon_sym_COLON, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_GT2, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, anon_sym_requires, - [76650] = 24, + [99334] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(1483), 1, + ACTIONS(1487), 1, anon_sym_enum, - ACTIONS(1485), 1, + ACTIONS(1489), 1, anon_sym_class, - ACTIONS(1487), 1, + ACTIONS(1491), 1, anon_sym_struct, - ACTIONS(1489), 1, + ACTIONS(1493), 1, anon_sym_union, - ACTIONS(1491), 1, + ACTIONS(1495), 1, sym_auto, - ACTIONS(1493), 1, + ACTIONS(1497), 1, anon_sym_decltype, - ACTIONS(1495), 1, + ACTIONS(1499), 1, anon_sym_typename, - ACTIONS(5196), 1, + ACTIONS(5518), 1, sym_identifier, - ACTIONS(5200), 1, + ACTIONS(5520), 1, + anon_sym_RPAREN, + ACTIONS(5522), 1, anon_sym_COLON_COLON, - ACTIONS(5202), 1, + ACTIONS(5524), 1, sym_primitive_type, - STATE(2075), 1, + STATE(1935), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2323), 1, + STATE(2664), 1, sym_template_type, - STATE(2485), 1, - sym_qualified_type_identifier, - STATE(2494), 1, + STATE(2731), 1, sym_decltype_auto, - STATE(3825), 1, + STATE(2847), 1, + sym_qualified_type_identifier, + STATE(4187), 1, sym__type_specifier, - STATE(5137), 1, + STATE(5397), 1, sym__scope_resolution, - STATE(6632), 1, + STATE(5950), 1, sym_type_descriptor, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - STATE(3031), 2, + STATE(3369), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(1479), 4, + ACTIONS(1483), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -270642,7 +303466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(2346), 8, + STATE(2780), 8, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -270651,102 +303475,74 @@ static const uint16_t ts_small_parse_table[] = { sym_decltype, sym_class_specifier, sym_dependent_type, - [76741] = 3, + [99428] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4611), 12, + ACTIONS(3509), 18, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(4609), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + sym_true, + sym_false, + sym_null, + sym_identifier, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, anon_sym_requires, - [76790] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4466), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(4464), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + sym_this, + sym_nullptr, + ACTIONS(3511), 24, + sym_raw_string_literal, anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - anon_sym_requires, - [76839] = 3, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [99478] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4462), 12, + ACTIONS(3107), 1, + anon_sym_LBRACE, + ACTIONS(5396), 1, + sym_auto, + ACTIONS(5398), 1, + anon_sym_decltype, + ACTIONS(5514), 1, + anon_sym_LPAREN2, + ACTIONS(5516), 1, + anon_sym_LBRACK, + STATE(3146), 1, + sym_decltype_auto, + STATE(3542), 1, + sym_new_declarator, + STATE(3887), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4093), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -270757,12 +303553,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_GT_GT, - anon_sym_const, anon_sym_DOT, - ACTIONS(4460), 29, + ACTIONS(4091), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -270771,74 +303565,211 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_LT, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, anon_sym_GT2, + [99544] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4139), 18, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + sym_true, + sym_false, + sym_null, + sym_identifier, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, anon_sym_requires, - [76888] = 3, + sym_this, + sym_nullptr, + ACTIONS(4137), 24, + sym_raw_string_literal, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [99594] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4454), 12, + ACTIONS(4135), 18, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + sym_true, + sym_false, + sym_null, + sym_identifier, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + sym_nullptr, + ACTIONS(4133), 24, + sym_raw_string_literal, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(4452), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [99644] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5526), 18, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + sym_true, + sym_false, + sym_null, + sym_identifier, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + sym_nullptr, + ACTIONS(5528), 24, + sym_raw_string_literal, anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [99694] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4125), 1, + anon_sym_COLON_COLON, + ACTIONS(4123), 18, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + sym_true, + sym_false, + sym_null, + sym_identifier, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, anon_sym_requires, - [76937] = 3, + sym_this, + sym_nullptr, + ACTIONS(4121), 23, + sym_raw_string_literal, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [99746] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4450), 12, + ACTIONS(4079), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -270849,9 +303780,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_GT_GT, - anon_sym_const, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(4448), 29, + sym_literal_suffix, + ACTIONS(4077), 24, + sym_raw_string_literal, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -270863,165 +303801,394 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_LT, - anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, anon_sym_GT2, + [99796] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3497), 18, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + sym_true, + sym_false, + sym_null, + sym_identifier, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, anon_sym_requires, - [76986] = 3, + sym_this, + sym_nullptr, + ACTIONS(3499), 24, + sym_raw_string_literal, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [99846] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3115), 6, + ACTIONS(3493), 18, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + sym_true, + sym_false, + sym_null, + sym_identifier, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + sym_nullptr, + ACTIONS(3495), 24, + sym_raw_string_literal, anon_sym_LPAREN2, + anon_sym_BANG, anon_sym_TILDE, anon_sym_STAR, - anon_sym_AMP_AMP, + anon_sym_AMP, + anon_sym_SEMI, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3113), 35, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [99896] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3467), 18, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + sym_true, + sym_false, + sym_null, + sym_identifier, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + sym_nullptr, + ACTIONS(3469), 24, + sym_raw_string_literal, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [99946] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5530), 18, + anon_sym_DASH, + anon_sym_PLUS, sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + sym_true, + sym_false, + sym_null, sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_explicit, anon_sym_typename, anon_sym_template, - anon_sym_operator, - [77035] = 7, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + sym_nullptr, + ACTIONS(5532), 24, + sym_raw_string_literal, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [99996] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3811), 1, - anon_sym_const, - ACTIONS(3820), 1, + ACTIONS(5534), 18, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + sym_true, + sym_false, + sym_null, + sym_identifier, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + sym_nullptr, + ACTIONS(5536), 24, + sym_raw_string_literal, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP, - ACTIONS(3813), 7, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [100046] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3501), 18, + anon_sym_DASH, + anon_sym_PLUS, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + sym_true, + sym_false, + sym_null, + sym_identifier, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + sym_nullptr, + ACTIONS(3503), 24, + sym_raw_string_literal, anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_AMP_AMP, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_GT2, - ACTIONS(3818), 10, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [100096] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3505), 18, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(3816), 11, + sym_primitive_type, + anon_sym_not, + anon_sym_compl, + anon_sym_sizeof, + sym_true, + sym_false, + sym_null, + sym_identifier, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + sym_nullptr, + ACTIONS(3507), 24, + sym_raw_string_literal, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_LBRACE, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - ACTIONS(3823), 11, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [77092] = 24, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [100146] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(1483), 1, + ACTIONS(1487), 1, anon_sym_enum, - ACTIONS(1485), 1, + ACTIONS(1489), 1, anon_sym_class, - ACTIONS(1487), 1, + ACTIONS(1491), 1, anon_sym_struct, - ACTIONS(1489), 1, + ACTIONS(1493), 1, anon_sym_union, - ACTIONS(1491), 1, + ACTIONS(1495), 1, sym_auto, - ACTIONS(1493), 1, + ACTIONS(1497), 1, anon_sym_decltype, - ACTIONS(1495), 1, + ACTIONS(1499), 1, anon_sym_typename, - ACTIONS(5196), 1, + ACTIONS(5518), 1, sym_identifier, - ACTIONS(5200), 1, + ACTIONS(5522), 1, anon_sym_COLON_COLON, - ACTIONS(5202), 1, + ACTIONS(5524), 1, sym_primitive_type, - STATE(2075), 1, + ACTIONS(5538), 1, + anon_sym_RPAREN, + STATE(1935), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2323), 1, + STATE(2664), 1, sym_template_type, - STATE(2485), 1, - sym_qualified_type_identifier, - STATE(2494), 1, + STATE(2731), 1, sym_decltype_auto, - STATE(3825), 1, + STATE(2847), 1, + sym_qualified_type_identifier, + STATE(4187), 1, sym__type_specifier, - STATE(4802), 1, - sym_type_descriptor, - STATE(5137), 1, + STATE(5397), 1, sym__scope_resolution, - STATE(6663), 1, + STATE(6019), 1, + sym_type_descriptor, + STATE(7236), 1, sym_dependent_type_identifier, - STATE(3031), 2, + STATE(3369), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(1479), 4, + ACTIONS(1483), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -271035,7 +304202,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(2346), 8, + STATE(2780), 8, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -271044,10 +304211,27 @@ static const uint16_t ts_small_parse_table[] = { sym_decltype, sym_class_specifier, sym_dependent_type, - [77183] = 3, + [100240] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4619), 12, + ACTIONS(3107), 1, + anon_sym_LBRACE, + ACTIONS(5396), 1, + sym_auto, + ACTIONS(5398), 1, + anon_sym_decltype, + ACTIONS(5514), 1, + anon_sym_LPAREN2, + ACTIONS(5516), 1, + anon_sym_LBRACK, + STATE(3146), 1, + sym_decltype_auto, + STATE(3539), 1, + sym_new_declarator, + STATE(3837), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4057), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -271058,12 +304242,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_GT_GT, - anon_sym_const, anon_sym_DOT, - ACTIONS(4617), 29, + ACTIONS(4053), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -271072,96 +304254,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_LT, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, anon_sym_GT2, - anon_sym_requires, - [77232] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(105), 1, - sym_auto, - ACTIONS(107), 1, - anon_sym_decltype, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(2809), 1, - sym_primitive_type, - ACTIONS(3001), 1, - sym_identifier, - ACTIONS(3007), 1, - anon_sym_COLON_COLON, - ACTIONS(5377), 1, - anon_sym_enum, - ACTIONS(5379), 1, - anon_sym_class, - ACTIONS(5381), 1, - anon_sym_struct, - ACTIONS(5383), 1, - anon_sym_union, - ACTIONS(5385), 1, - anon_sym_typename, - STATE(2737), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2976), 1, - sym_template_type, - STATE(3123), 1, - sym_decltype_auto, - STATE(3198), 1, - sym_qualified_type_identifier, - STATE(4634), 1, - sym__type_specifier, - STATE(5131), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - STATE(4110), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(3139), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [77320] = 3, + [100306] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2495), 16, + ACTIONS(5540), 18, anon_sym_DASH, anon_sym_PLUS, sym_primitive_type, + anon_sym_not, + anon_sym_compl, anon_sym_sizeof, sym_true, sym_false, @@ -271175,7 +304288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_requires, sym_this, sym_nullptr, - ACTIONS(2497), 24, + ACTIONS(5542), 24, sym_raw_string_literal, anon_sym_LPAREN2, anon_sym_BANG, @@ -271200,170 +304313,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [77368] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4874), 17, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(4872), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [77416] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3926), 1, - anon_sym___attribute__, - ACTIONS(3930), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3932), 1, - anon_sym___declspec, - ACTIONS(3936), 1, - anon_sym_virtual, - ACTIONS(4984), 1, - sym_auto, - ACTIONS(4986), 1, - anon_sym_decltype, - ACTIONS(5387), 1, - anon_sym_SEMI, - STATE(3142), 1, - sym_decltype_auto, - ACTIONS(3924), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(5042), 5, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - ACTIONS(5040), 6, - anon_sym_AMP, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - anon_sym_template, - anon_sym_operator, - ACTIONS(3934), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(2922), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual_function_specifier, - aux_sym__declaration_specifiers_repeat1, - [77486] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3926), 1, - anon_sym___attribute__, - ACTIONS(3930), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3932), 1, - anon_sym___declspec, - ACTIONS(3936), 1, - anon_sym_virtual, - ACTIONS(4984), 1, - sym_auto, - ACTIONS(4986), 1, - anon_sym_decltype, - ACTIONS(5389), 1, - anon_sym_SEMI, - STATE(3142), 1, - sym_decltype_auto, - ACTIONS(3924), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(5042), 5, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - ACTIONS(5040), 6, - anon_sym_AMP, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - anon_sym_template, - anon_sym_operator, - ACTIONS(3934), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(2922), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual_function_specifier, - aux_sym__declaration_specifiers_repeat1, - [77556] = 3, + [100356] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5391), 16, + ACTIONS(5544), 18, anon_sym_DASH, anon_sym_PLUS, sym_primitive_type, + anon_sym_not, + anon_sym_compl, anon_sym_sizeof, sym_true, sym_false, @@ -271377,7 +304335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_requires, sym_this, sym_nullptr, - ACTIONS(5393), 24, + ACTIONS(5546), 24, sym_raw_string_literal, anon_sym_LPAREN2, anon_sym_BANG, @@ -271402,58 +304360,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [77604] = 3, + [100406] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3870), 17, + ACTIONS(4089), 18, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(3872), 23, + sym_literal_suffix, + ACTIONS(4087), 24, + sym_raw_string_literal, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, anon_sym_GT2, - [77652] = 3, + [100456] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3797), 16, + ACTIONS(3487), 18, anon_sym_DASH, anon_sym_PLUS, sym_primitive_type, + anon_sym_not, + anon_sym_compl, anon_sym_sizeof, sym_true, sym_false, @@ -271467,7 +304429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_requires, sym_this, sym_nullptr, - ACTIONS(3799), 24, + ACTIONS(3489), 24, sym_raw_string_literal, anon_sym_LPAREN2, anon_sym_BANG, @@ -271492,90 +304454,298 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [77700] = 3, + [100506] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3793), 16, + ACTIONS(3107), 1, + anon_sym_LBRACE, + ACTIONS(5396), 1, + sym_auto, + ACTIONS(5398), 1, + anon_sym_decltype, + ACTIONS(5514), 1, + anon_sym_LPAREN2, + ACTIONS(5516), 1, + anon_sym_LBRACK, + STATE(3146), 1, + sym_decltype_auto, + STATE(3580), 1, + sym_new_declarator, + STATE(3839), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4103), 11, anon_sym_DASH, anon_sym_PLUS, - sym_primitive_type, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4101), 22, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [100572] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4213), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4215), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_requires, + [100621] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4251), 1, + anon_sym___attribute__, + ACTIONS(4255), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4257), 1, + anon_sym___declspec, + ACTIONS(4261), 1, + anon_sym_virtual, + ACTIONS(4249), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(5548), 6, + anon_sym_AMP, + anon_sym___based, + anon_sym_LBRACK, sym_identifier, - anon_sym_typename, anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - sym_nullptr, - ACTIONS(3795), 24, - sym_raw_string_literal, + anon_sym_operator, + ACTIONS(4259), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3335), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(5550), 10, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_BANG, anon_sym_TILDE, anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_EQ, + anon_sym_GT2, + [100684] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1489), 1, + anon_sym_class, + ACTIONS(1491), 1, + anon_sym_struct, + ACTIONS(1493), 1, + anon_sym_union, + ACTIONS(1495), 1, + sym_auto, + ACTIONS(1497), 1, + anon_sym_decltype, + ACTIONS(5518), 1, + sym_identifier, + ACTIONS(5522), 1, + anon_sym_COLON_COLON, + ACTIONS(5524), 1, + sym_primitive_type, + ACTIONS(5552), 1, + anon_sym_enum, + ACTIONS(5554), 1, + anon_sym_typename, + STATE(1935), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2664), 1, + sym_template_type, + STATE(2731), 1, + sym_decltype_auto, + STATE(2847), 1, + sym_qualified_type_identifier, + STATE(4292), 1, + sym__type_specifier, + STATE(5147), 1, + sym_type_descriptor, + STATE(5397), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + STATE(3368), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1483), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(2780), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [100775] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4221), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4223), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [77748] = 14, + anon_sym_DASH_GT, + anon_sym_requires, + [100824] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3926), 1, + ACTIONS(4251), 1, anon_sym___attribute__, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3932), 1, + ACTIONS(4257), 1, anon_sym___declspec, - ACTIONS(3936), 1, + ACTIONS(4261), 1, anon_sym_virtual, - ACTIONS(4984), 1, - sym_auto, - ACTIONS(4986), 1, - anon_sym_decltype, - ACTIONS(5395), 1, - anon_sym_SEMI, - STATE(3142), 1, - sym_decltype_auto, - ACTIONS(3924), 5, + ACTIONS(4249), 5, anon_sym_extern, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - ACTIONS(5042), 5, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - ACTIONS(5040), 6, + ACTIONS(5556), 6, anon_sym_AMP, anon_sym___based, anon_sym_LBRACK, sym_identifier, anon_sym_template, anon_sym_operator, - ACTIONS(3934), 8, + ACTIONS(4259), 8, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -271584,7 +304754,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(2922), 8, + STATE(3335), 8, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -271593,12 +304763,7 @@ static const uint16_t ts_small_parse_table[] = { sym_type_qualifier, sym_virtual_function_specifier, aux_sym__declaration_specifiers_repeat1, - [77818] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4295), 1, - anon_sym_COLON_COLON, - ACTIONS(4368), 12, + ACTIONS(5558), 10, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -271606,134 +304771,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, + anon_sym_COLON_COLON, anon_sym_EQ, anon_sym_GT2, - ACTIONS(4370), 27, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [77868] = 5, + [100887] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4143), 2, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(4145), 9, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(3716), 14, + ACTIONS(4221), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4223), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - anon_sym_GT2, - ACTIONS(3724), 15, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - [77920] = 23, + anon_sym_requires, + [100936] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(105), 1, - sym_auto, - ACTIONS(107), 1, - anon_sym_decltype, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(2809), 1, - sym_primitive_type, - ACTIONS(3001), 1, - sym_identifier, - ACTIONS(3007), 1, + ACTIONS(5408), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_COLON_COLON, - ACTIONS(5377), 1, - anon_sym_enum, - ACTIONS(5379), 1, - anon_sym_class, - ACTIONS(5381), 1, - anon_sym_struct, - ACTIONS(5383), 1, - anon_sym_union, - ACTIONS(5385), 1, - anon_sym_typename, - STATE(2737), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2976), 1, - sym_template_type, - STATE(3123), 1, - sym_decltype_auto, - STATE(3198), 1, - sym_qualified_type_identifier, - STATE(4631), 1, - sym__type_specifier, - STATE(5131), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - STATE(4110), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 8, + anon_sym_LBRACK_LBRACK, + ACTIONS(5406), 35, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -271742,123 +304849,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(3139), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [78008] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(2545), 1, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, anon_sym_enum, - ACTIONS(2547), 1, anon_sym_class, - ACTIONS(2549), 1, anon_sym_struct, - ACTIONS(2551), 1, anon_sym_union, - ACTIONS(2565), 1, + sym_identifier, sym_auto, - ACTIONS(2567), 1, anon_sym_decltype, - ACTIONS(2569), 1, + anon_sym_virtual, + anon_sym_explicit, anon_sym_typename, - ACTIONS(5335), 1, - sym_identifier, - ACTIONS(5337), 1, - anon_sym_COLON_COLON, - ACTIONS(5339), 1, - sym_primitive_type, - STATE(2182), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2841), 1, - sym_template_type, - STATE(2845), 1, - sym_qualified_type_identifier, - STATE(2878), 1, - sym_decltype_auto, - STATE(3860), 1, - sym__type_specifier, - STATE(5169), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - STATE(4110), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2541), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(2872), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [78096] = 23, + anon_sym_template, + anon_sym_operator, + [100985] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(105), 1, - sym_auto, - ACTIONS(107), 1, - anon_sym_decltype, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(2809), 1, - sym_primitive_type, - ACTIONS(3365), 1, - sym_identifier, - ACTIONS(3377), 1, - anon_sym_COLON_COLON, - ACTIONS(5359), 1, + ACTIONS(1487), 1, anon_sym_enum, - ACTIONS(5361), 1, + ACTIONS(1489), 1, anon_sym_class, - ACTIONS(5363), 1, + ACTIONS(1491), 1, anon_sym_struct, - ACTIONS(5365), 1, + ACTIONS(1493), 1, anon_sym_union, - ACTIONS(5367), 1, + ACTIONS(1495), 1, + sym_auto, + ACTIONS(1497), 1, + anon_sym_decltype, + ACTIONS(1499), 1, anon_sym_typename, - STATE(2976), 1, + ACTIONS(5518), 1, + sym_identifier, + ACTIONS(5522), 1, + anon_sym_COLON_COLON, + ACTIONS(5524), 1, + sym_primitive_type, + STATE(1935), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2664), 1, sym_template_type, - STATE(3123), 1, + STATE(2731), 1, sym_decltype_auto, - STATE(3184), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3198), 1, + STATE(2847), 1, sym_qualified_type_identifier, - STATE(3560), 1, + STATE(4187), 1, sym__type_specifier, - STATE(5144), 1, + STATE(5397), 1, sym__scope_resolution, - STATE(6663), 1, + STATE(7093), 1, + sym_type_descriptor, + STATE(7236), 1, sym_dependent_type_identifier, - STATE(4110), 2, + STATE(3369), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(3009), 4, + ACTIONS(1483), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -271872,7 +304924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(3139), 8, + STATE(2780), 8, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -271881,366 +304933,191 @@ static const uint16_t ts_small_parse_table[] = { sym_decltype, sym_class_specifier, sym_dependent_type, - [78184] = 5, + [101076] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4884), 1, - anon_sym_EQ, - ACTIONS(4886), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(3724), 14, + ACTIONS(5472), 1, + anon_sym_LBRACK, + STATE(3378), 1, + sym_new_declarator, + ACTIONS(4720), 9, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(3716), 15, + ACTIONS(4718), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [78236] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3801), 16, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - sym_nullptr, - ACTIONS(3803), 24, - sym_raw_string_literal, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [78284] = 3, + [101129] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5066), 17, + ACTIONS(4185), 9, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_DOT, - ACTIONS(5064), 23, + ACTIONS(4187), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - anon_sym_GT2, - [78332] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3778), 16, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, anon_sym_requires, - sym_this, - sym_nullptr, - ACTIONS(3780), 24, - sym_raw_string_literal, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [78380] = 3, + [101178] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5074), 17, + ACTIONS(4141), 9, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_DOT, - ACTIONS(5072), 23, + ACTIONS(4143), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [78428] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3774), 16, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - sym_nullptr, - ACTIONS(3776), 24, - sym_raw_string_literal, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [78476] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3805), 16, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, + anon_sym_DASH_GT, anon_sym_requires, - sym_this, - sym_nullptr, - ACTIONS(3807), 24, - sym_raw_string_literal, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [78524] = 23, + [101227] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(105), 1, - sym_auto, - ACTIONS(107), 1, - anon_sym_decltype, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(2809), 1, - sym_primitive_type, - ACTIONS(3001), 1, - sym_identifier, - ACTIONS(3007), 1, - anon_sym_COLON_COLON, - ACTIONS(5377), 1, + ACTIONS(2679), 1, anon_sym_enum, - ACTIONS(5379), 1, + ACTIONS(2681), 1, anon_sym_class, - ACTIONS(5381), 1, + ACTIONS(2683), 1, anon_sym_struct, - ACTIONS(5383), 1, + ACTIONS(2685), 1, anon_sym_union, - ACTIONS(5385), 1, + ACTIONS(2699), 1, + sym_auto, + ACTIONS(2701), 1, + anon_sym_decltype, + ACTIONS(2703), 1, anon_sym_typename, - STATE(2737), 1, + ACTIONS(5560), 1, + sym_identifier, + ACTIONS(5562), 1, + anon_sym_COLON_COLON, + ACTIONS(5564), 1, + sym_primitive_type, + STATE(2300), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2976), 1, + STATE(3118), 1, sym_template_type, - STATE(3123), 1, + STATE(3138), 1, sym_decltype_auto, - STATE(3198), 1, + STATE(3140), 1, sym_qualified_type_identifier, - STATE(4632), 1, + STATE(4189), 1, sym__type_specifier, - STATE(5131), 1, + STATE(5147), 1, + sym_type_descriptor, + STATE(5425), 1, sym__scope_resolution, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - STATE(2993), 2, + STATE(3373), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(59), 4, + ACTIONS(2675), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -272263,24 +305140,17 @@ static const uint16_t ts_small_parse_table[] = { sym_decltype, sym_class_specifier, sym_dependent_type, - [78612] = 3, + [101318] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3115), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3169), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(3113), 27, + ACTIONS(3167), 35, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -272299,58 +305169,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, sym_identifier, - anon_sym_final, - anon_sym_override, + sym_auto, + anon_sym_decltype, anon_sym_virtual, anon_sym_explicit, + anon_sym_typename, anon_sym_template, anon_sym_operator, - anon_sym_try, - [78660] = 23, + [101367] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(105), 1, - sym_auto, - ACTIONS(107), 1, - anon_sym_decltype, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(2809), 1, - sym_primitive_type, - ACTIONS(3001), 1, + ACTIONS(5566), 1, sym_identifier, - ACTIONS(3007), 1, + ACTIONS(5568), 1, anon_sym_COLON_COLON, - ACTIONS(5377), 1, + ACTIONS(5572), 1, + sym_primitive_type, + ACTIONS(5574), 1, anon_sym_enum, - ACTIONS(5379), 1, + ACTIONS(5576), 1, anon_sym_class, - ACTIONS(5381), 1, + ACTIONS(5578), 1, anon_sym_struct, - ACTIONS(5383), 1, + ACTIONS(5580), 1, anon_sym_union, - ACTIONS(5385), 1, + ACTIONS(5582), 1, + sym_auto, + ACTIONS(5584), 1, + anon_sym_decltype, + ACTIONS(5586), 1, anon_sym_typename, - STATE(2737), 1, + STATE(4168), 1, + sym__type_specifier, + STATE(4268), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2976), 1, + STATE(4434), 1, sym_template_type, - STATE(3123), 1, - sym_decltype_auto, - STATE(3198), 1, + STATE(4506), 1, sym_qualified_type_identifier, - STATE(4646), 1, - sym__type_specifier, - STATE(5131), 1, + STATE(4508), 1, + sym_decltype_auto, + STATE(5147), 1, + sym_type_descriptor, + STATE(5387), 1, sym__scope_resolution, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - STATE(2978), 2, + STATE(3412), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(59), 4, + ACTIONS(5570), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -272364,7 +305244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(3139), 8, + STATE(4593), 8, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -272373,74 +305253,84 @@ static const uint16_t ts_small_parse_table[] = { sym_decltype, sym_class_specifier, sym_dependent_type, - [78748] = 3, + [101458] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5082), 17, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(5080), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [78796] = 8, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1487), 1, + anon_sym_enum, + ACTIONS(1489), 1, + anon_sym_class, + ACTIONS(1491), 1, + anon_sym_struct, + ACTIONS(1493), 1, + anon_sym_union, + ACTIONS(1495), 1, + sym_auto, + ACTIONS(1497), 1, + anon_sym_decltype, + ACTIONS(1499), 1, + anon_sym_typename, + ACTIONS(5518), 1, + sym_identifier, + ACTIONS(5522), 1, + anon_sym_COLON_COLON, + ACTIONS(5524), 1, + sym_primitive_type, + STATE(1935), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2664), 1, + sym_template_type, + STATE(2731), 1, + sym_decltype_auto, + STATE(2847), 1, + sym_qualified_type_identifier, + STATE(4187), 1, + sym__type_specifier, + STATE(5044), 1, + sym_type_descriptor, + STATE(5397), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + STATE(3369), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1483), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(2780), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [101549] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, - anon_sym_COLON_COLON, - ACTIONS(4827), 1, - anon_sym_LT, - ACTIONS(5399), 1, - anon_sym_EQ, - STATE(2626), 1, - sym_template_argument_list, - ACTIONS(5397), 2, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(3740), 7, - anon_sym_DOT_DOT_DOT, + ACTIONS(3165), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(4191), 27, + ACTIONS(3163), 35, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -272459,58 +305349,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, anon_sym_template, anon_sym_operator, - [78854] = 23, + [101598] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(105), 1, sym_auto, ACTIONS(107), 1, anon_sym_decltype, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(2809), 1, - sym_primitive_type, - ACTIONS(3001), 1, + ACTIONS(2428), 1, sym_identifier, - ACTIONS(3007), 1, + ACTIONS(2434), 1, anon_sym_COLON_COLON, - ACTIONS(5377), 1, - anon_sym_enum, - ACTIONS(5379), 1, + ACTIONS(2438), 1, + sym_primitive_type, + ACTIONS(2442), 1, anon_sym_class, - ACTIONS(5381), 1, + ACTIONS(2444), 1, anon_sym_struct, - ACTIONS(5383), 1, + ACTIONS(2446), 1, anon_sym_union, - ACTIONS(5385), 1, + ACTIONS(5588), 1, + anon_sym_enum, + ACTIONS(5590), 1, anon_sym_typename, - STATE(2737), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2976), 1, + STATE(3395), 1, sym_template_type, - STATE(3123), 1, - sym_decltype_auto, - STATE(3198), 1, + STATE(3490), 1, sym_qualified_type_identifier, - STATE(4628), 1, + STATE(3494), 1, + sym_decltype_auto, + STATE(3511), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4210), 1, sym__type_specifier, - STATE(5131), 1, + STATE(5044), 1, + sym_type_descriptor, + STATE(5394), 1, sym__scope_resolution, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - STATE(4110), 2, + STATE(3402), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(59), 4, + ACTIONS(2436), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -272524,7 +305424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(3139), 8, + STATE(3481), 8, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -272533,90 +305433,77 @@ static const uint16_t ts_small_parse_table[] = { sym_decltype, sym_class_specifier, sym_dependent_type, - [78942] = 3, + [101689] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4689), 17, + ACTIONS(4169), 9, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_DOT, - ACTIONS(4687), 23, + ACTIONS(4171), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - anon_sym_GT2, - [78990] = 14, + anon_sym_requires, + [101738] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3926), 1, + ACTIONS(5599), 1, anon_sym___attribute__, - ACTIONS(3930), 1, + ACTIONS(5602), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3932), 1, + ACTIONS(5605), 1, anon_sym___declspec, - ACTIONS(3936), 1, + ACTIONS(5611), 1, anon_sym_virtual, - ACTIONS(4984), 1, - sym_auto, - ACTIONS(4986), 1, - anon_sym_decltype, - ACTIONS(5401), 1, - anon_sym_SEMI, - STATE(3142), 1, - sym_decltype_auto, - ACTIONS(3924), 5, + ACTIONS(5596), 5, anon_sym_extern, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - ACTIONS(5042), 5, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - ACTIONS(5040), 6, + ACTIONS(5592), 6, anon_sym_AMP, anon_sym___based, anon_sym_LBRACK, sym_identifier, anon_sym_template, anon_sym_operator, - ACTIONS(3934), 8, + ACTIONS(5608), 8, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -272625,7 +305512,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(2922), 8, + STATE(3335), 8, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -272634,296 +305521,355 @@ static const uint16_t ts_small_parse_table[] = { sym_type_qualifier, sym_virtual_function_specifier, aux_sym__declaration_specifiers_repeat1, - [79060] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4950), 17, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(4948), 23, + ACTIONS(5594), 10, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + anon_sym_COLON_COLON, + anon_sym_EQ, anon_sym_GT2, - [79108] = 3, + [101801] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(4354), 17, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(4356), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [79156] = 25, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2438), 1, + sym_primitive_type, + ACTIONS(3755), 1, + sym_identifier, + ACTIONS(3765), 1, + anon_sym_COLON_COLON, + ACTIONS(5614), 1, + anon_sym_enum, + ACTIONS(5616), 1, + anon_sym_class, + ACTIONS(5618), 1, + anon_sym_struct, + ACTIONS(5620), 1, + anon_sym_union, + ACTIONS(5622), 1, + anon_sym_typename, + STATE(3395), 1, + sym_template_type, + STATE(3490), 1, + sym_qualified_type_identifier, + STATE(3494), 1, + sym_decltype_auto, + STATE(3511), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4084), 1, + sym__type_specifier, + STATE(5044), 1, + sym_type_descriptor, + STATE(5354), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + STATE(3389), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2436), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3481), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [101892] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(972), 1, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(1497), 1, - anon_sym_operator, - ACTIONS(1517), 1, - anon_sym_TILDE, - ACTIONS(3087), 1, - anon_sym_LPAREN2, - ACTIONS(4062), 1, + ACTIONS(2438), 1, + sym_primitive_type, + ACTIONS(3755), 1, sym_identifier, - ACTIONS(4066), 1, - anon_sym_STAR, - ACTIONS(4072), 1, + ACTIONS(3765), 1, anon_sym_COLON_COLON, - ACTIONS(4074), 1, - anon_sym_LBRACK, - ACTIONS(5403), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5407), 1, - anon_sym_AMP_AMP, - ACTIONS(5409), 1, - anon_sym_AMP, - ACTIONS(5411), 1, - anon_sym_EQ, - STATE(4080), 1, - sym_parameter_list, - STATE(4678), 1, + ACTIONS(5616), 1, + anon_sym_class, + ACTIONS(5618), 1, + anon_sym_struct, + ACTIONS(5620), 1, + anon_sym_union, + ACTIONS(5624), 1, + anon_sym_enum, + ACTIONS(5626), 1, + anon_sym_typename, + STATE(3395), 1, + sym_template_type, + STATE(3490), 1, + sym_qualified_type_identifier, + STATE(3494), 1, + sym_decltype_auto, + STATE(3511), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4120), 1, + sym__type_specifier, + STATE(5044), 1, + sym_type_descriptor, + STATE(5354), 1, sym__scope_resolution, - STATE(4936), 1, - sym__declarator, - STATE(5235), 1, - sym__abstract_declarator, - STATE(5582), 1, - sym_variadic_reference_declarator, - STATE(5584), 1, - sym_variadic_declarator, - STATE(6932), 1, - sym_ms_based_modifier, - ACTIONS(5405), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(6663), 2, + STATE(7236), 1, + sym_dependent_type_identifier, + STATE(3399), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2436), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3481), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [101983] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1487), 1, + anon_sym_enum, + ACTIONS(1489), 1, + anon_sym_class, + ACTIONS(1491), 1, + anon_sym_struct, + ACTIONS(1493), 1, + anon_sym_union, + ACTIONS(1495), 1, + sym_auto, + ACTIONS(1497), 1, + anon_sym_decltype, + ACTIONS(1499), 1, + anon_sym_typename, + ACTIONS(5518), 1, + sym_identifier, + ACTIONS(5522), 1, + anon_sym_COLON_COLON, + ACTIONS(5524), 1, + sym_primitive_type, + STATE(1935), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2664), 1, sym_template_type, + STATE(2731), 1, + sym_decltype_auto, + STATE(2847), 1, + sym_qualified_type_identifier, + STATE(4187), 1, + sym__type_specifier, + STATE(5147), 1, + sym_type_descriptor, + STATE(5397), 1, + sym__scope_resolution, + STATE(7236), 1, sym_dependent_type_identifier, - STATE(4832), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(4825), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [79248] = 3, + STATE(3369), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1483), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(2780), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [102074] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5413), 16, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - sym_nullptr, - ACTIONS(5415), 24, - sym_raw_string_literal, + ACTIONS(5630), 6, anon_sym_LPAREN2, - anon_sym_BANG, anon_sym_TILDE, anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, + anon_sym_AMP_AMP, anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_LBRACK_LBRACK, + ACTIONS(5628), 35, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [79296] = 3, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + [102123] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3724), 17, + ACTIONS(4229), 9, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_DOT, - ACTIONS(3716), 23, + ACTIONS(4231), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - anon_sym_GT2, - [79344] = 23, + anon_sym_requires, + [102172] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(105), 1, - sym_auto, - ACTIONS(107), 1, - anon_sym_decltype, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(2809), 1, - sym_primitive_type, - ACTIONS(3001), 1, - sym_identifier, - ACTIONS(3007), 1, - anon_sym_COLON_COLON, - ACTIONS(3013), 1, + ACTIONS(1487), 1, + anon_sym_enum, + ACTIONS(1489), 1, anon_sym_class, - ACTIONS(3015), 1, + ACTIONS(1491), 1, anon_sym_struct, - ACTIONS(3017), 1, + ACTIONS(1493), 1, anon_sym_union, - ACTIONS(5307), 1, - anon_sym_enum, - ACTIONS(5309), 1, + ACTIONS(1495), 1, + sym_auto, + ACTIONS(1497), 1, + anon_sym_decltype, + ACTIONS(1499), 1, anon_sym_typename, - STATE(2976), 1, + ACTIONS(5518), 1, + sym_identifier, + ACTIONS(5522), 1, + anon_sym_COLON_COLON, + ACTIONS(5524), 1, + sym_primitive_type, + STATE(1935), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2664), 1, sym_template_type, - STATE(3123), 1, + STATE(2731), 1, sym_decltype_auto, - STATE(3184), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3198), 1, + STATE(2847), 1, sym_qualified_type_identifier, - STATE(3874), 1, + STATE(4187), 1, sym__type_specifier, - STATE(5131), 1, + STATE(5397), 1, sym__scope_resolution, - STATE(6663), 1, + STATE(6738), 1, + sym_type_descriptor, + STATE(7236), 1, sym_dependent_type_identifier, - STATE(4110), 2, + STATE(3369), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(3009), 4, + ACTIONS(1483), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -272937,7 +305883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(3139), 8, + STATE(2780), 8, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -272946,251 +305892,189 @@ static const uint16_t ts_small_parse_table[] = { sym_decltype, sym_class_specifier, sym_dependent_type, - [79432] = 3, + [102263] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3878), 17, + ACTIONS(4173), 9, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_DOT, - ACTIONS(3880), 23, + ACTIONS(4175), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [79480] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2302), 17, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(2304), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [79528] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3890), 17, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(3892), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - anon_sym_GT2, - [79576] = 3, + anon_sym_requires, + [102312] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4950), 17, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(4948), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(5639), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(5635), 4, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(5637), 5, + anon_sym_AMP, + anon_sym___based, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [79624] = 3, + anon_sym_explicit, + anon_sym_operator, + ACTIONS(5642), 12, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_auto, + anon_sym_decltype, + anon_sym_typename, + ACTIONS(5632), 18, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + anon_sym_virtual, + anon_sym_template, + [102367] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3724), 17, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(3716), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [79672] = 10, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1487), 1, + anon_sym_enum, + ACTIONS(1489), 1, + anon_sym_class, + ACTIONS(1491), 1, + anon_sym_struct, + ACTIONS(1493), 1, + anon_sym_union, + ACTIONS(1495), 1, + sym_auto, + ACTIONS(1497), 1, + anon_sym_decltype, + ACTIONS(1499), 1, + anon_sym_typename, + ACTIONS(5518), 1, + sym_identifier, + ACTIONS(5522), 1, + anon_sym_COLON_COLON, + ACTIONS(5524), 1, + sym_primitive_type, + STATE(1935), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2664), 1, + sym_template_type, + STATE(2731), 1, + sym_decltype_auto, + STATE(2847), 1, + sym_qualified_type_identifier, + STATE(4187), 1, + sym__type_specifier, + STATE(5397), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + STATE(7262), 1, + sym_type_descriptor, + STATE(3369), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1483), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(2780), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [102458] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5222), 1, + ACTIONS(5646), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_COLON_COLON, - ACTIONS(5420), 1, - anon_sym___attribute__, - ACTIONS(5423), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5426), 1, - anon_sym___declspec, - ACTIONS(5432), 1, - anon_sym_virtual, - ACTIONS(5417), 5, + ACTIONS(5644), 35, + anon_sym_AMP, anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - ACTIONS(5429), 8, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -273199,16 +306083,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(3007), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual_function_specifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(5220), 14, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -273221,231 +306095,197 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, + anon_sym_virtual, + anon_sym_explicit, anon_sym_typename, anon_sym_template, - [79734] = 3, + anon_sym_operator, + [102507] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2287), 17, + ACTIONS(5648), 1, + anon_sym_COLON, + STATE(3150), 1, + sym_enumerator_list, + STATE(3434), 1, + sym__enum_base_clause, + ACTIONS(4235), 11, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_DOT, - ACTIONS(2289), 23, + ACTIONS(4233), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, anon_sym_GT2, - [79782] = 3, + [102562] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4938), 17, + ACTIONS(4161), 9, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_DOT, - ACTIONS(4936), 23, + ACTIONS(4163), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - anon_sym_GT2, - [79830] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5435), 16, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, anon_sym_requires, - sym_this, - sym_nullptr, - ACTIONS(5437), 24, - sym_raw_string_literal, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [79878] = 3, + [102611] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5050), 17, + ACTIONS(4203), 9, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_DOT, - ACTIONS(5048), 23, + ACTIONS(4205), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - anon_sym_GT2, - [79926] = 23, + anon_sym_requires, + [102660] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(1485), 1, + ACTIONS(1535), 1, + sym_primitive_type, + ACTIONS(1537), 1, + anon_sym_enum, + ACTIONS(1539), 1, anon_sym_class, - ACTIONS(1487), 1, + ACTIONS(1541), 1, anon_sym_struct, - ACTIONS(1489), 1, + ACTIONS(1543), 1, anon_sym_union, - ACTIONS(1491), 1, + ACTIONS(1545), 1, sym_auto, - ACTIONS(1493), 1, + ACTIONS(1547), 1, anon_sym_decltype, - ACTIONS(5196), 1, + ACTIONS(3755), 1, sym_identifier, - ACTIONS(5200), 1, + ACTIONS(4731), 1, anon_sym_COLON_COLON, - ACTIONS(5202), 1, - sym_primitive_type, - ACTIONS(5331), 1, - anon_sym_enum, - ACTIONS(5333), 1, + ACTIONS(5652), 1, anon_sym_typename, - STATE(2075), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2323), 1, + STATE(3395), 1, sym_template_type, - STATE(2485), 1, + STATE(4003), 1, sym_qualified_type_identifier, - STATE(2494), 1, + STATE(4021), 1, sym_decltype_auto, - STATE(4060), 1, + STATE(4070), 1, sym__type_specifier, - STATE(5137), 1, + STATE(4130), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5044), 1, + sym_type_descriptor, + STATE(5352), 1, sym__scope_resolution, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - STATE(4110), 2, + STATE(3415), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(1479), 4, + ACTIONS(5650), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -273459,7 +306299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(2346), 8, + STATE(4001), 8, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -273468,712 +306308,558 @@ static const uint16_t ts_small_parse_table[] = { sym_decltype, sym_class_specifier, sym_dependent_type, - [80014] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5097), 17, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(5095), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [80062] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5046), 17, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(5044), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [80110] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5062), 17, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(5060), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [80158] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5006), 17, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(5004), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [80206] = 8, + [102751] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(5439), 1, - anon_sym_DOT, - ACTIONS(5441), 1, - anon_sym_DASH_GT, - STATE(2534), 1, - sym_argument_list, - ACTIONS(4902), 14, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(4900), 21, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - [80264] = 3, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1487), 1, + anon_sym_enum, + ACTIONS(1489), 1, + anon_sym_class, + ACTIONS(1491), 1, + anon_sym_struct, + ACTIONS(1493), 1, + anon_sym_union, + ACTIONS(1495), 1, + sym_auto, + ACTIONS(1497), 1, + anon_sym_decltype, + ACTIONS(1499), 1, + anon_sym_typename, + ACTIONS(5518), 1, + sym_identifier, + ACTIONS(5522), 1, + anon_sym_COLON_COLON, + ACTIONS(5524), 1, + sym_primitive_type, + STATE(1935), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2664), 1, + sym_template_type, + STATE(2731), 1, + sym_decltype_auto, + STATE(2847), 1, + sym_qualified_type_identifier, + STATE(4187), 1, + sym__type_specifier, + STATE(5397), 1, + sym__scope_resolution, + STATE(7001), 1, + sym_type_descriptor, + STATE(7236), 1, + sym_dependent_type_identifier, + STATE(3369), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1483), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(2780), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [102842] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(4699), 17, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(4697), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [80312] = 9, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1487), 1, + anon_sym_enum, + ACTIONS(1489), 1, + anon_sym_class, + ACTIONS(1491), 1, + anon_sym_struct, + ACTIONS(1493), 1, + anon_sym_union, + ACTIONS(1495), 1, + sym_auto, + ACTIONS(1497), 1, + anon_sym_decltype, + ACTIONS(1499), 1, + anon_sym_typename, + ACTIONS(5518), 1, + sym_identifier, + ACTIONS(5522), 1, + anon_sym_COLON_COLON, + ACTIONS(5524), 1, + sym_primitive_type, + STATE(1935), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2664), 1, + sym_template_type, + STATE(2731), 1, + sym_decltype_auto, + STATE(2847), 1, + sym_qualified_type_identifier, + STATE(4187), 1, + sym__type_specifier, + STATE(5397), 1, + sym__scope_resolution, + STATE(6822), 1, + sym_type_descriptor, + STATE(7236), 1, + sym_dependent_type_identifier, + STATE(3369), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1483), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(2780), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [102933] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(5439), 1, - anon_sym_DOT, - ACTIONS(5441), 1, - anon_sym_DASH_GT, - STATE(2534), 1, - sym_argument_list, - ACTIONS(4894), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4890), 14, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(4888), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_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_LT_EQ_GT, - [80372] = 3, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1487), 1, + anon_sym_enum, + ACTIONS(1489), 1, + anon_sym_class, + ACTIONS(1491), 1, + anon_sym_struct, + ACTIONS(1493), 1, + anon_sym_union, + ACTIONS(1495), 1, + sym_auto, + ACTIONS(1497), 1, + anon_sym_decltype, + ACTIONS(1499), 1, + anon_sym_typename, + ACTIONS(5518), 1, + sym_identifier, + ACTIONS(5522), 1, + anon_sym_COLON_COLON, + ACTIONS(5524), 1, + sym_primitive_type, + STATE(1935), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2664), 1, + sym_template_type, + STATE(2731), 1, + sym_decltype_auto, + STATE(2847), 1, + sym_qualified_type_identifier, + STATE(4187), 1, + sym__type_specifier, + STATE(5397), 1, + sym__scope_resolution, + STATE(6910), 1, + sym_type_descriptor, + STATE(7236), 1, + sym_dependent_type_identifier, + STATE(3369), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1483), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(2780), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [103024] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4978), 17, + ACTIONS(4217), 9, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_DOT, - ACTIONS(4976), 23, + ACTIONS(4219), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - anon_sym_GT2, - [80420] = 13, + anon_sym_requires, + [103073] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(5439), 1, - anon_sym_DOT, - ACTIONS(5441), 1, - anon_sym_DASH_GT, - ACTIONS(5449), 1, - anon_sym_LT_EQ_GT, - STATE(2534), 1, - sym_argument_list, - ACTIONS(4894), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5443), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5447), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5445), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4910), 7, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_EQ, - ACTIONS(4904), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [80488] = 3, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1487), 1, + anon_sym_enum, + ACTIONS(1489), 1, + anon_sym_class, + ACTIONS(1491), 1, + anon_sym_struct, + ACTIONS(1493), 1, + anon_sym_union, + ACTIONS(1495), 1, + sym_auto, + ACTIONS(1497), 1, + anon_sym_decltype, + ACTIONS(1499), 1, + anon_sym_typename, + ACTIONS(5518), 1, + sym_identifier, + ACTIONS(5522), 1, + anon_sym_COLON_COLON, + ACTIONS(5524), 1, + sym_primitive_type, + STATE(1935), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2664), 1, + sym_template_type, + STATE(2731), 1, + sym_decltype_auto, + STATE(2847), 1, + sym_qualified_type_identifier, + STATE(4187), 1, + sym__type_specifier, + STATE(5397), 1, + sym__scope_resolution, + STATE(6453), 1, + sym_type_descriptor, + STATE(7236), 1, + sym_dependent_type_identifier, + STATE(3369), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1483), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(2780), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [103164] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3894), 17, + ACTIONS(5648), 1, + anon_sym_COLON, + STATE(3161), 1, + sym_enumerator_list, + STATE(3432), 1, + sym__enum_base_clause, + ACTIONS(4153), 11, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_DOT, - ACTIONS(3896), 23, + ACTIONS(4151), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, anon_sym_GT2, - [80536] = 3, + [103219] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3914), 17, + ACTIONS(3478), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(3480), 10, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym_COLON, anon_sym_DOT, - ACTIONS(3916), 23, + ACTIONS(3485), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - anon_sym_GT2, - [80584] = 3, + [103270] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3898), 17, + ACTIONS(4147), 9, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_DOT, - ACTIONS(3900), 23, + ACTIONS(4149), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - anon_sym_GT2, - [80632] = 3, + anon_sym_requires, + [103319] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5070), 17, + ACTIONS(4165), 9, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_DOT, - ACTIONS(5068), 23, + ACTIONS(4167), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [80680] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(5439), 1, - anon_sym_DOT, - ACTIONS(5441), 1, - anon_sym_DASH_GT, - STATE(2534), 1, - sym_argument_list, - ACTIONS(4894), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4990), 14, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(4988), 19, - anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_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_LT_EQ_GT, - [80740] = 3, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_requires, + [103368] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3910), 17, + ACTIONS(4237), 9, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_DOT, - ACTIONS(3912), 23, + ACTIONS(4239), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - anon_sym_GT2, - [80788] = 3, + anon_sym_requires, + [103417] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4217), 10, + ACTIONS(4221), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -274183,9 +306869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(4215), 30, - sym_raw_string_literal, + ACTIONS(4223), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -274201,63 +306885,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [80836] = 23, + anon_sym_requires, + [103466] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(5279), 1, - sym_identifier, - ACTIONS(5281), 1, - anon_sym_COLON_COLON, - ACTIONS(5285), 1, - sym_primitive_type, - ACTIONS(5287), 1, + ACTIONS(1487), 1, anon_sym_enum, - ACTIONS(5289), 1, + ACTIONS(1489), 1, anon_sym_class, - ACTIONS(5291), 1, + ACTIONS(1491), 1, anon_sym_struct, - ACTIONS(5293), 1, + ACTIONS(1493), 1, anon_sym_union, - ACTIONS(5295), 1, + ACTIONS(1495), 1, sym_auto, - ACTIONS(5297), 1, + ACTIONS(1497), 1, anon_sym_decltype, - ACTIONS(5299), 1, + ACTIONS(1499), 1, anon_sym_typename, - STATE(3734), 1, - sym__type_specifier, - STATE(4050), 1, + ACTIONS(5518), 1, + sym_identifier, + ACTIONS(5522), 1, + anon_sym_COLON_COLON, + ACTIONS(5524), 1, + sym_primitive_type, + STATE(1935), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4188), 1, + STATE(2664), 1, sym_template_type, - STATE(4232), 1, - sym_qualified_type_identifier, - STATE(4235), 1, + STATE(2731), 1, sym_decltype_auto, - STATE(5084), 1, + STATE(2847), 1, + sym_qualified_type_identifier, + STATE(4187), 1, + sym__type_specifier, + STATE(5397), 1, sym__scope_resolution, - STATE(6663), 1, + STATE(6832), 1, + sym_type_descriptor, + STATE(7236), 1, sym_dependent_type_identifier, - STATE(4110), 2, + STATE(3369), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(5283), 4, + ACTIONS(1483), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -274271,7 +306960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(4234), 8, + STATE(2780), 8, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -274280,114 +306969,118 @@ static const uint16_t ts_small_parse_table[] = { sym_decltype, sym_class_specifier, sym_dependent_type, - [80924] = 23, + [103557] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4994), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5010), 1, - anon_sym_EQ, - ACTIONS(5439), 1, - anon_sym_DOT, - ACTIONS(5441), 1, - anon_sym_DASH_GT, - ACTIONS(5449), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5451), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5453), 1, - anon_sym_AMP_AMP, - ACTIONS(5455), 1, - anon_sym_PIPE, - ACTIONS(5457), 1, - anon_sym_CARET, - ACTIONS(5459), 1, - anon_sym_AMP, - ACTIONS(5465), 1, - anon_sym_GT_EQ, - ACTIONS(5467), 1, - anon_sym_QMARK, - STATE(2534), 1, - sym_argument_list, - ACTIONS(4894), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5443), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5447), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5461), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5445), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5463), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(5008), 11, - anon_sym_COLON, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [81012] = 23, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2428), 1, + sym_identifier, + ACTIONS(2434), 1, + anon_sym_COLON_COLON, + ACTIONS(2438), 1, + sym_primitive_type, + ACTIONS(2440), 1, + anon_sym_enum, + ACTIONS(2442), 1, + anon_sym_class, + ACTIONS(2444), 1, + anon_sym_struct, + ACTIONS(2446), 1, + anon_sym_union, + ACTIONS(2448), 1, + anon_sym_typename, + STATE(3395), 1, + sym_template_type, + STATE(3490), 1, + sym_qualified_type_identifier, + STATE(3494), 1, + sym_decltype_auto, + STATE(3511), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4191), 1, + sym__type_specifier, + STATE(5044), 1, + sym_type_descriptor, + STATE(5394), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + STATE(3386), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2436), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3481), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [103648] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(1483), 1, + ACTIONS(1487), 1, anon_sym_enum, - ACTIONS(1485), 1, + ACTIONS(1489), 1, anon_sym_class, - ACTIONS(1487), 1, + ACTIONS(1491), 1, anon_sym_struct, - ACTIONS(1489), 1, + ACTIONS(1493), 1, anon_sym_union, - ACTIONS(1491), 1, + ACTIONS(1495), 1, sym_auto, - ACTIONS(1493), 1, + ACTIONS(1497), 1, anon_sym_decltype, - ACTIONS(1495), 1, + ACTIONS(1499), 1, anon_sym_typename, - ACTIONS(5196), 1, + ACTIONS(5518), 1, sym_identifier, - ACTIONS(5200), 1, + ACTIONS(5522), 1, anon_sym_COLON_COLON, - ACTIONS(5202), 1, + ACTIONS(5524), 1, sym_primitive_type, - STATE(2075), 1, + STATE(1935), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2323), 1, + STATE(2664), 1, sym_template_type, - STATE(2485), 1, - sym_qualified_type_identifier, - STATE(2494), 1, + STATE(2731), 1, sym_decltype_auto, - STATE(3931), 1, + STATE(2847), 1, + sym_qualified_type_identifier, + STATE(4187), 1, sym__type_specifier, - STATE(5137), 1, + STATE(5397), 1, sym__scope_resolution, - STATE(6663), 1, + STATE(6845), 1, + sym_type_descriptor, + STATE(7236), 1, sym_dependent_type_identifier, - STATE(4110), 2, + STATE(3369), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(1479), 4, + ACTIONS(1483), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -274401,7 +307094,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(2346), 8, + STATE(2780), 8, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -274410,108 +307103,123 @@ static const uint16_t ts_small_parse_table[] = { sym_decltype, sym_class_specifier, sym_dependent_type, - [81100] = 21, + [103739] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4934), 1, - anon_sym_EQ, - ACTIONS(5439), 1, - anon_sym_DOT, - ACTIONS(5441), 1, - anon_sym_DASH_GT, - ACTIONS(5449), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5451), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5453), 1, - anon_sym_AMP_AMP, - ACTIONS(5455), 1, - anon_sym_PIPE, - ACTIONS(5457), 1, - anon_sym_CARET, - ACTIONS(5459), 1, - anon_sym_AMP, - ACTIONS(5465), 1, - anon_sym_GT_EQ, - STATE(2534), 1, - sym_argument_list, - ACTIONS(4894), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5443), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5447), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5461), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5445), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5463), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4916), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [81184] = 14, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1487), 1, + anon_sym_enum, + ACTIONS(1489), 1, + anon_sym_class, + ACTIONS(1491), 1, + anon_sym_struct, + ACTIONS(1493), 1, + anon_sym_union, + ACTIONS(1495), 1, + sym_auto, + ACTIONS(1497), 1, + anon_sym_decltype, + ACTIONS(1499), 1, + anon_sym_typename, + ACTIONS(5518), 1, + sym_identifier, + ACTIONS(5522), 1, + anon_sym_COLON_COLON, + ACTIONS(5524), 1, + sym_primitive_type, + STATE(1935), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2664), 1, + sym_template_type, + STATE(2731), 1, + sym_decltype_auto, + STATE(2847), 1, + sym_qualified_type_identifier, + STATE(4187), 1, + sym__type_specifier, + STATE(5397), 1, + sym__scope_resolution, + STATE(7070), 1, + sym_type_descriptor, + STATE(7236), 1, + sym_dependent_type_identifier, + STATE(3369), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1483), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(2780), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [103830] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3926), 1, - anon_sym___attribute__, - ACTIONS(3930), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3932), 1, - anon_sym___declspec, - ACTIONS(3936), 1, - anon_sym_virtual, - ACTIONS(4984), 1, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1535), 1, + sym_primitive_type, + ACTIONS(1545), 1, sym_auto, - ACTIONS(4986), 1, + ACTIONS(1547), 1, anon_sym_decltype, - ACTIONS(5469), 1, - anon_sym_SEMI, - STATE(3142), 1, - sym_decltype_auto, - ACTIONS(3924), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(5042), 5, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - ACTIONS(5040), 6, - anon_sym_AMP, - anon_sym___based, - anon_sym_LBRACK, + ACTIONS(2428), 1, sym_identifier, - anon_sym_template, - anon_sym_operator, - ACTIONS(3934), 8, + ACTIONS(5654), 1, + anon_sym_COLON_COLON, + ACTIONS(5656), 1, + anon_sym_enum, + ACTIONS(5658), 1, + anon_sym_class, + ACTIONS(5660), 1, + anon_sym_struct, + ACTIONS(5662), 1, + anon_sym_union, + ACTIONS(5664), 1, + anon_sym_typename, + STATE(3395), 1, + sym_template_type, + STATE(4003), 1, + sym_qualified_type_identifier, + STATE(4021), 1, + sym_decltype_auto, + STATE(4130), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4247), 1, + sym__type_specifier, + STATE(5044), 1, + sym_type_descriptor, + STATE(5416), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + STATE(3409), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(5650), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -274520,55 +307228,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(2922), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual_function_specifier, - aux_sym__declaration_specifiers_repeat1, - [81254] = 23, + STATE(4001), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [103921] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(105), 1, sym_auto, ACTIONS(107), 1, anon_sym_decltype, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(2809), 1, - sym_primitive_type, - ACTIONS(3001), 1, + ACTIONS(2428), 1, sym_identifier, - ACTIONS(3007), 1, + ACTIONS(2434), 1, anon_sym_COLON_COLON, - ACTIONS(5377), 1, + ACTIONS(2438), 1, + sym_primitive_type, + ACTIONS(5666), 1, anon_sym_enum, - ACTIONS(5379), 1, + ACTIONS(5668), 1, anon_sym_class, - ACTIONS(5381), 1, + ACTIONS(5670), 1, anon_sym_struct, - ACTIONS(5383), 1, + ACTIONS(5672), 1, anon_sym_union, - ACTIONS(5385), 1, + ACTIONS(5674), 1, anon_sym_typename, - STATE(2737), 1, + STATE(3271), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2976), 1, + STATE(3395), 1, sym_template_type, - STATE(3123), 1, - sym_decltype_auto, - STATE(3198), 1, + STATE(3490), 1, sym_qualified_type_identifier, - STATE(4655), 1, + STATE(3494), 1, + sym_decltype_auto, + STATE(4918), 1, sym__type_specifier, - STATE(5131), 1, + STATE(5394), 1, sym__scope_resolution, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - STATE(4110), 2, + STATE(4370), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(59), 4, @@ -274585,7 +307293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(3139), 8, + STATE(3481), 8, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -274594,49 +307302,179 @@ static const uint16_t ts_small_parse_table[] = { sym_decltype, sym_class_specifier, sym_dependent_type, - [81342] = 23, + [104009] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(105), 1, sym_auto, ACTIONS(107), 1, anon_sym_decltype, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(2809), 1, + ACTIONS(2428), 1, + sym_identifier, + ACTIONS(2434), 1, + anon_sym_COLON_COLON, + ACTIONS(2438), 1, sym_primitive_type, - ACTIONS(3001), 1, + ACTIONS(5666), 1, + anon_sym_enum, + ACTIONS(5668), 1, + anon_sym_class, + ACTIONS(5670), 1, + anon_sym_struct, + ACTIONS(5672), 1, + anon_sym_union, + ACTIONS(5674), 1, + anon_sym_typename, + STATE(3271), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3395), 1, + sym_template_type, + STATE(3490), 1, + sym_qualified_type_identifier, + STATE(3494), 1, + sym_decltype_auto, + STATE(4911), 1, + sym__type_specifier, + STATE(5394), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + STATE(3375), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3481), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [104097] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1489), 1, + anon_sym_class, + ACTIONS(1491), 1, + anon_sym_struct, + ACTIONS(1493), 1, + anon_sym_union, + ACTIONS(1495), 1, + sym_auto, + ACTIONS(1497), 1, + anon_sym_decltype, + ACTIONS(5518), 1, sym_identifier, - ACTIONS(3007), 1, + ACTIONS(5522), 1, anon_sym_COLON_COLON, - ACTIONS(5377), 1, + ACTIONS(5524), 1, + sym_primitive_type, + ACTIONS(5552), 1, anon_sym_enum, - ACTIONS(5379), 1, + ACTIONS(5554), 1, + anon_sym_typename, + STATE(1935), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2664), 1, + sym_template_type, + STATE(2731), 1, + sym_decltype_auto, + STATE(2847), 1, + sym_qualified_type_identifier, + STATE(4285), 1, + sym__type_specifier, + STATE(5397), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + STATE(4370), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1483), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(2780), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [104185] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1487), 1, + anon_sym_enum, + ACTIONS(1489), 1, anon_sym_class, - ACTIONS(5381), 1, + ACTIONS(1491), 1, anon_sym_struct, - ACTIONS(5383), 1, + ACTIONS(1493), 1, anon_sym_union, - ACTIONS(5385), 1, + ACTIONS(1495), 1, + sym_auto, + ACTIONS(1497), 1, + anon_sym_decltype, + ACTIONS(1499), 1, anon_sym_typename, - STATE(2737), 1, + ACTIONS(5518), 1, + sym_identifier, + ACTIONS(5522), 1, + anon_sym_COLON_COLON, + ACTIONS(5524), 1, + sym_primitive_type, + STATE(1935), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2976), 1, + STATE(2664), 1, sym_template_type, - STATE(3123), 1, + STATE(2731), 1, sym_decltype_auto, - STATE(3198), 1, + STATE(2847), 1, sym_qualified_type_identifier, - STATE(4663), 1, + STATE(4213), 1, sym__type_specifier, - STATE(5131), 1, + STATE(5397), 1, sym__scope_resolution, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - STATE(3034), 2, + STATE(4370), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(59), 4, + ACTIONS(1483), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -274650,7 +307488,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(3139), 8, + STATE(2780), 8, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -274659,46 +307497,46 @@ static const uint16_t ts_small_parse_table[] = { sym_decltype, sym_class_specifier, sym_dependent_type, - [81430] = 23, + [104273] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(105), 1, sym_auto, ACTIONS(107), 1, anon_sym_decltype, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(2809), 1, - sym_primitive_type, - ACTIONS(3001), 1, + ACTIONS(2428), 1, sym_identifier, - ACTIONS(3007), 1, + ACTIONS(2434), 1, anon_sym_COLON_COLON, - ACTIONS(5377), 1, + ACTIONS(2438), 1, + sym_primitive_type, + ACTIONS(5666), 1, anon_sym_enum, - ACTIONS(5379), 1, + ACTIONS(5668), 1, anon_sym_class, - ACTIONS(5381), 1, + ACTIONS(5670), 1, anon_sym_struct, - ACTIONS(5383), 1, + ACTIONS(5672), 1, anon_sym_union, - ACTIONS(5385), 1, + ACTIONS(5674), 1, anon_sym_typename, - STATE(2737), 1, + STATE(3271), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2976), 1, + STATE(3395), 1, sym_template_type, - STATE(3123), 1, - sym_decltype_auto, - STATE(3198), 1, + STATE(3490), 1, sym_qualified_type_identifier, - STATE(4658), 1, + STATE(3494), 1, + sym_decltype_auto, + STATE(4892), 1, sym__type_specifier, - STATE(5131), 1, + STATE(5394), 1, sym__scope_resolution, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - STATE(4110), 2, + STATE(4370), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(59), 4, @@ -274715,7 +307553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(3139), 8, + STATE(3481), 8, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -274724,10 +307562,17 @@ static const uint16_t ts_small_parse_table[] = { sym_decltype, sym_class_specifier, sym_dependent_type, - [81518] = 3, + [104361] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4233), 10, + ACTIONS(1469), 1, + anon_sym_LBRACE, + ACTIONS(5470), 1, + anon_sym_LPAREN2, + STATE(3532), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4553), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -274737,13 +307582,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(4231), 30, - sym_raw_string_literal, + ACTIONS(4551), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -274757,169 +307599,246 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [81566] = 21, + [104415] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4251), 1, + anon_sym___attribute__, + ACTIONS(4255), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4257), 1, + anon_sym___declspec, + ACTIONS(4261), 1, + anon_sym_virtual, + ACTIONS(5484), 1, + sym_auto, + ACTIONS(5486), 1, + anon_sym_decltype, + ACTIONS(5676), 1, + anon_sym_SEMI, + STATE(3441), 1, + sym_decltype_auto, + ACTIONS(4249), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(5482), 5, anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(5054), 1, - anon_sym_EQ, - ACTIONS(5439), 1, - anon_sym_DOT, - ACTIONS(5441), 1, - anon_sym_DASH_GT, - ACTIONS(5449), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5451), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5453), 1, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(5455), 1, - anon_sym_PIPE, - ACTIONS(5457), 1, - anon_sym_CARET, - ACTIONS(5459), 1, + anon_sym_COLON_COLON, + ACTIONS(5480), 6, anon_sym_AMP, - ACTIONS(5465), 1, - anon_sym_GT_EQ, - STATE(2534), 1, - sym_argument_list, - ACTIONS(4894), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5443), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5447), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5461), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5445), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5463), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(5052), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [81650] = 3, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + anon_sym_template, + anon_sym_operator, + ACTIONS(4259), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3321), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + [104485] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(5002), 17, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(5000), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [81698] = 23, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2679), 1, + anon_sym_enum, + ACTIONS(2681), 1, + anon_sym_class, + ACTIONS(2683), 1, + anon_sym_struct, + ACTIONS(2685), 1, + anon_sym_union, + ACTIONS(2699), 1, + sym_auto, + ACTIONS(2701), 1, + anon_sym_decltype, + ACTIONS(2703), 1, + anon_sym_typename, + ACTIONS(5560), 1, + sym_identifier, + ACTIONS(5562), 1, + anon_sym_COLON_COLON, + ACTIONS(5564), 1, + sym_primitive_type, + STATE(2300), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3118), 1, + sym_template_type, + STATE(3138), 1, + sym_decltype_auto, + STATE(3140), 1, + sym_qualified_type_identifier, + STATE(4199), 1, + sym__type_specifier, + STATE(5425), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + STATE(4370), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2675), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3139), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [104573] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2428), 1, + sym_identifier, + ACTIONS(2434), 1, + anon_sym_COLON_COLON, + ACTIONS(2438), 1, + sym_primitive_type, + ACTIONS(5666), 1, + anon_sym_enum, + ACTIONS(5668), 1, + anon_sym_class, + ACTIONS(5670), 1, + anon_sym_struct, + ACTIONS(5672), 1, + anon_sym_union, + ACTIONS(5674), 1, + anon_sym_typename, + STATE(3271), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3395), 1, + sym_template_type, + STATE(3490), 1, + sym_qualified_type_identifier, + STATE(3494), 1, + sym_decltype_auto, + STATE(4900), 1, + sym__type_specifier, + STATE(5394), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + STATE(4370), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3481), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [104661] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(105), 1, sym_auto, ACTIONS(107), 1, anon_sym_decltype, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(2809), 1, - sym_primitive_type, - ACTIONS(3001), 1, + ACTIONS(2428), 1, sym_identifier, - ACTIONS(3007), 1, + ACTIONS(2434), 1, anon_sym_COLON_COLON, - ACTIONS(3011), 1, + ACTIONS(2438), 1, + sym_primitive_type, + ACTIONS(5666), 1, anon_sym_enum, - ACTIONS(3013), 1, + ACTIONS(5668), 1, anon_sym_class, - ACTIONS(3015), 1, + ACTIONS(5670), 1, anon_sym_struct, - ACTIONS(3017), 1, + ACTIONS(5672), 1, anon_sym_union, - ACTIONS(3019), 1, + ACTIONS(5674), 1, anon_sym_typename, - STATE(2976), 1, - sym_template_type, - STATE(3123), 1, - sym_decltype_auto, - STATE(3184), 1, + STATE(3271), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3198), 1, + STATE(3395), 1, + sym_template_type, + STATE(3490), 1, sym_qualified_type_identifier, - STATE(3857), 1, + STATE(3494), 1, + sym_decltype_auto, + STATE(4934), 1, sym__type_specifier, - STATE(5131), 1, + STATE(5394), 1, sym__scope_resolution, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - STATE(4110), 2, + STATE(4370), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(3009), 4, + ACTIONS(59), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -274933,7 +307852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(3139), 8, + STATE(3481), 8, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -274942,174 +307861,16 @@ static const uint16_t ts_small_parse_table[] = { sym_decltype, sym_class_specifier, sym_dependent_type, - [81786] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(5078), 1, - anon_sym_EQ, - ACTIONS(5439), 1, - anon_sym_DOT, - ACTIONS(5441), 1, - anon_sym_DASH_GT, - ACTIONS(5449), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5451), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5453), 1, - anon_sym_AMP_AMP, - ACTIONS(5455), 1, - anon_sym_PIPE, - ACTIONS(5457), 1, - anon_sym_CARET, - ACTIONS(5459), 1, - anon_sym_AMP, - ACTIONS(5465), 1, - anon_sym_GT_EQ, - STATE(2534), 1, - sym_argument_list, - ACTIONS(4894), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5443), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5447), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5461), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5445), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5463), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(5076), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [81870] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(5439), 1, - anon_sym_DOT, - ACTIONS(5441), 1, - anon_sym_DASH_GT, - STATE(2534), 1, - sym_argument_list, - ACTIONS(4942), 14, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(4940), 21, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - [81928] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4293), 16, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - sym_nullptr, - ACTIONS(4291), 24, - sym_raw_string_literal, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [81976] = 6, + [104749] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4984), 1, + ACTIONS(5484), 1, sym_auto, - ACTIONS(4986), 1, + ACTIONS(5486), 1, anon_sym_decltype, - STATE(3142), 1, + STATE(3441), 1, sym_decltype_auto, - ACTIONS(4364), 13, + ACTIONS(4275), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -275123,7 +307884,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(4366), 24, + ACTIONS(4277), 24, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -275148,535 +307909,201 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [82030] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5471), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5473), 1, - anon_sym_AMP_AMP, - ACTIONS(4270), 17, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(4272), 21, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [82082] = 25, + [104803] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(972), 1, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(1497), 1, - anon_sym_operator, - ACTIONS(1517), 1, - anon_sym_TILDE, - ACTIONS(3087), 1, - anon_sym_LPAREN2, - ACTIONS(4062), 1, + ACTIONS(2428), 1, sym_identifier, - ACTIONS(4072), 1, + ACTIONS(2434), 1, anon_sym_COLON_COLON, - ACTIONS(4074), 1, - anon_sym_LBRACK, - ACTIONS(4076), 1, - anon_sym_STAR, - ACTIONS(5403), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5475), 1, - anon_sym_AMP_AMP, - ACTIONS(5477), 1, - anon_sym_AMP, - ACTIONS(5479), 1, - anon_sym_EQ, - STATE(4077), 1, - sym_parameter_list, - STATE(4678), 1, - sym__scope_resolution, - STATE(4982), 1, - sym__declarator, - STATE(5246), 1, - sym__abstract_declarator, - STATE(5582), 1, - sym_variadic_reference_declarator, - STATE(5584), 1, - sym_variadic_declarator, - STATE(6932), 1, - sym_ms_based_modifier, - ACTIONS(5405), 2, - anon_sym_COMMA, - anon_sym_GT2, - STATE(6663), 2, - sym_template_type, - sym_dependent_type_identifier, - STATE(4832), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(4825), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [82174] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5481), 16, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2438), 1, sym_primitive_type, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, + ACTIONS(5666), 1, + anon_sym_enum, + ACTIONS(5668), 1, + anon_sym_class, + ACTIONS(5670), 1, + anon_sym_struct, + ACTIONS(5672), 1, + anon_sym_union, + ACTIONS(5674), 1, anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - sym_nullptr, - ACTIONS(5483), 24, - sym_raw_string_literal, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [82222] = 3, + STATE(3271), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3395), 1, + sym_template_type, + STATE(3490), 1, + sym_qualified_type_identifier, + STATE(3494), 1, + sym_decltype_auto, + STATE(4922), 1, + sym__type_specifier, + STATE(5394), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + STATE(3380), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3481), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [104891] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3886), 17, + ACTIONS(4848), 9, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_DOT, - ACTIONS(3888), 23, + ACTIONS(4846), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [82270] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2421), 16, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - sym_nullptr, - ACTIONS(2423), 24, - sym_raw_string_literal, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [82318] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(5439), 1, - anon_sym_DOT, - ACTIONS(5441), 1, - anon_sym_DASH_GT, - STATE(2534), 1, - sym_argument_list, - ACTIONS(4894), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5058), 14, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(5056), 19, - anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_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_LT_EQ_GT, - [82378] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(5439), 1, - anon_sym_DOT, - ACTIONS(5441), 1, - anon_sym_DASH_GT, - STATE(2534), 1, - sym_argument_list, - ACTIONS(4894), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5443), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5447), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5445), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5026), 7, - anon_sym_PIPE, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_EQ, - ACTIONS(5024), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_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_LT_EQ_GT, - [82444] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5093), 17, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(5091), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - anon_sym_GT2, - [82492] = 3, + [104939] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4383), 17, + ACTIONS(4876), 9, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_DOT, - ACTIONS(4385), 23, + ACTIONS(4874), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [82540] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4954), 17, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(4952), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - anon_sym_GT2, - [82588] = 23, + [104987] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(105), 1, sym_auto, ACTIONS(107), 1, anon_sym_decltype, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(2809), 1, - sym_primitive_type, - ACTIONS(3001), 1, + ACTIONS(2428), 1, sym_identifier, - ACTIONS(3007), 1, + ACTIONS(2434), 1, anon_sym_COLON_COLON, - ACTIONS(5377), 1, + ACTIONS(2438), 1, + sym_primitive_type, + ACTIONS(5666), 1, anon_sym_enum, - ACTIONS(5379), 1, + ACTIONS(5668), 1, anon_sym_class, - ACTIONS(5381), 1, + ACTIONS(5670), 1, anon_sym_struct, - ACTIONS(5383), 1, + ACTIONS(5672), 1, anon_sym_union, - ACTIONS(5385), 1, + ACTIONS(5674), 1, anon_sym_typename, - STATE(2737), 1, + STATE(3271), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2976), 1, + STATE(3395), 1, sym_template_type, - STATE(3123), 1, - sym_decltype_auto, - STATE(3198), 1, + STATE(3490), 1, sym_qualified_type_identifier, - STATE(4654), 1, + STATE(3494), 1, + sym_decltype_auto, + STATE(4940), 1, sym__type_specifier, - STATE(5131), 1, + STATE(5394), 1, sym__scope_resolution, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - STATE(3036), 2, + STATE(4370), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(59), 4, @@ -275693,7 +308120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(3139), 8, + STATE(3481), 8, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -275702,237 +308129,339 @@ static const uint16_t ts_small_parse_table[] = { sym_decltype, sym_class_specifier, sym_dependent_type, - [82676] = 11, + [105075] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(1469), 1, + anon_sym_LBRACE, + ACTIONS(5470), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(5439), 1, - anon_sym_DOT, - ACTIONS(5441), 1, - anon_sym_DASH_GT, - STATE(2534), 1, + STATE(3442), 2, sym_argument_list, - ACTIONS(4894), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5443), 2, + sym_initializer_list, + ACTIONS(4328), 9, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5445), 3, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5026), 9, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(5024), 19, + anon_sym_DOT, + ACTIONS(4326), 27, anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_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_LT_EQ_GT, - [82740] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4958), 17, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(4956), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - anon_sym_GT2, - [82788] = 3, + [105129] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4962), 17, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(4960), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(4251), 1, + anon_sym___attribute__, + ACTIONS(4255), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4257), 1, + anon_sym___declspec, + ACTIONS(4261), 1, + anon_sym_virtual, + ACTIONS(5484), 1, + sym_auto, + ACTIONS(5486), 1, + anon_sym_decltype, + ACTIONS(5678), 1, + anon_sym_SEMI, + STATE(3441), 1, + sym_decltype_auto, + ACTIONS(4249), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(5482), 5, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_COLON_COLON, + ACTIONS(5480), 6, + anon_sym_AMP, + anon_sym___based, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [82836] = 3, + sym_identifier, + anon_sym_template, + anon_sym_operator, + ACTIONS(4259), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3321), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + [105199] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(4264), 16, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2428), 1, sym_identifier, + ACTIONS(2434), 1, + anon_sym_COLON_COLON, + ACTIONS(2438), 1, + sym_primitive_type, + ACTIONS(5666), 1, + anon_sym_enum, + ACTIONS(5668), 1, + anon_sym_class, + ACTIONS(5670), 1, + anon_sym_struct, + ACTIONS(5672), 1, + anon_sym_union, + ACTIONS(5674), 1, anon_sym_typename, + STATE(3271), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3395), 1, + sym_template_type, + STATE(3490), 1, + sym_qualified_type_identifier, + STATE(3494), 1, + sym_decltype_auto, + STATE(4893), 1, + sym__type_specifier, + STATE(5394), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + STATE(4370), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3481), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [105287] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(976), 1, anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - sym_nullptr, - ACTIONS(4266), 24, - sym_raw_string_literal, + ACTIONS(2428), 1, + sym_identifier, + ACTIONS(2434), 1, + anon_sym_COLON_COLON, + ACTIONS(2438), 1, + sym_primitive_type, + ACTIONS(5666), 1, + anon_sym_enum, + ACTIONS(5668), 1, + anon_sym_class, + ACTIONS(5670), 1, + anon_sym_struct, + ACTIONS(5672), 1, + anon_sym_union, + ACTIONS(5674), 1, + anon_sym_typename, + STATE(3271), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3395), 1, + sym_template_type, + STATE(3490), 1, + sym_qualified_type_identifier, + STATE(3494), 1, + sym_decltype_auto, + STATE(4914), 1, + sym__type_specifier, + STATE(5394), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + STATE(3374), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3481), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [105375] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4251), 1, + anon_sym___attribute__, + ACTIONS(4255), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4257), 1, + anon_sym___declspec, + ACTIONS(4261), 1, + anon_sym_virtual, + ACTIONS(5484), 1, + sym_auto, + ACTIONS(5486), 1, + anon_sym_decltype, + ACTIONS(5680), 1, + anon_sym_SEMI, + STATE(3441), 1, + sym_decltype_auto, + ACTIONS(4249), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(5482), 5, anon_sym_LPAREN2, - anon_sym_BANG, anon_sym_TILDE, anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, + anon_sym_AMP_AMP, anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(5480), 6, + anon_sym_AMP, + anon_sym___based, anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [82884] = 23, + sym_identifier, + anon_sym_template, + anon_sym_operator, + ACTIONS(4259), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3321), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + [105445] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(105), 1, sym_auto, ACTIONS(107), 1, anon_sym_decltype, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(2809), 1, - sym_primitive_type, - ACTIONS(3001), 1, + ACTIONS(2428), 1, sym_identifier, - ACTIONS(3007), 1, + ACTIONS(2434), 1, anon_sym_COLON_COLON, - ACTIONS(5377), 1, + ACTIONS(2438), 1, + sym_primitive_type, + ACTIONS(2440), 1, anon_sym_enum, - ACTIONS(5379), 1, + ACTIONS(2442), 1, anon_sym_class, - ACTIONS(5381), 1, + ACTIONS(2444), 1, anon_sym_struct, - ACTIONS(5383), 1, + ACTIONS(2446), 1, anon_sym_union, - ACTIONS(5385), 1, + ACTIONS(2448), 1, anon_sym_typename, - STATE(2737), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2976), 1, + STATE(3395), 1, sym_template_type, - STATE(3123), 1, - sym_decltype_auto, - STATE(3198), 1, + STATE(3490), 1, sym_qualified_type_identifier, - STATE(4629), 1, + STATE(3494), 1, + sym_decltype_auto, + STATE(3511), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4205), 1, sym__type_specifier, - STATE(5131), 1, + STATE(5394), 1, sym__scope_resolution, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - STATE(4110), 2, + STATE(4370), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(59), 4, + ACTIONS(2436), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -275946,7 +308475,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(3139), 8, + STATE(3481), 8, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -275955,139 +308484,172 @@ static const uint16_t ts_small_parse_table[] = { sym_decltype, sym_class_specifier, sym_dependent_type, - [82972] = 3, + [105533] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(3902), 17, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1521), 1, + anon_sym_TILDE, + ACTIONS(3137), 1, + anon_sym_LPAREN2, + ACTIONS(4755), 1, + sym_identifier, + ACTIONS(4759), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(4765), 1, + anon_sym_COLON_COLON, + ACTIONS(4767), 1, + anon_sym_LBRACK, + ACTIONS(5682), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5686), 1, + anon_sym_AMP_AMP, + ACTIONS(5688), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(5690), 1, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(3904), 23, - anon_sym_DOT_DOT_DOT, + STATE(4345), 1, + sym_parameter_list, + STATE(4973), 1, + sym__scope_resolution, + STATE(5275), 1, + sym__declarator, + STATE(5506), 1, + sym__abstract_declarator, + STATE(5936), 1, + sym_variadic_declarator, + STATE(6116), 1, + sym_variadic_reference_declarator, + STATE(7300), 1, + sym_ms_based_modifier, + ACTIONS(5684), 2, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [83020] = 3, + anon_sym_RPAREN, + STATE(7236), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5127), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(5080), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [105625] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3906), 17, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(3908), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(4251), 1, + anon_sym___attribute__, + ACTIONS(4255), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4257), 1, + anon_sym___declspec, + ACTIONS(4261), 1, + anon_sym_virtual, + ACTIONS(5484), 1, + sym_auto, + ACTIONS(5486), 1, + anon_sym_decltype, + ACTIONS(5692), 1, + anon_sym_SEMI, + STATE(3441), 1, + sym_decltype_auto, + ACTIONS(4249), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(5482), 5, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_COLON_COLON, + ACTIONS(5480), 6, + anon_sym_AMP, + anon_sym___based, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [83068] = 23, + sym_identifier, + anon_sym_template, + anon_sym_operator, + ACTIONS(4259), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3321), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + [105695] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(105), 1, sym_auto, ACTIONS(107), 1, anon_sym_decltype, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(2809), 1, + ACTIONS(2438), 1, sym_primitive_type, - ACTIONS(3001), 1, + ACTIONS(3755), 1, sym_identifier, - ACTIONS(3007), 1, + ACTIONS(3765), 1, anon_sym_COLON_COLON, - ACTIONS(5377), 1, + ACTIONS(5614), 1, anon_sym_enum, - ACTIONS(5379), 1, + ACTIONS(5616), 1, anon_sym_class, - ACTIONS(5381), 1, + ACTIONS(5618), 1, anon_sym_struct, - ACTIONS(5383), 1, + ACTIONS(5620), 1, anon_sym_union, - ACTIONS(5385), 1, + ACTIONS(5622), 1, anon_sym_typename, - STATE(2737), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2976), 1, + STATE(3395), 1, sym_template_type, - STATE(3123), 1, - sym_decltype_auto, - STATE(3198), 1, + STATE(3490), 1, sym_qualified_type_identifier, - STATE(4627), 1, + STATE(3494), 1, + sym_decltype_auto, + STATE(3511), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4102), 1, sym__type_specifier, - STATE(5131), 1, + STATE(5354), 1, sym__scope_resolution, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - STATE(3060), 2, + STATE(4370), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(59), 4, + ACTIONS(2436), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -276101,7 +308663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(3139), 8, + STATE(3481), 8, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -276110,587 +308672,65 @@ static const uint16_t ts_small_parse_table[] = { sym_decltype, sym_class_specifier, sym_dependent_type, - [83156] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3918), 17, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(3920), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [83204] = 13, + [105783] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(1469), 1, + anon_sym_LBRACE, + ACTIONS(5470), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(5439), 1, - anon_sym_DOT, - ACTIONS(5441), 1, - anon_sym_DASH_GT, - ACTIONS(5449), 1, - anon_sym_LT_EQ_GT, - STATE(2534), 1, + STATE(3462), 2, sym_argument_list, - ACTIONS(4894), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5443), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5447), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5445), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5026), 7, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_EQ, - ACTIONS(5024), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [83272] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5485), 1, - anon_sym_LT, - STATE(2547), 1, - sym_template_argument_list, - ACTIONS(5086), 14, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(5084), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [83324] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4966), 17, + sym_initializer_list, + ACTIONS(4324), 9, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_DOT, - ACTIONS(4964), 23, + ACTIONS(4322), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [83372] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(5439), 1, - anon_sym_DOT, - ACTIONS(5441), 1, - anon_sym_DASH_GT, - ACTIONS(5449), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5465), 1, - anon_sym_GT_EQ, - STATE(2534), 1, - sym_argument_list, - ACTIONS(4894), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5443), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5447), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5445), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5463), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(5026), 4, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - ACTIONS(5024), 17, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [83444] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4974), 1, - anon_sym_EQ, - ACTIONS(5439), 1, - anon_sym_DOT, - ACTIONS(5441), 1, - anon_sym_DASH_GT, - ACTIONS(5449), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5451), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5453), 1, - anon_sym_AMP_AMP, - ACTIONS(5455), 1, - anon_sym_PIPE, - ACTIONS(5457), 1, - anon_sym_CARET, - ACTIONS(5459), 1, - anon_sym_AMP, - ACTIONS(5465), 1, - anon_sym_GT_EQ, - STATE(2534), 1, - sym_argument_list, - ACTIONS(4894), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5443), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5447), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5461), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5445), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5463), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4972), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [83528] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(5439), 1, - anon_sym_DOT, - ACTIONS(5441), 1, - anon_sym_DASH_GT, - ACTIONS(5449), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5465), 1, - anon_sym_GT_EQ, - STATE(2534), 1, - sym_argument_list, - ACTIONS(4894), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5443), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5447), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5461), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5445), 3, + anon_sym_RPAREN, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5463), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(5026), 4, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - ACTIONS(5024), 15, - anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [83602] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3882), 17, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(3884), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [83650] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4994), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4998), 1, - anon_sym_EQ, - ACTIONS(5439), 1, - anon_sym_DOT, - ACTIONS(5441), 1, - anon_sym_DASH_GT, - ACTIONS(5449), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5451), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5453), 1, - anon_sym_AMP_AMP, - ACTIONS(5455), 1, - anon_sym_PIPE, - ACTIONS(5457), 1, - anon_sym_CARET, - ACTIONS(5459), 1, - anon_sym_AMP, - ACTIONS(5465), 1, anon_sym_GT_EQ, - STATE(2534), 1, - sym_argument_list, - ACTIONS(4894), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5443), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5447), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5461), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5445), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5463), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4996), 12, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [83736] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4295), 1, - anon_sym_COLON_COLON, - ACTIONS(4297), 16, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - sym_nullptr, - ACTIONS(4299), 23, - sym_raw_string_literal, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [83786] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5016), 17, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(5014), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - anon_sym_GT2, - [83834] = 5, + [105837] = 5, ACTIONS(3), 1, sym_comment, - STATE(3075), 1, + STATE(3391), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(5488), 4, + ACTIONS(5694), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(4092), 9, + ACTIONS(3957), 9, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -276700,7 +308740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - ACTIONS(4090), 26, + ACTIONS(3955), 26, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -276727,91 +308767,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [83886] = 3, + [105889] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(5020), 17, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(5018), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [83934] = 23, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2428), 1, + sym_identifier, + ACTIONS(2434), 1, + anon_sym_COLON_COLON, + ACTIONS(2438), 1, + sym_primitive_type, + ACTIONS(5666), 1, + anon_sym_enum, + ACTIONS(5668), 1, + anon_sym_class, + ACTIONS(5670), 1, + anon_sym_struct, + ACTIONS(5672), 1, + anon_sym_union, + ACTIONS(5674), 1, + anon_sym_typename, + STATE(3271), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3395), 1, + sym_template_type, + STATE(3490), 1, + sym_qualified_type_identifier, + STATE(3494), 1, + sym_decltype_auto, + STATE(4929), 1, + sym__type_specifier, + STATE(5394), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + STATE(3366), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3481), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [105977] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(105), 1, sym_auto, ACTIONS(107), 1, anon_sym_decltype, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(2809), 1, - sym_primitive_type, - ACTIONS(3001), 1, + ACTIONS(2428), 1, sym_identifier, - ACTIONS(3007), 1, + ACTIONS(2434), 1, anon_sym_COLON_COLON, - ACTIONS(5377), 1, + ACTIONS(2438), 1, + sym_primitive_type, + ACTIONS(5666), 1, anon_sym_enum, - ACTIONS(5379), 1, + ACTIONS(5668), 1, anon_sym_class, - ACTIONS(5381), 1, + ACTIONS(5670), 1, anon_sym_struct, - ACTIONS(5383), 1, + ACTIONS(5672), 1, anon_sym_union, - ACTIONS(5385), 1, + ACTIONS(5674), 1, anon_sym_typename, - STATE(2737), 1, + STATE(3271), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2976), 1, + STATE(3395), 1, sym_template_type, - STATE(3123), 1, - sym_decltype_auto, - STATE(3198), 1, + STATE(3490), 1, sym_qualified_type_identifier, - STATE(4638), 1, + STATE(3494), 1, + sym_decltype_auto, + STATE(4913), 1, sym__type_specifier, - STATE(5131), 1, + STATE(5394), 1, sym__scope_resolution, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - STATE(3084), 2, + STATE(3370), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(59), 4, @@ -276828,7 +308888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(3139), 8, + STATE(3481), 8, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -276837,331 +308897,280 @@ static const uint16_t ts_small_parse_table[] = { sym_decltype, sym_class_specifier, sym_dependent_type, - [84022] = 17, + [106065] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4251), 1, + anon_sym___attribute__, + ACTIONS(4255), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4257), 1, + anon_sym___declspec, + ACTIONS(4261), 1, + anon_sym_virtual, + ACTIONS(5484), 1, + sym_auto, + ACTIONS(5486), 1, + anon_sym_decltype, + ACTIONS(5697), 1, + anon_sym_SEMI, + STATE(3441), 1, + sym_decltype_auto, + ACTIONS(4249), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(5482), 5, anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(5439), 1, - anon_sym_DOT, - ACTIONS(5441), 1, - anon_sym_DASH_GT, - ACTIONS(5449), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5459), 1, - anon_sym_AMP, - ACTIONS(5465), 1, - anon_sym_GT_EQ, - STATE(2534), 1, - sym_argument_list, - ACTIONS(4894), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5443), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5447), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5461), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5026), 3, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_EQ, - ACTIONS(5445), 3, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5463), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(5024), 15, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [84098] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5473), 1, anon_sym_AMP_AMP, - ACTIONS(4304), 17, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + anon_sym_COLON_COLON, + ACTIONS(5480), 6, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(4306), 22, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym___based, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [84148] = 3, + sym_identifier, + anon_sym_template, + anon_sym_operator, + ACTIONS(4259), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3321), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + [106135] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4970), 17, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(4968), 23, + ACTIONS(4125), 1, + anon_sym_COLON_COLON, + ACTIONS(4288), 12, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_GT2, - [84196] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3874), 17, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(4290), 27, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(3876), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [84244] = 3, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [106185] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(3874), 17, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(3876), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1521), 1, + anon_sym_TILDE, + ACTIONS(3137), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(4755), 1, + sym_identifier, + ACTIONS(4765), 1, + anon_sym_COLON_COLON, + ACTIONS(4767), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [84292] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3874), 17, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(4833), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(5682), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5699), 1, + anon_sym_AMP_AMP, + ACTIONS(5701), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(5703), 1, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(3876), 23, - anon_sym_DOT_DOT_DOT, + STATE(4328), 1, + sym_parameter_list, + STATE(4973), 1, + sym__scope_resolution, + STATE(5229), 1, + sym__declarator, + STATE(5499), 1, + sym__abstract_declarator, + STATE(5936), 1, + sym_variadic_declarator, + STATE(6116), 1, + sym_variadic_reference_declarator, + STATE(7300), 1, + sym_ms_based_modifier, + ACTIONS(5684), 2, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, anon_sym_GT2, - [84340] = 23, + STATE(7236), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5127), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(5080), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [106277] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2428), 1, + sym_identifier, + ACTIONS(2434), 1, + anon_sym_COLON_COLON, + ACTIONS(2438), 1, + sym_primitive_type, + ACTIONS(5666), 1, + anon_sym_enum, + ACTIONS(5668), 1, + anon_sym_class, + ACTIONS(5670), 1, + anon_sym_struct, + ACTIONS(5672), 1, + anon_sym_union, + ACTIONS(5674), 1, + anon_sym_typename, + STATE(3271), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3395), 1, + sym_template_type, + STATE(3490), 1, + sym_qualified_type_identifier, + STATE(3494), 1, + sym_decltype_auto, + STATE(4916), 1, + sym__type_specifier, + STATE(5394), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + STATE(3401), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3481), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [106365] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(105), 1, sym_auto, ACTIONS(107), 1, anon_sym_decltype, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(2809), 1, - sym_primitive_type, - ACTIONS(3001), 1, + ACTIONS(2428), 1, sym_identifier, - ACTIONS(3007), 1, + ACTIONS(2434), 1, anon_sym_COLON_COLON, - ACTIONS(5377), 1, + ACTIONS(2438), 1, + sym_primitive_type, + ACTIONS(5666), 1, anon_sym_enum, - ACTIONS(5379), 1, + ACTIONS(5668), 1, anon_sym_class, - ACTIONS(5381), 1, + ACTIONS(5670), 1, anon_sym_struct, - ACTIONS(5383), 1, + ACTIONS(5672), 1, anon_sym_union, - ACTIONS(5385), 1, + ACTIONS(5674), 1, anon_sym_typename, - STATE(2737), 1, + STATE(3271), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2976), 1, + STATE(3395), 1, sym_template_type, - STATE(3123), 1, - sym_decltype_auto, - STATE(3198), 1, + STATE(3490), 1, sym_qualified_type_identifier, - STATE(4635), 1, + STATE(3494), 1, + sym_decltype_auto, + STATE(4905), 1, sym__type_specifier, - STATE(5131), 1, + STATE(5394), 1, sym__scope_resolution, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - STATE(4110), 2, + STATE(3411), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(59), 4, @@ -277178,7 +309187,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(3139), 8, + STATE(3481), 8, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -277187,45 +309196,54 @@ static const uint16_t ts_small_parse_table[] = { sym_decltype, sym_class_specifier, sym_dependent_type, - [84428] = 14, + [106453] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3926), 1, - anon_sym___attribute__, - ACTIONS(3930), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3932), 1, - anon_sym___declspec, - ACTIONS(3936), 1, - anon_sym_virtual, - ACTIONS(4984), 1, + ACTIONS(105), 1, sym_auto, - ACTIONS(4986), 1, + ACTIONS(107), 1, anon_sym_decltype, - ACTIONS(5491), 1, - anon_sym_SEMI, - STATE(3142), 1, - sym_decltype_auto, - ACTIONS(3924), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(5042), 5, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - ACTIONS(5040), 6, - anon_sym_AMP, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, + ACTIONS(976), 1, anon_sym_template, - anon_sym_operator, - ACTIONS(3934), 8, + ACTIONS(2438), 1, + sym_primitive_type, + ACTIONS(3755), 1, + sym_identifier, + ACTIONS(3765), 1, + anon_sym_COLON_COLON, + ACTIONS(5616), 1, + anon_sym_class, + ACTIONS(5618), 1, + anon_sym_struct, + ACTIONS(5620), 1, + anon_sym_union, + ACTIONS(5624), 1, + anon_sym_enum, + ACTIONS(5626), 1, + anon_sym_typename, + STATE(3395), 1, + sym_template_type, + STATE(3490), 1, + sym_qualified_type_identifier, + STATE(3494), 1, + sym_decltype_auto, + STATE(3511), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4125), 1, + sym__type_specifier, + STATE(5354), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + STATE(4370), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2436), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -277234,193 +309252,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(2922), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual_function_specifier, - aux_sym__declaration_specifiers_repeat1, - [84498] = 3, + STATE(3481), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [106541] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3811), 16, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - sym_nullptr, - ACTIONS(3816), 24, - sym_raw_string_literal, + ACTIONS(3165), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_BANG, anon_sym_TILDE, anon_sym_STAR, - anon_sym_AMP, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [84546] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4372), 17, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(4374), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, anon_sym_GT2, - [84594] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3782), 16, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - sym_nullptr, - ACTIONS(3784), 24, - sym_raw_string_literal, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, + ACTIONS(3163), 27, anon_sym_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [84642] = 23, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + [106589] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(105), 1, sym_auto, ACTIONS(107), 1, anon_sym_decltype, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(2809), 1, - sym_primitive_type, - ACTIONS(3365), 1, + ACTIONS(2428), 1, sym_identifier, - ACTIONS(3377), 1, + ACTIONS(2434), 1, anon_sym_COLON_COLON, - ACTIONS(5361), 1, + ACTIONS(2438), 1, + sym_primitive_type, + ACTIONS(5666), 1, + anon_sym_enum, + ACTIONS(5668), 1, anon_sym_class, - ACTIONS(5363), 1, + ACTIONS(5670), 1, anon_sym_struct, - ACTIONS(5365), 1, + ACTIONS(5672), 1, anon_sym_union, - ACTIONS(5373), 1, - anon_sym_enum, - ACTIONS(5375), 1, + ACTIONS(5674), 1, anon_sym_typename, - STATE(2976), 1, - sym_template_type, - STATE(3123), 1, - sym_decltype_auto, - STATE(3184), 1, + STATE(3271), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3198), 1, + STATE(3395), 1, + sym_template_type, + STATE(3490), 1, sym_qualified_type_identifier, - STATE(3478), 1, + STATE(3494), 1, + sym_decltype_auto, + STATE(4923), 1, sym__type_specifier, - STATE(5144), 1, + STATE(5394), 1, sym__scope_resolution, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - STATE(4110), 2, + STATE(4370), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(3009), 4, + ACTIONS(59), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -277434,7 +309362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(3139), 8, + STATE(3481), 8, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -277443,45 +309371,54 @@ static const uint16_t ts_small_parse_table[] = { sym_decltype, sym_class_specifier, sym_dependent_type, - [84730] = 14, + [106677] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3926), 1, - anon_sym___attribute__, - ACTIONS(3930), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3932), 1, - anon_sym___declspec, - ACTIONS(3936), 1, - anon_sym_virtual, - ACTIONS(4984), 1, + ACTIONS(105), 1, sym_auto, - ACTIONS(4986), 1, + ACTIONS(107), 1, anon_sym_decltype, - ACTIONS(5493), 1, - anon_sym_SEMI, - STATE(3142), 1, - sym_decltype_auto, - ACTIONS(3924), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(5042), 5, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - ACTIONS(5040), 6, - anon_sym_AMP, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, + ACTIONS(976), 1, anon_sym_template, - anon_sym_operator, - ACTIONS(3934), 8, + ACTIONS(2428), 1, + sym_identifier, + ACTIONS(2434), 1, + anon_sym_COLON_COLON, + ACTIONS(2438), 1, + sym_primitive_type, + ACTIONS(2442), 1, + anon_sym_class, + ACTIONS(2444), 1, + anon_sym_struct, + ACTIONS(2446), 1, + anon_sym_union, + ACTIONS(5588), 1, + anon_sym_enum, + ACTIONS(5590), 1, + anon_sym_typename, + STATE(3395), 1, + sym_template_type, + STATE(3490), 1, + sym_qualified_type_identifier, + STATE(3494), 1, + sym_decltype_auto, + STATE(3511), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4208), 1, + sym__type_specifier, + STATE(5394), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + STATE(4370), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2436), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -277490,25 +309427,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(2922), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual_function_specifier, - aux_sym__declaration_specifiers_repeat1, - [84800] = 6, + STATE(3481), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [106765] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, - anon_sym_COLON_COLON, - ACTIONS(5495), 1, - anon_sym_LT, - STATE(2201), 1, - sym_template_argument_list, - ACTIONS(4191), 9, + ACTIONS(5392), 1, + sym_literal_suffix, + ACTIONS(3414), 15, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -277516,9 +309449,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_COLON, + anon_sym_LT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(3740), 28, + ACTIONS(3419), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -277534,185 +309473,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [84854] = 3, + [106815] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4853), 17, + ACTIONS(1469), 1, + anon_sym_LBRACE, + ACTIONS(5470), 1, + anon_sym_LPAREN2, + STATE(3473), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4351), 9, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_DOT, - ACTIONS(4851), 23, + ACTIONS(4349), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - anon_sym_GT2, - [84902] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1531), 1, - sym_primitive_type, - ACTIONS(1533), 1, - anon_sym_enum, - ACTIONS(1535), 1, - anon_sym_class, - ACTIONS(1537), 1, - anon_sym_struct, - ACTIONS(1539), 1, - anon_sym_union, - ACTIONS(1541), 1, - sym_auto, - ACTIONS(1543), 1, - anon_sym_decltype, - ACTIONS(3365), 1, - sym_identifier, - ACTIONS(4060), 1, - anon_sym_COLON_COLON, - ACTIONS(5371), 1, - anon_sym_typename, - STATE(2976), 1, - sym_template_type, - STATE(3366), 1, - sym_decltype_auto, - STATE(3400), 1, - sym_qualified_type_identifier, - STATE(3419), 1, - sym__type_specifier, - STATE(3690), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5072), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - STATE(4110), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(5347), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(57), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(3371), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [84990] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4295), 1, - anon_sym_COLON_COLON, - ACTIONS(4293), 16, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - sym_nullptr, - ACTIONS(4291), 23, - sym_raw_string_literal, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [85040] = 6, + [106869] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, - anon_sym_COLON_COLON, - ACTIONS(5497), 1, - anon_sym_LT, - STATE(2201), 1, - sym_template_argument_list, - ACTIONS(3752), 9, + ACTIONS(4841), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -277720,9 +309541,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_COLON, + anon_sym_LT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(3757), 28, + sym_literal_suffix, + ACTIONS(4839), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -277738,104 +309566,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [85094] = 3, + [106917] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3759), 17, + ACTIONS(4922), 9, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_DOT, - ACTIONS(3764), 23, + ACTIONS(2507), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - anon_sym_GT2, - [85142] = 23, + [106965] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(105), 1, sym_auto, ACTIONS(107), 1, anon_sym_decltype, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(2809), 1, - sym_primitive_type, - ACTIONS(3001), 1, + ACTIONS(2428), 1, sym_identifier, - ACTIONS(3007), 1, + ACTIONS(2434), 1, anon_sym_COLON_COLON, - ACTIONS(5377), 1, + ACTIONS(2438), 1, + sym_primitive_type, + ACTIONS(5666), 1, anon_sym_enum, - ACTIONS(5379), 1, + ACTIONS(5668), 1, anon_sym_class, - ACTIONS(5381), 1, + ACTIONS(5670), 1, anon_sym_struct, - ACTIONS(5383), 1, + ACTIONS(5672), 1, anon_sym_union, - ACTIONS(5385), 1, + ACTIONS(5674), 1, anon_sym_typename, - STATE(2737), 1, + STATE(3271), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2976), 1, + STATE(3395), 1, sym_template_type, - STATE(3123), 1, - sym_decltype_auto, - STATE(3198), 1, + STATE(3490), 1, sym_qualified_type_identifier, - STATE(4666), 1, + STATE(3494), 1, + sym_decltype_auto, + STATE(4898), 1, sym__type_specifier, - STATE(5131), 1, + STATE(5394), 1, sym__scope_resolution, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - STATE(4110), 2, + STATE(4370), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(59), 4, @@ -277852,7 +309676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(3139), 8, + STATE(3481), 8, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -277861,181 +309685,203 @@ static const uint16_t ts_small_parse_table[] = { sym_decltype, sym_class_specifier, sym_dependent_type, - [85230] = 3, + [107053] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5032), 17, + ACTIONS(3424), 1, + anon_sym_COLON_COLON, + STATE(3279), 1, + sym_template_argument_list, + ACTIONS(4159), 11, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_DOT, - ACTIONS(5030), 23, + ACTIONS(4157), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, anon_sym_GT2, - [85278] = 3, + [107105] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1535), 1, + sym_primitive_type, + ACTIONS(1545), 1, + sym_auto, + ACTIONS(1547), 1, + anon_sym_decltype, + ACTIONS(2428), 1, + sym_identifier, + ACTIONS(5654), 1, + anon_sym_COLON_COLON, + ACTIONS(5656), 1, + anon_sym_enum, + ACTIONS(5658), 1, + anon_sym_class, + ACTIONS(5660), 1, + anon_sym_struct, + ACTIONS(5662), 1, + anon_sym_union, + ACTIONS(5664), 1, + anon_sym_typename, + STATE(3395), 1, + sym_template_type, + STATE(4003), 1, + sym_qualified_type_identifier, + STATE(4021), 1, + sym_decltype_auto, + STATE(4130), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4224), 1, + sym__type_specifier, + STATE(5416), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + STATE(4370), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(5650), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(57), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(4001), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [107193] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5036), 17, + ACTIONS(5077), 9, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_DOT, - ACTIONS(5034), 23, + ACTIONS(5075), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [85326] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3759), 17, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(3764), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - anon_sym_GT2, - [85374] = 23, + [107241] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(105), 1, sym_auto, ACTIONS(107), 1, anon_sym_decltype, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(2809), 1, - sym_primitive_type, - ACTIONS(3001), 1, + ACTIONS(2428), 1, sym_identifier, - ACTIONS(3007), 1, + ACTIONS(2434), 1, anon_sym_COLON_COLON, - ACTIONS(5377), 1, + ACTIONS(2438), 1, + sym_primitive_type, + ACTIONS(5666), 1, anon_sym_enum, - ACTIONS(5379), 1, + ACTIONS(5668), 1, anon_sym_class, - ACTIONS(5381), 1, + ACTIONS(5670), 1, anon_sym_struct, - ACTIONS(5383), 1, + ACTIONS(5672), 1, anon_sym_union, - ACTIONS(5385), 1, + ACTIONS(5674), 1, anon_sym_typename, - STATE(2737), 1, + STATE(3271), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2976), 1, + STATE(3395), 1, sym_template_type, - STATE(3123), 1, - sym_decltype_auto, - STATE(3198), 1, + STATE(3490), 1, sym_qualified_type_identifier, - STATE(4622), 1, + STATE(3494), 1, + sym_decltype_auto, + STATE(4906), 1, sym__type_specifier, - STATE(5131), 1, + STATE(5394), 1, sym__scope_resolution, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - STATE(3108), 2, + STATE(4370), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(59), 4, @@ -278052,7 +309898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(3139), 8, + STATE(3481), 8, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -278061,94 +309907,49 @@ static const uint16_t ts_small_parse_table[] = { sym_decltype, sym_class_specifier, sym_dependent_type, - [85462] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3759), 17, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(3764), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [85510] = 23, + [107329] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(1531), 1, - sym_primitive_type, - ACTIONS(1541), 1, - sym_auto, - ACTIONS(1543), 1, - anon_sym_decltype, - ACTIONS(3001), 1, + ACTIONS(5566), 1, sym_identifier, - ACTIONS(5345), 1, + ACTIONS(5568), 1, anon_sym_COLON_COLON, - ACTIONS(5349), 1, + ACTIONS(5572), 1, + sym_primitive_type, + ACTIONS(5574), 1, anon_sym_enum, - ACTIONS(5351), 1, + ACTIONS(5576), 1, anon_sym_class, - ACTIONS(5353), 1, + ACTIONS(5578), 1, anon_sym_struct, - ACTIONS(5355), 1, + ACTIONS(5580), 1, anon_sym_union, - ACTIONS(5357), 1, + ACTIONS(5582), 1, + sym_auto, + ACTIONS(5584), 1, + anon_sym_decltype, + ACTIONS(5586), 1, anon_sym_typename, - STATE(2976), 1, + STATE(4152), 1, + sym__type_specifier, + STATE(4268), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4434), 1, sym_template_type, - STATE(3366), 1, - sym_decltype_auto, - STATE(3400), 1, + STATE(4506), 1, sym_qualified_type_identifier, - STATE(3690), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3972), 1, - sym__type_specifier, - STATE(5088), 1, + STATE(4508), 1, + sym_decltype_auto, + STATE(5387), 1, sym__scope_resolution, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - STATE(4110), 2, + STATE(4370), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(5347), 4, + ACTIONS(5570), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -278162,7 +309963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(3371), 8, + STATE(4593), 8, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -278171,95 +309972,161 @@ static const uint16_t ts_small_parse_table[] = { sym_decltype, sym_class_specifier, sym_dependent_type, - [85598] = 4, + [107417] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4295), 1, + ACTIONS(4251), 1, + anon_sym___attribute__, + ACTIONS(4255), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4257), 1, + anon_sym___declspec, + ACTIONS(4261), 1, + anon_sym_virtual, + ACTIONS(5484), 1, + sym_auto, + ACTIONS(5486), 1, + anon_sym_decltype, + ACTIONS(5705), 1, + anon_sym_SEMI, + STATE(3441), 1, + sym_decltype_auto, + ACTIONS(4249), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(5482), 5, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_COLON_COLON, - ACTIONS(4293), 16, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, + ACTIONS(5480), 6, + anon_sym_AMP, + anon_sym___based, + anon_sym_LBRACK, sym_identifier, - anon_sym_typename, anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - sym_nullptr, - ACTIONS(4291), 23, - sym_raw_string_literal, + anon_sym_operator, + ACTIONS(4259), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3321), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + [107487] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4251), 1, + anon_sym___attribute__, + ACTIONS(4255), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4257), 1, + anon_sym___declspec, + ACTIONS(4261), 1, + anon_sym_virtual, + ACTIONS(5484), 1, + sym_auto, + ACTIONS(5486), 1, + anon_sym_decltype, + ACTIONS(5707), 1, + anon_sym_SEMI, + STATE(3441), 1, + sym_decltype_auto, + ACTIONS(4249), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(5482), 5, anon_sym_LPAREN2, - anon_sym_BANG, anon_sym_TILDE, anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + ACTIONS(5480), 6, anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym___based, anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [85648] = 23, + sym_identifier, + anon_sym_template, + anon_sym_operator, + ACTIONS(4259), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3321), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + [107557] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(105), 1, - sym_auto, - ACTIONS(107), 1, - anon_sym_decltype, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(2809), 1, + ACTIONS(1535), 1, sym_primitive_type, - ACTIONS(3001), 1, - sym_identifier, - ACTIONS(3007), 1, - anon_sym_COLON_COLON, - ACTIONS(5377), 1, + ACTIONS(1537), 1, anon_sym_enum, - ACTIONS(5379), 1, + ACTIONS(1539), 1, anon_sym_class, - ACTIONS(5381), 1, + ACTIONS(1541), 1, anon_sym_struct, - ACTIONS(5383), 1, + ACTIONS(1543), 1, anon_sym_union, - ACTIONS(5385), 1, + ACTIONS(1545), 1, + sym_auto, + ACTIONS(1547), 1, + anon_sym_decltype, + ACTIONS(3755), 1, + sym_identifier, + ACTIONS(4731), 1, + anon_sym_COLON_COLON, + ACTIONS(5652), 1, anon_sym_typename, - STATE(2737), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2976), 1, + STATE(3395), 1, sym_template_type, - STATE(3123), 1, - sym_decltype_auto, - STATE(3198), 1, + STATE(4003), 1, sym_qualified_type_identifier, - STATE(4630), 1, + STATE(4021), 1, + sym_decltype_auto, + STATE(4073), 1, sym__type_specifier, - STATE(5131), 1, + STATE(4130), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5352), 1, sym__scope_resolution, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - STATE(2966), 2, + STATE(4370), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(59), 4, + ACTIONS(5650), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -278273,7 +310140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(3139), 8, + STATE(4001), 8, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -278282,46 +310149,96 @@ static const uint16_t ts_small_parse_table[] = { sym_decltype, sym_class_specifier, sym_dependent_type, - [85736] = 23, + [107645] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3424), 1, + anon_sym_COLON_COLON, + ACTIONS(5458), 1, + anon_sym_LT, + ACTIONS(5711), 1, + anon_sym_EQ, + STATE(3279), 1, + sym_template_argument_list, + ACTIONS(5709), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(3426), 7, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(4095), 27, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [107703] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(105), 1, sym_auto, ACTIONS(107), 1, anon_sym_decltype, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(2809), 1, - sym_primitive_type, - ACTIONS(3001), 1, + ACTIONS(2428), 1, sym_identifier, - ACTIONS(3007), 1, + ACTIONS(2434), 1, anon_sym_COLON_COLON, - ACTIONS(5377), 1, + ACTIONS(2438), 1, + sym_primitive_type, + ACTIONS(5666), 1, anon_sym_enum, - ACTIONS(5379), 1, + ACTIONS(5668), 1, anon_sym_class, - ACTIONS(5381), 1, + ACTIONS(5670), 1, anon_sym_struct, - ACTIONS(5383), 1, + ACTIONS(5672), 1, anon_sym_union, - ACTIONS(5385), 1, + ACTIONS(5674), 1, anon_sym_typename, - STATE(2737), 1, + STATE(3271), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2976), 1, + STATE(3395), 1, sym_template_type, - STATE(3123), 1, - sym_decltype_auto, - STATE(3198), 1, + STATE(3490), 1, sym_qualified_type_identifier, - STATE(4659), 1, + STATE(3494), 1, + sym_decltype_auto, + STATE(4930), 1, sym__type_specifier, - STATE(5131), 1, + STATE(5394), 1, sym__scope_resolution, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - STATE(3097), 2, + STATE(3383), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(59), 4, @@ -278338,7 +310255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(3139), 8, + STATE(3481), 8, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -278347,91 +310264,91 @@ static const uint16_t ts_small_parse_table[] = { sym_decltype, sym_class_specifier, sym_dependent_type, - [85824] = 3, + [107791] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3759), 17, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(3764), 23, + ACTIONS(3169), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_GT2, - [85872] = 23, + ACTIONS(3167), 27, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + [107839] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(105), 1, sym_auto, ACTIONS(107), 1, anon_sym_decltype, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(2809), 1, - sym_primitive_type, - ACTIONS(3001), 1, + ACTIONS(2428), 1, sym_identifier, - ACTIONS(3007), 1, + ACTIONS(2434), 1, anon_sym_COLON_COLON, - ACTIONS(5377), 1, + ACTIONS(2438), 1, + sym_primitive_type, + ACTIONS(5666), 1, anon_sym_enum, - ACTIONS(5379), 1, + ACTIONS(5668), 1, anon_sym_class, - ACTIONS(5381), 1, + ACTIONS(5670), 1, anon_sym_struct, - ACTIONS(5383), 1, + ACTIONS(5672), 1, anon_sym_union, - ACTIONS(5385), 1, + ACTIONS(5674), 1, anon_sym_typename, - STATE(2737), 1, + STATE(3271), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2976), 1, + STATE(3395), 1, sym_template_type, - STATE(3123), 1, - sym_decltype_auto, - STATE(3198), 1, + STATE(3490), 1, sym_qualified_type_identifier, - STATE(4626), 1, + STATE(3494), 1, + sym_decltype_auto, + STATE(4896), 1, sym__type_specifier, - STATE(5131), 1, + STATE(5394), 1, sym__scope_resolution, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - STATE(4110), 2, + STATE(3407), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(59), 4, @@ -278448,7 +310365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(3139), 8, + STATE(3481), 8, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -278457,139 +310374,26 @@ static const uint16_t ts_small_parse_table[] = { sym_decltype, sym_class_specifier, sym_dependent_type, - [85960] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3759), 17, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT, - ACTIONS(3764), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [86008] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(5439), 1, - anon_sym_DOT, - ACTIONS(5441), 1, - anon_sym_DASH_GT, - ACTIONS(5449), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5457), 1, - anon_sym_CARET, - ACTIONS(5459), 1, - anon_sym_AMP, - ACTIONS(5465), 1, - anon_sym_GT_EQ, - STATE(2534), 1, - sym_argument_list, - ACTIONS(4894), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5026), 2, - anon_sym_PIPE, - anon_sym_EQ, - ACTIONS(5443), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5447), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5461), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5445), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5463), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(5024), 15, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [86086] = 3, + [107927] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3119), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(5594), 1, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(3117), 27, - anon_sym_AMP, - anon_sym_extern, + ACTIONS(5716), 1, anon_sym___attribute__, + ACTIONS(5719), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5722), 1, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, + ACTIONS(5728), 1, + anon_sym_virtual, + ACTIONS(5713), 5, + anon_sym_extern, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, + ACTIONS(5725), 8, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -278598,379 +310402,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, + STATE(3420), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(5592), 14, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_virtual, - anon_sym_explicit, + sym_auto, + anon_sym_decltype, + anon_sym_typename, anon_sym_template, - anon_sym_operator, - anon_sym_try, - [86134] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(5026), 1, - anon_sym_EQ, - ACTIONS(5439), 1, - anon_sym_DOT, - ACTIONS(5441), 1, - anon_sym_DASH_GT, - ACTIONS(5449), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5455), 1, - anon_sym_PIPE, - ACTIONS(5457), 1, - anon_sym_CARET, - ACTIONS(5459), 1, - anon_sym_AMP, - ACTIONS(5465), 1, - anon_sym_GT_EQ, - STATE(2534), 1, - sym_argument_list, - ACTIONS(4894), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5443), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5447), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5461), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5445), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5463), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(5024), 15, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [86214] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(5026), 1, - anon_sym_EQ, - ACTIONS(5439), 1, - anon_sym_DOT, - ACTIONS(5441), 1, - anon_sym_DASH_GT, - ACTIONS(5449), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5453), 1, - anon_sym_AMP_AMP, - ACTIONS(5455), 1, - anon_sym_PIPE, - ACTIONS(5457), 1, - anon_sym_CARET, - ACTIONS(5459), 1, - anon_sym_AMP, - ACTIONS(5465), 1, - anon_sym_GT_EQ, - STATE(2534), 1, - sym_argument_list, - ACTIONS(4894), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5443), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5447), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5461), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5445), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(5463), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(5024), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [86296] = 3, + [107989] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4992), 17, + ACTIONS(5009), 9, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_DOT, - ACTIONS(2391), 23, + ACTIONS(5007), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - anon_sym_GT2, - [86344] = 9, + [108037] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(5439), 1, - anon_sym_DOT, - ACTIONS(5441), 1, - anon_sym_DASH_GT, - STATE(2534), 1, - sym_argument_list, - ACTIONS(4894), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5026), 14, + ACTIONS(3424), 1, + anon_sym_COLON_COLON, + ACTIONS(5512), 1, + anon_sym_LT, + STATE(2897), 1, + sym_template_argument_list, + ACTIONS(3407), 10, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(5024), 19, + anon_sym_DOT, + ACTIONS(3412), 27, anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_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_LT_EQ_GT, - [86404] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5500), 16, - anon_sym_DASH, - anon_sym_PLUS, - sym_primitive_type, - anon_sym_sizeof, - sym_true, - sym_false, - sym_null, - sym_identifier, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - sym_nullptr, - ACTIONS(5502), 24, - sym_raw_string_literal, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [86452] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4221), 1, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(5439), 1, - anon_sym_DOT, - ACTIONS(5441), 1, - anon_sym_DASH_GT, - STATE(2534), 1, - sym_argument_list, - ACTIONS(4894), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5445), 3, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(5026), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(5024), 19, - anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_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_LT_EQ_GT, - [86514] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4231), 3, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(4233), 36, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_typename, - anon_sym_template, - [86561] = 3, + anon_sym_GT2, + [108091] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4605), 13, + ACTIONS(4389), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -278984,7 +310536,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(4607), 26, + ACTIONS(4391), 26, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -279011,10 +310563,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [86608] = 3, + [108138] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4575), 13, + ACTIONS(4385), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -279028,7 +310580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(4577), 26, + ACTIONS(4387), 26, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -279055,24 +310607,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [86655] = 3, + [108185] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4452), 13, + ACTIONS(5061), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(5059), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [108232] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5053), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(5051), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [108279] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4137), 12, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_COLON, anon_sym_GT2, - ACTIONS(4454), 26, + ACTIONS(4139), 27, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -279094,15 +310733,16 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_virtual, - anon_sym_template, anon_sym_operator, anon_sym_try, anon_sym_requires, - [86702] = 3, + [108326] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4460), 13, + ACTIONS(4451), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -279116,7 +310756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(4462), 26, + ACTIONS(4453), 26, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -279143,10 +310783,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [86749] = 3, + [108373] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4629), 13, + ACTIONS(4431), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -279160,7 +310800,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(4631), 26, + ACTIONS(4433), 26, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -279187,24 +310827,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [86796] = 3, + [108420] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4464), 13, + ACTIONS(5057), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(5055), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [108467] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5731), 1, + anon_sym_LBRACE, + ACTIONS(5733), 1, + anon_sym_COLON, + STATE(3448), 1, + sym_enumerator_list, + STATE(3449), 1, + sym__enum_base_clause, + ACTIONS(4233), 11, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(4466), 26, + ACTIONS(4235), 24, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -279229,12 +310919,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_virtual, anon_sym_template, anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [86843] = 3, + [108522] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(3182), 1, + sym_enumerator_list, + ACTIONS(4273), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4271), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [108571] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4484), 13, + ACTIONS(4670), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -279248,7 +310981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(4486), 26, + ACTIONS(4672), 26, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -279275,10 +311008,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [86890] = 3, + [108618] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(3166), 1, + sym_enumerator_list, + ACTIONS(4269), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4267), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [108667] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3414), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(3419), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [108714] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4488), 13, + ACTIONS(4427), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -279292,7 +311114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(4490), 26, + ACTIONS(4429), 26, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -279319,160 +311141,195 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [86937] = 9, + [108761] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON, - ACTIONS(5504), 1, - anon_sym_LBRACE, - STATE(3340), 1, - sym_field_declaration_list, - STATE(5394), 1, - sym_virtual_specifier, - STATE(6327), 1, - sym_base_class_clause, - ACTIONS(5145), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4197), 7, - anon_sym_COMMA, + ACTIONS(4055), 1, anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4936), 8, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4934), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - ACTIONS(4199), 25, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [108820] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2602), 1, + sym__enum_base_clause, + STATE(2724), 1, + sym_enumerator_list, + ACTIONS(4153), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4151), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [86996] = 9, + [108871] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON, - ACTIONS(5504), 1, - anon_sym_LBRACE, - STATE(3344), 1, - sym_field_declaration_list, - STATE(5390), 1, - sym_virtual_specifier, - STATE(6295), 1, - sym_base_class_clause, - ACTIONS(5145), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4187), 7, + ACTIONS(5737), 1, + anon_sym_AMP_AMP, + ACTIONS(4985), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4983), 29, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_AMP_AMP, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - ACTIONS(4189), 25, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [87055] = 9, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [108920] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON, - ACTIONS(5504), 1, - anon_sym_LBRACE, - STATE(3408), 1, - sym_field_declaration_list, - STATE(5360), 1, - sym_virtual_specifier, - STATE(6160), 1, - sym_base_class_clause, - ACTIONS(5145), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4193), 7, + ACTIONS(5033), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(5031), 30, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - ACTIONS(4195), 25, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [87114] = 3, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [108967] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4520), 13, + ACTIONS(4658), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -279486,7 +311343,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(4522), 26, + ACTIONS(4660), 26, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -279513,31 +311370,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [87161] = 9, + [109014] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4916), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4914), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [109061] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(5069), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(5067), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, - ACTIONS(5504), 1, - anon_sym_LBRACE, - STATE(3397), 1, - sym_field_declaration_list, - STATE(5355), 1, - sym_virtual_specifier, - STATE(6136), 1, - sym_base_class_clause, - ACTIONS(5145), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4173), 7, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [109108] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4646), 13, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_EQ, - ACTIONS(4175), 25, + anon_sym_GT2, + ACTIONS(4648), 26, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -279560,13 +311498,14 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_virtual, + anon_sym_template, anon_sym_operator, anon_sym_try, anon_sym_requires, - [87220] = 3, + [109155] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4540), 13, + ACTIONS(4638), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -279580,7 +311519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(4542), 26, + ACTIONS(4640), 26, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -279607,30 +311546,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [87267] = 3, + [109202] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4552), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(4077), 3, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4554), 26, - anon_sym_AMP, + ACTIONS(4079), 36, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_static, anon_sym_register, anon_sym_inline, @@ -279643,31 +311575,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, sym_identifier, sym_auto, anon_sym_decltype, anon_sym_virtual, + anon_sym_typename, anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [87314] = 3, + [109249] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4291), 12, + ACTIONS(4483), 13, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, anon_sym_GT2, - ACTIONS(4293), 27, + ACTIONS(4485), 26, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -279689,37 +311629,29 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_virtual, + anon_sym_template, anon_sym_operator, anon_sym_try, anon_sym_requires, - [87361] = 9, + [109296] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON, - ACTIONS(5504), 1, - anon_sym_LBRACE, - STATE(3378), 1, - sym_field_declaration_list, - STATE(5350), 1, - sym_virtual_specifier, - STATE(6075), 1, - sym_base_class_clause, - ACTIONS(5145), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4152), 7, + ACTIONS(4634), 13, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_EQ, - ACTIONS(4154), 25, + anon_sym_GT2, + ACTIONS(4636), 26, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -279742,34 +311674,31 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_virtual, + anon_sym_template, anon_sym_operator, anon_sym_try, anon_sym_requires, - [87420] = 9, + [109343] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON, - ACTIONS(5504), 1, + ACTIONS(5731), 1, anon_sym_LBRACE, - STATE(3338), 1, - sym_field_declaration_list, - STATE(5311), 1, - sym_virtual_specifier, - STATE(5920), 1, - sym_base_class_clause, - ACTIONS(5145), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4162), 7, + STATE(3496), 1, + sym_enumerator_list, + ACTIONS(4267), 12, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_EQ, - ACTIONS(4164), 25, + anon_sym_GT2, + ACTIONS(4269), 25, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -279792,34 +311721,71 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_virtual, + anon_sym_template, anon_sym_operator, - anon_sym_try, anon_sym_requires, - [87479] = 9, + [109394] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(5047), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(5045), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, - ACTIONS(5504), 1, - anon_sym_LBRACE, - STATE(3335), 1, - sym_field_declaration_list, - STATE(5307), 1, - sym_virtual_specifier, - STATE(5904), 1, - sym_base_class_clause, - ACTIONS(5145), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4166), 7, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [109441] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4479), 13, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_EQ, - ACTIONS(4168), 25, + anon_sym_GT2, + ACTIONS(4481), 26, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -279842,21 +311808,14 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_virtual, + anon_sym_template, anon_sym_operator, anon_sym_try, anon_sym_requires, - [87538] = 7, + [109488] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5506), 1, - anon_sym_LBRACE, - ACTIONS(5508), 1, - anon_sym_COLON, - STATE(3148), 1, - sym__enum_base_clause, - STATE(3149), 1, - sym_enumerator_list, - ACTIONS(4348), 11, + ACTIONS(4630), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -279864,11 +311823,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(4350), 24, + ACTIONS(4632), 26, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -279893,24 +311854,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_virtual, anon_sym_template, anon_sym_operator, - [87593] = 3, + anon_sym_try, + anon_sym_requires, + [109535] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4368), 13, - anon_sym_DOT_DOT_DOT, + ACTIONS(4014), 1, + anon_sym_COLON, + ACTIONS(5739), 1, + anon_sym_LBRACE, + STATE(4063), 1, + sym_field_declaration_list, + STATE(5534), 1, + sym_virtual_specifier, + STATE(6513), 1, + sym_base_class_clause, + ACTIONS(5498), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4029), 7, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4370), 26, + ACTIONS(4031), 25, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -279933,27 +311903,72 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_virtual, - anon_sym_template, anon_sym_operator, anon_sym_try, anon_sym_requires, - [87640] = 9, + [109594] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2590), 1, + sym__enum_base_clause, + STATE(2860), 1, + sym_enumerator_list, + ACTIONS(4235), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4233), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [109645] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(5504), 1, + ACTIONS(5739), 1, anon_sym_LBRACE, - STATE(3373), 1, + STATE(4010), 1, sym_field_declaration_list, - STATE(5304), 1, + STATE(5538), 1, sym_virtual_specifier, - STATE(5900), 1, + STATE(6511), 1, sym_base_class_clause, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - ACTIONS(4207), 7, + ACTIONS(4033), 7, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -279961,7 +311976,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_EQ, - ACTIONS(4209), 25, + ACTIONS(4035), 25, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -279987,10 +312002,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [87699] = 3, + [109704] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4681), 13, + ACTIONS(4626), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -280004,7 +312019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(4683), 26, + ACTIONS(4628), 26, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -280031,24 +312046,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [87746] = 3, + [109751] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4532), 13, - anon_sym_DOT_DOT_DOT, + ACTIONS(4014), 1, + anon_sym_COLON, + ACTIONS(5739), 1, + anon_sym_LBRACE, + STATE(4000), 1, + sym_field_declaration_list, + STATE(5541), 1, + sym_virtual_specifier, + STATE(6509), 1, + sym_base_class_clause, + ACTIONS(5498), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4037), 7, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4534), 26, + ACTIONS(4039), 25, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -280071,28 +312093,34 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_virtual, - anon_sym_template, anon_sym_operator, anon_sym_try, anon_sym_requires, - [87793] = 3, + [109810] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4613), 13, - anon_sym_DOT_DOT_DOT, + ACTIONS(4014), 1, + anon_sym_COLON, + ACTIONS(5739), 1, + anon_sym_LBRACE, + STATE(4049), 1, + sym_field_declaration_list, + STATE(5572), 1, + sym_virtual_specifier, + STATE(6504), 1, + sym_base_class_clause, + ACTIONS(5498), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4008), 7, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4615), 26, + ACTIONS(4010), 25, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -280115,14 +312143,13 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_virtual, - anon_sym_template, anon_sym_operator, anon_sym_try, anon_sym_requires, - [87840] = 3, + [109869] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4396), 13, + ACTIONS(4618), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -280136,7 +312163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(4398), 26, + ACTIONS(4620), 26, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -280163,54 +312190,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [87887] = 3, + [109916] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4215), 3, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(4217), 36, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_typename, - anon_sym_template, - [87934] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4673), 13, + ACTIONS(4614), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -280224,7 +312207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(4675), 26, + ACTIONS(4616), 26, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -280251,24 +312234,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [87981] = 3, + [109963] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4400), 13, - anon_sym_DOT_DOT_DOT, + ACTIONS(4014), 1, + anon_sym_COLON, + ACTIONS(5739), 1, + anon_sym_LBRACE, + STATE(4017), 1, + sym_field_declaration_list, + STATE(5576), 1, + sym_virtual_specifier, + STATE(6498), 1, + sym_base_class_clause, + ACTIONS(5498), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4025), 7, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4402), 26, + ACTIONS(4027), 25, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -280291,31 +312281,78 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_virtual, - anon_sym_template, anon_sym_operator, anon_sym_try, anon_sym_requires, - [88028] = 5, + [110022] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5506), 1, - anon_sym_LBRACE, - STATE(3120), 1, - sym_enumerator_list, - ACTIONS(4379), 12, + ACTIONS(5065), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(5063), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [110069] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4014), 1, + anon_sym_COLON, + ACTIONS(5739), 1, + anon_sym_LBRACE, + STATE(4041), 1, + sym_field_declaration_list, + STATE(5581), 1, + sym_virtual_specifier, + STATE(6492), 1, + sym_base_class_clause, + ACTIONS(5498), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4018), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4381), 25, + ACTIONS(4020), 25, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -280338,13 +312375,13 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_virtual, - anon_sym_template, anon_sym_operator, + anon_sym_try, anon_sym_requires, - [88079] = 3, + [110128] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4579), 13, + ACTIONS(4606), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -280358,7 +312395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(4581), 26, + ACTIONS(4608), 26, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -280385,10 +312422,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [88126] = 3, + [110175] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4420), 13, + ACTIONS(4357), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -280402,7 +312439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(4422), 26, + ACTIONS(4359), 26, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -280429,10 +312466,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [88173] = 3, + [110222] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4586), 13, + ACTIONS(4602), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -280446,7 +312483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(4588), 26, + ACTIONS(4604), 26, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -280473,10 +312510,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [88220] = 3, + [110269] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4408), 13, + ACTIONS(4310), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -280490,7 +312527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(4410), 26, + ACTIONS(4312), 26, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -280517,10 +312554,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [88267] = 3, + [110316] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4412), 13, + ACTIONS(4519), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -280534,7 +312571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(4414), 26, + ACTIONS(4521), 26, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -280561,10 +312598,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [88314] = 3, + [110363] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4428), 13, + ACTIONS(4650), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -280578,7 +312615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(4430), 26, + ACTIONS(4652), 26, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -280605,10 +312642,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [88361] = 3, + [110410] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4438), 13, + ACTIONS(4598), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -280622,7 +312659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(4440), 26, + ACTIONS(4600), 26, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -280649,142 +312686,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [88408] = 3, + [110457] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3805), 15, + ACTIONS(5737), 1, + anon_sym_AMP_AMP, + ACTIONS(5741), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5027), 9, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, anon_sym_DOT, - ACTIONS(3807), 24, + ACTIONS(5025), 28, anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [88455] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3774), 15, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(3776), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [88502] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3778), 15, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(3780), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [88549] = 3, + [110508] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4564), 13, + ACTIONS(4361), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -280798,7 +312749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(4566), 26, + ACTIONS(4363), 26, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -280825,68 +312776,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [88596] = 3, + [110555] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3801), 15, + ACTIONS(4872), 9, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, anon_sym_DOT, - ACTIONS(3803), 24, + ACTIONS(4870), 30, anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [88643] = 3, + [110602] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4448), 13, - anon_sym_DOT_DOT_DOT, + ACTIONS(4014), 1, + anon_sym_COLON, + ACTIONS(5739), 1, + anon_sym_LBRACE, + STATE(4034), 1, + sym_field_declaration_list, + STATE(5607), 1, + sym_virtual_specifier, + STATE(6457), 1, + sym_base_class_clause, + ACTIONS(5498), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4041), 7, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4450), 26, + ACTIONS(4043), 25, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -280909,14 +312867,13 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_virtual, - anon_sym_template, anon_sym_operator, anon_sym_try, anon_sym_requires, - [88690] = 3, + [110661] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4556), 13, + ACTIONS(4654), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -280930,7 +312887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(4558), 26, + ACTIONS(4656), 26, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -280957,10 +312914,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [88737] = 3, + [110708] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4014), 1, + anon_sym_COLON, + ACTIONS(5739), 1, + anon_sym_LBRACE, + STATE(4039), 1, + sym_field_declaration_list, + STATE(5611), 1, + sym_virtual_specifier, + STATE(6471), 1, + sym_base_class_clause, + ACTIONS(5498), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4045), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + ACTIONS(4047), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [110767] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4456), 13, + ACTIONS(5019), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(5017), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [110814] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4515), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -280974,7 +313025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(4458), 26, + ACTIONS(4517), 26, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -281001,54 +313052,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [88784] = 3, + [110861] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3793), 15, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5023), 8, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(3795), 24, + ACTIONS(5021), 26, anon_sym_DOT_DOT_DOT, - anon_sym_LPAREN2, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [88831] = 3, + [110918] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4523), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4525), 26, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [110965] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4424), 13, + ACTIONS(4288), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -281062,7 +313162,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(4426), 26, + ACTIONS(4290), 26, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -281089,43 +313189,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [88878] = 13, + [111012] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5512), 1, - anon_sym___attribute__, - ACTIONS(5514), 1, + ACTIONS(4527), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(5516), 1, - anon_sym___declspec, - ACTIONS(5520), 1, - sym_auto, - ACTIONS(5522), 1, - anon_sym_decltype, - ACTIONS(5524), 1, - anon_sym_virtual, - STATE(3413), 1, - sym_decltype_auto, - ACTIONS(4980), 4, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4529), 26, anon_sym_AMP, - anon_sym___based, - sym_identifier, - anon_sym_operator, - ACTIONS(5510), 5, anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - ACTIONS(4982), 7, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(5518), 8, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -281134,19 +313225,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(3280), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual_function_specifier, - aux_sym__declaration_specifiers_repeat1, - [88945] = 3, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [111059] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4528), 13, + ACTIONS(4531), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -281160,7 +313250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(4530), 26, + ACTIONS(4533), 26, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -281187,10 +313277,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [88992] = 3, + [111106] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4548), 13, + ACTIONS(4535), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -281204,7 +313294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(4550), 26, + ACTIONS(4537), 26, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -281231,54 +313321,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [89039] = 3, + [111153] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3797), 15, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(3799), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [89086] = 3, + ACTIONS(4087), 3, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(4089), 36, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_typename, + anon_sym_template, + [111200] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4649), 13, + ACTIONS(4539), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -281292,7 +313382,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(4651), 26, + ACTIONS(4541), 26, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -281319,39 +313409,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [89133] = 11, + [111247] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5533), 1, - anon_sym___attribute__, - ACTIONS(5536), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5539), 1, - anon_sym___declspec, - ACTIONS(5545), 1, - anon_sym_virtual, - ACTIONS(5548), 1, - anon_sym_explicit, - ACTIONS(5528), 5, + ACTIONS(4543), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym_COLON_COLON, - ACTIONS(5530), 5, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4545), 26, + anon_sym_AMP, anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - ACTIONS(5526), 6, - anon_sym_AMP, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - anon_sym_template, - anon_sym_operator, - ACTIONS(5542), 8, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -281360,65 +313445,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(3171), 10, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual_function_specifier, - sym_explicit_function_specifier, - sym__constructor_specifiers, - aux_sym_operator_cast_definition_repeat1, - [89196] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3782), 15, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(3784), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [89243] = 3, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [111294] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4661), 13, + ACTIONS(4547), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -281432,7 +313470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(4663), 26, + ACTIONS(4549), 26, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -281459,10 +313497,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [89290] = 3, + [111341] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4571), 13, + ACTIONS(4555), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -281476,7 +313514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(4573), 26, + ACTIONS(4557), 26, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -281503,10 +313541,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [89337] = 3, + [111388] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4404), 13, + ACTIONS(4288), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -281520,7 +313558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(4406), 26, + ACTIONS(4290), 26, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -281547,10 +313585,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [89384] = 3, + [111435] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4416), 13, + ACTIONS(4559), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -281564,7 +313602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(4418), 26, + ACTIONS(4561), 26, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -281591,10 +313629,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [89431] = 3, + [111482] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4560), 13, + ACTIONS(4014), 1, + anon_sym_COLON, + ACTIONS(5739), 1, + anon_sym_LBRACE, + STATE(4044), 1, + sym_field_declaration_list, + STATE(5615), 1, + sym_virtual_specifier, + STATE(6468), 1, + sym_base_class_clause, + ACTIONS(5498), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4049), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + ACTIONS(4051), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [111541] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4475), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -281608,7 +313696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(4562), 26, + ACTIONS(4477), 26, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -281635,10 +313723,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [89478] = 3, + [111588] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4645), 13, + ACTIONS(4684), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -281652,7 +313740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(4647), 26, + ACTIONS(4686), 26, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -281679,31 +313767,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [89525] = 9, + [111635] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON, - ACTIONS(5504), 1, - anon_sym_LBRACE, - STATE(3350), 1, - sym_field_declaration_list, - STATE(5386), 1, - sym_virtual_specifier, - STATE(6263), 1, - sym_base_class_clause, - ACTIONS(5145), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4183), 7, + ACTIONS(4369), 13, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_EQ, - ACTIONS(4185), 25, + anon_sym_GT2, + ACTIONS(4371), 26, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -281726,13 +313807,14 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_virtual, + anon_sym_template, anon_sym_operator, anon_sym_try, anon_sym_requires, - [89584] = 3, + [111682] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4669), 13, + ACTIONS(4567), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -281746,7 +313828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(4671), 26, + ACTIONS(4569), 26, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -281773,18 +313855,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [89631] = 7, + [111729] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5506), 1, - anon_sym_LBRACE, - ACTIONS(5508), 1, - anon_sym_COLON, - STATE(3188), 1, - sym__enum_base_clause, - STATE(3189), 1, - sym_enumerator_list, - ACTIONS(4338), 11, + ACTIONS(4571), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -281792,11 +313866,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(4340), 24, + ACTIONS(4573), 26, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -281821,10 +313897,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_virtual, anon_sym_template, anon_sym_operator, - [89686] = 3, + anon_sym_try, + anon_sym_requires, + [111776] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4641), 13, + ACTIONS(5731), 1, + anon_sym_LBRACE, + STATE(3451), 1, + sym_enumerator_list, + ACTIONS(4271), 12, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -281835,10 +313917,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(4643), 26, + ACTIONS(4273), 25, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -281863,12 +313944,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_virtual, anon_sym_template, anon_sym_operator, - anon_sym_try, anon_sym_requires, - [89733] = 3, + [111827] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4653), 13, + ACTIONS(4578), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -281882,7 +313962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(4655), 26, + ACTIONS(4580), 26, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -281909,36 +313989,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [89780] = 7, + [111874] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5174), 1, - sym_primitive_type, - ACTIONS(5551), 1, - sym_identifier, - STATE(2487), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5172), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4103), 10, + ACTIONS(4381), 13, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(4105), 22, + ACTIONS(4383), 26, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, anon_sym_static, anon_sym_register, @@ -281952,15 +314025,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, + sym_identifier, sym_auto, anon_sym_decltype, anon_sym_virtual, + anon_sym_template, + anon_sym_operator, anon_sym_try, anon_sym_requires, - [89835] = 3, + [111921] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4468), 13, + ACTIONS(4563), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -281974,7 +314050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(4470), 26, + ACTIONS(4565), 26, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -282001,10 +314077,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [89882] = 3, + [111968] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4633), 13, + ACTIONS(4674), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -282018,7 +314094,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(4635), 26, + ACTIONS(4676), 26, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -282045,10 +314121,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [89929] = 3, + [112015] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4508), 13, + ACTIONS(4969), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4967), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [112062] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4393), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -282062,7 +314182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(4510), 26, + ACTIONS(4395), 26, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -282089,14 +314209,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [89976] = 5, + [112109] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5506), 1, - anon_sym_LBRACE, - STATE(3130), 1, - sym_enumerator_list, - ACTIONS(4389), 12, + ACTIONS(4397), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -282107,9 +314223,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(4391), 25, + ACTIONS(4399), 26, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -282134,11 +314251,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_virtual, anon_sym_template, anon_sym_operator, + anon_sym_try, anon_sym_requires, - [90027] = 3, + [112156] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4594), 13, + ACTIONS(4965), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4963), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [112203] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4950), 8, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4948), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [112262] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1469), 1, + anon_sym_LBRACE, + ACTIONS(5492), 1, + anon_sym_LPAREN2, + STATE(3532), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4553), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4551), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [112315] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4401), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -282152,7 +314411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(4596), 26, + ACTIONS(4403), 26, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -282179,10 +314438,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [90074] = 3, + [112362] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4472), 13, + ACTIONS(4467), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -282196,7 +314455,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(4474), 26, + ACTIONS(4469), 26, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -282223,29 +314482,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [90121] = 3, + [112409] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4621), 13, - anon_sym_DOT_DOT_DOT, + ACTIONS(5507), 1, + sym_primitive_type, + ACTIONS(5743), 1, + sym_identifier, + STATE(3216), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5505), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3964), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(4623), 26, + ACTIONS(3966), 22, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_LBRACK, anon_sym_static, anon_sym_register, @@ -282259,18 +314525,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - sym_identifier, sym_auto, anon_sym_decltype, anon_sym_virtual, - anon_sym_template, - anon_sym_operator, anon_sym_try, anon_sym_requires, - [90168] = 3, + [112464] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4476), 13, + ACTIONS(5013), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(5011), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [112511] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4678), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -282284,7 +314591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(4478), 26, + ACTIONS(4680), 26, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -282311,10 +314618,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [90215] = 3, + [112558] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4480), 13, + ACTIONS(4666), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -282328,7 +314635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(4482), 26, + ACTIONS(4668), 26, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -282355,10 +314662,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [90262] = 3, + [112605] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4492), 13, + ACTIONS(4405), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -282372,7 +314679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(4494), 26, + ACTIONS(4407), 26, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -282399,10 +314706,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [90309] = 3, + [112652] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4590), 13, + ACTIONS(4409), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -282416,7 +314723,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(4592), 26, + ACTIONS(4411), 26, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -282443,56 +314750,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [90356] = 5, + [112699] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5204), 1, - anon_sym_EQ, - ACTIONS(5206), 10, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - ACTIONS(3716), 14, - anon_sym_DOT_DOT_DOT, + ACTIONS(1469), 1, + anon_sym_LBRACE, + ACTIONS(5492), 1, anon_sym_LPAREN2, + STATE(3462), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4324), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4322), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - ACTIONS(3724), 14, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - [90407] = 3, + [112752] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4657), 13, + ACTIONS(4455), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -282506,7 +314814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(4659), 26, + ACTIONS(4457), 26, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -282533,10 +314841,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [90454] = 3, + [112799] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4368), 13, + ACTIONS(4447), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -282550,7 +314858,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(4370), 26, + ACTIONS(4449), 26, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -282577,10 +314885,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [90501] = 3, + [112846] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4442), 13, + ACTIONS(4443), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -282594,7 +314902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(4444), 26, + ACTIONS(4445), 26, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -282621,35 +314929,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [90548] = 13, + [112893] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5512), 1, + ACTIONS(5747), 1, anon_sym___attribute__, - ACTIONS(5514), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5516), 1, + ACTIONS(5751), 1, anon_sym___declspec, - ACTIONS(5520), 1, + ACTIONS(5755), 1, sym_auto, - ACTIONS(5522), 1, + ACTIONS(5757), 1, anon_sym_decltype, - ACTIONS(5524), 1, + ACTIONS(5759), 1, anon_sym_virtual, - STATE(3413), 1, + STATE(4059), 1, sym_decltype_auto, - ACTIONS(5040), 4, + ACTIONS(5480), 4, anon_sym_AMP, anon_sym___based, sym_identifier, anon_sym_operator, - ACTIONS(5510), 5, + ACTIONS(5745), 5, anon_sym_extern, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - ACTIONS(5042), 7, + ACTIONS(5482), 7, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, @@ -282657,7 +314965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - ACTIONS(5518), 8, + ACTIONS(5753), 8, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -282666,7 +314974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(3291), 8, + STATE(3743), 8, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -282675,10 +314983,60 @@ static const uint16_t ts_small_parse_table[] = { sym_type_qualifier, sym_virtual_function_specifier, aux_sym__declaration_specifiers_repeat1, - [90615] = 3, + [112960] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4920), 8, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4918), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [113019] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4625), 13, + ACTIONS(4582), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -282692,7 +315050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(4627), 26, + ACTIONS(4584), 26, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -282719,10 +315077,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [90662] = 3, + [113066] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5747), 1, + anon_sym___attribute__, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5751), 1, + anon_sym___declspec, + ACTIONS(5755), 1, + sym_auto, + ACTIONS(5757), 1, + anon_sym_decltype, + ACTIONS(5759), 1, + anon_sym_virtual, + STATE(4059), 1, + sym_decltype_auto, + ACTIONS(5488), 4, + anon_sym_AMP, + anon_sym___based, + sym_identifier, + anon_sym_operator, + ACTIONS(5745), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(5490), 7, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(5753), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(3687), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + [113133] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4617), 13, + ACTIONS(5731), 1, + anon_sym_LBRACE, + ACTIONS(5733), 1, + anon_sym_COLON, + STATE(3498), 1, + sym__enum_base_clause, + STATE(3499), 1, + sym_enumerator_list, + ACTIONS(4151), 11, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -282730,13 +315150,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(4619), 26, + ACTIONS(4153), 24, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -282761,36 +315179,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_virtual, anon_sym_template, anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [90709] = 3, + [113188] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4504), 13, + ACTIONS(1469), 1, + anon_sym_LBRACE, + ACTIONS(5492), 1, + anon_sym_LPAREN2, + STATE(3473), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4351), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4349), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [113241] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5768), 1, + anon_sym___attribute__, + ACTIONS(5771), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5774), 1, + anon_sym___declspec, + ACTIONS(5780), 1, + anon_sym_virtual, + ACTIONS(5783), 1, + anon_sym_explicit, + ACTIONS(5763), 5, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4506), 26, - anon_sym_AMP, + ACTIONS(5765), 5, anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, + ACTIONS(5761), 6, + anon_sym_AMP, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + anon_sym_template, + anon_sym_operator, + ACTIONS(5777), 8, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -282799,18 +315267,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [90756] = 3, + STATE(3527), 10, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + sym_explicit_function_specifier, + sym__constructor_specifiers, + aux_sym_operator_cast_definition_repeat1, + [113304] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4512), 13, + ACTIONS(4459), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -282824,7 +315295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(4514), 26, + ACTIONS(4461), 26, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -282851,10 +315322,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [90803] = 3, + [113351] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5005), 8, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5003), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [113408] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1469), 1, + anon_sym_LBRACE, + ACTIONS(5492), 1, + anon_sym_LPAREN2, + STATE(3442), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4328), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4326), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [113461] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4609), 13, + ACTIONS(4413), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -282868,7 +315435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(4611), 26, + ACTIONS(4415), 26, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -282895,54 +315462,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [90850] = 3, + [113508] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4516), 13, + ACTIONS(4977), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4975), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4518), 26, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [90897] = 3, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [113555] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4524), 13, + ACTIONS(4463), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -282956,7 +315523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(4526), 26, + ACTIONS(4465), 26, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -282983,10 +315550,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [90944] = 3, + [113602] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4536), 13, + ACTIONS(4439), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -283000,59 +315567,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(4538), 26, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [90991] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5141), 1, - anon_sym_LBRACE, - ACTIONS(5143), 1, - anon_sym_COLON, - ACTIONS(5553), 1, - anon_sym_SEMI, - STATE(3174), 1, - sym_field_declaration_list, - STATE(5485), 1, - sym_virtual_specifier, - STATE(6025), 1, - sym_base_class_clause, - ACTIONS(5145), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4162), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4164), 24, + ACTIONS(4441), 26, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -283077,59 +315592,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_virtual, anon_sym_template, anon_sym_operator, - [91051] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON, - ACTIONS(5141), 1, - anon_sym_LBRACE, - STATE(3178), 1, - sym_field_declaration_list, - STATE(5486), 1, - sym_virtual_specifier, - STATE(5898), 1, - sym_base_class_clause, - ACTIONS(4160), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4209), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(4207), 28, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_GT2, anon_sym_try, anon_sym_requires, - [91109] = 3, + [113649] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5277), 12, + ACTIONS(4471), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -283137,12 +315605,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5275), 26, + ACTIONS(4473), 26, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -283161,35 +315630,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, sym_identifier, - anon_sym_final, - anon_sym_override, + sym_auto, + anon_sym_decltype, anon_sym_virtual, - anon_sym_explicit, anon_sym_template, anon_sym_operator, - [91155] = 9, + anon_sym_try, + anon_sym_requires, + [113696] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(5141), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - STATE(3190), 1, + STATE(3483), 1, sym_field_declaration_list, - STATE(5504), 1, + STATE(5585), 1, sym_virtual_specifier, - STATE(6148), 1, + STATE(6487), 1, sym_base_class_clause, - ACTIONS(4160), 2, + ACTIONS(4016), 2, anon_sym_final, anon_sym_override, - ACTIONS(4199), 3, + ACTIONS(4020), 3, anon_sym_AMP, anon_sym_LBRACK, anon_sym_const, - ACTIONS(4197), 28, + ACTIONS(4018), 28, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -283218,27 +315687,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [91213] = 9, + [113754] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(5141), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - STATE(3203), 1, + STATE(3487), 1, sym_field_declaration_list, - STATE(5472), 1, + STATE(5613), 1, sym_virtual_specifier, - STATE(6158), 1, + STATE(6472), 1, sym_base_class_clause, - ACTIONS(4160), 2, + ACTIONS(4016), 2, anon_sym_final, anon_sym_override, - ACTIONS(4189), 3, + ACTIONS(4027), 3, anon_sym_AMP, anon_sym_LBRACK, anon_sym_const, - ACTIONS(4187), 28, + ACTIONS(4025), 28, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -283267,167 +315736,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [91271] = 5, + [113812] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, - anon_sym_COLON_COLON, - STATE(2626), 1, - sym_template_argument_list, - ACTIONS(4346), 10, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(4344), 26, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1521), 1, + anon_sym_TILDE, + ACTIONS(3137), 1, anon_sym_LPAREN2, + ACTIONS(4755), 1, + sym_identifier, + ACTIONS(4759), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(4761), 1, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [91321] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5558), 1, - sym_raw_string_literal, - STATE(3215), 2, - sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(5555), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(4124), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(4763), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - sym_literal_suffix, - ACTIONS(4122), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + ACTIONS(4765), 1, + anon_sym_COLON_COLON, + ACTIONS(4767), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [91373] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5561), 1, - anon_sym_COLON, - STATE(2307), 1, - sym__enum_base_clause, - STATE(2351), 1, - sym_enumerator_list, - ACTIONS(4340), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(4338), 26, + ACTIONS(5682), 1, anon_sym_DOT_DOT_DOT, + STATE(4345), 1, + sym_parameter_list, + STATE(4973), 1, + sym__scope_resolution, + STATE(5167), 1, + sym__declarator, + STATE(5376), 1, + sym__abstract_declarator, + STATE(5981), 1, + sym_variadic_declarator, + STATE(7300), 1, + sym_ms_based_modifier, + ACTIONS(5786), 2, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [91425] = 6, + STATE(7236), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5127), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(5080), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [113898] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5561), 1, - anon_sym_COLON, - STATE(2304), 1, - sym__enum_base_clause, - STATE(2499), 1, - sym_enumerator_list, - ACTIONS(4350), 9, + ACTIONS(3107), 1, + anon_sym_LBRACE, + ACTIONS(5514), 1, + anon_sym_LPAREN2, + STATE(3951), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4324), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4348), 26, + ACTIONS(4322), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -283435,42 +315831,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [91477] = 9, + anon_sym_GT2, + [113950] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(5141), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - STATE(3208), 1, + STATE(3491), 1, sym_field_declaration_list, - STATE(5476), 1, + STATE(5645), 1, sym_virtual_specifier, - STATE(6165), 1, + STATE(6455), 1, sym_base_class_clause, - ACTIONS(4160), 2, + ACTIONS(4016), 2, anon_sym_final, anon_sym_override, - ACTIONS(4185), 3, + ACTIONS(4010), 3, anon_sym_AMP, anon_sym_LBRACK, anon_sym_const, - ACTIONS(4183), 28, + ACTIONS(4008), 28, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -283499,133 +315894,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [91535] = 7, + [114008] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(5563), 1, - sym_literal_suffix, - ACTIONS(5565), 1, - sym_raw_string_literal, - STATE(3236), 2, - sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(2561), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(3724), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(3716), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(4055), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + ACTIONS(4860), 1, anon_sym_LBRACK, - anon_sym_QMARK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, + anon_sym_SLASH, + ACTIONS(5796), 1, anon_sym_LT_EQ_GT, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [91589] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3735), 1, - anon_sym_COLON_COLON, - ACTIONS(5495), 1, - anon_sym_LT, - STATE(2201), 1, - sym_template_argument_list, - ACTIONS(3714), 9, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(5790), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4856), 5, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(3722), 26, + anon_sym_LT, + ACTIONS(4850), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [91641] = 11, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [114076] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1465), 1, + ACTIONS(3107), 1, anon_sym_LBRACE, - ACTIONS(4691), 1, - sym_auto, - ACTIONS(4693), 1, - anon_sym_decltype, - ACTIONS(5567), 1, + ACTIONS(5514), 1, anon_sym_LPAREN2, - ACTIONS(5569), 1, - anon_sym_LBRACK, - STATE(2476), 1, - sym_decltype_auto, - STATE(3380), 1, - sym_new_declarator, - STATE(3452), 2, + STATE(3838), 2, sym_argument_list, sym_initializer_list, - ACTIONS(4223), 9, + ACTIONS(4328), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4219), 20, + ACTIONS(4326), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -283633,37 +315980,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [91703] = 9, + anon_sym_GT2, + [114128] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(5141), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - STATE(3170), 1, + STATE(3470), 1, sym_field_declaration_list, - STATE(5459), 1, + STATE(5653), 1, sym_virtual_specifier, - STATE(6238), 1, + STATE(6525), 1, sym_base_class_clause, - ACTIONS(4160), 2, + ACTIONS(4016), 2, anon_sym_final, anon_sym_override, - ACTIONS(4195), 3, + ACTIONS(4039), 3, anon_sym_AMP, anon_sym_LBRACK, anon_sym_const, - ACTIONS(4193), 28, + ACTIONS(4037), 28, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -283692,78 +316043,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [91761] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1465), 1, - anon_sym_LBRACE, - ACTIONS(4691), 1, - sym_auto, - ACTIONS(4693), 1, - anon_sym_decltype, - ACTIONS(5567), 1, - anon_sym_LPAREN2, - ACTIONS(5569), 1, - anon_sym_LBRACK, - STATE(2476), 1, - sym_decltype_auto, - STATE(3362), 1, - sym_new_declarator, - STATE(3426), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4252), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(4250), 20, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [91823] = 9, + [114186] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(5141), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - STATE(3121), 1, + STATE(3464), 1, sym_field_declaration_list, - STATE(5439), 1, + STATE(5767), 1, sym_virtual_specifier, - STATE(6243), 1, + STATE(6534), 1, sym_base_class_clause, - ACTIONS(4160), 2, + ACTIONS(4016), 2, anon_sym_final, anon_sym_override, - ACTIONS(4175), 3, + ACTIONS(4035), 3, anon_sym_AMP, anon_sym_LBRACK, anon_sym_const, - ACTIONS(4173), 28, + ACTIONS(4033), 28, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -283792,27 +316092,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [91881] = 9, + [114244] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(5141), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - STATE(3125), 1, + STATE(3510), 1, sym_field_declaration_list, - STATE(5252), 1, + STATE(5726), 1, sym_virtual_specifier, - STATE(6253), 1, + STATE(6628), 1, sym_base_class_clause, - ACTIONS(4160), 2, + ACTIONS(4016), 2, anon_sym_final, anon_sym_override, - ACTIONS(4154), 3, + ACTIONS(4043), 3, anon_sym_AMP, anon_sym_LBRACK, anon_sym_const, - ACTIONS(4152), 28, + ACTIONS(4041), 28, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -283841,93 +316141,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [91939] = 10, + [114302] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5141), 1, - anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(5553), 1, - anon_sym_SEMI, - STATE(3176), 1, + ACTIONS(5494), 1, + anon_sym_LBRACE, + STATE(3459), 1, sym_field_declaration_list, - STATE(5434), 1, + STATE(5812), 1, sym_virtual_specifier, - STATE(5979), 1, + STATE(6536), 1, sym_base_class_clause, - ACTIONS(5145), 2, + ACTIONS(4016), 2, anon_sym_final, anon_sym_override, - ACTIONS(4166), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4168), 24, + ACTIONS(4031), 3, anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - [91999] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5141), 1, - anon_sym_LBRACE, - ACTIONS(5143), 1, - anon_sym_COLON, - ACTIONS(5553), 1, - anon_sym_SEMI, - STATE(3178), 1, - sym_field_declaration_list, - STATE(5486), 1, - sym_virtual_specifier, - STATE(5898), 1, - sym_base_class_clause, - ACTIONS(5145), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4207), 6, + ACTIONS(4029), 28, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4209), 24, - anon_sym_AMP, + anon_sym_SEMI, anon_sym_extern, anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, + anon_sym_EQ, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -283935,135 +316184,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - sym_identifier, sym_auto, anon_sym_decltype, anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - [92059] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2302), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(2304), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_else, - anon_sym_while, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_catch, + anon_sym_GT2, + anon_sym_try, anon_sym_requires, - [92105] = 10, + [114360] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5141), 1, - anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(5571), 1, - anon_sym_SEMI, - STATE(3178), 1, + ACTIONS(5494), 1, + anon_sym_LBRACE, + STATE(3428), 1, sym_field_declaration_list, - STATE(5486), 1, + STATE(5798), 1, sym_virtual_specifier, - STATE(5898), 1, + STATE(6618), 1, sym_base_class_clause, - ACTIONS(5145), 2, + ACTIONS(4016), 2, anon_sym_final, anon_sym_override, - ACTIONS(4207), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4209), 24, + ACTIONS(4047), 3, anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - [92165] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3735), 1, - anon_sym_COLON_COLON, - ACTIONS(5129), 1, - anon_sym_LT, - STATE(2626), 1, - sym_template_argument_list, - ACTIONS(3722), 8, + ACTIONS(4045), 28, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(3714), 27, - anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, + anon_sym_EQ, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -284071,102 +316233,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, - sym_identifier, sym_auto, anon_sym_decltype, anon_sym_virtual, - anon_sym_template, - anon_sym_operator, + anon_sym_GT2, anon_sym_try, anon_sym_requires, - [92217] = 10, + [114418] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5141), 1, - anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(5571), 1, - anon_sym_SEMI, - STATE(3176), 1, + ACTIONS(5494), 1, + anon_sym_LBRACE, + STATE(3429), 1, sym_field_declaration_list, - STATE(5434), 1, + STATE(5582), 1, sym_virtual_specifier, - STATE(5979), 1, + STATE(6608), 1, sym_base_class_clause, - ACTIONS(5145), 2, + ACTIONS(4016), 2, anon_sym_final, anon_sym_override, - ACTIONS(4166), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4168), 24, + ACTIONS(4051), 3, anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - [92277] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5141), 1, - anon_sym_LBRACE, - ACTIONS(5143), 1, - anon_sym_COLON, - ACTIONS(5571), 1, - anon_sym_SEMI, - STATE(3174), 1, - sym_field_declaration_list, - STATE(5485), 1, - sym_virtual_specifier, - STATE(6025), 1, - sym_base_class_clause, - ACTIONS(5145), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4162), 6, + ACTIONS(4049), 28, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4164), 24, - anon_sym_AMP, + anon_sym_SEMI, anon_sym_extern, anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, + anon_sym_EQ, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -284174,460 +316282,165 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - sym_identifier, sym_auto, anon_sym_decltype, anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - [92337] = 11, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [114476] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1465), 1, - anon_sym_LBRACE, - ACTIONS(4691), 1, - sym_auto, - ACTIONS(4693), 1, - anon_sym_decltype, - ACTIONS(5567), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(5569), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - STATE(2476), 1, - sym_decltype_auto, - STATE(3382), 1, - sym_new_declarator, - STATE(3458), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4245), 9, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, + ACTIONS(5808), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(4243), 20, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(5814), 1, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [92399] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1497), 1, - anon_sym_operator, - ACTIONS(1517), 1, - anon_sym_TILDE, - ACTIONS(3087), 1, - anon_sym_LPAREN2, - ACTIONS(4062), 1, - sym_identifier, - ACTIONS(4066), 1, - anon_sym_STAR, - ACTIONS(4068), 1, - anon_sym_AMP_AMP, - ACTIONS(4070), 1, - anon_sym_AMP, - ACTIONS(4072), 1, - anon_sym_COLON_COLON, - ACTIONS(4074), 1, - anon_sym_LBRACK, - ACTIONS(5403), 1, - anon_sym_DOT_DOT_DOT, - STATE(4080), 1, - sym_parameter_list, - STATE(4678), 1, - sym__scope_resolution, - STATE(4879), 1, - sym__declarator, - STATE(5099), 1, - sym__abstract_declarator, - STATE(5541), 1, - sym_variadic_declarator, - STATE(6932), 1, - sym_ms_based_modifier, - ACTIONS(5573), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(6663), 2, - sym_template_type, - sym_dependent_type_identifier, - STATE(4832), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(4825), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [92485] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1465), 1, - anon_sym_LBRACE, - ACTIONS(4691), 1, - sym_auto, - ACTIONS(4693), 1, - anon_sym_decltype, - ACTIONS(5567), 1, - anon_sym_LPAREN2, - ACTIONS(5569), 1, - anon_sym_LBRACK, - STATE(2476), 1, - sym_decltype_auto, - STATE(3364), 1, - sym_new_declarator, - STATE(3449), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4237), 9, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(4235), 20, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [92547] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5575), 1, - sym_raw_string_literal, - STATE(3215), 2, - sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(2561), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(4136), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + anon_sym_not_eq, + ACTIONS(5812), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - sym_literal_suffix, - ACTIONS(4134), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [92599] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1497), 1, - anon_sym_operator, - ACTIONS(1517), 1, - anon_sym_TILDE, - ACTIONS(3087), 1, - anon_sym_LPAREN2, - ACTIONS(4062), 1, - sym_identifier, - ACTIONS(4072), 1, - anon_sym_COLON_COLON, - ACTIONS(4074), 1, - anon_sym_LBRACK, - ACTIONS(4076), 1, - anon_sym_STAR, - ACTIONS(4078), 1, - anon_sym_AMP_AMP, - ACTIONS(4080), 1, - anon_sym_AMP, - ACTIONS(5403), 1, - anon_sym_DOT_DOT_DOT, - STATE(4077), 1, - sym_parameter_list, - STATE(4678), 1, - sym__scope_resolution, - STATE(4879), 1, - sym__declarator, - STATE(5108), 1, - sym__abstract_declarator, - STATE(5541), 1, - sym_variadic_declarator, - STATE(6932), 1, - sym_ms_based_modifier, - ACTIONS(5573), 2, - anon_sym_COMMA, - anon_sym_GT2, - STATE(6663), 2, - sym_template_type, - sym_dependent_type_identifier, - STATE(4832), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(4825), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [92685] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON, - ACTIONS(5141), 1, - anon_sym_LBRACE, - STATE(3174), 1, - sym_field_declaration_list, - STATE(5485), 1, - sym_virtual_specifier, - STATE(6025), 1, - sym_base_class_clause, - ACTIONS(4160), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4164), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(4162), 28, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [92743] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON, - ACTIONS(5141), 1, - anon_sym_LBRACE, - STATE(3176), 1, - sym_field_declaration_list, - STATE(5434), 1, - sym_virtual_specifier, - STATE(5979), 1, - sym_base_class_clause, - ACTIONS(4160), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4168), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(4166), 28, + ACTIONS(4944), 5, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_EQ, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [92801] = 10, + anon_sym_RBRACE, + anon_sym_QMARK, + [114564] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(5141), 1, - anon_sym_LBRACE, - ACTIONS(5143), 1, - anon_sym_COLON, - ACTIONS(5577), 1, - anon_sym_SEMI, - STATE(3174), 1, - sym_field_declaration_list, - STATE(5485), 1, - sym_virtual_specifier, - STATE(6025), 1, - sym_base_class_clause, - ACTIONS(5145), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4162), 6, + ACTIONS(4055), 1, anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, + anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5804), 1, + anon_sym_PIPE, + ACTIONS(5808), 1, + anon_sym_AMP, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4164), 24, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - [92861] = 10, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4886), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + [114650] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5141), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5577), 1, + ACTIONS(5820), 1, anon_sym_SEMI, - STATE(3176), 1, + STATE(3459), 1, sym_field_declaration_list, - STATE(5434), 1, + STATE(5812), 1, sym_virtual_specifier, - STATE(5979), 1, + STATE(6536), 1, sym_base_class_clause, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - ACTIONS(4166), 6, + ACTIONS(4029), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4168), 24, + ACTIONS(4031), 24, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -284652,75 +316465,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_virtual, anon_sym_template, anon_sym_operator, - [92921] = 3, + [114710] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2287), 9, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, + anon_sym_SLASH, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(5790), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4936), 5, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_DOT, - ACTIONS(2289), 29, + ACTIONS(4934), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_else, - anon_sym_while, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_catch, - anon_sym_requires, - [92967] = 10, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [114776] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5141), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5577), 1, + ACTIONS(5820), 1, anon_sym_SEMI, - STATE(3178), 1, + STATE(3464), 1, sym_field_declaration_list, - STATE(5486), 1, + STATE(5767), 1, sym_virtual_specifier, - STATE(5898), 1, + STATE(6534), 1, sym_base_class_clause, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - ACTIONS(4207), 6, + ACTIONS(4033), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(4209), 24, + ACTIONS(4035), 24, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -284745,79 +316568,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_virtual, anon_sym_template, anon_sym_operator, - [93027] = 19, + [114836] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1497), 1, - anon_sym_operator, - ACTIONS(1515), 1, + ACTIONS(5494), 1, + anon_sym_LBRACE, + ACTIONS(5496), 1, + anon_sym_COLON, + ACTIONS(5820), 1, + anon_sym_SEMI, + STATE(3470), 1, + sym_field_declaration_list, + STATE(5653), 1, + sym_virtual_specifier, + STATE(6525), 1, + sym_base_class_clause, + ACTIONS(5498), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4037), 6, anon_sym_LPAREN2, - ACTIONS(1517), 1, anon_sym_TILDE, - ACTIONS(4795), 1, - anon_sym_LBRACK, - ACTIONS(4817), 1, - sym_identifier, - ACTIONS(4819), 1, anon_sym_STAR, - ACTIONS(4821), 1, anon_sym_AMP_AMP, - ACTIONS(4823), 1, - anon_sym_AMP, - ACTIONS(4825), 1, anon_sym_COLON_COLON, - STATE(4708), 1, - sym__scope_resolution, - STATE(5027), 1, - sym__declarator, - STATE(6547), 1, - sym_ms_based_modifier, - STATE(4149), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6663), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2921), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(4825), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [93104] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4099), 10, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_DASH_GT, - ACTIONS(4097), 27, + ACTIONS(4039), 24, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -284837,49 +316613,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constinit, anon_sym_consteval, sym_identifier, - anon_sym_final, - anon_sym_override, + sym_auto, + anon_sym_decltype, anon_sym_virtual, + anon_sym_template, anon_sym_operator, - anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, - anon_sym_requires, - [93149] = 11, + [114896] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1465), 1, - anon_sym_LBRACE, - ACTIONS(4691), 1, - sym_auto, - ACTIONS(4693), 1, - anon_sym_decltype, - ACTIONS(5569), 1, - anon_sym_LBRACK, - ACTIONS(5579), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - STATE(2476), 1, - sym_decltype_auto, - STATE(3455), 1, - sym_new_declarator, - STATE(3458), 2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, + anon_sym_SLASH, + STATE(2487), 1, sym_argument_list, - sym_initializer_list, - ACTIONS(4245), 9, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(5790), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(4936), 5, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_DOT, - ACTIONS(4243), 19, + ACTIONS(4934), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, @@ -284888,1138 +316660,269 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RBRACK, - anon_sym_COLON, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [93210] = 19, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [114960] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1497), 1, - anon_sym_operator, - ACTIONS(1515), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(1517), 1, - anon_sym_TILDE, - ACTIONS(4062), 1, - sym_identifier, - ACTIONS(4072), 1, - anon_sym_COLON_COLON, - ACTIONS(4789), 1, - anon_sym_STAR, - ACTIONS(4791), 1, - anon_sym_AMP_AMP, - ACTIONS(4793), 1, - anon_sym_AMP, - ACTIONS(4795), 1, - anon_sym_LBRACK, - STATE(4678), 1, - sym__scope_resolution, - STATE(4858), 1, - sym__declarator, - STATE(6414), 1, - sym_ms_based_modifier, - STATE(4149), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6663), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2921), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(4825), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [93287] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1465), 1, - anon_sym_LBRACE, - ACTIONS(4691), 1, - sym_auto, - ACTIONS(4693), 1, - anon_sym_decltype, - ACTIONS(5569), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(5579), 1, - anon_sym_LPAREN2, - STATE(2476), 1, - sym_decltype_auto, - STATE(3456), 1, - sym_new_declarator, - STATE(3452), 2, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, + anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + STATE(2487), 1, sym_argument_list, - sym_initializer_list, - ACTIONS(4223), 9, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(4219), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + ACTIONS(5794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [93348] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1497), 1, - anon_sym_operator, - ACTIONS(1515), 1, - anon_sym_LPAREN2, - ACTIONS(1517), 1, - anon_sym_TILDE, - ACTIONS(3922), 1, - sym_identifier, - ACTIONS(4132), 1, - anon_sym_COLON_COLON, - ACTIONS(4795), 1, - anon_sym_LBRACK, - ACTIONS(4831), 1, - anon_sym_STAR, - ACTIONS(4833), 1, - anon_sym_AMP_AMP, - ACTIONS(4835), 1, - anon_sym_AMP, - STATE(4697), 1, - sym__scope_resolution, - STATE(5078), 1, - sym__declarator, - STATE(6466), 1, - sym_ms_based_modifier, - STATE(4149), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6663), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2921), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(4825), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [93425] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1465), 1, - anon_sym_LBRACE, - ACTIONS(4691), 1, - sym_auto, - ACTIONS(4693), 1, - anon_sym_decltype, - ACTIONS(5569), 1, - anon_sym_LBRACK, - ACTIONS(5579), 1, - anon_sym_LPAREN2, - STATE(2476), 1, - sym_decltype_auto, - STATE(3447), 1, - sym_new_declarator, - STATE(3426), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4252), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(4936), 5, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_DOT, - ACTIONS(4250), 19, + ACTIONS(4934), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RBRACK, - anon_sym_COLON, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [93486] = 19, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [115028] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1497), 1, - anon_sym_operator, - ACTIONS(1515), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(1517), 1, - anon_sym_TILDE, - ACTIONS(4062), 1, - sym_identifier, - ACTIONS(4072), 1, - anon_sym_COLON_COLON, - ACTIONS(4795), 1, - anon_sym_LBRACK, - ACTIONS(4805), 1, - anon_sym_STAR, - ACTIONS(4807), 1, - anon_sym_AMP_AMP, - ACTIONS(4809), 1, - anon_sym_AMP, - STATE(4678), 1, - sym__scope_resolution, - STATE(4826), 1, - sym__declarator, - STATE(6782), 1, - sym_ms_based_modifier, - STATE(4149), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6663), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2921), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(4825), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [93563] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1465), 1, - anon_sym_LBRACE, - ACTIONS(4691), 1, - sym_auto, - ACTIONS(4693), 1, - anon_sym_decltype, - ACTIONS(5569), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(5579), 1, - anon_sym_LPAREN2, - STATE(2476), 1, - sym_decltype_auto, - STATE(3445), 1, - sym_new_declarator, - STATE(3449), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4237), 9, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + STATE(2487), 1, + sym_argument_list, + ACTIONS(4936), 2, anon_sym_PIPE, anon_sym_AMP, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5812), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_DOT, - ACTIONS(4235), 19, + ACTIONS(4934), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RBRACK, - anon_sym_COLON, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [93624] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1497), 1, - anon_sym_operator, - ACTIONS(1515), 1, - anon_sym_LPAREN2, - ACTIONS(1517), 1, - anon_sym_TILDE, - ACTIONS(3922), 1, - sym_identifier, - ACTIONS(4132), 1, - anon_sym_COLON_COLON, - ACTIONS(4795), 1, - anon_sym_LBRACK, - ACTIONS(4831), 1, - anon_sym_STAR, - ACTIONS(4833), 1, - anon_sym_AMP_AMP, - ACTIONS(4835), 1, - anon_sym_AMP, - STATE(4697), 1, - sym__scope_resolution, - STATE(5075), 1, - sym__declarator, - STATE(6466), 1, - sym_ms_based_modifier, - STATE(4149), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6663), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2921), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(4825), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [93701] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1497), 1, - anon_sym_operator, - ACTIONS(1515), 1, - anon_sym_LPAREN2, - ACTIONS(1517), 1, - anon_sym_TILDE, - ACTIONS(4062), 1, - sym_identifier, - ACTIONS(4072), 1, - anon_sym_COLON_COLON, - ACTIONS(4795), 1, - anon_sym_LBRACK, - ACTIONS(4805), 1, - anon_sym_STAR, - ACTIONS(4807), 1, - anon_sym_AMP_AMP, - ACTIONS(4809), 1, - anon_sym_AMP, - STATE(4678), 1, - sym__scope_resolution, - STATE(4847), 1, - sym__declarator, - STATE(6782), 1, - sym_ms_based_modifier, - STATE(4149), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6663), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2921), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(4825), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [93778] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1497), 1, - anon_sym_operator, - ACTIONS(1515), 1, - anon_sym_LPAREN2, - ACTIONS(1517), 1, - anon_sym_TILDE, - ACTIONS(1519), 1, - anon_sym_STAR, - ACTIONS(1521), 1, - anon_sym_AMP, - ACTIONS(3922), 1, - sym_identifier, - ACTIONS(4132), 1, - anon_sym_COLON_COLON, - ACTIONS(4795), 1, - anon_sym_LBRACK, - STATE(4697), 1, - sym__scope_resolution, - STATE(5039), 1, - sym__declarator, - STATE(6716), 1, - sym_ms_based_modifier, - STATE(4149), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6663), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2921), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(4825), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [93855] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1497), 1, - anon_sym_operator, - ACTIONS(1515), 1, - anon_sym_LPAREN2, - ACTIONS(1517), 1, - anon_sym_TILDE, - ACTIONS(4062), 1, - sym_identifier, - ACTIONS(4072), 1, - anon_sym_COLON_COLON, - ACTIONS(4795), 1, - anon_sym_LBRACK, - ACTIONS(4805), 1, - anon_sym_STAR, - ACTIONS(4807), 1, - anon_sym_AMP_AMP, - ACTIONS(4809), 1, - anon_sym_AMP, - STATE(4678), 1, - sym__scope_resolution, - STATE(4812), 1, - sym__declarator, - STATE(6782), 1, - sym_ms_based_modifier, - STATE(4149), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6663), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2921), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(4825), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [93932] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1497), 1, - anon_sym_operator, - ACTIONS(1515), 1, - anon_sym_LPAREN2, - ACTIONS(1517), 1, - anon_sym_TILDE, - ACTIONS(4062), 1, - sym_identifier, - ACTIONS(4072), 1, - anon_sym_COLON_COLON, - ACTIONS(4789), 1, - anon_sym_STAR, - ACTIONS(4791), 1, - anon_sym_AMP_AMP, - ACTIONS(4793), 1, - anon_sym_AMP, - ACTIONS(4795), 1, - anon_sym_LBRACK, - STATE(4678), 1, - sym__scope_resolution, - STATE(4803), 1, - sym__declarator, - STATE(6414), 1, - sym_ms_based_modifier, - STATE(4149), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6663), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2921), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(4825), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [94009] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1497), 1, - anon_sym_operator, - ACTIONS(1515), 1, - anon_sym_LPAREN2, - ACTIONS(1517), 1, - anon_sym_TILDE, - ACTIONS(4062), 1, - sym_identifier, - ACTIONS(4072), 1, - anon_sym_COLON_COLON, - ACTIONS(4789), 1, - anon_sym_STAR, - ACTIONS(4791), 1, - anon_sym_AMP_AMP, - ACTIONS(4793), 1, - anon_sym_AMP, - ACTIONS(4795), 1, - anon_sym_LBRACK, - STATE(4678), 1, - sym__scope_resolution, - STATE(4824), 1, - sym__declarator, - STATE(6414), 1, - sym_ms_based_modifier, - STATE(4149), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6663), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2921), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(4825), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [94086] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1497), 1, - anon_sym_operator, - ACTIONS(1515), 1, - anon_sym_LPAREN2, - ACTIONS(1517), 1, - anon_sym_TILDE, - ACTIONS(4062), 1, - sym_identifier, - ACTIONS(4072), 1, - anon_sym_COLON_COLON, - ACTIONS(4795), 1, - anon_sym_LBRACK, - ACTIONS(4797), 1, - anon_sym_STAR, - ACTIONS(4799), 1, - anon_sym_AMP_AMP, - ACTIONS(4801), 1, - anon_sym_AMP, - STATE(4678), 1, - sym__scope_resolution, - STATE(4916), 1, - sym__declarator, - STATE(6932), 1, - sym_ms_based_modifier, - STATE(4149), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6663), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2921), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(4825), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [94163] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1497), 1, - anon_sym_operator, - ACTIONS(1515), 1, - anon_sym_LPAREN2, - ACTIONS(1517), 1, - anon_sym_TILDE, - ACTIONS(1519), 1, - anon_sym_STAR, - ACTIONS(1521), 1, - anon_sym_AMP, - ACTIONS(3922), 1, - sym_identifier, - ACTIONS(4132), 1, - anon_sym_COLON_COLON, - ACTIONS(4795), 1, - anon_sym_LBRACK, - STATE(4697), 1, - sym__scope_resolution, - STATE(5064), 1, - sym__declarator, - STATE(6716), 1, - sym_ms_based_modifier, - STATE(4149), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6663), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2921), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(4825), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [94240] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1497), 1, - anon_sym_operator, - ACTIONS(1515), 1, - anon_sym_LPAREN2, - ACTIONS(1517), 1, - anon_sym_TILDE, - ACTIONS(4795), 1, - anon_sym_LBRACK, - ACTIONS(4817), 1, - sym_identifier, - ACTIONS(4819), 1, - anon_sym_STAR, - ACTIONS(4821), 1, - anon_sym_AMP_AMP, - ACTIONS(4823), 1, - anon_sym_AMP, - ACTIONS(4825), 1, - anon_sym_COLON_COLON, - STATE(4708), 1, - sym__scope_resolution, - STATE(5035), 1, - sym__declarator, - STATE(6547), 1, - sym_ms_based_modifier, - STATE(4149), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6663), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2921), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(4825), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [94317] = 19, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [115100] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1497), 1, - anon_sym_operator, - ACTIONS(1515), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(1517), 1, - anon_sym_TILDE, - ACTIONS(4795), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, - sym_identifier, - ACTIONS(4819), 1, - anon_sym_STAR, - ACTIONS(4821), 1, - anon_sym_AMP_AMP, - ACTIONS(4823), 1, - anon_sym_AMP, - ACTIONS(4825), 1, - anon_sym_COLON_COLON, - STATE(4708), 1, - sym__scope_resolution, - STATE(5052), 1, - sym__declarator, - STATE(6547), 1, - sym_ms_based_modifier, - STATE(4149), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6663), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2921), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(4825), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [94394] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3735), 1, - anon_sym_COLON_COLON, - ACTIONS(5581), 1, - anon_sym_LT, - STATE(2425), 1, - sym_template_argument_list, - ACTIONS(3752), 11, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5804), 1, anon_sym_PIPE, + ACTIONS(5808), 1, anon_sym_AMP, - anon_sym_GT, + ACTIONS(5814), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(3757), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4959), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - [94445] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1497), 1, - anon_sym_operator, - ACTIONS(1515), 1, - anon_sym_LPAREN2, - ACTIONS(1517), 1, - anon_sym_TILDE, - ACTIONS(4062), 1, - sym_identifier, - ACTIONS(4072), 1, - anon_sym_COLON_COLON, - ACTIONS(4795), 1, - anon_sym_LBRACK, - ACTIONS(4797), 1, - anon_sym_STAR, - ACTIONS(4799), 1, - anon_sym_AMP_AMP, - ACTIONS(4801), 1, - anon_sym_AMP, - STATE(4678), 1, - sym__scope_resolution, - STATE(4926), 1, - sym__declarator, - STATE(6932), 1, - sym_ms_based_modifier, - STATE(4149), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6663), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2921), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(4825), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [94522] = 19, + [115186] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1497), 1, - anon_sym_operator, - ACTIONS(1515), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(1517), 1, - anon_sym_TILDE, - ACTIONS(4062), 1, - sym_identifier, - ACTIONS(4072), 1, - anon_sym_COLON_COLON, - ACTIONS(4795), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4797), 1, - anon_sym_STAR, - ACTIONS(4799), 1, - anon_sym_AMP_AMP, - ACTIONS(4801), 1, - anon_sym_AMP, - STATE(4678), 1, - sym__scope_resolution, - STATE(4918), 1, - sym__declarator, - STATE(6932), 1, - sym_ms_based_modifier, - STATE(4149), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6663), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2921), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(4825), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [94599] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3735), 1, - anon_sym_COLON_COLON, - ACTIONS(5584), 1, - anon_sym_LT, - STATE(2425), 1, - sym_template_argument_list, - ACTIONS(4191), 11, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5804), 1, anon_sym_PIPE, + ACTIONS(5808), 1, anon_sym_AMP, - anon_sym_GT, + ACTIONS(5814), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(3740), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5071), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - [94650] = 3, + [115272] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4113), 10, + ACTIONS(5646), 12, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, - anon_sym_DASH_GT, - ACTIONS(4111), 27, + anon_sym_GT2, + ACTIONS(5644), 26, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -286038,62 +316941,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, + anon_sym_COLON, sym_identifier, anon_sym_final, anon_sym_override, anon_sym_virtual, + anon_sym_explicit, + anon_sym_template, anon_sym_operator, - anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, - anon_sym_requires, - [94695] = 19, + [115318] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(1497), 1, + ACTIONS(1501), 1, anon_sym_operator, - ACTIONS(1515), 1, - anon_sym_LPAREN2, - ACTIONS(1517), 1, + ACTIONS(1521), 1, anon_sym_TILDE, - ACTIONS(3922), 1, + ACTIONS(3137), 1, + anon_sym_LPAREN2, + ACTIONS(4755), 1, sym_identifier, - ACTIONS(4132), 1, + ACTIONS(4765), 1, anon_sym_COLON_COLON, - ACTIONS(4795), 1, + ACTIONS(4767), 1, anon_sym_LBRACK, - ACTIONS(4831), 1, - anon_sym_STAR, ACTIONS(4833), 1, - anon_sym_AMP_AMP, + anon_sym_STAR, ACTIONS(4835), 1, + anon_sym_AMP_AMP, + ACTIONS(4837), 1, anon_sym_AMP, - STATE(4697), 1, + ACTIONS(5682), 1, + anon_sym_DOT_DOT_DOT, + STATE(4328), 1, + sym_parameter_list, + STATE(4973), 1, sym__scope_resolution, - STATE(5076), 1, + STATE(5167), 1, sym__declarator, - STATE(6466), 1, + STATE(5421), 1, + sym__abstract_declarator, + STATE(5981), 1, + sym_variadic_declarator, + STATE(7300), 1, sym_ms_based_modifier, - STATE(4149), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6663), 2, + ACTIONS(5786), 2, + anon_sym_COMMA, + anon_sym_GT2, + STATE(7236), 2, sym_template_type, sym_dependent_type_identifier, - ACTIONS(2921), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(4825), 11, + STATE(5127), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(5080), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -286105,44 +317012,92 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [94772] = 19, + [115404] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, + ACTIONS(5494), 1, + anon_sym_LBRACE, + ACTIONS(5496), 1, + anon_sym_COLON, + ACTIONS(5822), 1, + anon_sym_SEMI, + STATE(3470), 1, + sym_field_declaration_list, + STATE(5653), 1, + sym_virtual_specifier, + STATE(6525), 1, + sym_base_class_clause, + ACTIONS(5498), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4037), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(47), 1, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4039), 24, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, anon_sym___based, - ACTIONS(972), 1, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, anon_sym_template, - ACTIONS(1497), 1, anon_sym_operator, - ACTIONS(1515), 1, + [115464] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5494), 1, + anon_sym_LBRACE, + ACTIONS(5496), 1, + anon_sym_COLON, + ACTIONS(5822), 1, + anon_sym_SEMI, + STATE(3464), 1, + sym_field_declaration_list, + STATE(5767), 1, + sym_virtual_specifier, + STATE(6534), 1, + sym_base_class_clause, + ACTIONS(5498), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4033), 6, anon_sym_LPAREN2, - ACTIONS(1517), 1, anon_sym_TILDE, - ACTIONS(1519), 1, anon_sym_STAR, - ACTIONS(1521), 1, - anon_sym_AMP, - ACTIONS(3922), 1, - sym_identifier, - ACTIONS(4132), 1, + anon_sym_AMP_AMP, anon_sym_COLON_COLON, - ACTIONS(4795), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4035), 24, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - STATE(4697), 1, - sym__scope_resolution, - STATE(5034), 1, - sym__declarator, - STATE(6716), 1, - sym_ms_based_modifier, - STATE(4149), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(6663), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(2921), 8, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -286151,37 +317106,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(4825), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [94849] = 5, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [115524] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5586), 1, + ACTIONS(5494), 1, + anon_sym_LBRACE, + ACTIONS(5496), 1, + anon_sym_COLON, + ACTIONS(5822), 1, + anon_sym_SEMI, + STATE(3459), 1, + sym_field_declaration_list, + STATE(5812), 1, + sym_virtual_specifier, + STATE(6536), 1, + sym_base_class_clause, + ACTIONS(5498), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4029), 6, anon_sym_LPAREN2, - STATE(2559), 1, - sym_argument_list, - ACTIONS(4368), 10, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - ACTIONS(4370), 24, + ACTIONS(4031), 24, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -286206,87 +317162,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_virtual, anon_sym_template, anon_sym_operator, - [94897] = 21, + [115584] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1497), 1, - anon_sym_operator, - ACTIONS(1517), 1, - anon_sym_TILDE, - ACTIONS(3087), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4062), 1, - sym_identifier, - ACTIONS(4072), 1, - anon_sym_COLON_COLON, - ACTIONS(4074), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4076), 1, - anon_sym_STAR, - ACTIONS(4078), 1, - anon_sym_AMP_AMP, - ACTIONS(4080), 1, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, + anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + STATE(2487), 1, + sym_argument_list, + ACTIONS(4936), 2, + anon_sym_PIPE, anon_sym_AMP, - STATE(4077), 1, - sym_parameter_list, - STATE(4678), 1, - sym__scope_resolution, - STATE(4879), 1, - sym__declarator, - STATE(5108), 1, - sym__abstract_declarator, - STATE(6932), 1, - sym_ms_based_modifier, - ACTIONS(5573), 2, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4934), 14, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_GT2, - STATE(6663), 2, - sym_template_type, - sym_dependent_type_identifier, - STATE(4832), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(4825), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [94977] = 8, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + [115658] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, - anon_sym_COLON_COLON, - ACTIONS(4827), 1, - anon_sym_LT, - ACTIONS(5399), 1, - anon_sym_EQ, - STATE(2626), 1, - sym_template_argument_list, - ACTIONS(5397), 2, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(3722), 6, - anon_sym_DOT_DOT_DOT, + ACTIONS(5494), 1, + anon_sym_LBRACE, + ACTIONS(5496), 1, + anon_sym_COLON, + ACTIONS(5824), 1, + anon_sym_SEMI, + STATE(3470), 1, + sym_field_declaration_list, + STATE(5653), 1, + sym_virtual_specifier, + STATE(6525), 1, + sym_base_class_clause, + ACTIONS(5498), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4037), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(3714), 24, + ACTIONS(4039), 24, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -286311,34 +317269,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_virtual, anon_sym_template, anon_sym_operator, - [95031] = 8, + [115718] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, - anon_sym_COLON_COLON, - ACTIONS(4827), 1, - anon_sym_LT, - ACTIONS(5589), 1, - anon_sym_LBRACK, - STATE(3313), 1, - sym_template_argument_list, - ACTIONS(3737), 3, - anon_sym_RPAREN, + ACTIONS(5494), 1, + anon_sym_LBRACE, + ACTIONS(5496), 1, + anon_sym_COLON, + ACTIONS(5824), 1, + anon_sym_SEMI, + STATE(3464), 1, + sym_field_declaration_list, + STATE(5767), 1, + sym_virtual_specifier, + STATE(6534), 1, + sym_base_class_clause, + ACTIONS(5498), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4033), 6, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(3722), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ, - ACTIONS(3714), 23, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4035), 24, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, @@ -286357,93 +317319,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_virtual, anon_sym_template, anon_sym_operator, - [95085] = 21, + [115778] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1497), 1, - anon_sym_operator, - ACTIONS(1517), 1, - anon_sym_TILDE, - ACTIONS(3087), 1, + ACTIONS(5494), 1, + anon_sym_LBRACE, + ACTIONS(5496), 1, + anon_sym_COLON, + ACTIONS(5824), 1, + anon_sym_SEMI, + STATE(3459), 1, + sym_field_declaration_list, + STATE(5812), 1, + sym_virtual_specifier, + STATE(6536), 1, + sym_base_class_clause, + ACTIONS(5498), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4029), 6, anon_sym_LPAREN2, - ACTIONS(4062), 1, - sym_identifier, - ACTIONS(4066), 1, + anon_sym_TILDE, anon_sym_STAR, - ACTIONS(4068), 1, anon_sym_AMP_AMP, - ACTIONS(4070), 1, - anon_sym_AMP, - ACTIONS(4072), 1, - anon_sym_COLON_COLON, - ACTIONS(4074), 1, - anon_sym_LBRACK, - STATE(4080), 1, - sym_parameter_list, - STATE(4678), 1, - sym__scope_resolution, - STATE(4879), 1, - sym__declarator, - STATE(5099), 1, - sym__abstract_declarator, - STATE(6932), 1, - sym_ms_based_modifier, - ACTIONS(5573), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(6663), 2, - sym_template_type, - sym_dependent_type_identifier, - STATE(4832), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(4825), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [95165] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3735), 1, anon_sym_COLON_COLON, - ACTIONS(3761), 1, - anon_sym_LBRACK, - ACTIONS(4827), 1, - anon_sym_LT, - STATE(3313), 1, - sym_template_argument_list, - ACTIONS(3754), 3, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - ACTIONS(3757), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_EQ, - ACTIONS(3752), 23, + ACTIONS(4031), 24, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, @@ -286462,24 +317369,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_virtual, anon_sym_template, anon_sym_operator, - [95219] = 4, + [115838] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4299), 1, - anon_sym_LBRACE, - ACTIONS(4368), 11, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(3424), 1, + anon_sym_COLON_COLON, + ACTIONS(5500), 1, + anon_sym_LT, + STATE(3279), 1, + sym_template_argument_list, + ACTIONS(3412), 8, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - ACTIONS(4370), 24, + anon_sym_LBRACE, + ACTIONS(3407), 27, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -286498,109 +317406,204 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, + anon_sym_COLON, sym_identifier, sym_auto, anon_sym_decltype, anon_sym_virtual, anon_sym_template, anon_sym_operator, - [95265] = 3, + anon_sym_try, + anon_sym_requires, + [115890] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(4233), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(4936), 1, anon_sym_PIPE, + ACTIONS(5792), 1, + anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5808), 1, anon_sym_AMP, - anon_sym_GT, + ACTIONS(5814), 1, anon_sym_GT_EQ, + ACTIONS(5818), 1, + anon_sym_bitand, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - sym_literal_suffix, - ACTIONS(4231), 24, - sym_raw_string_literal, + ACTIONS(4934), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_GT2, - [95309] = 11, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + [115968] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3037), 1, - anon_sym_LBRACE, - ACTIONS(5216), 1, - sym_auto, - ACTIONS(5218), 1, - anon_sym_decltype, - ACTIONS(5592), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(5594), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - STATE(2855), 1, - sym_decltype_auto, - STATE(3498), 1, - sym_new_declarator, - STATE(3941), 2, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(4936), 1, + anon_sym_PIPE, + ACTIONS(5792), 1, + anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5808), 1, + anon_sym_AMP, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5818), 1, + anon_sym_bitand, + STATE(2487), 1, sym_argument_list, - sym_initializer_list, - ACTIONS(4245), 11, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(5790), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4243), 16, + ACTIONS(4934), 11, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + [116048] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, + anon_sym_SLASH, + ACTIONS(5796), 1, anon_sym_LT_EQ_GT, + ACTIONS(5804), 1, + anon_sym_PIPE, + ACTIONS(5808), 1, + anon_sym_AMP, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [95369] = 3, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4934), 10, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + [116130] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5596), 15, + ACTIONS(5826), 17, anon_sym_DASH, anon_sym_PLUS, sym_primitive_type, + anon_sym_not, + anon_sym_compl, anon_sym_sizeof, sym_true, sym_false, @@ -286613,7 +317616,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_requires, sym_this, sym_nullptr, - ACTIONS(5598), 21, + ACTIONS(5828), 21, sym_raw_string_literal, anon_sym_LPAREN2, anon_sym_BANG, @@ -286635,107 +317638,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [95413] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5512), 1, - anon_sym___attribute__, - ACTIONS(5514), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5516), 1, - anon_sym___declspec, - ACTIONS(5524), 1, - anon_sym_virtual, - ACTIONS(5301), 4, - anon_sym_AMP, - anon_sym___based, - sym_identifier, - anon_sym_operator, - ACTIONS(5510), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(5303), 7, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(5518), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(3292), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual_function_specifier, - aux_sym__declaration_specifiers_repeat1, - [95471] = 11, + [116176] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3037), 1, - anon_sym_LBRACE, - ACTIONS(5216), 1, - sym_auto, - ACTIONS(5218), 1, - anon_sym_decltype, - ACTIONS(5592), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(5594), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - STATE(2855), 1, - sym_decltype_auto, - STATE(3501), 1, - sym_new_declarator, - STATE(3831), 2, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, + anon_sym_SLASH, + STATE(2487), 1, sym_argument_list, - sym_initializer_list, - ACTIONS(4237), 11, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5790), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(4936), 7, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4235), 16, + ACTIONS(4934), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [116238] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, + anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5804), 1, + anon_sym_PIPE, + ACTIONS(5808), 1, + anon_sym_AMP, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [95531] = 3, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4979), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + [116324] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4217), 12, + ACTIONS(3107), 1, + anon_sym_LBRACE, + ACTIONS(5514), 1, + anon_sym_LPAREN2, + STATE(3897), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4351), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -286747,12 +317774,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(4215), 24, - sym_raw_string_literal, + ACTIONS(4349), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -286764,241 +317788,295 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, anon_sym_GT2, - [95575] = 17, + [116376] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5518), 1, - anon_sym_const, - ACTIONS(5602), 1, - anon_sym_AMP_AMP, - ACTIONS(5604), 1, - anon_sym_AMP, - ACTIONS(5606), 1, - anon_sym___attribute__, - ACTIONS(5608), 1, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(5612), 1, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5614), 1, - anon_sym_noexcept, - ACTIONS(5616), 1, - anon_sym_throw, - ACTIONS(5618), 1, - anon_sym_requires, - STATE(4844), 1, - sym_trailing_return_type, - STATE(4855), 1, - sym_requires_clause, - ACTIONS(4160), 2, - anon_sym_final, - anon_sym_override, - STATE(3284), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - STATE(3436), 6, - sym_type_qualifier, - sym_virtual_specifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_function_declarator_repeat2, - ACTIONS(5610), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(5600), 8, + ACTIONS(5792), 1, + anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, + anon_sym_PIPE, + ACTIONS(5808), 1, + anon_sym_AMP, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5830), 1, anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(5832), 1, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [95647] = 17, + ACTIONS(5834), 1, + anon_sym_RBRACE, + ACTIONS(5836), 1, + anon_sym_QMARK, + STATE(2487), 1, + sym_argument_list, + STATE(5977), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [116472] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(5518), 1, - anon_sym_const, - ACTIONS(5602), 1, - anon_sym_AMP_AMP, - ACTIONS(5604), 1, - anon_sym_AMP, - ACTIONS(5606), 1, - anon_sym___attribute__, - ACTIONS(5612), 1, - anon_sym_DASH_GT, - ACTIONS(5614), 1, - anon_sym_noexcept, - ACTIONS(5616), 1, - anon_sym_throw, - ACTIONS(5618), 1, - anon_sym_requires, - ACTIONS(5622), 1, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, anon_sym_LBRACK, - STATE(4815), 1, - sym_trailing_return_type, - STATE(4842), 1, - sym_requires_clause, - ACTIONS(4160), 2, - anon_sym_final, - anon_sym_override, - STATE(3968), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - STATE(3431), 6, - sym_type_qualifier, - sym_virtual_specifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_function_declarator_repeat2, - ACTIONS(5610), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(5620), 8, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, + anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5804), 1, + anon_sym_PIPE, + ACTIONS(5808), 1, + anon_sym_AMP, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4934), 8, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [95719] = 5, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_or, + [116556] = 25, ACTIONS(3), 1, sym_comment, - STATE(3304), 1, - sym__enum_base_clause, - STATE(3356), 1, - sym_enumerator_list, - ACTIONS(4338), 9, - anon_sym_COMMA, + ACTIONS(4055), 1, anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, + anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, + anon_sym_PIPE, + ACTIONS(5808), 1, + anon_sym_AMP, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5035), 4, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4340), 25, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [95767] = 7, + anon_sym_RBRACE, + [116646] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5624), 1, - sym_identifier, - ACTIONS(5629), 1, - sym_primitive_type, - STATE(3075), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5627), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4103), 8, + ACTIONS(3107), 1, + anon_sym_LBRACE, + ACTIONS(5514), 1, anon_sym_LPAREN2, + STATE(3947), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(4553), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4551), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4105), 21, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - [95819] = 5, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [116698] = 19, ACTIONS(3), 1, sym_comment, - STATE(3314), 1, - sym__enum_base_clause, - STATE(3374), 1, - sym_enumerator_list, - ACTIONS(4348), 9, - anon_sym_COMMA, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1519), 1, anon_sym_LPAREN2, + ACTIONS(1521), 1, + anon_sym_TILDE, + ACTIONS(4755), 1, + sym_identifier, + ACTIONS(4765), 1, + anon_sym_COLON_COLON, + ACTIONS(5425), 1, + anon_sym_LBRACK, + ACTIONS(5437), 1, anon_sym_STAR, + ACTIONS(5439), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4350), 25, + ACTIONS(5441), 1, anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, + STATE(4973), 1, + sym__scope_resolution, + STATE(5142), 1, + sym__declarator, + STATE(6758), 1, + sym_ms_based_modifier, + STATE(4386), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(7236), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2965), 8, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -287007,91 +318085,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [95867] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3037), 1, - anon_sym_LBRACE, - ACTIONS(5216), 1, - sym_auto, - ACTIONS(5218), 1, - anon_sym_decltype, - ACTIONS(5592), 1, - anon_sym_LPAREN2, - ACTIONS(5594), 1, - anon_sym_LBRACK, - STATE(2855), 1, - sym_decltype_auto, - STATE(3473), 1, - sym_new_declarator, - STATE(3873), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4223), 11, - anon_sym_DASH, - anon_sym_PLUS, + STATE(5080), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [116775] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4419), 1, + anon_sym_LPAREN2, + ACTIONS(5261), 1, + anon_sym_LBRACK, + ACTIONS(5267), 1, + anon_sym_DOT, + ACTIONS(5269), 1, + anon_sym_DASH_GT, + ACTIONS(5838), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5840), 1, + anon_sym_COMMA, + ACTIONS(5846), 1, anon_sym_SLASH, + ACTIONS(5852), 1, anon_sym_PIPE, + ACTIONS(5856), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, + ACTIONS(5862), 1, + anon_sym_LT_LT, + ACTIONS(5864), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4219), 16, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(5866), 1, + anon_sym_QMARK, + ACTIONS(5868), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5870), 1, + anon_sym_bitor, + ACTIONS(5872), 1, + anon_sym_bitand, + ACTIONS(5876), 1, + anon_sym_GT2, + STATE(3020), 1, + sym_argument_list, + STATE(5986), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(5842), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5844), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(5848), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5850), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5854), 2, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + anon_sym_xor, + ACTIONS(5874), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [95927] = 5, + ACTIONS(5858), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5860), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [116868] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(4295), 1, - anon_sym_COLON_COLON, - ACTIONS(4299), 1, - anon_sym_LBRACE, - ACTIONS(4368), 10, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1519), 1, anon_sym_LPAREN2, + ACTIONS(1521), 1, anon_sym_TILDE, + ACTIONS(4247), 1, + sym_identifier, + ACTIONS(5049), 1, + anon_sym_COLON_COLON, + ACTIONS(5425), 1, + anon_sym_LBRACK, + ACTIONS(5452), 1, anon_sym_STAR, + ACTIONS(5454), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - ACTIONS(4370), 24, + ACTIONS(5456), 1, anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, + STATE(4946), 1, + sym__scope_resolution, + STATE(5366), 1, + sym__declarator, + STATE(6825), 1, + sym_ms_based_modifier, + STATE(4386), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(7236), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2965), 8, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -287100,92 +318209,188 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - [95975] = 11, + STATE(5080), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [116945] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3037), 1, - anon_sym_LBRACE, - ACTIONS(5216), 1, - sym_auto, - ACTIONS(5218), 1, - anon_sym_decltype, - ACTIONS(5592), 1, + ACTIONS(4419), 1, anon_sym_LPAREN2, - ACTIONS(5594), 1, + ACTIONS(5261), 1, anon_sym_LBRACK, - STATE(2855), 1, - sym_decltype_auto, - STATE(3470), 1, - sym_new_declarator, - STATE(3892), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4252), 11, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(5267), 1, + anon_sym_DOT, + ACTIONS(5269), 1, + anon_sym_DASH_GT, + ACTIONS(5838), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5840), 1, + anon_sym_COMMA, + ACTIONS(5846), 1, anon_sym_SLASH, + ACTIONS(5852), 1, anon_sym_PIPE, + ACTIONS(5856), 1, anon_sym_AMP, + ACTIONS(5862), 1, + anon_sym_LT_LT, + ACTIONS(5864), 1, + anon_sym_GT_GT, + ACTIONS(5866), 1, + anon_sym_QMARK, + ACTIONS(5868), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5870), 1, + anon_sym_bitor, + ACTIONS(5872), 1, + anon_sym_bitand, + ACTIONS(5878), 1, + anon_sym_GT2, + STATE(3020), 1, + sym_argument_list, + STATE(6008), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(5842), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5844), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5848), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5850), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5854), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5874), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5858), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5860), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, + [117038] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4250), 16, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5798), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(5880), 1, anon_sym_COMMA, + ACTIONS(5886), 1, + anon_sym_SLASH, + ACTIONS(5892), 1, + anon_sym_PIPE, + ACTIONS(5896), 1, + anon_sym_AMP, + ACTIONS(5902), 1, + anon_sym_GT_EQ, + ACTIONS(5906), 1, + anon_sym_RBRACK, + ACTIONS(5908), 1, + anon_sym_QMARK, + ACTIONS(5910), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5912), 1, + anon_sym_bitor, + ACTIONS(5914), 1, + anon_sym_bitand, + STATE(2487), 1, + sym_argument_list, + STATE(6054), 1, + aux_sym_lambda_capture_specifier_repeat1, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5882), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5884), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(5888), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5890), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5894), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(5904), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5898), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [96035] = 10, + anon_sym_not_eq, + ACTIONS(5900), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [117131] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(5512), 1, - anon_sym___attribute__, - ACTIONS(5514), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5516), 1, - anon_sym___declspec, - ACTIONS(5524), 1, - anon_sym_virtual, - ACTIONS(5341), 4, - anon_sym_AMP, + ACTIONS(47), 1, anon_sym___based, - sym_identifier, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, anon_sym_operator, - ACTIONS(5510), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(5343), 7, + ACTIONS(1519), 1, anon_sym_LPAREN2, + ACTIONS(1521), 1, + anon_sym_TILDE, + ACTIONS(4755), 1, + sym_identifier, + ACTIONS(4765), 1, + anon_sym_COLON_COLON, + ACTIONS(5425), 1, + anon_sym_LBRACK, + ACTIONS(5446), 1, anon_sym_STAR, + ACTIONS(5448), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(5518), 8, + ACTIONS(5450), 1, + anon_sym_AMP, + STATE(4973), 1, + sym__scope_resolution, + STATE(5156), 1, + sym__declarator, + STATE(7300), 1, + sym_ms_based_modifier, + STATE(4386), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(7236), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2965), 8, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -287194,46 +318399,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(3292), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual_function_specifier, - aux_sym__declaration_specifiers_repeat1, - [96093] = 10, + STATE(5080), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [117208] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(5634), 1, - anon_sym___attribute__, - ACTIONS(5637), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5640), 1, - anon_sym___declspec, - ACTIONS(5646), 1, - anon_sym_virtual, - ACTIONS(5220), 4, - anon_sym_AMP, + ACTIONS(47), 1, anon_sym___based, - sym_identifier, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, anon_sym_operator, - ACTIONS(5631), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(5222), 7, + ACTIONS(1519), 1, anon_sym_LPAREN2, + ACTIONS(1521), 1, + anon_sym_TILDE, + ACTIONS(4755), 1, + sym_identifier, + ACTIONS(4765), 1, + anon_sym_COLON_COLON, + ACTIONS(5419), 1, anon_sym_STAR, + ACTIONS(5421), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(5643), 8, + ACTIONS(5423), 1, + anon_sym_AMP, + ACTIONS(5425), 1, + anon_sym_LBRACK, + STATE(4973), 1, + sym__scope_resolution, + STATE(5085), 1, + sym__declarator, + STATE(6817), 1, + sym_ms_based_modifier, + STATE(4386), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(7236), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2965), 8, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -287242,62 +318457,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(3292), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual_function_specifier, - aux_sym__declaration_specifiers_repeat1, - [96151] = 17, + STATE(5080), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [117285] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(5602), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1519), 1, + anon_sym_LPAREN2, + ACTIONS(1521), 1, + anon_sym_TILDE, + ACTIONS(4247), 1, + sym_identifier, + ACTIONS(5049), 1, + anon_sym_COLON_COLON, + ACTIONS(5425), 1, + anon_sym_LBRACK, + ACTIONS(5452), 1, + anon_sym_STAR, + ACTIONS(5454), 1, anon_sym_AMP_AMP, - ACTIONS(5604), 1, + ACTIONS(5456), 1, anon_sym_AMP, - ACTIONS(5608), 1, - anon_sym_LBRACK, - ACTIONS(5614), 1, - anon_sym_noexcept, - ACTIONS(5616), 1, - anon_sym_throw, - ACTIONS(5649), 1, - anon_sym___attribute__, - ACTIONS(5653), 1, - anon_sym_DASH_GT, - ACTIONS(5655), 1, - anon_sym_requires, - STATE(4777), 1, - sym_trailing_return_type, - STATE(4855), 1, - sym_requires_clause, - ACTIONS(4160), 2, - anon_sym_final, - anon_sym_override, - STATE(3322), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - STATE(3465), 6, + STATE(4946), 1, + sym__scope_resolution, + STATE(5361), 1, + sym__declarator, + STATE(6825), 1, + sym_ms_based_modifier, + STATE(4386), 2, sym_type_qualifier, - sym_virtual_specifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_function_declarator_repeat2, - ACTIONS(5600), 7, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - ACTIONS(5651), 7, + aux_sym_type_definition_repeat1, + STATE(7236), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2965), 8, + anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -287305,220 +318515,377 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [96222] = 3, + STATE(5080), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [117362] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3906), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, + ACTIONS(4419), 1, + anon_sym_LPAREN2, + ACTIONS(5261), 1, + anon_sym_LBRACK, + ACTIONS(5267), 1, anon_sym_DOT, - ACTIONS(3908), 26, + ACTIONS(5269), 1, + anon_sym_DASH_GT, + ACTIONS(5838), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(5840), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(5846), 1, + anon_sym_SLASH, + ACTIONS(5852), 1, + anon_sym_PIPE, + ACTIONS(5856), 1, + anon_sym_AMP, + ACTIONS(5862), 1, + anon_sym_LT_LT, + ACTIONS(5864), 1, + anon_sym_GT_GT, + ACTIONS(5866), 1, + anon_sym_QMARK, + ACTIONS(5868), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5870), 1, + anon_sym_bitor, + ACTIONS(5872), 1, + anon_sym_bitand, + ACTIONS(5916), 1, + anon_sym_GT2, + STATE(3020), 1, + sym_argument_list, + STATE(6011), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(5842), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5844), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(5848), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5850), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5854), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(5874), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5858), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5860), 4, + anon_sym_GT, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_LT_EQ, + anon_sym_LT, + [117455] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1519), 1, + anon_sym_LPAREN2, + ACTIONS(1521), 1, + anon_sym_TILDE, + ACTIONS(5425), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_requires, - [96265] = 3, + ACTIONS(5427), 1, + sym_identifier, + ACTIONS(5429), 1, + anon_sym_STAR, + ACTIONS(5431), 1, + anon_sym_AMP_AMP, + ACTIONS(5433), 1, + anon_sym_AMP, + ACTIONS(5435), 1, + anon_sym_COLON_COLON, + STATE(4941), 1, + sym__scope_resolution, + STATE(5303), 1, + sym__declarator, + STATE(6755), 1, + sym_ms_based_modifier, + STATE(4386), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(7236), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2965), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5080), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [117532] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3914), 9, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, + ACTIONS(5808), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(3916), 26, - anon_sym_DOT_DOT_DOT, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(5918), 1, anon_sym_COMMA, + ACTIONS(5920), 1, anon_sym_RPAREN, - anon_sym_LPAREN2, + STATE(2487), 1, + sym_argument_list, + STATE(5925), 1, + aux_sym_argument_list_repeat1, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [117625] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, + anon_sym_SLASH, + ACTIONS(5796), 1, anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, + anon_sym_PIPE, + ACTIONS(5808), 1, + anon_sym_AMP, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(5924), 1, + anon_sym_RPAREN, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_requires, - [96308] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5657), 1, - anon_sym_COLON, - STATE(2932), 1, - sym_enumerator_list, - STATE(3435), 1, - sym__enum_base_clause, - ACTIONS(4350), 11, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(5790), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5922), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, + [117716] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4419), 1, + anon_sym_LPAREN2, + ACTIONS(5261), 1, + anon_sym_LBRACK, + ACTIONS(5267), 1, anon_sym_DOT, - ACTIONS(4348), 21, + ACTIONS(5269), 1, + anon_sym_DASH_GT, + ACTIONS(5838), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(5840), 1, anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(5846), 1, + anon_sym_SLASH, + ACTIONS(5852), 1, + anon_sym_PIPE, + ACTIONS(5856), 1, + anon_sym_AMP, + ACTIONS(5862), 1, + anon_sym_LT_LT, + ACTIONS(5864), 1, + anon_sym_GT_GT, + ACTIONS(5866), 1, + anon_sym_QMARK, + ACTIONS(5868), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5870), 1, + anon_sym_bitor, + ACTIONS(5872), 1, + anon_sym_bitand, + ACTIONS(5926), 1, + anon_sym_GT2, + STATE(3020), 1, + sym_argument_list, + STATE(6092), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(5842), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5844), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(5848), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5850), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5854), 2, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + anon_sym_xor, + ACTIONS(5874), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [96357] = 17, + ACTIONS(5858), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5860), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [117809] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(1497), 1, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, anon_sym_operator, - ACTIONS(5659), 1, - sym_identifier, - ACTIONS(5661), 1, + ACTIONS(1519), 1, anon_sym_LPAREN2, - ACTIONS(5663), 1, - anon_sym_STAR, - ACTIONS(5665), 1, - anon_sym_AMP_AMP, - ACTIONS(5667), 1, - anon_sym_AMP, - STATE(4135), 1, - sym_ms_unaligned_ptr_modifier, - STATE(5171), 1, - sym__field_declarator, - STATE(6690), 1, - sym_ms_based_modifier, - ACTIONS(2919), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3317), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4023), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2917), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(2921), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(4890), 8, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - sym_reference_field_declarator, - sym_template_method, - sym_operator_name, - [96428] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1497), 1, - anon_sym_operator, - ACTIONS(5659), 1, + ACTIONS(1521), 1, + anon_sym_TILDE, + ACTIONS(4755), 1, sym_identifier, - ACTIONS(5661), 1, - anon_sym_LPAREN2, - ACTIONS(5663), 1, + ACTIONS(4765), 1, + anon_sym_COLON_COLON, + ACTIONS(5425), 1, + anon_sym_LBRACK, + ACTIONS(5446), 1, anon_sym_STAR, - ACTIONS(5665), 1, + ACTIONS(5448), 1, anon_sym_AMP_AMP, - ACTIONS(5667), 1, + ACTIONS(5450), 1, anon_sym_AMP, - STATE(4135), 1, - sym_ms_unaligned_ptr_modifier, - STATE(5171), 1, - sym__field_declarator, - STATE(6690), 1, + STATE(4973), 1, + sym__scope_resolution, + STATE(5151), 1, + sym__declarator, + STATE(7300), 1, sym_ms_based_modifier, - ACTIONS(2919), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(4009), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4023), 2, + STATE(4386), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2917), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(2921), 8, + STATE(7236), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2965), 8, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -287527,335 +318894,716 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(4890), 8, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - sym_reference_field_declarator, - sym_template_method, + STATE(5080), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, sym_operator_name, - [96499] = 5, + [117886] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5569), 1, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, anon_sym_LBRACK, - STATE(3345), 1, - sym_new_declarator, - ACTIONS(4703), 9, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, + ACTIONS(5808), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(4701), 24, - anon_sym_DOT_DOT_DOT, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(5928), 1, anon_sym_COMMA, + ACTIONS(5930), 1, anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(5932), 1, + anon_sym_SEMI, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [117979] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4419), 1, + anon_sym_LPAREN2, + ACTIONS(5261), 1, + anon_sym_LBRACK, + ACTIONS(5267), 1, + anon_sym_DOT, + ACTIONS(5269), 1, + anon_sym_DASH_GT, + ACTIONS(5838), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5840), 1, + anon_sym_COMMA, + ACTIONS(5846), 1, + anon_sym_SLASH, + ACTIONS(5852), 1, + anon_sym_PIPE, + ACTIONS(5856), 1, + anon_sym_AMP, + ACTIONS(5862), 1, anon_sym_LT_LT, + ACTIONS(5864), 1, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, + ACTIONS(5866), 1, anon_sym_QMARK, + ACTIONS(5868), 1, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [96546] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3882), 9, + ACTIONS(5870), 1, + anon_sym_bitor, + ACTIONS(5872), 1, + anon_sym_bitand, + ACTIONS(5934), 1, + anon_sym_GT2, + STATE(3020), 1, + sym_argument_list, + STATE(6001), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(5842), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(5844), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5848), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5850), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5854), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5874), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5858), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5860), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + [118072] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(3884), 26, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, + anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, + anon_sym_PIPE, + ACTIONS(5808), 1, + anon_sym_AMP, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(5936), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(5938), 1, + anon_sym_RBRACE, + STATE(2487), 1, + sym_argument_list, + STATE(5938), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [118165] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, + anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, + anon_sym_PIPE, + ACTIONS(5808), 1, + anon_sym_AMP, + ACTIONS(5814), 1, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5834), 1, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, + ACTIONS(5836), 1, anon_sym_QMARK, - anon_sym_LT_EQ_GT, + ACTIONS(5940), 1, + anon_sym_COMMA, + STATE(2487), 1, + sym_argument_list, + STATE(5977), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_requires, - [96589] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3898), 9, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(5790), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + [118258] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4419), 1, + anon_sym_LPAREN2, + ACTIONS(5261), 1, + anon_sym_LBRACK, + ACTIONS(5267), 1, anon_sym_DOT, - ACTIONS(3900), 26, + ACTIONS(5269), 1, + anon_sym_DASH_GT, + ACTIONS(5838), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(5840), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(5846), 1, + anon_sym_SLASH, + ACTIONS(5852), 1, + anon_sym_PIPE, + ACTIONS(5856), 1, + anon_sym_AMP, + ACTIONS(5862), 1, + anon_sym_LT_LT, + ACTIONS(5864), 1, + anon_sym_GT_GT, + ACTIONS(5866), 1, + anon_sym_QMARK, + ACTIONS(5868), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5870), 1, + anon_sym_bitor, + ACTIONS(5872), 1, + anon_sym_bitand, + ACTIONS(5942), 1, + anon_sym_GT2, + STATE(3020), 1, + sym_argument_list, + STATE(5940), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(5842), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5844), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(5848), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5850), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5854), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(5874), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5858), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5860), 4, + anon_sym_GT, anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [118351] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4419), 1, + anon_sym_LPAREN2, + ACTIONS(5261), 1, + anon_sym_LBRACK, + ACTIONS(5267), 1, + anon_sym_DOT, + ACTIONS(5269), 1, + anon_sym_DASH_GT, + ACTIONS(5838), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5840), 1, + anon_sym_COMMA, + ACTIONS(5846), 1, + anon_sym_SLASH, + ACTIONS(5852), 1, + anon_sym_PIPE, + ACTIONS(5856), 1, + anon_sym_AMP, + ACTIONS(5862), 1, anon_sym_LT_LT, + ACTIONS(5864), 1, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, + ACTIONS(5866), 1, anon_sym_QMARK, + ACTIONS(5868), 1, anon_sym_LT_EQ_GT, + ACTIONS(5870), 1, + anon_sym_bitor, + ACTIONS(5872), 1, + anon_sym_bitand, + ACTIONS(5944), 1, + anon_sym_GT2, + STATE(3020), 1, + sym_argument_list, + STATE(5882), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(5842), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5844), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5848), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5850), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5854), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5874), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_requires, - [96632] = 3, + ACTIONS(5858), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5860), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [118444] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3874), 9, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, + ACTIONS(5808), 1, anon_sym_AMP, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(5946), 1, + anon_sym_COMMA, + ACTIONS(5948), 1, + anon_sym_RBRACE, + STATE(2487), 1, + sym_argument_list, + STATE(5883), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + [118537] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(3876), 26, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, + anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, + anon_sym_PIPE, + ACTIONS(5808), 1, + anon_sym_AMP, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(5950), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(5952), 1, + anon_sym_RBRACE, + STATE(2487), 1, + sym_argument_list, + STATE(6093), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [118630] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4419), 1, + anon_sym_LPAREN2, + ACTIONS(5261), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, + ACTIONS(5267), 1, + anon_sym_DOT, + ACTIONS(5269), 1, + anon_sym_DASH_GT, + ACTIONS(5838), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5840), 1, + anon_sym_COMMA, + ACTIONS(5846), 1, + anon_sym_SLASH, + ACTIONS(5852), 1, + anon_sym_PIPE, + ACTIONS(5856), 1, + anon_sym_AMP, + ACTIONS(5862), 1, + anon_sym_LT_LT, + ACTIONS(5864), 1, + anon_sym_GT_GT, + ACTIONS(5866), 1, anon_sym_QMARK, + ACTIONS(5868), 1, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_requires, - [96675] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3874), 9, + ACTIONS(5870), 1, + anon_sym_bitor, + ACTIONS(5872), 1, + anon_sym_bitand, + ACTIONS(5954), 1, + anon_sym_GT2, + STATE(3020), 1, + sym_argument_list, + STATE(5982), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(5842), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(3876), 26, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(5844), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(5848), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5850), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5854), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(5874), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5858), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5860), 4, + anon_sym_GT, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_requires, - [96718] = 4, + anon_sym_LT_EQ, + anon_sym_LT, + [118723] = 27, ACTIONS(3), 1, sym_comment, - STATE(3376), 1, - sym_enumerator_list, - ACTIONS(4389), 9, - anon_sym_COMMA, + ACTIONS(4055), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4391), 25, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + ACTIONS(4860), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [96763] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3874), 9, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, + ACTIONS(5808), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(3876), 26, - anon_sym_DOT_DOT_DOT, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(5918), 1, anon_sym_COMMA, + ACTIONS(5956), 1, anon_sym_RPAREN, - anon_sym_LPAREN2, + STATE(2487), 1, + sym_argument_list, + STATE(5989), 1, + aux_sym_argument_list_repeat1, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_requires, - [96806] = 17, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [118816] = 19, ACTIONS(3), 1, sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, ACTIONS(47), 1, anon_sym___based, - ACTIONS(1497), 1, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, anon_sym_operator, - ACTIONS(5661), 1, + ACTIONS(1519), 1, anon_sym_LPAREN2, - ACTIONS(5669), 1, - sym_identifier, - ACTIONS(5671), 1, + ACTIONS(1521), 1, + anon_sym_TILDE, + ACTIONS(1523), 1, anon_sym_STAR, - ACTIONS(5673), 1, - anon_sym_AMP_AMP, - ACTIONS(5675), 1, + ACTIONS(1525), 1, anon_sym_AMP, - STATE(4135), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4775), 1, - sym__field_declarator, - STATE(6560), 1, + ACTIONS(4247), 1, + sym_identifier, + ACTIONS(5049), 1, + anon_sym_COLON_COLON, + ACTIONS(5425), 1, + anon_sym_LBRACK, + STATE(4946), 1, + sym__scope_resolution, + STATE(5336), 1, + sym__declarator, + STATE(7250), 1, sym_ms_based_modifier, - ACTIONS(2919), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(4009), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4046), 2, + STATE(4386), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2917), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(2921), 8, + STATE(7236), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2965), 8, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -287864,186 +319612,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(4890), 8, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - sym_reference_field_declarator, - sym_template_method, + STATE(5080), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, sym_operator_name, - [96877] = 6, + [118893] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5657), 1, - anon_sym_COLON, - STATE(2888), 1, - sym_enumerator_list, - STATE(3448), 1, - sym__enum_base_clause, - ACTIONS(4340), 11, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5880), 1, + anon_sym_COMMA, + ACTIONS(5886), 1, anon_sym_SLASH, + ACTIONS(5892), 1, anon_sym_PIPE, + ACTIONS(5896), 1, anon_sym_AMP, - anon_sym_GT, + ACTIONS(5902), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4338), 21, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACE, - anon_sym_LBRACK, + ACTIONS(5908), 1, anon_sym_QMARK, + ACTIONS(5910), 1, anon_sym_LT_EQ_GT, + ACTIONS(5912), 1, + anon_sym_bitor, + ACTIONS(5914), 1, + anon_sym_bitand, + ACTIONS(5958), 1, + anon_sym_RBRACK, + STATE(2487), 1, + sym_argument_list, + STATE(5937), 1, + aux_sym_lambda_capture_specifier_repeat1, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [96926] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3918), 9, + ACTIONS(5882), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(3920), 26, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(5884), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(5888), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5890), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5894), 2, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_xor, + ACTIONS(5904), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_requires, - [96969] = 7, + ACTIONS(5898), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5900), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [118986] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5506), 1, - anon_sym_LBRACE, - ACTIONS(5677), 1, - anon_sym_COLON, - STATE(3148), 1, - sym__enum_base_clause, - STATE(3149), 1, - sym_enumerator_list, - ACTIONS(4348), 7, + ACTIONS(4055), 1, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4350), 24, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + ACTIONS(4860), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - [97020] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3894), 9, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, + ACTIONS(5808), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(3896), 26, - anon_sym_DOT_DOT_DOT, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(5918), 1, anon_sym_COMMA, + ACTIONS(5960), 1, anon_sym_RPAREN, - anon_sym_LPAREN2, + STATE(2487), 1, + sym_argument_list, + STATE(5891), 1, + aux_sym_argument_list_repeat1, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_requires, - [97063] = 3, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [119079] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3870), 9, + ACTIONS(3935), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4722), 1, + anon_sym_LPAREN2, + ACTIONS(4728), 1, + anon_sym_LBRACK, + ACTIONS(3414), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -288053,11 +319775,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(3872), 26, + ACTIONS(3419), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -288069,54 +319789,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - anon_sym_requires, - [97106] = 17, + [119130] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(1497), 1, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, anon_sym_operator, - ACTIONS(5661), 1, + ACTIONS(1519), 1, anon_sym_LPAREN2, - ACTIONS(5669), 1, + ACTIONS(1521), 1, + anon_sym_TILDE, + ACTIONS(4755), 1, sym_identifier, - ACTIONS(5671), 1, + ACTIONS(4765), 1, + anon_sym_COLON_COLON, + ACTIONS(5419), 1, anon_sym_STAR, - ACTIONS(5673), 1, + ACTIONS(5421), 1, anon_sym_AMP_AMP, - ACTIONS(5675), 1, + ACTIONS(5423), 1, anon_sym_AMP, - STATE(4135), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4721), 1, - sym__field_declarator, - STATE(6560), 1, + ACTIONS(5425), 1, + anon_sym_LBRACK, + STATE(4973), 1, + sym__scope_resolution, + STATE(5105), 1, + sym__declarator, + STATE(6817), 1, sym_ms_based_modifier, - ACTIONS(2919), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(4009), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4020), 2, + STATE(4386), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2917), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(2921), 8, + STATE(7236), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2965), 8, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -288125,84 +319847,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(4890), 8, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - sym_reference_field_declarator, - sym_template_method, + STATE(5080), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, sym_operator_name, - [97177] = 6, + [119207] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(3820), 1, - anon_sym_LBRACK, - ACTIONS(3823), 1, - anon_sym_SEMI, - ACTIONS(3813), 3, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(3816), 7, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_EQ, - ACTIONS(3811), 23, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, + ACTIONS(47), 1, anon_sym___based, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, + ACTIONS(976), 1, anon_sym_template, + ACTIONS(1501), 1, anon_sym_operator, - [97226] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(3363), 1, - sym_enumerator_list, - ACTIONS(4379), 9, - anon_sym_COMMA, + ACTIONS(1519), 1, anon_sym_LPAREN2, + ACTIONS(1521), 1, + anon_sym_TILDE, + ACTIONS(4247), 1, + sym_identifier, + ACTIONS(5049), 1, + anon_sym_COLON_COLON, + ACTIONS(5425), 1, + anon_sym_LBRACK, + ACTIONS(5452), 1, anon_sym_STAR, + ACTIONS(5454), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4381), 25, + ACTIONS(5456), 1, anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, + STATE(4946), 1, + sym__scope_resolution, + STATE(5365), 1, + sym__declarator, + STATE(6825), 1, + sym_ms_based_modifier, + STATE(4386), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(7236), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2965), 8, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -288211,281 +319905,386 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [97271] = 4, + STATE(5080), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [119284] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3816), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(3818), 10, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(4419), 1, + anon_sym_LPAREN2, + ACTIONS(5261), 1, + anon_sym_LBRACK, + ACTIONS(5267), 1, + anon_sym_DOT, + ACTIONS(5269), 1, + anon_sym_DASH_GT, + ACTIONS(5838), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5840), 1, + anon_sym_COMMA, + ACTIONS(5846), 1, anon_sym_SLASH, + ACTIONS(5852), 1, anon_sym_PIPE, + ACTIONS(5856), 1, anon_sym_AMP, + ACTIONS(5862), 1, + anon_sym_LT_LT, + ACTIONS(5864), 1, + anon_sym_GT_GT, + ACTIONS(5866), 1, + anon_sym_QMARK, + ACTIONS(5868), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5870), 1, + anon_sym_bitor, + ACTIONS(5872), 1, + anon_sym_bitand, + ACTIONS(5962), 1, + anon_sym_GT2, + STATE(3020), 1, + sym_argument_list, + STATE(5963), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(5842), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5844), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5848), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5850), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5854), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5874), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5858), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5860), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_COLON, + [119377] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(3823), 23, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, + anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, + anon_sym_PIPE, + ACTIONS(5808), 1, + anon_sym_AMP, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(5964), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(5967), 1, + anon_sym_SEMI, + ACTIONS(5969), 1, + anon_sym_RBRACE, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [119470] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5880), 1, + anon_sym_COMMA, + ACTIONS(5886), 1, + anon_sym_SLASH, + ACTIONS(5892), 1, + anon_sym_PIPE, + ACTIONS(5896), 1, + anon_sym_AMP, + ACTIONS(5902), 1, + anon_sym_GT_EQ, + ACTIONS(5908), 1, anon_sym_QMARK, + ACTIONS(5910), 1, anon_sym_LT_EQ_GT, + ACTIONS(5912), 1, + anon_sym_bitor, + ACTIONS(5914), 1, + anon_sym_bitand, + ACTIONS(5971), 1, + anon_sym_RBRACK, + STATE(2487), 1, + sym_argument_list, + STATE(5937), 1, + aux_sym_lambda_capture_specifier_repeat1, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [97316] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3886), 9, + ACTIONS(5882), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(5884), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5888), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5890), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5894), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5904), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5898), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5900), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + [119563] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(3888), 26, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, + anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, + anon_sym_PIPE, + ACTIONS(5808), 1, + anon_sym_AMP, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(5918), 1, anon_sym_COMMA, + ACTIONS(5973), 1, anon_sym_RPAREN, - anon_sym_LPAREN2, + STATE(2487), 1, + sym_argument_list, + STATE(5828), 1, + aux_sym_argument_list_repeat1, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_requires, - [97359] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1497), 1, - anon_sym_operator, - ACTIONS(5659), 1, - sym_identifier, - ACTIONS(5661), 1, - anon_sym_LPAREN2, - ACTIONS(5663), 1, - anon_sym_STAR, - ACTIONS(5665), 1, - anon_sym_AMP_AMP, - ACTIONS(5667), 1, - anon_sym_AMP, - STATE(4135), 1, - sym_ms_unaligned_ptr_modifier, - STATE(5155), 1, - sym__field_declarator, - STATE(6690), 1, - sym_ms_based_modifier, - ACTIONS(2919), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(4009), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4011), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2917), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(2921), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(4890), 8, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - sym_reference_field_declarator, - sym_template_method, - sym_operator_name, - [97430] = 5, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [119656] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5679), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - STATE(2800), 1, - sym_argument_list, - ACTIONS(4368), 9, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, + anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, + anon_sym_PIPE, + ACTIONS(5808), 1, + anon_sym_AMP, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(5975), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_TILDE, + ACTIONS(5977), 1, + anon_sym_RBRACE, + STATE(2487), 1, + sym_argument_list, + STATE(5974), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - ACTIONS(4370), 24, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - [97477] = 17, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [119749] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1497), 1, - anon_sym_operator, - ACTIONS(5661), 1, - anon_sym_LPAREN2, - ACTIONS(5669), 1, - sym_identifier, - ACTIONS(5671), 1, - anon_sym_STAR, - ACTIONS(5673), 1, + ACTIONS(29), 1, anon_sym_AMP_AMP, - ACTIONS(5675), 1, - anon_sym_AMP, - STATE(4135), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4775), 1, - sym__field_declarator, - STATE(6560), 1, - sym_ms_based_modifier, - ACTIONS(2919), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3312), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4046), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2917), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(2921), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(4890), 8, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - sym_reference_field_declarator, - sym_template_method, - sym_operator_name, - [97548] = 17, - ACTIONS(3), 1, - sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(1497), 1, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, anon_sym_operator, - ACTIONS(5659), 1, - sym_identifier, - ACTIONS(5661), 1, + ACTIONS(1519), 1, anon_sym_LPAREN2, - ACTIONS(5663), 1, + ACTIONS(1521), 1, + anon_sym_TILDE, + ACTIONS(1523), 1, anon_sym_STAR, - ACTIONS(5665), 1, - anon_sym_AMP_AMP, - ACTIONS(5667), 1, + ACTIONS(1525), 1, anon_sym_AMP, - STATE(4135), 1, - sym_ms_unaligned_ptr_modifier, - STATE(5067), 1, - sym__field_declarator, - STATE(6690), 1, + ACTIONS(4247), 1, + sym_identifier, + ACTIONS(5049), 1, + anon_sym_COLON_COLON, + ACTIONS(5425), 1, + anon_sym_LBRACK, + STATE(4946), 1, + sym__scope_resolution, + STATE(5334), 1, + sym__declarator, + STATE(7250), 1, sym_ms_based_modifier, - ACTIONS(2919), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3298), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4048), 2, + STATE(4386), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2917), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(2921), 8, + STATE(7236), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2965), 8, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -288494,102 +320293,255 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(4890), 8, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - sym_reference_field_declarator, - sym_template_method, + STATE(5080), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, sym_operator_name, - [97619] = 3, + [119826] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3890), 9, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(4419), 1, + anon_sym_LPAREN2, + ACTIONS(5261), 1, + anon_sym_LBRACK, + ACTIONS(5267), 1, + anon_sym_DOT, + ACTIONS(5269), 1, + anon_sym_DASH_GT, + ACTIONS(5838), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5840), 1, + anon_sym_COMMA, + ACTIONS(5846), 1, anon_sym_SLASH, + ACTIONS(5852), 1, anon_sym_PIPE, + ACTIONS(5856), 1, anon_sym_AMP, + ACTIONS(5862), 1, + anon_sym_LT_LT, + ACTIONS(5864), 1, + anon_sym_GT_GT, + ACTIONS(5866), 1, + anon_sym_QMARK, + ACTIONS(5868), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5870), 1, + anon_sym_bitor, + ACTIONS(5872), 1, + anon_sym_bitand, + ACTIONS(5979), 1, + anon_sym_GT2, + STATE(3020), 1, + sym_argument_list, + STATE(5973), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(5842), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5844), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5848), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5850), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5854), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5874), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5858), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5860), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + [119919] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(3892), 26, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, + anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, + anon_sym_PIPE, + ACTIONS(5808), 1, + anon_sym_AMP, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(5981), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(5983), 1, + anon_sym_RBRACE, + STATE(2487), 1, + sym_argument_list, + STATE(5829), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [120012] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4419), 1, + anon_sym_LPAREN2, + ACTIONS(5261), 1, + anon_sym_LBRACK, + ACTIONS(5267), 1, + anon_sym_DOT, + ACTIONS(5269), 1, + anon_sym_DASH_GT, + ACTIONS(5838), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5840), 1, + anon_sym_COMMA, + ACTIONS(5846), 1, + anon_sym_SLASH, + ACTIONS(5852), 1, + anon_sym_PIPE, + ACTIONS(5856), 1, + anon_sym_AMP, + ACTIONS(5862), 1, anon_sym_LT_LT, + ACTIONS(5864), 1, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, + ACTIONS(5866), 1, anon_sym_QMARK, + ACTIONS(5868), 1, anon_sym_LT_EQ_GT, + ACTIONS(5870), 1, + anon_sym_bitor, + ACTIONS(5872), 1, + anon_sym_bitand, + ACTIONS(5985), 1, + anon_sym_GT2, + STATE(3020), 1, + sym_argument_list, + STATE(5831), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(5842), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5844), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5848), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5850), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5854), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5874), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_requires, - [97662] = 17, + ACTIONS(5858), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5860), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [120105] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(5602), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1519), 1, + anon_sym_LPAREN2, + ACTIONS(1521), 1, + anon_sym_TILDE, + ACTIONS(4755), 1, + sym_identifier, + ACTIONS(4765), 1, + anon_sym_COLON_COLON, + ACTIONS(5425), 1, + anon_sym_LBRACK, + ACTIONS(5437), 1, + anon_sym_STAR, + ACTIONS(5439), 1, anon_sym_AMP_AMP, - ACTIONS(5604), 1, + ACTIONS(5441), 1, anon_sym_AMP, - ACTIONS(5614), 1, - anon_sym_noexcept, - ACTIONS(5616), 1, - anon_sym_throw, - ACTIONS(5622), 1, - anon_sym_LBRACK, - ACTIONS(5649), 1, - anon_sym___attribute__, - ACTIONS(5653), 1, - anon_sym_DASH_GT, - ACTIONS(5655), 1, - anon_sym_requires, - STATE(4719), 1, - sym_trailing_return_type, - STATE(4842), 1, - sym_requires_clause, - ACTIONS(4160), 2, - anon_sym_final, - anon_sym_override, - STATE(3936), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - STATE(3493), 6, - sym_type_qualifier, - sym_virtual_specifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_function_declarator_repeat2, - ACTIONS(5620), 7, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - ACTIONS(5651), 7, + STATE(4973), 1, + sym__scope_resolution, + STATE(5146), 1, + sym__declarator, + STATE(6758), 1, + sym_ms_based_modifier, + STATE(4386), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(7236), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2965), 8, + anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -288597,56 +320549,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [97733] = 3, + STATE(5080), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [120182] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3902), 9, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, + ACTIONS(5808), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(3904), 26, - anon_sym_DOT_DOT_DOT, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(5928), 1, anon_sym_COMMA, + ACTIONS(5932), 1, + anon_sym_SEMI, + ACTIONS(5987), 1, anon_sym_RPAREN, - anon_sym_LPAREN2, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_requires, - [97776] = 6, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [120275] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5520), 1, - sym_auto, - ACTIONS(5522), 1, - anon_sym_decltype, - STATE(3413), 1, - sym_decltype_auto, - ACTIONS(4364), 9, + ACTIONS(4751), 10, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -288656,7 +320640,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - ACTIONS(4366), 23, + anon_sym_DASH_GT, + ACTIONS(4749), 27, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -288676,97 +320661,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constinit, anon_sym_consteval, sym_identifier, + anon_sym_final, + anon_sym_override, anon_sym_virtual, anon_sym_operator, anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, anon_sym_requires, - [97825] = 3, + [120320] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3910), 9, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, + ACTIONS(5808), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(3912), 26, - anon_sym_DOT_DOT_DOT, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(5918), 1, anon_sym_COMMA, + ACTIONS(5989), 1, anon_sym_RPAREN, - anon_sym_LPAREN2, + STATE(2487), 1, + sym_argument_list, + STATE(6102), 1, + aux_sym_argument_list_repeat1, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_requires, - [97868] = 21, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [120413] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(1497), 1, + ACTIONS(1501), 1, anon_sym_operator, - ACTIONS(1517), 1, - anon_sym_TILDE, - ACTIONS(3087), 1, + ACTIONS(1519), 1, anon_sym_LPAREN2, - ACTIONS(3089), 1, + ACTIONS(1521), 1, + anon_sym_TILDE, + ACTIONS(5425), 1, + anon_sym_LBRACK, + ACTIONS(5427), 1, + sym_identifier, + ACTIONS(5429), 1, anon_sym_STAR, - ACTIONS(3091), 1, + ACTIONS(5431), 1, anon_sym_AMP_AMP, - ACTIONS(3093), 1, + ACTIONS(5433), 1, anon_sym_AMP, - ACTIONS(3922), 1, - sym_identifier, - ACTIONS(4074), 1, - anon_sym_LBRACK, - ACTIONS(4132), 1, + ACTIONS(5435), 1, anon_sym_COLON_COLON, - ACTIONS(5573), 1, - anon_sym_RPAREN, - STATE(4080), 1, - sym_parameter_list, - STATE(4697), 1, + STATE(4941), 1, sym__scope_resolution, - STATE(5033), 1, + STATE(5313), 1, sym__declarator, - STATE(5099), 1, - sym__abstract_declarator, - STATE(6716), 1, + STATE(6755), 1, sym_ms_based_modifier, - STATE(6663), 2, + STATE(4386), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(7236), 2, sym_template_type, sym_dependent_type_identifier, - STATE(4832), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(4825), 11, + ACTIONS(2965), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5080), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -288778,23 +320793,28 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [97947] = 3, + [120490] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3878), 9, + ACTIONS(5516), 1, + anon_sym_LBRACK, + STATE(3676), 1, + sym_new_declarator, + ACTIONS(4720), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(3880), 26, + ACTIONS(4718), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -288803,58 +320823,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - anon_sym_requires, - [97990] = 17, + anon_sym_GT2, + [120539] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(1497), 1, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, anon_sym_operator, - ACTIONS(5661), 1, + ACTIONS(1519), 1, anon_sym_LPAREN2, - ACTIONS(5669), 1, + ACTIONS(1521), 1, + anon_sym_TILDE, + ACTIONS(4755), 1, sym_identifier, - ACTIONS(5671), 1, + ACTIONS(4765), 1, + anon_sym_COLON_COLON, + ACTIONS(5425), 1, + anon_sym_LBRACK, + ACTIONS(5446), 1, anon_sym_STAR, - ACTIONS(5673), 1, + ACTIONS(5448), 1, anon_sym_AMP_AMP, - ACTIONS(5675), 1, + ACTIONS(5450), 1, anon_sym_AMP, - STATE(4135), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4787), 1, - sym__field_declarator, - STATE(6560), 1, + STATE(4973), 1, + sym__scope_resolution, + STATE(5152), 1, + sym__declarator, + STATE(7300), 1, sym_ms_based_modifier, - ACTIONS(2919), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3306), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4013), 2, + STATE(4386), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2917), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(2921), 8, + STATE(7236), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2965), 8, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -288863,45 +320883,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(4890), 8, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - sym_reference_field_declarator, - sym_template_method, + STATE(5080), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, sym_operator_name, - [98061] = 7, + [120616] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5506), 1, - anon_sym_LBRACE, - ACTIONS(5677), 1, - anon_sym_COLON, - STATE(3188), 1, - sym__enum_base_clause, - STATE(3189), 1, - sym_enumerator_list, - ACTIONS(4338), 7, + ACTIONS(4419), 1, anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(5261), 1, + anon_sym_LBRACK, + ACTIONS(5267), 1, + anon_sym_DOT, + ACTIONS(5269), 1, + anon_sym_DASH_GT, + ACTIONS(5838), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5840), 1, + anon_sym_COMMA, + ACTIONS(5846), 1, + anon_sym_SLASH, + ACTIONS(5852), 1, + anon_sym_PIPE, + ACTIONS(5856), 1, + anon_sym_AMP, + ACTIONS(5862), 1, + anon_sym_LT_LT, + ACTIONS(5864), 1, + anon_sym_GT_GT, + ACTIONS(5866), 1, + anon_sym_QMARK, + ACTIONS(5868), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5870), 1, + anon_sym_bitor, + ACTIONS(5872), 1, + anon_sym_bitand, + ACTIONS(5991), 1, + anon_sym_GT2, + STATE(3020), 1, + sym_argument_list, + STATE(5930), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(5842), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5844), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5848), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5850), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4340), 24, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, + anon_sym_and, + ACTIONS(5854), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5874), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5858), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5860), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [120709] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(47), 1, anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1519), 1, + anon_sym_LPAREN2, + ACTIONS(1521), 1, + anon_sym_TILDE, + ACTIONS(1523), 1, + anon_sym_STAR, + ACTIONS(1525), 1, + anon_sym_AMP, + ACTIONS(4247), 1, + sym_identifier, + ACTIONS(5049), 1, + anon_sym_COLON_COLON, + ACTIONS(5425), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, + STATE(4946), 1, + sym__scope_resolution, + STATE(5311), 1, + sym__declarator, + STATE(7250), 1, + sym_ms_based_modifier, + STATE(4386), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(7236), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2965), 8, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -288910,36 +321007,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - [98112] = 3, + STATE(5080), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [120786] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(4492), 9, - anon_sym_COMMA, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1519), 1, anon_sym_LPAREN2, + ACTIONS(1521), 1, + anon_sym_TILDE, + ACTIONS(4755), 1, + sym_identifier, + ACTIONS(4765), 1, + anon_sym_COLON_COLON, + ACTIONS(5419), 1, anon_sym_STAR, + ACTIONS(5421), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4494), 25, + ACTIONS(5423), 1, anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + ACTIONS(5425), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, + STATE(4973), 1, + sym__scope_resolution, + STATE(5079), 1, + sym__declarator, + STATE(6817), 1, + sym_ms_based_modifier, + STATE(4386), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(7236), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2965), 8, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -288948,69 +321065,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [98154] = 3, + STATE(5080), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [120863] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(4586), 9, + ACTIONS(4419), 1, + anon_sym_LPAREN2, + ACTIONS(5261), 1, + anon_sym_LBRACK, + ACTIONS(5267), 1, + anon_sym_DOT, + ACTIONS(5269), 1, + anon_sym_DASH_GT, + ACTIONS(5838), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5840), 1, anon_sym_COMMA, + ACTIONS(5846), 1, + anon_sym_SLASH, + ACTIONS(5852), 1, + anon_sym_PIPE, + ACTIONS(5856), 1, + anon_sym_AMP, + ACTIONS(5862), 1, + anon_sym_LT_LT, + ACTIONS(5864), 1, + anon_sym_GT_GT, + ACTIONS(5866), 1, + anon_sym_QMARK, + ACTIONS(5868), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5870), 1, + anon_sym_bitor, + ACTIONS(5872), 1, + anon_sym_bitand, + ACTIONS(5993), 1, + anon_sym_GT2, + STATE(3020), 1, + sym_argument_list, + STATE(5835), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(5842), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5844), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5848), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5850), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5854), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5874), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5858), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5860), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [120956] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4055), 1, anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, + anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, + anon_sym_PIPE, + ACTIONS(5808), 1, + anon_sym_AMP, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(5928), 1, + anon_sym_COMMA, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5967), 2, + anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4588), 25, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [98196] = 3, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [121047] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4864), 9, + ACTIONS(3478), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(3480), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4862), 25, + ACTIONS(3485), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -289019,123 +321237,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_literal_suffix, - [98238] = 24, + anon_sym_GT2, + [121094] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(105), 1, - sym_auto, - ACTIONS(107), 1, - anon_sym_decltype, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1427), 1, - anon_sym_enum, - ACTIONS(1429), 1, - anon_sym_class, - ACTIONS(1431), 1, - anon_sym_struct, - ACTIONS(1433), 1, - anon_sym_union, - ACTIONS(1447), 1, - anon_sym_typename, - ACTIONS(2809), 1, - sym_primitive_type, - ACTIONS(3377), 1, - anon_sym_COLON_COLON, - ACTIONS(5682), 1, - sym_identifier, - ACTIONS(5684), 1, + ACTIONS(4419), 1, + anon_sym_LPAREN2, + ACTIONS(5261), 1, + anon_sym_LBRACK, + ACTIONS(5267), 1, + anon_sym_DOT, + ACTIONS(5269), 1, + anon_sym_DASH_GT, + ACTIONS(5838), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5688), 1, - anon_sym_EQ, - STATE(2737), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2976), 1, - sym_template_type, - STATE(3044), 1, - sym__type_specifier, - STATE(3123), 1, - sym_decltype_auto, - STATE(3198), 1, - sym_qualified_type_identifier, - STATE(5144), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - ACTIONS(5686), 2, + ACTIONS(5840), 1, anon_sym_COMMA, + ACTIONS(5846), 1, + anon_sym_SLASH, + ACTIONS(5852), 1, + anon_sym_PIPE, + ACTIONS(5856), 1, + anon_sym_AMP, + ACTIONS(5862), 1, + anon_sym_LT_LT, + ACTIONS(5864), 1, + anon_sym_GT_GT, + ACTIONS(5866), 1, + anon_sym_QMARK, + ACTIONS(5868), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5870), 1, + anon_sym_bitor, + ACTIONS(5872), 1, + anon_sym_bitand, + ACTIONS(5995), 1, anon_sym_GT2, - ACTIONS(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3139), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [98322] = 3, + STATE(3020), 1, + sym_argument_list, + STATE(6034), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(5842), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5844), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5848), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5850), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5854), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5874), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5858), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5860), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [121187] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(4528), 9, - anon_sym_COMMA, + ACTIONS(4419), 1, anon_sym_LPAREN2, + ACTIONS(5261), 1, + anon_sym_LBRACK, + ACTIONS(5267), 1, + anon_sym_DOT, + ACTIONS(5269), 1, + anon_sym_DASH_GT, + ACTIONS(5838), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5840), 1, + anon_sym_COMMA, + ACTIONS(5846), 1, + anon_sym_SLASH, + ACTIONS(5852), 1, + anon_sym_PIPE, + ACTIONS(5856), 1, + anon_sym_AMP, + ACTIONS(5862), 1, + anon_sym_LT_LT, + ACTIONS(5864), 1, + anon_sym_GT_GT, + ACTIONS(5866), 1, + anon_sym_QMARK, + ACTIONS(5868), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5870), 1, + anon_sym_bitor, + ACTIONS(5872), 1, + anon_sym_bitand, + ACTIONS(5997), 1, + anon_sym_GT2, + STATE(3020), 1, + sym_argument_list, + STATE(5884), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(5842), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5844), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5848), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5850), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4530), 25, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [98364] = 3, + anon_sym_and, + ACTIONS(5854), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5874), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5858), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5860), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [121280] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4416), 9, + ACTIONS(4823), 10, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -289145,7 +321396,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - ACTIONS(4418), 25, + anon_sym_DASH_GT, + ACTIONS(4821), 27, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -289165,36 +321417,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constinit, anon_sym_consteval, sym_identifier, - sym_auto, - anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_virtual, anon_sym_operator, anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, anon_sym_requires, - [98406] = 3, + [121325] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(4404), 9, - anon_sym_COMMA, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1519), 1, anon_sym_LPAREN2, + ACTIONS(1521), 1, + anon_sym_TILDE, + ACTIONS(4755), 1, + sym_identifier, + ACTIONS(4765), 1, + anon_sym_COLON_COLON, + ACTIONS(5425), 1, + anon_sym_LBRACK, + ACTIONS(5437), 1, anon_sym_STAR, + ACTIONS(5439), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4406), 25, + ACTIONS(5441), 1, anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, + STATE(4973), 1, + sym__scope_resolution, + STATE(5114), 1, + sym__declarator, + STATE(6758), 1, + sym_ms_based_modifier, + STATE(4386), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(7236), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2965), 8, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -289203,39 +321471,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [98448] = 3, + STATE(5080), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [121402] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(4099), 11, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, + anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, + anon_sym_PIPE, + ACTIONS(5808), 1, + anon_sym_AMP, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(5918), 1, anon_sym_COMMA, + ACTIONS(5999), 1, anon_sym_RPAREN, + STATE(2487), 1, + sym_argument_list, + STATE(6031), 1, + aux_sym_argument_list_repeat1, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [121495] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1519), 1, anon_sym_LPAREN2, + ACTIONS(1521), 1, anon_sym_TILDE, + ACTIONS(5425), 1, + anon_sym_LBRACK, + ACTIONS(5427), 1, + sym_identifier, + ACTIONS(5429), 1, anon_sym_STAR, + ACTIONS(5431), 1, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4097), 23, + ACTIONS(5433), 1, anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, + ACTIONS(5435), 1, + anon_sym_COLON_COLON, + STATE(4941), 1, + sym__scope_resolution, + STATE(5305), 1, + sym__declarator, + STATE(6755), 1, + sym_ms_based_modifier, + STATE(4386), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(7236), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2965), 8, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -289244,75 +321595,362 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - sym_identifier, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_template, - anon_sym_operator, - [98490] = 3, + STATE(5080), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [121572] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(4571), 9, - anon_sym_COMMA, + ACTIONS(4419), 1, anon_sym_LPAREN2, + ACTIONS(5261), 1, + anon_sym_LBRACK, + ACTIONS(5267), 1, + anon_sym_DOT, + ACTIONS(5269), 1, + anon_sym_DASH_GT, + ACTIONS(5838), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5840), 1, + anon_sym_COMMA, + ACTIONS(5846), 1, + anon_sym_SLASH, + ACTIONS(5852), 1, + anon_sym_PIPE, + ACTIONS(5856), 1, + anon_sym_AMP, + ACTIONS(5862), 1, + anon_sym_LT_LT, + ACTIONS(5864), 1, + anon_sym_GT_GT, + ACTIONS(5866), 1, + anon_sym_QMARK, + ACTIONS(5868), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5870), 1, + anon_sym_bitor, + ACTIONS(5872), 1, + anon_sym_bitand, + ACTIONS(6001), 1, + anon_sym_GT2, + STATE(3020), 1, + sym_argument_list, + STATE(6107), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(5842), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5844), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5848), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5850), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4573), 25, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_and, + ACTIONS(5854), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5874), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5858), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5860), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [121665] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [98532] = 3, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, + anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, + anon_sym_PIPE, + ACTIONS(5808), 1, + anon_sym_AMP, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(5918), 1, + anon_sym_COMMA, + ACTIONS(6003), 1, + anon_sym_RPAREN, + STATE(2487), 1, + sym_argument_list, + STATE(5967), 1, + aux_sym_argument_list_repeat1, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [121758] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4468), 9, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, + anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, + anon_sym_PIPE, + ACTIONS(5808), 1, + anon_sym_AMP, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(5928), 1, anon_sym_COMMA, + ACTIONS(6005), 1, + anon_sym_RPAREN, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [121848] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4055), 1, anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, + anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, + anon_sym_PIPE, + ACTIONS(5808), 1, + anon_sym_AMP, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5922), 2, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4470), 25, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [121936] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4419), 1, + anon_sym_LPAREN2, + ACTIONS(5261), 1, + anon_sym_LBRACK, + ACTIONS(5267), 1, + anon_sym_DOT, + ACTIONS(5269), 1, + anon_sym_DASH_GT, + STATE(3020), 1, + sym_argument_list, + ACTIONS(5023), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + ACTIONS(5021), 21, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_GT2, + [121990] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5753), 1, + anon_sym_const, + ACTIONS(6009), 1, + anon_sym_AMP_AMP, + ACTIONS(6011), 1, anon_sym_AMP, - anon_sym_extern, + ACTIONS(6013), 1, anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + ACTIONS(6015), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, + ACTIONS(6019), 1, + anon_sym_DASH_GT, + ACTIONS(6021), 1, + anon_sym_noexcept, + ACTIONS(6023), 1, + anon_sym_throw, + ACTIONS(6025), 1, + anon_sym_requires, + STATE(5132), 1, + sym_trailing_return_type, + STATE(5135), 1, + sym_requires_clause, + ACTIONS(4016), 2, + anon_sym_final, + anon_sym_override, + STATE(4219), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + STATE(4066), 6, + sym_type_qualifier, + sym_virtual_specifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_function_declarator_repeat2, + ACTIONS(6017), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -289320,225 +321958,348 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [98574] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4472), 9, + ACTIONS(6007), 8, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - ACTIONS(4474), 25, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, anon_sym_try, - anon_sym_requires, - [98616] = 3, + [122062] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4476), 9, + ACTIONS(2476), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(2478), 25, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4478), 25, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, anon_sym_requires, - [98658] = 3, + [122106] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4480), 9, - anon_sym_COMMA, + ACTIONS(4419), 1, anon_sym_LPAREN2, + ACTIONS(5261), 1, + anon_sym_LBRACK, + ACTIONS(5267), 1, + anon_sym_DOT, + ACTIONS(5269), 1, + anon_sym_DASH_GT, + ACTIONS(5838), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5846), 1, + anon_sym_SLASH, + ACTIONS(5852), 1, + anon_sym_PIPE, + ACTIONS(5856), 1, + anon_sym_AMP, + ACTIONS(5862), 1, + anon_sym_LT_LT, + ACTIONS(5864), 1, + anon_sym_GT_GT, + ACTIONS(5866), 1, + anon_sym_QMARK, + ACTIONS(5868), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5870), 1, + anon_sym_bitor, + ACTIONS(5872), 1, + anon_sym_bitand, + STATE(3020), 1, + sym_argument_list, + ACTIONS(5035), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(5842), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5844), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5848), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5850), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4482), 25, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_and, + ACTIONS(5854), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5874), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5858), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5860), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [122194] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4419), 1, + anon_sym_LPAREN2, + ACTIONS(5261), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [98700] = 3, + ACTIONS(5267), 1, + anon_sym_DOT, + ACTIONS(5269), 1, + anon_sym_DASH_GT, + ACTIONS(5846), 1, + anon_sym_SLASH, + ACTIONS(5862), 1, + anon_sym_LT_LT, + ACTIONS(5864), 1, + anon_sym_GT_GT, + ACTIONS(5868), 1, + anon_sym_LT_EQ_GT, + STATE(3020), 1, + sym_argument_list, + ACTIONS(4936), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5842), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5844), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5874), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5860), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4934), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_GT2, + [122264] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4442), 9, + ACTIONS(4169), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4171), 25, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4444), 25, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, anon_sym_requires, - [98742] = 3, + [122308] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4504), 9, - anon_sym_COMMA, + ACTIONS(4419), 1, anon_sym_LPAREN2, + ACTIONS(5261), 1, + anon_sym_LBRACK, + ACTIONS(5267), 1, + anon_sym_DOT, + ACTIONS(5269), 1, + anon_sym_DASH_GT, + ACTIONS(5846), 1, + anon_sym_SLASH, + ACTIONS(5862), 1, + anon_sym_LT_LT, + ACTIONS(5864), 1, + anon_sym_GT_GT, + ACTIONS(5868), 1, + anon_sym_LT_EQ_GT, + STATE(3020), 1, + sym_argument_list, + ACTIONS(4936), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5842), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5844), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5874), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5858), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5860), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4934), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4506), 25, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_CARET, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_GT2, + [122380] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4419), 1, + anon_sym_LPAREN2, + ACTIONS(5261), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [98784] = 3, + ACTIONS(5267), 1, + anon_sym_DOT, + ACTIONS(5269), 1, + anon_sym_DASH_GT, + ACTIONS(5846), 1, + anon_sym_SLASH, + ACTIONS(5852), 1, + anon_sym_PIPE, + ACTIONS(5856), 1, + anon_sym_AMP, + ACTIONS(5862), 1, + anon_sym_LT_LT, + ACTIONS(5864), 1, + anon_sym_GT_GT, + ACTIONS(5868), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5870), 1, + anon_sym_bitor, + ACTIONS(5872), 1, + anon_sym_bitand, + STATE(3020), 1, + sym_argument_list, + ACTIONS(5842), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5844), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5848), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5850), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5854), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5874), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5858), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(4959), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_GT2, + ACTIONS(5860), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [122464] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4849), 9, + ACTIONS(4237), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4847), 25, + ACTIONS(4239), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -289547,219 +322308,299 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [98826] = 3, + anon_sym_GT2, + anon_sym_requires, + [122508] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4512), 9, + ACTIONS(4141), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4143), 25, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4514), 25, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, anon_sym_requires, - [98868] = 3, + [122552] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4556), 9, + ACTIONS(2485), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(2487), 25, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4558), 25, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, anon_sym_requires, - [98910] = 3, + [122596] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4516), 9, - anon_sym_COMMA, + ACTIONS(4055), 1, anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, + anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, + anon_sym_PIPE, + ACTIONS(5808), 1, + anon_sym_AMP, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(5928), 1, + anon_sym_COMMA, + ACTIONS(6027), 1, + anon_sym_RPAREN, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4518), 25, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [98952] = 3, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [122686] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4524), 9, - anon_sym_COMMA, + ACTIONS(4055), 1, anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, + anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, + anon_sym_PIPE, + ACTIONS(5808), 1, + anon_sym_AMP, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(5928), 1, + anon_sym_COMMA, + ACTIONS(6029), 1, + anon_sym_RPAREN, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4526), 25, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [98994] = 3, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [122776] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4536), 9, - anon_sym_COMMA, + ACTIONS(4055), 1, anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, + anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, + anon_sym_PIPE, + ACTIONS(5808), 1, + anon_sym_AMP, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(5928), 1, + anon_sym_COMMA, + ACTIONS(6031), 1, + anon_sym_RPAREN, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4538), 25, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [99036] = 3, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [122866] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4978), 9, + ACTIONS(4799), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -289769,10 +322610,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(4976), 25, + ACTIONS(4801), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -289784,76 +322624,291 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [99078] = 3, + [122910] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(4992), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(4419), 1, + anon_sym_LPAREN2, + ACTIONS(4936), 1, anon_sym_PIPE, + ACTIONS(5261), 1, + anon_sym_LBRACK, + ACTIONS(5267), 1, + anon_sym_DOT, + ACTIONS(5269), 1, + anon_sym_DASH_GT, + ACTIONS(5846), 1, + anon_sym_SLASH, + ACTIONS(5856), 1, anon_sym_AMP, + ACTIONS(5862), 1, + anon_sym_LT_LT, + ACTIONS(5864), 1, + anon_sym_GT_GT, + ACTIONS(5868), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5872), 1, + anon_sym_bitand, + STATE(3020), 1, + sym_argument_list, + ACTIONS(5842), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5844), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5874), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5858), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5860), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + ACTIONS(4934), 11, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_GT2, + [122986] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(2391), 25, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, + anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, + anon_sym_PIPE, + ACTIONS(5808), 1, + anon_sym_AMP, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(5928), 1, anon_sym_COMMA, + ACTIONS(6033), 1, anon_sym_RPAREN, - anon_sym_LPAREN2, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [123076] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, + anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, + anon_sym_PIPE, + ACTIONS(5808), 1, + anon_sym_AMP, + ACTIONS(5814), 1, anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(5928), 1, + anon_sym_COMMA, + ACTIONS(6035), 1, + anon_sym_SEMI, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [123166] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4419), 1, + anon_sym_LPAREN2, + ACTIONS(4936), 1, + anon_sym_PIPE, + ACTIONS(5261), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, + ACTIONS(5267), 1, + anon_sym_DOT, + ACTIONS(5269), 1, + anon_sym_DASH_GT, + ACTIONS(5846), 1, + anon_sym_SLASH, + ACTIONS(5856), 1, + anon_sym_AMP, + ACTIONS(5862), 1, + anon_sym_LT_LT, + ACTIONS(5864), 1, + anon_sym_GT_GT, + ACTIONS(5868), 1, anon_sym_LT_EQ_GT, + ACTIONS(5872), 1, + anon_sym_bitand, + STATE(3020), 1, + sym_argument_list, + ACTIONS(5842), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5844), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5854), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5874), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [99120] = 3, + ACTIONS(5858), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5860), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4934), 9, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_GT2, + [123244] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4641), 9, - anon_sym_COMMA, + ACTIONS(3424), 1, + anon_sym_COLON_COLON, + ACTIONS(3439), 1, + anon_sym_LBRACK, + ACTIONS(5458), 1, + anon_sym_LT, + STATE(3969), 1, + sym_template_argument_list, + ACTIONS(3432), 3, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(3435), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4643), 25, + ACTIONS(3430), 23, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, - anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, @@ -289870,173 +322925,329 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_virtual, + anon_sym_template, anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [99162] = 3, + [123298] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4540), 9, - anon_sym_COMMA, + ACTIONS(4055), 1, anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5237), 1, + anon_sym_RPAREN, + ACTIONS(5792), 1, + anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, + anon_sym_PIPE, + ACTIONS(5808), 1, + anon_sym_AMP, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(5928), 1, + anon_sym_COMMA, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4542), 25, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [99204] = 3, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [123388] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4633), 9, - anon_sym_COMMA, + ACTIONS(4055), 1, anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, + anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, + anon_sym_PIPE, + ACTIONS(5808), 1, + anon_sym_AMP, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(6037), 1, + anon_sym_COMMA, + ACTIONS(6039), 1, + anon_sym_RPAREN, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4635), 25, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [123478] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [99246] = 3, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, + anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, + anon_sym_PIPE, + ACTIONS(5808), 1, + anon_sym_AMP, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(5928), 1, + anon_sym_COMMA, + ACTIONS(6041), 1, + anon_sym_RPAREN, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [123568] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4594), 9, - anon_sym_COMMA, + ACTIONS(4055), 1, anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, + anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, + anon_sym_PIPE, + ACTIONS(5808), 1, + anon_sym_AMP, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(5928), 1, + anon_sym_COMMA, + ACTIONS(6043), 1, + anon_sym_RPAREN, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4596), 25, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [99288] = 3, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [123658] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(4590), 9, - anon_sym_COMMA, + ACTIONS(4055), 1, anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5886), 1, + anon_sym_SLASH, + ACTIONS(5892), 1, + anon_sym_PIPE, + ACTIONS(5896), 1, + anon_sym_AMP, + ACTIONS(5902), 1, + anon_sym_GT_EQ, + ACTIONS(5910), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5912), 1, + anon_sym_bitor, + ACTIONS(5914), 1, + anon_sym_bitand, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5882), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5884), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5888), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5890), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4592), 25, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [99330] = 5, + anon_sym_and, + ACTIONS(5894), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5904), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5898), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5900), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4979), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_QMARK, + [123742] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, - anon_sym_COLON_COLON, - STATE(2626), 1, - sym_template_argument_list, - ACTIONS(4346), 11, + ACTIONS(4221), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -290048,7 +323259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4344), 21, + ACTIONS(4223), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -290060,157 +323271,359 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_LT, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, anon_sym_GT2, - [99376] = 3, + anon_sym_requires, + [123786] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4508), 9, - anon_sym_COMMA, + ACTIONS(4055), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4510), 25, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + ACTIONS(4860), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [99418] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5036), 9, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, + ACTIONS(5808), 1, anon_sym_AMP, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(5928), 1, + anon_sym_COMMA, + ACTIONS(6045), 1, + anon_sym_RPAREN, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + [123876] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(5034), 25, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, + anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(5804), 1, + anon_sym_PIPE, + ACTIONS(5808), 1, + anon_sym_AMP, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(6047), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(5810), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [123964] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, + anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, + anon_sym_PIPE, + ACTIONS(5808), 1, + anon_sym_AMP, + ACTIONS(5814), 1, anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6049), 2, + anon_sym_COMMA, anon_sym_RBRACE, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [124052] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4419), 1, + anon_sym_LPAREN2, + ACTIONS(5261), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, + ACTIONS(5267), 1, + anon_sym_DOT, + ACTIONS(5269), 1, + anon_sym_DASH_GT, + ACTIONS(5846), 1, + anon_sym_SLASH, + ACTIONS(5852), 1, + anon_sym_PIPE, + ACTIONS(5856), 1, + anon_sym_AMP, + ACTIONS(5862), 1, + anon_sym_LT_LT, + ACTIONS(5864), 1, + anon_sym_GT_GT, + ACTIONS(5868), 1, anon_sym_LT_EQ_GT, + ACTIONS(5870), 1, + anon_sym_bitor, + ACTIONS(5872), 1, + anon_sym_bitand, + STATE(3020), 1, + sym_argument_list, + ACTIONS(5842), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5844), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5854), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5874), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [99460] = 3, + ACTIONS(5858), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5860), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4934), 8, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_GT2, + [124132] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(4396), 9, - anon_sym_COMMA, + ACTIONS(4419), 1, anon_sym_LPAREN2, + ACTIONS(5261), 1, + anon_sym_LBRACK, + ACTIONS(5267), 1, + anon_sym_DOT, + ACTIONS(5269), 1, + anon_sym_DASH_GT, + ACTIONS(5846), 1, + anon_sym_SLASH, + ACTIONS(5852), 1, + anon_sym_PIPE, + ACTIONS(5856), 1, + anon_sym_AMP, + ACTIONS(5862), 1, + anon_sym_LT_LT, + ACTIONS(5864), 1, + anon_sym_GT_GT, + ACTIONS(5868), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5870), 1, + anon_sym_bitor, + ACTIONS(5872), 1, + anon_sym_bitand, + STATE(3020), 1, + sym_argument_list, + ACTIONS(5842), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5844), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5850), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4398), 25, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [99502] = 6, + anon_sym_and, + ACTIONS(5854), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5874), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5858), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5860), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4934), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_QMARK, + anon_sym_or, + anon_sym_GT2, + [124214] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1465), 1, - anon_sym_LBRACE, - ACTIONS(5567), 1, + ACTIONS(4419), 1, anon_sym_LPAREN2, - STATE(3443), 2, + ACTIONS(5261), 1, + anon_sym_LBRACK, + ACTIONS(5267), 1, + anon_sym_DOT, + ACTIONS(5269), 1, + anon_sym_DASH_GT, + STATE(3020), 1, sym_argument_list, - sym_initializer_list, - ACTIONS(4679), 9, + ACTIONS(5874), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4936), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_DOT, - ACTIONS(4677), 21, + anon_sym_GT_GT, + ACTIONS(4934), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -290218,80 +323631,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [99550] = 3, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_GT2, + [124270] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4575), 9, - anon_sym_COMMA, + ACTIONS(4055), 1, anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, + anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, + anon_sym_PIPE, + ACTIONS(5808), 1, + anon_sym_AMP, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(5928), 1, + anon_sym_COMMA, + ACTIONS(6051), 1, + anon_sym_SEMI, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4577), 25, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [99592] = 6, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [124360] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1465), 1, - anon_sym_LBRACE, - ACTIONS(5567), 1, - anon_sym_LPAREN2, - STATE(3434), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4546), 9, + ACTIONS(4848), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4544), 21, + ACTIONS(4846), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -290299,42 +323731,185 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [99640] = 3, + anon_sym_GT2, + [124404] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(4605), 9, - anon_sym_COMMA, + ACTIONS(4419), 1, anon_sym_LPAREN2, + ACTIONS(5261), 1, + anon_sym_LBRACK, + ACTIONS(5267), 1, + anon_sym_DOT, + ACTIONS(5269), 1, + anon_sym_DASH_GT, + ACTIONS(5846), 1, + anon_sym_SLASH, + ACTIONS(5852), 1, + anon_sym_PIPE, + ACTIONS(5856), 1, + anon_sym_AMP, + ACTIONS(5862), 1, + anon_sym_LT_LT, + ACTIONS(5864), 1, + anon_sym_GT_GT, + ACTIONS(5868), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5870), 1, + anon_sym_bitor, + ACTIONS(5872), 1, + anon_sym_bitand, + STATE(3020), 1, + sym_argument_list, + ACTIONS(5842), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5844), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5848), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5850), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5854), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5874), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5858), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5071), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_GT2, + ACTIONS(5860), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [124488] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, + anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, + anon_sym_PIPE, + ACTIONS(5808), 1, + anon_sym_AMP, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(5928), 1, + anon_sym_COMMA, + ACTIONS(6053), 1, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4607), 25, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [124578] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5753), 1, + anon_sym_const, + ACTIONS(6009), 1, + anon_sym_AMP_AMP, + ACTIONS(6011), 1, anon_sym_AMP, - anon_sym_extern, + ACTIONS(6013), 1, anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + ACTIONS(6019), 1, + anon_sym_DASH_GT, + ACTIONS(6021), 1, + anon_sym_noexcept, + ACTIONS(6023), 1, + anon_sym_throw, + ACTIONS(6025), 1, + anon_sym_requires, + ACTIONS(6057), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, + STATE(5115), 1, + sym_requires_clause, + STATE(5117), 1, + sym_trailing_return_type, + ACTIONS(4016), 2, + anon_sym_final, + anon_sym_override, + STATE(3644), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + STATE(4071), 6, + sym_type_qualifier, + sym_virtual_specifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_function_declarator_repeat2, + ACTIONS(6017), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -290342,140 +323917,213 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [99682] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4629), 9, + ACTIONS(6055), 8, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - ACTIONS(4631), 25, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, anon_sym_try, - anon_sym_requires, - [99724] = 3, + [124650] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5082), 9, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, + ACTIONS(5808), 1, anon_sym_AMP, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(5928), 1, + anon_sym_COMMA, + ACTIONS(6059), 1, + anon_sym_SEMI, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + [124740] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(5080), 25, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, + anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, + anon_sym_PIPE, + ACTIONS(5808), 1, + anon_sym_AMP, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(5928), 1, anon_sym_COMMA, + ACTIONS(6061), 1, anon_sym_RPAREN, - anon_sym_LPAREN2, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [124830] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4419), 1, + anon_sym_LPAREN2, + ACTIONS(5261), 1, + anon_sym_LBRACK, + ACTIONS(5267), 1, + anon_sym_DOT, + ACTIONS(5269), 1, + anon_sym_DASH_GT, + ACTIONS(5846), 1, + anon_sym_SLASH, + ACTIONS(5862), 1, anon_sym_LT_LT, + ACTIONS(5864), 1, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, + ACTIONS(5868), 1, anon_sym_LT_EQ_GT, + STATE(3020), 1, + sym_argument_list, + ACTIONS(5842), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5844), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5874), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [99766] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4434), 11, + ACTIONS(4856), 6, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4850), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_GT2, - ACTIONS(4432), 23, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_template, - anon_sym_operator, - [99808] = 6, + [124898] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, - anon_sym_COLON_COLON, - ACTIONS(5584), 1, - anon_sym_LT, - STATE(2425), 1, - sym_template_argument_list, - ACTIONS(3714), 10, + ACTIONS(4419), 1, + anon_sym_LPAREN2, + ACTIONS(5261), 1, + anon_sym_LBRACK, + ACTIONS(5267), 1, + anon_sym_DOT, + ACTIONS(5269), 1, + anon_sym_DASH_GT, + STATE(3020), 1, + sym_argument_list, + ACTIONS(5874), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4920), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -290484,12 +324132,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(3722), 21, + ACTIONS(4918), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -290498,352 +324145,235 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_LT, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_GT2, - [99856] = 3, + [124954] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(4657), 9, - anon_sym_COMMA, + ACTIONS(4419), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4659), 25, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + ACTIONS(5261), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [99898] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4368), 9, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(5267), 1, + anon_sym_DOT, + ACTIONS(5269), 1, + anon_sym_DASH_GT, + ACTIONS(5846), 1, + anon_sym_SLASH, + ACTIONS(5852), 1, + anon_sym_PIPE, + ACTIONS(5856), 1, + anon_sym_AMP, + ACTIONS(5862), 1, + anon_sym_LT_LT, + ACTIONS(5864), 1, + anon_sym_GT_GT, + ACTIONS(5868), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5870), 1, + anon_sym_bitor, + ACTIONS(5872), 1, + anon_sym_bitand, + STATE(3020), 1, + sym_argument_list, + ACTIONS(5842), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5844), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5848), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5850), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4370), 25, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [99940] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5325), 11, + anon_sym_and, + ACTIONS(5854), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5874), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5858), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(4979), 4, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, + anon_sym_QMARK, anon_sym_GT2, - ACTIONS(5323), 23, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_template, - anon_sym_operator, - [99982] = 3, + ACTIONS(5860), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [125038] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4645), 9, - anon_sym_COMMA, + ACTIONS(4055), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4647), 25, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + ACTIONS(4860), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [100024] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4579), 9, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, + anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, + anon_sym_PIPE, + ACTIONS(5808), 1, + anon_sym_AMP, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(5928), 1, anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(6063), 1, + anon_sym_SEMI, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4581), 25, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [100066] = 3, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [125128] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4552), 9, - anon_sym_COMMA, + ACTIONS(4055), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4554), 25, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + ACTIONS(4860), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [100108] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4520), 9, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, + anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, + anon_sym_PIPE, + ACTIONS(5808), 1, + anon_sym_AMP, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(5928), 1, anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(6065), 1, + anon_sym_RPAREN, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4522), 25, - anon_sym_AMP, - anon_sym_extern, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [125218] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5747), 1, anon_sym___attribute__, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5751), 1, anon_sym___declspec, + ACTIONS(5759), 1, + anon_sym_virtual, + ACTIONS(5548), 4, + anon_sym_AMP, anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [100150] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4488), 9, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4490), 25, - anon_sym_AMP, + ACTIONS(5745), 5, anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [100192] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4484), 9, - anon_sym_COMMA, + ACTIONS(5550), 7, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - ACTIONS(4486), 25, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, + ACTIONS(5753), 8, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -290852,661 +324382,1222 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [100234] = 3, + STATE(3734), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + [125276] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4113), 11, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, + anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, + anon_sym_PIPE, + ACTIONS(5808), 1, + anon_sym_AMP, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(5928), 1, anon_sym_COMMA, + ACTIONS(6067), 1, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4111), 23, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_template, - anon_sym_operator, - [100276] = 6, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [125366] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1465), 1, - anon_sym_LBRACE, - ACTIONS(5567), 1, + ACTIONS(4419), 1, anon_sym_LPAREN2, - STATE(3423), 2, + ACTIONS(5261), 1, + anon_sym_LBRACK, + ACTIONS(5267), 1, + anon_sym_DOT, + ACTIONS(5269), 1, + anon_sym_DASH_GT, + ACTIONS(5846), 1, + anon_sym_SLASH, + STATE(3020), 1, sym_argument_list, - sym_initializer_list, - ACTIONS(4639), 9, + ACTIONS(5844), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5874), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4936), 9, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_DOT, - ACTIONS(4637), 21, + anon_sym_GT_GT, + ACTIONS(4934), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [100324] = 3, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_GT2, + [125426] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4625), 9, - anon_sym_COMMA, + ACTIONS(4055), 1, anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, + anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, + anon_sym_PIPE, + ACTIONS(5808), 1, + anon_sym_AMP, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(5928), 1, + anon_sym_COMMA, + ACTIONS(6069), 1, + anon_sym_RPAREN, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4627), 25, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [100366] = 6, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [125516] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1465), 1, - anon_sym_LBRACE, - ACTIONS(5567), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - STATE(3444), 2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5886), 1, + anon_sym_SLASH, + ACTIONS(5892), 1, + anon_sym_PIPE, + ACTIONS(5896), 1, + anon_sym_AMP, + ACTIONS(5902), 1, + anon_sym_GT_EQ, + ACTIONS(5910), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5912), 1, + anon_sym_bitor, + ACTIONS(5914), 1, + anon_sym_bitand, + STATE(2487), 1, sym_argument_list, - sym_initializer_list, - ACTIONS(4667), 9, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5882), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(5884), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5888), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5890), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5894), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5904), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4944), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_QMARK, + ACTIONS(5898), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5900), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [125602] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, + ACTIONS(5808), 1, anon_sym_AMP, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(5928), 1, + anon_sym_COMMA, + ACTIONS(6071), 1, + anon_sym_RPAREN, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + [125692] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4665), 21, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, + anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, + anon_sym_PIPE, + ACTIONS(5808), 1, + anon_sym_AMP, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(5928), 1, anon_sym_COMMA, + ACTIONS(6073), 1, anon_sym_RPAREN, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [125782] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, + anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, + anon_sym_PIPE, + ACTIONS(5808), 1, + anon_sym_AMP, + ACTIONS(5814), 1, anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(5928), 1, + anon_sym_COMMA, + ACTIONS(6075), 1, + anon_sym_RPAREN, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [125872] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, anon_sym_LBRACK, - anon_sym_QMARK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, + anon_sym_SLASH, + ACTIONS(5796), 1, anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, + anon_sym_PIPE, + ACTIONS(5808), 1, + anon_sym_AMP, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(5928), 1, + anon_sym_COMMA, + ACTIONS(6077), 1, + anon_sym_RPAREN, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [100414] = 3, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [125962] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4617), 9, - anon_sym_COMMA, + ACTIONS(4055), 1, anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, + anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, + anon_sym_PIPE, + ACTIONS(5808), 1, + anon_sym_AMP, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(5928), 1, + anon_sym_COMMA, + ACTIONS(6079), 1, + anon_sym_RPAREN, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4619), 25, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [100456] = 3, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [126052] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4464), 9, - anon_sym_COMMA, + ACTIONS(4055), 1, anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, + anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, + anon_sym_PIPE, + ACTIONS(5808), 1, + anon_sym_AMP, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(5928), 1, + anon_sym_COMMA, + ACTIONS(6081), 1, + anon_sym_RPAREN, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4466), 25, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [100498] = 3, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [126142] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4609), 9, - anon_sym_COMMA, + ACTIONS(4055), 1, anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, + anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, + anon_sym_PIPE, + ACTIONS(5808), 1, + anon_sym_AMP, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(5928), 1, + anon_sym_COMMA, + ACTIONS(6083), 1, + anon_sym_RPAREN, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4611), 25, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [100540] = 17, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [126232] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(5602), 1, - anon_sym_AMP_AMP, - ACTIONS(5604), 1, - anon_sym_AMP, - ACTIONS(5614), 1, - anon_sym_noexcept, - ACTIONS(5616), 1, - anon_sym_throw, - ACTIONS(5622), 1, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(5649), 1, - anon_sym___attribute__, - ACTIONS(5655), 1, - anon_sym_requires, - ACTIONS(5690), 1, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, anon_sym_DASH_GT, - STATE(4719), 1, - sym_trailing_return_type, - STATE(4842), 1, - sym_requires_clause, - ACTIONS(4160), 2, - anon_sym_final, - anon_sym_override, - STATE(3936), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(5620), 6, + ACTIONS(5792), 1, + anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, + anon_sym_PIPE, + ACTIONS(5808), 1, + anon_sym_AMP, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(5928), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - STATE(3561), 6, - sym_type_qualifier, - sym_virtual_specifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_function_declarator_repeat2, - ACTIONS(5651), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [100610] = 17, + ACTIONS(5932), 1, + anon_sym_SEMI, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [126322] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(5602), 1, - anon_sym_AMP_AMP, - ACTIONS(5604), 1, - anon_sym_AMP, - ACTIONS(5608), 1, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(5614), 1, - anon_sym_noexcept, - ACTIONS(5616), 1, - anon_sym_throw, - ACTIONS(5649), 1, - anon_sym___attribute__, - ACTIONS(5655), 1, - anon_sym_requires, - ACTIONS(5690), 1, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, anon_sym_DASH_GT, - STATE(4777), 1, - sym_trailing_return_type, - STATE(4855), 1, - sym_requires_clause, - ACTIONS(4160), 2, - anon_sym_final, - anon_sym_override, - STATE(3386), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(5600), 6, + ACTIONS(5792), 1, + anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, + anon_sym_PIPE, + ACTIONS(5808), 1, + anon_sym_AMP, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(5928), 1, anon_sym_COMMA, + ACTIONS(6085), 1, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - STATE(3558), 6, - sym_type_qualifier, - sym_virtual_specifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_function_declarator_repeat2, - ACTIONS(5651), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [100680] = 3, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [126412] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4613), 9, - anon_sym_COMMA, + ACTIONS(4055), 1, anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, + anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, + anon_sym_PIPE, + ACTIONS(5808), 1, + anon_sym_AMP, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(5928), 1, + anon_sym_COMMA, + ACTIONS(6087), 1, + anon_sym_SEMI, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4615), 25, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [100722] = 3, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [126502] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4621), 9, - anon_sym_COMMA, + ACTIONS(4419), 1, anon_sym_LPAREN2, + ACTIONS(5261), 1, + anon_sym_LBRACK, + ACTIONS(5267), 1, + anon_sym_DOT, + ACTIONS(5269), 1, + anon_sym_DASH_GT, + ACTIONS(5838), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5846), 1, + anon_sym_SLASH, + ACTIONS(5852), 1, + anon_sym_PIPE, + ACTIONS(5856), 1, + anon_sym_AMP, + ACTIONS(5862), 1, + anon_sym_LT_LT, + ACTIONS(5864), 1, + anon_sym_GT_GT, + ACTIONS(5866), 1, + anon_sym_QMARK, + ACTIONS(5868), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5870), 1, + anon_sym_bitor, + ACTIONS(5872), 1, + anon_sym_bitand, + STATE(3020), 1, + sym_argument_list, + ACTIONS(5842), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5844), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5848), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5850), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4623), 25, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [100764] = 3, + anon_sym_and, + ACTIONS(5854), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5874), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6089), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(5858), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5860), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [126590] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4653), 9, - anon_sym_COMMA, + ACTIONS(4055), 1, anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, + anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, + anon_sym_PIPE, + ACTIONS(5808), 1, + anon_sym_AMP, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(6091), 1, + anon_sym_COMMA, + ACTIONS(6093), 1, + anon_sym_RPAREN, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4655), 25, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [100806] = 8, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [126680] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, - anon_sym_COLON_COLON, - ACTIONS(4827), 1, - anon_sym_LT, - ACTIONS(5692), 1, - anon_sym_LBRACK, - STATE(3502), 1, - sym_template_argument_list, - ACTIONS(3737), 2, + ACTIONS(4055), 1, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(3722), 5, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, + anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, + anon_sym_PIPE, + ACTIONS(5808), 1, + anon_sym_AMP, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5832), 1, + anon_sym_SEMI, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(5928), 1, + anon_sym_COMMA, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - ACTIONS(3714), 23, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - [100858] = 3, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [126770] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4669), 9, - anon_sym_COMMA, + ACTIONS(4055), 1, anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, + anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, + anon_sym_PIPE, + ACTIONS(5808), 1, + anon_sym_AMP, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(5928), 1, + anon_sym_COMMA, + ACTIONS(6095), 1, + anon_sym_SEMI, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4671), 25, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [100900] = 8, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [126860] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, - anon_sym_COLON_COLON, - ACTIONS(3759), 1, + ACTIONS(4419), 1, + anon_sym_LPAREN2, + ACTIONS(5261), 1, anon_sym_LBRACK, - ACTIONS(4827), 1, + ACTIONS(5267), 1, + anon_sym_DOT, + ACTIONS(5269), 1, + anon_sym_DASH_GT, + STATE(3020), 1, + sym_argument_list, + ACTIONS(5874), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4950), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_LT, - STATE(3502), 1, - sym_template_argument_list, - ACTIONS(3754), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(3757), 5, + anon_sym_GT_GT, + ACTIONS(4948), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - ACTIONS(3752), 23, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - [100952] = 4, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_GT2, + [126916] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5694), 1, + ACTIONS(5476), 1, sym_literal_suffix, - ACTIONS(3724), 9, + ACTIONS(3414), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(3716), 24, + ACTIONS(3419), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -291515,111 +325606,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [100996] = 3, + anon_sym_GT2, + [126962] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4560), 9, - anon_sym_COMMA, + ACTIONS(4419), 1, anon_sym_LPAREN2, + ACTIONS(5261), 1, + anon_sym_LBRACK, + ACTIONS(5267), 1, + anon_sym_DOT, + ACTIONS(5269), 1, + anon_sym_DASH_GT, + STATE(3020), 1, + sym_argument_list, + ACTIONS(5005), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + ACTIONS(5003), 21, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4562), 25, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [101038] = 3, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_GT2, + [127016] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4548), 9, + ACTIONS(4165), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4167), 25, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4550), 25, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, anon_sym_requires, - [101080] = 3, + [127060] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4452), 9, + ACTIONS(3424), 1, + anon_sym_COLON_COLON, + ACTIONS(5458), 1, + anon_sym_LT, + ACTIONS(5711), 1, + anon_sym_EQ, + STATE(3279), 1, + sym_template_argument_list, + ACTIONS(5709), 2, anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(3412), 6, + anon_sym_DOT_DOT_DOT, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4454), 25, + ACTIONS(3407), 24, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -291642,647 +325745,1014 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_virtual, + anon_sym_template, anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [101122] = 3, + [127114] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4420), 9, - anon_sym_COMMA, + ACTIONS(4055), 1, anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, + anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, + anon_sym_PIPE, + ACTIONS(5808), 1, + anon_sym_AMP, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(5928), 1, + anon_sym_COMMA, + ACTIONS(6097), 1, + anon_sym_SEMI, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4422), 25, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [101164] = 3, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [127204] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4456), 9, - anon_sym_COMMA, + ACTIONS(4055), 1, anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5886), 1, + anon_sym_SLASH, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5884), 2, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4458), 25, + anon_sym_PERCENT, + ACTIONS(4936), 7, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [101206] = 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4934), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [127264] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(4368), 9, - anon_sym_COMMA, + ACTIONS(4055), 1, anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5886), 1, + anon_sym_SLASH, + ACTIONS(5892), 1, + anon_sym_PIPE, + ACTIONS(5896), 1, + anon_sym_AMP, + ACTIONS(5902), 1, + anon_sym_GT_EQ, + ACTIONS(5910), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5912), 1, + anon_sym_bitor, + ACTIONS(5914), 1, + anon_sym_bitand, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5882), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5884), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5890), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4370), 25, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [101248] = 3, + anon_sym_and, + ACTIONS(5894), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5904), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5898), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5900), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4934), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_or, + [127346] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4438), 9, - anon_sym_COMMA, + ACTIONS(4055), 1, anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5886), 1, + anon_sym_SLASH, + ACTIONS(5892), 1, + anon_sym_PIPE, + ACTIONS(5896), 1, + anon_sym_AMP, + ACTIONS(5902), 1, + anon_sym_GT_EQ, + ACTIONS(5910), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5912), 1, + anon_sym_bitor, + ACTIONS(5914), 1, + anon_sym_bitand, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5882), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5884), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5894), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5904), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5898), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5900), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4934), 8, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4440), 25, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [101290] = 3, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + [127426] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(4460), 9, - anon_sym_COMMA, + ACTIONS(4419), 1, anon_sym_LPAREN2, + ACTIONS(5261), 1, + anon_sym_LBRACK, + ACTIONS(5267), 1, + anon_sym_DOT, + ACTIONS(5269), 1, + anon_sym_DASH_GT, + ACTIONS(5846), 1, + anon_sym_SLASH, + STATE(3020), 1, + sym_argument_list, + ACTIONS(5842), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5844), 2, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4462), 25, + anon_sym_PERCENT, + ACTIONS(5874), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4936), 7, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [101332] = 3, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + ACTIONS(4934), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_GT2, + [127488] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4428), 9, - anon_sym_COMMA, + ACTIONS(4055), 1, anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, + anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, + anon_sym_PIPE, + ACTIONS(5808), 1, + anon_sym_AMP, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(5928), 1, + anon_sym_COMMA, + ACTIONS(6099), 1, + anon_sym_SEMI, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4430), 25, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [101374] = 3, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [127578] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4412), 9, - anon_sym_COMMA, + ACTIONS(4055), 1, anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5886), 1, + anon_sym_SLASH, + ACTIONS(5892), 1, + anon_sym_PIPE, + ACTIONS(5896), 1, + anon_sym_AMP, + ACTIONS(5902), 1, + anon_sym_GT_EQ, + ACTIONS(5908), 1, + anon_sym_QMARK, + ACTIONS(5910), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5912), 1, + anon_sym_bitor, + ACTIONS(5914), 1, + anon_sym_bitand, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5035), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5882), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5884), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5888), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5890), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4414), 25, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [101416] = 3, + anon_sym_and, + ACTIONS(5894), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5904), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5898), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5900), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [127666] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4408), 9, + ACTIONS(4173), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4175), 25, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4410), 25, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, anon_sym_requires, - [101458] = 3, + [127710] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4661), 9, - anon_sym_COMMA, + ACTIONS(4055), 1, anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(4936), 1, + anon_sym_PIPE, + ACTIONS(5886), 1, + anon_sym_SLASH, + ACTIONS(5896), 1, + anon_sym_AMP, + ACTIONS(5902), 1, + anon_sym_GT_EQ, + ACTIONS(5910), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5914), 1, + anon_sym_bitand, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5882), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5884), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5894), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5904), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5898), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5900), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4934), 9, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4663), 25, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + [127788] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [101500] = 3, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, + anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, + anon_sym_PIPE, + ACTIONS(5808), 1, + anon_sym_AMP, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(5928), 1, + anon_sym_COMMA, + ACTIONS(6101), 1, + anon_sym_SEMI, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [127878] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4400), 9, + ACTIONS(4147), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4149), 25, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4402), 25, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, anon_sym_requires, - [101542] = 3, + [127922] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4649), 9, - anon_sym_COMMA, + ACTIONS(4055), 1, anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, + anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, + anon_sym_PIPE, + ACTIONS(5808), 1, + anon_sym_AMP, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(6103), 1, + anon_sym_COMMA, + ACTIONS(6105), 1, + anon_sym_RPAREN, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4651), 25, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [101584] = 3, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [128012] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(4424), 9, - anon_sym_COMMA, + ACTIONS(4055), 1, anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(4936), 1, + anon_sym_PIPE, + ACTIONS(5886), 1, + anon_sym_SLASH, + ACTIONS(5896), 1, + anon_sym_AMP, + ACTIONS(5902), 1, + anon_sym_GT_EQ, + ACTIONS(5910), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5914), 1, + anon_sym_bitand, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5882), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5884), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5904), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5898), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5900), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4934), 11, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4426), 25, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [101626] = 3, + anon_sym_CARET, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + [128088] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4673), 9, - anon_sym_COMMA, + ACTIONS(4055), 1, anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5886), 1, + anon_sym_SLASH, + ACTIONS(5902), 1, + anon_sym_GT_EQ, + ACTIONS(5910), 1, + anon_sym_LT_EQ_GT, + STATE(2487), 1, + sym_argument_list, + ACTIONS(4936), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5882), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5884), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5904), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5898), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5900), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4934), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4675), 25, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [101668] = 3, + anon_sym_CARET, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + [128160] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(4448), 9, - anon_sym_COMMA, + ACTIONS(4055), 1, anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5886), 1, + anon_sym_SLASH, + ACTIONS(5902), 1, + anon_sym_GT_EQ, + ACTIONS(5910), 1, + anon_sym_LT_EQ_GT, + STATE(2487), 1, + sym_argument_list, + ACTIONS(4936), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5882), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5884), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5904), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5900), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4934), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4450), 25, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [101710] = 3, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [128230] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4681), 9, + ACTIONS(4213), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4215), 25, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4683), 25, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, anon_sym_requires, - [101752] = 3, + [128274] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4532), 9, - anon_sym_COMMA, + ACTIONS(4055), 1, anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5886), 1, + anon_sym_SLASH, + ACTIONS(5910), 1, + anon_sym_LT_EQ_GT, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5882), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5884), 2, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4534), 25, + anon_sym_PERCENT, + ACTIONS(5904), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4856), 5, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4850), 16, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [128340] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [101794] = 3, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5886), 1, + anon_sym_SLASH, + ACTIONS(5910), 1, + anon_sym_LT_EQ_GT, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5882), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5884), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5904), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4936), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4934), 16, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [128406] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4564), 9, + ACTIONS(4121), 1, + anon_sym_LBRACE, + ACTIONS(4288), 11, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4566), 25, + ACTIONS(4290), 24, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -292305,72 +326775,233 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_virtual, + anon_sym_template, anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [101836] = 8, + [128452] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - STATE(2534), 1, - sym_argument_list, - ACTIONS(4902), 8, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(5792), 1, anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, + ACTIONS(5808), 1, anon_sym_AMP, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(6107), 1, + anon_sym_COMMA, + ACTIONS(6109), 1, + anon_sym_RPAREN, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(4900), 20, + [128542] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, + anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, + anon_sym_PIPE, + ACTIONS(5808), 1, + anon_sym_AMP, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(5928), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6111), 1, + anon_sym_SEMI, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [128632] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, + anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, + anon_sym_PIPE, + ACTIONS(5808), 1, + anon_sym_AMP, + ACTIONS(5814), 1, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, anon_sym_QMARK, - anon_sym_LT_EQ_GT, + ACTIONS(5928), 1, + anon_sym_COMMA, + ACTIONS(6113), 1, + anon_sym_SEMI, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [101887] = 3, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [128722] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(4958), 9, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5886), 1, + anon_sym_SLASH, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5882), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(5884), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(4936), 5, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_DOT, - ACTIONS(4956), 24, + ACTIONS(4934), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, @@ -292379,49 +327010,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [101928] = 14, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [128784] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(3930), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5649), 1, + ACTIONS(6118), 1, anon_sym___attribute__, - ACTIONS(5698), 1, + ACTIONS(6121), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6124), 1, anon_sym___declspec, - ACTIONS(5700), 1, - sym_auto, - ACTIONS(5702), 1, - anon_sym_decltype, - ACTIONS(5704), 1, + ACTIONS(6130), 1, anon_sym_virtual, - STATE(3142), 1, - sym_decltype_auto, - ACTIONS(5040), 2, + ACTIONS(5592), 4, anon_sym_AMP, - anon_sym_LBRACK, - ACTIONS(5042), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - ACTIONS(5696), 5, + anon_sym___based, + sym_identifier, + anon_sym_operator, + ACTIONS(6115), 5, anon_sym_extern, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - ACTIONS(5651), 7, + ACTIONS(5594), 7, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(6127), 8, + anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -292429,7 +327058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(3715), 8, + STATE(3734), 8, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -292438,209 +327067,530 @@ static const uint16_t ts_small_parse_table[] = { sym_type_qualifier, sym_virtual_function_specifier, aux_sym__declaration_specifiers_repeat1, - [101991] = 7, + [128842] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, - anon_sym_COLON_COLON, - ACTIONS(3740), 1, - anon_sym_SEMI, - ACTIONS(5129), 1, - anon_sym_LT, - STATE(2626), 1, - sym_template_argument_list, - ACTIONS(3722), 5, + ACTIONS(4055), 1, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, - ACTIONS(3714), 24, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + ACTIONS(4860), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - [102040] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5518), 1, - anon_sym_const, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(5710), 1, - anon_sym_STAR, - ACTIONS(5712), 1, - anon_sym_AMP_AMP, - ACTIONS(5714), 1, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, + anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, + anon_sym_PIPE, + ACTIONS(5808), 1, anon_sym_AMP, - ACTIONS(5716), 1, - anon_sym_LBRACK, - ACTIONS(5718), 1, - sym_auto, - ACTIONS(5720), 1, - anon_sym_decltype, - STATE(3413), 1, - sym_decltype_auto, - STATE(3711), 1, - sym_parameter_list, - STATE(4834), 1, - sym__abstract_declarator, - STATE(3591), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4735), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5610), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(5706), 8, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(5928), 1, anon_sym_COMMA, + ACTIONS(6133), 1, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - anon_sym_requires, - [102107] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2307), 1, - sym__enum_base_clause, - STATE(2351), 1, - sym_enumerator_list, - ACTIONS(4340), 9, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(5790), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [128932] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, + ACTIONS(5808), 1, anon_sym_AMP, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(5928), 1, + anon_sym_COMMA, + ACTIONS(6135), 1, + anon_sym_RPAREN, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + [129022] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4338), 22, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, + anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, anon_sym_DOT_DOT_DOT, - anon_sym_LPAREN2, + ACTIONS(5804), 1, + anon_sym_PIPE, + ACTIONS(5808), 1, + anon_sym_AMP, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(5928), 1, + anon_sym_COMMA, + ACTIONS(6137), 1, + anon_sym_SEMI, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [129112] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5886), 1, + anon_sym_SLASH, + ACTIONS(5892), 1, + anon_sym_PIPE, + ACTIONS(5896), 1, + anon_sym_AMP, + ACTIONS(5902), 1, anon_sym_GT_EQ, + ACTIONS(5910), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5912), 1, + anon_sym_bitor, + ACTIONS(5914), 1, + anon_sym_bitand, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5882), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5884), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5888), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5890), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5894), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5904), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_COLON, + ACTIONS(5898), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5900), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4959), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_QMARK, + [129196] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5886), 1, + anon_sym_SLASH, + ACTIONS(5892), 1, + anon_sym_PIPE, + ACTIONS(5896), 1, + anon_sym_AMP, + ACTIONS(5902), 1, + anon_sym_GT_EQ, + ACTIONS(5910), 1, anon_sym_LT_EQ_GT, + ACTIONS(5912), 1, + anon_sym_bitor, + ACTIONS(5914), 1, + anon_sym_bitand, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [102152] = 5, + ACTIONS(5882), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5884), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5888), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5890), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5894), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5904), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5898), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5900), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4886), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_QMARK, + [129280] = 13, ACTIONS(3), 1, sym_comment, - STATE(2304), 1, - sym__enum_base_clause, - STATE(2499), 1, - sym_enumerator_list, - ACTIONS(4350), 9, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5886), 1, + anon_sym_SLASH, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5882), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(5884), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5904), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4936), 5, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_DOT, - ACTIONS(4348), 22, + ACTIONS(4934), 17, anon_sym_DOT_DOT_DOT, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_COLON, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [102197] = 9, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [129344] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, - anon_sym_COLON_COLON, - ACTIONS(3761), 1, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(3764), 1, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, + anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, + anon_sym_PIPE, + ACTIONS(5808), 1, + anon_sym_AMP, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(5928), 1, + anon_sym_COMMA, + ACTIONS(6139), 1, anon_sym_SEMI, - ACTIONS(5129), 1, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, anon_sym_LT, - STATE(3313), 1, - sym_template_argument_list, - ACTIONS(3754), 2, + [129434] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4055), 1, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(3757), 3, - anon_sym_TILDE, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, + anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, + anon_sym_PIPE, + ACTIONS(5808), 1, + anon_sym_AMP, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(5928), 1, + anon_sym_COMMA, + ACTIONS(6141), 1, + anon_sym_SEMI, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, anon_sym_AMP_AMP, - ACTIONS(3752), 23, - anon_sym_AMP, - anon_sym_extern, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [129524] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5747), 1, anon_sym___attribute__, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5751), 1, anon_sym___declspec, + ACTIONS(5759), 1, + anon_sym_virtual, + ACTIONS(5556), 4, + anon_sym_AMP, anon_sym___based, + sym_identifier, + anon_sym_operator, + ACTIONS(5745), 5, + anon_sym_extern, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, + ACTIONS(5558), 7, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(5753), 8, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -292649,208 +327599,291 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - [102250] = 3, + STATE(3734), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + [129582] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5002), 9, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, + ACTIONS(5808), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(5000), 24, - anon_sym_DOT_DOT_DOT, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(5928), 1, anon_sym_COMMA, + ACTIONS(6143), 1, anon_sym_RPAREN, - anon_sym_LPAREN2, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [102291] = 16, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [129672] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(5518), 1, - anon_sym_const, - ACTIONS(5708), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1521), 1, + anon_sym_TILDE, + ACTIONS(3137), 1, anon_sym_LPAREN2, - ACTIONS(5710), 1, + ACTIONS(4755), 1, + sym_identifier, + ACTIONS(4765), 1, + anon_sym_COLON_COLON, + ACTIONS(4767), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, anon_sym_STAR, - ACTIONS(5712), 1, + ACTIONS(4835), 1, anon_sym_AMP_AMP, - ACTIONS(5714), 1, + ACTIONS(4837), 1, anon_sym_AMP, - ACTIONS(5716), 1, - anon_sym_LBRACK, - ACTIONS(5718), 1, - sym_auto, - ACTIONS(5720), 1, - anon_sym_decltype, - STATE(3413), 1, - sym_decltype_auto, - STATE(3711), 1, + STATE(4328), 1, sym_parameter_list, - STATE(4864), 1, + STATE(4973), 1, + sym__scope_resolution, + STATE(5167), 1, + sym__declarator, + STATE(5421), 1, sym__abstract_declarator, - STATE(3719), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4735), 5, + STATE(7300), 1, + sym_ms_based_modifier, + ACTIONS(5786), 2, + anon_sym_COMMA, + anon_sym_GT2, + STATE(7236), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5127), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(5610), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(5722), 8, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - anon_sym_requires, - [102358] = 9, + STATE(5080), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [129752] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5026), 8, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(5792), 1, anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, + ACTIONS(5808), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(5024), 18, - anon_sym_DOT_DOT_DOT, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(5928), 1, anon_sym_COMMA, + ACTIONS(6145), 1, anon_sym_RPAREN, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - [102411] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5097), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + anon_sym_not_eq, + ACTIONS(5812), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + [129842] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(5095), 24, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, + anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, + anon_sym_PIPE, + ACTIONS(5808), 1, + anon_sym_AMP, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(5928), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(6147), 1, + anon_sym_SEMI, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [102452] = 8, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [129932] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, + ACTIONS(4121), 1, + anon_sym_LBRACE, + ACTIONS(4125), 1, anon_sym_COLON_COLON, - ACTIONS(3761), 1, - anon_sym_LBRACK, - ACTIONS(5129), 1, - anon_sym_LT, - STATE(3525), 1, - sym_template_argument_list, - ACTIONS(3754), 2, + ACTIONS(4288), 10, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(3757), 4, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, - ACTIONS(3752), 23, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + ACTIONS(4290), 24, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, @@ -292869,364 +327902,663 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_virtual, anon_sym_template, anon_sym_operator, - [102503] = 3, + [129980] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3724), 9, + ACTIONS(4419), 1, + anon_sym_LPAREN2, + ACTIONS(5261), 1, + anon_sym_LBRACK, + ACTIONS(5267), 1, + anon_sym_DOT, + ACTIONS(5269), 1, + anon_sym_DASH_GT, + ACTIONS(5846), 1, + anon_sym_SLASH, + ACTIONS(5862), 1, + anon_sym_LT_LT, + ACTIONS(5864), 1, + anon_sym_GT_GT, + STATE(3020), 1, + sym_argument_list, + ACTIONS(5842), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(5844), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5874), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4936), 6, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_DOT, - ACTIONS(3716), 24, + ACTIONS(4934), 16, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [102544] = 3, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_GT2, + [130046] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5062), 9, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, + ACTIONS(5808), 1, anon_sym_AMP, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(5928), 1, + anon_sym_COMMA, + ACTIONS(6149), 1, + anon_sym_SEMI, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + [130136] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(5060), 24, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, + anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, + anon_sym_PIPE, + ACTIONS(5808), 1, + anon_sym_AMP, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(5928), 1, anon_sym_COMMA, + ACTIONS(6151), 1, anon_sym_RPAREN, - anon_sym_LPAREN2, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [102585] = 9, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [130226] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - STATE(2534), 1, + ACTIONS(5886), 1, + anon_sym_SLASH, + ACTIONS(5892), 1, + anon_sym_PIPE, + ACTIONS(5896), 1, + anon_sym_AMP, + ACTIONS(5902), 1, + anon_sym_GT_EQ, + ACTIONS(5910), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5912), 1, + anon_sym_bitor, + ACTIONS(5914), 1, + anon_sym_bitand, + STATE(2487), 1, sym_argument_list, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5058), 8, + ACTIONS(5882), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(5056), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5884), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(5888), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5890), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5894), 2, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_xor, + ACTIONS(5904), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(5898), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5900), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5071), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_LT_EQ_GT, - [102638] = 15, + [130310] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(5518), 1, - anon_sym_const, - ACTIONS(5602), 1, - anon_sym_AMP_AMP, - ACTIONS(5604), 1, - anon_sym_AMP, - ACTIONS(5612), 1, - anon_sym_DASH_GT, - ACTIONS(5614), 1, - anon_sym_noexcept, - ACTIONS(5616), 1, - anon_sym_throw, - ACTIONS(5618), 1, - anon_sym_requires, - ACTIONS(5728), 1, - anon_sym_LBRACK, - STATE(4835), 1, - sym_requires_clause, - STATE(4848), 1, - sym_trailing_return_type, - ACTIONS(4160), 2, - anon_sym_final, - anon_sym_override, - STATE(3532), 6, - sym_type_qualifier, - sym_virtual_specifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_function_declarator_repeat2, - ACTIONS(5610), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(5726), 8, - anon_sym_COMMA, + ACTIONS(4419), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [102703] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5032), 9, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(5261), 1, + anon_sym_LBRACK, + ACTIONS(5267), 1, + anon_sym_DOT, + ACTIONS(5269), 1, + anon_sym_DASH_GT, + ACTIONS(5838), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5846), 1, anon_sym_SLASH, + ACTIONS(5852), 1, anon_sym_PIPE, + ACTIONS(5856), 1, anon_sym_AMP, + ACTIONS(5862), 1, + anon_sym_LT_LT, + ACTIONS(5864), 1, + anon_sym_GT_GT, + ACTIONS(5866), 1, + anon_sym_QMARK, + ACTIONS(5868), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5870), 1, + anon_sym_bitor, + ACTIONS(5872), 1, + anon_sym_bitand, + STATE(3020), 1, + sym_argument_list, + ACTIONS(5842), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5844), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5848), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5850), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5854), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5874), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6153), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(5858), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5860), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + [130398] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(5030), 24, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, + anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, + anon_sym_PIPE, + ACTIONS(5808), 1, + anon_sym_AMP, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(5928), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(6155), 1, + anon_sym_SEMI, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [130488] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, + anon_sym_SLASH, + ACTIONS(5796), 1, anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, + anon_sym_PIPE, + ACTIONS(5808), 1, + anon_sym_AMP, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(5928), 1, + anon_sym_COMMA, + ACTIONS(6157), 1, + anon_sym_SEMI, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [102744] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(1476), 1, - sym__fold_operator, - ACTIONS(5732), 13, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(5790), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, + ACTIONS(5794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(5730), 19, - anon_sym_COMMA, + ACTIONS(5800), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, anon_sym_LT_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_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_DOT_STAR, - anon_sym_DASH_GT_STAR, - [102787] = 3, + anon_sym_LT, + [130578] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5074), 9, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, + ACTIONS(5808), 1, anon_sym_AMP, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(5928), 1, + anon_sym_COMMA, + ACTIONS(6159), 1, + anon_sym_SEMI, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + [130668] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(5072), 24, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, + anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, + anon_sym_PIPE, + ACTIONS(5808), 1, + anon_sym_AMP, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(5928), 1, anon_sym_COMMA, + ACTIONS(6161), 1, anon_sym_RPAREN, - anon_sym_LPAREN2, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [102828] = 4, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [130758] = 26, ACTIONS(3), 1, sym_comment, - STATE(2941), 1, - sym_enumerator_list, - ACTIONS(4381), 11, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, + ACTIONS(5808), 1, anon_sym_AMP, - anon_sym_GT, + ACTIONS(5814), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4379), 21, - anon_sym_DOT_DOT_DOT, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(5928), 1, anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(6163), 1, + anon_sym_SEMI, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [102871] = 15, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [130848] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5518), 1, - anon_sym_const, - ACTIONS(5602), 1, + ACTIONS(3424), 1, + anon_sym_COLON_COLON, + ACTIONS(5458), 1, + anon_sym_LT, + ACTIONS(6165), 1, + anon_sym_LBRACK, + STATE(3969), 1, + sym_template_argument_list, + ACTIONS(3454), 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(3412), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(5604), 1, + anon_sym_EQ, + ACTIONS(3407), 23, anon_sym_AMP, - ACTIONS(5612), 1, - anon_sym_DASH_GT, - ACTIONS(5614), 1, - anon_sym_noexcept, - ACTIONS(5616), 1, - anon_sym_throw, - ACTIONS(5618), 1, - anon_sym_requires, - ACTIONS(5622), 1, - anon_sym_LBRACK, - STATE(4815), 1, - sym_trailing_return_type, - STATE(4842), 1, - sym_requires_clause, - ACTIONS(4160), 2, - anon_sym_final, - anon_sym_override, - STATE(3532), 6, - sym_type_qualifier, - sym_virtual_specifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_function_declarator_repeat2, - ACTIONS(5610), 7, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -293234,32 +328566,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - ACTIONS(5620), 8, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [102936] = 3, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [130902] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4962), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(4960), 24, + ACTIONS(4839), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -293268,658 +328586,620 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [102977] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5734), 1, - anon_sym_AMP_AMP, - ACTIONS(4304), 9, + anon_sym_GT2, + ACTIONS(4841), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(4306), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + sym_literal_suffix, + [130946] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4419), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + ACTIONS(5261), 1, + anon_sym_LBRACK, + ACTIONS(5267), 1, + anon_sym_DOT, + ACTIONS(5269), 1, + anon_sym_DASH_GT, + ACTIONS(5838), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5846), 1, + anon_sym_SLASH, + ACTIONS(5852), 1, + anon_sym_PIPE, + ACTIONS(5856), 1, + anon_sym_AMP, + ACTIONS(5862), 1, anon_sym_LT_LT, + ACTIONS(5864), 1, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, + ACTIONS(5866), 1, anon_sym_QMARK, + ACTIONS(5868), 1, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [103020] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4954), 9, + ACTIONS(5870), 1, + anon_sym_bitor, + ACTIONS(5872), 1, + anon_sym_bitand, + STATE(3020), 1, + sym_argument_list, + ACTIONS(5842), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(4952), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(5844), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(5848), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5850), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5854), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(5874), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6168), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(5858), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5860), 4, + anon_sym_GT, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [103061] = 8, + anon_sym_LT_EQ, + anon_sym_LT, + [131034] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - STATE(2534), 1, - sym_argument_list, - ACTIONS(4942), 8, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(5792), 1, anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, + ACTIONS(5808), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4940), 20, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(5969), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(5810), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - [103112] = 15, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [131122] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5518), 1, - anon_sym_const, - ACTIONS(5602), 1, - anon_sym_AMP_AMP, - ACTIONS(5604), 1, - anon_sym_AMP, - ACTIONS(5612), 1, - anon_sym_DASH_GT, - ACTIONS(5614), 1, - anon_sym_noexcept, - ACTIONS(5616), 1, - anon_sym_throw, - ACTIONS(5618), 1, - anon_sym_requires, - ACTIONS(5738), 1, - anon_sym_LBRACK, - STATE(4827), 1, - sym_trailing_return_type, - STATE(4906), 1, - sym_requires_clause, - ACTIONS(4160), 2, - anon_sym_final, - anon_sym_override, - STATE(3457), 6, - sym_type_qualifier, - sym_virtual_specifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_function_declarator_repeat2, - ACTIONS(5610), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(5736), 8, - anon_sym_COMMA, + ACTIONS(4055), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [103177] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(3930), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5649), 1, - anon_sym___attribute__, - ACTIONS(5698), 1, - anon_sym___declspec, - ACTIONS(5700), 1, - sym_auto, - ACTIONS(5702), 1, - anon_sym_decltype, - ACTIONS(5704), 1, - anon_sym_virtual, - STATE(3142), 1, - sym_decltype_auto, - ACTIONS(4980), 2, - anon_sym_AMP, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4982), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - ACTIONS(5696), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(5651), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(3584), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual_function_specifier, - aux_sym__declaration_specifiers_repeat1, - [103240] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5050), 9, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, + ACTIONS(5808), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(5048), 24, - anon_sym_DOT_DOT_DOT, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(5928), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(6170), 1, + anon_sym_SEMI, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [103281] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5016), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + anon_sym_not_eq, + ACTIONS(5812), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + [131212] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(5014), 24, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, + anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, + anon_sym_PIPE, + ACTIONS(5808), 1, + anon_sym_AMP, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(5928), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(6172), 1, + anon_sym_SEMI, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [103322] = 6, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [131302] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1465), 1, - anon_sym_LBRACE, - ACTIONS(5579), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - STATE(3434), 2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, + anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, + anon_sym_PIPE, + ACTIONS(5808), 1, + anon_sym_AMP, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(6174), 1, + anon_sym_COMMA, + ACTIONS(6176), 1, + anon_sym_RPAREN, + STATE(2487), 1, sym_argument_list, - sym_initializer_list, - ACTIONS(4546), 9, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(4544), 20, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [103369] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4938), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + anon_sym_not_eq, + ACTIONS(5812), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_DOT, - ACTIONS(4936), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + [131392] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1521), 1, + anon_sym_TILDE, + ACTIONS(3137), 1, anon_sym_LPAREN2, + ACTIONS(4755), 1, + sym_identifier, + ACTIONS(4759), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(4761), 1, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(4763), 1, + anon_sym_AMP, + ACTIONS(4765), 1, + anon_sym_COLON_COLON, + ACTIONS(4767), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [103410] = 6, + STATE(4345), 1, + sym_parameter_list, + STATE(4973), 1, + sym__scope_resolution, + STATE(5167), 1, + sym__declarator, + STATE(5376), 1, + sym__abstract_declarator, + STATE(7300), 1, + sym_ms_based_modifier, + ACTIONS(5786), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(7236), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5127), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(5080), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [131472] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1465), 1, - anon_sym_LBRACE, - ACTIONS(5579), 1, + ACTIONS(4419), 1, anon_sym_LPAREN2, - STATE(3443), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4679), 9, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(5261), 1, + anon_sym_LBRACK, + ACTIONS(5267), 1, + anon_sym_DOT, + ACTIONS(5269), 1, + anon_sym_DASH_GT, + ACTIONS(5838), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5846), 1, anon_sym_SLASH, + ACTIONS(5852), 1, anon_sym_PIPE, + ACTIONS(5856), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(4677), 20, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(5862), 1, + anon_sym_LT_LT, + ACTIONS(5864), 1, + anon_sym_GT_GT, + ACTIONS(5868), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5870), 1, + anon_sym_bitor, + ACTIONS(5872), 1, + anon_sym_bitand, + STATE(3020), 1, + sym_argument_list, + ACTIONS(5842), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5844), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(5848), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5850), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5854), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(5874), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4944), 3, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_GT2, + ACTIONS(5858), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5860), 4, + anon_sym_GT, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [103457] = 4, + anon_sym_LT_EQ, + anon_sym_LT, + [131558] = 23, ACTIONS(3), 1, sym_comment, - STATE(2936), 1, - sym_enumerator_list, - ACTIONS(4391), 11, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(4419), 1, + anon_sym_LPAREN2, + ACTIONS(5261), 1, + anon_sym_LBRACK, + ACTIONS(5267), 1, + anon_sym_DOT, + ACTIONS(5269), 1, + anon_sym_DASH_GT, + ACTIONS(5846), 1, anon_sym_SLASH, + ACTIONS(5852), 1, anon_sym_PIPE, + ACTIONS(5856), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, + ACTIONS(5862), 1, + anon_sym_LT_LT, + ACTIONS(5864), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4389), 21, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(5868), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5870), 1, + anon_sym_bitor, + ACTIONS(5872), 1, + anon_sym_bitand, + STATE(3020), 1, + sym_argument_list, + ACTIONS(5842), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5844), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(5848), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5850), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5854), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(5874), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5858), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_not_eq, + ACTIONS(4886), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, anon_sym_GT2, - [103500] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5020), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(5860), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_DOT, - ACTIONS(5018), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + [131642] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4055), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(4860), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, anon_sym_DASH_GT, - [103541] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5734), 1, - anon_sym_AMP_AMP, - ACTIONS(5740), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4270), 9, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(5792), 1, anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, + ACTIONS(5808), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(4272), 22, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(5814), 1, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, anon_sym_QMARK, - anon_sym_LT_EQ_GT, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [103586] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3735), 1, - anon_sym_COLON_COLON, - ACTIONS(5129), 1, - anon_sym_LT, - ACTIONS(5589), 1, - anon_sym_LBRACK, - STATE(3525), 1, - sym_template_argument_list, - ACTIONS(3737), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(3722), 4, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - ACTIONS(3714), 23, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - [103637] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5046), 9, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(5044), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(6153), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(5810), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [103678] = 9, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [131730] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, - anon_sym_COLON_COLON, - ACTIONS(3984), 1, - anon_sym_SEMI, - ACTIONS(5129), 1, - anon_sym_LT, - ACTIONS(5589), 1, - anon_sym_LBRACK, - STATE(3313), 1, - sym_template_argument_list, - ACTIONS(3737), 2, + STATE(3826), 1, + sym__enum_base_clause, + STATE(4004), 1, + sym_enumerator_list, + ACTIONS(4151), 9, + anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(3722), 3, - anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(3714), 23, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4153), 25, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, @@ -293936,201 +329216,208 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_virtual, - anon_sym_template, anon_sym_operator, - [103731] = 9, + anon_sym_try, + anon_sym_requires, + [131778] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4419), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(5261), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(5267), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(5269), 1, anon_sym_DASH_GT, - STATE(2534), 1, + ACTIONS(5846), 1, + anon_sym_SLASH, + ACTIONS(5862), 1, + anon_sym_LT_LT, + ACTIONS(5864), 1, + anon_sym_GT_GT, + ACTIONS(5868), 1, + anon_sym_LT_EQ_GT, + STATE(3020), 1, sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4890), 8, + ACTIONS(5842), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(5844), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5874), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4936), 6, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(4888), 18, + ACTIONS(4934), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_LT_EQ_GT, - [103784] = 6, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_GT2, + [131846] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1465), 1, - anon_sym_LBRACE, - ACTIONS(5579), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - STATE(3444), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4667), 9, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, + ACTIONS(5808), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(4665), 20, - anon_sym_DOT_DOT_DOT, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(5928), 1, anon_sym_COMMA, + ACTIONS(6178), 1, + anon_sym_SEMI, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [103831] = 6, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [131936] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1465), 1, - anon_sym_LBRACE, - ACTIONS(5579), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - STATE(3423), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4639), 9, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, + ACTIONS(5808), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(4637), 20, - anon_sym_DOT_DOT_DOT, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(5928), 1, anon_sym_COMMA, + ACTIONS(6180), 1, + anon_sym_SEMI, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [103878] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5518), 1, - anon_sym_const, - ACTIONS(5602), 1, - anon_sym_AMP_AMP, - ACTIONS(5604), 1, - anon_sym_AMP, - ACTIONS(5612), 1, - anon_sym_DASH_GT, - ACTIONS(5614), 1, - anon_sym_noexcept, - ACTIONS(5616), 1, - anon_sym_throw, - ACTIONS(5618), 1, - anon_sym_requires, - ACTIONS(5744), 1, - anon_sym_LBRACK, - STATE(4814), 1, - sym_trailing_return_type, - STATE(4893), 1, - sym_requires_clause, - ACTIONS(4160), 2, - anon_sym_final, - anon_sym_override, - STATE(3532), 6, - sym_type_qualifier, - sym_virtual_specifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_function_declarator_repeat2, - ACTIONS(5610), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(5742), 8, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [103943] = 3, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [132026] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5066), 9, + ACTIONS(4185), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5064), 24, + ACTIONS(4187), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -294139,379 +329426,179 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [103984] = 20, + anon_sym_GT2, + anon_sym_requires, + [132070] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5750), 1, + ACTIONS(5792), 1, anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(5808), 1, anon_sym_AMP, - ACTIONS(5764), 1, + ACTIONS(5814), 1, anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - STATE(2534), 1, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(5928), 1, + anon_sym_COMMA, + ACTIONS(6182), 1, + anon_sym_SEMI, + STATE(2487), 1, sym_argument_list, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5748), 2, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, + ACTIONS(5794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5762), 3, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(5024), 7, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, - [104058] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1491), 1, - sym_auto, - ACTIONS(1493), 1, - anon_sym_decltype, - ACTIONS(5202), 1, - sym_primitive_type, - ACTIONS(5567), 1, - anon_sym_LPAREN2, - ACTIONS(5770), 1, - sym_identifier, - ACTIONS(5772), 1, - anon_sym_COLON_COLON, - ACTIONS(5774), 1, - anon_sym_enum, - ACTIONS(5776), 1, - anon_sym_class, - ACTIONS(5778), 1, - anon_sym_struct, - ACTIONS(5780), 1, - anon_sym_union, - ACTIONS(5782), 1, - anon_sym_typename, - STATE(2075), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2323), 1, - sym_template_type, - STATE(2485), 1, - sym_qualified_type_identifier, - STATE(2494), 1, - sym_decltype_auto, - STATE(3223), 1, - sym__type_specifier, - STATE(3619), 1, - sym_argument_list, - STATE(5152), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - ACTIONS(1479), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2346), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [104138] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(5602), 1, - anon_sym_AMP_AMP, - ACTIONS(5604), 1, - anon_sym_AMP, - ACTIONS(5608), 1, - anon_sym_LBRACK, - ACTIONS(5614), 1, - anon_sym_noexcept, - ACTIONS(5616), 1, - anon_sym_throw, - ACTIONS(5649), 1, - anon_sym___attribute__, - ACTIONS(5784), 1, - anon_sym_DASH_GT, - ACTIONS(5786), 1, - anon_sym_requires, - STATE(4855), 1, - sym_requires_clause, - STATE(5000), 1, - sym_trailing_return_type, - ACTIONS(4160), 2, - anon_sym_final, - anon_sym_override, - STATE(3482), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(5600), 4, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - STATE(3916), 6, - sym_type_qualifier, - sym_virtual_specifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_function_declarator_repeat2, - ACTIONS(5651), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [104206] = 16, + [132160] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5750), 1, + ACTIONS(5792), 1, anon_sym_SLASH, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, + ACTIONS(5796), 1, anon_sym_LT_EQ_GT, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5026), 2, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, + ACTIONS(5808), 1, anon_sym_AMP, - ACTIONS(5724), 2, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(5928), 1, + anon_sym_COMMA, + ACTIONS(6184), 1, + anon_sym_SEMI, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5748), 2, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5766), 2, + ACTIONS(5794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(5024), 11, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5800), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, - [104272] = 21, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [132250] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(6186), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, - anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - STATE(2534), 1, + STATE(2519), 1, sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4972), 6, + ACTIONS(4288), 10, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, - [104348] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(5602), 1, - anon_sym_AMP_AMP, - ACTIONS(5604), 1, - anon_sym_AMP, - ACTIONS(5614), 1, - anon_sym_noexcept, - ACTIONS(5616), 1, - anon_sym_throw, - ACTIONS(5622), 1, - anon_sym_LBRACK, - ACTIONS(5649), 1, - anon_sym___attribute__, - ACTIONS(5786), 1, - anon_sym_requires, - ACTIONS(5790), 1, - anon_sym_DASH_GT, - STATE(4842), 1, - sym_requires_clause, - STATE(4948), 1, - sym_trailing_return_type, - ACTIONS(4160), 2, - anon_sym_final, - anon_sym_override, - STATE(3936), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(5620), 4, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_try, - STATE(3928), 6, - sym_type_qualifier, - sym_virtual_specifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_function_declarator_repeat2, - ACTIONS(5651), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [104416] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(5602), 1, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(5604), 1, - anon_sym_AMP, - ACTIONS(5614), 1, - anon_sym_noexcept, - ACTIONS(5616), 1, - anon_sym_throw, - ACTIONS(5622), 1, - anon_sym_LBRACK, - ACTIONS(5653), 1, - anon_sym_DASH_GT, - ACTIONS(5655), 1, - anon_sym_requires, - STATE(4719), 1, - sym_trailing_return_type, - STATE(4842), 1, - sym_requires_clause, - ACTIONS(4160), 2, - anon_sym_final, - anon_sym_override, - STATE(3511), 6, - sym_type_qualifier, - sym_virtual_specifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_function_declarator_repeat2, - ACTIONS(5620), 7, - anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, anon_sym_EQ, - anon_sym_try, - ACTIONS(5651), 7, + ACTIONS(4290), 24, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -294519,367 +329606,483 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [104480] = 14, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [132298] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5750), 1, + ACTIONS(5792), 1, anon_sym_SLASH, - ACTIONS(5768), 1, + ACTIONS(5796), 1, anon_sym_LT_EQ_GT, - STATE(2534), 1, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, + anon_sym_PIPE, + ACTIONS(5808), 1, + anon_sym_AMP, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(5928), 1, + anon_sym_COMMA, + ACTIONS(6189), 1, + anon_sym_SEMI, + STATE(2487), 1, sym_argument_list, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5748), 2, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5766), 2, + ACTIONS(5794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4910), 5, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4904), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5800), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, - [104542] = 17, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [132388] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5750), 1, + ACTIONS(5792), 1, anon_sym_SLASH, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, + ACTIONS(5796), 1, anon_sym_LT_EQ_GT, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5026), 2, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, + ACTIONS(5808), 1, anon_sym_AMP, - ACTIONS(5724), 2, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(6191), 1, + anon_sym_COMMA, + ACTIONS(6193), 1, + anon_sym_RPAREN, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5748), 2, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, + ACTIONS(5794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5762), 3, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [132478] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4161), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(5024), 9, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4163), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, anon_sym_QMARK, - [104610] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(5567), 1, - anon_sym_LPAREN2, - ACTIONS(5792), 1, - sym_identifier, - ACTIONS(5794), 1, - anon_sym_COLON_COLON, - ACTIONS(5798), 1, - sym_primitive_type, - ACTIONS(5800), 1, - anon_sym_enum, - ACTIONS(5802), 1, - anon_sym_class, - ACTIONS(5804), 1, - anon_sym_struct, - ACTIONS(5806), 1, - anon_sym_union, - ACTIONS(5808), 1, - sym_auto, - ACTIONS(5810), 1, - anon_sym_decltype, - ACTIONS(5812), 1, - anon_sym_typename, - STATE(2032), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2099), 1, - sym__type_specifier, - STATE(2191), 1, - sym_template_type, - STATE(2280), 1, - sym_decltype_auto, - STATE(2298), 1, - sym_qualified_type_identifier, - STATE(3729), 1, - sym_argument_list, - STATE(5120), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - ACTIONS(5796), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2222), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [104690] = 18, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_requires, + [132522] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5026), 1, - anon_sym_PIPE, - ACTIONS(5750), 1, + ACTIONS(5792), 1, anon_sym_SLASH, - ACTIONS(5758), 1, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, + anon_sym_PIPE, + ACTIONS(5808), 1, anon_sym_AMP, - ACTIONS(5764), 1, + ACTIONS(5814), 1, anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - STATE(2534), 1, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(5928), 1, + anon_sym_COMMA, + ACTIONS(6195), 1, + anon_sym_SEMI, + STATE(2487), 1, sym_argument_list, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5748), 2, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, + ACTIONS(5794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5762), 3, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(5024), 9, - anon_sym_DOT_DOT_DOT, + [132612] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3866), 1, + sym__enum_base_clause, + STATE(4011), 1, + sym_enumerator_list, + ACTIONS(4233), 9, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, - [104760] = 6, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4235), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [132660] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(3037), 1, - anon_sym_LBRACE, - ACTIONS(5592), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - STATE(3839), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4679), 11, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, + ACTIONS(5808), 1, anon_sym_AMP, - anon_sym_GT, + ACTIONS(5814), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4677), 17, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(6089), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(5810), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [104806] = 21, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [132748] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5750), 1, + ACTIONS(5792), 1, anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(5808), 1, anon_sym_AMP, - ACTIONS(5764), 1, + ACTIONS(5814), 1, anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - STATE(2534), 1, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(5928), 1, + anon_sym_COMMA, + ACTIONS(6197), 1, + anon_sym_RPAREN, + STATE(2487), 1, sym_argument_list, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5748), 2, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, + ACTIONS(5794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5762), 3, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(4916), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, - [104882] = 13, + [132838] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5750), 1, + ACTIONS(5792), 1, anon_sym_SLASH, - STATE(2534), 1, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, + anon_sym_PIPE, + ACTIONS(5808), 1, + anon_sym_AMP, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(5928), 1, + anon_sym_COMMA, + ACTIONS(6199), 1, + anon_sym_SEMI, + STATE(2487), 1, sym_argument_list, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5748), 2, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5766), 2, + ACTIONS(5794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5026), 5, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(5024), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5800), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - [104942] = 6, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [132928] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3037), 1, - anon_sym_LBRACE, - ACTIONS(5592), 1, - anon_sym_LPAREN2, - STATE(3855), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4639), 11, + ACTIONS(4229), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -294891,9 +330094,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4637), 17, + ACTIONS(4231), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -294905,138 +330109,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, anon_sym_GT2, - [104988] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1491), 1, - sym_auto, - ACTIONS(1493), 1, - anon_sym_decltype, - ACTIONS(5202), 1, - sym_primitive_type, - ACTIONS(5567), 1, - anon_sym_LPAREN2, - ACTIONS(5770), 1, - sym_identifier, - ACTIONS(5772), 1, - anon_sym_COLON_COLON, - ACTIONS(5776), 1, - anon_sym_class, - ACTIONS(5778), 1, - anon_sym_struct, - ACTIONS(5780), 1, - anon_sym_union, - ACTIONS(5814), 1, - anon_sym_enum, - ACTIONS(5816), 1, - anon_sym_typename, - STATE(2075), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2323), 1, - sym_template_type, - STATE(2485), 1, - sym_qualified_type_identifier, - STATE(2494), 1, - sym_decltype_auto, - STATE(3250), 1, - sym__type_specifier, - STATE(3716), 1, - sym_argument_list, - STATE(5152), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - ACTIONS(1479), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2346), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [105068] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2935), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2930), 30, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_typename, - anon_sym_template, - [105108] = 12, + anon_sym_requires, + [132972] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5750), 1, + ACTIONS(5792), 1, anon_sym_SLASH, - STATE(2534), 1, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, + anon_sym_PIPE, + ACTIONS(5808), 1, + anon_sym_AMP, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(5928), 1, + anon_sym_COMMA, + ACTIONS(6201), 1, + anon_sym_SEMI, + STATE(2487), 1, sym_argument_list, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5748), 2, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5026), 5, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [133062] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4807), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(5024), 15, + anon_sym_DOT, + ACTIONS(4809), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, @@ -295045,1103 +330211,664 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, - [105166] = 21, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + [133106] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5750), 1, + ACTIONS(5792), 1, anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(5808), 1, anon_sym_AMP, - ACTIONS(5764), 1, + ACTIONS(5814), 1, anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - STATE(2534), 1, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(5928), 1, + anon_sym_COMMA, + ACTIONS(6203), 1, + anon_sym_RPAREN, + STATE(2487), 1, sym_argument_list, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5748), 2, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, + ACTIONS(5794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5762), 3, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(5076), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, - [105242] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(5700), 1, - sym_auto, - ACTIONS(5702), 1, - anon_sym_decltype, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(5716), 1, - anon_sym_LBRACK, - ACTIONS(5818), 1, - anon_sym_STAR, - ACTIONS(5820), 1, - anon_sym_AMP_AMP, - ACTIONS(5822), 1, - anon_sym_AMP, - STATE(3142), 1, - sym_decltype_auto, - STATE(3938), 1, - sym_parameter_list, - STATE(4894), 1, - sym__abstract_declarator, - STATE(3828), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4735), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5651), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(5706), 7, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - anon_sym_requires, - [105308] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1491), 1, - sym_auto, - ACTIONS(1493), 1, - anon_sym_decltype, - ACTIONS(5202), 1, - sym_primitive_type, - ACTIONS(5567), 1, - anon_sym_LPAREN2, - ACTIONS(5770), 1, - sym_identifier, - ACTIONS(5772), 1, - anon_sym_COLON_COLON, - ACTIONS(5776), 1, - anon_sym_class, - ACTIONS(5778), 1, - anon_sym_struct, - ACTIONS(5780), 1, - anon_sym_union, - ACTIONS(5814), 1, - anon_sym_enum, - ACTIONS(5816), 1, - anon_sym_typename, - STATE(2075), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2323), 1, - sym_template_type, - STATE(2485), 1, - sym_qualified_type_identifier, - STATE(2494), 1, - sym_decltype_auto, - STATE(3252), 1, - sym__type_specifier, - STATE(3651), 1, - sym_argument_list, - STATE(5152), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - ACTIONS(1479), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2346), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [105388] = 23, + [133196] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5750), 1, + ACTIONS(5792), 1, anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(5808), 1, anon_sym_AMP, - ACTIONS(5764), 1, + ACTIONS(5814), 1, anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, anon_sym_QMARK, - STATE(2534), 1, + ACTIONS(5928), 1, + anon_sym_COMMA, + ACTIONS(6205), 1, + anon_sym_SEMI, + STATE(2487), 1, sym_argument_list, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5748), 2, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, + ACTIONS(5794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5762), 3, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(5008), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - [105468] = 19, + [133286] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5026), 1, - anon_sym_PIPE, - ACTIONS(5750), 1, + ACTIONS(5792), 1, anon_sym_SLASH, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, + anon_sym_PIPE, + ACTIONS(5808), 1, anon_sym_AMP, - ACTIONS(5764), 1, + ACTIONS(5814), 1, anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - STATE(2534), 1, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(5928), 1, + anon_sym_COMMA, + ACTIONS(6207), 1, + anon_sym_SEMI, + STATE(2487), 1, sym_argument_list, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5748), 2, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, + ACTIONS(5794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5762), 3, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(5024), 8, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, - [105540] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(5602), 1, - anon_sym_AMP_AMP, - ACTIONS(5604), 1, - anon_sym_AMP, - ACTIONS(5614), 1, - anon_sym_noexcept, - ACTIONS(5616), 1, - anon_sym_throw, - ACTIONS(5622), 1, - anon_sym_LBRACK, - ACTIONS(5649), 1, - anon_sym___attribute__, - ACTIONS(5784), 1, - anon_sym_DASH_GT, - ACTIONS(5786), 1, - anon_sym_requires, - STATE(4842), 1, - sym_requires_clause, - STATE(4948), 1, - sym_trailing_return_type, - ACTIONS(4160), 2, - anon_sym_final, - anon_sym_override, - STATE(3936), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(5620), 4, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - STATE(3867), 6, - sym_type_qualifier, - sym_virtual_specifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_function_declarator_repeat2, - ACTIONS(5651), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [105608] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(5567), 1, - anon_sym_LPAREN2, - ACTIONS(5792), 1, - sym_identifier, - ACTIONS(5794), 1, - anon_sym_COLON_COLON, - ACTIONS(5798), 1, - sym_primitive_type, - ACTIONS(5802), 1, - anon_sym_class, - ACTIONS(5804), 1, - anon_sym_struct, - ACTIONS(5806), 1, - anon_sym_union, - ACTIONS(5808), 1, - sym_auto, - ACTIONS(5810), 1, - anon_sym_decltype, - ACTIONS(5828), 1, - anon_sym_enum, - ACTIONS(5830), 1, - anon_sym_typename, - STATE(2032), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2092), 1, - sym__type_specifier, - STATE(2191), 1, - sym_template_type, - STATE(2280), 1, - sym_decltype_auto, - STATE(2298), 1, - sym_qualified_type_identifier, - STATE(3742), 1, - sym_argument_list, - STATE(5120), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - ACTIONS(5796), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2222), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [105688] = 19, + [133376] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5750), 1, + ACTIONS(5792), 1, anon_sym_SLASH, - ACTIONS(5754), 1, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(5808), 1, anon_sym_AMP, - ACTIONS(5764), 1, + ACTIONS(5814), 1, anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - STATE(2534), 1, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(5928), 1, + anon_sym_COMMA, + ACTIONS(6209), 1, + anon_sym_RPAREN, + STATE(2487), 1, sym_argument_list, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5748), 2, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, + ACTIONS(5794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5762), 3, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(5024), 8, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, - [105760] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2469), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2467), 30, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_typename, - anon_sym_template, - [105800] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2679), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2677), 30, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_typename, - anon_sym_template, - [105840] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2517), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2515), 30, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_typename, - anon_sym_template, - [105880] = 21, + [133466] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5750), 1, + ACTIONS(5792), 1, anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(5808), 1, anon_sym_AMP, - ACTIONS(5764), 1, + ACTIONS(5814), 1, anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - STATE(2534), 1, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(5928), 1, + anon_sym_COMMA, + ACTIONS(6211), 1, + anon_sym_RPAREN, + STATE(2487), 1, sym_argument_list, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5748), 2, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, + ACTIONS(5794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5762), 3, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(5052), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, - [105956] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1491), 1, - sym_auto, - ACTIONS(1493), 1, - anon_sym_decltype, - ACTIONS(5202), 1, - sym_primitive_type, - ACTIONS(5567), 1, - anon_sym_LPAREN2, - ACTIONS(5770), 1, - sym_identifier, - ACTIONS(5772), 1, - anon_sym_COLON_COLON, - ACTIONS(5774), 1, - anon_sym_enum, - ACTIONS(5776), 1, - anon_sym_class, - ACTIONS(5778), 1, - anon_sym_struct, - ACTIONS(5780), 1, - anon_sym_union, - ACTIONS(5782), 1, - anon_sym_typename, - STATE(2075), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2323), 1, - sym_template_type, - STATE(2485), 1, - sym_qualified_type_identifier, - STATE(2494), 1, - sym_decltype_auto, - STATE(3235), 1, - sym__type_specifier, - STATE(3572), 1, - sym_argument_list, - STATE(5152), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - ACTIONS(1479), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2346), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [106036] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(5567), 1, - anon_sym_LPAREN2, - ACTIONS(5792), 1, - sym_identifier, - ACTIONS(5794), 1, - anon_sym_COLON_COLON, - ACTIONS(5798), 1, - sym_primitive_type, - ACTIONS(5802), 1, - anon_sym_class, - ACTIONS(5804), 1, - anon_sym_struct, - ACTIONS(5806), 1, - anon_sym_union, - ACTIONS(5808), 1, - sym_auto, - ACTIONS(5810), 1, - anon_sym_decltype, - ACTIONS(5828), 1, - anon_sym_enum, - ACTIONS(5830), 1, - anon_sym_typename, - STATE(2032), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2099), 1, - sym__type_specifier, - STATE(2191), 1, - sym_template_type, - STATE(2280), 1, - sym_decltype_auto, - STATE(2298), 1, - sym_qualified_type_identifier, - STATE(3766), 1, - sym_argument_list, - STATE(5120), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - ACTIONS(5796), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2222), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [106116] = 14, + [133556] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5750), 1, + ACTIONS(5792), 1, anon_sym_SLASH, - ACTIONS(5768), 1, + ACTIONS(5796), 1, anon_sym_LT_EQ_GT, - STATE(2534), 1, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, + anon_sym_PIPE, + ACTIONS(5808), 1, + anon_sym_AMP, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(5928), 1, + anon_sym_COMMA, + ACTIONS(6213), 1, + anon_sym_SEMI, + STATE(2487), 1, sym_argument_list, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5748), 2, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5766), 2, + ACTIONS(5794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5026), 5, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(5024), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5800), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, - [106178] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5748), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5026), 7, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_AMP, + anon_sym_not_eq, + ACTIONS(5812), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(5024), 15, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - [106234] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(5602), 1, - anon_sym_AMP_AMP, - ACTIONS(5604), 1, - anon_sym_AMP, - ACTIONS(5614), 1, - anon_sym_noexcept, - ACTIONS(5616), 1, - anon_sym_throw, - ACTIONS(5653), 1, - anon_sym_DASH_GT, - ACTIONS(5655), 1, - anon_sym_requires, - ACTIONS(5728), 1, - anon_sym_LBRACK, - STATE(4800), 1, - sym_trailing_return_type, - STATE(4835), 1, - sym_requires_clause, - ACTIONS(4160), 2, - anon_sym_final, - anon_sym_override, - STATE(3511), 6, - sym_type_qualifier, - sym_virtual_specifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_function_declarator_repeat2, - ACTIONS(5651), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(5726), 7, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [106298] = 22, + [133646] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5750), 1, + ACTIONS(5792), 1, anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(5808), 1, anon_sym_AMP, - ACTIONS(5764), 1, + ACTIONS(5814), 1, anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - STATE(2534), 1, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(6215), 1, + anon_sym_COMMA, + ACTIONS(6217), 1, + anon_sym_RPAREN, + STATE(2487), 1, sym_argument_list, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5748), 2, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, + ACTIONS(5794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5762), 3, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(4996), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, - [106376] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(5567), 1, - anon_sym_LPAREN2, - ACTIONS(5832), 1, - sym_identifier, - ACTIONS(5834), 1, - anon_sym_COLON_COLON, - ACTIONS(5838), 1, - sym_primitive_type, - ACTIONS(5840), 1, - anon_sym_enum, - ACTIONS(5842), 1, - anon_sym_class, - ACTIONS(5844), 1, - anon_sym_struct, - ACTIONS(5846), 1, - anon_sym_union, - ACTIONS(5848), 1, - sym_auto, - ACTIONS(5850), 1, - anon_sym_decltype, - ACTIONS(5852), 1, - anon_sym_typename, - STATE(2112), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2237), 1, - sym__type_specifier, - STATE(2590), 1, - sym_template_type, - STATE(2640), 1, - sym_qualified_type_identifier, - STATE(2707), 1, - sym_decltype_auto, - STATE(3721), 1, - sym_argument_list, - STATE(5092), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - ACTIONS(5836), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2708), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [106456] = 23, + [133736] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(5567), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(5832), 1, - sym_identifier, - ACTIONS(5834), 1, - anon_sym_COLON_COLON, - ACTIONS(5838), 1, - sym_primitive_type, - ACTIONS(5840), 1, - anon_sym_enum, - ACTIONS(5842), 1, - anon_sym_class, - ACTIONS(5844), 1, - anon_sym_struct, - ACTIONS(5846), 1, - anon_sym_union, - ACTIONS(5848), 1, - sym_auto, - ACTIONS(5850), 1, - anon_sym_decltype, - ACTIONS(5852), 1, - anon_sym_typename, - STATE(2112), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2254), 1, - sym__type_specifier, - STATE(2590), 1, - sym_template_type, - STATE(2640), 1, - sym_qualified_type_identifier, - STATE(2707), 1, - sym_decltype_auto, - STATE(3740), 1, - sym_argument_list, - STATE(5092), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - ACTIONS(5836), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2708), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [106536] = 23, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, + anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, + anon_sym_PIPE, + ACTIONS(5808), 1, + anon_sym_AMP, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(5928), 1, + anon_sym_COMMA, + ACTIONS(6219), 1, + anon_sym_RPAREN, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [133826] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(5567), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, ACTIONS(5792), 1, - sym_identifier, - ACTIONS(5794), 1, - anon_sym_COLON_COLON, + anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, ACTIONS(5798), 1, - sym_primitive_type, - ACTIONS(5800), 1, - anon_sym_enum, - ACTIONS(5802), 1, - anon_sym_class, + anon_sym_DOT_DOT_DOT, ACTIONS(5804), 1, - anon_sym_struct, - ACTIONS(5806), 1, - anon_sym_union, + anon_sym_PIPE, ACTIONS(5808), 1, - sym_auto, - ACTIONS(5810), 1, - anon_sym_decltype, - ACTIONS(5812), 1, - anon_sym_typename, - STATE(2032), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2092), 1, - sym__type_specifier, - STATE(2191), 1, - sym_template_type, - STATE(2280), 1, - sym_decltype_auto, - STATE(2298), 1, - sym_qualified_type_identifier, - STATE(3760), 1, + anon_sym_AMP, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(5928), 1, + anon_sym_COMMA, + ACTIONS(6221), 1, + anon_sym_RPAREN, + STATE(2487), 1, sym_argument_list, - STATE(5120), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - ACTIONS(5796), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2222), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [106616] = 6, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [133916] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3037), 1, - anon_sym_LBRACE, - ACTIONS(5592), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - STATE(3899), 2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, + anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, + anon_sym_PIPE, + ACTIONS(5808), 1, + anon_sym_AMP, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(5928), 1, + anon_sym_COMMA, + ACTIONS(6223), 1, + anon_sym_RPAREN, + STATE(2487), 1, sym_argument_list, - sym_initializer_list, - ACTIONS(4667), 11, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [134006] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4217), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -296153,9 +330880,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4665), 17, + ACTIONS(4219), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -296167,135 +330895,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, anon_sym_GT2, - [106662] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(2565), 1, - sym_auto, - ACTIONS(2567), 1, - anon_sym_decltype, - ACTIONS(5339), 1, - sym_primitive_type, - ACTIONS(5567), 1, - anon_sym_LPAREN2, - ACTIONS(5854), 1, - sym_identifier, - ACTIONS(5856), 1, - anon_sym_COLON_COLON, - ACTIONS(5858), 1, - anon_sym_enum, - ACTIONS(5860), 1, - anon_sym_class, - ACTIONS(5862), 1, - anon_sym_struct, - ACTIONS(5864), 1, - anon_sym_union, - ACTIONS(5866), 1, - anon_sym_typename, - STATE(2182), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2841), 1, - sym_template_type, - STATE(2845), 1, - sym_qualified_type_identifier, - STATE(2878), 1, - sym_decltype_auto, - STATE(3281), 1, - sym__type_specifier, - STATE(3638), 1, - sym_argument_list, - STATE(5154), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - ACTIONS(2541), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2872), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [106742] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(5567), 1, - anon_sym_LPAREN2, - ACTIONS(5868), 1, - sym_identifier, - ACTIONS(5870), 1, - anon_sym_COLON_COLON, - ACTIONS(5874), 1, - sym_primitive_type, - ACTIONS(5876), 1, - anon_sym_enum, - ACTIONS(5878), 1, - anon_sym_class, - ACTIONS(5880), 1, - anon_sym_struct, - ACTIONS(5882), 1, - anon_sym_union, - ACTIONS(5884), 1, - sym_auto, - ACTIONS(5886), 1, - anon_sym_decltype, - ACTIONS(5888), 1, - anon_sym_typename, - STATE(2082), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2168), 1, - sym__type_specifier, - STATE(2309), 1, - sym_template_type, - STATE(2418), 1, - sym_qualified_type_identifier, - STATE(2482), 1, - sym_decltype_auto, - STATE(3717), 1, - sym_argument_list, - STATE(5168), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - ACTIONS(5872), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2493), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [106822] = 6, + anon_sym_requires, + [134050] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3037), 1, - anon_sym_LBRACE, - ACTIONS(5592), 1, - anon_sym_LPAREN2, - STATE(3846), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(4546), 11, + ACTIONS(4203), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -296307,9 +330921,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4544), 17, + ACTIONS(4205), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -296321,834 +330936,282 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, anon_sym_GT2, - [106868] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3818), 1, - anon_sym_LBRACK, - ACTIONS(3813), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(3816), 6, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - ACTIONS(3811), 23, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_operator, - [106912] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(2565), 1, - sym_auto, - ACTIONS(2567), 1, - anon_sym_decltype, - ACTIONS(5339), 1, - sym_primitive_type, - ACTIONS(5567), 1, - anon_sym_LPAREN2, - ACTIONS(5854), 1, - sym_identifier, - ACTIONS(5856), 1, - anon_sym_COLON_COLON, - ACTIONS(5858), 1, - anon_sym_enum, - ACTIONS(5860), 1, - anon_sym_class, - ACTIONS(5862), 1, - anon_sym_struct, - ACTIONS(5864), 1, - anon_sym_union, - ACTIONS(5866), 1, - anon_sym_typename, - STATE(2182), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2841), 1, - sym_template_type, - STATE(2845), 1, - sym_qualified_type_identifier, - STATE(2878), 1, - sym_decltype_auto, - STATE(3290), 1, - sym__type_specifier, - STATE(3671), 1, - sym_argument_list, - STATE(5154), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - ACTIONS(2541), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2872), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [106992] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2473), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2471), 30, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_typename, - anon_sym_template, - [107032] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1491), 1, - sym_auto, - ACTIONS(1493), 1, - anon_sym_decltype, - ACTIONS(5202), 1, - sym_primitive_type, - ACTIONS(5567), 1, - anon_sym_LPAREN2, - ACTIONS(5770), 1, - sym_identifier, - ACTIONS(5772), 1, - anon_sym_COLON_COLON, - ACTIONS(5774), 1, - anon_sym_enum, - ACTIONS(5776), 1, - anon_sym_class, - ACTIONS(5778), 1, - anon_sym_struct, - ACTIONS(5780), 1, - anon_sym_union, - ACTIONS(5782), 1, - anon_sym_typename, - STATE(2075), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2323), 1, - sym_template_type, - STATE(2485), 1, - sym_qualified_type_identifier, - STATE(2494), 1, - sym_decltype_auto, - STATE(3250), 1, - sym__type_specifier, - STATE(3624), 1, - sym_argument_list, - STATE(5152), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - ACTIONS(1479), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2346), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [107112] = 26, + anon_sym_requires, + [134094] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, + ACTIONS(4221), 11, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, anon_sym_AMP, - ACTIONS(5764), 1, + anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4223), 25, anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(5890), 1, anon_sym_COMMA, - ACTIONS(5892), 1, - anon_sym_SEMI, - ACTIONS(5894), 1, - anon_sym_RBRACE, - STATE(2534), 1, - sym_argument_list, - STATE(5588), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5760), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5766), 2, anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [107198] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(5700), 1, - sym_auto, - ACTIONS(5702), 1, - anon_sym_decltype, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(5716), 1, - anon_sym_LBRACK, - ACTIONS(5818), 1, - anon_sym_STAR, - ACTIONS(5820), 1, - anon_sym_AMP_AMP, - ACTIONS(5822), 1, - anon_sym_AMP, - STATE(3142), 1, - sym_decltype_auto, - STATE(3938), 1, - sym_parameter_list, - STATE(4915), 1, - sym__abstract_declarator, - STATE(3951), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4735), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5651), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(5722), 7, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - anon_sym_requires, - [107264] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(5567), 1, - anon_sym_LPAREN2, - ACTIONS(5868), 1, - sym_identifier, - ACTIONS(5870), 1, - anon_sym_COLON_COLON, - ACTIONS(5874), 1, - sym_primitive_type, - ACTIONS(5876), 1, - anon_sym_enum, - ACTIONS(5878), 1, - anon_sym_class, - ACTIONS(5880), 1, - anon_sym_struct, - ACTIONS(5882), 1, - anon_sym_union, - ACTIONS(5884), 1, - sym_auto, - ACTIONS(5886), 1, - anon_sym_decltype, - ACTIONS(5888), 1, - anon_sym_typename, - STATE(2082), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2172), 1, - sym__type_specifier, - STATE(2309), 1, - sym_template_type, - STATE(2418), 1, - sym_qualified_type_identifier, - STATE(2482), 1, - sym_decltype_auto, - STATE(3705), 1, - sym_argument_list, - STATE(5168), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - ACTIONS(5872), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2493), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [107344] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(5602), 1, - anon_sym_AMP_AMP, - ACTIONS(5604), 1, - anon_sym_AMP, - ACTIONS(5608), 1, - anon_sym_LBRACK, - ACTIONS(5614), 1, - anon_sym_noexcept, - ACTIONS(5616), 1, - anon_sym_throw, - ACTIONS(5649), 1, - anon_sym___attribute__, - ACTIONS(5786), 1, - anon_sym_requires, - ACTIONS(5790), 1, - anon_sym_DASH_GT, - STATE(4855), 1, - sym_requires_clause, - STATE(5000), 1, - sym_trailing_return_type, - ACTIONS(4160), 2, - anon_sym_final, - anon_sym_override, - STATE(3464), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(5600), 4, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_try, - STATE(3856), 6, - sym_type_qualifier, - sym_virtual_specifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_function_declarator_repeat2, - ACTIONS(5651), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [107412] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2513), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2511), 30, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_typename, - anon_sym_template, - [107452] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5898), 1, - anon_sym_AMP_AMP, - ACTIONS(5901), 1, - anon_sym_AMP, - ACTIONS(5904), 1, anon_sym_LBRACK, - ACTIONS(5906), 1, - anon_sym_const, - ACTIONS(5915), 1, - anon_sym_noexcept, - ACTIONS(5918), 1, - anon_sym_throw, - ACTIONS(5912), 2, - anon_sym_final, - anon_sym_override, - STATE(3511), 6, - sym_type_qualifier, - sym_virtual_specifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_function_declarator_repeat2, - ACTIONS(5909), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(5896), 11, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_DASH_GT, anon_sym_GT2, - anon_sym_try, anon_sym_requires, - [107508] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1491), 1, - sym_auto, - ACTIONS(1493), 1, - anon_sym_decltype, - ACTIONS(5202), 1, - sym_primitive_type, - ACTIONS(5567), 1, - anon_sym_LPAREN2, - ACTIONS(5770), 1, - sym_identifier, - ACTIONS(5772), 1, - anon_sym_COLON_COLON, - ACTIONS(5774), 1, - anon_sym_enum, - ACTIONS(5776), 1, - anon_sym_class, - ACTIONS(5778), 1, - anon_sym_struct, - ACTIONS(5780), 1, - anon_sym_union, - ACTIONS(5782), 1, - anon_sym_typename, - STATE(2075), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2323), 1, - sym_template_type, - STATE(2485), 1, - sym_qualified_type_identifier, - STATE(2494), 1, - sym_decltype_auto, - STATE(3252), 1, - sym__type_specifier, - STATE(3576), 1, - sym_argument_list, - STATE(5152), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - ACTIONS(1479), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2346), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [107588] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5923), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5921), 30, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_typename, - anon_sym_template, - [107628] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4295), 1, - anon_sym_COLON_COLON, - ACTIONS(4299), 1, - anon_sym_SEMI, - ACTIONS(4368), 5, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, - ACTIONS(4370), 24, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - [107671] = 24, + [134138] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5750), 1, + ACTIONS(5792), 1, anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(5808), 1, anon_sym_AMP, - ACTIONS(5764), 1, + ACTIONS(5814), 1, anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, anon_sym_QMARK, - ACTIONS(5925), 1, + ACTIONS(5928), 1, anon_sym_COMMA, - STATE(2534), 1, + ACTIONS(6225), 1, + anon_sym_RPAREN, + STATE(2487), 1, sym_argument_list, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5748), 2, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, + ACTIONS(5794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5927), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - ACTIONS(5762), 3, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [107752] = 25, + [134228] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5750), 1, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5886), 1, anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, + ACTIONS(5892), 1, anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(5896), 1, anon_sym_AMP, - ACTIONS(5764), 1, + ACTIONS(5902), 1, anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, + ACTIONS(5908), 1, anon_sym_QMARK, - ACTIONS(5929), 1, - anon_sym_COMMA, - ACTIONS(5931), 1, - anon_sym_RPAREN, - STATE(2534), 1, + ACTIONS(5910), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5912), 1, + anon_sym_bitor, + ACTIONS(5914), 1, + anon_sym_bitand, + STATE(2487), 1, sym_argument_list, - STATE(5741), 1, - aux_sym_argument_list_repeat1, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, + ACTIONS(5882), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5748), 2, + ACTIONS(5884), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, + ACTIONS(5888), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5890), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5894), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5904), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5762), 3, + ACTIONS(6227), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(5898), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5900), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [107835] = 25, + [134316] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5750), 1, + ACTIONS(5792), 1, anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(5808), 1, anon_sym_AMP, - ACTIONS(5764), 1, + ACTIONS(5814), 1, anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, anon_sym_QMARK, - ACTIONS(5933), 1, - anon_sym_COMMA, - ACTIONS(5935), 1, - anon_sym_RBRACE, - STATE(2534), 1, + STATE(2487), 1, sym_argument_list, - STATE(5753), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5748), 2, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, + ACTIONS(5794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5762), 3, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6229), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [107918] = 7, + [134404] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5506), 1, - anon_sym_LBRACE, - ACTIONS(5937), 1, - anon_sym_COLON, - STATE(3148), 1, - sym__enum_base_clause, - STATE(3149), 1, - sym_enumerator_list, - ACTIONS(4350), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(4348), 24, - anon_sym_RPAREN, + ACTIONS(6231), 1, + sym_identifier, + ACTIONS(6236), 1, + sym_primitive_type, + STATE(3391), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6234), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3964), 8, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(3966), 21, + anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, anon_sym___declspec, + anon_sym___based, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, + anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -297159,634 +331222,736 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_virtual, - anon_sym_requires, - [107965] = 25, + anon_sym_operator, + [134456] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4496), 1, - anon_sym_LPAREN2, - ACTIONS(5242), 1, - anon_sym_LBRACK, - ACTIONS(5246), 1, + ACTIONS(4221), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5248), 1, - anon_sym_DASH_GT, - ACTIONS(5939), 1, + ACTIONS(4223), 25, anon_sym_DOT_DOT_DOT, - ACTIONS(5941), 1, anon_sym_COMMA, - ACTIONS(5947), 1, - anon_sym_SLASH, - ACTIONS(5949), 1, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, - ACTIONS(5951), 1, anon_sym_AMP_AMP, - ACTIONS(5953), 1, - anon_sym_PIPE, - ACTIONS(5955), 1, anon_sym_CARET, - ACTIONS(5957), 1, - anon_sym_AMP, - ACTIONS(5963), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_LT, - ACTIONS(5965), 1, - anon_sym_GT_GT, - ACTIONS(5967), 1, + anon_sym_LBRACK, anon_sym_QMARK, - ACTIONS(5969), 1, anon_sym_LT_EQ_GT, - ACTIONS(5973), 1, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, anon_sym_GT2, - STATE(3005), 1, - sym_argument_list, - STATE(5758), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(5943), 2, + anon_sym_requires, + [134500] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4817), 9, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5945), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(4819), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5959), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5971), 2, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5961), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [108048] = 25, + anon_sym_DASH_GT, + [134544] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4496), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(5242), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(5246), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(5248), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5939), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5941), 1, - anon_sym_COMMA, - ACTIONS(5947), 1, + ACTIONS(5792), 1, anon_sym_SLASH, - ACTIONS(5949), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5951), 1, - anon_sym_AMP_AMP, - ACTIONS(5953), 1, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, - ACTIONS(5955), 1, - anon_sym_CARET, - ACTIONS(5957), 1, + ACTIONS(5808), 1, anon_sym_AMP, - ACTIONS(5963), 1, - anon_sym_LT_LT, - ACTIONS(5965), 1, - anon_sym_GT_GT, - ACTIONS(5967), 1, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, anon_sym_QMARK, - ACTIONS(5969), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5975), 1, - anon_sym_GT2, - STATE(3005), 1, + ACTIONS(5928), 1, + anon_sym_COMMA, + ACTIONS(6238), 1, + anon_sym_RPAREN, + STATE(2487), 1, sym_argument_list, - STATE(5725), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(5943), 2, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5945), 2, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5959), 2, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5971), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5961), 4, + anon_sym_not_eq, + ACTIONS(5812), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [108131] = 4, + [134634] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3816), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(3818), 11, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, + ACTIONS(5808), 1, anon_sym_AMP, - anon_sym_GT, + ACTIONS(5814), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(3823), 18, - anon_sym_DOT_DOT_DOT, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(5928), 1, anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(6240), 1, + anon_sym_RPAREN, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [134724] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, anon_sym_LBRACK, - anon_sym_QMARK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, + anon_sym_SLASH, + ACTIONS(5796), 1, anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, + anon_sym_PIPE, + ACTIONS(5808), 1, + anon_sym_AMP, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(5928), 1, + anon_sym_COMMA, + ACTIONS(6242), 1, + anon_sym_RPAREN, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [108172] = 25, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [134814] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4496), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(5242), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(5246), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(5248), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5939), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5941), 1, - anon_sym_COMMA, - ACTIONS(5947), 1, + ACTIONS(5792), 1, anon_sym_SLASH, - ACTIONS(5949), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5951), 1, - anon_sym_AMP_AMP, - ACTIONS(5953), 1, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, - ACTIONS(5955), 1, - anon_sym_CARET, - ACTIONS(5957), 1, + ACTIONS(5808), 1, anon_sym_AMP, - ACTIONS(5963), 1, - anon_sym_LT_LT, - ACTIONS(5965), 1, - anon_sym_GT_GT, - ACTIONS(5967), 1, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, anon_sym_QMARK, - ACTIONS(5969), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5977), 1, - anon_sym_GT2, - STATE(3005), 1, + ACTIONS(5928), 1, + anon_sym_COMMA, + ACTIONS(6244), 1, + anon_sym_RPAREN, + STATE(2487), 1, sym_argument_list, - STATE(5734), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(5943), 2, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5945), 2, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5959), 2, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5971), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5961), 4, + anon_sym_not_eq, + ACTIONS(5812), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [108255] = 25, + [134904] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4496), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(5242), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(5246), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(5248), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5939), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5941), 1, - anon_sym_COMMA, - ACTIONS(5947), 1, + ACTIONS(5792), 1, anon_sym_SLASH, - ACTIONS(5949), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5951), 1, - anon_sym_AMP_AMP, - ACTIONS(5953), 1, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, - ACTIONS(5955), 1, - anon_sym_CARET, - ACTIONS(5957), 1, + ACTIONS(5808), 1, anon_sym_AMP, - ACTIONS(5963), 1, - anon_sym_LT_LT, - ACTIONS(5965), 1, - anon_sym_GT_GT, - ACTIONS(5967), 1, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, anon_sym_QMARK, - ACTIONS(5969), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5979), 1, - anon_sym_GT2, - STATE(3005), 1, + ACTIONS(5928), 1, + anon_sym_COMMA, + ACTIONS(6246), 1, + anon_sym_RPAREN, + STATE(2487), 1, sym_argument_list, - STATE(5750), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(5943), 2, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5945), 2, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5959), 2, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5971), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5961), 4, + anon_sym_not_eq, + ACTIONS(5812), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [108338] = 25, + [134994] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4496), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(5242), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(5246), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(5248), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5939), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5941), 1, - anon_sym_COMMA, - ACTIONS(5947), 1, + ACTIONS(5792), 1, anon_sym_SLASH, - ACTIONS(5949), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5951), 1, - anon_sym_AMP_AMP, - ACTIONS(5953), 1, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, - ACTIONS(5955), 1, - anon_sym_CARET, - ACTIONS(5957), 1, + ACTIONS(5808), 1, anon_sym_AMP, - ACTIONS(5963), 1, - anon_sym_LT_LT, - ACTIONS(5965), 1, - anon_sym_GT_GT, - ACTIONS(5967), 1, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, anon_sym_QMARK, - ACTIONS(5969), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5981), 1, - anon_sym_GT2, - STATE(3005), 1, + ACTIONS(6248), 1, + anon_sym_SEMI, + STATE(2487), 1, sym_argument_list, - STATE(5756), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(5943), 2, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5945), 2, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5959), 2, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5971), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5961), 4, + anon_sym_not_eq, + ACTIONS(5812), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [108421] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3820), 1, - anon_sym_LBRACK, - ACTIONS(3813), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(3816), 5, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - ACTIONS(3811), 23, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - [108464] = 25, + [135081] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4496), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(5242), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(5246), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(5248), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5939), 1, + ACTIONS(5798), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5941), 1, - anon_sym_COMMA, - ACTIONS(5947), 1, + ACTIONS(5886), 1, anon_sym_SLASH, - ACTIONS(5949), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5951), 1, - anon_sym_AMP_AMP, - ACTIONS(5953), 1, + ACTIONS(5892), 1, anon_sym_PIPE, - ACTIONS(5955), 1, - anon_sym_CARET, - ACTIONS(5957), 1, + ACTIONS(5896), 1, anon_sym_AMP, - ACTIONS(5963), 1, - anon_sym_LT_LT, - ACTIONS(5965), 1, - anon_sym_GT_GT, - ACTIONS(5967), 1, + ACTIONS(5902), 1, + anon_sym_GT_EQ, + ACTIONS(5908), 1, anon_sym_QMARK, - ACTIONS(5969), 1, + ACTIONS(5910), 1, anon_sym_LT_EQ_GT, - ACTIONS(5983), 1, - anon_sym_GT2, - STATE(3005), 1, + ACTIONS(5912), 1, + anon_sym_bitor, + ACTIONS(5914), 1, + anon_sym_bitand, + ACTIONS(6250), 1, + anon_sym_RBRACK, + STATE(2487), 1, sym_argument_list, - STATE(5768), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(5943), 2, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5882), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5945), 2, + ACTIONS(5884), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5959), 2, + ACTIONS(5888), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5890), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5894), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5904), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5898), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5971), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5961), 4, + anon_sym_not_eq, + ACTIONS(5900), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [108547] = 7, + [135168] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(5506), 1, - anon_sym_LBRACE, - ACTIONS(5937), 1, - anon_sym_COLON, - STATE(3188), 1, - sym__enum_base_clause, - STATE(3189), 1, - sym_enumerator_list, - ACTIONS(4340), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(4338), 24, - anon_sym_RPAREN, + ACTIONS(4055), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_requires, - [108594] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5594), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - STATE(3748), 1, - sym_new_declarator, - ACTIONS(4703), 11, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, + ACTIONS(5808), 1, anon_sym_AMP, - anon_sym_GT, + ACTIONS(5814), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4701), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(6252), 1, + anon_sym_SEMI, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [108637] = 25, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [135255] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4496), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(5242), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(5246), 1, + ACTIONS(5341), 1, anon_sym_DOT, - ACTIONS(5248), 1, + ACTIONS(5343), 1, anon_sym_DASH_GT, - ACTIONS(5939), 1, + ACTIONS(5798), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5941), 1, - anon_sym_COMMA, - ACTIONS(5947), 1, + ACTIONS(6258), 1, anon_sym_SLASH, - ACTIONS(5949), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5951), 1, - anon_sym_AMP_AMP, - ACTIONS(5953), 1, + ACTIONS(6264), 1, anon_sym_PIPE, - ACTIONS(5955), 1, - anon_sym_CARET, - ACTIONS(5957), 1, + ACTIONS(6268), 1, anon_sym_AMP, - ACTIONS(5963), 1, - anon_sym_LT_LT, - ACTIONS(5965), 1, - anon_sym_GT_GT, - ACTIONS(5967), 1, + ACTIONS(6274), 1, + anon_sym_GT_EQ, + ACTIONS(6278), 1, + anon_sym_COLON, + ACTIONS(6280), 1, anon_sym_QMARK, - ACTIONS(5969), 1, + ACTIONS(6282), 1, anon_sym_LT_EQ_GT, - ACTIONS(5985), 1, - anon_sym_GT2, - STATE(3005), 1, + ACTIONS(6284), 1, + anon_sym_bitor, + ACTIONS(6286), 1, + anon_sym_bitand, + STATE(2487), 1, sym_argument_list, - STATE(5773), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(5943), 2, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6254), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5945), 2, + ACTIONS(6256), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5959), 2, + ACTIONS(6260), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6262), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6266), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6276), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6270), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5971), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5961), 4, + anon_sym_not_eq, + ACTIONS(6272), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [108720] = 25, + [135342] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5750), 1, + ACTIONS(5792), 1, anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(5808), 1, anon_sym_AMP, - ACTIONS(5764), 1, + ACTIONS(5814), 1, anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, anon_sym_QMARK, - ACTIONS(5925), 1, - anon_sym_COMMA, - ACTIONS(5987), 1, + ACTIONS(6288), 1, anon_sym_RPAREN, - ACTIONS(5989), 1, - anon_sym_SEMI, - STATE(2534), 1, + STATE(2487), 1, sym_argument_list, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5748), 2, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, + ACTIONS(5794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5762), 3, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [108803] = 6, + [135429] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3984), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4705), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4708), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(3724), 9, + ACTIONS(5341), 1, + anon_sym_DOT, + ACTIONS(5343), 1, + anon_sym_DASH_GT, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4950), 8, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -297795,10 +331960,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_DOT, - ACTIONS(3716), 19, + ACTIONS(4948), 20, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -297809,426 +331972,453 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [108848] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5898), 1, - anon_sym_AMP_AMP, - ACTIONS(5901), 1, - anon_sym_AMP, - ACTIONS(5904), 1, - anon_sym_LBRACK, - ACTIONS(5915), 1, - anon_sym_noexcept, - ACTIONS(5918), 1, - anon_sym_throw, - ACTIONS(5991), 1, - anon_sym_const, - ACTIONS(5912), 2, - anon_sym_final, - anon_sym_override, - STATE(3532), 6, - sym_type_qualifier, - sym_virtual_specifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_function_declarator_repeat2, - ACTIONS(5994), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(5896), 10, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_DASH_GT, - anon_sym_try, - anon_sym_requires, - [108903] = 25, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [135484] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5750), 1, + ACTIONS(5792), 1, anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(5808), 1, anon_sym_AMP, - ACTIONS(5764), 1, + ACTIONS(5814), 1, anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, anon_sym_QMARK, - ACTIONS(5894), 1, - anon_sym_RBRACE, - ACTIONS(5997), 1, - anon_sym_COMMA, - STATE(2534), 1, + ACTIONS(6290), 1, + anon_sym_SEMI, + STATE(2487), 1, sym_argument_list, - STATE(5588), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5748), 2, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, + ACTIONS(5794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5762), 3, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [108986] = 25, + [135571] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4496), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(5242), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(5246), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(5248), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5939), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5941), 1, - anon_sym_COMMA, - ACTIONS(5947), 1, + ACTIONS(5792), 1, anon_sym_SLASH, - ACTIONS(5949), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5951), 1, - anon_sym_AMP_AMP, - ACTIONS(5953), 1, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, - ACTIONS(5955), 1, - anon_sym_CARET, - ACTIONS(5957), 1, + ACTIONS(5808), 1, anon_sym_AMP, - ACTIONS(5963), 1, - anon_sym_LT_LT, - ACTIONS(5965), 1, - anon_sym_GT_GT, - ACTIONS(5967), 1, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, anon_sym_QMARK, - ACTIONS(5969), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5999), 1, - anon_sym_GT2, - STATE(3005), 1, + ACTIONS(6292), 1, + anon_sym_RPAREN, + STATE(2487), 1, sym_argument_list, - STATE(5587), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(5943), 2, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5945), 2, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5959), 2, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5971), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5961), 4, + anon_sym_not_eq, + ACTIONS(5812), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [109069] = 25, + [135658] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5750), 1, + ACTIONS(5792), 1, anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(5808), 1, anon_sym_AMP, - ACTIONS(5764), 1, + ACTIONS(5814), 1, anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, anon_sym_QMARK, - ACTIONS(5927), 1, + ACTIONS(6294), 1, anon_sym_SEMI, - ACTIONS(6001), 1, - anon_sym_COMMA, - ACTIONS(6004), 1, - anon_sym_RBRACE, - STATE(2534), 1, + STATE(2487), 1, sym_argument_list, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5748), 2, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, + ACTIONS(5794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5762), 3, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [109152] = 25, + [135745] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4496), 1, - anon_sym_LPAREN2, - ACTIONS(5242), 1, - anon_sym_LBRACK, - ACTIONS(5246), 1, + ACTIONS(5019), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5248), 1, - anon_sym_DASH_GT, - ACTIONS(5939), 1, + ACTIONS(5017), 24, anon_sym_DOT_DOT_DOT, - ACTIONS(5941), 1, anon_sym_COMMA, - ACTIONS(5947), 1, - anon_sym_SLASH, - ACTIONS(5949), 1, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, - ACTIONS(5951), 1, anon_sym_AMP_AMP, - ACTIONS(5953), 1, - anon_sym_PIPE, - ACTIONS(5955), 1, anon_sym_CARET, - ACTIONS(5957), 1, - anon_sym_AMP, - ACTIONS(5963), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_LT, - ACTIONS(5965), 1, - anon_sym_GT_GT, - ACTIONS(5967), 1, + anon_sym_LBRACK, anon_sym_QMARK, - ACTIONS(5969), 1, anon_sym_LT_EQ_GT, - ACTIONS(6006), 1, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, anon_sym_GT2, - STATE(3005), 1, + [135788] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5886), 1, + anon_sym_SLASH, + ACTIONS(5892), 1, + anon_sym_PIPE, + ACTIONS(5896), 1, + anon_sym_AMP, + ACTIONS(5902), 1, + anon_sym_GT_EQ, + ACTIONS(5908), 1, + anon_sym_QMARK, + ACTIONS(5910), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5912), 1, + anon_sym_bitor, + ACTIONS(5914), 1, + anon_sym_bitand, + ACTIONS(6296), 1, + anon_sym_RBRACK, + STATE(2487), 1, sym_argument_list, - STATE(5786), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(5943), 2, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5882), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5945), 2, + ACTIONS(5884), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5959), 2, + ACTIONS(5888), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5890), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5894), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5904), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5898), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5971), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5961), 4, + anon_sym_not_eq, + ACTIONS(5900), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [109235] = 25, + [135875] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6008), 1, - anon_sym_COMMA, - ACTIONS(6014), 1, + ACTIONS(5792), 1, anon_sym_SLASH, - ACTIONS(6016), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6018), 1, - anon_sym_AMP_AMP, - ACTIONS(6020), 1, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, - ACTIONS(6022), 1, - anon_sym_CARET, - ACTIONS(6024), 1, + ACTIONS(5808), 1, anon_sym_AMP, - ACTIONS(6030), 1, + ACTIONS(5814), 1, anon_sym_GT_EQ, - ACTIONS(6034), 1, - anon_sym_RBRACK, - ACTIONS(6036), 1, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, anon_sym_QMARK, - ACTIONS(6038), 1, - anon_sym_LT_EQ_GT, - STATE(2534), 1, + ACTIONS(6298), 1, + anon_sym_SEMI, + STATE(2487), 1, sym_argument_list, - STATE(5744), 1, - aux_sym_lambda_capture_specifier_repeat1, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6010), 2, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6012), 2, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6026), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6032), 2, + ACTIONS(5794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6028), 3, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [109318] = 25, + [135962] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6008), 1, - anon_sym_COMMA, - ACTIONS(6014), 1, + ACTIONS(5792), 1, anon_sym_SLASH, - ACTIONS(6016), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6018), 1, - anon_sym_AMP_AMP, - ACTIONS(6020), 1, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, - ACTIONS(6022), 1, - anon_sym_CARET, - ACTIONS(6024), 1, + ACTIONS(5808), 1, anon_sym_AMP, - ACTIONS(6030), 1, + ACTIONS(5814), 1, anon_sym_GT_EQ, - ACTIONS(6036), 1, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, anon_sym_QMARK, - ACTIONS(6038), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6040), 1, - anon_sym_RBRACK, - STATE(2534), 1, + ACTIONS(6300), 1, + anon_sym_SEMI, + STATE(2487), 1, sym_argument_list, - STATE(5744), 1, - aux_sym_lambda_capture_specifier_repeat1, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6010), 2, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6012), 2, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6026), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6032), 2, + ACTIONS(5794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6028), 3, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [109401] = 3, + [136049] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4099), 14, - anon_sym_DOT_DOT_DOT, + STATE(4027), 1, + sym_enumerator_list, + ACTIONS(4271), 9, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - ACTIONS(4097), 17, + anon_sym_COLON, + ACTIONS(4273), 25, anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -298238,587 +332428,537 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constinit, anon_sym_consteval, sym_identifier, - anon_sym_template, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, anon_sym_operator, anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, anon_sym_requires, - [109440] = 25, + [136094] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5750), 1, + ACTIONS(5792), 1, anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(5808), 1, anon_sym_AMP, - ACTIONS(5764), 1, + ACTIONS(5814), 1, anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, anon_sym_QMARK, - ACTIONS(5929), 1, - anon_sym_COMMA, - ACTIONS(6042), 1, - anon_sym_RPAREN, - STATE(2534), 1, + ACTIONS(6302), 1, + anon_sym_SEMI, + STATE(2487), 1, sym_argument_list, - STATE(5629), 1, - aux_sym_argument_list_repeat1, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5748), 2, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, + ACTIONS(5794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5762), 3, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [109523] = 25, + [136181] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5750), 1, + ACTIONS(5792), 1, anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(5808), 1, anon_sym_AMP, - ACTIONS(5764), 1, + ACTIONS(5814), 1, anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, anon_sym_QMARK, - ACTIONS(5925), 1, - anon_sym_COMMA, - ACTIONS(5989), 1, + ACTIONS(6304), 1, anon_sym_SEMI, - ACTIONS(6044), 1, - anon_sym_RPAREN, - STATE(2534), 1, + STATE(2487), 1, sym_argument_list, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5748), 2, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, + ACTIONS(5794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5762), 3, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [109606] = 25, + [136268] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6008), 1, - anon_sym_COMMA, - ACTIONS(6014), 1, + ACTIONS(5792), 1, anon_sym_SLASH, - ACTIONS(6016), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6018), 1, - anon_sym_AMP_AMP, - ACTIONS(6020), 1, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, - ACTIONS(6022), 1, - anon_sym_CARET, - ACTIONS(6024), 1, + ACTIONS(5808), 1, anon_sym_AMP, - ACTIONS(6030), 1, + ACTIONS(5814), 1, anon_sym_GT_EQ, - ACTIONS(6036), 1, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, anon_sym_QMARK, - ACTIONS(6038), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6046), 1, - anon_sym_RBRACK, - STATE(2534), 1, + ACTIONS(6306), 1, + anon_sym_SEMI, + STATE(2487), 1, sym_argument_list, - STATE(5561), 1, - aux_sym_lambda_capture_specifier_repeat1, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6010), 2, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6012), 2, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6026), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6032), 2, + ACTIONS(5794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6028), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [109689] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5518), 1, - anon_sym_const, - ACTIONS(5602), 1, - anon_sym_AMP_AMP, - ACTIONS(5604), 1, - anon_sym_AMP, - ACTIONS(5606), 1, - anon_sym___attribute__, - ACTIONS(5614), 1, - anon_sym_noexcept, - ACTIONS(5616), 1, - anon_sym_throw, - ACTIONS(5622), 1, - anon_sym_LBRACK, - ACTIONS(6048), 1, - anon_sym_DASH_GT, - ACTIONS(6050), 1, - anon_sym_requires, - STATE(4842), 1, - sym_requires_clause, - STATE(5211), 1, - sym_trailing_return_type, - ACTIONS(4160), 2, - anon_sym_final, - anon_sym_override, - STATE(3968), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(5620), 3, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - STATE(3977), 6, - sym_type_qualifier, - sym_virtual_specifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_function_declarator_repeat2, - ACTIONS(5610), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [109756] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4496), 1, - anon_sym_LPAREN2, - ACTIONS(5242), 1, - anon_sym_LBRACK, - ACTIONS(5246), 1, - anon_sym_DOT, - ACTIONS(5248), 1, - anon_sym_DASH_GT, - ACTIONS(5939), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5941), 1, - anon_sym_COMMA, - ACTIONS(5947), 1, - anon_sym_SLASH, - ACTIONS(5949), 1, + ACTIONS(5800), 2, anon_sym_PIPE_PIPE, - ACTIONS(5951), 1, + anon_sym_or, + ACTIONS(5802), 2, anon_sym_AMP_AMP, - ACTIONS(5953), 1, - anon_sym_PIPE, - ACTIONS(5955), 1, + anon_sym_and, + ACTIONS(5806), 2, anon_sym_CARET, - ACTIONS(5957), 1, - anon_sym_AMP, - ACTIONS(5963), 1, - anon_sym_LT_LT, - ACTIONS(5965), 1, - anon_sym_GT_GT, - ACTIONS(5967), 1, - anon_sym_QMARK, - ACTIONS(5969), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6052), 1, - anon_sym_GT2, - STATE(3005), 1, - sym_argument_list, - STATE(5688), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(5943), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5945), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5959), 2, + anon_sym_xor, + ACTIONS(5810), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5971), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5961), 4, + anon_sym_not_eq, + ACTIONS(5812), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [109839] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4299), 1, - anon_sym_SEMI, - ACTIONS(4368), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(4370), 24, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - [109880] = 25, + [136355] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5750), 1, + ACTIONS(5792), 1, anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(5808), 1, anon_sym_AMP, - ACTIONS(5764), 1, + ACTIONS(5814), 1, anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, anon_sym_QMARK, - ACTIONS(5929), 1, - anon_sym_COMMA, - ACTIONS(6054), 1, + ACTIONS(6308), 1, anon_sym_RPAREN, - STATE(2534), 1, + STATE(2487), 1, sym_argument_list, - STATE(5712), 1, - aux_sym_argument_list_repeat1, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5748), 2, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, + ACTIONS(5794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5762), 3, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [109963] = 25, + [136442] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5750), 1, + ACTIONS(5792), 1, anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(5808), 1, anon_sym_AMP, - ACTIONS(5764), 1, + ACTIONS(5814), 1, anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, anon_sym_QMARK, - ACTIONS(6056), 1, - anon_sym_COMMA, - ACTIONS(6058), 1, - anon_sym_RBRACE, - STATE(2534), 1, + ACTIONS(6310), 1, + anon_sym_RPAREN, + STATE(2487), 1, sym_argument_list, - STATE(5671), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5748), 2, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, + ACTIONS(5794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5762), 3, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [110046] = 25, + [136529] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4496), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(5242), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(5246), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(5248), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5939), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5941), 1, - anon_sym_COMMA, - ACTIONS(5947), 1, + ACTIONS(5792), 1, anon_sym_SLASH, - ACTIONS(5949), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5951), 1, - anon_sym_AMP_AMP, - ACTIONS(5953), 1, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, - ACTIONS(5955), 1, - anon_sym_CARET, - ACTIONS(5957), 1, + ACTIONS(5808), 1, anon_sym_AMP, - ACTIONS(5963), 1, - anon_sym_LT_LT, - ACTIONS(5965), 1, - anon_sym_GT_GT, - ACTIONS(5967), 1, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, anon_sym_QMARK, - ACTIONS(5969), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6060), 1, - anon_sym_GT2, - STATE(3005), 1, + ACTIONS(6312), 1, + anon_sym_RPAREN, + STATE(2487), 1, sym_argument_list, - STATE(5667), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(5943), 2, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5945), 2, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5959), 2, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5971), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5961), 4, + anon_sym_not_eq, + ACTIONS(5812), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [110129] = 25, + [136616] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(6314), 1, + sym_identifier, + ACTIONS(6316), 1, + anon_sym_LPAREN2, + ACTIONS(6318), 1, + anon_sym_STAR, + ACTIONS(6320), 1, + anon_sym_AMP_AMP, + ACTIONS(6322), 1, + anon_sym_AMP, + STATE(4398), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5002), 1, + sym__field_declarator, + STATE(6823), 1, + sym_ms_based_modifier, + ACTIONS(2963), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3967), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4302), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2961), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2965), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5185), 8, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + sym_reference_field_declarator, + sym_template_method, + sym_operator_name, + [136687] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4496), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(5242), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(5246), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(5248), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5939), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5941), 1, - anon_sym_COMMA, - ACTIONS(5947), 1, + ACTIONS(5792), 1, anon_sym_SLASH, - ACTIONS(5949), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5951), 1, - anon_sym_AMP_AMP, - ACTIONS(5953), 1, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, - ACTIONS(5955), 1, - anon_sym_CARET, - ACTIONS(5957), 1, + ACTIONS(5808), 1, anon_sym_AMP, - ACTIONS(5963), 1, - anon_sym_LT_LT, - ACTIONS(5965), 1, - anon_sym_GT_GT, - ACTIONS(5967), 1, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, anon_sym_QMARK, - ACTIONS(5969), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6062), 1, - anon_sym_GT2, - STATE(3005), 1, + ACTIONS(6324), 1, + anon_sym_SEMI, + STATE(2487), 1, sym_argument_list, - STATE(5738), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(5943), 2, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5945), 2, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5959), 2, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5971), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5961), 4, + anon_sym_not_eq, + ACTIONS(5812), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [110212] = 3, + [136774] = 17, ACTIONS(3), 1, - sym_comment, - ACTIONS(3119), 9, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(3117), 22, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, + sym_comment, + ACTIONS(47), 1, anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(6316), 1, + anon_sym_LPAREN2, + ACTIONS(6326), 1, + sym_identifier, + ACTIONS(6328), 1, + anon_sym_STAR, + ACTIONS(6330), 1, + anon_sym_AMP_AMP, + ACTIONS(6332), 1, + anon_sym_AMP, + STATE(4398), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5437), 1, + sym__field_declarator, + STATE(6785), 1, + sym_ms_based_modifier, + ACTIONS(2963), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4303), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4305), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(2961), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2965), 8, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -298827,434 +332967,359 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - sym_identifier, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - [110251] = 25, + STATE(5185), 8, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + sym_reference_field_declarator, + sym_template_method, + sym_operator_name, + [136845] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5750), 1, + ACTIONS(5792), 1, anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(5808), 1, anon_sym_AMP, - ACTIONS(5764), 1, + ACTIONS(5814), 1, anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, anon_sym_QMARK, - ACTIONS(6064), 1, - anon_sym_COMMA, - ACTIONS(6066), 1, - anon_sym_RBRACE, - STATE(2534), 1, + ACTIONS(6334), 1, + anon_sym_RPAREN, + STATE(2487), 1, sym_argument_list, - STATE(5632), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5748), 2, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, + ACTIONS(5794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5762), 3, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [110334] = 25, + [136932] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4496), 1, - anon_sym_LPAREN2, - ACTIONS(5242), 1, - anon_sym_LBRACK, - ACTIONS(5246), 1, + ACTIONS(5047), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5248), 1, - anon_sym_DASH_GT, - ACTIONS(5939), 1, + ACTIONS(5045), 24, anon_sym_DOT_DOT_DOT, - ACTIONS(5941), 1, anon_sym_COMMA, - ACTIONS(5947), 1, - anon_sym_SLASH, - ACTIONS(5949), 1, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, - ACTIONS(5951), 1, anon_sym_AMP_AMP, - ACTIONS(5953), 1, - anon_sym_PIPE, - ACTIONS(5955), 1, anon_sym_CARET, - ACTIONS(5957), 1, - anon_sym_AMP, - ACTIONS(5963), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_LT, - ACTIONS(5965), 1, - anon_sym_GT_GT, - ACTIONS(5967), 1, + anon_sym_LBRACK, anon_sym_QMARK, - ACTIONS(5969), 1, anon_sym_LT_EQ_GT, - ACTIONS(6068), 1, - anon_sym_GT2, - STATE(3005), 1, - sym_argument_list, - STATE(5634), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(5943), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5945), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5959), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5971), 2, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5961), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [110417] = 25, + anon_sym_DASH_GT, + anon_sym_GT2, + [136975] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, + ACTIONS(4916), 11, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, anon_sym_AMP, - ACTIONS(5764), 1, + anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4914), 24, anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(5929), 1, anon_sym_COMMA, - ACTIONS(6070), 1, - anon_sym_RPAREN, - STATE(2534), 1, - sym_argument_list, - STATE(5683), 1, - aux_sym_argument_list_repeat1, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5760), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5766), 2, anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [110500] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - ACTIONS(5750), 1, + anon_sym_GT2, + [137018] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5069), 11, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, anon_sym_AMP, - ACTIONS(5764), 1, + anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5067), 24, anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(6072), 1, anon_sym_COMMA, - ACTIONS(6074), 1, - anon_sym_RBRACE, - STATE(2534), 1, - sym_argument_list, - STATE(5687), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5760), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5766), 2, anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [110583] = 25, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [137061] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5750), 1, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5886), 1, anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, + ACTIONS(5892), 1, anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(5896), 1, anon_sym_AMP, - ACTIONS(5764), 1, + ACTIONS(5902), 1, anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, + ACTIONS(5908), 1, anon_sym_QMARK, - ACTIONS(5929), 1, - anon_sym_COMMA, - ACTIONS(6076), 1, - anon_sym_RPAREN, - STATE(2534), 1, + ACTIONS(5910), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5912), 1, + anon_sym_bitor, + ACTIONS(5914), 1, + anon_sym_bitand, + ACTIONS(6336), 1, + anon_sym_RBRACK, + STATE(2487), 1, sym_argument_list, - STATE(5601), 1, - aux_sym_argument_list_repeat1, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, + ACTIONS(5882), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5748), 2, + ACTIONS(5884), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, + ACTIONS(5888), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5890), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5894), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5904), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5762), 3, + ACTIONS(5898), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5900), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [110666] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3115), 9, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(3113), 22, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - anon_sym_virtual, - anon_sym_operator, - anon_sym_try, - [110705] = 24, + [137148] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5750), 1, + ACTIONS(5792), 1, anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(5808), 1, anon_sym_AMP, - ACTIONS(5764), 1, + ACTIONS(5814), 1, anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, anon_sym_QMARK, - ACTIONS(6080), 1, - anon_sym_RPAREN, - STATE(2534), 1, + ACTIONS(6338), 1, + anon_sym_SEMI, + STATE(2487), 1, sym_argument_list, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5748), 2, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, + ACTIONS(5794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6078), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(5762), 3, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [110786] = 15, + [137235] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(5602), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(6314), 1, + sym_identifier, + ACTIONS(6316), 1, + anon_sym_LPAREN2, + ACTIONS(6318), 1, + anon_sym_STAR, + ACTIONS(6320), 1, anon_sym_AMP_AMP, - ACTIONS(5604), 1, + ACTIONS(6322), 1, anon_sym_AMP, - ACTIONS(5614), 1, - anon_sym_noexcept, - ACTIONS(5616), 1, - anon_sym_throw, - ACTIONS(5622), 1, - anon_sym_LBRACK, - ACTIONS(5655), 1, - anon_sym_requires, - ACTIONS(5690), 1, - anon_sym_DASH_GT, - STATE(4719), 1, - sym_trailing_return_type, - STATE(4842), 1, - sym_requires_clause, - ACTIONS(4160), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5620), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - STATE(3511), 6, + STATE(4398), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5016), 1, + sym__field_declarator, + STATE(6823), 1, + sym_ms_based_modifier, + ACTIONS(2963), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4305), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4309), 2, sym_type_qualifier, - sym_virtual_specifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_function_declarator_repeat2, - ACTIONS(5651), 7, + aux_sym_type_definition_repeat1, + ACTIONS(2961), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2965), 8, + anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -299262,146 +333327,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [110849] = 17, + STATE(5185), 8, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + sym_reference_field_declarator, + sym_template_method, + sym_operator_name, + [137306] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5518), 1, + ACTIONS(57), 1, anon_sym_const, - ACTIONS(5602), 1, + ACTIONS(6009), 1, anon_sym_AMP_AMP, - ACTIONS(5604), 1, + ACTIONS(6011), 1, anon_sym_AMP, - ACTIONS(5606), 1, - anon_sym___attribute__, - ACTIONS(5608), 1, - anon_sym_LBRACK, - ACTIONS(5614), 1, + ACTIONS(6021), 1, anon_sym_noexcept, - ACTIONS(5616), 1, + ACTIONS(6023), 1, anon_sym_throw, - ACTIONS(6048), 1, + ACTIONS(6057), 1, + anon_sym_LBRACK, + ACTIONS(6340), 1, + anon_sym___attribute__, + ACTIONS(6344), 1, anon_sym_DASH_GT, - ACTIONS(6050), 1, + ACTIONS(6346), 1, anon_sym_requires, - STATE(4855), 1, - sym_requires_clause, - STATE(5205), 1, + STATE(5061), 1, sym_trailing_return_type, - ACTIONS(4160), 2, + STATE(5115), 1, + sym_requires_clause, + ACTIONS(4016), 2, anon_sym_final, anon_sym_override, - STATE(3543), 2, + STATE(3922), 2, sym_attribute_specifier, aux_sym_function_declarator_repeat1, - ACTIONS(5600), 3, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - STATE(3982), 6, + STATE(4087), 6, sym_type_qualifier, sym_virtual_specifier, sym_ref_qualifier, sym_noexcept, sym_throw_specifier, aux_sym_function_declarator_repeat2, - ACTIONS(5610), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [110916] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(5700), 1, - sym_auto, - ACTIONS(5702), 1, - anon_sym_decltype, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(5716), 1, - anon_sym_LBRACK, - ACTIONS(6082), 1, - anon_sym_STAR, - ACTIONS(6084), 1, - anon_sym_AMP_AMP, - ACTIONS(6086), 1, - anon_sym_AMP, - STATE(3142), 1, - sym_decltype_auto, - STATE(3989), 1, - sym_parameter_list, - STATE(4943), 1, - sym__abstract_declarator, - STATE(3962), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4735), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5706), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_requires, - ACTIONS(5651), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [110981] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(5602), 1, - anon_sym_AMP_AMP, - ACTIONS(5604), 1, - anon_sym_AMP, - ACTIONS(5614), 1, - anon_sym_noexcept, - ACTIONS(5616), 1, - anon_sym_throw, - ACTIONS(5655), 1, - anon_sym_requires, - ACTIONS(5690), 1, - anon_sym_DASH_GT, - ACTIONS(5728), 1, - anon_sym_LBRACK, - STATE(4800), 1, - sym_trailing_return_type, - STATE(4835), 1, - sym_requires_clause, - ACTIONS(4160), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5726), 6, + ACTIONS(6055), 7, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_EQ, - anon_sym_GT2, - STATE(3511), 6, - sym_type_qualifier, - sym_virtual_specifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_function_declarator_repeat2, - ACTIONS(5651), 7, + anon_sym_try, + ACTIONS(6342), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -299409,351 +333390,194 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [111044] = 25, + [137377] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5750), 1, + ACTIONS(5792), 1, anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(5808), 1, anon_sym_AMP, - ACTIONS(5764), 1, + ACTIONS(5814), 1, anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, anon_sym_QMARK, - ACTIONS(5929), 1, - anon_sym_COMMA, - ACTIONS(6088), 1, + ACTIONS(6348), 1, anon_sym_RPAREN, - STATE(2534), 1, + STATE(2487), 1, sym_argument_list, - STATE(5548), 1, - aux_sym_argument_list_repeat1, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5748), 2, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, + ACTIONS(5794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5762), 3, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [111127] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(5700), 1, - sym_auto, - ACTIONS(5702), 1, - anon_sym_decltype, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(5716), 1, - anon_sym_LBRACK, - ACTIONS(6082), 1, - anon_sym_STAR, - ACTIONS(6084), 1, - anon_sym_AMP_AMP, - ACTIONS(6086), 1, - anon_sym_AMP, - STATE(3142), 1, - sym_decltype_auto, - STATE(3989), 1, - sym_parameter_list, - STATE(4954), 1, - sym__abstract_declarator, - STATE(3988), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4735), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5722), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_requires, - ACTIONS(5651), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [111192] = 25, + [137464] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4496), 1, + ACTIONS(3781), 1, + anon_sym_RBRACK, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(5242), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(5246), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(5248), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5939), 1, + ACTIONS(5798), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5941), 1, - anon_sym_COMMA, - ACTIONS(5947), 1, + ACTIONS(5886), 1, anon_sym_SLASH, - ACTIONS(5949), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5951), 1, - anon_sym_AMP_AMP, - ACTIONS(5953), 1, + ACTIONS(5892), 1, anon_sym_PIPE, - ACTIONS(5955), 1, - anon_sym_CARET, - ACTIONS(5957), 1, + ACTIONS(5896), 1, anon_sym_AMP, - ACTIONS(5963), 1, - anon_sym_LT_LT, - ACTIONS(5965), 1, - anon_sym_GT_GT, - ACTIONS(5967), 1, + ACTIONS(5902), 1, + anon_sym_GT_EQ, + ACTIONS(5908), 1, anon_sym_QMARK, - ACTIONS(5969), 1, + ACTIONS(5910), 1, anon_sym_LT_EQ_GT, - ACTIONS(6090), 1, - anon_sym_GT2, - STATE(3005), 1, + ACTIONS(5912), 1, + anon_sym_bitor, + ACTIONS(5914), 1, + anon_sym_bitand, + STATE(2487), 1, sym_argument_list, - STATE(5570), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(5943), 2, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5882), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5945), 2, + ACTIONS(5884), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5959), 2, + ACTIONS(5888), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5890), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5894), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5904), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5898), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5971), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5961), 4, + anon_sym_not_eq, + ACTIONS(5900), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [111275] = 23, + [137551] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4496), 1, - anon_sym_LPAREN2, - ACTIONS(5242), 1, - anon_sym_LBRACK, - ACTIONS(5246), 1, - anon_sym_DOT, - ACTIONS(5248), 1, - anon_sym_DASH_GT, - ACTIONS(5939), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5947), 1, + ACTIONS(5053), 11, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(5949), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5951), 1, - anon_sym_AMP_AMP, - ACTIONS(5953), 1, anon_sym_PIPE, - ACTIONS(5955), 1, - anon_sym_CARET, - ACTIONS(5957), 1, anon_sym_AMP, - ACTIONS(5963), 1, - anon_sym_LT_LT, - ACTIONS(5965), 1, - anon_sym_GT_GT, - ACTIONS(5967), 1, - anon_sym_QMARK, - ACTIONS(5969), 1, - anon_sym_LT_EQ_GT, - STATE(3005), 1, - sym_argument_list, - ACTIONS(5943), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5945), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5959), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5971), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6092), 2, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(5961), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [111353] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(105), 1, - sym_auto, - ACTIONS(107), 1, - anon_sym_decltype, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(2809), 1, - sym_primitive_type, - ACTIONS(3365), 1, - sym_identifier, - ACTIONS(3377), 1, - anon_sym_COLON_COLON, - ACTIONS(5361), 1, - anon_sym_class, - ACTIONS(5363), 1, - anon_sym_struct, - ACTIONS(5365), 1, - anon_sym_union, - ACTIONS(5373), 1, - anon_sym_enum, - ACTIONS(5375), 1, - anon_sym_typename, - STATE(2976), 1, - sym_template_type, - STATE(3044), 1, - sym__type_specifier, - STATE(3123), 1, - sym_decltype_auto, - STATE(3184), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3198), 1, - sym_qualified_type_identifier, - STATE(5144), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - ACTIONS(3009), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3139), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [111427] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5518), 1, - anon_sym_const, - ACTIONS(5708), 1, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5051), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(5710), 1, anon_sym_STAR, - ACTIONS(5712), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(5714), 1, - anon_sym_AMP, - ACTIONS(5716), 1, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym_LBRACK, - STATE(3711), 1, - sym_parameter_list, - STATE(4846), 1, - sym__abstract_declarator, - STATE(4165), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4735), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5610), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(4695), 8, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - anon_sym_requires, - [111485] = 8, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [137594] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4496), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(5242), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(5246), 1, + ACTIONS(5341), 1, anon_sym_DOT, - ACTIONS(5248), 1, + ACTIONS(5343), 1, anon_sym_DASH_GT, - STATE(3005), 1, + STATE(2487), 1, sym_argument_list, - ACTIONS(4902), 10, + ACTIONS(5005), 8, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - ACTIONS(4900), 15, + ACTIONS(5003), 22, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -299761,140 +333585,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_GT2, - [111533] = 23, + [137647] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5750), 1, + ACTIONS(5792), 1, anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(5808), 1, anon_sym_AMP, - ACTIONS(5764), 1, + ACTIONS(5814), 1, anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, anon_sym_QMARK, - STATE(2534), 1, + ACTIONS(6350), 1, + anon_sym_SEMI, + STATE(2487), 1, sym_argument_list, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5748), 2, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, + ACTIONS(5794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6004), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(5762), 3, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [111611] = 24, + [137734] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(5341), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(5343), 1, anon_sym_DASH_GT, - ACTIONS(5750), 1, + ACTIONS(6258), 1, anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, - anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(5925), 1, - anon_sym_COMMA, - ACTIONS(6094), 1, - anon_sym_SEMI, - STATE(2534), 1, + STATE(2487), 1, sym_argument_list, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, + ACTIONS(6254), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5748), 2, + ACTIONS(6256), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, + ACTIONS(6276), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5762), 3, + ACTIONS(4936), 5, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [111691] = 9, + ACTIONS(4934), 16, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [137797] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4496), 1, - anon_sym_LPAREN2, - ACTIONS(5242), 1, - anon_sym_LBRACK, - ACTIONS(5246), 1, - anon_sym_DOT, - ACTIONS(5248), 1, - anon_sym_DASH_GT, - STATE(3005), 1, - sym_argument_list, - ACTIONS(5971), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4890), 10, + ACTIONS(4807), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -299905,9 +333725,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_GT_GT, - ACTIONS(4888), 13, + anon_sym_DOT, + ACTIONS(4809), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -299916,66 +333738,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_LT, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, anon_sym_GT2, - [111741] = 21, + [137840] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1491), 1, - sym_auto, - ACTIONS(1493), 1, - anon_sym_decltype, - ACTIONS(5202), 1, - sym_primitive_type, - ACTIONS(5770), 1, - sym_identifier, - ACTIONS(5772), 1, - anon_sym_COLON_COLON, - ACTIONS(5774), 1, - anon_sym_enum, - ACTIONS(5776), 1, - anon_sym_class, - ACTIONS(5778), 1, - anon_sym_struct, - ACTIONS(5780), 1, - anon_sym_union, - ACTIONS(5782), 1, - anon_sym_typename, - STATE(2075), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2323), 1, - sym_template_type, - STATE(2485), 1, - sym_qualified_type_identifier, - STATE(2494), 1, - sym_decltype_auto, - STATE(3233), 1, - sym__type_specifier, - STATE(5152), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - ACTIONS(1479), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2346), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [111815] = 3, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, + anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, + anon_sym_PIPE, + ACTIONS(5808), 1, + anon_sym_AMP, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(6352), 1, + anon_sym_RPAREN, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [137927] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, + anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, + anon_sym_PIPE, + ACTIONS(5808), 1, + anon_sym_AMP, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(6354), 1, + anon_sym_SEMI, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [138014] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3882), 11, + ACTIONS(5061), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -299987,7 +333890,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(3884), 19, + ACTIONS(5059), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -300002,232 +333905,262 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, anon_sym_GT2, - anon_sym_requires, - [111853] = 21, + [138057] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4496), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(5242), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(5246), 1, + ACTIONS(5341), 1, anon_sym_DOT, - ACTIONS(5248), 1, + ACTIONS(5343), 1, anon_sym_DASH_GT, - ACTIONS(5947), 1, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6258), 1, anon_sym_SLASH, - ACTIONS(5949), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5951), 1, - anon_sym_AMP_AMP, - ACTIONS(5953), 1, + ACTIONS(6264), 1, anon_sym_PIPE, - ACTIONS(5955), 1, - anon_sym_CARET, - ACTIONS(5957), 1, + ACTIONS(6268), 1, anon_sym_AMP, - ACTIONS(5963), 1, - anon_sym_LT_LT, - ACTIONS(5965), 1, - anon_sym_GT_GT, - ACTIONS(5969), 1, + ACTIONS(6274), 1, + anon_sym_GT_EQ, + ACTIONS(6280), 1, + anon_sym_QMARK, + ACTIONS(6282), 1, anon_sym_LT_EQ_GT, - STATE(3005), 1, + ACTIONS(6284), 1, + anon_sym_bitor, + ACTIONS(6286), 1, + anon_sym_bitand, + ACTIONS(6356), 1, + anon_sym_COLON, + STATE(2487), 1, sym_argument_list, - ACTIONS(5943), 2, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6254), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5945), 2, + ACTIONS(6256), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5959), 2, + ACTIONS(6260), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6262), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6266), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6276), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6270), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5971), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5052), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_GT2, - ACTIONS(5961), 4, + anon_sym_not_eq, + ACTIONS(6272), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [111927] = 23, + [138144] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6014), 1, + ACTIONS(5792), 1, anon_sym_SLASH, - ACTIONS(6016), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6018), 1, - anon_sym_AMP_AMP, - ACTIONS(6020), 1, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, - ACTIONS(6022), 1, - anon_sym_CARET, - ACTIONS(6024), 1, + ACTIONS(5808), 1, anon_sym_AMP, - ACTIONS(6030), 1, + ACTIONS(5814), 1, anon_sym_GT_EQ, - ACTIONS(6036), 1, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, anon_sym_QMARK, - ACTIONS(6038), 1, - anon_sym_LT_EQ_GT, - STATE(2534), 1, + ACTIONS(6358), 1, + anon_sym_SEMI, + STATE(2487), 1, sym_argument_list, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6010), 2, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6012), 2, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6026), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6032), 2, + ACTIONS(5794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6096), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(6028), 3, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [112005] = 21, + [138231] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1491), 1, - sym_auto, - ACTIONS(1493), 1, - anon_sym_decltype, - ACTIONS(5202), 1, - sym_primitive_type, - ACTIONS(5770), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(6316), 1, + anon_sym_LPAREN2, + ACTIONS(6326), 1, sym_identifier, - ACTIONS(5772), 1, - anon_sym_COLON_COLON, - ACTIONS(5774), 1, - anon_sym_enum, - ACTIONS(5776), 1, - anon_sym_class, - ACTIONS(5778), 1, - anon_sym_struct, - ACTIONS(5780), 1, - anon_sym_union, - ACTIONS(5782), 1, - anon_sym_typename, - STATE(2075), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2323), 1, - sym_template_type, - STATE(2485), 1, - sym_qualified_type_identifier, - STATE(2494), 1, - sym_decltype_auto, - STATE(3246), 1, - sym__type_specifier, - STATE(5152), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - ACTIONS(1479), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2346), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [112079] = 24, + ACTIONS(6328), 1, + anon_sym_STAR, + ACTIONS(6330), 1, + anon_sym_AMP_AMP, + ACTIONS(6332), 1, + anon_sym_AMP, + STATE(4398), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5360), 1, + sym__field_declarator, + STATE(6785), 1, + sym_ms_based_modifier, + ACTIONS(2963), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3937), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4265), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2961), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2965), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5185), 8, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + sym_reference_field_declarator, + sym_template_method, + sym_operator_name, + [138302] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5750), 1, + ACTIONS(5792), 1, anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(5808), 1, anon_sym_AMP, - ACTIONS(5764), 1, + ACTIONS(5814), 1, anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, anon_sym_QMARK, - ACTIONS(5925), 1, - anon_sym_COMMA, - ACTIONS(6098), 1, + ACTIONS(6360), 1, anon_sym_RPAREN, - STATE(2534), 1, + STATE(2487), 1, sym_argument_list, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5748), 2, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, + ACTIONS(5794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5762), 3, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [112159] = 3, + [138389] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2287), 11, + ACTIONS(6362), 1, + anon_sym_AMP_AMP, + ACTIONS(4985), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -300239,14 +334172,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(2289), 19, + ACTIONS(4983), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -300254,317 +334186,368 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, anon_sym_GT2, - anon_sym_requires, - [112197] = 24, + [138434] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5750), 1, + ACTIONS(5792), 1, anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(5808), 1, anon_sym_AMP, - ACTIONS(5764), 1, + ACTIONS(5814), 1, anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, anon_sym_QMARK, - ACTIONS(5925), 1, - anon_sym_COMMA, - ACTIONS(6100), 1, - anon_sym_SEMI, - STATE(2534), 1, + ACTIONS(6364), 1, + anon_sym_RPAREN, + STATE(2487), 1, sym_argument_list, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5748), 2, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, + ACTIONS(5794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5762), 3, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [112277] = 24, + [138521] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5750), 1, + ACTIONS(5792), 1, anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(5808), 1, anon_sym_AMP, - ACTIONS(5764), 1, + ACTIONS(5814), 1, anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, anon_sym_QMARK, - ACTIONS(5925), 1, - anon_sym_COMMA, - ACTIONS(6102), 1, + ACTIONS(6366), 1, anon_sym_SEMI, - STATE(2534), 1, + STATE(2487), 1, sym_argument_list, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5748), 2, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, + ACTIONS(5794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5762), 3, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [112357] = 24, + [138608] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(3697), 1, + anon_sym_RBRACK, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5750), 1, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5886), 1, anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, + ACTIONS(5892), 1, anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(5896), 1, anon_sym_AMP, - ACTIONS(5764), 1, + ACTIONS(5902), 1, anon_sym_GT_EQ, - ACTIONS(5768), 1, + ACTIONS(5908), 1, + anon_sym_QMARK, + ACTIONS(5910), 1, anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, + ACTIONS(5912), 1, + anon_sym_bitor, + ACTIONS(5914), 1, + anon_sym_bitand, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5882), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5884), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5888), 2, anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, + anon_sym_or, + ACTIONS(5890), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5894), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5904), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5898), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5900), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [138695] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, + anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, + ACTIONS(5804), 1, + anon_sym_PIPE, + ACTIONS(5808), 1, + anon_sym_AMP, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, anon_sym_QMARK, - ACTIONS(5925), 1, - anon_sym_COMMA, - ACTIONS(6104), 1, + ACTIONS(6368), 1, anon_sym_RPAREN, - STATE(2534), 1, + STATE(2487), 1, sym_argument_list, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5748), 2, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, + ACTIONS(5794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5762), 3, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [112437] = 3, + [138782] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2302), 11, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(5341), 1, + anon_sym_DOT, + ACTIONS(5343), 1, + anon_sym_DASH_GT, + ACTIONS(6258), 1, + anon_sym_SLASH, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6254), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(6256), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(4936), 5, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(2304), 19, + ACTIONS(4934), 18, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_LBRACK, + anon_sym_GT_GT, + anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_requires, - [112475] = 24, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [138843] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(5341), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(5343), 1, anon_sym_DASH_GT, - ACTIONS(5750), 1, + ACTIONS(6258), 1, anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, - anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, + ACTIONS(6282), 1, anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(5925), 1, - anon_sym_COMMA, - ACTIONS(6106), 1, - anon_sym_SEMI, - STATE(2534), 1, + STATE(2487), 1, sym_argument_list, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, + ACTIONS(6254), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5748), 2, + ACTIONS(6256), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, + ACTIONS(6276), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5762), 3, + ACTIONS(4936), 5, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [112555] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(3930), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5649), 1, - anon_sym___attribute__, - ACTIONS(5698), 1, - anon_sym___declspec, - ACTIONS(5704), 1, - anon_sym_virtual, - ACTIONS(5301), 2, - anon_sym_AMP, - anon_sym_LBRACK, - ACTIONS(5303), 3, - anon_sym_LPAREN2, - anon_sym_STAR, + ACTIONS(4934), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(5696), 5, - anon_sym_extern, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - ACTIONS(5651), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(3735), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual_function_specifier, - aux_sym__declaration_specifiers_repeat1, - [112609] = 3, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [138908] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3918), 11, + ACTIONS(3414), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -300576,7 +334559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(3920), 19, + ACTIONS(3419), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -300591,1487 +334574,1746 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, anon_sym_GT2, + [138951] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(4014), 1, + sym_enumerator_list, + ACTIONS(4267), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4269), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, anon_sym_requires, - [112647] = 24, + [138996] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4813), 1, - anon_sym_RPAREN, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(5341), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(5343), 1, anon_sym_DASH_GT, - ACTIONS(5750), 1, + ACTIONS(6258), 1, anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, - anon_sym_AMP, - ACTIONS(5764), 1, + ACTIONS(6274), 1, anon_sym_GT_EQ, - ACTIONS(5768), 1, + ACTIONS(6282), 1, anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(5925), 1, - anon_sym_COMMA, - STATE(2534), 1, + STATE(2487), 1, sym_argument_list, - ACTIONS(5724), 2, + ACTIONS(4936), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, + ACTIONS(6254), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5748), 2, + ACTIONS(6256), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, + ACTIONS(6276), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5762), 3, + ACTIONS(6272), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [112727] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1531), 1, - sym_primitive_type, - ACTIONS(1533), 1, - anon_sym_enum, - ACTIONS(1535), 1, - anon_sym_class, - ACTIONS(1537), 1, - anon_sym_struct, - ACTIONS(1539), 1, - anon_sym_union, - ACTIONS(1541), 1, - sym_auto, - ACTIONS(1543), 1, - anon_sym_decltype, - ACTIONS(1547), 1, - anon_sym_typename, - ACTIONS(3365), 1, - sym_identifier, - ACTIONS(4060), 1, - anon_sym_COLON_COLON, - STATE(2976), 1, - sym_template_type, - STATE(3286), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3324), 1, - sym__type_specifier, - STATE(3366), 1, - sym_decltype_auto, - STATE(3400), 1, - sym_qualified_type_identifier, - STATE(5072), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - ACTIONS(1529), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3371), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [112801] = 21, + ACTIONS(4934), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [139065] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4496), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(5242), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(5246), 1, + ACTIONS(5341), 1, anon_sym_DOT, - ACTIONS(5248), 1, + ACTIONS(5343), 1, anon_sym_DASH_GT, - ACTIONS(5947), 1, + ACTIONS(6258), 1, anon_sym_SLASH, - ACTIONS(5949), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5951), 1, - anon_sym_AMP_AMP, - ACTIONS(5953), 1, - anon_sym_PIPE, - ACTIONS(5955), 1, - anon_sym_CARET, - ACTIONS(5957), 1, - anon_sym_AMP, - ACTIONS(5963), 1, - anon_sym_LT_LT, - ACTIONS(5965), 1, - anon_sym_GT_GT, - ACTIONS(5969), 1, + ACTIONS(6274), 1, + anon_sym_GT_EQ, + ACTIONS(6282), 1, anon_sym_LT_EQ_GT, - STATE(3005), 1, + STATE(2487), 1, sym_argument_list, - ACTIONS(5943), 2, + ACTIONS(4936), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6254), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5945), 2, + ACTIONS(6256), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5959), 2, + ACTIONS(6276), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6270), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5971), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4916), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_GT2, - ACTIONS(5961), 4, + anon_sym_not_eq, + ACTIONS(6272), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [112875] = 24, + ACTIONS(4934), 11, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + [139136] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5750), 1, + ACTIONS(5792), 1, anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(5808), 1, anon_sym_AMP, - ACTIONS(5764), 1, + ACTIONS(5814), 1, anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, anon_sym_QMARK, - ACTIONS(5925), 1, - anon_sym_COMMA, - ACTIONS(6108), 1, + ACTIONS(6370), 1, anon_sym_RPAREN, - STATE(2534), 1, + STATE(2487), 1, sym_argument_list, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5748), 2, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, + ACTIONS(5794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5762), 3, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [112955] = 11, + [139223] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4496), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(5242), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(5246), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(5248), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5947), 1, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5886), 1, anon_sym_SLASH, - STATE(3005), 1, + ACTIONS(5892), 1, + anon_sym_PIPE, + ACTIONS(5896), 1, + anon_sym_AMP, + ACTIONS(5902), 1, + anon_sym_GT_EQ, + ACTIONS(5908), 1, + anon_sym_QMARK, + ACTIONS(5910), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5912), 1, + anon_sym_bitor, + ACTIONS(5914), 1, + anon_sym_bitand, + ACTIONS(6372), 1, + anon_sym_RBRACK, + STATE(2487), 1, sym_argument_list, - ACTIONS(5945), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5971), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5026), 9, + ACTIONS(5882), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - ACTIONS(5024), 11, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(5884), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5888), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5890), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5894), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(5904), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5898), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_GT2, - [113009] = 13, + anon_sym_not_eq, + ACTIONS(5900), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [139310] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(5518), 1, - anon_sym_const, - ACTIONS(5708), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(5710), 1, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, + anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, + anon_sym_PIPE, + ACTIONS(5808), 1, + anon_sym_AMP, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(6374), 1, + anon_sym_RPAREN, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, anon_sym_STAR, - ACTIONS(5712), 1, + anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, anon_sym_AMP_AMP, - ACTIONS(5714), 1, - anon_sym_AMP, - ACTIONS(5716), 1, - anon_sym_LBRACK, - STATE(3711), 1, - sym_parameter_list, - STATE(4867), 1, - sym__abstract_declarator, - STATE(4165), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4735), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5610), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(6110), 8, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - anon_sym_requires, - [113067] = 9, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [139397] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4496), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(5242), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(5246), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(5248), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - STATE(3005), 1, + ACTIONS(5792), 1, + anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, + anon_sym_PIPE, + ACTIONS(5808), 1, + anon_sym_AMP, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(6376), 1, + anon_sym_RPAREN, + STATE(2487), 1, sym_argument_list, - ACTIONS(5971), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5026), 10, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - ACTIONS(5024), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_GT2, - [113117] = 24, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [139484] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5750), 1, + ACTIONS(5792), 1, anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(5808), 1, anon_sym_AMP, - ACTIONS(5764), 1, + ACTIONS(5814), 1, anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, anon_sym_QMARK, - ACTIONS(5925), 1, - anon_sym_COMMA, - ACTIONS(6112), 1, - anon_sym_SEMI, - STATE(2534), 1, + ACTIONS(6378), 1, + anon_sym_RPAREN, + STATE(2487), 1, sym_argument_list, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5748), 2, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, + ACTIONS(5794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5762), 3, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [113197] = 20, + [139571] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(4496), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(5242), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(5246), 1, + ACTIONS(4936), 1, + anon_sym_PIPE, + ACTIONS(5341), 1, anon_sym_DOT, - ACTIONS(5248), 1, + ACTIONS(5343), 1, anon_sym_DASH_GT, - ACTIONS(5947), 1, + ACTIONS(6258), 1, anon_sym_SLASH, - ACTIONS(5951), 1, - anon_sym_AMP_AMP, - ACTIONS(5953), 1, - anon_sym_PIPE, - ACTIONS(5955), 1, - anon_sym_CARET, - ACTIONS(5957), 1, + ACTIONS(6268), 1, anon_sym_AMP, - ACTIONS(5963), 1, - anon_sym_LT_LT, - ACTIONS(5965), 1, - anon_sym_GT_GT, - ACTIONS(5969), 1, + ACTIONS(6274), 1, + anon_sym_GT_EQ, + ACTIONS(6282), 1, anon_sym_LT_EQ_GT, - STATE(3005), 1, + ACTIONS(6286), 1, + anon_sym_bitand, + STATE(2487), 1, sym_argument_list, - ACTIONS(5943), 2, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6254), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5945), 2, + ACTIONS(6256), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5959), 2, + ACTIONS(6276), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6270), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5971), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5961), 4, + anon_sym_not_eq, + ACTIONS(6272), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(5024), 5, + ACTIONS(4934), 10, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_COLON, anon_sym_QMARK, - anon_sym_GT2, - [113269] = 23, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + [139646] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5750), 1, + ACTIONS(5792), 1, anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(5808), 1, anon_sym_AMP, - ACTIONS(5764), 1, + ACTIONS(5814), 1, anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, anon_sym_QMARK, - STATE(2534), 1, + ACTIONS(6380), 1, + anon_sym_SEMI, + STATE(2487), 1, sym_argument_list, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5748), 2, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5760), 2, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5766), 2, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [139733] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4936), 1, + anon_sym_PIPE, + ACTIONS(5341), 1, + anon_sym_DOT, + ACTIONS(5343), 1, + anon_sym_DASH_GT, + ACTIONS(6258), 1, + anon_sym_SLASH, + ACTIONS(6268), 1, + anon_sym_AMP, + ACTIONS(6274), 1, + anon_sym_GT_EQ, + ACTIONS(6282), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6286), 1, + anon_sym_bitand, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6254), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6256), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6266), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6276), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6114), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(5762), 3, + ACTIONS(6270), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6272), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [113347] = 23, + ACTIONS(4934), 8, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + [139810] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4496), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(5242), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(5246), 1, + ACTIONS(5341), 1, anon_sym_DOT, - ACTIONS(5248), 1, + ACTIONS(5343), 1, anon_sym_DASH_GT, - ACTIONS(5939), 1, + ACTIONS(5798), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5947), 1, + ACTIONS(6258), 1, anon_sym_SLASH, - ACTIONS(5949), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5951), 1, - anon_sym_AMP_AMP, - ACTIONS(5953), 1, + ACTIONS(6264), 1, anon_sym_PIPE, - ACTIONS(5955), 1, - anon_sym_CARET, - ACTIONS(5957), 1, + ACTIONS(6268), 1, anon_sym_AMP, - ACTIONS(5963), 1, - anon_sym_LT_LT, - ACTIONS(5965), 1, - anon_sym_GT_GT, - ACTIONS(5967), 1, + ACTIONS(6274), 1, + anon_sym_GT_EQ, + ACTIONS(6280), 1, anon_sym_QMARK, - ACTIONS(5969), 1, + ACTIONS(6282), 1, anon_sym_LT_EQ_GT, - STATE(3005), 1, + ACTIONS(6284), 1, + anon_sym_bitor, + ACTIONS(6286), 1, + anon_sym_bitand, + ACTIONS(6382), 1, + anon_sym_COLON, + STATE(2487), 1, sym_argument_list, - ACTIONS(5943), 2, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6254), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5945), 2, + ACTIONS(6256), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5959), 2, + ACTIONS(6260), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6262), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6266), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6276), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6270), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5971), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6116), 2, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(5961), 4, + anon_sym_not_eq, + ACTIONS(6272), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [113425] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1491), 1, - sym_auto, - ACTIONS(1493), 1, - anon_sym_decltype, - ACTIONS(5202), 1, - sym_primitive_type, - ACTIONS(5770), 1, - sym_identifier, - ACTIONS(5772), 1, - anon_sym_COLON_COLON, - ACTIONS(5774), 1, - anon_sym_enum, - ACTIONS(5776), 1, - anon_sym_class, - ACTIONS(5778), 1, - anon_sym_struct, - ACTIONS(5780), 1, - anon_sym_union, - ACTIONS(5782), 1, - anon_sym_typename, - STATE(2075), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2308), 1, - sym__type_specifier, - STATE(2323), 1, - sym_template_type, - STATE(2485), 1, - sym_qualified_type_identifier, - STATE(2494), 1, - sym_decltype_auto, - STATE(5152), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - ACTIONS(1479), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2346), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [113499] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(105), 1, - sym_auto, - ACTIONS(107), 1, - anon_sym_decltype, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(2809), 1, - sym_primitive_type, - ACTIONS(3365), 1, - sym_identifier, - ACTIONS(3377), 1, - anon_sym_COLON_COLON, - ACTIONS(5359), 1, - anon_sym_enum, - ACTIONS(5361), 1, - anon_sym_class, - ACTIONS(5363), 1, - anon_sym_struct, - ACTIONS(5365), 1, - anon_sym_union, - ACTIONS(5367), 1, - anon_sym_typename, - STATE(2976), 1, - sym_template_type, - STATE(3123), 1, - sym_decltype_auto, - STATE(3184), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3198), 1, - sym_qualified_type_identifier, - STATE(5144), 1, - sym__scope_resolution, - STATE(5244), 1, - sym__type_specifier, - STATE(6663), 1, - sym_dependent_type_identifier, - ACTIONS(3009), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3139), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [113573] = 24, + [139897] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(5341), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(5343), 1, anon_sym_DASH_GT, - ACTIONS(5750), 1, + ACTIONS(6258), 1, anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, + ACTIONS(6264), 1, anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(6268), 1, anon_sym_AMP, - ACTIONS(5764), 1, + ACTIONS(6274), 1, anon_sym_GT_EQ, - ACTIONS(5768), 1, + ACTIONS(6282), 1, anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(5925), 1, - anon_sym_COMMA, - ACTIONS(6118), 1, - anon_sym_SEMI, - STATE(2534), 1, + ACTIONS(6284), 1, + anon_sym_bitor, + ACTIONS(6286), 1, + anon_sym_bitand, + STATE(2487), 1, sym_argument_list, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, + ACTIONS(6254), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5748), 2, + ACTIONS(6256), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, + ACTIONS(6266), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6276), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5762), 3, + ACTIONS(6270), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6272), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [113653] = 19, + ACTIONS(4934), 7, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + [139976] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(4496), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(5242), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(5246), 1, + ACTIONS(5341), 1, anon_sym_DOT, - ACTIONS(5248), 1, + ACTIONS(5343), 1, anon_sym_DASH_GT, - ACTIONS(5947), 1, + ACTIONS(6258), 1, anon_sym_SLASH, - ACTIONS(5953), 1, + ACTIONS(6264), 1, anon_sym_PIPE, - ACTIONS(5955), 1, - anon_sym_CARET, - ACTIONS(5957), 1, + ACTIONS(6268), 1, anon_sym_AMP, - ACTIONS(5963), 1, - anon_sym_LT_LT, - ACTIONS(5965), 1, - anon_sym_GT_GT, - ACTIONS(5969), 1, + ACTIONS(6274), 1, + anon_sym_GT_EQ, + ACTIONS(6282), 1, anon_sym_LT_EQ_GT, - STATE(3005), 1, + ACTIONS(6284), 1, + anon_sym_bitor, + ACTIONS(6286), 1, + anon_sym_bitand, + STATE(2487), 1, sym_argument_list, - ACTIONS(5943), 2, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6254), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5945), 2, + ACTIONS(6256), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5959), 2, + ACTIONS(6262), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6266), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6276), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6270), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5971), 2, + anon_sym_not_eq, + ACTIONS(6272), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(4934), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_or, + [140057] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(5341), 1, + anon_sym_DOT, + ACTIONS(5343), 1, + anon_sym_DASH_GT, + ACTIONS(6258), 1, + anon_sym_SLASH, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5961), 4, + ACTIONS(6256), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(4936), 7, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(5024), 6, + ACTIONS(4934), 18, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, anon_sym_QMARK, - anon_sym_GT2, - [113723] = 24, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [140116] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5750), 1, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5886), 1, anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, + ACTIONS(5892), 1, anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(5896), 1, anon_sym_AMP, - ACTIONS(5764), 1, + ACTIONS(5902), 1, anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, + ACTIONS(5908), 1, anon_sym_QMARK, - ACTIONS(5925), 1, - anon_sym_COMMA, - ACTIONS(6120), 1, - anon_sym_RPAREN, - STATE(2534), 1, + ACTIONS(5910), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5912), 1, + anon_sym_bitor, + ACTIONS(5914), 1, + anon_sym_bitand, + ACTIONS(6384), 1, + anon_sym_RBRACK, + STATE(2487), 1, sym_argument_list, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, + ACTIONS(5882), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5748), 2, + ACTIONS(5884), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, + ACTIONS(5888), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5890), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5894), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5904), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5762), 3, + ACTIONS(5898), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5900), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [113803] = 19, + [140203] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4496), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(5026), 1, - anon_sym_PIPE, - ACTIONS(5242), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(5246), 1, + ACTIONS(5341), 1, anon_sym_DOT, - ACTIONS(5248), 1, + ACTIONS(5343), 1, anon_sym_DASH_GT, - ACTIONS(5947), 1, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5023), 8, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(5955), 1, - anon_sym_CARET, - ACTIONS(5957), 1, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(5963), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(5021), 22, + anon_sym_DOT_DOT_DOT, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, - ACTIONS(5965), 1, anon_sym_GT_GT, - ACTIONS(5969), 1, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [140256] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3775), 1, + anon_sym_RBRACK, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5886), 1, + anon_sym_SLASH, + ACTIONS(5892), 1, + anon_sym_PIPE, + ACTIONS(5896), 1, + anon_sym_AMP, + ACTIONS(5902), 1, + anon_sym_GT_EQ, + ACTIONS(5908), 1, + anon_sym_QMARK, + ACTIONS(5910), 1, anon_sym_LT_EQ_GT, - STATE(3005), 1, + ACTIONS(5912), 1, + anon_sym_bitor, + ACTIONS(5914), 1, + anon_sym_bitand, + STATE(2487), 1, sym_argument_list, - ACTIONS(5943), 2, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5882), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5945), 2, + ACTIONS(5884), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5959), 2, + ACTIONS(5888), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5890), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5894), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5904), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5898), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5971), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5961), 4, + anon_sym_not_eq, + ACTIONS(5900), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [140343] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6362), 1, + anon_sym_AMP_AMP, + ACTIONS(6386), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5027), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(5024), 6, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5025), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, anon_sym_GT2, - [113873] = 24, + [140390] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5750), 1, + ACTIONS(5792), 1, anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(5808), 1, anon_sym_AMP, - ACTIONS(5764), 1, + ACTIONS(5814), 1, anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, anon_sym_QMARK, - ACTIONS(5925), 1, - anon_sym_COMMA, - ACTIONS(6122), 1, + ACTIONS(6388), 1, anon_sym_RPAREN, - STATE(2534), 1, + STATE(2487), 1, sym_argument_list, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5748), 2, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, + ACTIONS(5794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5762), 3, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [113953] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4295), 1, - anon_sym_COLON_COLON, - ACTIONS(4368), 5, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, - ACTIONS(4370), 24, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_virtual, - anon_sym_template, - anon_sym_operator, - [113993] = 24, + [140477] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5750), 1, + ACTIONS(5792), 1, anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(5808), 1, anon_sym_AMP, - ACTIONS(5764), 1, + ACTIONS(5814), 1, anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, anon_sym_QMARK, - ACTIONS(5925), 1, - anon_sym_COMMA, - ACTIONS(6124), 1, + ACTIONS(6390), 1, anon_sym_SEMI, - STATE(2534), 1, + STATE(2487), 1, sym_argument_list, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5748), 2, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, + ACTIONS(5794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5762), 3, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [114073] = 18, + [140564] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4496), 1, - anon_sym_LPAREN2, - ACTIONS(5026), 1, - anon_sym_PIPE, - ACTIONS(5242), 1, - anon_sym_LBRACK, - ACTIONS(5246), 1, - anon_sym_DOT, - ACTIONS(5248), 1, - anon_sym_DASH_GT, - ACTIONS(5947), 1, - anon_sym_SLASH, - ACTIONS(5957), 1, - anon_sym_AMP, - ACTIONS(5963), 1, - anon_sym_LT_LT, - ACTIONS(5965), 1, - anon_sym_GT_GT, - ACTIONS(5969), 1, - anon_sym_LT_EQ_GT, - STATE(3005), 1, - sym_argument_list, - ACTIONS(5943), 2, + ACTIONS(4969), 11, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5945), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5959), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5971), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5961), 4, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(5024), 7, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4967), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, anon_sym_GT2, - [114141] = 22, + [140607] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4496), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(5242), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(5246), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(5248), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5939), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5947), 1, + ACTIONS(5792), 1, anon_sym_SLASH, - ACTIONS(5949), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5951), 1, - anon_sym_AMP_AMP, - ACTIONS(5953), 1, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, - ACTIONS(5955), 1, - anon_sym_CARET, - ACTIONS(5957), 1, + ACTIONS(5808), 1, anon_sym_AMP, - ACTIONS(5963), 1, - anon_sym_LT_LT, - ACTIONS(5965), 1, - anon_sym_GT_GT, - ACTIONS(5969), 1, - anon_sym_LT_EQ_GT, - STATE(3005), 1, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(6392), 1, + anon_sym_SEMI, + STATE(2487), 1, sym_argument_list, - ACTIONS(5943), 2, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5945), 2, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5959), 2, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5971), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4996), 3, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_GT2, - ACTIONS(5961), 4, + anon_sym_not_eq, + ACTIONS(5812), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [114217] = 23, + [140694] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4496), 1, - anon_sym_LPAREN2, - ACTIONS(5242), 1, - anon_sym_LBRACK, - ACTIONS(5246), 1, + ACTIONS(5009), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5248), 1, - anon_sym_DASH_GT, - ACTIONS(5939), 1, + ACTIONS(5007), 24, anon_sym_DOT_DOT_DOT, - ACTIONS(5947), 1, - anon_sym_SLASH, - ACTIONS(5949), 1, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, - ACTIONS(5951), 1, anon_sym_AMP_AMP, - ACTIONS(5953), 1, - anon_sym_PIPE, - ACTIONS(5955), 1, anon_sym_CARET, - ACTIONS(5957), 1, - anon_sym_AMP, - ACTIONS(5963), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_LT, - ACTIONS(5965), 1, - anon_sym_GT_GT, - ACTIONS(5967), 1, + anon_sym_LBRACK, anon_sym_QMARK, - ACTIONS(5969), 1, anon_sym_LT_EQ_GT, - STATE(3005), 1, - sym_argument_list, - ACTIONS(5943), 2, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [140737] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5013), 11, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5945), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5011), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5959), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5971), 2, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6126), 2, - anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_GT2, - ACTIONS(5961), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [114295] = 24, + [140780] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5750), 1, + ACTIONS(5792), 1, anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(5808), 1, anon_sym_AMP, - ACTIONS(5764), 1, + ACTIONS(5814), 1, anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, anon_sym_QMARK, - ACTIONS(5925), 1, - anon_sym_COMMA, - ACTIONS(6128), 1, + ACTIONS(6394), 1, anon_sym_SEMI, - STATE(2534), 1, + STATE(2487), 1, sym_argument_list, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5748), 2, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, + ACTIONS(5794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5762), 3, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [114375] = 24, + [140867] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4817), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4819), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(4892), 1, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym_LBRACK, - ACTIONS(4896), 1, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [140910] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(5341), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(5343), 1, anon_sym_DASH_GT, - ACTIONS(5750), 1, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6258), 1, anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, + ACTIONS(6264), 1, anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(6268), 1, anon_sym_AMP, - ACTIONS(5764), 1, + ACTIONS(6274), 1, anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, + ACTIONS(6280), 1, anon_sym_QMARK, - ACTIONS(5925), 1, - anon_sym_COMMA, - ACTIONS(6130), 1, - anon_sym_RPAREN, - STATE(2534), 1, + ACTIONS(6282), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6284), 1, + anon_sym_bitor, + ACTIONS(6286), 1, + anon_sym_bitand, + ACTIONS(6396), 1, + anon_sym_COLON, + STATE(2487), 1, sym_argument_list, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, + ACTIONS(6254), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5748), 2, + ACTIONS(6256), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, + ACTIONS(6260), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6262), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6266), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6276), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5762), 3, + ACTIONS(6270), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6272), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [114455] = 24, + [140997] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5750), 1, + ACTIONS(5792), 1, anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(5808), 1, anon_sym_AMP, - ACTIONS(5764), 1, + ACTIONS(5814), 1, anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, anon_sym_QMARK, - ACTIONS(5925), 1, - anon_sym_COMMA, - ACTIONS(6132), 1, + ACTIONS(6398), 1, anon_sym_SEMI, - STATE(2534), 1, + STATE(2487), 1, sym_argument_list, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5748), 2, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, + ACTIONS(5794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5762), 3, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [114535] = 24, + [141084] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(3777), 1, + anon_sym_RBRACK, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5750), 1, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5886), 1, anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, + ACTIONS(5892), 1, anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(5896), 1, anon_sym_AMP, - ACTIONS(5764), 1, + ACTIONS(5902), 1, anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, + ACTIONS(5908), 1, anon_sym_QMARK, - ACTIONS(5925), 1, - anon_sym_COMMA, - ACTIONS(6134), 1, - anon_sym_SEMI, - STATE(2534), 1, + ACTIONS(5910), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5912), 1, + anon_sym_bitor, + ACTIONS(5914), 1, + anon_sym_bitand, + STATE(2487), 1, sym_argument_list, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, + ACTIONS(5882), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5748), 2, + ACTIONS(5884), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, + ACTIONS(5888), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5890), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5894), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5904), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5762), 3, + ACTIONS(5898), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5900), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [114615] = 24, + [141171] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(5341), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(5343), 1, anon_sym_DASH_GT, - ACTIONS(5750), 1, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6258), 1, anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, + ACTIONS(6264), 1, anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(6268), 1, anon_sym_AMP, - ACTIONS(5764), 1, + ACTIONS(6274), 1, anon_sym_GT_EQ, - ACTIONS(5768), 1, + ACTIONS(6282), 1, anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(6136), 1, - anon_sym_COMMA, - ACTIONS(6138), 1, - anon_sym_RPAREN, - STATE(2534), 1, + ACTIONS(6284), 1, + anon_sym_bitor, + ACTIONS(6286), 1, + anon_sym_bitand, + STATE(2487), 1, sym_argument_list, - ACTIONS(5724), 2, + ACTIONS(4944), 2, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, + ACTIONS(6254), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5748), 2, + ACTIONS(6256), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, + ACTIONS(6260), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6262), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6266), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6276), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5762), 3, + ACTIONS(6270), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6272), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [114695] = 3, + [141256] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4864), 11, + ACTIONS(4872), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -302083,7 +336325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4862), 19, + ACTIONS(4870), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -302098,1523 +336340,1823 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, anon_sym_GT2, - sym_literal_suffix, - [114733] = 15, + [141299] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4496), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(5242), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(5246), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(5248), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5947), 1, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5886), 1, anon_sym_SLASH, - ACTIONS(5963), 1, - anon_sym_LT_LT, - ACTIONS(5965), 1, - anon_sym_GT_GT, - ACTIONS(5969), 1, + ACTIONS(5892), 1, + anon_sym_PIPE, + ACTIONS(5896), 1, + anon_sym_AMP, + ACTIONS(5902), 1, + anon_sym_GT_EQ, + ACTIONS(5908), 1, + anon_sym_QMARK, + ACTIONS(5910), 1, anon_sym_LT_EQ_GT, - STATE(3005), 1, + ACTIONS(5912), 1, + anon_sym_bitor, + ACTIONS(5914), 1, + anon_sym_bitand, + ACTIONS(6400), 1, + anon_sym_RBRACK, + STATE(2487), 1, sym_argument_list, - ACTIONS(5943), 2, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5882), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5945), 2, + ACTIONS(5884), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5971), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4910), 6, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4904), 9, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(5888), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5890), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5894), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(5904), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5898), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK, - anon_sym_GT2, - [114795] = 24, + anon_sym_not_eq, + ACTIONS(5900), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [141386] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5750), 1, + ACTIONS(5792), 1, anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(5808), 1, anon_sym_AMP, - ACTIONS(5764), 1, + ACTIONS(5814), 1, anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, anon_sym_QMARK, - ACTIONS(5925), 1, - anon_sym_COMMA, - ACTIONS(6140), 1, - anon_sym_RPAREN, - STATE(2534), 1, + ACTIONS(6402), 1, + anon_sym_SEMI, + STATE(2487), 1, sym_argument_list, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5748), 2, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, + ACTIONS(5794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [114875] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3902), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(3904), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5800), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_requires, - [114913] = 17, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [141473] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4496), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(5242), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(5246), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(5248), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5947), 1, + ACTIONS(5792), 1, anon_sym_SLASH, - ACTIONS(5963), 1, - anon_sym_LT_LT, - ACTIONS(5965), 1, - anon_sym_GT_GT, - ACTIONS(5969), 1, + ACTIONS(5796), 1, anon_sym_LT_EQ_GT, - STATE(3005), 1, - sym_argument_list, - ACTIONS(5026), 2, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, + ACTIONS(5808), 1, anon_sym_AMP, - ACTIONS(5943), 2, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(6404), 1, + anon_sym_RPAREN, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5945), 2, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5959), 2, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5971), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5961), 4, + anon_sym_not_eq, + ACTIONS(5812), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(5024), 7, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_QMARK, - anon_sym_GT2, - [114979] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1491), 1, - sym_auto, - ACTIONS(1493), 1, - anon_sym_decltype, - ACTIONS(5202), 1, - sym_primitive_type, - ACTIONS(5770), 1, - sym_identifier, - ACTIONS(5772), 1, - anon_sym_COLON_COLON, - ACTIONS(5774), 1, - anon_sym_enum, - ACTIONS(5776), 1, - anon_sym_class, - ACTIONS(5778), 1, - anon_sym_struct, - ACTIONS(5780), 1, - anon_sym_union, - ACTIONS(5782), 1, - anon_sym_typename, - STATE(2075), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2323), 1, - sym_template_type, - STATE(2485), 1, - sym_qualified_type_identifier, - STATE(2494), 1, - sym_decltype_auto, - STATE(3221), 1, - sym__type_specifier, - STATE(5152), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - ACTIONS(1479), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2346), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [115053] = 21, + [141560] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(5341), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(5343), 1, anon_sym_DASH_GT, - ACTIONS(6014), 1, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6258), 1, anon_sym_SLASH, - ACTIONS(6016), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6018), 1, - anon_sym_AMP_AMP, - ACTIONS(6020), 1, + ACTIONS(6264), 1, anon_sym_PIPE, - ACTIONS(6022), 1, - anon_sym_CARET, - ACTIONS(6024), 1, + ACTIONS(6268), 1, anon_sym_AMP, - ACTIONS(6030), 1, + ACTIONS(6274), 1, anon_sym_GT_EQ, - ACTIONS(6038), 1, + ACTIONS(6280), 1, + anon_sym_QMARK, + ACTIONS(6282), 1, anon_sym_LT_EQ_GT, - STATE(2534), 1, + ACTIONS(6284), 1, + anon_sym_bitor, + ACTIONS(6286), 1, + anon_sym_bitand, + ACTIONS(6406), 1, + anon_sym_COLON, + STATE(2487), 1, sym_argument_list, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6010), 2, + ACTIONS(6254), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6012), 2, + ACTIONS(6256), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6026), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6032), 2, + ACTIONS(6260), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6262), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6266), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6276), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6028), 3, + ACTIONS(6270), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6272), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(4972), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_QMARK, - [115127] = 16, + [141647] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4496), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(5242), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(5246), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(5248), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5947), 1, + ACTIONS(5792), 1, anon_sym_SLASH, - ACTIONS(5963), 1, - anon_sym_LT_LT, - ACTIONS(5965), 1, - anon_sym_GT_GT, - ACTIONS(5969), 1, + ACTIONS(5796), 1, anon_sym_LT_EQ_GT, - STATE(3005), 1, - sym_argument_list, - ACTIONS(5026), 2, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, + ACTIONS(5808), 1, anon_sym_AMP, - ACTIONS(5943), 2, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(6408), 1, + anon_sym_SEMI, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5945), 2, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5971), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5961), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(5024), 9, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK, - anon_sym_GT2, - [115191] = 24, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [141734] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5750), 1, + ACTIONS(5792), 1, anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(5808), 1, anon_sym_AMP, - ACTIONS(5764), 1, + ACTIONS(5814), 1, anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, anon_sym_QMARK, - ACTIONS(5925), 1, - anon_sym_COMMA, - ACTIONS(6142), 1, - anon_sym_RPAREN, - STATE(2534), 1, + ACTIONS(6410), 1, + anon_sym_SEMI, + STATE(2487), 1, sym_argument_list, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5748), 2, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, + ACTIONS(5794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5762), 3, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [115271] = 24, + [141821] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5750), 1, + ACTIONS(5792), 1, anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(5808), 1, anon_sym_AMP, - ACTIONS(5764), 1, + ACTIONS(5814), 1, anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, anon_sym_QMARK, - ACTIONS(5925), 1, - anon_sym_COMMA, - ACTIONS(6144), 1, - anon_sym_RPAREN, - STATE(2534), 1, + ACTIONS(6412), 1, + anon_sym_SEMI, + STATE(2487), 1, sym_argument_list, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5748), 2, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, + ACTIONS(5794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5762), 3, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [115351] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1491), 1, - sym_auto, - ACTIONS(1493), 1, - anon_sym_decltype, - ACTIONS(5202), 1, - sym_primitive_type, - ACTIONS(5770), 1, - sym_identifier, - ACTIONS(5772), 1, - anon_sym_COLON_COLON, - ACTIONS(5774), 1, - anon_sym_enum, - ACTIONS(5776), 1, - anon_sym_class, - ACTIONS(5778), 1, - anon_sym_struct, - ACTIONS(5780), 1, - anon_sym_union, - ACTIONS(5782), 1, - anon_sym_typename, - STATE(2075), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2323), 1, - sym_template_type, - STATE(2485), 1, - sym_qualified_type_identifier, - STATE(2494), 1, - sym_decltype_auto, - STATE(3248), 1, - sym__type_specifier, - STATE(5152), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - ACTIONS(1479), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2346), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [115425] = 24, + [141908] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5750), 1, + ACTIONS(5792), 1, anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(5808), 1, anon_sym_AMP, - ACTIONS(5764), 1, + ACTIONS(5814), 1, anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, anon_sym_QMARK, - ACTIONS(5925), 1, - anon_sym_COMMA, - ACTIONS(6146), 1, - anon_sym_RPAREN, - STATE(2534), 1, + ACTIONS(6414), 1, + anon_sym_SEMI, + STATE(2487), 1, sym_argument_list, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5748), 2, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, + ACTIONS(5794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5762), 3, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [115505] = 24, + [141995] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5750), 1, + ACTIONS(5792), 1, anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(5808), 1, anon_sym_AMP, - ACTIONS(5764), 1, + ACTIONS(5814), 1, anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, anon_sym_QMARK, - ACTIONS(5925), 1, - anon_sym_COMMA, - ACTIONS(6148), 1, - anon_sym_RPAREN, - STATE(2534), 1, + ACTIONS(6416), 1, + anon_sym_SEMI, + STATE(2487), 1, sym_argument_list, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5748), 2, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, + ACTIONS(5794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5762), 3, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [115585] = 24, + [142082] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5750), 1, + ACTIONS(5792), 1, anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(5808), 1, anon_sym_AMP, - ACTIONS(5764), 1, + ACTIONS(5814), 1, anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, anon_sym_QMARK, - ACTIONS(5925), 1, - anon_sym_COMMA, - ACTIONS(6150), 1, - anon_sym_RPAREN, - STATE(2534), 1, + ACTIONS(6418), 1, + anon_sym_SEMI, + STATE(2487), 1, sym_argument_list, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5748), 2, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, + ACTIONS(5794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5762), 3, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [115665] = 24, + [142169] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(6316), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(6326), 1, + sym_identifier, + ACTIONS(6328), 1, + anon_sym_STAR, + ACTIONS(6330), 1, + anon_sym_AMP_AMP, + ACTIONS(6332), 1, + anon_sym_AMP, + STATE(4398), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5375), 1, + sym__field_declarator, + STATE(6785), 1, + sym_ms_based_modifier, + ACTIONS(2963), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3835), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4288), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2961), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2965), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5185), 8, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + sym_reference_field_declarator, + sym_template_method, + sym_operator_name, + [142240] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(5341), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(5343), 1, anon_sym_DASH_GT, - ACTIONS(5750), 1, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6258), 1, anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, + ACTIONS(6264), 1, anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(6268), 1, anon_sym_AMP, - ACTIONS(5764), 1, + ACTIONS(6274), 1, anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, + ACTIONS(6280), 1, anon_sym_QMARK, - ACTIONS(5925), 1, - anon_sym_COMMA, - ACTIONS(6152), 1, - anon_sym_RPAREN, - STATE(2534), 1, + ACTIONS(6282), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6284), 1, + anon_sym_bitor, + ACTIONS(6286), 1, + anon_sym_bitand, + ACTIONS(6420), 1, + anon_sym_COLON, + STATE(2487), 1, sym_argument_list, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, + ACTIONS(6254), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5748), 2, + ACTIONS(6256), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, + ACTIONS(6260), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6262), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6266), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6276), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5762), 3, + ACTIONS(6270), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6272), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [115745] = 15, + [142327] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4496), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(5242), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(5246), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(5248), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5947), 1, + ACTIONS(5792), 1, anon_sym_SLASH, - ACTIONS(5963), 1, - anon_sym_LT_LT, - ACTIONS(5965), 1, - anon_sym_GT_GT, - ACTIONS(5969), 1, + ACTIONS(5796), 1, anon_sym_LT_EQ_GT, - STATE(3005), 1, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, + anon_sym_PIPE, + ACTIONS(5808), 1, + anon_sym_AMP, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(6422), 1, + anon_sym_SEMI, + STATE(2487), 1, sym_argument_list, - ACTIONS(5943), 2, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5945), 2, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5971), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5026), 6, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(5024), 9, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK, - anon_sym_GT2, - [115807] = 24, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [142414] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(3695), 1, + anon_sym_RBRACK, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5750), 1, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5886), 1, anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, + ACTIONS(5892), 1, anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(5896), 1, anon_sym_AMP, - ACTIONS(5764), 1, + ACTIONS(5902), 1, anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, + ACTIONS(5908), 1, anon_sym_QMARK, - ACTIONS(5925), 1, - anon_sym_COMMA, - ACTIONS(6154), 1, - anon_sym_RPAREN, - STATE(2534), 1, + ACTIONS(5910), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5912), 1, + anon_sym_bitor, + ACTIONS(5914), 1, + anon_sym_bitand, + STATE(2487), 1, sym_argument_list, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, + ACTIONS(5882), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5748), 2, + ACTIONS(5884), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, + ACTIONS(5888), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5890), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5894), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5904), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5762), 3, + ACTIONS(5898), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5900), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [115887] = 24, + [142501] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5750), 1, + ACTIONS(5792), 1, anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(5808), 1, anon_sym_AMP, - ACTIONS(5764), 1, + ACTIONS(5814), 1, anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, anon_sym_QMARK, - ACTIONS(5925), 1, - anon_sym_COMMA, - ACTIONS(6156), 1, + ACTIONS(6424), 1, anon_sym_RPAREN, - STATE(2534), 1, + STATE(2487), 1, sym_argument_list, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5748), 2, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, + ACTIONS(5794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5762), 3, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [115967] = 12, + [142588] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4496), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(5242), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(5246), 1, + ACTIONS(5341), 1, anon_sym_DOT, - ACTIONS(5248), 1, + ACTIONS(5343), 1, anon_sym_DASH_GT, - ACTIONS(5947), 1, - anon_sym_SLASH, - STATE(3005), 1, + STATE(2487), 1, sym_argument_list, - ACTIONS(5943), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5945), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5971), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5026), 7, + ACTIONS(4936), 8, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - ACTIONS(5024), 11, + ACTIONS(4934), 20, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_GT2, - [116023] = 14, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [142643] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4496), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(5242), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(5246), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(5248), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5947), 1, + ACTIONS(5792), 1, anon_sym_SLASH, - ACTIONS(5963), 1, - anon_sym_LT_LT, - ACTIONS(5965), 1, - anon_sym_GT_GT, - STATE(3005), 1, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, + anon_sym_PIPE, + ACTIONS(5808), 1, + anon_sym_AMP, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(6426), 1, + anon_sym_SEMI, + STATE(2487), 1, sym_argument_list, - ACTIONS(5943), 2, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5945), 2, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5971), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5026), 6, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [142730] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, + anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, + ACTIONS(5808), 1, anon_sym_AMP, - anon_sym_GT, + ACTIONS(5814), 1, anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(6428), 1, + anon_sym_SEMI, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(5024), 10, + [142817] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3843), 1, + anon_sym_RBRACK, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5798), 1, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(5886), 1, + anon_sym_SLASH, + ACTIONS(5892), 1, + anon_sym_PIPE, + ACTIONS(5896), 1, + anon_sym_AMP, + ACTIONS(5902), 1, + anon_sym_GT_EQ, + ACTIONS(5908), 1, + anon_sym_QMARK, + ACTIONS(5910), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5912), 1, + anon_sym_bitor, + ACTIONS(5914), 1, + anon_sym_bitand, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5882), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5884), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5888), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5890), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5894), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(5904), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5898), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_GT2, - [116083] = 23, + anon_sym_not_eq, + ACTIONS(5900), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [142904] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(5341), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(5343), 1, anon_sym_DASH_GT, - ACTIONS(5750), 1, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6258), 1, anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, + ACTIONS(6264), 1, anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(6268), 1, anon_sym_AMP, - ACTIONS(5764), 1, + ACTIONS(6274), 1, anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, + ACTIONS(6280), 1, anon_sym_QMARK, - STATE(2534), 1, + ACTIONS(6282), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6284), 1, + anon_sym_bitor, + ACTIONS(6286), 1, + anon_sym_bitand, + ACTIONS(6430), 1, + anon_sym_COLON, + STATE(2487), 1, sym_argument_list, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, + ACTIONS(6254), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5748), 2, + ACTIONS(6256), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, + ACTIONS(6260), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6262), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6266), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6276), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6158), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(5762), 3, + ACTIONS(6270), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6272), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [116161] = 22, + [142991] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6014), 1, + ACTIONS(5792), 1, anon_sym_SLASH, - ACTIONS(6016), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6018), 1, - anon_sym_AMP_AMP, - ACTIONS(6020), 1, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, - ACTIONS(6022), 1, - anon_sym_CARET, - ACTIONS(6024), 1, + ACTIONS(5808), 1, anon_sym_AMP, - ACTIONS(6030), 1, + ACTIONS(5814), 1, anon_sym_GT_EQ, - ACTIONS(6038), 1, - anon_sym_LT_EQ_GT, - STATE(2534), 1, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(6432), 1, + anon_sym_SEMI, + STATE(2487), 1, sym_argument_list, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6010), 2, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6012), 2, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6026), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6032), 2, + ACTIONS(5794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4996), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_QMARK, - ACTIONS(6028), 3, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [116237] = 3, + [143078] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(4354), 9, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(5341), 1, + anon_sym_DOT, + ACTIONS(5343), 1, + anon_sym_DASH_GT, + ACTIONS(6258), 1, anon_sym_SLASH, + ACTIONS(6264), 1, anon_sym_PIPE, + ACTIONS(6268), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(4356), 21, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(6274), 1, + anon_sym_GT_EQ, + ACTIONS(6282), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6284), 1, + anon_sym_bitor, + ACTIONS(6286), 1, + anon_sym_bitand, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6254), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6256), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(6260), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6262), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6266), 2, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_xor, + ACTIONS(6276), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(5071), 3, + anon_sym_DOT_DOT_DOT, anon_sym_COLON, anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [116275] = 24, + ACTIONS(6270), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6272), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [143161] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(5341), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(5343), 1, anon_sym_DASH_GT, - ACTIONS(5750), 1, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6258), 1, anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, + ACTIONS(6264), 1, anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(6268), 1, anon_sym_AMP, - ACTIONS(5764), 1, + ACTIONS(6274), 1, anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, + ACTIONS(6280), 1, anon_sym_QMARK, - ACTIONS(5925), 1, - anon_sym_COMMA, - ACTIONS(6160), 1, - anon_sym_RPAREN, - STATE(2534), 1, + ACTIONS(6282), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6284), 1, + anon_sym_bitor, + ACTIONS(6286), 1, + anon_sym_bitand, + ACTIONS(6434), 1, + anon_sym_COLON, + STATE(2487), 1, sym_argument_list, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, + ACTIONS(6254), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5748), 2, + ACTIONS(6256), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, + ACTIONS(6260), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6262), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6266), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6276), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5762), 3, + ACTIONS(6270), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6272), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [116355] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(2565), 1, - sym_auto, - ACTIONS(2567), 1, - anon_sym_decltype, - ACTIONS(5339), 1, - sym_primitive_type, - ACTIONS(5854), 1, - sym_identifier, - ACTIONS(5856), 1, - anon_sym_COLON_COLON, - ACTIONS(5858), 1, - anon_sym_enum, - ACTIONS(5860), 1, - anon_sym_class, - ACTIONS(5862), 1, - anon_sym_struct, - ACTIONS(5864), 1, - anon_sym_union, - ACTIONS(5866), 1, - anon_sym_typename, - STATE(2182), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2841), 1, - sym_template_type, - STATE(2845), 1, - sym_qualified_type_identifier, - STATE(2878), 1, - sym_decltype_auto, - STATE(3278), 1, - sym__type_specifier, - STATE(5154), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - ACTIONS(2541), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2872), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [116429] = 23, + [143248] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5750), 1, + ACTIONS(5792), 1, anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(5808), 1, anon_sym_AMP, - ACTIONS(5764), 1, + ACTIONS(5814), 1, anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, anon_sym_QMARK, - STATE(2534), 1, + ACTIONS(6436), 1, + anon_sym_SEMI, + STATE(2487), 1, sym_argument_list, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5748), 2, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, + ACTIONS(5794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6162), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(5762), 3, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [116507] = 21, + [143335] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(105), 1, - sym_auto, - ACTIONS(107), 1, - anon_sym_decltype, - ACTIONS(972), 1, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6009), 1, + anon_sym_AMP_AMP, + ACTIONS(6011), 1, + anon_sym_AMP, + ACTIONS(6015), 1, + anon_sym_LBRACK, + ACTIONS(6021), 1, + anon_sym_noexcept, + ACTIONS(6023), 1, + anon_sym_throw, + ACTIONS(6340), 1, + anon_sym___attribute__, + ACTIONS(6344), 1, + anon_sym_DASH_GT, + ACTIONS(6346), 1, + anon_sym_requires, + STATE(5034), 1, + sym_trailing_return_type, + STATE(5135), 1, + sym_requires_clause, + ACTIONS(4016), 2, + anon_sym_final, + anon_sym_override, + STATE(4198), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + STATE(4093), 6, + sym_type_qualifier, + sym_virtual_specifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_function_declarator_repeat2, + ACTIONS(6007), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + ACTIONS(6342), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [143406] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(2809), 1, - sym_primitive_type, - ACTIONS(3001), 1, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1521), 1, + anon_sym_TILDE, + ACTIONS(3137), 1, + anon_sym_LPAREN2, + ACTIONS(3139), 1, + anon_sym_STAR, + ACTIONS(3141), 1, + anon_sym_AMP_AMP, + ACTIONS(3143), 1, + anon_sym_AMP, + ACTIONS(4247), 1, sym_identifier, - ACTIONS(3007), 1, + ACTIONS(4767), 1, + anon_sym_LBRACK, + ACTIONS(5049), 1, anon_sym_COLON_COLON, - ACTIONS(5377), 1, - anon_sym_enum, - ACTIONS(5379), 1, - anon_sym_class, - ACTIONS(5381), 1, - anon_sym_struct, - ACTIONS(5383), 1, - anon_sym_union, - ACTIONS(5385), 1, - anon_sym_typename, - STATE(2737), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2976), 1, - sym_template_type, - STATE(3044), 1, - sym__type_specifier, - STATE(3123), 1, - sym_decltype_auto, - STATE(3198), 1, - sym_qualified_type_identifier, - STATE(5131), 1, + ACTIONS(5786), 1, + anon_sym_RPAREN, + STATE(4345), 1, + sym_parameter_list, + STATE(4946), 1, sym__scope_resolution, - STATE(6663), 1, + STATE(5304), 1, + sym__declarator, + STATE(5376), 1, + sym__abstract_declarator, + STATE(7250), 1, + sym_ms_based_modifier, + STATE(7236), 2, + sym_template_type, sym_dependent_type_identifier, - ACTIONS(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3139), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [116581] = 24, + STATE(5127), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(5080), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [143485] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(5341), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(5343), 1, anon_sym_DASH_GT, - ACTIONS(5750), 1, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6258), 1, anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, + ACTIONS(6264), 1, anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(6268), 1, anon_sym_AMP, - ACTIONS(5764), 1, + ACTIONS(6274), 1, anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, + ACTIONS(6280), 1, anon_sym_QMARK, - ACTIONS(6164), 1, - anon_sym_COMMA, - ACTIONS(6166), 1, - anon_sym_RPAREN, - STATE(2534), 1, + ACTIONS(6282), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6284), 1, + anon_sym_bitor, + ACTIONS(6286), 1, + anon_sym_bitand, + ACTIONS(6438), 1, + anon_sym_COLON, + STATE(2487), 1, sym_argument_list, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, + ACTIONS(6254), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5748), 2, + ACTIONS(6256), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, + ACTIONS(6260), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6262), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6266), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6276), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5762), 3, + ACTIONS(6270), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6272), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [116661] = 24, + [143572] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(5755), 1, + sym_auto, + ACTIONS(5757), 1, + anon_sym_decltype, + STATE(4059), 1, + sym_decltype_auto, + ACTIONS(4275), 9, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(4892), 1, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4277), 23, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - ACTIONS(4896), 1, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [143621] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5750), 1, + ACTIONS(5792), 1, anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(5808), 1, anon_sym_AMP, - ACTIONS(5764), 1, + ACTIONS(5814), 1, anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, anon_sym_QMARK, - ACTIONS(5925), 1, - anon_sym_COMMA, - ACTIONS(6168), 1, + ACTIONS(6440), 1, anon_sym_SEMI, - STATE(2534), 1, + STATE(2487), 1, sym_argument_list, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5748), 2, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, + ACTIONS(5794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5762), 3, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [116741] = 24, + [143708] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(5341), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(5343), 1, anon_sym_DASH_GT, - ACTIONS(5750), 1, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6258), 1, anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, + ACTIONS(6264), 1, anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(6268), 1, anon_sym_AMP, - ACTIONS(5764), 1, + ACTIONS(6274), 1, anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, + ACTIONS(6280), 1, anon_sym_QMARK, - ACTIONS(6170), 1, - anon_sym_COMMA, - ACTIONS(6172), 1, - anon_sym_RPAREN, - STATE(2534), 1, + ACTIONS(6282), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6284), 1, + anon_sym_bitor, + ACTIONS(6286), 1, + anon_sym_bitand, + ACTIONS(6442), 1, + anon_sym_COLON, + STATE(2487), 1, sym_argument_list, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, + ACTIONS(6254), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5748), 2, + ACTIONS(6256), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, + ACTIONS(6260), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6262), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6266), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6276), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5762), 3, + ACTIONS(6270), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6272), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [116821] = 3, + [143795] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3898), 11, + ACTIONS(4965), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -303626,7 +338168,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(3900), 19, + ACTIONS(4963), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -303641,867 +338183,905 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, anon_sym_GT2, - anon_sym_requires, - [116859] = 24, + [143838] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, + ACTIONS(5057), 11, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, anon_sym_AMP, - ACTIONS(5764), 1, + anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5055), 24, anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(5892), 1, - anon_sym_SEMI, - ACTIONS(5925), 1, anon_sym_COMMA, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5760), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5766), 2, anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [116939] = 24, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [143881] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5750), 1, + ACTIONS(5792), 1, anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(5808), 1, anon_sym_AMP, - ACTIONS(5764), 1, + ACTIONS(5814), 1, anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, anon_sym_QMARK, - ACTIONS(5925), 1, - anon_sym_COMMA, - ACTIONS(6174), 1, + ACTIONS(6444), 1, anon_sym_RPAREN, - STATE(2534), 1, + STATE(2487), 1, sym_argument_list, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5748), 2, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, + ACTIONS(5794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5762), 3, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [117019] = 24, + [143968] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5750), 1, + ACTIONS(5792), 1, anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(5808), 1, anon_sym_AMP, - ACTIONS(5764), 1, + ACTIONS(5814), 1, anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, anon_sym_QMARK, - ACTIONS(5925), 1, - anon_sym_COMMA, - ACTIONS(6176), 1, - anon_sym_RPAREN, - STATE(2534), 1, + ACTIONS(6446), 1, + anon_sym_SEMI, + STATE(2487), 1, sym_argument_list, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5748), 2, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, + ACTIONS(5794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5762), 3, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [117099] = 24, + [144055] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(5341), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(5343), 1, anon_sym_DASH_GT, - ACTIONS(5750), 1, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6258), 1, anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, + ACTIONS(6264), 1, anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(6268), 1, anon_sym_AMP, - ACTIONS(5764), 1, + ACTIONS(6274), 1, anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, + ACTIONS(6280), 1, anon_sym_QMARK, - ACTIONS(5925), 1, - anon_sym_COMMA, - ACTIONS(6178), 1, - anon_sym_RPAREN, - STATE(2534), 1, + ACTIONS(6282), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6284), 1, + anon_sym_bitor, + ACTIONS(6286), 1, + anon_sym_bitand, + ACTIONS(6448), 1, + anon_sym_COLON, + STATE(2487), 1, sym_argument_list, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, + ACTIONS(6254), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5748), 2, + ACTIONS(6256), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, + ACTIONS(6260), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6262), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6266), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6276), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5762), 3, + ACTIONS(6270), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6272), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [117179] = 24, + [144142] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5750), 1, + ACTIONS(5792), 1, anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(5808), 1, anon_sym_AMP, - ACTIONS(5764), 1, + ACTIONS(5814), 1, anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, anon_sym_QMARK, - ACTIONS(5925), 1, - anon_sym_COMMA, - ACTIONS(6180), 1, - anon_sym_RPAREN, - STATE(2534), 1, + ACTIONS(6450), 1, + anon_sym_SEMI, + STATE(2487), 1, sym_argument_list, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5748), 2, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, + ACTIONS(5794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5762), 3, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [117259] = 24, + [144229] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(3853), 1, + anon_sym_RBRACK, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5750), 1, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5886), 1, anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, + ACTIONS(5892), 1, anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(5896), 1, anon_sym_AMP, - ACTIONS(5764), 1, + ACTIONS(5902), 1, anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, + ACTIONS(5908), 1, anon_sym_QMARK, - ACTIONS(5925), 1, - anon_sym_COMMA, - ACTIONS(6182), 1, - anon_sym_SEMI, - STATE(2534), 1, + ACTIONS(5910), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5912), 1, + anon_sym_bitor, + ACTIONS(5914), 1, + anon_sym_bitand, + STATE(2487), 1, sym_argument_list, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, + ACTIONS(5882), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5748), 2, + ACTIONS(5884), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, + ACTIONS(5888), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5890), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5894), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5904), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5762), 3, + ACTIONS(5898), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5900), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [117339] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1491), 1, - sym_auto, - ACTIONS(1493), 1, - anon_sym_decltype, - ACTIONS(5202), 1, - sym_primitive_type, - ACTIONS(5770), 1, - sym_identifier, - ACTIONS(5772), 1, - anon_sym_COLON_COLON, - ACTIONS(5776), 1, - anon_sym_class, - ACTIONS(5778), 1, - anon_sym_struct, - ACTIONS(5780), 1, - anon_sym_union, - ACTIONS(5814), 1, - anon_sym_enum, - ACTIONS(5816), 1, - anon_sym_typename, - STATE(2075), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2323), 1, - sym_template_type, - STATE(2485), 1, - sym_qualified_type_identifier, - STATE(2494), 1, - sym_decltype_auto, - STATE(3246), 1, - sym__type_specifier, - STATE(5152), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - ACTIONS(1479), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2346), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [117413] = 24, + [144316] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5750), 1, + ACTIONS(5792), 1, anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(5808), 1, anon_sym_AMP, - ACTIONS(5764), 1, + ACTIONS(5814), 1, anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, anon_sym_QMARK, - ACTIONS(5925), 1, - anon_sym_COMMA, - ACTIONS(6184), 1, + ACTIONS(6452), 1, anon_sym_RPAREN, - STATE(2534), 1, + STATE(2487), 1, sym_argument_list, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5748), 2, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, + ACTIONS(5794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5762), 3, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [117493] = 24, + [144403] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5750), 1, + ACTIONS(5792), 1, anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(5808), 1, anon_sym_AMP, - ACTIONS(5764), 1, + ACTIONS(5814), 1, anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, anon_sym_QMARK, - ACTIONS(5925), 1, - anon_sym_COMMA, - ACTIONS(6186), 1, - anon_sym_RPAREN, - STATE(2534), 1, + ACTIONS(6454), 1, + anon_sym_SEMI, + STATE(2487), 1, sym_argument_list, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5748), 2, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, + ACTIONS(5794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5762), 3, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [117573] = 24, + [144490] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(6316), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(6326), 1, + sym_identifier, + ACTIONS(6328), 1, + anon_sym_STAR, + ACTIONS(6330), 1, + anon_sym_AMP_AMP, + ACTIONS(6332), 1, + anon_sym_AMP, + STATE(4398), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5375), 1, + sym__field_declarator, + STATE(6785), 1, + sym_ms_based_modifier, + ACTIONS(2963), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4288), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(4305), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(2961), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2965), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5185), 8, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + sym_reference_field_declarator, + sym_template_method, + sym_operator_name, + [144561] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5731), 1, + anon_sym_LBRACE, + ACTIONS(6456), 1, + anon_sym_COLON, + STATE(3448), 1, + sym_enumerator_list, + STATE(3449), 1, + sym__enum_base_clause, + ACTIONS(4233), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4235), 24, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - ACTIONS(4896), 1, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [144612] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(5341), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(5343), 1, anon_sym_DASH_GT, - ACTIONS(5750), 1, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6258), 1, anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, + ACTIONS(6264), 1, anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(6268), 1, anon_sym_AMP, - ACTIONS(5764), 1, + ACTIONS(6274), 1, anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, + ACTIONS(6280), 1, anon_sym_QMARK, - ACTIONS(5925), 1, - anon_sym_COMMA, - ACTIONS(6188), 1, - anon_sym_SEMI, - STATE(2534), 1, + ACTIONS(6282), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6284), 1, + anon_sym_bitor, + ACTIONS(6286), 1, + anon_sym_bitand, + ACTIONS(6458), 1, + anon_sym_COLON, + STATE(2487), 1, sym_argument_list, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, + ACTIONS(6254), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5748), 2, + ACTIONS(6256), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, + ACTIONS(6260), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6262), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6266), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6276), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5762), 3, + ACTIONS(6270), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6272), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [117653] = 24, + [144699] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, + ACTIONS(4799), 11, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, anon_sym_AMP, - ACTIONS(5764), 1, + anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4801), 24, anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(5925), 1, anon_sym_COMMA, - ACTIONS(6190), 1, - anon_sym_RPAREN, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5760), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5766), 2, anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [117733] = 24, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [144742] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5750), 1, + ACTIONS(5792), 1, anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(5808), 1, anon_sym_AMP, - ACTIONS(5764), 1, + ACTIONS(5814), 1, anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, anon_sym_QMARK, - ACTIONS(5925), 1, - anon_sym_COMMA, - ACTIONS(6192), 1, - anon_sym_RPAREN, - STATE(2534), 1, + ACTIONS(6460), 1, + anon_sym_SEMI, + STATE(2487), 1, sym_argument_list, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5748), 2, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, + ACTIONS(5794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5762), 3, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [117813] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5518), 1, - anon_sym_const, - ACTIONS(5602), 1, - anon_sym_AMP_AMP, - ACTIONS(5604), 1, - anon_sym_AMP, - ACTIONS(5612), 1, - anon_sym_DASH_GT, - ACTIONS(5614), 1, - anon_sym_noexcept, - ACTIONS(5616), 1, - anon_sym_throw, - ACTIONS(5618), 1, - anon_sym_requires, - ACTIONS(6196), 1, - anon_sym_LBRACK, - STATE(4779), 1, - sym_requires_clause, - STATE(4868), 1, - sym_trailing_return_type, - STATE(3747), 5, - sym_type_qualifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - ACTIONS(5610), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(6194), 8, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [117873] = 24, + [144829] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5750), 1, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5886), 1, anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, + ACTIONS(5892), 1, anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(5896), 1, anon_sym_AMP, - ACTIONS(5764), 1, + ACTIONS(5902), 1, anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, + ACTIONS(5908), 1, anon_sym_QMARK, - ACTIONS(6198), 1, - anon_sym_COMMA, - ACTIONS(6200), 1, - anon_sym_RPAREN, - STATE(2534), 1, + ACTIONS(5910), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5912), 1, + anon_sym_bitor, + ACTIONS(5914), 1, + anon_sym_bitand, + ACTIONS(6462), 1, + anon_sym_RBRACK, + STATE(2487), 1, sym_argument_list, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, + ACTIONS(5882), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5748), 2, + ACTIONS(5884), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, + ACTIONS(5888), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5890), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5894), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5904), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5762), 3, + ACTIONS(5898), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5900), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [117953] = 23, + [144916] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5750), 1, + ACTIONS(5792), 1, anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(5808), 1, anon_sym_AMP, - ACTIONS(5764), 1, + ACTIONS(5814), 1, anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, anon_sym_QMARK, - STATE(2534), 1, + ACTIONS(6464), 1, + anon_sym_SEMI, + STATE(2487), 1, sym_argument_list, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5748), 2, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, + ACTIONS(5794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6126), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(5762), 3, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [118031] = 14, + [145003] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5518), 1, - anon_sym_const, - ACTIONS(5602), 1, + ACTIONS(6466), 1, + anon_sym_LPAREN2, + STATE(2910), 1, + sym_argument_list, + ACTIONS(4288), 9, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(5604), 1, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + ACTIONS(4290), 24, anon_sym_AMP, - ACTIONS(5612), 1, - anon_sym_DASH_GT, - ACTIONS(5614), 1, - anon_sym_noexcept, - ACTIONS(5616), 1, - anon_sym_throw, - ACTIONS(5618), 1, - anon_sym_requires, - ACTIONS(6204), 1, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - STATE(4782), 1, - sym_requires_clause, - STATE(4857), 1, - sym_trailing_return_type, - STATE(3984), 5, - sym_type_qualifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - ACTIONS(5610), 7, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -304509,34 +339089,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - ACTIONS(6202), 8, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [118091] = 3, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [145050] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3890), 11, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(5341), 1, + anon_sym_DOT, + ACTIONS(5343), 1, + anon_sym_DASH_GT, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(4920), 8, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(3892), 19, + ACTIONS(4918), 20, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -304544,19 +339129,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [145105] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3720), 1, + anon_sym_RBRACK, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5886), 1, + anon_sym_SLASH, + ACTIONS(5892), 1, + anon_sym_PIPE, + ACTIONS(5896), 1, + anon_sym_AMP, + ACTIONS(5902), 1, + anon_sym_GT_EQ, + ACTIONS(5908), 1, anon_sym_QMARK, + ACTIONS(5910), 1, anon_sym_LT_EQ_GT, + ACTIONS(5912), 1, + anon_sym_bitor, + ACTIONS(5914), 1, + anon_sym_bitand, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_requires, - [118129] = 3, + ACTIONS(5882), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5884), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5888), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5890), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5894), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5904), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5898), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5900), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [145192] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3878), 11, + ACTIONS(4977), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -304568,7 +339218,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(3880), 19, + ACTIONS(4975), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -304583,532 +339233,616 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, anon_sym_GT2, - anon_sym_requires, - [118167] = 11, + [145235] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(5341), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(5343), 1, anon_sym_DASH_GT, - ACTIONS(6014), 1, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6258), 1, anon_sym_SLASH, - STATE(2534), 1, + ACTIONS(6264), 1, + anon_sym_PIPE, + ACTIONS(6268), 1, + anon_sym_AMP, + ACTIONS(6274), 1, + anon_sym_GT_EQ, + ACTIONS(6280), 1, + anon_sym_QMARK, + ACTIONS(6282), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6284), 1, + anon_sym_bitor, + ACTIONS(6286), 1, + anon_sym_bitand, + ACTIONS(6469), 1, + anon_sym_COLON, + STATE(2487), 1, sym_argument_list, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6012), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5026), 7, + ACTIONS(6254), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(5024), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(6256), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6260), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6262), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6266), 2, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_xor, + ACTIONS(6276), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - [118221] = 20, + ACTIONS(6270), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6272), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [145322] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(5341), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(5343), 1, anon_sym_DASH_GT, - ACTIONS(6014), 1, + ACTIONS(6258), 1, anon_sym_SLASH, - ACTIONS(6018), 1, - anon_sym_AMP_AMP, - ACTIONS(6020), 1, + ACTIONS(6264), 1, anon_sym_PIPE, - ACTIONS(6022), 1, - anon_sym_CARET, - ACTIONS(6024), 1, + ACTIONS(6268), 1, anon_sym_AMP, - ACTIONS(6030), 1, + ACTIONS(6274), 1, anon_sym_GT_EQ, - ACTIONS(6038), 1, + ACTIONS(6282), 1, anon_sym_LT_EQ_GT, - STATE(2534), 1, + ACTIONS(6284), 1, + anon_sym_bitor, + ACTIONS(6286), 1, + anon_sym_bitand, + STATE(2487), 1, sym_argument_list, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6010), 2, + ACTIONS(6254), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6012), 2, + ACTIONS(6256), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6026), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6032), 2, + ACTIONS(6260), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6262), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6266), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6276), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6028), 3, + ACTIONS(4979), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(6270), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6272), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(5024), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_QMARK, - [118293] = 19, + [145405] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(6014), 1, + ACTIONS(5792), 1, anon_sym_SLASH, - ACTIONS(6020), 1, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, - ACTIONS(6022), 1, - anon_sym_CARET, - ACTIONS(6024), 1, + ACTIONS(5808), 1, anon_sym_AMP, - ACTIONS(6030), 1, + ACTIONS(5814), 1, anon_sym_GT_EQ, - ACTIONS(6038), 1, - anon_sym_LT_EQ_GT, - STATE(2534), 1, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(5924), 1, + anon_sym_RPAREN, + STATE(2487), 1, sym_argument_list, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6010), 2, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6012), 2, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6026), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6032), 2, + ACTIONS(5794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6028), 3, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [145492] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5065), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(5024), 6, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5063), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_RBRACK, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, anon_sym_QMARK, - [118363] = 24, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + anon_sym_GT2, + [145535] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5750), 1, + ACTIONS(5792), 1, anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(5808), 1, anon_sym_AMP, - ACTIONS(5764), 1, + ACTIONS(5814), 1, anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, anon_sym_QMARK, - ACTIONS(5925), 1, - anon_sym_COMMA, - ACTIONS(6206), 1, - anon_sym_RPAREN, - STATE(2534), 1, + ACTIONS(6471), 1, + anon_sym_SEMI, + STATE(2487), 1, sym_argument_list, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5748), 2, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, + ACTIONS(5794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5762), 3, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [118443] = 19, + [145622] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5026), 1, - anon_sym_PIPE, - ACTIONS(6014), 1, + ACTIONS(5792), 1, anon_sym_SLASH, - ACTIONS(6022), 1, - anon_sym_CARET, - ACTIONS(6024), 1, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, + anon_sym_PIPE, + ACTIONS(5808), 1, anon_sym_AMP, - ACTIONS(6030), 1, + ACTIONS(5814), 1, anon_sym_GT_EQ, - ACTIONS(6038), 1, - anon_sym_LT_EQ_GT, - STATE(2534), 1, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(6473), 1, + anon_sym_RPAREN, + STATE(2487), 1, sym_argument_list, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6010), 2, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6012), 2, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6026), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6032), 2, + ACTIONS(5794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6028), 3, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(5024), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK, - anon_sym_QMARK, - [118513] = 18, + [145709] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5026), 1, - anon_sym_PIPE, - ACTIONS(6014), 1, + ACTIONS(5792), 1, anon_sym_SLASH, - ACTIONS(6024), 1, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, + anon_sym_PIPE, + ACTIONS(5808), 1, anon_sym_AMP, - ACTIONS(6030), 1, + ACTIONS(5814), 1, anon_sym_GT_EQ, - ACTIONS(6038), 1, - anon_sym_LT_EQ_GT, - STATE(2534), 1, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(6475), 1, + anon_sym_RPAREN, + STATE(2487), 1, sym_argument_list, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6010), 2, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6012), 2, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6026), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6032), 2, + ACTIONS(5794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6028), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(5024), 7, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(5800), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, anon_sym_CARET, - anon_sym_RBRACK, - anon_sym_QMARK, - [118581] = 24, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [145796] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(3847), 1, + anon_sym_RBRACK, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5750), 1, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5886), 1, anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, + ACTIONS(5892), 1, anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(5896), 1, anon_sym_AMP, - ACTIONS(5764), 1, + ACTIONS(5902), 1, anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, + ACTIONS(5908), 1, anon_sym_QMARK, - ACTIONS(5925), 1, - anon_sym_COMMA, - ACTIONS(6208), 1, - anon_sym_RPAREN, - STATE(2534), 1, + ACTIONS(5910), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5912), 1, + anon_sym_bitor, + ACTIONS(5914), 1, + anon_sym_bitand, + STATE(2487), 1, sym_argument_list, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, + ACTIONS(5882), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5748), 2, + ACTIONS(5884), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, + ACTIONS(5888), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5890), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5894), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5904), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5762), 3, + ACTIONS(5898), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5900), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [118661] = 24, + [145883] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(3863), 1, + anon_sym_RBRACK, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5750), 1, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5886), 1, anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, + ACTIONS(5892), 1, anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(5896), 1, anon_sym_AMP, - ACTIONS(5764), 1, + ACTIONS(5902), 1, anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, + ACTIONS(5908), 1, anon_sym_QMARK, - ACTIONS(5925), 1, - anon_sym_COMMA, - ACTIONS(5989), 1, - anon_sym_SEMI, - STATE(2534), 1, + ACTIONS(5910), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5912), 1, + anon_sym_bitor, + ACTIONS(5914), 1, + anon_sym_bitand, + STATE(2487), 1, sym_argument_list, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, + ACTIONS(5882), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5748), 2, + ACTIONS(5884), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, + ACTIONS(5888), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5890), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5894), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5904), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5762), 3, + ACTIONS(5898), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5900), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [118741] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(2565), 1, - sym_auto, - ACTIONS(2567), 1, - anon_sym_decltype, - ACTIONS(5339), 1, - sym_primitive_type, - ACTIONS(5854), 1, - sym_identifier, - ACTIONS(5856), 1, - anon_sym_COLON_COLON, - ACTIONS(5858), 1, - anon_sym_enum, - ACTIONS(5860), 1, - anon_sym_class, - ACTIONS(5862), 1, - anon_sym_struct, - ACTIONS(5864), 1, - anon_sym_union, - ACTIONS(5866), 1, - anon_sym_typename, - STATE(2182), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2841), 1, - sym_template_type, - STATE(2845), 1, - sym_qualified_type_identifier, - STATE(2878), 1, - sym_decltype_auto, - STATE(3288), 1, - sym__type_specifier, - STATE(5154), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - ACTIONS(2541), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2872), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [118815] = 17, + [145970] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(6014), 1, + ACTIONS(5792), 1, anon_sym_SLASH, - ACTIONS(6030), 1, - anon_sym_GT_EQ, - ACTIONS(6038), 1, + ACTIONS(5796), 1, anon_sym_LT_EQ_GT, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5026), 2, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, + ACTIONS(5808), 1, anon_sym_AMP, - ACTIONS(5724), 2, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(6477), 1, + anon_sym_RPAREN, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6010), 2, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6012), 2, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6026), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6032), 2, + ACTIONS(5794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6028), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(5024), 7, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(5800), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, anon_sym_CARET, - anon_sym_RBRACK, - anon_sym_QMARK, - [118881] = 3, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [146057] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3886), 11, + ACTIONS(5033), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -305120,7 +339854,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(3888), 19, + ACTIONS(5031), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -305135,489 +339869,789 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, anon_sym_GT2, - anon_sym_requires, - [118919] = 16, + [146100] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(3747), 1, + anon_sym_RBRACK, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(6014), 1, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5886), 1, anon_sym_SLASH, - ACTIONS(6030), 1, + ACTIONS(5892), 1, + anon_sym_PIPE, + ACTIONS(5896), 1, + anon_sym_AMP, + ACTIONS(5902), 1, anon_sym_GT_EQ, - ACTIONS(6038), 1, + ACTIONS(5908), 1, + anon_sym_QMARK, + ACTIONS(5910), 1, anon_sym_LT_EQ_GT, - STATE(2534), 1, + ACTIONS(5912), 1, + anon_sym_bitor, + ACTIONS(5914), 1, + anon_sym_bitand, + STATE(2487), 1, sym_argument_list, - ACTIONS(5026), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6010), 2, + ACTIONS(5882), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6012), 2, + ACTIONS(5884), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6032), 2, + ACTIONS(5888), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5890), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5894), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5904), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6028), 3, + ACTIONS(5898), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5900), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(5024), 9, + [146187] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, + anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(5804), 1, + anon_sym_PIPE, + ACTIONS(5808), 1, + anon_sym_AMP, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(6479), 1, + anon_sym_RPAREN, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_RBRACK, - anon_sym_QMARK, - [118983] = 14, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [146274] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(6314), 1, + sym_identifier, + ACTIONS(6316), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(6318), 1, + anon_sym_STAR, + ACTIONS(6320), 1, + anon_sym_AMP_AMP, + ACTIONS(6322), 1, + anon_sym_AMP, + STATE(4398), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5021), 1, + sym__field_declarator, + STATE(6823), 1, + sym_ms_based_modifier, + ACTIONS(2963), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3842), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4306), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2961), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2965), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5185), 8, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + sym_reference_field_declarator, + sym_template_method, + sym_operator_name, + [146345] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(6014), 1, + ACTIONS(5792), 1, anon_sym_SLASH, - ACTIONS(6038), 1, + ACTIONS(5796), 1, anon_sym_LT_EQ_GT, - STATE(2534), 1, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, + anon_sym_PIPE, + ACTIONS(5808), 1, + anon_sym_AMP, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(6481), 1, + anon_sym_SEMI, + STATE(2487), 1, sym_argument_list, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6010), 2, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6012), 2, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6032), 2, + ACTIONS(5794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5026), 5, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(5024), 10, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(5800), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_QMARK, - [119043] = 12, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [146432] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(6014), 1, + ACTIONS(5792), 1, anon_sym_SLASH, - STATE(2534), 1, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, + anon_sym_PIPE, + ACTIONS(5808), 1, + anon_sym_AMP, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(6483), 1, + anon_sym_SEMI, + STATE(2487), 1, sym_argument_list, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6010), 2, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6012), 2, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5026), 5, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(5024), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - [119099] = 13, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [146519] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(6014), 1, + ACTIONS(5792), 1, anon_sym_SLASH, - STATE(2534), 1, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, + anon_sym_PIPE, + ACTIONS(5808), 1, + anon_sym_AMP, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(6485), 1, + anon_sym_SEMI, + STATE(2487), 1, sym_argument_list, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6010), 2, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6012), 2, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6032), 2, + ACTIONS(5794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5026), 5, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(5024), 11, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(5800), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - [119157] = 24, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [146606] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5750), 1, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5886), 1, anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, + ACTIONS(5892), 1, anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(5896), 1, anon_sym_AMP, - ACTIONS(5764), 1, + ACTIONS(5902), 1, anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, + ACTIONS(5908), 1, anon_sym_QMARK, - ACTIONS(5925), 1, - anon_sym_COMMA, - ACTIONS(6210), 1, - anon_sym_SEMI, - STATE(2534), 1, + ACTIONS(5910), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5912), 1, + anon_sym_bitor, + ACTIONS(5914), 1, + anon_sym_bitand, + ACTIONS(6487), 1, + anon_sym_RBRACK, + STATE(2487), 1, sym_argument_list, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, + ACTIONS(5882), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5748), 2, + ACTIONS(5884), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, + ACTIONS(5888), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5890), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5894), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5904), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5762), 3, + ACTIONS(5898), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5900), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [119237] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(105), 1, - sym_auto, - ACTIONS(107), 1, - anon_sym_decltype, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(2809), 1, - sym_primitive_type, - ACTIONS(3001), 1, - sym_identifier, - ACTIONS(3007), 1, - anon_sym_COLON_COLON, - ACTIONS(3013), 1, - anon_sym_class, - ACTIONS(3015), 1, - anon_sym_struct, - ACTIONS(3017), 1, - anon_sym_union, - ACTIONS(5307), 1, - anon_sym_enum, - ACTIONS(5309), 1, - anon_sym_typename, - STATE(2976), 1, - sym_template_type, - STATE(3044), 1, - sym__type_specifier, - STATE(3123), 1, - sym_decltype_auto, - STATE(3184), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3198), 1, - sym_qualified_type_identifier, - STATE(5131), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - ACTIONS(3009), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3139), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [119311] = 3, + [146693] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(3910), 11, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, + ACTIONS(5808), 1, anon_sym_AMP, - anon_sym_GT, + ACTIONS(5814), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(3912), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(6489), 1, + anon_sym_SEMI, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [146780] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(6314), 1, + sym_identifier, + ACTIONS(6316), 1, + anon_sym_LPAREN2, + ACTIONS(6318), 1, + anon_sym_STAR, + ACTIONS(6320), 1, + anon_sym_AMP_AMP, + ACTIONS(6322), 1, + anon_sym_AMP, + STATE(4398), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5021), 1, + sym__field_declarator, + STATE(6823), 1, + sym_ms_based_modifier, + ACTIONS(2963), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4305), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4306), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2961), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(2965), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5185), 8, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + sym_reference_field_declarator, + sym_template_method, + sym_operator_name, + [146851] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, anon_sym_LBRACK, + ACTIONS(5035), 1, + anon_sym_COLON, + ACTIONS(5341), 1, + anon_sym_DOT, + ACTIONS(5343), 1, + anon_sym_DASH_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6258), 1, + anon_sym_SLASH, + ACTIONS(6264), 1, + anon_sym_PIPE, + ACTIONS(6268), 1, + anon_sym_AMP, + ACTIONS(6274), 1, + anon_sym_GT_EQ, + ACTIONS(6280), 1, anon_sym_QMARK, + ACTIONS(6282), 1, anon_sym_LT_EQ_GT, + ACTIONS(6284), 1, + anon_sym_bitor, + ACTIONS(6286), 1, + anon_sym_bitand, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_requires, - [119349] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3894), 11, + ACTIONS(6254), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(3896), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(6256), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(6260), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6262), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6266), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(6276), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6270), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_not_eq, + ACTIONS(6272), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [146938] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3482), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_requires, - [119387] = 24, + ACTIONS(3485), 1, + anon_sym_SEMI, + ACTIONS(3475), 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(3478), 7, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_EQ, + ACTIONS(3473), 23, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [146987] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5750), 1, + ACTIONS(5792), 1, anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(5808), 1, anon_sym_AMP, - ACTIONS(5764), 1, + ACTIONS(5814), 1, anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, anon_sym_QMARK, - ACTIONS(5925), 1, - anon_sym_COMMA, - ACTIONS(6212), 1, + ACTIONS(6491), 1, anon_sym_SEMI, - STATE(2534), 1, + STATE(2487), 1, sym_argument_list, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5748), 2, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, + ACTIONS(5794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5762), 3, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [119467] = 24, + [147074] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(5341), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(5343), 1, anon_sym_DASH_GT, - ACTIONS(5750), 1, + ACTIONS(6258), 1, anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, + ACTIONS(6264), 1, anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(6268), 1, anon_sym_AMP, - ACTIONS(5764), 1, + ACTIONS(6274), 1, anon_sym_GT_EQ, - ACTIONS(5768), 1, + ACTIONS(6282), 1, anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(5925), 1, - anon_sym_COMMA, - ACTIONS(6214), 1, - anon_sym_SEMI, - STATE(2534), 1, + ACTIONS(6284), 1, + anon_sym_bitor, + ACTIONS(6286), 1, + anon_sym_bitand, + STATE(2487), 1, sym_argument_list, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, + ACTIONS(6254), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5748), 2, + ACTIONS(6256), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, + ACTIONS(6260), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6262), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6266), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6276), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5762), 3, + ACTIONS(4959), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(6270), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6272), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [119547] = 3, + [147157] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3870), 11, + ACTIONS(5077), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -305629,7 +340663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(3872), 19, + ACTIONS(5075), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -305644,309 +340678,294 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, anon_sym_GT2, - anon_sym_requires, - [119585] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1531), 1, - sym_primitive_type, - ACTIONS(1533), 1, - anon_sym_enum, - ACTIONS(1535), 1, - anon_sym_class, - ACTIONS(1537), 1, - anon_sym_struct, - ACTIONS(1539), 1, - anon_sym_union, - ACTIONS(1541), 1, - sym_auto, - ACTIONS(1543), 1, - anon_sym_decltype, - ACTIONS(3365), 1, - sym_identifier, - ACTIONS(4060), 1, - anon_sym_COLON_COLON, - ACTIONS(5371), 1, - anon_sym_typename, - STATE(2976), 1, - sym_template_type, - STATE(3324), 1, - sym__type_specifier, - STATE(3366), 1, - sym_decltype_auto, - STATE(3400), 1, - sym_qualified_type_identifier, - STATE(3690), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5072), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - ACTIONS(5347), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3371), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [119659] = 21, + [147200] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(6014), 1, + ACTIONS(5792), 1, anon_sym_SLASH, - ACTIONS(6016), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6018), 1, - anon_sym_AMP_AMP, - ACTIONS(6020), 1, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, - ACTIONS(6022), 1, - anon_sym_CARET, - ACTIONS(6024), 1, + ACTIONS(5808), 1, anon_sym_AMP, - ACTIONS(6030), 1, + ACTIONS(5814), 1, anon_sym_GT_EQ, - ACTIONS(6038), 1, - anon_sym_LT_EQ_GT, - STATE(2534), 1, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(6493), 1, + anon_sym_SEMI, + STATE(2487), 1, sym_argument_list, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6010), 2, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6012), 2, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6026), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6032), 2, + ACTIONS(5794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6028), 3, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(5076), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_QMARK, - [119733] = 24, + [147287] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(3691), 1, + anon_sym_RBRACK, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5750), 1, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5886), 1, anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, + ACTIONS(5892), 1, anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(5896), 1, anon_sym_AMP, - ACTIONS(5764), 1, + ACTIONS(5902), 1, anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, + ACTIONS(5908), 1, anon_sym_QMARK, - ACTIONS(6216), 1, - anon_sym_COMMA, - ACTIONS(6218), 1, - anon_sym_RPAREN, - STATE(2534), 1, + ACTIONS(5910), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5912), 1, + anon_sym_bitor, + ACTIONS(5914), 1, + anon_sym_bitand, + STATE(2487), 1, sym_argument_list, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, + ACTIONS(5882), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5748), 2, + ACTIONS(5884), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, + ACTIONS(5888), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5890), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5894), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5904), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5762), 3, + ACTIONS(5898), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5900), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [119813] = 21, + [147374] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(6014), 1, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5886), 1, anon_sym_SLASH, - ACTIONS(6016), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6018), 1, - anon_sym_AMP_AMP, - ACTIONS(6020), 1, + ACTIONS(5892), 1, anon_sym_PIPE, - ACTIONS(6022), 1, - anon_sym_CARET, - ACTIONS(6024), 1, + ACTIONS(5896), 1, anon_sym_AMP, - ACTIONS(6030), 1, + ACTIONS(5902), 1, anon_sym_GT_EQ, - ACTIONS(6038), 1, + ACTIONS(5908), 1, + anon_sym_QMARK, + ACTIONS(5910), 1, anon_sym_LT_EQ_GT, - STATE(2534), 1, + ACTIONS(5912), 1, + anon_sym_bitor, + ACTIONS(5914), 1, + anon_sym_bitand, + ACTIONS(6495), 1, + anon_sym_RBRACK, + STATE(2487), 1, sym_argument_list, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6010), 2, + ACTIONS(5882), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6012), 2, + ACTIONS(5884), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6026), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6032), 2, + ACTIONS(5888), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5890), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5894), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5904), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6028), 3, + ACTIONS(5898), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5900), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(5052), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_QMARK, - [119887] = 24, + [147461] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5750), 1, + ACTIONS(5792), 1, anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(5808), 1, anon_sym_AMP, - ACTIONS(5764), 1, + ACTIONS(5814), 1, anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, anon_sym_QMARK, - ACTIONS(5925), 1, - anon_sym_COMMA, - ACTIONS(6220), 1, + ACTIONS(6497), 1, anon_sym_SEMI, - STATE(2534), 1, + STATE(2487), 1, sym_argument_list, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5748), 2, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, + ACTIONS(5794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5762), 3, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [119967] = 7, + [147548] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5629), 1, - sym_primitive_type, - ACTIONS(6222), 1, - sym_identifier, - STATE(3075), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5627), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4103), 9, - anon_sym_COMMA, + ACTIONS(5731), 1, + anon_sym_LBRACE, + ACTIONS(6456), 1, + anon_sym_COLON, + STATE(3498), 1, + sym__enum_base_clause, + STATE(3499), 1, + sym_enumerator_list, + ACTIONS(4151), 7, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(4105), 14, + ACTIONS(4153), 24, anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -305955,545 +340974,623 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [120013] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(5832), 1, sym_identifier, - ACTIONS(5834), 1, - anon_sym_COLON_COLON, - ACTIONS(5838), 1, - sym_primitive_type, - ACTIONS(5840), 1, - anon_sym_enum, - ACTIONS(5842), 1, - anon_sym_class, - ACTIONS(5844), 1, - anon_sym_struct, - ACTIONS(5846), 1, - anon_sym_union, - ACTIONS(5848), 1, sym_auto, - ACTIONS(5850), 1, anon_sym_decltype, - ACTIONS(5852), 1, - anon_sym_typename, - STATE(2112), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2569), 1, - sym__type_specifier, - STATE(2590), 1, - sym_template_type, - STATE(2640), 1, - sym_qualified_type_identifier, - STATE(2707), 1, - sym_decltype_auto, - STATE(5092), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - ACTIONS(5836), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2708), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [120087] = 24, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [147599] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(5341), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(5343), 1, anon_sym_DASH_GT, - ACTIONS(5750), 1, + ACTIONS(6258), 1, anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, + ACTIONS(6264), 1, anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(6268), 1, anon_sym_AMP, - ACTIONS(5764), 1, + ACTIONS(6274), 1, anon_sym_GT_EQ, - ACTIONS(5768), 1, + ACTIONS(6282), 1, anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, + ACTIONS(6284), 1, + anon_sym_bitor, + ACTIONS(6286), 1, + anon_sym_bitand, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6254), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6256), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6260), 2, anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, + anon_sym_or, + ACTIONS(6262), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6266), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6276), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4886), 3, anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, + anon_sym_COLON, anon_sym_QMARK, - ACTIONS(5925), 1, - anon_sym_COMMA, - ACTIONS(6224), 1, + ACTIONS(6270), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6272), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [147682] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, + anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, + anon_sym_PIPE, + ACTIONS(5808), 1, + anon_sym_AMP, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(6499), 1, anon_sym_SEMI, - STATE(2534), 1, + STATE(2487), 1, sym_argument_list, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5748), 2, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, + ACTIONS(5794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5762), 3, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [120167] = 24, + [147769] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5750), 1, + ACTIONS(5792), 1, anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(5808), 1, anon_sym_AMP, - ACTIONS(5764), 1, + ACTIONS(5814), 1, anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, anon_sym_QMARK, - ACTIONS(5925), 1, - anon_sym_COMMA, - ACTIONS(6226), 1, - anon_sym_SEMI, - STATE(2534), 1, + ACTIONS(6501), 1, + anon_sym_RBRACE, + STATE(2487), 1, sym_argument_list, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5748), 2, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, + ACTIONS(5794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5762), 3, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [120247] = 21, + [147856] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, - anon_sym_template, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, ACTIONS(5792), 1, - sym_identifier, - ACTIONS(5794), 1, - anon_sym_COLON_COLON, + anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, ACTIONS(5798), 1, - sym_primitive_type, - ACTIONS(5800), 1, - anon_sym_enum, - ACTIONS(5802), 1, - anon_sym_class, + anon_sym_DOT_DOT_DOT, ACTIONS(5804), 1, - anon_sym_struct, - ACTIONS(5806), 1, - anon_sym_union, + anon_sym_PIPE, ACTIONS(5808), 1, - sym_auto, - ACTIONS(5810), 1, - anon_sym_decltype, - ACTIONS(5812), 1, - anon_sym_typename, - STATE(2032), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2190), 1, - sym__type_specifier, - STATE(2191), 1, - sym_template_type, - STATE(2280), 1, - sym_decltype_auto, - STATE(2298), 1, - sym_qualified_type_identifier, - STATE(5120), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - ACTIONS(5796), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2222), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [120321] = 23, + anon_sym_AMP, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(6503), 1, + anon_sym_SEMI, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5788), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5790), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5794), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [147943] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(5341), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(5343), 1, anon_sym_DASH_GT, - ACTIONS(5824), 1, + ACTIONS(5798), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(6014), 1, + ACTIONS(6258), 1, anon_sym_SLASH, - ACTIONS(6016), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6018), 1, - anon_sym_AMP_AMP, - ACTIONS(6020), 1, + ACTIONS(6264), 1, anon_sym_PIPE, - ACTIONS(6022), 1, - anon_sym_CARET, - ACTIONS(6024), 1, + ACTIONS(6268), 1, anon_sym_AMP, - ACTIONS(6030), 1, + ACTIONS(6274), 1, anon_sym_GT_EQ, - ACTIONS(6036), 1, + ACTIONS(6280), 1, anon_sym_QMARK, - ACTIONS(6038), 1, + ACTIONS(6282), 1, anon_sym_LT_EQ_GT, - STATE(2534), 1, + ACTIONS(6284), 1, + anon_sym_bitor, + ACTIONS(6286), 1, + anon_sym_bitand, + ACTIONS(6505), 1, + anon_sym_COLON, + STATE(2487), 1, sym_argument_list, - ACTIONS(5008), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6010), 2, + ACTIONS(6254), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6012), 2, + ACTIONS(6256), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6026), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6032), 2, + ACTIONS(6260), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6262), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6266), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6276), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6028), 3, + ACTIONS(6270), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6272), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [120399] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1485), 1, - anon_sym_class, - ACTIONS(1487), 1, - anon_sym_struct, - ACTIONS(1489), 1, - anon_sym_union, - ACTIONS(1491), 1, - sym_auto, - ACTIONS(1493), 1, - anon_sym_decltype, - ACTIONS(5196), 1, - sym_identifier, - ACTIONS(5200), 1, - anon_sym_COLON_COLON, - ACTIONS(5202), 1, - sym_primitive_type, - ACTIONS(5331), 1, - anon_sym_enum, - ACTIONS(5333), 1, - anon_sym_typename, - STATE(2075), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2308), 1, - sym__type_specifier, - STATE(2323), 1, - sym_template_type, - STATE(2485), 1, - sym_qualified_type_identifier, - STATE(2494), 1, - sym_decltype_auto, - STATE(5137), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - ACTIONS(1479), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2346), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [120473] = 24, + [148030] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(3742), 1, + anon_sym_RBRACK, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5750), 1, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5886), 1, anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, + ACTIONS(5892), 1, anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(5896), 1, anon_sym_AMP, - ACTIONS(5764), 1, + ACTIONS(5902), 1, anon_sym_GT_EQ, - ACTIONS(5768), 1, + ACTIONS(5908), 1, + anon_sym_QMARK, + ACTIONS(5910), 1, anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, + ACTIONS(5912), 1, + anon_sym_bitor, + ACTIONS(5914), 1, + anon_sym_bitand, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5882), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5884), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5888), 2, anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, + anon_sym_or, + ACTIONS(5890), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5894), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5904), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5898), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5900), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [148117] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, + anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, + ACTIONS(5804), 1, + anon_sym_PIPE, + ACTIONS(5808), 1, + anon_sym_AMP, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, anon_sym_QMARK, - ACTIONS(5925), 1, - anon_sym_COMMA, - ACTIONS(6228), 1, - anon_sym_SEMI, - STATE(2534), 1, + ACTIONS(6507), 1, + anon_sym_RPAREN, + STATE(2487), 1, sym_argument_list, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5748), 2, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, + ACTIONS(5794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5762), 3, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [120553] = 3, + [148204] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3914), 11, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(5341), 1, + anon_sym_DOT, + ACTIONS(5343), 1, + anon_sym_DASH_GT, + ACTIONS(6258), 1, + anon_sym_SLASH, + ACTIONS(6282), 1, + anon_sym_LT_EQ_GT, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6254), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(6256), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6276), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4856), 5, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(3916), 19, + ACTIONS(4850), 15, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, + anon_sym_GT_EQ, + anon_sym_COLON, anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_requires, - [120591] = 24, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [148269] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(3740), 1, + anon_sym_RBRACK, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5750), 1, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5886), 1, anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, + ACTIONS(5892), 1, anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(5896), 1, anon_sym_AMP, - ACTIONS(5764), 1, + ACTIONS(5902), 1, anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, + ACTIONS(5908), 1, anon_sym_QMARK, - ACTIONS(5925), 1, - anon_sym_COMMA, - ACTIONS(6230), 1, - anon_sym_SEMI, - STATE(2534), 1, + ACTIONS(5910), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5912), 1, + anon_sym_bitor, + ACTIONS(5914), 1, + anon_sym_bitand, + STATE(2487), 1, sym_argument_list, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, + ACTIONS(5882), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5748), 2, + ACTIONS(5884), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, + ACTIONS(5888), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5890), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5894), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5904), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5762), 3, + ACTIONS(5898), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5900), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [120671] = 24, + [148356] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5750), 1, + ACTIONS(5792), 1, anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5804), 1, anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(5808), 1, anon_sym_AMP, - ACTIONS(5764), 1, + ACTIONS(5814), 1, anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, anon_sym_QMARK, - ACTIONS(5925), 1, - anon_sym_COMMA, - ACTIONS(6232), 1, - anon_sym_SEMI, - STATE(2534), 1, + ACTIONS(6509), 1, + anon_sym_RPAREN, + STATE(2487), 1, sym_argument_list, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5748), 2, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, + ACTIONS(5794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5762), 3, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [120751] = 4, + [148443] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6234), 1, - sym_literal_suffix, - ACTIONS(3724), 11, + ACTIONS(4876), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -306505,7 +341602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(3716), 18, + ACTIONS(4874), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -306520,69 +341617,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, anon_sym_GT2, - [120791] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4496), 1, - anon_sym_LPAREN2, - ACTIONS(5242), 1, - anon_sym_LBRACK, - ACTIONS(5246), 1, - anon_sym_DOT, - ACTIONS(5248), 1, - anon_sym_DASH_GT, - ACTIONS(5939), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5947), 1, - anon_sym_SLASH, - ACTIONS(5949), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5951), 1, - anon_sym_AMP_AMP, - ACTIONS(5953), 1, - anon_sym_PIPE, - ACTIONS(5955), 1, - anon_sym_CARET, - ACTIONS(5957), 1, - anon_sym_AMP, - ACTIONS(5963), 1, - anon_sym_LT_LT, - ACTIONS(5965), 1, - anon_sym_GT_GT, - ACTIONS(5967), 1, - anon_sym_QMARK, - ACTIONS(5969), 1, - anon_sym_LT_EQ_GT, - STATE(3005), 1, - sym_argument_list, - ACTIONS(5008), 2, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(5943), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5945), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5959), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5971), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5961), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [120869] = 3, + [148486] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3906), 11, + ACTIONS(4922), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -306594,7 +341642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(3908), 19, + ACTIONS(2507), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -306609,165 +341657,231 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, anon_sym_GT2, - anon_sym_requires, - [120907] = 24, + [148529] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4055), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(4860), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, + ACTIONS(4866), 1, anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(4868), 1, anon_sym_DASH_GT, - ACTIONS(5750), 1, + ACTIONS(5798), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5886), 1, anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, + ACTIONS(5892), 1, anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(5896), 1, anon_sym_AMP, - ACTIONS(5764), 1, + ACTIONS(5902), 1, anon_sym_GT_EQ, - ACTIONS(5768), 1, + ACTIONS(5908), 1, + anon_sym_QMARK, + ACTIONS(5910), 1, anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, + ACTIONS(5912), 1, + anon_sym_bitor, + ACTIONS(5914), 1, + anon_sym_bitand, + ACTIONS(6511), 1, + anon_sym_RBRACK, + STATE(2487), 1, + sym_argument_list, + ACTIONS(5735), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(5882), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(5884), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5888), 2, anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, + anon_sym_or, + ACTIONS(5890), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5894), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5904), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5898), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5900), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [148616] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + ACTIONS(4860), 1, + anon_sym_LBRACK, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(4868), 1, + anon_sym_DASH_GT, + ACTIONS(5792), 1, + anon_sym_SLASH, + ACTIONS(5796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(5798), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, + ACTIONS(5804), 1, + anon_sym_PIPE, + ACTIONS(5808), 1, + anon_sym_AMP, + ACTIONS(5814), 1, + anon_sym_GT_EQ, + ACTIONS(5816), 1, + anon_sym_bitor, + ACTIONS(5818), 1, + anon_sym_bitand, + ACTIONS(5836), 1, anon_sym_QMARK, - ACTIONS(5925), 1, - anon_sym_COMMA, - ACTIONS(6236), 1, + ACTIONS(6513), 1, anon_sym_SEMI, - STATE(2534), 1, + STATE(2487), 1, sym_argument_list, - ACTIONS(5724), 2, + ACTIONS(5735), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, + ACTIONS(5788), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(5748), 2, + ACTIONS(5790), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, + ACTIONS(5794), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(5762), 3, + ACTIONS(5800), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(5802), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(5806), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(5810), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(5812), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [120987] = 21, + [148703] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(5868), 1, + ACTIONS(4471), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4473), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, sym_identifier, - ACTIONS(5870), 1, - anon_sym_COLON_COLON, - ACTIONS(5874), 1, - sym_primitive_type, - ACTIONS(5876), 1, - anon_sym_enum, - ACTIONS(5878), 1, - anon_sym_class, - ACTIONS(5880), 1, - anon_sym_struct, - ACTIONS(5882), 1, - anon_sym_union, - ACTIONS(5884), 1, sym_auto, - ACTIONS(5886), 1, anon_sym_decltype, - ACTIONS(5888), 1, - anon_sym_typename, - STATE(2082), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2156), 1, - sym__type_specifier, - STATE(2309), 1, - sym_template_type, - STATE(2418), 1, - sym_qualified_type_identifier, - STATE(2482), 1, - sym_decltype_auto, - STATE(5168), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - ACTIONS(5872), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2493), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [121061] = 21, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [148745] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(5279), 1, - sym_identifier, - ACTIONS(5281), 1, - anon_sym_COLON_COLON, - ACTIONS(5285), 1, - sym_primitive_type, - ACTIONS(5287), 1, + ACTIONS(1431), 1, anon_sym_enum, - ACTIONS(5289), 1, + ACTIONS(1433), 1, anon_sym_class, - ACTIONS(5291), 1, + ACTIONS(1435), 1, anon_sym_struct, - ACTIONS(5293), 1, + ACTIONS(1437), 1, anon_sym_union, - ACTIONS(5295), 1, - sym_auto, - ACTIONS(5297), 1, - anon_sym_decltype, - ACTIONS(5299), 1, + ACTIONS(1451), 1, anon_sym_typename, - STATE(4050), 1, + ACTIONS(2438), 1, + sym_primitive_type, + ACTIONS(3765), 1, + anon_sym_COLON_COLON, + ACTIONS(6515), 1, + sym_identifier, + ACTIONS(6517), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6521), 1, + anon_sym_EQ, + STATE(3271), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4179), 1, + STATE(3376), 1, sym__type_specifier, - STATE(4188), 1, + STATE(3395), 1, sym_template_type, - STATE(4232), 1, + STATE(3490), 1, sym_qualified_type_identifier, - STATE(4235), 1, + STATE(3494), 1, sym_decltype_auto, - STATE(5084), 1, + STATE(5354), 1, sym__scope_resolution, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5283), 4, + ACTIONS(6519), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(59), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4234), 8, + STATE(3481), 8, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -306776,237 +341890,231 @@ static const uint16_t ts_small_parse_table[] = { sym_decltype, sym_class_specifier, sym_dependent_type, - [121135] = 24, + [148829] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4310), 9, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, + anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4312), 25, anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [148871] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5630), 11, anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(6238), 1, anon_sym_COMMA, - ACTIONS(6240), 1, anon_sym_RPAREN, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, + anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [121215] = 23, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5628), 23, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [148913] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4582), 9, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, - anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6078), 2, - anon_sym_COMMA, + anon_sym_AMP_AMP, anon_sym_SEMI, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [121293] = 3, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4584), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [148955] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4372), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(4374), 21, - anon_sym_DOT_DOT_DOT, + ACTIONS(4357), 9, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [121331] = 23, + ACTIONS(4359), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [148997] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(3424), 1, + anon_sym_COLON_COLON, + ACTIONS(3437), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, + ACTIONS(5458), 1, + anon_sym_LT, + STATE(4104), 1, + sym_template_argument_list, + ACTIONS(3432), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(3435), 5, + anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + ACTIONS(3430), 23, anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6092), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [121409] = 14, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + [149049] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5518), 1, - anon_sym_const, - ACTIONS(5602), 1, + ACTIONS(4650), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(5604), 1, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4652), 25, anon_sym_AMP, - ACTIONS(5612), 1, - anon_sym_DASH_GT, - ACTIONS(5614), 1, - anon_sym_noexcept, - ACTIONS(5616), 1, - anon_sym_throw, - ACTIONS(5618), 1, - anon_sym_requires, - ACTIONS(6244), 1, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - STATE(4761), 1, - sym_requires_clause, - STATE(4861), 1, - sym_trailing_return_type, - STATE(3660), 5, - sym_type_qualifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - ACTIONS(5610), 7, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -307014,137 +342122,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - ACTIONS(6242), 8, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [149091] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4598), 9, anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, + ACTIONS(4600), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, anon_sym_try, - [121469] = 21, + anon_sym_requires, + [149133] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(2565), 1, + ACTIONS(4288), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4290), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, sym_auto, - ACTIONS(2567), 1, anon_sym_decltype, - ACTIONS(5339), 1, - sym_primitive_type, - ACTIONS(5854), 1, - sym_identifier, - ACTIONS(5856), 1, - anon_sym_COLON_COLON, - ACTIONS(5858), 1, - anon_sym_enum, - ACTIONS(5860), 1, - anon_sym_class, - ACTIONS(5862), 1, - anon_sym_struct, - ACTIONS(5864), 1, - anon_sym_union, - ACTIONS(5866), 1, - anon_sym_typename, - STATE(2182), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2841), 1, - sym_template_type, - STATE(2842), 1, - sym__type_specifier, - STATE(2845), 1, - sym_qualified_type_identifier, - STATE(2878), 1, - sym_decltype_auto, - STATE(5154), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - ACTIONS(2541), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2872), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [121543] = 8, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [149175] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4496), 1, - anon_sym_LPAREN2, - ACTIONS(5242), 1, - anon_sym_LBRACK, - ACTIONS(5246), 1, - anon_sym_DOT, - ACTIONS(5248), 1, - anon_sym_DASH_GT, - STATE(3005), 1, - sym_argument_list, - ACTIONS(4942), 10, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - ACTIONS(4940), 15, - anon_sym_DOT_DOT_DOT, + ACTIONS(4654), 9, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_GT2, - [121591] = 13, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4656), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [149217] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5518), 1, - anon_sym_const, - ACTIONS(5708), 1, + ACTIONS(4288), 9, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(5710), 1, anon_sym_STAR, - ACTIONS(5712), 1, anon_sym_AMP_AMP, - ACTIONS(5714), 1, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4290), 25, anon_sym_AMP, - ACTIONS(5716), 1, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - STATE(3711), 1, - sym_parameter_list, - STATE(4828), 1, - sym__abstract_declarator, - STATE(3567), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4735), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5610), 7, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -307152,42 +342278,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - ACTIONS(4064), 8, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [149259] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4578), 9, anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, + ACTIONS(4580), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, anon_sym_try, anon_sym_requires, - [121649] = 11, + [149301] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(3930), 1, + ACTIONS(4602), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(5649), 1, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4604), 25, + anon_sym_AMP, + anon_sym_extern, anon_sym___attribute__, - ACTIONS(5698), 1, anon_sym___declspec, - ACTIONS(5704), 1, - anon_sym_virtual, - ACTIONS(5341), 2, - anon_sym_AMP, + anon_sym___based, anon_sym_LBRACK, - ACTIONS(5343), 3, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [149343] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4515), 9, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(5696), 5, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4517), 25, + anon_sym_AMP, anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - ACTIONS(5651), 7, + anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -307195,185 +342395,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(3735), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual_function_specifier, - aux_sym__declaration_specifiers_repeat1, - [121703] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1491), 1, + sym_identifier, sym_auto, - ACTIONS(1493), 1, anon_sym_decltype, - ACTIONS(5202), 1, - sym_primitive_type, - ACTIONS(5770), 1, - sym_identifier, - ACTIONS(5772), 1, - anon_sym_COLON_COLON, - ACTIONS(5776), 1, - anon_sym_class, - ACTIONS(5778), 1, - anon_sym_struct, - ACTIONS(5780), 1, - anon_sym_union, - ACTIONS(5814), 1, - anon_sym_enum, - ACTIONS(5816), 1, - anon_sym_typename, - STATE(2075), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2323), 1, - sym_template_type, - STATE(2485), 1, - sym_qualified_type_identifier, - STATE(2494), 1, - sym_decltype_auto, - STATE(3248), 1, - sym__type_specifier, - STATE(5152), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - ACTIONS(1479), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2346), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [121777] = 21, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [149385] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(5868), 1, + ACTIONS(4519), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4521), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, sym_identifier, - ACTIONS(5870), 1, - anon_sym_COLON_COLON, - ACTIONS(5874), 1, - sym_primitive_type, - ACTIONS(5876), 1, - anon_sym_enum, - ACTIONS(5878), 1, - anon_sym_class, - ACTIONS(5880), 1, - anon_sym_struct, - ACTIONS(5882), 1, - anon_sym_union, - ACTIONS(5884), 1, sym_auto, - ACTIONS(5886), 1, anon_sym_decltype, - ACTIONS(5888), 1, - anon_sym_typename, - STATE(2082), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2167), 1, - sym__type_specifier, - STATE(2309), 1, - sym_template_type, - STATE(2418), 1, - sym_qualified_type_identifier, - STATE(2482), 1, - sym_decltype_auto, - STATE(5168), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - ACTIONS(5872), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2493), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [121851] = 3, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [149427] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4383), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(4385), 21, - anon_sym_DOT_DOT_DOT, + ACTIONS(4626), 9, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [121889] = 13, + ACTIONS(4628), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [149469] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5518), 1, - anon_sym_const, - ACTIONS(5708), 1, + ACTIONS(4630), 9, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(5710), 1, anon_sym_STAR, - ACTIONS(5712), 1, anon_sym_AMP_AMP, - ACTIONS(5714), 1, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4632), 25, anon_sym_AMP, - ACTIONS(5716), 1, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - STATE(3711), 1, - sym_parameter_list, - STATE(4833), 1, - sym__abstract_declarator, - STATE(4165), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4735), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5610), 7, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -307381,786 +342512,720 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - ACTIONS(6246), 8, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [149511] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4606), 9, anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, + ACTIONS(4608), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, anon_sym_try, anon_sym_requires, - [121947] = 21, + [149553] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(5792), 1, + ACTIONS(4634), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4636), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, sym_identifier, - ACTIONS(5794), 1, - anon_sym_COLON_COLON, - ACTIONS(5798), 1, - sym_primitive_type, - ACTIONS(5802), 1, - anon_sym_class, - ACTIONS(5804), 1, - anon_sym_struct, - ACTIONS(5806), 1, - anon_sym_union, - ACTIONS(5808), 1, sym_auto, - ACTIONS(5810), 1, anon_sym_decltype, - ACTIONS(5828), 1, - anon_sym_enum, - ACTIONS(5830), 1, - anon_sym_typename, - STATE(2032), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2190), 1, - sym__type_specifier, - STATE(2191), 1, - sym_template_type, - STATE(2280), 1, - sym_decltype_auto, - STATE(2298), 1, - sym_qualified_type_identifier, - STATE(5120), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - ACTIONS(5796), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2222), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [122021] = 21, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [149595] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(5832), 1, + ACTIONS(4369), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4371), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, sym_identifier, - ACTIONS(5834), 1, - anon_sym_COLON_COLON, - ACTIONS(5838), 1, - sym_primitive_type, - ACTIONS(5840), 1, - anon_sym_enum, - ACTIONS(5842), 1, - anon_sym_class, - ACTIONS(5844), 1, - anon_sym_struct, - ACTIONS(5846), 1, - anon_sym_union, - ACTIONS(5848), 1, sym_auto, - ACTIONS(5850), 1, anon_sym_decltype, - ACTIONS(5852), 1, - anon_sym_typename, - STATE(2112), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2285), 1, - sym__type_specifier, - STATE(2590), 1, - sym_template_type, - STATE(2640), 1, - sym_qualified_type_identifier, - STATE(2707), 1, - sym_decltype_auto, - STATE(5092), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - ACTIONS(5836), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2708), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [122095] = 9, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [149637] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4496), 1, - anon_sym_LPAREN2, - ACTIONS(5242), 1, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6009), 1, + anon_sym_AMP_AMP, + ACTIONS(6011), 1, + anon_sym_AMP, + ACTIONS(6015), 1, anon_sym_LBRACK, - ACTIONS(5246), 1, - anon_sym_DOT, - ACTIONS(5248), 1, + ACTIONS(6021), 1, + anon_sym_noexcept, + ACTIONS(6023), 1, + anon_sym_throw, + ACTIONS(6340), 1, + anon_sym___attribute__, + ACTIONS(6346), 1, + anon_sym_requires, + ACTIONS(6523), 1, anon_sym_DASH_GT, - STATE(3005), 1, - sym_argument_list, - ACTIONS(5971), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5058), 10, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - ACTIONS(5056), 13, - anon_sym_DOT_DOT_DOT, + STATE(5034), 1, + sym_trailing_return_type, + STATE(5135), 1, + sym_requires_clause, + ACTIONS(4016), 2, + anon_sym_final, + anon_sym_override, + STATE(4198), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(6007), 6, anon_sym_COMMA, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, anon_sym_GT2, - [122145] = 21, + STATE(4119), 6, + sym_type_qualifier, + sym_virtual_specifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_function_declarator_repeat2, + ACTIONS(6342), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [149707] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(105), 1, + ACTIONS(4567), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4569), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, sym_auto, - ACTIONS(107), 1, anon_sym_decltype, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(2809), 1, - sym_primitive_type, - ACTIONS(3001), 1, - sym_identifier, - ACTIONS(3007), 1, - anon_sym_COLON_COLON, - ACTIONS(3011), 1, - anon_sym_enum, - ACTIONS(3013), 1, - anon_sym_class, - ACTIONS(3015), 1, - anon_sym_struct, - ACTIONS(3017), 1, - anon_sym_union, - ACTIONS(3019), 1, - anon_sym_typename, - STATE(2976), 1, - sym_template_type, - STATE(3044), 1, - sym__type_specifier, - STATE(3123), 1, - sym_decltype_auto, - STATE(3184), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3198), 1, - sym_qualified_type_identifier, - STATE(5131), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - ACTIONS(3009), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3139), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [122219] = 24, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [149749] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4571), 9, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, + anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, - anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(5925), 1, - anon_sym_COMMA, - ACTIONS(6248), 1, anon_sym_SEMI, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [122299] = 24, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4573), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [149791] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4614), 9, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, + anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4616), 25, anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(6250), 1, - anon_sym_COMMA, - ACTIONS(6252), 1, - anon_sym_RPAREN, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [122379] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(2545), 1, - anon_sym_enum, - ACTIONS(2547), 1, - anon_sym_class, - ACTIONS(2549), 1, - anon_sym_struct, - ACTIONS(2551), 1, - anon_sym_union, - ACTIONS(2565), 1, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, sym_auto, - ACTIONS(2567), 1, anon_sym_decltype, - ACTIONS(2569), 1, - anon_sym_typename, - ACTIONS(5335), 1, - sym_identifier, - ACTIONS(5337), 1, - anon_sym_COLON_COLON, - ACTIONS(5339), 1, - sym_primitive_type, - STATE(2182), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2841), 1, - sym_template_type, - STATE(2842), 1, - sym__type_specifier, - STATE(2845), 1, - sym_qualified_type_identifier, - STATE(2878), 1, - sym_decltype_auto, - STATE(5169), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - ACTIONS(2541), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2872), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [122453] = 24, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [149833] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4543), 9, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, + anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, - anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(5925), 1, - anon_sym_COMMA, - ACTIONS(6254), 1, anon_sym_SEMI, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [122533] = 24, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4545), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [149875] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4483), 9, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, + anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4485), 25, anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [149917] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5408), 11, anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(5925), 1, anon_sym_COMMA, - ACTIONS(6256), 1, - anon_sym_SEMI, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [122613] = 21, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5406), 23, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [149959] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(5792), 1, + ACTIONS(4385), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4387), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, sym_identifier, - ACTIONS(5794), 1, - anon_sym_COLON_COLON, - ACTIONS(5798), 1, - sym_primitive_type, - ACTIONS(5800), 1, - anon_sym_enum, - ACTIONS(5802), 1, - anon_sym_class, - ACTIONS(5804), 1, - anon_sym_struct, - ACTIONS(5806), 1, - anon_sym_union, - ACTIONS(5808), 1, sym_auto, - ACTIONS(5810), 1, anon_sym_decltype, - ACTIONS(5812), 1, - anon_sym_typename, - STATE(2032), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2089), 1, - sym__type_specifier, - STATE(2191), 1, - sym_template_type, - STATE(2280), 1, - sym_decltype_auto, - STATE(2298), 1, - sym_qualified_type_identifier, - STATE(5120), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - ACTIONS(5796), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2222), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [122687] = 24, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [150001] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4684), 9, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, + anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4686), 25, anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [150043] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4751), 11, anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(5925), 1, anon_sym_COMMA, - ACTIONS(6258), 1, anon_sym_RPAREN, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, + anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [122767] = 21, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4749), 23, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [150085] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(5868), 1, + ACTIONS(4389), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4391), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, sym_identifier, - ACTIONS(5870), 1, - anon_sym_COLON_COLON, - ACTIONS(5874), 1, - sym_primitive_type, - ACTIONS(5876), 1, - anon_sym_enum, - ACTIONS(5878), 1, - anon_sym_class, - ACTIONS(5880), 1, - anon_sym_struct, - ACTIONS(5882), 1, - anon_sym_union, - ACTIONS(5884), 1, sym_auto, - ACTIONS(5886), 1, anon_sym_decltype, - ACTIONS(5888), 1, - anon_sym_typename, - STATE(2082), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2309), 1, - sym_template_type, - STATE(2310), 1, - sym__type_specifier, - STATE(2418), 1, - sym_qualified_type_identifier, - STATE(2482), 1, - sym_decltype_auto, - STATE(5168), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - ACTIONS(5872), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2493), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [122841] = 24, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [150127] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(3424), 1, + anon_sym_COLON_COLON, + ACTIONS(5458), 1, + anon_sym_LT, + ACTIONS(6525), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, + STATE(4104), 1, + sym_template_argument_list, + ACTIONS(3454), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(3412), 5, + anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, - anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(5925), 1, - anon_sym_COMMA, - ACTIONS(6260), 1, anon_sym_SEMI, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [122921] = 3, + anon_sym_LBRACE, + anon_sym_EQ, + ACTIONS(3407), 23, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + [150179] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3874), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(3876), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(4393), 9, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4395), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, anon_sym_requires, - [122959] = 16, + [150221] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2921), 1, - anon_sym_const, - ACTIONS(3369), 1, + ACTIONS(4397), 9, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(6262), 1, anon_sym_STAR, - ACTIONS(6264), 1, anon_sym_AMP_AMP, - ACTIONS(6266), 1, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4399), 25, anon_sym_AMP, - ACTIONS(6268), 1, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - ACTIONS(6272), 1, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, sym_auto, - ACTIONS(6274), 1, anon_sym_decltype, - STATE(4034), 1, - sym_parameter_list, - STATE(4220), 1, - sym_decltype_auto, - STATE(5062), 1, - sym__abstract_declarator, - STATE(4010), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(5706), 5, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [150263] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4479), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_try, - anon_sym_requires, - STATE(4832), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6270), 7, + anon_sym_COLON, + ACTIONS(4481), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -308168,33 +343233,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [123023] = 11, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [150305] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5230), 1, + ACTIONS(4401), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(5429), 1, - anon_sym_const, - ACTIONS(6279), 1, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4403), 25, + anon_sym_AMP, + anon_sym_extern, anon_sym___attribute__, - ACTIONS(6282), 1, anon_sym___declspec, - ACTIONS(6288), 1, - anon_sym_virtual, - ACTIONS(5220), 2, - anon_sym_AMP, + anon_sym___based, anon_sym_LBRACK, - ACTIONS(5222), 3, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [150347] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4405), 9, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(6276), 5, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4407), 25, + anon_sym_AMP, anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - ACTIONS(6285), 7, + anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -308202,607 +343311,467 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(3735), 8, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - sym_virtual_function_specifier, - aux_sym__declaration_specifiers_repeat1, - [123077] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1491), 1, + sym_identifier, sym_auto, - ACTIONS(1493), 1, anon_sym_decltype, - ACTIONS(5202), 1, - sym_primitive_type, - ACTIONS(5770), 1, - sym_identifier, - ACTIONS(5772), 1, - anon_sym_COLON_COLON, - ACTIONS(5776), 1, - anon_sym_class, - ACTIONS(5778), 1, - anon_sym_struct, - ACTIONS(5780), 1, - anon_sym_union, - ACTIONS(5814), 1, - anon_sym_enum, - ACTIONS(5816), 1, - anon_sym_typename, - STATE(2075), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2308), 1, - sym__type_specifier, - STATE(2323), 1, - sym_template_type, - STATE(2485), 1, - sym_qualified_type_identifier, - STATE(2494), 1, - sym_decltype_auto, - STATE(5152), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - ACTIONS(1479), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2346), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [123151] = 21, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [150389] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1483), 1, - anon_sym_enum, - ACTIONS(1485), 1, - anon_sym_class, - ACTIONS(1487), 1, - anon_sym_struct, - ACTIONS(1489), 1, - anon_sym_union, - ACTIONS(1491), 1, + ACTIONS(4475), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4477), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, sym_auto, - ACTIONS(1493), 1, anon_sym_decltype, - ACTIONS(1495), 1, - anon_sym_typename, - ACTIONS(5196), 1, - sym_identifier, - ACTIONS(5200), 1, - anon_sym_COLON_COLON, - ACTIONS(5202), 1, - sym_primitive_type, - STATE(2075), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2308), 1, - sym__type_specifier, - STATE(2323), 1, - sym_template_type, - STATE(2485), 1, - sym_qualified_type_identifier, - STATE(2494), 1, - sym_decltype_auto, - STATE(5137), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - ACTIONS(1479), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2346), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [123225] = 24, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [150431] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4409), 9, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, + anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4411), 25, anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(5925), 1, - anon_sym_COMMA, - ACTIONS(6291), 1, - anon_sym_RPAREN, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [123305] = 3, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [150473] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3874), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(3876), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(4413), 9, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4415), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, anon_sym_requires, - [123343] = 21, + [150515] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(5832), 1, + ACTIONS(4361), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4363), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, sym_identifier, - ACTIONS(5834), 1, - anon_sym_COLON_COLON, - ACTIONS(5838), 1, - sym_primitive_type, - ACTIONS(5840), 1, - anon_sym_enum, - ACTIONS(5842), 1, - anon_sym_class, - ACTIONS(5844), 1, - anon_sym_struct, - ACTIONS(5846), 1, - anon_sym_union, - ACTIONS(5848), 1, sym_auto, - ACTIONS(5850), 1, anon_sym_decltype, - ACTIONS(5852), 1, - anon_sym_typename, - STATE(2112), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2299), 1, - sym__type_specifier, - STATE(2590), 1, - sym_template_type, - STATE(2640), 1, - sym_qualified_type_identifier, - STATE(2707), 1, - sym_decltype_auto, - STATE(5092), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - ACTIONS(5836), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2708), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [123417] = 24, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [150557] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4467), 9, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, + anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, - anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(5925), 1, - anon_sym_COMMA, - ACTIONS(6293), 1, anon_sym_SEMI, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [123497] = 21, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4469), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [150599] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(5792), 1, + ACTIONS(4463), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4465), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, sym_identifier, - ACTIONS(5794), 1, - anon_sym_COLON_COLON, - ACTIONS(5798), 1, - sym_primitive_type, - ACTIONS(5802), 1, - anon_sym_class, - ACTIONS(5804), 1, - anon_sym_struct, - ACTIONS(5806), 1, - anon_sym_union, - ACTIONS(5808), 1, sym_auto, - ACTIONS(5810), 1, anon_sym_decltype, - ACTIONS(5828), 1, - anon_sym_enum, - ACTIONS(5830), 1, - anon_sym_typename, - STATE(2032), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2094), 1, - sym__type_specifier, - STATE(2191), 1, - sym_template_type, - STATE(2280), 1, - sym_decltype_auto, - STATE(2298), 1, - sym_qualified_type_identifier, - STATE(5120), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - ACTIONS(5796), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2222), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [123571] = 24, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [150641] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4459), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4461), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [150683] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4527), 9, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, + anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4529), 25, anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(5925), 1, - anon_sym_COMMA, - ACTIONS(6295), 1, - anon_sym_RPAREN, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [123651] = 24, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [150725] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4455), 9, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, + anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4457), 25, anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(5925), 1, - anon_sym_COMMA, - ACTIONS(6297), 1, - anon_sym_RPAREN, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [123731] = 24, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [150767] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4451), 9, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, + anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4453), 25, anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(5925), 1, - anon_sym_COMMA, - ACTIONS(6299), 1, - anon_sym_RPAREN, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [123811] = 3, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [150809] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3874), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(3876), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(4447), 9, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4449), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, anon_sym_requires, - [123849] = 14, + [150851] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5518), 1, - anon_sym_const, - ACTIONS(5602), 1, + ACTIONS(4531), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(5604), 1, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4533), 25, anon_sym_AMP, - ACTIONS(5612), 1, - anon_sym_DASH_GT, - ACTIONS(5614), 1, - anon_sym_noexcept, - ACTIONS(5616), 1, - anon_sym_throw, - ACTIONS(5618), 1, - anon_sym_requires, - ACTIONS(6303), 1, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - STATE(4799), 1, - sym_requires_clause, - STATE(4818), 1, - sym_trailing_return_type, - STATE(3984), 5, - sym_type_qualifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - ACTIONS(5610), 7, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -308810,735 +343779,559 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - ACTIONS(6301), 8, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [150893] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4443), 9, anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, + ACTIONS(4445), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, anon_sym_try, - [123909] = 3, + anon_sym_requires, + [150935] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4849), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4847), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(4439), 9, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4441), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [123947] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(105), 1, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, sym_auto, - ACTIONS(107), 1, anon_sym_decltype, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1427), 1, - anon_sym_enum, - ACTIONS(1429), 1, - anon_sym_class, - ACTIONS(1431), 1, - anon_sym_struct, - ACTIONS(1433), 1, - anon_sym_union, - ACTIONS(1447), 1, - anon_sym_typename, - ACTIONS(2809), 1, - sym_primitive_type, - ACTIONS(3365), 1, - sym_identifier, - ACTIONS(3377), 1, - anon_sym_COLON_COLON, - STATE(2737), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2976), 1, - sym_template_type, - STATE(3044), 1, - sym__type_specifier, - STATE(3123), 1, - sym_decltype_auto, - STATE(3198), 1, - sym_qualified_type_identifier, - STATE(5144), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - ACTIONS(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3139), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [124021] = 24, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [150977] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4431), 9, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, + anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4433), 25, anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [151019] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4823), 11, anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(5925), 1, anon_sym_COMMA, - ACTIONS(6305), 1, - anon_sym_SEMI, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [124101] = 24, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4821), 23, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [151061] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4666), 9, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, + anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, - anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(5925), 1, - anon_sym_COMMA, - ACTIONS(6307), 1, anon_sym_SEMI, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [124181] = 21, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4668), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [151103] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4563), 9, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(6014), 1, - anon_sym_SLASH, - ACTIONS(6016), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6018), 1, + anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(6020), 1, - anon_sym_PIPE, - ACTIONS(6022), 1, - anon_sym_CARET, - ACTIONS(6024), 1, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4565), 25, anon_sym_AMP, - ACTIONS(6030), 1, - anon_sym_GT_EQ, - ACTIONS(6038), 1, - anon_sym_LT_EQ_GT, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6010), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6012), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6026), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6032), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6028), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4916), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_QMARK, - [124255] = 24, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [151145] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4670), 9, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, + anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, - anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(5925), 1, - anon_sym_COMMA, - ACTIONS(6309), 1, anon_sym_SEMI, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [124335] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(63), 1, - anon_sym_enum, - ACTIONS(65), 1, - anon_sym_class, - ACTIONS(67), 1, - anon_sym_struct, - ACTIONS(69), 1, - anon_sym_union, - ACTIONS(105), 1, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4672), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, sym_auto, - ACTIONS(107), 1, anon_sym_decltype, - ACTIONS(113), 1, - anon_sym_typename, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(2809), 1, - sym_primitive_type, - ACTIONS(3001), 1, - sym_identifier, - ACTIONS(3007), 1, - anon_sym_COLON_COLON, - STATE(2737), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2976), 1, - sym_template_type, - STATE(3044), 1, - sym__type_specifier, - STATE(3123), 1, - sym_decltype_auto, - STATE(3198), 1, - sym_qualified_type_identifier, - STATE(5131), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - ACTIONS(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3139), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [124409] = 24, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [151187] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4559), 9, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, + anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4561), 25, anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(5925), 1, - anon_sym_COMMA, - ACTIONS(6311), 1, - anon_sym_RPAREN, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [124489] = 14, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [151229] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4638), 9, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(6014), 1, - anon_sym_SLASH, - ACTIONS(6038), 1, - anon_sym_LT_EQ_GT, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6010), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6012), 2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6032), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4910), 5, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4904), 10, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_QMARK, - [124549] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(105), 1, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4640), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, sym_auto, - ACTIONS(107), 1, anon_sym_decltype, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(2809), 1, - sym_primitive_type, - ACTIONS(3365), 1, - sym_identifier, - ACTIONS(3377), 1, - anon_sym_COLON_COLON, - ACTIONS(5359), 1, - anon_sym_enum, - ACTIONS(5361), 1, - anon_sym_class, - ACTIONS(5363), 1, - anon_sym_struct, - ACTIONS(5365), 1, - anon_sym_union, - ACTIONS(5367), 1, - anon_sym_typename, - STATE(2976), 1, - sym_template_type, - STATE(3044), 1, - sym__type_specifier, - STATE(3123), 1, - sym_decltype_auto, - STATE(3184), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3198), 1, - sym_qualified_type_identifier, - STATE(5144), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - ACTIONS(3009), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3139), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [124623] = 24, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [151271] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4674), 9, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(4892), 1, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4676), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [151313] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6009), 1, anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(6011), 1, anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(5925), 1, + ACTIONS(6021), 1, + anon_sym_noexcept, + ACTIONS(6023), 1, + anon_sym_throw, + ACTIONS(6057), 1, + anon_sym_LBRACK, + ACTIONS(6340), 1, + anon_sym___attribute__, + ACTIONS(6346), 1, + anon_sym_requires, + ACTIONS(6523), 1, + anon_sym_DASH_GT, + STATE(5061), 1, + sym_trailing_return_type, + STATE(5115), 1, + sym_requires_clause, + ACTIONS(4016), 2, + anon_sym_final, + anon_sym_override, + STATE(4013), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(6055), 6, anon_sym_COMMA, - ACTIONS(6313), 1, anon_sym_RPAREN, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [124703] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(105), 1, - sym_auto, - ACTIONS(107), 1, - anon_sym_decltype, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(2809), 1, - sym_primitive_type, - ACTIONS(3365), 1, - sym_identifier, - ACTIONS(3377), 1, - anon_sym_COLON_COLON, - ACTIONS(5359), 1, - anon_sym_enum, - ACTIONS(5361), 1, - anon_sym_class, - ACTIONS(5363), 1, - anon_sym_struct, - ACTIONS(5365), 1, - anon_sym_union, - ACTIONS(5367), 1, - anon_sym_typename, - STATE(2976), 1, - sym_template_type, - STATE(3123), 1, - sym_decltype_auto, - STATE(3184), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3198), 1, - sym_qualified_type_identifier, - STATE(5144), 1, - sym__scope_resolution, - STATE(5234), 1, - sym__type_specifier, - STATE(6663), 1, - sym_dependent_type_identifier, - ACTIONS(3009), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3139), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [124777] = 21, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + STATE(4116), 6, + sym_type_qualifier, + sym_virtual_specifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_function_declarator_repeat2, + ACTIONS(6342), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [151383] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(5792), 1, + ACTIONS(4535), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4537), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, sym_identifier, - ACTIONS(5794), 1, - anon_sym_COLON_COLON, - ACTIONS(5798), 1, - sym_primitive_type, - ACTIONS(5800), 1, - anon_sym_enum, - ACTIONS(5802), 1, - anon_sym_class, - ACTIONS(5804), 1, - anon_sym_struct, - ACTIONS(5806), 1, - anon_sym_union, - ACTIONS(5808), 1, sym_auto, - ACTIONS(5810), 1, anon_sym_decltype, - ACTIONS(5812), 1, - anon_sym_typename, - STATE(2032), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2094), 1, - sym__type_specifier, - STATE(2191), 1, - sym_template_type, - STATE(2280), 1, - sym_decltype_auto, - STATE(2298), 1, - sym_qualified_type_identifier, - STATE(5120), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - ACTIONS(5796), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2222), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [124851] = 16, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [151425] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2921), 1, - anon_sym_const, - ACTIONS(3369), 1, + ACTIONS(4555), 9, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(6262), 1, anon_sym_STAR, - ACTIONS(6264), 1, anon_sym_AMP_AMP, - ACTIONS(6266), 1, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4557), 25, anon_sym_AMP, - ACTIONS(6268), 1, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - ACTIONS(6272), 1, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, sym_auto, - ACTIONS(6274), 1, anon_sym_decltype, - STATE(4034), 1, - sym_parameter_list, - STATE(4220), 1, - sym_decltype_auto, - STATE(5023), 1, - sym__abstract_declarator, - STATE(4054), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(5722), 5, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [151467] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4646), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_try, - anon_sym_requires, - STATE(4832), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6270), 7, + anon_sym_COLON, + ACTIONS(4648), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -309546,1556 +344339,1403 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [124915] = 24, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [151509] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4427), 9, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, + anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4429), 25, anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(5925), 1, - anon_sym_COMMA, - ACTIONS(6315), 1, - anon_sym_RPAREN, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [124995] = 24, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [151551] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4539), 9, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, + anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4541), 25, anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(5925), 1, - anon_sym_COMMA, - ACTIONS(6317), 1, - anon_sym_RPAREN, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [125075] = 24, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [151593] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4381), 9, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, + anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4383), 25, anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(5925), 1, - anon_sym_COMMA, - ACTIONS(6319), 1, - anon_sym_RPAREN, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [125155] = 24, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [151635] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4658), 9, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, + anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, - anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(5925), 1, - anon_sym_COMMA, - ACTIONS(6321), 1, anon_sym_SEMI, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [125235] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(5792), 1, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4660), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, sym_identifier, - ACTIONS(5794), 1, - anon_sym_COLON_COLON, - ACTIONS(5798), 1, - sym_primitive_type, - ACTIONS(5802), 1, - anon_sym_class, - ACTIONS(5804), 1, - anon_sym_struct, - ACTIONS(5806), 1, - anon_sym_union, - ACTIONS(5808), 1, sym_auto, - ACTIONS(5810), 1, anon_sym_decltype, - ACTIONS(5828), 1, - anon_sym_enum, - ACTIONS(5830), 1, - anon_sym_typename, - STATE(2032), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2089), 1, - sym__type_specifier, - STATE(2191), 1, - sym_template_type, - STATE(2280), 1, - sym_decltype_auto, - STATE(2298), 1, - sym_qualified_type_identifier, - STATE(5120), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - ACTIONS(5796), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2222), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [125309] = 24, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [151677] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4547), 9, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, + anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4549), 25, anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(5925), 1, - anon_sym_COMMA, - ACTIONS(6323), 1, - anon_sym_RPAREN, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [125389] = 24, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [151719] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4523), 9, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, + anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4525), 25, anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(5925), 1, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [151761] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4678), 9, anon_sym_COMMA, - ACTIONS(6325), 1, - anon_sym_SEMI, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [125469] = 21, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4680), 25, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [151803] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4496), 1, + ACTIONS(4618), 9, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(5242), 1, - anon_sym_LBRACK, - ACTIONS(5246), 1, - anon_sym_DOT, - ACTIONS(5248), 1, - anon_sym_DASH_GT, - ACTIONS(5947), 1, - anon_sym_SLASH, - ACTIONS(5949), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5951), 1, + anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(5953), 1, - anon_sym_PIPE, - ACTIONS(5955), 1, - anon_sym_CARET, - ACTIONS(5957), 1, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(4620), 25, anon_sym_AMP, - ACTIONS(5963), 1, - anon_sym_LT_LT, - ACTIONS(5965), 1, - anon_sym_GT_GT, - ACTIONS(5969), 1, - anon_sym_LT_EQ_GT, - STATE(3005), 1, - sym_argument_list, - ACTIONS(5943), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5945), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5959), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5971), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5076), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_GT2, - ACTIONS(5961), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [125543] = 24, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [151845] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(3424), 1, + anon_sym_COLON_COLON, + ACTIONS(3439), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, + ACTIONS(5500), 1, + anon_sym_LT, + STATE(4117), 1, + sym_template_argument_list, + ACTIONS(3432), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(3435), 4, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + anon_sym_SEMI, + ACTIONS(3430), 23, anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(5925), 1, - anon_sym_COMMA, - ACTIONS(6327), 1, - anon_sym_RPAREN, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [125623] = 24, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [151896] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(3424), 1, + anon_sym_COLON_COLON, + ACTIONS(5500), 1, + anon_sym_LT, + ACTIONS(6165), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, + STATE(4117), 1, + sym_template_argument_list, + ACTIONS(3454), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(3412), 4, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, - anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(5925), 1, - anon_sym_COMMA, - ACTIONS(6329), 1, anon_sym_SEMI, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [125703] = 21, + ACTIONS(3407), 23, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [151947] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(4496), 1, - anon_sym_LPAREN2, - ACTIONS(5242), 1, - anon_sym_LBRACK, - ACTIONS(5246), 1, - anon_sym_DOT, - ACTIONS(5248), 1, - anon_sym_DASH_GT, - ACTIONS(5947), 1, - anon_sym_SLASH, - ACTIONS(5949), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5951), 1, + ACTIONS(5753), 1, + anon_sym_const, + ACTIONS(6009), 1, anon_sym_AMP_AMP, - ACTIONS(5953), 1, - anon_sym_PIPE, - ACTIONS(5955), 1, - anon_sym_CARET, - ACTIONS(5957), 1, + ACTIONS(6011), 1, anon_sym_AMP, - ACTIONS(5963), 1, - anon_sym_LT_LT, - ACTIONS(5965), 1, - anon_sym_GT_GT, - ACTIONS(5969), 1, - anon_sym_LT_EQ_GT, - STATE(3005), 1, - sym_argument_list, - ACTIONS(5943), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5945), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5959), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5971), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4972), 4, - anon_sym_DOT_DOT_DOT, + ACTIONS(6019), 1, + anon_sym_DASH_GT, + ACTIONS(6021), 1, + anon_sym_noexcept, + ACTIONS(6023), 1, + anon_sym_throw, + ACTIONS(6025), 1, + anon_sym_requires, + ACTIONS(6529), 1, + anon_sym_LBRACK, + STATE(5077), 1, + sym_requires_clause, + STATE(5129), 1, + sym_trailing_return_type, + ACTIONS(4016), 2, + anon_sym_final, + anon_sym_override, + STATE(4123), 6, + sym_type_qualifier, + sym_virtual_specifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_function_declarator_repeat2, + ACTIONS(6017), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(6527), 8, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_GT2, - ACTIONS(5961), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [125777] = 21, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [152012] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1531), 1, - sym_primitive_type, - ACTIONS(1541), 1, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(4255), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6340), 1, + anon_sym___attribute__, + ACTIONS(6533), 1, + anon_sym___declspec, + ACTIONS(6535), 1, sym_auto, - ACTIONS(1543), 1, + ACTIONS(6537), 1, anon_sym_decltype, - ACTIONS(3001), 1, - sym_identifier, - ACTIONS(5345), 1, - anon_sym_COLON_COLON, - ACTIONS(5349), 1, - anon_sym_enum, - ACTIONS(5351), 1, - anon_sym_class, - ACTIONS(5353), 1, - anon_sym_struct, - ACTIONS(5355), 1, - anon_sym_union, - ACTIONS(5357), 1, - anon_sym_typename, - STATE(2976), 1, - sym_template_type, - STATE(3324), 1, - sym__type_specifier, - STATE(3366), 1, + ACTIONS(6539), 1, + anon_sym_virtual, + STATE(3441), 1, sym_decltype_auto, - STATE(3400), 1, - sym_qualified_type_identifier, - STATE(3690), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5088), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - ACTIONS(5347), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3371), 8, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_decltype, - sym_class_specifier, - sym_dependent_type, - [125851] = 24, + ACTIONS(5488), 2, + anon_sym_AMP, + anon_sym_LBRACK, + ACTIONS(5490), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(6531), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(6342), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(4129), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + [152075] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, + ACTIONS(5753), 1, + anon_sym_const, + ACTIONS(6009), 1, anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(6011), 1, anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(5925), 1, + ACTIONS(6019), 1, + anon_sym_DASH_GT, + ACTIONS(6021), 1, + anon_sym_noexcept, + ACTIONS(6023), 1, + anon_sym_throw, + ACTIONS(6025), 1, + anon_sym_requires, + ACTIONS(6543), 1, + anon_sym_LBRACK, + STATE(5076), 1, + sym_trailing_return_type, + STATE(5176), 1, + sym_requires_clause, + ACTIONS(4016), 2, + anon_sym_final, + anon_sym_override, + STATE(4075), 6, + sym_type_qualifier, + sym_virtual_specifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_function_declarator_repeat2, + ACTIONS(6017), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(6541), 8, anon_sym_COMMA, - ACTIONS(6331), 1, + anon_sym_LPAREN2, anon_sym_SEMI, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [125931] = 23, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [152140] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(3424), 1, + anon_sym_COLON_COLON, + ACTIONS(3935), 1, + anon_sym_SEMI, + ACTIONS(5500), 1, + anon_sym_LT, + ACTIONS(6165), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, + STATE(3969), 1, + sym_template_argument_list, + ACTIONS(3454), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(3412), 3, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(3407), 23, anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(6333), 1, - anon_sym_SEMI, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [126008] = 23, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [152193] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(5753), 1, + anon_sym_const, + ACTIONS(6547), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, + ACTIONS(6549), 1, + anon_sym_STAR, + ACTIONS(6551), 1, anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(6553), 1, anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(6335), 1, + ACTIONS(6555), 1, + anon_sym_LBRACK, + ACTIONS(6557), 1, + sym_auto, + ACTIONS(6559), 1, + anon_sym_decltype, + STATE(4059), 1, + sym_decltype_auto, + STATE(4170), 1, + sym_parameter_list, + STATE(5075), 1, + sym__abstract_declarator, + STATE(4138), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5059), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6017), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(6545), 8, + anon_sym_COMMA, anon_sym_SEMI, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [126085] = 23, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + anon_sym_requires, + [152260] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, + ACTIONS(5753), 1, + anon_sym_const, + ACTIONS(6009), 1, anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(6011), 1, anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(6337), 1, + ACTIONS(6015), 1, + anon_sym_LBRACK, + ACTIONS(6019), 1, + anon_sym_DASH_GT, + ACTIONS(6021), 1, + anon_sym_noexcept, + ACTIONS(6023), 1, + anon_sym_throw, + ACTIONS(6025), 1, + anon_sym_requires, + STATE(5132), 1, + sym_trailing_return_type, + STATE(5135), 1, + sym_requires_clause, + ACTIONS(4016), 2, + anon_sym_final, + anon_sym_override, + STATE(4123), 6, + sym_type_qualifier, + sym_virtual_specifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_function_declarator_repeat2, + ACTIONS(6017), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(6007), 8, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_SEMI, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [126162] = 23, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [152325] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(3424), 1, + anon_sym_COLON_COLON, + ACTIONS(3426), 1, + anon_sym_SEMI, + ACTIONS(5500), 1, + anon_sym_LT, + STATE(3279), 1, + sym_template_argument_list, + ACTIONS(3412), 5, anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3407), 24, anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(6339), 1, - anon_sym_SEMI, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [126239] = 23, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [152374] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(5753), 1, + anon_sym_const, + ACTIONS(6547), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, + ACTIONS(6549), 1, + anon_sym_STAR, + ACTIONS(6551), 1, anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(6553), 1, anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(6341), 1, + ACTIONS(6555), 1, + anon_sym_LBRACK, + ACTIONS(6557), 1, + sym_auto, + ACTIONS(6559), 1, + anon_sym_decltype, + STATE(4059), 1, + sym_decltype_auto, + STATE(4170), 1, + sym_parameter_list, + STATE(5086), 1, + sym__abstract_declarator, + STATE(4134), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5059), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6017), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(6561), 8, + anon_sym_COMMA, anon_sym_SEMI, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [126316] = 19, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + anon_sym_requires, + [152441] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(3424), 1, + anon_sym_COLON_COLON, + ACTIONS(3439), 1, anon_sym_LBRACK, - ACTIONS(5026), 1, - anon_sym_PIPE, - ACTIONS(5439), 1, - anon_sym_DOT, - ACTIONS(5441), 1, - anon_sym_DASH_GT, - ACTIONS(6347), 1, - anon_sym_SLASH, - ACTIONS(6349), 1, - anon_sym_CARET, - ACTIONS(6351), 1, - anon_sym_AMP, - ACTIONS(6357), 1, - anon_sym_GT_EQ, - ACTIONS(6361), 1, - anon_sym_LT_EQ_GT, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6343), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6345), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6353), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6359), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6355), 3, - anon_sym_GT, - anon_sym_LT_EQ, + ACTIONS(3442), 1, + anon_sym_SEMI, + ACTIONS(5500), 1, anon_sym_LT, - ACTIONS(5024), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, + STATE(3969), 1, + sym_template_argument_list, + ACTIONS(3432), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(3435), 3, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_COLON, - anon_sym_QMARK, - [126385] = 18, + ACTIONS(3430), 23, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [152494] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(5026), 1, - anon_sym_PIPE, - ACTIONS(5439), 1, - anon_sym_DOT, - ACTIONS(5441), 1, - anon_sym_DASH_GT, - ACTIONS(6347), 1, - anon_sym_SLASH, - ACTIONS(6351), 1, - anon_sym_AMP, - ACTIONS(6357), 1, - anon_sym_GT_EQ, - ACTIONS(6361), 1, - anon_sym_LT_EQ_GT, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6343), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6345), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6353), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6359), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6355), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(5024), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, + ACTIONS(5753), 1, + anon_sym_const, + ACTIONS(6009), 1, anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(6011), 1, + anon_sym_AMP, + ACTIONS(6019), 1, + anon_sym_DASH_GT, + ACTIONS(6021), 1, + anon_sym_noexcept, + ACTIONS(6023), 1, + anon_sym_throw, + ACTIONS(6025), 1, + anon_sym_requires, + ACTIONS(6565), 1, + anon_sym_LBRACK, + STATE(5130), 1, + sym_trailing_return_type, + STATE(5172), 1, + sym_requires_clause, + ACTIONS(4016), 2, + anon_sym_final, + anon_sym_override, + STATE(4123), 6, + sym_type_qualifier, + sym_virtual_specifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_function_declarator_repeat2, + ACTIONS(6017), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(6563), 8, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_COLON, - anon_sym_QMARK, - [126452] = 8, + anon_sym_try, + [152559] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(5439), 1, - anon_sym_DOT, - ACTIONS(5441), 1, - anon_sym_DASH_GT, - STATE(2534), 1, - sym_argument_list, - ACTIONS(4942), 8, + STATE(1716), 1, + sym__fold_operator, + ACTIONS(6569), 13, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(4940), 16, - anon_sym_DOT_DOT_DOT, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(6567), 19, + anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - [126499] = 17, + anon_sym_LT_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_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_DOT_STAR, + anon_sym_DASH_GT_STAR, + [152602] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(5439), 1, - anon_sym_DOT, - ACTIONS(5441), 1, - anon_sym_DASH_GT, - ACTIONS(6347), 1, - anon_sym_SLASH, - ACTIONS(6357), 1, - anon_sym_GT_EQ, - ACTIONS(6361), 1, - anon_sym_LT_EQ_GT, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5026), 2, - anon_sym_PIPE, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(4255), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6340), 1, + anon_sym___attribute__, + ACTIONS(6533), 1, + anon_sym___declspec, + ACTIONS(6535), 1, + sym_auto, + ACTIONS(6537), 1, + anon_sym_decltype, + ACTIONS(6539), 1, + anon_sym_virtual, + STATE(3441), 1, + sym_decltype_auto, + ACTIONS(5480), 2, anon_sym_AMP, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6343), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6345), 2, + anon_sym_LBRACK, + ACTIONS(5482), 3, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6353), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6359), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6355), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(5024), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_COLON, - anon_sym_QMARK, - [126564] = 23, + ACTIONS(6531), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(6342), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(4178), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + [152665] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(5470), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(5439), 1, - anon_sym_DOT, - ACTIONS(5441), 1, - anon_sym_DASH_GT, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6347), 1, - anon_sym_SLASH, - ACTIONS(6349), 1, - anon_sym_CARET, - ACTIONS(6351), 1, - anon_sym_AMP, - ACTIONS(6357), 1, - anon_sym_GT_EQ, - ACTIONS(6361), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6363), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6365), 1, - anon_sym_AMP_AMP, - ACTIONS(6367), 1, - anon_sym_PIPE, - ACTIONS(6369), 1, - anon_sym_COLON, - ACTIONS(6371), 1, - anon_sym_QMARK, - STATE(2534), 1, + ACTIONS(6571), 1, + sym_identifier, + ACTIONS(6573), 1, + anon_sym_COLON_COLON, + ACTIONS(6577), 1, + sym_primitive_type, + ACTIONS(6579), 1, + anon_sym_enum, + ACTIONS(6581), 1, + anon_sym_class, + ACTIONS(6583), 1, + anon_sym_struct, + ACTIONS(6585), 1, + anon_sym_union, + ACTIONS(6587), 1, + sym_auto, + ACTIONS(6589), 1, + anon_sym_decltype, + ACTIONS(6591), 1, + anon_sym_typename, + STATE(1831), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1902), 1, + sym__type_specifier, + STATE(2172), 1, + sym_template_type, + STATE(2270), 1, + sym_decltype_auto, + STATE(2418), 1, + sym_qualified_type_identifier, + STATE(4169), 1, sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6343), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6345), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6353), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6359), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6355), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [126641] = 23, + STATE(5441), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(6575), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2284), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [152745] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2699), 1, + sym_auto, + ACTIONS(2701), 1, + anon_sym_decltype, + ACTIONS(5470), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, - anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(6373), 1, - anon_sym_RPAREN, - STATE(2534), 1, + ACTIONS(5564), 1, + sym_primitive_type, + ACTIONS(6593), 1, + sym_identifier, + ACTIONS(6595), 1, + anon_sym_COLON_COLON, + ACTIONS(6597), 1, + anon_sym_enum, + ACTIONS(6599), 1, + anon_sym_class, + ACTIONS(6601), 1, + anon_sym_struct, + ACTIONS(6603), 1, + anon_sym_union, + ACTIONS(6605), 1, + anon_sym_typename, + STATE(2300), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3118), 1, + sym_template_type, + STATE(3138), 1, + sym_decltype_auto, + STATE(3140), 1, + sym_qualified_type_identifier, + STATE(3297), 1, + sym__type_specifier, + STATE(4156), 1, sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [126718] = 16, + STATE(5386), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(2675), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3139), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [152825] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1495), 1, + sym_auto, + ACTIONS(1497), 1, + anon_sym_decltype, + ACTIONS(5470), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(5439), 1, - anon_sym_DOT, - ACTIONS(5441), 1, - anon_sym_DASH_GT, - ACTIONS(6347), 1, - anon_sym_SLASH, - ACTIONS(6357), 1, - anon_sym_GT_EQ, - ACTIONS(6361), 1, - anon_sym_LT_EQ_GT, - STATE(2534), 1, + ACTIONS(5524), 1, + sym_primitive_type, + ACTIONS(6607), 1, + sym_identifier, + ACTIONS(6609), 1, + anon_sym_COLON_COLON, + ACTIONS(6611), 1, + anon_sym_enum, + ACTIONS(6613), 1, + anon_sym_class, + ACTIONS(6615), 1, + anon_sym_struct, + ACTIONS(6617), 1, + anon_sym_union, + ACTIONS(6619), 1, + anon_sym_typename, + STATE(1935), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2664), 1, + sym_template_type, + STATE(2731), 1, + sym_decltype_auto, + STATE(2847), 1, + sym_qualified_type_identifier, + STATE(3246), 1, + sym__type_specifier, + STATE(4137), 1, sym_argument_list, - ACTIONS(5026), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6343), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6345), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6359), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6355), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(5024), 8, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_COLON, - anon_sym_QMARK, - [126781] = 14, + STATE(5374), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(1483), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2780), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [152905] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(5439), 1, - anon_sym_DOT, - ACTIONS(5441), 1, - anon_sym_DASH_GT, - ACTIONS(6347), 1, - anon_sym_SLASH, - ACTIONS(6361), 1, - anon_sym_LT_EQ_GT, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6343), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6345), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6359), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5026), 5, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(5024), 9, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_QMARK, - [126840] = 12, + ACTIONS(2625), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2623), 30, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_typename, + anon_sym_template, + [152945] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(2909), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2907), 30, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_typename, + anon_sym_template, + [152985] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(5470), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(5439), 1, - anon_sym_DOT, - ACTIONS(5441), 1, - anon_sym_DASH_GT, - ACTIONS(6347), 1, - anon_sym_SLASH, - STATE(2534), 1, + ACTIONS(6621), 1, + sym_identifier, + ACTIONS(6623), 1, + anon_sym_COLON_COLON, + ACTIONS(6627), 1, + sym_primitive_type, + ACTIONS(6629), 1, + anon_sym_enum, + ACTIONS(6631), 1, + anon_sym_class, + ACTIONS(6633), 1, + anon_sym_struct, + ACTIONS(6635), 1, + anon_sym_union, + ACTIONS(6637), 1, + sym_auto, + ACTIONS(6639), 1, + anon_sym_decltype, + ACTIONS(6641), 1, + anon_sym_typename, + STATE(1910), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2169), 1, + sym__type_specifier, + STATE(2609), 1, + sym_template_type, + STATE(2762), 1, + sym_decltype_auto, + STATE(2915), 1, + sym_qualified_type_identifier, + STATE(4176), 1, sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6343), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6345), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5026), 5, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(5024), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - [126895] = 13, + STATE(5412), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(6625), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2790), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [153065] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6535), 1, + sym_auto, + ACTIONS(6537), 1, + anon_sym_decltype, + ACTIONS(6547), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(6555), 1, anon_sym_LBRACK, - ACTIONS(5439), 1, - anon_sym_DOT, - ACTIONS(5441), 1, - anon_sym_DASH_GT, - ACTIONS(6347), 1, - anon_sym_SLASH, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6343), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6345), 2, + ACTIONS(6643), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6359), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5026), 5, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(5024), 10, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, + ACTIONS(6645), 1, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - [126952] = 23, + ACTIONS(6647), 1, + anon_sym_AMP, + STATE(3441), 1, + sym_decltype_auto, + STATE(4204), 1, + sym_parameter_list, + STATE(5201), 1, + sym__abstract_declarator, + STATE(4206), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5059), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6342), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(6545), 7, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + anon_sym_requires, + [153131] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(5470), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(5439), 1, - anon_sym_DOT, - ACTIONS(5441), 1, - anon_sym_DASH_GT, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6347), 1, - anon_sym_SLASH, - ACTIONS(6349), 1, - anon_sym_CARET, - ACTIONS(6351), 1, - anon_sym_AMP, - ACTIONS(6357), 1, - anon_sym_GT_EQ, - ACTIONS(6361), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6363), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6365), 1, - anon_sym_AMP_AMP, - ACTIONS(6367), 1, - anon_sym_PIPE, - ACTIONS(6371), 1, - anon_sym_QMARK, - ACTIONS(6375), 1, - anon_sym_COLON, - STATE(2534), 1, + ACTIONS(6649), 1, + sym_identifier, + ACTIONS(6651), 1, + anon_sym_COLON_COLON, + ACTIONS(6655), 1, + sym_primitive_type, + ACTIONS(6657), 1, + anon_sym_enum, + ACTIONS(6659), 1, + anon_sym_class, + ACTIONS(6661), 1, + anon_sym_struct, + ACTIONS(6663), 1, + anon_sym_union, + ACTIONS(6665), 1, + sym_auto, + ACTIONS(6667), 1, + anon_sym_decltype, + ACTIONS(6669), 1, + anon_sym_typename, + STATE(1871), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2031), 1, + sym__type_specifier, + STATE(2555), 1, + sym_template_type, + STATE(2594), 1, + sym_qualified_type_identifier, + STATE(2612), 1, + sym_decltype_auto, + STATE(4164), 1, sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6343), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6345), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6353), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6359), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6355), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [127029] = 14, + STATE(5439), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(6653), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2614), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [153211] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(6377), 1, - sym_identifier, - ACTIONS(6379), 1, - anon_sym_LPAREN2, - ACTIONS(6381), 1, - anon_sym_STAR, - STATE(4135), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4933), 1, - sym__type_declarator, - STATE(6677), 1, - sym_ms_based_modifier, - ACTIONS(2919), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3885), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4191), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2917), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(5193), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(2921), 8, + ACTIONS(2621), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2619), 30, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -311104,436 +345744,383 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [127088] = 23, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_typename, + anon_sym_template, + [153251] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6009), 1, anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(6011), 1, anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(6383), 1, - anon_sym_RPAREN, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [127165] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(6015), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(6021), 1, + anon_sym_noexcept, + ACTIONS(6023), 1, + anon_sym_throw, + ACTIONS(6344), 1, anon_sym_DASH_GT, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6014), 1, - anon_sym_SLASH, - ACTIONS(6016), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6018), 1, - anon_sym_AMP_AMP, - ACTIONS(6020), 1, - anon_sym_PIPE, - ACTIONS(6022), 1, - anon_sym_CARET, - ACTIONS(6024), 1, - anon_sym_AMP, - ACTIONS(6030), 1, - anon_sym_GT_EQ, - ACTIONS(6036), 1, - anon_sym_QMARK, - ACTIONS(6038), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6385), 1, - anon_sym_RBRACK, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6010), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6012), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6026), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6032), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6028), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [127242] = 23, + ACTIONS(6346), 1, + anon_sym_requires, + STATE(5034), 1, + sym_trailing_return_type, + STATE(5135), 1, + sym_requires_clause, + ACTIONS(4016), 2, + anon_sym_final, + anon_sym_override, + STATE(4111), 6, + sym_type_qualifier, + sym_virtual_specifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_function_declarator_repeat2, + ACTIONS(6007), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + ACTIONS(6342), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [153315] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1495), 1, + sym_auto, + ACTIONS(1497), 1, + anon_sym_decltype, + ACTIONS(5470), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, - anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(6387), 1, - anon_sym_RPAREN, - STATE(2534), 1, + ACTIONS(5524), 1, + sym_primitive_type, + ACTIONS(6607), 1, + sym_identifier, + ACTIONS(6609), 1, + anon_sym_COLON_COLON, + ACTIONS(6611), 1, + anon_sym_enum, + ACTIONS(6613), 1, + anon_sym_class, + ACTIONS(6615), 1, + anon_sym_struct, + ACTIONS(6617), 1, + anon_sym_union, + ACTIONS(6619), 1, + anon_sym_typename, + STATE(1935), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2664), 1, + sym_template_type, + STATE(2731), 1, + sym_decltype_auto, + STATE(2847), 1, + sym_qualified_type_identifier, + STATE(3248), 1, + sym__type_specifier, + STATE(4139), 1, sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [127319] = 23, + STATE(5374), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(1483), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2780), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [153395] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(5470), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(5439), 1, - anon_sym_DOT, - ACTIONS(5441), 1, - anon_sym_DASH_GT, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6347), 1, - anon_sym_SLASH, - ACTIONS(6349), 1, - anon_sym_CARET, - ACTIONS(6351), 1, - anon_sym_AMP, - ACTIONS(6357), 1, - anon_sym_GT_EQ, - ACTIONS(6361), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6363), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6365), 1, - anon_sym_AMP_AMP, - ACTIONS(6367), 1, - anon_sym_PIPE, - ACTIONS(6371), 1, - anon_sym_QMARK, - ACTIONS(6389), 1, - anon_sym_COLON, - STATE(2534), 1, + ACTIONS(6621), 1, + sym_identifier, + ACTIONS(6623), 1, + anon_sym_COLON_COLON, + ACTIONS(6627), 1, + sym_primitive_type, + ACTIONS(6629), 1, + anon_sym_enum, + ACTIONS(6631), 1, + anon_sym_class, + ACTIONS(6633), 1, + anon_sym_struct, + ACTIONS(6635), 1, + anon_sym_union, + ACTIONS(6637), 1, + sym_auto, + ACTIONS(6639), 1, + anon_sym_decltype, + ACTIONS(6641), 1, + anon_sym_typename, + STATE(1910), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2184), 1, + sym__type_specifier, + STATE(2609), 1, + sym_template_type, + STATE(2762), 1, + sym_decltype_auto, + STATE(2915), 1, + sym_qualified_type_identifier, + STATE(4133), 1, sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6343), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6345), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6353), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6359), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6355), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [127396] = 23, + STATE(5412), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(6625), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2790), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [153475] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(5470), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(5439), 1, - anon_sym_DOT, - ACTIONS(5441), 1, - anon_sym_DASH_GT, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6347), 1, - anon_sym_SLASH, - ACTIONS(6349), 1, - anon_sym_CARET, - ACTIONS(6351), 1, - anon_sym_AMP, - ACTIONS(6357), 1, - anon_sym_GT_EQ, - ACTIONS(6361), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6363), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6365), 1, - anon_sym_AMP_AMP, - ACTIONS(6367), 1, - anon_sym_PIPE, - ACTIONS(6371), 1, - anon_sym_QMARK, - ACTIONS(6391), 1, - anon_sym_COLON, - STATE(2534), 1, + ACTIONS(6671), 1, + sym_identifier, + ACTIONS(6673), 1, + anon_sym_COLON_COLON, + ACTIONS(6677), 1, + sym_primitive_type, + ACTIONS(6679), 1, + anon_sym_enum, + ACTIONS(6681), 1, + anon_sym_class, + ACTIONS(6683), 1, + anon_sym_struct, + ACTIONS(6685), 1, + anon_sym_union, + ACTIONS(6687), 1, + sym_auto, + ACTIONS(6689), 1, + anon_sym_decltype, + ACTIONS(6691), 1, + anon_sym_typename, + STATE(1821), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1863), 1, + sym__type_specifier, + STATE(1960), 1, + sym_template_type, + STATE(2091), 1, + sym_qualified_type_identifier, + STATE(2145), 1, + sym_decltype_auto, + STATE(4182), 1, sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6343), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6345), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6353), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6359), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6355), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [127473] = 3, + STATE(5448), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(6675), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2144), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [153555] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4978), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4976), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6009), 1, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + ACTIONS(6011), 1, + anon_sym_AMP, + ACTIONS(6015), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(6021), 1, + anon_sym_noexcept, + ACTIONS(6023), 1, + anon_sym_throw, + ACTIONS(6340), 1, + anon_sym___attribute__, + ACTIONS(6693), 1, anon_sym_DASH_GT, - anon_sym_GT2, - [127510] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4221), 1, + ACTIONS(6695), 1, + anon_sym_requires, + STATE(5135), 1, + sym_requires_clause, + STATE(5216), 1, + sym_trailing_return_type, + ACTIONS(4016), 2, + anon_sym_final, + anon_sym_override, + STATE(4198), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(6007), 4, anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(5439), 1, - anon_sym_DOT, - ACTIONS(5441), 1, - anon_sym_DASH_GT, - ACTIONS(6347), 1, - anon_sym_SLASH, - ACTIONS(6349), 1, - anon_sym_CARET, - ACTIONS(6351), 1, - anon_sym_AMP, - ACTIONS(6357), 1, - anon_sym_GT_EQ, - ACTIONS(6361), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6363), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6365), 1, - anon_sym_AMP_AMP, - ACTIONS(6367), 1, - anon_sym_PIPE, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6343), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6345), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6353), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6359), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5076), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(6355), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [127583] = 21, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + STATE(4211), 6, + sym_type_qualifier, + sym_virtual_specifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_function_declarator_repeat2, + ACTIONS(6342), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [153623] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2699), 1, + sym_auto, + ACTIONS(2701), 1, + anon_sym_decltype, + ACTIONS(5470), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(5439), 1, - anon_sym_DOT, - ACTIONS(5441), 1, - anon_sym_DASH_GT, - ACTIONS(6347), 1, - anon_sym_SLASH, - ACTIONS(6349), 1, - anon_sym_CARET, - ACTIONS(6351), 1, - anon_sym_AMP, - ACTIONS(6357), 1, - anon_sym_GT_EQ, - ACTIONS(6361), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6363), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6365), 1, - anon_sym_AMP_AMP, - ACTIONS(6367), 1, - anon_sym_PIPE, - STATE(2534), 1, + ACTIONS(5564), 1, + sym_primitive_type, + ACTIONS(6593), 1, + sym_identifier, + ACTIONS(6595), 1, + anon_sym_COLON_COLON, + ACTIONS(6597), 1, + anon_sym_enum, + ACTIONS(6599), 1, + anon_sym_class, + ACTIONS(6601), 1, + anon_sym_struct, + ACTIONS(6603), 1, + anon_sym_union, + ACTIONS(6605), 1, + anon_sym_typename, + STATE(2300), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3118), 1, + sym_template_type, + STATE(3138), 1, + sym_decltype_auto, + STATE(3140), 1, + sym_qualified_type_identifier, + STATE(3311), 1, + sym__type_specifier, + STATE(4148), 1, sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6343), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6345), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6353), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6359), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5052), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(6355), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [127656] = 10, + STATE(5386), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(2675), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3139), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [153703] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(6395), 1, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6009), 1, anon_sym_AMP_AMP, - ACTIONS(6398), 1, + ACTIONS(6011), 1, anon_sym_AMP, - ACTIONS(6401), 1, - anon_sym_LBRACK, - ACTIONS(6403), 1, - anon_sym_const, - ACTIONS(6409), 1, + ACTIONS(6021), 1, anon_sym_noexcept, - ACTIONS(6412), 1, + ACTIONS(6023), 1, anon_sym_throw, - STATE(3800), 5, + ACTIONS(6344), 1, + anon_sym_DASH_GT, + ACTIONS(6346), 1, + anon_sym_requires, + ACTIONS(6529), 1, + anon_sym_LBRACK, + STATE(5020), 1, + sym_trailing_return_type, + STATE(5077), 1, + sym_requires_clause, + ACTIONS(4016), 2, + anon_sym_final, + anon_sym_override, + STATE(4111), 6, sym_type_qualifier, + sym_virtual_specifier, sym_ref_qualifier, sym_noexcept, sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - ACTIONS(6406), 7, + aux_sym_function_declarator_repeat2, + ACTIONS(6342), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -311541,197 +346128,252 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - ACTIONS(6393), 11, + ACTIONS(6527), 7, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [127707] = 23, + [153767] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(5470), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(5439), 1, - anon_sym_DOT, - ACTIONS(5441), 1, - anon_sym_DASH_GT, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6347), 1, - anon_sym_SLASH, - ACTIONS(6349), 1, - anon_sym_CARET, - ACTIONS(6351), 1, - anon_sym_AMP, - ACTIONS(6357), 1, - anon_sym_GT_EQ, - ACTIONS(6361), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6363), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6365), 1, - anon_sym_AMP_AMP, - ACTIONS(6367), 1, - anon_sym_PIPE, - ACTIONS(6371), 1, - anon_sym_QMARK, - ACTIONS(6415), 1, - anon_sym_COLON, - STATE(2534), 1, + ACTIONS(6571), 1, + sym_identifier, + ACTIONS(6573), 1, + anon_sym_COLON_COLON, + ACTIONS(6577), 1, + sym_primitive_type, + ACTIONS(6579), 1, + anon_sym_enum, + ACTIONS(6581), 1, + anon_sym_class, + ACTIONS(6583), 1, + anon_sym_struct, + ACTIONS(6585), 1, + anon_sym_union, + ACTIONS(6587), 1, + sym_auto, + ACTIONS(6589), 1, + anon_sym_decltype, + ACTIONS(6591), 1, + anon_sym_typename, + STATE(1831), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1906), 1, + sym__type_specifier, + STATE(2172), 1, + sym_template_type, + STATE(2270), 1, + sym_decltype_auto, + STATE(2418), 1, + sym_qualified_type_identifier, + STATE(4166), 1, sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6343), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6345), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6353), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6359), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6355), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [127784] = 23, + STATE(5441), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(6575), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2284), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [153847] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(5470), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, - anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(6417), 1, - anon_sym_RPAREN, - STATE(2534), 1, + ACTIONS(6671), 1, + sym_identifier, + ACTIONS(6673), 1, + anon_sym_COLON_COLON, + ACTIONS(6677), 1, + sym_primitive_type, + ACTIONS(6681), 1, + anon_sym_class, + ACTIONS(6683), 1, + anon_sym_struct, + ACTIONS(6685), 1, + anon_sym_union, + ACTIONS(6687), 1, + sym_auto, + ACTIONS(6689), 1, + anon_sym_decltype, + ACTIONS(6697), 1, + anon_sym_enum, + ACTIONS(6699), 1, + anon_sym_typename, + STATE(1821), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1863), 1, + sym__type_specifier, + STATE(1960), 1, + sym_template_type, + STATE(2091), 1, + sym_qualified_type_identifier, + STATE(2145), 1, + sym_decltype_auto, + STATE(4149), 1, sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [127861] = 23, + STATE(5448), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(6675), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2144), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [153927] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3603), 1, - anon_sym_RBRACK, - ACTIONS(4221), 1, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(5470), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6014), 1, - anon_sym_SLASH, - ACTIONS(6016), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6018), 1, - anon_sym_AMP_AMP, - ACTIONS(6020), 1, - anon_sym_PIPE, - ACTIONS(6022), 1, - anon_sym_CARET, - ACTIONS(6024), 1, - anon_sym_AMP, - ACTIONS(6030), 1, - anon_sym_GT_EQ, - ACTIONS(6036), 1, - anon_sym_QMARK, - ACTIONS(6038), 1, - anon_sym_LT_EQ_GT, - STATE(2534), 1, + ACTIONS(6671), 1, + sym_identifier, + ACTIONS(6673), 1, + anon_sym_COLON_COLON, + ACTIONS(6677), 1, + sym_primitive_type, + ACTIONS(6679), 1, + anon_sym_enum, + ACTIONS(6681), 1, + anon_sym_class, + ACTIONS(6683), 1, + anon_sym_struct, + ACTIONS(6685), 1, + anon_sym_union, + ACTIONS(6687), 1, + sym_auto, + ACTIONS(6689), 1, + anon_sym_decltype, + ACTIONS(6691), 1, + anon_sym_typename, + STATE(1821), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1845), 1, + sym__type_specifier, + STATE(1960), 1, + sym_template_type, + STATE(2091), 1, + sym_qualified_type_identifier, + STATE(2145), 1, + sym_decltype_auto, + STATE(4183), 1, sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6010), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6012), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6026), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6032), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6028), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [127938] = 3, + STATE(5448), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(6675), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2144), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [154007] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(6421), 6, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1495), 1, + sym_auto, + ACTIONS(1497), 1, + anon_sym_decltype, + ACTIONS(5470), 1, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, + ACTIONS(5524), 1, + sym_primitive_type, + ACTIONS(6607), 1, + sym_identifier, + ACTIONS(6609), 1, + anon_sym_COLON_COLON, + ACTIONS(6613), 1, + anon_sym_class, + ACTIONS(6615), 1, + anon_sym_struct, + ACTIONS(6617), 1, + anon_sym_union, + ACTIONS(6701), 1, + anon_sym_enum, + ACTIONS(6703), 1, + anon_sym_typename, + STATE(1935), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2664), 1, + sym_template_type, + STATE(2731), 1, + sym_decltype_auto, + STATE(2847), 1, + sym_qualified_type_identifier, + STATE(3258), 1, + sym__type_specifier, + STATE(4140), 1, + sym_argument_list, + STATE(5374), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(1483), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2780), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [154087] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3019), 2, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(6419), 23, - anon_sym_AMP, + ACTIONS(3014), 30, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, @@ -311744,657 +346386,274 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, sym_identifier, - anon_sym_virtual, - anon_sym_explicit, - anon_sym_template, - anon_sym_operator, - [127975] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, - anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(6423), 1, - anon_sym_SEMI, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [128052] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(5008), 1, - anon_sym_COLON, - ACTIONS(5439), 1, - anon_sym_DOT, - ACTIONS(5441), 1, - anon_sym_DASH_GT, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6347), 1, - anon_sym_SLASH, - ACTIONS(6349), 1, - anon_sym_CARET, - ACTIONS(6351), 1, - anon_sym_AMP, - ACTIONS(6357), 1, - anon_sym_GT_EQ, - ACTIONS(6361), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6363), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6365), 1, - anon_sym_AMP_AMP, - ACTIONS(6367), 1, - anon_sym_PIPE, - ACTIONS(6371), 1, - anon_sym_QMARK, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6343), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6345), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6353), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6359), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6355), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [128129] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(5439), 1, - anon_sym_DOT, - ACTIONS(5441), 1, - anon_sym_DASH_GT, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6347), 1, - anon_sym_SLASH, - ACTIONS(6349), 1, - anon_sym_CARET, - ACTIONS(6351), 1, - anon_sym_AMP, - ACTIONS(6357), 1, - anon_sym_GT_EQ, - ACTIONS(6361), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6363), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6365), 1, - anon_sym_AMP_AMP, - ACTIONS(6367), 1, - anon_sym_PIPE, - ACTIONS(6371), 1, - anon_sym_QMARK, - ACTIONS(6425), 1, - anon_sym_COLON, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6343), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6345), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6353), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6359), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6355), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [128206] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5082), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5080), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [128243] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, - anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(6427), 1, - anon_sym_RPAREN, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [128320] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3635), 1, - anon_sym_RBRACK, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6014), 1, - anon_sym_SLASH, - ACTIONS(6016), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6018), 1, - anon_sym_AMP_AMP, - ACTIONS(6020), 1, - anon_sym_PIPE, - ACTIONS(6022), 1, - anon_sym_CARET, - ACTIONS(6024), 1, - anon_sym_AMP, - ACTIONS(6030), 1, - anon_sym_GT_EQ, - ACTIONS(6036), 1, - anon_sym_QMARK, - ACTIONS(6038), 1, - anon_sym_LT_EQ_GT, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6010), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6012), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6026), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6032), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6028), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [128397] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6014), 1, - anon_sym_SLASH, - ACTIONS(6016), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6018), 1, - anon_sym_AMP_AMP, - ACTIONS(6020), 1, - anon_sym_PIPE, - ACTIONS(6022), 1, - anon_sym_CARET, - ACTIONS(6024), 1, - anon_sym_AMP, - ACTIONS(6030), 1, - anon_sym_GT_EQ, - ACTIONS(6036), 1, - anon_sym_QMARK, - ACTIONS(6038), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6429), 1, - anon_sym_RBRACK, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6010), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6012), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6026), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6032), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6028), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [128474] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, - anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(6431), 1, - anon_sym_SEMI, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [128551] = 23, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_typename, + anon_sym_template, + [154127] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6009), 1, anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(6011), 1, anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(6080), 1, + ACTIONS(6021), 1, + anon_sym_noexcept, + ACTIONS(6023), 1, + anon_sym_throw, + ACTIONS(6057), 1, + anon_sym_LBRACK, + ACTIONS(6340), 1, + anon_sym___attribute__, + ACTIONS(6695), 1, + anon_sym_requires, + ACTIONS(6705), 1, + anon_sym_DASH_GT, + STATE(5115), 1, + sym_requires_clause, + STATE(5233), 1, + sym_trailing_return_type, + ACTIONS(4016), 2, + anon_sym_final, + anon_sym_override, + STATE(4105), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(6055), 4, anon_sym_RPAREN, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [128628] = 23, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + STATE(4201), 6, + sym_type_qualifier, + sym_virtual_specifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_function_declarator_repeat2, + ACTIONS(6342), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [154195] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3523), 1, - anon_sym_RBRACK, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6014), 1, - anon_sym_SLASH, - ACTIONS(6016), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6018), 1, - anon_sym_AMP_AMP, - ACTIONS(6020), 1, - anon_sym_PIPE, - ACTIONS(6022), 1, - anon_sym_CARET, - ACTIONS(6024), 1, - anon_sym_AMP, - ACTIONS(6030), 1, - anon_sym_GT_EQ, - ACTIONS(6036), 1, - anon_sym_QMARK, - ACTIONS(6038), 1, - anon_sym_LT_EQ_GT, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6010), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6012), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6026), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6032), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6028), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [128705] = 23, + ACTIONS(2649), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2647), 30, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_typename, + anon_sym_template, + [154235] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(6709), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(6707), 30, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_typename, + anon_sym_template, + [154275] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6535), 1, + sym_auto, + ACTIONS(6537), 1, + anon_sym_decltype, + ACTIONS(6547), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(6555), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, + ACTIONS(6643), 1, + anon_sym_STAR, + ACTIONS(6645), 1, anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(6647), 1, anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(6433), 1, + STATE(3441), 1, + sym_decltype_auto, + STATE(4204), 1, + sym_parameter_list, + STATE(5158), 1, + sym__abstract_declarator, + STATE(4192), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5059), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6342), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(6561), 7, + anon_sym_COMMA, anon_sym_SEMI, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [128782] = 23, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + anon_sym_requires, + [154341] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1495), 1, + sym_auto, + ACTIONS(1497), 1, + anon_sym_decltype, + ACTIONS(5470), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, - anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(6435), 1, - anon_sym_RPAREN, - STATE(2534), 1, + ACTIONS(5524), 1, + sym_primitive_type, + ACTIONS(6607), 1, + sym_identifier, + ACTIONS(6609), 1, + anon_sym_COLON_COLON, + ACTIONS(6613), 1, + anon_sym_class, + ACTIONS(6615), 1, + anon_sym_struct, + ACTIONS(6617), 1, + anon_sym_union, + ACTIONS(6701), 1, + anon_sym_enum, + ACTIONS(6703), 1, + anon_sym_typename, + STATE(1935), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2664), 1, + sym_template_type, + STATE(2731), 1, + sym_decltype_auto, + STATE(2847), 1, + sym_qualified_type_identifier, + STATE(3259), 1, + sym__type_specifier, + STATE(4144), 1, sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [128859] = 4, + STATE(5374), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(1483), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2780), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [154421] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6439), 1, + ACTIONS(3480), 1, + anon_sym_LBRACK, + ACTIONS(3475), 2, anon_sym_LPAREN2, - ACTIONS(6441), 5, - anon_sym_TILDE, + anon_sym_LBRACK_LBRACK, + ACTIONS(3478), 6, anon_sym_STAR, anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(6437), 23, + anon_sym_LBRACE, + anon_sym_EQ, + ACTIONS(3473), 23, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, - anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, @@ -312407,391 +346666,402 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, + anon_sym_COLON, sym_identifier, + sym_auto, + anon_sym_decltype, anon_sym_virtual, - anon_sym_explicit, - anon_sym_template, anon_sym_operator, - [128898] = 9, + [154465] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(5439), 1, - anon_sym_DOT, - ACTIONS(5441), 1, - anon_sym_DASH_GT, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(4890), 8, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4888), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6009), 1, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - [128947] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(6011), 1, + anon_sym_AMP, + ACTIONS(6015), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(6021), 1, + anon_sym_noexcept, + ACTIONS(6023), 1, + anon_sym_throw, + ACTIONS(6340), 1, + anon_sym___attribute__, + ACTIONS(6695), 1, + anon_sym_requires, + ACTIONS(6705), 1, anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, - anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(6443), 1, + STATE(5135), 1, + sym_requires_clause, + STATE(5216), 1, + sym_trailing_return_type, + ACTIONS(4016), 2, + anon_sym_final, + anon_sym_override, + STATE(4198), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(6007), 4, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [129024] = 23, + anon_sym_LBRACK_LBRACK, + STATE(4193), 6, + sym_type_qualifier, + sym_virtual_specifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_function_declarator_repeat2, + ACTIONS(6342), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [154533] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1495), 1, + sym_auto, + ACTIONS(1497), 1, + anon_sym_decltype, + ACTIONS(5470), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, - anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(6445), 1, - anon_sym_SEMI, - STATE(2534), 1, + ACTIONS(5524), 1, + sym_primitive_type, + ACTIONS(6607), 1, + sym_identifier, + ACTIONS(6609), 1, + anon_sym_COLON_COLON, + ACTIONS(6611), 1, + anon_sym_enum, + ACTIONS(6613), 1, + anon_sym_class, + ACTIONS(6615), 1, + anon_sym_struct, + ACTIONS(6617), 1, + anon_sym_union, + ACTIONS(6619), 1, + anon_sym_typename, + STATE(1935), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2664), 1, + sym_template_type, + STATE(2731), 1, + sym_decltype_auto, + STATE(2847), 1, + sym_qualified_type_identifier, + STATE(3259), 1, + sym__type_specifier, + STATE(4174), 1, sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [129101] = 8, + STATE(5374), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(1483), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2780), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [154613] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1495), 1, + sym_auto, + ACTIONS(1497), 1, + anon_sym_decltype, + ACTIONS(5470), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(5439), 1, - anon_sym_DOT, - ACTIONS(5441), 1, - anon_sym_DASH_GT, - STATE(2534), 1, + ACTIONS(5524), 1, + sym_primitive_type, + ACTIONS(6607), 1, + sym_identifier, + ACTIONS(6609), 1, + anon_sym_COLON_COLON, + ACTIONS(6611), 1, + anon_sym_enum, + ACTIONS(6613), 1, + anon_sym_class, + ACTIONS(6615), 1, + anon_sym_struct, + ACTIONS(6617), 1, + anon_sym_union, + ACTIONS(6619), 1, + anon_sym_typename, + STATE(1935), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2664), 1, + sym_template_type, + STATE(2731), 1, + sym_decltype_auto, + STATE(2847), 1, + sym_qualified_type_identifier, + STATE(3258), 1, + sym__type_specifier, + STATE(4180), 1, sym_argument_list, - ACTIONS(4902), 8, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4900), 16, - anon_sym_DOT_DOT_DOT, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - [129148] = 14, + STATE(5374), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(1483), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2780), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [154693] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6009), 1, + anon_sym_AMP_AMP, + ACTIONS(6011), 1, + anon_sym_AMP, + ACTIONS(6021), 1, + anon_sym_noexcept, + ACTIONS(6023), 1, + anon_sym_throw, + ACTIONS(6057), 1, anon_sym_LBRACK, - ACTIONS(5439), 1, - anon_sym_DOT, - ACTIONS(5441), 1, + ACTIONS(6340), 1, + anon_sym___attribute__, + ACTIONS(6693), 1, anon_sym_DASH_GT, - ACTIONS(6347), 1, - anon_sym_SLASH, - ACTIONS(6361), 1, - anon_sym_LT_EQ_GT, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6343), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6345), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6359), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4910), 5, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(4904), 9, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_QMARK, - [129207] = 23, + ACTIONS(6695), 1, + anon_sym_requires, + STATE(5115), 1, + sym_requires_clause, + STATE(5233), 1, + sym_trailing_return_type, + ACTIONS(4016), 2, + anon_sym_final, + anon_sym_override, + STATE(4091), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(6055), 4, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + STATE(4196), 6, + sym_type_qualifier, + sym_virtual_specifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_function_declarator_repeat2, + ACTIONS(6342), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [154761] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(5470), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, - anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(6447), 1, - anon_sym_RPAREN, - STATE(2534), 1, + ACTIONS(6671), 1, + sym_identifier, + ACTIONS(6673), 1, + anon_sym_COLON_COLON, + ACTIONS(6677), 1, + sym_primitive_type, + ACTIONS(6681), 1, + anon_sym_class, + ACTIONS(6683), 1, + anon_sym_struct, + ACTIONS(6685), 1, + anon_sym_union, + ACTIONS(6687), 1, + sym_auto, + ACTIONS(6689), 1, + anon_sym_decltype, + ACTIONS(6697), 1, + anon_sym_enum, + ACTIONS(6699), 1, + anon_sym_typename, + STATE(1821), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1845), 1, + sym__type_specifier, + STATE(1960), 1, + sym_template_type, + STATE(2091), 1, + sym_qualified_type_identifier, + STATE(2145), 1, + sym_decltype_auto, + STATE(4163), 1, sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [129284] = 23, + STATE(5448), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(6675), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2144), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [154841] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(5470), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, - anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(6449), 1, - anon_sym_SEMI, - STATE(2534), 1, + ACTIONS(6649), 1, + sym_identifier, + ACTIONS(6651), 1, + anon_sym_COLON_COLON, + ACTIONS(6655), 1, + sym_primitive_type, + ACTIONS(6657), 1, + anon_sym_enum, + ACTIONS(6659), 1, + anon_sym_class, + ACTIONS(6661), 1, + anon_sym_struct, + ACTIONS(6663), 1, + anon_sym_union, + ACTIONS(6665), 1, + sym_auto, + ACTIONS(6667), 1, + anon_sym_decltype, + ACTIONS(6669), 1, + anon_sym_typename, + STATE(1871), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2120), 1, + sym__type_specifier, + STATE(2555), 1, + sym_template_type, + STATE(2594), 1, + sym_qualified_type_identifier, + STATE(2612), 1, + sym_decltype_auto, + STATE(4179), 1, sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [129361] = 16, + STATE(5439), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(6653), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2614), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [154921] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2921), 1, - anon_sym_const, - ACTIONS(3369), 1, - anon_sym_LPAREN2, - ACTIONS(3371), 1, - anon_sym_STAR, - ACTIONS(3373), 1, + ACTIONS(6713), 1, anon_sym_AMP_AMP, - ACTIONS(3375), 1, + ACTIONS(6716), 1, anon_sym_AMP, - ACTIONS(4691), 1, - sym_auto, - ACTIONS(4693), 1, - anon_sym_decltype, - ACTIONS(6268), 1, + ACTIONS(6719), 1, anon_sym_LBRACK, - STATE(2476), 1, - sym_decltype_auto, - STATE(4080), 1, - sym_parameter_list, - STATE(5068), 1, - sym__abstract_declarator, - STATE(4087), 2, + ACTIONS(6721), 1, + anon_sym_const, + ACTIONS(6730), 1, + anon_sym_noexcept, + ACTIONS(6733), 1, + anon_sym_throw, + ACTIONS(6727), 2, + anon_sym_final, + anon_sym_override, + STATE(4111), 6, sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(5722), 4, + sym_virtual_specifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_function_declarator_repeat2, + ACTIONS(6724), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(6711), 11, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_try, anon_sym_requires, - STATE(4832), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6270), 7, + [154977] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2617), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2615), 30, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -312799,143 +347069,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [129424] = 23, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_typename, + anon_sym_template, + [155017] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(5439), 1, - anon_sym_DOT, - ACTIONS(5441), 1, - anon_sym_DASH_GT, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6347), 1, - anon_sym_SLASH, - ACTIONS(6349), 1, - anon_sym_CARET, - ACTIONS(6351), 1, - anon_sym_AMP, - ACTIONS(6357), 1, - anon_sym_GT_EQ, - ACTIONS(6361), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6363), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6365), 1, - anon_sym_AMP_AMP, - ACTIONS(6367), 1, - anon_sym_PIPE, - ACTIONS(6371), 1, - anon_sym_QMARK, - ACTIONS(6451), 1, + ACTIONS(5731), 1, + anon_sym_LBRACE, + ACTIONS(6736), 1, anon_sym_COLON, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6343), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6345), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6353), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6359), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6355), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [129501] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6014), 1, - anon_sym_SLASH, - ACTIONS(6016), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6018), 1, - anon_sym_AMP_AMP, - ACTIONS(6020), 1, - anon_sym_PIPE, - ACTIONS(6022), 1, - anon_sym_CARET, - ACTIONS(6024), 1, + STATE(3498), 1, + sym__enum_base_clause, + STATE(3499), 1, + sym_enumerator_list, + ACTIONS(4153), 3, anon_sym_AMP, - ACTIONS(6030), 1, - anon_sym_GT_EQ, - ACTIONS(6036), 1, - anon_sym_QMARK, - ACTIONS(6038), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6453), 1, - anon_sym_RBRACK, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6010), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6012), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6026), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6032), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6028), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [129578] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, + anon_sym_LBRACK, anon_sym_const, - ACTIONS(5708), 1, + ACTIONS(4151), 24, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(5716), 1, - anon_sym_LBRACK, - ACTIONS(5818), 1, anon_sym_STAR, - ACTIONS(5820), 1, anon_sym_AMP_AMP, - ACTIONS(5822), 1, - anon_sym_AMP, - STATE(3938), 1, - sym_parameter_list, - STATE(4886), 1, - sym__abstract_declarator, - STATE(4142), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4735), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5651), 7, + anon_sym_SEMI, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -312943,246 +347120,295 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - ACTIONS(6110), 7, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_requires, + [155064] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4751), 14, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + anon_sym_COLON_COLON, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + ACTIONS(4749), 17, + anon_sym_AMP, + anon_sym___based, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + anon_sym_template, + anon_sym_operator, anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, anon_sym_requires, - [129635] = 23, + [155103] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4121), 1, + anon_sym_SEMI, + ACTIONS(4288), 6, anon_sym_LPAREN2, - ACTIONS(4892), 1, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(4290), 24, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6014), 1, - anon_sym_SLASH, - ACTIONS(6016), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6018), 1, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [155144] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6009), 1, anon_sym_AMP_AMP, - ACTIONS(6020), 1, - anon_sym_PIPE, - ACTIONS(6022), 1, - anon_sym_CARET, - ACTIONS(6024), 1, + ACTIONS(6011), 1, anon_sym_AMP, - ACTIONS(6030), 1, - anon_sym_GT_EQ, - ACTIONS(6036), 1, - anon_sym_QMARK, - ACTIONS(6038), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6455), 1, - anon_sym_RBRACK, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6010), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6012), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6026), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6032), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6028), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [129712] = 19, + ACTIONS(6015), 1, + anon_sym_LBRACK, + ACTIONS(6021), 1, + anon_sym_noexcept, + ACTIONS(6023), 1, + anon_sym_throw, + ACTIONS(6346), 1, + anon_sym_requires, + ACTIONS(6523), 1, + anon_sym_DASH_GT, + STATE(5034), 1, + sym_trailing_return_type, + STATE(5135), 1, + sym_requires_clause, + ACTIONS(4016), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(6007), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + STATE(4111), 6, + sym_type_qualifier, + sym_virtual_specifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_function_declarator_repeat2, + ACTIONS(6342), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [155207] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(3482), 1, anon_sym_LBRACK, - ACTIONS(5439), 1, - anon_sym_DOT, - ACTIONS(5441), 1, - anon_sym_DASH_GT, - ACTIONS(6347), 1, - anon_sym_SLASH, - ACTIONS(6349), 1, - anon_sym_CARET, - ACTIONS(6351), 1, - anon_sym_AMP, - ACTIONS(6357), 1, - anon_sym_GT_EQ, - ACTIONS(6361), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6367), 1, - anon_sym_PIPE, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6343), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6345), 2, + ACTIONS(3475), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(3478), 5, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6353), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6359), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6355), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(5024), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_COLON, - anon_sym_QMARK, - [129781] = 3, + anon_sym_SEMI, + anon_sym_COLON_COLON, + ACTIONS(3473), 23, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [155250] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5020), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5018), 18, - anon_sym_DOT_DOT_DOT, + ACTIONS(3165), 9, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(3163), 22, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [129818] = 23, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + [155289] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6009), 1, anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(6011), 1, anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(6457), 1, - anon_sym_SEMI, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [129895] = 16, + ACTIONS(6021), 1, + anon_sym_noexcept, + ACTIONS(6023), 1, + anon_sym_throw, + ACTIONS(6346), 1, + anon_sym_requires, + ACTIONS(6523), 1, + anon_sym_DASH_GT, + ACTIONS(6529), 1, + anon_sym_LBRACK, + STATE(5020), 1, + sym_trailing_return_type, + STATE(5077), 1, + sym_requires_clause, + ACTIONS(4016), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(6527), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + STATE(4111), 6, + sym_type_qualifier, + sym_virtual_specifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_function_declarator_repeat2, + ACTIONS(6342), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [155352] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_const, - ACTIONS(5700), 1, + ACTIONS(6535), 1, sym_auto, - ACTIONS(5702), 1, + ACTIONS(6537), 1, anon_sym_decltype, - ACTIONS(5708), 1, + ACTIONS(6547), 1, anon_sym_LPAREN2, - ACTIONS(5716), 1, + ACTIONS(6555), 1, anon_sym_LBRACK, - ACTIONS(6459), 1, + ACTIONS(6738), 1, anon_sym_STAR, - ACTIONS(6461), 1, + ACTIONS(6740), 1, anon_sym_AMP_AMP, - ACTIONS(6463), 1, + ACTIONS(6742), 1, anon_sym_AMP, - STATE(3142), 1, + STATE(3441), 1, sym_decltype_auto, - STATE(4067), 1, + STATE(4235), 1, sym_parameter_list, - STATE(5127), 1, + STATE(5278), 1, sym__abstract_declarator, - STATE(4099), 2, + STATE(4234), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(5722), 4, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_requires, - STATE(4735), 5, + STATE(5059), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(5651), 7, + ACTIONS(6545), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(6342), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -313190,487 +347416,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [129958] = 23, + [155417] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(5731), 1, + anon_sym_LBRACE, + ACTIONS(6736), 1, + anon_sym_COLON, + STATE(3448), 1, + sym_enumerator_list, + STATE(3449), 1, + sym__enum_base_clause, + ACTIONS(4235), 3, anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(6465), 1, - anon_sym_SEMI, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [130035] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3670), 1, - anon_sym_RBRACK, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6014), 1, - anon_sym_SLASH, - ACTIONS(6016), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6018), 1, - anon_sym_AMP_AMP, - ACTIONS(6020), 1, - anon_sym_PIPE, - ACTIONS(6022), 1, - anon_sym_CARET, - ACTIONS(6024), 1, - anon_sym_AMP, - ACTIONS(6030), 1, - anon_sym_GT_EQ, - ACTIONS(6036), 1, - anon_sym_QMARK, - ACTIONS(6038), 1, - anon_sym_LT_EQ_GT, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6010), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6012), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6026), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6032), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6028), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [130112] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4221), 1, + anon_sym_const, + ACTIONS(4233), 24, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(5439), 1, - anon_sym_DOT, - ACTIONS(5441), 1, - anon_sym_DASH_GT, - ACTIONS(6347), 1, - anon_sym_SLASH, - ACTIONS(6349), 1, - anon_sym_CARET, - ACTIONS(6351), 1, - anon_sym_AMP, - ACTIONS(6357), 1, - anon_sym_GT_EQ, - ACTIONS(6361), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6365), 1, - anon_sym_AMP_AMP, - ACTIONS(6367), 1, - anon_sym_PIPE, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6343), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6345), 2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6353), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6359), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6355), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(5024), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_COLON, - anon_sym_QMARK, - [130183] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, - anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(6467), 1, anon_sym_SEMI, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [130260] = 11, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_requires, + [155464] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(4121), 1, + anon_sym_SEMI, + ACTIONS(4125), 1, + anon_sym_COLON_COLON, + ACTIONS(4288), 5, anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(5439), 1, - anon_sym_DOT, - ACTIONS(5441), 1, - anon_sym_DASH_GT, - ACTIONS(6347), 1, - anon_sym_SLASH, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6345), 2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5026), 7, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(5024), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - [130313] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5050), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + anon_sym_LBRACK_LBRACK, + ACTIONS(4290), 24, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5048), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [130350] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, - anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(6469), 1, - anon_sym_SEMI, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [130427] = 23, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [155507] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, + ACTIONS(6713), 1, anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(6716), 1, anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(6471), 1, - anon_sym_RBRACE, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [130504] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(6719), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, - anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(6473), 1, - anon_sym_SEMI, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [130581] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(5602), 1, - anon_sym_AMP_AMP, - ACTIONS(5604), 1, - anon_sym_AMP, - ACTIONS(5614), 1, + ACTIONS(6730), 1, anon_sym_noexcept, - ACTIONS(5616), 1, + ACTIONS(6733), 1, anon_sym_throw, - ACTIONS(5653), 1, - anon_sym_DASH_GT, - ACTIONS(5655), 1, - anon_sym_requires, - ACTIONS(6303), 1, - anon_sym_LBRACK, - STATE(4720), 1, - sym_trailing_return_type, - STATE(4799), 1, - sym_requires_clause, - STATE(3800), 5, + ACTIONS(6744), 1, + anon_sym_const, + ACTIONS(6727), 2, + anon_sym_final, + anon_sym_override, + STATE(4123), 6, sym_type_qualifier, + sym_virtual_specifier, sym_ref_qualifier, sym_noexcept, sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - ACTIONS(5651), 7, + aux_sym_function_declarator_repeat2, + ACTIONS(6747), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -313678,98 +347527,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - ACTIONS(6301), 7, + ACTIONS(6711), 10, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_try, - [130640] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, + anon_sym_COLON, anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, - anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(6475), 1, - anon_sym_SEMI, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [130717] = 14, + anon_sym_try, + anon_sym_requires, + [155562] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(5753), 1, anon_sym_const, - ACTIONS(5602), 1, + ACTIONS(6009), 1, anon_sym_AMP_AMP, - ACTIONS(5604), 1, + ACTIONS(6011), 1, anon_sym_AMP, - ACTIONS(5614), 1, + ACTIONS(6013), 1, + anon_sym___attribute__, + ACTIONS(6015), 1, + anon_sym_LBRACK, + ACTIONS(6021), 1, anon_sym_noexcept, - ACTIONS(5616), 1, + ACTIONS(6023), 1, anon_sym_throw, - ACTIONS(5653), 1, + ACTIONS(6750), 1, anon_sym_DASH_GT, - ACTIONS(5655), 1, + ACTIONS(6752), 1, anon_sym_requires, - ACTIONS(6204), 1, - anon_sym_LBRACK, - STATE(4722), 1, - sym_trailing_return_type, - STATE(4782), 1, + STATE(5135), 1, sym_requires_clause, - STATE(3800), 5, + STATE(5451), 1, + sym_trailing_return_type, + ACTIONS(4016), 2, + anon_sym_final, + anon_sym_override, + STATE(4219), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(6007), 3, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + STATE(4214), 6, sym_type_qualifier, + sym_virtual_specifier, sym_ref_qualifier, sym_noexcept, sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - ACTIONS(5651), 7, + aux_sym_function_declarator_repeat2, + ACTIONS(6017), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -313777,78 +347588,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - ACTIONS(6202), 7, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [130776] = 3, + [155629] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5074), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5072), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6535), 1, + sym_auto, + ACTIONS(6537), 1, + anon_sym_decltype, + ACTIONS(6547), 1, anon_sym_LPAREN2, + ACTIONS(6555), 1, + anon_sym_LBRACK, + ACTIONS(6738), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(6740), 1, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, + ACTIONS(6742), 1, + anon_sym_AMP, + STATE(3441), 1, + sym_decltype_auto, + STATE(4235), 1, + sym_parameter_list, + STATE(5255), 1, + sym__abstract_declarator, + STATE(4246), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5059), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6561), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, anon_sym_GT2, - [130813] = 14, + anon_sym_requires, + ACTIONS(6342), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [155694] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(5753), 1, anon_sym_const, - ACTIONS(5602), 1, + ACTIONS(6009), 1, anon_sym_AMP_AMP, - ACTIONS(5604), 1, + ACTIONS(6011), 1, anon_sym_AMP, - ACTIONS(5614), 1, + ACTIONS(6013), 1, + anon_sym___attribute__, + ACTIONS(6021), 1, anon_sym_noexcept, - ACTIONS(5616), 1, + ACTIONS(6023), 1, anon_sym_throw, - ACTIONS(5653), 1, + ACTIONS(6057), 1, + anon_sym_LBRACK, + ACTIONS(6750), 1, anon_sym_DASH_GT, - ACTIONS(5655), 1, + ACTIONS(6752), 1, anon_sym_requires, - ACTIONS(6196), 1, - anon_sym_LBRACK, - STATE(4723), 1, - sym_trailing_return_type, - STATE(4779), 1, + STATE(5115), 1, sym_requires_clause, - STATE(3843), 5, + STATE(5495), 1, + sym_trailing_return_type, + ACTIONS(4016), 2, + anon_sym_final, + anon_sym_override, + STATE(4124), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(6055), 3, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + STATE(4220), 6, sym_type_qualifier, + sym_virtual_specifier, sym_ref_qualifier, sym_noexcept, sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - ACTIONS(5651), 7, + aux_sym_function_declarator_repeat2, + ACTIONS(6017), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -313856,442 +347687,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - ACTIONS(6194), 7, + [155761] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3169), 9, anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_try, - [130872] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(5439), 1, - anon_sym_DOT, - ACTIONS(5441), 1, - anon_sym_DASH_GT, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6347), 1, - anon_sym_SLASH, - ACTIONS(6349), 1, - anon_sym_CARET, - ACTIONS(6351), 1, - anon_sym_AMP, - ACTIONS(6357), 1, - anon_sym_GT_EQ, - ACTIONS(6361), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6363), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6365), 1, - anon_sym_AMP_AMP, - ACTIONS(6367), 1, - anon_sym_PIPE, - STATE(2534), 1, - sym_argument_list, - ACTIONS(4996), 2, anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6343), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6345), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6353), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6359), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6355), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [130947] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, - anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(6477), 1, - anon_sym_RPAREN, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [131024] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3639), 1, - anon_sym_RBRACK, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6014), 1, - anon_sym_SLASH, - ACTIONS(6016), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6018), 1, - anon_sym_AMP_AMP, - ACTIONS(6020), 1, - anon_sym_PIPE, - ACTIONS(6022), 1, - anon_sym_CARET, - ACTIONS(6024), 1, - anon_sym_AMP, - ACTIONS(6030), 1, - anon_sym_GT_EQ, - ACTIONS(6036), 1, - anon_sym_QMARK, - ACTIONS(6038), 1, - anon_sym_LT_EQ_GT, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6010), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6012), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6026), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6032), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6028), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [131101] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4383), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4385), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [131138] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(3167), 22, anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(6479), 1, - anon_sym_SEMI, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [131215] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - ACTIONS(5439), 1, - anon_sym_DOT, - ACTIONS(5441), 1, - anon_sym_DASH_GT, - ACTIONS(6347), 1, - anon_sym_SLASH, - ACTIONS(6349), 1, - anon_sym_CARET, - ACTIONS(6351), 1, - anon_sym_AMP, - ACTIONS(6357), 1, - anon_sym_GT_EQ, - ACTIONS(6361), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6363), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6365), 1, - anon_sym_AMP_AMP, - ACTIONS(6367), 1, - anon_sym_PIPE, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6343), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6345), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6353), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6359), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4916), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(6355), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [131288] = 23, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + anon_sym_virtual, + anon_sym_operator, + anon_sym_try, + [155800] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6014), 1, - anon_sym_SLASH, - ACTIONS(6016), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6018), 1, - anon_sym_AMP_AMP, - ACTIONS(6020), 1, - anon_sym_PIPE, - ACTIONS(6022), 1, - anon_sym_CARET, - ACTIONS(6024), 1, - anon_sym_AMP, - ACTIONS(6030), 1, - anon_sym_GT_EQ, - ACTIONS(6036), 1, - anon_sym_QMARK, - ACTIONS(6038), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6481), 1, - anon_sym_RBRACK, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6010), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6012), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6026), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6032), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6028), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [131365] = 3, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1489), 1, + anon_sym_class, + ACTIONS(1491), 1, + anon_sym_struct, + ACTIONS(1493), 1, + anon_sym_union, + ACTIONS(1495), 1, + sym_auto, + ACTIONS(1497), 1, + anon_sym_decltype, + ACTIONS(5518), 1, + sym_identifier, + ACTIONS(5522), 1, + anon_sym_COLON_COLON, + ACTIONS(5524), 1, + sym_primitive_type, + ACTIONS(5552), 1, + anon_sym_enum, + ACTIONS(5554), 1, + anon_sym_typename, + STATE(1935), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2591), 1, + sym__type_specifier, + STATE(2664), 1, + sym_template_type, + STATE(2731), 1, + sym_decltype_auto, + STATE(2847), 1, + sym_qualified_type_identifier, + STATE(5397), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(1483), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2780), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [155874] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5002), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(4255), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6340), 1, + anon_sym___attribute__, + ACTIONS(6533), 1, + anon_sym___declspec, + ACTIONS(6539), 1, + anon_sym_virtual, + ACTIONS(5548), 2, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5000), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(5550), 3, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [131402] = 15, + ACTIONS(6531), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(6342), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(4136), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + [155928] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(5602), 1, - anon_sym_AMP_AMP, - ACTIONS(5604), 1, - anon_sym_AMP, - ACTIONS(5614), 1, - anon_sym_noexcept, - ACTIONS(5616), 1, - anon_sym_throw, - ACTIONS(5622), 1, - anon_sym_LBRACK, - ACTIONS(5786), 1, - anon_sym_requires, - ACTIONS(5790), 1, - anon_sym_DASH_GT, - STATE(4842), 1, - sym_requires_clause, - STATE(4948), 1, - sym_trailing_return_type, - ACTIONS(4160), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5620), 4, + ACTIONS(6236), 1, + sym_primitive_type, + ACTIONS(6754), 1, + sym_identifier, + STATE(3391), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6234), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3964), 9, + anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_try, - STATE(3511), 6, - sym_type_qualifier, - sym_virtual_specifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_function_declarator_repeat2, - ACTIONS(5651), 7, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(3966), 14, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -314299,46 +347854,198 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [131463] = 16, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [155974] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(5700), 1, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1495), 1, + sym_auto, + ACTIONS(1497), 1, + anon_sym_decltype, + ACTIONS(5524), 1, + sym_primitive_type, + ACTIONS(6607), 1, + sym_identifier, + ACTIONS(6609), 1, + anon_sym_COLON_COLON, + ACTIONS(6611), 1, + anon_sym_enum, + ACTIONS(6613), 1, + anon_sym_class, + ACTIONS(6615), 1, + anon_sym_struct, + ACTIONS(6617), 1, + anon_sym_union, + ACTIONS(6619), 1, + anon_sym_typename, + STATE(1935), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2591), 1, + sym__type_specifier, + STATE(2664), 1, + sym_template_type, + STATE(2731), 1, + sym_decltype_auto, + STATE(2847), 1, + sym_qualified_type_identifier, + STATE(5374), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(1483), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2780), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [156048] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1535), 1, + sym_primitive_type, + ACTIONS(1545), 1, + sym_auto, + ACTIONS(1547), 1, + anon_sym_decltype, + ACTIONS(2428), 1, + sym_identifier, + ACTIONS(5654), 1, + anon_sym_COLON_COLON, + ACTIONS(5656), 1, + anon_sym_enum, + ACTIONS(5658), 1, + anon_sym_class, + ACTIONS(5660), 1, + anon_sym_struct, + ACTIONS(5662), 1, + anon_sym_union, + ACTIONS(5664), 1, + anon_sym_typename, + STATE(3395), 1, + sym_template_type, + STATE(3925), 1, + sym__type_specifier, + STATE(4003), 1, + sym_qualified_type_identifier, + STATE(4021), 1, + sym_decltype_auto, + STATE(4130), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5416), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(5650), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4001), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [156122] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(6621), 1, + sym_identifier, + ACTIONS(6623), 1, + anon_sym_COLON_COLON, + ACTIONS(6627), 1, + sym_primitive_type, + ACTIONS(6629), 1, + anon_sym_enum, + ACTIONS(6631), 1, + anon_sym_class, + ACTIONS(6633), 1, + anon_sym_struct, + ACTIONS(6635), 1, + anon_sym_union, + ACTIONS(6637), 1, sym_auto, - ACTIONS(5702), 1, + ACTIONS(6639), 1, anon_sym_decltype, - ACTIONS(5708), 1, + ACTIONS(6641), 1, + anon_sym_typename, + STATE(1910), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2200), 1, + sym__type_specifier, + STATE(2609), 1, + sym_template_type, + STATE(2762), 1, + sym_decltype_auto, + STATE(2915), 1, + sym_qualified_type_identifier, + STATE(5412), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(6625), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2790), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [156196] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5753), 1, + anon_sym_const, + ACTIONS(6547), 1, anon_sym_LPAREN2, - ACTIONS(5716), 1, - anon_sym_LBRACK, - ACTIONS(6459), 1, + ACTIONS(6549), 1, anon_sym_STAR, - ACTIONS(6461), 1, + ACTIONS(6551), 1, anon_sym_AMP_AMP, - ACTIONS(6463), 1, + ACTIONS(6553), 1, anon_sym_AMP, - STATE(3142), 1, - sym_decltype_auto, - STATE(4067), 1, + ACTIONS(6555), 1, + anon_sym_LBRACK, + STATE(4170), 1, sym_parameter_list, - STATE(5109), 1, + STATE(5124), 1, sym__abstract_declarator, - STATE(4082), 2, + STATE(4413), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(5706), 4, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_requires, - STATE(4735), 5, + STATE(5059), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(5651), 7, + ACTIONS(6017), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -314346,132 +348053,193 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [131526] = 3, + ACTIONS(6756), 8, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + anon_sym_requires, + [156254] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4954), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(63), 1, + anon_sym_enum, + ACTIONS(65), 1, + anon_sym_class, + ACTIONS(67), 1, + anon_sym_struct, + ACTIONS(69), 1, + anon_sym_union, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(113), 1, + anon_sym_typename, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2428), 1, + sym_identifier, + ACTIONS(2434), 1, + anon_sym_COLON_COLON, + ACTIONS(2438), 1, + sym_primitive_type, + STATE(3271), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3376), 1, + sym__type_specifier, + STATE(3395), 1, + sym_template_type, + STATE(3490), 1, + sym_qualified_type_identifier, + STATE(3494), 1, + sym_decltype_auto, + STATE(5394), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3481), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [156328] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5602), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5725), 1, + anon_sym_const, + ACTIONS(6761), 1, + anon_sym___attribute__, + ACTIONS(6764), 1, + anon_sym___declspec, + ACTIONS(6770), 1, + anon_sym_virtual, + ACTIONS(5592), 2, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4952), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(5594), 3, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [131563] = 21, + ACTIONS(6758), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(6767), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(4136), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + [156382] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(5439), 1, - anon_sym_DOT, - ACTIONS(5441), 1, - anon_sym_DASH_GT, - ACTIONS(6347), 1, - anon_sym_SLASH, - ACTIONS(6349), 1, - anon_sym_CARET, - ACTIONS(6351), 1, - anon_sym_AMP, - ACTIONS(6357), 1, - anon_sym_GT_EQ, - ACTIONS(6361), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6363), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6365), 1, - anon_sym_AMP_AMP, - ACTIONS(6367), 1, - anon_sym_PIPE, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6343), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6345), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6353), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6359), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4972), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(6355), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [131636] = 16, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1495), 1, + sym_auto, + ACTIONS(1497), 1, + anon_sym_decltype, + ACTIONS(5524), 1, + sym_primitive_type, + ACTIONS(6607), 1, + sym_identifier, + ACTIONS(6609), 1, + anon_sym_COLON_COLON, + ACTIONS(6611), 1, + anon_sym_enum, + ACTIONS(6613), 1, + anon_sym_class, + ACTIONS(6615), 1, + anon_sym_struct, + ACTIONS(6617), 1, + anon_sym_union, + ACTIONS(6619), 1, + anon_sym_typename, + STATE(1935), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2664), 1, + sym_template_type, + STATE(2731), 1, + sym_decltype_auto, + STATE(2847), 1, + sym_qualified_type_identifier, + STATE(3244), 1, + sym__type_specifier, + STATE(5374), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(1483), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2780), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [156456] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2921), 1, + ACTIONS(5753), 1, anon_sym_const, - ACTIONS(3369), 1, + ACTIONS(6547), 1, anon_sym_LPAREN2, - ACTIONS(5216), 1, - sym_auto, - ACTIONS(5218), 1, - anon_sym_decltype, - ACTIONS(6268), 1, - anon_sym_LBRACK, - ACTIONS(6483), 1, + ACTIONS(6549), 1, anon_sym_STAR, - ACTIONS(6485), 1, + ACTIONS(6551), 1, anon_sym_AMP_AMP, - ACTIONS(6487), 1, + ACTIONS(6553), 1, anon_sym_AMP, - STATE(2855), 1, - sym_decltype_auto, - STATE(4077), 1, + ACTIONS(6555), 1, + anon_sym_LBRACK, + STATE(4170), 1, sym_parameter_list, - STATE(5161), 1, + STATE(5087), 1, sym__abstract_declarator, - STATE(4101), 2, + STATE(4413), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(5706), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - anon_sym_requires, - STATE(4832), 5, + STATE(5059), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(6270), 7, + ACTIONS(6017), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -314479,369 +348247,765 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [131699] = 23, + ACTIONS(6773), 8, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + anon_sym_requires, + [156514] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6014), 1, - anon_sym_SLASH, - ACTIONS(6016), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6018), 1, - anon_sym_AMP_AMP, - ACTIONS(6020), 1, - anon_sym_PIPE, - ACTIONS(6022), 1, - anon_sym_CARET, - ACTIONS(6024), 1, - anon_sym_AMP, - ACTIONS(6030), 1, - anon_sym_GT_EQ, - ACTIONS(6036), 1, - anon_sym_QMARK, - ACTIONS(6038), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6489), 1, - anon_sym_RBRACK, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6010), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6012), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6026), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6032), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6028), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [131776] = 23, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1495), 1, + sym_auto, + ACTIONS(1497), 1, + anon_sym_decltype, + ACTIONS(5524), 1, + sym_primitive_type, + ACTIONS(6607), 1, + sym_identifier, + ACTIONS(6609), 1, + anon_sym_COLON_COLON, + ACTIONS(6611), 1, + anon_sym_enum, + ACTIONS(6613), 1, + anon_sym_class, + ACTIONS(6615), 1, + anon_sym_struct, + ACTIONS(6617), 1, + anon_sym_union, + ACTIONS(6619), 1, + anon_sym_typename, + STATE(1935), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2664), 1, + sym_template_type, + STATE(2731), 1, + sym_decltype_auto, + STATE(2847), 1, + sym_qualified_type_identifier, + STATE(3252), 1, + sym__type_specifier, + STATE(5374), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(1483), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2780), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [156588] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(5439), 1, - anon_sym_DOT, - ACTIONS(5441), 1, - anon_sym_DASH_GT, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6347), 1, - anon_sym_SLASH, - ACTIONS(6349), 1, - anon_sym_CARET, - ACTIONS(6351), 1, - anon_sym_AMP, - ACTIONS(6357), 1, - anon_sym_GT_EQ, - ACTIONS(6361), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6363), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6365), 1, - anon_sym_AMP_AMP, - ACTIONS(6367), 1, - anon_sym_PIPE, - ACTIONS(6371), 1, - anon_sym_QMARK, - ACTIONS(6491), 1, - anon_sym_COLON, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6343), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6345), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6353), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6359), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6355), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [131853] = 23, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1495), 1, + sym_auto, + ACTIONS(1497), 1, + anon_sym_decltype, + ACTIONS(5524), 1, + sym_primitive_type, + ACTIONS(6607), 1, + sym_identifier, + ACTIONS(6609), 1, + anon_sym_COLON_COLON, + ACTIONS(6613), 1, + anon_sym_class, + ACTIONS(6615), 1, + anon_sym_struct, + ACTIONS(6617), 1, + anon_sym_union, + ACTIONS(6701), 1, + anon_sym_enum, + ACTIONS(6703), 1, + anon_sym_typename, + STATE(1935), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2664), 1, + sym_template_type, + STATE(2731), 1, + sym_decltype_auto, + STATE(2847), 1, + sym_qualified_type_identifier, + STATE(3263), 1, + sym__type_specifier, + STATE(5374), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(1483), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2780), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [156662] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, - anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(6493), 1, - anon_sym_SEMI, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [131930] = 23, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1487), 1, + anon_sym_enum, + ACTIONS(1489), 1, + anon_sym_class, + ACTIONS(1491), 1, + anon_sym_struct, + ACTIONS(1493), 1, + anon_sym_union, + ACTIONS(1495), 1, + sym_auto, + ACTIONS(1497), 1, + anon_sym_decltype, + ACTIONS(1499), 1, + anon_sym_typename, + ACTIONS(5518), 1, + sym_identifier, + ACTIONS(5522), 1, + anon_sym_COLON_COLON, + ACTIONS(5524), 1, + sym_primitive_type, + STATE(1935), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2591), 1, + sym__type_specifier, + STATE(2664), 1, + sym_template_type, + STATE(2731), 1, + sym_decltype_auto, + STATE(2847), 1, + sym_qualified_type_identifier, + STATE(5397), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(1483), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2780), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [156736] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3674), 1, - anon_sym_RBRACK, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6014), 1, - anon_sym_SLASH, - ACTIONS(6016), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6018), 1, - anon_sym_AMP_AMP, - ACTIONS(6020), 1, - anon_sym_PIPE, - ACTIONS(6022), 1, - anon_sym_CARET, - ACTIONS(6024), 1, - anon_sym_AMP, - ACTIONS(6030), 1, - anon_sym_GT_EQ, - ACTIONS(6036), 1, - anon_sym_QMARK, - ACTIONS(6038), 1, - anon_sym_LT_EQ_GT, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6010), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6012), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6026), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6032), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6028), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [132007] = 23, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2438), 1, + sym_primitive_type, + ACTIONS(3755), 1, + sym_identifier, + ACTIONS(3765), 1, + anon_sym_COLON_COLON, + ACTIONS(5616), 1, + anon_sym_class, + ACTIONS(5618), 1, + anon_sym_struct, + ACTIONS(5620), 1, + anon_sym_union, + ACTIONS(5624), 1, + anon_sym_enum, + ACTIONS(5626), 1, + anon_sym_typename, + STATE(3376), 1, + sym__type_specifier, + STATE(3395), 1, + sym_template_type, + STATE(3490), 1, + sym_qualified_type_identifier, + STATE(3494), 1, + sym_decltype_auto, + STATE(3511), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5354), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(2436), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3481), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [156810] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(5566), 1, + sym_identifier, + ACTIONS(5568), 1, + anon_sym_COLON_COLON, + ACTIONS(5572), 1, + sym_primitive_type, + ACTIONS(5574), 1, + anon_sym_enum, + ACTIONS(5576), 1, + anon_sym_class, + ACTIONS(5578), 1, + anon_sym_struct, + ACTIONS(5580), 1, + anon_sym_union, + ACTIONS(5582), 1, + sym_auto, + ACTIONS(5584), 1, + anon_sym_decltype, + ACTIONS(5586), 1, + anon_sym_typename, + STATE(4268), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4431), 1, + sym__type_specifier, + STATE(4434), 1, + sym_template_type, + STATE(4506), 1, + sym_qualified_type_identifier, + STATE(4508), 1, + sym_decltype_auto, + STATE(5387), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(5570), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4593), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [156884] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1495), 1, + sym_auto, + ACTIONS(1497), 1, + anon_sym_decltype, + ACTIONS(5524), 1, + sym_primitive_type, + ACTIONS(6607), 1, + sym_identifier, + ACTIONS(6609), 1, + anon_sym_COLON_COLON, + ACTIONS(6613), 1, + anon_sym_class, + ACTIONS(6615), 1, + anon_sym_struct, + ACTIONS(6617), 1, + anon_sym_union, + ACTIONS(6701), 1, + anon_sym_enum, + ACTIONS(6703), 1, + anon_sym_typename, + STATE(1935), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2664), 1, + sym_template_type, + STATE(2731), 1, + sym_decltype_auto, + STATE(2847), 1, + sym_qualified_type_identifier, + STATE(3267), 1, + sym__type_specifier, + STATE(5374), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(1483), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2780), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [156958] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1535), 1, + sym_primitive_type, + ACTIONS(1537), 1, + anon_sym_enum, + ACTIONS(1539), 1, + anon_sym_class, + ACTIONS(1541), 1, + anon_sym_struct, + ACTIONS(1543), 1, + anon_sym_union, + ACTIONS(1545), 1, + sym_auto, + ACTIONS(1547), 1, + anon_sym_decltype, + ACTIONS(3755), 1, + sym_identifier, + ACTIONS(4731), 1, + anon_sym_COLON_COLON, + ACTIONS(5652), 1, + anon_sym_typename, + STATE(3395), 1, + sym_template_type, + STATE(3925), 1, + sym__type_specifier, + STATE(4003), 1, + sym_qualified_type_identifier, + STATE(4021), 1, + sym_decltype_auto, + STATE(4130), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5352), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(5650), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4001), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [157032] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2699), 1, + sym_auto, + ACTIONS(2701), 1, + anon_sym_decltype, + ACTIONS(5564), 1, + sym_primitive_type, + ACTIONS(6593), 1, + sym_identifier, + ACTIONS(6595), 1, + anon_sym_COLON_COLON, + ACTIONS(6597), 1, + anon_sym_enum, + ACTIONS(6599), 1, + anon_sym_class, + ACTIONS(6601), 1, + anon_sym_struct, + ACTIONS(6603), 1, + anon_sym_union, + ACTIONS(6605), 1, + anon_sym_typename, + STATE(2300), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3113), 1, + sym__type_specifier, + STATE(3118), 1, + sym_template_type, + STATE(3138), 1, + sym_decltype_auto, + STATE(3140), 1, + sym_qualified_type_identifier, + STATE(5386), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(2675), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3139), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [157106] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(6571), 1, + sym_identifier, + ACTIONS(6573), 1, + anon_sym_COLON_COLON, + ACTIONS(6577), 1, + sym_primitive_type, + ACTIONS(6579), 1, + anon_sym_enum, + ACTIONS(6581), 1, + anon_sym_class, + ACTIONS(6583), 1, + anon_sym_struct, + ACTIONS(6585), 1, + anon_sym_union, + ACTIONS(6587), 1, + sym_auto, + ACTIONS(6589), 1, + anon_sym_decltype, + ACTIONS(6591), 1, + anon_sym_typename, + STATE(1831), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2172), 1, + sym_template_type, + STATE(2188), 1, + sym__type_specifier, + STATE(2270), 1, + sym_decltype_auto, + STATE(2418), 1, + sym_qualified_type_identifier, + STATE(5441), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(6575), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2284), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [157180] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2699), 1, + sym_auto, + ACTIONS(2701), 1, + anon_sym_decltype, + ACTIONS(5564), 1, + sym_primitive_type, + ACTIONS(6593), 1, + sym_identifier, + ACTIONS(6595), 1, + anon_sym_COLON_COLON, + ACTIONS(6597), 1, + anon_sym_enum, + ACTIONS(6599), 1, + anon_sym_class, + ACTIONS(6601), 1, + anon_sym_struct, + ACTIONS(6603), 1, + anon_sym_union, + ACTIONS(6605), 1, + anon_sym_typename, + STATE(2300), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3118), 1, + sym_template_type, + STATE(3138), 1, + sym_decltype_auto, + STATE(3140), 1, + sym_qualified_type_identifier, + STATE(3292), 1, + sym__type_specifier, + STATE(5386), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(2675), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3139), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [157254] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(6671), 1, + sym_identifier, + ACTIONS(6673), 1, + anon_sym_COLON_COLON, + ACTIONS(6677), 1, + sym_primitive_type, + ACTIONS(6681), 1, + anon_sym_class, + ACTIONS(6683), 1, + anon_sym_struct, + ACTIONS(6685), 1, + anon_sym_union, + ACTIONS(6687), 1, + sym_auto, + ACTIONS(6689), 1, + anon_sym_decltype, + ACTIONS(6697), 1, + anon_sym_enum, + ACTIONS(6699), 1, + anon_sym_typename, + STATE(1821), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1866), 1, + sym__type_specifier, + STATE(1960), 1, + sym_template_type, + STATE(2091), 1, + sym_qualified_type_identifier, + STATE(2145), 1, + sym_decltype_auto, + STATE(5448), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(6675), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2144), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [157328] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2438), 1, + sym_primitive_type, + ACTIONS(3755), 1, + sym_identifier, + ACTIONS(3765), 1, + anon_sym_COLON_COLON, + ACTIONS(5616), 1, + anon_sym_class, + ACTIONS(5618), 1, + anon_sym_struct, + ACTIONS(5620), 1, + anon_sym_union, + ACTIONS(5624), 1, + anon_sym_enum, + ACTIONS(5626), 1, + anon_sym_typename, + STATE(3395), 1, + sym_template_type, + STATE(3490), 1, + sym_qualified_type_identifier, + STATE(3494), 1, + sym_decltype_auto, + STATE(3511), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5354), 1, + sym__scope_resolution, + STATE(5511), 1, + sym__type_specifier, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(2436), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3481), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [157402] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3668), 1, - anon_sym_RBRACK, - ACTIONS(4221), 1, + ACTIONS(4125), 1, + anon_sym_COLON_COLON, + ACTIONS(4288), 5, anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6014), 1, - anon_sym_SLASH, - ACTIONS(6016), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6018), 1, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(6020), 1, - anon_sym_PIPE, - ACTIONS(6022), 1, - anon_sym_CARET, - ACTIONS(6024), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4290), 24, anon_sym_AMP, - ACTIONS(6030), 1, - anon_sym_GT_EQ, - ACTIONS(6036), 1, - anon_sym_QMARK, - ACTIONS(6038), 1, - anon_sym_LT_EQ_GT, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6010), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6012), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6026), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6032), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6028), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [132084] = 23, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_virtual, + anon_sym_template, + anon_sym_operator, + [157442] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3672), 1, - anon_sym_RBRACK, - ACTIONS(4221), 1, + ACTIONS(2965), 1, + anon_sym_const, + ACTIONS(3757), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6014), 1, - anon_sym_SLASH, - ACTIONS(6016), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6018), 1, + ACTIONS(6775), 1, + anon_sym_STAR, + ACTIONS(6777), 1, anon_sym_AMP_AMP, - ACTIONS(6020), 1, - anon_sym_PIPE, - ACTIONS(6022), 1, - anon_sym_CARET, - ACTIONS(6024), 1, + ACTIONS(6779), 1, anon_sym_AMP, - ACTIONS(6030), 1, - anon_sym_GT_EQ, - ACTIONS(6036), 1, - anon_sym_QMARK, - ACTIONS(6038), 1, - anon_sym_LT_EQ_GT, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6010), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6012), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6026), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6032), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6028), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [132161] = 15, + ACTIONS(6781), 1, + anon_sym_LBRACK, + ACTIONS(6785), 1, + sym_auto, + ACTIONS(6787), 1, + anon_sym_decltype, + STATE(4300), 1, + sym_parameter_list, + STATE(4459), 1, + sym_decltype_auto, + STATE(5292), 1, + sym__abstract_declarator, + STATE(4295), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(6561), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + anon_sym_requires, + STATE(5127), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6783), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [157506] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(5753), 1, anon_sym_const, - ACTIONS(5602), 1, + ACTIONS(6009), 1, anon_sym_AMP_AMP, - ACTIONS(5604), 1, + ACTIONS(6011), 1, anon_sym_AMP, - ACTIONS(5614), 1, + ACTIONS(6019), 1, + anon_sym_DASH_GT, + ACTIONS(6021), 1, anon_sym_noexcept, - ACTIONS(5616), 1, + ACTIONS(6023), 1, anon_sym_throw, - ACTIONS(5728), 1, - anon_sym_LBRACK, - ACTIONS(5784), 1, - anon_sym_DASH_GT, - ACTIONS(5786), 1, + ACTIONS(6025), 1, anon_sym_requires, - STATE(4835), 1, + ACTIONS(6791), 1, + anon_sym_LBRACK, + STATE(4989), 1, sym_requires_clause, - STATE(4981), 1, + STATE(5113), 1, sym_trailing_return_type, - ACTIONS(4160), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5726), 4, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - STATE(3511), 6, + STATE(4165), 5, sym_type_qualifier, - sym_virtual_specifier, sym_ref_qualifier, sym_noexcept, sym_throw_specifier, - aux_sym_function_declarator_repeat2, - ACTIONS(5651), 7, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6017), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -314849,350 +349013,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [132222] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, - anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(6495), 1, - anon_sym_SEMI, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [132299] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4221), 1, + ACTIONS(6789), 8, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, - anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(6497), 1, anon_sym_SEMI, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [132376] = 23, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [157566] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, + ACTIONS(5753), 1, + anon_sym_const, + ACTIONS(6009), 1, anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(6011), 1, anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(6499), 1, - anon_sym_SEMI, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [132453] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(6019), 1, anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, - anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(6501), 1, - anon_sym_SEMI, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [132530] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(6021), 1, + anon_sym_noexcept, + ACTIONS(6023), 1, + anon_sym_throw, + ACTIONS(6025), 1, + anon_sym_requires, + ACTIONS(6795), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, - anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(6503), 1, - anon_sym_SEMI, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [132607] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5046), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5044), 18, - anon_sym_DOT_DOT_DOT, + STATE(5045), 1, + sym_requires_clause, + STATE(5082), 1, + sym_trailing_return_type, + STATE(4250), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6017), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(6793), 8, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [132644] = 16, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [157626] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(5753), 1, anon_sym_const, - ACTIONS(5700), 1, - sym_auto, - ACTIONS(5702), 1, - anon_sym_decltype, - ACTIONS(5708), 1, + ACTIONS(6547), 1, anon_sym_LPAREN2, - ACTIONS(5716), 1, - anon_sym_LBRACK, - ACTIONS(6505), 1, + ACTIONS(6549), 1, anon_sym_STAR, - ACTIONS(6507), 1, + ACTIONS(6551), 1, anon_sym_AMP_AMP, - ACTIONS(6509), 1, + ACTIONS(6553), 1, anon_sym_AMP, - STATE(3142), 1, - sym_decltype_auto, - STATE(4097), 1, + ACTIONS(6555), 1, + anon_sym_LBRACK, + STATE(4170), 1, sym_parameter_list, - STATE(5142), 1, + STATE(5089), 1, sym__abstract_declarator, - STATE(4103), 2, + STATE(4413), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(5706), 4, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_try, - anon_sym_requires, - STATE(4735), 5, + STATE(5059), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(5651), 7, + ACTIONS(6017), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -315200,480 +349104,685 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [132707] = 14, + ACTIONS(5412), 8, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + anon_sym_requires, + [157684] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(6377), 1, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2699), 1, + sym_auto, + ACTIONS(2701), 1, + anon_sym_decltype, + ACTIONS(5564), 1, + sym_primitive_type, + ACTIONS(6593), 1, sym_identifier, - ACTIONS(6379), 1, - anon_sym_LPAREN2, - ACTIONS(6381), 1, - anon_sym_STAR, - STATE(4135), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4944), 1, - sym__type_declarator, - STATE(6677), 1, - sym_ms_based_modifier, - ACTIONS(2919), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3933), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4182), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2917), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(5193), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(2921), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [132766] = 23, + ACTIONS(6595), 1, + anon_sym_COLON_COLON, + ACTIONS(6597), 1, + anon_sym_enum, + ACTIONS(6599), 1, + anon_sym_class, + ACTIONS(6601), 1, + anon_sym_struct, + ACTIONS(6603), 1, + anon_sym_union, + ACTIONS(6605), 1, + anon_sym_typename, + STATE(2300), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3118), 1, + sym_template_type, + STATE(3138), 1, + sym_decltype_auto, + STATE(3140), 1, + sym_qualified_type_identifier, + STATE(3316), 1, + sym__type_specifier, + STATE(5386), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(2675), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3139), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [157758] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, - anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(6511), 1, - anon_sym_RPAREN, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [132843] = 23, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(6649), 1, + sym_identifier, + ACTIONS(6651), 1, + anon_sym_COLON_COLON, + ACTIONS(6655), 1, + sym_primitive_type, + ACTIONS(6657), 1, + anon_sym_enum, + ACTIONS(6659), 1, + anon_sym_class, + ACTIONS(6661), 1, + anon_sym_struct, + ACTIONS(6663), 1, + anon_sym_union, + ACTIONS(6665), 1, + sym_auto, + ACTIONS(6667), 1, + anon_sym_decltype, + ACTIONS(6669), 1, + anon_sym_typename, + STATE(1871), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2478), 1, + sym__type_specifier, + STATE(2555), 1, + sym_template_type, + STATE(2594), 1, + sym_qualified_type_identifier, + STATE(2612), 1, + sym_decltype_auto, + STATE(5439), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(6653), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2614), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [157832] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, - anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(6513), 1, - anon_sym_SEMI, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [132920] = 23, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2438), 1, + sym_primitive_type, + ACTIONS(3755), 1, + sym_identifier, + ACTIONS(3765), 1, + anon_sym_COLON_COLON, + ACTIONS(5614), 1, + anon_sym_enum, + ACTIONS(5616), 1, + anon_sym_class, + ACTIONS(5618), 1, + anon_sym_struct, + ACTIONS(5620), 1, + anon_sym_union, + ACTIONS(5622), 1, + anon_sym_typename, + STATE(3376), 1, + sym__type_specifier, + STATE(3395), 1, + sym_template_type, + STATE(3490), 1, + sym_qualified_type_identifier, + STATE(3494), 1, + sym_decltype_auto, + STATE(3511), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5354), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(2436), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3481), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [157906] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6014), 1, - anon_sym_SLASH, - ACTIONS(6016), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6018), 1, - anon_sym_AMP_AMP, - ACTIONS(6020), 1, - anon_sym_PIPE, - ACTIONS(6022), 1, - anon_sym_CARET, - ACTIONS(6024), 1, - anon_sym_AMP, - ACTIONS(6030), 1, - anon_sym_GT_EQ, - ACTIONS(6036), 1, - anon_sym_QMARK, - ACTIONS(6038), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6515), 1, - anon_sym_RBRACK, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6010), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6012), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6026), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6032), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6028), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [132997] = 3, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(6671), 1, + sym_identifier, + ACTIONS(6673), 1, + anon_sym_COLON_COLON, + ACTIONS(6677), 1, + sym_primitive_type, + ACTIONS(6679), 1, + anon_sym_enum, + ACTIONS(6681), 1, + anon_sym_class, + ACTIONS(6683), 1, + anon_sym_struct, + ACTIONS(6685), 1, + anon_sym_union, + ACTIONS(6687), 1, + sym_auto, + ACTIONS(6689), 1, + anon_sym_decltype, + ACTIONS(6691), 1, + anon_sym_typename, + STATE(1821), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1951), 1, + sym__type_specifier, + STATE(1960), 1, + sym_template_type, + STATE(2091), 1, + sym_qualified_type_identifier, + STATE(2145), 1, + sym_decltype_auto, + STATE(5448), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(6675), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2144), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [157980] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4372), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4374), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [133034] = 23, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2428), 1, + sym_identifier, + ACTIONS(2434), 1, + anon_sym_COLON_COLON, + ACTIONS(2438), 1, + sym_primitive_type, + ACTIONS(5666), 1, + anon_sym_enum, + ACTIONS(5668), 1, + anon_sym_class, + ACTIONS(5670), 1, + anon_sym_struct, + ACTIONS(5672), 1, + anon_sym_union, + ACTIONS(5674), 1, + anon_sym_typename, + STATE(3271), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3376), 1, + sym__type_specifier, + STATE(3395), 1, + sym_template_type, + STATE(3490), 1, + sym_qualified_type_identifier, + STATE(3494), 1, + sym_decltype_auto, + STATE(5394), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3481), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [158054] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3608), 1, - anon_sym_RBRACK, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6014), 1, - anon_sym_SLASH, - ACTIONS(6016), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6018), 1, - anon_sym_AMP_AMP, - ACTIONS(6020), 1, - anon_sym_PIPE, - ACTIONS(6022), 1, - anon_sym_CARET, - ACTIONS(6024), 1, - anon_sym_AMP, - ACTIONS(6030), 1, - anon_sym_GT_EQ, - ACTIONS(6036), 1, - anon_sym_QMARK, - ACTIONS(6038), 1, - anon_sym_LT_EQ_GT, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6010), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6012), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6026), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6032), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6028), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [133111] = 3, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2428), 1, + sym_identifier, + ACTIONS(2434), 1, + anon_sym_COLON_COLON, + ACTIONS(2438), 1, + sym_primitive_type, + ACTIONS(2440), 1, + anon_sym_enum, + ACTIONS(2442), 1, + anon_sym_class, + ACTIONS(2444), 1, + anon_sym_struct, + ACTIONS(2446), 1, + anon_sym_union, + ACTIONS(2448), 1, + anon_sym_typename, + STATE(3376), 1, + sym__type_specifier, + STATE(3395), 1, + sym_template_type, + STATE(3490), 1, + sym_qualified_type_identifier, + STATE(3494), 1, + sym_decltype_auto, + STATE(3511), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5394), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(2436), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3481), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [158128] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3724), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2679), 1, + anon_sym_enum, + ACTIONS(2681), 1, + anon_sym_class, + ACTIONS(2683), 1, + anon_sym_struct, + ACTIONS(2685), 1, + anon_sym_union, + ACTIONS(2699), 1, + sym_auto, + ACTIONS(2701), 1, + anon_sym_decltype, + ACTIONS(2703), 1, + anon_sym_typename, + ACTIONS(5560), 1, + sym_identifier, + ACTIONS(5562), 1, + anon_sym_COLON_COLON, + ACTIONS(5564), 1, + sym_primitive_type, + STATE(2300), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3113), 1, + sym__type_specifier, + STATE(3118), 1, + sym_template_type, + STATE(3138), 1, + sym_decltype_auto, + STATE(3140), 1, + sym_qualified_type_identifier, + STATE(5425), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(2675), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3139), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [158202] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(6671), 1, + sym_identifier, + ACTIONS(6673), 1, + anon_sym_COLON_COLON, + ACTIONS(6677), 1, + sym_primitive_type, + ACTIONS(6681), 1, + anon_sym_class, + ACTIONS(6683), 1, + anon_sym_struct, + ACTIONS(6685), 1, + anon_sym_union, + ACTIONS(6687), 1, + sym_auto, + ACTIONS(6689), 1, + anon_sym_decltype, + ACTIONS(6697), 1, + anon_sym_enum, + ACTIONS(6699), 1, + anon_sym_typename, + STATE(1821), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1852), 1, + sym__type_specifier, + STATE(1960), 1, + sym_template_type, + STATE(2091), 1, + sym_qualified_type_identifier, + STATE(2145), 1, + sym_decltype_auto, + STATE(5448), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(6675), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2144), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [158276] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(6649), 1, + sym_identifier, + ACTIONS(6651), 1, + anon_sym_COLON_COLON, + ACTIONS(6655), 1, + sym_primitive_type, + ACTIONS(6657), 1, + anon_sym_enum, + ACTIONS(6659), 1, + anon_sym_class, + ACTIONS(6661), 1, + anon_sym_struct, + ACTIONS(6663), 1, + anon_sym_union, + ACTIONS(6665), 1, + sym_auto, + ACTIONS(6667), 1, + anon_sym_decltype, + ACTIONS(6669), 1, + anon_sym_typename, + STATE(1871), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2153), 1, + sym__type_specifier, + STATE(2555), 1, + sym_template_type, + STATE(2594), 1, + sym_qualified_type_identifier, + STATE(2612), 1, + sym_decltype_auto, + STATE(5439), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(6653), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2614), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [158350] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5753), 1, + anon_sym_const, + ACTIONS(6009), 1, + anon_sym_AMP_AMP, + ACTIONS(6011), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(3716), 18, - anon_sym_DOT_DOT_DOT, + ACTIONS(6019), 1, + anon_sym_DASH_GT, + ACTIONS(6021), 1, + anon_sym_noexcept, + ACTIONS(6023), 1, + anon_sym_throw, + ACTIONS(6025), 1, + anon_sym_requires, + ACTIONS(6799), 1, + anon_sym_LBRACK, + STATE(5023), 1, + sym_requires_clause, + STATE(5104), 1, + sym_trailing_return_type, + STATE(4250), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6017), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(6797), 8, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [133148] = 23, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [158410] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, - anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(6517), 1, - anon_sym_RPAREN, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [133225] = 23, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(6571), 1, + sym_identifier, + ACTIONS(6573), 1, + anon_sym_COLON_COLON, + ACTIONS(6577), 1, + sym_primitive_type, + ACTIONS(6579), 1, + anon_sym_enum, + ACTIONS(6581), 1, + anon_sym_class, + ACTIONS(6583), 1, + anon_sym_struct, + ACTIONS(6585), 1, + anon_sym_union, + ACTIONS(6587), 1, + sym_auto, + ACTIONS(6589), 1, + anon_sym_decltype, + ACTIONS(6591), 1, + anon_sym_typename, + STATE(1831), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1924), 1, + sym__type_specifier, + STATE(2172), 1, + sym_template_type, + STATE(2270), 1, + sym_decltype_auto, + STATE(2418), 1, + sym_qualified_type_identifier, + STATE(5441), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(6575), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2284), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [158484] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, - anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(6519), 1, - anon_sym_SEMI, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [133302] = 13, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1495), 1, + sym_auto, + ACTIONS(1497), 1, + anon_sym_decltype, + ACTIONS(5524), 1, + sym_primitive_type, + ACTIONS(6607), 1, + sym_identifier, + ACTIONS(6609), 1, + anon_sym_COLON_COLON, + ACTIONS(6613), 1, + anon_sym_class, + ACTIONS(6615), 1, + anon_sym_struct, + ACTIONS(6617), 1, + anon_sym_union, + ACTIONS(6701), 1, + anon_sym_enum, + ACTIONS(6703), 1, + anon_sym_typename, + STATE(1935), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2591), 1, + sym__type_specifier, + STATE(2664), 1, + sym_template_type, + STATE(2731), 1, + sym_decltype_auto, + STATE(2847), 1, + sym_qualified_type_identifier, + STATE(5374), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(1483), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2780), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [158558] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(2965), 1, anon_sym_const, - ACTIONS(5708), 1, + ACTIONS(3757), 1, anon_sym_LPAREN2, - ACTIONS(5716), 1, - anon_sym_LBRACK, - ACTIONS(5818), 1, + ACTIONS(6775), 1, anon_sym_STAR, - ACTIONS(5820), 1, + ACTIONS(6777), 1, anon_sym_AMP_AMP, - ACTIONS(5822), 1, + ACTIONS(6779), 1, anon_sym_AMP, - STATE(3938), 1, + ACTIONS(6781), 1, + anon_sym_LBRACK, + ACTIONS(6785), 1, + sym_auto, + ACTIONS(6787), 1, + anon_sym_decltype, + STATE(4300), 1, sym_parameter_list, - STATE(4892), 1, + STATE(4459), 1, + sym_decltype_auto, + STATE(5287), 1, sym__abstract_declarator, - STATE(4142), 2, + STATE(4257), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(4735), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(4695), 7, - anon_sym_COMMA, + ACTIONS(6545), 5, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, anon_sym_requires, - ACTIONS(5651), 7, + STATE(5127), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6783), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -315681,44 +349790,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [133359] = 14, + [158622] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(6377), 1, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(6571), 1, sym_identifier, - ACTIONS(6379), 1, - anon_sym_LPAREN2, - ACTIONS(6381), 1, - anon_sym_STAR, - STATE(4135), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4944), 1, - sym__type_declarator, - STATE(6677), 1, - sym_ms_based_modifier, - ACTIONS(2919), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(4009), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4182), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2917), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(5193), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(2921), 8, + ACTIONS(6573), 1, + anon_sym_COLON_COLON, + ACTIONS(6577), 1, + sym_primitive_type, + ACTIONS(6579), 1, + anon_sym_enum, + ACTIONS(6581), 1, + anon_sym_class, + ACTIONS(6583), 1, + anon_sym_struct, + ACTIONS(6585), 1, + anon_sym_union, + ACTIONS(6587), 1, + sym_auto, + ACTIONS(6589), 1, + anon_sym_decltype, + ACTIONS(6591), 1, + anon_sym_typename, + STATE(1831), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1926), 1, + sym__type_specifier, + STATE(2172), 1, + sym_template_type, + STATE(2270), 1, + sym_decltype_auto, + STATE(2418), 1, + sym_qualified_type_identifier, + STATE(5441), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(6575), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2284), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [158696] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5753), 1, anon_sym_const, + ACTIONS(6009), 1, + anon_sym_AMP_AMP, + ACTIONS(6011), 1, + anon_sym_AMP, + ACTIONS(6019), 1, + anon_sym_DASH_GT, + ACTIONS(6021), 1, + anon_sym_noexcept, + ACTIONS(6023), 1, + anon_sym_throw, + ACTIONS(6025), 1, + anon_sym_requires, + ACTIONS(6803), 1, + anon_sym_LBRACK, + STATE(5065), 1, + sym_requires_clause, + STATE(5109), 1, + sym_trailing_return_type, + STATE(4154), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6017), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -315726,1480 +349880,905 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [133418] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6521), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6523), 1, - anon_sym_AMP_AMP, - ACTIONS(4270), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4272), 16, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [133459] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, - anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(6525), 1, - anon_sym_SEMI, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [133536] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4958), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4956), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [133573] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(5439), 1, - anon_sym_DOT, - ACTIONS(5441), 1, - anon_sym_DASH_GT, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6347), 1, - anon_sym_SLASH, - ACTIONS(6349), 1, - anon_sym_CARET, - ACTIONS(6351), 1, - anon_sym_AMP, - ACTIONS(6357), 1, - anon_sym_GT_EQ, - ACTIONS(6361), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6363), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6365), 1, - anon_sym_AMP_AMP, - ACTIONS(6367), 1, - anon_sym_PIPE, - ACTIONS(6371), 1, - anon_sym_QMARK, - ACTIONS(6527), 1, - anon_sym_COLON, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6343), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6345), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6353), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6359), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6355), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [133650] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, - anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(6529), 1, - anon_sym_SEMI, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [133727] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(5439), 1, - anon_sym_DOT, - ACTIONS(5441), 1, - anon_sym_DASH_GT, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6347), 1, - anon_sym_SLASH, - ACTIONS(6349), 1, - anon_sym_CARET, - ACTIONS(6351), 1, - anon_sym_AMP, - ACTIONS(6357), 1, - anon_sym_GT_EQ, - ACTIONS(6361), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6363), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6365), 1, - anon_sym_AMP_AMP, - ACTIONS(6367), 1, - anon_sym_PIPE, - ACTIONS(6371), 1, - anon_sym_QMARK, - ACTIONS(6531), 1, - anon_sym_COLON, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6343), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6345), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6353), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6359), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6355), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [133804] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5097), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5095), 18, - anon_sym_DOT_DOT_DOT, + ACTIONS(6801), 8, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [133841] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, - anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(6533), 1, - anon_sym_SEMI, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [133918] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, - anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(6535), 1, anon_sym_SEMI, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [133995] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(5439), 1, - anon_sym_DOT, - ACTIONS(5441), 1, - anon_sym_DASH_GT, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5026), 8, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(5024), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - [134044] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, - anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(6537), 1, - anon_sym_RPAREN, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [134121] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, - anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(6539), 1, - anon_sym_RPAREN, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [134198] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(5439), 1, - anon_sym_DOT, - ACTIONS(5441), 1, - anon_sym_DASH_GT, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6347), 1, - anon_sym_SLASH, - ACTIONS(6349), 1, - anon_sym_CARET, - ACTIONS(6351), 1, - anon_sym_AMP, - ACTIONS(6357), 1, - anon_sym_GT_EQ, - ACTIONS(6361), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6363), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6365), 1, - anon_sym_AMP_AMP, - ACTIONS(6367), 1, - anon_sym_PIPE, - ACTIONS(6371), 1, - anon_sym_QMARK, - ACTIONS(6541), 1, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_COLON, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6343), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6345), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6353), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6359), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6355), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [134275] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5016), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5014), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [134312] = 3, + anon_sym_try, + [158756] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(5062), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5060), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [134349] = 4, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(6621), 1, + sym_identifier, + ACTIONS(6623), 1, + anon_sym_COLON_COLON, + ACTIONS(6627), 1, + sym_primitive_type, + ACTIONS(6629), 1, + anon_sym_enum, + ACTIONS(6631), 1, + anon_sym_class, + ACTIONS(6633), 1, + anon_sym_struct, + ACTIONS(6635), 1, + anon_sym_union, + ACTIONS(6637), 1, + sym_auto, + ACTIONS(6639), 1, + anon_sym_decltype, + ACTIONS(6641), 1, + anon_sym_typename, + STATE(1910), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2609), 1, + sym_template_type, + STATE(2660), 1, + sym__type_specifier, + STATE(2762), 1, + sym_decltype_auto, + STATE(2915), 1, + sym_qualified_type_identifier, + STATE(5412), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(6625), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2790), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [158830] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6523), 1, - anon_sym_AMP_AMP, - ACTIONS(4304), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4306), 17, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [134388] = 23, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2428), 1, + sym_identifier, + ACTIONS(2434), 1, + anon_sym_COLON_COLON, + ACTIONS(2438), 1, + sym_primitive_type, + ACTIONS(2442), 1, + anon_sym_class, + ACTIONS(2444), 1, + anon_sym_struct, + ACTIONS(2446), 1, + anon_sym_union, + ACTIONS(5588), 1, + anon_sym_enum, + ACTIONS(5590), 1, + anon_sym_typename, + STATE(3376), 1, + sym__type_specifier, + STATE(3395), 1, + sym_template_type, + STATE(3490), 1, + sym_qualified_type_identifier, + STATE(3494), 1, + sym_decltype_auto, + STATE(3511), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5394), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(2436), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3481), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [158904] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(5439), 1, - anon_sym_DOT, - ACTIONS(5441), 1, - anon_sym_DASH_GT, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6347), 1, - anon_sym_SLASH, - ACTIONS(6349), 1, - anon_sym_CARET, - ACTIONS(6351), 1, - anon_sym_AMP, - ACTIONS(6357), 1, - anon_sym_GT_EQ, - ACTIONS(6361), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6363), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6365), 1, - anon_sym_AMP_AMP, - ACTIONS(6367), 1, - anon_sym_PIPE, - ACTIONS(6371), 1, - anon_sym_QMARK, - ACTIONS(6543), 1, - anon_sym_COLON, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6343), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6345), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6353), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6359), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6355), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [134465] = 23, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1535), 1, + sym_primitive_type, + ACTIONS(1537), 1, + anon_sym_enum, + ACTIONS(1539), 1, + anon_sym_class, + ACTIONS(1541), 1, + anon_sym_struct, + ACTIONS(1543), 1, + anon_sym_union, + ACTIONS(1545), 1, + sym_auto, + ACTIONS(1547), 1, + anon_sym_decltype, + ACTIONS(1551), 1, + anon_sym_typename, + ACTIONS(3755), 1, + sym_identifier, + ACTIONS(4731), 1, + anon_sym_COLON_COLON, + STATE(3395), 1, + sym_template_type, + STATE(3805), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3925), 1, + sym__type_specifier, + STATE(4003), 1, + sym_qualified_type_identifier, + STATE(4021), 1, + sym_decltype_auto, + STATE(5352), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(1533), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4001), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [158978] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, - anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(6545), 1, - anon_sym_SEMI, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [134542] = 23, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1495), 1, + sym_auto, + ACTIONS(1497), 1, + anon_sym_decltype, + ACTIONS(5524), 1, + sym_primitive_type, + ACTIONS(6607), 1, + sym_identifier, + ACTIONS(6609), 1, + anon_sym_COLON_COLON, + ACTIONS(6611), 1, + anon_sym_enum, + ACTIONS(6613), 1, + anon_sym_class, + ACTIONS(6615), 1, + anon_sym_struct, + ACTIONS(6617), 1, + anon_sym_union, + ACTIONS(6619), 1, + anon_sym_typename, + STATE(1935), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2664), 1, + sym_template_type, + STATE(2731), 1, + sym_decltype_auto, + STATE(2847), 1, + sym_qualified_type_identifier, + STATE(3267), 1, + sym__type_specifier, + STATE(5374), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(1483), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2780), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [159052] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6014), 1, - anon_sym_SLASH, - ACTIONS(6016), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6018), 1, - anon_sym_AMP_AMP, - ACTIONS(6020), 1, - anon_sym_PIPE, - ACTIONS(6022), 1, - anon_sym_CARET, - ACTIONS(6024), 1, - anon_sym_AMP, - ACTIONS(6030), 1, - anon_sym_GT_EQ, - ACTIONS(6036), 1, - anon_sym_QMARK, - ACTIONS(6038), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6547), 1, - anon_sym_RBRACK, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6010), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6012), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6026), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6032), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6028), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [134619] = 23, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1431), 1, + anon_sym_enum, + ACTIONS(1433), 1, + anon_sym_class, + ACTIONS(1435), 1, + anon_sym_struct, + ACTIONS(1437), 1, + anon_sym_union, + ACTIONS(1451), 1, + anon_sym_typename, + ACTIONS(2438), 1, + sym_primitive_type, + ACTIONS(3755), 1, + sym_identifier, + ACTIONS(3765), 1, + anon_sym_COLON_COLON, + STATE(3271), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3376), 1, + sym__type_specifier, + STATE(3395), 1, + sym_template_type, + STATE(3490), 1, + sym_qualified_type_identifier, + STATE(3494), 1, + sym_decltype_auto, + STATE(5354), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3481), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [159126] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, - anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(6549), 1, - anon_sym_SEMI, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [134696] = 9, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(6621), 1, + sym_identifier, + ACTIONS(6623), 1, + anon_sym_COLON_COLON, + ACTIONS(6627), 1, + sym_primitive_type, + ACTIONS(6629), 1, + anon_sym_enum, + ACTIONS(6631), 1, + anon_sym_class, + ACTIONS(6633), 1, + anon_sym_struct, + ACTIONS(6635), 1, + anon_sym_union, + ACTIONS(6637), 1, + sym_auto, + ACTIONS(6639), 1, + anon_sym_decltype, + ACTIONS(6641), 1, + anon_sym_typename, + STATE(1910), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2179), 1, + sym__type_specifier, + STATE(2609), 1, + sym_template_type, + STATE(2762), 1, + sym_decltype_auto, + STATE(2915), 1, + sym_qualified_type_identifier, + STATE(5412), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(6625), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2790), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [159200] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(5753), 1, + anon_sym_const, + ACTIONS(6547), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(5439), 1, - anon_sym_DOT, - ACTIONS(5441), 1, - anon_sym_DASH_GT, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5058), 8, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(5056), 14, - anon_sym_DOT_DOT_DOT, + ACTIONS(6549), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(6551), 1, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(6553), 1, + anon_sym_AMP, + ACTIONS(6555), 1, + anon_sym_LBRACK, + STATE(4170), 1, + sym_parameter_list, + STATE(5099), 1, + sym__abstract_declarator, + STATE(4155), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5059), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6017), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(4757), 8, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - [134745] = 3, + anon_sym_try, + anon_sym_requires, + [159258] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4938), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(4255), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6340), 1, + anon_sym___attribute__, + ACTIONS(6533), 1, + anon_sym___declspec, + ACTIONS(6539), 1, + anon_sym_virtual, + ACTIONS(5556), 2, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4936), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(5558), 3, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [134782] = 23, + ACTIONS(6531), 5, + anon_sym_extern, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + ACTIONS(6342), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(4136), 8, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + sym_virtual_function_specifier, + aux_sym__declaration_specifiers_repeat1, + [159312] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, - anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(6551), 1, - anon_sym_SEMI, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [134859] = 23, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(6649), 1, + sym_identifier, + ACTIONS(6651), 1, + anon_sym_COLON_COLON, + ACTIONS(6655), 1, + sym_primitive_type, + ACTIONS(6657), 1, + anon_sym_enum, + ACTIONS(6659), 1, + anon_sym_class, + ACTIONS(6661), 1, + anon_sym_struct, + ACTIONS(6663), 1, + anon_sym_union, + ACTIONS(6665), 1, + sym_auto, + ACTIONS(6667), 1, + anon_sym_decltype, + ACTIONS(6669), 1, + anon_sym_typename, + STATE(1871), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2143), 1, + sym__type_specifier, + STATE(2555), 1, + sym_template_type, + STATE(2594), 1, + sym_qualified_type_identifier, + STATE(2612), 1, + sym_decltype_auto, + STATE(5439), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(6653), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2614), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [159386] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, - anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(6553), 1, - anon_sym_RPAREN, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [134936] = 23, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1495), 1, + sym_auto, + ACTIONS(1497), 1, + anon_sym_decltype, + ACTIONS(5524), 1, + sym_primitive_type, + ACTIONS(6607), 1, + sym_identifier, + ACTIONS(6609), 1, + anon_sym_COLON_COLON, + ACTIONS(6611), 1, + anon_sym_enum, + ACTIONS(6613), 1, + anon_sym_class, + ACTIONS(6615), 1, + anon_sym_struct, + ACTIONS(6617), 1, + anon_sym_union, + ACTIONS(6619), 1, + anon_sym_typename, + STATE(1935), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2664), 1, + sym_template_type, + STATE(2731), 1, + sym_decltype_auto, + STATE(2847), 1, + sym_qualified_type_identifier, + STATE(3263), 1, + sym__type_specifier, + STATE(5374), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(1483), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2780), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [159460] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, - anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(6555), 1, - anon_sym_SEMI, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [135013] = 3, + ACTIONS(105), 1, + sym_auto, + ACTIONS(107), 1, + anon_sym_decltype, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2438), 1, + sym_primitive_type, + ACTIONS(3755), 1, + sym_identifier, + ACTIONS(3765), 1, + anon_sym_COLON_COLON, + ACTIONS(5616), 1, + anon_sym_class, + ACTIONS(5618), 1, + anon_sym_struct, + ACTIONS(5620), 1, + anon_sym_union, + ACTIONS(5624), 1, + anon_sym_enum, + ACTIONS(5626), 1, + anon_sym_typename, + STATE(3395), 1, + sym_template_type, + STATE(3490), 1, + sym_qualified_type_identifier, + STATE(3494), 1, + sym_decltype_auto, + STATE(3511), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5354), 1, + sym__scope_resolution, + STATE(5508), 1, + sym__type_specifier, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(2436), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3481), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [159534] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4962), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4960), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [135050] = 23, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(6671), 1, + sym_identifier, + ACTIONS(6673), 1, + anon_sym_COLON_COLON, + ACTIONS(6677), 1, + sym_primitive_type, + ACTIONS(6679), 1, + anon_sym_enum, + ACTIONS(6681), 1, + anon_sym_class, + ACTIONS(6683), 1, + anon_sym_struct, + ACTIONS(6685), 1, + anon_sym_union, + ACTIONS(6687), 1, + sym_auto, + ACTIONS(6689), 1, + anon_sym_decltype, + ACTIONS(6691), 1, + anon_sym_typename, + STATE(1821), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1866), 1, + sym__type_specifier, + STATE(1960), 1, + sym_template_type, + STATE(2091), 1, + sym_qualified_type_identifier, + STATE(2145), 1, + sym_decltype_auto, + STATE(5448), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(6675), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2144), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [159608] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, - anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(6557), 1, - anon_sym_RPAREN, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [135127] = 23, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(6671), 1, + sym_identifier, + ACTIONS(6673), 1, + anon_sym_COLON_COLON, + ACTIONS(6677), 1, + sym_primitive_type, + ACTIONS(6679), 1, + anon_sym_enum, + ACTIONS(6681), 1, + anon_sym_class, + ACTIONS(6683), 1, + anon_sym_struct, + ACTIONS(6685), 1, + anon_sym_union, + ACTIONS(6687), 1, + sym_auto, + ACTIONS(6689), 1, + anon_sym_decltype, + ACTIONS(6691), 1, + anon_sym_typename, + STATE(1821), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1852), 1, + sym__type_specifier, + STATE(1960), 1, + sym_template_type, + STATE(2091), 1, + sym_qualified_type_identifier, + STATE(2145), 1, + sym_decltype_auto, + STATE(5448), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(6675), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2144), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [159682] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(6671), 1, + sym_identifier, + ACTIONS(6673), 1, + anon_sym_COLON_COLON, + ACTIONS(6677), 1, + sym_primitive_type, + ACTIONS(6681), 1, + anon_sym_class, + ACTIONS(6683), 1, + anon_sym_struct, + ACTIONS(6685), 1, + anon_sym_union, + ACTIONS(6687), 1, + sym_auto, + ACTIONS(6689), 1, + anon_sym_decltype, + ACTIONS(6697), 1, + anon_sym_enum, + ACTIONS(6699), 1, + anon_sym_typename, + STATE(1821), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1951), 1, + sym__type_specifier, + STATE(1960), 1, + sym_template_type, + STATE(2091), 1, + sym_qualified_type_identifier, + STATE(2145), 1, + sym_decltype_auto, + STATE(5448), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(6675), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2144), 8, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_decltype, + sym_class_specifier, + sym_dependent_type, + [159756] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6547), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(6555), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, + ACTIONS(6643), 1, + anon_sym_STAR, + ACTIONS(6645), 1, anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(6647), 1, anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(6559), 1, + STATE(4204), 1, + sym_parameter_list, + STATE(5173), 1, + sym__abstract_declarator, + STATE(4190), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5059), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(4757), 7, + anon_sym_COMMA, anon_sym_SEMI, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [135204] = 23, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + anon_sym_requires, + ACTIONS(6342), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [159813] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6014), 1, - anon_sym_SLASH, - ACTIONS(6016), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6018), 1, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6009), 1, anon_sym_AMP_AMP, - ACTIONS(6020), 1, - anon_sym_PIPE, - ACTIONS(6022), 1, - anon_sym_CARET, - ACTIONS(6024), 1, + ACTIONS(6011), 1, anon_sym_AMP, - ACTIONS(6030), 1, - anon_sym_GT_EQ, - ACTIONS(6036), 1, - anon_sym_QMARK, - ACTIONS(6038), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6561), 1, - anon_sym_RBRACK, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6010), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6012), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6026), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6032), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6028), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [135281] = 23, + ACTIONS(6021), 1, + anon_sym_noexcept, + ACTIONS(6023), 1, + anon_sym_throw, + ACTIONS(6344), 1, + anon_sym_DASH_GT, + ACTIONS(6346), 1, + anon_sym_requires, + ACTIONS(6795), 1, + anon_sym_LBRACK, + STATE(5019), 1, + sym_trailing_return_type, + STATE(5045), 1, + sym_requires_clause, + STATE(4194), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6342), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(6793), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [159872] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3591), 1, - anon_sym_RBRACK, - ACTIONS(4221), 1, + ACTIONS(2965), 1, + anon_sym_const, + ACTIONS(3757), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6014), 1, - anon_sym_SLASH, - ACTIONS(6016), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6018), 1, + ACTIONS(3759), 1, + anon_sym_STAR, + ACTIONS(3761), 1, anon_sym_AMP_AMP, - ACTIONS(6020), 1, - anon_sym_PIPE, - ACTIONS(6022), 1, - anon_sym_CARET, - ACTIONS(6024), 1, + ACTIONS(3763), 1, anon_sym_AMP, - ACTIONS(6030), 1, - anon_sym_GT_EQ, - ACTIONS(6036), 1, - anon_sym_QMARK, - ACTIONS(6038), 1, - anon_sym_LT_EQ_GT, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6010), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6012), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6026), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6032), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6028), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [135358] = 15, + ACTIONS(5120), 1, + sym_auto, + ACTIONS(5122), 1, + anon_sym_decltype, + ACTIONS(6781), 1, + anon_sym_LBRACK, + STATE(2722), 1, + sym_decltype_auto, + STATE(4345), 1, + sym_parameter_list, + STATE(5341), 1, + sym__abstract_declarator, + STATE(4327), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(6545), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_requires, + STATE(5127), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6783), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [159935] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_const, - ACTIONS(5602), 1, + ACTIONS(6009), 1, anon_sym_AMP_AMP, - ACTIONS(5604), 1, + ACTIONS(6011), 1, anon_sym_AMP, - ACTIONS(5614), 1, + ACTIONS(6021), 1, anon_sym_noexcept, - ACTIONS(5616), 1, + ACTIONS(6023), 1, anon_sym_throw, - ACTIONS(5622), 1, - anon_sym_LBRACK, - ACTIONS(5784), 1, + ACTIONS(6344), 1, anon_sym_DASH_GT, - ACTIONS(5786), 1, + ACTIONS(6346), 1, anon_sym_requires, - STATE(4842), 1, - sym_requires_clause, - STATE(4948), 1, + ACTIONS(6799), 1, + anon_sym_LBRACK, + STATE(4991), 1, sym_trailing_return_type, - ACTIONS(4160), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5620), 4, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - STATE(3511), 6, + STATE(5023), 1, + sym_requires_clause, + STATE(4194), 5, sym_type_qualifier, - sym_virtual_specifier, sym_ref_qualifier, sym_noexcept, sym_throw_specifier, - aux_sym_function_declarator_repeat2, - ACTIONS(5651), 7, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6342), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -317207,202 +350786,264 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [135419] = 23, + ACTIONS(6797), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [159994] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3581), 1, - anon_sym_RBRACK, - ACTIONS(4221), 1, + ACTIONS(2965), 1, + anon_sym_const, + ACTIONS(3757), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(5396), 1, + sym_auto, + ACTIONS(5398), 1, + anon_sym_decltype, + ACTIONS(6781), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6014), 1, - anon_sym_SLASH, - ACTIONS(6016), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6018), 1, + ACTIONS(6805), 1, + anon_sym_STAR, + ACTIONS(6807), 1, anon_sym_AMP_AMP, - ACTIONS(6020), 1, - anon_sym_PIPE, - ACTIONS(6022), 1, - anon_sym_CARET, - ACTIONS(6024), 1, + ACTIONS(6809), 1, anon_sym_AMP, - ACTIONS(6030), 1, - anon_sym_GT_EQ, - ACTIONS(6036), 1, - anon_sym_QMARK, - ACTIONS(6038), 1, - anon_sym_LT_EQ_GT, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6010), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6012), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6026), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6032), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6028), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [135496] = 23, + STATE(3146), 1, + sym_decltype_auto, + STATE(4328), 1, + sym_parameter_list, + STATE(5433), 1, + sym__abstract_declarator, + STATE(4323), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(6545), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + anon_sym_requires, + STATE(5127), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6783), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [160057] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6547), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(6555), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, + ACTIONS(6643), 1, + anon_sym_STAR, + ACTIONS(6645), 1, anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(6647), 1, anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(6563), 1, + STATE(4204), 1, + sym_parameter_list, + STATE(5155), 1, + sym__abstract_declarator, + STATE(4389), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5059), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(5412), 7, + anon_sym_COMMA, anon_sym_SEMI, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [135573] = 3, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + anon_sym_requires, + ACTIONS(6342), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [160114] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(4992), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(2391), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6535), 1, + sym_auto, + ACTIONS(6537), 1, + anon_sym_decltype, + ACTIONS(6547), 1, anon_sym_LPAREN2, + ACTIONS(6555), 1, + anon_sym_LBRACK, + ACTIONS(6811), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(6813), 1, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [135610] = 3, + ACTIONS(6815), 1, + anon_sym_AMP, + STATE(3441), 1, + sym_decltype_auto, + STATE(4349), 1, + sym_parameter_list, + STATE(5430), 1, + sym__abstract_declarator, + STATE(4347), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(6545), 4, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_requires, + STATE(5059), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6342), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [160177] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5032), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5030), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6547), 1, anon_sym_LPAREN2, + ACTIONS(6555), 1, + anon_sym_LBRACK, + ACTIONS(6643), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(6645), 1, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + ACTIONS(6647), 1, + anon_sym_AMP, + STATE(4204), 1, + sym_parameter_list, + STATE(5200), 1, + sym__abstract_declarator, + STATE(4389), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5059), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6342), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(6756), 7, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + anon_sym_requires, + [160234] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6009), 1, + anon_sym_AMP_AMP, + ACTIONS(6011), 1, + anon_sym_AMP, + ACTIONS(6021), 1, + anon_sym_noexcept, + ACTIONS(6023), 1, + anon_sym_throw, + ACTIONS(6529), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(6695), 1, + anon_sym_requires, + ACTIONS(6705), 1, anon_sym_DASH_GT, - anon_sym_GT2, - [135647] = 9, + STATE(5077), 1, + sym_requires_clause, + STATE(5223), 1, + sym_trailing_return_type, + ACTIONS(4016), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(6527), 4, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + STATE(4111), 6, + sym_type_qualifier, + sym_virtual_specifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_function_declarator_repeat2, + ACTIONS(6342), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [160295] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6565), 1, + ACTIONS(6819), 1, anon_sym_AMP_AMP, - ACTIONS(6568), 1, + ACTIONS(6822), 1, anon_sym_AMP, - ACTIONS(6571), 1, + ACTIONS(6825), 1, + anon_sym_LBRACK, + ACTIONS(6827), 1, anon_sym_const, - ACTIONS(6577), 1, + ACTIONS(6833), 1, anon_sym_noexcept, - ACTIONS(6580), 1, + ACTIONS(6836), 1, anon_sym_throw, - STATE(3921), 5, + STATE(4194), 5, sym_type_qualifier, sym_ref_qualifier, sym_noexcept, sym_throw_specifier, aux_sym_abstract_function_declarator_repeat1, - ACTIONS(6574), 7, + ACTIONS(6830), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -317410,147 +351051,219 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - ACTIONS(6393), 12, - anon_sym_DOT_DOT_DOT, + ACTIONS(6817), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_try, anon_sym_requires, - [135696] = 3, + [160346] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(5036), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6009), 1, + anon_sym_AMP_AMP, + ACTIONS(6011), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5034), 18, - anon_sym_DOT_DOT_DOT, + ACTIONS(6021), 1, + anon_sym_noexcept, + ACTIONS(6023), 1, + anon_sym_throw, + ACTIONS(6344), 1, + anon_sym_DASH_GT, + ACTIONS(6346), 1, + anon_sym_requires, + ACTIONS(6791), 1, + anon_sym_LBRACK, + STATE(4989), 1, + sym_requires_clause, + STATE(5004), 1, + sym_trailing_return_type, + STATE(4188), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6342), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(6789), 7, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [160405] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6009), 1, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + ACTIONS(6011), 1, + anon_sym_AMP, + ACTIONS(6015), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(6021), 1, + anon_sym_noexcept, + ACTIONS(6023), 1, + anon_sym_throw, + ACTIONS(6693), 1, anon_sym_DASH_GT, - anon_sym_GT2, - [135733] = 23, + ACTIONS(6695), 1, + anon_sym_requires, + STATE(5135), 1, + sym_requires_clause, + STATE(5216), 1, + sym_trailing_return_type, + ACTIONS(4016), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(6007), 4, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + STATE(4111), 6, + sym_type_qualifier, + sym_virtual_specifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_function_declarator_repeat2, + ACTIONS(6342), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [160466] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3610), 1, - anon_sym_RBRACK, - ACTIONS(4221), 1, + ACTIONS(6841), 6, anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6014), 1, - anon_sym_SLASH, - ACTIONS(6016), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6018), 1, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(6020), 1, - anon_sym_PIPE, - ACTIONS(6022), 1, - anon_sym_CARET, - ACTIONS(6024), 1, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(6839), 23, anon_sym_AMP, - ACTIONS(6030), 1, - anon_sym_GT_EQ, - ACTIONS(6036), 1, - anon_sym_QMARK, - ACTIONS(6038), 1, - anon_sym_LT_EQ_GT, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6010), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6012), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6026), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6032), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6028), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [135810] = 16, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [160503] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6847), 1, + anon_sym___attribute__, + STATE(4198), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(6845), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(6843), 23, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [160544] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2921), 1, + ACTIONS(2965), 1, anon_sym_const, - ACTIONS(3369), 1, + ACTIONS(3757), 1, anon_sym_LPAREN2, - ACTIONS(5216), 1, + ACTIONS(5396), 1, sym_auto, - ACTIONS(5218), 1, + ACTIONS(5398), 1, anon_sym_decltype, - ACTIONS(6268), 1, + ACTIONS(6781), 1, anon_sym_LBRACK, - ACTIONS(6483), 1, + ACTIONS(6805), 1, anon_sym_STAR, - ACTIONS(6485), 1, + ACTIONS(6807), 1, anon_sym_AMP_AMP, - ACTIONS(6487), 1, + ACTIONS(6809), 1, anon_sym_AMP, - STATE(2855), 1, + STATE(3146), 1, sym_decltype_auto, - STATE(4077), 1, + STATE(4328), 1, sym_parameter_list, - STATE(5121), 1, + STATE(5444), 1, sym__abstract_declarator, - STATE(4061), 2, + STATE(4319), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(5722), 4, + ACTIONS(6561), 4, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_GT2, anon_sym_requires, - STATE(4832), 5, + STATE(5127), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(6270), 7, + ACTIONS(6783), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -317558,207 +351271,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [135873] = 23, + [160607] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, + ACTIONS(6850), 1, anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(6853), 1, anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, + ACTIONS(6856), 1, + anon_sym_const, + ACTIONS(6862), 1, + anon_sym_noexcept, + ACTIONS(6865), 1, + anon_sym_throw, + STATE(4200), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6859), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(6817), 12, anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(6583), 1, - anon_sym_SEMI, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [135950] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4221), 1, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, - anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(6585), 1, anon_sym_SEMI, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [136027] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, + anon_sym_EQ, anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, - anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(6587), 1, - anon_sym_RPAREN, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [136104] = 15, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [160656] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_const, - ACTIONS(5602), 1, + ACTIONS(6009), 1, anon_sym_AMP_AMP, - ACTIONS(5604), 1, + ACTIONS(6011), 1, anon_sym_AMP, - ACTIONS(5614), 1, + ACTIONS(6015), 1, + anon_sym_LBRACK, + ACTIONS(6021), 1, anon_sym_noexcept, - ACTIONS(5616), 1, + ACTIONS(6023), 1, anon_sym_throw, - ACTIONS(5728), 1, - anon_sym_LBRACK, - ACTIONS(5786), 1, + ACTIONS(6695), 1, anon_sym_requires, - ACTIONS(5790), 1, + ACTIONS(6705), 1, anon_sym_DASH_GT, - STATE(4835), 1, + STATE(5135), 1, sym_requires_clause, - STATE(4981), 1, + STATE(5216), 1, sym_trailing_return_type, - ACTIONS(4160), 2, + ACTIONS(4016), 2, anon_sym_final, anon_sym_override, - ACTIONS(5726), 4, + ACTIONS(6007), 4, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_try, - STATE(3511), 6, + STATE(4111), 6, sym_type_qualifier, sym_virtual_specifier, sym_ref_qualifier, sym_noexcept, sym_throw_specifier, aux_sym_function_declarator_repeat2, - ACTIONS(5651), 7, + ACTIONS(6342), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -317766,154 +351357,181 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [136165] = 23, + [160717] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(6868), 1, + sym_identifier, + ACTIONS(6870), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, - anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(6589), 1, - anon_sym_SEMI, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, + ACTIONS(6872), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [136242] = 23, + STATE(4398), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5264), 1, + sym__type_declarator, + STATE(7071), 1, + sym_ms_based_modifier, + ACTIONS(2963), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4207), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4433), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2961), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(5493), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(2965), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [160776] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(6868), 1, + sym_identifier, + ACTIONS(6870), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, - anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(6591), 1, - anon_sym_RPAREN, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, + ACTIONS(6872), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [136319] = 16, + STATE(4398), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5264), 1, + sym__type_declarator, + STATE(7071), 1, + sym_ms_based_modifier, + ACTIONS(2963), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4305), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4433), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2961), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(5493), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(2965), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [160835] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2921), 1, + ACTIONS(57), 1, anon_sym_const, - ACTIONS(3369), 1, - anon_sym_LPAREN2, - ACTIONS(3371), 1, - anon_sym_STAR, - ACTIONS(3373), 1, + ACTIONS(6009), 1, anon_sym_AMP_AMP, - ACTIONS(3375), 1, + ACTIONS(6011), 1, anon_sym_AMP, - ACTIONS(4691), 1, + ACTIONS(6021), 1, + anon_sym_noexcept, + ACTIONS(6023), 1, + anon_sym_throw, + ACTIONS(6344), 1, + anon_sym_DASH_GT, + ACTIONS(6346), 1, + anon_sym_requires, + ACTIONS(6803), 1, + anon_sym_LBRACK, + STATE(5000), 1, + sym_trailing_return_type, + STATE(5065), 1, + sym_requires_clause, + STATE(4186), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6342), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(6801), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [160894] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6535), 1, sym_auto, - ACTIONS(4693), 1, + ACTIONS(6537), 1, anon_sym_decltype, - ACTIONS(6268), 1, + ACTIONS(6547), 1, + anon_sym_LPAREN2, + ACTIONS(6555), 1, anon_sym_LBRACK, - STATE(2476), 1, + ACTIONS(6811), 1, + anon_sym_STAR, + ACTIONS(6813), 1, + anon_sym_AMP_AMP, + ACTIONS(6815), 1, + anon_sym_AMP, + STATE(3441), 1, sym_decltype_auto, - STATE(4080), 1, + STATE(4349), 1, sym_parameter_list, - STATE(5085), 1, + STATE(5420), 1, sym__abstract_declarator, - STATE(4104), 2, + STATE(4353), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(5706), 4, - anon_sym_COMMA, + ACTIONS(6561), 4, anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_requires, - STATE(4832), 5, + STATE(5059), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(6270), 7, + ACTIONS(6342), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -317921,97 +351539,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [136382] = 23, + [160957] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6547), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(6555), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, + ACTIONS(6643), 1, + anon_sym_STAR, + ACTIONS(6645), 1, anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(6647), 1, anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(6593), 1, - anon_sym_RPAREN, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [136459] = 14, + STATE(4204), 1, + sym_parameter_list, + STATE(5162), 1, + sym__abstract_declarator, + STATE(4389), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5059), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6342), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(6773), 7, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + anon_sym_requires, + [161014] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(6377), 1, + ACTIONS(6868), 1, sym_identifier, - ACTIONS(6379), 1, + ACTIONS(6870), 1, anon_sym_LPAREN2, - ACTIONS(6381), 1, + ACTIONS(6872), 1, anon_sym_STAR, - STATE(4135), 1, + STATE(4398), 1, sym_ms_unaligned_ptr_modifier, - STATE(5001), 1, + STATE(5240), 1, sym__type_declarator, - STATE(6677), 1, + STATE(7071), 1, sym_ms_based_modifier, - ACTIONS(2919), 2, + ACTIONS(2963), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(4009), 2, + STATE(4305), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4185), 2, + STATE(4439), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2917), 3, + ACTIONS(2961), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(5193), 5, + STATE(5493), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - ACTIONS(2921), 8, + ACTIONS(2965), 8, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -318020,135 +351628,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [136518] = 23, + [161073] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3567), 1, - anon_sym_RBRACK, - ACTIONS(4221), 1, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6535), 1, + sym_auto, + ACTIONS(6537), 1, + anon_sym_decltype, + ACTIONS(6547), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(6555), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6014), 1, - anon_sym_SLASH, - ACTIONS(6016), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6018), 1, + ACTIONS(6874), 1, + anon_sym_STAR, + ACTIONS(6876), 1, anon_sym_AMP_AMP, - ACTIONS(6020), 1, - anon_sym_PIPE, - ACTIONS(6022), 1, - anon_sym_CARET, - ACTIONS(6024), 1, + ACTIONS(6878), 1, anon_sym_AMP, - ACTIONS(6030), 1, - anon_sym_GT_EQ, - ACTIONS(6036), 1, - anon_sym_QMARK, - ACTIONS(6038), 1, - anon_sym_LT_EQ_GT, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6010), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6012), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6026), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6032), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6028), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [136595] = 23, + STATE(3441), 1, + sym_decltype_auto, + STATE(4318), 1, + sym_parameter_list, + STATE(5351), 1, + sym__abstract_declarator, + STATE(4343), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(6561), 4, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + anon_sym_requires, + STATE(5059), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6342), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [161136] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(6868), 1, + sym_identifier, + ACTIONS(6870), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, - anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(6595), 1, - anon_sym_SEMI, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, + ACTIONS(6872), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [136672] = 5, + STATE(4398), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5231), 1, + sym__type_declarator, + STATE(7071), 1, + sym_ms_based_modifier, + ACTIONS(2963), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4203), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4446), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2961), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(5493), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(2965), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [161195] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6601), 1, - anon_sym___attribute__, - STATE(3936), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(6599), 3, - anon_sym_AMP, - anon_sym_LBRACK, + ACTIONS(57), 1, anon_sym_const, - ACTIONS(6597), 23, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6535), 1, + sym_auto, + ACTIONS(6537), 1, + anon_sym_decltype, + ACTIONS(6547), 1, anon_sym_LPAREN2, + ACTIONS(6555), 1, + anon_sym_LBRACK, + ACTIONS(6874), 1, + anon_sym_STAR, + ACTIONS(6876), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(6878), 1, + anon_sym_AMP, + STATE(3441), 1, + sym_decltype_auto, + STATE(4318), 1, + sym_parameter_list, + STATE(5362), 1, + sym__abstract_declarator, + STATE(4322), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(6545), 4, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, + anon_sym_try, + anon_sym_requires, + STATE(5059), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6342), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -318156,51 +351767,388 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, + [161258] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6009), 1, + anon_sym_AMP_AMP, + ACTIONS(6011), 1, + anon_sym_AMP, + ACTIONS(6021), 1, + anon_sym_noexcept, + ACTIONS(6023), 1, + anon_sym_throw, + ACTIONS(6529), 1, + anon_sym_LBRACK, + ACTIONS(6693), 1, anon_sym_DASH_GT, + ACTIONS(6695), 1, + anon_sym_requires, + STATE(5077), 1, + sym_requires_clause, + STATE(5223), 1, + sym_trailing_return_type, + ACTIONS(4016), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, + ACTIONS(6527), 4, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, - anon_sym_requires, - [136713] = 13, + STATE(4111), 6, + sym_type_qualifier, + sym_virtual_specifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_function_declarator_repeat2, + ACTIONS(6342), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [161319] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(5708), 1, + ACTIONS(6882), 1, anon_sym_LPAREN2, - ACTIONS(5716), 1, + ACTIONS(6884), 5, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(6880), 23, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - ACTIONS(5818), 1, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + anon_sym_virtual, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [161358] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2965), 1, + anon_sym_const, + ACTIONS(3757), 1, + anon_sym_LPAREN2, + ACTIONS(3759), 1, anon_sym_STAR, - ACTIONS(5820), 1, + ACTIONS(3761), 1, anon_sym_AMP_AMP, - ACTIONS(5822), 1, + ACTIONS(3763), 1, anon_sym_AMP, - STATE(3938), 1, + ACTIONS(5120), 1, + sym_auto, + ACTIONS(5122), 1, + anon_sym_decltype, + ACTIONS(6781), 1, + anon_sym_LBRACK, + STATE(2722), 1, + sym_decltype_auto, + STATE(4345), 1, sym_parameter_list, - STATE(4911), 1, + STATE(5414), 1, sym__abstract_declarator, - STATE(3884), 2, + STATE(4314), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(4735), 5, + ACTIONS(6561), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_requires, + STATE(5127), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(4064), 7, + ACTIONS(6783), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [161421] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5753), 1, + anon_sym_const, + ACTIONS(6009), 1, + anon_sym_AMP_AMP, + ACTIONS(6011), 1, + anon_sym_AMP, + ACTIONS(6021), 1, + anon_sym_noexcept, + ACTIONS(6023), 1, + anon_sym_throw, + ACTIONS(6529), 1, + anon_sym_LBRACK, + ACTIONS(6750), 1, + anon_sym_DASH_GT, + ACTIONS(6752), 1, + anon_sym_requires, + STATE(5077), 1, + sym_requires_clause, + STATE(5455), 1, + sym_trailing_return_type, + ACTIONS(4016), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(6527), 3, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + STATE(4123), 6, + sym_type_qualifier, + sym_virtual_specifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_function_declarator_repeat2, + ACTIONS(6017), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [161481] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1519), 1, + anon_sym_LPAREN2, + ACTIONS(1521), 1, + anon_sym_TILDE, + ACTIONS(4755), 1, + sym_identifier, + ACTIONS(4765), 1, + anon_sym_COLON_COLON, + ACTIONS(5419), 1, + anon_sym_STAR, + ACTIONS(5421), 1, + anon_sym_AMP_AMP, + ACTIONS(5423), 1, + anon_sym_AMP, + ACTIONS(5425), 1, + anon_sym_LBRACK, + STATE(4768), 1, + sym__declarator, + STATE(4973), 1, + sym__scope_resolution, + STATE(6071), 1, + sym_init_declarator, + STATE(6817), 1, + sym_ms_based_modifier, + STATE(7236), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5080), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [161547] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1519), 1, + anon_sym_LPAREN2, + ACTIONS(1521), 1, + anon_sym_TILDE, + ACTIONS(4755), 1, + sym_identifier, + ACTIONS(4765), 1, + anon_sym_COLON_COLON, + ACTIONS(5419), 1, + anon_sym_STAR, + ACTIONS(5421), 1, + anon_sym_AMP_AMP, + ACTIONS(5423), 1, + anon_sym_AMP, + ACTIONS(5425), 1, + anon_sym_LBRACK, + STATE(4772), 1, + sym__declarator, + STATE(4973), 1, + sym__scope_resolution, + STATE(5860), 1, + sym_init_declarator, + STATE(6817), 1, + sym_ms_based_modifier, + STATE(7236), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5080), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [161613] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1519), 1, + anon_sym_LPAREN2, + ACTIONS(1521), 1, + anon_sym_TILDE, + ACTIONS(4755), 1, + sym_identifier, + ACTIONS(4765), 1, + anon_sym_COLON_COLON, + ACTIONS(5419), 1, + anon_sym_STAR, + ACTIONS(5421), 1, + anon_sym_AMP_AMP, + ACTIONS(5423), 1, + anon_sym_AMP, + ACTIONS(5425), 1, + anon_sym_LBRACK, + STATE(4973), 1, + sym__scope_resolution, + STATE(4986), 1, + sym__declarator, + STATE(6028), 1, + sym_init_declarator, + STATE(6817), 1, + sym_ms_based_modifier, + STATE(7236), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5080), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [161679] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6009), 1, + anon_sym_AMP_AMP, + ACTIONS(6011), 1, + anon_sym_AMP, + ACTIONS(6021), 1, + anon_sym_noexcept, + ACTIONS(6023), 1, + anon_sym_throw, + ACTIONS(6565), 1, + anon_sym_LBRACK, + ACTIONS(6695), 1, + anon_sym_requires, + ACTIONS(6705), 1, + anon_sym_DASH_GT, + STATE(5172), 1, + sym_requires_clause, + STATE(5486), 1, + sym_trailing_return_type, + ACTIONS(4016), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(6563), 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(4111), 6, + sym_type_qualifier, + sym_virtual_specifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_function_declarator_repeat2, + ACTIONS(6342), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [161739] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6886), 1, + anon_sym___attribute__, + STATE(4219), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(6845), 3, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(6843), 22, anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_try, - anon_sym_requires, - ACTIONS(5651), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -318208,36 +352156,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [136770] = 14, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [161779] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(5753), 1, anon_sym_const, - ACTIONS(5602), 1, + ACTIONS(6009), 1, anon_sym_AMP_AMP, - ACTIONS(5604), 1, + ACTIONS(6011), 1, anon_sym_AMP, - ACTIONS(5614), 1, + ACTIONS(6015), 1, + anon_sym_LBRACK, + ACTIONS(6021), 1, anon_sym_noexcept, - ACTIONS(5616), 1, + ACTIONS(6023), 1, anon_sym_throw, - ACTIONS(5653), 1, + ACTIONS(6750), 1, anon_sym_DASH_GT, - ACTIONS(5655), 1, + ACTIONS(6752), 1, anon_sym_requires, - ACTIONS(6244), 1, - anon_sym_LBRACK, - STATE(4728), 1, - sym_trailing_return_type, - STATE(4761), 1, + STATE(5135), 1, sym_requires_clause, - STATE(3845), 5, + STATE(5451), 1, + sym_trailing_return_type, + ACTIONS(4016), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(6007), 3, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + STATE(4123), 6, sym_type_qualifier, + sym_virtual_specifier, sym_ref_qualifier, sym_noexcept, sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - ACTIONS(5651), 7, + aux_sym_function_declarator_repeat2, + ACTIONS(6017), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -318245,108 +352209,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - ACTIONS(6242), 7, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [136829] = 23, + [161839] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(6891), 3, anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(6604), 1, - anon_sym_RPAREN, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [136906] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, + anon_sym_LBRACK, anon_sym_const, - ACTIONS(5700), 1, - sym_auto, - ACTIONS(5702), 1, - anon_sym_decltype, - ACTIONS(5708), 1, + ACTIONS(6889), 25, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(5716), 1, - anon_sym_LBRACK, - ACTIONS(6505), 1, - anon_sym_STAR, - ACTIONS(6507), 1, anon_sym_AMP_AMP, - ACTIONS(6509), 1, - anon_sym_AMP, - STATE(3142), 1, - sym_decltype_auto, - STATE(4097), 1, - sym_parameter_list, - STATE(5158), 1, - sym__abstract_declarator, - STATE(4098), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(5722), 4, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_try, - anon_sym_requires, - STATE(4735), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5651), 7, + anon_sym_EQ, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -318354,555 +352233,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [136969] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5066), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5064), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + anon_sym_COLON, anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [137006] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, - anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(6606), 1, - anon_sym_RPAREN, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [137083] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, - anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(6608), 1, - anon_sym_SEMI, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [137160] = 23, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [161875] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1519), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, - anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(6610), 1, - anon_sym_RPAREN, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, + ACTIONS(1521), 1, + anon_sym_TILDE, + ACTIONS(4755), 1, + sym_identifier, + ACTIONS(4765), 1, + anon_sym_COLON_COLON, + ACTIONS(5419), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [137237] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, + ACTIONS(5421), 1, anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(5423), 1, anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(6612), 1, - anon_sym_RPAREN, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [137314] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(5425), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, - anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(6614), 1, - anon_sym_SEMI, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [137391] = 23, + STATE(4781), 1, + sym__declarator, + STATE(4973), 1, + sym__scope_resolution, + STATE(5913), 1, + sym_init_declarator, + STATE(6817), 1, + sym_ms_based_modifier, + STATE(7236), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5080), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [161941] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6009), 1, anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(6011), 1, anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(6616), 1, - anon_sym_SEMI, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [137468] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, + ACTIONS(6021), 1, + anon_sym_noexcept, + ACTIONS(6023), 1, + anon_sym_throw, + ACTIONS(6346), 1, + anon_sym_requires, + ACTIONS(6523), 1, anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, - anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(6618), 1, - anon_sym_SEMI, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [137545] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(6795), 1, anon_sym_LBRACK, - ACTIONS(5439), 1, - anon_sym_DOT, - ACTIONS(5441), 1, - anon_sym_DASH_GT, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6347), 1, - anon_sym_SLASH, - ACTIONS(6349), 1, - anon_sym_CARET, - ACTIONS(6351), 1, - anon_sym_AMP, - ACTIONS(6357), 1, - anon_sym_GT_EQ, - ACTIONS(6361), 1, - anon_sym_LT_EQ_GT, - ACTIONS(6363), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6365), 1, - anon_sym_AMP_AMP, - ACTIONS(6367), 1, - anon_sym_PIPE, - ACTIONS(6371), 1, - anon_sym_QMARK, - ACTIONS(6620), 1, - anon_sym_COLON, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6343), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6345), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6353), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6359), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6355), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [137622] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3637), 1, - anon_sym_RBRACK, - ACTIONS(4221), 1, + STATE(5019), 1, + sym_trailing_return_type, + STATE(5045), 1, + sym_requires_clause, + STATE(4194), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6793), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6014), 1, - anon_sym_SLASH, - ACTIONS(6016), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6018), 1, - anon_sym_AMP_AMP, - ACTIONS(6020), 1, - anon_sym_PIPE, - ACTIONS(6022), 1, - anon_sym_CARET, - ACTIONS(6024), 1, - anon_sym_AMP, - ACTIONS(6030), 1, - anon_sym_GT_EQ, - ACTIONS(6036), 1, - anon_sym_QMARK, - ACTIONS(6038), 1, - anon_sym_LT_EQ_GT, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6010), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6012), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6026), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6032), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6028), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [137699] = 13, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6342), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [161999] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(5753), 1, anon_sym_const, - ACTIONS(5708), 1, + ACTIONS(6547), 1, anon_sym_LPAREN2, - ACTIONS(5716), 1, + ACTIONS(6555), 1, anon_sym_LBRACK, - ACTIONS(5818), 1, + ACTIONS(6557), 1, + sym_auto, + ACTIONS(6559), 1, + anon_sym_decltype, + ACTIONS(6893), 1, anon_sym_STAR, - ACTIONS(5820), 1, + ACTIONS(6895), 1, anon_sym_AMP_AMP, - ACTIONS(5822), 1, + ACTIONS(6897), 1, anon_sym_AMP, - STATE(3938), 1, + STATE(4059), 1, + sym_decltype_auto, + STATE(4372), 1, sym_parameter_list, - STATE(4896), 1, + STATE(5485), 1, sym__abstract_declarator, - STATE(4142), 2, + STATE(4358), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(4735), 5, + ACTIONS(6561), 3, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + anon_sym_requires, + STATE(5059), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(5651), 7, + ACTIONS(6017), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -318910,570 +352380,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - ACTIONS(6246), 7, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - anon_sym_requires, - [137756] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, - anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(6622), 1, - anon_sym_SEMI, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [137833] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, - anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(6624), 1, - anon_sym_SEMI, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [137910] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, - anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(6626), 1, - anon_sym_SEMI, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [137987] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4354), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4356), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - anon_sym_GT2, - [138024] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, - anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(6628), 1, - anon_sym_RPAREN, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [138101] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, - anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(6630), 1, - anon_sym_RPAREN, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [138178] = 23, + [162061] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1519), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(1521), 1, + anon_sym_TILDE, + ACTIONS(4755), 1, + sym_identifier, + ACTIONS(4765), 1, + anon_sym_COLON_COLON, + ACTIONS(5425), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, - anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(6632), 1, - anon_sym_RPAREN, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, + ACTIONS(5437), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [138255] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, + ACTIONS(5439), 1, anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(5441), 1, anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(6634), 1, - anon_sym_RPAREN, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [138332] = 23, + STATE(4915), 1, + sym__declarator, + STATE(4973), 1, + sym__scope_resolution, + STATE(6028), 1, + sym_init_declarator, + STATE(6758), 1, + sym_ms_based_modifier, + STATE(7236), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5080), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [162127] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1519), 1, anon_sym_LPAREN2, - ACTIONS(4892), 1, + ACTIONS(1521), 1, + anon_sym_TILDE, + ACTIONS(4755), 1, + sym_identifier, + ACTIONS(4765), 1, + anon_sym_COLON_COLON, + ACTIONS(5425), 1, anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, - anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, - anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(6636), 1, - anon_sym_SEMI, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, + ACTIONS(5437), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [138409] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - ACTIONS(4892), 1, - anon_sym_LBRACK, - ACTIONS(4896), 1, - anon_sym_DOT, - ACTIONS(4898), 1, - anon_sym_DASH_GT, - ACTIONS(5750), 1, - anon_sym_SLASH, - ACTIONS(5752), 1, + ACTIONS(5439), 1, anon_sym_AMP_AMP, - ACTIONS(5754), 1, - anon_sym_PIPE, - ACTIONS(5756), 1, - anon_sym_CARET, - ACTIONS(5758), 1, + ACTIONS(5441), 1, anon_sym_AMP, - ACTIONS(5764), 1, - anon_sym_GT_EQ, - ACTIONS(5768), 1, - anon_sym_LT_EQ_GT, - ACTIONS(5788), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5824), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5826), 1, - anon_sym_QMARK, - ACTIONS(6638), 1, - anon_sym_SEMI, - STATE(2534), 1, - sym_argument_list, - ACTIONS(5724), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(5746), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(5748), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5760), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(5762), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [138486] = 13, + STATE(4901), 1, + sym__declarator, + STATE(4973), 1, + sym__scope_resolution, + STATE(6028), 1, + sym_init_declarator, + STATE(6758), 1, + sym_ms_based_modifier, + STATE(7236), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5080), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [162193] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_const, - ACTIONS(5708), 1, + ACTIONS(6547), 1, anon_sym_LPAREN2, - ACTIONS(5716), 1, + ACTIONS(6555), 1, anon_sym_LBRACK, - ACTIONS(6082), 1, + ACTIONS(6738), 1, anon_sym_STAR, - ACTIONS(6084), 1, + ACTIONS(6740), 1, anon_sym_AMP_AMP, - ACTIONS(6086), 1, + ACTIONS(6742), 1, anon_sym_AMP, - STATE(3989), 1, + STATE(4235), 1, sym_parameter_list, - STATE(4934), 1, + STATE(5246), 1, sym__abstract_declarator, - STATE(4142), 2, + STATE(4389), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(4735), 5, + STATE(5059), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(6110), 6, + ACTIONS(5412), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LBRACK_LBRACK, anon_sym_EQ, anon_sym_GT2, anon_sym_requires, - ACTIONS(5651), 7, + ACTIONS(6342), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -319481,76 +352519,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [138542] = 3, + [162249] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5277), 8, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1519), 1, anon_sym_LPAREN2, + ACTIONS(1521), 1, + anon_sym_TILDE, + ACTIONS(4755), 1, + sym_identifier, + ACTIONS(4765), 1, + anon_sym_COLON_COLON, + ACTIONS(5425), 1, + anon_sym_LBRACK, + ACTIONS(5437), 1, anon_sym_STAR, + ACTIONS(5439), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(5275), 20, + ACTIONS(5441), 1, anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, + STATE(4936), 1, + sym__declarator, + STATE(4973), 1, + sym__scope_resolution, + STATE(6028), 1, + sym_init_declarator, + STATE(6758), 1, + sym_ms_based_modifier, + STATE(7236), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5080), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [162315] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, anon_sym___based, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - anon_sym_virtual, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, anon_sym_operator, - [138578] = 18, + ACTIONS(1519), 1, + anon_sym_LPAREN2, + ACTIONS(1521), 1, + anon_sym_TILDE, + ACTIONS(4755), 1, + sym_identifier, + ACTIONS(4765), 1, + anon_sym_COLON_COLON, + ACTIONS(5419), 1, + anon_sym_STAR, + ACTIONS(5421), 1, + anon_sym_AMP_AMP, + ACTIONS(5423), 1, + anon_sym_AMP, + ACTIONS(5425), 1, + anon_sym_LBRACK, + STATE(4973), 1, + sym__scope_resolution, + STATE(5025), 1, + sym__declarator, + STATE(6710), 1, + sym_init_declarator, + STATE(6817), 1, + sym_ms_based_modifier, + STATE(7236), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5080), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [162381] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(1497), 1, + ACTIONS(1501), 1, anon_sym_operator, - ACTIONS(1515), 1, + ACTIONS(1519), 1, anon_sym_LPAREN2, - ACTIONS(1517), 1, + ACTIONS(1521), 1, anon_sym_TILDE, - ACTIONS(4062), 1, + ACTIONS(4755), 1, sym_identifier, - ACTIONS(4072), 1, + ACTIONS(4765), 1, anon_sym_COLON_COLON, - ACTIONS(4795), 1, - anon_sym_LBRACK, - ACTIONS(4805), 1, + ACTIONS(5419), 1, anon_sym_STAR, - ACTIONS(4807), 1, + ACTIONS(5421), 1, anon_sym_AMP_AMP, - ACTIONS(4809), 1, + ACTIONS(5423), 1, anon_sym_AMP, - STATE(4502), 1, + ACTIONS(5425), 1, + anon_sym_LBRACK, + STATE(4783), 1, sym__declarator, - STATE(4678), 1, + STATE(4973), 1, sym__scope_resolution, - STATE(5663), 1, + STATE(5914), 1, sym_init_declarator, - STATE(6782), 1, + STATE(6817), 1, sym_ms_based_modifier, - STATE(6663), 2, + STATE(7236), 2, sym_template_type, sym_dependent_type_identifier, - STATE(4825), 11, + STATE(5080), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -319562,43 +352663,43 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [138644] = 18, + [162447] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(1497), 1, + ACTIONS(1501), 1, anon_sym_operator, - ACTIONS(1515), 1, + ACTIONS(1519), 1, anon_sym_LPAREN2, - ACTIONS(1517), 1, + ACTIONS(1521), 1, anon_sym_TILDE, - ACTIONS(4062), 1, + ACTIONS(4755), 1, sym_identifier, - ACTIONS(4072), 1, + ACTIONS(4765), 1, anon_sym_COLON_COLON, - ACTIONS(4795), 1, - anon_sym_LBRACK, - ACTIONS(4805), 1, + ACTIONS(5419), 1, anon_sym_STAR, - ACTIONS(4807), 1, + ACTIONS(5421), 1, anon_sym_AMP_AMP, - ACTIONS(4809), 1, + ACTIONS(5423), 1, anon_sym_AMP, - STATE(4529), 1, - sym__declarator, - STATE(4678), 1, + ACTIONS(5425), 1, + anon_sym_LBRACK, + STATE(4973), 1, sym__scope_resolution, - STATE(5668), 1, + STATE(4987), 1, + sym__declarator, + STATE(6028), 1, sym_init_declarator, - STATE(6782), 1, + STATE(6817), 1, sym_ms_based_modifier, - STATE(6663), 2, + STATE(7236), 2, sym_template_type, sym_dependent_type_identifier, - STATE(4825), 11, + STATE(5080), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -319610,43 +352711,43 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [138710] = 18, + [162513] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(1497), 1, + ACTIONS(1501), 1, anon_sym_operator, - ACTIONS(1515), 1, + ACTIONS(1519), 1, anon_sym_LPAREN2, - ACTIONS(1517), 1, + ACTIONS(1521), 1, anon_sym_TILDE, - ACTIONS(4062), 1, + ACTIONS(4755), 1, sym_identifier, - ACTIONS(4072), 1, + ACTIONS(4765), 1, anon_sym_COLON_COLON, - ACTIONS(4795), 1, - anon_sym_LBRACK, - ACTIONS(4805), 1, + ACTIONS(5419), 1, anon_sym_STAR, - ACTIONS(4807), 1, + ACTIONS(5421), 1, anon_sym_AMP_AMP, - ACTIONS(4809), 1, + ACTIONS(5423), 1, anon_sym_AMP, - STATE(4678), 1, - sym__scope_resolution, - STATE(4698), 1, + ACTIONS(5425), 1, + anon_sym_LBRACK, + STATE(4774), 1, sym__declarator, - STATE(5711), 1, + STATE(4973), 1, + sym__scope_resolution, + STATE(6035), 1, sym_init_declarator, - STATE(6782), 1, + STATE(6817), 1, sym_ms_based_modifier, - STATE(6663), 2, + STATE(7236), 2, sym_template_type, sym_dependent_type_identifier, - STATE(4825), 11, + STATE(5080), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -319658,43 +352759,43 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [138776] = 18, + [162579] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(1497), 1, + ACTIONS(1501), 1, anon_sym_operator, - ACTIONS(1515), 1, + ACTIONS(1519), 1, anon_sym_LPAREN2, - ACTIONS(1517), 1, + ACTIONS(1521), 1, anon_sym_TILDE, - ACTIONS(4062), 1, + ACTIONS(4755), 1, sym_identifier, - ACTIONS(4072), 1, + ACTIONS(4765), 1, anon_sym_COLON_COLON, - ACTIONS(4795), 1, + ACTIONS(5425), 1, anon_sym_LBRACK, - ACTIONS(4805), 1, + ACTIONS(5437), 1, anon_sym_STAR, - ACTIONS(4807), 1, + ACTIONS(5439), 1, anon_sym_AMP_AMP, - ACTIONS(4809), 1, + ACTIONS(5441), 1, anon_sym_AMP, - STATE(4518), 1, + STATE(4933), 1, sym__declarator, - STATE(4678), 1, + STATE(4973), 1, sym__scope_resolution, - STATE(5612), 1, + STATE(6028), 1, sym_init_declarator, - STATE(6782), 1, + STATE(6758), 1, sym_ms_based_modifier, - STATE(6663), 2, + STATE(7236), 2, sym_template_type, sym_dependent_type_identifier, - STATE(4825), 11, + STATE(5080), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -319706,26 +352807,42 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [138842] = 5, + [162645] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(6640), 1, - anon_sym___attribute__, - STATE(3968), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(6599), 3, - anon_sym_AMP, - anon_sym_LBRACK, + ACTIONS(57), 1, anon_sym_const, - ACTIONS(6597), 22, - anon_sym_COMMA, + ACTIONS(6547), 1, anon_sym_LPAREN2, + ACTIONS(6555), 1, + anon_sym_LBRACK, + ACTIONS(6738), 1, + anon_sym_STAR, + ACTIONS(6740), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(6742), 1, + anon_sym_AMP, + STATE(4235), 1, + sym_parameter_list, + STATE(5203), 1, + sym__abstract_declarator, + STATE(4389), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5059), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6773), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, anon_sym_EQ, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(6342), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -319733,31 +352850,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, - anon_sym_requires, - [138882] = 3, + [162701] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(6645), 3, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6009), 1, + anon_sym_AMP_AMP, + ACTIONS(6011), 1, anon_sym_AMP, + ACTIONS(6021), 1, + anon_sym_noexcept, + ACTIONS(6023), 1, + anon_sym_throw, + ACTIONS(6346), 1, + anon_sym_requires, + ACTIONS(6523), 1, + anon_sym_DASH_GT, + ACTIONS(6803), 1, anon_sym_LBRACK, - anon_sym_const, - ACTIONS(6643), 25, + STATE(5000), 1, + sym_trailing_return_type, + STATE(5065), 1, + sym_requires_clause, + STATE(4223), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6801), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6342), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -319765,53 +352894,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, - anon_sym_requires, - [138918] = 15, + [162759] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_const, - ACTIONS(5602), 1, + ACTIONS(6009), 1, anon_sym_AMP_AMP, - ACTIONS(5604), 1, + ACTIONS(6011), 1, anon_sym_AMP, - ACTIONS(5614), 1, + ACTIONS(6021), 1, anon_sym_noexcept, - ACTIONS(5616), 1, + ACTIONS(6023), 1, anon_sym_throw, - ACTIONS(5738), 1, + ACTIONS(6543), 1, anon_sym_LBRACK, - ACTIONS(5784), 1, - anon_sym_DASH_GT, - ACTIONS(5786), 1, + ACTIONS(6695), 1, anon_sym_requires, - STATE(4906), 1, + ACTIONS(6705), 1, + anon_sym_DASH_GT, + STATE(5176), 1, sym_requires_clause, - STATE(5206), 1, + STATE(5460), 1, sym_trailing_return_type, - ACTIONS(4160), 2, + ACTIONS(4016), 2, anon_sym_final, anon_sym_override, - ACTIONS(5736), 3, + ACTIONS(6541), 3, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(3987), 6, + STATE(4218), 6, sym_type_qualifier, sym_virtual_specifier, sym_ref_qualifier, sym_noexcept, sym_throw_specifier, aux_sym_function_declarator_repeat2, - ACTIONS(5651), 7, + ACTIONS(6342), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -319819,93 +352939,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [138978] = 18, + [162819] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1497), 1, - anon_sym_operator, - ACTIONS(1515), 1, - anon_sym_LPAREN2, - ACTIONS(1517), 1, - anon_sym_TILDE, - ACTIONS(4062), 1, - sym_identifier, - ACTIONS(4072), 1, - anon_sym_COLON_COLON, - ACTIONS(4789), 1, - anon_sym_STAR, - ACTIONS(4791), 1, - anon_sym_AMP_AMP, - ACTIONS(4793), 1, + ACTIONS(6901), 3, anon_sym_AMP, - ACTIONS(4795), 1, anon_sym_LBRACK, - STATE(4639), 1, - sym__declarator, - STATE(4678), 1, - sym__scope_resolution, - STATE(5711), 1, - sym_init_declarator, - STATE(6414), 1, - sym_ms_based_modifier, - STATE(6663), 2, - sym_template_type, - sym_dependent_type_identifier, - STATE(4825), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [139044] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5518), 1, anon_sym_const, - ACTIONS(5708), 1, + ACTIONS(6899), 25, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(5716), 1, - anon_sym_LBRACK, - ACTIONS(5718), 1, - sym_auto, - ACTIONS(5720), 1, - anon_sym_decltype, - ACTIONS(6647), 1, - anon_sym_STAR, - ACTIONS(6649), 1, anon_sym_AMP_AMP, - ACTIONS(6651), 1, - anon_sym_AMP, - STATE(3413), 1, - sym_decltype_auto, - STATE(4121), 1, - sym_parameter_list, - STATE(5183), 1, - sym__abstract_declarator, - STATE(4120), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(5706), 3, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - anon_sym_requires, - STATE(4735), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5610), 7, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -319913,43 +352963,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [139106] = 18, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [162855] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(1497), 1, + ACTIONS(1501), 1, anon_sym_operator, - ACTIONS(1515), 1, + ACTIONS(1519), 1, anon_sym_LPAREN2, - ACTIONS(1517), 1, + ACTIONS(1521), 1, anon_sym_TILDE, - ACTIONS(4062), 1, + ACTIONS(4755), 1, sym_identifier, - ACTIONS(4072), 1, + ACTIONS(4765), 1, anon_sym_COLON_COLON, - ACTIONS(4795), 1, - anon_sym_LBRACK, - ACTIONS(4805), 1, + ACTIONS(5419), 1, anon_sym_STAR, - ACTIONS(4807), 1, + ACTIONS(5421), 1, anon_sym_AMP_AMP, - ACTIONS(4809), 1, + ACTIONS(5423), 1, anon_sym_AMP, - STATE(4521), 1, + ACTIONS(5425), 1, + anon_sym_LBRACK, + STATE(4957), 1, sym__declarator, - STATE(4678), 1, + STATE(4973), 1, sym__scope_resolution, - STATE(5542), 1, + STATE(6071), 1, sym_init_declarator, - STATE(6782), 1, + STATE(6817), 1, sym_ms_based_modifier, - STATE(6663), 2, + STATE(7236), 2, sym_template_type, sym_dependent_type_identifier, - STATE(4825), 11, + STATE(5080), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -319961,43 +353020,43 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [139172] = 18, + [162921] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(1497), 1, + ACTIONS(1501), 1, anon_sym_operator, - ACTIONS(1515), 1, + ACTIONS(1519), 1, anon_sym_LPAREN2, - ACTIONS(1517), 1, + ACTIONS(1521), 1, anon_sym_TILDE, - ACTIONS(4062), 1, + ACTIONS(4755), 1, sym_identifier, - ACTIONS(4072), 1, + ACTIONS(4765), 1, anon_sym_COLON_COLON, - ACTIONS(4795), 1, - anon_sym_LBRACK, - ACTIONS(4805), 1, + ACTIONS(5419), 1, anon_sym_STAR, - ACTIONS(4807), 1, + ACTIONS(5421), 1, anon_sym_AMP_AMP, - ACTIONS(4809), 1, + ACTIONS(5423), 1, anon_sym_AMP, - STATE(4678), 1, - sym__scope_resolution, - STATE(4700), 1, + ACTIONS(5425), 1, + anon_sym_LBRACK, + STATE(4777), 1, sym__declarator, - STATE(5690), 1, + STATE(4973), 1, + sym__scope_resolution, + STATE(6053), 1, sym_init_declarator, - STATE(6782), 1, + STATE(6817), 1, sym_ms_based_modifier, - STATE(6663), 2, + STATE(7236), 2, sym_template_type, sym_dependent_type_identifier, - STATE(4825), 11, + STATE(5080), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -320009,43 +353068,76 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [139238] = 18, + [162987] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5646), 8, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(5644), 20, + anon_sym_AMP, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_identifier, + anon_sym_virtual, + anon_sym_operator, + [163023] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(1497), 1, + ACTIONS(1501), 1, anon_sym_operator, - ACTIONS(1515), 1, + ACTIONS(1519), 1, anon_sym_LPAREN2, - ACTIONS(1517), 1, + ACTIONS(1521), 1, anon_sym_TILDE, - ACTIONS(4062), 1, + ACTIONS(4755), 1, sym_identifier, - ACTIONS(4072), 1, + ACTIONS(4765), 1, anon_sym_COLON_COLON, - ACTIONS(4795), 1, + ACTIONS(5425), 1, anon_sym_LBRACK, - ACTIONS(4805), 1, + ACTIONS(5437), 1, anon_sym_STAR, - ACTIONS(4807), 1, + ACTIONS(5439), 1, anon_sym_AMP_AMP, - ACTIONS(4809), 1, + ACTIONS(5441), 1, anon_sym_AMP, - STATE(4678), 1, - sym__scope_resolution, - STATE(4702), 1, + STATE(4909), 1, sym__declarator, - STATE(5663), 1, + STATE(4973), 1, + sym__scope_resolution, + STATE(6028), 1, sym_init_declarator, - STATE(6782), 1, + STATE(6758), 1, sym_ms_based_modifier, - STATE(6663), 2, + STATE(7236), 2, sym_template_type, sym_dependent_type_identifier, - STATE(4825), 11, + STATE(5080), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -320057,43 +353149,43 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [139304] = 18, + [163089] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(1497), 1, + ACTIONS(1501), 1, anon_sym_operator, - ACTIONS(1515), 1, + ACTIONS(1519), 1, anon_sym_LPAREN2, - ACTIONS(1517), 1, + ACTIONS(1521), 1, anon_sym_TILDE, - ACTIONS(4062), 1, + ACTIONS(4755), 1, sym_identifier, - ACTIONS(4072), 1, + ACTIONS(4765), 1, anon_sym_COLON_COLON, - ACTIONS(4789), 1, + ACTIONS(5419), 1, anon_sym_STAR, - ACTIONS(4791), 1, + ACTIONS(5421), 1, anon_sym_AMP_AMP, - ACTIONS(4793), 1, + ACTIONS(5423), 1, anon_sym_AMP, - ACTIONS(4795), 1, + ACTIONS(5425), 1, anon_sym_LBRACK, - STATE(4636), 1, + STATE(4953), 1, sym__declarator, - STATE(4678), 1, + STATE(4973), 1, sym__scope_resolution, - STATE(5711), 1, + STATE(5860), 1, sym_init_declarator, - STATE(6414), 1, + STATE(6817), 1, sym_ms_based_modifier, - STATE(6663), 2, + STATE(7236), 2, sym_template_type, sym_dependent_type_identifier, - STATE(4825), 11, + STATE(5080), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -320105,88 +353197,42 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [139370] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5518), 1, - anon_sym_const, - ACTIONS(5602), 1, - anon_sym_AMP_AMP, - ACTIONS(5604), 1, - anon_sym_AMP, - ACTIONS(5614), 1, - anon_sym_noexcept, - ACTIONS(5616), 1, - anon_sym_throw, - ACTIONS(5728), 1, - anon_sym_LBRACK, - ACTIONS(6048), 1, - anon_sym_DASH_GT, - ACTIONS(6050), 1, - anon_sym_requires, - STATE(4835), 1, - sym_requires_clause, - STATE(5200), 1, - sym_trailing_return_type, - ACTIONS(4160), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5726), 3, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - STATE(3532), 6, - sym_type_qualifier, - sym_virtual_specifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_function_declarator_repeat2, - ACTIONS(5610), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [139430] = 14, + [163155] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_const, - ACTIONS(5602), 1, + ACTIONS(6547), 1, + anon_sym_LPAREN2, + ACTIONS(6555), 1, + anon_sym_LBRACK, + ACTIONS(6738), 1, + anon_sym_STAR, + ACTIONS(6740), 1, anon_sym_AMP_AMP, - ACTIONS(5604), 1, + ACTIONS(6742), 1, anon_sym_AMP, - ACTIONS(5614), 1, - anon_sym_noexcept, - ACTIONS(5616), 1, - anon_sym_throw, - ACTIONS(5655), 1, - anon_sym_requires, - ACTIONS(5690), 1, - anon_sym_DASH_GT, - ACTIONS(6303), 1, - anon_sym_LBRACK, - STATE(4720), 1, - sym_trailing_return_type, - STATE(4799), 1, - sym_requires_clause, - STATE(3800), 5, + STATE(4235), 1, + sym_parameter_list, + STATE(5279), 1, + sym__abstract_declarator, + STATE(4227), 2, sym_type_qualifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - ACTIONS(6301), 6, + aux_sym_type_definition_repeat1, + STATE(5059), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(4757), 6, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5651), 7, + anon_sym_requires, + ACTIONS(6342), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -320194,43 +353240,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [139488] = 14, + [163211] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_const, - ACTIONS(5602), 1, + ACTIONS(6009), 1, anon_sym_AMP_AMP, - ACTIONS(5604), 1, + ACTIONS(6011), 1, anon_sym_AMP, - ACTIONS(5614), 1, + ACTIONS(6021), 1, anon_sym_noexcept, - ACTIONS(5616), 1, + ACTIONS(6023), 1, anon_sym_throw, - ACTIONS(5655), 1, + ACTIONS(6346), 1, anon_sym_requires, - ACTIONS(5690), 1, + ACTIONS(6523), 1, anon_sym_DASH_GT, - ACTIONS(6204), 1, + ACTIONS(6799), 1, anon_sym_LBRACK, - STATE(4722), 1, + STATE(4991), 1, sym_trailing_return_type, - STATE(4782), 1, + STATE(5023), 1, sym_requires_clause, - STATE(3800), 5, + STATE(4194), 5, sym_type_qualifier, sym_ref_qualifier, sym_noexcept, sym_throw_specifier, aux_sym_abstract_function_declarator_repeat1, - ACTIONS(6202), 6, + ACTIONS(6797), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5651), 7, + ACTIONS(6342), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -320238,91 +353284,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [139546] = 18, + [163269] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1497), 1, - anon_sym_operator, - ACTIONS(1515), 1, - anon_sym_LPAREN2, - ACTIONS(1517), 1, - anon_sym_TILDE, - ACTIONS(4062), 1, - sym_identifier, - ACTIONS(4072), 1, - anon_sym_COLON_COLON, - ACTIONS(4789), 1, - anon_sym_STAR, - ACTIONS(4791), 1, - anon_sym_AMP_AMP, - ACTIONS(4793), 1, + ACTIONS(6905), 3, anon_sym_AMP, - ACTIONS(4795), 1, anon_sym_LBRACK, - STATE(4623), 1, - sym__declarator, - STATE(4678), 1, - sym__scope_resolution, - STATE(5711), 1, - sym_init_declarator, - STATE(6414), 1, - sym_ms_based_modifier, - STATE(6663), 2, - sym_template_type, - sym_dependent_type_identifier, - STATE(4825), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [139612] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, anon_sym_const, - ACTIONS(5602), 1, - anon_sym_AMP_AMP, - ACTIONS(5604), 1, - anon_sym_AMP, - ACTIONS(5614), 1, - anon_sym_noexcept, - ACTIONS(5616), 1, - anon_sym_throw, - ACTIONS(5655), 1, - anon_sym_requires, - ACTIONS(5690), 1, - anon_sym_DASH_GT, - ACTIONS(6196), 1, - anon_sym_LBRACK, - STATE(4723), 1, - sym_trailing_return_type, - STATE(4779), 1, - sym_requires_clause, - STATE(3978), 5, - sym_type_qualifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - ACTIONS(6194), 6, + ACTIONS(6903), 25, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5651), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -320330,44 +353308,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [139670] = 15, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [163305] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5518), 1, + ACTIONS(57), 1, anon_sym_const, - ACTIONS(5602), 1, + ACTIONS(6547), 1, + anon_sym_LPAREN2, + ACTIONS(6555), 1, + anon_sym_LBRACK, + ACTIONS(6738), 1, + anon_sym_STAR, + ACTIONS(6740), 1, anon_sym_AMP_AMP, - ACTIONS(5604), 1, + ACTIONS(6742), 1, anon_sym_AMP, - ACTIONS(5614), 1, - anon_sym_noexcept, - ACTIONS(5616), 1, - anon_sym_throw, - ACTIONS(5622), 1, - anon_sym_LBRACK, - ACTIONS(6048), 1, - anon_sym_DASH_GT, - ACTIONS(6050), 1, - anon_sym_requires, - STATE(4842), 1, - sym_requires_clause, - STATE(5211), 1, - sym_trailing_return_type, - ACTIONS(4160), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5620), 3, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - STATE(3532), 6, + STATE(4235), 1, + sym_parameter_list, + STATE(5219), 1, + sym__abstract_declarator, + STATE(4389), 2, sym_type_qualifier, - sym_virtual_specifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_function_declarator_repeat2, - ACTIONS(5610), 7, + aux_sym_type_definition_repeat1, + STATE(5059), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6756), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(6342), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -320375,45 +353360,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [139730] = 16, + [163361] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5518), 1, + ACTIONS(5753), 1, anon_sym_const, - ACTIONS(5708), 1, + ACTIONS(6547), 1, anon_sym_LPAREN2, - ACTIONS(5716), 1, + ACTIONS(6555), 1, anon_sym_LBRACK, - ACTIONS(5718), 1, + ACTIONS(6557), 1, sym_auto, - ACTIONS(5720), 1, + ACTIONS(6559), 1, anon_sym_decltype, - ACTIONS(6647), 1, + ACTIONS(6893), 1, anon_sym_STAR, - ACTIONS(6649), 1, + ACTIONS(6895), 1, anon_sym_AMP_AMP, - ACTIONS(6651), 1, + ACTIONS(6897), 1, anon_sym_AMP, - STATE(3413), 1, + STATE(4059), 1, sym_decltype_auto, - STATE(4121), 1, + STATE(4372), 1, sym_parameter_list, - STATE(5191), 1, + STATE(5467), 1, sym__abstract_declarator, - STATE(4126), 2, + STATE(4373), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(5722), 3, + ACTIONS(6545), 3, anon_sym_LBRACK_LBRACK, anon_sym_COLON, anon_sym_requires, - STATE(4735), 5, + STATE(5059), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(5610), 7, + ACTIONS(6017), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -320421,82 +353406,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [139792] = 10, + [163423] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6395), 1, - anon_sym_AMP_AMP, - ACTIONS(6398), 1, - anon_sym_AMP, - ACTIONS(6401), 1, - anon_sym_LBRACK, - ACTIONS(6409), 1, - anon_sym_noexcept, - ACTIONS(6412), 1, - anon_sym_throw, - ACTIONS(6653), 1, - anon_sym_const, - STATE(3984), 5, - sym_type_qualifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - ACTIONS(6656), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(6393), 10, - anon_sym_COMMA, + ACTIONS(5408), 8, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - anon_sym_DASH_GT, - anon_sym_try, - anon_sym_requires, - [139842] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(5716), 1, - anon_sym_LBRACK, - ACTIONS(6082), 1, - anon_sym_STAR, - ACTIONS(6084), 1, - anon_sym_AMP_AMP, - ACTIONS(6086), 1, + ACTIONS(5406), 20, anon_sym_AMP, - STATE(3989), 1, - sym_parameter_list, - STATE(4931), 1, - sym__abstract_declarator, - STATE(4142), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4735), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(4695), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_requires, - ACTIONS(5651), 7, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -320504,135 +353436,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [139898] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1497), 1, - anon_sym_operator, - ACTIONS(1515), 1, - anon_sym_LPAREN2, - ACTIONS(1517), 1, - anon_sym_TILDE, - ACTIONS(4062), 1, sym_identifier, - ACTIONS(4072), 1, - anon_sym_COLON_COLON, - ACTIONS(4795), 1, - anon_sym_LBRACK, - ACTIONS(4805), 1, - anon_sym_STAR, - ACTIONS(4807), 1, - anon_sym_AMP_AMP, - ACTIONS(4809), 1, - anon_sym_AMP, - STATE(4678), 1, - sym__scope_resolution, - STATE(4685), 1, - sym__declarator, - STATE(5793), 1, - sym_init_declarator, - STATE(6782), 1, - sym_ms_based_modifier, - STATE(6663), 2, - sym_template_type, - sym_dependent_type_identifier, - STATE(4825), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [139964] = 15, + anon_sym_virtual, + anon_sym_operator, + [163459] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_const, - ACTIONS(5602), 1, + ACTIONS(6009), 1, anon_sym_AMP_AMP, - ACTIONS(5604), 1, + ACTIONS(6011), 1, anon_sym_AMP, - ACTIONS(5614), 1, + ACTIONS(6021), 1, anon_sym_noexcept, - ACTIONS(5616), 1, + ACTIONS(6023), 1, anon_sym_throw, - ACTIONS(5744), 1, - anon_sym_LBRACK, - ACTIONS(5784), 1, - anon_sym_DASH_GT, - ACTIONS(5786), 1, + ACTIONS(6346), 1, anon_sym_requires, - STATE(4893), 1, + ACTIONS(6523), 1, + anon_sym_DASH_GT, + ACTIONS(6791), 1, + anon_sym_LBRACK, + STATE(4989), 1, sym_requires_clause, - STATE(5220), 1, + STATE(5004), 1, sym_trailing_return_type, - ACTIONS(4160), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5742), 3, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(3511), 6, + STATE(4244), 5, sym_type_qualifier, - sym_virtual_specifier, sym_ref_qualifier, sym_noexcept, sym_throw_specifier, - aux_sym_function_declarator_repeat2, - ACTIONS(5651), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [140024] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(5716), 1, - anon_sym_LBRACK, - ACTIONS(6082), 1, - anon_sym_STAR, - ACTIONS(6084), 1, - anon_sym_AMP_AMP, - ACTIONS(6086), 1, - anon_sym_AMP, - STATE(3989), 1, - sym_parameter_list, - STATE(4949), 1, - sym__abstract_declarator, - STATE(4142), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4735), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6246), 6, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6789), 6, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, anon_sym_EQ, anon_sym_GT2, - anon_sym_requires, - ACTIONS(5651), 7, + ACTIONS(6342), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -320640,43 +353483,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [140080] = 14, + [163517] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(5602), 1, + ACTIONS(6819), 1, anon_sym_AMP_AMP, - ACTIONS(5604), 1, + ACTIONS(6822), 1, anon_sym_AMP, - ACTIONS(5614), 1, + ACTIONS(6825), 1, + anon_sym_LBRACK, + ACTIONS(6833), 1, anon_sym_noexcept, - ACTIONS(5616), 1, + ACTIONS(6836), 1, anon_sym_throw, - ACTIONS(5655), 1, - anon_sym_requires, - ACTIONS(5690), 1, - anon_sym_DASH_GT, - ACTIONS(6244), 1, - anon_sym_LBRACK, - STATE(4728), 1, - sym_trailing_return_type, - STATE(4761), 1, - sym_requires_clause, - STATE(3979), 5, + ACTIONS(6907), 1, + anon_sym_const, + STATE(4250), 5, sym_type_qualifier, sym_ref_qualifier, sym_noexcept, sym_throw_specifier, aux_sym_abstract_function_declarator_repeat1, - ACTIONS(6242), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5651), 7, + ACTIONS(6910), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -320684,86 +353512,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [140138] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(5716), 1, - anon_sym_LBRACK, - ACTIONS(6082), 1, - anon_sym_STAR, - ACTIONS(6084), 1, - anon_sym_AMP_AMP, - ACTIONS(6086), 1, - anon_sym_AMP, - STATE(3989), 1, - sym_parameter_list, - STATE(4952), 1, - sym__abstract_declarator, - STATE(3985), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4735), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(4064), 6, + ACTIONS(6817), 10, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_EQ, - anon_sym_GT2, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_try, anon_sym_requires, - ACTIONS(5651), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [140194] = 18, + [163567] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(1497), 1, + ACTIONS(1501), 1, anon_sym_operator, - ACTIONS(1515), 1, + ACTIONS(1519), 1, anon_sym_LPAREN2, - ACTIONS(1517), 1, + ACTIONS(1521), 1, anon_sym_TILDE, - ACTIONS(4062), 1, + ACTIONS(4755), 1, sym_identifier, - ACTIONS(4072), 1, + ACTIONS(4765), 1, anon_sym_COLON_COLON, - ACTIONS(4795), 1, - anon_sym_LBRACK, - ACTIONS(4805), 1, + ACTIONS(5419), 1, anon_sym_STAR, - ACTIONS(4807), 1, + ACTIONS(5421), 1, anon_sym_AMP_AMP, - ACTIONS(4809), 1, + ACTIONS(5423), 1, anon_sym_AMP, - STATE(4678), 1, - sym__scope_resolution, - STATE(4680), 1, + ACTIONS(5425), 1, + anon_sym_LBRACK, + STATE(4779), 1, sym__declarator, - STATE(5711), 1, + STATE(4973), 1, + sym__scope_resolution, + STATE(5849), 1, sym_init_declarator, - STATE(6782), 1, + STATE(6817), 1, sym_ms_based_modifier, - STATE(6663), 2, + STATE(7236), 2, sym_template_type, sym_dependent_type_identifier, - STATE(4825), 11, + STATE(5080), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -320775,10 +353571,10 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [140260] = 3, + [163633] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4434), 8, + ACTIONS(5630), 8, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, @@ -320787,7 +353583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - ACTIONS(4432), 20, + ACTIONS(5628), 20, anon_sym_AMP, anon_sym_extern, anon_sym___attribute__, @@ -320808,43 +353604,43 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_virtual, anon_sym_operator, - [140296] = 18, + [163669] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(1497), 1, + ACTIONS(1501), 1, anon_sym_operator, - ACTIONS(1515), 1, + ACTIONS(1519), 1, anon_sym_LPAREN2, - ACTIONS(1517), 1, + ACTIONS(1521), 1, anon_sym_TILDE, - ACTIONS(4062), 1, + ACTIONS(4755), 1, sym_identifier, - ACTIONS(4072), 1, + ACTIONS(4765), 1, anon_sym_COLON_COLON, - ACTIONS(4795), 1, - anon_sym_LBRACK, - ACTIONS(4805), 1, + ACTIONS(5419), 1, anon_sym_STAR, - ACTIONS(4807), 1, + ACTIONS(5421), 1, anon_sym_AMP_AMP, - ACTIONS(4809), 1, + ACTIONS(5423), 1, anon_sym_AMP, - STATE(4509), 1, + ACTIONS(5425), 1, + anon_sym_LBRACK, + STATE(4972), 1, sym__declarator, - STATE(4678), 1, + STATE(4973), 1, sym__scope_resolution, - STATE(5796), 1, + STATE(6035), 1, sym_init_declarator, - STATE(6782), 1, + STATE(6817), 1, sym_ms_based_modifier, - STATE(6663), 2, + STATE(7236), 2, sym_template_type, sym_dependent_type_identifier, - STATE(4825), 11, + STATE(5080), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -320856,43 +353652,43 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [140362] = 18, + [163735] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(1497), 1, + ACTIONS(1501), 1, anon_sym_operator, - ACTIONS(1515), 1, + ACTIONS(1519), 1, anon_sym_LPAREN2, - ACTIONS(1517), 1, + ACTIONS(1521), 1, anon_sym_TILDE, - ACTIONS(4062), 1, + ACTIONS(4755), 1, sym_identifier, - ACTIONS(4072), 1, + ACTIONS(4765), 1, anon_sym_COLON_COLON, - ACTIONS(4795), 1, + ACTIONS(5425), 1, anon_sym_LBRACK, - ACTIONS(4805), 1, + ACTIONS(5437), 1, anon_sym_STAR, - ACTIONS(4807), 1, + ACTIONS(5439), 1, anon_sym_AMP_AMP, - ACTIONS(4809), 1, + ACTIONS(5441), 1, anon_sym_AMP, - STATE(4510), 1, + STATE(4902), 1, sym__declarator, - STATE(4678), 1, + STATE(4973), 1, sym__scope_resolution, - STATE(5793), 1, + STATE(6028), 1, sym_init_declarator, - STATE(6782), 1, + STATE(6758), 1, sym_ms_based_modifier, - STATE(6663), 2, + STATE(7236), 2, sym_template_type, sym_dependent_type_identifier, - STATE(4825), 11, + STATE(5080), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -320904,76 +353700,43 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [140428] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5325), 8, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(5323), 20, - anon_sym_AMP, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - anon_sym_virtual, - anon_sym_operator, - [140464] = 18, + [163801] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(1497), 1, + ACTIONS(1501), 1, anon_sym_operator, - ACTIONS(1515), 1, + ACTIONS(1519), 1, anon_sym_LPAREN2, - ACTIONS(1517), 1, + ACTIONS(1521), 1, anon_sym_TILDE, - ACTIONS(4062), 1, + ACTIONS(4755), 1, sym_identifier, - ACTIONS(4072), 1, + ACTIONS(4765), 1, anon_sym_COLON_COLON, - ACTIONS(4795), 1, - anon_sym_LBRACK, - ACTIONS(4805), 1, + ACTIONS(5419), 1, anon_sym_STAR, - ACTIONS(4807), 1, + ACTIONS(5421), 1, anon_sym_AMP_AMP, - ACTIONS(4809), 1, + ACTIONS(5423), 1, anon_sym_AMP, - STATE(4673), 1, + ACTIONS(5425), 1, + anon_sym_LBRACK, + STATE(4954), 1, sym__declarator, - STATE(4678), 1, + STATE(4973), 1, sym__scope_resolution, - STATE(5612), 1, + STATE(5914), 1, sym_init_declarator, - STATE(6782), 1, + STATE(6817), 1, sym_ms_based_modifier, - STATE(6663), 2, + STATE(7236), 2, sym_template_type, sym_dependent_type_identifier, - STATE(4825), 11, + STATE(5080), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -320985,43 +353748,41 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [140530] = 18, + [163867] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(1497), 1, + ACTIONS(1501), 1, anon_sym_operator, - ACTIONS(1515), 1, + ACTIONS(1519), 1, anon_sym_LPAREN2, - ACTIONS(1517), 1, + ACTIONS(1521), 1, anon_sym_TILDE, - ACTIONS(4062), 1, + ACTIONS(4755), 1, sym_identifier, - ACTIONS(4072), 1, + ACTIONS(4765), 1, anon_sym_COLON_COLON, - ACTIONS(4795), 1, + ACTIONS(5425), 1, anon_sym_LBRACK, - ACTIONS(4805), 1, + ACTIONS(5437), 1, anon_sym_STAR, - ACTIONS(4807), 1, + ACTIONS(5439), 1, anon_sym_AMP_AMP, - ACTIONS(4809), 1, + ACTIONS(5441), 1, anon_sym_AMP, - STATE(4678), 1, + STATE(4973), 1, sym__scope_resolution, - STATE(4783), 1, + STATE(5078), 1, sym__declarator, - STATE(6212), 1, - sym_init_declarator, - STATE(6782), 1, + STATE(6758), 1, sym_ms_based_modifier, - STATE(6663), 2, + STATE(7236), 2, sym_template_type, sym_dependent_type_identifier, - STATE(4825), 11, + STATE(5080), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -321033,23 +353794,41 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [140596] = 3, + [163930] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(6661), 3, - anon_sym_AMP, - anon_sym_LBRACK, + ACTIONS(2965), 1, anon_sym_const, - ACTIONS(6659), 25, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3757), 1, anon_sym_LPAREN2, + ACTIONS(6775), 1, + anon_sym_STAR, + ACTIONS(6777), 1, anon_sym_AMP_AMP, + ACTIONS(6779), 1, + anon_sym_AMP, + ACTIONS(6781), 1, + anon_sym_LBRACK, + STATE(4300), 1, + sym_parameter_list, + STATE(5296), 1, + sym__abstract_declarator, + STATE(4388), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(6773), 5, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_try, + anon_sym_requires, + STATE(5127), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6783), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -321057,80 +353836,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, - anon_sym_requires, - [140632] = 18, + [163985] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1497), 1, - anon_sym_operator, - ACTIONS(1515), 1, - anon_sym_LPAREN2, - ACTIONS(1517), 1, - anon_sym_TILDE, - ACTIONS(4062), 1, - sym_identifier, - ACTIONS(4072), 1, + ACTIONS(3424), 1, anon_sym_COLON_COLON, - ACTIONS(4789), 1, - anon_sym_STAR, - ACTIONS(4791), 1, - anon_sym_AMP_AMP, - ACTIONS(4793), 1, - anon_sym_AMP, - ACTIONS(4795), 1, - anon_sym_LBRACK, - STATE(4667), 1, - sym__declarator, - STATE(4678), 1, - sym__scope_resolution, - STATE(5711), 1, - sym_init_declarator, - STATE(6414), 1, - sym_ms_based_modifier, - STATE(6663), 2, - sym_template_type, - sym_dependent_type_identifier, - STATE(4825), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [140698] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6665), 3, + ACTIONS(6913), 1, + anon_sym_LT, + STATE(2412), 1, + sym_template_argument_list, + ACTIONS(3430), 3, anon_sym_AMP, - anon_sym_LBRACK, anon_sym_const, - ACTIONS(6663), 25, + anon_sym_COLON, + ACTIONS(3435), 21, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, + anon_sym_LBRACK, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -321138,240 +353866,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, - anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, anon_sym_requires, - [140734] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1497), 1, - anon_sym_operator, - ACTIONS(1515), 1, - anon_sym_LPAREN2, - ACTIONS(1517), 1, - anon_sym_TILDE, - ACTIONS(4062), 1, - sym_identifier, - ACTIONS(4072), 1, - anon_sym_COLON_COLON, - ACTIONS(4789), 1, - anon_sym_STAR, - ACTIONS(4791), 1, - anon_sym_AMP_AMP, - ACTIONS(4793), 1, - anon_sym_AMP, - ACTIONS(4795), 1, - anon_sym_LBRACK, - STATE(4669), 1, - sym__declarator, - STATE(4678), 1, - sym__scope_resolution, - STATE(5711), 1, - sym_init_declarator, - STATE(6414), 1, - sym_ms_based_modifier, - STATE(6663), 2, - sym_template_type, - sym_dependent_type_identifier, - STATE(4825), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [140800] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1497), 1, - anon_sym_operator, - ACTIONS(1515), 1, - anon_sym_LPAREN2, - ACTIONS(1517), 1, - anon_sym_TILDE, - ACTIONS(4062), 1, - sym_identifier, - ACTIONS(4072), 1, - anon_sym_COLON_COLON, - ACTIONS(4789), 1, - anon_sym_STAR, - ACTIONS(4791), 1, - anon_sym_AMP_AMP, - ACTIONS(4793), 1, - anon_sym_AMP, - ACTIONS(4795), 1, - anon_sym_LBRACK, - STATE(4661), 1, - sym__declarator, - STATE(4678), 1, - sym__scope_resolution, - STATE(5711), 1, - sym_init_declarator, - STATE(6414), 1, - sym_ms_based_modifier, - STATE(6663), 2, - sym_template_type, - sym_dependent_type_identifier, - STATE(4825), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [140866] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1497), 1, - anon_sym_operator, - ACTIONS(1515), 1, - anon_sym_LPAREN2, - ACTIONS(1517), 1, - anon_sym_TILDE, - ACTIONS(4062), 1, - sym_identifier, - ACTIONS(4072), 1, - anon_sym_COLON_COLON, - ACTIONS(4795), 1, - anon_sym_LBRACK, - ACTIONS(4805), 1, - anon_sym_STAR, - ACTIONS(4807), 1, - anon_sym_AMP_AMP, - ACTIONS(4809), 1, - anon_sym_AMP, - STATE(4524), 1, - sym__declarator, - STATE(4678), 1, - sym__scope_resolution, - STATE(5690), 1, - sym_init_declarator, - STATE(6782), 1, - sym_ms_based_modifier, - STATE(6663), 2, - sym_template_type, - sym_dependent_type_identifier, - STATE(4825), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [140932] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1497), 1, - anon_sym_operator, - ACTIONS(1515), 1, - anon_sym_LPAREN2, - ACTIONS(1517), 1, - anon_sym_TILDE, - ACTIONS(4795), 1, - anon_sym_LBRACK, - ACTIONS(4817), 1, - sym_identifier, - ACTIONS(4819), 1, - anon_sym_STAR, - ACTIONS(4821), 1, - anon_sym_AMP_AMP, - ACTIONS(4823), 1, - anon_sym_AMP, - ACTIONS(4825), 1, - anon_sym_COLON_COLON, - STATE(4708), 1, - sym__scope_resolution, - STATE(4908), 1, - sym__declarator, - STATE(6547), 1, - sym_ms_based_modifier, - STATE(6663), 2, - sym_template_type, - sym_dependent_type_identifier, - STATE(4825), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [140995] = 17, + [164026] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(1497), 1, + ACTIONS(1501), 1, anon_sym_operator, - ACTIONS(1515), 1, + ACTIONS(1519), 1, anon_sym_LPAREN2, - ACTIONS(1517), 1, + ACTIONS(1521), 1, anon_sym_TILDE, - ACTIONS(3922), 1, + ACTIONS(4247), 1, sym_identifier, - ACTIONS(4132), 1, + ACTIONS(5049), 1, anon_sym_COLON_COLON, - ACTIONS(4795), 1, + ACTIONS(5425), 1, anon_sym_LBRACK, - ACTIONS(4831), 1, + ACTIONS(5452), 1, anon_sym_STAR, - ACTIONS(4833), 1, + ACTIONS(5454), 1, anon_sym_AMP_AMP, - ACTIONS(4835), 1, + ACTIONS(5456), 1, anon_sym_AMP, - STATE(4697), 1, + STATE(4946), 1, sym__scope_resolution, - STATE(5172), 1, + STATE(5367), 1, sym__declarator, - STATE(6466), 1, + STATE(6825), 1, sym_ms_based_modifier, - STATE(6663), 2, + STATE(7236), 2, sym_template_type, sym_dependent_type_identifier, - STATE(4825), 11, + STATE(5080), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -321380,87 +353914,63 @@ static const uint16_t ts_small_parse_table[] = { sym_reference_declarator, sym_structured_binding_declarator, sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [141058] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3735), 1, - anon_sym_COLON_COLON, - ACTIONS(6667), 1, - anon_sym_LT, - STATE(4106), 1, - sym_template_argument_list, - ACTIONS(4191), 3, - anon_sym_AMP, - anon_sym_const, - anon_sym_COLON, - ACTIONS(3740), 21, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [141099] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3735), 1, - anon_sym_COLON_COLON, - ACTIONS(6667), 1, - anon_sym_LT, - STATE(4106), 1, - sym_template_argument_list, - ACTIONS(3752), 3, - anon_sym_AMP, - anon_sym_const, - anon_sym_COLON, - ACTIONS(3757), 21, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [164089] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1519), 1, anon_sym_LPAREN2, + ACTIONS(1521), 1, + anon_sym_TILDE, + ACTIONS(4755), 1, + sym_identifier, + ACTIONS(4765), 1, + anon_sym_COLON_COLON, + ACTIONS(5425), 1, + anon_sym_LBRACK, + ACTIONS(5446), 1, anon_sym_STAR, - anon_sym_PIPE_PIPE, + ACTIONS(5448), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [141140] = 3, + ACTIONS(5450), 1, + anon_sym_AMP, + STATE(4973), 1, + sym__scope_resolution, + STATE(5167), 1, + sym__declarator, + STATE(7300), 1, + sym_ms_based_modifier, + STATE(7236), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5080), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [164152] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6671), 3, + ACTIONS(6917), 3, anon_sym_AMP, anon_sym_LBRACK, anon_sym_const, - ACTIONS(6669), 24, + ACTIONS(6915), 24, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -321485,77 +353995,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noexcept, anon_sym_throw, anon_sym_requires, - [141175] = 7, + [164187] = 6, ACTIONS(3), 1, sym_comment, - STATE(4135), 1, - sym_ms_unaligned_ptr_modifier, - ACTIONS(6680), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(4009), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(6677), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(6675), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, + ACTIONS(3424), 1, anon_sym_COLON_COLON, - anon_sym_LBRACK, - ACTIONS(6673), 13, + ACTIONS(6913), 1, + anon_sym_LT, + STATE(2412), 1, + sym_template_argument_list, + ACTIONS(4095), 3, anon_sym_AMP, - anon_sym___based, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - anon_sym_template, - anon_sym_operator, - [141218] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2921), 1, anon_sym_const, - ACTIONS(3369), 1, + anon_sym_COLON, + ACTIONS(3426), 21, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(6262), 1, anon_sym_STAR, - ACTIONS(6264), 1, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(6266), 1, - anon_sym_AMP, - ACTIONS(6268), 1, - anon_sym_LBRACK, - STATE(4034), 1, - sym_parameter_list, - STATE(5057), 1, - sym__abstract_declarator, - STATE(4141), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(6110), 5, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - anon_sym_requires, - STATE(4832), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6270), 7, + anon_sym_LBRACK, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -321563,83 +354025,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [141273] = 13, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [164228] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(1497), 1, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, anon_sym_operator, - ACTIONS(5659), 1, - sym_identifier, - ACTIONS(5661), 1, + ACTIONS(1519), 1, anon_sym_LPAREN2, - ACTIONS(5663), 1, + ACTIONS(1521), 1, + anon_sym_TILDE, + ACTIONS(5425), 1, + anon_sym_LBRACK, + ACTIONS(5427), 1, + sym_identifier, + ACTIONS(5429), 1, anon_sym_STAR, - ACTIONS(5665), 1, + ACTIONS(5431), 1, anon_sym_AMP_AMP, - ACTIONS(5667), 1, + ACTIONS(5433), 1, anon_sym_AMP, - STATE(5130), 1, - sym__field_declarator, - STATE(6690), 1, + ACTIONS(5435), 1, + anon_sym_COLON_COLON, + STATE(4941), 1, + sym__scope_resolution, + STATE(5192), 1, + sym__declarator, + STATE(6755), 1, sym_ms_based_modifier, - STATE(4149), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2921), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(4890), 8, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - sym_reference_field_declarator, - sym_template_method, + STATE(7236), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5080), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, sym_operator_name, - [141328] = 17, + [164291] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(1497), 1, + ACTIONS(1501), 1, anon_sym_operator, - ACTIONS(1515), 1, + ACTIONS(1519), 1, anon_sym_LPAREN2, - ACTIONS(1517), 1, + ACTIONS(1521), 1, anon_sym_TILDE, - ACTIONS(4795), 1, - anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(4247), 1, sym_identifier, - ACTIONS(4819), 1, + ACTIONS(5049), 1, + anon_sym_COLON_COLON, + ACTIONS(5425), 1, + anon_sym_LBRACK, + ACTIONS(5452), 1, anon_sym_STAR, - ACTIONS(4821), 1, + ACTIONS(5454), 1, anon_sym_AMP_AMP, - ACTIONS(4823), 1, + ACTIONS(5456), 1, anon_sym_AMP, - ACTIONS(4825), 1, - anon_sym_COLON_COLON, - STATE(4708), 1, + STATE(4946), 1, sym__scope_resolution, - STATE(5048), 1, + STATE(5391), 1, sym__declarator, - STATE(6547), 1, + STATE(6825), 1, sym_ms_based_modifier, - STATE(6663), 2, + STATE(7236), 2, sym_template_type, sym_dependent_type_identifier, - STATE(4825), 11, + STATE(5080), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -321651,31 +354122,31 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [141391] = 13, + [164354] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(1497), 1, + ACTIONS(1501), 1, anon_sym_operator, - ACTIONS(5661), 1, + ACTIONS(6316), 1, anon_sym_LPAREN2, - ACTIONS(5669), 1, + ACTIONS(6326), 1, sym_identifier, - ACTIONS(5671), 1, + ACTIONS(6328), 1, anon_sym_STAR, - ACTIONS(5673), 1, + ACTIONS(6330), 1, anon_sym_AMP_AMP, - ACTIONS(5675), 1, + ACTIONS(6332), 1, anon_sym_AMP, - STATE(4775), 1, + STATE(5375), 1, sym__field_declarator, - STATE(6560), 1, + STATE(6785), 1, sym_ms_based_modifier, - STATE(4149), 2, + STATE(4386), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2921), 8, + ACTIONS(2965), 8, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -321684,7 +354155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(4890), 8, + STATE(5185), 8, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, @@ -321693,14 +354164,14 @@ static const uint16_t ts_small_parse_table[] = { sym_reference_field_declarator, sym_template_method, sym_operator_name, - [141446] = 3, + [164409] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6685), 3, + ACTIONS(6921), 3, anon_sym_AMP, anon_sym_LBRACK, anon_sym_const, - ACTIONS(6683), 24, + ACTIONS(6919), 24, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -321725,41 +354196,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noexcept, anon_sym_throw, anon_sym_requires, - [141481] = 13, + [164444] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2921), 1, + ACTIONS(3424), 1, + anon_sym_COLON_COLON, + ACTIONS(5500), 1, + anon_sym_LT, + STATE(3279), 1, + sym_template_argument_list, + ACTIONS(4159), 2, + anon_sym_AMP, anon_sym_const, - ACTIONS(3369), 1, + ACTIONS(4157), 22, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(6262), 1, anon_sym_STAR, - ACTIONS(6264), 1, anon_sym_AMP_AMP, - ACTIONS(6266), 1, - anon_sym_AMP, - ACTIONS(6268), 1, - anon_sym_LBRACK, - STATE(4034), 1, - sym_parameter_list, - STATE(5029), 1, - sym__abstract_declarator, - STATE(4141), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(4695), 5, anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_try, - anon_sym_requires, - STATE(4832), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6270), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -321767,22 +354226,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [141536] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [164485] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6689), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(6687), 24, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6923), 1, + sym_identifier, + ACTIONS(6927), 1, + sym_primitive_type, + STATE(4287), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6925), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3964), 7, anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, + ACTIONS(3966), 13, + anon_sym_AMP, + anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -321790,23 +354263,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, + sym_auto, + anon_sym_decltype, anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, anon_sym_requires, - [141571] = 3, + [164528] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6693), 3, + ACTIONS(6931), 3, anon_sym_AMP, anon_sym_LBRACK, anon_sym_const, - ACTIONS(6691), 24, + ACTIONS(6929), 24, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -321831,41 +354299,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noexcept, anon_sym_throw, anon_sym_requires, - [141606] = 17, + [164563] = 17, ACTIONS(3), 1, sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, ACTIONS(47), 1, anon_sym___based, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(1497), 1, + ACTIONS(1501), 1, anon_sym_operator, - ACTIONS(1515), 1, + ACTIONS(1519), 1, anon_sym_LPAREN2, - ACTIONS(1517), 1, + ACTIONS(1521), 1, anon_sym_TILDE, - ACTIONS(4795), 1, - anon_sym_LBRACK, - ACTIONS(4817), 1, - sym_identifier, - ACTIONS(4819), 1, + ACTIONS(1523), 1, anon_sym_STAR, - ACTIONS(4821), 1, - anon_sym_AMP_AMP, - ACTIONS(4823), 1, + ACTIONS(1525), 1, anon_sym_AMP, - ACTIONS(4825), 1, + ACTIONS(4247), 1, + sym_identifier, + ACTIONS(5049), 1, anon_sym_COLON_COLON, - STATE(4708), 1, + ACTIONS(5425), 1, + anon_sym_LBRACK, + STATE(4946), 1, sym__scope_resolution, - STATE(4881), 1, + STATE(5392), 1, sym__declarator, - STATE(6547), 1, + STATE(7250), 1, sym_ms_based_modifier, - STATE(6663), 2, + STATE(7236), 2, sym_template_type, sym_dependent_type_identifier, - STATE(4825), 11, + STATE(5080), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -321877,117 +354345,41 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [141669] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4019), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6695), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4092), 7, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - ACTIONS(4090), 15, - anon_sym_AMP, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_primitive_type, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [141708] = 13, + [164626] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1497), 1, - anon_sym_operator, - ACTIONS(5661), 1, - anon_sym_LPAREN2, - ACTIONS(5669), 1, - sym_identifier, - ACTIONS(5671), 1, - anon_sym_STAR, - ACTIONS(5673), 1, + ACTIONS(29), 1, anon_sym_AMP_AMP, - ACTIONS(5675), 1, - anon_sym_AMP, - STATE(4726), 1, - sym__field_declarator, - STATE(6560), 1, - sym_ms_based_modifier, - STATE(4149), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2921), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - STATE(4890), 8, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - sym_reference_field_declarator, - sym_template_method, - sym_operator_name, - [141763] = 17, - ACTIONS(3), 1, - sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(1497), 1, + ACTIONS(1501), 1, anon_sym_operator, - ACTIONS(1515), 1, + ACTIONS(1519), 1, anon_sym_LPAREN2, - ACTIONS(1517), 1, + ACTIONS(1521), 1, anon_sym_TILDE, - ACTIONS(3922), 1, + ACTIONS(1523), 1, + anon_sym_STAR, + ACTIONS(1525), 1, + anon_sym_AMP, + ACTIONS(4247), 1, sym_identifier, - ACTIONS(4132), 1, + ACTIONS(5049), 1, anon_sym_COLON_COLON, - ACTIONS(4795), 1, + ACTIONS(5425), 1, anon_sym_LBRACK, - ACTIONS(4831), 1, - anon_sym_STAR, - ACTIONS(4833), 1, - anon_sym_AMP_AMP, - ACTIONS(4835), 1, - anon_sym_AMP, - STATE(4697), 1, + STATE(4946), 1, sym__scope_resolution, - STATE(5081), 1, + STATE(5304), 1, sym__declarator, - STATE(6466), 1, + STATE(7250), 1, sym_ms_based_modifier, - STATE(6663), 2, + STATE(7236), 2, sym_template_type, sym_dependent_type_identifier, - STATE(4825), 11, + STATE(5080), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -321999,41 +354391,41 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [141826] = 17, + [164689] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(1497), 1, + ACTIONS(1501), 1, anon_sym_operator, - ACTIONS(1515), 1, + ACTIONS(1519), 1, anon_sym_LPAREN2, - ACTIONS(1517), 1, + ACTIONS(1521), 1, anon_sym_TILDE, - ACTIONS(3922), 1, - sym_identifier, - ACTIONS(4132), 1, - anon_sym_COLON_COLON, - ACTIONS(4795), 1, + ACTIONS(5425), 1, anon_sym_LBRACK, - ACTIONS(4831), 1, + ACTIONS(5427), 1, + sym_identifier, + ACTIONS(5429), 1, anon_sym_STAR, - ACTIONS(4833), 1, + ACTIONS(5431), 1, anon_sym_AMP_AMP, - ACTIONS(4835), 1, + ACTIONS(5433), 1, anon_sym_AMP, - STATE(4697), 1, + ACTIONS(5435), 1, + anon_sym_COLON_COLON, + STATE(4941), 1, sym__scope_resolution, - STATE(5122), 1, + STATE(5161), 1, sym__declarator, - STATE(6466), 1, + STATE(6755), 1, sym_ms_based_modifier, - STATE(6663), 2, + STATE(7236), 2, sym_template_type, sym_dependent_type_identifier, - STATE(4825), 11, + STATE(5080), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -322045,32 +354437,41 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [141889] = 13, + [164752] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1497), 1, - anon_sym_operator, - ACTIONS(5659), 1, - sym_identifier, - ACTIONS(5661), 1, - anon_sym_LPAREN2, - ACTIONS(5663), 1, - anon_sym_STAR, - ACTIONS(5665), 1, + ACTIONS(2965), 1, + anon_sym_const, + ACTIONS(6933), 1, anon_sym_AMP_AMP, - ACTIONS(5667), 1, + ACTIONS(6935), 1, anon_sym_AMP, - STATE(5155), 1, - sym__field_declarator, - STATE(6690), 1, - sym_ms_based_modifier, - STATE(4149), 2, + ACTIONS(6937), 1, + anon_sym_DASH_GT, + ACTIONS(6939), 1, + anon_sym_noexcept, + ACTIONS(6941), 1, + anon_sym_throw, + ACTIONS(6943), 1, + anon_sym_requires, + STATE(5111), 1, + sym_requires_clause, + STATE(5317), 1, + sym_trailing_return_type, + STATE(4200), 5, sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2921), 8, - anon_sym_const, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6793), 6, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_try, + ACTIONS(6783), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -322078,50 +354479,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(4890), 8, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - sym_reference_field_declarator, - sym_template_method, - sym_operator_name, - [141944] = 17, + [164807] = 17, ACTIONS(3), 1, sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, ACTIONS(47), 1, anon_sym___based, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(1497), 1, + ACTIONS(1501), 1, anon_sym_operator, - ACTIONS(1515), 1, + ACTIONS(1519), 1, anon_sym_LPAREN2, - ACTIONS(1517), 1, + ACTIONS(1521), 1, anon_sym_TILDE, - ACTIONS(4795), 1, + ACTIONS(1523), 1, + anon_sym_STAR, + ACTIONS(1525), 1, + anon_sym_AMP, + ACTIONS(4247), 1, + sym_identifier, + ACTIONS(5049), 1, + anon_sym_COLON_COLON, + ACTIONS(5425), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + STATE(4946), 1, + sym__scope_resolution, + STATE(5390), 1, + sym__declarator, + STATE(7250), 1, + sym_ms_based_modifier, + STATE(7236), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5080), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [164870] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1519), 1, + anon_sym_LPAREN2, + ACTIONS(1521), 1, + anon_sym_TILDE, + ACTIONS(4247), 1, sym_identifier, - ACTIONS(4819), 1, + ACTIONS(5049), 1, + anon_sym_COLON_COLON, + ACTIONS(5425), 1, + anon_sym_LBRACK, + ACTIONS(5452), 1, anon_sym_STAR, - ACTIONS(4821), 1, + ACTIONS(5454), 1, anon_sym_AMP_AMP, - ACTIONS(4823), 1, + ACTIONS(5456), 1, anon_sym_AMP, - ACTIONS(4825), 1, - anon_sym_COLON_COLON, - STATE(4708), 1, + STATE(4946), 1, sym__scope_resolution, - STATE(4895), 1, + STATE(5408), 1, sym__declarator, - STATE(6547), 1, + STATE(6825), 1, sym_ms_based_modifier, - STATE(6663), 2, + STATE(7236), 2, sym_template_type, sym_dependent_type_identifier, - STATE(4825), 11, + STATE(5080), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -322133,41 +354571,83 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [142007] = 13, + [164933] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2965), 1, + anon_sym_const, + ACTIONS(6933), 1, + anon_sym_AMP_AMP, + ACTIONS(6935), 1, + anon_sym_AMP, + ACTIONS(6937), 1, + anon_sym_DASH_GT, + ACTIONS(6939), 1, + anon_sym_noexcept, + ACTIONS(6941), 1, + anon_sym_throw, + ACTIONS(6943), 1, + anon_sym_requires, + STATE(5106), 1, + sym_requires_clause, + STATE(5315), 1, + sym_trailing_return_type, + STATE(4284), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6789), 6, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_try, + ACTIONS(6783), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [164988] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2921), 1, + ACTIONS(2965), 1, anon_sym_const, - ACTIONS(3369), 1, + ACTIONS(3757), 1, anon_sym_LPAREN2, - ACTIONS(6262), 1, + ACTIONS(6775), 1, anon_sym_STAR, - ACTIONS(6264), 1, + ACTIONS(6777), 1, anon_sym_AMP_AMP, - ACTIONS(6266), 1, + ACTIONS(6779), 1, anon_sym_AMP, - ACTIONS(6268), 1, + ACTIONS(6781), 1, anon_sym_LBRACK, - STATE(4034), 1, + STATE(4300), 1, sym_parameter_list, - STATE(5022), 1, + STATE(5329), 1, sym__abstract_declarator, - STATE(4015), 2, + STATE(4289), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(4064), 5, + ACTIONS(4757), 5, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, anon_sym_requires, - STATE(4832), 5, + STATE(5127), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(6270), 7, + ACTIONS(6783), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -322175,87 +354655,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [142062] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1497), 1, - anon_sym_operator, - ACTIONS(1515), 1, - anon_sym_LPAREN2, - ACTIONS(1517), 1, - anon_sym_TILDE, - ACTIONS(4062), 1, - sym_identifier, - ACTIONS(4072), 1, - anon_sym_COLON_COLON, - ACTIONS(4795), 1, - anon_sym_LBRACK, - ACTIONS(4805), 1, - anon_sym_STAR, - ACTIONS(4807), 1, - anon_sym_AMP_AMP, - ACTIONS(4809), 1, - anon_sym_AMP, - STATE(4678), 1, - sym__scope_resolution, - STATE(4820), 1, - sym__declarator, - STATE(6782), 1, - sym_ms_based_modifier, - STATE(6663), 2, - sym_template_type, - sym_dependent_type_identifier, - STATE(4825), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [142125] = 17, + [165043] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(29), 1, anon_sym_AMP_AMP, ACTIONS(47), 1, anon_sym___based, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(1497), 1, + ACTIONS(1501), 1, anon_sym_operator, - ACTIONS(1515), 1, + ACTIONS(1519), 1, anon_sym_LPAREN2, - ACTIONS(1517), 1, + ACTIONS(1521), 1, anon_sym_TILDE, - ACTIONS(1519), 1, + ACTIONS(1523), 1, anon_sym_STAR, - ACTIONS(1521), 1, + ACTIONS(1525), 1, anon_sym_AMP, - ACTIONS(3922), 1, + ACTIONS(4247), 1, sym_identifier, - ACTIONS(4132), 1, + ACTIONS(5049), 1, anon_sym_COLON_COLON, - ACTIONS(4795), 1, + ACTIONS(5425), 1, anon_sym_LBRACK, - STATE(4697), 1, + STATE(4946), 1, sym__scope_resolution, - STATE(5082), 1, + STATE(5428), 1, sym__declarator, - STATE(6716), 1, + STATE(7250), 1, sym_ms_based_modifier, - STATE(6663), 2, + STATE(7236), 2, sym_template_type, sym_dependent_type_identifier, - STATE(4825), 11, + STATE(5080), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -322267,41 +354701,41 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [142188] = 17, + [165106] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(1497), 1, + ACTIONS(1501), 1, anon_sym_operator, - ACTIONS(1515), 1, + ACTIONS(1519), 1, anon_sym_LPAREN2, - ACTIONS(1517), 1, + ACTIONS(1521), 1, anon_sym_TILDE, - ACTIONS(4795), 1, + ACTIONS(5425), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, + ACTIONS(5427), 1, sym_identifier, - ACTIONS(4819), 1, + ACTIONS(5429), 1, anon_sym_STAR, - ACTIONS(4821), 1, + ACTIONS(5431), 1, anon_sym_AMP_AMP, - ACTIONS(4823), 1, + ACTIONS(5433), 1, anon_sym_AMP, - ACTIONS(4825), 1, + ACTIONS(5435), 1, anon_sym_COLON_COLON, - STATE(4708), 1, + STATE(4941), 1, sym__scope_resolution, - STATE(4912), 1, + STATE(5171), 1, sym__declarator, - STATE(6547), 1, + STATE(6755), 1, sym_ms_based_modifier, - STATE(6663), 2, + STATE(7236), 2, sym_template_type, sym_dependent_type_identifier, - STATE(4825), 11, + STATE(5080), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -322313,17 +354747,18 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [142251] = 3, + [165169] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6700), 3, + ACTIONS(6947), 1, + anon_sym_LPAREN2, + ACTIONS(6949), 3, anon_sym_AMP, anon_sym_LBRACK, anon_sym_const, - ACTIONS(6698), 24, + ACTIONS(6945), 23, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, @@ -322345,29 +354780,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noexcept, anon_sym_throw, anon_sym_requires, - [142286] = 6, + [165206] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, - anon_sym_COLON_COLON, - ACTIONS(6702), 1, - anon_sym_LT, - STATE(2201), 1, - sym_template_argument_list, - ACTIONS(3752), 3, + ACTIONS(6953), 3, anon_sym_AMP, + anon_sym_LBRACK, anon_sym_const, - anon_sym_COLON, - ACTIONS(3757), 21, + ACTIONS(6951), 24, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_EQ, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -322375,46 +354803,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - sym_auto, - anon_sym_decltype, + anon_sym_COLON, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, anon_sym_requires, - [142327] = 13, + [165241] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1519), 1, + anon_sym_LPAREN2, + ACTIONS(1521), 1, + anon_sym_TILDE, + ACTIONS(5425), 1, + anon_sym_LBRACK, + ACTIONS(5427), 1, + sym_identifier, + ACTIONS(5429), 1, + anon_sym_STAR, + ACTIONS(5431), 1, + anon_sym_AMP_AMP, + ACTIONS(5433), 1, + anon_sym_AMP, + ACTIONS(5435), 1, + anon_sym_COLON_COLON, + STATE(4941), 1, + sym__scope_resolution, + STATE(5159), 1, + sym__declarator, + STATE(6755), 1, + sym_ms_based_modifier, + STATE(7236), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5080), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [165304] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1519), 1, + anon_sym_LPAREN2, + ACTIONS(1521), 1, + anon_sym_TILDE, + ACTIONS(5425), 1, + anon_sym_LBRACK, + ACTIONS(5427), 1, + sym_identifier, + ACTIONS(5429), 1, + anon_sym_STAR, + ACTIONS(5431), 1, + anon_sym_AMP_AMP, + ACTIONS(5433), 1, + anon_sym_AMP, + ACTIONS(5435), 1, + anon_sym_COLON_COLON, + STATE(4941), 1, + sym__scope_resolution, + STATE(5166), 1, + sym__declarator, + STATE(6755), 1, + sym_ms_based_modifier, + STATE(7236), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5080), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [165367] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2921), 1, + ACTIONS(2965), 1, anon_sym_const, - ACTIONS(6704), 1, + ACTIONS(6933), 1, anon_sym_AMP_AMP, - ACTIONS(6706), 1, + ACTIONS(6935), 1, anon_sym_AMP, - ACTIONS(6708), 1, + ACTIONS(6937), 1, anon_sym_DASH_GT, - ACTIONS(6710), 1, + ACTIONS(6939), 1, anon_sym_noexcept, - ACTIONS(6712), 1, + ACTIONS(6941), 1, anon_sym_throw, - ACTIONS(6714), 1, + ACTIONS(6943), 1, anon_sym_requires, - STATE(4843), 1, + STATE(5141), 1, sym_requires_clause, - STATE(5040), 1, + STATE(5325), 1, sym_trailing_return_type, - STATE(4041), 5, + STATE(4200), 5, sym_type_qualifier, sym_ref_qualifier, sym_noexcept, sym_throw_specifier, aux_sym_abstract_function_declarator_repeat1, - ACTIONS(6194), 6, + ACTIONS(6797), 6, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, anon_sym_try, - ACTIONS(6270), 7, + ACTIONS(6783), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -322422,28 +354946,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [142382] = 6, + [165422] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, - anon_sym_COLON_COLON, - ACTIONS(5129), 1, - anon_sym_LT, - STATE(2626), 1, - sym_template_argument_list, - ACTIONS(4346), 2, + ACTIONS(2965), 1, + anon_sym_const, + ACTIONS(3757), 1, + anon_sym_LPAREN2, + ACTIONS(5120), 1, + sym_auto, + ACTIONS(5122), 1, + anon_sym_decltype, + ACTIONS(6781), 1, + anon_sym_LBRACK, + ACTIONS(6955), 1, + anon_sym_STAR, + ACTIONS(6957), 1, + anon_sym_AMP_AMP, + ACTIONS(6959), 1, + anon_sym_AMP, + STATE(2722), 1, + sym_decltype_auto, + STATE(4387), 1, + sym_parameter_list, + STATE(5520), 1, + sym__abstract_declarator, + ACTIONS(6561), 2, + anon_sym_LBRACE, + anon_sym_requires, + STATE(4400), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5127), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6783), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [165483] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6963), 3, anon_sym_AMP, + anon_sym_LBRACK, anon_sym_const, - ACTIONS(4344), 22, - anon_sym_DOT_DOT_DOT, + ACTIONS(6961), 24, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_volatile, anon_sym_restrict, @@ -322452,34 +355014,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - sym_auto, - anon_sym_decltype, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, anon_sym_GT2, anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, anon_sym_requires, - [142423] = 6, + [165518] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, - anon_sym_COLON_COLON, - ACTIONS(6702), 1, - anon_sym_LT, - STATE(2201), 1, - sym_template_argument_list, - ACTIONS(4191), 3, - anon_sym_AMP, - anon_sym_const, - anon_sym_COLON, - ACTIONS(3740), 21, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(4287), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6965), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3957), 7, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_EQ, + ACTIONS(3955), 15, + anon_sym_AMP, + anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -322487,46 +355051,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, + sym_primitive_type, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, + anon_sym_try, anon_sym_requires, - [142464] = 13, + [165557] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2921), 1, - anon_sym_const, - ACTIONS(6704), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(6316), 1, + anon_sym_LPAREN2, + ACTIONS(6326), 1, + sym_identifier, + ACTIONS(6328), 1, + anon_sym_STAR, + ACTIONS(6330), 1, anon_sym_AMP_AMP, - ACTIONS(6706), 1, + ACTIONS(6332), 1, anon_sym_AMP, - ACTIONS(6708), 1, - anon_sym_DASH_GT, - ACTIONS(6710), 1, - anon_sym_noexcept, - ACTIONS(6712), 1, - anon_sym_throw, - ACTIONS(6714), 1, - anon_sym_requires, - STATE(4845), 1, - sym_requires_clause, - STATE(5021), 1, - sym_trailing_return_type, - STATE(4056), 5, + STATE(5437), 1, + sym__field_declarator, + STATE(6785), 1, + sym_ms_based_modifier, + STATE(4386), 2, sym_type_qualifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - ACTIONS(6242), 6, + aux_sym_type_definition_repeat1, + ACTIONS(2965), 8, + anon_sym_const, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + STATE(5185), 8, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + sym_reference_field_declarator, + sym_template_method, + sym_operator_name, + [165612] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2965), 1, + anon_sym_const, + ACTIONS(3757), 1, anon_sym_LPAREN2, + ACTIONS(6775), 1, + anon_sym_STAR, + ACTIONS(6777), 1, + anon_sym_AMP_AMP, + ACTIONS(6779), 1, + anon_sym_AMP, + ACTIONS(6781), 1, + anon_sym_LBRACK, + STATE(4300), 1, + sym_parameter_list, + STATE(5309), 1, + sym__abstract_declarator, + STATE(4388), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(5412), 5, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_try, - ACTIONS(6270), 7, + anon_sym_requires, + STATE(5127), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6783), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -322534,41 +355141,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [142519] = 17, + [165667] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(1497), 1, + ACTIONS(1501), 1, anon_sym_operator, - ACTIONS(1515), 1, + ACTIONS(1519), 1, anon_sym_LPAREN2, - ACTIONS(1517), 1, + ACTIONS(1521), 1, anon_sym_TILDE, - ACTIONS(3922), 1, + ACTIONS(4247), 1, sym_identifier, - ACTIONS(4132), 1, + ACTIONS(5049), 1, anon_sym_COLON_COLON, - ACTIONS(4795), 1, + ACTIONS(5425), 1, anon_sym_LBRACK, - ACTIONS(4831), 1, + ACTIONS(5452), 1, anon_sym_STAR, - ACTIONS(4833), 1, + ACTIONS(5454), 1, anon_sym_AMP_AMP, - ACTIONS(4835), 1, + ACTIONS(5456), 1, anon_sym_AMP, - STATE(4697), 1, + STATE(4946), 1, sym__scope_resolution, - STATE(5163), 1, + STATE(5432), 1, sym__declarator, - STATE(6466), 1, + STATE(6825), 1, sym_ms_based_modifier, - STATE(6663), 2, + STATE(7236), 2, sym_template_type, sym_dependent_type_identifier, - STATE(4825), 11, + STATE(5080), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -322580,41 +355187,41 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [142582] = 17, + [165730] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(1497), 1, + ACTIONS(1501), 1, anon_sym_operator, - ACTIONS(1515), 1, + ACTIONS(1519), 1, anon_sym_LPAREN2, - ACTIONS(1517), 1, + ACTIONS(1521), 1, anon_sym_TILDE, - ACTIONS(3922), 1, - sym_identifier, - ACTIONS(4132), 1, - anon_sym_COLON_COLON, - ACTIONS(4795), 1, + ACTIONS(5425), 1, anon_sym_LBRACK, - ACTIONS(4831), 1, + ACTIONS(5427), 1, + sym_identifier, + ACTIONS(5429), 1, anon_sym_STAR, - ACTIONS(4833), 1, + ACTIONS(5431), 1, anon_sym_AMP_AMP, - ACTIONS(4835), 1, + ACTIONS(5433), 1, anon_sym_AMP, - STATE(4697), 1, + ACTIONS(5435), 1, + anon_sym_COLON_COLON, + STATE(4941), 1, sym__scope_resolution, - STATE(5097), 1, + STATE(5302), 1, sym__declarator, - STATE(6466), 1, + STATE(6755), 1, sym_ms_based_modifier, - STATE(6663), 2, + STATE(7236), 2, sym_template_type, sym_dependent_type_identifier, - STATE(4825), 11, + STATE(5080), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -322626,87 +355233,86 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [142645] = 17, + [165793] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1497), 1, - anon_sym_operator, - ACTIONS(1515), 1, + ACTIONS(2965), 1, + anon_sym_const, + ACTIONS(3757), 1, anon_sym_LPAREN2, - ACTIONS(1517), 1, - anon_sym_TILDE, - ACTIONS(4795), 1, + ACTIONS(5120), 1, + sym_auto, + ACTIONS(5122), 1, + anon_sym_decltype, + ACTIONS(6781), 1, anon_sym_LBRACK, - ACTIONS(4817), 1, - sym_identifier, - ACTIONS(4819), 1, + ACTIONS(6955), 1, anon_sym_STAR, - ACTIONS(4821), 1, + ACTIONS(6957), 1, anon_sym_AMP_AMP, - ACTIONS(4823), 1, + ACTIONS(6959), 1, anon_sym_AMP, - ACTIONS(4825), 1, - anon_sym_COLON_COLON, - STATE(4708), 1, - sym__scope_resolution, - STATE(4907), 1, - sym__declarator, - STATE(6547), 1, - sym_ms_based_modifier, - STATE(6663), 2, - sym_template_type, - sym_dependent_type_identifier, - STATE(4825), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [142708] = 17, + STATE(2722), 1, + sym_decltype_auto, + STATE(4387), 1, + sym_parameter_list, + STATE(5503), 1, + sym__abstract_declarator, + ACTIONS(6545), 2, + anon_sym_LBRACE, + anon_sym_requires, + STATE(4392), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5127), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6783), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [165854] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(1497), 1, + ACTIONS(1501), 1, anon_sym_operator, - ACTIONS(1515), 1, + ACTIONS(1519), 1, anon_sym_LPAREN2, - ACTIONS(1517), 1, + ACTIONS(1521), 1, anon_sym_TILDE, - ACTIONS(3922), 1, + ACTIONS(4755), 1, sym_identifier, - ACTIONS(4132), 1, + ACTIONS(4765), 1, anon_sym_COLON_COLON, - ACTIONS(4795), 1, - anon_sym_LBRACK, - ACTIONS(4831), 1, + ACTIONS(5419), 1, anon_sym_STAR, - ACTIONS(4833), 1, + ACTIONS(5421), 1, anon_sym_AMP_AMP, - ACTIONS(4835), 1, + ACTIONS(5423), 1, anon_sym_AMP, - STATE(4697), 1, + ACTIONS(5425), 1, + anon_sym_LBRACK, + STATE(4973), 1, sym__scope_resolution, - STATE(5145), 1, + STATE(5116), 1, sym__declarator, - STATE(6466), 1, + STATE(6817), 1, sym_ms_based_modifier, - STATE(6663), 2, + STATE(7236), 2, sym_template_type, sym_dependent_type_identifier, - STATE(4825), 11, + STATE(5080), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -322718,21 +355324,27 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [142771] = 3, + [165917] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6718), 3, + ACTIONS(3424), 1, + anon_sym_COLON_COLON, + ACTIONS(6968), 1, + anon_sym_LT, + STATE(4375), 1, + sym_template_argument_list, + ACTIONS(4095), 3, anon_sym_AMP, - anon_sym_LBRACK, anon_sym_const, - ACTIONS(6716), 24, - anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3426), 21, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_volatile, anon_sym_restrict, @@ -322741,30 +355353,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, - anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, anon_sym_requires, - [142806] = 3, + [165958] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(6722), 3, + ACTIONS(2965), 1, + anon_sym_const, + ACTIONS(3757), 1, + anon_sym_LPAREN2, + ACTIONS(6775), 1, + anon_sym_STAR, + ACTIONS(6777), 1, + anon_sym_AMP_AMP, + ACTIONS(6779), 1, anon_sym_AMP, + ACTIONS(6781), 1, anon_sym_LBRACK, + STATE(4300), 1, + sym_parameter_list, + STATE(5299), 1, + sym__abstract_declarator, + STATE(4388), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(6756), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + anon_sym_requires, + STATE(5127), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6783), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [166013] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3424), 1, + anon_sym_COLON_COLON, + ACTIONS(6968), 1, + anon_sym_LT, + STATE(4375), 1, + sym_template_argument_list, + ACTIONS(3430), 3, + anon_sym_AMP, anon_sym_const, - ACTIONS(6720), 24, - anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3435), 21, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_volatile, anon_sym_restrict, @@ -322773,50 +355430,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, - anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, anon_sym_requires, - [142841] = 13, + [166054] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2921), 1, - anon_sym_const, - ACTIONS(6704), 1, - anon_sym_AMP_AMP, - ACTIONS(6706), 1, + ACTIONS(6972), 3, anon_sym_AMP, - ACTIONS(6708), 1, - anon_sym_DASH_GT, - ACTIONS(6710), 1, - anon_sym_noexcept, - ACTIONS(6712), 1, - anon_sym_throw, - ACTIONS(6714), 1, - anon_sym_requires, - STATE(4829), 1, - sym_requires_clause, - STATE(5016), 1, - sym_trailing_return_type, - STATE(3921), 5, - sym_type_qualifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - ACTIONS(6301), 6, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(6970), 24, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_try, - ACTIONS(6270), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -322824,87 +355459,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [142896] = 17, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [166089] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, ACTIONS(47), 1, anon_sym___based, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(1497), 1, + ACTIONS(1501), 1, anon_sym_operator, - ACTIONS(1515), 1, - anon_sym_LPAREN2, - ACTIONS(1517), 1, - anon_sym_TILDE, ACTIONS(1519), 1, - anon_sym_STAR, - ACTIONS(1521), 1, - anon_sym_AMP, - ACTIONS(3922), 1, - sym_identifier, - ACTIONS(4132), 1, - anon_sym_COLON_COLON, - ACTIONS(4795), 1, - anon_sym_LBRACK, - STATE(4697), 1, - sym__scope_resolution, - STATE(5157), 1, - sym__declarator, - STATE(6716), 1, - sym_ms_based_modifier, - STATE(6663), 2, - sym_template_type, - sym_dependent_type_identifier, - STATE(4825), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [142959] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1497), 1, - anon_sym_operator, - ACTIONS(1515), 1, anon_sym_LPAREN2, - ACTIONS(1517), 1, + ACTIONS(1521), 1, anon_sym_TILDE, - ACTIONS(1519), 1, + ACTIONS(5425), 1, + anon_sym_LBRACK, + ACTIONS(5427), 1, + sym_identifier, + ACTIONS(5429), 1, anon_sym_STAR, - ACTIONS(1521), 1, + ACTIONS(5431), 1, + anon_sym_AMP_AMP, + ACTIONS(5433), 1, anon_sym_AMP, - ACTIONS(3922), 1, - sym_identifier, - ACTIONS(4132), 1, + ACTIONS(5435), 1, anon_sym_COLON_COLON, - ACTIONS(4795), 1, - anon_sym_LBRACK, - STATE(4697), 1, + STATE(4941), 1, sym__scope_resolution, - STATE(5065), 1, + STATE(5175), 1, sym__declarator, - STATE(6716), 1, + STATE(6755), 1, sym_ms_based_modifier, - STATE(6663), 2, + STATE(7236), 2, sym_template_type, sym_dependent_type_identifier, - STATE(4825), 11, + STATE(5080), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -322916,41 +355514,41 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [143022] = 17, + [166152] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(1497), 1, + ACTIONS(1501), 1, anon_sym_operator, - ACTIONS(1515), 1, + ACTIONS(1519), 1, anon_sym_LPAREN2, - ACTIONS(1517), 1, + ACTIONS(1521), 1, anon_sym_TILDE, - ACTIONS(3922), 1, + ACTIONS(4247), 1, sym_identifier, - ACTIONS(4132), 1, + ACTIONS(5049), 1, anon_sym_COLON_COLON, - ACTIONS(4795), 1, + ACTIONS(5425), 1, anon_sym_LBRACK, - ACTIONS(4831), 1, + ACTIONS(5452), 1, anon_sym_STAR, - ACTIONS(4833), 1, + ACTIONS(5454), 1, anon_sym_AMP_AMP, - ACTIONS(4835), 1, + ACTIONS(5456), 1, anon_sym_AMP, - STATE(4697), 1, + STATE(4946), 1, sym__scope_resolution, - STATE(5123), 1, + STATE(5339), 1, sym__declarator, - STATE(6466), 1, + STATE(6825), 1, sym_ms_based_modifier, - STATE(6663), 2, + STATE(7236), 2, sym_template_type, sym_dependent_type_identifier, - STATE(4825), 11, + STATE(5080), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -322962,41 +355560,83 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [143085] = 17, + [166215] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, + ACTIONS(2965), 1, + anon_sym_const, + ACTIONS(6933), 1, anon_sym_AMP_AMP, + ACTIONS(6935), 1, + anon_sym_AMP, + ACTIONS(6937), 1, + anon_sym_DASH_GT, + ACTIONS(6939), 1, + anon_sym_noexcept, + ACTIONS(6941), 1, + anon_sym_throw, + ACTIONS(6943), 1, + anon_sym_requires, + STATE(5102), 1, + sym_requires_clause, + STATE(5293), 1, + sym_trailing_return_type, + STATE(4273), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6801), 6, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_try, + ACTIONS(6783), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [166270] = 17, + ACTIONS(3), 1, + sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(1497), 1, + ACTIONS(1501), 1, anon_sym_operator, - ACTIONS(1515), 1, - anon_sym_LPAREN2, - ACTIONS(1517), 1, - anon_sym_TILDE, ACTIONS(1519), 1, - anon_sym_STAR, + anon_sym_LPAREN2, ACTIONS(1521), 1, - anon_sym_AMP, - ACTIONS(3922), 1, + anon_sym_TILDE, + ACTIONS(4247), 1, sym_identifier, - ACTIONS(4132), 1, + ACTIONS(5049), 1, anon_sym_COLON_COLON, - ACTIONS(4795), 1, + ACTIONS(5425), 1, anon_sym_LBRACK, - STATE(4697), 1, + ACTIONS(5452), 1, + anon_sym_STAR, + ACTIONS(5454), 1, + anon_sym_AMP_AMP, + ACTIONS(5456), 1, + anon_sym_AMP, + STATE(4946), 1, sym__scope_resolution, - STATE(5119), 1, + STATE(5393), 1, sym__declarator, - STATE(6716), 1, + STATE(6825), 1, sym_ms_based_modifier, - STATE(6663), 2, + STATE(7236), 2, sym_template_type, sym_dependent_type_identifier, - STATE(4825), 11, + STATE(5080), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -323008,31 +355648,31 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [143148] = 13, + [166333] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(1497), 1, + ACTIONS(1501), 1, anon_sym_operator, - ACTIONS(5661), 1, - anon_sym_LPAREN2, - ACTIONS(5669), 1, + ACTIONS(6314), 1, sym_identifier, - ACTIONS(5671), 1, + ACTIONS(6316), 1, + anon_sym_LPAREN2, + ACTIONS(6318), 1, anon_sym_STAR, - ACTIONS(5673), 1, + ACTIONS(6320), 1, anon_sym_AMP_AMP, - ACTIONS(5675), 1, + ACTIONS(6322), 1, anon_sym_AMP, - STATE(4721), 1, + STATE(5021), 1, sym__field_declarator, - STATE(6560), 1, + STATE(6823), 1, sym_ms_based_modifier, - STATE(4149), 2, + STATE(4386), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2921), 8, + ACTIONS(2965), 8, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -323041,7 +355681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(4890), 8, + STATE(5185), 8, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, @@ -323050,77 +355690,31 @@ static const uint16_t ts_small_parse_table[] = { sym_reference_field_declarator, sym_template_method, sym_operator_name, - [143203] = 17, + [166388] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1497), 1, + ACTIONS(1501), 1, anon_sym_operator, - ACTIONS(1515), 1, + ACTIONS(6316), 1, anon_sym_LPAREN2, - ACTIONS(1517), 1, - anon_sym_TILDE, - ACTIONS(4795), 1, - anon_sym_LBRACK, - ACTIONS(4817), 1, - sym_identifier, - ACTIONS(4819), 1, - anon_sym_STAR, - ACTIONS(4821), 1, - anon_sym_AMP_AMP, - ACTIONS(4823), 1, - anon_sym_AMP, - ACTIONS(4825), 1, - anon_sym_COLON_COLON, - STATE(4708), 1, - sym__scope_resolution, - STATE(4888), 1, - sym__declarator, - STATE(6547), 1, - sym_ms_based_modifier, - STATE(6663), 2, - sym_template_type, - sym_dependent_type_identifier, - STATE(4825), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [143266] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1497), 1, - anon_sym_operator, - ACTIONS(5659), 1, + ACTIONS(6326), 1, sym_identifier, - ACTIONS(5661), 1, - anon_sym_LPAREN2, - ACTIONS(5663), 1, + ACTIONS(6328), 1, anon_sym_STAR, - ACTIONS(5665), 1, + ACTIONS(6330), 1, anon_sym_AMP_AMP, - ACTIONS(5667), 1, + ACTIONS(6332), 1, anon_sym_AMP, - STATE(5171), 1, + STATE(5431), 1, sym__field_declarator, - STATE(6690), 1, + STATE(6785), 1, sym_ms_based_modifier, - STATE(4149), 2, + STATE(4386), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2921), 8, + ACTIONS(2965), 8, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -323129,7 +355723,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - STATE(4890), 8, + STATE(5185), 8, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, @@ -323138,44 +355732,78 @@ static const uint16_t ts_small_parse_table[] = { sym_reference_field_declarator, sym_template_method, sym_operator_name, - [143321] = 16, + [166443] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2921), 1, - anon_sym_const, - ACTIONS(3369), 1, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1519), 1, anon_sym_LPAREN2, - ACTIONS(4691), 1, - sym_auto, - ACTIONS(4693), 1, - anon_sym_decltype, - ACTIONS(6268), 1, + ACTIONS(1521), 1, + anon_sym_TILDE, + ACTIONS(1523), 1, + anon_sym_STAR, + ACTIONS(1525), 1, + anon_sym_AMP, + ACTIONS(4247), 1, + sym_identifier, + ACTIONS(5049), 1, + anon_sym_COLON_COLON, + ACTIONS(5425), 1, anon_sym_LBRACK, - ACTIONS(6724), 1, + STATE(4946), 1, + sym__scope_resolution, + STATE(5342), 1, + sym__declarator, + STATE(7250), 1, + sym_ms_based_modifier, + STATE(7236), 2, + sym_template_type, + sym_dependent_type_identifier, + STATE(5080), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [166506] = 7, + ACTIONS(3), 1, + sym_comment, + STATE(4398), 1, + sym_ms_unaligned_ptr_modifier, + ACTIONS(6981), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4305), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(6978), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(6976), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - ACTIONS(6726), 1, anon_sym_AMP_AMP, - ACTIONS(6728), 1, + anon_sym_COLON_COLON, + anon_sym_LBRACK, + ACTIONS(6974), 13, anon_sym_AMP, - STATE(2476), 1, - sym_decltype_auto, - STATE(4136), 1, - sym_parameter_list, - STATE(5233), 1, - sym__abstract_declarator, - ACTIONS(5722), 2, - anon_sym_LBRACE, - anon_sym_requires, - STATE(4131), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4832), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6270), 7, + anon_sym___based, + anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -323183,30 +355811,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [143382] = 7, + sym_identifier, + anon_sym_template, + anon_sym_operator, + [166549] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(6730), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(6314), 1, sym_identifier, - ACTIONS(6734), 1, - sym_primitive_type, - STATE(4019), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6732), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4103), 7, + ACTIONS(6316), 1, anon_sym_LPAREN2, + ACTIONS(6318), 1, anon_sym_STAR, + ACTIONS(6320), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - ACTIONS(4105), 13, + ACTIONS(6322), 1, anon_sym_AMP, + STATE(5016), 1, + sym__field_declarator, + STATE(6823), 1, + sym_ms_based_modifier, + STATE(4386), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2965), 8, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -323215,45 +355847,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [143425] = 17, + STATE(5185), 8, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + sym_reference_field_declarator, + sym_template_method, + sym_operator_name, + [166604] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(1497), 1, + ACTIONS(1501), 1, anon_sym_operator, - ACTIONS(1515), 1, + ACTIONS(1519), 1, anon_sym_LPAREN2, - ACTIONS(1517), 1, + ACTIONS(1521), 1, anon_sym_TILDE, - ACTIONS(4062), 1, + ACTIONS(4755), 1, sym_identifier, - ACTIONS(4072), 1, + ACTIONS(4765), 1, anon_sym_COLON_COLON, - ACTIONS(4795), 1, - anon_sym_LBRACK, - ACTIONS(4797), 1, + ACTIONS(5419), 1, anon_sym_STAR, - ACTIONS(4799), 1, + ACTIONS(5421), 1, anon_sym_AMP_AMP, - ACTIONS(4801), 1, + ACTIONS(5423), 1, anon_sym_AMP, - STATE(4678), 1, + ACTIONS(5425), 1, + anon_sym_LBRACK, + STATE(4973), 1, sym__scope_resolution, - STATE(4879), 1, + STATE(5283), 1, sym__declarator, - STATE(6932), 1, + STATE(6817), 1, sym_ms_based_modifier, - STATE(6663), 2, + STATE(7236), 2, sym_template_type, sym_dependent_type_identifier, - STATE(4825), 11, + STATE(5080), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -323265,41 +355902,41 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [143488] = 17, + [166667] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(1497), 1, + ACTIONS(1501), 1, anon_sym_operator, - ACTIONS(1515), 1, + ACTIONS(1519), 1, anon_sym_LPAREN2, - ACTIONS(1517), 1, + ACTIONS(1521), 1, anon_sym_TILDE, - ACTIONS(4062), 1, + ACTIONS(5425), 1, + anon_sym_LBRACK, + ACTIONS(5427), 1, sym_identifier, - ACTIONS(4072), 1, - anon_sym_COLON_COLON, - ACTIONS(4789), 1, + ACTIONS(5429), 1, anon_sym_STAR, - ACTIONS(4791), 1, + ACTIONS(5431), 1, anon_sym_AMP_AMP, - ACTIONS(4793), 1, + ACTIONS(5433), 1, anon_sym_AMP, - ACTIONS(4795), 1, - anon_sym_LBRACK, - STATE(4678), 1, + ACTIONS(5435), 1, + anon_sym_COLON_COLON, + STATE(4941), 1, sym__scope_resolution, - STATE(4863), 1, + STATE(5184), 1, sym__declarator, - STATE(6414), 1, + STATE(6755), 1, sym_ms_based_modifier, - STATE(6663), 2, + STATE(7236), 2, sym_template_type, sym_dependent_type_identifier, - STATE(4825), 11, + STATE(5080), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -323311,162 +355948,32 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [143551] = 17, + [166730] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, ACTIONS(47), 1, anon_sym___based, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1497), 1, + ACTIONS(1501), 1, anon_sym_operator, - ACTIONS(1515), 1, - anon_sym_LPAREN2, - ACTIONS(1517), 1, - anon_sym_TILDE, - ACTIONS(1519), 1, - anon_sym_STAR, - ACTIONS(1521), 1, - anon_sym_AMP, - ACTIONS(3922), 1, + ACTIONS(6314), 1, sym_identifier, - ACTIONS(4132), 1, - anon_sym_COLON_COLON, - ACTIONS(4795), 1, - anon_sym_LBRACK, - STATE(4697), 1, - sym__scope_resolution, - STATE(5033), 1, - sym__declarator, - STATE(6716), 1, - sym_ms_based_modifier, - STATE(6663), 2, - sym_template_type, - sym_dependent_type_identifier, - STATE(4825), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [143614] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2921), 1, - anon_sym_const, - ACTIONS(3369), 1, + ACTIONS(6316), 1, anon_sym_LPAREN2, - ACTIONS(6262), 1, + ACTIONS(6318), 1, anon_sym_STAR, - ACTIONS(6264), 1, + ACTIONS(6320), 1, anon_sym_AMP_AMP, - ACTIONS(6266), 1, + ACTIONS(6322), 1, anon_sym_AMP, - ACTIONS(6268), 1, - anon_sym_LBRACK, - STATE(4034), 1, - sym_parameter_list, - STATE(5042), 1, - sym__abstract_declarator, - STATE(4141), 2, + STATE(5047), 1, + sym__field_declarator, + STATE(6823), 1, + sym_ms_based_modifier, + STATE(4386), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(6246), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - anon_sym_requires, - STATE(4832), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6270), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [143669] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6738), 1, - anon_sym_LPAREN2, - ACTIONS(6740), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(6736), 23, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, - anon_sym_requires, - [143706] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2921), 1, + ACTIONS(2965), 8, anon_sym_const, - ACTIONS(6704), 1, - anon_sym_AMP_AMP, - ACTIONS(6706), 1, - anon_sym_AMP, - ACTIONS(6708), 1, - anon_sym_DASH_GT, - ACTIONS(6710), 1, - anon_sym_noexcept, - ACTIONS(6712), 1, - anon_sym_throw, - ACTIONS(6714), 1, - anon_sym_requires, - STATE(4836), 1, - sym_requires_clause, - STATE(5038), 1, - sym_trailing_return_type, - STATE(3921), 5, - sym_type_qualifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - ACTIONS(6202), 6, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_try, - ACTIONS(6270), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -323474,87 +355981,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [143761] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(1497), 1, - anon_sym_operator, - ACTIONS(1515), 1, - anon_sym_LPAREN2, - ACTIONS(1517), 1, - anon_sym_TILDE, - ACTIONS(4795), 1, - anon_sym_LBRACK, - ACTIONS(4817), 1, - sym_identifier, - ACTIONS(4819), 1, - anon_sym_STAR, - ACTIONS(4821), 1, - anon_sym_AMP_AMP, - ACTIONS(4823), 1, - anon_sym_AMP, - ACTIONS(4825), 1, - anon_sym_COLON_COLON, - STATE(4708), 1, - sym__scope_resolution, - STATE(4876), 1, - sym__declarator, - STATE(6547), 1, - sym_ms_based_modifier, - STATE(6663), 2, - sym_template_type, - sym_dependent_type_identifier, - STATE(4825), 11, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, + STATE(5185), 8, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + sym_reference_field_declarator, + sym_template_method, sym_operator_name, - [143824] = 17, + [166785] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(29), 1, anon_sym_AMP_AMP, ACTIONS(47), 1, anon_sym___based, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(1497), 1, + ACTIONS(1501), 1, anon_sym_operator, - ACTIONS(1515), 1, + ACTIONS(1519), 1, anon_sym_LPAREN2, - ACTIONS(1517), 1, + ACTIONS(1521), 1, anon_sym_TILDE, - ACTIONS(1519), 1, + ACTIONS(1523), 1, anon_sym_STAR, - ACTIONS(1521), 1, + ACTIONS(1525), 1, anon_sym_AMP, - ACTIONS(3922), 1, + ACTIONS(4247), 1, sym_identifier, - ACTIONS(4132), 1, + ACTIONS(5049), 1, anon_sym_COLON_COLON, - ACTIONS(4795), 1, + ACTIONS(5425), 1, anon_sym_LBRACK, - STATE(4697), 1, + STATE(4946), 1, sym__scope_resolution, - STATE(5090), 1, + STATE(5410), 1, sym__declarator, - STATE(6716), 1, + STATE(7250), 1, sym_ms_based_modifier, - STATE(6663), 2, + STATE(7236), 2, sym_template_type, sym_dependent_type_identifier, - STATE(4825), 11, + STATE(5080), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -323566,41 +356036,41 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [143887] = 17, + [166848] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(1497), 1, + ACTIONS(1501), 1, anon_sym_operator, - ACTIONS(1515), 1, + ACTIONS(1519), 1, anon_sym_LPAREN2, - ACTIONS(1517), 1, + ACTIONS(1521), 1, anon_sym_TILDE, - ACTIONS(4062), 1, + ACTIONS(4247), 1, sym_identifier, - ACTIONS(4072), 1, + ACTIONS(5049), 1, anon_sym_COLON_COLON, - ACTIONS(4795), 1, + ACTIONS(5425), 1, anon_sym_LBRACK, - ACTIONS(4805), 1, + ACTIONS(5452), 1, anon_sym_STAR, - ACTIONS(4807), 1, + ACTIONS(5454), 1, anon_sym_AMP_AMP, - ACTIONS(4809), 1, + ACTIONS(5456), 1, anon_sym_AMP, - STATE(4678), 1, + STATE(4946), 1, sym__scope_resolution, - STATE(4940), 1, + STATE(5398), 1, sym__declarator, - STATE(6782), 1, + STATE(6825), 1, sym_ms_based_modifier, - STATE(6663), 2, + STATE(7236), 2, sym_template_type, sym_dependent_type_identifier, - STATE(4825), 11, + STATE(5080), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -323612,106 +356082,19 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [143950] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2921), 1, - anon_sym_const, - ACTIONS(3369), 1, - anon_sym_LPAREN2, - ACTIONS(4691), 1, - sym_auto, - ACTIONS(4693), 1, - anon_sym_decltype, - ACTIONS(6268), 1, - anon_sym_LBRACK, - ACTIONS(6724), 1, - anon_sym_STAR, - ACTIONS(6726), 1, - anon_sym_AMP_AMP, - ACTIONS(6728), 1, - anon_sym_AMP, - STATE(2476), 1, - sym_decltype_auto, - STATE(4136), 1, - sym_parameter_list, - STATE(5226), 1, - sym__abstract_declarator, - ACTIONS(5706), 2, - anon_sym_LBRACE, - anon_sym_requires, - STATE(4139), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4832), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6270), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [144011] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2921), 1, - anon_sym_const, - ACTIONS(3369), 1, - anon_sym_LPAREN2, - ACTIONS(6268), 1, - anon_sym_LBRACK, - ACTIONS(6483), 1, - anon_sym_STAR, - ACTIONS(6485), 1, - anon_sym_AMP_AMP, - ACTIONS(6487), 1, - anon_sym_AMP, - STATE(4077), 1, - sym_parameter_list, - STATE(5165), 1, - sym__abstract_declarator, - STATE(4141), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(6246), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - anon_sym_requires, - STATE(4832), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6270), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [144065] = 4, + [166911] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6742), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(6665), 3, + ACTIONS(6986), 3, anon_sym_AMP, anon_sym_LBRACK, anon_sym_const, - ACTIONS(6663), 21, + ACTIONS(6984), 24, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_AMP_AMP, - anon_sym___attribute__, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, @@ -323726,24 +356109,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_try, anon_sym_noexcept, anon_sym_throw, anon_sym_requires, - [144101] = 6, + [166946] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, + ACTIONS(3424), 1, anon_sym_COLON_COLON, - ACTIONS(6745), 1, + ACTIONS(6988), 1, anon_sym_LT, - STATE(2425), 1, + STATE(2897), 1, sym_template_argument_list, - ACTIONS(3752), 3, + ACTIONS(4095), 3, anon_sym_AMP, anon_sym_const, anon_sym_COLON, - ACTIONS(3757), 20, + ACTIONS(3426), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -323764,41 +356148,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [144141] = 14, + [166986] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(2965), 1, anon_sym_const, - ACTIONS(5602), 1, + ACTIONS(3757), 1, + anon_sym_LPAREN2, + ACTIONS(3759), 1, + anon_sym_STAR, + ACTIONS(3761), 1, anon_sym_AMP_AMP, - ACTIONS(5604), 1, + ACTIONS(3763), 1, anon_sym_AMP, - ACTIONS(5614), 1, - anon_sym_noexcept, - ACTIONS(5616), 1, - anon_sym_throw, - ACTIONS(5784), 1, - anon_sym_DASH_GT, - ACTIONS(5786), 1, - anon_sym_requires, - ACTIONS(6196), 1, + ACTIONS(6781), 1, anon_sym_LBRACK, - STATE(4779), 1, - sym_requires_clause, - STATE(4963), 1, - sym_trailing_return_type, - ACTIONS(6194), 4, + STATE(4345), 1, + sym_parameter_list, + STATE(5396), 1, + sym__abstract_declarator, + STATE(4388), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(6756), 4, + anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - STATE(4081), 5, - sym_type_qualifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - ACTIONS(5651), 7, + anon_sym_requires, + STATE(5127), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6783), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -323806,26 +356189,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [144197] = 9, + [167040] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(6747), 1, + ACTIONS(6990), 1, anon_sym_LBRACE, - STATE(4340), 1, + STATE(4473), 1, sym_field_declaration_list, - STATE(5379), 1, + STATE(5733), 1, sym_virtual_specifier, - STATE(5852), 1, + STATE(6176), 1, sym_base_class_clause, - ACTIONS(4160), 2, + ACTIONS(4016), 2, anon_sym_final, anon_sym_override, - ACTIONS(4195), 2, + ACTIONS(4031), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(4193), 17, + ACTIONS(4029), 17, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, @@ -323843,26 +356226,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_try, anon_sym_requires, - [144243] = 9, + [167086] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(6747), 1, + ACTIONS(6990), 1, anon_sym_LBRACE, - STATE(4199), 1, + STATE(4475), 1, sym_field_declaration_list, - STATE(5273), 1, + STATE(5724), 1, sym_virtual_specifier, - STATE(5814), 1, + STATE(6180), 1, sym_base_class_clause, - ACTIONS(4160), 2, + ACTIONS(4016), 2, anon_sym_final, anon_sym_override, - ACTIONS(4209), 2, + ACTIONS(4035), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(4207), 17, + ACTIONS(4033), 17, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, @@ -323880,41 +356263,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_try, anon_sym_requires, - [144289] = 14, + [167132] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_const, - ACTIONS(5602), 1, + ACTIONS(6547), 1, + anon_sym_LPAREN2, + ACTIONS(6555), 1, + anon_sym_LBRACK, + ACTIONS(6874), 1, + anon_sym_STAR, + ACTIONS(6876), 1, anon_sym_AMP_AMP, - ACTIONS(5604), 1, + ACTIONS(6878), 1, anon_sym_AMP, - ACTIONS(5614), 1, + STATE(4318), 1, + sym_parameter_list, + STATE(5357), 1, + sym__abstract_declarator, + STATE(4339), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(4757), 4, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + anon_sym_requires, + STATE(5059), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6342), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [167186] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6009), 1, + anon_sym_AMP_AMP, + ACTIONS(6011), 1, + anon_sym_AMP, + ACTIONS(6021), 1, anon_sym_noexcept, - ACTIONS(5616), 1, + ACTIONS(6023), 1, anon_sym_throw, - ACTIONS(5784), 1, + ACTIONS(6693), 1, anon_sym_DASH_GT, - ACTIONS(5786), 1, + ACTIONS(6695), 1, anon_sym_requires, - ACTIONS(6244), 1, + ACTIONS(6803), 1, anon_sym_LBRACK, - STATE(4761), 1, + STATE(5065), 1, sym_requires_clause, - STATE(4942), 1, + STATE(5212), 1, sym_trailing_return_type, - ACTIONS(6242), 4, - anon_sym_RPAREN, + ACTIONS(6801), 4, anon_sym_LPAREN2, - anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - STATE(4070), 5, + anon_sym_LBRACE, + anon_sym_try, + STATE(4356), 5, sym_type_qualifier, sym_ref_qualifier, sym_noexcept, sym_throw_specifier, aux_sym_abstract_function_declarator_repeat1, - ACTIONS(5651), 7, + ACTIONS(6342), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -323922,40 +356346,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [144345] = 13, + [167242] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2921), 1, + ACTIONS(2965), 1, anon_sym_const, - ACTIONS(3369), 1, + ACTIONS(3757), 1, anon_sym_LPAREN2, - ACTIONS(6268), 1, + ACTIONS(6781), 1, anon_sym_LBRACK, - ACTIONS(6483), 1, + ACTIONS(6805), 1, anon_sym_STAR, - ACTIONS(6485), 1, + ACTIONS(6807), 1, anon_sym_AMP_AMP, - ACTIONS(6487), 1, + ACTIONS(6809), 1, anon_sym_AMP, - STATE(4077), 1, + STATE(4328), 1, sym_parameter_list, - STATE(5149), 1, + STATE(5371), 1, sym__abstract_declarator, - STATE(4100), 2, + STATE(4388), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(4064), 4, + ACTIONS(6756), 4, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_GT2, anon_sym_requires, - STATE(4832), 5, + STATE(5127), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(6270), 7, + ACTIONS(6783), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -323963,40 +356387,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [144399] = 13, + [167296] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(4014), 1, + anon_sym_COLON, + ACTIONS(6990), 1, + anon_sym_LBRACE, + STATE(4481), 1, + sym_field_declaration_list, + STATE(5703), 1, + sym_virtual_specifier, + STATE(6184), 1, + sym_base_class_clause, + ACTIONS(4016), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4039), 2, + anon_sym_AMP, anon_sym_const, - ACTIONS(5708), 1, + ACTIONS(4037), 17, anon_sym_LPAREN2, - ACTIONS(5716), 1, - anon_sym_LBRACK, - ACTIONS(6459), 1, anon_sym_STAR, - ACTIONS(6461), 1, anon_sym_AMP_AMP, - ACTIONS(6463), 1, - anon_sym_AMP, - STATE(4067), 1, - sym_parameter_list, - STATE(5115), 1, - sym__abstract_declarator, - STATE(4076), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(4064), 4, - anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_requires, - STATE(4735), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5651), 7, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -324004,41 +356420,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [144453] = 14, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [167342] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(2965), 1, anon_sym_const, - ACTIONS(5602), 1, + ACTIONS(3757), 1, + anon_sym_LPAREN2, + ACTIONS(6781), 1, + anon_sym_LBRACK, + ACTIONS(6805), 1, + anon_sym_STAR, + ACTIONS(6807), 1, anon_sym_AMP_AMP, - ACTIONS(5604), 1, + ACTIONS(6809), 1, anon_sym_AMP, - ACTIONS(5614), 1, - anon_sym_noexcept, - ACTIONS(5616), 1, - anon_sym_throw, - ACTIONS(5784), 1, - anon_sym_DASH_GT, - ACTIONS(5786), 1, - anon_sym_requires, - ACTIONS(6204), 1, - anon_sym_LBRACK, - STATE(4782), 1, - sym_requires_clause, - STATE(4969), 1, - sym_trailing_return_type, - ACTIONS(6202), 4, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - STATE(3800), 5, + STATE(4328), 1, + sym_parameter_list, + STATE(5338), 1, + sym__abstract_declarator, + STATE(4388), 2, sym_type_qualifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - ACTIONS(5651), 7, + aux_sym_type_definition_repeat1, + ACTIONS(5412), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + anon_sym_requires, + STATE(5127), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6783), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -324046,40 +356465,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [144509] = 13, + [167396] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2921), 1, + ACTIONS(57), 1, anon_sym_const, - ACTIONS(3369), 1, + ACTIONS(6547), 1, anon_sym_LPAREN2, - ACTIONS(3371), 1, + ACTIONS(6555), 1, + anon_sym_LBRACK, + ACTIONS(6874), 1, anon_sym_STAR, - ACTIONS(3373), 1, + ACTIONS(6876), 1, anon_sym_AMP_AMP, - ACTIONS(3375), 1, + ACTIONS(6878), 1, anon_sym_AMP, - ACTIONS(6268), 1, - anon_sym_LBRACK, - STATE(4080), 1, + STATE(4318), 1, sym_parameter_list, - STATE(5151), 1, + STATE(5355), 1, sym__abstract_declarator, - STATE(4141), 2, + STATE(4389), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(4695), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, + ACTIONS(6773), 4, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, anon_sym_requires, - STATE(4832), 5, + STATE(5059), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(6270), 7, + ACTIONS(6342), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -324087,40 +356506,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [144563] = 13, + [167450] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(2965), 1, anon_sym_const, - ACTIONS(5708), 1, + ACTIONS(3757), 1, anon_sym_LPAREN2, - ACTIONS(5716), 1, + ACTIONS(6781), 1, anon_sym_LBRACK, - ACTIONS(6505), 1, + ACTIONS(6805), 1, anon_sym_STAR, - ACTIONS(6507), 1, + ACTIONS(6807), 1, anon_sym_AMP_AMP, - ACTIONS(6509), 1, + ACTIONS(6809), 1, anon_sym_AMP, - STATE(4097), 1, + STATE(4328), 1, sym_parameter_list, - STATE(5150), 1, + STATE(5443), 1, sym__abstract_declarator, - STATE(4102), 2, + STATE(4388), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(4064), 4, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_try, + ACTIONS(6773), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, anon_sym_requires, - STATE(4735), 5, + STATE(5127), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(5651), 7, + ACTIONS(6783), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -324128,40 +356547,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [144617] = 13, + [167504] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2921), 1, + ACTIONS(57), 1, anon_sym_const, - ACTIONS(6704), 1, + ACTIONS(6009), 1, anon_sym_AMP_AMP, - ACTIONS(6706), 1, + ACTIONS(6011), 1, anon_sym_AMP, - ACTIONS(6710), 1, + ACTIONS(6021), 1, anon_sym_noexcept, - ACTIONS(6712), 1, + ACTIONS(6023), 1, anon_sym_throw, - ACTIONS(6749), 1, + ACTIONS(6693), 1, anon_sym_DASH_GT, - ACTIONS(6751), 1, + ACTIONS(6695), 1, anon_sym_requires, - STATE(4843), 1, + ACTIONS(6791), 1, + anon_sym_LBRACK, + STATE(4989), 1, sym_requires_clause, - STATE(5046), 1, + STATE(5209), 1, sym_trailing_return_type, - ACTIONS(6194), 5, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6789), 4, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK, - STATE(4096), 5, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + STATE(4326), 5, sym_type_qualifier, sym_ref_qualifier, sym_noexcept, sym_throw_specifier, aux_sym_abstract_function_declarator_repeat1, - ACTIONS(6270), 7, + ACTIONS(6342), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -324169,32 +356589,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [144671] = 9, + [167560] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON, - ACTIONS(6747), 1, - anon_sym_LBRACE, - STATE(4281), 1, - sym_field_declaration_list, - STATE(5396), 1, - sym_virtual_specifier, - STATE(5866), 1, - sym_base_class_clause, - ACTIONS(4160), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4185), 2, - anon_sym_AMP, + ACTIONS(2965), 1, anon_sym_const, - ACTIONS(4183), 17, + ACTIONS(3757), 1, anon_sym_LPAREN2, + ACTIONS(3759), 1, anon_sym_STAR, + ACTIONS(3761), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(3763), 1, + anon_sym_AMP, + ACTIONS(6781), 1, anon_sym_LBRACK, - anon_sym_EQ, + STATE(4345), 1, + sym_parameter_list, + STATE(5377), 1, + sym__abstract_declarator, + STATE(4352), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(4757), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_requires, + STATE(5127), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6783), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -324202,44 +356630,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [144717] = 13, + [167614] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2921), 1, + ACTIONS(57), 1, anon_sym_const, - ACTIONS(6704), 1, + ACTIONS(6009), 1, anon_sym_AMP_AMP, - ACTIONS(6706), 1, + ACTIONS(6011), 1, anon_sym_AMP, - ACTIONS(6710), 1, + ACTIONS(6021), 1, anon_sym_noexcept, - ACTIONS(6712), 1, + ACTIONS(6023), 1, anon_sym_throw, - ACTIONS(6749), 1, + ACTIONS(6693), 1, anon_sym_DASH_GT, - ACTIONS(6751), 1, + ACTIONS(6695), 1, anon_sym_requires, - STATE(4836), 1, + ACTIONS(6799), 1, + anon_sym_LBRACK, + STATE(5023), 1, sym_requires_clause, - STATE(5063), 1, + STATE(5207), 1, sym_trailing_return_type, - ACTIONS(6202), 5, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6797), 4, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK, - STATE(3921), 5, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + STATE(4194), 5, sym_type_qualifier, sym_ref_qualifier, sym_noexcept, sym_throw_specifier, aux_sym_abstract_function_declarator_repeat1, - ACTIONS(6270), 7, + ACTIONS(6342), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -324247,40 +356672,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [144771] = 13, + [167670] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(2965), 1, anon_sym_const, - ACTIONS(5708), 1, + ACTIONS(3757), 1, anon_sym_LPAREN2, - ACTIONS(5716), 1, - anon_sym_LBRACK, - ACTIONS(6459), 1, + ACTIONS(3759), 1, anon_sym_STAR, - ACTIONS(6461), 1, + ACTIONS(3761), 1, anon_sym_AMP_AMP, - ACTIONS(6463), 1, + ACTIONS(3763), 1, anon_sym_AMP, - STATE(4067), 1, + ACTIONS(6781), 1, + anon_sym_LBRACK, + STATE(4345), 1, sym_parameter_list, - STATE(5106), 1, + STATE(5363), 1, sym__abstract_declarator, - STATE(4142), 2, + STATE(4388), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(4695), 4, + ACTIONS(6773), 4, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_requires, - STATE(4735), 5, + STATE(5127), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(5651), 7, + ACTIONS(6783), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -324288,40 +356713,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [144825] = 13, + [167724] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2921), 1, + ACTIONS(2965), 1, anon_sym_const, - ACTIONS(6704), 1, + ACTIONS(6933), 1, anon_sym_AMP_AMP, - ACTIONS(6706), 1, + ACTIONS(6935), 1, anon_sym_AMP, - ACTIONS(6710), 1, + ACTIONS(6939), 1, anon_sym_noexcept, - ACTIONS(6712), 1, + ACTIONS(6941), 1, anon_sym_throw, - ACTIONS(6753), 1, + ACTIONS(6992), 1, anon_sym_DASH_GT, - ACTIONS(6755), 1, + ACTIONS(6994), 1, anon_sym_requires, - STATE(4845), 1, + STATE(5102), 1, sym_requires_clause, - STATE(5112), 1, + STATE(5442), 1, sym_trailing_return_type, - ACTIONS(6242), 5, + ACTIONS(6801), 5, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_GT2, - STATE(4094), 5, + STATE(4355), 5, sym_type_qualifier, sym_ref_qualifier, sym_noexcept, sym_throw_specifier, aux_sym_abstract_function_declarator_repeat1, - ACTIONS(6270), 7, + ACTIONS(6783), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -324329,40 +356754,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [144879] = 13, + [167778] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2921), 1, + ACTIONS(57), 1, anon_sym_const, - ACTIONS(6704), 1, + ACTIONS(6009), 1, anon_sym_AMP_AMP, - ACTIONS(6706), 1, + ACTIONS(6011), 1, anon_sym_AMP, - ACTIONS(6710), 1, + ACTIONS(6021), 1, anon_sym_noexcept, - ACTIONS(6712), 1, + ACTIONS(6023), 1, anon_sym_throw, - ACTIONS(6753), 1, - anon_sym_DASH_GT, - ACTIONS(6755), 1, + ACTIONS(6695), 1, anon_sym_requires, - STATE(4829), 1, + ACTIONS(6705), 1, + anon_sym_DASH_GT, + ACTIONS(6799), 1, + anon_sym_LBRACK, + STATE(5023), 1, sym_requires_clause, - STATE(5102), 1, + STATE(5207), 1, sym_trailing_return_type, - ACTIONS(6301), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(6797), 4, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_GT2, - STATE(3921), 5, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + STATE(4194), 5, sym_type_qualifier, sym_ref_qualifier, sym_noexcept, sym_throw_specifier, aux_sym_abstract_function_declarator_repeat1, - ACTIONS(6270), 7, + ACTIONS(6342), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -324370,26 +356796,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [144933] = 9, + [167834] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(6747), 1, + ACTIONS(6990), 1, anon_sym_LBRACE, - STATE(4219), 1, + STATE(4494), 1, sym_field_declaration_list, - STATE(5403), 1, + STATE(5628), 1, sym_virtual_specifier, - STATE(5870), 1, + STATE(6201), 1, sym_base_class_clause, - ACTIONS(4160), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4189), 2, + ACTIONS(4010), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(4187), 17, + ACTIONS(4016), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4008), 17, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, @@ -324407,40 +356833,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_try, anon_sym_requires, - [144979] = 13, + [167880] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2921), 1, + ACTIONS(57), 1, anon_sym_const, - ACTIONS(6704), 1, + ACTIONS(6009), 1, anon_sym_AMP_AMP, - ACTIONS(6706), 1, + ACTIONS(6011), 1, anon_sym_AMP, - ACTIONS(6710), 1, + ACTIONS(6021), 1, anon_sym_noexcept, - ACTIONS(6712), 1, + ACTIONS(6023), 1, anon_sym_throw, - ACTIONS(6749), 1, - anon_sym_DASH_GT, - ACTIONS(6751), 1, + ACTIONS(6695), 1, anon_sym_requires, - STATE(4845), 1, - sym_requires_clause, + ACTIONS(6705), 1, + anon_sym_DASH_GT, + ACTIONS(6795), 1, + anon_sym_LBRACK, STATE(5045), 1, + sym_requires_clause, + STATE(5208), 1, sym_trailing_return_type, - ACTIONS(6242), 5, - anon_sym_COMMA, + ACTIONS(6793), 4, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK, - STATE(4075), 5, + anon_sym_LBRACK_LBRACK, + STATE(4194), 5, sym_type_qualifier, sym_ref_qualifier, sym_noexcept, sym_throw_specifier, aux_sym_abstract_function_declarator_repeat1, - ACTIONS(6270), 7, + ACTIONS(6342), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -324448,82 +356875,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [145033] = 14, + [167936] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_const, - ACTIONS(5602), 1, + ACTIONS(6009), 1, anon_sym_AMP_AMP, - ACTIONS(5604), 1, + ACTIONS(6011), 1, anon_sym_AMP, - ACTIONS(5614), 1, + ACTIONS(6021), 1, anon_sym_noexcept, - ACTIONS(5616), 1, + ACTIONS(6023), 1, anon_sym_throw, - ACTIONS(5784), 1, - anon_sym_DASH_GT, - ACTIONS(5786), 1, + ACTIONS(6695), 1, anon_sym_requires, - ACTIONS(6303), 1, + ACTIONS(6705), 1, + anon_sym_DASH_GT, + ACTIONS(6791), 1, anon_sym_LBRACK, - STATE(4799), 1, + STATE(4989), 1, sym_requires_clause, - STATE(4946), 1, + STATE(5209), 1, sym_trailing_return_type, - ACTIONS(6301), 4, + ACTIONS(6789), 4, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - STATE(3800), 5, + STATE(4329), 5, sym_type_qualifier, sym_ref_qualifier, sym_noexcept, sym_throw_specifier, aux_sym_abstract_function_declarator_repeat1, - ACTIONS(5651), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [145089] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_const, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(5716), 1, - anon_sym_LBRACK, - ACTIONS(6459), 1, - anon_sym_STAR, - ACTIONS(6461), 1, - anon_sym_AMP_AMP, - ACTIONS(6463), 1, - anon_sym_AMP, - STATE(4067), 1, - sym_parameter_list, - STATE(5105), 1, - sym__abstract_declarator, - STATE(4142), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(6110), 4, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_requires, - STATE(4735), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5651), 7, + ACTIONS(6342), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -324531,27 +356917,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [145143] = 6, + [167992] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, - anon_sym_COLON_COLON, - ACTIONS(6745), 1, - anon_sym_LT, - STATE(2425), 1, - sym_template_argument_list, - ACTIONS(4191), 3, + ACTIONS(4014), 1, + anon_sym_COLON, + ACTIONS(6990), 1, + anon_sym_LBRACE, + STATE(4497), 1, + sym_field_declaration_list, + STATE(5583), 1, + sym_virtual_specifier, + STATE(6206), 1, + sym_base_class_clause, + ACTIONS(4016), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4027), 2, anon_sym_AMP, anon_sym_const, - anon_sym_COLON, - ACTIONS(3740), 20, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(4025), 17, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_LBRACE, + anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_EQ, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -324561,30 +356952,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, + anon_sym_try, anon_sym_requires, - [145183] = 9, + [168038] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(6747), 1, + ACTIONS(6990), 1, anon_sym_LBRACE, - STATE(4354), 1, + STATE(4502), 1, sym_field_declaration_list, - STATE(5423), 1, + STATE(5530), 1, sym_virtual_specifier, - STATE(5874), 1, + STATE(6211), 1, sym_base_class_clause, - ACTIONS(4160), 2, + ACTIONS(4016), 2, anon_sym_final, anon_sym_override, - ACTIONS(4199), 2, + ACTIONS(4020), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(4197), 17, + ACTIONS(4018), 17, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, @@ -324602,40 +356991,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_try, anon_sym_requires, - [145229] = 13, + [168084] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2921), 1, + ACTIONS(2965), 1, anon_sym_const, - ACTIONS(3369), 1, - anon_sym_LPAREN2, - ACTIONS(3371), 1, - anon_sym_STAR, - ACTIONS(3373), 1, + ACTIONS(6933), 1, anon_sym_AMP_AMP, - ACTIONS(3375), 1, + ACTIONS(6935), 1, anon_sym_AMP, - ACTIONS(6268), 1, + ACTIONS(6939), 1, + anon_sym_noexcept, + ACTIONS(6941), 1, + anon_sym_throw, + ACTIONS(6996), 1, + anon_sym_DASH_GT, + ACTIONS(6998), 1, + anon_sym_requires, + STATE(5141), 1, + sym_requires_clause, + STATE(5314), 1, + sym_trailing_return_type, + ACTIONS(6797), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_LBRACK, - STATE(4080), 1, - sym_parameter_list, - STATE(5117), 1, - sym__abstract_declarator, - STATE(4071), 2, + STATE(4200), 5, sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(4064), 4, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6783), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [168138] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2965), 1, + anon_sym_const, + ACTIONS(6933), 1, + anon_sym_AMP_AMP, + ACTIONS(6935), 1, + anon_sym_AMP, + ACTIONS(6939), 1, + anon_sym_noexcept, + ACTIONS(6941), 1, + anon_sym_throw, + ACTIONS(6996), 1, + anon_sym_DASH_GT, + ACTIONS(6998), 1, + anon_sym_requires, + STATE(5111), 1, + sym_requires_clause, + STATE(5337), 1, + sym_trailing_return_type, + ACTIONS(6793), 5, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_LBRACK, + STATE(4200), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6783), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [168192] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2965), 1, + anon_sym_const, + ACTIONS(6933), 1, + anon_sym_AMP_AMP, + ACTIONS(6935), 1, + anon_sym_AMP, + ACTIONS(6939), 1, + anon_sym_noexcept, + ACTIONS(6941), 1, + anon_sym_throw, + ACTIONS(6996), 1, + anon_sym_DASH_GT, + ACTIONS(6998), 1, anon_sym_requires, - STATE(4832), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6270), 7, + STATE(5106), 1, + sym_requires_clause, + STATE(5289), 1, + sym_trailing_return_type, + ACTIONS(6789), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK, + STATE(4335), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6783), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -324643,26 +357114,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [145283] = 9, + [168246] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(6747), 1, + ACTIONS(6990), 1, anon_sym_LBRACE, - STATE(4333), 1, + STATE(4522), 1, sym_field_declaration_list, - STATE(5348), 1, + STATE(5722), 1, sym_virtual_specifier, - STATE(5847), 1, + STATE(6225), 1, sym_base_class_clause, - ACTIONS(4160), 2, + ACTIONS(4016), 2, anon_sym_final, anon_sym_override, - ACTIONS(4175), 2, + ACTIONS(4043), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(4173), 17, + ACTIONS(4041), 17, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, @@ -324680,40 +357151,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_try, anon_sym_requires, - [145329] = 13, + [168292] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2921), 1, + ACTIONS(57), 1, anon_sym_const, - ACTIONS(3369), 1, + ACTIONS(6547), 1, anon_sym_LPAREN2, - ACTIONS(3371), 1, + ACTIONS(6555), 1, + anon_sym_LBRACK, + ACTIONS(6874), 1, anon_sym_STAR, - ACTIONS(3373), 1, + ACTIONS(6876), 1, anon_sym_AMP_AMP, - ACTIONS(3375), 1, + ACTIONS(6878), 1, anon_sym_AMP, - ACTIONS(6268), 1, - anon_sym_LBRACK, - STATE(4080), 1, + STATE(4318), 1, sym_parameter_list, - STATE(5173), 1, + STATE(5349), 1, sym__abstract_declarator, - STATE(4141), 2, + STATE(4389), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(6246), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, + ACTIONS(5412), 4, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, anon_sym_requires, - STATE(4832), 5, + STATE(5059), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(6270), 7, + ACTIONS(6342), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -324721,41 +357192,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [145383] = 14, + [168346] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(4014), 1, + anon_sym_COLON, + ACTIONS(6990), 1, + anon_sym_LBRACE, + STATE(4528), 1, + sym_field_declaration_list, + STATE(5678), 1, + sym_virtual_specifier, + STATE(6229), 1, + sym_base_class_clause, + ACTIONS(4016), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4047), 2, + anon_sym_AMP, anon_sym_const, - ACTIONS(5602), 1, + ACTIONS(4045), 17, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(5604), 1, - anon_sym_AMP, - ACTIONS(5614), 1, - anon_sym_noexcept, - ACTIONS(5616), 1, - anon_sym_throw, - ACTIONS(5786), 1, - anon_sym_requires, - ACTIONS(5790), 1, - anon_sym_DASH_GT, - ACTIONS(6303), 1, + anon_sym_SEMI, anon_sym_LBRACK, - STATE(4799), 1, - sym_requires_clause, - STATE(4946), 1, - sym_trailing_return_type, - ACTIONS(6301), 4, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_try, - STATE(3800), 5, - sym_type_qualifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - ACTIONS(5651), 7, + anon_sym_EQ, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -324763,26 +357225,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [145439] = 9, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [168392] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(6747), 1, + ACTIONS(6990), 1, anon_sym_LBRACE, - STATE(4320), 1, + STATE(4533), 1, sym_field_declaration_list, - STATE(5381), 1, + STATE(5620), 1, sym_virtual_specifier, - STATE(5842), 1, + STATE(6233), 1, sym_base_class_clause, - ACTIONS(4154), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4160), 2, + ACTIONS(4016), 2, anon_sym_final, anon_sym_override, - ACTIONS(4152), 17, + ACTIONS(4051), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4049), 17, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, @@ -324800,82 +357266,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_try, anon_sym_requires, - [145485] = 14, + [168438] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(2965), 1, anon_sym_const, - ACTIONS(5602), 1, - anon_sym_AMP_AMP, - ACTIONS(5604), 1, - anon_sym_AMP, - ACTIONS(5614), 1, - anon_sym_noexcept, - ACTIONS(5616), 1, - anon_sym_throw, - ACTIONS(5786), 1, - anon_sym_requires, - ACTIONS(5790), 1, - anon_sym_DASH_GT, - ACTIONS(6204), 1, - anon_sym_LBRACK, - STATE(4782), 1, - sym_requires_clause, - STATE(4969), 1, - sym_trailing_return_type, - ACTIONS(6202), 4, + ACTIONS(3757), 1, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_try, - STATE(3800), 5, - sym_type_qualifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - ACTIONS(5651), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [145541] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2921), 1, - anon_sym_const, - ACTIONS(6704), 1, + ACTIONS(6781), 1, + anon_sym_LBRACK, + ACTIONS(6805), 1, + anon_sym_STAR, + ACTIONS(6807), 1, anon_sym_AMP_AMP, - ACTIONS(6706), 1, + ACTIONS(6809), 1, anon_sym_AMP, - ACTIONS(6710), 1, - anon_sym_noexcept, - ACTIONS(6712), 1, - anon_sym_throw, - ACTIONS(6753), 1, - anon_sym_DASH_GT, - ACTIONS(6755), 1, - anon_sym_requires, - STATE(4843), 1, - sym_requires_clause, - STATE(5128), 1, - sym_trailing_return_type, - ACTIONS(6194), 5, + STATE(4328), 1, + sym_parameter_list, + STATE(5422), 1, + sym__abstract_declarator, + STATE(4321), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(4757), 4, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_LBRACK, anon_sym_GT2, - STATE(4078), 5, - sym_type_qualifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - ACTIONS(6270), 7, + anon_sym_requires, + STATE(5127), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6783), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -324883,41 +357307,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [145595] = 14, + [168492] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_const, - ACTIONS(5602), 1, - anon_sym_AMP_AMP, - ACTIONS(5604), 1, - anon_sym_AMP, - ACTIONS(5614), 1, - anon_sym_noexcept, - ACTIONS(5616), 1, - anon_sym_throw, - ACTIONS(5786), 1, - anon_sym_requires, - ACTIONS(5790), 1, - anon_sym_DASH_GT, - ACTIONS(6196), 1, - anon_sym_LBRACK, - STATE(4779), 1, - sym_requires_clause, - STATE(4963), 1, - sym_trailing_return_type, - ACTIONS(6194), 4, + ACTIONS(6547), 1, anon_sym_LPAREN2, + ACTIONS(6555), 1, + anon_sym_LBRACK, + ACTIONS(6874), 1, + anon_sym_STAR, + ACTIONS(6876), 1, + anon_sym_AMP_AMP, + ACTIONS(6878), 1, + anon_sym_AMP, + STATE(4318), 1, + sym_parameter_list, + STATE(5347), 1, + sym__abstract_declarator, + STATE(4389), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(6756), 4, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_try, - STATE(4088), 5, - sym_type_qualifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - ACTIONS(5651), 7, + anon_sym_requires, + STATE(5059), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6342), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -324925,32 +357348,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [145651] = 9, + [168546] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON, - ACTIONS(6747), 1, - anon_sym_LBRACE, - STATE(4277), 1, - sym_field_declaration_list, - STATE(5266), 1, - sym_virtual_specifier, - STATE(5822), 1, - sym_base_class_clause, - ACTIONS(4160), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4164), 2, + ACTIONS(3424), 1, + anon_sym_COLON_COLON, + ACTIONS(6988), 1, + anon_sym_LT, + STATE(2897), 1, + sym_template_argument_list, + ACTIONS(3430), 3, anon_sym_AMP, anon_sym_const, - ACTIONS(4162), 17, + anon_sym_COLON, + ACTIONS(3435), 20, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_EQ, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -324960,42 +357378,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, sym_auto, anon_sym_decltype, - anon_sym_try, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [145697] = 13, + [168586] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2921), 1, + ACTIONS(2965), 1, anon_sym_const, - ACTIONS(6704), 1, + ACTIONS(6933), 1, anon_sym_AMP_AMP, - ACTIONS(6706), 1, + ACTIONS(6935), 1, anon_sym_AMP, - ACTIONS(6710), 1, + ACTIONS(6939), 1, anon_sym_noexcept, - ACTIONS(6712), 1, + ACTIONS(6941), 1, anon_sym_throw, - ACTIONS(6753), 1, + ACTIONS(6996), 1, anon_sym_DASH_GT, - ACTIONS(6755), 1, + ACTIONS(6998), 1, anon_sym_requires, - STATE(4836), 1, + STATE(5102), 1, sym_requires_clause, - STATE(5103), 1, + STATE(5298), 1, sym_trailing_return_type, - ACTIONS(6202), 5, - anon_sym_DOT_DOT_DOT, + ACTIONS(6801), 5, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_GT2, - STATE(3921), 5, + STATE(4336), 5, sym_type_qualifier, sym_ref_qualifier, sym_noexcept, sym_throw_specifier, aux_sym_abstract_function_declarator_repeat1, - ACTIONS(6270), 7, + ACTIONS(6783), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -325003,32 +357423,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [145751] = 9, + [168640] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON, - ACTIONS(6747), 1, - anon_sym_LBRACE, - STATE(4263), 1, - sym_field_declaration_list, - STATE(5270), 1, - sym_virtual_specifier, - STATE(5818), 1, - sym_base_class_clause, - ACTIONS(4160), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4168), 2, - anon_sym_AMP, + ACTIONS(57), 1, anon_sym_const, - ACTIONS(4166), 17, + ACTIONS(6547), 1, anon_sym_LPAREN2, + ACTIONS(6555), 1, + anon_sym_LBRACK, + ACTIONS(6811), 1, anon_sym_STAR, + ACTIONS(6813), 1, anon_sym_AMP_AMP, + ACTIONS(6815), 1, + anon_sym_AMP, + STATE(4349), 1, + sym_parameter_list, + STATE(5419), 1, + sym__abstract_declarator, + STATE(4389), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(5412), 4, + anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_EQ, + anon_sym_LBRACK_LBRACK, + anon_sym_requires, + STATE(5059), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6342), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -325036,44 +357464,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_try, + [168694] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_const, + ACTIONS(6547), 1, + anon_sym_LPAREN2, + ACTIONS(6555), 1, + anon_sym_LBRACK, + ACTIONS(6811), 1, + anon_sym_STAR, + ACTIONS(6813), 1, + anon_sym_AMP_AMP, + ACTIONS(6815), 1, + anon_sym_AMP, + STATE(4349), 1, + sym_parameter_list, + STATE(5423), 1, + sym__abstract_declarator, + STATE(4389), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(6773), 4, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_requires, - [145797] = 13, + STATE(5059), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6342), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [168748] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2921), 1, + ACTIONS(2965), 1, anon_sym_const, - ACTIONS(6704), 1, + ACTIONS(6933), 1, anon_sym_AMP_AMP, - ACTIONS(6706), 1, + ACTIONS(6935), 1, anon_sym_AMP, - ACTIONS(6710), 1, + ACTIONS(6939), 1, anon_sym_noexcept, - ACTIONS(6712), 1, + ACTIONS(6941), 1, anon_sym_throw, - ACTIONS(6749), 1, + ACTIONS(6992), 1, anon_sym_DASH_GT, - ACTIONS(6751), 1, + ACTIONS(6994), 1, anon_sym_requires, - STATE(4829), 1, + STATE(5106), 1, sym_requires_clause, - STATE(5017), 1, + STATE(5445), 1, sym_trailing_return_type, - ACTIONS(6301), 5, + ACTIONS(6789), 5, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, anon_sym_LBRACK, - STATE(3921), 5, + anon_sym_GT2, + STATE(4354), 5, sym_type_qualifier, sym_ref_qualifier, sym_noexcept, sym_throw_specifier, aux_sym_abstract_function_declarator_repeat1, - ACTIONS(6270), 7, + ACTIONS(6783), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -325081,41 +357546,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [145851] = 14, + [168802] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_const, - ACTIONS(5602), 1, + ACTIONS(6009), 1, anon_sym_AMP_AMP, - ACTIONS(5604), 1, + ACTIONS(6011), 1, anon_sym_AMP, - ACTIONS(5614), 1, + ACTIONS(6021), 1, anon_sym_noexcept, - ACTIONS(5616), 1, + ACTIONS(6023), 1, anon_sym_throw, - ACTIONS(5786), 1, + ACTIONS(6695), 1, anon_sym_requires, - ACTIONS(5790), 1, + ACTIONS(6705), 1, anon_sym_DASH_GT, - ACTIONS(6244), 1, + ACTIONS(6803), 1, anon_sym_LBRACK, - STATE(4761), 1, + STATE(5065), 1, sym_requires_clause, - STATE(4942), 1, + STATE(5212), 1, sym_trailing_return_type, - ACTIONS(6242), 4, + ACTIONS(6801), 4, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_try, - STATE(4090), 5, + STATE(4331), 5, sym_type_qualifier, sym_ref_qualifier, sym_noexcept, sym_throw_specifier, aux_sym_abstract_function_declarator_repeat1, - ACTIONS(5651), 7, + ACTIONS(6342), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -325123,40 +357588,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [145907] = 13, + [168858] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(7000), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(6901), 3, + anon_sym_AMP, + anon_sym_LBRACK, anon_sym_const, - ACTIONS(5708), 1, + ACTIONS(6899), 21, anon_sym_LPAREN2, - ACTIONS(5716), 1, - anon_sym_LBRACK, - ACTIONS(6505), 1, - anon_sym_STAR, - ACTIONS(6507), 1, anon_sym_AMP_AMP, - ACTIONS(6509), 1, - anon_sym_AMP, - STATE(4097), 1, - sym_parameter_list, - STATE(5147), 1, - sym__abstract_declarator, - STATE(4142), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(6246), 4, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_try, - anon_sym_requires, - STATE(4735), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5651), 7, + anon_sym_EQ, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -325164,40 +357612,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [145961] = 13, + anon_sym_COLON, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [168894] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_const, - ACTIONS(5708), 1, + ACTIONS(6547), 1, anon_sym_LPAREN2, - ACTIONS(5716), 1, + ACTIONS(6555), 1, anon_sym_LBRACK, - ACTIONS(6459), 1, + ACTIONS(6811), 1, anon_sym_STAR, - ACTIONS(6461), 1, + ACTIONS(6813), 1, anon_sym_AMP_AMP, - ACTIONS(6463), 1, + ACTIONS(6815), 1, anon_sym_AMP, - STATE(4067), 1, + STATE(4349), 1, sym_parameter_list, - STATE(5110), 1, + STATE(5429), 1, sym__abstract_declarator, - STATE(4142), 2, + STATE(4346), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(6246), 4, + ACTIONS(4757), 4, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_requires, - STATE(4735), 5, + STATE(5059), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(5651), 7, + ACTIONS(6342), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -325205,40 +357661,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [146015] = 13, + [168948] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2921), 1, + ACTIONS(2965), 1, anon_sym_const, - ACTIONS(3369), 1, + ACTIONS(3757), 1, anon_sym_LPAREN2, - ACTIONS(6268), 1, - anon_sym_LBRACK, - ACTIONS(6483), 1, + ACTIONS(3759), 1, anon_sym_STAR, - ACTIONS(6485), 1, + ACTIONS(3761), 1, anon_sym_AMP_AMP, - ACTIONS(6487), 1, + ACTIONS(3763), 1, anon_sym_AMP, - STATE(4077), 1, + ACTIONS(6781), 1, + anon_sym_LBRACK, + STATE(4345), 1, sym_parameter_list, - STATE(5089), 1, + STATE(5379), 1, sym__abstract_declarator, - STATE(4141), 2, + STATE(4388), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(4695), 4, - anon_sym_DOT_DOT_DOT, + ACTIONS(5412), 4, anon_sym_COMMA, - anon_sym_GT2, + anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_requires, - STATE(4832), 5, + STATE(5127), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(6270), 7, + ACTIONS(6783), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -325246,40 +357702,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [146069] = 13, + [169002] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2921), 1, + ACTIONS(57), 1, anon_sym_const, - ACTIONS(3369), 1, + ACTIONS(6547), 1, anon_sym_LPAREN2, - ACTIONS(6268), 1, + ACTIONS(6555), 1, anon_sym_LBRACK, - ACTIONS(6483), 1, + ACTIONS(6811), 1, anon_sym_STAR, - ACTIONS(6485), 1, + ACTIONS(6813), 1, anon_sym_AMP_AMP, - ACTIONS(6487), 1, + ACTIONS(6815), 1, anon_sym_AMP, - STATE(4077), 1, + STATE(4349), 1, sym_parameter_list, - STATE(5134), 1, + STATE(5418), 1, sym__abstract_declarator, - STATE(4141), 2, + STATE(4389), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(6110), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, + ACTIONS(6756), 4, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_requires, - STATE(4832), 5, + STATE(5059), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(6270), 7, + ACTIONS(6342), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -325287,40 +357743,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [146123] = 13, + [169056] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(2965), 1, anon_sym_const, - ACTIONS(5708), 1, + ACTIONS(6933), 1, + anon_sym_AMP_AMP, + ACTIONS(6935), 1, + anon_sym_AMP, + ACTIONS(6939), 1, + anon_sym_noexcept, + ACTIONS(6941), 1, + anon_sym_throw, + ACTIONS(6992), 1, + anon_sym_DASH_GT, + ACTIONS(6994), 1, + anon_sym_requires, + STATE(5141), 1, + sym_requires_clause, + STATE(5447), 1, + sym_trailing_return_type, + ACTIONS(6797), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(5716), 1, anon_sym_LBRACK, - ACTIONS(6505), 1, - anon_sym_STAR, - ACTIONS(6507), 1, + anon_sym_GT2, + STATE(4200), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6783), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [169110] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2965), 1, + anon_sym_const, + ACTIONS(6933), 1, anon_sym_AMP_AMP, - ACTIONS(6509), 1, + ACTIONS(6935), 1, anon_sym_AMP, - STATE(4097), 1, - sym_parameter_list, - STATE(5129), 1, - sym__abstract_declarator, - STATE(4142), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(4695), 4, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_try, + ACTIONS(6939), 1, + anon_sym_noexcept, + ACTIONS(6941), 1, + anon_sym_throw, + ACTIONS(6992), 1, + anon_sym_DASH_GT, + ACTIONS(6994), 1, anon_sym_requires, - STATE(4735), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5651), 7, + STATE(5111), 1, + sym_requires_clause, + STATE(5446), 1, + sym_trailing_return_type, + ACTIONS(6793), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_GT2, + STATE(4200), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6783), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -325328,40 +357825,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [146177] = 13, + [169164] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_const, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(5716), 1, - anon_sym_LBRACK, - ACTIONS(6505), 1, - anon_sym_STAR, - ACTIONS(6507), 1, + ACTIONS(6009), 1, anon_sym_AMP_AMP, - ACTIONS(6509), 1, + ACTIONS(6011), 1, anon_sym_AMP, - STATE(4097), 1, - sym_parameter_list, - STATE(5114), 1, - sym__abstract_declarator, - STATE(4142), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(6110), 4, + ACTIONS(6021), 1, + anon_sym_noexcept, + ACTIONS(6023), 1, + anon_sym_throw, + ACTIONS(6693), 1, + anon_sym_DASH_GT, + ACTIONS(6695), 1, + anon_sym_requires, + ACTIONS(6795), 1, + anon_sym_LBRACK, + STATE(5045), 1, + sym_requires_clause, + STATE(5208), 1, + sym_trailing_return_type, + ACTIONS(6793), 4, + anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_try, - anon_sym_requires, - STATE(4735), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5651), 7, + STATE(4194), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6342), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -325369,40 +357867,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [146231] = 13, + [169220] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2921), 1, + ACTIONS(5753), 1, anon_sym_const, - ACTIONS(3369), 1, + ACTIONS(6547), 1, anon_sym_LPAREN2, - ACTIONS(3371), 1, + ACTIONS(6555), 1, + anon_sym_LBRACK, + ACTIONS(6893), 1, anon_sym_STAR, - ACTIONS(3373), 1, + ACTIONS(6895), 1, anon_sym_AMP_AMP, - ACTIONS(3375), 1, + ACTIONS(6897), 1, anon_sym_AMP, - ACTIONS(6268), 1, - anon_sym_LBRACK, - STATE(4080), 1, + STATE(4372), 1, sym_parameter_list, - STATE(5160), 1, + STATE(5483), 1, sym__abstract_declarator, - STATE(4141), 2, + STATE(4413), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(6110), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, + ACTIONS(5412), 3, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, anon_sym_requires, - STATE(4832), 5, + STATE(5059), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(6270), 7, + ACTIONS(6017), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -325410,28 +357907,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [146285] = 6, + [169273] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(6757), 1, - anon_sym_COLON, - STATE(3149), 1, - sym_enumerator_list, - STATE(4162), 1, - sym__enum_base_clause, - ACTIONS(4350), 3, - anon_sym_AMP, - anon_sym_LBRACK, + ACTIONS(5753), 1, anon_sym_const, - ACTIONS(4348), 19, - anon_sym_COMMA, + ACTIONS(6547), 1, anon_sym_LPAREN2, + ACTIONS(6555), 1, + anon_sym_LBRACK, + ACTIONS(6893), 1, anon_sym_STAR, + ACTIONS(6895), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(6897), 1, + anon_sym_AMP, + STATE(4372), 1, + sym_parameter_list, + STATE(5482), 1, + sym__abstract_declarator, + STATE(4413), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(6756), 3, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + anon_sym_COLON, + anon_sym_requires, + STATE(5059), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6017), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -325439,18 +357947,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [146324] = 3, + [169326] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3811), 3, + ACTIONS(3493), 3, anon_sym_AMP, anon_sym_const, anon_sym_COLON, - ACTIONS(3816), 22, + ACTIONS(3495), 22, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PIPE_PIPE, @@ -325473,14 +357977,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [146357] = 3, + [169359] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3797), 3, + ACTIONS(3467), 3, anon_sym_AMP, anon_sym_const, anon_sym_COLON, - ACTIONS(3799), 22, + ACTIONS(3469), 22, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PIPE_PIPE, @@ -325503,14 +358007,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [146390] = 3, + [169392] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3782), 3, + ACTIONS(3501), 3, anon_sym_AMP, anon_sym_const, anon_sym_COLON, - ACTIONS(3784), 22, + ACTIONS(3503), 22, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PIPE_PIPE, @@ -325533,39 +358037,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [146423] = 13, + [169425] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(5518), 1, + ACTIONS(5753), 1, anon_sym_const, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(5716), 1, - anon_sym_LBRACK, - ACTIONS(6647), 1, - anon_sym_STAR, - ACTIONS(6649), 1, + ACTIONS(6009), 1, anon_sym_AMP_AMP, - ACTIONS(6651), 1, + ACTIONS(6011), 1, anon_sym_AMP, - STATE(4121), 1, - sym_parameter_list, - STATE(5181), 1, - sym__abstract_declarator, - STATE(4165), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(4695), 3, + ACTIONS(6021), 1, + anon_sym_noexcept, + ACTIONS(6023), 1, + anon_sym_throw, + ACTIONS(6750), 1, + anon_sym_DASH_GT, + ACTIONS(6752), 1, + anon_sym_requires, + ACTIONS(6791), 1, + anon_sym_LBRACK, + STATE(4989), 1, + sym_requires_clause, + STATE(5457), 1, + sym_trailing_return_type, + ACTIONS(6789), 3, + anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - anon_sym_requires, - STATE(4735), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5610), 7, + STATE(4366), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6017), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -325573,16 +358078,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [146476] = 5, + [169480] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4600), 1, - anon_sym_COLON_COLON, - STATE(4110), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(6759), 8, + ACTIONS(5753), 1, anon_sym_const, + ACTIONS(6009), 1, + anon_sym_AMP_AMP, + ACTIONS(6011), 1, + anon_sym_AMP, + ACTIONS(6021), 1, + anon_sym_noexcept, + ACTIONS(6023), 1, + anon_sym_throw, + ACTIONS(6750), 1, + anon_sym_DASH_GT, + ACTIONS(6752), 1, + anon_sym_requires, + ACTIONS(6795), 1, + anon_sym_LBRACK, + STATE(5045), 1, + sym_requires_clause, + STATE(5453), 1, + sym_trailing_return_type, + ACTIONS(6793), 3, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + STATE(4250), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6017), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -325590,38 +358119,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - ACTIONS(4598), 14, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - [146513] = 3, + [169535] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3805), 3, - anon_sym_AMP, + ACTIONS(5753), 1, anon_sym_const, - anon_sym_COLON, - ACTIONS(3807), 22, + ACTIONS(6547), 1, anon_sym_LPAREN2, + ACTIONS(6555), 1, + anon_sym_LBRACK, + ACTIONS(6893), 1, anon_sym_STAR, - anon_sym_PIPE_PIPE, + ACTIONS(6895), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, + ACTIONS(6897), 1, + anon_sym_AMP, + STATE(4372), 1, + sym_parameter_list, + STATE(5491), 1, + sym__abstract_declarator, + STATE(4357), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(4757), 3, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + anon_sym_requires, + STATE(5059), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6017), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -325629,20 +358159,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [146546] = 3, + [169588] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3774), 3, + ACTIONS(3505), 3, anon_sym_AMP, anon_sym_const, anon_sym_COLON, - ACTIONS(3776), 22, + ACTIONS(3507), 22, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PIPE_PIPE, @@ -325665,122 +358189,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [146579] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5518), 1, - anon_sym_const, - ACTIONS(5602), 1, - anon_sym_AMP_AMP, - ACTIONS(5604), 1, - anon_sym_AMP, - ACTIONS(5614), 1, - anon_sym_noexcept, - ACTIONS(5616), 1, - anon_sym_throw, - ACTIONS(6048), 1, - anon_sym_DASH_GT, - ACTIONS(6050), 1, - anon_sym_requires, - ACTIONS(6303), 1, - anon_sym_LBRACK, - STATE(4799), 1, - sym_requires_clause, - STATE(5213), 1, - sym_trailing_return_type, - ACTIONS(6301), 3, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - STATE(3984), 5, - sym_type_qualifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - ACTIONS(5610), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [146634] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5518), 1, - anon_sym_const, - ACTIONS(5602), 1, - anon_sym_AMP_AMP, - ACTIONS(5604), 1, - anon_sym_AMP, - ACTIONS(5614), 1, - anon_sym_noexcept, - ACTIONS(5616), 1, - anon_sym_throw, - ACTIONS(6048), 1, - anon_sym_DASH_GT, - ACTIONS(6050), 1, - anon_sym_requires, - ACTIONS(6204), 1, - anon_sym_LBRACK, - STATE(4782), 1, - sym_requires_clause, - STATE(5214), 1, - sym_trailing_return_type, - ACTIONS(6202), 3, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - STATE(3984), 5, - sym_type_qualifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - ACTIONS(5610), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [146689] = 14, + [169621] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(5518), 1, + ACTIONS(5753), 1, anon_sym_const, - ACTIONS(5602), 1, + ACTIONS(6009), 1, anon_sym_AMP_AMP, - ACTIONS(5604), 1, + ACTIONS(6011), 1, anon_sym_AMP, - ACTIONS(5614), 1, + ACTIONS(6021), 1, anon_sym_noexcept, - ACTIONS(5616), 1, + ACTIONS(6023), 1, anon_sym_throw, - ACTIONS(6048), 1, + ACTIONS(6750), 1, anon_sym_DASH_GT, - ACTIONS(6050), 1, + ACTIONS(6752), 1, anon_sym_requires, - ACTIONS(6196), 1, + ACTIONS(6799), 1, anon_sym_LBRACK, - STATE(4779), 1, + STATE(5023), 1, sym_requires_clause, - STATE(5217), 1, + STATE(5452), 1, sym_trailing_return_type, - ACTIONS(6194), 3, + ACTIONS(6797), 3, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - STATE(4113), 5, + STATE(4250), 5, sym_type_qualifier, sym_ref_qualifier, sym_noexcept, sym_throw_specifier, aux_sym_abstract_function_declarator_repeat1, - ACTIONS(5610), 7, + ACTIONS(6017), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -325788,14 +358230,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [146744] = 3, + [169676] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3778), 3, + ACTIONS(3487), 3, anon_sym_AMP, anon_sym_const, anon_sym_COLON, - ACTIONS(3780), 22, + ACTIONS(3489), 22, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PIPE_PIPE, @@ -325818,21 +358260,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [146777] = 4, + [169709] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4295), 1, - anon_sym_COLON_COLON, - ACTIONS(4297), 3, + ACTIONS(3497), 3, anon_sym_AMP, anon_sym_const, anon_sym_COLON, - ACTIONS(4299), 21, + ACTIONS(3499), 22, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, @@ -325849,14 +358290,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [146812] = 3, + [169742] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3801), 3, + ACTIONS(3509), 3, anon_sym_AMP, anon_sym_const, anon_sym_COLON, - ACTIONS(3803), 22, + ACTIONS(3511), 22, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PIPE_PIPE, @@ -325879,39 +358320,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [146845] = 13, + [169775] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5518), 1, - anon_sym_const, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(5716), 1, - anon_sym_LBRACK, - ACTIONS(6647), 1, - anon_sym_STAR, - ACTIONS(6649), 1, - anon_sym_AMP_AMP, - ACTIONS(6651), 1, - anon_sym_AMP, - STATE(4121), 1, - sym_parameter_list, - STATE(5188), 1, - sym__abstract_declarator, - STATE(4109), 2, + ACTIONS(5336), 1, + anon_sym_COLON_COLON, + STATE(4370), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(4064), 3, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - anon_sym_requires, - STATE(4735), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5610), 7, + ACTIONS(7003), 8, + anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -325919,39 +358337,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [146898] = 13, + ACTIONS(5334), 14, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_typename, + anon_sym_template, + [169812] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5518), 1, + ACTIONS(7006), 1, + anon_sym_COLON, + STATE(3499), 1, + sym_enumerator_list, + STATE(4417), 1, + sym__enum_base_clause, + ACTIONS(4153), 3, + anon_sym_AMP, + anon_sym_LBRACK, anon_sym_const, - ACTIONS(5708), 1, + ACTIONS(4151), 19, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(5716), 1, - anon_sym_LBRACK, - ACTIONS(6647), 1, anon_sym_STAR, - ACTIONS(6649), 1, anon_sym_AMP_AMP, - ACTIONS(6651), 1, - anon_sym_AMP, - STATE(4121), 1, - sym_parameter_list, - STATE(5189), 1, - sym__abstract_declarator, - STATE(4165), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(6110), 3, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - anon_sym_requires, - STATE(4735), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5610), 7, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -325959,40 +358381,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [146951] = 14, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [169851] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(5518), 1, + ACTIONS(5753), 1, anon_sym_const, - ACTIONS(5602), 1, + ACTIONS(6009), 1, anon_sym_AMP_AMP, - ACTIONS(5604), 1, + ACTIONS(6011), 1, anon_sym_AMP, - ACTIONS(5614), 1, + ACTIONS(6021), 1, anon_sym_noexcept, - ACTIONS(5616), 1, + ACTIONS(6023), 1, anon_sym_throw, - ACTIONS(6048), 1, + ACTIONS(6750), 1, anon_sym_DASH_GT, - ACTIONS(6050), 1, + ACTIONS(6752), 1, anon_sym_requires, - ACTIONS(6244), 1, + ACTIONS(6803), 1, anon_sym_LBRACK, - STATE(4761), 1, + STATE(5065), 1, sym_requires_clause, - STATE(5216), 1, + STATE(5469), 1, sym_trailing_return_type, - ACTIONS(6242), 3, + ACTIONS(6801), 3, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - STATE(4114), 5, + STATE(4363), 5, sym_type_qualifier, sym_ref_qualifier, sym_noexcept, sym_throw_specifier, aux_sym_abstract_function_declarator_repeat1, - ACTIONS(5610), 7, + ACTIONS(6017), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -326000,27 +358426,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [147006] = 6, + [169906] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(6757), 1, + ACTIONS(5753), 1, + anon_sym_const, + ACTIONS(6547), 1, + anon_sym_LPAREN2, + ACTIONS(6555), 1, + anon_sym_LBRACK, + ACTIONS(6893), 1, + anon_sym_STAR, + ACTIONS(6895), 1, + anon_sym_AMP_AMP, + ACTIONS(6897), 1, + anon_sym_AMP, + STATE(4372), 1, + sym_parameter_list, + STATE(5487), 1, + sym__abstract_declarator, + STATE(4413), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(6773), 3, + anon_sym_LBRACK_LBRACK, anon_sym_COLON, - STATE(3189), 1, - sym_enumerator_list, - STATE(4163), 1, + anon_sym_requires, + STATE(5059), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6017), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [169959] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5731), 1, + anon_sym_LBRACE, + ACTIONS(7006), 1, + anon_sym_COLON, + STATE(3498), 1, sym__enum_base_clause, - ACTIONS(4340), 3, + STATE(3499), 1, + sym_enumerator_list, + ACTIONS(4153), 3, anon_sym_AMP, anon_sym_LBRACK, anon_sym_const, - ACTIONS(4338), 19, + ACTIONS(4151), 18, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, anon_sym_EQ, anon_sym_volatile, anon_sym_restrict, @@ -326031,23 +358498,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, sym_auto, anon_sym_decltype, - anon_sym_try, + anon_sym_GT2, anon_sym_requires, - [147045] = 4, + [170000] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4295), 1, - anon_sym_COLON_COLON, - ACTIONS(4293), 3, + ACTIONS(3473), 3, anon_sym_AMP, anon_sym_const, anon_sym_COLON, - ACTIONS(4291), 21, + ACTIONS(3478), 22, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, @@ -326064,28 +358530,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [147080] = 7, + [170033] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5506), 1, - anon_sym_LBRACE, - ACTIONS(6757), 1, - anon_sym_COLON, - STATE(3188), 1, - sym__enum_base_clause, - STATE(3189), 1, - sym_enumerator_list, - ACTIONS(4340), 3, + ACTIONS(4135), 3, anon_sym_AMP, - anon_sym_LBRACK, anon_sym_const, - ACTIONS(4338), 18, - anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4133), 22, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_volatile, anon_sym_restrict, @@ -326096,18 +358556,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, sym_auto, anon_sym_decltype, - anon_sym_GT2, + anon_sym_final, + anon_sym_override, + anon_sym_try, anon_sym_requires, - [147121] = 4, + [170066] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4295), 1, + ACTIONS(4125), 1, anon_sym_COLON_COLON, - ACTIONS(4293), 3, + ACTIONS(4139), 3, anon_sym_AMP, anon_sym_const, anon_sym_COLON, - ACTIONS(4291), 21, + ACTIONS(4137), 21, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PIPE_PIPE, @@ -326129,39 +358591,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [147156] = 13, + [170101] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5518), 1, + ACTIONS(4125), 1, + anon_sym_COLON_COLON, + ACTIONS(4139), 3, + anon_sym_AMP, anon_sym_const, - ACTIONS(5708), 1, + anon_sym_COLON, + ACTIONS(4137), 21, anon_sym_LPAREN2, - ACTIONS(5716), 1, - anon_sym_LBRACK, - ACTIONS(6647), 1, anon_sym_STAR, - ACTIONS(6649), 1, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(6651), 1, - anon_sym_AMP, - STATE(4121), 1, - sym_parameter_list, - STATE(5186), 1, - sym__abstract_declarator, - STATE(4165), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(6246), 3, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - anon_sym_requires, - STATE(4735), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5610), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -326169,28 +358616,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [147209] = 7, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [170136] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5506), 1, - anon_sym_LBRACE, - ACTIONS(6757), 1, + ACTIONS(7006), 1, anon_sym_COLON, - STATE(3148), 1, - sym__enum_base_clause, - STATE(3149), 1, + STATE(3448), 1, sym_enumerator_list, - ACTIONS(4350), 3, + STATE(4406), 1, + sym__enum_base_clause, + ACTIONS(4235), 3, anon_sym_AMP, anon_sym_LBRACK, anon_sym_const, - ACTIONS(4348), 18, + ACTIONS(4233), 19, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_EQ, anon_sym_volatile, anon_sym_restrict, @@ -326201,22 +358653,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, sym_auto, anon_sym_decltype, - anon_sym_GT2, + anon_sym_try, anon_sym_requires, - [147250] = 3, + [170175] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4264), 3, + ACTIONS(4125), 1, + anon_sym_COLON_COLON, + ACTIONS(4123), 3, anon_sym_AMP, anon_sym_const, anon_sym_COLON, - ACTIONS(4266), 22, + ACTIONS(4121), 21, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, @@ -326233,22 +358686,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [147283] = 3, + [170210] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3793), 3, + ACTIONS(5731), 1, + anon_sym_LBRACE, + ACTIONS(7006), 1, + anon_sym_COLON, + STATE(3448), 1, + sym_enumerator_list, + STATE(3449), 1, + sym__enum_base_clause, + ACTIONS(4235), 3, anon_sym_AMP, + anon_sym_LBRACK, anon_sym_const, - anon_sym_COLON, - ACTIONS(3795), 22, + ACTIONS(4233), 18, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_EQ, anon_sym_volatile, anon_sym_restrict, @@ -326259,17 +358718,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, + anon_sym_GT2, anon_sym_requires, - [147316] = 3, + [170251] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6665), 2, + ACTIONS(6917), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(6663), 22, + ACTIONS(6915), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -326292,38 +358749,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noexcept, anon_sym_throw, anon_sym_requires, - [147348] = 13, + [170283] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2921), 1, + ACTIONS(6891), 2, + anon_sym_AMP, anon_sym_const, - ACTIONS(3369), 1, + ACTIONS(6889), 22, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(6268), 1, - anon_sym_LBRACK, - ACTIONS(6724), 1, - anon_sym_STAR, - ACTIONS(6726), 1, anon_sym_AMP_AMP, - ACTIONS(6728), 1, - anon_sym_AMP, - STATE(4136), 1, - sym_parameter_list, - STATE(5224), 1, - sym__abstract_declarator, - ACTIONS(6246), 2, + anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_requires, - STATE(4141), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4832), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6270), 7, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -326331,13 +358772,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [147400] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [170315] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6645), 2, + ACTIONS(6963), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(6643), 22, + ACTIONS(6961), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -326360,42 +358807,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noexcept, anon_sym_throw, anon_sym_requires, - [147432] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6764), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK, - ACTIONS(6762), 18, - anon_sym_AMP, - anon_sym___based, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - anon_sym__unaligned, - anon_sym___unaligned, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_identifier, - anon_sym_template, - anon_sym_operator, - [147464] = 3, + [170347] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6685), 2, + ACTIONS(6931), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(6683), 22, + ACTIONS(6929), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -326418,24 +358836,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noexcept, anon_sym_throw, anon_sym_requires, - [147496] = 3, + [170379] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6768), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK, - ACTIONS(6766), 18, + STATE(4386), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(5334), 5, anon_sym_AMP, anon_sym___based, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - anon_sym__unaligned, - anon_sym___unaligned, + sym_identifier, + anon_sym_template, + anon_sym_operator, + ACTIONS(7008), 8, anon_sym_const, anon_sym_volatile, anon_sym_restrict, @@ -326444,41 +358857,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - sym_identifier, - anon_sym_template, - anon_sym_operator, - [147528] = 13, + ACTIONS(5336), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK, + anon_sym_GT2, + [170415] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2921), 1, + ACTIONS(2965), 1, anon_sym_const, - ACTIONS(6704), 1, + ACTIONS(6933), 1, anon_sym_AMP_AMP, - ACTIONS(6706), 1, + ACTIONS(6935), 1, anon_sym_AMP, - ACTIONS(6710), 1, + ACTIONS(6939), 1, anon_sym_noexcept, - ACTIONS(6712), 1, + ACTIONS(6941), 1, anon_sym_throw, - ACTIONS(6751), 1, + ACTIONS(6998), 1, anon_sym_requires, - ACTIONS(6770), 1, + ACTIONS(7011), 1, anon_sym_DASH_GT, - STATE(4845), 1, + STATE(5102), 1, sym_requires_clause, - STATE(5045), 1, + STATE(5298), 1, sym_trailing_return_type, - ACTIONS(6242), 3, + ACTIONS(6801), 3, anon_sym_LPAREN2, anon_sym_LBRACE, anon_sym_LBRACK, - STATE(4138), 5, + STATE(4395), 5, sym_type_qualifier, sym_ref_qualifier, sym_noexcept, sym_throw_specifier, aux_sym_abstract_function_declarator_repeat1, - ACTIONS(6270), 7, + ACTIONS(6783), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -326486,22 +358906,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [147580] = 3, + [170467] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6661), 2, + ACTIONS(5334), 1, anon_sym_AMP, + ACTIONS(7008), 1, anon_sym_const, - ACTIONS(6659), 22, + STATE(4388), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(7013), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(5336), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [170505] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7003), 1, + anon_sym_const, + ACTIONS(5334), 2, + anon_sym_AMP, + anon_sym_LBRACK, + STATE(4389), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(7016), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -326509,44 +358957,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_DASH_GT, + ACTIONS(5336), 12, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_GT2, anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, anon_sym_requires, - [147612] = 13, + [170543] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2921), 1, - anon_sym_const, - ACTIONS(6704), 1, - anon_sym_AMP_AMP, - ACTIONS(6706), 1, + ACTIONS(6921), 2, anon_sym_AMP, - ACTIONS(6710), 1, - anon_sym_noexcept, - ACTIONS(6712), 1, - anon_sym_throw, - ACTIONS(6751), 1, - anon_sym_requires, - ACTIONS(6770), 1, - anon_sym_DASH_GT, - STATE(4836), 1, - sym_requires_clause, - STATE(5063), 1, - sym_trailing_return_type, - ACTIONS(6202), 3, + anon_sym_const, + ACTIONS(6919), 22, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_LBRACK, - STATE(3921), 5, - sym_type_qualifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - ACTIONS(6270), 7, + anon_sym_EQ, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -326554,38 +358993,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [147664] = 13, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [170575] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2921), 1, + ACTIONS(6972), 2, + anon_sym_AMP, anon_sym_const, - ACTIONS(3369), 1, + ACTIONS(6970), 22, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(6268), 1, - anon_sym_LBRACK, - ACTIONS(6724), 1, - anon_sym_STAR, - ACTIONS(6726), 1, anon_sym_AMP_AMP, - ACTIONS(6728), 1, - anon_sym_AMP, - STATE(4136), 1, - sym_parameter_list, - STATE(5231), 1, - sym__abstract_declarator, - ACTIONS(6110), 2, + anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_requires, - STATE(4141), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4832), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6270), 7, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -326593,38 +359022,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [147716] = 13, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [170607] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2921), 1, + ACTIONS(2965), 1, anon_sym_const, - ACTIONS(3369), 1, + ACTIONS(3757), 1, anon_sym_LPAREN2, - ACTIONS(6268), 1, + ACTIONS(6781), 1, anon_sym_LBRACK, - ACTIONS(6724), 1, + ACTIONS(6955), 1, anon_sym_STAR, - ACTIONS(6726), 1, + ACTIONS(6957), 1, anon_sym_AMP_AMP, - ACTIONS(6728), 1, + ACTIONS(6959), 1, anon_sym_AMP, - STATE(4136), 1, + STATE(4387), 1, sym_parameter_list, - STATE(5238), 1, + STATE(5519), 1, sym__abstract_declarator, - ACTIONS(4064), 2, + ACTIONS(6773), 2, anon_sym_LBRACE, anon_sym_requires, - STATE(4145), 2, + STATE(4388), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(4832), 5, + STATE(5127), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(6270), 7, + ACTIONS(6783), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -326632,17 +359067,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [147768] = 6, + [170659] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(4598), 1, - anon_sym_AMP, - ACTIONS(6772), 1, + ACTIONS(2965), 1, anon_sym_const, - STATE(4141), 2, + ACTIONS(6933), 1, + anon_sym_AMP_AMP, + ACTIONS(6935), 1, + anon_sym_AMP, + ACTIONS(6939), 1, + anon_sym_noexcept, + ACTIONS(6941), 1, + anon_sym_throw, + ACTIONS(6998), 1, + anon_sym_requires, + ACTIONS(7011), 1, + anon_sym_DASH_GT, + STATE(5141), 1, + sym_requires_clause, + STATE(5314), 1, + sym_trailing_return_type, + ACTIONS(6797), 3, + anon_sym_LPAREN2, + anon_sym_LBRACE, + anon_sym_LBRACK, + STATE(4200), 5, sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(6775), 7, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6783), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -326650,32 +359106,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - ACTIONS(4600), 13, + [170711] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6953), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(6951), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [147806] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6759), 1, - anon_sym_const, - ACTIONS(4598), 2, - anon_sym_AMP, - anon_sym_LBRACK, - STATE(4142), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(6778), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -326683,35 +359129,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - ACTIONS(4600), 12, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + anon_sym_DASH_GT, anon_sym_GT2, anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, anon_sym_requires, - [147844] = 3, + [170743] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(6693), 2, - anon_sym_AMP, + ACTIONS(2965), 1, anon_sym_const, - ACTIONS(6691), 22, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(6933), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(6935), 1, + anon_sym_AMP, + ACTIONS(6939), 1, + anon_sym_noexcept, + ACTIONS(6941), 1, + anon_sym_throw, + ACTIONS(6998), 1, + anon_sym_requires, + ACTIONS(7011), 1, + anon_sym_DASH_GT, + STATE(5111), 1, + sym_requires_clause, + STATE(5337), 1, + sym_trailing_return_type, + ACTIONS(6793), 3, + anon_sym_LPAREN2, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_EQ, + STATE(4200), 5, + sym_type_qualifier, + sym_ref_qualifier, + sym_noexcept, + sym_throw_specifier, + aux_sym_abstract_function_declarator_repeat1, + ACTIONS(6783), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -326719,44 +359174,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, - anon_sym_requires, - [147876] = 13, + [170795] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2921), 1, + ACTIONS(2965), 1, anon_sym_const, - ACTIONS(6704), 1, + ACTIONS(6933), 1, anon_sym_AMP_AMP, - ACTIONS(6706), 1, + ACTIONS(6935), 1, anon_sym_AMP, - ACTIONS(6710), 1, + ACTIONS(6939), 1, anon_sym_noexcept, - ACTIONS(6712), 1, + ACTIONS(6941), 1, anon_sym_throw, - ACTIONS(6751), 1, + ACTIONS(6998), 1, anon_sym_requires, - ACTIONS(6770), 1, + ACTIONS(7011), 1, anon_sym_DASH_GT, - STATE(4829), 1, + STATE(5106), 1, sym_requires_clause, - STATE(5017), 1, + STATE(5289), 1, sym_trailing_return_type, - ACTIONS(6301), 3, + ACTIONS(6789), 3, anon_sym_LPAREN2, anon_sym_LBRACE, anon_sym_LBRACK, - STATE(3921), 5, + STATE(4393), 5, sym_type_qualifier, sym_ref_qualifier, sym_noexcept, sym_throw_specifier, aux_sym_abstract_function_declarator_repeat1, - ACTIONS(6270), 7, + ACTIONS(6783), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [170847] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7019), 1, + anon_sym_LPAREN2, + ACTIONS(6949), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(6945), 21, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -326764,38 +359237,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [147928] = 13, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [170881] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2921), 1, - anon_sym_const, - ACTIONS(3369), 1, + ACTIONS(7023), 6, anon_sym_LPAREN2, - ACTIONS(6268), 1, - anon_sym_LBRACK, - ACTIONS(6724), 1, + anon_sym_TILDE, anon_sym_STAR, - ACTIONS(6726), 1, anon_sym_AMP_AMP, - ACTIONS(6728), 1, + anon_sym_COLON_COLON, + anon_sym_LBRACK, + ACTIONS(7021), 18, anon_sym_AMP, - STATE(4136), 1, - sym_parameter_list, - STATE(5228), 1, - sym__abstract_declarator, - ACTIONS(4695), 2, - anon_sym_LBRACE, - anon_sym_requires, - STATE(4141), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(4832), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6270), 7, + anon_sym___based, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + anon_sym__unaligned, + anon_sym___unaligned, + anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -326803,13 +359269,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [147980] = 3, + sym_identifier, + anon_sym_template, + anon_sym_operator, + [170913] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4293), 2, + ACTIONS(4139), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(4291), 22, + ACTIONS(4137), 22, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PIPE_PIPE, @@ -326832,13 +359301,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [148012] = 3, + [170945] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2965), 1, + anon_sym_const, + ACTIONS(3757), 1, + anon_sym_LPAREN2, + ACTIONS(6781), 1, + anon_sym_LBRACK, + ACTIONS(6955), 1, + anon_sym_STAR, + ACTIONS(6957), 1, + anon_sym_AMP_AMP, + ACTIONS(6959), 1, + anon_sym_AMP, + STATE(4387), 1, + sym_parameter_list, + STATE(5516), 1, + sym__abstract_declarator, + ACTIONS(6756), 2, + anon_sym_LBRACE, + anon_sym_requires, + STATE(4388), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5127), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6783), 7, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + [170997] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6671), 2, + ACTIONS(6905), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(6669), 22, + ACTIONS(6903), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -326861,13 +359369,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noexcept, anon_sym_throw, anon_sym_requires, - [148044] = 3, + [171029] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6689), 2, + ACTIONS(6901), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(6687), 22, + ACTIONS(6899), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -326890,20 +359398,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noexcept, anon_sym_throw, anon_sym_requires, - [148076] = 5, + [171061] = 13, ACTIONS(3), 1, sym_comment, - STATE(4149), 2, + ACTIONS(2965), 1, + anon_sym_const, + ACTIONS(3757), 1, + anon_sym_LPAREN2, + ACTIONS(6781), 1, + anon_sym_LBRACK, + ACTIONS(6955), 1, + anon_sym_STAR, + ACTIONS(6957), 1, + anon_sym_AMP_AMP, + ACTIONS(6959), 1, + anon_sym_AMP, + STATE(4387), 1, + sym_parameter_list, + STATE(5505), 1, + sym__abstract_declarator, + ACTIONS(4757), 2, + anon_sym_LBRACE, + anon_sym_requires, + STATE(4405), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(4598), 5, - anon_sym_AMP, - anon_sym___based, - sym_identifier, - anon_sym_template, - anon_sym_operator, - ACTIONS(6772), 8, - anon_sym_const, + STATE(5127), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6783), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -326911,33 +359437,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - ACTIONS(4600), 9, - anon_sym_COMMA, - anon_sym_RPAREN, + [171113] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7027), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK, - anon_sym_GT2, - [148112] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6781), 1, - anon_sym_LPAREN2, - ACTIONS(6740), 2, + ACTIONS(7025), 18, anon_sym_AMP, + anon_sym___based, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + anon_sym__unaligned, + anon_sym___unaligned, anon_sym_const, - ACTIONS(6736), 21, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -326945,28 +359463,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, - anon_sym_requires, - [148146] = 3, + sym_identifier, + anon_sym_template, + anon_sym_operator, + [171145] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(6700), 2, - anon_sym_AMP, + ACTIONS(2965), 1, anon_sym_const, - ACTIONS(6698), 22, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3757), 1, anon_sym_LPAREN2, + ACTIONS(6781), 1, + anon_sym_LBRACK, + ACTIONS(6955), 1, + anon_sym_STAR, + ACTIONS(6957), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(6959), 1, + anon_sym_AMP, + STATE(4387), 1, + sym_parameter_list, + STATE(5509), 1, + sym__abstract_declarator, + ACTIONS(5412), 2, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, + anon_sym_requires, + STATE(4388), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5127), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6783), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -326974,44 +359505,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, - anon_sym_requires, - [148178] = 13, + [171197] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2921), 1, - anon_sym_const, - ACTIONS(6704), 1, - anon_sym_AMP_AMP, - ACTIONS(6706), 1, + STATE(3496), 1, + sym_enumerator_list, + ACTIONS(4269), 3, anon_sym_AMP, - ACTIONS(6710), 1, - anon_sym_noexcept, - ACTIONS(6712), 1, - anon_sym_throw, - ACTIONS(6751), 1, - anon_sym_requires, - ACTIONS(6770), 1, - anon_sym_DASH_GT, - STATE(4843), 1, - sym_requires_clause, - STATE(5046), 1, - sym_trailing_return_type, - ACTIONS(6194), 3, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(4267), 19, + anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, - STATE(4144), 5, - sym_type_qualifier, - sym_ref_qualifier, - sym_noexcept, - sym_throw_specifier, - aux_sym_abstract_function_declarator_repeat1, - ACTIONS(6270), 7, + anon_sym_EQ, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -327019,17 +359530,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - [148230] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [171230] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6718), 2, + ACTIONS(3424), 1, + anon_sym_COLON_COLON, + ACTIONS(6968), 1, + anon_sym_LT, + STATE(4375), 1, + sym_template_argument_list, + ACTIONS(3407), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(6716), 22, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3412), 18, anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_LBRACE, @@ -327042,25 +359561,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_DASH_GT, - anon_sym_GT2, + sym_auto, + anon_sym_decltype, anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, anon_sym_requires, - [148262] = 6, + [171267] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6783), 1, + ACTIONS(7029), 1, anon_sym_COLON, - STATE(4184), 1, + STATE(4448), 1, sym__enum_base_clause, - STATE(4298), 1, + STATE(4467), 1, sym_enumerator_list, - ACTIONS(4350), 2, + ACTIONS(4235), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(4348), 18, + ACTIONS(4233), 18, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, @@ -327079,63 +359596,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_try, anon_sym_requires, - [148299] = 17, + [171304] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1465), 1, + ACTIONS(7031), 1, anon_sym_LBRACE, - ACTIONS(1497), 1, - anon_sym_operator, - ACTIONS(5661), 1, + ACTIONS(7033), 1, + anon_sym_COLON, + STATE(2724), 1, + sym_enumerator_list, + STATE(4435), 1, + sym__enum_base_clause, + ACTIONS(4153), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4151), 17, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(5669), 1, - sym_identifier, - ACTIONS(5671), 1, anon_sym_STAR, - ACTIONS(5673), 1, anon_sym_AMP_AMP, - ACTIONS(5675), 1, - anon_sym_AMP, - ACTIONS(6785), 1, anon_sym_SEMI, - ACTIONS(6787), 1, - anon_sym_EQ, - ACTIONS(6789), 1, - anon_sym_COLON, - STATE(4383), 1, - sym__field_declarator, - STATE(6560), 1, - sym_ms_based_modifier, - STATE(6562), 1, - sym_bitfield_clause, - STATE(6563), 1, - sym_initializer_list, - STATE(4890), 8, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - sym_reference_field_declarator, - sym_template_method, - sym_operator_name, - [148358] = 7, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [171343] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6791), 1, + ACTIONS(7035), 1, anon_sym_LBRACE, - ACTIONS(6793), 1, + ACTIONS(7037), 1, anon_sym_COLON, - STATE(2888), 1, + STATE(3150), 1, sym_enumerator_list, - STATE(4196), 1, + STATE(4445), 1, sym__enum_base_clause, - ACTIONS(4340), 2, + ACTIONS(4235), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(4338), 17, + ACTIONS(4233), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -327153,127 +359660,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_GT2, anon_sym_requires, - [148397] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1465), 1, - anon_sym_LBRACE, - ACTIONS(1497), 1, - anon_sym_operator, - ACTIONS(5661), 1, - anon_sym_LPAREN2, - ACTIONS(5669), 1, - sym_identifier, - ACTIONS(5671), 1, - anon_sym_STAR, - ACTIONS(5673), 1, - anon_sym_AMP_AMP, - ACTIONS(5675), 1, - anon_sym_AMP, - ACTIONS(6789), 1, - anon_sym_COLON, - ACTIONS(6795), 1, - anon_sym_SEMI, - ACTIONS(6797), 1, - anon_sym_EQ, - STATE(4388), 1, - sym__field_declarator, - STATE(6381), 1, - sym_initializer_list, - STATE(6382), 1, - sym_bitfield_clause, - STATE(6560), 1, - sym_ms_based_modifier, - STATE(4890), 8, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - sym_reference_field_declarator, - sym_template_method, - sym_operator_name, - [148456] = 21, + [171382] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3377), 1, + ACTIONS(3765), 1, anon_sym_COLON_COLON, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3932), 1, + ACTIONS(4257), 1, anon_sym___declspec, - ACTIONS(5141), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5684), 1, + ACTIONS(6517), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5688), 1, + ACTIONS(6521), 1, anon_sym_EQ, - ACTIONS(6799), 1, + ACTIONS(7039), 1, sym_identifier, - STATE(2635), 1, + STATE(3262), 1, sym_template_type, - STATE(3191), 1, + STATE(3502), 1, sym_field_declaration_list, - STATE(4488), 1, + STATE(4740), 1, sym_ms_declspec_modifier, - STATE(4611), 1, + STATE(4842), 1, sym_attribute_declaration, - STATE(5144), 1, + STATE(5354), 1, sym__scope_resolution, - STATE(5400), 1, + STATE(5626), 1, sym_virtual_specifier, - STATE(6347), 1, + STATE(6656), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - ACTIONS(5686), 2, + ACTIONS(6519), 2, anon_sym_COMMA, anon_sym_GT2, - STATE(2649), 2, + STATE(3260), 2, sym__class_name, sym_qualified_type_identifier, - [148523] = 16, + [171449] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(2272), 1, + ACTIONS(1713), 1, anon_sym_LBRACK, - ACTIONS(5870), 1, + ACTIONS(6673), 1, anon_sym_COLON_COLON, - ACTIONS(6801), 1, + ACTIONS(7041), 1, sym_identifier, - ACTIONS(6803), 1, + ACTIONS(7043), 1, anon_sym_LPAREN2, - ACTIONS(6805), 1, + ACTIONS(7045), 1, anon_sym_LBRACE, - ACTIONS(6809), 1, + ACTIONS(7049), 1, anon_sym_requires, - STATE(2175), 1, + STATE(1875), 1, sym_template_type, - STATE(2793), 1, + STATE(2537), 1, sym_requirement_seq, - STATE(4512), 1, + STATE(4787), 1, sym_lambda_capture_specifier, - STATE(5168), 1, + STATE(5448), 1, sym__scope_resolution, - STATE(6349), 1, + STATE(6681), 1, sym_requires_parameter_list, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(6807), 2, + ACTIONS(7047), 2, sym_true, sym_false, - STATE(2771), 8, + STATE(2539), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -327282,87 +359747,18 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [148580] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6811), 1, - anon_sym_LBRACE, - ACTIONS(6813), 1, - anon_sym_COLON, - STATE(2351), 1, - sym_enumerator_list, - STATE(4187), 1, - sym__enum_base_clause, - ACTIONS(4340), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4338), 17, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [148619] = 6, + [171506] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, - anon_sym_COLON_COLON, - ACTIONS(6667), 1, - anon_sym_LT, - STATE(4106), 1, - sym_template_argument_list, - ACTIONS(3714), 2, - anon_sym_AMP, + ACTIONS(7051), 1, anon_sym_const, - ACTIONS(3722), 18, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [148656] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(3120), 1, - sym_enumerator_list, - ACTIONS(4381), 3, + ACTIONS(5334), 2, anon_sym_AMP, anon_sym_LBRACK, - anon_sym_const, - ACTIONS(4379), 19, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + STATE(4413), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(7054), 7, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -327370,20 +359766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [148689] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(3130), 1, - sym_enumerator_list, - ACTIONS(4391), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(4389), 19, + ACTIONS(5336), 11, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -327392,51 +359775,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, + anon_sym_COLON, anon_sym_try, anon_sym_requires, - [148722] = 17, + [171543] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(1465), 1, + ACTIONS(1469), 1, anon_sym_LBRACE, - ACTIONS(1497), 1, + ACTIONS(1501), 1, anon_sym_operator, - ACTIONS(5661), 1, - anon_sym_LPAREN2, - ACTIONS(5669), 1, + ACTIONS(6314), 1, sym_identifier, - ACTIONS(5671), 1, + ACTIONS(6316), 1, + anon_sym_LPAREN2, + ACTIONS(6318), 1, anon_sym_STAR, - ACTIONS(5673), 1, + ACTIONS(6320), 1, anon_sym_AMP_AMP, - ACTIONS(5675), 1, + ACTIONS(6322), 1, anon_sym_AMP, - ACTIONS(6789), 1, - anon_sym_COLON, - ACTIONS(6815), 1, + ACTIONS(7057), 1, anon_sym_SEMI, - ACTIONS(6817), 1, + ACTIONS(7059), 1, anon_sym_EQ, - STATE(4436), 1, + ACTIONS(7061), 1, + anon_sym_COLON, + STATE(4615), 1, sym__field_declarator, - STATE(6560), 1, + STATE(6823), 1, sym_ms_based_modifier, - STATE(6672), 1, + STATE(7029), 1, sym_bitfield_clause, - STATE(6673), 1, + STATE(7051), 1, sym_initializer_list, - STATE(4890), 8, + STATE(5185), 8, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, @@ -327445,133 +359820,39 @@ static const uint16_t ts_small_parse_table[] = { sym_reference_field_declarator, sym_template_method, sym_operator_name, - [148781] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6819), 1, - anon_sym_const, - ACTIONS(4598), 2, - anon_sym_AMP, - anon_sym_LBRACK, - STATE(4165), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(6822), 7, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - ACTIONS(4600), 11, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - anon_sym_requires, - [148818] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3735), 1, - anon_sym_COLON_COLON, - ACTIONS(6702), 1, - anon_sym_LT, - STATE(2201), 1, - sym_template_argument_list, - ACTIONS(3714), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(3722), 18, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [148855] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6811), 1, - anon_sym_LBRACE, - ACTIONS(6813), 1, - anon_sym_COLON, - STATE(2499), 1, - sym_enumerator_list, - STATE(4186), 1, - sym__enum_base_clause, - ACTIONS(4350), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4348), 17, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [148894] = 16, + [171602] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(2272), 1, + ACTIONS(1713), 1, anon_sym_LBRACK, - ACTIONS(5772), 1, + ACTIONS(6573), 1, anon_sym_COLON_COLON, - ACTIONS(6825), 1, + ACTIONS(7063), 1, sym_identifier, - ACTIONS(6827), 1, + ACTIONS(7065), 1, anon_sym_LPAREN2, - ACTIONS(6829), 1, + ACTIONS(7067), 1, anon_sym_LBRACE, - ACTIONS(6833), 1, + ACTIONS(7071), 1, anon_sym_requires, - STATE(2187), 1, + STATE(1893), 1, sym_template_type, - STATE(3316), 1, + STATE(2775), 1, sym_requirement_seq, - STATE(4527), 1, + STATE(4790), 1, sym_lambda_capture_specifier, - STATE(5152), 1, + STATE(5441), 1, sym__scope_resolution, - STATE(6142), 1, + STATE(6603), 1, sym_requires_parameter_list, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(6831), 2, + ACTIONS(7069), 2, sym_true, sym_false, - STATE(3450), 8, + STATE(2774), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -327580,39 +359861,39 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [148951] = 16, + [171659] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(2272), 1, + ACTIONS(1713), 1, anon_sym_LBRACK, - ACTIONS(5834), 1, + ACTIONS(6651), 1, anon_sym_COLON_COLON, - ACTIONS(6835), 1, + ACTIONS(7073), 1, sym_identifier, - ACTIONS(6837), 1, + ACTIONS(7075), 1, anon_sym_LPAREN2, - ACTIONS(6839), 1, + ACTIONS(7077), 1, anon_sym_LBRACE, - ACTIONS(6843), 1, + ACTIONS(7081), 1, anon_sym_requires, - STATE(2267), 1, + STATE(2062), 1, sym_template_type, - STATE(3048), 1, + STATE(3031), 1, sym_requirement_seq, - STATE(4500), 1, + STATE(4767), 1, sym_lambda_capture_specifier, - STATE(5092), 1, + STATE(5439), 1, sym__scope_resolution, - STATE(5829), 1, + STATE(6429), 1, sym_requires_parameter_list, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(6841), 2, + ACTIONS(7079), 2, sym_true, sym_false, - STATE(3045), 8, + STATE(3042), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -327621,25 +359902,23 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [149008] = 6, + [171716] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6783), 1, - anon_sym_COLON, - STATE(4183), 1, - sym__enum_base_clause, - STATE(4204), 1, + STATE(3451), 1, sym_enumerator_list, - ACTIONS(4340), 2, + ACTIONS(4273), 3, anon_sym_AMP, + anon_sym_LBRACK, anon_sym_const, - ACTIONS(4338), 18, + ACTIONS(4271), 19, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_volatile, anon_sym_restrict, @@ -327652,39 +359931,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_try, anon_sym_requires, - [149045] = 16, + [171749] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(2272), 1, + ACTIONS(1713), 1, anon_sym_LBRACK, - ACTIONS(5856), 1, + ACTIONS(6595), 1, anon_sym_COLON_COLON, - ACTIONS(6845), 1, + ACTIONS(7083), 1, sym_identifier, - ACTIONS(6847), 1, + ACTIONS(7085), 1, anon_sym_LPAREN2, - ACTIONS(6849), 1, + ACTIONS(7087), 1, anon_sym_LBRACE, - ACTIONS(6853), 1, + ACTIONS(7091), 1, anon_sym_requires, - STATE(2480), 1, + STATE(2906), 1, sym_template_type, - STATE(3673), 1, + STATE(3726), 1, sym_requirement_seq, - STATE(4519), 1, + STATE(4789), 1, sym_lambda_capture_specifier, - STATE(5154), 1, + STATE(5386), 1, sym__scope_resolution, - STATE(6028), 1, + STATE(6521), 1, sym_requires_parameter_list, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(6851), 2, + ACTIONS(7089), 2, sym_true, sym_false, - STATE(3886), 8, + STATE(3884), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -327693,39 +359972,39 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [149102] = 16, + [171806] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(2272), 1, + ACTIONS(1713), 1, anon_sym_LBRACK, - ACTIONS(5794), 1, + ACTIONS(6609), 1, anon_sym_COLON_COLON, - ACTIONS(6855), 1, + ACTIONS(7093), 1, sym_identifier, - ACTIONS(6857), 1, + ACTIONS(7095), 1, anon_sym_LPAREN2, - ACTIONS(6859), 1, + ACTIONS(7097), 1, anon_sym_LBRACE, - ACTIONS(6863), 1, + ACTIONS(7101), 1, anon_sym_requires, - STATE(2147), 1, + STATE(2349), 1, sym_template_type, - STATE(2540), 1, + STATE(3317), 1, sym_requirement_seq, - STATE(4508), 1, + STATE(4778), 1, sym_lambda_capture_specifier, - STATE(5120), 1, + STATE(5374), 1, sym__scope_resolution, - STATE(6209), 1, + STATE(6635), 1, sym_requires_parameter_list, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(6861), 2, + ACTIONS(7099), 2, sym_true, sym_false, - STATE(2532), 8, + STATE(3471), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -327734,21 +360013,21 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [149159] = 7, + [171863] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6791), 1, + ACTIONS(7035), 1, anon_sym_LBRACE, - ACTIONS(6793), 1, + ACTIONS(7037), 1, anon_sym_COLON, - STATE(2932), 1, + STATE(3161), 1, sym_enumerator_list, - STATE(4189), 1, + STATE(4444), 1, sym__enum_base_clause, - ACTIONS(4350), 2, + ACTIONS(4153), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(4348), 17, + ACTIONS(4151), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -327766,54 +360045,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_GT2, anon_sym_requires, - [149198] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6867), 1, - anon_sym_LPAREN2, - STATE(4198), 1, - sym_preproc_argument_list, - ACTIONS(6869), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(6865), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [149232] = 6, + [171902] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5937), 1, + ACTIONS(7029), 1, anon_sym_COLON, - STATE(3149), 1, - sym_enumerator_list, - STATE(4162), 1, + STATE(4449), 1, sym__enum_base_clause, - ACTIONS(4350), 3, + STATE(4488), 1, + sym_enumerator_list, + ACTIONS(4153), 2, anon_sym_AMP, - anon_sym_LBRACK, anon_sym_const, - ACTIONS(4348), 16, + ACTIONS(4151), 18, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, + anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -327825,24 +360076,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_try, anon_sym_requires, - [149268] = 6, + [171939] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1713), 1, + anon_sym_LBRACK, + ACTIONS(6623), 1, + anon_sym_COLON_COLON, + ACTIONS(7103), 1, + sym_identifier, + ACTIONS(7105), 1, + anon_sym_LPAREN2, + ACTIONS(7107), 1, + anon_sym_LBRACE, + ACTIONS(7111), 1, + anon_sym_requires, + STATE(2170), 1, + sym_template_type, + STATE(3099), 1, + sym_requirement_seq, + STATE(4771), 1, + sym_lambda_capture_specifier, + STATE(5412), 1, + sym__scope_resolution, + STATE(6446), 1, + sym_requires_parameter_list, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(7109), 2, + sym_true, + sym_false, + STATE(3092), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [171996] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, + ACTIONS(3424), 1, anon_sym_COLON_COLON, - ACTIONS(6745), 1, + ACTIONS(6913), 1, anon_sym_LT, - STATE(2425), 1, + STATE(2412), 1, sym_template_argument_list, - ACTIONS(3714), 2, + ACTIONS(3407), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(3722), 17, - anon_sym_DOT_DOT_DOT, + ACTIONS(3412), 18, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_volatile, anon_sym_restrict, @@ -327853,124 +360147,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, sym_auto, anon_sym_decltype, - anon_sym_GT2, anon_sym_requires, - [149304] = 6, + [172033] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5937), 1, + ACTIONS(7031), 1, + anon_sym_LBRACE, + ACTIONS(7033), 1, anon_sym_COLON, - STATE(3189), 1, + STATE(2860), 1, sym_enumerator_list, - STATE(4163), 1, + STATE(4440), 1, sym__enum_base_clause, - ACTIONS(4340), 3, + ACTIONS(4235), 2, anon_sym_AMP, - anon_sym_LBRACK, anon_sym_const, - ACTIONS(4338), 16, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [149340] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6871), 1, + ACTIONS(4233), 17, anon_sym_COMMA, - ACTIONS(6873), 1, anon_sym_RPAREN, - ACTIONS(6879), 1, - anon_sym_SLASH, - ACTIONS(6881), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6883), 1, - anon_sym_AMP_AMP, - ACTIONS(6885), 1, - anon_sym_PIPE, - ACTIONS(6887), 1, - anon_sym_CARET, - ACTIONS(6889), 1, - anon_sym_AMP, - STATE(5565), 1, - aux_sym_preproc_argument_list_repeat1, - ACTIONS(6875), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6877), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6891), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6893), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(6895), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(6897), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [149395] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6272), 1, - sym_auto, - ACTIONS(6274), 1, - anon_sym_decltype, - STATE(4220), 1, - sym_decltype_auto, - ACTIONS(4366), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4364), 16, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_try, - anon_sym_requires, - [149430] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6899), 1, - anon_sym_LBRACE, - STATE(3356), 1, - sym_enumerator_list, - STATE(4253), 1, - sym__enum_base_clause, - ACTIONS(4340), 3, - anon_sym_AMP, anon_sym_LBRACK, - anon_sym_const, - ACTIONS(4338), 15, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -327978,119 +360177,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, sym_auto, anon_sym_decltype, anon_sym_requires, - [149465] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6901), 1, - sym_identifier, - ACTIONS(6903), 1, - anon_sym_RPAREN, - ACTIONS(6905), 1, - anon_sym_LPAREN2, - ACTIONS(6907), 1, - anon_sym_defined, - ACTIONS(6913), 1, - sym_number_literal, - ACTIONS(6909), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(6911), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6915), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(4178), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [149508] = 10, + [172072] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(6377), 1, + ACTIONS(1469), 1, + anon_sym_LBRACE, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(6314), 1, sym_identifier, - ACTIONS(6379), 1, + ACTIONS(6316), 1, anon_sym_LPAREN2, - ACTIONS(6381), 1, + ACTIONS(6318), 1, anon_sym_STAR, - STATE(5001), 1, - sym__type_declarator, - STATE(6677), 1, + ACTIONS(6320), 1, + anon_sym_AMP_AMP, + ACTIONS(6322), 1, + anon_sym_AMP, + ACTIONS(7061), 1, + anon_sym_COLON, + ACTIONS(7113), 1, + anon_sym_SEMI, + ACTIONS(7115), 1, + anon_sym_EQ, + STATE(4654), 1, + sym__field_declarator, + STATE(6813), 1, + sym_initializer_list, + STATE(6815), 1, + sym_bitfield_clause, + STATE(6823), 1, sym_ms_based_modifier, - STATE(4149), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(5193), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(2921), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [149551] = 4, + STATE(5185), 8, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + sym_reference_field_declarator, + sym_template_method, + sym_operator_name, + [172131] = 17, ACTIONS(3), 1, sym_comment, - STATE(4312), 1, - sym_enumerator_list, - ACTIONS(4391), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4389), 18, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1469), 1, + anon_sym_LBRACE, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(6314), 1, + sym_identifier, + ACTIONS(6316), 1, anon_sym_LPAREN2, + ACTIONS(6318), 1, anon_sym_STAR, + ACTIONS(6320), 1, anon_sym_AMP_AMP, + ACTIONS(6322), 1, + anon_sym_AMP, + ACTIONS(7061), 1, + anon_sym_COLON, + ACTIONS(7117), 1, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, + ACTIONS(7119), 1, anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [149582] = 4, + STATE(4630), 1, + sym__field_declarator, + STATE(6823), 1, + sym_ms_based_modifier, + STATE(7272), 1, + sym_initializer_list, + STATE(7273), 1, + sym_bitfield_clause, + STATE(5185), 8, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + sym_reference_field_declarator, + sym_template_method, + sym_operator_name, + [172190] = 6, ACTIONS(3), 1, sym_comment, - STATE(4325), 1, + ACTIONS(6736), 1, + anon_sym_COLON, + STATE(3448), 1, sym_enumerator_list, - ACTIONS(4381), 2, + STATE(4406), 1, + sym__enum_base_clause, + ACTIONS(4235), 3, anon_sym_AMP, + anon_sym_LBRACK, anon_sym_const, - ACTIONS(4379), 18, + ACTIONS(4233), 16, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -328102,84 +360294,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_try, anon_sym_requires, - [149613] = 10, + [172226] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(6377), 1, - sym_identifier, - ACTIONS(6379), 1, + ACTIONS(7123), 1, anon_sym_LPAREN2, - ACTIONS(6381), 1, - anon_sym_STAR, - STATE(5002), 1, - sym__type_declarator, - STATE(6677), 1, - sym_ms_based_modifier, - STATE(4149), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(5193), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(2921), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [149656] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6811), 1, - anon_sym_LBRACE, - STATE(2393), 1, - sym_enumerator_list, - ACTIONS(4381), 2, + STATE(4576), 1, + sym_preproc_argument_list, + ACTIONS(7125), 5, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_const, - ACTIONS(4379), 17, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7121), 15, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [149689] = 5, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [172260] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6811), 1, - anon_sym_LBRACE, - STATE(2504), 1, - sym_enumerator_list, - ACTIONS(4391), 2, + ACTIONS(3424), 1, + anon_sym_COLON_COLON, + ACTIONS(6988), 1, + anon_sym_LT, + STATE(2897), 1, + sym_template_argument_list, + ACTIONS(3407), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(4389), 17, + ACTIONS(3412), 17, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_volatile, anon_sym_restrict, @@ -328190,23 +360351,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, sym_auto, anon_sym_decltype, + anon_sym_GT2, anon_sym_requires, - [149722] = 4, + [172296] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4295), 1, - anon_sym_COLON_COLON, - ACTIONS(4370), 2, + ACTIONS(6736), 1, + anon_sym_COLON, + STATE(3499), 1, + sym_enumerator_list, + STATE(4417), 1, + sym__enum_base_clause, + ACTIONS(4153), 3, anon_sym_AMP, + anon_sym_LBRACK, anon_sym_const, - ACTIONS(4368), 18, + ACTIONS(4151), 16, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -328218,23 +360383,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_try, anon_sym_requires, - [149753] = 5, + [172332] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6791), 1, - anon_sym_LBRACE, - STATE(2941), 1, - sym_enumerator_list, - ACTIONS(4381), 2, + ACTIONS(6785), 1, + sym_auto, + ACTIONS(6787), 1, + anon_sym_decltype, + STATE(4459), 1, + sym_decltype_auto, + ACTIONS(4277), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(4379), 17, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(4275), 16, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_EQ, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -328242,36 +360410,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, + anon_sym_try, anon_sym_requires, - [149786] = 10, + [172367] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6901), 1, + ACTIONS(7127), 1, sym_identifier, - ACTIONS(6905), 1, + ACTIONS(7129), 1, + anon_sym_RPAREN, + ACTIONS(7131), 1, anon_sym_LPAREN2, - ACTIONS(6907), 1, + ACTIONS(7133), 1, anon_sym_defined, - ACTIONS(6917), 1, - anon_sym_RPAREN, - ACTIONS(6919), 1, + ACTIONS(7139), 1, sym_number_literal, - ACTIONS(6909), 2, + ACTIONS(7135), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(6911), 2, + ACTIONS(7137), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6915), 5, + ACTIONS(7141), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(4193), 7, + STATE(4441), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -328279,198 +360445,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [149829] = 10, + [172410] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(6377), 1, + ACTIONS(6868), 1, sym_identifier, - ACTIONS(6379), 1, + ACTIONS(6870), 1, anon_sym_LPAREN2, - ACTIONS(6381), 1, + ACTIONS(6872), 1, anon_sym_STAR, - STATE(4944), 1, + STATE(5240), 1, sym__type_declarator, - STATE(6677), 1, + STATE(7071), 1, sym_ms_based_modifier, - STATE(4149), 2, + STATE(4386), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(5193), 5, + STATE(5493), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - ACTIONS(2921), 8, - anon_sym_const, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - [149872] = 5, - ACTIONS(6865), 1, - anon_sym_LF, - ACTIONS(6921), 1, - anon_sym_LPAREN2, - ACTIONS(6923), 1, - sym_comment, - STATE(4394), 1, - sym_preproc_argument_list, - ACTIONS(6869), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [149905] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6871), 1, - anon_sym_COMMA, - ACTIONS(6879), 1, - anon_sym_SLASH, - ACTIONS(6881), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6883), 1, - anon_sym_AMP_AMP, - ACTIONS(6885), 1, - anon_sym_PIPE, - ACTIONS(6887), 1, - anon_sym_CARET, - ACTIONS(6889), 1, - anon_sym_AMP, - ACTIONS(6925), 1, - anon_sym_RPAREN, - STATE(5639), 1, - aux_sym_preproc_argument_list_repeat1, - ACTIONS(6875), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6877), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6891), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6893), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(6895), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(6897), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [149960] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4295), 1, - anon_sym_COLON_COLON, - ACTIONS(4299), 1, - anon_sym_LBRACE, - ACTIONS(4370), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4368), 17, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [149993] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6899), 1, - anon_sym_LBRACE, - STATE(3374), 1, - sym_enumerator_list, - STATE(4259), 1, - sym__enum_base_clause, - ACTIONS(4350), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(4348), 15, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_COLON, - sym_auto, - anon_sym_decltype, - anon_sym_requires, - [150028] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6791), 1, - anon_sym_LBRACE, - STATE(2936), 1, - sym_enumerator_list, - ACTIONS(4391), 2, - anon_sym_AMP, + ACTIONS(2965), 8, anon_sym_const, - ACTIONS(4389), 17, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACK, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, anon_sym_mutable, anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - anon_sym_requires, - [150061] = 3, + anon_sym_constinit, + anon_sym_consteval, + [172453] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4450), 2, + ACTIONS(4125), 1, + anon_sym_COLON_COLON, + ACTIONS(4290), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(4448), 18, + ACTIONS(4288), 18, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, @@ -328489,45 +360505,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_try, anon_sym_requires, - [150089] = 3, + [172484] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6929), 5, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(7031), 1, + anon_sym_LBRACE, + STATE(2810), 1, + sym_enumerator_list, + ACTIONS(4273), 2, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(6927), 15, + anon_sym_const, + ACTIONS(4271), 17, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [150117] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4647), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4645), 18, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_EQ, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -328537,32 +360532,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, sym_auto, anon_sym_decltype, - anon_sym_try, anon_sym_requires, - [150145] = 9, + [172517] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6901), 1, + ACTIONS(7127), 1, sym_identifier, - ACTIONS(6905), 1, + ACTIONS(7131), 1, anon_sym_LPAREN2, - ACTIONS(6907), 1, + ACTIONS(7133), 1, anon_sym_defined, - ACTIONS(6931), 1, + ACTIONS(7143), 1, + anon_sym_RPAREN, + ACTIONS(7145), 1, sym_number_literal, - ACTIONS(6909), 2, + ACTIONS(7135), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(6911), 2, + ACTIONS(7137), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6915), 5, + ACTIONS(7141), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(4262), 7, + STATE(4437), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -328570,51 +360566,63 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [150185] = 9, + [172560] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6933), 1, - sym_identifier, - ACTIONS(6935), 1, - anon_sym_LPAREN2, - ACTIONS(6937), 1, - anon_sym_defined, - ACTIONS(6943), 1, - sym_number_literal, - ACTIONS(6939), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(6941), 2, + ACTIONS(7147), 1, + anon_sym_COMMA, + ACTIONS(7149), 1, + anon_sym_RPAREN, + ACTIONS(7155), 1, + anon_sym_SLASH, + ACTIONS(7157), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7159), 1, + anon_sym_AMP_AMP, + ACTIONS(7161), 1, + anon_sym_PIPE, + ACTIONS(7163), 1, + anon_sym_CARET, + ACTIONS(7165), 1, + anon_sym_AMP, + STATE(6029), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(7151), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6945), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(4393), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [150225] = 3, + ACTIONS(7153), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7167), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7169), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7171), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(7173), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [172615] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4643), 2, + ACTIONS(7175), 1, + anon_sym_LBRACE, + STATE(4004), 1, + sym_enumerator_list, + STATE(4585), 1, + sym__enum_base_clause, + ACTIONS(4153), 3, anon_sym_AMP, + anon_sym_LBRACK, anon_sym_const, - ACTIONS(4641), 18, + ACTIONS(4151), 15, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, + anon_sym_LBRACK_LBRACK, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -328622,24 +360630,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, + anon_sym_COLON, sym_auto, anon_sym_decltype, - anon_sym_try, anon_sym_requires, - [150253] = 3, + [172650] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4635), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4633), 18, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(6868), 1, + sym_identifier, + ACTIONS(6870), 1, anon_sym_LPAREN2, + ACTIONS(6872), 1, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, + STATE(5230), 1, + sym__type_declarator, + STATE(7071), 1, + sym_ms_based_modifier, + STATE(4386), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5493), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(2965), 8, + anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -328647,24 +360667,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [150281] = 3, + [172693] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4596), 2, + ACTIONS(7031), 1, + anon_sym_LBRACE, + STATE(2914), 1, + sym_enumerator_list, + ACTIONS(4269), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(4594), 18, + ACTIONS(4267), 17, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_EQ, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -328674,22 +360694,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, sym_auto, anon_sym_decltype, - anon_sym_try, anon_sym_requires, - [150309] = 3, + [172726] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7147), 1, + anon_sym_COMMA, + ACTIONS(7155), 1, + anon_sym_SLASH, + ACTIONS(7157), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7159), 1, + anon_sym_AMP_AMP, + ACTIONS(7161), 1, + anon_sym_PIPE, + ACTIONS(7163), 1, + anon_sym_CARET, + ACTIONS(7165), 1, + anon_sym_AMP, + ACTIONS(7177), 1, + anon_sym_RPAREN, + STATE(5911), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(7151), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7153), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7167), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7169), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7171), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(7173), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [172781] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4402), 2, + ACTIONS(7175), 1, + anon_sym_LBRACE, + STATE(4011), 1, + sym_enumerator_list, + STATE(4582), 1, + sym__enum_base_clause, + ACTIONS(4235), 3, anon_sym_AMP, + anon_sym_LBRACK, anon_sym_const, - ACTIONS(4400), 18, + ACTIONS(4233), 15, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, + anon_sym_LBRACK_LBRACK, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -328697,24 +360759,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, + anon_sym_COLON, sym_auto, anon_sym_decltype, - anon_sym_try, anon_sym_requires, - [150337] = 3, + [172816] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4592), 2, + ACTIONS(4121), 1, + anon_sym_LBRACE, + ACTIONS(4125), 1, + anon_sym_COLON_COLON, + ACTIONS(4290), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(4590), 18, + ACTIONS(4288), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_EQ, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -328724,22 +360790,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, sym_auto, anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [150365] = 3, + anon_sym_GT2, + [172849] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4444), 2, + ACTIONS(7035), 1, + anon_sym_LBRACE, + STATE(3182), 1, + sym_enumerator_list, + ACTIONS(4273), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(4442), 18, + ACTIONS(4271), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_EQ, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -328749,57 +360817,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, sym_auto, anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [150393] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(2272), 1, - anon_sym_LBRACK, - ACTIONS(4060), 1, - anon_sym_COLON_COLON, - ACTIONS(6947), 1, - sym_identifier, - ACTIONS(6949), 1, - anon_sym_LPAREN2, - ACTIONS(6953), 1, + anon_sym_GT2, anon_sym_requires, - STATE(2635), 1, - sym_template_type, - STATE(4507), 1, - sym_lambda_capture_specifier, - STATE(5072), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - ACTIONS(6951), 2, - sym_true, - sym_false, - STATE(4793), 8, - sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, - sym_qualified_type_identifier, - [150441] = 3, + [172882] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4478), 2, + ACTIONS(7035), 1, + anon_sym_LBRACE, + STATE(3166), 1, + sym_enumerator_list, + ACTIONS(4269), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(4476), 18, + ACTIONS(4267), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_EQ, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -328809,22 +360845,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, sym_auto, anon_sym_decltype, - anon_sym_try, + anon_sym_GT2, anon_sym_requires, - [150469] = 3, + [172915] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4482), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4480), 18, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(6868), 1, + sym_identifier, + ACTIONS(6870), 1, anon_sym_LPAREN2, + ACTIONS(6872), 1, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, + STATE(5264), 1, + sym__type_declarator, + STATE(7071), 1, + sym_ms_based_modifier, + STATE(4386), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(5493), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(2965), 8, + anon_sym_const, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -328832,17 +360880,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [150497] = 3, + [172958] = 5, + ACTIONS(7121), 1, + anon_sym_LF, + ACTIONS(7179), 1, + anon_sym_LPAREN2, + ACTIONS(7181), 1, + sym_comment, + STATE(4639), 1, + sym_preproc_argument_list, + ACTIONS(7125), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + [172991] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4558), 2, + STATE(4490), 1, + sym_enumerator_list, + ACTIONS(4269), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(4556), 18, + ACTIONS(4267), 18, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, @@ -328861,13 +360935,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_try, anon_sym_requires, - [150525] = 3, + [173022] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4566), 2, + STATE(4519), 1, + sym_enumerator_list, + ACTIONS(4273), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(4564), 18, + ACTIONS(4271), 18, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, @@ -328886,64 +360962,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_try, anon_sym_requires, - [150553] = 9, + [173053] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(6933), 1, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1713), 1, + anon_sym_LBRACK, + ACTIONS(6623), 1, + anon_sym_COLON_COLON, + ACTIONS(7103), 1, sym_identifier, - ACTIONS(6935), 1, + ACTIONS(7111), 1, + anon_sym_requires, + ACTIONS(7183), 1, anon_sym_LPAREN2, - ACTIONS(6937), 1, - anon_sym_defined, - ACTIONS(6955), 1, - sym_number_literal, - ACTIONS(6939), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(6941), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6945), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(4409), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [150593] = 13, + STATE(2170), 1, + sym_template_type, + STATE(4771), 1, + sym_lambda_capture_specifier, + STATE(5412), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(7185), 2, + sym_true, + sym_false, + STATE(3087), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [173101] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(2272), 1, + ACTIONS(1713), 1, anon_sym_LBRACK, - ACTIONS(5200), 1, + ACTIONS(5654), 1, anon_sym_COLON_COLON, - ACTIONS(6833), 1, - anon_sym_requires, - ACTIONS(6957), 1, + ACTIONS(7187), 1, sym_identifier, - ACTIONS(6959), 1, + ACTIONS(7189), 1, anon_sym_LPAREN2, - STATE(2187), 1, + ACTIONS(7193), 1, + anon_sym_requires, + STATE(3262), 1, sym_template_type, - STATE(4527), 1, + STATE(4760), 1, sym_lambda_capture_specifier, - STATE(5137), 1, + STATE(5416), 1, sym__scope_resolution, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(6961), 2, + ACTIONS(7191), 2, sym_true, sym_false, - STATE(5116), 8, + STATE(5372), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -328952,13 +361032,13 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [150641] = 3, + [173149] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4494), 2, + ACTIONS(4680), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(4492), 18, + ACTIONS(4678), 18, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, @@ -328977,24 +361057,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_try, anon_sym_requires, - [150669] = 6, + [173177] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(6813), 1, - anon_sym_COLON, - STATE(2307), 1, - sym__enum_base_clause, - STATE(2351), 1, - sym_enumerator_list, - ACTIONS(4340), 2, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1713), 1, + anon_sym_LBRACK, + ACTIONS(7091), 1, + anon_sym_requires, + ACTIONS(7195), 1, + sym_identifier, + ACTIONS(7197), 1, + anon_sym_LPAREN2, + ACTIONS(7199), 1, + anon_sym_COLON_COLON, + STATE(2906), 1, + sym_template_type, + STATE(4789), 1, + sym_lambda_capture_specifier, + STATE(5344), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(7201), 2, + sym_true, + sym_false, + STATE(5301), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [173225] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4676), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(4338), 15, + ACTIONS(4674), 18, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_EQ, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -329004,25 +361115,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, sym_auto, anon_sym_decltype, + anon_sym_try, anon_sym_requires, - [150703] = 6, + [173253] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6813), 1, - anon_sym_COLON, - STATE(2304), 1, - sym__enum_base_clause, - STATE(2499), 1, - sym_enumerator_list, - ACTIONS(4350), 2, + ACTIONS(4672), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(4348), 15, + ACTIONS(4670), 18, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_EQ, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -329032,34 +361140,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, sym_auto, anon_sym_decltype, + anon_sym_try, anon_sym_requires, - [150737] = 13, + [173281] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(2272), 1, + ACTIONS(1713), 1, anon_sym_LBRACK, - ACTIONS(5856), 1, + ACTIONS(5522), 1, anon_sym_COLON_COLON, - ACTIONS(6845), 1, + ACTIONS(7101), 1, + anon_sym_requires, + ACTIONS(7203), 1, sym_identifier, - ACTIONS(6853), 1, + ACTIONS(7205), 1, + anon_sym_LPAREN2, + STATE(2349), 1, + sym_template_type, + STATE(4778), 1, + sym_lambda_capture_specifier, + STATE(5397), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(7207), 2, + sym_true, + sym_false, + STATE(5370), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [173329] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1713), 1, + anon_sym_LBRACK, + ACTIONS(5522), 1, + anon_sym_COLON_COLON, + ACTIONS(7101), 1, anon_sym_requires, - ACTIONS(6963), 1, + ACTIONS(7203), 1, + sym_identifier, + ACTIONS(7205), 1, anon_sym_LPAREN2, - STATE(2480), 1, + STATE(2349), 1, sym_template_type, - STATE(4519), 1, + STATE(4778), 1, sym_lambda_capture_specifier, - STATE(5154), 1, + STATE(5397), 1, sym__scope_resolution, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(6965), 2, + ACTIONS(7209), 2, sym_true, sym_false, - STATE(3680), 8, + STATE(3326), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -329068,13 +361212,13 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [150785] = 3, + [173377] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4506), 2, + ACTIONS(4668), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(4504), 18, + ACTIONS(4666), 18, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, @@ -329093,13 +361237,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_try, anon_sym_requires, - [150813] = 3, + [173405] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4534), 2, + ACTIONS(4660), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(4532), 18, + ACTIONS(4658), 18, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, @@ -329118,30 +361262,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_try, anon_sym_requires, - [150841] = 9, + [173433] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(6933), 1, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1713), 1, + anon_sym_LBRACK, + ACTIONS(4731), 1, + anon_sym_COLON_COLON, + ACTIONS(7189), 1, + anon_sym_LPAREN2, + ACTIONS(7193), 1, + anon_sym_requires, + ACTIONS(7211), 1, sym_identifier, - ACTIONS(6935), 1, + STATE(3262), 1, + sym_template_type, + STATE(4760), 1, + sym_lambda_capture_specifier, + STATE(5352), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(7213), 2, + sym_true, + sym_false, + STATE(5064), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [173481] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7215), 1, + sym_identifier, + ACTIONS(7217), 1, anon_sym_LPAREN2, - ACTIONS(6937), 1, + ACTIONS(7219), 1, anon_sym_defined, - ACTIONS(6967), 1, + ACTIONS(7225), 1, sym_number_literal, - ACTIONS(6939), 2, + ACTIONS(7221), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(6941), 2, + ACTIONS(7223), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6945), 5, + ACTIONS(7227), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(4411), 7, + STATE(4698), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -329149,68 +361328,33 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [150881] = 13, + [173521] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(2272), 1, + ACTIONS(1713), 1, anon_sym_LBRACK, - ACTIONS(5794), 1, + ACTIONS(4731), 1, anon_sym_COLON_COLON, - ACTIONS(6855), 1, - sym_identifier, - ACTIONS(6863), 1, - anon_sym_requires, - ACTIONS(6969), 1, + ACTIONS(7189), 1, anon_sym_LPAREN2, - STATE(2147), 1, - sym_template_type, - STATE(4508), 1, - sym_lambda_capture_specifier, - STATE(5120), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - ACTIONS(6971), 2, - sym_true, - sym_false, - STATE(2609), 8, - sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, - sym_qualified_type_identifier, - [150929] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(2272), 1, - anon_sym_LBRACK, - ACTIONS(5794), 1, - anon_sym_COLON_COLON, - ACTIONS(6855), 1, - sym_identifier, - ACTIONS(6863), 1, + ACTIONS(7193), 1, anon_sym_requires, - ACTIONS(6969), 1, - anon_sym_LPAREN2, - STATE(2147), 1, + ACTIONS(7211), 1, + sym_identifier, + STATE(3262), 1, sym_template_type, - STATE(4508), 1, + STATE(4760), 1, sym_lambda_capture_specifier, - STATE(5120), 1, + STATE(5352), 1, sym__scope_resolution, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(6973), 2, + ACTIONS(7229), 2, sym_true, sym_false, - STATE(2610), 8, + STATE(5003), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -329219,38 +361363,13 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [150977] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4671), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4669), 18, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [151005] = 3, + [173569] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4410), 2, + ACTIONS(4656), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(4408), 18, + ACTIONS(4654), 18, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, @@ -329269,13 +361388,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_try, anon_sym_requires, - [151033] = 3, + [173597] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4414), 2, + ACTIONS(4652), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(4412), 18, + ACTIONS(4650), 18, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, @@ -329294,13 +361413,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_try, anon_sym_requires, - [151061] = 3, + [173625] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4655), 2, + ACTIONS(4648), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(4653), 18, + ACTIONS(4646), 18, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, @@ -329319,13 +361438,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_try, anon_sym_requires, - [151089] = 3, + [173653] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4430), 2, + ACTIONS(4640), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(4428), 18, + ACTIONS(4638), 18, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, @@ -329344,13 +361463,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_try, anon_sym_requires, - [151117] = 3, + [173681] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4623), 2, + ACTIONS(4636), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(4621), 18, + ACTIONS(4634), 18, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, @@ -329369,13 +361488,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_try, anon_sym_requires, - [151145] = 3, + [173709] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4615), 2, + ACTIONS(4632), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(4613), 18, + ACTIONS(4630), 18, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, @@ -329394,16 +361513,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_try, anon_sym_requires, - [151173] = 3, + [173737] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4864), 5, + ACTIONS(7233), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(4862), 15, + ACTIONS(7231), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -329419,13 +361538,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [151201] = 3, + [173765] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4370), 2, + ACTIONS(4628), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(4368), 18, + ACTIONS(4626), 18, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, @@ -329444,30 +361563,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_try, anon_sym_requires, - [151229] = 9, + [173793] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6933), 1, + ACTIONS(7215), 1, sym_identifier, - ACTIONS(6935), 1, + ACTIONS(7217), 1, anon_sym_LPAREN2, - ACTIONS(6937), 1, + ACTIONS(7219), 1, anon_sym_defined, - ACTIONS(6975), 1, + ACTIONS(7235), 1, sym_number_literal, - ACTIONS(6939), 2, + ACTIONS(7221), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(6941), 2, + ACTIONS(7223), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6945), 5, + ACTIONS(7227), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(4417), 7, + STATE(4633), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -329475,13 +361594,38 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [151269] = 3, + [173833] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4841), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4839), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [173861] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4370), 2, + ACTIONS(4620), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(4368), 18, + ACTIONS(4618), 18, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, @@ -329500,13 +361644,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_try, anon_sym_requires, - [151297] = 3, + [173889] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4631), 2, + ACTIONS(4616), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(4629), 18, + ACTIONS(4614), 18, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, @@ -329525,13 +361669,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_try, anon_sym_requires, - [151325] = 3, + [173917] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4514), 2, + ACTIONS(4608), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(4512), 18, + ACTIONS(4606), 18, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, @@ -329550,69 +361694,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_try, anon_sym_requires, - [151353] = 14, + [173945] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6879), 1, - anon_sym_SLASH, - ACTIONS(6881), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6883), 1, - anon_sym_AMP_AMP, - ACTIONS(6885), 1, - anon_sym_PIPE, - ACTIONS(6887), 1, - anon_sym_CARET, - ACTIONS(6889), 1, + ACTIONS(4604), 2, anon_sym_AMP, - ACTIONS(6875), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6877), 2, + anon_sym_const, + ACTIONS(4602), 18, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6891), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6893), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(6895), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(6897), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6977), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [151403] = 13, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [173973] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(2272), 1, + ACTIONS(1713), 1, anon_sym_LBRACK, - ACTIONS(6979), 1, - sym_identifier, - ACTIONS(6981), 1, - anon_sym_LPAREN2, - ACTIONS(6983), 1, + ACTIONS(6573), 1, anon_sym_COLON_COLON, - ACTIONS(6987), 1, + ACTIONS(7063), 1, + sym_identifier, + ACTIONS(7071), 1, anon_sym_requires, - STATE(2129), 1, + ACTIONS(7237), 1, + anon_sym_LPAREN2, + STATE(1893), 1, sym_template_type, - STATE(4511), 1, + STATE(4790), 1, sym_lambda_capture_specifier, - STATE(5139), 1, + STATE(5441), 1, sym__scope_resolution, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(6985), 2, + ACTIONS(7239), 2, sym_true, sym_false, - STATE(2141), 8, + STATE(2818), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -329621,33 +361754,33 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [151451] = 13, + [174021] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(2272), 1, + ACTIONS(1713), 1, anon_sym_LBRACK, - ACTIONS(6979), 1, - sym_identifier, - ACTIONS(6981), 1, - anon_sym_LPAREN2, - ACTIONS(6983), 1, + ACTIONS(6573), 1, anon_sym_COLON_COLON, - ACTIONS(6987), 1, + ACTIONS(7063), 1, + sym_identifier, + ACTIONS(7071), 1, anon_sym_requires, - STATE(2129), 1, + ACTIONS(7237), 1, + anon_sym_LPAREN2, + STATE(1893), 1, sym_template_type, - STATE(4511), 1, + STATE(4790), 1, sym_lambda_capture_specifier, - STATE(5139), 1, + STATE(5441), 1, sym__scope_resolution, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(6989), 2, + ACTIONS(7241), 2, sym_true, sym_false, - STATE(1759), 8, + STATE(2817), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -329656,30 +361789,30 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [151499] = 9, + [174069] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6933), 1, + ACTIONS(7215), 1, sym_identifier, - ACTIONS(6935), 1, + ACTIONS(7217), 1, anon_sym_LPAREN2, - ACTIONS(6937), 1, + ACTIONS(7219), 1, anon_sym_defined, - ACTIONS(6991), 1, + ACTIONS(7243), 1, sym_number_literal, - ACTIONS(6939), 2, + ACTIONS(7221), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(6941), 2, + ACTIONS(7223), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6945), 5, + ACTIONS(7227), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(4444), 7, + STATE(4618), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -329687,13 +361820,44 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [151539] = 3, + [174109] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7155), 1, + anon_sym_SLASH, + ACTIONS(7151), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7153), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7169), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7171), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(7173), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7247), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(7245), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [174149] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4440), 2, + ACTIONS(4600), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(4438), 18, + ACTIONS(4598), 18, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, @@ -329712,33 +361876,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_try, anon_sym_requires, - [151567] = 13, + [174177] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(2272), 1, + ACTIONS(1713), 1, anon_sym_LBRACK, - ACTIONS(5345), 1, + ACTIONS(6651), 1, anon_sym_COLON_COLON, - ACTIONS(6949), 1, - anon_sym_LPAREN2, - ACTIONS(6953), 1, + ACTIONS(7073), 1, + sym_identifier, + ACTIONS(7081), 1, anon_sym_requires, - ACTIONS(6993), 1, + ACTIONS(7249), 1, + anon_sym_LPAREN2, + STATE(2062), 1, + sym_template_type, + STATE(4767), 1, + sym_lambda_capture_specifier, + STATE(5439), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(7251), 2, + sym_true, + sym_false, + STATE(2987), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [174225] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1713), 1, + anon_sym_LBRACK, + ACTIONS(6651), 1, + anon_sym_COLON_COLON, + ACTIONS(7073), 1, sym_identifier, - STATE(2635), 1, + ACTIONS(7081), 1, + anon_sym_requires, + ACTIONS(7249), 1, + anon_sym_LPAREN2, + STATE(2062), 1, sym_template_type, - STATE(4507), 1, + STATE(4767), 1, sym_lambda_capture_specifier, - STATE(5088), 1, + STATE(5439), 1, sym__scope_resolution, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(6995), 2, + ACTIONS(7253), 2, sym_true, sym_false, - STATE(5100), 8, + STATE(3078), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -329747,30 +361946,30 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [151615] = 9, + [174273] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6901), 1, + ACTIONS(7215), 1, sym_identifier, - ACTIONS(6905), 1, + ACTIONS(7217), 1, anon_sym_LPAREN2, - ACTIONS(6907), 1, + ACTIONS(7219), 1, anon_sym_defined, - ACTIONS(6997), 1, + ACTIONS(7255), 1, sym_number_literal, - ACTIONS(6909), 2, + ACTIONS(7221), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(6911), 2, + ACTIONS(7223), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6915), 5, + ACTIONS(7227), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(4316), 7, + STATE(4619), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -329778,30 +361977,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [151655] = 9, + [174313] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6901), 1, + ACTIONS(7127), 1, sym_identifier, - ACTIONS(6905), 1, + ACTIONS(7131), 1, anon_sym_LPAREN2, - ACTIONS(6907), 1, + ACTIONS(7133), 1, anon_sym_defined, - ACTIONS(6999), 1, + ACTIONS(7257), 1, sym_number_literal, - ACTIONS(6909), 2, + ACTIONS(7135), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(6911), 2, + ACTIONS(7137), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6915), 5, + ACTIONS(7141), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(4300), 7, + STATE(4641), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -329809,30 +362008,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [151695] = 9, + [174353] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6901), 1, + ACTIONS(7215), 1, sym_identifier, - ACTIONS(6905), 1, + ACTIONS(7217), 1, anon_sym_LPAREN2, - ACTIONS(6907), 1, + ACTIONS(7219), 1, anon_sym_defined, - ACTIONS(7001), 1, + ACTIONS(7259), 1, sym_number_literal, - ACTIONS(6909), 2, + ACTIONS(7221), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(6911), 2, + ACTIONS(7223), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6915), 5, + ACTIONS(7227), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(4297), 7, + STATE(4660), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -329840,30 +362039,155 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [151735] = 9, + [174393] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4584), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4582), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [174421] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4580), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4578), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [174449] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4573), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4571), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [174477] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4569), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4567), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [174505] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4565), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4563), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [174533] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6901), 1, + ACTIONS(7215), 1, sym_identifier, - ACTIONS(6905), 1, + ACTIONS(7217), 1, anon_sym_LPAREN2, - ACTIONS(6907), 1, + ACTIONS(7219), 1, anon_sym_defined, - ACTIONS(7003), 1, + ACTIONS(7261), 1, sym_number_literal, - ACTIONS(6909), 2, + ACTIONS(7221), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(6911), 2, + ACTIONS(7223), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6915), 5, + ACTIONS(7227), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(4296), 7, + STATE(4671), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -329871,61 +362195,250 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [151775] = 9, + [174573] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(6901), 1, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1713), 1, + anon_sym_LBRACK, + ACTIONS(7263), 1, sym_identifier, - ACTIONS(6905), 1, + ACTIONS(7265), 1, anon_sym_LPAREN2, - ACTIONS(6907), 1, - anon_sym_defined, - ACTIONS(7005), 1, - sym_number_literal, - ACTIONS(6909), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(6911), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6915), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(4294), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [151815] = 9, + ACTIONS(7267), 1, + anon_sym_COLON_COLON, + ACTIONS(7271), 1, + anon_sym_requires, + STATE(2924), 1, + sym_template_type, + STATE(4764), 1, + sym_lambda_capture_specifier, + STATE(5340), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(7269), 2, + sym_true, + sym_false, + STATE(2950), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [174621] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4561), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4559), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [174649] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4557), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4555), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [174677] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4549), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4547), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [174705] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4545), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4543), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [174733] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4541), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4539), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [174761] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(6901), 1, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1713), 1, + anon_sym_LBRACK, + ACTIONS(6595), 1, + anon_sym_COLON_COLON, + ACTIONS(7083), 1, sym_identifier, - ACTIONS(6905), 1, + ACTIONS(7091), 1, + anon_sym_requires, + ACTIONS(7197), 1, anon_sym_LPAREN2, - ACTIONS(6907), 1, + STATE(2906), 1, + sym_template_type, + STATE(4789), 1, + sym_lambda_capture_specifier, + STATE(5386), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(7273), 2, + sym_true, + sym_false, + STATE(3858), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [174809] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4537), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4535), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [174837] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7215), 1, + sym_identifier, + ACTIONS(7217), 1, + anon_sym_LPAREN2, + ACTIONS(7219), 1, anon_sym_defined, - ACTIONS(7007), 1, + ACTIONS(7275), 1, sym_number_literal, - ACTIONS(6909), 2, + ACTIONS(7221), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(6911), 2, + ACTIONS(7223), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6915), 5, + ACTIONS(7227), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(4355), 7, + STATE(4622), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -329933,30 +362446,55 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [151855] = 9, + [174877] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4533), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4531), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [174905] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6901), 1, + ACTIONS(7215), 1, sym_identifier, - ACTIONS(6905), 1, + ACTIONS(7217), 1, anon_sym_LPAREN2, - ACTIONS(6907), 1, + ACTIONS(7219), 1, anon_sym_defined, - ACTIONS(7009), 1, + ACTIONS(7277), 1, sym_number_literal, - ACTIONS(6909), 2, + ACTIONS(7221), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(6911), 2, + ACTIONS(7223), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6915), 5, + ACTIONS(7227), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(4293), 7, + STATE(4620), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -329964,16 +362502,101 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [151895] = 3, + [174945] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4529), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4527), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [174973] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1713), 1, + anon_sym_LBRACK, + ACTIONS(6595), 1, + anon_sym_COLON_COLON, + ACTIONS(7083), 1, + sym_identifier, + ACTIONS(7091), 1, + anon_sym_requires, + ACTIONS(7197), 1, + anon_sym_LPAREN2, + STATE(2906), 1, + sym_template_type, + STATE(4789), 1, + sym_lambda_capture_specifier, + STATE(5386), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(7279), 2, + sym_true, + sym_false, + STATE(3774), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [175021] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4290), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4288), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [175049] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7013), 5, + ACTIONS(7283), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(7011), 15, + ACTIONS(7281), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -329989,44 +362612,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [151923] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6901), 1, - sym_identifier, - ACTIONS(6905), 1, - anon_sym_LPAREN2, - ACTIONS(6907), 1, - anon_sym_defined, - ACTIONS(7015), 1, - sym_number_literal, - ACTIONS(6909), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(6911), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6915), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(4287), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [151963] = 3, + [175077] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 2, + ACTIONS(4686), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(4516), 18, + ACTIONS(4684), 18, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, @@ -330045,22 +362637,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_try, anon_sym_requires, - [151991] = 5, + [175105] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6899), 1, - anon_sym_LBRACE, - STATE(3376), 1, - sym_enumerator_list, - ACTIONS(4391), 3, + ACTIONS(4521), 2, anon_sym_AMP, - anon_sym_LBRACK, anon_sym_const, - ACTIONS(4389), 15, + ACTIONS(4519), 18, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -330068,79 +362658,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, - anon_sym_COLON, sym_auto, anon_sym_decltype, + anon_sym_try, anon_sym_requires, - [152023] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6933), 1, - sym_identifier, - ACTIONS(6935), 1, - anon_sym_LPAREN2, - ACTIONS(6937), 1, - anon_sym_defined, - ACTIONS(7017), 1, - sym_number_literal, - ACTIONS(6939), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(6941), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6945), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(4420), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [152063] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6901), 1, - sym_identifier, - ACTIONS(6905), 1, - anon_sym_LPAREN2, - ACTIONS(6907), 1, - anon_sym_defined, - ACTIONS(7019), 1, - sym_number_literal, - ACTIONS(6909), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(6911), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6915), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(4282), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [152103] = 3, + [175133] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4526), 2, + ACTIONS(4517), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(4524), 18, + ACTIONS(4515), 18, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, @@ -330159,33 +362687,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_try, anon_sym_requires, - [152131] = 13, + [175161] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7287), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7285), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [175189] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(2272), 1, + ACTIONS(1713), 1, anon_sym_LBRACK, - ACTIONS(6853), 1, - anon_sym_requires, - ACTIONS(6963), 1, - anon_sym_LPAREN2, - ACTIONS(7021), 1, + ACTIONS(7263), 1, sym_identifier, - ACTIONS(7023), 1, + ACTIONS(7265), 1, + anon_sym_LPAREN2, + ACTIONS(7267), 1, anon_sym_COLON_COLON, - STATE(2480), 1, + ACTIONS(7271), 1, + anon_sym_requires, + STATE(2924), 1, sym_template_type, - STATE(4519), 1, + STATE(4764), 1, sym_lambda_capture_specifier, - STATE(5079), 1, + STATE(5340), 1, sym__scope_resolution, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(7025), 2, + ACTIONS(7289), 2, sym_true, sym_false, - STATE(5054), 8, + STATE(2954), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -330194,33 +362747,33 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [152179] = 13, + [175237] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(2272), 1, + ACTIONS(1713), 1, anon_sym_LBRACK, - ACTIONS(6853), 1, - anon_sym_requires, - ACTIONS(6963), 1, - anon_sym_LPAREN2, - ACTIONS(7021), 1, + ACTIONS(7263), 1, sym_identifier, - ACTIONS(7023), 1, + ACTIONS(7265), 1, + anon_sym_LPAREN2, + ACTIONS(7267), 1, anon_sym_COLON_COLON, - STATE(2480), 1, + ACTIONS(7271), 1, + anon_sym_requires, + STATE(2924), 1, sym_template_type, - STATE(4519), 1, + STATE(4764), 1, sym_lambda_capture_specifier, - STATE(5079), 1, + STATE(5340), 1, sym__scope_resolution, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(6965), 2, + ACTIONS(7291), 2, sym_true, sym_false, - STATE(3680), 8, + STATE(1903), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -330229,22 +362782,75 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [152227] = 5, + [175285] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6899), 1, + ACTIONS(4121), 1, anon_sym_LBRACE, - STATE(3363), 1, - sym_enumerator_list, - ACTIONS(4381), 3, + ACTIONS(4290), 2, anon_sym_AMP, + anon_sym_const, + ACTIONS(4288), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [175315] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4485), 2, + anon_sym_AMP, anon_sym_const, - ACTIONS(4379), 15, + ACTIONS(4483), 18, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [175343] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7033), 1, + anon_sym_COLON, + STATE(2602), 1, + sym__enum_base_clause, + STATE(2724), 1, + sym_enumerator_list, + ACTIONS(4153), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4151), 15, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -330252,37 +362858,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [175377] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7033), 1, anon_sym_COLON, + STATE(2590), 1, + sym__enum_base_clause, + STATE(2860), 1, + sym_enumerator_list, + ACTIONS(4235), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4233), 15, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, sym_auto, anon_sym_decltype, anon_sym_requires, - [152259] = 13, + [175411] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(2272), 1, + ACTIONS(1713), 1, anon_sym_LBRACK, - ACTIONS(4060), 1, + ACTIONS(5522), 1, anon_sym_COLON_COLON, - ACTIONS(6947), 1, + ACTIONS(7101), 1, + anon_sym_requires, + ACTIONS(7203), 1, sym_identifier, - ACTIONS(6949), 1, + ACTIONS(7205), 1, anon_sym_LPAREN2, - ACTIONS(6953), 1, - anon_sym_requires, - STATE(2635), 1, + STATE(2349), 1, sym_template_type, - STATE(4507), 1, + STATE(4778), 1, sym_lambda_capture_specifier, - STATE(5072), 1, + STATE(5397), 1, sym__scope_resolution, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(7027), 2, + ACTIONS(7293), 2, sym_true, sym_false, - STATE(4724), 8, + STATE(5405), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -330291,69 +362924,63 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [152307] = 9, + [175459] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6901), 1, - sym_identifier, - ACTIONS(6905), 1, + ACTIONS(4481), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4479), 18, anon_sym_LPAREN2, - ACTIONS(6907), 1, - anon_sym_defined, - ACTIONS(7029), 1, - sym_number_literal, - ACTIONS(6909), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(6911), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6915), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(4270), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [152347] = 3, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [175487] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7033), 5, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(4477), 2, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(7031), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, + anon_sym_const, + ACTIONS(4475), 18, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [152375] = 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [175515] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4418), 2, + ACTIONS(4473), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(4416), 18, + ACTIONS(4471), 18, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, @@ -330372,13 +362999,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_try, anon_sym_requires, - [152403] = 3, + [175543] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4530), 2, + ACTIONS(4469), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(4528), 18, + ACTIONS(4467), 18, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, @@ -330397,30 +363024,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_try, anon_sym_requires, - [152431] = 9, + [175571] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6933), 1, + ACTIONS(4465), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4463), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [175599] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7127), 1, sym_identifier, - ACTIONS(6935), 1, + ACTIONS(7131), 1, anon_sym_LPAREN2, - ACTIONS(6937), 1, + ACTIONS(7133), 1, anon_sym_defined, - ACTIONS(7035), 1, + ACTIONS(7295), 1, sym_number_literal, - ACTIONS(6939), 2, + ACTIONS(7135), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(6941), 2, + ACTIONS(7137), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6945), 5, + ACTIONS(7141), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(4423), 7, + STATE(4581), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -330428,33 +363080,33 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [152471] = 13, + [175639] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(2272), 1, + ACTIONS(1713), 1, anon_sym_LBRACK, - ACTIONS(4060), 1, + ACTIONS(2434), 1, anon_sym_COLON_COLON, - ACTIONS(6947), 1, + ACTIONS(7187), 1, sym_identifier, - ACTIONS(6949), 1, + ACTIONS(7265), 1, anon_sym_LPAREN2, - ACTIONS(6953), 1, + ACTIONS(7271), 1, anon_sym_requires, - STATE(2635), 1, + STATE(3262), 1, sym_template_type, - STATE(4507), 1, + STATE(4762), 1, sym_lambda_capture_specifier, - STATE(5072), 1, + STATE(5394), 1, sym__scope_resolution, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(7037), 2, + ACTIONS(7297), 2, sym_true, sym_false, - STATE(4760), 8, + STATE(5150), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -330463,121 +363115,38 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [152519] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7041), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(7039), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [152547] = 3, + [175687] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7045), 5, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(4461), 2, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(7043), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [152575] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6933), 1, - sym_identifier, - ACTIONS(6935), 1, + anon_sym_const, + ACTIONS(4459), 18, anon_sym_LPAREN2, - ACTIONS(6937), 1, - anon_sym_defined, - ACTIONS(7047), 1, - sym_number_literal, - ACTIONS(6939), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(6941), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6945), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(4371), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [152615] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6879), 1, - anon_sym_SLASH, - ACTIONS(6877), 2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7051), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(7049), 13, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [152647] = 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [175715] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4458), 2, + ACTIONS(4457), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(4456), 18, + ACTIONS(4455), 18, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, @@ -330596,13 +363165,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_try, anon_sym_requires, - [152675] = 3, + [175743] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4550), 2, + ACTIONS(4453), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(4548), 18, + ACTIONS(4451), 18, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, @@ -330621,13 +363190,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_try, anon_sym_requires, - [152703] = 3, + [175771] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4683), 2, + ACTIONS(4449), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(4681), 18, + ACTIONS(4447), 18, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, @@ -330646,13 +363215,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_try, anon_sym_requires, - [152731] = 3, + [175799] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4406), 2, + ACTIONS(4445), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(4404), 18, + ACTIONS(4443), 18, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, @@ -330671,55 +363240,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_try, anon_sym_requires, - [152759] = 3, + [175827] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7055), 5, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(4441), 2, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(7053), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, + anon_sym_const, + ACTIONS(4439), 18, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [152787] = 9, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [175855] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6901), 1, + ACTIONS(7215), 1, sym_identifier, - ACTIONS(6905), 1, + ACTIONS(7217), 1, anon_sym_LPAREN2, - ACTIONS(6907), 1, + ACTIONS(7219), 1, anon_sym_defined, - ACTIONS(7057), 1, + ACTIONS(7299), 1, sym_number_literal, - ACTIONS(6909), 2, + ACTIONS(7221), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(6911), 2, + ACTIONS(7223), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6915), 5, + ACTIONS(7227), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(4237), 7, + STATE(4636), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -330727,13 +363296,13 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [152827] = 3, + [175895] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4573), 2, + ACTIONS(4433), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(4571), 18, + ACTIONS(4431), 18, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, @@ -330752,55 +363321,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_try, anon_sym_requires, - [152855] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7061), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(7059), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [152883] = 9, + [175923] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6933), 1, + ACTIONS(7215), 1, sym_identifier, - ACTIONS(6935), 1, + ACTIONS(7217), 1, anon_sym_LPAREN2, - ACTIONS(6937), 1, + ACTIONS(7219), 1, anon_sym_defined, - ACTIONS(7063), 1, + ACTIONS(7301), 1, sym_number_literal, - ACTIONS(6939), 2, + ACTIONS(7221), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(6941), 2, + ACTIONS(7223), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6945), 5, + ACTIONS(7227), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(4424), 7, + STATE(4616), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -330808,44 +363352,70 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [152923] = 9, + [175963] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6933), 1, - sym_identifier, - ACTIONS(6935), 1, - anon_sym_LPAREN2, - ACTIONS(6937), 1, - anon_sym_defined, - ACTIONS(7065), 1, - sym_number_literal, - ACTIONS(6939), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(6941), 2, + ACTIONS(7155), 1, + anon_sym_SLASH, + ACTIONS(7151), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6945), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(4382), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [152963] = 3, + ACTIONS(7153), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7247), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7245), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [175997] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7155), 1, + anon_sym_SLASH, + ACTIONS(7151), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7153), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7173), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7247), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7245), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + [176033] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4538), 2, + ACTIONS(4429), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(4536), 18, + ACTIONS(4427), 18, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, @@ -330864,58 +363434,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_try, anon_sym_requires, - [152991] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7051), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(7049), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [153019] = 13, + [176061] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(2272), 1, + ACTIONS(1713), 1, anon_sym_LBRACK, - ACTIONS(6979), 1, + ACTIONS(3765), 1, + anon_sym_COLON_COLON, + ACTIONS(7211), 1, sym_identifier, - ACTIONS(6981), 1, + ACTIONS(7265), 1, anon_sym_LPAREN2, - ACTIONS(6983), 1, - anon_sym_COLON_COLON, - ACTIONS(6987), 1, + ACTIONS(7271), 1, anon_sym_requires, - STATE(2129), 1, + STATE(3262), 1, sym_template_type, - STATE(4511), 1, + STATE(4762), 1, sym_lambda_capture_specifier, - STATE(5139), 1, + STATE(5354), 1, sym__scope_resolution, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(7067), 2, + ACTIONS(7303), 2, sym_true, sym_false, - STATE(2111), 8, + STATE(4963), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -330924,65 +363469,115 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [153067] = 10, + [176109] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, + ACTIONS(4415), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4413), 18, anon_sym_LPAREN2, - ACTIONS(5710), 1, anon_sym_STAR, - ACTIONS(5712), 1, anon_sym_AMP_AMP, - ACTIONS(5714), 1, - anon_sym_AMP, - ACTIONS(5716), 1, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LBRACK, - STATE(3711), 1, - sym_parameter_list, - STATE(4813), 1, - sym__abstract_declarator, - STATE(4735), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5573), 8, - anon_sym_COMMA, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [176137] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4525), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4523), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_COLON, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, anon_sym_try, anon_sym_requires, - [153109] = 13, + [176165] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7155), 1, + anon_sym_SLASH, + ACTIONS(7151), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7153), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7167), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7169), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7171), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(7173), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7247), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(7245), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + [176207] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(2272), 1, + ACTIONS(1713), 1, anon_sym_LBRACK, - ACTIONS(5200), 1, + ACTIONS(6609), 1, anon_sym_COLON_COLON, - ACTIONS(6833), 1, - anon_sym_requires, - ACTIONS(6957), 1, + ACTIONS(7093), 1, sym_identifier, - ACTIONS(6959), 1, + ACTIONS(7101), 1, + anon_sym_requires, + ACTIONS(7205), 1, anon_sym_LPAREN2, - STATE(2187), 1, + STATE(2349), 1, sym_template_type, - STATE(4527), 1, + STATE(4778), 1, sym_lambda_capture_specifier, - STATE(5137), 1, + STATE(5374), 1, sym__scope_resolution, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(7069), 2, + ACTIONS(7305), 2, sym_true, sym_false, - STATE(3325), 8, + STATE(3439), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -330991,33 +363586,33 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [153157] = 13, + [176255] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(2272), 1, + ACTIONS(1713), 1, anon_sym_LBRACK, - ACTIONS(5200), 1, + ACTIONS(6609), 1, anon_sym_COLON_COLON, - ACTIONS(6833), 1, - anon_sym_requires, - ACTIONS(6957), 1, + ACTIONS(7093), 1, sym_identifier, - ACTIONS(6959), 1, + ACTIONS(7101), 1, + anon_sym_requires, + ACTIONS(7205), 1, anon_sym_LPAREN2, - STATE(2187), 1, + STATE(2349), 1, sym_template_type, - STATE(4527), 1, + STATE(4778), 1, sym_lambda_capture_specifier, - STATE(5137), 1, + STATE(5374), 1, sym__scope_resolution, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(7071), 2, + ACTIONS(7209), 2, sym_true, sym_false, - STATE(5159), 8, + STATE(3326), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -331026,83 +363621,80 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [153205] = 13, + [176303] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6879), 1, + ACTIONS(7155), 1, anon_sym_SLASH, - ACTIONS(6883), 1, - anon_sym_AMP_AMP, - ACTIONS(6885), 1, - anon_sym_PIPE, - ACTIONS(6887), 1, - anon_sym_CARET, - ACTIONS(6889), 1, + ACTIONS(7165), 1, anon_sym_AMP, - ACTIONS(6875), 2, + ACTIONS(7247), 1, + anon_sym_PIPE, + ACTIONS(7151), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6877), 2, + ACTIONS(7153), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6891), 2, + ACTIONS(7167), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6893), 2, + ACTIONS(7169), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(6895), 2, + ACTIONS(7171), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(6897), 2, + ACTIONS(7173), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7049), 3, + ACTIONS(7245), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, - [153253] = 13, + anon_sym_AMP_AMP, + anon_sym_CARET, + [176347] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(2272), 1, - anon_sym_LBRACK, - ACTIONS(5834), 1, - anon_sym_COLON_COLON, - ACTIONS(6835), 1, - sym_identifier, - ACTIONS(6843), 1, - anon_sym_requires, - ACTIONS(7073), 1, - anon_sym_LPAREN2, - STATE(2267), 1, - sym_template_type, - STATE(4500), 1, - sym_lambda_capture_specifier, - STATE(5092), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - ACTIONS(7075), 2, - sym_true, - sym_false, - STATE(3079), 8, - sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, - sym_qualified_type_identifier, - [153301] = 3, + ACTIONS(7155), 1, + anon_sym_SLASH, + ACTIONS(7163), 1, + anon_sym_CARET, + ACTIONS(7165), 1, + anon_sym_AMP, + ACTIONS(7247), 1, + anon_sym_PIPE, + ACTIONS(7151), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7153), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7167), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7169), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7171), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(7173), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7245), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [176393] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4562), 2, + ACTIONS(4407), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(4560), 18, + ACTIONS(4405), 18, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, @@ -331121,65 +363713,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_try, anon_sym_requires, - [153329] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(2272), 1, - anon_sym_LBRACK, - ACTIONS(5834), 1, - anon_sym_COLON_COLON, - ACTIONS(6835), 1, - sym_identifier, - ACTIONS(6843), 1, - anon_sym_requires, - ACTIONS(7073), 1, - anon_sym_LPAREN2, - STATE(2267), 1, - sym_template_type, - STATE(4500), 1, - sym_lambda_capture_specifier, - STATE(5092), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - ACTIONS(7077), 2, - sym_true, - sym_false, - STATE(3027), 8, - sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, - sym_qualified_type_identifier, - [153377] = 9, + [176421] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6901), 1, + ACTIONS(7215), 1, sym_identifier, - ACTIONS(6905), 1, + ACTIONS(7217), 1, anon_sym_LPAREN2, - ACTIONS(6907), 1, + ACTIONS(7219), 1, anon_sym_defined, - ACTIONS(7079), 1, + ACTIONS(7307), 1, sym_number_literal, - ACTIONS(6909), 2, + ACTIONS(7221), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(6911), 2, + ACTIONS(7223), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6915), 5, + ACTIONS(7227), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(4426), 7, + STATE(4685), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -331187,203 +363744,149 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [153417] = 13, + [176461] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(2272), 1, + ACTIONS(4403), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4401), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(6853), 1, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, anon_sym_requires, - ACTIONS(6963), 1, - anon_sym_LPAREN2, - ACTIONS(7021), 1, - sym_identifier, - ACTIONS(7023), 1, - anon_sym_COLON_COLON, - STATE(2480), 1, - sym_template_type, - STATE(4519), 1, - sym_lambda_capture_specifier, - STATE(5079), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - ACTIONS(7081), 2, - sym_true, - sym_false, - STATE(5043), 8, - sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, - sym_qualified_type_identifier, - [153465] = 12, + [176489] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6879), 1, + ACTIONS(7155), 1, anon_sym_SLASH, - ACTIONS(6885), 1, + ACTIONS(7161), 1, anon_sym_PIPE, - ACTIONS(6887), 1, + ACTIONS(7163), 1, anon_sym_CARET, - ACTIONS(6889), 1, + ACTIONS(7165), 1, anon_sym_AMP, - ACTIONS(6875), 2, + ACTIONS(7151), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6877), 2, + ACTIONS(7153), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6891), 2, + ACTIONS(7167), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6893), 2, + ACTIONS(7169), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(6895), 2, + ACTIONS(7171), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(6897), 2, + ACTIONS(7173), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7049), 4, + ACTIONS(7245), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - [153511] = 11, + [176535] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6879), 1, + ACTIONS(7247), 5, anon_sym_SLASH, - ACTIONS(6889), 1, - anon_sym_AMP, - ACTIONS(7051), 1, anon_sym_PIPE, - ACTIONS(6875), 2, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7245), 15, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6877), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6891), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6893), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(6895), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(6897), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7049), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [153555] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4588), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4586), 18, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [153583] = 10, + [176563] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6879), 1, + ACTIONS(7155), 1, anon_sym_SLASH, - ACTIONS(6875), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6877), 2, + ACTIONS(7153), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6891), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6893), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(6895), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(6897), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7051), 2, + ACTIONS(7247), 4, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(7049), 5, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7245), 13, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, - [153625] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6879), 1, - anon_sym_SLASH, - ACTIONS(6875), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6877), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6893), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(6895), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(6897), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7051), 2, + [176595] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7311), 5, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(7049), 7, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7309), 15, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [153665] = 3, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [176623] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4581), 2, + ACTIONS(4399), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(4579), 18, + ACTIONS(4397), 18, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, @@ -331402,13 +363905,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_try, anon_sym_requires, - [153693] = 3, + [176651] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4611), 2, + ACTIONS(4395), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(4609), 18, + ACTIONS(4393), 18, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, @@ -331427,62 +363930,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_try, anon_sym_requires, - [153721] = 7, + [176679] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6879), 1, - anon_sym_SLASH, - ACTIONS(6875), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6877), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6897), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7051), 4, - anon_sym_PIPE, + ACTIONS(4391), 2, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(7049), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, + anon_sym_const, + ACTIONS(4389), 18, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [153757] = 13, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [176707] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(2272), 1, + ACTIONS(1713), 1, anon_sym_LBRACK, - ACTIONS(5870), 1, + ACTIONS(3765), 1, anon_sym_COLON_COLON, - ACTIONS(6801), 1, + ACTIONS(7211), 1, sym_identifier, - ACTIONS(6809), 1, - anon_sym_requires, - ACTIONS(7083), 1, + ACTIONS(7265), 1, anon_sym_LPAREN2, - STATE(2175), 1, + ACTIONS(7271), 1, + anon_sym_requires, + STATE(3262), 1, sym_template_type, - STATE(4512), 1, + STATE(4762), 1, sym_lambda_capture_specifier, - STATE(5168), 1, + STATE(5354), 1, sym__scope_resolution, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(7085), 2, + ACTIONS(7291), 2, sym_true, sym_false, - STATE(2782), 8, + STATE(1903), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -331491,95 +363990,33 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [153805] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6933), 1, - sym_identifier, - ACTIONS(6935), 1, - anon_sym_LPAREN2, - ACTIONS(6937), 1, - anon_sym_defined, - ACTIONS(7087), 1, - sym_number_literal, - ACTIONS(6939), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(6941), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6945), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(4413), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [153845] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6933), 1, - sym_identifier, - ACTIONS(6935), 1, - anon_sym_LPAREN2, - ACTIONS(6937), 1, - anon_sym_defined, - ACTIONS(7089), 1, - sym_number_literal, - ACTIONS(6939), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(6941), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6945), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(4425), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [153885] = 13, + [176755] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(2272), 1, + ACTIONS(1713), 1, anon_sym_LBRACK, - ACTIONS(5345), 1, + ACTIONS(5568), 1, anon_sym_COLON_COLON, - ACTIONS(6949), 1, + ACTIONS(7313), 1, + sym_identifier, + ACTIONS(7315), 1, anon_sym_LPAREN2, - ACTIONS(6953), 1, + ACTIONS(7319), 1, anon_sym_requires, - ACTIONS(6993), 1, - sym_identifier, - STATE(2635), 1, + STATE(4380), 1, sym_template_type, - STATE(4507), 1, + STATE(4759), 1, sym_lambda_capture_specifier, - STATE(5088), 1, + STATE(5387), 1, sym__scope_resolution, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(7091), 2, + ACTIONS(7317), 2, sym_true, sym_false, - STATE(5070), 8, + STATE(5210), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -331588,22 +364025,20 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [153933] = 4, + [176803] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4299), 1, - anon_sym_LBRACE, - ACTIONS(4370), 2, + ACTIONS(4387), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(4368), 17, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4385), 18, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_EQ, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -331613,34 +364048,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [153963] = 13, + anon_sym_try, + anon_sym_requires, + [176831] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1713), 1, + anon_sym_LBRACK, + ACTIONS(3765), 1, + anon_sym_COLON_COLON, + ACTIONS(7211), 1, + sym_identifier, + ACTIONS(7265), 1, + anon_sym_LPAREN2, + ACTIONS(7271), 1, + anon_sym_requires, + STATE(3262), 1, + sym_template_type, + STATE(4762), 1, + sym_lambda_capture_specifier, + STATE(5354), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(7321), 2, + sym_true, + sym_false, + STATE(4943), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [176879] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(2272), 1, + ACTIONS(1713), 1, anon_sym_LBRACK, - ACTIONS(5345), 1, + ACTIONS(5654), 1, anon_sym_COLON_COLON, - ACTIONS(6949), 1, + ACTIONS(7187), 1, + sym_identifier, + ACTIONS(7189), 1, anon_sym_LPAREN2, - ACTIONS(6953), 1, + ACTIONS(7193), 1, anon_sym_requires, - ACTIONS(6993), 1, - sym_identifier, - STATE(2635), 1, + STATE(3262), 1, sym_template_type, - STATE(4507), 1, + STATE(4760), 1, sym_lambda_capture_specifier, - STATE(5088), 1, + STATE(5416), 1, sym__scope_resolution, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(7027), 2, + ACTIONS(7213), 2, sym_true, sym_false, - STATE(4724), 8, + STATE(5064), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -331649,33 +364120,33 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [154011] = 13, + [176927] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(2272), 1, + ACTIONS(1713), 1, anon_sym_LBRACK, - ACTIONS(3377), 1, + ACTIONS(5654), 1, anon_sym_COLON_COLON, - ACTIONS(6947), 1, + ACTIONS(7187), 1, sym_identifier, - ACTIONS(6981), 1, + ACTIONS(7189), 1, anon_sym_LPAREN2, - ACTIONS(6987), 1, + ACTIONS(7193), 1, anon_sym_requires, - STATE(2635), 1, + STATE(3262), 1, sym_template_type, - STATE(4506), 1, + STATE(4760), 1, sym_lambda_capture_specifier, - STATE(5144), 1, + STATE(5416), 1, sym__scope_resolution, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(7093), 2, + ACTIONS(7323), 2, sym_true, sym_false, - STATE(4717), 8, + STATE(5434), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -331684,13 +364155,13 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [154059] = 3, + [176975] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4542), 2, + ACTIONS(4383), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(4540), 18, + ACTIONS(4381), 18, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, @@ -331709,33 +364180,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_try, anon_sym_requires, - [154087] = 13, + [177003] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(2272), 1, + ACTIONS(4371), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4369), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(3377), 1, - anon_sym_COLON_COLON, - ACTIONS(6947), 1, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [177031] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4363), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4361), 18, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_try, + anon_sym_requires, + [177059] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7215), 1, sym_identifier, - ACTIONS(6981), 1, + ACTIONS(7217), 1, anon_sym_LPAREN2, - ACTIONS(6987), 1, + ACTIONS(7219), 1, + anon_sym_defined, + ACTIONS(7325), 1, + sym_number_literal, + ACTIONS(7221), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7223), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7227), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4667), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [177099] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1713), 1, + anon_sym_LBRACK, + ACTIONS(7101), 1, anon_sym_requires, - STATE(2635), 1, + ACTIONS(7205), 1, + anon_sym_LPAREN2, + ACTIONS(7327), 1, + sym_identifier, + ACTIONS(7329), 1, + anon_sym_COLON_COLON, + STATE(2349), 1, sym_template_type, - STATE(4506), 1, + STATE(4778), 1, sym_lambda_capture_specifier, - STATE(5144), 1, + STATE(5415), 1, sym__scope_resolution, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(6989), 2, + ACTIONS(7331), 2, sym_true, sym_false, - STATE(1759), 8, + STATE(5284), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -331744,33 +364296,33 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [154135] = 13, + [177147] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(2272), 1, + ACTIONS(1713), 1, anon_sym_LBRACK, - ACTIONS(5772), 1, - anon_sym_COLON_COLON, - ACTIONS(6825), 1, - sym_identifier, - ACTIONS(6833), 1, + ACTIONS(7101), 1, anon_sym_requires, - ACTIONS(6959), 1, + ACTIONS(7205), 1, anon_sym_LPAREN2, - STATE(2187), 1, + ACTIONS(7327), 1, + sym_identifier, + ACTIONS(7329), 1, + anon_sym_COLON_COLON, + STATE(2349), 1, sym_template_type, - STATE(4527), 1, + STATE(4778), 1, sym_lambda_capture_specifier, - STATE(5152), 1, + STATE(5415), 1, sym__scope_resolution, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(7069), 2, + ACTIONS(7209), 2, sym_true, sym_false, - STATE(3325), 8, + STATE(3326), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -331779,13 +364331,13 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [154183] = 3, + [177195] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4554), 2, + ACTIONS(4312), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(4552), 18, + ACTIONS(4310), 18, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, @@ -331804,13 +364356,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_try, anon_sym_requires, - [154211] = 3, + [177223] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4522), 2, + ACTIONS(4359), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(4520), 18, + ACTIONS(4357), 18, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, @@ -331829,61 +364381,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_try, anon_sym_requires, - [154239] = 9, + [177251] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6933), 1, - sym_identifier, - ACTIONS(6935), 1, - anon_sym_LPAREN2, - ACTIONS(6937), 1, - anon_sym_defined, - ACTIONS(7095), 1, - sym_number_literal, - ACTIONS(6939), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(6941), 2, + ACTIONS(7335), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7333), 15, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6945), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(4427), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [154279] = 9, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [177279] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6933), 1, + ACTIONS(7215), 1, sym_identifier, - ACTIONS(6935), 1, + ACTIONS(7217), 1, anon_sym_LPAREN2, - ACTIONS(6937), 1, + ACTIONS(7219), 1, anon_sym_defined, - ACTIONS(7097), 1, + ACTIONS(7337), 1, sym_number_literal, - ACTIONS(6939), 2, + ACTIONS(7221), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(6941), 2, + ACTIONS(7223), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6945), 5, + ACTIONS(7227), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(4429), 7, + STATE(4638), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -331891,13 +364437,80 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [154319] = 3, + [177319] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6547), 1, + anon_sym_LPAREN2, + ACTIONS(6549), 1, + anon_sym_STAR, + ACTIONS(6551), 1, + anon_sym_AMP_AMP, + ACTIONS(6553), 1, + anon_sym_AMP, + ACTIONS(6555), 1, + anon_sym_LBRACK, + STATE(4170), 1, + sym_parameter_list, + STATE(5094), 1, + sym__abstract_declarator, + STATE(5059), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(5786), 8, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + anon_sym_requires, + [177361] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1713), 1, + anon_sym_LBRACK, + ACTIONS(5568), 1, + anon_sym_COLON_COLON, + ACTIONS(7313), 1, + sym_identifier, + ACTIONS(7315), 1, + anon_sym_LPAREN2, + ACTIONS(7319), 1, + anon_sym_requires, + STATE(4380), 1, + sym_template_type, + STATE(4759), 1, + sym_lambda_capture_specifier, + STATE(5387), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(7339), 2, + sym_true, + sym_false, + STATE(5274), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [177409] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4619), 2, + ACTIONS(4411), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(4617), 18, + ACTIONS(4409), 18, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, @@ -331916,25 +364529,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_try, anon_sym_requires, - [154347] = 6, + [177437] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6879), 1, - anon_sym_SLASH, - ACTIONS(6875), 2, + ACTIONS(7215), 1, + sym_identifier, + ACTIONS(7217), 1, + anon_sym_LPAREN2, + ACTIONS(7219), 1, + anon_sym_defined, + ACTIONS(7341), 1, + sym_number_literal, + ACTIONS(7221), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7223), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6877), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7051), 4, + ACTIONS(7227), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4655), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [177477] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7345), 5, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(7049), 11, + ACTIONS(7343), 15, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, @@ -331944,41 +364585,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [154381] = 3, + [177505] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(4675), 2, + ACTIONS(7155), 1, + anon_sym_SLASH, + ACTIONS(7159), 1, + anon_sym_AMP_AMP, + ACTIONS(7161), 1, + anon_sym_PIPE, + ACTIONS(7163), 1, + anon_sym_CARET, + ACTIONS(7165), 1, anon_sym_AMP, - anon_sym_const, - ACTIONS(4673), 18, - anon_sym_LPAREN2, + ACTIONS(7151), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7153), 2, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [154409] = 3, + anon_sym_PERCENT, + ACTIONS(7167), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7169), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7171), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(7173), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7245), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + [177553] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7215), 1, + sym_identifier, + ACTIONS(7217), 1, + anon_sym_LPAREN2, + ACTIONS(7219), 1, + anon_sym_defined, + ACTIONS(7347), 1, + sym_number_literal, + ACTIONS(7221), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7223), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7227), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4649), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [177593] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7101), 5, + ACTIONS(7351), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(7099), 15, + ACTIONS(7349), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -331994,30 +364676,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [154437] = 9, + [177621] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6933), 1, + ACTIONS(7215), 1, sym_identifier, - ACTIONS(6935), 1, + ACTIONS(7217), 1, anon_sym_LPAREN2, - ACTIONS(6937), 1, + ACTIONS(7219), 1, anon_sym_defined, - ACTIONS(7103), 1, + ACTIONS(7353), 1, sym_number_literal, - ACTIONS(6939), 2, + ACTIONS(7221), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(6941), 2, + ACTIONS(7223), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6945), 5, + ACTIONS(7227), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(4377), 7, + STATE(4669), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -332025,20 +364707,144 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [154477] = 3, + [177661] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7357), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7355), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [177689] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4486), 2, + ACTIONS(7175), 1, + anon_sym_LBRACE, + STATE(4014), 1, + sym_enumerator_list, + ACTIONS(4269), 3, anon_sym_AMP, + anon_sym_LBRACK, anon_sym_const, - ACTIONS(4484), 18, + ACTIONS(4267), 15, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_COLON, + sym_auto, + anon_sym_decltype, + anon_sym_requires, + [177721] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1713), 1, + anon_sym_LBRACK, + ACTIONS(7091), 1, + anon_sym_requires, + ACTIONS(7195), 1, + sym_identifier, + ACTIONS(7197), 1, + anon_sym_LPAREN2, + ACTIONS(7199), 1, + anon_sym_COLON_COLON, + STATE(2906), 1, + sym_template_type, + STATE(4789), 1, + sym_lambda_capture_specifier, + STATE(5344), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(7359), 2, + sym_true, + sym_false, + STATE(5288), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [177769] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1713), 1, + anon_sym_LBRACK, + ACTIONS(7091), 1, + anon_sym_requires, + ACTIONS(7195), 1, + sym_identifier, + ACTIONS(7197), 1, + anon_sym_LPAREN2, + ACTIONS(7199), 1, + anon_sym_COLON_COLON, + STATE(2906), 1, + sym_template_type, + STATE(4789), 1, + sym_lambda_capture_specifier, + STATE(5344), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(7279), 2, + sym_true, + sym_false, + STATE(3774), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [177817] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7175), 1, anon_sym_LBRACE, + STATE(4027), 1, + sym_enumerator_list, + ACTIONS(4273), 3, + anon_sym_AMP, anon_sym_LBRACK, - anon_sym_EQ, + anon_sym_const, + ACTIONS(4271), 15, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK_LBRACK, anon_sym_volatile, anon_sym_restrict, anon_sym__Atomic, @@ -332046,34 +364852,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_constinit, anon_sym_consteval, + anon_sym_COLON, sym_auto, anon_sym_decltype, - anon_sym_try, anon_sym_requires, - [154505] = 9, + [177849] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6901), 1, + ACTIONS(7215), 1, sym_identifier, - ACTIONS(6905), 1, + ACTIONS(7217), 1, anon_sym_LPAREN2, - ACTIONS(6907), 1, + ACTIONS(7219), 1, anon_sym_defined, - ACTIONS(7105), 1, + ACTIONS(7361), 1, sym_number_literal, - ACTIONS(6909), 2, + ACTIONS(7221), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(6911), 2, + ACTIONS(7223), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6915), 5, + ACTIONS(7227), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(4442), 7, + STATE(4651), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -332081,30 +364887,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [154545] = 9, + [177889] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6933), 1, + ACTIONS(7127), 1, sym_identifier, - ACTIONS(6935), 1, + ACTIONS(7131), 1, anon_sym_LPAREN2, - ACTIONS(6937), 1, + ACTIONS(7133), 1, anon_sym_defined, - ACTIONS(7107), 1, + ACTIONS(7363), 1, sym_number_literal, - ACTIONS(6939), 2, + ACTIONS(7135), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(6941), 2, + ACTIONS(7137), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6945), 5, + ACTIONS(7141), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(4430), 7, + STATE(4551), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -332112,33 +364918,69 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [154585] = 13, + [177929] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7155), 1, + anon_sym_SLASH, + ACTIONS(7157), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7159), 1, + anon_sym_AMP_AMP, + ACTIONS(7161), 1, + anon_sym_PIPE, + ACTIONS(7163), 1, + anon_sym_CARET, + ACTIONS(7165), 1, + anon_sym_AMP, + ACTIONS(7151), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7153), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7167), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7169), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7171), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(7173), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7365), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [177979] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(2272), 1, + ACTIONS(1713), 1, anon_sym_LBRACK, - ACTIONS(5772), 1, + ACTIONS(2434), 1, anon_sym_COLON_COLON, - ACTIONS(6825), 1, + ACTIONS(7187), 1, sym_identifier, - ACTIONS(6833), 1, - anon_sym_requires, - ACTIONS(6959), 1, + ACTIONS(7265), 1, anon_sym_LPAREN2, - STATE(2187), 1, + ACTIONS(7271), 1, + anon_sym_requires, + STATE(3262), 1, sym_template_type, - STATE(4527), 1, + STATE(4762), 1, sym_lambda_capture_specifier, - STATE(5152), 1, + STATE(5394), 1, sym__scope_resolution, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(7109), 2, + ACTIONS(7291), 2, sym_true, sym_false, - STATE(3438), 8, + STATE(1903), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -332147,33 +364989,33 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [154633] = 13, + [178027] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(2272), 1, + ACTIONS(1713), 1, anon_sym_LBRACK, - ACTIONS(5856), 1, + ACTIONS(2434), 1, anon_sym_COLON_COLON, - ACTIONS(6845), 1, + ACTIONS(7187), 1, sym_identifier, - ACTIONS(6853), 1, - anon_sym_requires, - ACTIONS(6963), 1, + ACTIONS(7265), 1, anon_sym_LPAREN2, - STATE(2480), 1, + ACTIONS(7271), 1, + anon_sym_requires, + STATE(3262), 1, sym_template_type, - STATE(4519), 1, + STATE(4762), 1, sym_lambda_capture_specifier, - STATE(5154), 1, + STATE(5394), 1, sym__scope_resolution, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(7111), 2, + ACTIONS(7367), 2, sym_true, sym_false, - STATE(3901), 8, + STATE(5163), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -332182,38 +365024,79 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [154681] = 3, + [178075] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4577), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4575), 18, + ACTIONS(7127), 1, + sym_identifier, + ACTIONS(7131), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(7133), 1, + anon_sym_defined, + ACTIONS(7369), 1, + sym_number_literal, + ACTIONS(7135), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7141), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4550), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [178115] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1713), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_try, + ACTIONS(7101), 1, anon_sym_requires, - [154709] = 3, + ACTIONS(7205), 1, + anon_sym_LPAREN2, + ACTIONS(7327), 1, + sym_identifier, + ACTIONS(7329), 1, + anon_sym_COLON_COLON, + STATE(2349), 1, + sym_template_type, + STATE(4778), 1, + sym_lambda_capture_specifier, + STATE(5415), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(7371), 2, + sym_true, + sym_false, + STATE(5253), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [178163] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4607), 2, + ACTIONS(4290), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(4605), 18, + ACTIONS(4288), 18, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, @@ -332232,33 +365115,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_try, anon_sym_requires, - [154737] = 13, + [178191] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(2272), 1, + ACTIONS(1713), 1, anon_sym_LBRACK, - ACTIONS(3377), 1, + ACTIONS(6623), 1, anon_sym_COLON_COLON, - ACTIONS(6947), 1, + ACTIONS(7103), 1, sym_identifier, - ACTIONS(6981), 1, - anon_sym_LPAREN2, - ACTIONS(6987), 1, + ACTIONS(7111), 1, anon_sym_requires, - STATE(2635), 1, + ACTIONS(7183), 1, + anon_sym_LPAREN2, + STATE(2170), 1, sym_template_type, - STATE(4506), 1, + STATE(4771), 1, sym_lambda_capture_specifier, - STATE(5144), 1, + STATE(5412), 1, sym__scope_resolution, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(7113), 2, + ACTIONS(7373), 2, sym_true, sym_false, - STATE(4686), 8, + STATE(3088), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -332267,58 +365150,68 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [154785] = 3, + [178239] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(4627), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4625), 18, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1713), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_try, + ACTIONS(4731), 1, + anon_sym_COLON_COLON, + ACTIONS(7189), 1, + anon_sym_LPAREN2, + ACTIONS(7193), 1, anon_sym_requires, - [154813] = 13, + ACTIONS(7211), 1, + sym_identifier, + STATE(3262), 1, + sym_template_type, + STATE(4760), 1, + sym_lambda_capture_specifier, + STATE(5352), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(7375), 2, + sym_true, + sym_false, + STATE(5011), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [178287] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(2272), 1, + ACTIONS(1713), 1, anon_sym_LBRACK, - ACTIONS(5281), 1, + ACTIONS(6673), 1, anon_sym_COLON_COLON, - ACTIONS(7115), 1, + ACTIONS(7041), 1, sym_identifier, - ACTIONS(7117), 1, - anon_sym_LPAREN2, - ACTIONS(7121), 1, + ACTIONS(7049), 1, anon_sym_requires, - STATE(4117), 1, + ACTIONS(7377), 1, + anon_sym_LPAREN2, + STATE(1875), 1, sym_template_type, - STATE(4523), 1, + STATE(4787), 1, sym_lambda_capture_specifier, - STATE(5084), 1, + STATE(5448), 1, sym__scope_resolution, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(7119), 2, + ACTIONS(7379), 2, sym_true, sym_false, - STATE(4970), 8, + STATE(2509), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -332327,130 +365220,158 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [154861] = 3, + [178335] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4466), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4464), 18, + ACTIONS(7127), 1, + sym_identifier, + ACTIONS(7131), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [154889] = 3, + ACTIONS(7133), 1, + anon_sym_defined, + ACTIONS(7381), 1, + sym_number_literal, + ACTIONS(7135), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7141), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4577), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [178375] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(4462), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4460), 18, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(1713), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_try, + ACTIONS(6673), 1, + anon_sym_COLON_COLON, + ACTIONS(7041), 1, + sym_identifier, + ACTIONS(7049), 1, anon_sym_requires, - [154917] = 3, + ACTIONS(7377), 1, + anon_sym_LPAREN2, + STATE(1875), 1, + sym_template_type, + STATE(4787), 1, + sym_lambda_capture_specifier, + STATE(5448), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(7383), 2, + sym_true, + sym_false, + STATE(2516), 8, + sym__class_name, + sym_constraint_conjunction, + sym_constraint_disjunction, + sym__requirement_clause_constraint, + sym_requires_expression, + sym_lambda_expression, + sym_fold_expression, + sym_qualified_type_identifier, + [178423] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4490), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4488), 18, + ACTIONS(7127), 1, + sym_identifier, + ACTIONS(7131), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [154945] = 3, + ACTIONS(7133), 1, + anon_sym_defined, + ACTIONS(7385), 1, + sym_number_literal, + ACTIONS(7135), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7141), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4549), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [178463] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4454), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4452), 18, + ACTIONS(7127), 1, + sym_identifier, + ACTIONS(7131), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [154973] = 9, + ACTIONS(7133), 1, + anon_sym_defined, + ACTIONS(7387), 1, + sym_number_literal, + ACTIONS(7135), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7141), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4588), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [178503] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6933), 1, + ACTIONS(7127), 1, sym_identifier, - ACTIONS(6935), 1, + ACTIONS(7131), 1, anon_sym_LPAREN2, - ACTIONS(6937), 1, + ACTIONS(7133), 1, anon_sym_defined, - ACTIONS(7123), 1, + ACTIONS(7389), 1, sym_number_literal, - ACTIONS(6939), 2, + ACTIONS(7135), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(6941), 2, + ACTIONS(7137), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6945), 5, + ACTIONS(7141), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(4375), 7, + STATE(4686), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -332458,30 +365379,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [155013] = 9, + [178543] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6933), 1, + ACTIONS(7127), 1, sym_identifier, - ACTIONS(6935), 1, + ACTIONS(7131), 1, anon_sym_LPAREN2, - ACTIONS(6937), 1, + ACTIONS(7133), 1, anon_sym_defined, - ACTIONS(7125), 1, + ACTIONS(7391), 1, sym_number_literal, - ACTIONS(6939), 2, + ACTIONS(7135), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(6941), 2, + ACTIONS(7137), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6945), 5, + ACTIONS(7141), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(4432), 7, + STATE(4545), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -332489,68 +365410,64 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [155053] = 13, + [178583] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(2272), 1, - anon_sym_LBRACK, - ACTIONS(6833), 1, - anon_sym_requires, - ACTIONS(6959), 1, - anon_sym_LPAREN2, ACTIONS(7127), 1, sym_identifier, - ACTIONS(7129), 1, - anon_sym_COLON_COLON, - STATE(2187), 1, - sym_template_type, - STATE(4527), 1, - sym_lambda_capture_specifier, - STATE(5107), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - ACTIONS(7131), 2, - sym_true, - sym_false, - STATE(4995), 8, - sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, - sym_qualified_type_identifier, - [155101] = 13, + ACTIONS(7131), 1, + anon_sym_LPAREN2, + ACTIONS(7133), 1, + anon_sym_defined, + ACTIONS(7393), 1, + sym_number_literal, + ACTIONS(7135), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7141), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4544), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [178623] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(2272), 1, + ACTIONS(1713), 1, anon_sym_LBRACK, - ACTIONS(6833), 1, - anon_sym_requires, - ACTIONS(6959), 1, - anon_sym_LPAREN2, - ACTIONS(7127), 1, - sym_identifier, - ACTIONS(7129), 1, + ACTIONS(5568), 1, anon_sym_COLON_COLON, - STATE(2187), 1, + ACTIONS(7313), 1, + sym_identifier, + ACTIONS(7315), 1, + anon_sym_LPAREN2, + ACTIONS(7319), 1, + anon_sym_requires, + STATE(4380), 1, sym_template_type, - STATE(4527), 1, + STATE(4759), 1, sym_lambda_capture_specifier, - STATE(5107), 1, + STATE(5387), 1, sym__scope_resolution, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(7069), 2, + ACTIONS(7395), 2, sym_true, sym_false, - STATE(3325), 8, + STATE(5237), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -332559,215 +365476,154 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [155149] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4398), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4396), 18, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [155177] = 3, + [178671] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4426), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4424), 18, + ACTIONS(7215), 1, + sym_identifier, + ACTIONS(7217), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [155205] = 3, + ACTIONS(7219), 1, + anon_sym_defined, + ACTIONS(7397), 1, + sym_number_literal, + ACTIONS(7221), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7223), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7227), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4650), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [178711] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4651), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4649), 18, + ACTIONS(7215), 1, + sym_identifier, + ACTIONS(7217), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [155233] = 3, + ACTIONS(7219), 1, + anon_sym_defined, + ACTIONS(7399), 1, + sym_number_literal, + ACTIONS(7221), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7223), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7227), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4692), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [178751] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4663), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4661), 18, + ACTIONS(7215), 1, + sym_identifier, + ACTIONS(7217), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [155261] = 13, + ACTIONS(7219), 1, + anon_sym_defined, + ACTIONS(7401), 1, + sym_number_literal, + ACTIONS(7221), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7223), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7227), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4634), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [178791] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(2272), 1, - anon_sym_LBRACK, - ACTIONS(6833), 1, - anon_sym_requires, - ACTIONS(6959), 1, - anon_sym_LPAREN2, ACTIONS(7127), 1, sym_identifier, - ACTIONS(7129), 1, - anon_sym_COLON_COLON, - STATE(2187), 1, - sym_template_type, - STATE(4527), 1, - sym_lambda_capture_specifier, - STATE(5107), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - ACTIONS(7133), 2, - sym_true, - sym_false, - STATE(4938), 8, - sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, - sym_qualified_type_identifier, - [155309] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4422), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4420), 18, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [155337] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4659), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4657), 18, + ACTIONS(7131), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [155365] = 9, + ACTIONS(7133), 1, + anon_sym_defined, + ACTIONS(7403), 1, + sym_number_literal, + ACTIONS(7135), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7141), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4535), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [178831] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6933), 1, + ACTIONS(7127), 1, sym_identifier, - ACTIONS(6935), 1, + ACTIONS(7131), 1, anon_sym_LPAREN2, - ACTIONS(6937), 1, + ACTIONS(7133), 1, anon_sym_defined, - ACTIONS(7135), 1, + ACTIONS(7405), 1, sym_number_literal, - ACTIONS(6939), 2, + ACTIONS(7135), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(6941), 2, + ACTIONS(7137), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6945), 5, + ACTIONS(7141), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(4365), 7, + STATE(4536), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -332775,716 +365631,659 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [155405] = 13, + [178871] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(2272), 1, - anon_sym_LBRACK, - ACTIONS(5281), 1, - anon_sym_COLON_COLON, - ACTIONS(7115), 1, + ACTIONS(7127), 1, sym_identifier, - ACTIONS(7117), 1, + ACTIONS(7131), 1, anon_sym_LPAREN2, - ACTIONS(7121), 1, - anon_sym_requires, - STATE(4117), 1, - sym_template_type, - STATE(4523), 1, - sym_lambda_capture_specifier, - STATE(5084), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, + ACTIONS(7133), 1, + anon_sym_defined, + ACTIONS(7407), 1, + sym_number_literal, + ACTIONS(7135), 2, + anon_sym_BANG, + anon_sym_TILDE, ACTIONS(7137), 2, - sym_true, - sym_false, - STATE(4977), 8, - sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, - sym_qualified_type_identifier, - [155453] = 13, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7141), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4480), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [178911] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(2272), 1, - anon_sym_LBRACK, - ACTIONS(5281), 1, - anon_sym_COLON_COLON, - ACTIONS(7115), 1, + ACTIONS(7127), 1, sym_identifier, - ACTIONS(7117), 1, + ACTIONS(7131), 1, anon_sym_LPAREN2, - ACTIONS(7121), 1, - anon_sym_requires, - STATE(4117), 1, - sym_template_type, - STATE(4523), 1, - sym_lambda_capture_specifier, - STATE(5084), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - ACTIONS(7139), 2, - sym_true, - sym_false, - STATE(4973), 8, - sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, - sym_qualified_type_identifier, - [155501] = 13, + ACTIONS(7133), 1, + anon_sym_defined, + ACTIONS(7409), 1, + sym_number_literal, + ACTIONS(7135), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(7137), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7141), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(4541), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [178951] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(2272), 1, - anon_sym_LBRACK, - ACTIONS(3007), 1, + ACTIONS(4255), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4257), 1, + anon_sym___declspec, + ACTIONS(5496), 1, + anon_sym_COLON, + ACTIONS(5568), 1, anon_sym_COLON_COLON, - ACTIONS(6981), 1, - anon_sym_LPAREN2, - ACTIONS(6987), 1, - anon_sym_requires, - ACTIONS(6993), 1, - sym_identifier, - STATE(2635), 1, - sym_template_type, - STATE(4506), 1, - sym_lambda_capture_specifier, - STATE(5131), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - ACTIONS(7141), 2, - sym_true, - sym_false, - STATE(4887), 8, - sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, - sym_qualified_type_identifier, - [155549] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4510), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4508), 18, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(6990), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [155577] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(2272), 1, - anon_sym_LBRACK, - ACTIONS(3007), 1, - anon_sym_COLON_COLON, - ACTIONS(6981), 1, - anon_sym_LPAREN2, - ACTIONS(6987), 1, - anon_sym_requires, - ACTIONS(6993), 1, + ACTIONS(7313), 1, sym_identifier, - STATE(2635), 1, + STATE(4380), 1, sym_template_type, - STATE(4506), 1, - sym_lambda_capture_specifier, - STATE(5131), 1, + STATE(4458), 1, + sym_field_declaration_list, + STATE(4734), 1, + sym_ms_declspec_modifier, + STATE(4821), 1, + sym_attribute_declaration, + STATE(5387), 1, sym__scope_resolution, - STATE(6663), 1, + STATE(5756), 1, + sym_virtual_specifier, + STATE(6160), 1, + sym_base_class_clause, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(6989), 2, - sym_true, - sym_false, - STATE(1759), 8, + ACTIONS(5498), 2, + anon_sym_final, + anon_sym_override, + STATE(4320), 2, sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, sym_qualified_type_identifier, - [155625] = 13, + [179008] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(2272), 1, - anon_sym_LBRACK, - ACTIONS(3007), 1, + ACTIONS(3765), 1, anon_sym_COLON_COLON, - ACTIONS(6981), 1, - anon_sym_LPAREN2, - ACTIONS(6987), 1, - anon_sym_requires, - ACTIONS(6993), 1, + ACTIONS(4255), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4257), 1, + anon_sym___declspec, + ACTIONS(5494), 1, + anon_sym_LBRACE, + ACTIONS(5496), 1, + anon_sym_COLON, + ACTIONS(7211), 1, sym_identifier, - STATE(2635), 1, + STATE(3262), 1, sym_template_type, - STATE(4506), 1, - sym_lambda_capture_specifier, - STATE(5131), 1, + STATE(3433), 1, + sym_field_declaration_list, + STATE(4747), 1, + sym_ms_declspec_modifier, + STATE(4835), 1, + sym_attribute_declaration, + STATE(5354), 1, sym__scope_resolution, - STATE(6663), 1, + STATE(5616), 1, + sym_virtual_specifier, + STATE(6653), 1, + sym_base_class_clause, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(7143), 2, - sym_true, - sym_false, - STATE(4878), 8, + ACTIONS(5498), 2, + anon_sym_final, + anon_sym_override, + STATE(3280), 2, sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, sym_qualified_type_identifier, - [155673] = 13, + [179065] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(2272), 1, - anon_sym_LBRACK, - ACTIONS(5870), 1, + ACTIONS(2434), 1, anon_sym_COLON_COLON, - ACTIONS(6801), 1, + ACTIONS(4255), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4257), 1, + anon_sym___declspec, + ACTIONS(5494), 1, + anon_sym_LBRACE, + ACTIONS(5496), 1, + anon_sym_COLON, + ACTIONS(7187), 1, sym_identifier, - ACTIONS(6809), 1, - anon_sym_requires, - ACTIONS(7083), 1, - anon_sym_LPAREN2, - STATE(2175), 1, + STATE(3262), 1, sym_template_type, - STATE(4512), 1, - sym_lambda_capture_specifier, - STATE(5168), 1, + STATE(3433), 1, + sym_field_declaration_list, + STATE(4708), 1, + sym_ms_declspec_modifier, + STATE(4861), 1, + sym_attribute_declaration, + STATE(5394), 1, sym__scope_resolution, - STATE(6663), 1, + STATE(5616), 1, + sym_virtual_specifier, + STATE(6653), 1, + sym_base_class_clause, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(7145), 2, - sym_true, - sym_false, - STATE(2781), 8, + ACTIONS(5498), 2, + anon_sym_final, + anon_sym_override, + STATE(3563), 2, sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, sym_qualified_type_identifier, - [155721] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4470), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4468), 18, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_try, - anon_sym_requires, - [155749] = 3, + [179122] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(4474), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4472), 18, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7061), 1, + anon_sym_COLON, + ACTIONS(7411), 1, + anon_sym_COMMA, + ACTIONS(7413), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, + ACTIONS(7415), 1, anon_sym_SEMI, + ACTIONS(7417), 1, anon_sym_LBRACE, + ACTIONS(7419), 1, anon_sym_LBRACK, + ACTIONS(7421), 1, anon_sym_EQ, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, + ACTIONS(7423), 1, anon_sym_try, - anon_sym_requires, - [155777] = 12, - ACTIONS(3), 1, + STATE(2055), 1, + sym_try_statement, + STATE(2056), 1, + sym_delete_method_clause, + STATE(2057), 1, + sym_default_method_clause, + STATE(2058), 1, + sym_compound_statement, + STATE(4068), 1, + sym_parameter_list, + STATE(5321), 1, + aux_sym_field_declaration_repeat1, + STATE(7102), 1, + sym_bitfield_clause, + STATE(7104), 1, + sym_initializer_list, + STATE(5083), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [179181] = 7, + ACTIONS(7181), 1, sym_comment, - ACTIONS(6879), 1, - anon_sym_SLASH, - ACTIONS(6887), 1, - anon_sym_CARET, - ACTIONS(6889), 1, - anon_sym_AMP, - ACTIONS(7051), 1, - anon_sym_PIPE, - ACTIONS(6875), 2, + ACTIONS(7245), 1, + anon_sym_LF, + ACTIONS(7425), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6877), 2, + ACTIONS(7431), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7427), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6891), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6893), 2, + ACTIONS(7429), 4, anon_sym_GT, - anon_sym_LT, - ACTIONS(6895), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(6897), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7049), 4, - anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LT, + ACTIONS(7247), 7, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - [155823] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6933), 1, - sym_identifier, - ACTIONS(6935), 1, - anon_sym_LPAREN2, - ACTIONS(6937), 1, - anon_sym_defined, - ACTIONS(7147), 1, - sym_number_literal, - ACTIONS(6939), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(6941), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6945), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(4438), 7, - sym__preproc_expression, - sym_preproc_parenthesized_expression, - sym_preproc_defined, - sym_preproc_unary_expression, - sym_preproc_call_expression, - sym_preproc_binary_expression, - sym_char_literal, - [155863] = 18, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [179216] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3377), 1, + ACTIONS(2434), 1, anon_sym_COLON_COLON, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3932), 1, + ACTIONS(4257), 1, anon_sym___declspec, - ACTIONS(5141), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(6947), 1, + ACTIONS(7187), 1, sym_identifier, - STATE(2635), 1, + STATE(3262), 1, sym_template_type, - STATE(3180), 1, + STATE(3502), 1, sym_field_declaration_list, - STATE(4479), 1, + STATE(4743), 1, sym_ms_declspec_modifier, - STATE(4620), 1, + STATE(4807), 1, sym_attribute_declaration, - STATE(5144), 1, + STATE(5394), 1, sym__scope_resolution, - STATE(5437), 1, + STATE(5626), 1, sym_virtual_specifier, - STATE(6354), 1, + STATE(6656), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2673), 2, + STATE(3564), 2, sym__class_name, sym_qualified_type_identifier, - [155920] = 3, - ACTIONS(6923), 1, + [179273] = 12, + ACTIONS(7181), 1, sym_comment, - ACTIONS(7043), 1, + ACTIONS(7433), 1, + anon_sym_LF, + ACTIONS(7435), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7437), 1, + anon_sym_AMP_AMP, + ACTIONS(7439), 1, + anon_sym_PIPE, + ACTIONS(7441), 1, + anon_sym_CARET, + ACTIONS(7443), 1, + anon_sym_AMP, + ACTIONS(7425), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7431), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7445), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7427), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7429), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [179318] = 9, + ACTIONS(7181), 1, + sym_comment, + ACTIONS(7245), 1, anon_sym_LF, - ACTIONS(7045), 18, + ACTIONS(7443), 1, + anon_sym_AMP, + ACTIONS(7425), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7431), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7445), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7427), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(7247), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(7429), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [179357] = 12, + ACTIONS(7181), 1, + sym_comment, + ACTIONS(7435), 1, anon_sym_PIPE_PIPE, + ACTIONS(7437), 1, anon_sym_AMP_AMP, + ACTIONS(7439), 1, anon_sym_PIPE, + ACTIONS(7441), 1, anon_sym_CARET, + ACTIONS(7443), 1, anon_sym_AMP, + ACTIONS(7447), 1, + anon_sym_LF, + ACTIONS(7425), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7431), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7445), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7427), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7429), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [155947] = 18, + [179402] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3930), 1, + ACTIONS(2434), 1, + anon_sym_COLON_COLON, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3932), 1, + ACTIONS(4257), 1, anon_sym___declspec, - ACTIONS(4211), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5870), 1, - anon_sym_COLON_COLON, - ACTIONS(6801), 1, + ACTIONS(7187), 1, sym_identifier, - STATE(2175), 1, + STATE(3262), 1, sym_template_type, - STATE(2511), 1, + STATE(3502), 1, sym_field_declaration_list, - STATE(4460), 1, + STATE(4743), 1, sym_ms_declspec_modifier, - STATE(4534), 1, + STATE(4807), 1, sym_attribute_declaration, - STATE(5168), 1, + STATE(5394), 1, sym__scope_resolution, - STATE(5433), 1, + STATE(5626), 1, sym_virtual_specifier, - STATE(6223), 1, + STATE(6656), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2100), 2, + STATE(3551), 2, sym__class_name, sym_qualified_type_identifier, - [156004] = 3, - ACTIONS(6923), 1, + [179459] = 10, + ACTIONS(7181), 1, sym_comment, - ACTIONS(7039), 1, + ACTIONS(7245), 1, anon_sym_LF, - ACTIONS(7041), 18, + ACTIONS(7441), 1, + anon_sym_CARET, + ACTIONS(7443), 1, + anon_sym_AMP, + ACTIONS(7425), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(7431), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7445), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7247), 3, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(7427), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7429), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [156031] = 18, + [179500] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3932), 1, + ACTIONS(4257), 1, anon_sym___declspec, - ACTIONS(4446), 1, + ACTIONS(4417), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5856), 1, + ACTIONS(6609), 1, anon_sym_COLON_COLON, - ACTIONS(6845), 1, + ACTIONS(7093), 1, sym_identifier, - STATE(2480), 1, + STATE(2349), 1, sym_template_type, - STATE(2849), 1, + STATE(2823), 1, sym_field_declaration_list, - STATE(4491), 1, + STATE(4712), 1, sym_ms_declspec_modifier, - STATE(4542), 1, + STATE(4846), 1, sym_attribute_declaration, - STATE(5154), 1, + STATE(5374), 1, sym__scope_resolution, - STATE(5469), 1, + STATE(5704), 1, sym_virtual_specifier, - STATE(6210), 1, + STATE(6432), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2276), 2, + STATE(2052), 2, sym__class_name, sym_qualified_type_identifier, - [156088] = 18, + [179557] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3932), 1, + ACTIONS(4257), 1, anon_sym___declspec, - ACTIONS(4446), 1, + ACTIONS(4417), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5337), 1, + ACTIONS(6609), 1, anon_sym_COLON_COLON, - ACTIONS(7149), 1, + ACTIONS(7093), 1, sym_identifier, - STATE(2480), 1, + STATE(2349), 1, sym_template_type, - STATE(2893), 1, + STATE(2863), 1, sym_field_declaration_list, - STATE(4494), 1, + STATE(4717), 1, sym_ms_declspec_modifier, - STATE(4553), 1, + STATE(4839), 1, sym_attribute_declaration, - STATE(5169), 1, + STATE(5374), 1, sym__scope_resolution, - STATE(5467), 1, + STATE(5710), 1, sym_virtual_specifier, - STATE(6216), 1, + STATE(6431), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2287), 2, + STATE(2050), 2, sym__class_name, sym_qualified_type_identifier, - [156145] = 18, + [179614] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3007), 1, - anon_sym_COLON_COLON, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3932), 1, + ACTIONS(4257), 1, anon_sym___declspec, - ACTIONS(5141), 1, + ACTIONS(4417), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(6993), 1, + ACTIONS(6609), 1, + anon_sym_COLON_COLON, + ACTIONS(7093), 1, sym_identifier, - STATE(2635), 1, + STATE(2349), 1, sym_template_type, - STATE(3191), 1, + STATE(2871), 1, sym_field_declaration_list, - STATE(4462), 1, + STATE(4725), 1, sym_ms_declspec_modifier, - STATE(4560), 1, + STATE(4828), 1, sym_attribute_declaration, - STATE(5131), 1, + STATE(5374), 1, sym__scope_resolution, - STATE(5400), 1, + STATE(5714), 1, sym_virtual_specifier, - STATE(6347), 1, + STATE(6430), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(3229), 2, + STATE(2028), 2, sym__class_name, sym_qualified_type_identifier, - [156202] = 18, + [179671] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3007), 1, - anon_sym_COLON_COLON, - ACTIONS(3930), 1, + ACTIONS(4065), 1, + anon_sym_LBRACE, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3932), 1, + ACTIONS(4257), 1, anon_sym___declspec, - ACTIONS(5141), 1, - anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(6993), 1, + ACTIONS(6573), 1, + anon_sym_COLON_COLON, + ACTIONS(7063), 1, sym_identifier, - STATE(2635), 1, + STATE(1893), 1, sym_template_type, - STATE(3183), 1, + STATE(2292), 1, sym_field_declaration_list, - STATE(4466), 1, + STATE(4715), 1, sym_ms_declspec_modifier, - STATE(4540), 1, + STATE(4874), 1, sym_attribute_declaration, - STATE(5131), 1, + STATE(5441), 1, sym__scope_resolution, - STATE(5417), 1, + STATE(5555), 1, sym_virtual_specifier, - STATE(6369), 1, + STATE(6251), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2671), 2, + STATE(1859), 2, sym__class_name, sym_qualified_type_identifier, - [156259] = 12, - ACTIONS(6923), 1, - sym_comment, - ACTIONS(7151), 1, - anon_sym_LF, - ACTIONS(7157), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7159), 1, - anon_sym_AMP_AMP, - ACTIONS(7161), 1, - anon_sym_PIPE, - ACTIONS(7163), 1, - anon_sym_CARET, - ACTIONS(7165), 1, - anon_sym_AMP, - ACTIONS(7153), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7167), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7171), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7155), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7169), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [156304] = 18, + [179728] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3930), 1, + ACTIONS(2434), 1, + anon_sym_COLON_COLON, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3932), 1, + ACTIONS(4257), 1, anon_sym___declspec, - ACTIONS(4446), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5856), 1, - anon_sym_COLON_COLON, - ACTIONS(6845), 1, + ACTIONS(7187), 1, sym_identifier, - STATE(2480), 1, + STATE(3262), 1, sym_template_type, - STATE(2851), 1, + STATE(3433), 1, sym_field_declaration_list, - STATE(4492), 1, + STATE(4708), 1, sym_ms_declspec_modifier, - STATE(4556), 1, + STATE(4861), 1, sym_attribute_declaration, - STATE(5154), 1, + STATE(5394), 1, sym__scope_resolution, - STATE(5471), 1, + STATE(5616), 1, sym_virtual_specifier, - STATE(6204), 1, + STATE(6653), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2269), 2, + STATE(3553), 2, sym__class_name, sym_qualified_type_identifier, - [156361] = 3, - ACTIONS(6923), 1, + [179785] = 3, + ACTIONS(7181), 1, sym_comment, - ACTIONS(7053), 1, + ACTIONS(7333), 1, anon_sym_LF, - ACTIONS(7055), 18, + ACTIONS(7335), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -333503,126 +366302,391 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [156388] = 18, + [179812] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7449), 1, + anon_sym_LPAREN2, + STATE(3069), 1, + sym_argument_list, + ACTIONS(4290), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4288), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [179843] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7061), 1, + anon_sym_COLON, + ACTIONS(7411), 1, + anon_sym_COMMA, + ACTIONS(7413), 1, + anon_sym_LPAREN2, + ACTIONS(7419), 1, + anon_sym_LBRACK, + ACTIONS(7452), 1, + anon_sym_SEMI, + ACTIONS(7454), 1, + anon_sym_LBRACE, + ACTIONS(7456), 1, + anon_sym_EQ, + ACTIONS(7458), 1, + anon_sym_try, + STATE(2388), 1, + sym_compound_statement, + STATE(2389), 1, + sym_default_method_clause, + STATE(2390), 1, + sym_delete_method_clause, + STATE(2391), 1, + sym_try_statement, + STATE(4068), 1, + sym_parameter_list, + STATE(5294), 1, + aux_sym_field_declaration_repeat1, + STATE(7245), 1, + sym_initializer_list, + STATE(7246), 1, + sym_bitfield_clause, + STATE(5083), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [179902] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3930), 1, + ACTIONS(4065), 1, + anon_sym_LBRACE, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3932), 1, + ACTIONS(4257), 1, anon_sym___declspec, - ACTIONS(4211), 1, - anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5870), 1, + ACTIONS(6573), 1, anon_sym_COLON_COLON, - ACTIONS(6801), 1, + ACTIONS(7063), 1, sym_identifier, - STATE(2175), 1, + STATE(1893), 1, sym_template_type, - STATE(2507), 1, + STATE(2293), 1, sym_field_declaration_list, - STATE(4458), 1, + STATE(4719), 1, sym_ms_declspec_modifier, - STATE(4530), 1, + STATE(4878), 1, sym_attribute_declaration, - STATE(5168), 1, + STATE(5441), 1, sym__scope_resolution, - STATE(5431), 1, + STATE(5553), 1, sym_virtual_specifier, - STATE(6221), 1, + STATE(6334), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2088), 2, + STATE(1860), 2, sym__class_name, sym_qualified_type_identifier, - [156445] = 18, + [179959] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6547), 1, + anon_sym_LPAREN2, + ACTIONS(6555), 1, + anon_sym_LBRACK, + ACTIONS(6643), 1, + anon_sym_STAR, + ACTIONS(6645), 1, + anon_sym_AMP_AMP, + ACTIONS(6647), 1, + anon_sym_AMP, + STATE(4204), 1, + sym_parameter_list, + STATE(5148), 1, + sym__abstract_declarator, + STATE(5059), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(5786), 7, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + anon_sym_requires, + [180000] = 11, + ACTIONS(7181), 1, + sym_comment, + ACTIONS(7245), 1, + anon_sym_LF, + ACTIONS(7439), 1, + anon_sym_PIPE, + ACTIONS(7441), 1, + anon_sym_CARET, + ACTIONS(7443), 1, + anon_sym_AMP, + ACTIONS(7247), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(7425), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7431), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7445), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7427), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7429), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [180043] = 12, + ACTIONS(7181), 1, + sym_comment, + ACTIONS(7245), 1, + anon_sym_LF, + ACTIONS(7247), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7437), 1, + anon_sym_AMP_AMP, + ACTIONS(7439), 1, + anon_sym_PIPE, + ACTIONS(7441), 1, + anon_sym_CARET, + ACTIONS(7443), 1, + anon_sym_AMP, + ACTIONS(7425), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7431), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7445), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7427), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7429), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [180088] = 3, + ACTIONS(7181), 1, + sym_comment, + ACTIONS(7281), 1, + anon_sym_LF, + ACTIONS(7283), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + [180115] = 8, + ACTIONS(7181), 1, + sym_comment, + ACTIONS(7245), 1, + anon_sym_LF, + ACTIONS(7425), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7431), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7445), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7427), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7429), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7247), 5, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + [180152] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3930), 1, + ACTIONS(4065), 1, + anon_sym_LBRACE, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3932), 1, + ACTIONS(4257), 1, anon_sym___declspec, - ACTIONS(4156), 1, - anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5794), 1, + ACTIONS(6573), 1, anon_sym_COLON_COLON, - ACTIONS(6855), 1, + ACTIONS(7063), 1, sym_identifier, - STATE(2147), 1, + STATE(1893), 1, sym_template_type, - STATE(2278), 1, + STATE(2296), 1, sym_field_declaration_list, - STATE(4486), 1, + STATE(4732), 1, sym_ms_declspec_modifier, - STATE(4604), 1, + STATE(4872), 1, sym_attribute_declaration, - STATE(5120), 1, + STATE(5441), 1, sym__scope_resolution, - STATE(5277), 1, + STATE(5547), 1, sym_virtual_specifier, - STATE(6046), 1, + STATE(6332), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2083), 2, + STATE(1846), 2, sym__class_name, sym_qualified_type_identifier, - [156502] = 18, + [180209] = 3, + ACTIONS(7181), 1, + sym_comment, + ACTIONS(7355), 1, + anon_sym_LF, + ACTIONS(7357), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + [180236] = 3, + ACTIONS(7181), 1, + sym_comment, + ACTIONS(7343), 1, + anon_sym_LF, + ACTIONS(7345), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + [180263] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3930), 1, + ACTIONS(4012), 1, + anon_sym_LBRACE, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3932), 1, + ACTIONS(4257), 1, anon_sym___declspec, - ACTIONS(4211), 1, - anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5870), 1, + ACTIONS(6673), 1, anon_sym_COLON_COLON, - ACTIONS(6801), 1, + ACTIONS(7041), 1, sym_identifier, - STATE(2175), 1, + STATE(1875), 1, sym_template_type, - STATE(2508), 1, + STATE(2132), 1, sym_field_declaration_list, - STATE(4459), 1, + STATE(4718), 1, sym_ms_declspec_modifier, - STATE(4537), 1, + STATE(4887), 1, sym_attribute_declaration, - STATE(5168), 1, + STATE(5448), 1, sym__scope_resolution, - STATE(5432), 1, + STATE(5558), 1, sym_virtual_specifier, - STATE(6222), 1, + STATE(6639), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2091), 2, + STATE(1838), 2, sym__class_name, sym_qualified_type_identifier, - [156559] = 12, - ACTIONS(6923), 1, + [180320] = 14, + ACTIONS(3), 1, sym_comment, + ACTIONS(7155), 1, + anon_sym_SLASH, ACTIONS(7157), 1, anon_sym_PIPE_PIPE, ACTIONS(7159), 1, @@ -333633,156 +366697,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(7165), 1, anon_sym_AMP, - ACTIONS(7173), 1, - anon_sym_LF, - ACTIONS(7153), 2, + ACTIONS(7460), 1, + anon_sym_RPAREN, + ACTIONS(7151), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7153), 2, + anon_sym_STAR, + anon_sym_PERCENT, ACTIONS(7167), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7171), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7155), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7169), 4, + ACTIONS(7169), 2, anon_sym_GT, + anon_sym_LT, + ACTIONS(7171), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, - [156604] = 18, + ACTIONS(7173), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [180369] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3932), 1, + ACTIONS(4257), 1, anon_sym___declspec, - ACTIONS(4446), 1, + ACTIONS(4924), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5856), 1, + ACTIONS(6595), 1, anon_sym_COLON_COLON, - ACTIONS(6845), 1, + ACTIONS(7083), 1, sym_identifier, - STATE(2480), 1, + STATE(2906), 1, sym_template_type, - STATE(2893), 1, + STATE(3143), 1, sym_field_declaration_list, - STATE(4490), 1, + STATE(4711), 1, sym_ms_declspec_modifier, - STATE(4533), 1, + STATE(4869), 1, sym_attribute_declaration, - STATE(5154), 1, + STATE(5386), 1, sym__scope_resolution, - STATE(5467), 1, + STATE(5694), 1, sym_virtual_specifier, - STATE(6216), 1, + STATE(6438), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2287), 2, + STATE(2560), 2, sym__class_name, sym_qualified_type_identifier, - [156661] = 18, + [180426] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3007), 1, - anon_sym_COLON_COLON, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3932), 1, + ACTIONS(4257), 1, anon_sym___declspec, - ACTIONS(5141), 1, + ACTIONS(4924), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(6993), 1, + ACTIONS(6595), 1, + anon_sym_COLON_COLON, + ACTIONS(7083), 1, sym_identifier, - STATE(2635), 1, + STATE(2906), 1, sym_template_type, - STATE(3183), 1, + STATE(3144), 1, sym_field_declaration_list, - STATE(4466), 1, + STATE(4721), 1, sym_ms_declspec_modifier, - STATE(4540), 1, + STATE(4799), 1, sym_attribute_declaration, - STATE(5131), 1, + STATE(5386), 1, sym__scope_resolution, - STATE(5417), 1, + STATE(5696), 1, sym_virtual_specifier, - STATE(6369), 1, + STATE(6437), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(3231), 2, + STATE(2563), 2, sym__class_name, sym_qualified_type_identifier, - [156718] = 18, + [180483] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3007), 1, - anon_sym_COLON_COLON, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3932), 1, + ACTIONS(4257), 1, anon_sym___declspec, - ACTIONS(5141), 1, + ACTIONS(4924), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(6993), 1, + ACTIONS(6595), 1, + anon_sym_COLON_COLON, + ACTIONS(7083), 1, sym_identifier, - STATE(2635), 1, + STATE(2906), 1, sym_template_type, - STATE(3180), 1, + STATE(3145), 1, sym_field_declaration_list, - STATE(4478), 1, + STATE(4720), 1, sym_ms_declspec_modifier, - STATE(4555), 1, + STATE(4834), 1, sym_attribute_declaration, - STATE(5131), 1, + STATE(5386), 1, sym__scope_resolution, - STATE(5437), 1, + STATE(5698), 1, sym_virtual_specifier, - STATE(6354), 1, + STATE(6436), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(3232), 2, + STATE(2566), 2, sym__class_name, sym_qualified_type_identifier, - [156775] = 5, - ACTIONS(6923), 1, + [180540] = 3, + ACTIONS(7181), 1, sym_comment, - ACTIONS(7049), 1, + ACTIONS(7285), 1, anon_sym_LF, - ACTIONS(7153), 2, + ACTIONS(7287), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7155), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7051), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -333796,313 +366858,340 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [156806] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(3007), 1, - anon_sym_COLON_COLON, - ACTIONS(3930), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3932), 1, - anon_sym___declspec, - ACTIONS(5141), 1, - anon_sym_LBRACE, - ACTIONS(5143), 1, - anon_sym_COLON, - ACTIONS(6993), 1, - sym_identifier, - STATE(2635), 1, - sym_template_type, - STATE(3191), 1, - sym_field_declaration_list, - STATE(4462), 1, - sym_ms_declspec_modifier, - STATE(4560), 1, - sym_attribute_declaration, - STATE(5131), 1, - sym__scope_resolution, - STATE(5400), 1, - sym_virtual_specifier, - STATE(6347), 1, - sym_base_class_clause, - STATE(6663), 1, - sym_dependent_type_identifier, - ACTIONS(5145), 2, - anon_sym_final, - anon_sym_override, - STATE(2649), 2, - sym__class_name, - sym_qualified_type_identifier, - [156863] = 12, - ACTIONS(6923), 1, + [180567] = 3, + ACTIONS(4839), 1, + anon_sym_LF, + ACTIONS(7181), 1, sym_comment, - ACTIONS(7157), 1, + ACTIONS(4841), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, - ACTIONS(7159), 1, anon_sym_AMP_AMP, - ACTIONS(7161), 1, anon_sym_PIPE, - ACTIONS(7163), 1, anon_sym_CARET, - ACTIONS(7165), 1, anon_sym_AMP, - ACTIONS(7175), 1, - anon_sym_LF, - ACTIONS(7153), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7167), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7171), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7155), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7169), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [156908] = 18, + anon_sym_LT_LT, + anon_sym_GT_GT, + [180594] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3932), 1, + ACTIONS(4257), 1, anon_sym___declspec, - ACTIONS(4262), 1, + ACTIONS(4924), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5772), 1, + ACTIONS(5562), 1, anon_sym_COLON_COLON, - ACTIONS(6825), 1, + ACTIONS(7462), 1, sym_identifier, - STATE(2187), 1, + STATE(2906), 1, sym_template_type, - STATE(2433), 1, + STATE(3145), 1, sym_field_declaration_list, - STATE(4469), 1, + STATE(4746), 1, sym_ms_declspec_modifier, - STATE(4548), 1, + STATE(4826), 1, sym_attribute_declaration, - STATE(5152), 1, + STATE(5425), 1, sym__scope_resolution, - STATE(5413), 1, + STATE(5698), 1, sym_virtual_specifier, - STATE(6321), 1, + STATE(6436), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2145), 2, + STATE(2566), 2, sym__class_name, sym_qualified_type_identifier, - [156965] = 18, + [180651] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3932), 1, + ACTIONS(4257), 1, anon_sym___declspec, - ACTIONS(4156), 1, + ACTIONS(4924), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5794), 1, + ACTIONS(5562), 1, anon_sym_COLON_COLON, - ACTIONS(6855), 1, + ACTIONS(7462), 1, sym_identifier, - STATE(2147), 1, + STATE(2906), 1, sym_template_type, - STATE(2290), 1, + STATE(3144), 1, sym_field_declaration_list, - STATE(4497), 1, + STATE(4744), 1, sym_ms_declspec_modifier, - STATE(4605), 1, + STATE(4829), 1, sym_attribute_declaration, - STATE(5120), 1, + STATE(5425), 1, sym__scope_resolution, - STATE(5254), 1, + STATE(5696), 1, sym_virtual_specifier, - STATE(6045), 1, + STATE(6437), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2072), 2, + STATE(2563), 2, sym__class_name, sym_qualified_type_identifier, - [157022] = 18, - ACTIONS(3), 1, + [180708] = 3, + ACTIONS(7181), 1, sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(3930), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3932), 1, - anon_sym___declspec, - ACTIONS(4262), 1, - anon_sym_LBRACE, - ACTIONS(5143), 1, - anon_sym_COLON, - ACTIONS(5772), 1, - anon_sym_COLON_COLON, - ACTIONS(6825), 1, - sym_identifier, - STATE(2187), 1, - sym_template_type, - STATE(2453), 1, - sym_field_declaration_list, - STATE(4471), 1, - sym_ms_declspec_modifier, - STATE(4618), 1, - sym_attribute_declaration, - STATE(5152), 1, - sym__scope_resolution, - STATE(5331), 1, - sym_virtual_specifier, - STATE(6322), 1, - sym_base_class_clause, - STATE(6663), 1, - sym_dependent_type_identifier, - ACTIONS(5145), 2, - anon_sym_final, - anon_sym_override, - STATE(2123), 2, - sym__class_name, - sym_qualified_type_identifier, - [157079] = 18, + ACTIONS(7245), 1, + anon_sym_LF, + ACTIONS(7247), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + [180735] = 12, + ACTIONS(7181), 1, + sym_comment, + ACTIONS(7435), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7437), 1, + anon_sym_AMP_AMP, + ACTIONS(7439), 1, + anon_sym_PIPE, + ACTIONS(7441), 1, + anon_sym_CARET, + ACTIONS(7443), 1, + anon_sym_AMP, + ACTIONS(7464), 1, + anon_sym_LF, + ACTIONS(7425), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7431), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7445), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7427), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7429), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [180780] = 5, + ACTIONS(7181), 1, + sym_comment, + ACTIONS(7245), 1, + anon_sym_LF, + ACTIONS(7425), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7427), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7247), 13, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + [180811] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3930), 1, + ACTIONS(2434), 1, + anon_sym_COLON_COLON, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3932), 1, + ACTIONS(4257), 1, anon_sym___declspec, - ACTIONS(4262), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5772), 1, - anon_sym_COLON_COLON, - ACTIONS(6825), 1, + ACTIONS(7187), 1, sym_identifier, - STATE(2187), 1, + STATE(3262), 1, sym_template_type, - STATE(2484), 1, + STATE(3514), 1, sym_field_declaration_list, - STATE(4457), 1, + STATE(4727), 1, sym_ms_declspec_modifier, - STATE(4550), 1, + STATE(4884), 1, sym_attribute_declaration, - STATE(5152), 1, + STATE(5394), 1, sym__scope_resolution, - STATE(5332), 1, + STATE(5606), 1, sym_virtual_specifier, - STATE(6324), 1, + STATE(6650), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2108), 2, + STATE(3554), 2, sym__class_name, sym_qualified_type_identifier, - [157136] = 12, - ACTIONS(6923), 1, - sym_comment, - ACTIONS(7157), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7159), 1, - anon_sym_AMP_AMP, - ACTIONS(7161), 1, - anon_sym_PIPE, - ACTIONS(7163), 1, - anon_sym_CARET, - ACTIONS(7165), 1, - anon_sym_AMP, - ACTIONS(7177), 1, - anon_sym_LF, - ACTIONS(7153), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7167), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7171), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7155), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7169), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [157181] = 19, + [180868] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5514), 1, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6789), 1, + ACTIONS(4257), 1, + anon_sym___declspec, + ACTIONS(4924), 1, + anon_sym_LBRACE, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(7179), 1, + ACTIONS(5562), 1, + anon_sym_COLON_COLON, + ACTIONS(7462), 1, + sym_identifier, + STATE(2906), 1, + sym_template_type, + STATE(3143), 1, + sym_field_declaration_list, + STATE(4741), 1, + sym_ms_declspec_modifier, + STATE(4833), 1, + sym_attribute_declaration, + STATE(5425), 1, + sym__scope_resolution, + STATE(5694), 1, + sym_virtual_specifier, + STATE(6438), 1, + sym_base_class_clause, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(5498), 2, + anon_sym_final, + anon_sym_override, + STATE(2560), 2, + sym__class_name, + sym_qualified_type_identifier, + [180925] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7061), 1, + anon_sym_COLON, + ACTIONS(7411), 1, anon_sym_COMMA, - ACTIONS(7181), 1, + ACTIONS(7413), 1, anon_sym_LPAREN2, - ACTIONS(7183), 1, + ACTIONS(7419), 1, + anon_sym_LBRACK, + ACTIONS(7466), 1, anon_sym_SEMI, - ACTIONS(7185), 1, + ACTIONS(7468), 1, anon_sym_LBRACE, - ACTIONS(7187), 1, - anon_sym_LBRACK, - ACTIONS(7189), 1, + ACTIONS(7470), 1, anon_sym_EQ, - ACTIONS(7191), 1, + ACTIONS(7472), 1, anon_sym_try, - STATE(2021), 1, + STATE(2250), 1, sym_try_statement, - STATE(2022), 1, + STATE(2251), 1, sym_delete_method_clause, - STATE(2024), 1, + STATE(2252), 1, sym_default_method_clause, - STATE(2030), 1, + STATE(2253), 1, sym_compound_statement, - STATE(3441), 1, + STATE(4068), 1, sym_parameter_list, - STATE(5055), 1, + STATE(5335), 1, aux_sym_field_declaration_repeat1, - STATE(6660), 1, + STATE(6752), 1, sym_bitfield_clause, - STATE(6661), 1, + STATE(6754), 1, sym_initializer_list, - STATE(4830), 2, + STATE(5083), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [157240] = 3, - ACTIONS(6923), 1, + [180984] = 4, + ACTIONS(7181), 1, sym_comment, - ACTIONS(7059), 1, + ACTIONS(7245), 1, + anon_sym_LF, + ACTIONS(7427), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7247), 15, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + [181013] = 3, + ACTIONS(7181), 1, + sym_comment, + ACTIONS(7309), 1, anon_sym_LF, - ACTIONS(7061), 18, + ACTIONS(7311), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -334121,1006 +367210,1075 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [157267] = 18, + [181040] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3932), 1, + ACTIONS(4257), 1, anon_sym___declspec, - ACTIONS(5141), 1, + ACTIONS(4265), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5345), 1, + ACTIONS(6623), 1, anon_sym_COLON_COLON, - ACTIONS(6993), 1, + ACTIONS(7103), 1, sym_identifier, - STATE(2635), 1, + STATE(2170), 1, sym_template_type, - STATE(3191), 1, + STATE(2702), 1, sym_field_declaration_list, - STATE(4476), 1, + STATE(4754), 1, sym_ms_declspec_modifier, - STATE(4571), 1, + STATE(4794), 1, sym_attribute_declaration, - STATE(5088), 1, + STATE(5412), 1, sym__scope_resolution, - STATE(5400), 1, + STATE(5651), 1, sym_virtual_specifier, - STATE(6347), 1, + STATE(6667), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(3210), 2, + STATE(1946), 2, sym__class_name, sym_qualified_type_identifier, - [157324] = 18, + [181097] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3007), 1, - anon_sym_COLON_COLON, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3932), 1, + ACTIONS(4257), 1, anon_sym___declspec, - ACTIONS(5141), 1, + ACTIONS(4265), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(6993), 1, + ACTIONS(6623), 1, + anon_sym_COLON_COLON, + ACTIONS(7103), 1, sym_identifier, - STATE(2635), 1, + STATE(2170), 1, sym_template_type, - STATE(3180), 1, + STATE(2705), 1, sym_field_declaration_list, - STATE(4478), 1, + STATE(4753), 1, sym_ms_declspec_modifier, - STATE(4555), 1, + STATE(4806), 1, sym_attribute_declaration, - STATE(5131), 1, + STATE(5412), 1, sym__scope_resolution, - STATE(5437), 1, + STATE(5650), 1, sym_virtual_specifier, - STATE(6354), 1, + STATE(6666), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(3240), 2, + STATE(1945), 2, sym__class_name, sym_qualified_type_identifier, - [157381] = 18, + [181154] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3932), 1, + ACTIONS(4257), 1, anon_sym___declspec, - ACTIONS(4446), 1, + ACTIONS(4265), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5337), 1, + ACTIONS(6623), 1, anon_sym_COLON_COLON, - ACTIONS(7149), 1, + ACTIONS(7103), 1, sym_identifier, - STATE(2480), 1, + STATE(2170), 1, sym_template_type, - STATE(2851), 1, + STATE(2707), 1, sym_field_declaration_list, - STATE(4483), 1, + STATE(4752), 1, sym_ms_declspec_modifier, - STATE(4557), 1, + STATE(4873), 1, sym_attribute_declaration, - STATE(5169), 1, + STATE(5412), 1, sym__scope_resolution, - STATE(5471), 1, + STATE(5648), 1, sym_virtual_specifier, - STATE(6204), 1, + STATE(6665), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2269), 2, + STATE(1944), 2, sym__class_name, sym_qualified_type_identifier, - [157438] = 19, + [181211] = 12, + ACTIONS(7181), 1, + sym_comment, + ACTIONS(7435), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7437), 1, + anon_sym_AMP_AMP, + ACTIONS(7439), 1, + anon_sym_PIPE, + ACTIONS(7441), 1, + anon_sym_CARET, + ACTIONS(7443), 1, + anon_sym_AMP, + ACTIONS(7474), 1, + anon_sym_LF, + ACTIONS(7425), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7431), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7445), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7427), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7429), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [181256] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5514), 1, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4012), 1, + anon_sym_LBRACE, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6789), 1, + ACTIONS(4257), 1, + anon_sym___declspec, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(7179), 1, - anon_sym_COMMA, - ACTIONS(7181), 1, - anon_sym_LPAREN2, - ACTIONS(7187), 1, - anon_sym_LBRACK, - ACTIONS(7193), 1, - anon_sym_SEMI, - ACTIONS(7195), 1, - anon_sym_LBRACE, - ACTIONS(7197), 1, - anon_sym_EQ, - ACTIONS(7199), 1, - anon_sym_try, - STATE(1853), 1, - sym_compound_statement, - STATE(1855), 1, - sym_default_method_clause, - STATE(1856), 1, - sym_delete_method_clause, - STATE(1857), 1, - sym_try_statement, - STATE(3441), 1, - sym_parameter_list, - STATE(5058), 1, - aux_sym_field_declaration_repeat1, - STATE(6491), 1, - sym_bitfield_clause, - STATE(6492), 1, - sym_initializer_list, - STATE(4830), 2, + ACTIONS(6673), 1, + anon_sym_COLON_COLON, + ACTIONS(7041), 1, + sym_identifier, + STATE(1875), 1, + sym_template_type, + STATE(2134), 1, + sym_field_declaration_list, + STATE(4724), 1, + sym_ms_declspec_modifier, + STATE(4886), 1, sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [157497] = 18, + STATE(5448), 1, + sym__scope_resolution, + STATE(5713), 1, + sym_virtual_specifier, + STATE(6640), 1, + sym_base_class_clause, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(5498), 2, + anon_sym_final, + anon_sym_override, + STATE(1837), 2, + sym__class_name, + sym_qualified_type_identifier, + [181313] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3007), 1, - anon_sym_COLON_COLON, - ACTIONS(3930), 1, + ACTIONS(4195), 1, + anon_sym_LBRACE, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3932), 1, + ACTIONS(4257), 1, anon_sym___declspec, - ACTIONS(5141), 1, - anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(6993), 1, + ACTIONS(6651), 1, + anon_sym_COLON_COLON, + ACTIONS(7073), 1, sym_identifier, - STATE(2635), 1, + STATE(2062), 1, sym_template_type, - STATE(3183), 1, + STATE(2640), 1, sym_field_declaration_list, - STATE(4466), 1, + STATE(4736), 1, sym_ms_declspec_modifier, - STATE(4540), 1, + STATE(4866), 1, sym_attribute_declaration, - STATE(5131), 1, + STATE(5439), 1, sym__scope_resolution, - STATE(5417), 1, + STATE(5556), 1, sym_virtual_specifier, - STATE(6369), 1, + STATE(6210), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(3241), 2, + STATE(1915), 2, sym__class_name, sym_qualified_type_identifier, - [157554] = 18, + [181370] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3007), 1, - anon_sym_COLON_COLON, - ACTIONS(3930), 1, + ACTIONS(4012), 1, + anon_sym_LBRACE, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3932), 1, + ACTIONS(4257), 1, anon_sym___declspec, - ACTIONS(5141), 1, - anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(6993), 1, + ACTIONS(6673), 1, + anon_sym_COLON_COLON, + ACTIONS(7041), 1, sym_identifier, - STATE(2635), 1, + STATE(1875), 1, sym_template_type, - STATE(3191), 1, + STATE(2136), 1, sym_field_declaration_list, - STATE(4462), 1, + STATE(4728), 1, sym_ms_declspec_modifier, - STATE(4560), 1, + STATE(4882), 1, sym_attribute_declaration, - STATE(5131), 1, + STATE(5448), 1, sym__scope_resolution, - STATE(5400), 1, + STATE(5567), 1, sym_virtual_specifier, - STATE(6347), 1, + STATE(6642), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(3243), 2, + STATE(1836), 2, sym__class_name, sym_qualified_type_identifier, - [157611] = 18, + [181427] = 3, + ACTIONS(7181), 1, + sym_comment, + ACTIONS(7231), 1, + anon_sym_LF, + ACTIONS(7233), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + [181454] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3932), 1, + ACTIONS(4257), 1, anon_sym___declspec, - ACTIONS(5141), 1, + ACTIONS(4731), 1, + anon_sym_COLON_COLON, + ACTIONS(5494), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5345), 1, - anon_sym_COLON_COLON, - ACTIONS(6993), 1, + ACTIONS(7211), 1, sym_identifier, - STATE(2635), 1, + STATE(3262), 1, sym_template_type, - STATE(3183), 1, + STATE(3514), 1, sym_field_declaration_list, - STATE(4484), 1, + STATE(4714), 1, sym_ms_declspec_modifier, - STATE(4570), 1, + STATE(4864), 1, sym_attribute_declaration, - STATE(5088), 1, + STATE(5352), 1, sym__scope_resolution, - STATE(5417), 1, + STATE(5606), 1, sym_virtual_specifier, - STATE(6369), 1, + STATE(6650), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(3239), 2, + STATE(3543), 2, sym__class_name, sym_qualified_type_identifier, - [157668] = 18, + [181511] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3930), 1, + ACTIONS(4195), 1, + anon_sym_LBRACE, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3932), 1, + ACTIONS(4257), 1, anon_sym___declspec, - ACTIONS(4446), 1, - anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5337), 1, + ACTIONS(6651), 1, anon_sym_COLON_COLON, - ACTIONS(7149), 1, + ACTIONS(7073), 1, sym_identifier, - STATE(2480), 1, + STATE(2062), 1, sym_template_type, - STATE(2849), 1, + STATE(2643), 1, sym_field_declaration_list, - STATE(4447), 1, + STATE(4739), 1, sym_ms_declspec_modifier, - STATE(4554), 1, + STATE(4867), 1, sym_attribute_declaration, - STATE(5169), 1, + STATE(5439), 1, sym__scope_resolution, - STATE(5469), 1, + STATE(5570), 1, sym_virtual_specifier, - STATE(6210), 1, + STATE(6208), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2276), 2, + STATE(1916), 2, sym__class_name, sym_qualified_type_identifier, - [157725] = 12, - ACTIONS(6923), 1, + [181568] = 12, + ACTIONS(7181), 1, sym_comment, - ACTIONS(7157), 1, + ACTIONS(7435), 1, anon_sym_PIPE_PIPE, - ACTIONS(7159), 1, + ACTIONS(7437), 1, anon_sym_AMP_AMP, - ACTIONS(7161), 1, + ACTIONS(7439), 1, anon_sym_PIPE, - ACTIONS(7163), 1, + ACTIONS(7441), 1, anon_sym_CARET, - ACTIONS(7165), 1, + ACTIONS(7443), 1, anon_sym_AMP, - ACTIONS(7201), 1, + ACTIONS(7476), 1, anon_sym_LF, - ACTIONS(7153), 2, + ACTIONS(7425), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7167), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7171), 2, + ACTIONS(7431), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7155), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7169), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [157770] = 3, - ACTIONS(6923), 1, - sym_comment, - ACTIONS(6927), 1, - anon_sym_LF, - ACTIONS(6929), 18, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(7445), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7427), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(7429), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [157797] = 18, + [181613] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3930), 1, + ACTIONS(4195), 1, + anon_sym_LBRACE, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3932), 1, + ACTIONS(4257), 1, anon_sym___declspec, - ACTIONS(4060), 1, - anon_sym_COLON_COLON, - ACTIONS(5141), 1, - anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(6947), 1, + ACTIONS(6651), 1, + anon_sym_COLON_COLON, + ACTIONS(7073), 1, sym_identifier, - STATE(2635), 1, + STATE(2062), 1, sym_template_type, - STATE(3191), 1, + STATE(2686), 1, sym_field_declaration_list, - STATE(4477), 1, + STATE(4707), 1, sym_ms_declspec_modifier, - STATE(4569), 1, + STATE(4832), 1, sym_attribute_declaration, - STATE(5072), 1, + STATE(5439), 1, sym__scope_resolution, - STATE(5400), 1, + STATE(5604), 1, sym_virtual_specifier, - STATE(6347), 1, + STATE(6205), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(3210), 2, + STATE(1917), 2, sym__class_name, sym_qualified_type_identifier, - [157854] = 18, + [181670] = 12, + ACTIONS(7181), 1, + sym_comment, + ACTIONS(7435), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7437), 1, + anon_sym_AMP_AMP, + ACTIONS(7439), 1, + anon_sym_PIPE, + ACTIONS(7441), 1, + anon_sym_CARET, + ACTIONS(7443), 1, + anon_sym_AMP, + ACTIONS(7478), 1, + anon_sym_LF, + ACTIONS(7425), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7431), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7445), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7427), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7429), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [181715] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3930), 1, + ACTIONS(2434), 1, + anon_sym_COLON_COLON, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3932), 1, + ACTIONS(4257), 1, anon_sym___declspec, - ACTIONS(4316), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5834), 1, - anon_sym_COLON_COLON, - ACTIONS(6835), 1, + ACTIONS(7187), 1, sym_identifier, - STATE(2267), 1, + STATE(3262), 1, sym_template_type, - STATE(2712), 1, + STATE(3514), 1, sym_field_declaration_list, - STATE(4489), 1, + STATE(4727), 1, sym_ms_declspec_modifier, - STATE(4532), 1, + STATE(4884), 1, sym_attribute_declaration, - STATE(5092), 1, + STATE(5394), 1, sym__scope_resolution, - STATE(5380), 1, + STATE(5606), 1, sym_virtual_specifier, - STATE(6248), 1, + STATE(6650), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2158), 2, + STATE(3269), 2, sym__class_name, sym_qualified_type_identifier, - [157911] = 18, + [181772] = 12, + ACTIONS(7181), 1, + sym_comment, + ACTIONS(7435), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7437), 1, + anon_sym_AMP_AMP, + ACTIONS(7439), 1, + anon_sym_PIPE, + ACTIONS(7441), 1, + anon_sym_CARET, + ACTIONS(7443), 1, + anon_sym_AMP, + ACTIONS(7480), 1, + anon_sym_LF, + ACTIONS(7425), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7431), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7445), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7427), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7429), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [181817] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3932), 1, + ACTIONS(4257), 1, anon_sym___declspec, - ACTIONS(4060), 1, - anon_sym_COLON_COLON, - ACTIONS(5141), 1, + ACTIONS(4417), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(6947), 1, + ACTIONS(5522), 1, + anon_sym_COLON_COLON, + ACTIONS(7203), 1, sym_identifier, - STATE(2635), 1, + STATE(2349), 1, sym_template_type, - STATE(3183), 1, + STATE(2823), 1, sym_field_declaration_list, - STATE(4475), 1, + STATE(4751), 1, sym_ms_declspec_modifier, - STATE(4578), 1, + STATE(4812), 1, sym_attribute_declaration, - STATE(5072), 1, + STATE(5397), 1, sym__scope_resolution, - STATE(5417), 1, + STATE(5704), 1, sym_virtual_specifier, - STATE(6369), 1, + STATE(6432), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(3239), 2, + STATE(2052), 2, sym__class_name, sym_qualified_type_identifier, - [157968] = 18, + [181874] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3932), 1, + ACTIONS(4257), 1, anon_sym___declspec, - ACTIONS(5141), 1, - anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5345), 1, + ACTIONS(5568), 1, anon_sym_COLON_COLON, - ACTIONS(6993), 1, + ACTIONS(6990), 1, + anon_sym_LBRACE, + ACTIONS(7313), 1, sym_identifier, - STATE(2635), 1, + STATE(4380), 1, sym_template_type, - STATE(3180), 1, + STATE(4454), 1, sym_field_declaration_list, - STATE(4485), 1, + STATE(4722), 1, sym_ms_declspec_modifier, - STATE(4566), 1, + STATE(4830), 1, sym_attribute_declaration, - STATE(5088), 1, + STATE(5387), 1, sym__scope_resolution, - STATE(5437), 1, + STATE(5766), 1, sym_virtual_specifier, - STATE(6354), 1, + STATE(6156), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(3238), 2, + STATE(4315), 2, sym__class_name, sym_qualified_type_identifier, - [158025] = 18, + [181931] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3930), 1, + ACTIONS(2434), 1, + anon_sym_COLON_COLON, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3932), 1, + ACTIONS(4257), 1, anon_sym___declspec, - ACTIONS(4262), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5200), 1, - anon_sym_COLON_COLON, - ACTIONS(6957), 1, + ACTIONS(7187), 1, sym_identifier, - STATE(2187), 1, + STATE(3262), 1, sym_template_type, - STATE(2433), 1, + STATE(3502), 1, sym_field_declaration_list, - STATE(4448), 1, + STATE(4743), 1, sym_ms_declspec_modifier, - STATE(4547), 1, + STATE(4807), 1, sym_attribute_declaration, - STATE(5137), 1, + STATE(5394), 1, sym__scope_resolution, - STATE(5413), 1, + STATE(5626), 1, sym_virtual_specifier, - STATE(6321), 1, + STATE(6656), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2145), 2, + STATE(3568), 2, sym__class_name, sym_qualified_type_identifier, - [158082] = 18, + [181988] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3930), 1, + ACTIONS(2434), 1, + anon_sym_COLON_COLON, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3932), 1, + ACTIONS(4257), 1, anon_sym___declspec, - ACTIONS(4262), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5200), 1, - anon_sym_COLON_COLON, - ACTIONS(6957), 1, + ACTIONS(7187), 1, sym_identifier, - STATE(2187), 1, + STATE(3262), 1, sym_template_type, - STATE(2453), 1, + STATE(3433), 1, sym_field_declaration_list, - STATE(4465), 1, + STATE(4708), 1, sym_ms_declspec_modifier, - STATE(4549), 1, + STATE(4861), 1, sym_attribute_declaration, - STATE(5137), 1, + STATE(5394), 1, sym__scope_resolution, - STATE(5331), 1, + STATE(5616), 1, sym_virtual_specifier, - STATE(6322), 1, + STATE(6653), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2123), 2, + STATE(3567), 2, sym__class_name, sym_qualified_type_identifier, - [158139] = 18, + [182045] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3932), 1, + ACTIONS(4257), 1, anon_sym___declspec, - ACTIONS(4262), 1, + ACTIONS(4417), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5200), 1, + ACTIONS(5522), 1, anon_sym_COLON_COLON, - ACTIONS(6957), 1, + ACTIONS(7203), 1, sym_identifier, - STATE(2187), 1, + STATE(2349), 1, sym_template_type, - STATE(2484), 1, + STATE(2863), 1, sym_field_declaration_list, - STATE(4463), 1, + STATE(4750), 1, sym_ms_declspec_modifier, - STATE(4599), 1, + STATE(4822), 1, sym_attribute_declaration, - STATE(5137), 1, + STATE(5397), 1, sym__scope_resolution, - STATE(5332), 1, + STATE(5710), 1, sym_virtual_specifier, - STATE(6324), 1, + STATE(6431), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2108), 2, + STATE(2050), 2, sym__class_name, sym_qualified_type_identifier, - [158196] = 18, + [182102] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3932), 1, + ACTIONS(4257), 1, anon_sym___declspec, - ACTIONS(4060), 1, + ACTIONS(5496), 1, + anon_sym_COLON, + ACTIONS(5568), 1, anon_sym_COLON_COLON, - ACTIONS(5141), 1, + ACTIONS(6990), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, - anon_sym_COLON, - ACTIONS(6947), 1, + ACTIONS(7313), 1, sym_identifier, - STATE(2635), 1, + STATE(4380), 1, sym_template_type, - STATE(3180), 1, + STATE(4455), 1, sym_field_declaration_list, - STATE(4474), 1, + STATE(4731), 1, sym_ms_declspec_modifier, - STATE(4587), 1, + STATE(4827), 1, sym_attribute_declaration, - STATE(5072), 1, + STATE(5387), 1, sym__scope_resolution, - STATE(5437), 1, + STATE(5762), 1, sym_virtual_specifier, - STATE(6354), 1, + STATE(6158), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(3238), 2, + STATE(4316), 2, sym__class_name, sym_qualified_type_identifier, - [158253] = 18, + [182159] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3930), 1, + ACTIONS(2434), 1, + anon_sym_COLON_COLON, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3932), 1, + ACTIONS(4257), 1, anon_sym___declspec, - ACTIONS(4156), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5794), 1, - anon_sym_COLON_COLON, - ACTIONS(6855), 1, + ACTIONS(7187), 1, sym_identifier, - STATE(2147), 1, + STATE(3262), 1, sym_template_type, - STATE(2294), 1, + STATE(3514), 1, sym_field_declaration_list, - STATE(4481), 1, + STATE(4727), 1, sym_ms_declspec_modifier, - STATE(4606), 1, + STATE(4884), 1, sym_attribute_declaration, - STATE(5120), 1, + STATE(5394), 1, sym__scope_resolution, - STATE(5271), 1, + STATE(5606), 1, sym_virtual_specifier, - STATE(5993), 1, + STATE(6650), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2071), 2, + STATE(3566), 2, sym__class_name, sym_qualified_type_identifier, - [158310] = 18, + [182216] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3377), 1, + ACTIONS(2434), 1, anon_sym_COLON_COLON, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3932), 1, + ACTIONS(4257), 1, anon_sym___declspec, - ACTIONS(5141), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(6947), 1, + ACTIONS(7187), 1, sym_identifier, - STATE(2635), 1, + STATE(3262), 1, sym_template_type, - STATE(3183), 1, + STATE(3433), 1, sym_field_declaration_list, - STATE(4480), 1, + STATE(4708), 1, sym_ms_declspec_modifier, - STATE(4613), 1, + STATE(4861), 1, sym_attribute_declaration, - STATE(5144), 1, + STATE(5394), 1, sym__scope_resolution, - STATE(5417), 1, + STATE(5616), 1, sym_virtual_specifier, - STATE(6369), 1, + STATE(6653), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2671), 2, + STATE(3280), 2, sym__class_name, sym_qualified_type_identifier, - [158367] = 18, + [182273] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3377), 1, + ACTIONS(2434), 1, anon_sym_COLON_COLON, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3932), 1, + ACTIONS(4257), 1, anon_sym___declspec, - ACTIONS(5141), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(6947), 1, + ACTIONS(7187), 1, sym_identifier, - STATE(2635), 1, + STATE(3262), 1, sym_template_type, - STATE(3191), 1, + STATE(3502), 1, sym_field_declaration_list, - STATE(4488), 1, + STATE(4743), 1, sym_ms_declspec_modifier, - STATE(4611), 1, + STATE(4807), 1, sym_attribute_declaration, - STATE(5144), 1, + STATE(5394), 1, sym__scope_resolution, - STATE(5400), 1, + STATE(5626), 1, sym_virtual_specifier, - STATE(6347), 1, + STATE(6656), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2649), 2, + STATE(3260), 2, sym__class_name, sym_qualified_type_identifier, - [158424] = 18, + [182330] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3007), 1, - anon_sym_COLON_COLON, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3932), 1, + ACTIONS(4257), 1, anon_sym___declspec, - ACTIONS(5141), 1, + ACTIONS(4731), 1, + anon_sym_COLON_COLON, + ACTIONS(5494), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(6993), 1, + ACTIONS(7211), 1, sym_identifier, - STATE(2635), 1, + STATE(3262), 1, sym_template_type, - STATE(3180), 1, + STATE(3433), 1, sym_field_declaration_list, - STATE(4478), 1, + STATE(4733), 1, sym_ms_declspec_modifier, - STATE(4555), 1, + STATE(4860), 1, sym_attribute_declaration, - STATE(5131), 1, + STATE(5352), 1, sym__scope_resolution, - STATE(5437), 1, + STATE(5616), 1, sym_virtual_specifier, - STATE(6354), 1, + STATE(6653), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2673), 2, + STATE(3544), 2, sym__class_name, sym_qualified_type_identifier, - [158481] = 18, + [182387] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3932), 1, + ACTIONS(4257), 1, anon_sym___declspec, - ACTIONS(4316), 1, + ACTIONS(4731), 1, + anon_sym_COLON_COLON, + ACTIONS(5494), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5834), 1, - anon_sym_COLON_COLON, - ACTIONS(6835), 1, + ACTIONS(7211), 1, sym_identifier, - STATE(2267), 1, + STATE(3262), 1, sym_template_type, - STATE(2718), 1, + STATE(3502), 1, sym_field_declaration_list, - STATE(4487), 1, + STATE(4706), 1, sym_ms_declspec_modifier, - STATE(4543), 1, + STATE(4848), 1, sym_attribute_declaration, - STATE(5092), 1, + STATE(5352), 1, sym__scope_resolution, - STATE(5376), 1, + STATE(5626), 1, sym_virtual_specifier, - STATE(6247), 1, + STATE(6656), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2157), 2, + STATE(3546), 2, sym__class_name, sym_qualified_type_identifier, - [158538] = 18, + [182444] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3932), 1, + ACTIONS(4257), 1, anon_sym___declspec, - ACTIONS(4316), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5834), 1, - anon_sym_COLON_COLON, - ACTIONS(6835), 1, + ACTIONS(7187), 1, sym_identifier, - STATE(2267), 1, + ACTIONS(7482), 1, + anon_sym_COLON_COLON, + STATE(3262), 1, sym_template_type, - STATE(2722), 1, + STATE(3502), 1, sym_field_declaration_list, - STATE(4482), 1, + STATE(4730), 1, sym_ms_declspec_modifier, - STATE(4558), 1, + STATE(4879), 1, sym_attribute_declaration, - STATE(5092), 1, + STATE(5383), 1, sym__scope_resolution, - STATE(5375), 1, + STATE(5626), 1, sym_virtual_specifier, - STATE(6237), 1, + STATE(6656), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2153), 2, + STATE(4981), 2, sym__class_name, sym_qualified_type_identifier, - [158595] = 12, - ACTIONS(6923), 1, - sym_comment, - ACTIONS(7157), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7159), 1, - anon_sym_AMP_AMP, - ACTIONS(7161), 1, - anon_sym_PIPE, - ACTIONS(7163), 1, - anon_sym_CARET, - ACTIONS(7165), 1, - anon_sym_AMP, - ACTIONS(7203), 1, - anon_sym_LF, - ACTIONS(7153), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7167), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7171), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7155), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7169), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [158640] = 18, + [182501] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3930), 1, + ACTIONS(3765), 1, + anon_sym_COLON_COLON, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3932), 1, + ACTIONS(4257), 1, anon_sym___declspec, - ACTIONS(5143), 1, - anon_sym_COLON, - ACTIONS(5281), 1, - anon_sym_COLON_COLON, - ACTIONS(6747), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - ACTIONS(7115), 1, + ACTIONS(5496), 1, + anon_sym_COLON, + ACTIONS(7211), 1, sym_identifier, - STATE(4117), 1, + STATE(3262), 1, sym_template_type, - STATE(4229), 1, + STATE(3502), 1, sym_field_declaration_list, - STATE(4453), 1, + STATE(4740), 1, sym_ms_declspec_modifier, - STATE(4582), 1, + STATE(4842), 1, sym_attribute_declaration, - STATE(5084), 1, + STATE(5354), 1, sym__scope_resolution, - STATE(5289), 1, + STATE(5626), 1, sym_virtual_specifier, - STATE(5832), 1, + STATE(6656), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(4066), 2, + STATE(3260), 2, sym__class_name, sym_qualified_type_identifier, - [158697] = 4, - ACTIONS(6923), 1, + [182558] = 6, + ACTIONS(7181), 1, sym_comment, - ACTIONS(7049), 1, + ACTIONS(7245), 1, anon_sym_LF, - ACTIONS(7155), 3, + ACTIONS(7425), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7431), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7427), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7051), 15, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(7247), 11, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -335132,50 +368290,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [158726] = 18, + [182591] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(3930), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3932), 1, - anon_sym___declspec, - ACTIONS(5141), 1, - anon_sym_LBRACE, - ACTIONS(5143), 1, - anon_sym_COLON, - ACTIONS(6993), 1, - sym_identifier, - ACTIONS(7205), 1, - anon_sym_COLON_COLON, - STATE(2635), 1, - sym_template_type, - STATE(3180), 1, - sym_field_declaration_list, - STATE(4456), 1, - sym_ms_declspec_modifier, - STATE(4531), 1, - sym_attribute_declaration, - STATE(5164), 1, - sym__scope_resolution, - STATE(5437), 1, - sym_virtual_specifier, - STATE(6354), 1, - sym_base_class_clause, - STATE(6663), 1, - sym_dependent_type_identifier, - ACTIONS(5145), 2, - anon_sym_final, - anon_sym_override, - STATE(4701), 2, - sym__class_name, - sym_qualified_type_identifier, - [158783] = 12, - ACTIONS(6923), 1, - sym_comment, + ACTIONS(7155), 1, + anon_sym_SLASH, ACTIONS(7157), 1, anon_sym_PIPE_PIPE, ACTIONS(7159), 1, @@ -335186,149 +368305,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(7165), 1, anon_sym_AMP, - ACTIONS(7207), 1, - anon_sym_LF, - ACTIONS(7153), 2, + ACTIONS(7484), 1, + anon_sym_RPAREN, + ACTIONS(7151), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7153), 2, + anon_sym_STAR, + anon_sym_PERCENT, ACTIONS(7167), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7171), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7155), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7169), 4, + ACTIONS(7169), 2, anon_sym_GT, + anon_sym_LT, + ACTIONS(7171), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, - [158828] = 18, + ACTIONS(7173), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [182640] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3932), 1, + ACTIONS(4257), 1, anon_sym___declspec, - ACTIONS(5141), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(6993), 1, + ACTIONS(7187), 1, sym_identifier, - ACTIONS(7205), 1, + ACTIONS(7482), 1, anon_sym_COLON_COLON, - STATE(2635), 1, + STATE(3262), 1, sym_template_type, - STATE(3183), 1, + STATE(3433), 1, sym_field_declaration_list, - STATE(4455), 1, + STATE(4710), 1, sym_ms_declspec_modifier, - STATE(4572), 1, + STATE(4838), 1, sym_attribute_declaration, - STATE(5164), 1, + STATE(5383), 1, sym__scope_resolution, - STATE(5417), 1, + STATE(5616), 1, sym_virtual_specifier, - STATE(6369), 1, + STATE(6653), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(4707), 2, + STATE(4958), 2, sym__class_name, sym_qualified_type_identifier, - [158885] = 18, + [182697] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3932), 1, + ACTIONS(4257), 1, anon_sym___declspec, - ACTIONS(5143), 1, - anon_sym_COLON, - ACTIONS(5281), 1, - anon_sym_COLON_COLON, - ACTIONS(6747), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - ACTIONS(7115), 1, + ACTIONS(5496), 1, + anon_sym_COLON, + ACTIONS(7187), 1, sym_identifier, - STATE(4117), 1, + ACTIONS(7482), 1, + anon_sym_COLON_COLON, + STATE(3262), 1, sym_template_type, - STATE(4227), 1, + STATE(3514), 1, sym_field_declaration_list, - STATE(4449), 1, + STATE(4756), 1, sym_ms_declspec_modifier, - STATE(4585), 1, + STATE(4798), 1, sym_attribute_declaration, - STATE(5084), 1, + STATE(5383), 1, sym__scope_resolution, - STATE(5287), 1, + STATE(5606), 1, sym_virtual_specifier, - STATE(5831), 1, + STATE(6650), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(4095), 2, + STATE(4959), 2, sym__class_name, sym_qualified_type_identifier, - [158942] = 18, + [182754] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3932), 1, + ACTIONS(4257), 1, anon_sym___declspec, - ACTIONS(5141), 1, - anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(4731), 1, + anon_sym_COLON_COLON, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(6993), 1, + ACTIONS(5739), 1, + anon_sym_LBRACE, + ACTIONS(7211), 1, sym_identifier, - ACTIONS(7205), 1, - anon_sym_COLON_COLON, - STATE(2635), 1, + STATE(3262), 1, sym_template_type, - STATE(3191), 1, + STATE(4046), 1, sym_field_declaration_list, - STATE(4454), 1, + STATE(4757), 1, sym_ms_declspec_modifier, - STATE(4573), 1, + STATE(4802), 1, sym_attribute_declaration, - STATE(5164), 1, + STATE(5352), 1, sym__scope_resolution, - STATE(5400), 1, + STATE(5689), 1, sym_virtual_specifier, - STATE(6347), 1, + STATE(6531), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(4674), 2, + STATE(3457), 2, sym__class_name, sym_qualified_type_identifier, - [158999] = 3, - ACTIONS(6923), 1, + [182811] = 3, + ACTIONS(7181), 1, sym_comment, - ACTIONS(7049), 1, + ACTIONS(7349), 1, anon_sym_LF, - ACTIONS(7051), 18, + ACTIONS(7351), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -335347,1162 +368466,822 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [159026] = 18, + [182838] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3932), 1, + ACTIONS(4257), 1, anon_sym___declspec, - ACTIONS(4060), 1, - anon_sym_COLON_COLON, - ACTIONS(5143), 1, - anon_sym_COLON, - ACTIONS(5504), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - ACTIONS(6947), 1, - sym_identifier, - STATE(2635), 1, - sym_template_type, - STATE(3392), 1, - sym_field_declaration_list, - STATE(4495), 1, - sym_ms_declspec_modifier, - STATE(4608), 1, - sym_attribute_declaration, - STATE(5072), 1, - sym__scope_resolution, - STATE(5265), 1, - sym_virtual_specifier, - STATE(5824), 1, - sym_base_class_clause, - STATE(6663), 1, - sym_dependent_type_identifier, - ACTIONS(5145), 2, - anon_sym_final, - anon_sym_override, - STATE(3136), 2, - sym__class_name, - sym_qualified_type_identifier, - [159083] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(3930), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3932), 1, - anon_sym___declspec, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5281), 1, + ACTIONS(5654), 1, anon_sym_COLON_COLON, - ACTIONS(6747), 1, - anon_sym_LBRACE, - ACTIONS(7115), 1, + ACTIONS(7187), 1, sym_identifier, - STATE(4117), 1, + STATE(3262), 1, sym_template_type, - STATE(4224), 1, + STATE(3502), 1, sym_field_declaration_list, - STATE(4467), 1, + STATE(4723), 1, sym_ms_declspec_modifier, - STATE(4588), 1, + STATE(4889), 1, sym_attribute_declaration, - STATE(5084), 1, + STATE(5416), 1, sym__scope_resolution, - STATE(5285), 1, + STATE(5626), 1, sym_virtual_specifier, - STATE(6086), 1, + STATE(6656), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(4093), 2, + STATE(3546), 2, sym__class_name, sym_qualified_type_identifier, - [159140] = 12, - ACTIONS(6923), 1, + [182895] = 12, + ACTIONS(7181), 1, sym_comment, - ACTIONS(7049), 1, - anon_sym_LF, - ACTIONS(7051), 1, + ACTIONS(7435), 1, anon_sym_PIPE_PIPE, - ACTIONS(7159), 1, + ACTIONS(7437), 1, anon_sym_AMP_AMP, - ACTIONS(7161), 1, + ACTIONS(7439), 1, anon_sym_PIPE, - ACTIONS(7163), 1, + ACTIONS(7441), 1, anon_sym_CARET, - ACTIONS(7165), 1, + ACTIONS(7443), 1, anon_sym_AMP, - ACTIONS(7153), 2, + ACTIONS(7486), 1, + anon_sym_LF, + ACTIONS(7425), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7167), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7171), 2, + ACTIONS(7431), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7155), 3, + ACTIONS(7445), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7427), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7169), 4, + ACTIONS(7429), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [159185] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(5716), 1, - anon_sym_LBRACK, - ACTIONS(5818), 1, - anon_sym_STAR, - ACTIONS(5820), 1, - anon_sym_AMP_AMP, - ACTIONS(5822), 1, - anon_sym_AMP, - STATE(3938), 1, - sym_parameter_list, - STATE(4902), 1, - sym__abstract_declarator, - STATE(4735), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(5573), 7, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - anon_sym_requires, - [159226] = 18, + [182940] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3930), 1, + ACTIONS(3765), 1, + anon_sym_COLON_COLON, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3932), 1, + ACTIONS(4257), 1, anon_sym___declspec, - ACTIONS(4060), 1, - anon_sym_COLON_COLON, - ACTIONS(5143), 1, - anon_sym_COLON, - ACTIONS(5504), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - ACTIONS(6947), 1, + ACTIONS(5496), 1, + anon_sym_COLON, + ACTIONS(7211), 1, sym_identifier, - STATE(2635), 1, + STATE(3262), 1, sym_template_type, - STATE(3390), 1, + STATE(3514), 1, sym_field_declaration_list, - STATE(4496), 1, + STATE(4755), 1, sym_ms_declspec_modifier, - STATE(4609), 1, + STATE(4820), 1, sym_attribute_declaration, - STATE(5072), 1, + STATE(5354), 1, sym__scope_resolution, - STATE(5263), 1, + STATE(5606), 1, sym_virtual_specifier, - STATE(5827), 1, + STATE(6650), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(3137), 2, + STATE(3269), 2, sym__class_name, sym_qualified_type_identifier, - [159283] = 11, - ACTIONS(6923), 1, - sym_comment, - ACTIONS(7049), 1, - anon_sym_LF, - ACTIONS(7161), 1, - anon_sym_PIPE, - ACTIONS(7163), 1, - anon_sym_CARET, - ACTIONS(7165), 1, - anon_sym_AMP, - ACTIONS(7051), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(7153), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7167), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7171), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7155), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7169), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [159326] = 10, - ACTIONS(6923), 1, - sym_comment, - ACTIONS(7049), 1, - anon_sym_LF, - ACTIONS(7163), 1, - anon_sym_CARET, - ACTIONS(7165), 1, - anon_sym_AMP, - ACTIONS(7153), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7167), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7171), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7051), 3, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - ACTIONS(7155), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7169), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [159367] = 9, - ACTIONS(6923), 1, - sym_comment, - ACTIONS(7049), 1, - anon_sym_LF, - ACTIONS(7165), 1, - anon_sym_AMP, - ACTIONS(7153), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7167), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7171), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7155), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7051), 4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(7169), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [159406] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6879), 1, - anon_sym_SLASH, - ACTIONS(6881), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6883), 1, - anon_sym_AMP_AMP, - ACTIONS(6885), 1, - anon_sym_PIPE, - ACTIONS(6887), 1, - anon_sym_CARET, - ACTIONS(6889), 1, - anon_sym_AMP, - ACTIONS(7209), 1, - anon_sym_RPAREN, - ACTIONS(6875), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6877), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6891), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6893), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(6895), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(6897), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [159455] = 8, - ACTIONS(6923), 1, - sym_comment, - ACTIONS(7049), 1, - anon_sym_LF, - ACTIONS(7153), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7167), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7171), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7155), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7169), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7051), 5, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - [159492] = 18, + [182997] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3932), 1, + ACTIONS(4257), 1, anon_sym___declspec, - ACTIONS(4060), 1, - anon_sym_COLON_COLON, - ACTIONS(5143), 1, - anon_sym_COLON, - ACTIONS(5504), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - ACTIONS(6947), 1, + ACTIONS(5496), 1, + anon_sym_COLON, + ACTIONS(5654), 1, + anon_sym_COLON_COLON, + ACTIONS(7187), 1, sym_identifier, - STATE(2635), 1, + STATE(3262), 1, sym_template_type, - STATE(3389), 1, + STATE(3433), 1, sym_field_declaration_list, - STATE(4493), 1, + STATE(4726), 1, sym_ms_declspec_modifier, - STATE(4612), 1, - sym_attribute_declaration, - STATE(5072), 1, - sym__scope_resolution, - STATE(5261), 1, - sym_virtual_specifier, - STATE(5828), 1, - sym_base_class_clause, - STATE(6663), 1, - sym_dependent_type_identifier, - ACTIONS(5145), 2, - anon_sym_final, - anon_sym_override, - STATE(3140), 2, - sym__class_name, - sym_qualified_type_identifier, - [159549] = 7, - ACTIONS(6923), 1, - sym_comment, - ACTIONS(7049), 1, - anon_sym_LF, - ACTIONS(7153), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7171), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7155), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7169), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(7051), 7, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [159584] = 6, - ACTIONS(6923), 1, - sym_comment, - ACTIONS(7049), 1, - anon_sym_LF, - ACTIONS(7153), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7171), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7155), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7051), 11, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [159617] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7211), 1, - anon_sym_LPAREN2, - STATE(2996), 1, - sym_argument_list, - ACTIONS(4370), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4368), 15, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [159648] = 12, - ACTIONS(6923), 1, - sym_comment, - ACTIONS(7157), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7159), 1, - anon_sym_AMP_AMP, - ACTIONS(7161), 1, - anon_sym_PIPE, - ACTIONS(7163), 1, - anon_sym_CARET, - ACTIONS(7165), 1, - anon_sym_AMP, - ACTIONS(7214), 1, - anon_sym_LF, - ACTIONS(7153), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7167), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7171), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7155), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7169), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [159693] = 3, - ACTIONS(6923), 1, - sym_comment, - ACTIONS(7011), 1, - anon_sym_LF, - ACTIONS(7013), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [159720] = 18, + STATE(4885), 1, + sym_attribute_declaration, + STATE(5416), 1, + sym__scope_resolution, + STATE(5616), 1, + sym_virtual_specifier, + STATE(6653), 1, + sym_base_class_clause, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(5498), 2, + anon_sym_final, + anon_sym_override, + STATE(3544), 2, + sym__class_name, + sym_qualified_type_identifier, + [183054] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3932), 1, + ACTIONS(4257), 1, anon_sym___declspec, - ACTIONS(5143), 1, + ACTIONS(5494), 1, + anon_sym_LBRACE, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5345), 1, + ACTIONS(5654), 1, anon_sym_COLON_COLON, - ACTIONS(5504), 1, - anon_sym_LBRACE, - ACTIONS(6993), 1, + ACTIONS(7187), 1, sym_identifier, - STATE(2635), 1, + STATE(3262), 1, sym_template_type, - STATE(3389), 1, + STATE(3514), 1, sym_field_declaration_list, - STATE(4464), 1, + STATE(4729), 1, sym_ms_declspec_modifier, - STATE(4603), 1, + STATE(4877), 1, sym_attribute_declaration, - STATE(5088), 1, + STATE(5416), 1, sym__scope_resolution, - STATE(5261), 1, + STATE(5606), 1, sym_virtual_specifier, - STATE(5828), 1, + STATE(6650), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(3140), 2, + STATE(3543), 2, sym__class_name, sym_qualified_type_identifier, - [159777] = 18, + [183111] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3932), 1, + ACTIONS(4257), 1, anon_sym___declspec, - ACTIONS(5143), 1, + ACTIONS(4417), 1, + anon_sym_LBRACE, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5345), 1, + ACTIONS(5522), 1, anon_sym_COLON_COLON, - ACTIONS(5504), 1, - anon_sym_LBRACE, - ACTIONS(6993), 1, + ACTIONS(7203), 1, sym_identifier, - STATE(2635), 1, + STATE(2349), 1, sym_template_type, - STATE(3390), 1, + STATE(2871), 1, sym_field_declaration_list, - STATE(4450), 1, + STATE(4745), 1, sym_ms_declspec_modifier, - STATE(4621), 1, + STATE(4831), 1, sym_attribute_declaration, - STATE(5088), 1, + STATE(5397), 1, sym__scope_resolution, - STATE(5263), 1, + STATE(5714), 1, sym_virtual_specifier, - STATE(5827), 1, + STATE(6430), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(3137), 2, + STATE(2028), 2, sym__class_name, sym_qualified_type_identifier, - [159834] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5514), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6789), 1, - anon_sym_COLON, - ACTIONS(7179), 1, - anon_sym_COMMA, - ACTIONS(7181), 1, - anon_sym_LPAREN2, - ACTIONS(7187), 1, - anon_sym_LBRACK, - ACTIONS(7216), 1, - anon_sym_SEMI, - ACTIONS(7218), 1, - anon_sym_LBRACE, - ACTIONS(7220), 1, - anon_sym_EQ, - ACTIONS(7222), 1, - anon_sym_try, - STATE(1947), 1, - sym_compound_statement, - STATE(1948), 1, - sym_default_method_clause, - STATE(1949), 1, - sym_delete_method_clause, - STATE(1950), 1, - sym_try_statement, - STATE(3441), 1, - sym_parameter_list, - STATE(5030), 1, - aux_sym_field_declaration_repeat1, - STATE(6701), 1, - sym_bitfield_clause, - STATE(6702), 1, - sym_initializer_list, - STATE(4830), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [159893] = 18, + [183168] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3932), 1, + ACTIONS(4257), 1, anon_sym___declspec, - ACTIONS(5143), 1, - anon_sym_COLON, - ACTIONS(5345), 1, + ACTIONS(4731), 1, anon_sym_COLON_COLON, - ACTIONS(5504), 1, + ACTIONS(5496), 1, + anon_sym_COLON, + ACTIONS(5739), 1, anon_sym_LBRACE, - ACTIONS(6993), 1, + ACTIONS(7211), 1, sym_identifier, - STATE(2635), 1, + STATE(3262), 1, sym_template_type, - STATE(3392), 1, + STATE(4048), 1, sym_field_declaration_list, - STATE(4451), 1, + STATE(4758), 1, sym_ms_declspec_modifier, - STATE(4619), 1, + STATE(4808), 1, sym_attribute_declaration, - STATE(5088), 1, + STATE(5352), 1, sym__scope_resolution, - STATE(5265), 1, + STATE(5699), 1, sym_virtual_specifier, - STATE(5824), 1, + STATE(6532), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(3136), 2, + STATE(3455), 2, sym__class_name, sym_qualified_type_identifier, - [159950] = 3, - ACTIONS(6923), 1, + [183225] = 12, + ACTIONS(7181), 1, sym_comment, - ACTIONS(7031), 1, - anon_sym_LF, - ACTIONS(7033), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(7435), 1, anon_sym_PIPE_PIPE, + ACTIONS(7437), 1, anon_sym_AMP_AMP, + ACTIONS(7439), 1, anon_sym_PIPE, + ACTIONS(7441), 1, anon_sym_CARET, + ACTIONS(7443), 1, anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [159977] = 3, - ACTIONS(6923), 1, - sym_comment, - ACTIONS(7099), 1, + ACTIONS(7488), 1, anon_sym_LF, - ACTIONS(7101), 18, + ACTIONS(7425), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7431), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7445), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7427), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(7429), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [160004] = 18, + [183270] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3007), 1, - anon_sym_COLON_COLON, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3932), 1, + ACTIONS(4257), 1, anon_sym___declspec, - ACTIONS(5141), 1, - anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(4731), 1, + anon_sym_COLON_COLON, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(6993), 1, + ACTIONS(5739), 1, + anon_sym_LBRACE, + ACTIONS(7211), 1, sym_identifier, - STATE(2635), 1, + STATE(3262), 1, sym_template_type, - STATE(3180), 1, + STATE(4051), 1, sym_field_declaration_list, - STATE(4478), 1, + STATE(4735), 1, sym_ms_declspec_modifier, - STATE(4555), 1, + STATE(4823), 1, sym_attribute_declaration, - STATE(5131), 1, + STATE(5352), 1, sym__scope_resolution, - STATE(5437), 1, + STATE(5711), 1, sym_virtual_specifier, - STATE(6354), 1, + STATE(6533), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(3209), 2, + STATE(3453), 2, sym__class_name, sym_qualified_type_identifier, - [160061] = 18, + [183327] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3007), 1, + ACTIONS(2434), 1, anon_sym_COLON_COLON, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3932), 1, + ACTIONS(4257), 1, anon_sym___declspec, - ACTIONS(5141), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(6993), 1, + ACTIONS(7187), 1, sym_identifier, - STATE(2635), 1, + STATE(3262), 1, sym_template_type, - STATE(3183), 1, + STATE(3514), 1, sym_field_declaration_list, - STATE(4466), 1, + STATE(4727), 1, sym_ms_declspec_modifier, - STATE(4540), 1, + STATE(4884), 1, sym_attribute_declaration, - STATE(5131), 1, + STATE(5394), 1, sym__scope_resolution, - STATE(5417), 1, + STATE(5606), 1, sym_virtual_specifier, - STATE(6369), 1, + STATE(6650), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(3226), 2, + STATE(3562), 2, sym__class_name, sym_qualified_type_identifier, - [160118] = 14, + [183384] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6879), 1, - anon_sym_SLASH, - ACTIONS(6881), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6883), 1, - anon_sym_AMP_AMP, - ACTIONS(6885), 1, - anon_sym_PIPE, - ACTIONS(6887), 1, - anon_sym_CARET, - ACTIONS(6889), 1, - anon_sym_AMP, - ACTIONS(7224), 1, - anon_sym_RPAREN, - ACTIONS(6875), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6877), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6891), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6893), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(6895), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(6897), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [160167] = 18, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4255), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4257), 1, + anon_sym___declspec, + ACTIONS(5496), 1, + anon_sym_COLON, + ACTIONS(5654), 1, + anon_sym_COLON_COLON, + ACTIONS(5739), 1, + anon_sym_LBRACE, + ACTIONS(7187), 1, + sym_identifier, + STATE(3262), 1, + sym_template_type, + STATE(4051), 1, + sym_field_declaration_list, + STATE(4738), 1, + sym_ms_declspec_modifier, + STATE(4851), 1, + sym_attribute_declaration, + STATE(5416), 1, + sym__scope_resolution, + STATE(5711), 1, + sym_virtual_specifier, + STATE(6533), 1, + sym_base_class_clause, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(5498), 2, + anon_sym_final, + anon_sym_override, + STATE(3453), 2, + sym__class_name, + sym_qualified_type_identifier, + [183441] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3007), 1, - anon_sym_COLON_COLON, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3932), 1, + ACTIONS(4257), 1, anon_sym___declspec, - ACTIONS(5141), 1, - anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(6993), 1, + ACTIONS(5654), 1, + anon_sym_COLON_COLON, + ACTIONS(5739), 1, + anon_sym_LBRACE, + ACTIONS(7187), 1, sym_identifier, - STATE(2635), 1, + STATE(3262), 1, sym_template_type, - STATE(3191), 1, + STATE(4048), 1, sym_field_declaration_list, - STATE(4462), 1, + STATE(4742), 1, sym_ms_declspec_modifier, - STATE(4560), 1, + STATE(4844), 1, sym_attribute_declaration, - STATE(5131), 1, + STATE(5416), 1, sym__scope_resolution, - STATE(5400), 1, + STATE(5699), 1, sym_virtual_specifier, - STATE(6347), 1, + STATE(6532), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(3227), 2, + STATE(3455), 2, sym__class_name, sym_qualified_type_identifier, - [160224] = 12, - ACTIONS(6923), 1, - sym_comment, - ACTIONS(7157), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7159), 1, - anon_sym_AMP_AMP, - ACTIONS(7161), 1, - anon_sym_PIPE, - ACTIONS(7163), 1, - anon_sym_CARET, - ACTIONS(7165), 1, - anon_sym_AMP, - ACTIONS(7226), 1, - anon_sym_LF, - ACTIONS(7153), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7167), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7171), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7155), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7169), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [160269] = 3, - ACTIONS(4862), 1, - anon_sym_LF, - ACTIONS(6923), 1, + [183498] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(4864), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [160296] = 10, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4255), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4257), 1, + anon_sym___declspec, + ACTIONS(5496), 1, + anon_sym_COLON, + ACTIONS(5654), 1, + anon_sym_COLON_COLON, + ACTIONS(5739), 1, + anon_sym_LBRACE, + ACTIONS(7187), 1, + sym_identifier, + STATE(3262), 1, + sym_template_type, + STATE(4046), 1, + sym_field_declaration_list, + STATE(4749), 1, + sym_ms_declspec_modifier, + STATE(4824), 1, + sym_attribute_declaration, + STATE(5416), 1, + sym__scope_resolution, + STATE(5689), 1, + sym_virtual_specifier, + STATE(6531), 1, + sym_base_class_clause, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(5498), 2, + anon_sym_final, + anon_sym_override, + STATE(3457), 2, + sym__class_name, + sym_qualified_type_identifier, + [183555] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, + ACTIONS(6547), 1, anon_sym_LPAREN2, - ACTIONS(5716), 1, + ACTIONS(6555), 1, anon_sym_LBRACK, - ACTIONS(6082), 1, + ACTIONS(6738), 1, anon_sym_STAR, - ACTIONS(6084), 1, + ACTIONS(6740), 1, anon_sym_AMP_AMP, - ACTIONS(6086), 1, + ACTIONS(6742), 1, anon_sym_AMP, - STATE(3989), 1, + STATE(4235), 1, sym_parameter_list, - STATE(4950), 1, + STATE(5280), 1, sym__abstract_declarator, - STATE(4735), 5, + STATE(5059), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(5573), 6, + ACTIONS(5786), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LBRACK_LBRACK, anon_sym_EQ, anon_sym_GT2, anon_sym_requires, - [160336] = 16, + [183595] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(6314), 1, + sym_identifier, + ACTIONS(6316), 1, + anon_sym_LPAREN2, + ACTIONS(6318), 1, + anon_sym_STAR, + ACTIONS(6320), 1, + anon_sym_AMP_AMP, + ACTIONS(6322), 1, + anon_sym_AMP, + STATE(4999), 1, + sym__field_declarator, + STATE(6823), 1, + sym_ms_based_modifier, + STATE(5185), 8, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + sym_reference_field_declarator, + sym_template_method, + sym_operator_name, + [183636] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4446), 1, + ACTIONS(4731), 1, + anon_sym_COLON_COLON, + ACTIONS(5494), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5337), 1, - anon_sym_COLON_COLON, - ACTIONS(7149), 1, + ACTIONS(7211), 1, sym_identifier, - STATE(2480), 1, + STATE(3262), 1, sym_template_type, - STATE(2895), 1, + STATE(3456), 1, sym_field_declaration_list, - STATE(4575), 1, + STATE(4880), 1, sym_attribute_declaration, - STATE(5169), 1, + STATE(5352), 1, sym__scope_resolution, - STATE(5514), 1, + STATE(5675), 1, sym_virtual_specifier, - STATE(6084), 1, + STATE(6538), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2260), 2, + STATE(3540), 2, sym__class_name, sym_qualified_type_identifier, - [160387] = 16, + [183687] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3930), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4262), 1, + ACTIONS(4195), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(4255), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5200), 1, + ACTIONS(6651), 1, anon_sym_COLON_COLON, - ACTIONS(6957), 1, + ACTIONS(7073), 1, sym_identifier, - STATE(2187), 1, + STATE(2062), 1, sym_template_type, - STATE(2347), 1, + STATE(2606), 1, sym_field_declaration_list, - STATE(4576), 1, + STATE(4856), 1, sym_attribute_declaration, - STATE(5137), 1, + STATE(5439), 1, sym__scope_resolution, - STATE(5399), 1, + STATE(5695), 1, sym_virtual_specifier, - STATE(6352), 1, + STATE(6186), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2143), 2, + STATE(1908), 2, sym__class_name, sym_qualified_type_identifier, - [160438] = 16, + [183738] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3930), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5143), 1, - anon_sym_COLON, - ACTIONS(5281), 1, + ACTIONS(2434), 1, anon_sym_COLON_COLON, - ACTIONS(6747), 1, + ACTIONS(4255), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5494), 1, anon_sym_LBRACE, - ACTIONS(7115), 1, + ACTIONS(5496), 1, + anon_sym_COLON, + ACTIONS(7187), 1, sym_identifier, - STATE(4117), 1, + STATE(3262), 1, sym_template_type, - STATE(4264), 1, + STATE(3460), 1, sym_field_declaration_list, - STATE(4592), 1, + STATE(4840), 1, sym_attribute_declaration, - STATE(5084), 1, + STATE(5394), 1, sym__scope_resolution, - STATE(5272), 1, + STATE(5792), 1, sym_virtual_specifier, - STATE(5816), 1, + STATE(6535), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(4086), 2, + STATE(3285), 2, sym__class_name, sym_qualified_type_identifier, - [160489] = 16, + [183789] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3757), 1, + anon_sym_LPAREN2, + ACTIONS(6775), 1, + anon_sym_STAR, + ACTIONS(6777), 1, + anon_sym_AMP_AMP, + ACTIONS(6779), 1, + anon_sym_AMP, + ACTIONS(6781), 1, + anon_sym_LBRACK, + STATE(4300), 1, + sym_parameter_list, + STATE(5327), 1, + sym__abstract_declarator, + ACTIONS(5786), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + anon_sym_requires, + STATE(5127), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [183828] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5143), 1, + ACTIONS(5494), 1, + anon_sym_LBRACE, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5345), 1, + ACTIONS(7187), 1, + sym_identifier, + ACTIONS(7482), 1, anon_sym_COLON_COLON, - ACTIONS(5504), 1, + STATE(3262), 1, + sym_template_type, + STATE(3460), 1, + sym_field_declaration_list, + STATE(4849), 1, + sym_attribute_declaration, + STATE(5383), 1, + sym__scope_resolution, + STATE(5792), 1, + sym_virtual_specifier, + STATE(6535), 1, + sym_base_class_clause, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(5498), 2, + anon_sym_final, + anon_sym_override, + STATE(4955), 2, + sym__class_name, + sym_qualified_type_identifier, + [183879] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4255), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4924), 1, anon_sym_LBRACE, - ACTIONS(6993), 1, + ACTIONS(5496), 1, + anon_sym_COLON, + ACTIONS(6595), 1, + anon_sym_COLON_COLON, + ACTIONS(7083), 1, sym_identifier, - STATE(2635), 1, + STATE(2906), 1, sym_template_type, - STATE(3334), 1, + STATE(3152), 1, sym_field_declaration_list, - STATE(4616), 1, + STATE(4837), 1, sym_attribute_declaration, - STATE(5088), 1, + STATE(5386), 1, sym__scope_resolution, - STATE(5306), 1, + STATE(5744), 1, sym_virtual_specifier, - STATE(5901), 1, + STATE(6421), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(3131), 2, + STATE(2571), 2, sym__class_name, sym_qualified_type_identifier, - [160540] = 16, + [183930] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5143), 1, + ACTIONS(4417), 1, + anon_sym_LBRACE, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5345), 1, + ACTIONS(6609), 1, anon_sym_COLON_COLON, - ACTIONS(5504), 1, - anon_sym_LBRACE, - ACTIONS(6993), 1, + ACTIONS(7093), 1, sym_identifier, - STATE(2635), 1, + STATE(2349), 1, sym_template_type, - STATE(3336), 1, + STATE(2917), 1, sym_field_declaration_list, - STATE(4615), 1, + STATE(4793), 1, sym_attribute_declaration, - STATE(5088), 1, + STATE(5374), 1, sym__scope_resolution, - STATE(5309), 1, + STATE(5588), 1, sym_virtual_specifier, - STATE(5918), 1, + STATE(6485), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(3129), 2, + STATE(2141), 2, sym__class_name, sym_qualified_type_identifier, - [160591] = 11, + [183981] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(1497), 1, + ACTIONS(1501), 1, anon_sym_operator, - ACTIONS(5659), 1, - sym_identifier, - ACTIONS(5661), 1, + ACTIONS(6316), 1, anon_sym_LPAREN2, - ACTIONS(5663), 1, + ACTIONS(6326), 1, + sym_identifier, + ACTIONS(6328), 1, anon_sym_STAR, - ACTIONS(5665), 1, + ACTIONS(6330), 1, anon_sym_AMP_AMP, - ACTIONS(5667), 1, + ACTIONS(6332), 1, anon_sym_AMP, - STATE(5071), 1, + STATE(5404), 1, sym__field_declarator, - STATE(6690), 1, + STATE(6785), 1, sym_ms_based_modifier, - STATE(4890), 8, + STATE(5185), 8, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, @@ -336511,5974 +369290,6173 @@ static const uint16_t ts_small_parse_table[] = { sym_reference_field_declarator, sym_template_method, sym_operator_name, - [160632] = 16, + [184022] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5143), 1, - anon_sym_COLON, - ACTIONS(5281), 1, + ACTIONS(4731), 1, anon_sym_COLON_COLON, - ACTIONS(6747), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - ACTIONS(7115), 1, + ACTIONS(5496), 1, + anon_sym_COLON, + ACTIONS(7211), 1, sym_identifier, - STATE(4117), 1, + STATE(3262), 1, sym_template_type, - STATE(4202), 1, + STATE(3466), 1, sym_field_declaration_list, - STATE(4591), 1, + STATE(4883), 1, sym_attribute_declaration, - STATE(5084), 1, + STATE(5352), 1, sym__scope_resolution, - STATE(5275), 1, + STATE(5669), 1, sym_virtual_specifier, - STATE(5812), 1, + STATE(6526), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(4089), 2, + STATE(3536), 2, sym__class_name, sym_qualified_type_identifier, - [160683] = 16, + [184073] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3930), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5141), 1, + ACTIONS(4065), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(4255), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(6993), 1, - sym_identifier, - ACTIONS(7205), 1, + ACTIONS(6573), 1, anon_sym_COLON_COLON, - STATE(2635), 1, + ACTIONS(7063), 1, + sym_identifier, + STATE(1893), 1, sym_template_type, - STATE(3182), 1, + STATE(2401), 1, sym_field_declaration_list, - STATE(4541), 1, + STATE(4868), 1, sym_attribute_declaration, - STATE(5164), 1, + STATE(5441), 1, sym__scope_resolution, - STATE(5312), 1, + STATE(5526), 1, sym_virtual_specifier, - STATE(5879), 1, + STATE(6325), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(4688), 2, + STATE(1848), 2, sym__class_name, sym_qualified_type_identifier, - [160734] = 16, + [184124] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(6314), 1, + sym_identifier, + ACTIONS(6316), 1, + anon_sym_LPAREN2, + ACTIONS(6318), 1, + anon_sym_STAR, + ACTIONS(6320), 1, + anon_sym_AMP_AMP, + ACTIONS(6322), 1, + anon_sym_AMP, + STATE(5107), 1, + sym__field_declarator, + STATE(6823), 1, + sym_ms_based_modifier, + STATE(5185), 8, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + sym_reference_field_declarator, + sym_template_method, + sym_operator_name, + [184165] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5141), 1, + ACTIONS(4417), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(6993), 1, - sym_identifier, - ACTIONS(7205), 1, + ACTIONS(6609), 1, anon_sym_COLON_COLON, - STATE(2635), 1, + ACTIONS(7093), 1, + sym_identifier, + STATE(2349), 1, sym_template_type, - STATE(3167), 1, + STATE(2896), 1, sym_field_declaration_list, - STATE(4536), 1, + STATE(4855), 1, sym_attribute_declaration, - STATE(5164), 1, + STATE(5374), 1, sym__scope_resolution, - STATE(5393), 1, + STATE(5600), 1, sym_virtual_specifier, - STATE(5942), 1, + STATE(6479), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(4687), 2, + STATE(2164), 2, sym__class_name, sym_qualified_type_identifier, - [160785] = 16, + [184216] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3930), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5141), 1, + ACTIONS(4012), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(4255), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(6993), 1, - sym_identifier, - ACTIONS(7205), 1, + ACTIONS(6673), 1, anon_sym_COLON_COLON, - STATE(2635), 1, + ACTIONS(7041), 1, + sym_identifier, + STATE(1875), 1, sym_template_type, - STATE(3175), 1, + STATE(2101), 1, sym_field_declaration_list, - STATE(4551), 1, + STATE(4870), 1, sym_attribute_declaration, - STATE(5164), 1, + STATE(5448), 1, sym__scope_resolution, - STATE(5419), 1, + STATE(5523), 1, sym_virtual_specifier, - STATE(6004), 1, + STATE(6607), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(4682), 2, + STATE(1833), 2, sym__class_name, sym_qualified_type_identifier, - [160836] = 16, + [184267] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3930), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4262), 1, + ACTIONS(4065), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(4255), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5772), 1, + ACTIONS(6573), 1, anon_sym_COLON_COLON, - ACTIONS(6825), 1, + ACTIONS(7063), 1, sym_identifier, - STATE(2187), 1, + STATE(1893), 1, sym_template_type, - STATE(2374), 1, + STATE(2408), 1, sym_field_declaration_list, - STATE(4581), 1, + STATE(4865), 1, sym_attribute_declaration, - STATE(5152), 1, + STATE(5441), 1, sym__scope_resolution, - STATE(5411), 1, + STATE(5535), 1, sym_virtual_specifier, - STATE(6342), 1, + STATE(6322), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2127), 2, + STATE(1849), 2, sym__class_name, sym_qualified_type_identifier, - [160887] = 16, + [184318] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4211), 1, + ACTIONS(4924), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5870), 1, + ACTIONS(6595), 1, anon_sym_COLON_COLON, - ACTIONS(6801), 1, + ACTIONS(7083), 1, sym_identifier, - STATE(2175), 1, + STATE(2906), 1, sym_template_type, - STATE(2440), 1, + STATE(3157), 1, sym_field_declaration_list, - STATE(4563), 1, + STATE(4863), 1, sym_attribute_declaration, - STATE(5168), 1, + STATE(5386), 1, sym__scope_resolution, - STATE(5406), 1, + STATE(5752), 1, sym_virtual_specifier, - STATE(6186), 1, + STATE(6417), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2095), 2, + STATE(2507), 2, sym__class_name, sym_qualified_type_identifier, - [160938] = 16, + [184369] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4211), 1, + ACTIONS(4924), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5870), 1, + ACTIONS(6595), 1, anon_sym_COLON_COLON, - ACTIONS(6801), 1, + ACTIONS(7083), 1, sym_identifier, - STATE(2175), 1, + STATE(2906), 1, sym_template_type, - STATE(2452), 1, + STATE(3154), 1, sym_field_declaration_list, - STATE(4561), 1, + STATE(4845), 1, sym_attribute_declaration, - STATE(5168), 1, + STATE(5386), 1, sym__scope_resolution, - STATE(5409), 1, + STATE(5748), 1, sym_virtual_specifier, - STATE(6188), 1, + STATE(6419), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2104), 2, + STATE(2513), 2, sym__class_name, sym_qualified_type_identifier, - [160989] = 16, + [184420] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4211), 1, - anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5870), 1, + ACTIONS(5568), 1, anon_sym_COLON_COLON, - ACTIONS(6801), 1, + ACTIONS(6990), 1, + anon_sym_LBRACE, + ACTIONS(7313), 1, sym_identifier, - STATE(2175), 1, + STATE(4380), 1, sym_template_type, - STATE(2455), 1, + STATE(4470), 1, sym_field_declaration_list, - STATE(4559), 1, + STATE(4819), 1, sym_attribute_declaration, - STATE(5168), 1, + STATE(5387), 1, sym__scope_resolution, - STATE(5415), 1, + STATE(5736), 1, sym_virtual_specifier, - STATE(6190), 1, + STATE(6174), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2097), 2, + STATE(4330), 2, sym__class_name, sym_qualified_type_identifier, - [161040] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1497), 1, - anon_sym_operator, - ACTIONS(5661), 1, - anon_sym_LPAREN2, - ACTIONS(5669), 1, - sym_identifier, - ACTIONS(5671), 1, - anon_sym_STAR, - ACTIONS(5673), 1, - anon_sym_AMP_AMP, - ACTIONS(5675), 1, - anon_sym_AMP, - STATE(4841), 1, - sym__field_declarator, - STATE(6560), 1, - sym_ms_based_modifier, - STATE(4890), 8, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - sym_reference_field_declarator, - sym_template_method, - sym_operator_name, - [161081] = 16, + [184471] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3007), 1, - anon_sym_COLON_COLON, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5141), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(6993), 1, + ACTIONS(5654), 1, + anon_sym_COLON_COLON, + ACTIONS(7187), 1, sym_identifier, - STATE(2635), 1, + STATE(3262), 1, sym_template_type, - STATE(3182), 1, + STATE(3456), 1, sym_field_declaration_list, - STATE(4574), 1, + STATE(4809), 1, sym_attribute_declaration, - STATE(5131), 1, + STATE(5416), 1, sym__scope_resolution, - STATE(5312), 1, + STATE(5675), 1, sym_virtual_specifier, - STATE(5879), 1, + STATE(6538), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2675), 2, + STATE(3540), 2, sym__class_name, sym_qualified_type_identifier, - [161132] = 16, + [184522] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3930), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4262), 1, + ACTIONS(4012), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(4255), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5200), 1, + ACTIONS(6673), 1, anon_sym_COLON_COLON, - ACTIONS(6957), 1, + ACTIONS(7041), 1, sym_identifier, - STATE(2187), 1, + STATE(1875), 1, sym_template_type, - STATE(2374), 1, + STATE(2105), 1, sym_field_declaration_list, - STATE(4580), 1, + STATE(4871), 1, sym_attribute_declaration, - STATE(5137), 1, + STATE(5448), 1, sym__scope_resolution, - STATE(5411), 1, + STATE(5586), 1, sym_virtual_specifier, - STATE(6342), 1, + STATE(6610), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2127), 2, + STATE(1835), 2, sym__class_name, sym_qualified_type_identifier, - [161183] = 16, + [184573] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5143), 1, + ACTIONS(4417), 1, + anon_sym_LBRACE, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5345), 1, + ACTIONS(6609), 1, anon_sym_COLON_COLON, - ACTIONS(5504), 1, - anon_sym_LBRACE, - ACTIONS(6993), 1, + ACTIONS(7093), 1, sym_identifier, - STATE(2635), 1, + STATE(2349), 1, sym_template_type, - STATE(3353), 1, + STATE(2874), 1, sym_field_declaration_list, - STATE(4617), 1, + STATE(4862), 1, sym_attribute_declaration, - STATE(5088), 1, + STATE(5374), 1, sym__scope_resolution, - STATE(5302), 1, + STATE(5621), 1, sym_virtual_specifier, - STATE(5825), 1, + STATE(6464), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(3135), 2, + STATE(2152), 2, sym__class_name, sym_qualified_type_identifier, - [161234] = 16, + [184624] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4262), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5200), 1, + ACTIONS(5654), 1, anon_sym_COLON_COLON, - ACTIONS(6957), 1, + ACTIONS(7187), 1, sym_identifier, - STATE(2187), 1, + STATE(3262), 1, sym_template_type, - STATE(2328), 1, + STATE(3460), 1, sym_field_declaration_list, - STATE(4579), 1, + STATE(4805), 1, sym_attribute_declaration, - STATE(5137), 1, + STATE(5416), 1, sym__scope_resolution, - STATE(5404), 1, + STATE(5792), 1, sym_virtual_specifier, - STATE(6316), 1, + STATE(6535), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2105), 2, + STATE(3537), 2, sym__class_name, sym_qualified_type_identifier, - [161285] = 16, + [184675] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3007), 1, + ACTIONS(2434), 1, anon_sym_COLON_COLON, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5141), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(6993), 1, + ACTIONS(7187), 1, sym_identifier, - STATE(2635), 1, + STATE(3262), 1, sym_template_type, - STATE(3167), 1, + STATE(3466), 1, sym_field_declaration_list, - STATE(4567), 1, + STATE(4843), 1, sym_attribute_declaration, - STATE(5131), 1, + STATE(5394), 1, sym__scope_resolution, - STATE(5393), 1, + STATE(5669), 1, sym_virtual_specifier, - STATE(5942), 1, + STATE(6526), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2684), 2, + STATE(3286), 2, sym__class_name, sym_qualified_type_identifier, - [161336] = 16, + [184726] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3930), 1, + ACTIONS(4012), 1, + anon_sym_LBRACE, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5281), 1, + ACTIONS(6673), 1, anon_sym_COLON_COLON, - ACTIONS(6747), 1, - anon_sym_LBRACE, - ACTIONS(7115), 1, + ACTIONS(7041), 1, sym_identifier, - STATE(4117), 1, + STATE(1875), 1, sym_template_type, - STATE(4274), 1, + STATE(2108), 1, sym_field_declaration_list, - STATE(4597), 1, + STATE(4876), 1, sym_attribute_declaration, - STATE(5084), 1, + STATE(5448), 1, sym__scope_resolution, - STATE(5267), 1, + STATE(5589), 1, sym_virtual_specifier, - STATE(5820), 1, + STATE(6613), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(4065), 2, + STATE(1832), 2, sym__class_name, sym_qualified_type_identifier, - [161387] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5679), 1, - anon_sym_LPAREN2, - STATE(2800), 1, - sym_argument_list, - ACTIONS(4370), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(4368), 13, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACK, - anon_sym_volatile, - anon_sym_restrict, - anon_sym__Atomic, - anon_sym_mutable, - anon_sym_constexpr, - anon_sym_constinit, - anon_sym_consteval, - sym_auto, - anon_sym_decltype, - [161416] = 16, + [184777] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4262), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5772), 1, + ACTIONS(5654), 1, anon_sym_COLON_COLON, - ACTIONS(6825), 1, + ACTIONS(7187), 1, sym_identifier, - STATE(2187), 1, + STATE(3262), 1, sym_template_type, - STATE(2347), 1, + STATE(3466), 1, sym_field_declaration_list, - STATE(4590), 1, + STATE(4800), 1, sym_attribute_declaration, - STATE(5152), 1, + STATE(5416), 1, sym__scope_resolution, - STATE(5399), 1, + STATE(5669), 1, sym_virtual_specifier, - STATE(6352), 1, + STATE(6526), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2143), 2, + STATE(3536), 2, sym__class_name, sym_qualified_type_identifier, - [161467] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3369), 1, - anon_sym_LPAREN2, - ACTIONS(6262), 1, - anon_sym_STAR, - ACTIONS(6264), 1, - anon_sym_AMP_AMP, - ACTIONS(6266), 1, - anon_sym_AMP, - ACTIONS(6268), 1, - anon_sym_LBRACK, - STATE(4034), 1, - sym_parameter_list, - STATE(5053), 1, - sym__abstract_declarator, - ACTIONS(5573), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - anon_sym_requires, - STATE(4832), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [161506] = 16, + [184828] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4262), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5772), 1, - anon_sym_COLON_COLON, - ACTIONS(6825), 1, + ACTIONS(7187), 1, sym_identifier, - STATE(2187), 1, + ACTIONS(7482), 1, + anon_sym_COLON_COLON, + STATE(3262), 1, sym_template_type, - STATE(2328), 1, + STATE(3456), 1, sym_field_declaration_list, - STATE(4552), 1, + STATE(4890), 1, sym_attribute_declaration, - STATE(5152), 1, + STATE(5383), 1, sym__scope_resolution, - STATE(5404), 1, + STATE(5675), 1, sym_virtual_specifier, - STATE(6316), 1, + STATE(6538), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2105), 2, + STATE(4983), 2, sym__class_name, sym_qualified_type_identifier, - [161557] = 11, + [184879] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1497), 1, - anon_sym_operator, - ACTIONS(5659), 1, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4255), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5496), 1, + anon_sym_COLON, + ACTIONS(5568), 1, + anon_sym_COLON_COLON, + ACTIONS(6990), 1, + anon_sym_LBRACE, + ACTIONS(7313), 1, sym_identifier, - ACTIONS(5661), 1, - anon_sym_LPAREN2, - ACTIONS(5663), 1, - anon_sym_STAR, - ACTIONS(5665), 1, - anon_sym_AMP_AMP, - ACTIONS(5667), 1, - anon_sym_AMP, - STATE(5104), 1, - sym__field_declarator, - STATE(6690), 1, - sym_ms_based_modifier, - STATE(4890), 8, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - sym_reference_field_declarator, - sym_template_method, - sym_operator_name, - [161598] = 11, + STATE(4380), 1, + sym_template_type, + STATE(4474), 1, + sym_field_declaration_list, + STATE(4817), 1, + sym_attribute_declaration, + STATE(5387), 1, + sym__scope_resolution, + STATE(5732), 1, + sym_virtual_specifier, + STATE(6178), 1, + sym_base_class_clause, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(5498), 2, + anon_sym_final, + anon_sym_override, + STATE(4333), 2, + sym__class_name, + sym_qualified_type_identifier, + [184930] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(1497), 1, - anon_sym_operator, - ACTIONS(5661), 1, - anon_sym_LPAREN2, - ACTIONS(5669), 1, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4065), 1, + anon_sym_LBRACE, + ACTIONS(4255), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5496), 1, + anon_sym_COLON, + ACTIONS(6573), 1, + anon_sym_COLON_COLON, + ACTIONS(7063), 1, sym_identifier, - ACTIONS(5671), 1, - anon_sym_STAR, - ACTIONS(5673), 1, - anon_sym_AMP_AMP, - ACTIONS(5675), 1, - anon_sym_AMP, - STATE(4786), 1, - sym__field_declarator, - STATE(6560), 1, - sym_ms_based_modifier, - STATE(4890), 8, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - sym_reference_field_declarator, - sym_template_method, - sym_operator_name, - [161639] = 16, + STATE(1893), 1, + sym_template_type, + STATE(2410), 1, + sym_field_declaration_list, + STATE(4858), 1, + sym_attribute_declaration, + STATE(5441), 1, + sym__scope_resolution, + STATE(5575), 1, + sym_virtual_specifier, + STATE(6318), 1, + sym_base_class_clause, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(5498), 2, + anon_sym_final, + anon_sym_override, + STATE(1854), 2, + sym__class_name, + sym_qualified_type_identifier, + [184981] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4060), 1, + ACTIONS(4731), 1, anon_sym_COLON_COLON, - ACTIONS(5141), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(6947), 1, + ACTIONS(7211), 1, sym_identifier, - STATE(2635), 1, + STATE(3262), 1, sym_template_type, - STATE(3175), 1, + STATE(3460), 1, sym_field_declaration_list, - STATE(4595), 1, + STATE(4881), 1, sym_attribute_declaration, - STATE(5072), 1, + STATE(5352), 1, sym__scope_resolution, - STATE(5419), 1, + STATE(5792), 1, sym_virtual_specifier, - STATE(6004), 1, + STATE(6535), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(3222), 2, + STATE(3537), 2, sym__class_name, sym_qualified_type_identifier, - [161690] = 16, + [185032] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4060), 1, + ACTIONS(5496), 1, + anon_sym_COLON, + ACTIONS(5568), 1, anon_sym_COLON_COLON, - ACTIONS(5141), 1, + ACTIONS(6990), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, - anon_sym_COLON, - ACTIONS(6947), 1, + ACTIONS(7313), 1, sym_identifier, - STATE(2635), 1, + STATE(4380), 1, sym_template_type, - STATE(3167), 1, + STATE(4476), 1, sym_field_declaration_list, - STATE(4594), 1, + STATE(4816), 1, sym_attribute_declaration, - STATE(5072), 1, + STATE(5387), 1, sym__scope_resolution, - STATE(5393), 1, + STATE(5717), 1, sym_virtual_specifier, - STATE(5942), 1, + STATE(6182), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(3224), 2, + STATE(4334), 2, sym__class_name, sym_qualified_type_identifier, - [161741] = 16, + [185083] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5141), 1, - anon_sym_LBRACE, - ACTIONS(5143), 1, - anon_sym_COLON, - ACTIONS(5345), 1, + ACTIONS(4731), 1, anon_sym_COLON_COLON, - ACTIONS(6993), 1, + ACTIONS(5496), 1, + anon_sym_COLON, + ACTIONS(5739), 1, + anon_sym_LBRACE, + ACTIONS(7211), 1, sym_identifier, - STATE(2635), 1, + STATE(3262), 1, sym_template_type, - STATE(3182), 1, + STATE(4008), 1, sym_field_declaration_list, - STATE(4546), 1, + STATE(4850), 1, sym_attribute_declaration, - STATE(5088), 1, + STATE(5352), 1, sym__scope_resolution, - STATE(5312), 1, + STATE(5533), 1, sym_virtual_specifier, - STATE(5879), 1, + STATE(6514), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(3225), 2, + STATE(3458), 2, sym__class_name, sym_qualified_type_identifier, - [161792] = 16, + [185134] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3930), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4060), 1, - anon_sym_COLON_COLON, - ACTIONS(5141), 1, + ACTIONS(4195), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(4255), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(6947), 1, + ACTIONS(6651), 1, + anon_sym_COLON_COLON, + ACTIONS(7073), 1, sym_identifier, - STATE(2635), 1, + STATE(2062), 1, sym_template_type, - STATE(3182), 1, + STATE(2622), 1, sym_field_declaration_list, - STATE(4593), 1, + STATE(4859), 1, sym_attribute_declaration, - STATE(5072), 1, + STATE(5439), 1, sym__scope_resolution, - STATE(5312), 1, + STATE(5656), 1, sym_virtual_specifier, - STATE(5879), 1, + STATE(6193), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(3225), 2, + STATE(1936), 2, sym__class_name, sym_qualified_type_identifier, - [161843] = 16, + [185185] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(6316), 1, + anon_sym_LPAREN2, + ACTIONS(6326), 1, + sym_identifier, + ACTIONS(6328), 1, + anon_sym_STAR, + ACTIONS(6330), 1, + anon_sym_AMP_AMP, + ACTIONS(6332), 1, + anon_sym_AMP, + STATE(5359), 1, + sym__field_declarator, + STATE(6785), 1, + sym_ms_based_modifier, + STATE(5185), 8, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + sym_reference_field_declarator, + sym_template_method, + sym_operator_name, + [185226] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3007), 1, - anon_sym_COLON_COLON, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5141), 1, - anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(6993), 1, + ACTIONS(5654), 1, + anon_sym_COLON_COLON, + ACTIONS(5739), 1, + anon_sym_LBRACE, + ACTIONS(7187), 1, sym_identifier, - STATE(2635), 1, + STATE(3262), 1, sym_template_type, - STATE(3175), 1, + STATE(4008), 1, sym_field_declaration_list, - STATE(4589), 1, + STATE(4814), 1, sym_attribute_declaration, - STATE(5131), 1, + STATE(5416), 1, sym__scope_resolution, - STATE(5419), 1, + STATE(5533), 1, sym_virtual_specifier, - STATE(6004), 1, + STATE(6514), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2689), 2, + STATE(3458), 2, sym__class_name, sym_qualified_type_identifier, - [161894] = 16, + [185277] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3377), 1, - anon_sym_COLON_COLON, - ACTIONS(3930), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5141), 1, + ACTIONS(4195), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(4255), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(6947), 1, + ACTIONS(6651), 1, + anon_sym_COLON_COLON, + ACTIONS(7073), 1, sym_identifier, - STATE(2635), 1, + STATE(2062), 1, sym_template_type, - STATE(3175), 1, + STATE(2626), 1, sym_field_declaration_list, - STATE(4598), 1, + STATE(4857), 1, sym_attribute_declaration, - STATE(5144), 1, + STATE(5439), 1, sym__scope_resolution, - STATE(5419), 1, + STATE(5672), 1, sym_virtual_specifier, - STATE(6004), 1, + STATE(6188), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2689), 2, + STATE(1920), 2, sym__class_name, sym_qualified_type_identifier, - [161945] = 16, + [185328] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3377), 1, + ACTIONS(3765), 1, anon_sym_COLON_COLON, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5141), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(6947), 1, + ACTIONS(7211), 1, sym_identifier, - STATE(2635), 1, + STATE(3262), 1, sym_template_type, - STATE(3167), 1, + STATE(3456), 1, sym_field_declaration_list, - STATE(4600), 1, + STATE(4841), 1, sym_attribute_declaration, - STATE(5144), 1, + STATE(5354), 1, sym__scope_resolution, - STATE(5393), 1, + STATE(5675), 1, sym_virtual_specifier, - STATE(5942), 1, + STATE(6538), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2684), 2, + STATE(3281), 2, sym__class_name, sym_qualified_type_identifier, - [161996] = 16, + [185379] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4156), 1, + ACTIONS(4924), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5794), 1, + ACTIONS(5562), 1, anon_sym_COLON_COLON, - ACTIONS(6855), 1, + ACTIONS(7462), 1, sym_identifier, - STATE(2147), 1, + STATE(2906), 1, sym_template_type, - STATE(2211), 1, + STATE(3152), 1, sym_field_declaration_list, - STATE(4614), 1, + STATE(4818), 1, sym_attribute_declaration, - STATE(5120), 1, + STATE(5425), 1, sym__scope_resolution, - STATE(5368), 1, + STATE(5744), 1, sym_virtual_specifier, - STATE(5996), 1, + STATE(6421), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2080), 2, + STATE(2571), 2, sym__class_name, sym_qualified_type_identifier, - [162047] = 16, + [185430] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4316), 1, - anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5834), 1, + ACTIONS(5654), 1, anon_sym_COLON_COLON, - ACTIONS(6835), 1, + ACTIONS(5739), 1, + anon_sym_LBRACE, + ACTIONS(7187), 1, sym_identifier, - STATE(2267), 1, + STATE(3262), 1, sym_template_type, - STATE(2755), 1, + STATE(4016), 1, sym_field_declaration_list, - STATE(4538), 1, + STATE(4813), 1, sym_attribute_declaration, - STATE(5092), 1, + STATE(5416), 1, sym__scope_resolution, - STATE(5356), 1, + STATE(5536), 1, sym_virtual_specifier, - STATE(6137), 1, + STATE(6512), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2150), 2, + STATE(3461), 2, sym__class_name, sym_qualified_type_identifier, - [162098] = 16, + [185481] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3930), 1, + ACTIONS(2434), 1, + anon_sym_COLON_COLON, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4446), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5337), 1, - anon_sym_COLON_COLON, - ACTIONS(7149), 1, + ACTIONS(7187), 1, sym_identifier, - STATE(2480), 1, + STATE(3262), 1, sym_template_type, - STATE(2899), 1, + STATE(3456), 1, sym_field_declaration_list, - STATE(4577), 1, + STATE(4836), 1, sym_attribute_declaration, - STATE(5169), 1, + STATE(5394), 1, sym__scope_resolution, - STATE(5501), 1, + STATE(5675), 1, sym_virtual_specifier, - STATE(6233), 1, + STATE(6538), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2223), 2, + STATE(3281), 2, sym__class_name, sym_qualified_type_identifier, - [162149] = 16, + [185532] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5141), 1, + ACTIONS(4924), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5345), 1, + ACTIONS(5562), 1, anon_sym_COLON_COLON, - ACTIONS(6993), 1, + ACTIONS(7462), 1, sym_identifier, - STATE(2635), 1, + STATE(2906), 1, sym_template_type, - STATE(3167), 1, + STATE(3154), 1, sym_field_declaration_list, - STATE(4539), 1, + STATE(4815), 1, sym_attribute_declaration, - STATE(5088), 1, + STATE(5425), 1, sym__scope_resolution, - STATE(5393), 1, + STATE(5748), 1, sym_virtual_specifier, - STATE(5942), 1, + STATE(6419), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(3224), 2, + STATE(2513), 2, sym__class_name, sym_qualified_type_identifier, - [162200] = 16, + [185583] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5141), 1, + ACTIONS(4417), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5345), 1, + ACTIONS(5522), 1, anon_sym_COLON_COLON, - ACTIONS(6993), 1, + ACTIONS(7203), 1, sym_identifier, - STATE(2635), 1, + STATE(2349), 1, sym_template_type, - STATE(3175), 1, + STATE(2874), 1, sym_field_declaration_list, - STATE(4535), 1, + STATE(4801), 1, sym_attribute_declaration, - STATE(5088), 1, + STATE(5397), 1, sym__scope_resolution, - STATE(5419), 1, + STATE(5621), 1, sym_virtual_specifier, - STATE(6004), 1, + STATE(6464), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(3222), 2, + STATE(2152), 2, sym__class_name, sym_qualified_type_identifier, - [162251] = 16, + [185634] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4156), 1, + ACTIONS(4924), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5794), 1, + ACTIONS(5562), 1, anon_sym_COLON_COLON, - ACTIONS(6855), 1, + ACTIONS(7462), 1, sym_identifier, - STATE(2147), 1, + STATE(2906), 1, sym_template_type, - STATE(2286), 1, + STATE(3157), 1, sym_field_declaration_list, - STATE(4607), 1, + STATE(4811), 1, sym_attribute_declaration, - STATE(5120), 1, + STATE(5425), 1, sym__scope_resolution, - STATE(5251), 1, + STATE(5752), 1, sym_virtual_specifier, - STATE(6002), 1, + STATE(6417), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2070), 2, + STATE(2507), 2, sym__class_name, sym_qualified_type_identifier, - [162302] = 16, + [185685] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3930), 1, + ACTIONS(3765), 1, + anon_sym_COLON_COLON, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4316), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5834), 1, - anon_sym_COLON_COLON, - ACTIONS(6835), 1, + ACTIONS(7211), 1, sym_identifier, - STATE(2267), 1, + STATE(3262), 1, sym_template_type, - STATE(2623), 1, + STATE(3460), 1, sym_field_declaration_list, - STATE(4544), 1, + STATE(4854), 1, sym_attribute_declaration, - STATE(5092), 1, + STATE(5354), 1, sym__scope_resolution, - STATE(5359), 1, + STATE(5792), 1, sym_virtual_specifier, - STATE(6156), 1, + STATE(6535), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2173), 2, + STATE(3285), 2, sym__class_name, sym_qualified_type_identifier, - [162353] = 16, + [185736] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6466), 1, + anon_sym_LPAREN2, + STATE(2910), 1, + sym_argument_list, + ACTIONS(4290), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(4288), 13, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK, + anon_sym_volatile, + anon_sym_restrict, + anon_sym__Atomic, + anon_sym_mutable, + anon_sym_constexpr, + anon_sym_constinit, + anon_sym_consteval, + sym_auto, + anon_sym_decltype, + [185765] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3377), 1, - anon_sym_COLON_COLON, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5141), 1, - anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(6947), 1, + ACTIONS(5654), 1, + anon_sym_COLON_COLON, + ACTIONS(5739), 1, + anon_sym_LBRACE, + ACTIONS(7187), 1, sym_identifier, - STATE(2635), 1, + STATE(3262), 1, sym_template_type, - STATE(3182), 1, + STATE(4005), 1, sym_field_declaration_list, - STATE(4601), 1, + STATE(4803), 1, sym_attribute_declaration, - STATE(5144), 1, + STATE(5416), 1, sym__scope_resolution, - STATE(5312), 1, + STATE(5539), 1, sym_virtual_specifier, - STATE(5879), 1, + STATE(6510), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2675), 2, + STATE(3463), 2, sym__class_name, sym_qualified_type_identifier, - [162404] = 16, + [185816] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4316), 1, + ACTIONS(4417), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5834), 1, + ACTIONS(5522), 1, anon_sym_COLON_COLON, - ACTIONS(6835), 1, + ACTIONS(7203), 1, sym_identifier, - STATE(2267), 1, + STATE(2349), 1, sym_template_type, - STATE(2759), 1, + STATE(2896), 1, sym_field_declaration_list, - STATE(4545), 1, + STATE(4796), 1, sym_attribute_declaration, - STATE(5092), 1, + STATE(5397), 1, sym__scope_resolution, - STATE(5362), 1, + STATE(5600), 1, sym_virtual_specifier, - STATE(6163), 1, + STATE(6479), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2174), 2, + STATE(2164), 2, sym__class_name, sym_qualified_type_identifier, - [162455] = 16, + [185867] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4446), 1, + ACTIONS(4417), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5856), 1, + ACTIONS(5522), 1, anon_sym_COLON_COLON, - ACTIONS(6845), 1, + ACTIONS(7203), 1, sym_identifier, - STATE(2480), 1, + STATE(2349), 1, sym_template_type, - STATE(2890), 1, + STATE(2917), 1, sym_field_declaration_list, - STATE(4562), 1, + STATE(4825), 1, sym_attribute_declaration, - STATE(5154), 1, + STATE(5397), 1, sym__scope_resolution, - STATE(5510), 1, + STATE(5588), 1, sym_virtual_specifier, - STATE(6081), 1, + STATE(6485), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2261), 2, + STATE(2141), 2, sym__class_name, sym_qualified_type_identifier, - [162506] = 16, + [185918] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4446), 1, + ACTIONS(4265), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5856), 1, + ACTIONS(6623), 1, anon_sym_COLON_COLON, - ACTIONS(6845), 1, + ACTIONS(7103), 1, sym_identifier, - STATE(2480), 1, + STATE(2170), 1, sym_template_type, - STATE(2895), 1, + STATE(2804), 1, sym_field_declaration_list, - STATE(4564), 1, + STATE(4875), 1, sym_attribute_declaration, - STATE(5154), 1, + STATE(5412), 1, sym__scope_resolution, - STATE(5514), 1, + STATE(5765), 1, sym_virtual_specifier, - STATE(6084), 1, + STATE(6713), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2260), 2, + STATE(1955), 2, sym__class_name, sym_qualified_type_identifier, - [162557] = 16, + [185969] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4446), 1, + ACTIONS(4265), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5856), 1, + ACTIONS(6623), 1, anon_sym_COLON_COLON, - ACTIONS(6845), 1, + ACTIONS(7103), 1, sym_identifier, - STATE(2480), 1, + STATE(2170), 1, sym_template_type, - STATE(2899), 1, + STATE(2778), 1, sym_field_declaration_list, - STATE(4565), 1, + STATE(4795), 1, sym_attribute_declaration, - STATE(5154), 1, + STATE(5412), 1, sym__scope_resolution, - STATE(5501), 1, + STATE(5778), 1, sym_virtual_specifier, - STATE(6233), 1, + STATE(6722), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2223), 2, + STATE(1956), 2, sym__class_name, sym_qualified_type_identifier, - [162608] = 16, + [186020] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4060), 1, - anon_sym_COLON_COLON, - ACTIONS(5143), 1, - anon_sym_COLON, - ACTIONS(5504), 1, + ACTIONS(4265), 1, anon_sym_LBRACE, - ACTIONS(6947), 1, + ACTIONS(5496), 1, + anon_sym_COLON, + ACTIONS(6623), 1, + anon_sym_COLON_COLON, + ACTIONS(7103), 1, sym_identifier, - STATE(2635), 1, + STATE(2170), 1, sym_template_type, - STATE(3353), 1, + STATE(2736), 1, sym_field_declaration_list, - STATE(4586), 1, + STATE(4797), 1, sym_attribute_declaration, - STATE(5072), 1, + STATE(5412), 1, sym__scope_resolution, - STATE(5302), 1, + STATE(5814), 1, sym_virtual_specifier, - STATE(5825), 1, + STATE(6728), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(3135), 2, + STATE(1957), 2, sym__class_name, sym_qualified_type_identifier, - [162659] = 16, + [186071] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3930), 1, + ACTIONS(3765), 1, + anon_sym_COLON_COLON, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4446), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5337), 1, - anon_sym_COLON_COLON, - ACTIONS(7149), 1, + ACTIONS(7211), 1, sym_identifier, - STATE(2480), 1, + STATE(3262), 1, sym_template_type, - STATE(2890), 1, + STATE(3466), 1, sym_field_declaration_list, - STATE(4568), 1, + STATE(4888), 1, sym_attribute_declaration, - STATE(5169), 1, + STATE(5354), 1, sym__scope_resolution, - STATE(5510), 1, + STATE(5669), 1, sym_virtual_specifier, - STATE(6081), 1, + STATE(6526), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2261), 2, + STATE(3286), 2, sym__class_name, sym_qualified_type_identifier, - [162710] = 16, + [186122] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4060), 1, - anon_sym_COLON_COLON, - ACTIONS(5143), 1, - anon_sym_COLON, - ACTIONS(5504), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - ACTIONS(6947), 1, + ACTIONS(5496), 1, + anon_sym_COLON, + ACTIONS(7187), 1, sym_identifier, - STATE(2635), 1, + ACTIONS(7482), 1, + anon_sym_COLON_COLON, + STATE(3262), 1, sym_template_type, - STATE(3336), 1, + STATE(3466), 1, sym_field_declaration_list, - STATE(4583), 1, + STATE(4810), 1, sym_attribute_declaration, - STATE(5072), 1, + STATE(5383), 1, sym__scope_resolution, - STATE(5309), 1, + STATE(5669), 1, sym_virtual_specifier, - STATE(5918), 1, + STATE(6526), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(3129), 2, + STATE(4988), 2, sym__class_name, sym_qualified_type_identifier, - [162761] = 16, + [186173] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4060), 1, + ACTIONS(4731), 1, anon_sym_COLON_COLON, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5504), 1, + ACTIONS(5739), 1, anon_sym_LBRACE, - ACTIONS(6947), 1, + ACTIONS(7211), 1, sym_identifier, - STATE(2635), 1, + STATE(3262), 1, sym_template_type, - STATE(3334), 1, + STATE(4005), 1, sym_field_declaration_list, - STATE(4584), 1, + STATE(4853), 1, sym_attribute_declaration, - STATE(5072), 1, + STATE(5352), 1, sym__scope_resolution, - STATE(5306), 1, + STATE(5539), 1, sym_virtual_specifier, - STATE(5901), 1, + STATE(6510), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(3131), 2, + STATE(3463), 2, sym__class_name, sym_qualified_type_identifier, - [162812] = 16, + [186224] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4156), 1, - anon_sym_LBRACE, - ACTIONS(5143), 1, - anon_sym_COLON, - ACTIONS(5794), 1, + ACTIONS(4731), 1, anon_sym_COLON_COLON, - ACTIONS(6855), 1, + ACTIONS(5496), 1, + anon_sym_COLON, + ACTIONS(5739), 1, + anon_sym_LBRACE, + ACTIONS(7211), 1, sym_identifier, - STATE(2147), 1, + STATE(3262), 1, sym_template_type, - STATE(2244), 1, + STATE(4016), 1, sym_field_declaration_list, - STATE(4610), 1, + STATE(4852), 1, sym_attribute_declaration, - STATE(5120), 1, + STATE(5352), 1, sym__scope_resolution, - STATE(5345), 1, + STATE(5536), 1, sym_virtual_specifier, - STATE(5999), 1, + STATE(6512), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2074), 2, + STATE(3461), 2, sym__class_name, sym_qualified_type_identifier, - [162863] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(5716), 1, - anon_sym_LBRACK, - ACTIONS(6505), 1, - anon_sym_STAR, - ACTIONS(6507), 1, - anon_sym_AMP_AMP, - ACTIONS(6509), 1, - anon_sym_AMP, - STATE(4097), 1, - sym_parameter_list, - STATE(5148), 1, - sym__abstract_declarator, - ACTIONS(5573), 4, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_try, - anon_sym_requires, - STATE(4735), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [162901] = 14, + [186275] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3369), 1, + ACTIONS(3757), 1, anon_sym_LPAREN2, - ACTIONS(3371), 1, + ACTIONS(3759), 1, anon_sym_STAR, - ACTIONS(3373), 1, + ACTIONS(3761), 1, anon_sym_AMP_AMP, - ACTIONS(3375), 1, + ACTIONS(3763), 1, anon_sym_AMP, - ACTIONS(6268), 1, + ACTIONS(6781), 1, anon_sym_LBRACK, - ACTIONS(7228), 1, + ACTIONS(7490), 1, + anon_sym_LT, + ACTIONS(7492), 1, anon_sym_LBRACE, - ACTIONS(7230), 1, - anon_sym_requires, - STATE(1754), 1, - sym_compound_statement, - STATE(4136), 1, + STATE(4387), 1, sym_parameter_list, - STATE(4643), 1, - sym_requires_clause, - STATE(5500), 1, + STATE(4788), 1, + sym_template_parameter_list, + STATE(5269), 1, + sym_compound_statement, + STATE(5741), 1, sym_abstract_function_declarator, - STATE(5698), 1, + STATE(6021), 1, sym__abstract_declarator, - STATE(4832), 4, + STATE(5127), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [162947] = 14, + [186321] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3369), 1, + ACTIONS(3757), 1, anon_sym_LPAREN2, - ACTIONS(3371), 1, + ACTIONS(3759), 1, anon_sym_STAR, - ACTIONS(3373), 1, + ACTIONS(3761), 1, anon_sym_AMP_AMP, - ACTIONS(3375), 1, + ACTIONS(3763), 1, anon_sym_AMP, - ACTIONS(6268), 1, + ACTIONS(6781), 1, anon_sym_LBRACK, - ACTIONS(7232), 1, + ACTIONS(7490), 1, anon_sym_LT, - ACTIONS(7234), 1, + ACTIONS(7494), 1, anon_sym_LBRACE, - STATE(3061), 1, - sym_compound_statement, - STATE(4136), 1, + STATE(4387), 1, sym_parameter_list, - STATE(4525), 1, + STATE(4786), 1, sym_template_parameter_list, - STATE(5291), 1, + STATE(5067), 1, + sym_compound_statement, + STATE(5631), 1, sym_abstract_function_declarator, - STATE(5698), 1, + STATE(6021), 1, sym__abstract_declarator, - STATE(4832), 4, + STATE(5127), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [162993] = 10, + [186367] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3369), 1, + ACTIONS(3757), 1, anon_sym_LPAREN2, - ACTIONS(3371), 1, + ACTIONS(3759), 1, anon_sym_STAR, - ACTIONS(3373), 1, + ACTIONS(3761), 1, anon_sym_AMP_AMP, - ACTIONS(3375), 1, + ACTIONS(3763), 1, anon_sym_AMP, - ACTIONS(6268), 1, + ACTIONS(6781), 1, anon_sym_LBRACK, - STATE(4080), 1, - sym_parameter_list, - STATE(5099), 1, - sym__abstract_declarator, - ACTIONS(5573), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_requires, - STATE(4832), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [163031] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3930), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7236), 1, - anon_sym_COMMA, - ACTIONS(7238), 1, - anon_sym_LPAREN2, - ACTIONS(7240), 1, - anon_sym_SEMI, - ACTIONS(7242), 1, + ACTIONS(7496), 1, anon_sym_LBRACE, - ACTIONS(7244), 1, - anon_sym_LBRACK, - ACTIONS(7246), 1, - anon_sym_EQ, - ACTIONS(7248), 1, - anon_sym_try, - STATE(480), 1, - sym_try_statement, - STATE(498), 1, - sym_compound_statement, - STATE(3293), 1, - sym_parameter_list, - STATE(5516), 1, - aux_sym_declaration_repeat1, - STATE(4794), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6200), 2, - sym_argument_list, - sym_initializer_list, - [163079] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3369), 1, - anon_sym_LPAREN2, - ACTIONS(3371), 1, - anon_sym_STAR, - ACTIONS(3373), 1, - anon_sym_AMP_AMP, - ACTIONS(3375), 1, - anon_sym_AMP, - ACTIONS(6268), 1, - anon_sym_LBRACK, - ACTIONS(7230), 1, + ACTIONS(7498), 1, anon_sym_requires, - ACTIONS(7250), 1, - anon_sym_LBRACE, - STATE(3681), 1, + STATE(1899), 1, sym_compound_statement, - STATE(4136), 1, + STATE(4387), 1, sym_parameter_list, - STATE(4664), 1, + STATE(4897), 1, sym_requires_clause, - STATE(5438), 1, + STATE(5597), 1, sym_abstract_function_declarator, - STATE(5698), 1, + STATE(6021), 1, sym__abstract_declarator, - STATE(4832), 4, + STATE(5127), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [163125] = 14, + [186413] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3369), 1, + ACTIONS(3757), 1, anon_sym_LPAREN2, - ACTIONS(3371), 1, + ACTIONS(3759), 1, anon_sym_STAR, - ACTIONS(3373), 1, + ACTIONS(3761), 1, anon_sym_AMP_AMP, - ACTIONS(3375), 1, + ACTIONS(3763), 1, anon_sym_AMP, - ACTIONS(6268), 1, + ACTIONS(6781), 1, anon_sym_LBRACK, - ACTIONS(7230), 1, - anon_sym_requires, - ACTIONS(7252), 1, + ACTIONS(7490), 1, + anon_sym_LT, + ACTIONS(7496), 1, anon_sym_LBRACE, - STATE(2597), 1, + STATE(1928), 1, sym_compound_statement, - STATE(4136), 1, + STATE(4387), 1, sym_parameter_list, - STATE(4652), 1, - sym_requires_clause, - STATE(5378), 1, + STATE(4761), 1, + sym_template_parameter_list, + STATE(5630), 1, sym_abstract_function_declarator, - STATE(5698), 1, + STATE(6021), 1, sym__abstract_declarator, - STATE(4832), 4, + STATE(5127), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [163171] = 10, + [186459] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3369), 1, + ACTIONS(3757), 1, anon_sym_LPAREN2, - ACTIONS(6268), 1, + ACTIONS(6781), 1, anon_sym_LBRACK, - ACTIONS(6483), 1, + ACTIONS(6805), 1, anon_sym_STAR, - ACTIONS(6485), 1, + ACTIONS(6807), 1, anon_sym_AMP_AMP, - ACTIONS(6487), 1, + ACTIONS(6809), 1, anon_sym_AMP, - STATE(4077), 1, + STATE(4328), 1, sym_parameter_list, - STATE(5108), 1, + STATE(5421), 1, sym__abstract_declarator, - ACTIONS(5573), 4, + ACTIONS(5786), 4, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_GT2, anon_sym_requires, - STATE(4832), 5, + STATE(5127), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [163209] = 14, + [186497] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3369), 1, + ACTIONS(3757), 1, anon_sym_LPAREN2, - ACTIONS(3371), 1, + ACTIONS(3759), 1, anon_sym_STAR, - ACTIONS(3373), 1, + ACTIONS(3761), 1, anon_sym_AMP_AMP, - ACTIONS(3375), 1, + ACTIONS(3763), 1, anon_sym_AMP, - ACTIONS(6268), 1, + ACTIONS(6781), 1, anon_sym_LBRACK, - ACTIONS(7228), 1, - anon_sym_LBRACE, - ACTIONS(7232), 1, + ACTIONS(7490), 1, anon_sym_LT, - STATE(1756), 1, + ACTIONS(7500), 1, + anon_sym_LBRACE, + STATE(1928), 1, sym_compound_statement, - STATE(4136), 1, + STATE(4387), 1, sym_parameter_list, - STATE(4499), 1, + STATE(4776), 1, sym_template_parameter_list, - STATE(5466), 1, + STATE(5652), 1, sym_abstract_function_declarator, - STATE(5698), 1, + STATE(6021), 1, sym__abstract_declarator, - STATE(4832), 4, + STATE(5127), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [163255] = 14, + [186543] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3369), 1, + ACTIONS(1985), 1, + anon_sym_LBRACE, + ACTIONS(3757), 1, anon_sym_LPAREN2, - ACTIONS(3371), 1, + ACTIONS(3759), 1, anon_sym_STAR, - ACTIONS(3373), 1, + ACTIONS(3761), 1, anon_sym_AMP_AMP, - ACTIONS(3375), 1, + ACTIONS(3763), 1, anon_sym_AMP, - ACTIONS(6268), 1, + ACTIONS(6781), 1, anon_sym_LBRACK, - ACTIONS(7232), 1, - anon_sym_LT, - ACTIONS(7254), 1, - anon_sym_LBRACE, - STATE(4136), 1, + ACTIONS(7498), 1, + anon_sym_requires, + STATE(3358), 1, + sym_compound_statement, + STATE(4387), 1, sym_parameter_list, - STATE(4517), 1, - sym_template_parameter_list, - STATE(4762), 1, + STATE(4917), 1, + sym_requires_clause, + STATE(5738), 1, + sym_abstract_function_declarator, + STATE(6021), 1, + sym__abstract_declarator, + STATE(5127), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [186589] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3757), 1, + anon_sym_LPAREN2, + ACTIONS(3759), 1, + anon_sym_STAR, + ACTIONS(3761), 1, + anon_sym_AMP_AMP, + ACTIONS(3763), 1, + anon_sym_AMP, + ACTIONS(6781), 1, + anon_sym_LBRACK, + ACTIONS(7498), 1, + anon_sym_requires, + ACTIONS(7502), 1, + anon_sym_LBRACE, + STATE(2469), 1, sym_compound_statement, - STATE(5369), 1, + STATE(4387), 1, + sym_parameter_list, + STATE(4912), 1, + sym_requires_clause, + STATE(5776), 1, sym_abstract_function_declarator, - STATE(5698), 1, + STATE(6021), 1, sym__abstract_declarator, - STATE(4832), 4, + STATE(5127), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [163301] = 14, + [186635] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3369), 1, + ACTIONS(3757), 1, anon_sym_LPAREN2, - ACTIONS(3371), 1, + ACTIONS(3759), 1, anon_sym_STAR, - ACTIONS(3373), 1, + ACTIONS(3761), 1, anon_sym_AMP_AMP, - ACTIONS(3375), 1, + ACTIONS(3763), 1, anon_sym_AMP, - ACTIONS(6268), 1, + ACTIONS(6781), 1, anon_sym_LBRACK, - ACTIONS(7232), 1, + ACTIONS(7490), 1, anon_sym_LT, - ACTIONS(7252), 1, + ACTIONS(7504), 1, anon_sym_LBRACE, - STATE(2538), 1, + STATE(3063), 1, sym_compound_statement, - STATE(4136), 1, + STATE(4387), 1, sym_parameter_list, - STATE(4504), 1, + STATE(4785), 1, sym_template_parameter_list, - STATE(5422), 1, + STATE(5728), 1, sym_abstract_function_declarator, - STATE(5698), 1, + STATE(6021), 1, sym__abstract_declarator, - STATE(4832), 4, + STATE(5127), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [163347] = 15, + [186681] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7218), 1, - anon_sym_LBRACE, - ACTIONS(7222), 1, - anon_sym_try, - ACTIONS(7236), 1, + ACTIONS(7506), 1, anon_sym_COMMA, - ACTIONS(7238), 1, + ACTIONS(7508), 1, anon_sym_LPAREN2, - ACTIONS(7244), 1, + ACTIONS(7510), 1, + anon_sym_SEMI, + ACTIONS(7512), 1, + anon_sym_LBRACE, + ACTIONS(7514), 1, anon_sym_LBRACK, - ACTIONS(7246), 1, + ACTIONS(7516), 1, anon_sym_EQ, - ACTIONS(7256), 1, - anon_sym_SEMI, - STATE(1918), 1, + ACTIONS(7518), 1, + anon_sym_try, + STATE(505), 1, sym_compound_statement, - STATE(1919), 1, + STATE(506), 1, sym_try_statement, - STATE(3293), 1, + STATE(3843), 1, sym_parameter_list, - STATE(5792), 1, + STATE(6115), 1, aux_sym_declaration_repeat1, - STATE(4794), 2, + STATE(5035), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6200), 2, + STATE(6411), 2, sym_argument_list, sym_initializer_list, - [163395] = 15, + [186729] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3930), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7236), 1, - anon_sym_COMMA, - ACTIONS(7238), 1, + ACTIONS(6547), 1, anon_sym_LPAREN2, - ACTIONS(7244), 1, + ACTIONS(6555), 1, anon_sym_LBRACK, - ACTIONS(7246), 1, - anon_sym_EQ, - ACTIONS(7258), 1, - anon_sym_SEMI, - ACTIONS(7260), 1, + ACTIONS(6874), 1, + anon_sym_STAR, + ACTIONS(6876), 1, + anon_sym_AMP_AMP, + ACTIONS(6878), 1, + anon_sym_AMP, + STATE(4318), 1, + sym_parameter_list, + STATE(5356), 1, + sym__abstract_declarator, + ACTIONS(5786), 4, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(7262), 1, anon_sym_try, - STATE(995), 1, - sym_compound_statement, - STATE(996), 1, - sym_try_statement, - STATE(3293), 1, - sym_parameter_list, - STATE(5662), 1, - aux_sym_declaration_repeat1, - STATE(4794), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6200), 2, - sym_argument_list, - sym_initializer_list, - [163443] = 14, + anon_sym_requires, + STATE(5059), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [186767] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3369), 1, + ACTIONS(3757), 1, anon_sym_LPAREN2, - ACTIONS(3371), 1, + ACTIONS(3759), 1, anon_sym_STAR, - ACTIONS(3373), 1, + ACTIONS(3761), 1, anon_sym_AMP_AMP, - ACTIONS(3375), 1, + ACTIONS(3763), 1, anon_sym_AMP, - ACTIONS(6268), 1, + ACTIONS(6781), 1, anon_sym_LBRACK, - ACTIONS(7232), 1, - anon_sym_LT, - ACTIONS(7264), 1, - anon_sym_LBRACE, - STATE(1756), 1, - sym_compound_statement, - STATE(4136), 1, + STATE(4345), 1, sym_parameter_list, - STATE(4528), 1, - sym_template_parameter_list, - STATE(5496), 1, - sym_abstract_function_declarator, - STATE(5698), 1, + STATE(5376), 1, sym__abstract_declarator, - STATE(4832), 4, + ACTIONS(5786), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_requires, + STATE(5127), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, + sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [163489] = 14, + [186805] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3369), 1, + ACTIONS(3757), 1, anon_sym_LPAREN2, - ACTIONS(3371), 1, + ACTIONS(3759), 1, anon_sym_STAR, - ACTIONS(3373), 1, + ACTIONS(3761), 1, anon_sym_AMP_AMP, - ACTIONS(3375), 1, + ACTIONS(3763), 1, anon_sym_AMP, - ACTIONS(6268), 1, + ACTIONS(6781), 1, anon_sym_LBRACK, - ACTIONS(7232), 1, + ACTIONS(7490), 1, anon_sym_LT, - ACTIONS(7266), 1, + ACTIONS(7520), 1, anon_sym_LBRACE, - STATE(2811), 1, + STATE(3086), 1, sym_compound_statement, - STATE(4136), 1, + STATE(4387), 1, sym_parameter_list, - STATE(4516), 1, + STATE(4773), 1, sym_template_parameter_list, - STATE(5377), 1, + STATE(5644), 1, sym_abstract_function_declarator, - STATE(5698), 1, + STATE(6021), 1, sym__abstract_declarator, - STATE(4832), 4, + STATE(5127), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [163535] = 17, + [186851] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(7268), 1, - sym_identifier, - ACTIONS(7270), 1, - anon_sym_TILDE, - ACTIONS(7272), 1, - anon_sym_COLON_COLON, - ACTIONS(7274), 1, - anon_sym_template, - ACTIONS(7276), 1, - anon_sym_operator, - STATE(2301), 1, - sym_dependent_identifier, - STATE(2311), 1, - sym_template_function, - STATE(2317), 1, - sym_qualified_identifier, - STATE(2320), 1, - sym_destructor_name, - STATE(2321), 1, - sym_operator_name, - STATE(2716), 1, - sym_qualified_type_identifier, - STATE(2717), 1, - sym_dependent_type_identifier, - STATE(2721), 1, - sym_template_type, - STATE(4513), 1, - sym__scope_resolution, - STATE(5281), 1, - sym_qualified_operator_cast_identifier, - STATE(5288), 1, - sym_operator_cast, - [163587] = 14, + ACTIONS(4255), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7506), 1, + anon_sym_COMMA, + ACTIONS(7508), 1, + anon_sym_LPAREN2, + ACTIONS(7514), 1, + anon_sym_LBRACK, + ACTIONS(7516), 1, + anon_sym_EQ, + ACTIONS(7522), 1, + anon_sym_SEMI, + ACTIONS(7524), 1, + anon_sym_LBRACE, + ACTIONS(7526), 1, + anon_sym_try, + STATE(958), 1, + sym_try_statement, + STATE(960), 1, + sym_compound_statement, + STATE(3843), 1, + sym_parameter_list, + STATE(5904), 1, + aux_sym_declaration_repeat1, + STATE(5035), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6411), 2, + sym_argument_list, + sym_initializer_list, + [186899] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1845), 1, - anon_sym_LBRACE, - ACTIONS(3369), 1, + ACTIONS(3757), 1, anon_sym_LPAREN2, - ACTIONS(3371), 1, + ACTIONS(3759), 1, anon_sym_STAR, - ACTIONS(3373), 1, + ACTIONS(3761), 1, anon_sym_AMP_AMP, - ACTIONS(3375), 1, + ACTIONS(3763), 1, anon_sym_AMP, - ACTIONS(6268), 1, + ACTIONS(6781), 1, anon_sym_LBRACK, - ACTIONS(7230), 1, + ACTIONS(7498), 1, anon_sym_requires, - STATE(3310), 1, + ACTIONS(7520), 1, + anon_sym_LBRACE, + STATE(3093), 1, sym_compound_statement, - STATE(4136), 1, + STATE(4387), 1, sym_parameter_list, - STATE(4653), 1, + STATE(4921), 1, sym_requires_clause, - STATE(5451), 1, + STATE(5638), 1, sym_abstract_function_declarator, - STATE(5698), 1, + STATE(6021), 1, sym__abstract_declarator, - STATE(4832), 4, + STATE(5127), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [163633] = 17, + [186945] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4255), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7506), 1, + anon_sym_COMMA, + ACTIONS(7508), 1, + anon_sym_LPAREN2, + ACTIONS(7514), 1, + anon_sym_LBRACK, + ACTIONS(7516), 1, + anon_sym_EQ, + ACTIONS(7528), 1, + anon_sym_SEMI, + ACTIONS(7530), 1, + anon_sym_LBRACE, + ACTIONS(7532), 1, + anon_sym_try, + STATE(997), 1, + sym_try_statement, + STATE(998), 1, + sym_compound_statement, + STATE(3843), 1, + sym_parameter_list, + STATE(5866), 1, + aux_sym_declaration_repeat1, + STATE(5035), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6411), 2, + sym_argument_list, + sym_initializer_list, + [186993] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym_operator, - ACTIONS(1517), 1, + ACTIONS(1521), 1, anon_sym_TILDE, - ACTIONS(1525), 1, + ACTIONS(1529), 1, anon_sym_COLON_COLON, - ACTIONS(7278), 1, + ACTIONS(7534), 1, sym_identifier, - ACTIONS(7280), 1, + ACTIONS(7536), 1, anon_sym_template, - STATE(2301), 1, + STATE(2173), 1, sym_dependent_identifier, - STATE(2311), 1, + STATE(2174), 1, sym_template_function, - STATE(2317), 1, - sym_qualified_identifier, - STATE(2320), 1, + STATE(2176), 1, sym_destructor_name, - STATE(2321), 1, + STATE(2180), 1, + sym_qualified_identifier, + STATE(2192), 1, sym_operator_name, - STATE(2717), 1, - sym_dependent_type_identifier, - STATE(2721), 1, + STATE(3276), 1, sym_template_type, - STATE(3134), 1, + STATE(3283), 1, + sym_dependent_type_identifier, + STATE(3427), 1, sym_qualified_type_identifier, - STATE(4515), 1, + STATE(4775), 1, sym__scope_resolution, - STATE(5281), 1, - sym_qualified_operator_cast_identifier, - STATE(5288), 1, + STATE(5639), 1, sym_operator_cast, - [163685] = 14, + STATE(5654), 1, + sym_qualified_operator_cast_identifier, + [187045] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3369), 1, + ACTIONS(3757), 1, anon_sym_LPAREN2, - ACTIONS(3371), 1, + ACTIONS(3759), 1, anon_sym_STAR, - ACTIONS(3373), 1, + ACTIONS(3761), 1, anon_sym_AMP_AMP, - ACTIONS(3375), 1, + ACTIONS(3763), 1, anon_sym_AMP, - ACTIONS(6268), 1, + ACTIONS(6781), 1, anon_sym_LBRACK, - ACTIONS(7230), 1, + ACTIONS(7498), 1, anon_sym_requires, - ACTIONS(7266), 1, + ACTIONS(7500), 1, anon_sym_LBRACE, - STATE(2829), 1, + STATE(1899), 1, sym_compound_statement, - STATE(4136), 1, + STATE(4387), 1, sym_parameter_list, - STATE(4656), 1, - sym_requires_clause, - STATE(5429), 1, - sym_abstract_function_declarator, - STATE(5698), 1, - sym__abstract_declarator, - STATE(4832), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [163731] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3369), 1, - anon_sym_LPAREN2, - ACTIONS(3371), 1, - anon_sym_STAR, - ACTIONS(3373), 1, - anon_sym_AMP_AMP, - ACTIONS(3375), 1, - anon_sym_AMP, - ACTIONS(6268), 1, - anon_sym_LBRACK, - ACTIONS(7230), 1, - anon_sym_requires, - ACTIONS(7254), 1, - anon_sym_LBRACE, - STATE(4136), 1, - sym_parameter_list, - STATE(4670), 1, + STATE(4926), 1, sym_requires_clause, - STATE(4736), 1, - sym_compound_statement, - STATE(5343), 1, + STATE(5761), 1, sym_abstract_function_declarator, - STATE(5698), 1, + STATE(6021), 1, sym__abstract_declarator, - STATE(4832), 4, + STATE(5127), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [163777] = 15, + [187091] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7236), 1, + ACTIONS(7454), 1, + anon_sym_LBRACE, + ACTIONS(7458), 1, + anon_sym_try, + ACTIONS(7506), 1, anon_sym_COMMA, - ACTIONS(7238), 1, + ACTIONS(7508), 1, anon_sym_LPAREN2, - ACTIONS(7244), 1, + ACTIONS(7514), 1, anon_sym_LBRACK, - ACTIONS(7246), 1, + ACTIONS(7516), 1, anon_sym_EQ, - ACTIONS(7282), 1, + ACTIONS(7538), 1, anon_sym_SEMI, - ACTIONS(7284), 1, - anon_sym_LBRACE, - ACTIONS(7286), 1, - anon_sym_try, - STATE(1037), 1, + STATE(2314), 1, sym_compound_statement, - STATE(1040), 1, + STATE(2315), 1, sym_try_statement, - STATE(3293), 1, + STATE(3843), 1, sym_parameter_list, - STATE(5624), 1, + STATE(6082), 1, aux_sym_declaration_repeat1, - STATE(4794), 2, + STATE(5035), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6200), 2, + STATE(6411), 2, sym_argument_list, sym_initializer_list, - [163825] = 14, + [187139] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3369), 1, + ACTIONS(1985), 1, + anon_sym_LBRACE, + ACTIONS(3757), 1, anon_sym_LPAREN2, - ACTIONS(3371), 1, + ACTIONS(3759), 1, anon_sym_STAR, - ACTIONS(3373), 1, + ACTIONS(3761), 1, anon_sym_AMP_AMP, - ACTIONS(3375), 1, + ACTIONS(3763), 1, anon_sym_AMP, - ACTIONS(6268), 1, + ACTIONS(6781), 1, anon_sym_LBRACK, - ACTIONS(7232), 1, + ACTIONS(7490), 1, anon_sym_LT, - ACTIONS(7250), 1, - anon_sym_LBRACE, - STATE(3617), 1, + STATE(3340), 1, sym_compound_statement, - STATE(4136), 1, + STATE(4387), 1, sym_parameter_list, - STATE(4503), 1, + STATE(4765), 1, sym_template_parameter_list, - STATE(5256), 1, + STATE(5599), 1, sym_abstract_function_declarator, - STATE(5698), 1, + STATE(6021), 1, sym__abstract_declarator, - STATE(4832), 4, + STATE(5127), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [163871] = 17, + [187185] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 1, - anon_sym_operator, - ACTIONS(1517), 1, + ACTIONS(4255), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7468), 1, + anon_sym_LBRACE, + ACTIONS(7472), 1, + anon_sym_try, + ACTIONS(7506), 1, + anon_sym_COMMA, + ACTIONS(7508), 1, + anon_sym_LPAREN2, + ACTIONS(7514), 1, + anon_sym_LBRACK, + ACTIONS(7516), 1, + anon_sym_EQ, + ACTIONS(7540), 1, + anon_sym_SEMI, + STATE(2206), 1, + sym_compound_statement, + STATE(2422), 1, + sym_try_statement, + STATE(3843), 1, + sym_parameter_list, + STATE(5825), 1, + aux_sym_declaration_repeat1, + STATE(5035), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6411), 2, + sym_argument_list, + sym_initializer_list, + [187233] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7542), 1, + sym_identifier, + ACTIONS(7544), 1, anon_sym_TILDE, - ACTIONS(2807), 1, + ACTIONS(7546), 1, anon_sym_COLON_COLON, - ACTIONS(7288), 1, - sym_identifier, - ACTIONS(7290), 1, + ACTIONS(7548), 1, anon_sym_template, - STATE(2301), 1, + ACTIONS(7550), 1, + anon_sym_operator, + STATE(2173), 1, sym_dependent_identifier, - STATE(2311), 1, + STATE(2174), 1, sym_template_function, - STATE(2317), 1, - sym_qualified_identifier, - STATE(2320), 1, + STATE(2176), 1, sym_destructor_name, - STATE(2321), 1, + STATE(2180), 1, + sym_qualified_identifier, + STATE(2192), 1, sym_operator_name, - STATE(2716), 1, + STATE(3276), 1, + sym_template_type, + STATE(3282), 1, sym_qualified_type_identifier, - STATE(2717), 1, + STATE(3283), 1, sym_dependent_type_identifier, - STATE(2721), 1, - sym_template_type, - STATE(4520), 1, + STATE(4780), 1, sym__scope_resolution, - STATE(5281), 1, - sym_qualified_operator_cast_identifier, - STATE(5288), 1, + STATE(5639), 1, sym_operator_cast, - [163923] = 15, + STATE(5654), 1, + sym_qualified_operator_cast_identifier, + [187285] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7185), 1, + ACTIONS(7417), 1, anon_sym_LBRACE, - ACTIONS(7191), 1, + ACTIONS(7423), 1, anon_sym_try, - ACTIONS(7236), 1, + ACTIONS(7506), 1, anon_sym_COMMA, - ACTIONS(7238), 1, + ACTIONS(7508), 1, anon_sym_LPAREN2, - ACTIONS(7244), 1, + ACTIONS(7514), 1, anon_sym_LBRACK, - ACTIONS(7246), 1, + ACTIONS(7516), 1, anon_sym_EQ, - ACTIONS(7292), 1, + ACTIONS(7552), 1, anon_sym_SEMI, - STATE(1925), 1, - sym_try_statement, - STATE(1929), 1, + STATE(2154), 1, sym_compound_statement, - STATE(3293), 1, + STATE(2155), 1, + sym_try_statement, + STATE(3843), 1, sym_parameter_list, - STATE(5533), 1, + STATE(5952), 1, aux_sym_declaration_repeat1, - STATE(4794), 2, + STATE(5035), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6200), 2, + STATE(6411), 2, sym_argument_list, sym_initializer_list, - [163971] = 10, + [187333] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5708), 1, + ACTIONS(6547), 1, anon_sym_LPAREN2, - ACTIONS(5716), 1, + ACTIONS(6555), 1, anon_sym_LBRACK, - ACTIONS(6459), 1, + ACTIONS(6811), 1, anon_sym_STAR, - ACTIONS(6461), 1, + ACTIONS(6813), 1, anon_sym_AMP_AMP, - ACTIONS(6463), 1, + ACTIONS(6815), 1, anon_sym_AMP, - STATE(4067), 1, + STATE(4349), 1, sym_parameter_list, - STATE(5111), 1, + STATE(5424), 1, sym__abstract_declarator, - ACTIONS(5573), 4, + ACTIONS(5786), 4, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_requires, - STATE(4735), 5, + STATE(5059), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [164009] = 14, + [187371] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4255), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7506), 1, + anon_sym_COMMA, + ACTIONS(7508), 1, + anon_sym_LPAREN2, + ACTIONS(7514), 1, + anon_sym_LBRACK, + ACTIONS(7516), 1, + anon_sym_EQ, + ACTIONS(7554), 1, + anon_sym_SEMI, + ACTIONS(7556), 1, + anon_sym_LBRACE, + ACTIONS(7558), 1, + anon_sym_try, + STATE(1020), 1, + sym_compound_statement, + STATE(1021), 1, + sym_try_statement, + STATE(3843), 1, + sym_parameter_list, + STATE(5898), 1, + aux_sym_declaration_repeat1, + STATE(5035), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6411), 2, + sym_argument_list, + sym_initializer_list, + [187419] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3369), 1, + ACTIONS(3757), 1, anon_sym_LPAREN2, - ACTIONS(3371), 1, + ACTIONS(3759), 1, anon_sym_STAR, - ACTIONS(3373), 1, + ACTIONS(3761), 1, anon_sym_AMP_AMP, - ACTIONS(3375), 1, + ACTIONS(3763), 1, anon_sym_AMP, - ACTIONS(6268), 1, + ACTIONS(6781), 1, anon_sym_LBRACK, - ACTIONS(7232), 1, - anon_sym_LT, - ACTIONS(7294), 1, + ACTIONS(7498), 1, + anon_sym_requires, + ACTIONS(7560), 1, anon_sym_LBRACE, - STATE(4136), 1, - sym_parameter_list, - STATE(4526), 1, - sym_template_parameter_list, - STATE(4958), 1, + STATE(3709), 1, sym_compound_statement, - STATE(5279), 1, + STATE(4387), 1, + sym_parameter_list, + STATE(4903), 1, + sym_requires_clause, + STATE(5562), 1, sym_abstract_function_declarator, - STATE(5698), 1, + STATE(6021), 1, sym__abstract_declarator, - STATE(4832), 4, + STATE(5127), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [164055] = 15, + [187465] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3930), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7236), 1, - anon_sym_COMMA, - ACTIONS(7238), 1, + ACTIONS(3757), 1, anon_sym_LPAREN2, - ACTIONS(7244), 1, + ACTIONS(3759), 1, + anon_sym_STAR, + ACTIONS(3761), 1, + anon_sym_AMP_AMP, + ACTIONS(3763), 1, + anon_sym_AMP, + ACTIONS(6781), 1, anon_sym_LBRACK, - ACTIONS(7246), 1, - anon_sym_EQ, - ACTIONS(7296), 1, - anon_sym_SEMI, - ACTIONS(7298), 1, + ACTIONS(7498), 1, + anon_sym_requires, + ACTIONS(7504), 1, anon_sym_LBRACE, - ACTIONS(7300), 1, - anon_sym_try, - STATE(1046), 1, - sym_try_statement, - STATE(1047), 1, + STATE(3008), 1, sym_compound_statement, - STATE(3293), 1, + STATE(4387), 1, sym_parameter_list, - STATE(5669), 1, - aux_sym_declaration_repeat1, - STATE(4794), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6200), 2, - sym_argument_list, - sym_initializer_list, - [164103] = 14, + STATE(4927), 1, + sym_requires_clause, + STATE(5773), 1, + sym_abstract_function_declarator, + STATE(6021), 1, + sym__abstract_declarator, + STATE(5127), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [187511] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3369), 1, + ACTIONS(3757), 1, anon_sym_LPAREN2, - ACTIONS(3371), 1, + ACTIONS(3759), 1, anon_sym_STAR, - ACTIONS(3373), 1, + ACTIONS(3761), 1, anon_sym_AMP_AMP, - ACTIONS(3375), 1, + ACTIONS(3763), 1, anon_sym_AMP, - ACTIONS(6268), 1, + ACTIONS(6781), 1, anon_sym_LBRACK, - ACTIONS(7230), 1, + ACTIONS(7494), 1, + anon_sym_LBRACE, + ACTIONS(7498), 1, anon_sym_requires, - ACTIONS(7234), 1, + STATE(4387), 1, + sym_parameter_list, + STATE(4931), 1, + sym_requires_clause, + STATE(5029), 1, + sym_compound_statement, + STATE(5737), 1, + sym_abstract_function_declarator, + STATE(6021), 1, + sym__abstract_declarator, + STATE(5127), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [187557] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3757), 1, + anon_sym_LPAREN2, + ACTIONS(3759), 1, + anon_sym_STAR, + ACTIONS(3761), 1, + anon_sym_AMP_AMP, + ACTIONS(3763), 1, + anon_sym_AMP, + ACTIONS(6781), 1, + anon_sym_LBRACK, + ACTIONS(7490), 1, + anon_sym_LT, + ACTIONS(7502), 1, anon_sym_LBRACE, - STATE(3022), 1, + STATE(2544), 1, sym_compound_statement, - STATE(4136), 1, + STATE(4387), 1, sym_parameter_list, - STATE(4647), 1, - sym_requires_clause, - STATE(5339), 1, + STATE(4766), 1, + sym_template_parameter_list, + STATE(5715), 1, sym_abstract_function_declarator, - STATE(5698), 1, + STATE(6021), 1, sym__abstract_declarator, - STATE(4832), 4, + STATE(5127), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [164149] = 14, + [187603] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3369), 1, + ACTIONS(3757), 1, anon_sym_LPAREN2, - ACTIONS(3371), 1, + ACTIONS(3759), 1, anon_sym_STAR, - ACTIONS(3373), 1, + ACTIONS(3761), 1, anon_sym_AMP_AMP, - ACTIONS(3375), 1, + ACTIONS(3763), 1, anon_sym_AMP, - ACTIONS(6268), 1, + ACTIONS(6781), 1, anon_sym_LBRACK, - ACTIONS(7230), 1, - anon_sym_requires, - ACTIONS(7294), 1, + ACTIONS(7492), 1, anon_sym_LBRACE, - STATE(4136), 1, + ACTIONS(7498), 1, + anon_sym_requires, + STATE(4387), 1, sym_parameter_list, - STATE(4649), 1, + STATE(4894), 1, sym_requires_clause, - STATE(5010), 1, + STATE(5228), 1, sym_compound_statement, - STATE(5253), 1, + STATE(5646), 1, sym_abstract_function_declarator, - STATE(5698), 1, + STATE(6021), 1, sym__abstract_declarator, - STATE(4832), 4, + STATE(5127), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [164195] = 14, + [187649] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1845), 1, - anon_sym_LBRACE, - ACTIONS(3369), 1, + ACTIONS(3757), 1, anon_sym_LPAREN2, - ACTIONS(3371), 1, + ACTIONS(3759), 1, anon_sym_STAR, - ACTIONS(3373), 1, + ACTIONS(3761), 1, anon_sym_AMP_AMP, - ACTIONS(3375), 1, + ACTIONS(3763), 1, anon_sym_AMP, - ACTIONS(6268), 1, + ACTIONS(6781), 1, anon_sym_LBRACK, - ACTIONS(7232), 1, + ACTIONS(7490), 1, anon_sym_LT, - STATE(3323), 1, + ACTIONS(7560), 1, + anon_sym_LBRACE, + STATE(3786), 1, sym_compound_statement, - STATE(4136), 1, + STATE(4387), 1, sym_parameter_list, - STATE(4514), 1, + STATE(4784), 1, sym_template_parameter_list, - STATE(5295), 1, + STATE(5592), 1, sym_abstract_function_declarator, - STATE(5698), 1, + STATE(6021), 1, sym__abstract_declarator, - STATE(4832), 4, + STATE(5127), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [164241] = 14, + [187695] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3369), 1, + ACTIONS(3757), 1, anon_sym_LPAREN2, - ACTIONS(3371), 1, + ACTIONS(3759), 1, anon_sym_STAR, - ACTIONS(3373), 1, + ACTIONS(3761), 1, anon_sym_AMP_AMP, - ACTIONS(3375), 1, + ACTIONS(3763), 1, anon_sym_AMP, - ACTIONS(6268), 1, + ACTIONS(6781), 1, anon_sym_LBRACK, - ACTIONS(7230), 1, - anon_sym_requires, - ACTIONS(7264), 1, + ACTIONS(7490), 1, + anon_sym_LT, + ACTIONS(7562), 1, anon_sym_LBRACE, - STATE(1754), 1, + STATE(2747), 1, sym_compound_statement, - STATE(4136), 1, + STATE(4387), 1, sym_parameter_list, - STATE(4662), 1, - sym_requires_clause, - STATE(5494), 1, + STATE(4791), 1, + sym_template_parameter_list, + STATE(5731), 1, sym_abstract_function_declarator, - STATE(5698), 1, + STATE(6021), 1, sym__abstract_declarator, - STATE(4832), 4, + STATE(5127), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [164287] = 15, + [187741] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3930), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7195), 1, - anon_sym_LBRACE, - ACTIONS(7199), 1, - anon_sym_try, - ACTIONS(7236), 1, - anon_sym_COMMA, - ACTIONS(7238), 1, + ACTIONS(3757), 1, anon_sym_LPAREN2, - ACTIONS(7244), 1, + ACTIONS(3759), 1, + anon_sym_STAR, + ACTIONS(3761), 1, + anon_sym_AMP_AMP, + ACTIONS(3763), 1, + anon_sym_AMP, + ACTIONS(6781), 1, anon_sym_LBRACK, - ACTIONS(7246), 1, - anon_sym_EQ, - ACTIONS(7302), 1, - anon_sym_SEMI, - STATE(1834), 1, + ACTIONS(7498), 1, + anon_sym_requires, + ACTIONS(7562), 1, + anon_sym_LBRACE, + STATE(2754), 1, sym_compound_statement, - STATE(1840), 1, - sym_try_statement, - STATE(3293), 1, + STATE(4387), 1, sym_parameter_list, - STATE(5705), 1, - aux_sym_declaration_repeat1, - STATE(4794), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6200), 2, - sym_argument_list, - sym_initializer_list, - [164335] = 14, + STATE(4920), 1, + sym_requires_clause, + STATE(5708), 1, + sym_abstract_function_declarator, + STATE(6021), 1, + sym__abstract_declarator, + STATE(5127), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [187787] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(117), 1, + anon_sym_operator, + ACTIONS(1521), 1, + anon_sym_TILDE, + ACTIONS(2969), 1, + anon_sym_COLON_COLON, + ACTIONS(7564), 1, + sym_identifier, + ACTIONS(7566), 1, + anon_sym_template, + STATE(2173), 1, + sym_dependent_identifier, + STATE(2174), 1, + sym_template_function, + STATE(2176), 1, + sym_destructor_name, + STATE(2180), 1, + sym_qualified_identifier, + STATE(2192), 1, + sym_operator_name, + STATE(3276), 1, + sym_template_type, + STATE(3282), 1, + sym_qualified_type_identifier, + STATE(3283), 1, + sym_dependent_type_identifier, + STATE(4792), 1, + sym__scope_resolution, + STATE(5639), 1, + sym_operator_cast, + STATE(5654), 1, + sym_qualified_operator_cast_identifier, + [187839] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(4211), 1, + ACTIONS(4417), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5870), 1, + ACTIONS(6609), 1, anon_sym_COLON_COLON, - ACTIONS(6801), 1, + ACTIONS(7093), 1, sym_identifier, - STATE(2175), 1, + STATE(2349), 1, sym_template_type, - STATE(2440), 1, + STATE(2796), 1, sym_field_declaration_list, - STATE(5168), 1, + STATE(5374), 1, sym__scope_resolution, - STATE(5406), 1, + STATE(5563), 1, sym_virtual_specifier, - STATE(6186), 1, + STATE(6553), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2095), 2, + STATE(2142), 2, sym__class_name, sym_qualified_type_identifier, - [164380] = 14, + [187884] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(5141), 1, + ACTIONS(4265), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(6993), 1, - sym_identifier, - ACTIONS(7205), 1, + ACTIONS(6623), 1, anon_sym_COLON_COLON, - STATE(2635), 1, + ACTIONS(7103), 1, + sym_identifier, + STATE(2170), 1, sym_template_type, - STATE(3175), 1, + STATE(2736), 1, sym_field_declaration_list, - STATE(5164), 1, + STATE(5412), 1, sym__scope_resolution, - STATE(5419), 1, + STATE(5814), 1, sym_virtual_specifier, - STATE(6004), 1, + STATE(6728), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(4682), 2, + STATE(1957), 2, sym__class_name, sym_qualified_type_identifier, - [164425] = 14, + [187929] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(4316), 1, + ACTIONS(4265), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5834), 1, + ACTIONS(6623), 1, anon_sym_COLON_COLON, - ACTIONS(6835), 1, + ACTIONS(7103), 1, sym_identifier, - STATE(2267), 1, + STATE(2170), 1, sym_template_type, - STATE(2759), 1, + STATE(2843), 1, sym_field_declaration_list, - STATE(5092), 1, + STATE(5412), 1, sym__scope_resolution, - STATE(5362), 1, + STATE(5749), 1, sym_virtual_specifier, - STATE(6163), 1, + STATE(6705), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2174), 2, + STATE(1962), 2, sym__class_name, sym_qualified_type_identifier, - [164470] = 14, + [187974] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(4446), 1, + ACTIONS(4417), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5856), 1, + ACTIONS(5522), 1, anon_sym_COLON_COLON, - ACTIONS(6845), 1, + ACTIONS(7203), 1, sym_identifier, - STATE(2480), 1, + STATE(2349), 1, sym_template_type, - STATE(2890), 1, + STATE(2819), 1, sym_field_declaration_list, - STATE(5154), 1, + STATE(5397), 1, sym__scope_resolution, - STATE(5510), 1, + STATE(5545), 1, sym_virtual_specifier, - STATE(6081), 1, + STATE(6550), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2261), 2, + STATE(2146), 2, sym__class_name, sym_qualified_type_identifier, - [164515] = 14, + [188019] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(4211), 1, + ACTIONS(4265), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5870), 1, + ACTIONS(6623), 1, anon_sym_COLON_COLON, - ACTIONS(6801), 1, + ACTIONS(7103), 1, sym_identifier, - STATE(2175), 1, + STATE(2170), 1, sym_template_type, - STATE(2455), 1, + STATE(2833), 1, sym_field_declaration_list, - STATE(5168), 1, + STATE(5412), 1, sym__scope_resolution, - STATE(5415), 1, + STATE(5743), 1, sym_virtual_specifier, - STATE(6190), 1, + STATE(6702), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2097), 2, + STATE(1964), 2, sym__class_name, sym_qualified_type_identifier, - [164560] = 14, + [188064] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(5141), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5345), 1, - anon_sym_COLON_COLON, - ACTIONS(6993), 1, + ACTIONS(7187), 1, sym_identifier, - STATE(2635), 1, + ACTIONS(7482), 1, + anon_sym_COLON_COLON, + STATE(3262), 1, sym_template_type, - STATE(3173), 1, + STATE(3466), 1, sym_field_declaration_list, - STATE(5088), 1, + STATE(5383), 1, sym__scope_resolution, - STATE(5513), 1, + STATE(5669), 1, sym_virtual_specifier, - STATE(6236), 1, + STATE(6526), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(3212), 2, + STATE(4988), 2, sym__class_name, sym_qualified_type_identifier, - [164605] = 14, + [188109] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(5141), 1, + ACTIONS(4924), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(6993), 1, - sym_identifier, - ACTIONS(7205), 1, + ACTIONS(6595), 1, anon_sym_COLON_COLON, - STATE(2635), 1, + ACTIONS(7083), 1, + sym_identifier, + STATE(2906), 1, sym_template_type, - STATE(3161), 1, + STATE(3154), 1, sym_field_declaration_list, - STATE(5164), 1, + STATE(5386), 1, sym__scope_resolution, - STATE(5453), 1, + STATE(5748), 1, sym_virtual_specifier, - STATE(6241), 1, + STATE(6419), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(4675), 2, + STATE(2513), 2, sym__class_name, sym_qualified_type_identifier, - [164650] = 14, + [188154] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(4211), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5870), 1, + ACTIONS(5654), 1, anon_sym_COLON_COLON, - ACTIONS(6801), 1, + ACTIONS(7187), 1, sym_identifier, - STATE(2175), 1, + STATE(3262), 1, sym_template_type, - STATE(2452), 1, + STATE(3482), 1, sym_field_declaration_list, - STATE(5168), 1, + STATE(5416), 1, sym__scope_resolution, - STATE(5409), 1, + STATE(5580), 1, sym_virtual_specifier, - STATE(6188), 1, + STATE(6488), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2104), 2, + STATE(3548), 2, sym__class_name, sym_qualified_type_identifier, - [164695] = 14, + [188199] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(4316), 1, + ACTIONS(4417), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5834), 1, + ACTIONS(5522), 1, anon_sym_COLON_COLON, - ACTIONS(6835), 1, + ACTIONS(7203), 1, sym_identifier, - STATE(2267), 1, + STATE(2349), 1, sym_template_type, - STATE(2677), 1, + STATE(2858), 1, sym_field_declaration_list, - STATE(5092), 1, + STATE(5397), 1, sym__scope_resolution, - STATE(5328), 1, + STATE(5608), 1, sym_virtual_specifier, - STATE(5973), 1, + STATE(6541), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2162), 2, + STATE(2150), 2, sym__class_name, sym_qualified_type_identifier, - [164740] = 14, + [188244] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(5141), 1, + ACTIONS(4731), 1, + anon_sym_COLON_COLON, + ACTIONS(5496), 1, + anon_sym_COLON, + ACTIONS(5739), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(7211), 1, + sym_identifier, + STATE(3262), 1, + sym_template_type, + STATE(4005), 1, + sym_field_declaration_list, + STATE(5352), 1, + sym__scope_resolution, + STATE(5539), 1, + sym_virtual_specifier, + STATE(6510), 1, + sym_base_class_clause, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(5498), 2, + anon_sym_final, + anon_sym_override, + STATE(3463), 2, + sym__class_name, + sym_qualified_type_identifier, + [188289] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5345), 1, + ACTIONS(5654), 1, anon_sym_COLON_COLON, - ACTIONS(6993), 1, + ACTIONS(5739), 1, + anon_sym_LBRACE, + ACTIONS(7187), 1, sym_identifier, - STATE(2635), 1, + STATE(3262), 1, sym_template_type, - STATE(3161), 1, + STATE(4037), 1, sym_field_declaration_list, - STATE(5088), 1, + STATE(5416), 1, sym__scope_resolution, - STATE(5453), 1, + STATE(5584), 1, sym_virtual_specifier, - STATE(6241), 1, + STATE(6489), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(3213), 2, + STATE(3492), 2, sym__class_name, sym_qualified_type_identifier, - [164785] = 14, + [188334] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(117), 1, + anon_sym_operator, + ACTIONS(1521), 1, + anon_sym_TILDE, + ACTIONS(4253), 1, + anon_sym_COLON_COLON, + ACTIONS(7568), 1, + sym_identifier, + ACTIONS(7570), 1, + anon_sym_template, + STATE(2173), 1, + sym_dependent_identifier, + STATE(2174), 1, + sym_template_function, + STATE(2176), 1, + sym_destructor_name, + STATE(2180), 1, + sym_qualified_identifier, + STATE(2192), 1, + sym_operator_name, + STATE(4804), 1, + sym__scope_resolution, + STATE(5639), 1, + sym_operator_cast, + STATE(5654), 1, + sym_qualified_operator_cast_identifier, + STATE(7236), 2, + sym_template_type, + sym_dependent_type_identifier, + [188381] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3007), 1, + ACTIONS(5494), 1, + anon_sym_LBRACE, + ACTIONS(5496), 1, + anon_sym_COLON, + ACTIONS(5654), 1, anon_sym_COLON_COLON, - ACTIONS(5141), 1, + ACTIONS(7187), 1, + sym_identifier, + STATE(3262), 1, + sym_template_type, + STATE(3486), 1, + sym_field_declaration_list, + STATE(5416), 1, + sym__scope_resolution, + STATE(5596), 1, + sym_virtual_specifier, + STATE(6477), 1, + sym_base_class_clause, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(5498), 2, + anon_sym_final, + anon_sym_override, + STATE(3547), 2, + sym__class_name, + sym_qualified_type_identifier, + [188426] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4265), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(6993), 1, + ACTIONS(6623), 1, + anon_sym_COLON_COLON, + ACTIONS(7103), 1, sym_identifier, - STATE(2635), 1, + STATE(2170), 1, sym_template_type, - STATE(3167), 1, + STATE(2778), 1, sym_field_declaration_list, - STATE(5131), 1, + STATE(5412), 1, sym__scope_resolution, - STATE(5393), 1, + STATE(5778), 1, sym_virtual_specifier, - STATE(5942), 1, + STATE(6722), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2684), 2, + STATE(1956), 2, sym__class_name, sym_qualified_type_identifier, - [164830] = 14, + [188471] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(5141), 1, + ACTIONS(2434), 1, + anon_sym_COLON_COLON, + ACTIONS(5494), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(6993), 1, + ACTIONS(7187), 1, sym_identifier, - ACTIONS(7205), 1, + STATE(3262), 1, + sym_template_type, + STATE(3456), 1, + sym_field_declaration_list, + STATE(5394), 1, + sym__scope_resolution, + STATE(5675), 1, + sym_virtual_specifier, + STATE(6538), 1, + sym_base_class_clause, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(5498), 2, + anon_sym_final, + anon_sym_override, + STATE(3281), 2, + sym__class_name, + sym_qualified_type_identifier, + [188516] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4731), 1, anon_sym_COLON_COLON, - STATE(2635), 1, + ACTIONS(5496), 1, + anon_sym_COLON, + ACTIONS(5739), 1, + anon_sym_LBRACE, + ACTIONS(7211), 1, + sym_identifier, + STATE(3262), 1, sym_template_type, - STATE(3124), 1, + STATE(4016), 1, sym_field_declaration_list, - STATE(5164), 1, + STATE(5352), 1, sym__scope_resolution, - STATE(5425), 1, + STATE(5536), 1, sym_virtual_specifier, - STATE(6249), 1, + STATE(6512), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(4710), 2, + STATE(3461), 2, sym__class_name, sym_qualified_type_identifier, - [164875] = 14, + [188561] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(4446), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5856), 1, + ACTIONS(5654), 1, anon_sym_COLON_COLON, - ACTIONS(6845), 1, + ACTIONS(7187), 1, sym_identifier, - STATE(2480), 1, + STATE(3262), 1, sym_template_type, - STATE(2895), 1, + STATE(3489), 1, sym_field_declaration_list, - STATE(5154), 1, + STATE(5416), 1, sym__scope_resolution, - STATE(5514), 1, + STATE(5627), 1, sym_virtual_specifier, - STATE(6084), 1, + STATE(6720), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2260), 2, + STATE(3545), 2, sym__class_name, sym_qualified_type_identifier, - [164920] = 14, + [188606] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(4316), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5834), 1, - anon_sym_COLON_COLON, - ACTIONS(6835), 1, + ACTIONS(7187), 1, sym_identifier, - STATE(2267), 1, + ACTIONS(7482), 1, + anon_sym_COLON_COLON, + STATE(3262), 1, sym_template_type, - STATE(2623), 1, + STATE(3482), 1, sym_field_declaration_list, - STATE(5092), 1, + STATE(5383), 1, sym__scope_resolution, - STATE(5359), 1, + STATE(5580), 1, sym_virtual_specifier, - STATE(6156), 1, + STATE(6488), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2173), 2, + STATE(4971), 2, sym__class_name, sym_qualified_type_identifier, - [164965] = 14, + [188651] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(4316), 1, + ACTIONS(4924), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5834), 1, + ACTIONS(5562), 1, anon_sym_COLON_COLON, - ACTIONS(6835), 1, + ACTIONS(7462), 1, sym_identifier, - STATE(2267), 1, + STATE(2906), 1, sym_template_type, - STATE(2682), 1, + STATE(3176), 1, sym_field_declaration_list, - STATE(5092), 1, + STATE(5425), 1, sym__scope_resolution, - STATE(5330), 1, + STATE(5793), 1, sym_virtual_specifier, - STATE(5978), 1, + STATE(6379), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2163), 2, + STATE(2482), 2, sym__class_name, sym_qualified_type_identifier, - [165010] = 14, + [188696] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(4316), 1, + ACTIONS(4417), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5834), 1, + ACTIONS(5522), 1, anon_sym_COLON_COLON, - ACTIONS(6835), 1, + ACTIONS(7203), 1, sym_identifier, - STATE(2267), 1, + STATE(2349), 1, sym_template_type, - STATE(2686), 1, + STATE(2917), 1, sym_field_declaration_list, - STATE(5092), 1, + STATE(5397), 1, sym__scope_resolution, - STATE(5334), 1, + STATE(5588), 1, sym_virtual_specifier, - STATE(5987), 1, + STATE(6485), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2166), 2, + STATE(2141), 2, sym__class_name, sym_qualified_type_identifier, - [165055] = 14, + [188741] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(5141), 1, + ACTIONS(5496), 1, + anon_sym_COLON, + ACTIONS(5654), 1, + anon_sym_COLON_COLON, + ACTIONS(5739), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(7187), 1, + sym_identifier, + STATE(3262), 1, + sym_template_type, + STATE(4057), 1, + sym_field_declaration_list, + STATE(5416), 1, + sym__scope_resolution, + STATE(5579), 1, + sym_virtual_specifier, + STATE(6497), 1, + sym_base_class_clause, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(5498), 2, + anon_sym_final, + anon_sym_override, + STATE(3476), 2, + sym__class_name, + sym_qualified_type_identifier, + [188786] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5345), 1, + ACTIONS(5654), 1, anon_sym_COLON_COLON, - ACTIONS(6993), 1, + ACTIONS(5739), 1, + anon_sym_LBRACE, + ACTIONS(7187), 1, sym_identifier, - STATE(2635), 1, + STATE(3262), 1, sym_template_type, - STATE(3124), 1, + STATE(4054), 1, sym_field_declaration_list, - STATE(5088), 1, + STATE(5416), 1, sym__scope_resolution, - STATE(5425), 1, + STATE(5574), 1, sym_virtual_specifier, - STATE(6249), 1, + STATE(6503), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(3218), 2, + STATE(3474), 2, sym__class_name, sym_qualified_type_identifier, - [165100] = 14, + [188831] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(4262), 1, + ACTIONS(4924), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5200), 1, + ACTIONS(5562), 1, anon_sym_COLON_COLON, - ACTIONS(6957), 1, + ACTIONS(7462), 1, sym_identifier, - STATE(2187), 1, + STATE(2906), 1, sym_template_type, - STATE(2347), 1, + STATE(3137), 1, sym_field_declaration_list, - STATE(5137), 1, + STATE(5425), 1, sym__scope_resolution, - STATE(5399), 1, + STATE(5788), 1, sym_virtual_specifier, - STATE(6352), 1, + STATE(6399), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2143), 2, + STATE(2483), 2, sym__class_name, sym_qualified_type_identifier, - [165145] = 14, + [188876] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(4262), 1, + ACTIONS(5496), 1, + anon_sym_COLON, + ACTIONS(5568), 1, + anon_sym_COLON_COLON, + ACTIONS(6990), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(7313), 1, + sym_identifier, + STATE(4380), 1, + sym_template_type, + STATE(4504), 1, + sym_field_declaration_list, + STATE(5387), 1, + sym__scope_resolution, + STATE(5637), 1, + sym_virtual_specifier, + STATE(6212), 1, + sym_base_class_clause, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(5498), 2, + anon_sym_final, + anon_sym_override, + STATE(4341), 2, + sym__class_name, + sym_qualified_type_identifier, + [188921] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5772), 1, + ACTIONS(5568), 1, anon_sym_COLON_COLON, - ACTIONS(6825), 1, + ACTIONS(6990), 1, + anon_sym_LBRACE, + ACTIONS(7313), 1, sym_identifier, - STATE(2187), 1, + STATE(4380), 1, sym_template_type, - STATE(2347), 1, + STATE(4498), 1, sym_field_declaration_list, - STATE(5152), 1, + STATE(5387), 1, sym__scope_resolution, - STATE(5399), 1, + STATE(5557), 1, sym_virtual_specifier, - STATE(6352), 1, + STATE(6207), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2143), 2, + STATE(4340), 2, sym__class_name, sym_qualified_type_identifier, - [165190] = 14, + [188966] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(4262), 1, + ACTIONS(4924), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5200), 1, + ACTIONS(5562), 1, anon_sym_COLON_COLON, - ACTIONS(6957), 1, + ACTIONS(7462), 1, sym_identifier, - STATE(2187), 1, + STATE(2906), 1, sym_template_type, - STATE(2328), 1, + STATE(3170), 1, sym_field_declaration_list, - STATE(5137), 1, + STATE(5425), 1, sym__scope_resolution, - STATE(5404), 1, + STATE(5783), 1, sym_virtual_specifier, - STATE(6316), 1, + STATE(6402), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2105), 2, + STATE(2489), 2, sym__class_name, sym_qualified_type_identifier, - [165235] = 14, + [189011] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(4262), 1, - anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5772), 1, + ACTIONS(5568), 1, anon_sym_COLON_COLON, - ACTIONS(6825), 1, + ACTIONS(6990), 1, + anon_sym_LBRACE, + ACTIONS(7313), 1, sym_identifier, - STATE(2187), 1, + STATE(4380), 1, sym_template_type, - STATE(2374), 1, + STATE(4495), 1, sym_field_declaration_list, - STATE(5152), 1, + STATE(5387), 1, sym__scope_resolution, - STATE(5411), 1, + STATE(5617), 1, sym_virtual_specifier, - STATE(6342), 1, + STATE(6202), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2127), 2, + STATE(4338), 2, sym__class_name, sym_qualified_type_identifier, - [165280] = 14, + [189056] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(5141), 1, + ACTIONS(3765), 1, + anon_sym_COLON_COLON, + ACTIONS(5494), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(6993), 1, + ACTIONS(7211), 1, sym_identifier, - ACTIONS(7205), 1, - anon_sym_COLON_COLON, - STATE(2635), 1, + STATE(3262), 1, sym_template_type, - STATE(3173), 1, + STATE(3466), 1, sym_field_declaration_list, - STATE(5164), 1, + STATE(5354), 1, sym__scope_resolution, - STATE(5513), 1, + STATE(5669), 1, sym_virtual_specifier, - STATE(6236), 1, + STATE(6526), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(4676), 2, + STATE(3286), 2, sym__class_name, sym_qualified_type_identifier, - [165325] = 14, + [189101] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(4262), 1, - anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5772), 1, + ACTIONS(5568), 1, anon_sym_COLON_COLON, - ACTIONS(6825), 1, + ACTIONS(6990), 1, + anon_sym_LBRACE, + ACTIONS(7313), 1, sym_identifier, - STATE(2187), 1, + STATE(4380), 1, sym_template_type, - STATE(2517), 1, + STATE(4476), 1, sym_field_declaration_list, - STATE(5152), 1, + STATE(5387), 1, sym__scope_resolution, - STATE(5445), 1, + STATE(5717), 1, sym_virtual_specifier, - STATE(6340), 1, + STATE(6182), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2130), 2, + STATE(4334), 2, sym__class_name, sym_qualified_type_identifier, - [165370] = 14, + [189146] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(4446), 1, + ACTIONS(4417), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5337), 1, + ACTIONS(5522), 1, anon_sym_COLON_COLON, - ACTIONS(7149), 1, + ACTIONS(7203), 1, sym_identifier, - STATE(2480), 1, + STATE(2349), 1, sym_template_type, - STATE(2890), 1, + STATE(2896), 1, sym_field_declaration_list, - STATE(5169), 1, + STATE(5397), 1, sym__scope_resolution, - STATE(5510), 1, + STATE(5600), 1, sym_virtual_specifier, - STATE(6081), 1, + STATE(6479), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2261), 2, + STATE(2164), 2, sym__class_name, sym_qualified_type_identifier, - [165415] = 14, + [189191] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(4446), 1, - anon_sym_LBRACE, - ACTIONS(5143), 1, - anon_sym_COLON, - ACTIONS(5337), 1, + ACTIONS(4731), 1, anon_sym_COLON_COLON, - ACTIONS(7149), 1, + ACTIONS(5496), 1, + anon_sym_COLON, + ACTIONS(5739), 1, + anon_sym_LBRACE, + ACTIONS(7211), 1, sym_identifier, - STATE(2480), 1, + STATE(3262), 1, sym_template_type, - STATE(2895), 1, + STATE(4008), 1, sym_field_declaration_list, - STATE(5169), 1, + STATE(5352), 1, sym__scope_resolution, - STATE(5514), 1, + STATE(5533), 1, sym_virtual_specifier, - STATE(6084), 1, + STATE(6514), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2260), 2, + STATE(3458), 2, sym__class_name, sym_qualified_type_identifier, - [165460] = 14, + [189236] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3007), 1, + ACTIONS(5496), 1, + anon_sym_COLON, + ACTIONS(5654), 1, anon_sym_COLON_COLON, - ACTIONS(5141), 1, + ACTIONS(5739), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, - anon_sym_COLON, - ACTIONS(6993), 1, + ACTIONS(7187), 1, sym_identifier, - STATE(2635), 1, + STATE(3262), 1, sym_template_type, - STATE(3175), 1, + STATE(4005), 1, sym_field_declaration_list, - STATE(5131), 1, + STATE(5416), 1, sym__scope_resolution, - STATE(5419), 1, + STATE(5539), 1, sym_virtual_specifier, - STATE(6004), 1, + STATE(6510), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2689), 2, + STATE(3463), 2, sym__class_name, sym_qualified_type_identifier, - [165505] = 14, + [189281] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(4446), 1, + ACTIONS(4417), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5856), 1, + ACTIONS(5522), 1, anon_sym_COLON_COLON, - ACTIONS(6845), 1, + ACTIONS(7203), 1, sym_identifier, - STATE(2480), 1, + STATE(2349), 1, sym_template_type, - STATE(2899), 1, + STATE(2796), 1, sym_field_declaration_list, - STATE(5154), 1, + STATE(5397), 1, sym__scope_resolution, - STATE(5501), 1, + STATE(5563), 1, sym_virtual_specifier, - STATE(6233), 1, + STATE(6553), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2223), 2, + STATE(2142), 2, sym__class_name, sym_qualified_type_identifier, - [165550] = 14, + [189326] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(4446), 1, + ACTIONS(4924), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5337), 1, + ACTIONS(5562), 1, anon_sym_COLON_COLON, - ACTIONS(7149), 1, + ACTIONS(7462), 1, sym_identifier, - STATE(2480), 1, + STATE(2906), 1, sym_template_type, - STATE(2899), 1, + STATE(3157), 1, sym_field_declaration_list, - STATE(5169), 1, + STATE(5425), 1, sym__scope_resolution, - STATE(5501), 1, + STATE(5752), 1, sym_virtual_specifier, - STATE(6233), 1, + STATE(6417), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2223), 2, + STATE(2507), 2, sym__class_name, sym_qualified_type_identifier, - [165595] = 14, + [189371] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(4316), 1, - anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5834), 1, + ACTIONS(5568), 1, anon_sym_COLON_COLON, - ACTIONS(6835), 1, + ACTIONS(6990), 1, + anon_sym_LBRACE, + ACTIONS(7313), 1, sym_identifier, - STATE(2267), 1, + STATE(4380), 1, sym_template_type, - STATE(2755), 1, + STATE(4474), 1, sym_field_declaration_list, - STATE(5092), 1, + STATE(5387), 1, sym__scope_resolution, - STATE(5356), 1, + STATE(5732), 1, sym_virtual_specifier, - STATE(6137), 1, + STATE(6178), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2150), 2, + STATE(4333), 2, sym__class_name, sym_qualified_type_identifier, - [165640] = 14, + [189416] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(4211), 1, + ACTIONS(4417), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5870), 1, + ACTIONS(6609), 1, anon_sym_COLON_COLON, - ACTIONS(6801), 1, + ACTIONS(7093), 1, sym_identifier, - STATE(2175), 1, + STATE(2349), 1, sym_template_type, - STATE(2337), 1, + STATE(2874), 1, sym_field_declaration_list, - STATE(5168), 1, + STATE(5374), 1, sym__scope_resolution, - STATE(5344), 1, + STATE(5621), 1, sym_virtual_specifier, - STATE(6155), 1, + STATE(6464), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2096), 2, + STATE(2152), 2, sym__class_name, sym_qualified_type_identifier, - [165685] = 14, + [189461] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3007), 1, - anon_sym_COLON_COLON, - ACTIONS(5141), 1, + ACTIONS(4924), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(6993), 1, + ACTIONS(5562), 1, + anon_sym_COLON_COLON, + ACTIONS(7462), 1, sym_identifier, - STATE(2635), 1, + STATE(2906), 1, sym_template_type, - STATE(3182), 1, + STATE(3154), 1, sym_field_declaration_list, - STATE(5131), 1, + STATE(5425), 1, sym__scope_resolution, - STATE(5312), 1, + STATE(5748), 1, sym_virtual_specifier, - STATE(5879), 1, + STATE(6419), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2675), 2, + STATE(2513), 2, sym__class_name, sym_qualified_type_identifier, - [165730] = 14, + [189506] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(4211), 1, - anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5870), 1, + ACTIONS(5568), 1, anon_sym_COLON_COLON, - ACTIONS(6801), 1, + ACTIONS(6990), 1, + anon_sym_LBRACE, + ACTIONS(7313), 1, sym_identifier, - STATE(2175), 1, + STATE(4380), 1, sym_template_type, - STATE(2340), 1, + STATE(4470), 1, sym_field_declaration_list, - STATE(5168), 1, + STATE(5387), 1, sym__scope_resolution, - STATE(5340), 1, + STATE(5736), 1, sym_virtual_specifier, - STATE(6152), 1, + STATE(6174), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2084), 2, + STATE(4330), 2, sym__class_name, sym_qualified_type_identifier, - [165775] = 14, + [189551] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(4446), 1, + ACTIONS(4417), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5856), 1, + ACTIONS(5522), 1, anon_sym_COLON_COLON, - ACTIONS(6845), 1, + ACTIONS(7203), 1, sym_identifier, - STATE(2480), 1, + STATE(2349), 1, sym_template_type, - STATE(2958), 1, + STATE(2874), 1, sym_field_declaration_list, - STATE(5154), 1, + STATE(5397), 1, sym__scope_resolution, - STATE(5483), 1, + STATE(5621), 1, sym_virtual_specifier, - STATE(6171), 1, + STATE(6464), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2273), 2, + STATE(2152), 2, sym__class_name, sym_qualified_type_identifier, - [165820] = 14, + [189596] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(4211), 1, + ACTIONS(4195), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5870), 1, + ACTIONS(6651), 1, anon_sym_COLON_COLON, - ACTIONS(6801), 1, + ACTIONS(7073), 1, sym_identifier, - STATE(2175), 1, + STATE(2062), 1, sym_template_type, - STATE(2343), 1, + STATE(2606), 1, sym_field_declaration_list, - STATE(5168), 1, + STATE(5439), 1, sym__scope_resolution, - STATE(5336), 1, + STATE(5695), 1, sym_virtual_specifier, - STATE(6147), 1, + STATE(6186), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2101), 2, + STATE(1908), 2, sym__class_name, sym_qualified_type_identifier, - [165865] = 14, + [189641] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(4446), 1, + ACTIONS(4924), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5856), 1, + ACTIONS(5562), 1, anon_sym_COLON_COLON, - ACTIONS(6845), 1, + ACTIONS(7462), 1, sym_identifier, - STATE(2480), 1, + STATE(2906), 1, sym_template_type, - STATE(2961), 1, + STATE(3152), 1, sym_field_declaration_list, - STATE(5154), 1, + STATE(5425), 1, sym__scope_resolution, - STATE(5478), 1, + STATE(5744), 1, sym_virtual_specifier, - STATE(6174), 1, + STATE(6421), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2272), 2, + STATE(2571), 2, sym__class_name, sym_qualified_type_identifier, - [165910] = 14, + [189686] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(4446), 1, + ACTIONS(4924), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5856), 1, + ACTIONS(6595), 1, anon_sym_COLON_COLON, - ACTIONS(6845), 1, + ACTIONS(7083), 1, sym_identifier, - STATE(2480), 1, + STATE(2906), 1, sym_template_type, - STATE(2903), 1, + STATE(3157), 1, sym_field_declaration_list, - STATE(5154), 1, + STATE(5386), 1, sym__scope_resolution, - STATE(5474), 1, + STATE(5752), 1, sym_virtual_specifier, - STATE(6181), 1, + STATE(6417), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2230), 2, + STATE(2507), 2, sym__class_name, sym_qualified_type_identifier, - [165955] = 14, + [189731] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(5141), 1, + ACTIONS(3765), 1, + anon_sym_COLON_COLON, + ACTIONS(5494), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5345), 1, - anon_sym_COLON_COLON, - ACTIONS(6993), 1, + ACTIONS(7211), 1, sym_identifier, - STATE(2635), 1, + STATE(3262), 1, sym_template_type, - STATE(3175), 1, + STATE(3460), 1, sym_field_declaration_list, - STATE(5088), 1, + STATE(5354), 1, sym__scope_resolution, - STATE(5419), 1, + STATE(5792), 1, sym_virtual_specifier, - STATE(6004), 1, + STATE(6535), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(3222), 2, + STATE(3285), 2, sym__class_name, sym_qualified_type_identifier, - [166000] = 14, + [189776] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3007), 1, + ACTIONS(2434), 1, anon_sym_COLON_COLON, - ACTIONS(5141), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(6993), 1, + ACTIONS(7187), 1, sym_identifier, - STATE(2635), 1, + STATE(3262), 1, sym_template_type, - STATE(3161), 1, + STATE(3489), 1, sym_field_declaration_list, - STATE(5131), 1, + STATE(5394), 1, sym__scope_resolution, - STATE(5453), 1, + STATE(5627), 1, sym_virtual_specifier, - STATE(6241), 1, + STATE(6720), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2657), 2, + STATE(3268), 2, sym__class_name, sym_qualified_type_identifier, - [166045] = 14, + [189821] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(4446), 1, + ACTIONS(4924), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5337), 1, + ACTIONS(6595), 1, anon_sym_COLON_COLON, - ACTIONS(7149), 1, + ACTIONS(7083), 1, sym_identifier, - STATE(2480), 1, + STATE(2906), 1, sym_template_type, - STATE(2958), 1, + STATE(3170), 1, sym_field_declaration_list, - STATE(5169), 1, + STATE(5386), 1, sym__scope_resolution, - STATE(5483), 1, + STATE(5783), 1, sym_virtual_specifier, - STATE(6171), 1, + STATE(6402), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2273), 2, + STATE(2489), 2, sym__class_name, sym_qualified_type_identifier, - [166090] = 14, + [189866] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(4060), 1, - anon_sym_COLON_COLON, - ACTIONS(5141), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(6947), 1, + ACTIONS(7187), 1, sym_identifier, - STATE(2635), 1, + ACTIONS(7482), 1, + anon_sym_COLON_COLON, + STATE(3262), 1, sym_template_type, - STATE(3182), 1, + STATE(3460), 1, sym_field_declaration_list, - STATE(5072), 1, + STATE(5383), 1, sym__scope_resolution, - STATE(5312), 1, + STATE(5792), 1, sym_virtual_specifier, - STATE(5879), 1, + STATE(6535), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(3225), 2, + STATE(4955), 2, sym__class_name, sym_qualified_type_identifier, - [166135] = 14, + [189911] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(5141), 1, + ACTIONS(4417), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5345), 1, + ACTIONS(6609), 1, anon_sym_COLON_COLON, - ACTIONS(6993), 1, + ACTIONS(7093), 1, sym_identifier, - STATE(2635), 1, + STATE(2349), 1, sym_template_type, - STATE(3167), 1, + STATE(2896), 1, sym_field_declaration_list, - STATE(5088), 1, + STATE(5374), 1, sym__scope_resolution, - STATE(5393), 1, + STATE(5600), 1, sym_virtual_specifier, - STATE(5942), 1, + STATE(6479), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(3224), 2, + STATE(2164), 2, sym__class_name, sym_qualified_type_identifier, - [166180] = 14, + [189956] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(5141), 1, + ACTIONS(2434), 1, + anon_sym_COLON_COLON, + ACTIONS(5494), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5345), 1, - anon_sym_COLON_COLON, - ACTIONS(6993), 1, + ACTIONS(7187), 1, sym_identifier, - STATE(2635), 1, + STATE(3262), 1, sym_template_type, - STATE(3182), 1, + STATE(3486), 1, sym_field_declaration_list, - STATE(5088), 1, + STATE(5394), 1, sym__scope_resolution, - STATE(5312), 1, + STATE(5596), 1, sym_virtual_specifier, - STATE(5879), 1, + STATE(6477), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(3225), 2, + STATE(3261), 2, sym__class_name, sym_qualified_type_identifier, - [166225] = 14, + [190001] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(5141), 1, + ACTIONS(3765), 1, + anon_sym_COLON_COLON, + ACTIONS(5494), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(6993), 1, + ACTIONS(7211), 1, sym_identifier, - ACTIONS(7205), 1, - anon_sym_COLON_COLON, - STATE(2635), 1, + STATE(3262), 1, sym_template_type, - STATE(3167), 1, + STATE(3489), 1, sym_field_declaration_list, - STATE(5164), 1, + STATE(5354), 1, sym__scope_resolution, - STATE(5393), 1, + STATE(5627), 1, sym_virtual_specifier, - STATE(5942), 1, + STATE(6720), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(4687), 2, + STATE(3268), 2, sym__class_name, sym_qualified_type_identifier, - [166270] = 14, + [190046] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(5141), 1, + ACTIONS(3765), 1, + anon_sym_COLON_COLON, + ACTIONS(5494), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(6993), 1, + ACTIONS(7211), 1, sym_identifier, - ACTIONS(7205), 1, - anon_sym_COLON_COLON, - STATE(2635), 1, + STATE(3262), 1, sym_template_type, - STATE(3182), 1, + STATE(3456), 1, sym_field_declaration_list, - STATE(5164), 1, + STATE(5354), 1, sym__scope_resolution, - STATE(5312), 1, + STATE(5675), 1, sym_virtual_specifier, - STATE(5879), 1, + STATE(6538), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(4688), 2, + STATE(3281), 2, sym__class_name, sym_qualified_type_identifier, - [166315] = 14, + [190091] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3007), 1, + ACTIONS(2434), 1, anon_sym_COLON_COLON, - ACTIONS(5141), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(6993), 1, + ACTIONS(7187), 1, sym_identifier, - STATE(2635), 1, + STATE(3262), 1, sym_template_type, - STATE(3124), 1, + STATE(3482), 1, sym_field_declaration_list, - STATE(5131), 1, + STATE(5394), 1, sym__scope_resolution, - STATE(5425), 1, + STATE(5580), 1, sym_virtual_specifier, - STATE(6249), 1, + STATE(6488), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2749), 2, + STATE(3264), 2, sym__class_name, sym_qualified_type_identifier, - [166360] = 14, + [190136] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(4446), 1, - anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5337), 1, + ACTIONS(5654), 1, anon_sym_COLON_COLON, - ACTIONS(7149), 1, + ACTIONS(5739), 1, + anon_sym_LBRACE, + ACTIONS(7187), 1, sym_identifier, - STATE(2480), 1, + STATE(3262), 1, sym_template_type, - STATE(2961), 1, + STATE(4016), 1, sym_field_declaration_list, - STATE(5169), 1, + STATE(5416), 1, sym__scope_resolution, - STATE(5478), 1, + STATE(5536), 1, sym_virtual_specifier, - STATE(6174), 1, + STATE(6512), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2272), 2, + STATE(3461), 2, sym__class_name, sym_qualified_type_identifier, - [166405] = 14, + [190181] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(4262), 1, + ACTIONS(4924), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5200), 1, + ACTIONS(6595), 1, anon_sym_COLON_COLON, - ACTIONS(6957), 1, + ACTIONS(7083), 1, sym_identifier, - STATE(2187), 1, + STATE(2906), 1, sym_template_type, - STATE(2510), 1, + STATE(3137), 1, sym_field_declaration_list, - STATE(5137), 1, + STATE(5386), 1, sym__scope_resolution, - STATE(5442), 1, + STATE(5788), 1, sym_virtual_specifier, - STATE(6344), 1, + STATE(6399), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2126), 2, + STATE(2483), 2, sym__class_name, sym_qualified_type_identifier, - [166450] = 14, + [190226] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(4446), 1, + ACTIONS(4417), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5337), 1, + ACTIONS(6609), 1, anon_sym_COLON_COLON, - ACTIONS(7149), 1, + ACTIONS(7093), 1, sym_identifier, - STATE(2480), 1, + STATE(2349), 1, sym_template_type, - STATE(2903), 1, + STATE(2917), 1, sym_field_declaration_list, - STATE(5169), 1, + STATE(5374), 1, sym__scope_resolution, - STATE(5474), 1, + STATE(5588), 1, sym_virtual_specifier, - STATE(6181), 1, + STATE(6485), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2230), 2, + STATE(2141), 2, sym__class_name, sym_qualified_type_identifier, - [166495] = 14, + [190271] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6547), 1, + anon_sym_LPAREN2, + ACTIONS(6555), 1, + anon_sym_LBRACK, + ACTIONS(6893), 1, + anon_sym_STAR, + ACTIONS(6895), 1, + anon_sym_AMP_AMP, + ACTIONS(6897), 1, + anon_sym_AMP, + STATE(4372), 1, + sym_parameter_list, + STATE(5492), 1, + sym__abstract_declarator, + ACTIONS(5786), 3, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + anon_sym_requires, + STATE(5059), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [190308] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(4060), 1, + ACTIONS(4731), 1, anon_sym_COLON_COLON, - ACTIONS(5141), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(6947), 1, + ACTIONS(7211), 1, sym_identifier, - STATE(2635), 1, + STATE(3262), 1, sym_template_type, - STATE(3167), 1, + STATE(3456), 1, sym_field_declaration_list, - STATE(5072), 1, + STATE(5352), 1, sym__scope_resolution, - STATE(5393), 1, + STATE(5675), 1, sym_virtual_specifier, - STATE(5942), 1, + STATE(6538), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(3224), 2, + STATE(3540), 2, sym__class_name, sym_qualified_type_identifier, - [166540] = 14, + [190353] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(4262), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5200), 1, - anon_sym_COLON_COLON, - ACTIONS(6957), 1, + ACTIONS(7187), 1, sym_identifier, - STATE(2187), 1, + ACTIONS(7482), 1, + anon_sym_COLON_COLON, + STATE(3262), 1, sym_template_type, - STATE(2517), 1, + STATE(3486), 1, sym_field_declaration_list, - STATE(5137), 1, + STATE(5383), 1, sym__scope_resolution, - STATE(5445), 1, + STATE(5596), 1, sym_virtual_specifier, - STATE(6340), 1, + STATE(6477), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2130), 2, + STATE(4974), 2, sym__class_name, sym_qualified_type_identifier, - [166585] = 14, + [190398] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(4262), 1, - anon_sym_LBRACE, - ACTIONS(5143), 1, - anon_sym_COLON, - ACTIONS(5200), 1, + ACTIONS(4731), 1, anon_sym_COLON_COLON, - ACTIONS(6957), 1, + ACTIONS(5496), 1, + anon_sym_COLON, + ACTIONS(5739), 1, + anon_sym_LBRACE, + ACTIONS(7211), 1, sym_identifier, - STATE(2187), 1, + STATE(3262), 1, sym_template_type, - STATE(2505), 1, + STATE(4054), 1, sym_field_declaration_list, - STATE(5137), 1, + STATE(5352), 1, sym__scope_resolution, - STATE(5449), 1, + STATE(5574), 1, sym_virtual_specifier, - STATE(6337), 1, + STATE(6503), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2140), 2, + STATE(3474), 2, sym__class_name, sym_qualified_type_identifier, - [166630] = 14, + [190443] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(4262), 1, - anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5772), 1, + ACTIONS(5654), 1, anon_sym_COLON_COLON, - ACTIONS(6825), 1, + ACTIONS(5739), 1, + anon_sym_LBRACE, + ACTIONS(7187), 1, sym_identifier, - STATE(2187), 1, + STATE(3262), 1, sym_template_type, - STATE(2505), 1, + STATE(4008), 1, sym_field_declaration_list, - STATE(5152), 1, + STATE(5416), 1, sym__scope_resolution, - STATE(5449), 1, + STATE(5533), 1, sym_virtual_specifier, - STATE(6337), 1, + STATE(6514), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2140), 2, + STATE(3458), 2, sym__class_name, sym_qualified_type_identifier, - [166675] = 14, + [190488] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(5143), 1, - anon_sym_COLON, - ACTIONS(5281), 1, + ACTIONS(4731), 1, anon_sym_COLON_COLON, - ACTIONS(6747), 1, + ACTIONS(5496), 1, + anon_sym_COLON, + ACTIONS(5739), 1, anon_sym_LBRACE, - ACTIONS(7115), 1, + ACTIONS(7211), 1, sym_identifier, - STATE(4117), 1, + STATE(3262), 1, sym_template_type, - STATE(4202), 1, + STATE(4057), 1, sym_field_declaration_list, - STATE(5084), 1, + STATE(5352), 1, sym__scope_resolution, - STATE(5275), 1, + STATE(5579), 1, sym_virtual_specifier, - STATE(5812), 1, + STATE(6497), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(4089), 2, + STATE(3476), 2, sym__class_name, sym_qualified_type_identifier, - [166720] = 14, + [190533] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(4060), 1, + ACTIONS(4731), 1, anon_sym_COLON_COLON, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5504), 1, + ACTIONS(5739), 1, anon_sym_LBRACE, - ACTIONS(6947), 1, + ACTIONS(7211), 1, sym_identifier, - STATE(2635), 1, + STATE(3262), 1, sym_template_type, - STATE(3406), 1, + STATE(4037), 1, sym_field_declaration_list, - STATE(5072), 1, + STATE(5352), 1, sym__scope_resolution, - STATE(5363), 1, + STATE(5584), 1, sym_virtual_specifier, - STATE(6162), 1, + STATE(6489), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(3127), 2, + STATE(3492), 2, sym__class_name, sym_qualified_type_identifier, - [166765] = 14, + [190578] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(4060), 1, + ACTIONS(3765), 1, anon_sym_COLON_COLON, - ACTIONS(5143), 1, - anon_sym_COLON, - ACTIONS(5504), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - ACTIONS(6947), 1, + ACTIONS(5496), 1, + anon_sym_COLON, + ACTIONS(7211), 1, sym_identifier, - STATE(2635), 1, + STATE(3262), 1, sym_template_type, - STATE(3411), 1, + STATE(3486), 1, sym_field_declaration_list, - STATE(5072), 1, + STATE(5354), 1, sym__scope_resolution, - STATE(5358), 1, + STATE(5596), 1, sym_virtual_specifier, - STATE(6138), 1, + STATE(6477), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(3128), 2, + STATE(3261), 2, sym__class_name, sym_qualified_type_identifier, - [166810] = 14, + [190623] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(5143), 1, + ACTIONS(4417), 1, + anon_sym_LBRACE, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5281), 1, + ACTIONS(6609), 1, anon_sym_COLON_COLON, - ACTIONS(6747), 1, - anon_sym_LBRACE, - ACTIONS(7115), 1, + ACTIONS(7093), 1, sym_identifier, - STATE(4117), 1, + STATE(2349), 1, sym_template_type, - STATE(4264), 1, + STATE(2819), 1, sym_field_declaration_list, - STATE(5084), 1, + STATE(5374), 1, sym__scope_resolution, - STATE(5272), 1, + STATE(5545), 1, sym_virtual_specifier, - STATE(5816), 1, + STATE(6550), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(4086), 2, + STATE(2146), 2, sym__class_name, sym_qualified_type_identifier, - [166855] = 14, + [190668] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(4060), 1, - anon_sym_COLON_COLON, - ACTIONS(5143), 1, - anon_sym_COLON, - ACTIONS(5504), 1, + ACTIONS(4195), 1, anon_sym_LBRACE, - ACTIONS(6947), 1, + ACTIONS(5496), 1, + anon_sym_COLON, + ACTIONS(6651), 1, + anon_sym_COLON_COLON, + ACTIONS(7073), 1, sym_identifier, - STATE(2635), 1, + STATE(2062), 1, sym_template_type, - STATE(3384), 1, + STATE(2689), 1, sym_field_declaration_list, - STATE(5072), 1, + STATE(5439), 1, sym__scope_resolution, - STATE(5353), 1, + STATE(5794), 1, sym_virtual_specifier, - STATE(5954), 1, + STATE(6152), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(3179), 2, + STATE(1923), 2, sym__class_name, sym_qualified_type_identifier, - [166900] = 14, + [190713] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(4060), 1, - anon_sym_COLON_COLON, - ACTIONS(5141), 1, + ACTIONS(4195), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(6947), 1, + ACTIONS(6651), 1, + anon_sym_COLON_COLON, + ACTIONS(7073), 1, sym_identifier, - STATE(2635), 1, + STATE(2062), 1, sym_template_type, - STATE(3175), 1, + STATE(2583), 1, sym_field_declaration_list, - STATE(5072), 1, + STATE(5439), 1, sym__scope_resolution, - STATE(5419), 1, + STATE(5768), 1, sym_virtual_specifier, - STATE(6004), 1, + STATE(6157), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(3222), 2, + STATE(1911), 2, sym__class_name, sym_qualified_type_identifier, - [166945] = 14, + [190758] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(5143), 1, + ACTIONS(4065), 1, + anon_sym_LBRACE, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5281), 1, + ACTIONS(6573), 1, anon_sym_COLON_COLON, - ACTIONS(6747), 1, - anon_sym_LBRACE, - ACTIONS(7115), 1, + ACTIONS(7063), 1, sym_identifier, - STATE(4117), 1, + STATE(1893), 1, sym_template_type, - STATE(4274), 1, + STATE(2449), 1, sym_field_declaration_list, - STATE(5084), 1, + STATE(5441), 1, sym__scope_resolution, - STATE(5267), 1, + STATE(5817), 1, sym_virtual_specifier, - STATE(5820), 1, + STATE(6290), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(4065), 2, + STATE(1850), 2, sym__class_name, sym_qualified_type_identifier, - [166990] = 14, + [190803] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3007), 1, - anon_sym_COLON_COLON, - ACTIONS(5141), 1, + ACTIONS(4195), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(6993), 1, + ACTIONS(6651), 1, + anon_sym_COLON_COLON, + ACTIONS(7073), 1, sym_identifier, - STATE(2635), 1, + STATE(2062), 1, sym_template_type, - STATE(3173), 1, + STATE(2694), 1, sym_field_declaration_list, - STATE(5131), 1, + STATE(5439), 1, sym__scope_resolution, - STATE(5513), 1, + STATE(5745), 1, sym_virtual_specifier, - STATE(6236), 1, + STATE(6165), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2747), 2, + STATE(1907), 2, sym__class_name, sym_qualified_type_identifier, - [167035] = 14, + [190848] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(4262), 1, + ACTIONS(4731), 1, + anon_sym_COLON_COLON, + ACTIONS(5494), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5772), 1, - anon_sym_COLON_COLON, - ACTIONS(6825), 1, + ACTIONS(7211), 1, sym_identifier, - STATE(2187), 1, + STATE(3262), 1, sym_template_type, - STATE(2510), 1, + STATE(3460), 1, sym_field_declaration_list, - STATE(5152), 1, + STATE(5352), 1, sym__scope_resolution, - STATE(5442), 1, + STATE(5792), 1, sym_virtual_specifier, - STATE(6344), 1, + STATE(6535), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2126), 2, + STATE(3537), 2, sym__class_name, sym_qualified_type_identifier, - [167080] = 14, + [190893] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(5143), 1, - anon_sym_COLON, - ACTIONS(5281), 1, + ACTIONS(2434), 1, anon_sym_COLON_COLON, - ACTIONS(6747), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - ACTIONS(7115), 1, + ACTIONS(5496), 1, + anon_sym_COLON, + ACTIONS(7187), 1, sym_identifier, - STATE(4117), 1, + STATE(3262), 1, sym_template_type, - STATE(4330), 1, + STATE(3460), 1, sym_field_declaration_list, - STATE(5084), 1, + STATE(5394), 1, sym__scope_resolution, - STATE(5338), 1, + STATE(5792), 1, sym_virtual_specifier, - STATE(5843), 1, + STATE(6535), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(4074), 2, + STATE(3285), 2, sym__class_name, sym_qualified_type_identifier, - [167125] = 14, + [190938] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(5143), 1, + ACTIONS(4417), 1, + anon_sym_LBRACE, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5281), 1, + ACTIONS(6609), 1, anon_sym_COLON_COLON, - ACTIONS(6747), 1, - anon_sym_LBRACE, - ACTIONS(7115), 1, + ACTIONS(7093), 1, sym_identifier, - STATE(4117), 1, + STATE(2349), 1, sym_template_type, - STATE(4197), 1, + STATE(2858), 1, sym_field_declaration_list, - STATE(5084), 1, + STATE(5374), 1, sym__scope_resolution, - STATE(5365), 1, + STATE(5608), 1, sym_virtual_specifier, - STATE(5848), 1, + STATE(6541), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(4079), 2, + STATE(2150), 2, sym__class_name, sym_qualified_type_identifier, - [167170] = 14, + [190983] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(4060), 1, - anon_sym_COLON_COLON, - ACTIONS(5141), 1, + ACTIONS(4924), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(6947), 1, + ACTIONS(6595), 1, + anon_sym_COLON_COLON, + ACTIONS(7083), 1, sym_identifier, - STATE(2635), 1, + STATE(2906), 1, sym_template_type, - STATE(3124), 1, + STATE(3176), 1, sym_field_declaration_list, - STATE(5072), 1, + STATE(5386), 1, sym__scope_resolution, - STATE(5425), 1, + STATE(5793), 1, sym_virtual_specifier, - STATE(6249), 1, + STATE(6379), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(3218), 2, + STATE(2482), 2, sym__class_name, sym_qualified_type_identifier, - [167215] = 14, + [191028] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(4060), 1, + ACTIONS(4731), 1, anon_sym_COLON_COLON, - ACTIONS(5141), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(6947), 1, + ACTIONS(7211), 1, sym_identifier, - STATE(2635), 1, + STATE(3262), 1, sym_template_type, - STATE(3161), 1, + STATE(3466), 1, sym_field_declaration_list, - STATE(5072), 1, + STATE(5352), 1, sym__scope_resolution, - STATE(5453), 1, + STATE(5669), 1, sym_virtual_specifier, - STATE(6241), 1, + STATE(6526), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(3213), 2, + STATE(3536), 2, sym__class_name, sym_qualified_type_identifier, - [167260] = 14, + [191073] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(4060), 1, - anon_sym_COLON_COLON, - ACTIONS(5141), 1, + ACTIONS(4065), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(6947), 1, + ACTIONS(6573), 1, + anon_sym_COLON_COLON, + ACTIONS(7063), 1, sym_identifier, - STATE(2635), 1, + STATE(1893), 1, sym_template_type, - STATE(3173), 1, + STATE(2445), 1, sym_field_declaration_list, - STATE(5072), 1, + STATE(5441), 1, sym__scope_resolution, - STATE(5513), 1, + STATE(5803), 1, sym_virtual_specifier, - STATE(6236), 1, + STATE(6294), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(3212), 2, + STATE(1855), 2, sym__class_name, sym_qualified_type_identifier, - [167305] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(117), 1, - anon_sym_operator, - ACTIONS(1517), 1, - anon_sym_TILDE, - ACTIONS(3928), 1, - anon_sym_COLON_COLON, - ACTIONS(7304), 1, - sym_identifier, - ACTIONS(7306), 1, - anon_sym_template, - STATE(2301), 1, - sym_dependent_identifier, - STATE(2311), 1, - sym_template_function, - STATE(2317), 1, - sym_qualified_identifier, - STATE(2320), 1, - sym_destructor_name, - STATE(2321), 1, - sym_operator_name, - STATE(4596), 1, - sym__scope_resolution, - STATE(5281), 1, - sym_qualified_operator_cast_identifier, - STATE(5288), 1, - sym_operator_cast, - STATE(6663), 2, - sym_template_type, - sym_dependent_type_identifier, - [167352] = 14, + [191118] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(5143), 1, + ACTIONS(4195), 1, + anon_sym_LBRACE, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5281), 1, + ACTIONS(6651), 1, anon_sym_COLON_COLON, - ACTIONS(6747), 1, - anon_sym_LBRACE, - ACTIONS(7115), 1, + ACTIONS(7073), 1, sym_identifier, - STATE(4117), 1, + STATE(2062), 1, sym_template_type, - STATE(4341), 1, + STATE(2622), 1, sym_field_declaration_list, - STATE(5084), 1, + STATE(5439), 1, sym__scope_resolution, - STATE(5383), 1, + STATE(5656), 1, sym_virtual_specifier, - STATE(5853), 1, + STATE(6193), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(4084), 2, + STATE(1936), 2, sym__class_name, sym_qualified_type_identifier, - [167397] = 14, + [191163] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3377), 1, - anon_sym_COLON_COLON, - ACTIONS(5141), 1, + ACTIONS(4195), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(6947), 1, + ACTIONS(6651), 1, + anon_sym_COLON_COLON, + ACTIONS(7073), 1, sym_identifier, - STATE(2635), 1, + STATE(2062), 1, sym_template_type, - STATE(3173), 1, + STATE(2626), 1, sym_field_declaration_list, - STATE(5144), 1, + STATE(5439), 1, sym__scope_resolution, - STATE(5513), 1, + STATE(5672), 1, sym_virtual_specifier, - STATE(6236), 1, + STATE(6188), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2747), 2, + STATE(1920), 2, sym__class_name, sym_qualified_type_identifier, - [167442] = 14, + [191208] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(4262), 1, + ACTIONS(4065), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5200), 1, + ACTIONS(6573), 1, anon_sym_COLON_COLON, - ACTIONS(6957), 1, + ACTIONS(7063), 1, sym_identifier, - STATE(2187), 1, + STATE(1893), 1, sym_template_type, - STATE(2374), 1, + STATE(2442), 1, sym_field_declaration_list, - STATE(5137), 1, + STATE(5441), 1, sym__scope_resolution, - STATE(5411), 1, + STATE(5786), 1, sym_virtual_specifier, - STATE(6342), 1, + STATE(6305), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2127), 2, + STATE(1857), 2, sym__class_name, sym_qualified_type_identifier, - [167487] = 14, + [191253] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3377), 1, - anon_sym_COLON_COLON, - ACTIONS(5141), 1, + ACTIONS(4924), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(6947), 1, + ACTIONS(6595), 1, + anon_sym_COLON_COLON, + ACTIONS(7083), 1, sym_identifier, - STATE(2635), 1, + STATE(2906), 1, sym_template_type, - STATE(3161), 1, + STATE(3152), 1, sym_field_declaration_list, - STATE(5144), 1, + STATE(5386), 1, sym__scope_resolution, - STATE(5453), 1, + STATE(5744), 1, sym_virtual_specifier, - STATE(6241), 1, + STATE(6421), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2657), 2, + STATE(2571), 2, sym__class_name, sym_qualified_type_identifier, - [167532] = 14, + [191298] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3377), 1, - anon_sym_COLON_COLON, - ACTIONS(5141), 1, + ACTIONS(4012), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(6947), 1, + ACTIONS(6673), 1, + anon_sym_COLON_COLON, + ACTIONS(7041), 1, sym_identifier, - STATE(2635), 1, + STATE(1875), 1, sym_template_type, - STATE(3124), 1, + STATE(2070), 1, sym_field_declaration_list, - STATE(5144), 1, + STATE(5448), 1, sym__scope_resolution, - STATE(5425), 1, + STATE(5787), 1, sym_virtual_specifier, - STATE(6249), 1, + STATE(6574), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2749), 2, + STATE(1842), 2, sym__class_name, sym_qualified_type_identifier, - [167577] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5708), 1, - anon_sym_LPAREN2, - ACTIONS(5716), 1, - anon_sym_LBRACK, - ACTIONS(6647), 1, - anon_sym_STAR, - ACTIONS(6649), 1, - anon_sym_AMP_AMP, - ACTIONS(6651), 1, - anon_sym_AMP, - STATE(4121), 1, - sym_parameter_list, - STATE(5187), 1, - sym__abstract_declarator, - ACTIONS(5573), 3, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - anon_sym_requires, - STATE(4735), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [167614] = 14, + [191343] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(5143), 1, + ACTIONS(4012), 1, + anon_sym_LBRACE, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5345), 1, + ACTIONS(6673), 1, anon_sym_COLON_COLON, - ACTIONS(5504), 1, - anon_sym_LBRACE, - ACTIONS(6993), 1, + ACTIONS(7041), 1, sym_identifier, - STATE(2635), 1, + STATE(1875), 1, sym_template_type, - STATE(3353), 1, + STATE(2074), 1, sym_field_declaration_list, - STATE(5088), 1, + STATE(5448), 1, sym__scope_resolution, - STATE(5302), 1, + STATE(5795), 1, sym_virtual_specifier, - STATE(5825), 1, + STATE(6578), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(3135), 2, + STATE(1841), 2, sym__class_name, sym_qualified_type_identifier, - [167659] = 14, + [191388] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(4156), 1, + ACTIONS(4065), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5794), 1, + ACTIONS(6573), 1, anon_sym_COLON_COLON, - ACTIONS(6855), 1, + ACTIONS(7063), 1, sym_identifier, - STATE(2147), 1, + STATE(1893), 1, sym_template_type, - STATE(2286), 1, + STATE(2410), 1, sym_field_declaration_list, - STATE(5120), 1, + STATE(5441), 1, sym__scope_resolution, - STATE(5251), 1, + STATE(5575), 1, sym_virtual_specifier, - STATE(6002), 1, + STATE(6318), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2070), 2, + STATE(1854), 2, sym__class_name, sym_qualified_type_identifier, - [167704] = 14, + [191433] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(4156), 1, + ACTIONS(4265), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5794), 1, + ACTIONS(6623), 1, anon_sym_COLON_COLON, - ACTIONS(6855), 1, + ACTIONS(7103), 1, sym_identifier, - STATE(2147), 1, + STATE(2170), 1, sym_template_type, - STATE(2244), 1, + STATE(2804), 1, sym_field_declaration_list, - STATE(5120), 1, + STATE(5412), 1, sym__scope_resolution, - STATE(5345), 1, + STATE(5765), 1, sym_virtual_specifier, - STATE(5999), 1, + STATE(6713), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2074), 2, + STATE(1955), 2, sym__class_name, sym_qualified_type_identifier, - [167749] = 14, + [191478] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(4156), 1, + ACTIONS(4065), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5794), 1, + ACTIONS(6573), 1, anon_sym_COLON_COLON, - ACTIONS(6855), 1, + ACTIONS(7063), 1, sym_identifier, - STATE(2147), 1, + STATE(1893), 1, sym_template_type, - STATE(2211), 1, + STATE(2401), 1, sym_field_declaration_list, - STATE(5120), 1, + STATE(5441), 1, sym__scope_resolution, - STATE(5368), 1, + STATE(5526), 1, sym_virtual_specifier, - STATE(5996), 1, + STATE(6325), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2080), 2, + STATE(1848), 2, sym__class_name, sym_qualified_type_identifier, - [167794] = 14, + [191523] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(4156), 1, + ACTIONS(4265), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5794), 1, + ACTIONS(6623), 1, anon_sym_COLON_COLON, - ACTIONS(6855), 1, + ACTIONS(7103), 1, sym_identifier, - STATE(2147), 1, + STATE(2170), 1, sym_template_type, - STATE(2228), 1, + STATE(2868), 1, sym_field_declaration_list, - STATE(5120), 1, + STATE(5412), 1, sym__scope_resolution, - STATE(5456), 1, + STATE(5755), 1, sym_virtual_specifier, - STATE(5952), 1, + STATE(6708), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2076), 2, + STATE(1961), 2, sym__class_name, sym_qualified_type_identifier, - [167839] = 14, + [191568] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(4060), 1, - anon_sym_COLON_COLON, - ACTIONS(5143), 1, - anon_sym_COLON, - ACTIONS(5504), 1, + ACTIONS(4012), 1, anon_sym_LBRACE, - ACTIONS(6947), 1, + ACTIONS(5496), 1, + anon_sym_COLON, + ACTIONS(6673), 1, + anon_sym_COLON_COLON, + ACTIONS(7041), 1, sym_identifier, - STATE(2635), 1, + STATE(1875), 1, sym_template_type, - STATE(3336), 1, + STATE(2078), 1, sym_field_declaration_list, - STATE(5072), 1, + STATE(5448), 1, sym__scope_resolution, - STATE(5309), 1, + STATE(5801), 1, sym_virtual_specifier, - STATE(5918), 1, + STATE(6583), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(3129), 2, + STATE(1840), 2, sym__class_name, sym_qualified_type_identifier, - [167884] = 14, + [191613] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(4060), 1, - anon_sym_COLON_COLON, - ACTIONS(5143), 1, - anon_sym_COLON, - ACTIONS(5504), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - ACTIONS(6947), 1, + ACTIONS(5496), 1, + anon_sym_COLON, + ACTIONS(5654), 1, + anon_sym_COLON_COLON, + ACTIONS(7187), 1, sym_identifier, - STATE(2635), 1, + STATE(3262), 1, sym_template_type, - STATE(3334), 1, + STATE(3466), 1, sym_field_declaration_list, - STATE(5072), 1, + STATE(5416), 1, sym__scope_resolution, - STATE(5306), 1, + STATE(5669), 1, sym_virtual_specifier, - STATE(5901), 1, + STATE(6526), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(3131), 2, + STATE(3536), 2, sym__class_name, sym_qualified_type_identifier, - [167929] = 14, + [191658] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(4156), 1, + ACTIONS(4065), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5794), 1, + ACTIONS(6573), 1, anon_sym_COLON_COLON, - ACTIONS(6855), 1, + ACTIONS(7063), 1, sym_identifier, - STATE(2147), 1, + STATE(1893), 1, sym_template_type, - STATE(2224), 1, + STATE(2408), 1, sym_field_declaration_list, - STATE(5120), 1, + STATE(5441), 1, sym__scope_resolution, - STATE(5475), 1, + STATE(5535), 1, sym_virtual_specifier, - STATE(5948), 1, + STATE(6322), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2077), 2, + STATE(1849), 2, sym__class_name, sym_qualified_type_identifier, - [167974] = 14, + [191703] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3377), 1, - anon_sym_COLON_COLON, - ACTIONS(5141), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(6947), 1, + ACTIONS(7187), 1, sym_identifier, - STATE(2635), 1, + ACTIONS(7482), 1, + anon_sym_COLON_COLON, + STATE(3262), 1, sym_template_type, - STATE(3182), 1, + STATE(3456), 1, sym_field_declaration_list, - STATE(5144), 1, + STATE(5383), 1, sym__scope_resolution, - STATE(5312), 1, + STATE(5675), 1, sym_virtual_specifier, - STATE(5879), 1, + STATE(6538), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2675), 2, + STATE(4983), 2, sym__class_name, sym_qualified_type_identifier, - [168019] = 14, + [191748] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(4060), 1, + ACTIONS(4731), 1, anon_sym_COLON_COLON, - ACTIONS(5143), 1, - anon_sym_COLON, - ACTIONS(5504), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - ACTIONS(6947), 1, + ACTIONS(5496), 1, + anon_sym_COLON, + ACTIONS(7211), 1, sym_identifier, - STATE(2635), 1, + STATE(3262), 1, sym_template_type, - STATE(3353), 1, + STATE(3489), 1, sym_field_declaration_list, - STATE(5072), 1, + STATE(5352), 1, sym__scope_resolution, - STATE(5302), 1, + STATE(5627), 1, sym_virtual_specifier, - STATE(5825), 1, + STATE(6720), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(3135), 2, + STATE(3545), 2, sym__class_name, sym_qualified_type_identifier, - [168064] = 14, + [191793] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3377), 1, + ACTIONS(4731), 1, anon_sym_COLON_COLON, - ACTIONS(5141), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(6947), 1, + ACTIONS(7211), 1, sym_identifier, - STATE(2635), 1, + STATE(3262), 1, sym_template_type, - STATE(3167), 1, + STATE(3486), 1, sym_field_declaration_list, - STATE(5144), 1, + STATE(5352), 1, sym__scope_resolution, - STATE(5393), 1, + STATE(5596), 1, sym_virtual_specifier, - STATE(5942), 1, + STATE(6477), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2684), 2, + STATE(3547), 2, sym__class_name, sym_qualified_type_identifier, - [168109] = 14, + [191838] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(4156), 1, + ACTIONS(4012), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5794), 1, + ACTIONS(6673), 1, anon_sym_COLON_COLON, - ACTIONS(6855), 1, + ACTIONS(7041), 1, sym_identifier, - STATE(2147), 1, + STATE(1875), 1, sym_template_type, - STATE(2292), 1, + STATE(2108), 1, sym_field_declaration_list, - STATE(5120), 1, + STATE(5448), 1, sym__scope_resolution, - STATE(5482), 1, + STATE(5589), 1, sym_virtual_specifier, - STATE(5945), 1, + STATE(6613), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2081), 2, + STATE(1832), 2, sym__class_name, sym_qualified_type_identifier, - [168154] = 14, + [191883] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(5143), 1, - anon_sym_COLON, - ACTIONS(5345), 1, + ACTIONS(4731), 1, anon_sym_COLON_COLON, - ACTIONS(5504), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - ACTIONS(6993), 1, + ACTIONS(5496), 1, + anon_sym_COLON, + ACTIONS(7211), 1, sym_identifier, - STATE(2635), 1, + STATE(3262), 1, sym_template_type, - STATE(3406), 1, + STATE(3482), 1, sym_field_declaration_list, - STATE(5088), 1, + STATE(5352), 1, sym__scope_resolution, - STATE(5363), 1, + STATE(5580), 1, sym_virtual_specifier, - STATE(6162), 1, + STATE(6488), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(3127), 2, + STATE(3548), 2, sym__class_name, sym_qualified_type_identifier, - [168199] = 14, + [191928] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(5143), 1, - anon_sym_COLON, - ACTIONS(5345), 1, + ACTIONS(2434), 1, anon_sym_COLON_COLON, - ACTIONS(5504), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - ACTIONS(6993), 1, + ACTIONS(5496), 1, + anon_sym_COLON, + ACTIONS(7187), 1, sym_identifier, - STATE(2635), 1, + STATE(3262), 1, sym_template_type, - STATE(3411), 1, + STATE(3466), 1, sym_field_declaration_list, - STATE(5088), 1, + STATE(5394), 1, sym__scope_resolution, - STATE(5358), 1, + STATE(5669), 1, sym_virtual_specifier, - STATE(6138), 1, + STATE(6526), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(3128), 2, + STATE(3286), 2, sym__class_name, sym_qualified_type_identifier, - [168244] = 14, + [191973] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(5143), 1, + ACTIONS(5494), 1, + anon_sym_LBRACE, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5345), 1, + ACTIONS(5654), 1, anon_sym_COLON_COLON, - ACTIONS(5504), 1, - anon_sym_LBRACE, - ACTIONS(6993), 1, + ACTIONS(7187), 1, sym_identifier, - STATE(2635), 1, + STATE(3262), 1, sym_template_type, - STATE(3384), 1, + STATE(3460), 1, sym_field_declaration_list, - STATE(5088), 1, + STATE(5416), 1, sym__scope_resolution, - STATE(5353), 1, + STATE(5792), 1, sym_virtual_specifier, - STATE(5954), 1, + STATE(6535), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(3179), 2, + STATE(3537), 2, sym__class_name, sym_qualified_type_identifier, - [168289] = 14, + [192018] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(4262), 1, + ACTIONS(4012), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5772), 1, + ACTIONS(6673), 1, anon_sym_COLON_COLON, - ACTIONS(6825), 1, + ACTIONS(7041), 1, sym_identifier, - STATE(2187), 1, + STATE(1875), 1, sym_template_type, - STATE(2328), 1, + STATE(2105), 1, sym_field_declaration_list, - STATE(5152), 1, + STATE(5448), 1, sym__scope_resolution, - STATE(5404), 1, + STATE(5586), 1, sym_virtual_specifier, - STATE(6316), 1, + STATE(6610), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2105), 2, + STATE(1835), 2, sym__class_name, sym_qualified_type_identifier, - [168334] = 14, + [192063] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(5143), 1, + ACTIONS(4012), 1, + anon_sym_LBRACE, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5345), 1, + ACTIONS(6673), 1, anon_sym_COLON_COLON, - ACTIONS(5504), 1, - anon_sym_LBRACE, - ACTIONS(6993), 1, + ACTIONS(7041), 1, sym_identifier, - STATE(2635), 1, + STATE(1875), 1, sym_template_type, - STATE(3336), 1, + STATE(2101), 1, sym_field_declaration_list, - STATE(5088), 1, + STATE(5448), 1, sym__scope_resolution, - STATE(5309), 1, + STATE(5523), 1, sym_virtual_specifier, - STATE(5918), 1, + STATE(6607), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(3129), 2, + STATE(1833), 2, sym__class_name, sym_qualified_type_identifier, - [168379] = 14, + [192108] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3377), 1, + ACTIONS(3765), 1, anon_sym_COLON_COLON, - ACTIONS(5141), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(6947), 1, + ACTIONS(7211), 1, sym_identifier, - STATE(2635), 1, + STATE(3262), 1, sym_template_type, - STATE(3175), 1, + STATE(3482), 1, sym_field_declaration_list, - STATE(5144), 1, + STATE(5354), 1, sym__scope_resolution, - STATE(5419), 1, + STATE(5580), 1, sym_virtual_specifier, - STATE(6004), 1, + STATE(6488), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(2689), 2, + STATE(3264), 2, sym__class_name, sym_qualified_type_identifier, - [168424] = 14, + [192153] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(5143), 1, + ACTIONS(5494), 1, + anon_sym_LBRACE, + ACTIONS(5496), 1, anon_sym_COLON, - ACTIONS(5345), 1, + ACTIONS(5654), 1, anon_sym_COLON_COLON, - ACTIONS(5504), 1, - anon_sym_LBRACE, - ACTIONS(6993), 1, + ACTIONS(7187), 1, sym_identifier, - STATE(2635), 1, + STATE(3262), 1, sym_template_type, - STATE(3334), 1, + STATE(3456), 1, sym_field_declaration_list, - STATE(5088), 1, + STATE(5416), 1, sym__scope_resolution, - STATE(5306), 1, + STATE(5675), 1, sym_virtual_specifier, - STATE(5901), 1, + STATE(6538), 1, sym_base_class_clause, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - STATE(3131), 2, + STATE(3540), 2, sym__class_name, sym_qualified_type_identifier, - [168469] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(4984), 1, - sym_auto, - ACTIONS(4986), 1, - anon_sym_decltype, - ACTIONS(6377), 1, - sym_identifier, - ACTIONS(6379), 1, - anon_sym_LPAREN2, - ACTIONS(6381), 1, - anon_sym_STAR, - STATE(3142), 1, - sym_decltype_auto, - STATE(4964), 1, - sym__type_declarator, - STATE(6677), 1, - sym_ms_based_modifier, - STATE(5193), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [168507] = 13, + [192198] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1465), 1, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(5494), 1, anon_sym_LBRACE, - ACTIONS(5514), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7236), 1, - anon_sym_COMMA, - ACTIONS(7238), 1, - anon_sym_LPAREN2, - ACTIONS(7244), 1, - anon_sym_LBRACK, - ACTIONS(7246), 1, - anon_sym_EQ, - ACTIONS(7308), 1, - anon_sym_SEMI, - ACTIONS(7310), 1, + ACTIONS(5496), 1, anon_sym_COLON, - STATE(3283), 1, - sym_parameter_list, - STATE(5729), 1, - aux_sym_declaration_repeat1, - STATE(4905), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6200), 2, - sym_argument_list, - sym_initializer_list, - [168549] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7312), 1, + ACTIONS(7187), 1, sym_identifier, - ACTIONS(7314), 1, - anon_sym_TILDE, - ACTIONS(7316), 1, + ACTIONS(7482), 1, anon_sym_COLON_COLON, - ACTIONS(7318), 1, - anon_sym_template, - ACTIONS(7320), 1, - anon_sym_operator, - STATE(2170), 1, - sym_qualified_type_identifier, - STATE(2206), 1, - sym_dependent_type_identifier, - STATE(2207), 1, + STATE(3262), 1, sym_template_type, - STATE(2663), 1, - sym_template_function, - STATE(2664), 1, - sym_destructor_name, - STATE(2665), 1, - sym_dependent_identifier, - STATE(2667), 1, - sym_qualified_identifier, - STATE(2669), 1, - sym_operator_name, - STATE(4624), 1, + STATE(3489), 1, + sym_field_declaration_list, + STATE(5383), 1, sym__scope_resolution, - [168595] = 15, + STATE(5627), 1, + sym_virtual_specifier, + STATE(6720), 1, + sym_base_class_clause, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(5498), 2, + anon_sym_final, + anon_sym_override, + STATE(4976), 2, + sym__class_name, + sym_qualified_type_identifier, + [192243] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(7322), 1, + ACTIONS(7572), 1, sym_identifier, - ACTIONS(7324), 1, + ACTIONS(7574), 1, anon_sym_TILDE, - ACTIONS(7326), 1, + ACTIONS(7576), 1, anon_sym_COLON_COLON, - ACTIONS(7328), 1, + ACTIONS(7578), 1, anon_sym_template, - ACTIONS(7330), 1, + ACTIONS(7580), 1, anon_sym_operator, - STATE(2539), 1, - sym_template_function, - STATE(2542), 1, - sym_dependent_identifier, - STATE(2543), 1, - sym_qualified_identifier, - STATE(2544), 1, + STATE(2671), 1, sym_operator_name, - STATE(2603), 1, + STATE(2678), 1, + sym_qualified_identifier, + STATE(2680), 1, + sym_dependent_identifier, + STATE(2682), 1, sym_destructor_name, - STATE(2716), 1, + STATE(2685), 1, + sym_template_function, + STATE(3276), 1, + sym_template_type, + STATE(3282), 1, sym_qualified_type_identifier, - STATE(2717), 1, + STATE(3283), 1, sym_dependent_type_identifier, - STATE(2721), 1, - sym_template_type, - STATE(4625), 1, + STATE(4891), 1, sym__scope_resolution, - [168641] = 11, + [192289] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(4984), 1, + ACTIONS(5484), 1, sym_auto, - ACTIONS(4986), 1, + ACTIONS(5486), 1, anon_sym_decltype, - ACTIONS(6377), 1, + ACTIONS(6868), 1, sym_identifier, - ACTIONS(6379), 1, + ACTIONS(6870), 1, anon_sym_LPAREN2, - ACTIONS(6381), 1, + ACTIONS(6872), 1, anon_sym_STAR, - STATE(3142), 1, + STATE(3441), 1, sym_decltype_auto, - STATE(4990), 1, + STATE(5241), 1, sym__type_declarator, - STATE(6677), 1, + STATE(7071), 1, sym_ms_based_modifier, - STATE(5193), 5, + STATE(5493), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [168679] = 11, + [192327] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(4984), 1, + ACTIONS(5484), 1, sym_auto, - ACTIONS(4986), 1, + ACTIONS(5486), 1, anon_sym_decltype, - ACTIONS(6377), 1, + ACTIONS(6868), 1, sym_identifier, - ACTIONS(6379), 1, + ACTIONS(6870), 1, anon_sym_LPAREN2, - ACTIONS(6381), 1, + ACTIONS(6872), 1, anon_sym_STAR, - STATE(3142), 1, + STATE(3441), 1, sym_decltype_auto, - STATE(4956), 1, + STATE(5220), 1, sym__type_declarator, - STATE(6677), 1, + STATE(7071), 1, sym_ms_based_modifier, - STATE(5193), 5, + STATE(5493), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [168717] = 11, + [192365] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(4984), 1, - sym_auto, - ACTIONS(4986), 1, - anon_sym_decltype, - ACTIONS(6377), 1, - sym_identifier, - ACTIONS(6379), 1, + ACTIONS(3757), 1, anon_sym_LPAREN2, - ACTIONS(6381), 1, + ACTIONS(3759), 1, anon_sym_STAR, - STATE(3142), 1, - sym_decltype_auto, - STATE(5013), 1, - sym__type_declarator, - STATE(6677), 1, - sym_ms_based_modifier, - STATE(5193), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [168755] = 11, + ACTIONS(3761), 1, + anon_sym_AMP_AMP, + ACTIONS(3763), 1, + anon_sym_AMP, + ACTIONS(6781), 1, + anon_sym_LBRACK, + ACTIONS(7492), 1, + anon_sym_LBRACE, + STATE(4387), 1, + sym_parameter_list, + STATE(5250), 1, + sym_compound_statement, + STATE(5528), 1, + sym_abstract_function_declarator, + STATE(6021), 1, + sym__abstract_declarator, + STATE(5127), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [192405] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(4984), 1, - sym_auto, - ACTIONS(4986), 1, - anon_sym_decltype, - ACTIONS(6377), 1, - sym_identifier, - ACTIONS(6379), 1, + ACTIONS(3424), 1, + anon_sym_COLON_COLON, + ACTIONS(5458), 1, + anon_sym_LT, + STATE(5027), 1, + sym_template_argument_list, + ACTIONS(3437), 2, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(3442), 9, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(6381), 1, - anon_sym_STAR, - STATE(3142), 1, - sym_decltype_auto, - STATE(4984), 1, - sym__type_declarator, - STATE(6677), 1, - sym_ms_based_modifier, - STATE(5193), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [168793] = 11, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + [192433] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(4984), 1, + ACTIONS(5484), 1, sym_auto, - ACTIONS(4986), 1, + ACTIONS(5486), 1, anon_sym_decltype, - ACTIONS(6377), 1, + ACTIONS(6868), 1, sym_identifier, - ACTIONS(6379), 1, + ACTIONS(6870), 1, anon_sym_LPAREN2, - ACTIONS(6381), 1, + ACTIONS(6872), 1, anon_sym_STAR, - STATE(3142), 1, + STATE(3441), 1, sym_decltype_auto, - STATE(4957), 1, + STATE(5259), 1, sym__type_declarator, - STATE(6677), 1, + STATE(7071), 1, sym_ms_based_modifier, - STATE(5193), 5, + STATE(5493), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [168831] = 11, + [192471] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(4984), 1, - sym_auto, - ACTIONS(4986), 1, - anon_sym_decltype, - ACTIONS(6377), 1, - sym_identifier, - ACTIONS(6379), 1, + ACTIONS(3757), 1, anon_sym_LPAREN2, - ACTIONS(6381), 1, + ACTIONS(3759), 1, anon_sym_STAR, - STATE(3142), 1, - sym_decltype_auto, - STATE(5004), 1, - sym__type_declarator, - STATE(6677), 1, - sym_ms_based_modifier, - STATE(5193), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [168869] = 11, + ACTIONS(3761), 1, + anon_sym_AMP_AMP, + ACTIONS(3763), 1, + anon_sym_AMP, + ACTIONS(6781), 1, + anon_sym_LBRACK, + ACTIONS(7496), 1, + anon_sym_LBRACE, + STATE(1921), 1, + sym_compound_statement, + STATE(4387), 1, + sym_parameter_list, + STATE(5568), 1, + sym_abstract_function_declarator, + STATE(6021), 1, + sym__abstract_declarator, + STATE(5127), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [192511] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(4984), 1, + ACTIONS(5484), 1, sym_auto, - ACTIONS(4986), 1, + ACTIONS(5486), 1, anon_sym_decltype, - ACTIONS(6377), 1, + ACTIONS(6868), 1, sym_identifier, - ACTIONS(6379), 1, + ACTIONS(6870), 1, anon_sym_LPAREN2, - ACTIONS(6381), 1, + ACTIONS(6872), 1, anon_sym_STAR, - STATE(3142), 1, + STATE(3441), 1, sym_decltype_auto, - STATE(4935), 1, + STATE(5204), 1, sym__type_declarator, - STATE(6677), 1, + STATE(7071), 1, sym_ms_based_modifier, - STATE(5193), 5, + STATE(5493), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [168907] = 15, + [192549] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(7332), 1, - sym_identifier, - ACTIONS(7334), 1, + ACTIONS(7544), 1, anon_sym_TILDE, - ACTIONS(7336), 1, + ACTIONS(7582), 1, + sym_identifier, + ACTIONS(7584), 1, anon_sym_COLON_COLON, - ACTIONS(7338), 1, + ACTIONS(7586), 1, anon_sym_template, - ACTIONS(7340), 1, + ACTIONS(7588), 1, anon_sym_operator, - STATE(2421), 1, - sym_template_type, - STATE(2423), 1, - sym_dependent_type_identifier, - STATE(2550), 1, - sym_qualified_type_identifier, - STATE(3096), 1, + STATE(2173), 1, + sym_dependent_identifier, + STATE(2174), 1, sym_template_function, - STATE(3100), 1, + STATE(2176), 1, sym_destructor_name, - STATE(3102), 1, - sym_dependent_identifier, - STATE(3107), 1, + STATE(2180), 1, sym_qualified_identifier, - STATE(3109), 1, + STATE(2192), 1, sym_operator_name, - STATE(4633), 1, + STATE(3276), 1, + sym_template_type, + STATE(3282), 1, + sym_qualified_type_identifier, + STATE(3283), 1, + sym_dependent_type_identifier, + STATE(4899), 1, sym__scope_resolution, - [168953] = 11, + [192595] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(4984), 1, + ACTIONS(5484), 1, sym_auto, - ACTIONS(4986), 1, + ACTIONS(5486), 1, anon_sym_decltype, - ACTIONS(6377), 1, + ACTIONS(6868), 1, sym_identifier, - ACTIONS(6379), 1, + ACTIONS(6870), 1, anon_sym_LPAREN2, - ACTIONS(6381), 1, + ACTIONS(6872), 1, anon_sym_STAR, - STATE(3142), 1, + STATE(3441), 1, sym_decltype_auto, - STATE(5003), 1, + STATE(5221), 1, sym__type_declarator, - STATE(6677), 1, + STATE(7071), 1, sym_ms_based_modifier, - STATE(5193), 5, + STATE(5493), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [168991] = 11, + [192633] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(4984), 1, - sym_auto, - ACTIONS(4986), 1, - anon_sym_decltype, - ACTIONS(6377), 1, - sym_identifier, - ACTIONS(6379), 1, + ACTIONS(1469), 1, + anon_sym_LBRACE, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7506), 1, + anon_sym_COMMA, + ACTIONS(7508), 1, anon_sym_LPAREN2, - ACTIONS(6381), 1, - anon_sym_STAR, - STATE(3142), 1, - sym_decltype_auto, - STATE(4978), 1, - sym__type_declarator, - STATE(6677), 1, - sym_ms_based_modifier, - STATE(5193), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [169029] = 13, + ACTIONS(7514), 1, + anon_sym_LBRACK, + ACTIONS(7516), 1, + anon_sym_EQ, + ACTIONS(7590), 1, + anon_sym_SEMI, + ACTIONS(7592), 1, + anon_sym_COLON, + STATE(3679), 1, + sym_parameter_list, + STATE(6006), 1, + aux_sym_declaration_repeat1, + STATE(5154), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6411), 2, + sym_argument_list, + sym_initializer_list, + [192675] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1465), 1, + ACTIONS(1469), 1, anon_sym_LBRACE, - ACTIONS(5514), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7236), 1, + ACTIONS(7506), 1, anon_sym_COMMA, - ACTIONS(7238), 1, + ACTIONS(7508), 1, anon_sym_LPAREN2, - ACTIONS(7244), 1, + ACTIONS(7514), 1, anon_sym_LBRACK, - ACTIONS(7246), 1, + ACTIONS(7516), 1, anon_sym_EQ, - ACTIONS(7308), 1, + ACTIONS(7590), 1, anon_sym_SEMI, - ACTIONS(7342), 1, + ACTIONS(7594), 1, anon_sym_COLON, - STATE(3283), 1, + STATE(3679), 1, sym_parameter_list, - STATE(5729), 1, + STATE(6006), 1, aux_sym_declaration_repeat1, - STATE(4905), 2, + STATE(5154), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6200), 2, + STATE(6411), 2, sym_argument_list, sym_initializer_list, - [169071] = 15, + [192717] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3757), 1, + anon_sym_LPAREN2, + ACTIONS(3759), 1, + anon_sym_STAR, + ACTIONS(3761), 1, + anon_sym_AMP_AMP, + ACTIONS(3763), 1, + anon_sym_AMP, + ACTIONS(6781), 1, + anon_sym_LBRACK, + ACTIONS(7560), 1, + anon_sym_LBRACE, + STATE(3799), 1, + sym_compound_statement, + STATE(4387), 1, + sym_parameter_list, + STATE(5602), 1, + sym_abstract_function_declarator, + STATE(6021), 1, + sym__abstract_declarator, + STATE(5127), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [192757] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(7344), 1, + ACTIONS(7596), 1, sym_identifier, - ACTIONS(7346), 1, + ACTIONS(7598), 1, anon_sym_TILDE, - ACTIONS(7348), 1, + ACTIONS(7600), 1, anon_sym_COLON_COLON, - ACTIONS(7350), 1, + ACTIONS(7602), 1, anon_sym_template, - ACTIONS(7352), 1, + ACTIONS(7604), 1, anon_sym_operator, - STATE(2170), 1, - sym_qualified_type_identifier, - STATE(2206), 1, - sym_dependent_type_identifier, - STATE(2207), 1, - sym_template_type, - STATE(2812), 1, + STATE(2699), 1, sym_operator_name, - STATE(2813), 1, + STATE(2708), 1, sym_qualified_identifier, - STATE(2818), 1, + STATE(2710), 1, sym_dependent_identifier, - STATE(2819), 1, + STATE(2711), 1, sym_destructor_name, - STATE(2820), 1, + STATE(2712), 1, sym_template_function, - STATE(4637), 1, + STATE(3276), 1, + sym_template_type, + STATE(3282), 1, + sym_qualified_type_identifier, + STATE(3283), 1, + sym_dependent_type_identifier, + STATE(4904), 1, sym__scope_resolution, - [169117] = 11, + [192803] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(4984), 1, + ACTIONS(5484), 1, sym_auto, - ACTIONS(4986), 1, + ACTIONS(5486), 1, anon_sym_decltype, - ACTIONS(6377), 1, + ACTIONS(6868), 1, sym_identifier, - ACTIONS(6379), 1, + ACTIONS(6870), 1, anon_sym_LPAREN2, - ACTIONS(6381), 1, + ACTIONS(6872), 1, anon_sym_STAR, - STATE(3142), 1, + STATE(3441), 1, sym_decltype_auto, - STATE(5012), 1, + STATE(5281), 1, sym__type_declarator, - STATE(6677), 1, + STATE(7071), 1, sym_ms_based_modifier, - STATE(5193), 5, + STATE(5493), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [169155] = 13, + [192841] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1465), 1, - anon_sym_LBRACE, - ACTIONS(5514), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7236), 1, - anon_sym_COMMA, - ACTIONS(7238), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(5484), 1, + sym_auto, + ACTIONS(5486), 1, + anon_sym_decltype, + ACTIONS(6868), 1, + sym_identifier, + ACTIONS(6870), 1, anon_sym_LPAREN2, - ACTIONS(7244), 1, - anon_sym_LBRACK, - ACTIONS(7246), 1, - anon_sym_EQ, - ACTIONS(7308), 1, - anon_sym_SEMI, - ACTIONS(7354), 1, - anon_sym_COLON, - STATE(3283), 1, - sym_parameter_list, - STATE(5729), 1, - aux_sym_declaration_repeat1, - STATE(4905), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6200), 2, - sym_argument_list, - sym_initializer_list, - [169197] = 15, + ACTIONS(6872), 1, + anon_sym_STAR, + STATE(3441), 1, + sym_decltype_auto, + STATE(5245), 1, + sym__type_declarator, + STATE(7071), 1, + sym_ms_based_modifier, + STATE(5493), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [192879] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(7346), 1, + ACTIONS(7598), 1, anon_sym_TILDE, - ACTIONS(7352), 1, + ACTIONS(7604), 1, anon_sym_operator, - ACTIONS(7356), 1, + ACTIONS(7606), 1, sym_identifier, - ACTIONS(7358), 1, + ACTIONS(7608), 1, anon_sym_COLON_COLON, - ACTIONS(7360), 1, + ACTIONS(7610), 1, anon_sym_template, - STATE(2716), 1, + STATE(2183), 1, sym_qualified_type_identifier, - STATE(2717), 1, - sym_dependent_type_identifier, - STATE(2721), 1, + STATE(2380), 1, sym_template_type, - STATE(2812), 1, + STATE(2381), 1, + sym_dependent_type_identifier, + STATE(2699), 1, sym_operator_name, - STATE(2813), 1, + STATE(2708), 1, sym_qualified_identifier, - STATE(2818), 1, + STATE(2710), 1, sym_dependent_identifier, - STATE(2819), 1, + STATE(2711), 1, sym_destructor_name, - STATE(2820), 1, + STATE(2712), 1, sym_template_function, - STATE(4640), 1, + STATE(4907), 1, sym__scope_resolution, - [169243] = 6, + [192925] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, + ACTIONS(3424), 1, anon_sym_COLON_COLON, - ACTIONS(4827), 1, + ACTIONS(5458), 1, anon_sym_LT, - STATE(4791), 1, + STATE(5027), 1, sym_template_argument_list, - ACTIONS(3759), 2, + ACTIONS(6525), 2, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(3764), 9, + ACTIONS(3935), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -342488,2098 +375466,2132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_try, - [169271] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7334), 1, - anon_sym_TILDE, - ACTIONS(7340), 1, - anon_sym_operator, - ACTIONS(7362), 1, - sym_identifier, - ACTIONS(7364), 1, - anon_sym_COLON_COLON, - ACTIONS(7366), 1, - anon_sym_template, - STATE(2716), 1, - sym_qualified_type_identifier, - STATE(2717), 1, - sym_dependent_type_identifier, - STATE(2721), 1, - sym_template_type, - STATE(3096), 1, - sym_template_function, - STATE(3100), 1, - sym_destructor_name, - STATE(3102), 1, - sym_dependent_identifier, - STATE(3107), 1, - sym_qualified_identifier, - STATE(3109), 1, - sym_operator_name, - STATE(4642), 1, - sym__scope_resolution, - [169317] = 12, + [192953] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3369), 1, + ACTIONS(1469), 1, + anon_sym_LBRACE, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7506), 1, + anon_sym_COMMA, + ACTIONS(7508), 1, anon_sym_LPAREN2, - ACTIONS(3371), 1, - anon_sym_STAR, - ACTIONS(3373), 1, - anon_sym_AMP_AMP, - ACTIONS(3375), 1, - anon_sym_AMP, - ACTIONS(6268), 1, + ACTIONS(7514), 1, anon_sym_LBRACK, - ACTIONS(7228), 1, - anon_sym_LBRACE, - STATE(1753), 1, - sym_compound_statement, - STATE(4136), 1, + ACTIONS(7516), 1, + anon_sym_EQ, + ACTIONS(7590), 1, + anon_sym_SEMI, + ACTIONS(7612), 1, + anon_sym_COLON, + STATE(3679), 1, sym_parameter_list, - STATE(5508), 1, - sym_abstract_function_declarator, - STATE(5698), 1, - sym__abstract_declarator, - STATE(4832), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [169357] = 15, + STATE(6006), 1, + aux_sym_declaration_repeat1, + STATE(5154), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6411), 2, + sym_argument_list, + sym_initializer_list, + [192995] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(7314), 1, + ACTIONS(7598), 1, anon_sym_TILDE, - ACTIONS(7320), 1, + ACTIONS(7604), 1, anon_sym_operator, - ACTIONS(7368), 1, + ACTIONS(7614), 1, sym_identifier, - ACTIONS(7370), 1, + ACTIONS(7616), 1, anon_sym_COLON_COLON, - ACTIONS(7372), 1, + ACTIONS(7618), 1, anon_sym_template, - STATE(2663), 1, - sym_template_function, - STATE(2664), 1, - sym_destructor_name, - STATE(2665), 1, - sym_dependent_identifier, - STATE(2667), 1, - sym_qualified_identifier, - STATE(2669), 1, + STATE(2699), 1, sym_operator_name, - STATE(2716), 1, - sym_qualified_type_identifier, - STATE(2717), 1, - sym_dependent_type_identifier, - STATE(2721), 1, - sym_template_type, - STATE(4644), 1, - sym__scope_resolution, - [169403] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1497), 1, - anon_sym_operator, - ACTIONS(1517), 1, - anon_sym_TILDE, - ACTIONS(3311), 1, - anon_sym_COLON_COLON, - ACTIONS(7374), 1, - sym_identifier, - ACTIONS(7376), 1, - anon_sym_template, - STATE(2301), 1, - sym_dependent_identifier, - STATE(2311), 1, - sym_template_function, - STATE(2317), 1, + STATE(2708), 1, sym_qualified_identifier, - STATE(2320), 1, + STATE(2710), 1, + sym_dependent_identifier, + STATE(2711), 1, sym_destructor_name, - STATE(2321), 1, - sym_operator_name, - STATE(2716), 1, + STATE(2712), 1, + sym_template_function, + STATE(3276), 1, + sym_template_type, + STATE(3282), 1, sym_qualified_type_identifier, - STATE(2717), 1, + STATE(3283), 1, sym_dependent_type_identifier, - STATE(2721), 1, - sym_template_type, - STATE(4645), 1, + STATE(4910), 1, sym__scope_resolution, - [169449] = 11, + [193041] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(4984), 1, + ACTIONS(5484), 1, sym_auto, - ACTIONS(4986), 1, + ACTIONS(5486), 1, anon_sym_decltype, - ACTIONS(6377), 1, + ACTIONS(6868), 1, sym_identifier, - ACTIONS(6379), 1, + ACTIONS(6870), 1, anon_sym_LPAREN2, - ACTIONS(6381), 1, + ACTIONS(6872), 1, anon_sym_STAR, - STATE(3142), 1, + STATE(3441), 1, sym_decltype_auto, - STATE(4951), 1, + STATE(5249), 1, sym__type_declarator, - STATE(6677), 1, + STATE(7071), 1, sym_ms_based_modifier, - STATE(5193), 5, + STATE(5493), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [169487] = 12, + [193079] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3369), 1, + ACTIONS(3757), 1, anon_sym_LPAREN2, - ACTIONS(3371), 1, + ACTIONS(3759), 1, anon_sym_STAR, - ACTIONS(3373), 1, + ACTIONS(3761), 1, anon_sym_AMP_AMP, - ACTIONS(3375), 1, + ACTIONS(3763), 1, anon_sym_AMP, - ACTIONS(6268), 1, + ACTIONS(6781), 1, anon_sym_LBRACK, - ACTIONS(7234), 1, + ACTIONS(7502), 1, anon_sym_LBRACE, - STATE(3004), 1, + STATE(2514), 1, sym_compound_statement, - STATE(4136), 1, + STATE(4387), 1, sym_parameter_list, - STATE(5249), 1, + STATE(5729), 1, sym_abstract_function_declarator, - STATE(5698), 1, + STATE(6021), 1, sym__abstract_declarator, - STATE(4832), 4, + STATE(5127), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [169527] = 15, + [193119] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7346), 1, - anon_sym_TILDE, - ACTIONS(7352), 1, - anon_sym_operator, - ACTIONS(7378), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(5484), 1, + sym_auto, + ACTIONS(5486), 1, + anon_sym_decltype, + ACTIONS(6868), 1, sym_identifier, - ACTIONS(7380), 1, - anon_sym_COLON_COLON, - ACTIONS(7382), 1, - anon_sym_template, - STATE(2716), 1, - sym_qualified_type_identifier, - STATE(2717), 1, - sym_dependent_type_identifier, - STATE(2721), 1, - sym_template_type, - STATE(2812), 1, - sym_operator_name, - STATE(2813), 1, - sym_qualified_identifier, - STATE(2818), 1, - sym_dependent_identifier, - STATE(2819), 1, - sym_destructor_name, - STATE(2820), 1, - sym_template_function, - STATE(4648), 1, - sym__scope_resolution, - [169573] = 12, + ACTIONS(6870), 1, + anon_sym_LPAREN2, + ACTIONS(6872), 1, + anon_sym_STAR, + STATE(3441), 1, + sym_decltype_auto, + STATE(5270), 1, + sym__type_declarator, + STATE(7071), 1, + sym_ms_based_modifier, + STATE(5493), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [193157] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(5484), 1, + sym_auto, + ACTIONS(5486), 1, + anon_sym_decltype, + ACTIONS(6868), 1, + sym_identifier, + ACTIONS(6870), 1, + anon_sym_LPAREN2, + ACTIONS(6872), 1, + anon_sym_STAR, + STATE(3441), 1, + sym_decltype_auto, + STATE(5267), 1, + sym__type_declarator, + STATE(7071), 1, + sym_ms_based_modifier, + STATE(5493), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [193195] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1469), 1, + anon_sym_LBRACE, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7506), 1, + anon_sym_COMMA, + ACTIONS(7508), 1, + anon_sym_LPAREN2, + ACTIONS(7514), 1, + anon_sym_LBRACK, + ACTIONS(7516), 1, + anon_sym_EQ, + ACTIONS(7590), 1, + anon_sym_SEMI, + ACTIONS(7620), 1, + anon_sym_COLON, + STATE(3679), 1, + sym_parameter_list, + STATE(6006), 1, + aux_sym_declaration_repeat1, + STATE(5154), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6411), 2, + sym_argument_list, + sym_initializer_list, + [193237] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3369), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(5484), 1, + sym_auto, + ACTIONS(5486), 1, + anon_sym_decltype, + ACTIONS(6868), 1, + sym_identifier, + ACTIONS(6870), 1, anon_sym_LPAREN2, - ACTIONS(3371), 1, + ACTIONS(6872), 1, anon_sym_STAR, - ACTIONS(3373), 1, + STATE(3441), 1, + sym_decltype_auto, + STATE(5232), 1, + sym__type_declarator, + STATE(7071), 1, + sym_ms_based_modifier, + STATE(5493), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [193275] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1985), 1, + anon_sym_LBRACE, + ACTIONS(3757), 1, + anon_sym_LPAREN2, + ACTIONS(3759), 1, + anon_sym_STAR, + ACTIONS(3761), 1, anon_sym_AMP_AMP, - ACTIONS(3375), 1, + ACTIONS(3763), 1, anon_sym_AMP, - ACTIONS(6268), 1, + ACTIONS(6781), 1, anon_sym_LBRACK, - ACTIONS(7294), 1, - anon_sym_LBRACE, - STATE(4136), 1, - sym_parameter_list, - STATE(5008), 1, + STATE(3353), 1, sym_compound_statement, - STATE(5395), 1, + STATE(4387), 1, + sym_parameter_list, + STATE(5565), 1, sym_abstract_function_declarator, - STATE(5698), 1, + STATE(6021), 1, sym__abstract_declarator, - STATE(4832), 4, + STATE(5127), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [169613] = 15, + [193315] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7324), 1, - anon_sym_TILDE, - ACTIONS(7330), 1, - anon_sym_operator, - ACTIONS(7384), 1, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(5484), 1, + sym_auto, + ACTIONS(5486), 1, + anon_sym_decltype, + ACTIONS(6868), 1, sym_identifier, - ACTIONS(7386), 1, - anon_sym_COLON_COLON, - ACTIONS(7388), 1, - anon_sym_template, - STATE(2539), 1, - sym_template_function, - STATE(2542), 1, - sym_dependent_identifier, - STATE(2543), 1, - sym_qualified_identifier, - STATE(2544), 1, - sym_operator_name, - STATE(2603), 1, - sym_destructor_name, - STATE(2716), 1, - sym_qualified_type_identifier, - STATE(2717), 1, - sym_dependent_type_identifier, - STATE(2721), 1, - sym_template_type, - STATE(4650), 1, - sym__scope_resolution, - [169659] = 15, + ACTIONS(6870), 1, + anon_sym_LPAREN2, + ACTIONS(6872), 1, + anon_sym_STAR, + STATE(3441), 1, + sym_decltype_auto, + STATE(5258), 1, + sym__type_declarator, + STATE(7071), 1, + sym_ms_based_modifier, + STATE(5493), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [193353] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(7270), 1, - anon_sym_TILDE, - ACTIONS(7390), 1, + ACTIONS(7622), 1, sym_identifier, - ACTIONS(7392), 1, + ACTIONS(7624), 1, + anon_sym_TILDE, + ACTIONS(7626), 1, anon_sym_COLON_COLON, - ACTIONS(7394), 1, + ACTIONS(7628), 1, anon_sym_template, - ACTIONS(7396), 1, + ACTIONS(7630), 1, anon_sym_operator, - STATE(2301), 1, - sym_dependent_identifier, - STATE(2311), 1, + STATE(2827), 1, + sym_template_type, + STATE(2867), 1, + sym_dependent_type_identifier, + STATE(2956), 1, + sym_qualified_type_identifier, + STATE(3065), 1, sym_template_function, - STATE(2317), 1, - sym_qualified_identifier, - STATE(2320), 1, + STATE(3067), 1, sym_destructor_name, - STATE(2321), 1, + STATE(3070), 1, + sym_dependent_identifier, + STATE(3073), 1, + sym_qualified_identifier, + STATE(3080), 1, sym_operator_name, - STATE(2716), 1, - sym_qualified_type_identifier, - STATE(2717), 1, - sym_dependent_type_identifier, - STATE(2721), 1, - sym_template_type, - STATE(4651), 1, + STATE(4919), 1, sym__scope_resolution, - [169705] = 12, + [193399] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3369), 1, + ACTIONS(3757), 1, anon_sym_LPAREN2, - ACTIONS(3371), 1, + ACTIONS(3759), 1, anon_sym_STAR, - ACTIONS(3373), 1, + ACTIONS(3761), 1, anon_sym_AMP_AMP, - ACTIONS(3375), 1, + ACTIONS(3763), 1, anon_sym_AMP, - ACTIONS(6268), 1, + ACTIONS(6781), 1, anon_sym_LBRACK, - ACTIONS(7252), 1, + ACTIONS(7562), 1, anon_sym_LBRACE, - STATE(2604), 1, + STATE(2832), 1, sym_compound_statement, - STATE(4136), 1, + STATE(4387), 1, sym_parameter_list, - STATE(5322), 1, + STATE(5757), 1, sym_abstract_function_declarator, - STATE(5698), 1, + STATE(6021), 1, sym__abstract_declarator, - STATE(4832), 4, + STATE(5127), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [169745] = 12, + [193439] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1845), 1, - anon_sym_LBRACE, - ACTIONS(3369), 1, + ACTIONS(3757), 1, anon_sym_LPAREN2, - ACTIONS(3371), 1, + ACTIONS(3759), 1, anon_sym_STAR, - ACTIONS(3373), 1, + ACTIONS(3761), 1, anon_sym_AMP_AMP, - ACTIONS(3375), 1, + ACTIONS(3763), 1, anon_sym_AMP, - ACTIONS(6268), 1, + ACTIONS(6781), 1, anon_sym_LBRACK, - STATE(3321), 1, + ACTIONS(7520), 1, + anon_sym_LBRACE, + STATE(3090), 1, sym_compound_statement, - STATE(4136), 1, + STATE(4387), 1, sym_parameter_list, - STATE(5401), 1, + STATE(5676), 1, sym_abstract_function_declarator, - STATE(5698), 1, + STATE(6021), 1, sym__abstract_declarator, - STATE(4832), 4, + STATE(5127), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [169785] = 11, + [193479] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(4984), 1, + ACTIONS(5484), 1, sym_auto, - ACTIONS(4986), 1, + ACTIONS(5486), 1, anon_sym_decltype, - ACTIONS(6377), 1, + ACTIONS(6868), 1, sym_identifier, - ACTIONS(6379), 1, + ACTIONS(6870), 1, anon_sym_LPAREN2, - ACTIONS(6381), 1, + ACTIONS(6872), 1, anon_sym_STAR, - STATE(3142), 1, + STATE(3441), 1, sym_decltype_auto, - STATE(4989), 1, + STATE(5252), 1, sym__type_declarator, - STATE(6677), 1, + STATE(7071), 1, sym_ms_based_modifier, - STATE(5193), 5, + STATE(5493), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [169823] = 11, + [193517] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(4984), 1, + ACTIONS(5484), 1, sym_auto, - ACTIONS(4986), 1, + ACTIONS(5486), 1, anon_sym_decltype, - ACTIONS(6377), 1, + ACTIONS(6868), 1, sym_identifier, - ACTIONS(6379), 1, + ACTIONS(6870), 1, anon_sym_LPAREN2, - ACTIONS(6381), 1, + ACTIONS(6872), 1, anon_sym_STAR, - STATE(3142), 1, + STATE(3441), 1, sym_decltype_auto, - STATE(4945), 1, + STATE(5206), 1, sym__type_declarator, - STATE(6677), 1, + STATE(7071), 1, sym_ms_based_modifier, - STATE(5193), 5, + STATE(5493), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [169861] = 12, + [193555] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7624), 1, + anon_sym_TILDE, + ACTIONS(7630), 1, + anon_sym_operator, + ACTIONS(7632), 1, + sym_identifier, + ACTIONS(7634), 1, + anon_sym_COLON_COLON, + ACTIONS(7636), 1, + anon_sym_template, + STATE(3065), 1, + sym_template_function, + STATE(3067), 1, + sym_destructor_name, + STATE(3070), 1, + sym_dependent_identifier, + STATE(3073), 1, + sym_qualified_identifier, + STATE(3080), 1, + sym_operator_name, + STATE(3276), 1, + sym_template_type, + STATE(3282), 1, + sym_qualified_type_identifier, + STATE(3283), 1, + sym_dependent_type_identifier, + STATE(4924), 1, + sym__scope_resolution, + [193601] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3369), 1, + ACTIONS(3757), 1, anon_sym_LPAREN2, - ACTIONS(3371), 1, + ACTIONS(6781), 1, + anon_sym_LBRACK, + ACTIONS(6955), 1, anon_sym_STAR, - ACTIONS(3373), 1, + ACTIONS(6957), 1, anon_sym_AMP_AMP, - ACTIONS(3375), 1, + ACTIONS(6959), 1, anon_sym_AMP, - ACTIONS(6268), 1, + STATE(4387), 1, + sym_parameter_list, + STATE(5507), 1, + sym__abstract_declarator, + ACTIONS(5786), 2, + anon_sym_LBRACE, + anon_sym_requires, + STATE(5127), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [193637] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3757), 1, + anon_sym_LPAREN2, + ACTIONS(3759), 1, + anon_sym_STAR, + ACTIONS(3761), 1, + anon_sym_AMP_AMP, + ACTIONS(3763), 1, + anon_sym_AMP, + ACTIONS(6781), 1, anon_sym_LBRACK, - ACTIONS(7266), 1, + ACTIONS(7500), 1, anon_sym_LBRACE, - STATE(2775), 1, + STATE(1921), 1, sym_compound_statement, - STATE(4136), 1, + STATE(4387), 1, sym_parameter_list, - STATE(5468), 1, + STATE(5697), 1, sym_abstract_function_declarator, - STATE(5698), 1, + STATE(6021), 1, sym__abstract_declarator, - STATE(4832), 4, + STATE(5127), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [169901] = 15, + [193677] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(7324), 1, - anon_sym_TILDE, - ACTIONS(7330), 1, - anon_sym_operator, - ACTIONS(7398), 1, + ACTIONS(3757), 1, + anon_sym_LPAREN2, + ACTIONS(3759), 1, + anon_sym_STAR, + ACTIONS(3761), 1, + anon_sym_AMP_AMP, + ACTIONS(3763), 1, + anon_sym_AMP, + ACTIONS(6781), 1, + anon_sym_LBRACK, + ACTIONS(7504), 1, + anon_sym_LBRACE, + STATE(3081), 1, + sym_compound_statement, + STATE(4387), 1, + sym_parameter_list, + STATE(5805), 1, + sym_abstract_function_declarator, + STATE(6021), 1, + sym__abstract_declarator, + STATE(5127), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [193717] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7638), 1, sym_identifier, - ACTIONS(7400), 1, + ACTIONS(7640), 1, + anon_sym_TILDE, + ACTIONS(7642), 1, anon_sym_COLON_COLON, - ACTIONS(7402), 1, + ACTIONS(7644), 1, anon_sym_template, - STATE(2539), 1, - sym_template_function, - STATE(2542), 1, - sym_dependent_identifier, - STATE(2543), 1, - sym_qualified_identifier, - STATE(2544), 1, + ACTIONS(7646), 1, + anon_sym_operator, + STATE(2521), 1, sym_operator_name, - STATE(2603), 1, + STATE(2524), 1, + sym_qualified_identifier, + STATE(2525), 1, + sym_dependent_identifier, + STATE(2527), 1, sym_destructor_name, - STATE(2716), 1, + STATE(2528), 1, + sym_template_function, + STATE(3276), 1, + sym_template_type, + STATE(3282), 1, sym_qualified_type_identifier, - STATE(2717), 1, + STATE(3283), 1, sym_dependent_type_identifier, - STATE(2721), 1, - sym_template_type, - STATE(4657), 1, + STATE(4928), 1, sym__scope_resolution, - [169947] = 11, + [193763] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(4984), 1, + ACTIONS(5484), 1, sym_auto, - ACTIONS(4986), 1, + ACTIONS(5486), 1, anon_sym_decltype, - ACTIONS(6377), 1, + ACTIONS(6868), 1, sym_identifier, - ACTIONS(6379), 1, + ACTIONS(6870), 1, anon_sym_LPAREN2, - ACTIONS(6381), 1, + ACTIONS(6872), 1, anon_sym_STAR, - STATE(3142), 1, + STATE(3441), 1, sym_decltype_auto, - STATE(4967), 1, + STATE(5247), 1, sym__type_declarator, - STATE(6677), 1, + STATE(7071), 1, sym_ms_based_modifier, - STATE(5193), 5, + STATE(5493), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [169985] = 11, + [193801] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(4984), 1, + ACTIONS(5484), 1, sym_auto, - ACTIONS(4986), 1, + ACTIONS(5486), 1, anon_sym_decltype, - ACTIONS(6377), 1, + ACTIONS(6868), 1, sym_identifier, - ACTIONS(6379), 1, + ACTIONS(6870), 1, anon_sym_LPAREN2, - ACTIONS(6381), 1, + ACTIONS(6872), 1, anon_sym_STAR, - STATE(3142), 1, + STATE(3441), 1, sym_decltype_auto, - STATE(4932), 1, + STATE(5260), 1, sym__type_declarator, - STATE(6677), 1, + STATE(7071), 1, sym_ms_based_modifier, - STATE(5193), 5, + STATE(5493), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [170023] = 6, + [193839] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, - anon_sym_COLON_COLON, - ACTIONS(4827), 1, - anon_sym_LT, - STATE(4791), 1, - sym_template_argument_list, - ACTIONS(5692), 2, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(3984), 9, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3757), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + ACTIONS(3759), 1, + anon_sym_STAR, + ACTIONS(3761), 1, + anon_sym_AMP_AMP, + ACTIONS(3763), 1, + anon_sym_AMP, + ACTIONS(6781), 1, + anon_sym_LBRACK, + ACTIONS(7494), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_try, - [170051] = 13, + STATE(4387), 1, + sym_parameter_list, + STATE(4997), 1, + sym_compound_statement, + STATE(5800), 1, + sym_abstract_function_declarator, + STATE(6021), 1, + sym__abstract_declarator, + STATE(5127), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [193879] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1465), 1, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1521), 1, + anon_sym_TILDE, + ACTIONS(3405), 1, + anon_sym_COLON_COLON, + ACTIONS(7648), 1, + sym_identifier, + ACTIONS(7650), 1, + anon_sym_template, + STATE(2173), 1, + sym_dependent_identifier, + STATE(2174), 1, + sym_template_function, + STATE(2176), 1, + sym_destructor_name, + STATE(2180), 1, + sym_qualified_identifier, + STATE(2192), 1, + sym_operator_name, + STATE(3276), 1, + sym_template_type, + STATE(3282), 1, + sym_qualified_type_identifier, + STATE(3283), 1, + sym_dependent_type_identifier, + STATE(4932), 1, + sym__scope_resolution, + [193925] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1469), 1, anon_sym_LBRACE, - ACTIONS(5514), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7236), 1, + ACTIONS(7506), 1, anon_sym_COMMA, - ACTIONS(7238), 1, + ACTIONS(7508), 1, anon_sym_LPAREN2, - ACTIONS(7244), 1, + ACTIONS(7514), 1, anon_sym_LBRACK, - ACTIONS(7246), 1, + ACTIONS(7516), 1, anon_sym_EQ, - ACTIONS(7308), 1, + ACTIONS(7590), 1, anon_sym_SEMI, - ACTIONS(7404), 1, + ACTIONS(7652), 1, anon_sym_COLON, - STATE(3283), 1, + STATE(3679), 1, sym_parameter_list, - STATE(5729), 1, + STATE(6006), 1, aux_sym_declaration_repeat1, - STATE(4905), 2, + STATE(5154), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6200), 2, + STATE(6411), 2, sym_argument_list, sym_initializer_list, - [170093] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3369), 1, - anon_sym_LPAREN2, - ACTIONS(3371), 1, - anon_sym_STAR, - ACTIONS(3373), 1, - anon_sym_AMP_AMP, - ACTIONS(3375), 1, - anon_sym_AMP, - ACTIONS(6268), 1, - anon_sym_LBRACK, - ACTIONS(7264), 1, - anon_sym_LBRACE, - STATE(1753), 1, - sym_compound_statement, - STATE(4136), 1, - sym_parameter_list, - STATE(5470), 1, - sym_abstract_function_declarator, - STATE(5698), 1, - sym__abstract_declarator, - STATE(4832), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [170133] = 11, + [193967] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(4984), 1, + ACTIONS(5484), 1, sym_auto, - ACTIONS(4986), 1, + ACTIONS(5486), 1, anon_sym_decltype, - ACTIONS(6377), 1, + ACTIONS(6868), 1, sym_identifier, - ACTIONS(6379), 1, + ACTIONS(6870), 1, anon_sym_LPAREN2, - ACTIONS(6381), 1, + ACTIONS(6872), 1, anon_sym_STAR, - STATE(3142), 1, + STATE(3441), 1, sym_decltype_auto, - STATE(4968), 1, + STATE(5238), 1, sym__type_declarator, - STATE(6677), 1, + STATE(7071), 1, sym_ms_based_modifier, - STATE(5193), 5, + STATE(5493), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [170171] = 12, + [194005] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7574), 1, + anon_sym_TILDE, + ACTIONS(7580), 1, + anon_sym_operator, + ACTIONS(7654), 1, + sym_identifier, + ACTIONS(7656), 1, + anon_sym_COLON_COLON, + ACTIONS(7658), 1, + anon_sym_template, + STATE(2183), 1, + sym_qualified_type_identifier, + STATE(2380), 1, + sym_template_type, + STATE(2381), 1, + sym_dependent_type_identifier, + STATE(2671), 1, + sym_operator_name, + STATE(2678), 1, + sym_qualified_identifier, + STATE(2680), 1, + sym_dependent_identifier, + STATE(2682), 1, + sym_destructor_name, + STATE(2685), 1, + sym_template_function, + STATE(4935), 1, + sym__scope_resolution, + [194051] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3369), 1, + ACTIONS(1469), 1, + anon_sym_LBRACE, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7506), 1, + anon_sym_COMMA, + ACTIONS(7508), 1, anon_sym_LPAREN2, - ACTIONS(3371), 1, - anon_sym_STAR, - ACTIONS(3373), 1, - anon_sym_AMP_AMP, - ACTIONS(3375), 1, - anon_sym_AMP, - ACTIONS(6268), 1, + ACTIONS(7514), 1, anon_sym_LBRACK, - ACTIONS(7250), 1, - anon_sym_LBRACE, - STATE(3661), 1, - sym_compound_statement, - STATE(4136), 1, + ACTIONS(7516), 1, + anon_sym_EQ, + ACTIONS(7590), 1, + anon_sym_SEMI, + ACTIONS(7660), 1, + anon_sym_COLON, + STATE(3679), 1, sym_parameter_list, - STATE(5499), 1, - sym_abstract_function_declarator, - STATE(5698), 1, - sym__abstract_declarator, - STATE(4832), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [170211] = 15, + STATE(6006), 1, + aux_sym_declaration_repeat1, + STATE(5154), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6411), 2, + sym_argument_list, + sym_initializer_list, + [194093] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1497), 1, + ACTIONS(1501), 1, anon_sym_operator, - ACTIONS(1517), 1, + ACTIONS(1521), 1, anon_sym_TILDE, - ACTIONS(3095), 1, + ACTIONS(3145), 1, anon_sym_COLON_COLON, - ACTIONS(7406), 1, + ACTIONS(7662), 1, sym_identifier, - ACTIONS(7408), 1, + ACTIONS(7664), 1, anon_sym_template, - STATE(2301), 1, + STATE(2173), 1, sym_dependent_identifier, - STATE(2311), 1, + STATE(2174), 1, sym_template_function, - STATE(2317), 1, - sym_qualified_identifier, - STATE(2320), 1, + STATE(2176), 1, sym_destructor_name, - STATE(2321), 1, + STATE(2180), 1, + sym_qualified_identifier, + STATE(2192), 1, sym_operator_name, - STATE(2716), 1, + STATE(3276), 1, + sym_template_type, + STATE(3282), 1, sym_qualified_type_identifier, - STATE(2717), 1, + STATE(3283), 1, sym_dependent_type_identifier, - STATE(2721), 1, + STATE(4937), 1, + sym__scope_resolution, + [194139] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7640), 1, + anon_sym_TILDE, + ACTIONS(7646), 1, + anon_sym_operator, + ACTIONS(7666), 1, + sym_identifier, + ACTIONS(7668), 1, + anon_sym_COLON_COLON, + ACTIONS(7670), 1, + anon_sym_template, + STATE(2521), 1, + sym_operator_name, + STATE(2524), 1, + sym_qualified_identifier, + STATE(2525), 1, + sym_dependent_identifier, + STATE(2527), 1, + sym_destructor_name, + STATE(2528), 1, + sym_template_function, + STATE(3276), 1, + sym_template_type, + STATE(3282), 1, + sym_qualified_type_identifier, + STATE(3283), 1, + sym_dependent_type_identifier, + STATE(4938), 1, + sym__scope_resolution, + [194185] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7640), 1, + anon_sym_TILDE, + ACTIONS(7646), 1, + anon_sym_operator, + ACTIONS(7672), 1, + sym_identifier, + ACTIONS(7674), 1, + anon_sym_COLON_COLON, + ACTIONS(7676), 1, + anon_sym_template, + STATE(2521), 1, + sym_operator_name, + STATE(2524), 1, + sym_qualified_identifier, + STATE(2525), 1, + sym_dependent_identifier, + STATE(2527), 1, + sym_destructor_name, + STATE(2528), 1, + sym_template_function, + STATE(3276), 1, sym_template_type, - STATE(4665), 1, + STATE(3282), 1, + sym_qualified_type_identifier, + STATE(3283), 1, + sym_dependent_type_identifier, + STATE(4939), 1, sym__scope_resolution, - [170257] = 11, + [194231] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(4984), 1, + ACTIONS(5484), 1, sym_auto, - ACTIONS(4986), 1, + ACTIONS(5486), 1, anon_sym_decltype, - ACTIONS(6377), 1, + ACTIONS(6868), 1, sym_identifier, - ACTIONS(6379), 1, + ACTIONS(6870), 1, anon_sym_LPAREN2, - ACTIONS(6381), 1, + ACTIONS(6872), 1, anon_sym_STAR, - STATE(3142), 1, + STATE(3441), 1, sym_decltype_auto, - STATE(4994), 1, + STATE(5248), 1, sym__type_declarator, - STATE(6677), 1, + STATE(7071), 1, sym_ms_based_modifier, - STATE(5193), 5, + STATE(5493), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [170295] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1465), 1, - anon_sym_LBRACE, - ACTIONS(5514), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7236), 1, - anon_sym_COMMA, - ACTIONS(7238), 1, - anon_sym_LPAREN2, - ACTIONS(7244), 1, - anon_sym_LBRACK, - ACTIONS(7246), 1, - anon_sym_EQ, - ACTIONS(7308), 1, - anon_sym_SEMI, - ACTIONS(7410), 1, - anon_sym_COLON, - STATE(3283), 1, - sym_parameter_list, - STATE(5729), 1, - aux_sym_declaration_repeat1, - STATE(4905), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6200), 2, - sym_argument_list, - sym_initializer_list, - [170337] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3369), 1, - anon_sym_LPAREN2, - ACTIONS(6268), 1, - anon_sym_LBRACK, - ACTIONS(6724), 1, - anon_sym_STAR, - ACTIONS(6726), 1, - anon_sym_AMP_AMP, - ACTIONS(6728), 1, - anon_sym_AMP, - STATE(4136), 1, - sym_parameter_list, - STATE(5236), 1, - sym__abstract_declarator, - ACTIONS(5573), 2, - anon_sym_LBRACE, - anon_sym_requires, - STATE(4832), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [170373] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1465), 1, - anon_sym_LBRACE, - ACTIONS(5514), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7236), 1, - anon_sym_COMMA, - ACTIONS(7238), 1, - anon_sym_LPAREN2, - ACTIONS(7244), 1, - anon_sym_LBRACK, - ACTIONS(7246), 1, - anon_sym_EQ, - ACTIONS(7308), 1, - anon_sym_SEMI, - ACTIONS(7412), 1, - anon_sym_COLON, - STATE(3283), 1, - sym_parameter_list, - STATE(5729), 1, - aux_sym_declaration_repeat1, - STATE(4905), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6200), 2, - sym_argument_list, - sym_initializer_list, - [170415] = 12, + [194269] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3369), 1, - anon_sym_LPAREN2, - ACTIONS(3371), 1, - anon_sym_STAR, - ACTIONS(3373), 1, - anon_sym_AMP_AMP, - ACTIONS(3375), 1, - anon_sym_AMP, - ACTIONS(6268), 1, - anon_sym_LBRACK, - ACTIONS(7254), 1, - anon_sym_LBRACE, - STATE(4136), 1, - sym_parameter_list, - STATE(4733), 1, - sym_compound_statement, - STATE(5325), 1, - sym_abstract_function_declarator, - STATE(5698), 1, - sym__abstract_declarator, - STATE(4832), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [170455] = 9, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1521), 1, + anon_sym_TILDE, + ACTIONS(5435), 1, + anon_sym_COLON_COLON, + ACTIONS(7678), 1, + sym_identifier, + ACTIONS(7680), 1, + anon_sym_template, + STATE(2173), 1, + sym_dependent_identifier, + STATE(2174), 1, + sym_template_function, + STATE(2176), 1, + sym_destructor_name, + STATE(2180), 1, + sym_qualified_identifier, + STATE(2192), 1, + sym_operator_name, + STATE(4941), 1, + sym__scope_resolution, + STATE(7236), 2, + sym_template_type, + sym_dependent_type_identifier, + [194310] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(5870), 1, + ACTIONS(6651), 1, anon_sym_COLON_COLON, - ACTIONS(7414), 1, + ACTIONS(7682), 1, sym_identifier, - STATE(2082), 1, + STATE(1871), 1, aux_sym_sized_type_specifier_repeat1, - STATE(5168), 1, + STATE(5439), 1, sym__scope_resolution, - STATE(2332), 2, + STATE(2615), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - STATE(6663), 2, + STATE(7236), 2, sym_template_type, sym_dependent_type_identifier, - ACTIONS(5872), 4, + ACTIONS(6653), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [170488] = 9, + [194343] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4985), 1, + anon_sym_LBRACK, + ACTIONS(7684), 1, + anon_sym_AMP_AMP, + ACTIONS(4983), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [194366] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(5200), 1, + ACTIONS(5568), 1, anon_sym_COLON_COLON, - ACTIONS(7416), 1, + ACTIONS(7686), 1, sym_identifier, - STATE(2075), 1, + STATE(4268), 1, aux_sym_sized_type_specifier_repeat1, - STATE(5137), 1, + STATE(5387), 1, sym__scope_resolution, - STATE(2500), 2, + STATE(4489), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - STATE(6663), 2, + STATE(7236), 2, sym_template_type, sym_dependent_type_identifier, - ACTIONS(1479), 4, + ACTIONS(5570), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [170521] = 12, + [194399] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1465), 1, - anon_sym_LBRACE, - ACTIONS(3930), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7236), 1, - anon_sym_COMMA, - ACTIONS(7238), 1, - anon_sym_LPAREN2, - ACTIONS(7244), 1, + ACTIONS(6525), 1, anon_sym_LBRACK, - ACTIONS(7246), 1, - anon_sym_EQ, - ACTIONS(7282), 1, + ACTIONS(7496), 1, + anon_sym_LBRACE, + ACTIONS(7688), 1, anon_sym_SEMI, - STATE(3293), 1, - sym_parameter_list, - STATE(5624), 1, - aux_sym_declaration_repeat1, - STATE(4794), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6200), 2, - sym_argument_list, - sym_initializer_list, - [170560] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4158), 1, + ACTIONS(7690), 1, + anon_sym_EQ, + ACTIONS(7692), 1, anon_sym_COLON, - ACTIONS(5141), 1, - anon_sym_LBRACE, - STATE(3178), 1, - sym_field_declaration_list, - STATE(5486), 1, - sym_virtual_specifier, - STATE(5898), 1, - sym_base_class_clause, - ACTIONS(4207), 2, + ACTIONS(7694), 1, + anon_sym_try, + STATE(2406), 1, + sym_compound_statement, + STATE(6629), 1, + sym_field_initializer_list, + ACTIONS(3935), 2, anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(5145), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4209), 4, - anon_sym___based, - sym_identifier, - sym_auto, - anon_sym_decltype, - [170593] = 9, + anon_sym_LBRACK_LBRACK, + STATE(2405), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [194436] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON, - ACTIONS(5141), 1, - anon_sym_LBRACE, - STATE(3203), 1, - sym_field_declaration_list, - STATE(5472), 1, - sym_virtual_specifier, - STATE(6158), 1, - sym_base_class_clause, - ACTIONS(4187), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(5145), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4189), 4, - anon_sym___based, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1521), 1, + anon_sym_TILDE, + ACTIONS(5049), 1, + anon_sym_COLON_COLON, + ACTIONS(7568), 1, sym_identifier, - sym_auto, - anon_sym_decltype, - [170626] = 9, + ACTIONS(7570), 1, + anon_sym_template, + STATE(2173), 1, + sym_dependent_identifier, + STATE(2174), 1, + sym_template_function, + STATE(2176), 1, + sym_destructor_name, + STATE(2180), 1, + sym_qualified_identifier, + STATE(2192), 1, + sym_operator_name, + STATE(4946), 1, + sym__scope_resolution, + STATE(7236), 2, + sym_template_type, + sym_dependent_type_identifier, + [194477] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON, - ACTIONS(5141), 1, - anon_sym_LBRACE, - STATE(3190), 1, - sym_field_declaration_list, - STATE(5504), 1, - sym_virtual_specifier, - STATE(6148), 1, - sym_base_class_clause, - ACTIONS(4197), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(5145), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4199), 4, - anon_sym___based, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(3765), 1, + anon_sym_COLON_COLON, + ACTIONS(7696), 1, sym_identifier, - sym_auto, - anon_sym_decltype, - [170659] = 11, + STATE(3511), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5354), 1, + sym__scope_resolution, + STATE(3497), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(7236), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(2436), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [194510] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(536), 1, + ACTIONS(566), 1, anon_sym_LBRACE, - ACTIONS(5692), 1, + ACTIONS(6525), 1, anon_sym_LBRACK, - ACTIONS(7418), 1, + ACTIONS(7692), 1, + anon_sym_COLON, + ACTIONS(7698), 1, anon_sym_SEMI, - ACTIONS(7420), 1, + ACTIONS(7700), 1, anon_sym_EQ, - ACTIONS(7422), 1, - anon_sym_COLON, - ACTIONS(7424), 1, + ACTIONS(7702), 1, anon_sym_try, - STATE(953), 1, + STATE(1051), 1, sym_compound_statement, - STATE(6364), 1, + STATE(6505), 1, sym_field_initializer_list, - ACTIONS(3984), 2, + ACTIONS(3935), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(958), 3, + STATE(1052), 3, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, - [170696] = 13, + [194547] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1497), 1, - anon_sym_operator, - ACTIONS(1517), 1, - anon_sym_TILDE, - ACTIONS(4072), 1, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2434), 1, anon_sym_COLON_COLON, - ACTIONS(7426), 1, + ACTIONS(7696), 1, sym_identifier, - ACTIONS(7428), 1, - anon_sym_template, - STATE(4678), 1, + STATE(3511), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5394), 1, sym__scope_resolution, - STATE(4808), 1, - sym_operator_name, - STATE(4817), 1, - sym_destructor_name, - STATE(4838), 1, - sym_template_function, - STATE(4851), 1, - sym_dependent_identifier, - STATE(4870), 1, - sym_qualified_identifier, - STATE(6663), 2, + STATE(3497), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(7236), 2, sym_template_type, sym_dependent_type_identifier, - [170737] = 11, + ACTIONS(2436), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [194580] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(600), 1, + ACTIONS(6525), 1, + anon_sym_LBRACK, + ACTIONS(7692), 1, + anon_sym_COLON, + ACTIONS(7704), 1, + anon_sym_SEMI, + ACTIONS(7706), 1, anon_sym_LBRACE, - ACTIONS(5692), 1, + ACTIONS(7708), 1, + anon_sym_EQ, + ACTIONS(7710), 1, + anon_sym_try, + STATE(2317), 1, + sym_compound_statement, + STATE(6309), 1, + sym_field_initializer_list, + ACTIONS(3935), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(2318), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [194617] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(251), 1, + anon_sym_LBRACE, + ACTIONS(6525), 1, anon_sym_LBRACK, - ACTIONS(7422), 1, + ACTIONS(7692), 1, anon_sym_COLON, - ACTIONS(7430), 1, + ACTIONS(7712), 1, anon_sym_SEMI, - ACTIONS(7432), 1, + ACTIONS(7714), 1, anon_sym_EQ, - ACTIONS(7434), 1, + ACTIONS(7716), 1, anon_sym_try, - STATE(979), 1, + STATE(489), 1, sym_compound_statement, - STATE(6005), 1, + STATE(6682), 1, sym_field_initializer_list, - ACTIONS(3984), 2, + ACTIONS(3935), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(975), 3, + STATE(490), 3, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, - [170774] = 12, + [194654] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1465), 1, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2434), 1, + anon_sym_COLON_COLON, + ACTIONS(7696), 1, + sym_identifier, + STATE(3271), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5394), 1, + sym__scope_resolution, + STATE(3497), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(7236), 2, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [194687] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1469), 1, anon_sym_LBRACE, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7236), 1, + ACTIONS(7506), 1, anon_sym_COMMA, - ACTIONS(7238), 1, + ACTIONS(7508), 1, anon_sym_LPAREN2, - ACTIONS(7244), 1, + ACTIONS(7514), 1, anon_sym_LBRACK, - ACTIONS(7246), 1, + ACTIONS(7516), 1, anon_sym_EQ, - ACTIONS(7308), 1, + ACTIONS(7522), 1, anon_sym_SEMI, - STATE(3293), 1, + STATE(3843), 1, sym_parameter_list, - STATE(5729), 1, + STATE(5904), 1, aux_sym_declaration_repeat1, - STATE(4794), 2, + STATE(5035), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6200), 2, + STATE(6411), 2, sym_argument_list, sym_initializer_list, - [170813] = 11, + [194726] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5692), 1, - anon_sym_LBRACK, - ACTIONS(7422), 1, - anon_sym_COLON, - ACTIONS(7436), 1, - anon_sym_SEMI, - ACTIONS(7438), 1, + ACTIONS(1469), 1, anon_sym_LBRACE, - ACTIONS(7440), 1, - anon_sym_EQ, - ACTIONS(7442), 1, - anon_sym_try, - STATE(1846), 1, - sym_compound_statement, - STATE(6130), 1, - sym_field_initializer_list, - ACTIONS(3984), 2, - anon_sym_LPAREN2, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - STATE(1847), 3, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - [170850] = 9, + ACTIONS(7506), 1, + anon_sym_COMMA, + ACTIONS(7508), 1, + anon_sym_LPAREN2, + ACTIONS(7514), 1, + anon_sym_LBRACK, + ACTIONS(7516), 1, + anon_sym_EQ, + ACTIONS(7554), 1, + anon_sym_SEMI, + STATE(3843), 1, + sym_parameter_list, + STATE(5898), 1, + aux_sym_declaration_repeat1, + STATE(5035), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6411), 2, + sym_argument_list, + sym_initializer_list, + [194765] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(5141), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - STATE(3170), 1, + STATE(3487), 1, sym_field_declaration_list, - STATE(5459), 1, + STATE(5613), 1, sym_virtual_specifier, - STATE(6238), 1, + STATE(6472), 1, sym_base_class_clause, - ACTIONS(4193), 2, + ACTIONS(4025), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - ACTIONS(4195), 4, + ACTIONS(4027), 4, anon_sym___based, sym_identifier, sym_auto, anon_sym_decltype, - [170883] = 11, + [194798] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5692), 1, + ACTIONS(6525), 1, anon_sym_LBRACK, - ACTIONS(7422), 1, + ACTIONS(7692), 1, anon_sym_COLON, - ACTIONS(7444), 1, + ACTIONS(7718), 1, anon_sym_SEMI, - ACTIONS(7446), 1, - anon_sym_LBRACE, - ACTIONS(7448), 1, - anon_sym_EQ, - ACTIONS(7450), 1, - anon_sym_try, - STATE(2029), 1, - sym_compound_statement, - STATE(6205), 1, - sym_field_initializer_list, - ACTIONS(3984), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(2019), 3, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - [170920] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(251), 1, + ACTIONS(7720), 1, anon_sym_LBRACE, - ACTIONS(5692), 1, - anon_sym_LBRACK, - ACTIONS(7422), 1, - anon_sym_COLON, - ACTIONS(7452), 1, - anon_sym_SEMI, - ACTIONS(7454), 1, + ACTIONS(7722), 1, anon_sym_EQ, - ACTIONS(7456), 1, + ACTIONS(7724), 1, anon_sym_try, - STATE(533), 1, + STATE(2048), 1, sym_compound_statement, - STATE(6206), 1, + STATE(6428), 1, sym_field_initializer_list, - ACTIONS(3984), 2, + ACTIONS(3935), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(496), 3, + STATE(2049), 3, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, - [170957] = 12, + [194835] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1465), 1, + ACTIONS(1469), 1, anon_sym_LBRACE, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7236), 1, + ACTIONS(7506), 1, anon_sym_COMMA, - ACTIONS(7238), 1, + ACTIONS(7508), 1, anon_sym_LPAREN2, - ACTIONS(7244), 1, + ACTIONS(7510), 1, + anon_sym_SEMI, + ACTIONS(7514), 1, anon_sym_LBRACK, - ACTIONS(7246), 1, + ACTIONS(7516), 1, anon_sym_EQ, - ACTIONS(7258), 1, - anon_sym_SEMI, - STATE(3293), 1, + STATE(3843), 1, sym_parameter_list, - STATE(5662), 1, + STATE(6115), 1, aux_sym_declaration_repeat1, - STATE(4794), 2, + STATE(5035), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6200), 2, + STATE(6411), 2, sym_argument_list, sym_initializer_list, - [170996] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4270), 1, - anon_sym_LBRACK, - ACTIONS(7458), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7460), 1, - anon_sym_AMP_AMP, - ACTIONS(4272), 10, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [171021] = 9, + [194874] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(5141), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - STATE(3121), 1, + STATE(3464), 1, sym_field_declaration_list, - STATE(5439), 1, + STATE(5767), 1, sym_virtual_specifier, - STATE(6243), 1, + STATE(6534), 1, sym_base_class_clause, - ACTIONS(4173), 2, + ACTIONS(4033), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - ACTIONS(4175), 4, + ACTIONS(4035), 4, anon_sym___based, sym_identifier, sym_auto, anon_sym_decltype, - [171054] = 9, + [194907] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(5141), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - STATE(3125), 1, + STATE(3470), 1, sym_field_declaration_list, - STATE(5252), 1, + STATE(5653), 1, sym_virtual_specifier, - STATE(6253), 1, + STATE(6525), 1, sym_base_class_clause, - ACTIONS(4152), 2, + ACTIONS(4037), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - ACTIONS(4154), 4, + ACTIONS(4039), 4, anon_sym___based, sym_identifier, sym_auto, anon_sym_decltype, - [171087] = 11, + [194940] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(536), 1, anon_sym_LBRACE, - ACTIONS(5692), 1, + ACTIONS(6525), 1, anon_sym_LBRACK, - ACTIONS(7420), 1, + ACTIONS(7692), 1, + anon_sym_COLON, + ACTIONS(7726), 1, + anon_sym_SEMI, + ACTIONS(7728), 1, anon_sym_EQ, - ACTIONS(7422), 1, + ACTIONS(7730), 1, + anon_sym_try, + STATE(954), 1, + sym_compound_statement, + STATE(6524), 1, + sym_field_initializer_list, + ACTIONS(3935), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(953), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [194977] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6525), 1, + anon_sym_LBRACK, + ACTIONS(7692), 1, anon_sym_COLON, - ACTIONS(7424), 1, + ACTIONS(7720), 1, + anon_sym_LBRACE, + ACTIONS(7722), 1, + anon_sym_EQ, + ACTIONS(7724), 1, anon_sym_try, - ACTIONS(7462), 1, + ACTIONS(7732), 1, anon_sym_SEMI, - STATE(942), 1, + STATE(2159), 1, sym_compound_statement, - STATE(6355), 1, + STATE(6404), 1, sym_field_initializer_list, - ACTIONS(3984), 2, + ACTIONS(3935), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(944), 3, + STATE(2163), 3, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, - [171124] = 9, + [195014] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(5772), 1, + ACTIONS(6573), 1, anon_sym_COLON_COLON, - ACTIONS(7464), 1, + ACTIONS(7734), 1, sym_identifier, - STATE(2075), 1, + STATE(1831), 1, aux_sym_sized_type_specifier_repeat1, - STATE(5152), 1, + STATE(5441), 1, sym__scope_resolution, - STATE(2500), 2, + STATE(2429), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - STATE(6663), 2, + STATE(7236), 2, sym_template_type, sym_dependent_type_identifier, - ACTIONS(1479), 4, + ACTIONS(6575), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [171157] = 11, + [195047] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(251), 1, + ACTIONS(5027), 1, + anon_sym_LBRACK, + ACTIONS(7684), 1, + anon_sym_AMP_AMP, + ACTIONS(7736), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5025), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(5692), 1, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [195072] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6525), 1, anon_sym_LBRACK, - ACTIONS(7422), 1, + ACTIONS(7692), 1, anon_sym_COLON, - ACTIONS(7454), 1, + ACTIONS(7706), 1, + anon_sym_LBRACE, + ACTIONS(7708), 1, anon_sym_EQ, - ACTIONS(7456), 1, + ACTIONS(7710), 1, anon_sym_try, - ACTIONS(7466), 1, + ACTIONS(7738), 1, anon_sym_SEMI, - STATE(523), 1, + STATE(2276), 1, sym_compound_statement, - STATE(6167), 1, + STATE(6329), 1, sym_field_initializer_list, - ACTIONS(3984), 2, + ACTIONS(3935), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(502), 3, + STATE(2271), 3, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, - [171194] = 11, + [195109] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(536), 1, anon_sym_LBRACE, - ACTIONS(5692), 1, + ACTIONS(6525), 1, anon_sym_LBRACK, - ACTIONS(7422), 1, + ACTIONS(7692), 1, anon_sym_COLON, - ACTIONS(7468), 1, - anon_sym_SEMI, - ACTIONS(7470), 1, + ACTIONS(7728), 1, anon_sym_EQ, - ACTIONS(7472), 1, + ACTIONS(7730), 1, anon_sym_try, - STATE(1035), 1, + ACTIONS(7740), 1, + anon_sym_SEMI, + STATE(949), 1, sym_compound_statement, - STATE(6367), 1, + STATE(6448), 1, sym_field_initializer_list, - ACTIONS(3984), 2, + ACTIONS(3935), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(1023), 3, + STATE(948), 3, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, - [171231] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(5834), 1, - anon_sym_COLON_COLON, - ACTIONS(7474), 1, - sym_identifier, - STATE(2112), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5092), 1, - sym__scope_resolution, - STATE(2695), 2, - sym_sized_type_specifier, - sym_qualified_type_identifier, - STATE(6663), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(5836), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [171264] = 11, + [195146] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(566), 1, anon_sym_LBRACE, - ACTIONS(5692), 1, + ACTIONS(6525), 1, anon_sym_LBRACK, - ACTIONS(7422), 1, + ACTIONS(7692), 1, anon_sym_COLON, - ACTIONS(7470), 1, + ACTIONS(7700), 1, anon_sym_EQ, - ACTIONS(7472), 1, + ACTIONS(7702), 1, anon_sym_try, - ACTIONS(7476), 1, + ACTIONS(7742), 1, anon_sym_SEMI, - STATE(928), 1, + STATE(1040), 1, sym_compound_statement, - STATE(6098), 1, + STATE(6519), 1, sym_field_initializer_list, - ACTIONS(3984), 2, + ACTIONS(3935), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(931), 3, + STATE(1041), 3, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, - [171301] = 9, + [195183] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(5856), 1, + ACTIONS(3765), 1, anon_sym_COLON_COLON, - ACTIONS(7478), 1, + ACTIONS(7696), 1, sym_identifier, - STATE(2182), 1, + STATE(3271), 1, aux_sym_sized_type_specifier_repeat1, - STATE(5154), 1, + STATE(5354), 1, sym__scope_resolution, - STATE(2935), 2, + STATE(3497), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - STATE(6663), 2, + STATE(7236), 2, sym_template_type, sym_dependent_type_identifier, - ACTIONS(2541), 4, + ACTIONS(59), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [171334] = 9, + [195216] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1521), 1, + anon_sym_TILDE, + ACTIONS(7744), 1, + sym_identifier, + ACTIONS(7746), 1, + anon_sym_COLON_COLON, + ACTIONS(7748), 1, + anon_sym_template, + STATE(2173), 1, + sym_dependent_identifier, + STATE(2174), 1, + sym_template_function, + STATE(2176), 1, + sym_destructor_name, + STATE(2180), 1, + sym_qualified_identifier, + STATE(2192), 1, + sym_operator_name, + STATE(4968), 1, + sym__scope_resolution, + STATE(7236), 2, + sym_template_type, + sym_dependent_type_identifier, + [195257] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(5337), 1, + ACTIONS(6673), 1, anon_sym_COLON_COLON, - ACTIONS(7416), 1, + ACTIONS(7750), 1, sym_identifier, - STATE(2182), 1, + STATE(1821), 1, aux_sym_sized_type_specifier_repeat1, - STATE(5169), 1, + STATE(5448), 1, sym__scope_resolution, - STATE(2935), 2, + STATE(2083), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - STATE(6663), 2, + STATE(7236), 2, sym_template_type, sym_dependent_type_identifier, - ACTIONS(2541), 4, + ACTIONS(6675), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [171367] = 13, + [195290] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1497), 1, - anon_sym_operator, - ACTIONS(1517), 1, - anon_sym_TILDE, - ACTIONS(4132), 1, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(6609), 1, anon_sym_COLON_COLON, - ACTIONS(7304), 1, + ACTIONS(7752), 1, sym_identifier, - ACTIONS(7306), 1, - anon_sym_template, - STATE(2301), 1, - sym_dependent_identifier, - STATE(2311), 1, - sym_template_function, - STATE(2317), 1, - sym_qualified_identifier, - STATE(2320), 1, - sym_destructor_name, - STATE(2321), 1, - sym_operator_name, - STATE(4697), 1, + STATE(1935), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5374), 1, sym__scope_resolution, - STATE(6663), 2, + STATE(2918), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(7236), 2, sym_template_type, sym_dependent_type_identifier, - [171408] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1465), 1, - anon_sym_LBRACE, - ACTIONS(3930), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7236), 1, - anon_sym_COMMA, - ACTIONS(7238), 1, - anon_sym_LPAREN2, - ACTIONS(7244), 1, - anon_sym_LBRACK, - ACTIONS(7308), 1, - anon_sym_SEMI, - ACTIONS(7480), 1, - anon_sym_EQ, - STATE(3293), 1, - sym_parameter_list, - STATE(5551), 1, - sym_initializer_list, - STATE(5729), 1, - aux_sym_declaration_repeat1, - STATE(6200), 1, - sym_argument_list, - STATE(4794), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [171449] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(600), 1, - anon_sym_LBRACE, - ACTIONS(5692), 1, - anon_sym_LBRACK, - ACTIONS(7422), 1, - anon_sym_COLON, - ACTIONS(7432), 1, - anon_sym_EQ, - ACTIONS(7434), 1, - anon_sym_try, - ACTIONS(7482), 1, - anon_sym_SEMI, - STATE(990), 1, - sym_compound_statement, - STATE(5837), 1, - sym_field_initializer_list, - ACTIONS(3984), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(1010), 3, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - [171486] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1465), 1, - anon_sym_LBRACE, - ACTIONS(3930), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7236), 1, - anon_sym_COMMA, - ACTIONS(7238), 1, - anon_sym_LPAREN2, - ACTIONS(7244), 1, - anon_sym_LBRACK, - ACTIONS(7246), 1, - anon_sym_EQ, - ACTIONS(7296), 1, - anon_sym_SEMI, - STATE(3293), 1, - sym_parameter_list, - STATE(5669), 1, - aux_sym_declaration_repeat1, - STATE(4794), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6200), 2, - sym_argument_list, - sym_initializer_list, - [171525] = 9, + ACTIONS(1483), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [195323] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(5141), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - STATE(3174), 1, + STATE(3429), 1, sym_field_declaration_list, - STATE(5485), 1, + STATE(5582), 1, sym_virtual_specifier, - STATE(6025), 1, + STATE(6608), 1, sym_base_class_clause, - ACTIONS(4162), 2, + ACTIONS(4049), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - ACTIONS(4164), 4, + ACTIONS(4051), 4, anon_sym___based, sym_identifier, sym_auto, anon_sym_decltype, - [171558] = 12, + [195356] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1465), 1, + ACTIONS(1469), 1, anon_sym_LBRACE, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7236), 1, + ACTIONS(7506), 1, anon_sym_COMMA, - ACTIONS(7238), 1, + ACTIONS(7508), 1, anon_sym_LPAREN2, - ACTIONS(7240), 1, - anon_sym_SEMI, - ACTIONS(7244), 1, + ACTIONS(7514), 1, anon_sym_LBRACK, - ACTIONS(7246), 1, + ACTIONS(7516), 1, anon_sym_EQ, - STATE(3293), 1, + ACTIONS(7528), 1, + anon_sym_SEMI, + STATE(3843), 1, sym_parameter_list, - STATE(5516), 1, + STATE(5866), 1, aux_sym_declaration_repeat1, - STATE(4794), 2, + STATE(5035), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6200), 2, + STATE(6411), 2, sym_argument_list, sym_initializer_list, - [171597] = 11, + [195395] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5692), 1, - anon_sym_LBRACK, - ACTIONS(7422), 1, + ACTIONS(1501), 1, + anon_sym_operator, + ACTIONS(1521), 1, + anon_sym_TILDE, + ACTIONS(4765), 1, + anon_sym_COLON_COLON, + ACTIONS(7754), 1, + sym_identifier, + ACTIONS(7756), 1, + anon_sym_template, + STATE(4973), 1, + sym__scope_resolution, + STATE(5084), 1, + sym_operator_name, + STATE(5091), 1, + sym_qualified_identifier, + STATE(5098), 1, + sym_dependent_identifier, + STATE(5100), 1, + sym_destructor_name, + STATE(5125), 1, + sym_template_function, + STATE(7236), 2, + sym_template_type, + sym_dependent_type_identifier, + [195436] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(7438), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - ACTIONS(7440), 1, - anon_sym_EQ, - ACTIONS(7442), 1, - anon_sym_try, - ACTIONS(7484), 1, - anon_sym_SEMI, - STATE(1798), 1, - sym_compound_statement, - STATE(6125), 1, - sym_field_initializer_list, - ACTIONS(3984), 2, + STATE(3428), 1, + sym_field_declaration_list, + STATE(5798), 1, + sym_virtual_specifier, + STATE(6618), 1, + sym_base_class_clause, + ACTIONS(4045), 2, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(1799), 3, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - [171634] = 9, + anon_sym_STAR, + ACTIONS(5498), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4047), 4, + anon_sym___based, + sym_identifier, + sym_auto, + anon_sym_decltype, + [195469] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3007), 1, + ACTIONS(5562), 1, anon_sym_COLON_COLON, - ACTIONS(7486), 1, + ACTIONS(7686), 1, sym_identifier, - STATE(3184), 1, + STATE(2300), 1, aux_sym_sized_type_specifier_repeat1, - STATE(5131), 1, + STATE(5425), 1, sym__scope_resolution, - STATE(3133), 2, + STATE(3165), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - STATE(6663), 2, + STATE(7236), 2, sym_template_type, sym_dependent_type_identifier, - ACTIONS(3009), 4, + ACTIONS(2675), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [171667] = 11, + [195502] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5692), 1, - anon_sym_LBRACK, - ACTIONS(7228), 1, + ACTIONS(4014), 1, + anon_sym_COLON, + ACTIONS(5494), 1, + anon_sym_LBRACE, + STATE(3510), 1, + sym_field_declaration_list, + STATE(5726), 1, + sym_virtual_specifier, + STATE(6628), 1, + sym_base_class_clause, + ACTIONS(4041), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(5498), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4043), 4, + anon_sym___based, + sym_identifier, + sym_auto, + anon_sym_decltype, + [195535] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(7422), 1, + ACTIONS(6525), 1, + anon_sym_LBRACK, + ACTIONS(7692), 1, anon_sym_COLON, - ACTIONS(7488), 1, + ACTIONS(7758), 1, anon_sym_SEMI, - ACTIONS(7490), 1, + ACTIONS(7760), 1, anon_sym_EQ, - ACTIONS(7492), 1, + ACTIONS(7762), 1, anon_sym_try, - STATE(2038), 1, + STATE(905), 1, sym_compound_statement, - STATE(5966), 1, + STATE(6614), 1, sym_field_initializer_list, - ACTIONS(3984), 2, + ACTIONS(3935), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(2037), 3, + STATE(1036), 3, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, - [171704] = 9, + [195572] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3007), 1, + ACTIONS(6595), 1, anon_sym_COLON_COLON, - ACTIONS(7486), 1, + ACTIONS(7764), 1, sym_identifier, - STATE(2737), 1, + STATE(2300), 1, aux_sym_sized_type_specifier_repeat1, - STATE(5131), 1, + STATE(5386), 1, sym__scope_resolution, - STATE(3133), 2, + STATE(3165), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - STATE(6663), 2, + STATE(7236), 2, sym_template_type, sym_dependent_type_identifier, - ACTIONS(59), 4, + ACTIONS(2675), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [171737] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON, - ACTIONS(5141), 1, - anon_sym_LBRACE, - STATE(3176), 1, - sym_field_declaration_list, - STATE(5434), 1, - sym_virtual_specifier, - STATE(5979), 1, - sym_base_class_clause, - ACTIONS(4166), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(5145), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(4168), 4, - anon_sym___based, - sym_identifier, - sym_auto, - anon_sym_decltype, - [171770] = 13, + [195605] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1497), 1, - anon_sym_operator, - ACTIONS(1517), 1, - anon_sym_TILDE, - ACTIONS(4825), 1, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(6623), 1, anon_sym_COLON_COLON, - ACTIONS(7494), 1, + ACTIONS(7766), 1, sym_identifier, - ACTIONS(7496), 1, - anon_sym_template, - STATE(2301), 1, - sym_dependent_identifier, - STATE(2311), 1, - sym_template_function, - STATE(2317), 1, - sym_qualified_identifier, - STATE(2320), 1, - sym_destructor_name, - STATE(2321), 1, - sym_operator_name, - STATE(4708), 1, + STATE(1910), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5412), 1, sym__scope_resolution, - STATE(6663), 2, + STATE(2882), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(7236), 2, sym_template_type, sym_dependent_type_identifier, - [171811] = 11, + ACTIONS(6625), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [195638] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5692), 1, + ACTIONS(6525), 1, anon_sym_LBRACK, - ACTIONS(7228), 1, + ACTIONS(7496), 1, anon_sym_LBRACE, - ACTIONS(7422), 1, - anon_sym_COLON, - ACTIONS(7490), 1, + ACTIONS(7690), 1, anon_sym_EQ, - ACTIONS(7492), 1, + ACTIONS(7692), 1, + anon_sym_COLON, + ACTIONS(7694), 1, anon_sym_try, - ACTIONS(7498), 1, + ACTIONS(7768), 1, anon_sym_SEMI, - STATE(1920), 1, + STATE(2367), 1, sym_compound_statement, - STATE(6024), 1, + STATE(6588), 1, sym_field_initializer_list, - ACTIONS(3984), 2, + ACTIONS(3935), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(1917), 3, + STATE(2363), 3, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, - [171848] = 9, + [195675] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(5141), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - STATE(3208), 1, + STATE(3459), 1, sym_field_declaration_list, - STATE(5476), 1, + STATE(5812), 1, sym_virtual_specifier, - STATE(6165), 1, + STATE(6536), 1, sym_base_class_clause, - ACTIONS(4183), 2, + ACTIONS(4029), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(5145), 2, + ACTIONS(5498), 2, anon_sym_final, anon_sym_override, - ACTIONS(4185), 4, + ACTIONS(4031), 4, anon_sym___based, sym_identifier, sym_auto, anon_sym_decltype, - [171881] = 11, + [195708] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5692), 1, + ACTIONS(251), 1, + anon_sym_LBRACE, + ACTIONS(6525), 1, anon_sym_LBRACK, - ACTIONS(7422), 1, + ACTIONS(7692), 1, anon_sym_COLON, - ACTIONS(7446), 1, - anon_sym_LBRACE, - ACTIONS(7448), 1, + ACTIONS(7714), 1, anon_sym_EQ, - ACTIONS(7450), 1, + ACTIONS(7716), 1, anon_sym_try, - ACTIONS(7500), 1, + ACTIONS(7770), 1, anon_sym_SEMI, - STATE(1966), 1, + STATE(472), 1, sym_compound_statement, - STATE(6013), 1, + STATE(6716), 1, sym_field_initializer_list, - ACTIONS(3984), 2, + ACTIONS(3935), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(1908), 3, + STATE(509), 3, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, - [171918] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(5794), 1, - anon_sym_COLON_COLON, - ACTIONS(7502), 1, - sym_identifier, - STATE(2032), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5120), 1, - sym__scope_resolution, - STATE(2250), 2, - sym_sized_type_specifier, - sym_qualified_type_identifier, - STATE(6663), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(5796), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [171951] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(3377), 1, - anon_sym_COLON_COLON, - ACTIONS(7486), 1, - sym_identifier, - STATE(3184), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5144), 1, - sym__scope_resolution, - STATE(3133), 2, - sym_sized_type_specifier, - sym_qualified_type_identifier, - STATE(6663), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(3009), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [171984] = 9, + [195745] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(3377), 1, - anon_sym_COLON_COLON, - ACTIONS(7486), 1, + ACTIONS(4014), 1, + anon_sym_COLON, + ACTIONS(5494), 1, + anon_sym_LBRACE, + STATE(3491), 1, + sym_field_declaration_list, + STATE(5645), 1, + sym_virtual_specifier, + STATE(6455), 1, + sym_base_class_clause, + ACTIONS(4008), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(5498), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4010), 4, + anon_sym___based, sym_identifier, - STATE(2737), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5144), 1, - sym__scope_resolution, - STATE(3133), 2, - sym_sized_type_specifier, - sym_qualified_type_identifier, - STATE(6663), 2, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [172017] = 9, + sym_auto, + anon_sym_decltype, + [195778] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(5281), 1, + ACTIONS(5522), 1, anon_sym_COLON_COLON, - ACTIONS(7416), 1, + ACTIONS(7686), 1, sym_identifier, - STATE(4050), 1, + STATE(1935), 1, aux_sym_sized_type_specifier_repeat1, - STATE(5084), 1, + STATE(5397), 1, sym__scope_resolution, - STATE(4311), 2, + STATE(2918), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - STATE(6663), 2, + STATE(7236), 2, sym_template_type, sym_dependent_type_identifier, - ACTIONS(5283), 4, + ACTIONS(1483), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [172050] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1497), 1, - anon_sym_operator, - ACTIONS(1517), 1, - anon_sym_TILDE, - ACTIONS(7504), 1, - sym_identifier, - ACTIONS(7506), 1, - anon_sym_COLON_COLON, - ACTIONS(7508), 1, - anon_sym_template, - STATE(2301), 1, - sym_dependent_identifier, - STATE(2311), 1, - sym_template_function, - STATE(2317), 1, - sym_qualified_identifier, - STATE(2320), 1, - sym_destructor_name, - STATE(2321), 1, - sym_operator_name, - STATE(4716), 1, - sym__scope_resolution, - STATE(6663), 2, - sym_template_type, - sym_dependent_type_identifier, - [172091] = 4, + [195811] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4304), 1, - anon_sym_LBRACK, - ACTIONS(7460), 1, - anon_sym_AMP_AMP, - ACTIONS(4306), 11, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + ACTIONS(51), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [172114] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7512), 1, + ACTIONS(6525), 1, anon_sym_LBRACK, - ACTIONS(7510), 11, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(7692), 1, anon_sym_COLON, - anon_sym_GT2, + ACTIONS(7760), 1, + anon_sym_EQ, + ACTIONS(7762), 1, anon_sym_try, - anon_sym_requires, - [172134] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5655), 1, - anon_sym_requires, - ACTIONS(5728), 1, - anon_sym_LBRACK, - STATE(4835), 1, - sym_requires_clause, - ACTIONS(5726), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(7772), 1, anon_sym_SEMI, + STATE(991), 1, + sym_compound_statement, + STATE(6422), 1, + sym_field_initializer_list, + ACTIONS(3935), 2, + anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_try, - [172158] = 5, + STATE(990), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [195848] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, - anon_sym_requires, - ACTIONS(7516), 1, - anon_sym_LBRACK, - STATE(4780), 1, - sym_requires_clause, - ACTIONS(7514), 9, + ACTIONS(1469), 1, + anon_sym_LBRACE, + ACTIONS(4255), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7506), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(7508), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, + ACTIONS(7514), 1, + anon_sym_LBRACK, + ACTIONS(7516), 1, anon_sym_EQ, - anon_sym_GT2, - anon_sym_try, - [172182] = 7, + ACTIONS(7590), 1, + anon_sym_SEMI, + STATE(3843), 1, + sym_parameter_list, + STATE(6006), 1, + aux_sym_declaration_repeat1, + STATE(5035), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6411), 2, + sym_argument_list, + sym_initializer_list, + [195887] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5514), 1, + ACTIONS(1469), 1, + anon_sym_LBRACE, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7181), 1, + ACTIONS(7506), 1, + anon_sym_COMMA, + ACTIONS(7508), 1, anon_sym_LPAREN2, - ACTIONS(7187), 1, + ACTIONS(7514), 1, anon_sym_LBRACK, - STATE(3441), 1, + ACTIONS(7590), 1, + anon_sym_SEMI, + ACTIONS(7774), 1, + anon_sym_EQ, + STATE(3843), 1, sym_parameter_list, - STATE(4830), 2, + STATE(6006), 1, + aux_sym_declaration_repeat1, + STATE(6016), 1, + sym_initializer_list, + STATE(6411), 1, + sym_argument_list, + STATE(5035), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(7518), 6, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, + [195928] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4014), 1, anon_sym_COLON, - anon_sym_try, - [172210] = 5, + ACTIONS(5494), 1, + anon_sym_LBRACE, + STATE(3483), 1, + sym_field_declaration_list, + STATE(5585), 1, + sym_virtual_specifier, + STATE(6487), 1, + sym_base_class_clause, + ACTIONS(4018), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(5498), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(4020), 4, + anon_sym___based, + sym_identifier, + sym_auto, + anon_sym_decltype, + [195961] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, - anon_sym_requires, - ACTIONS(7522), 1, + ACTIONS(6799), 1, anon_sym_LBRACK, - STATE(4773), 1, - sym_requires_clause, - ACTIONS(7520), 9, + ACTIONS(6797), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -344587,157 +377599,177 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_COLON, anon_sym_GT2, anon_sym_try, - [172234] = 5, + anon_sym_requires, + [195981] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, - anon_sym_requires, - ACTIONS(6303), 1, + ACTIONS(4147), 1, anon_sym_LBRACK, - STATE(4799), 1, - sym_requires_clause, - ACTIONS(6301), 9, + ACTIONS(4149), 11, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_GT2, + anon_sym_COLON, anon_sym_try, - [172258] = 3, + anon_sym_requires, + [196001] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3910), 1, + ACTIONS(6346), 1, + anon_sym_requires, + ACTIONS(7778), 1, anon_sym_LBRACK, - ACTIONS(3912), 11, + STATE(5014), 1, + sym_requires_clause, + ACTIONS(7776), 9, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, + anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [172278] = 11, + [196025] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(5337), 1, + ACTIONS(6609), 1, anon_sym_COLON_COLON, - ACTIONS(6791), 1, + ACTIONS(7031), 1, anon_sym_LBRACE, - ACTIONS(7149), 1, + ACTIONS(7093), 1, sym_identifier, - STATE(2480), 1, + STATE(2349), 1, sym_template_type, - STATE(2853), 1, + STATE(2907), 1, sym_enumerator_list, - STATE(5169), 1, + STATE(5374), 1, sym__scope_resolution, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(7524), 2, + ACTIONS(7780), 2, anon_sym_class, anon_sym_struct, - STATE(4156), 2, + STATE(3454), 2, sym__class_name, sym_qualified_type_identifier, - [172314] = 7, + [196061] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5514), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7181), 1, - anon_sym_LPAREN2, - ACTIONS(7187), 1, - anon_sym_LBRACK, - STATE(3441), 1, - sym_parameter_list, - STATE(4830), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(7526), 6, - anon_sym_COMMA, - anon_sym_SEMI, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(6595), 1, + anon_sym_COLON_COLON, + ACTIONS(7035), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [172342] = 3, + ACTIONS(7083), 1, + sym_identifier, + STATE(2906), 1, + sym_template_type, + STATE(3141), 1, + sym_enumerator_list, + STATE(5386), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(7782), 2, + anon_sym_class, + anon_sym_struct, + STATE(3346), 2, + sym__class_name, + sym_qualified_type_identifier, + [196097] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3874), 1, - anon_sym_LBRACK, - ACTIONS(3876), 11, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(5522), 1, + anon_sym_COLON_COLON, + ACTIONS(7031), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - anon_sym_requires, - [172362] = 5, + ACTIONS(7203), 1, + sym_identifier, + STATE(2349), 1, + sym_template_type, + STATE(2907), 1, + sym_enumerator_list, + STATE(5397), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(7784), 2, + anon_sym_class, + anon_sym_struct, + STATE(4424), 2, + sym__class_name, + sym_qualified_type_identifier, + [196133] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, - anon_sym_requires, - ACTIONS(6204), 1, - anon_sym_LBRACK, - STATE(4782), 1, - sym_requires_clause, - ACTIONS(6202), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4731), 1, + anon_sym_COLON_COLON, + ACTIONS(5731), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_try, - [172386] = 11, + ACTIONS(7211), 1, + sym_identifier, + STATE(3262), 1, + sym_template_type, + STATE(3513), 1, + sym_enumerator_list, + STATE(5352), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(7786), 2, + anon_sym_class, + anon_sym_struct, + STATE(4379), 2, + sym__class_name, + sym_qualified_type_identifier, + [196169] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(5794), 1, - anon_sym_COLON_COLON, - ACTIONS(6855), 1, - sym_identifier, - ACTIONS(7528), 1, + ACTIONS(5731), 1, anon_sym_LBRACE, - STATE(2147), 1, + ACTIONS(7187), 1, + sym_identifier, + ACTIONS(7482), 1, + anon_sym_COLON_COLON, + STATE(3262), 1, sym_template_type, - STATE(2275), 1, + STATE(3513), 1, sym_enumerator_list, - STATE(5120), 1, + STATE(5383), 1, sym__scope_resolution, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(7530), 2, + ACTIONS(7788), 2, anon_sym_class, anon_sym_struct, - STATE(2530), 2, + STATE(5178), 2, sym__class_name, sym_qualified_type_identifier, - [172422] = 3, + [196205] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3870), 1, + ACTIONS(4217), 1, anon_sym_LBRACK, - ACTIONS(3872), 11, + ACTIONS(4219), 11, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -344749,117 +377781,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_try, anon_sym_requires, - [172442] = 11, + [196225] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3377), 1, + ACTIONS(5654), 1, anon_sym_COLON_COLON, - ACTIONS(5506), 1, + ACTIONS(5731), 1, anon_sym_LBRACE, - ACTIONS(6947), 1, + ACTIONS(7187), 1, sym_identifier, - STATE(2635), 1, + STATE(3262), 1, sym_template_type, - STATE(3143), 1, + STATE(3513), 1, sym_enumerator_list, - STATE(5144), 1, + STATE(5416), 1, sym__scope_resolution, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(7532), 2, + ACTIONS(7790), 2, anon_sym_class, anon_sym_struct, - STATE(3181), 2, + STATE(4427), 2, sym__class_name, sym_qualified_type_identifier, - [172478] = 3, + [196261] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3878), 1, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7413), 1, + anon_sym_LPAREN2, + ACTIONS(7419), 1, anon_sym_LBRACK, - ACTIONS(3880), 11, + STATE(4068), 1, + sym_parameter_list, + STATE(5083), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(7792), 6, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, anon_sym_try, - anon_sym_requires, - [172498] = 3, + [196289] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3890), 1, + ACTIONS(6346), 1, + anon_sym_requires, + ACTIONS(6795), 1, anon_sym_LBRACK, - ACTIONS(3892), 11, + STATE(5045), 1, + sym_requires_clause, + ACTIONS(6793), 9, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, + anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [172518] = 11, + [196313] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(5856), 1, + ACTIONS(5654), 1, anon_sym_COLON_COLON, - ACTIONS(6791), 1, + ACTIONS(7175), 1, anon_sym_LBRACE, - ACTIONS(6845), 1, + ACTIONS(7187), 1, sym_identifier, - STATE(2480), 1, + STATE(3262), 1, sym_template_type, - STATE(2853), 1, + STATE(4062), 1, sym_enumerator_list, - STATE(5154), 1, + STATE(5416), 1, sym__scope_resolution, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(7534), 2, + ACTIONS(7794), 2, anon_sym_class, anon_sym_struct, - STATE(3307), 2, + STATE(4442), 2, sym__class_name, sym_qualified_type_identifier, - [172554] = 3, + [196349] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7538), 1, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7413), 1, + anon_sym_LPAREN2, + ACTIONS(7419), 1, anon_sym_LBRACK, - ACTIONS(7536), 11, + STATE(4068), 1, + sym_parameter_list, + STATE(5083), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(7796), 6, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [172574] = 3, + [196377] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3894), 1, + ACTIONS(4985), 1, anon_sym_LBRACK, - ACTIONS(3896), 11, + ACTIONS(7798), 1, + anon_sym_AMP_AMP, + ACTIONS(4983), 10, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, @@ -344867,186 +377910,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_try, anon_sym_requires, - [172594] = 3, + [196399] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3898), 1, + ACTIONS(6346), 1, + anon_sym_requires, + ACTIONS(6799), 1, anon_sym_LBRACK, - ACTIONS(3900), 11, + STATE(5023), 1, + sym_requires_clause, + ACTIONS(6797), 9, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, + anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [172614] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(5772), 1, - anon_sym_COLON_COLON, - ACTIONS(6811), 1, - anon_sym_LBRACE, - ACTIONS(6825), 1, - sym_identifier, - STATE(2187), 1, - sym_template_type, - STATE(2422), 1, - sym_enumerator_list, - STATE(5152), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - ACTIONS(7540), 2, - anon_sym_class, - anon_sym_struct, - STATE(3420), 2, - sym__class_name, - sym_qualified_type_identifier, - [172650] = 3, + [196423] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3906), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(3908), 11, + ACTIONS(7800), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(4827), 10, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, + anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [172670] = 11, + [196445] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(5200), 1, + ACTIONS(6673), 1, anon_sym_COLON_COLON, - ACTIONS(6811), 1, - anon_sym_LBRACE, - ACTIONS(6957), 1, + ACTIONS(7041), 1, sym_identifier, - STATE(2187), 1, + ACTIONS(7802), 1, + anon_sym_LBRACE, + STATE(1875), 1, sym_template_type, - STATE(2422), 1, + STATE(2138), 1, sym_enumerator_list, - STATE(5137), 1, + STATE(5448), 1, sym__scope_resolution, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(7542), 2, + ACTIONS(7804), 2, anon_sym_class, anon_sym_struct, - STATE(4216), 2, + STATE(1930), 2, sym__class_name, sym_qualified_type_identifier, - [172706] = 9, + [196481] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3369), 1, + ACTIONS(3757), 1, anon_sym_LPAREN2, - ACTIONS(6262), 1, + ACTIONS(6775), 1, anon_sym_STAR, - ACTIONS(6264), 1, + ACTIONS(6777), 1, anon_sym_AMP_AMP, - ACTIONS(6266), 1, + ACTIONS(6779), 1, anon_sym_AMP, - ACTIONS(6268), 1, + ACTIONS(6781), 1, anon_sym_LBRACK, - STATE(4034), 1, + STATE(4300), 1, sym_parameter_list, - STATE(5124), 1, + STATE(5407), 1, sym__abstract_declarator, - STATE(4832), 5, + STATE(5127), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [172738] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4874), 1, - anon_sym_LBRACK, - ACTIONS(7544), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(4872), 10, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_GT2, - anon_sym_try, - [172760] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(251), 1, - anon_sym_LBRACE, - ACTIONS(5692), 1, - anon_sym_LBRACK, - ACTIONS(7422), 1, - anon_sym_COLON, - ACTIONS(7454), 1, - anon_sym_EQ, - ACTIONS(7456), 1, - anon_sym_try, - STATE(523), 1, - sym_compound_statement, - STATE(6167), 1, - sym_field_initializer_list, - ACTIONS(3984), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(502), 3, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - [172794] = 11, + [196513] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(5834), 1, + ACTIONS(2434), 1, anon_sym_COLON_COLON, - ACTIONS(6835), 1, - sym_identifier, - ACTIONS(7546), 1, + ACTIONS(5731), 1, anon_sym_LBRACE, - STATE(2267), 1, + ACTIONS(7187), 1, + sym_identifier, + STATE(3262), 1, sym_template_type, - STATE(2710), 1, + STATE(3513), 1, sym_enumerator_list, - STATE(5092), 1, + STATE(5394), 1, sym__scope_resolution, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(7548), 2, + ACTIONS(7806), 2, anon_sym_class, anon_sym_struct, - STATE(2303), 2, + STATE(3938), 2, sym__class_name, sym_qualified_type_identifier, - [172830] = 3, + [196549] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3918), 1, + ACTIONS(4213), 1, anon_sym_LBRACK, - ACTIONS(3920), 11, + ACTIONS(4215), 11, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -345058,37 +378037,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_try, anon_sym_requires, - [172850] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(5772), 1, - anon_sym_COLON_COLON, - ACTIONS(6811), 1, - anon_sym_LBRACE, - ACTIONS(6825), 1, - sym_identifier, - STATE(2187), 1, - sym_template_type, - STATE(2422), 1, - sym_enumerator_list, - STATE(5152), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - ACTIONS(7550), 2, - anon_sym_class, - anon_sym_struct, - STATE(3216), 2, - sym__class_name, - sym_qualified_type_identifier, - [172886] = 3, + [196569] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3882), 1, + ACTIONS(4203), 1, anon_sym_LBRACK, - ACTIONS(3884), 11, + ACTIONS(4205), 11, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -345100,236 +378054,198 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_try, anon_sym_requires, - [172906] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(3007), 1, - anon_sym_COLON_COLON, - ACTIONS(5506), 1, - anon_sym_LBRACE, - ACTIONS(6993), 1, - sym_identifier, - STATE(2635), 1, - sym_template_type, - STATE(3143), 1, - sym_enumerator_list, - STATE(5131), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - ACTIONS(7552), 2, - anon_sym_class, - anon_sym_struct, - STATE(3329), 2, - sym__class_name, - sym_qualified_type_identifier, - [172942] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(5281), 1, - anon_sym_COLON_COLON, - ACTIONS(7115), 1, - sym_identifier, - ACTIONS(7554), 1, - anon_sym_LBRACE, - STATE(4117), 1, - sym_template_type, - STATE(4230), 1, - sym_enumerator_list, - STATE(5084), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - ACTIONS(7556), 2, - anon_sym_class, - anon_sym_struct, - STATE(4170), 2, - sym__class_name, - sym_qualified_type_identifier, - [172978] = 11, + [196589] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(4060), 1, - anon_sym_COLON_COLON, - ACTIONS(5506), 1, + ACTIONS(5027), 1, + anon_sym_LBRACK, + ACTIONS(7798), 1, + anon_sym_AMP_AMP, + ACTIONS(7808), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5025), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(6947), 1, - sym_identifier, - STATE(2635), 1, - sym_template_type, - STATE(3143), 1, - sym_enumerator_list, - STATE(5072), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - ACTIONS(7558), 2, - anon_sym_class, - anon_sym_struct, - STATE(4122), 2, - sym__class_name, - sym_qualified_type_identifier, - [173014] = 11, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + anon_sym_requires, + [196613] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(5345), 1, - anon_sym_COLON_COLON, - ACTIONS(5506), 1, + ACTIONS(566), 1, anon_sym_LBRACE, - ACTIONS(6993), 1, - sym_identifier, - STATE(2635), 1, - sym_template_type, - STATE(3143), 1, - sym_enumerator_list, - STATE(5088), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - ACTIONS(7560), 2, - anon_sym_class, - anon_sym_struct, - STATE(4177), 2, - sym__class_name, - sym_qualified_type_identifier, - [173050] = 3, + ACTIONS(6525), 1, + anon_sym_LBRACK, + ACTIONS(7692), 1, + anon_sym_COLON, + ACTIONS(7700), 1, + anon_sym_EQ, + ACTIONS(7702), 1, + anon_sym_try, + STATE(1040), 1, + sym_compound_statement, + STATE(6519), 1, + sym_field_initializer_list, + ACTIONS(3935), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(1041), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [196647] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3914), 1, + ACTIONS(7812), 1, anon_sym_LBRACK, - ACTIONS(3916), 11, + ACTIONS(7810), 11, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, + anon_sym_GT2, anon_sym_try, anon_sym_requires, - [173070] = 11, + [196667] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(5345), 1, - anon_sym_COLON_COLON, - ACTIONS(6899), 1, + ACTIONS(7816), 1, + anon_sym_LBRACK, + ACTIONS(7814), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(6993), 1, - sym_identifier, - STATE(2635), 1, - sym_template_type, - STATE(3388), 1, - sym_enumerator_list, - STATE(5088), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - ACTIONS(7562), 2, - anon_sym_class, - anon_sym_struct, - STATE(4180), 2, - sym__class_name, - sym_qualified_type_identifier, - [173106] = 10, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [196687] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(600), 1, + ACTIONS(251), 1, anon_sym_LBRACE, - ACTIONS(5692), 1, + ACTIONS(6525), 1, anon_sym_LBRACK, - ACTIONS(7422), 1, + ACTIONS(7692), 1, anon_sym_COLON, - ACTIONS(7432), 1, + ACTIONS(7714), 1, anon_sym_EQ, - ACTIONS(7434), 1, + ACTIONS(7716), 1, anon_sym_try, - STATE(979), 1, + STATE(489), 1, sym_compound_statement, - STATE(6005), 1, + STATE(6682), 1, sym_field_initializer_list, - ACTIONS(3984), 2, + ACTIONS(3935), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(975), 3, + STATE(490), 3, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, - [173140] = 3, + [196721] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7413), 1, + anon_sym_LPAREN2, + ACTIONS(7419), 1, + anon_sym_LBRACK, + STATE(4068), 1, + sym_parameter_list, + STATE(5083), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(7818), 6, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [196749] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3874), 1, + ACTIONS(7822), 1, anon_sym_LBRACK, - ACTIONS(3876), 11, + ACTIONS(7820), 11, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, + anon_sym_GT2, anon_sym_try, anon_sym_requires, - [173160] = 10, + [196769] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(536), 1, anon_sym_LBRACE, - ACTIONS(5692), 1, + ACTIONS(6525), 1, anon_sym_LBRACK, - ACTIONS(7422), 1, + ACTIONS(7692), 1, anon_sym_COLON, - ACTIONS(7470), 1, + ACTIONS(7728), 1, anon_sym_EQ, - ACTIONS(7472), 1, + ACTIONS(7730), 1, anon_sym_try, - STATE(1035), 1, + STATE(949), 1, sym_compound_statement, - STATE(6367), 1, + STATE(6448), 1, sym_field_initializer_list, - ACTIONS(3984), 2, + ACTIONS(3935), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(1023), 3, + STATE(948), 3, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, - [173194] = 3, + [196803] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3874), 1, + ACTIONS(6346), 1, + anon_sym_requires, + ACTIONS(7826), 1, anon_sym_LBRACK, - ACTIONS(3876), 11, + STATE(5017), 1, + sym_requires_clause, + ACTIONS(7824), 9, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, + anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [173214] = 3, + [196827] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7566), 1, + ACTIONS(6346), 1, + anon_sym_requires, + ACTIONS(7830), 1, anon_sym_LBRACK, - ACTIONS(7564), 11, + STATE(5112), 1, + sym_requires_clause, + ACTIONS(7828), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -345337,93 +378253,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [173234] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(5506), 1, - anon_sym_LBRACE, - ACTIONS(6993), 1, - sym_identifier, - ACTIONS(7205), 1, - anon_sym_COLON_COLON, - STATE(2635), 1, - sym_template_type, - STATE(3143), 1, - sym_enumerator_list, - STATE(5164), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - ACTIONS(7568), 2, - anon_sym_class, - anon_sym_struct, - STATE(4877), 2, - sym__class_name, - sym_qualified_type_identifier, - [173270] = 4, + [196851] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4304), 1, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7413), 1, + anon_sym_LPAREN2, + ACTIONS(7419), 1, anon_sym_LBRACK, - ACTIONS(7570), 1, - anon_sym_AMP_AMP, - ACTIONS(4306), 10, + STATE(4068), 1, + sym_parameter_list, + STATE(5083), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(7832), 6, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, anon_sym_try, - anon_sym_requires, - [173292] = 3, + [196879] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6204), 1, + ACTIONS(4237), 1, anon_sym_LBRACK, - ACTIONS(6202), 11, + ACTIONS(4239), 11, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - anon_sym_GT2, anon_sym_try, anon_sym_requires, - [173312] = 3, + [196899] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3902), 1, + ACTIONS(7778), 1, anon_sym_LBRACK, - ACTIONS(3904), 11, + ACTIONS(7776), 11, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, + anon_sym_GT2, anon_sym_try, anon_sym_requires, - [173332] = 3, + [196919] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7574), 1, + ACTIONS(7836), 1, anon_sym_LBRACK, - ACTIONS(7572), 11, + ACTIONS(7834), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -345435,103 +378327,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [173352] = 11, + [196939] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1469), 1, + anon_sym_LBRACE, + ACTIONS(4255), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7508), 1, + anon_sym_LPAREN2, + ACTIONS(7514), 1, + anon_sym_LBRACK, + ACTIONS(7516), 1, + anon_sym_EQ, + STATE(3843), 1, + sym_parameter_list, + ACTIONS(7838), 2, + anon_sym_COMMA, + anon_sym_SEMI, + STATE(5035), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6411), 2, + sym_argument_list, + sym_initializer_list, + [196973] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(5794), 1, + ACTIONS(6651), 1, anon_sym_COLON_COLON, - ACTIONS(6855), 1, + ACTIONS(7073), 1, sym_identifier, - ACTIONS(7528), 1, + ACTIONS(7840), 1, anon_sym_LBRACE, - STATE(2147), 1, + STATE(2062), 1, sym_template_type, - STATE(2275), 1, + STATE(2635), 1, sym_enumerator_list, - STATE(5120), 1, + STATE(5439), 1, sym__scope_resolution, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(7576), 2, + ACTIONS(7842), 2, anon_sym_class, anon_sym_struct, - STATE(2159), 2, + STATE(2193), 2, sym__class_name, sym_qualified_type_identifier, - [173388] = 10, + [197009] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(600), 1, - anon_sym_LBRACE, - ACTIONS(5692), 1, + ACTIONS(3478), 1, + anon_sym_COLON_COLON, + ACTIONS(3480), 2, anon_sym_LBRACK, - ACTIONS(7422), 1, anon_sym_COLON, - ACTIONS(7432), 1, - anon_sym_EQ, - ACTIONS(7434), 1, - anon_sym_try, - STATE(990), 1, - sym_compound_statement, - STATE(5837), 1, - sym_field_initializer_list, - ACTIONS(3984), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(1010), 3, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - [173422] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3886), 1, - anon_sym_LBRACK, - ACTIONS(3888), 11, + ACTIONS(3485), 9, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, + anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [173442] = 11, + [197031] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(5345), 1, + ACTIONS(5654), 1, anon_sym_COLON_COLON, - ACTIONS(5506), 1, + ACTIONS(5731), 1, anon_sym_LBRACE, - ACTIONS(6993), 1, + ACTIONS(7187), 1, sym_identifier, - STATE(2635), 1, + STATE(3262), 1, sym_template_type, - STATE(3143), 1, + STATE(3513), 1, sym_enumerator_list, - STATE(5088), 1, + STATE(5416), 1, sym__scope_resolution, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(7578), 2, + ACTIONS(7844), 2, anon_sym_class, anon_sym_struct, - STATE(3527), 2, + STATE(4121), 2, sym__class_name, sym_qualified_type_identifier, - [173478] = 3, + [197067] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2287), 1, + ACTIONS(4165), 1, anon_sym_LBRACK, - ACTIONS(2289), 11, + ACTIONS(4167), 11, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -345543,52 +378436,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_try, anon_sym_requires, - [173498] = 5, + [197087] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, - anon_sym_COLON_COLON, - ACTIONS(6702), 1, - anon_sym_LT, - STATE(2085), 1, - sym_template_argument_list, - ACTIONS(3757), 9, + ACTIONS(7848), 1, + anon_sym_LBRACK, + ACTIONS(7846), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_GT2, + anon_sym_try, anon_sym_requires, - [173522] = 3, + [197107] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2302), 1, + ACTIONS(7852), 1, anon_sym_LBRACK, - ACTIONS(2304), 11, + ACTIONS(7850), 11, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, + anon_sym_GT2, anon_sym_try, anon_sym_requires, - [173542] = 5, + [197127] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, + ACTIONS(3424), 1, anon_sym_COLON_COLON, - ACTIONS(6702), 1, + ACTIONS(6913), 1, anon_sym_LT, - STATE(2085), 1, + STATE(1937), 1, sym_template_argument_list, - ACTIONS(3740), 9, + ACTIONS(3435), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -345598,53 +378489,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_requires, - [173566] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(251), 1, - anon_sym_LBRACE, - ACTIONS(5692), 1, - anon_sym_LBRACK, - ACTIONS(7422), 1, - anon_sym_COLON, - ACTIONS(7454), 1, - anon_sym_EQ, - ACTIONS(7456), 1, - anon_sym_try, - STATE(533), 1, - sym_compound_statement, - STATE(6206), 1, - sym_field_initializer_list, - ACTIONS(3984), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(496), 3, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - [173600] = 3, + [197151] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7582), 1, - anon_sym_LBRACK, - ACTIONS(7580), 11, + ACTIONS(3424), 1, + anon_sym_COLON_COLON, + ACTIONS(6913), 1, + anon_sym_LT, + STATE(1937), 1, + sym_template_argument_list, + ACTIONS(3426), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_GT2, - anon_sym_try, + anon_sym_LBRACK, anon_sym_requires, - [173620] = 3, + [197175] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7586), 1, + ACTIONS(6346), 1, + anon_sym_requires, + ACTIONS(6529), 1, anon_sym_LBRACK, - ACTIONS(7584), 11, + STATE(5077), 1, + sym_requires_clause, + ACTIONS(6527), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -345652,107 +378525,215 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [173640] = 7, + [197199] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5514), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7181), 1, - anon_sym_LPAREN2, - ACTIONS(7187), 1, + ACTIONS(7856), 1, anon_sym_LBRACK, - STATE(3441), 1, - sym_parameter_list, - STATE(4830), 2, + STATE(5055), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(7588), 6, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [173668] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7592), 1, - anon_sym_LBRACK, - ACTIONS(7590), 11, + ACTIONS(7854), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [173688] = 5, + [197223] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5622), 1, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4731), 1, + anon_sym_COLON_COLON, + ACTIONS(5731), 1, + anon_sym_LBRACE, + ACTIONS(7211), 1, + sym_identifier, + STATE(3262), 1, + sym_template_type, + STATE(3513), 1, + sym_enumerator_list, + STATE(5352), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(7858), 2, + anon_sym_class, + anon_sym_struct, + STATE(4381), 2, + sym__class_name, + sym_qualified_type_identifier, + [197259] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4161), 1, anon_sym_LBRACK, - ACTIONS(5655), 1, - anon_sym_requires, - STATE(4842), 1, - sym_requires_clause, - ACTIONS(5620), 9, + ACTIONS(4163), 11, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_GT2, + anon_sym_COLON, anon_sym_try, - [173712] = 3, + anon_sym_requires, + [197279] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7596), 1, + ACTIONS(4169), 1, anon_sym_LBRACK, - ACTIONS(7594), 11, + ACTIONS(4171), 11, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - anon_sym_GT2, anon_sym_try, anon_sym_requires, - [173732] = 3, + [197299] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4731), 1, + anon_sym_COLON_COLON, + ACTIONS(7175), 1, + anon_sym_LBRACE, + ACTIONS(7211), 1, + sym_identifier, + STATE(3262), 1, + sym_template_type, + STATE(4062), 1, + sym_enumerator_list, + STATE(5352), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(7860), 2, + anon_sym_class, + anon_sym_struct, + STATE(3782), 2, + sym__class_name, + sym_qualified_type_identifier, + [197335] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6303), 1, + ACTIONS(566), 1, + anon_sym_LBRACE, + ACTIONS(6525), 1, anon_sym_LBRACK, - ACTIONS(6301), 11, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(7692), 1, + anon_sym_COLON, + ACTIONS(7700), 1, + anon_sym_EQ, + ACTIONS(7702), 1, + anon_sym_try, + STATE(1051), 1, + sym_compound_statement, + STATE(6505), 1, + sym_field_initializer_list, + ACTIONS(3935), 2, anon_sym_LPAREN2, - anon_sym_SEMI, anon_sym_LBRACK_LBRACK, + STATE(1052), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [197369] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(536), 1, anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(6525), 1, + anon_sym_LBRACK, + ACTIONS(7692), 1, anon_sym_COLON, - anon_sym_GT2, + ACTIONS(7728), 1, + anon_sym_EQ, + ACTIONS(7730), 1, anon_sym_try, - anon_sym_requires, - [173752] = 3, + STATE(954), 1, + sym_compound_statement, + STATE(6524), 1, + sym_field_initializer_list, + ACTIONS(3935), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(953), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [197403] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7600), 1, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(6673), 1, + anon_sym_COLON_COLON, + ACTIONS(7041), 1, + sym_identifier, + ACTIONS(7802), 1, + anon_sym_LBRACE, + STATE(1875), 1, + sym_template_type, + STATE(2138), 1, + sym_enumerator_list, + STATE(5448), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(7862), 2, + anon_sym_class, + anon_sym_struct, + STATE(2468), 2, + sym__class_name, + sym_qualified_type_identifier, + [197439] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(5568), 1, + anon_sym_COLON_COLON, + ACTIONS(7313), 1, + sym_identifier, + ACTIONS(7864), 1, + anon_sym_LBRACE, + STATE(4380), 1, + sym_template_type, + STATE(4452), 1, + sym_enumerator_list, + STATE(5387), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(7866), 2, + anon_sym_class, + anon_sym_struct, + STATE(4408), 2, + sym__class_name, + sym_qualified_type_identifier, + [197475] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7870), 1, anon_sym_LBRACK, - ACTIONS(7598), 11, + ACTIONS(7868), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -345764,12 +378745,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [173772] = 3, + [197495] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7604), 1, + ACTIONS(7826), 1, anon_sym_LBRACK, - ACTIONS(7602), 11, + ACTIONS(7824), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -345781,222 +378762,184 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [173792] = 3, + [197515] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7522), 1, + ACTIONS(4173), 1, anon_sym_LBRACK, - ACTIONS(7520), 11, + ACTIONS(4175), 11, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - anon_sym_GT2, anon_sym_try, anon_sym_requires, - [173812] = 10, + [197535] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1465), 1, - anon_sym_LBRACE, - ACTIONS(3930), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7238), 1, + ACTIONS(7413), 1, anon_sym_LPAREN2, - ACTIONS(7244), 1, + ACTIONS(7419), 1, anon_sym_LBRACK, - ACTIONS(7246), 1, - anon_sym_EQ, - STATE(3293), 1, + STATE(4068), 1, sym_parameter_list, - ACTIONS(7606), 2, - anon_sym_COMMA, - anon_sym_SEMI, - STATE(4794), 2, + STATE(5083), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6200), 2, - sym_argument_list, - sym_initializer_list, - [173846] = 11, + ACTIONS(7872), 6, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [197563] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(5200), 1, + ACTIONS(5562), 1, anon_sym_COLON_COLON, - ACTIONS(6811), 1, + ACTIONS(7035), 1, anon_sym_LBRACE, - ACTIONS(6957), 1, + ACTIONS(7462), 1, sym_identifier, - STATE(2187), 1, + STATE(2906), 1, sym_template_type, - STATE(2422), 1, + STATE(3141), 1, sym_enumerator_list, - STATE(5137), 1, + STATE(5425), 1, sym__scope_resolution, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(7608), 2, + ACTIONS(7874), 2, anon_sym_class, anon_sym_struct, - STATE(4160), 2, + STATE(4410), 2, sym__class_name, sym_qualified_type_identifier, - [173882] = 11, + [197599] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(4060), 1, + ACTIONS(6609), 1, anon_sym_COLON_COLON, - ACTIONS(6899), 1, + ACTIONS(7031), 1, anon_sym_LBRACE, - ACTIONS(6947), 1, + ACTIONS(7093), 1, sym_identifier, - STATE(2635), 1, + STATE(2349), 1, sym_template_type, - STATE(3388), 1, + STATE(2907), 1, sym_enumerator_list, - STATE(5072), 1, + STATE(5374), 1, sym__scope_resolution, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(7610), 2, + ACTIONS(7876), 2, anon_sym_class, anon_sym_struct, - STATE(3285), 2, + STATE(3241), 2, sym__class_name, sym_qualified_type_identifier, - [173918] = 7, + [197635] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5514), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7181), 1, - anon_sym_LPAREN2, - ACTIONS(7187), 1, + ACTIONS(7880), 1, anon_sym_LBRACK, - STATE(3441), 1, - sym_parameter_list, - STATE(4830), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(7612), 6, + ACTIONS(7878), 11, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, + anon_sym_GT2, anon_sym_try, - [173946] = 7, + anon_sym_requires, + [197655] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5514), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7181), 1, - anon_sym_LPAREN2, - ACTIONS(7187), 1, + ACTIONS(2485), 1, anon_sym_LBRACK, - STATE(3441), 1, - sym_parameter_list, - STATE(4830), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(7614), 6, + ACTIONS(2487), 11, anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, anon_sym_try, - [173974] = 11, + anon_sym_requires, + [197675] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(4060), 1, + ACTIONS(6623), 1, anon_sym_COLON_COLON, - ACTIONS(5506), 1, - anon_sym_LBRACE, - ACTIONS(6947), 1, + ACTIONS(7103), 1, sym_identifier, - STATE(2635), 1, + ACTIONS(7882), 1, + anon_sym_LBRACE, + STATE(2170), 1, sym_template_type, - STATE(3143), 1, + STATE(2721), 1, sym_enumerator_list, - STATE(5072), 1, + STATE(5412), 1, sym__scope_resolution, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(7616), 2, + ACTIONS(7884), 2, anon_sym_class, anon_sym_struct, - STATE(4124), 2, + STATE(2257), 2, sym__class_name, sym_qualified_type_identifier, - [174010] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(536), 1, - anon_sym_LBRACE, - ACTIONS(5692), 1, - anon_sym_LBRACK, - ACTIONS(7420), 1, - anon_sym_EQ, - ACTIONS(7422), 1, - anon_sym_COLON, - ACTIONS(7424), 1, - anon_sym_try, - STATE(942), 1, - sym_compound_statement, - STATE(6355), 1, - sym_field_initializer_list, - ACTIONS(3984), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(944), 3, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - [174044] = 11, + [197711] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(5870), 1, + ACTIONS(5522), 1, anon_sym_COLON_COLON, - ACTIONS(6801), 1, - sym_identifier, - ACTIONS(7618), 1, + ACTIONS(7031), 1, anon_sym_LBRACE, - STATE(2175), 1, + ACTIONS(7203), 1, + sym_identifier, + STATE(2349), 1, sym_template_type, - STATE(2515), 1, + STATE(2907), 1, sym_enumerator_list, - STATE(5168), 1, + STATE(5397), 1, sym__scope_resolution, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - ACTIONS(7620), 2, + ACTIONS(7886), 2, anon_sym_class, anon_sym_struct, - STATE(2180), 2, + STATE(4517), 2, sym__class_name, sym_qualified_type_identifier, - [174080] = 4, + [197747] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3816), 1, - anon_sym_COLON_COLON, - ACTIONS(3818), 2, + ACTIONS(7890), 1, anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(3823), 9, + ACTIONS(7888), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -346004,19 +378947,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_COLON, anon_sym_GT2, anon_sym_try, - [174102] = 5, + anon_sym_requires, + [197767] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7624), 1, + ACTIONS(7894), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7627), 1, + ACTIONS(7897), 1, anon_sym_LBRACK, - STATE(4792), 2, + STATE(5055), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(7622), 8, + ACTIONS(7892), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -346025,18 +378970,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_try, - [174126] = 5, + [197791] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4270), 1, + ACTIONS(4221), 1, anon_sym_LBRACK, - ACTIONS(7570), 1, - anon_sym_AMP_AMP, - ACTIONS(7629), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4272), 9, + ACTIONS(4223), 11, anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, @@ -346044,79 +378987,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_try, anon_sym_requires, - [174150] = 5, + [197811] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3930), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7633), 1, + ACTIONS(4221), 1, anon_sym_LBRACK, - STATE(4792), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(7631), 8, + ACTIONS(4223), 11, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_GT2, + anon_sym_COLON, anon_sym_try, - [174174] = 10, + anon_sym_requires, + [197831] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(536), 1, - anon_sym_LBRACE, - ACTIONS(5692), 1, + ACTIONS(4221), 1, anon_sym_LBRACK, - ACTIONS(7420), 1, + ACTIONS(4223), 11, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_EQ, - ACTIONS(7422), 1, anon_sym_COLON, - ACTIONS(7424), 1, anon_sym_try, - STATE(953), 1, - sym_compound_statement, - STATE(6364), 1, - sym_field_initializer_list, - ACTIONS(3984), 2, + anon_sym_requires, + [197851] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7901), 1, + anon_sym_LBRACK, + ACTIONS(7899), 11, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - STATE(958), 3, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - [174208] = 10, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [197871] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(5692), 1, + ACTIONS(6525), 1, anon_sym_LBRACK, - ACTIONS(7422), 1, + ACTIONS(7692), 1, anon_sym_COLON, - ACTIONS(7470), 1, + ACTIONS(7760), 1, anon_sym_EQ, - ACTIONS(7472), 1, + ACTIONS(7762), 1, anon_sym_try, - STATE(928), 1, + STATE(905), 1, sym_compound_statement, - STATE(6098), 1, + STATE(6614), 1, sym_field_initializer_list, - ACTIONS(3984), 2, + ACTIONS(3935), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(931), 3, + STATE(1036), 3, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, - [174242] = 3, + [197905] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7637), 1, + ACTIONS(6015), 1, anon_sym_LBRACK, - ACTIONS(7635), 11, + ACTIONS(6346), 1, + anon_sym_requires, + STATE(5135), 1, + sym_requires_clause, + ACTIONS(6007), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -346124,16 +379079,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [174262] = 3, + [197929] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7641), 1, + ACTIONS(7905), 1, anon_sym_LBRACK, - ACTIONS(7639), 11, + ACTIONS(7903), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -346145,12 +379098,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [174282] = 3, + [197949] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7516), 1, + ACTIONS(7909), 1, anon_sym_LBRACK, - ACTIONS(7514), 11, + ACTIONS(7907), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -346162,31 +379115,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [174302] = 5, + [197969] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, - anon_sym_requires, - ACTIONS(7645), 1, + ACTIONS(4185), 1, anon_sym_LBRACK, - STATE(4849), 1, - sym_requires_clause, - ACTIONS(7643), 9, + ACTIONS(4187), 11, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_GT2, + anon_sym_COLON, anon_sym_try, - [174326] = 3, + anon_sym_requires, + [197989] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7649), 1, + ACTIONS(6795), 1, anon_sym_LBRACK, - ACTIONS(7647), 11, + ACTIONS(6793), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -346198,63 +379149,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [174346] = 2, + [198009] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7639), 11, - anon_sym_DOT_DOT_DOT, + ACTIONS(4141), 1, + anon_sym_LBRACK, + ACTIONS(4143), 11, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT2, + anon_sym_COLON, anon_sym_try, anon_sym_requires, - [174363] = 7, + [198029] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5514), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7181), 1, - anon_sym_LPAREN2, - ACTIONS(7244), 1, + ACTIONS(4229), 1, anon_sym_LBRACK, - STATE(3283), 1, - sym_parameter_list, - STATE(4905), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(7651), 5, + ACTIONS(4231), 11, anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - [174390] = 3, + anon_sym_try, + anon_sym_requires, + [198049] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7655), 1, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(6525), 1, anon_sym_LBRACK, - ACTIONS(7653), 10, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(7692), 1, + anon_sym_COLON, + ACTIONS(7760), 1, + anon_sym_EQ, + ACTIONS(7762), 1, + anon_sym_try, + STATE(991), 1, + sym_compound_statement, + STATE(6422), 1, + sym_field_initializer_list, + ACTIONS(3935), 2, anon_sym_LPAREN2, - anon_sym_SEMI, anon_sym_LBRACK_LBRACK, + STATE(990), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [198083] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(3765), 1, + anon_sym_COLON_COLON, + ACTIONS(5731), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_GT2, - anon_sym_try, - [174409] = 3, + ACTIONS(7211), 1, + sym_identifier, + STATE(3262), 1, + sym_template_type, + STATE(3513), 1, + sym_enumerator_list, + STATE(5354), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + ACTIONS(7911), 2, + anon_sym_class, + anon_sym_struct, + STATE(3431), 2, + sym__class_name, + sym_qualified_type_identifier, + [198119] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7659), 1, + ACTIONS(7915), 1, anon_sym_LBRACK, - ACTIONS(7657), 10, + ACTIONS(7913), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -346265,49 +379248,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_GT2, anon_sym_try, - [174428] = 9, + anon_sym_requires, + [198139] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(251), 1, + anon_sym_LBRACE, + ACTIONS(6525), 1, + anon_sym_LBRACK, + ACTIONS(7692), 1, + anon_sym_COLON, + ACTIONS(7714), 1, + anon_sym_EQ, + ACTIONS(7716), 1, + anon_sym_try, + STATE(472), 1, + sym_compound_statement, + STATE(6716), 1, + sym_field_initializer_list, + ACTIONS(3935), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(509), 3, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + [198173] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3007), 1, + ACTIONS(6573), 1, anon_sym_COLON_COLON, - ACTIONS(6993), 1, + ACTIONS(7063), 1, sym_identifier, - STATE(2635), 1, + ACTIONS(7917), 1, + anon_sym_LBRACE, + STATE(1893), 1, sym_template_type, - STATE(5131), 1, + STATE(2289), 1, + sym_enumerator_list, + STATE(5441), 1, sym__scope_resolution, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - STATE(5255), 2, + ACTIONS(7919), 2, + anon_sym_class, + anon_sym_struct, + STATE(1976), 2, sym__class_name, sym_qualified_type_identifier, - ACTIONS(7661), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - [174459] = 2, + [198209] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7564), 11, - anon_sym_DOT_DOT_DOT, + ACTIONS(2476), 1, + anon_sym_LBRACK, + ACTIONS(2478), 11, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT2, + anon_sym_COLON, anon_sym_try, anon_sym_requires, - [174476] = 3, + [198229] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3759), 1, + ACTIONS(7923), 1, anon_sym_LBRACK, - ACTIONS(3764), 10, + ACTIONS(7921), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -346318,16 +379331,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_GT2, anon_sym_try, - [174495] = 5, + [198248] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7665), 1, - anon_sym_LT, - ACTIONS(7667), 1, + ACTIONS(7413), 1, + anon_sym_LPAREN2, + ACTIONS(7927), 1, anon_sym_LBRACK, - STATE(4900), 1, - sym_template_argument_list, - ACTIONS(7663), 8, + STATE(4153), 1, + sym_parameter_list, + ACTIONS(7925), 8, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + anon_sym_requires, + [198271] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6025), 1, + anon_sym_requires, + ACTIONS(6565), 1, + anon_sym_LBRACK, + STATE(5172), 1, + sym_requires_clause, + ACTIONS(6563), 8, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -346336,12 +379367,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COLON, anon_sym_try, - [174518] = 3, + [198294] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7671), 1, + ACTIONS(7830), 1, anon_sym_LBRACK, - ACTIONS(7669), 10, + ACTIONS(7828), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -346352,94 +379383,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_GT2, anon_sym_try, - [174537] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(3007), 1, - anon_sym_COLON_COLON, - ACTIONS(6993), 1, - sym_identifier, - STATE(2635), 1, - sym_template_type, - STATE(5131), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - STATE(5553), 2, - sym__class_name, - sym_qualified_type_identifier, - ACTIONS(7673), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - [174568] = 7, + [198313] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3930), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7181), 1, + ACTIONS(7413), 1, anon_sym_LPAREN2, - ACTIONS(7244), 1, + ACTIONS(7514), 1, anon_sym_LBRACK, - STATE(3293), 1, + STATE(3679), 1, sym_parameter_list, - STATE(4794), 2, + STATE(5154), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(7675), 5, + ACTIONS(7929), 5, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_try, - [174595] = 5, + anon_sym_COLON, + [198340] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7181), 1, + ACTIONS(4255), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7413), 1, anon_sym_LPAREN2, - ACTIONS(7679), 1, + ACTIONS(7514), 1, anon_sym_LBRACK, - STATE(3657), 1, + STATE(3843), 1, sym_parameter_list, - ACTIONS(7677), 8, + STATE(5035), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(7931), 5, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, anon_sym_try, - anon_sym_requires, - [174618] = 5, + [198367] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5618), 1, - anon_sym_requires, - ACTIONS(7683), 1, + ACTIONS(6525), 1, anon_sym_LBRACK, - STATE(4913), 1, - sym_requires_clause, - ACTIONS(7681), 8, + ACTIONS(3935), 10, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, + anon_sym_GT2, anon_sym_try, - [174641] = 5, + [198386] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5618), 1, + ACTIONS(7903), 11, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, anon_sym_requires, - ACTIONS(5728), 1, + [198403] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6025), 1, + anon_sym_requires, + ACTIONS(7826), 1, anon_sym_LBRACK, - STATE(4835), 1, + STATE(5017), 1, sym_requires_clause, - ACTIONS(5726), 8, + ACTIONS(7824), 8, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -346448,17 +379472,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COLON, anon_sym_try, - [174664] = 5, + [198426] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7627), 1, - anon_sym_LBRACK, - ACTIONS(7685), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - STATE(4816), 2, + ACTIONS(7935), 1, + anon_sym_LBRACK, + STATE(5126), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(7622), 7, + ACTIONS(7933), 7, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -346466,12 +379490,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COLON, anon_sym_try, - [174687] = 3, + [198449] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3759), 1, + ACTIONS(3437), 1, anon_sym_LBRACK, - ACTIONS(3764), 10, + ACTIONS(3442), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -346482,144 +379506,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_GT2, anon_sym_try, - [174706] = 5, + [198468] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5618), 1, - anon_sym_requires, - ACTIONS(7516), 1, + ACTIONS(4255), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7413), 1, + anon_sym_LPAREN2, + ACTIONS(7514), 1, anon_sym_LBRACK, - STATE(4780), 1, - sym_requires_clause, - ACTIONS(7514), 8, + STATE(3843), 1, + sym_parameter_list, + STATE(5035), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(7937), 5, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, anon_sym_try, - [174729] = 2, + [198495] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7647), 11, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(7413), 1, anon_sym_LPAREN2, + ACTIONS(7927), 1, + anon_sym_LBRACK, + STATE(4153), 1, + sym_parameter_list, + ACTIONS(7939), 8, + anon_sym_COMMA, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT2, + anon_sym_COLON, anon_sym_try, anon_sym_requires, - [174746] = 7, + [198518] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3930), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7181), 1, + ACTIONS(7413), 1, anon_sym_LPAREN2, - ACTIONS(7244), 1, + ACTIONS(7927), 1, anon_sym_LBRACK, - STATE(3293), 1, + STATE(4153), 1, sym_parameter_list, - STATE(4794), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(7688), 5, + ACTIONS(7941), 8, anon_sym_COMMA, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_COLON, anon_sym_try, - [174773] = 8, + anon_sym_requires, + [198541] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym___based, - ACTIONS(6377), 1, + ACTIONS(6868), 1, sym_identifier, - ACTIONS(6379), 1, + ACTIONS(6870), 1, anon_sym_LPAREN2, - ACTIONS(6381), 1, + ACTIONS(6872), 1, anon_sym_STAR, - STATE(5083), 1, + STATE(5427), 1, sym__type_declarator, - STATE(6677), 1, + STATE(7071), 1, sym_ms_based_modifier, - STATE(5193), 5, + STATE(5493), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [174802] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3735), 1, - anon_sym_COLON_COLON, - ACTIONS(6745), 1, - anon_sym_LT, - STATE(2192), 1, - sym_template_argument_list, - ACTIONS(3740), 8, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LBRACK, - anon_sym_GT2, - anon_sym_requires, - [174825] = 7, + [198570] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3930), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7181), 1, + ACTIONS(7413), 1, anon_sym_LPAREN2, - ACTIONS(7244), 1, + ACTIONS(7927), 1, anon_sym_LBRACK, - STATE(3293), 1, + STATE(4153), 1, sym_parameter_list, - STATE(4794), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(7690), 5, + ACTIONS(7943), 8, anon_sym_COMMA, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_COLON, anon_sym_try, - [174852] = 7, + anon_sym_requires, + [198593] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5514), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7181), 1, - anon_sym_LPAREN2, - ACTIONS(7244), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - STATE(3283), 1, - sym_parameter_list, - STATE(4905), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(7692), 5, + ACTIONS(4827), 10, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - [174879] = 3, + anon_sym_GT2, + anon_sym_try, + [198612] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5692), 1, + ACTIONS(3437), 1, anon_sym_LBRACK, - ACTIONS(3984), 10, + ACTIONS(3442), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -346630,54 +379633,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_GT2, anon_sym_try, - [174898] = 7, + [198631] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3930), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7181), 1, - anon_sym_LPAREN2, - ACTIONS(7244), 1, - anon_sym_LBRACK, - STATE(3293), 1, - sym_parameter_list, - STATE(4794), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(7651), 5, + ACTIONS(7913), 11, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_GT2, anon_sym_try, - [174925] = 5, + anon_sym_requires, + [198648] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5618), 1, - anon_sym_requires, - ACTIONS(5744), 1, + ACTIONS(7947), 1, anon_sym_LBRACK, - STATE(4893), 1, - sym_requires_clause, - ACTIONS(5742), 8, + ACTIONS(7945), 10, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, + anon_sym_GT2, anon_sym_try, - [174948] = 5, + [198667] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7181), 1, + ACTIONS(7413), 1, anon_sym_LPAREN2, - ACTIONS(7679), 1, + ACTIONS(7927), 1, anon_sym_LBRACK, - STATE(3657), 1, + STATE(4153), 1, sym_parameter_list, - ACTIONS(7694), 8, + ACTIONS(7949), 8, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, @@ -346686,64 +379682,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_try, anon_sym_requires, - [174971] = 2, + [198690] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7514), 11, - anon_sym_DOT_DOT_DOT, + ACTIONS(4716), 1, + anon_sym_LBRACK, + ACTIONS(4711), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, + anon_sym_COLON, anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [174988] = 5, + [198709] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5514), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7698), 1, - anon_sym_LBRACK, - STATE(4816), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(7696), 7, + ACTIONS(7907), 11, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_COLON, + anon_sym_GT2, anon_sym_try, - [175011] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(47), 1, - anon_sym___based, - ACTIONS(6377), 1, - sym_identifier, - ACTIONS(6379), 1, - anon_sym_LPAREN2, - ACTIONS(6381), 1, - anon_sym_STAR, - STATE(5036), 1, - sym__type_declarator, - STATE(6677), 1, - sym_ms_based_modifier, - STATE(5193), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [175040] = 2, + anon_sym_requires, + [198726] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7536), 11, + ACTIONS(7888), 11, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -346755,34 +379728,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [175057] = 5, + [198743] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7181), 1, - anon_sym_LPAREN2, - ACTIONS(7679), 1, + ACTIONS(3437), 1, anon_sym_LBRACK, - STATE(3657), 1, - sym_parameter_list, - ACTIONS(7700), 8, + ACTIONS(3442), 10, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, + anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [175080] = 5, + [198762] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7181), 1, + ACTIONS(7413), 1, anon_sym_LPAREN2, - ACTIONS(7679), 1, + ACTIONS(7927), 1, anon_sym_LBRACK, - STATE(3657), 1, + STATE(4153), 1, sym_parameter_list, - ACTIONS(7702), 8, + ACTIONS(7951), 8, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, @@ -346791,12 +379762,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_try, anon_sym_requires, - [175103] = 3, + [198785] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7645), 1, + ACTIONS(3437), 1, anon_sym_LBRACK, - ACTIONS(7643), 10, + ACTIONS(3442), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -346807,10 +379778,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_GT2, anon_sym_try, - [175122] = 2, + [198804] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7520), 11, + ACTIONS(7846), 11, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -346822,30 +379793,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [175139] = 5, + [198821] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, - anon_sym_COLON_COLON, - ACTIONS(6745), 1, - anon_sym_LT, - STATE(2192), 1, - sym_template_argument_list, - ACTIONS(3757), 8, + ACTIONS(6793), 11, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_EQ, anon_sym_GT2, + anon_sym_try, anon_sym_requires, - [175162] = 3, + [198838] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3759), 1, + ACTIONS(4940), 1, anon_sym_LBRACK, - ACTIONS(3764), 10, + ACTIONS(4938), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -346856,25 +379824,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_GT2, anon_sym_try, - [175181] = 2, + [198857] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7580), 11, - anon_sym_DOT_DOT_DOT, + ACTIONS(6025), 1, + anon_sym_requires, + ACTIONS(7778), 1, + anon_sym_LBRACK, + STATE(5014), 1, + sym_requires_clause, + ACTIONS(7776), 8, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [198880] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4255), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7413), 1, + anon_sym_LPAREN2, + ACTIONS(7514), 1, anon_sym_LBRACK, + STATE(3843), 1, + sym_parameter_list, + STATE(5035), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(7953), 5, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_EQ, - anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [175198] = 2, + [198907] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7594), 11, + ACTIONS(6797), 11, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -346886,79 +379877,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [175215] = 7, + [198924] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5514), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7181), 1, + ACTIONS(7413), 1, anon_sym_LPAREN2, - ACTIONS(7187), 1, + ACTIONS(7419), 1, anon_sym_LBRACK, - STATE(3441), 1, + STATE(4068), 1, sym_parameter_list, - STATE(4830), 2, + STATE(5083), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(7704), 5, + ACTIONS(7955), 5, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - [175242] = 3, + [198951] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5728), 1, - anon_sym_LBRACK, - ACTIONS(5726), 10, + ACTIONS(7834), 11, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_COLON, anon_sym_GT2, anon_sym_try, - [175261] = 2, + anon_sym_requires, + [198968] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6301), 11, - anon_sym_DOT_DOT_DOT, + ACTIONS(6025), 1, + anon_sym_requires, + ACTIONS(6795), 1, + anon_sym_LBRACK, + STATE(5045), 1, + sym_requires_clause, + ACTIONS(6793), 8, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT2, + anon_sym_COLON, anon_sym_try, - anon_sym_requires, - [175278] = 5, + [198991] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5618), 1, - anon_sym_requires, - ACTIONS(5622), 1, + ACTIONS(7959), 1, anon_sym_LBRACK, - STATE(4842), 1, - sym_requires_clause, - ACTIONS(5620), 8, + ACTIONS(7957), 10, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, + anon_sym_GT2, anon_sym_try, - [175301] = 2, + [199010] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6202), 11, + ACTIONS(7824), 11, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -346970,68 +379961,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [175318] = 5, + [199027] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7181), 1, - anon_sym_LPAREN2, - ACTIONS(7679), 1, + ACTIONS(7963), 1, anon_sym_LBRACK, - STATE(3657), 1, - sym_parameter_list, - ACTIONS(7706), 8, + ACTIONS(7961), 10, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, + anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [175341] = 7, + [199046] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3930), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7181), 1, - anon_sym_LPAREN2, - ACTIONS(7244), 1, + ACTIONS(6025), 1, + anon_sym_requires, + ACTIONS(6799), 1, anon_sym_LBRACK, - STATE(3293), 1, - sym_parameter_list, - STATE(4794), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(7692), 5, + STATE(5023), 1, + sym_requires_clause, + ACTIONS(6797), 8, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_COLON, anon_sym_try, - [175368] = 5, + [199069] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5618), 1, - anon_sym_requires, - ACTIONS(7645), 1, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7413), 1, + anon_sym_LPAREN2, + ACTIONS(7514), 1, anon_sym_LBRACK, - STATE(4849), 1, - sym_requires_clause, - ACTIONS(7643), 8, + STATE(3679), 1, + sym_parameter_list, + STATE(5154), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(7931), 5, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - anon_sym_try, - [175391] = 3, + [199096] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7710), 1, + ACTIONS(6015), 1, anon_sym_LBRACK, - ACTIONS(7708), 10, + ACTIONS(6007), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -347042,57 +380031,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_GT2, anon_sym_try, - [175410] = 2, + [199115] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7572), 11, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4255), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7413), 1, anon_sym_LPAREN2, + ACTIONS(7514), 1, + anon_sym_LBRACK, + STATE(3843), 1, + sym_parameter_list, + STATE(5035), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(7929), 5, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [175427] = 3, + [199142] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3759), 1, + ACTIONS(6015), 1, anon_sym_LBRACK, - ACTIONS(3764), 10, + ACTIONS(6025), 1, + anon_sym_requires, + STATE(5135), 1, + sym_requires_clause, + ACTIONS(6007), 8, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - anon_sym_GT2, anon_sym_try, - [175446] = 3, + [199165] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7714), 1, + ACTIONS(4255), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7413), 1, + anon_sym_LPAREN2, + ACTIONS(7514), 1, anon_sym_LBRACK, - ACTIONS(7712), 10, + STATE(3843), 1, + sym_parameter_list, + STATE(5035), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(7965), 5, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, - anon_sym_GT2, anon_sym_try, - [175465] = 2, + [199192] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7590), 11, + ACTIONS(7810), 11, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -347104,12 +380104,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [175482] = 3, + [199209] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7718), 1, + ACTIONS(7969), 1, anon_sym_LBRACK, - ACTIONS(7716), 10, + ACTIONS(7967), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -347120,26 +380120,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_GT2, anon_sym_try, - [175501] = 3, + [199228] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5622), 1, + ACTIONS(7973), 1, + anon_sym_LT, + ACTIONS(7975), 1, anon_sym_LBRACK, - ACTIONS(5620), 10, + STATE(5195), 1, + sym_template_argument_list, + ACTIONS(7971), 8, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - anon_sym_GT2, anon_sym_try, - [175520] = 2, + [199251] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2434), 1, + anon_sym_COLON_COLON, + ACTIONS(7187), 1, + sym_identifier, + STATE(3262), 1, + sym_template_type, + STATE(5394), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + STATE(6032), 2, + sym__class_name, + sym_qualified_type_identifier, + ACTIONS(7977), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + [199282] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7635), 11, + ACTIONS(7814), 11, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -347151,48 +380175,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [175537] = 5, + [199299] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5618), 1, + ACTIONS(7413), 1, + anon_sym_LPAREN2, + ACTIONS(7927), 1, + anon_sym_LBRACK, + STATE(4153), 1, + sym_parameter_list, + ACTIONS(7979), 8, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, anon_sym_requires, - ACTIONS(7522), 1, + [199322] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3437), 1, anon_sym_LBRACK, - STATE(4773), 1, - sym_requires_clause, - ACTIONS(7520), 8, + ACTIONS(3442), 10, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, + anon_sym_GT2, anon_sym_try, - [175560] = 7, + [199341] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5514), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7181), 1, - anon_sym_LPAREN2, - ACTIONS(7244), 1, + ACTIONS(7897), 1, anon_sym_LBRACK, - STATE(3283), 1, - sym_parameter_list, - STATE(4905), 2, + ACTIONS(7981), 1, + anon_sym_LBRACK_LBRACK, + STATE(5126), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(7675), 5, + ACTIONS(7892), 7, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - [175587] = 2, + anon_sym_try, + [199364] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7602), 11, + ACTIONS(7899), 11, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -347204,32 +380242,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [175604] = 3, + [199381] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7722), 1, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2434), 1, + anon_sym_COLON_COLON, + ACTIONS(7187), 1, + sym_identifier, + STATE(3262), 1, + sym_template_type, + STATE(5394), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + STATE(5524), 2, + sym__class_name, + sym_qualified_type_identifier, + ACTIONS(7984), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + [199412] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6025), 1, + anon_sym_requires, + ACTIONS(7830), 1, anon_sym_LBRACK, - ACTIONS(7720), 10, + STATE(5112), 1, + sym_requires_clause, + ACTIONS(7828), 8, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - anon_sym_GT2, anon_sym_try, - [175623] = 5, + [199435] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5618), 1, + ACTIONS(6025), 1, anon_sym_requires, - ACTIONS(6204), 1, + ACTIONS(7988), 1, anon_sym_LBRACK, - STATE(4782), 1, + STATE(5179), 1, sym_requires_clause, - ACTIONS(6202), 8, + ACTIONS(7986), 8, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -347238,12 +380300,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COLON, anon_sym_try, - [175646] = 3, + [199458] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4699), 1, + ACTIONS(7992), 1, anon_sym_LBRACK, - ACTIONS(4697), 10, + ACTIONS(7990), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -347254,169 +380316,220 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_GT2, anon_sym_try, - [175665] = 7, + [199477] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5514), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7181), 1, - anon_sym_LPAREN2, - ACTIONS(7244), 1, + ACTIONS(6025), 1, + anon_sym_requires, + ACTIONS(6529), 1, anon_sym_LBRACK, - STATE(3283), 1, - sym_parameter_list, - STATE(4905), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(7688), 5, + STATE(5077), 1, + sym_requires_clause, + ACTIONS(6527), 8, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - [175692] = 5, + anon_sym_try, + [199500] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7181), 1, - anon_sym_LPAREN2, - ACTIONS(7679), 1, - anon_sym_LBRACK, - STATE(3657), 1, - sym_parameter_list, - ACTIONS(7724), 8, + ACTIONS(7850), 11, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_COLON, + anon_sym_GT2, anon_sym_try, anon_sym_requires, - [175715] = 7, + [199517] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5514), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7181), 1, - anon_sym_LPAREN2, - ACTIONS(7244), 1, + ACTIONS(4737), 1, anon_sym_LBRACK, - STATE(3283), 1, - sym_parameter_list, - STATE(4905), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(7690), 5, + ACTIONS(4735), 10, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - [175742] = 2, + anon_sym_GT2, + anon_sym_try, + [199536] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7510), 11, - anon_sym_DOT_DOT_DOT, + ACTIONS(6529), 1, + anon_sym_LBRACK, + ACTIONS(6527), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, + anon_sym_COLON, anon_sym_GT2, anon_sym_try, + [199555] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3424), 1, + anon_sym_COLON_COLON, + ACTIONS(6988), 1, + anon_sym_LT, + STATE(1967), 1, + sym_template_argument_list, + ACTIONS(3435), 8, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LBRACK, + anon_sym_GT2, anon_sym_requires, - [175759] = 5, + [199578] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7181), 1, + ACTIONS(3424), 1, + anon_sym_COLON_COLON, + ACTIONS(6988), 1, + anon_sym_LT, + STATE(1967), 1, + sym_template_argument_list, + ACTIONS(3426), 8, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(7679), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LBRACK, - STATE(3657), 1, - sym_parameter_list, - ACTIONS(7726), 8, + anon_sym_GT2, + anon_sym_requires, + [199601] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7878), 11, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_COLON, + anon_sym_GT2, anon_sym_try, anon_sym_requires, - [175782] = 5, + [199618] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5618), 1, - anon_sym_requires, - ACTIONS(6303), 1, + ACTIONS(7996), 1, anon_sym_LBRACK, - STATE(4799), 1, - sym_requires_clause, - ACTIONS(6301), 8, + ACTIONS(7994), 10, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, + anon_sym_GT2, anon_sym_try, - [175805] = 3, + [199637] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4689), 1, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7413), 1, + anon_sym_LPAREN2, + ACTIONS(7514), 1, anon_sym_LBRACK, - ACTIONS(4687), 10, + STATE(3679), 1, + sym_parameter_list, + STATE(5154), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(7965), 5, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - anon_sym_GT2, - anon_sym_try, - [175824] = 3, + [199664] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3759), 1, - anon_sym_LBRACK, - ACTIONS(3764), 10, + ACTIONS(7776), 11, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_COLON, anon_sym_GT2, anon_sym_try, - [175843] = 3, + anon_sym_requires, + [199681] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4874), 1, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7413), 1, + anon_sym_LPAREN2, + ACTIONS(7514), 1, anon_sym_LBRACK, - ACTIONS(4872), 10, + STATE(3679), 1, + sym_parameter_list, + STATE(5154), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(7937), 5, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - anon_sym_GT2, - anon_sym_try, - [175862] = 3, + [199708] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym___based, + ACTIONS(6868), 1, + sym_identifier, + ACTIONS(6870), 1, + anon_sym_LPAREN2, + ACTIONS(6872), 1, + anon_sym_STAR, + STATE(5312), 1, + sym__type_declarator, + STATE(7071), 1, + sym_ms_based_modifier, + STATE(5493), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [199737] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7730), 1, + ACTIONS(8000), 1, anon_sym_LBRACK, - ACTIONS(7728), 10, + ACTIONS(7998), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -347427,10 +380540,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_GT2, anon_sym_try, - [175881] = 2, + [199756] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7584), 11, + ACTIONS(7820), 11, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -347442,26 +380555,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [175898] = 3, + [199773] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5006), 1, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7413), 1, + anon_sym_LPAREN2, + ACTIONS(7514), 1, anon_sym_LBRACK, - ACTIONS(5004), 10, + STATE(3679), 1, + sym_parameter_list, + STATE(5154), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(7953), 5, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - anon_sym_GT2, - anon_sym_try, - [175917] = 2, + [199800] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7598), 11, + ACTIONS(7868), 11, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -347473,214 +380590,207 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [175934] = 10, + [199817] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(600), 1, - anon_sym_LBRACE, - ACTIONS(3930), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7181), 1, + ACTIONS(7413), 1, anon_sym_LPAREN2, - ACTIONS(7244), 1, + ACTIONS(7927), 1, anon_sym_LBRACK, - ACTIONS(7262), 1, - anon_sym_try, - STATE(1024), 1, - sym_compound_statement, - STATE(1052), 1, - sym_try_statement, - STATE(3509), 1, + STATE(4195), 1, sym_parameter_list, - STATE(4794), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [175966] = 7, + ACTIONS(7949), 7, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + anon_sym_requires, + [199839] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5506), 1, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(4731), 1, + anon_sym_COLON_COLON, + ACTIONS(5731), 1, anon_sym_LBRACE, - ACTIONS(7732), 1, - anon_sym_COLON, - STATE(3188), 1, - sym__enum_base_clause, - STATE(3189), 1, - sym_enumerator_list, - ACTIONS(4338), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(4340), 4, - anon_sym___based, + ACTIONS(7211), 1, sym_identifier, - sym_auto, - anon_sym_decltype, - [175992] = 4, + STATE(3262), 1, + sym_template_type, + STATE(3445), 1, + sym_enumerator_list, + STATE(5352), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + STATE(4374), 2, + sym__class_name, + sym_qualified_type_identifier, + [199871] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4304), 1, + ACTIONS(5027), 1, anon_sym_LBRACK, - ACTIONS(7734), 1, + ACTIONS(8002), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8004), 1, anon_sym_AMP_AMP, - ACTIONS(4306), 8, + ACTIONS(5025), 7, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_try, anon_sym_requires, - [176012] = 7, + [199893] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7181), 1, + ACTIONS(7413), 1, anon_sym_LPAREN2, - ACTIONS(7244), 1, + ACTIONS(7514), 1, anon_sym_LBRACK, - STATE(3387), 1, + STATE(4052), 1, sym_parameter_list, - STATE(4794), 2, + STATE(5035), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(7688), 4, + ACTIONS(7953), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_EQ, anon_sym_GT2, - [176038] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7738), 1, - anon_sym_LBRACK, - ACTIONS(7736), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [176056] = 10, + [199919] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7181), 1, + ACTIONS(7413), 1, anon_sym_LPAREN2, - ACTIONS(7244), 1, + ACTIONS(7514), 1, anon_sym_LBRACK, - ACTIONS(7300), 1, - anon_sym_try, - STATE(945), 1, - sym_compound_statement, - STATE(946), 1, - sym_try_statement, - STATE(3509), 1, + STATE(4052), 1, sym_parameter_list, - STATE(4794), 2, + STATE(5035), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [176088] = 10, + ACTIONS(7937), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_GT2, + [199945] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3007), 1, - anon_sym_COLON_COLON, - ACTIONS(5506), 1, + ACTIONS(5731), 1, anon_sym_LBRACE, - ACTIONS(6993), 1, + ACTIONS(7187), 1, sym_identifier, - STATE(2635), 1, + ACTIONS(7482), 1, + anon_sym_COLON_COLON, + STATE(3262), 1, sym_template_type, - STATE(3195), 1, + STATE(3445), 1, sym_enumerator_list, - STATE(5131), 1, + STATE(5383), 1, sym__scope_resolution, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - STATE(3309), 2, + STATE(5197), 2, sym__class_name, sym_qualified_type_identifier, - [176120] = 10, + [199977] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(5794), 1, - anon_sym_COLON_COLON, - ACTIONS(6855), 1, - sym_identifier, - ACTIONS(7528), 1, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7856), 1, + anon_sym_LBRACK, + STATE(5126), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(7854), 6, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(2147), 1, - sym_template_type, - STATE(2265), 1, - sym_enumerator_list, - STATE(5120), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - STATE(2549), 2, - sym__class_name, - sym_qualified_type_identifier, - [176152] = 7, + anon_sym_EQ, + anon_sym_COLON, + [199999] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7413), 1, + anon_sym_LPAREN2, + ACTIONS(7927), 1, + anon_sym_LBRACK, + STATE(4195), 1, + sym_parameter_list, + ACTIONS(7943), 7, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + anon_sym_requires, + [200021] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7181), 1, + ACTIONS(7413), 1, anon_sym_LPAREN2, - ACTIONS(7244), 1, + ACTIONS(7514), 1, anon_sym_LBRACK, - STATE(3387), 1, + STATE(4052), 1, sym_parameter_list, - STATE(4794), 2, + STATE(5035), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(7690), 4, + ACTIONS(7931), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_EQ, anon_sym_GT2, - [176178] = 10, + [200047] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(5870), 1, + ACTIONS(5522), 1, anon_sym_COLON_COLON, - ACTIONS(6801), 1, - sym_identifier, - ACTIONS(7618), 1, + ACTIONS(7031), 1, anon_sym_LBRACE, - STATE(2175), 1, + ACTIONS(7203), 1, + sym_identifier, + STATE(2349), 1, sym_template_type, - STATE(2461), 1, + STATE(2856), 1, sym_enumerator_list, - STATE(5168), 1, + STATE(5397), 1, sym__scope_resolution, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - STATE(2205), 2, + STATE(4516), 2, sym__class_name, sym_qualified_type_identifier, - [176210] = 5, + [200079] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7181), 1, + ACTIONS(7413), 1, anon_sym_LPAREN2, - ACTIONS(7679), 1, + ACTIONS(7927), 1, anon_sym_LBRACK, - STATE(3847), 1, + STATE(4195), 1, sym_parameter_list, - ACTIONS(7726), 7, + ACTIONS(7939), 7, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, @@ -347688,107 +380798,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_try, anon_sym_requires, - [176232] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4270), 1, - anon_sym_LBRACK, - ACTIONS(7734), 1, - anon_sym_AMP_AMP, - ACTIONS(7740), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4272), 7, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_try, - anon_sym_requires, - [176254] = 10, + [200101] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7181), 1, + ACTIONS(7413), 1, anon_sym_LPAREN2, - ACTIONS(7199), 1, + ACTIONS(7458), 1, anon_sym_try, - ACTIONS(7244), 1, + ACTIONS(7514), 1, anon_sym_LBRACK, - ACTIONS(7438), 1, + ACTIONS(7706), 1, anon_sym_LBRACE, - STATE(1811), 1, - sym_compound_statement, - STATE(1819), 1, + STATE(2240), 1, sym_try_statement, - STATE(3509), 1, + STATE(2306), 1, + sym_compound_statement, + STATE(4108), 1, sym_parameter_list, - STATE(4794), 2, + STATE(5035), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [176286] = 10, + [200133] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3377), 1, + ACTIONS(6609), 1, anon_sym_COLON_COLON, - ACTIONS(5506), 1, + ACTIONS(7031), 1, anon_sym_LBRACE, - ACTIONS(6947), 1, + ACTIONS(7093), 1, sym_identifier, - STATE(2635), 1, + STATE(2349), 1, sym_template_type, - STATE(3195), 1, + STATE(2856), 1, sym_enumerator_list, - STATE(5144), 1, + STATE(5374), 1, sym__scope_resolution, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - STATE(3138), 2, + STATE(3438), 2, sym__class_name, sym_qualified_type_identifier, - [176318] = 3, + [200165] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7744), 1, - anon_sym_LBRACK, - ACTIONS(7742), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, + ACTIONS(7413), 1, + anon_sym_LPAREN2, + ACTIONS(7423), 1, anon_sym_try, - [176336] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7748), 1, + ACTIONS(7514), 1, anon_sym_LBRACK, - ACTIONS(7746), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, + ACTIONS(7720), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [176354] = 5, + STATE(2129), 1, + sym_try_statement, + STATE(2133), 1, + sym_compound_statement, + STATE(4108), 1, + sym_parameter_list, + STATE(5035), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [200197] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7181), 1, + ACTIONS(7413), 1, anon_sym_LPAREN2, - ACTIONS(7679), 1, + ACTIONS(7927), 1, anon_sym_LBRACK, - STATE(3847), 1, + STATE(4195), 1, sym_parameter_list, - ACTIONS(7706), 7, + ACTIONS(7941), 7, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, @@ -347796,149 +380881,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_try, anon_sym_requires, - [176376] = 3, + [200219] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7683), 1, + ACTIONS(4985), 1, anon_sym_LBRACK, - ACTIONS(7681), 9, - anon_sym_COMMA, + ACTIONS(8004), 1, + anon_sym_AMP_AMP, + ACTIONS(4983), 8, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, anon_sym_try, - [176394] = 5, + anon_sym_requires, + [200239] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7181), 1, - anon_sym_LPAREN2, - ACTIONS(7679), 1, + ACTIONS(8008), 1, anon_sym_LBRACK, - STATE(3847), 1, - sym_parameter_list, - ACTIONS(7702), 7, + ACTIONS(8006), 9, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_COLON, anon_sym_try, - anon_sym_requires, - [176416] = 10, + [200257] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2434), 1, + anon_sym_COLON_COLON, + ACTIONS(5731), 1, + anon_sym_LBRACE, + ACTIONS(7187), 1, + sym_identifier, + STATE(3262), 1, + sym_template_type, + STATE(3445), 1, + sym_enumerator_list, + STATE(5394), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + STATE(3977), 2, + sym__class_name, + sym_qualified_type_identifier, + [200289] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3930), 1, + ACTIONS(566), 1, + anon_sym_LBRACE, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7181), 1, + ACTIONS(7413), 1, anon_sym_LPAREN2, - ACTIONS(7222), 1, - anon_sym_try, - ACTIONS(7244), 1, + ACTIONS(7514), 1, anon_sym_LBRACK, - ACTIONS(7446), 1, - anon_sym_LBRACE, - STATE(1974), 1, + ACTIONS(7558), 1, + anon_sym_try, + STATE(1027), 1, sym_compound_statement, - STATE(1975), 1, + STATE(1028), 1, sym_try_statement, - STATE(3509), 1, + STATE(4108), 1, sym_parameter_list, - STATE(4794), 2, + STATE(5035), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [176448] = 5, + [200321] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7181), 1, + ACTIONS(4255), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7413), 1, anon_sym_LPAREN2, - ACTIONS(7679), 1, + ACTIONS(7514), 1, anon_sym_LBRACK, - STATE(3847), 1, + STATE(4052), 1, sym_parameter_list, - ACTIONS(7700), 7, + STATE(5035), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(7929), 4, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, + anon_sym_RPAREN, anon_sym_EQ, - anon_sym_try, - anon_sym_requires, - [176470] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(5856), 1, - anon_sym_COLON_COLON, - ACTIONS(6791), 1, - anon_sym_LBRACE, - ACTIONS(6845), 1, - sym_identifier, - STATE(2480), 1, - sym_template_type, - STATE(2884), 1, - sym_enumerator_list, - STATE(5154), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - STATE(3296), 2, - sym__class_name, - sym_qualified_type_identifier, - [176502] = 10, + anon_sym_GT2, + [200347] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(5772), 1, + ACTIONS(5562), 1, anon_sym_COLON_COLON, - ACTIONS(6811), 1, + ACTIONS(7035), 1, anon_sym_LBRACE, - ACTIONS(6825), 1, + ACTIONS(7462), 1, sym_identifier, - STATE(2187), 1, + STATE(2906), 1, sym_template_type, - STATE(2354), 1, + STATE(3149), 1, sym_enumerator_list, - STATE(5152), 1, + STATE(5425), 1, sym__scope_resolution, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - STATE(3217), 2, + STATE(4420), 2, sym__class_name, sym_qualified_type_identifier, - [176534] = 10, + [200379] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(5345), 1, + ACTIONS(4731), 1, anon_sym_COLON_COLON, - ACTIONS(5506), 1, + ACTIONS(7175), 1, anon_sym_LBRACE, - ACTIONS(6993), 1, + ACTIONS(7211), 1, sym_identifier, - STATE(2635), 1, + STATE(3262), 1, sym_template_type, - STATE(3195), 1, + STATE(4050), 1, sym_enumerator_list, - STATE(5088), 1, + STATE(5352), 1, sym__scope_resolution, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - STATE(3518), 2, + STATE(3770), 2, sym__class_name, sym_qualified_type_identifier, - [176566] = 3, + [200411] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4966), 1, + ACTIONS(8012), 1, anon_sym_LBRACK, - ACTIONS(4964), 9, + ACTIONS(8010), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -347948,109 +381034,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COLON, anon_sym_try, - [176584] = 10, + [200429] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(5772), 1, - anon_sym_COLON_COLON, - ACTIONS(6811), 1, + ACTIONS(536), 1, anon_sym_LBRACE, - ACTIONS(6825), 1, - sym_identifier, - STATE(2187), 1, - sym_template_type, - STATE(2354), 1, - sym_enumerator_list, - STATE(5152), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - STATE(3421), 2, - sym__class_name, - sym_qualified_type_identifier, - [176616] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7181), 1, + ACTIONS(4255), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7413), 1, anon_sym_LPAREN2, - ACTIONS(7679), 1, + ACTIONS(7514), 1, anon_sym_LBRACK, - STATE(3847), 1, + ACTIONS(7526), 1, + anon_sym_try, + STATE(926), 1, + sym_try_statement, + STATE(928), 1, + sym_compound_statement, + STATE(4108), 1, sym_parameter_list, - ACTIONS(7677), 7, + STATE(5035), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [200461] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7988), 1, + anon_sym_LBRACK, + ACTIONS(7986), 9, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_COLON, anon_sym_try, - anon_sym_requires, - [176638] = 7, + [200479] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5506), 1, - anon_sym_LBRACE, - ACTIONS(7732), 1, - anon_sym_COLON, - STATE(3148), 1, - sym__enum_base_clause, - STATE(3149), 1, - sym_enumerator_list, - ACTIONS(4348), 2, + ACTIONS(7413), 1, anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(4350), 4, - anon_sym___based, - sym_identifier, - sym_auto, - anon_sym_decltype, - [176664] = 10, + ACTIONS(7927), 1, + anon_sym_LBRACK, + STATE(4195), 1, + sym_parameter_list, + ACTIONS(7951), 7, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + anon_sym_requires, + [200501] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(5200), 1, + ACTIONS(6673), 1, anon_sym_COLON_COLON, - ACTIONS(6811), 1, - anon_sym_LBRACE, - ACTIONS(6957), 1, + ACTIONS(7041), 1, sym_identifier, - STATE(2187), 1, + ACTIONS(7802), 1, + anon_sym_LBRACE, + STATE(1875), 1, sym_template_type, - STATE(2354), 1, + STATE(2112), 1, sym_enumerator_list, - STATE(5137), 1, + STATE(5448), 1, sym__scope_resolution, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - STATE(4217), 2, + STATE(2484), 2, sym__class_name, sym_qualified_type_identifier, - [176696] = 5, + [200533] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5514), 1, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7633), 1, + ACTIONS(7413), 1, + anon_sym_LPAREN2, + ACTIONS(7514), 1, anon_sym_LBRACK, - STATE(4816), 2, + ACTIONS(7532), 1, + anon_sym_try, + STATE(945), 1, + sym_compound_statement, + STATE(946), 1, + sym_try_statement, + STATE(4108), 1, + sym_parameter_list, + STATE(5035), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(7631), 6, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - [176718] = 3, + [200565] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5744), 1, + ACTIONS(6565), 1, anon_sym_LBRACK, - ACTIONS(5742), 9, + ACTIONS(6563), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -348060,139 +381147,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COLON, anon_sym_try, - [176736] = 10, + [200583] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(251), 1, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(3765), 1, + anon_sym_COLON_COLON, + ACTIONS(5731), 1, anon_sym_LBRACE, - ACTIONS(3930), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7181), 1, - anon_sym_LPAREN2, - ACTIONS(7244), 1, - anon_sym_LBRACK, - ACTIONS(7248), 1, - anon_sym_try, - STATE(515), 1, - sym_try_statement, - STATE(517), 1, - sym_compound_statement, - STATE(3509), 1, - sym_parameter_list, - STATE(4794), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [176768] = 10, + ACTIONS(7211), 1, + sym_identifier, + STATE(3262), 1, + sym_template_type, + STATE(3445), 1, + sym_enumerator_list, + STATE(5354), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + STATE(3525), 2, + sym__class_name, + sym_qualified_type_identifier, + [200615] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(536), 1, + ACTIONS(5731), 1, anon_sym_LBRACE, - ACTIONS(3930), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7181), 1, + ACTIONS(8014), 1, + anon_sym_COLON, + STATE(3448), 1, + sym_enumerator_list, + STATE(3449), 1, + sym__enum_base_clause, + ACTIONS(4233), 2, anon_sym_LPAREN2, - ACTIONS(7244), 1, + anon_sym_STAR, + ACTIONS(4235), 4, + anon_sym___based, + sym_identifier, + sym_auto, + anon_sym_decltype, + [200641] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8018), 1, anon_sym_LBRACK, - ACTIONS(7286), 1, + ACTIONS(8016), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, anon_sym_try, - STATE(933), 1, - sym_try_statement, - STATE(947), 1, - sym_compound_statement, - STATE(3509), 1, - sym_parameter_list, - STATE(4794), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [176800] = 10, + [200659] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(4060), 1, + ACTIONS(6595), 1, anon_sym_COLON_COLON, - ACTIONS(6899), 1, + ACTIONS(7035), 1, anon_sym_LBRACE, - ACTIONS(6947), 1, + ACTIONS(7083), 1, sym_identifier, - STATE(2635), 1, + STATE(2906), 1, sym_template_type, - STATE(3357), 1, + STATE(3149), 1, sym_enumerator_list, - STATE(5072), 1, + STATE(5386), 1, sym__scope_resolution, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - STATE(3287), 2, + STATE(3355), 2, sym__class_name, sym_qualified_type_identifier, - [176832] = 10, + [200691] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4255), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7413), 1, + anon_sym_LPAREN2, + ACTIONS(7514), 1, + anon_sym_LBRACK, + STATE(4052), 1, + sym_parameter_list, + STATE(5035), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(7965), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_GT2, + [200717] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(4060), 1, + ACTIONS(5568), 1, anon_sym_COLON_COLON, - ACTIONS(5506), 1, - anon_sym_LBRACE, - ACTIONS(6947), 1, + ACTIONS(7313), 1, sym_identifier, - STATE(2635), 1, + ACTIONS(7864), 1, + anon_sym_LBRACE, + STATE(4380), 1, sym_template_type, - STATE(3195), 1, + STATE(4466), 1, sym_enumerator_list, - STATE(5072), 1, + STATE(5387), 1, sym__scope_resolution, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - STATE(4127), 2, + STATE(4421), 2, sym__class_name, sym_qualified_type_identifier, - [176864] = 5, + [200749] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7181), 1, - anon_sym_LPAREN2, - ACTIONS(7679), 1, + ACTIONS(8022), 1, anon_sym_LBRACK, - STATE(3847), 1, - sym_parameter_list, - ACTIONS(7694), 7, + ACTIONS(8020), 9, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_COLON, anon_sym_try, - anon_sym_requires, - [176886] = 10, + [200767] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3930), 1, + ACTIONS(251), 1, + anon_sym_LBRACE, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7181), 1, + ACTIONS(7413), 1, anon_sym_LPAREN2, - ACTIONS(7191), 1, - anon_sym_try, - ACTIONS(7228), 1, - anon_sym_LBRACE, - ACTIONS(7244), 1, + ACTIONS(7514), 1, anon_sym_LBRACK, - STATE(1906), 1, - sym_try_statement, - STATE(2025), 1, + ACTIONS(7518), 1, + anon_sym_try, + STATE(522), 1, sym_compound_statement, - STATE(3509), 1, + STATE(523), 1, + sym_try_statement, + STATE(4108), 1, sym_parameter_list, - STATE(4794), 2, + STATE(5035), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [176918] = 3, + [200799] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7752), 1, + ACTIONS(8026), 1, anon_sym_LBRACK, - ACTIONS(7750), 9, + ACTIONS(8024), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -348202,616 +381318,692 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COLON, anon_sym_try, - [176936] = 10, + [200817] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(5337), 1, + ACTIONS(6573), 1, anon_sym_COLON_COLON, - ACTIONS(6791), 1, - anon_sym_LBRACE, - ACTIONS(7149), 1, + ACTIONS(7063), 1, sym_identifier, - STATE(2480), 1, + ACTIONS(7917), 1, + anon_sym_LBRACE, + STATE(1893), 1, sym_template_type, - STATE(2884), 1, + STATE(2394), 1, sym_enumerator_list, - STATE(5169), 1, + STATE(5441), 1, sym__scope_resolution, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - STATE(4173), 2, + STATE(1966), 2, sym__class_name, sym_qualified_type_identifier, - [176968] = 5, + [200849] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7181), 1, - anon_sym_LPAREN2, - ACTIONS(7679), 1, + ACTIONS(8030), 1, anon_sym_LBRACK, - STATE(3847), 1, - sym_parameter_list, - ACTIONS(7724), 7, + ACTIONS(8028), 9, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_COLON, anon_sym_try, - anon_sym_requires, - [176990] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3930), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7181), 1, - anon_sym_LPAREN2, - ACTIONS(7244), 1, - anon_sym_LBRACK, - STATE(3387), 1, - sym_parameter_list, - STATE(4794), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(7651), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_GT2, - [177016] = 10, + [200867] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(5345), 1, + ACTIONS(5654), 1, anon_sym_COLON_COLON, - ACTIONS(6899), 1, + ACTIONS(7175), 1, anon_sym_LBRACE, - ACTIONS(6993), 1, + ACTIONS(7187), 1, sym_identifier, - STATE(2635), 1, + STATE(3262), 1, sym_template_type, - STATE(3357), 1, + STATE(4050), 1, sym_enumerator_list, - STATE(5088), 1, + STATE(5416), 1, sym__scope_resolution, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - STATE(4195), 2, + STATE(4438), 2, sym__class_name, sym_qualified_type_identifier, - [177048] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3930), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7181), 1, - anon_sym_LPAREN2, - ACTIONS(7244), 1, - anon_sym_LBRACK, - STATE(3387), 1, - sym_parameter_list, - STATE(4794), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(7675), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_GT2, - [177074] = 10, + [200899] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(5345), 1, + ACTIONS(6651), 1, anon_sym_COLON_COLON, - ACTIONS(5506), 1, - anon_sym_LBRACE, - ACTIONS(6993), 1, + ACTIONS(7073), 1, sym_identifier, - STATE(2635), 1, + ACTIONS(7840), 1, + anon_sym_LBRACE, + STATE(2062), 1, sym_template_type, - STATE(3195), 1, + STATE(2588), 1, sym_enumerator_list, - STATE(5088), 1, + STATE(5439), 1, sym__scope_resolution, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - STATE(4175), 2, + STATE(2195), 2, sym__class_name, sym_qualified_type_identifier, - [177106] = 10, + [200931] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(5834), 1, + ACTIONS(5654), 1, anon_sym_COLON_COLON, - ACTIONS(6835), 1, - sym_identifier, - ACTIONS(7546), 1, + ACTIONS(5731), 1, anon_sym_LBRACE, - STATE(2267), 1, + ACTIONS(7187), 1, + sym_identifier, + STATE(3262), 1, sym_template_type, - STATE(2763), 1, + STATE(3445), 1, sym_enumerator_list, - STATE(5092), 1, + STATE(5416), 1, sym__scope_resolution, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - STATE(2314), 2, + STATE(4430), 2, sym__class_name, sym_qualified_type_identifier, - [177138] = 3, + [200963] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7756), 1, - anon_sym_LBRACK, - ACTIONS(7754), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [177156] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7760), 1, - anon_sym_LBRACK, - ACTIONS(7758), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [177174] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(4060), 1, + ACTIONS(6623), 1, anon_sym_COLON_COLON, - ACTIONS(5506), 1, - anon_sym_LBRACE, - ACTIONS(6947), 1, + ACTIONS(7103), 1, sym_identifier, - STATE(2635), 1, + ACTIONS(7882), 1, + anon_sym_LBRACE, + STATE(2170), 1, sym_template_type, - STATE(3195), 1, + STATE(2870), 1, sym_enumerator_list, - STATE(5072), 1, + STATE(5412), 1, sym__scope_resolution, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - STATE(4105), 2, + STATE(2210), 2, sym__class_name, sym_qualified_type_identifier, - [177206] = 10, + [200995] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4255), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7413), 1, + anon_sym_LPAREN2, + ACTIONS(7472), 1, + anon_sym_try, + ACTIONS(7496), 1, + anon_sym_LBRACE, + ACTIONS(7514), 1, + anon_sym_LBRACK, + STATE(2219), 1, + sym_compound_statement, + STATE(2220), 1, + sym_try_statement, + STATE(4108), 1, + sym_parameter_list, + STATE(5035), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [201027] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(5794), 1, + ACTIONS(6609), 1, anon_sym_COLON_COLON, - ACTIONS(6855), 1, - sym_identifier, - ACTIONS(7528), 1, + ACTIONS(7031), 1, anon_sym_LBRACE, - STATE(2147), 1, + ACTIONS(7093), 1, + sym_identifier, + STATE(2349), 1, sym_template_type, - STATE(2265), 1, + STATE(2856), 1, sym_enumerator_list, - STATE(5120), 1, + STATE(5374), 1, sym__scope_resolution, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - STATE(2177), 2, + STATE(3240), 2, sym__class_name, sym_qualified_type_identifier, - [177238] = 10, + [201059] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(5506), 1, + ACTIONS(4731), 1, + anon_sym_COLON_COLON, + ACTIONS(5731), 1, anon_sym_LBRACE, - ACTIONS(6993), 1, + ACTIONS(7211), 1, sym_identifier, - ACTIONS(7205), 1, - anon_sym_COLON_COLON, - STATE(2635), 1, + STATE(3262), 1, sym_template_type, - STATE(3195), 1, + STATE(3445), 1, sym_enumerator_list, - STATE(5164), 1, + STATE(5352), 1, sym__scope_resolution, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - STATE(4903), 2, + STATE(4371), 2, sym__class_name, sym_qualified_type_identifier, - [177270] = 7, + [201091] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3930), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7181), 1, - anon_sym_LPAREN2, - ACTIONS(7244), 1, + ACTIONS(4884), 1, anon_sym_LBRACK, - STATE(3387), 1, - sym_parameter_list, - STATE(4794), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(7692), 4, + ACTIONS(4882), 9, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_EQ, - anon_sym_GT2, - [177296] = 10, + anon_sym_COLON, + anon_sym_try, + [201109] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(5200), 1, + ACTIONS(6673), 1, anon_sym_COLON_COLON, - ACTIONS(6811), 1, - anon_sym_LBRACE, - ACTIONS(6957), 1, + ACTIONS(7041), 1, sym_identifier, - STATE(2187), 1, + ACTIONS(7802), 1, + anon_sym_LBRACE, + STATE(1875), 1, sym_template_type, - STATE(2354), 1, + STATE(2112), 1, sym_enumerator_list, - STATE(5137), 1, + STATE(5448), 1, sym__scope_resolution, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - STATE(4167), 2, + STATE(1895), 2, sym__class_name, sym_qualified_type_identifier, - [177328] = 10, + [201141] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5731), 1, + anon_sym_LBRACE, + ACTIONS(8014), 1, + anon_sym_COLON, + STATE(3498), 1, + sym__enum_base_clause, + STATE(3499), 1, + sym_enumerator_list, + ACTIONS(4151), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(4153), 4, + anon_sym___based, + sym_identifier, + sym_auto, + anon_sym_decltype, + [201167] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8034), 1, + anon_sym_LBRACK, + ACTIONS(8032), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_try, + [201185] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(5281), 1, + ACTIONS(5522), 1, anon_sym_COLON_COLON, - ACTIONS(7115), 1, - sym_identifier, - ACTIONS(7554), 1, + ACTIONS(7031), 1, anon_sym_LBRACE, - STATE(4117), 1, + ACTIONS(7203), 1, + sym_identifier, + STATE(2349), 1, sym_template_type, - STATE(4206), 1, + STATE(2856), 1, sym_enumerator_list, - STATE(5084), 1, + STATE(5397), 1, sym__scope_resolution, - STATE(6663), 1, + STATE(7236), 1, sym_dependent_type_identifier, - STATE(4154), 2, + STATE(4409), 2, sym__class_name, sym_qualified_type_identifier, - [177360] = 3, + [201217] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7764), 1, + ACTIONS(7413), 1, + anon_sym_LPAREN2, + ACTIONS(7927), 1, anon_sym_LBRACK, - ACTIONS(7762), 9, + STATE(4195), 1, + sym_parameter_list, + ACTIONS(7979), 7, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, anon_sym_try, - [177378] = 3, + anon_sym_requires, + [201239] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3782), 1, + ACTIONS(7413), 1, + anon_sym_LPAREN2, + ACTIONS(7927), 1, anon_sym_LBRACK, - ACTIONS(3784), 8, + STATE(4195), 1, + sym_parameter_list, + ACTIONS(7925), 7, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, anon_sym_try, - [177395] = 5, + anon_sym_requires, + [201261] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7181), 1, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(5654), 1, + anon_sym_COLON_COLON, + ACTIONS(5731), 1, + anon_sym_LBRACE, + ACTIONS(7187), 1, + sym_identifier, + STATE(3262), 1, + sym_template_type, + STATE(3445), 1, + sym_enumerator_list, + STATE(5416), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + STATE(4113), 2, + sym__class_name, + sym_qualified_type_identifier, + [201293] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7413), 1, anon_sym_LPAREN2, - ACTIONS(7679), 1, + ACTIONS(7927), 1, anon_sym_LBRACK, - STATE(3981), 1, + STATE(4249), 1, sym_parameter_list, - ACTIONS(7706), 6, + ACTIONS(7941), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LBRACK_LBRACK, anon_sym_EQ, anon_sym_GT2, anon_sym_requires, - [177416] = 9, + [201314] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7181), 1, + ACTIONS(7413), 1, anon_sym_LPAREN2, - ACTIONS(7766), 1, + ACTIONS(8036), 1, anon_sym_COMMA, - ACTIONS(7768), 1, + ACTIONS(8038), 1, anon_sym_SEMI, - ACTIONS(7770), 1, + ACTIONS(8040), 1, anon_sym_LBRACK, - STATE(5195), 1, + STATE(5449), 1, sym_parameter_list, - STATE(5713), 1, + STATE(6027), 1, aux_sym_type_definition_repeat2, - STATE(5056), 2, + STATE(5307), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [177445] = 7, + [201343] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8042), 1, + sym_identifier, + ACTIONS(8046), 1, + sym_system_lib_string, + STATE(7173), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(8044), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [201364] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7181), 1, + ACTIONS(7413), 1, anon_sym_LPAREN2, - ACTIONS(7770), 1, + ACTIONS(8036), 1, + anon_sym_COMMA, + ACTIONS(8040), 1, anon_sym_LBRACK, - STATE(5195), 1, + ACTIONS(8048), 1, + anon_sym_SEMI, + STATE(5449), 1, sym_parameter_list, - STATE(5056), 2, + STATE(5874), 1, + aux_sym_type_definition_repeat2, + STATE(5307), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(7772), 3, - anon_sym_COMMA, + [201393] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6695), 1, + anon_sym_requires, + ACTIONS(7778), 1, + anon_sym_LBRACK, + STATE(5014), 1, + sym_requires_clause, + ACTIONS(7776), 6, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - [177470] = 5, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + [201414] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7181), 1, - anon_sym_LPAREN2, - ACTIONS(7679), 1, + ACTIONS(6695), 1, + anon_sym_requires, + ACTIONS(7826), 1, anon_sym_LBRACK, - STATE(3981), 1, - sym_parameter_list, - ACTIONS(7726), 6, - anon_sym_COMMA, + STATE(5017), 1, + sym_requires_clause, + ACTIONS(7824), 6, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_requires, - [177491] = 9, + anon_sym_LBRACE, + anon_sym_try, + [201435] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3930), 1, + ACTIONS(6695), 1, + anon_sym_requires, + ACTIONS(6799), 1, + anon_sym_LBRACK, + STATE(5023), 1, + sym_requires_clause, + ACTIONS(6797), 6, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(7181), 1, + anon_sym_LBRACE, + anon_sym_try, + [201456] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8050), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8052), 1, + anon_sym_AMP_AMP, + ACTIONS(5025), 7, anon_sym_LPAREN2, - ACTIONS(7766), 1, - anon_sym_COMMA, - ACTIONS(7770), 1, - anon_sym_LBRACK, - ACTIONS(7774), 1, anon_sym_SEMI, - STATE(5195), 1, - sym_parameter_list, - STATE(5682), 1, - aux_sym_type_definition_repeat2, - STATE(5056), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [177520] = 8, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_try, + anon_sym_requires, + [201475] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3930), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7181), 1, + ACTIONS(4215), 9, anon_sym_LPAREN2, - ACTIONS(7244), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(7778), 1, anon_sym_EQ, - STATE(3387), 1, - sym_parameter_list, - ACTIONS(7776), 2, - anon_sym_COMMA, + anon_sym_try, + anon_sym_requires, + [201490] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6695), 1, + anon_sym_requires, + ACTIONS(6795), 1, + anon_sym_LBRACK, + STATE(5045), 1, + sym_requires_clause, + ACTIONS(6793), 6, anon_sym_RPAREN, - STATE(4794), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [177547] = 5, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + [201511] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7780), 1, - sym_identifier, - ACTIONS(7784), 1, - sym_system_lib_string, - STATE(6780), 2, - sym_preproc_call_expression, + ACTIONS(5394), 1, + sym_raw_string_literal, + ACTIONS(8054), 1, + anon_sym_RPAREN, + STATE(3102), 2, sym_string_literal, - ACTIONS(7782), 5, + aux_sym_concatenated_string_repeat1, + ACTIONS(101), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [177568] = 4, + [201532] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7786), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7788), 1, - anon_sym_AMP_AMP, - ACTIONS(4272), 7, - anon_sym_COMMA, + ACTIONS(5394), 1, + sym_raw_string_literal, + ACTIONS(8056), 1, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_requires, - [177587] = 5, + STATE(3102), 2, + sym_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(101), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [201553] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7790), 1, + ACTIONS(8058), 1, sym_identifier, - ACTIONS(7792), 1, + ACTIONS(8060), 1, sym_system_lib_string, - STATE(6587), 2, + STATE(6932), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(7782), 5, + ACTIONS(8044), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [177608] = 9, + [201574] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1465), 1, - anon_sym_LBRACE, - ACTIONS(3930), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7181), 1, - anon_sym_LPAREN2, - ACTIONS(7244), 1, + ACTIONS(6529), 1, anon_sym_LBRACK, - ACTIONS(7794), 1, - anon_sym_EQ, - STATE(3293), 1, - sym_parameter_list, - STATE(6724), 1, - sym_initializer_list, - STATE(4794), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [177637] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2289), 9, + ACTIONS(6695), 1, + anon_sym_requires, + STATE(5077), 1, + sym_requires_clause, + ACTIONS(6527), 6, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, anon_sym_try, - anon_sym_requires, - [177652] = 5, + [201595] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5786), 1, - anon_sym_requires, - ACTIONS(6204), 1, - anon_sym_LBRACK, - STATE(4782), 1, - sym_requires_clause, - ACTIONS(6202), 6, + ACTIONS(5394), 1, + sym_raw_string_literal, + ACTIONS(8062), 1, anon_sym_RPAREN, + STATE(3102), 2, + sym_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(101), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [201616] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4223), 9, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_try, - [177673] = 5, + anon_sym_requires, + [201631] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7181), 1, + ACTIONS(7413), 1, anon_sym_LPAREN2, - ACTIONS(7679), 1, + ACTIONS(7927), 1, anon_sym_LBRACK, - STATE(3981), 1, + STATE(4249), 1, sym_parameter_list, - ACTIONS(7702), 6, + ACTIONS(7979), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LBRACK_LBRACK, anon_sym_EQ, anon_sym_GT2, anon_sym_requires, - [177694] = 7, + [201652] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7181), 1, + ACTIONS(7413), 1, anon_sym_LPAREN2, - ACTIONS(7770), 1, + ACTIONS(8036), 1, + anon_sym_COMMA, + ACTIONS(8040), 1, anon_sym_LBRACK, - STATE(5195), 1, + ACTIONS(8064), 1, + anon_sym_SEMI, + STATE(5449), 1, sym_parameter_list, - STATE(5056), 2, + STATE(5823), 1, + aux_sym_type_definition_repeat2, + STATE(5307), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(7796), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - [177719] = 9, + [201681] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7181), 1, + ACTIONS(7413), 1, anon_sym_LPAREN2, - ACTIONS(7766), 1, + ACTIONS(8036), 1, anon_sym_COMMA, - ACTIONS(7770), 1, + ACTIONS(8040), 1, anon_sym_LBRACK, - ACTIONS(7798), 1, + ACTIONS(8066), 1, anon_sym_SEMI, - STATE(5195), 1, + STATE(5449), 1, sym_parameter_list, - STATE(5770), 1, + STATE(5960), 1, aux_sym_type_definition_repeat2, - STATE(5056), 2, + STATE(5307), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [177748] = 5, + [201710] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5786), 1, + ACTIONS(4223), 9, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_try, anon_sym_requires, - ACTIONS(7516), 1, + [201725] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6695), 1, + anon_sym_requires, + ACTIONS(7830), 1, anon_sym_LBRACK, - STATE(4780), 1, + STATE(5112), 1, sym_requires_clause, - ACTIONS(7514), 6, + ACTIONS(7828), 6, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_try, - [177769] = 2, + [201746] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2304), 9, + ACTIONS(4223), 9, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -348821,126 +382013,195 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_try, anon_sym_requires, - [177784] = 5, + [201761] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5728), 1, + ACTIONS(4175), 9, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(5786), 1, + anon_sym_EQ, + anon_sym_try, anon_sym_requires, - STATE(4835), 1, - sym_requires_clause, - ACTIONS(5726), 6, - anon_sym_RPAREN, + [201776] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4163), 9, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_try, - [177805] = 5, + anon_sym_requires, + [201791] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7181), 1, + ACTIONS(4149), 9, anon_sym_LPAREN2, - ACTIONS(7679), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LBRACK, - STATE(3981), 1, - sym_parameter_list, - ACTIONS(7700), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_try, + anon_sym_requires, + [201806] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4167), 9, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_try, + anon_sym_requires, + [201821] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(7413), 1, + anon_sym_LPAREN2, + ACTIONS(7514), 1, + anon_sym_LBRACK, + ACTIONS(8070), 1, anon_sym_EQ, + STATE(4052), 1, + sym_parameter_list, + ACTIONS(8068), 2, + anon_sym_COMMA, anon_sym_GT2, - anon_sym_requires, - [177826] = 5, + STATE(5035), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [201848] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7181), 1, + ACTIONS(4255), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7413), 1, anon_sym_LPAREN2, - ACTIONS(7679), 1, + ACTIONS(8040), 1, anon_sym_LBRACK, - STATE(3981), 1, + STATE(5449), 1, sym_parameter_list, - ACTIONS(7677), 6, + STATE(5307), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8072), 3, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_SEMI, + [201873] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_requires, - [177847] = 9, + ACTIONS(7413), 1, + anon_sym_LPAREN2, + ACTIONS(8040), 1, + anon_sym_LBRACK, + STATE(5449), 1, + sym_parameter_list, + STATE(5307), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8074), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + [201898] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7181), 1, + ACTIONS(7413), 1, anon_sym_LPAREN2, - ACTIONS(7766), 1, + ACTIONS(8036), 1, anon_sym_COMMA, - ACTIONS(7770), 1, + ACTIONS(8040), 1, anon_sym_LBRACK, - ACTIONS(7800), 1, + ACTIONS(8076), 1, anon_sym_SEMI, - STATE(5195), 1, + STATE(5449), 1, sym_parameter_list, - STATE(5603), 1, + STATE(5892), 1, aux_sym_type_definition_repeat2, - STATE(5056), 2, + STATE(5307), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [177876] = 5, + [201927] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7181), 1, - anon_sym_LPAREN2, - ACTIONS(7679), 1, + ACTIONS(6015), 1, anon_sym_LBRACK, - STATE(3981), 1, - sym_parameter_list, - ACTIONS(7694), 6, - anon_sym_COMMA, + ACTIONS(6695), 1, + anon_sym_requires, + STATE(5135), 1, + sym_requires_clause, + ACTIONS(6007), 6, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_requires, - [177897] = 5, + anon_sym_LBRACE, + anon_sym_try, + [201948] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7802), 1, - sym_identifier, - ACTIONS(7804), 1, - sym_system_lib_string, - STATE(6495), 2, - sym_preproc_call_expression, - sym_string_literal, - ACTIONS(7782), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [177918] = 5, + ACTIONS(4143), 9, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_try, + anon_sym_requires, + [201963] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7181), 1, + ACTIONS(4239), 9, anon_sym_LPAREN2, - ACTIONS(7679), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LBRACK, - STATE(3981), 1, - sym_parameter_list, - ACTIONS(7724), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK_LBRACK, anon_sym_EQ, - anon_sym_GT2, + anon_sym_try, anon_sym_requires, - [177939] = 2, + [201978] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5394), 1, + sym_raw_string_literal, + ACTIONS(8078), 1, + anon_sym_RPAREN, + STATE(3102), 2, + sym_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(101), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [201999] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3876), 9, + ACTIONS(4187), 9, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -348950,67 +382211,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_try, anon_sym_requires, - [177954] = 9, + [202014] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7181), 1, + ACTIONS(7413), 1, anon_sym_LPAREN2, - ACTIONS(7766), 1, + ACTIONS(8036), 1, anon_sym_COMMA, - ACTIONS(7770), 1, + ACTIONS(8040), 1, anon_sym_LBRACK, - ACTIONS(7806), 1, + ACTIONS(8080), 1, anon_sym_SEMI, - STATE(5195), 1, + STATE(5449), 1, sym_parameter_list, - STATE(5718), 1, + STATE(5996), 1, aux_sym_type_definition_repeat2, - STATE(5056), 2, + STATE(5307), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [177983] = 9, + [202043] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5394), 1, + sym_raw_string_literal, + ACTIONS(8082), 1, + anon_sym_RPAREN, + STATE(3102), 2, + sym_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(101), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [202064] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7181), 1, + ACTIONS(7413), 1, anon_sym_LPAREN2, - ACTIONS(7766), 1, - anon_sym_COMMA, - ACTIONS(7770), 1, + ACTIONS(8040), 1, anon_sym_LBRACK, - ACTIONS(7808), 1, - anon_sym_SEMI, - STATE(5195), 1, + STATE(5449), 1, sym_parameter_list, - STATE(5628), 1, - aux_sym_type_definition_repeat2, - STATE(5056), 2, + STATE(5307), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [178012] = 2, + ACTIONS(8084), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + [202089] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3904), 9, + ACTIONS(4255), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7413), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(8036), 1, + anon_sym_COMMA, + ACTIONS(8040), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_try, - anon_sym_requires, - [178027] = 5, + ACTIONS(8086), 1, + anon_sym_SEMI, + STATE(5449), 1, + sym_parameter_list, + STATE(6077), 1, + aux_sym_type_definition_repeat2, + STATE(5307), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [202118] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5186), 1, + ACTIONS(5394), 1, sym_raw_string_literal, - ACTIONS(7810), 1, + ACTIONS(8088), 1, anon_sym_RPAREN, - STATE(2774), 2, + STATE(3102), 2, sym_string_literal, aux_sym_concatenated_string_repeat1, ACTIONS(101), 5, @@ -349019,10 +382301,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [178048] = 2, + [202139] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3876), 9, + ACTIONS(4205), 9, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -349032,183 +382314,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_try, anon_sym_requires, - [178063] = 5, + [202154] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7812), 1, - sym_identifier, - ACTIONS(7814), 1, - sym_system_lib_string, - STATE(6656), 2, - sym_preproc_call_expression, + ACTIONS(5394), 1, + sym_raw_string_literal, + ACTIONS(8090), 1, + anon_sym_RPAREN, + STATE(3102), 2, sym_string_literal, - ACTIONS(7782), 5, + aux_sym_concatenated_string_repeat1, + ACTIONS(101), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [178084] = 6, + [202175] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, - anon_sym_COLON_COLON, - ACTIONS(5129), 1, - anon_sym_LT, - STATE(2305), 1, - sym_template_argument_list, - ACTIONS(3759), 2, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(3764), 4, - anon_sym_RPAREN, + ACTIONS(4255), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7413), 1, anon_sym_LPAREN2, + ACTIONS(8036), 1, + anon_sym_COMMA, + ACTIONS(8040), 1, + anon_sym_LBRACK, + ACTIONS(8092), 1, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - [178107] = 5, + STATE(5449), 1, + sym_parameter_list, + STATE(6059), 1, + aux_sym_type_definition_repeat2, + STATE(5307), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [202204] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5786), 1, - anon_sym_requires, - ACTIONS(6303), 1, + ACTIONS(7413), 1, + anon_sym_LPAREN2, + ACTIONS(7927), 1, anon_sym_LBRACK, - STATE(4799), 1, - sym_requires_clause, - ACTIONS(6301), 6, + STATE(4249), 1, + sym_parameter_list, + ACTIONS(7943), 6, + anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_try, - [178128] = 9, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_requires, + [202225] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7181), 1, + ACTIONS(7413), 1, anon_sym_LPAREN2, - ACTIONS(7766), 1, + ACTIONS(8036), 1, anon_sym_COMMA, - ACTIONS(7770), 1, + ACTIONS(8040), 1, anon_sym_LBRACK, - ACTIONS(7816), 1, + ACTIONS(8094), 1, anon_sym_SEMI, - STATE(5195), 1, + STATE(5449), 1, sym_parameter_list, - STATE(5737), 1, + STATE(6088), 1, aux_sym_type_definition_repeat2, - STATE(5056), 2, + STATE(5307), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [178157] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5186), 1, - sym_raw_string_literal, - ACTIONS(7818), 1, - anon_sym_RPAREN, - STATE(2774), 2, - sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(101), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [178178] = 6, + [202254] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, - anon_sym_COLON_COLON, - ACTIONS(5129), 1, - anon_sym_LT, - STATE(2305), 1, - sym_template_argument_list, - ACTIONS(5692), 2, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(3984), 4, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - [178201] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3930), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7181), 1, + ACTIONS(7413), 1, anon_sym_LPAREN2, - ACTIONS(7766), 1, + ACTIONS(8036), 1, anon_sym_COMMA, - ACTIONS(7770), 1, + ACTIONS(8040), 1, anon_sym_LBRACK, - ACTIONS(7820), 1, + ACTIONS(8096), 1, anon_sym_SEMI, - STATE(5195), 1, + STATE(5449), 1, sym_parameter_list, - STATE(5783), 1, + STATE(5966), 1, aux_sym_type_definition_repeat2, - STATE(5056), 2, + STATE(5307), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [178230] = 9, + [202283] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7181), 1, + ACTIONS(7413), 1, anon_sym_LPAREN2, - ACTIONS(7766), 1, + ACTIONS(8036), 1, anon_sym_COMMA, - ACTIONS(7770), 1, + ACTIONS(8040), 1, anon_sym_LBRACK, - ACTIONS(7822), 1, + ACTIONS(8098), 1, anon_sym_SEMI, - STATE(5195), 1, + STATE(5449), 1, sym_parameter_list, - STATE(5774), 1, + STATE(5965), 1, aux_sym_type_definition_repeat2, - STATE(5056), 2, + STATE(5307), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [178259] = 5, + [202312] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5786), 1, - anon_sym_requires, - ACTIONS(7522), 1, - anon_sym_LBRACK, - STATE(4773), 1, - sym_requires_clause, - ACTIONS(7520), 6, - anon_sym_RPAREN, + ACTIONS(4219), 9, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_try, - [178280] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7824), 1, anon_sym_PIPE_PIPE, - ACTIONS(7826), 1, anon_sym_AMP_AMP, - ACTIONS(4272), 7, - anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, anon_sym_try, anon_sym_requires, - [178299] = 2, + [202327] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3876), 9, + ACTIONS(2487), 9, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -349218,24 +382452,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_try, anon_sym_requires, - [178314] = 3, + [202342] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3778), 1, + ACTIONS(4255), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7413), 1, + anon_sym_LPAREN2, + ACTIONS(8036), 1, + anon_sym_COMMA, + ACTIONS(8040), 1, anon_sym_LBRACK, - ACTIONS(3780), 8, + ACTIONS(8100), 1, + anon_sym_SEMI, + STATE(5449), 1, + sym_parameter_list, + STATE(5922), 1, + aux_sym_type_definition_repeat2, + STATE(5307), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [202371] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8102), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8104), 1, + anon_sym_AMP_AMP, + ACTIONS(5025), 7, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_try, - [178331] = 2, + anon_sym_LBRACK, + anon_sym_requires, + [202390] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3912), 9, + ACTIONS(4171), 9, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -349245,26 +382500,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_try, anon_sym_requires, - [178346] = 3, + [202405] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3797), 1, + ACTIONS(7413), 1, + anon_sym_LPAREN2, + ACTIONS(7927), 1, anon_sym_LBRACK, - ACTIONS(3799), 8, + STATE(4249), 1, + sym_parameter_list, + ACTIONS(7939), 6, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_requires, + [202426] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2478), 9, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_COLON, anon_sym_try, - [178363] = 3, + anon_sym_requires, + [202441] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3793), 1, + ACTIONS(3493), 1, anon_sym_LBRACK, - ACTIONS(3795), 8, + ACTIONS(3495), 8, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -349273,79 +382543,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COLON, anon_sym_try, - [178380] = 2, + [202458] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3888), 9, + ACTIONS(4255), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7413), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(8036), 1, + anon_sym_COMMA, + ACTIONS(8040), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_try, - anon_sym_requires, - [178395] = 3, + ACTIONS(8106), 1, + anon_sym_SEMI, + STATE(5449), 1, + sym_parameter_list, + STATE(6113), 1, + aux_sym_type_definition_repeat2, + STATE(5307), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [202487] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7826), 1, - anon_sym_AMP_AMP, - ACTIONS(4306), 8, + ACTIONS(4255), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7413), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(8036), 1, + anon_sym_COMMA, + ACTIONS(8040), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_try, - anon_sym_requires, - [178412] = 9, + ACTIONS(8108), 1, + anon_sym_SEMI, + STATE(5449), 1, + sym_parameter_list, + STATE(6057), 1, + aux_sym_type_definition_repeat2, + STATE(5307), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [202516] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7181), 1, + ACTIONS(7413), 1, anon_sym_LPAREN2, - ACTIONS(7766), 1, + ACTIONS(8036), 1, anon_sym_COMMA, - ACTIONS(7770), 1, + ACTIONS(8040), 1, anon_sym_LBRACK, - ACTIONS(7828), 1, + ACTIONS(8110), 1, anon_sym_SEMI, - STATE(5195), 1, + STATE(5449), 1, sym_parameter_list, - STATE(5580), 1, + STATE(5826), 1, aux_sym_type_definition_repeat2, - STATE(5056), 2, + STATE(5307), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [178441] = 9, + [202545] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7830), 1, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(8112), 1, sym_identifier, - ACTIONS(7832), 1, + ACTIONS(8114), 1, anon_sym_COLON_COLON, - ACTIONS(7834), 1, - anon_sym_template, - STATE(4979), 1, + STATE(5277), 1, sym__scope_resolution, - STATE(6194), 1, + STATE(6546), 1, + sym_field_initializer, + STATE(5681), 2, + sym_template_method, sym_qualified_field_identifier, - STATE(6195), 1, - sym_dependent_field_identifier, - STATE(6196), 1, + STATE(7236), 2, + sym_template_type, + sym_dependent_type_identifier, + [202572] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(8112), 1, + sym_identifier, + ACTIONS(8114), 1, + anon_sym_COLON_COLON, + STATE(5277), 1, + sym__scope_resolution, + STATE(5855), 1, + sym_field_initializer, + STATE(5681), 2, sym_template_method, - STATE(6663), 2, + sym_qualified_field_identifier, + STATE(7236), 2, sym_template_type, sym_dependent_type_identifier, - [178470] = 3, + [202599] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3801), 1, + ACTIONS(3467), 1, anon_sym_LBRACK, - ACTIONS(3803), 8, + ACTIONS(3469), 8, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -349354,99 +382655,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COLON, anon_sym_try, - [178487] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5786), 1, - anon_sym_requires, - ACTIONS(7645), 1, - anon_sym_LBRACK, - STATE(4849), 1, - sym_requires_clause, - ACTIONS(7643), 6, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_try, - [178508] = 8, + [202616] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7181), 1, + ACTIONS(7413), 1, anon_sym_LPAREN2, - ACTIONS(7244), 1, + ACTIONS(8040), 1, anon_sym_LBRACK, - ACTIONS(7836), 1, - anon_sym_EQ, - STATE(3387), 1, + STATE(5449), 1, sym_parameter_list, - ACTIONS(7776), 2, - anon_sym_COMMA, - anon_sym_GT2, - STATE(4794), 2, + STATE(5307), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [178535] = 2, + ACTIONS(8116), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + [202641] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8118), 1, + sym_identifier, + ACTIONS(8120), 1, + sym_system_lib_string, + STATE(7177), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(8044), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [202662] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3872), 9, + ACTIONS(8124), 1, + anon_sym_AMP, + ACTIONS(8126), 2, + anon_sym_EQ, + anon_sym_DOT, + ACTIONS(8122), 6, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, + anon_sym_LT, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_try, - anon_sym_requires, - [178550] = 9, + [202681] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7181), 1, + ACTIONS(7413), 1, anon_sym_LPAREN2, - ACTIONS(7766), 1, + ACTIONS(8036), 1, anon_sym_COMMA, - ACTIONS(7770), 1, + ACTIONS(8040), 1, anon_sym_LBRACK, - ACTIONS(7838), 1, + ACTIONS(8128), 1, anon_sym_SEMI, - STATE(5195), 1, + STATE(5449), 1, sym_parameter_list, - STATE(5748), 1, + STATE(5990), 1, aux_sym_type_definition_repeat2, - STATE(5056), 2, + STATE(5307), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [178579] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(7832), 1, - anon_sym_COLON_COLON, - ACTIONS(7840), 1, - sym_identifier, - STATE(4979), 1, - sym__scope_resolution, - STATE(6107), 1, - sym_field_initializer, - STATE(5454), 2, - sym_template_method, - sym_qualified_field_identifier, - STATE(6663), 2, - sym_template_type, - sym_dependent_type_identifier, - [178606] = 3, + [202710] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3774), 1, + ACTIONS(3501), 1, anon_sym_LBRACK, - ACTIONS(3776), 8, + ACTIONS(3503), 8, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -349455,26 +382738,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COLON, anon_sym_try, - [178623] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5186), 1, - sym_raw_string_literal, - ACTIONS(7842), 1, - anon_sym_RPAREN, - STATE(2774), 2, - sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(101), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [178644] = 2, + [202727] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3920), 9, + ACTIONS(4231), 9, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -349484,52 +382751,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_try, anon_sym_requires, - [178659] = 9, + [202742] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7181), 1, + ACTIONS(7413), 1, anon_sym_LPAREN2, - ACTIONS(7766), 1, + ACTIONS(8036), 1, anon_sym_COMMA, - ACTIONS(7770), 1, + ACTIONS(8040), 1, anon_sym_LBRACK, - ACTIONS(7844), 1, + ACTIONS(8130), 1, anon_sym_SEMI, - STATE(5195), 1, + STATE(5449), 1, sym_parameter_list, - STATE(5790), 1, + STATE(6103), 1, aux_sym_type_definition_repeat2, - STATE(5056), 2, + STATE(5307), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [178688] = 9, + [202771] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3930), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7181), 1, - anon_sym_LPAREN2, - ACTIONS(7766), 1, - anon_sym_COMMA, - ACTIONS(7770), 1, + ACTIONS(3424), 1, + anon_sym_COLON_COLON, + ACTIONS(5500), 1, + anon_sym_LT, + STATE(2168), 1, + sym_template_argument_list, + ACTIONS(6525), 2, anon_sym_LBRACK, - ACTIONS(7846), 1, + anon_sym_COLON, + ACTIONS(3935), 4, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - STATE(5195), 1, - sym_parameter_list, - STATE(5763), 1, - aux_sym_type_definition_repeat2, - STATE(5056), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [178717] = 3, + anon_sym_LBRACK_LBRACK, + [202794] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8132), 1, + sym_identifier, + ACTIONS(8134), 1, + sym_system_lib_string, + STATE(7235), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(8044), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [202815] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3805), 1, + ACTIONS(3505), 1, anon_sym_LBRACK, - ACTIONS(3807), 8, + ACTIONS(3507), 8, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -349538,451 +382818,288 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COLON, anon_sym_try, - [178734] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5186), 1, - sym_raw_string_literal, - ACTIONS(7848), 1, - anon_sym_RPAREN, - STATE(2774), 2, - sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(101), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [178755] = 2, + [202832] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3916), 9, + ACTIONS(8052), 1, + anon_sym_AMP_AMP, + ACTIONS(4983), 8, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, anon_sym_try, anon_sym_requires, - [178770] = 9, + [202849] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7181), 1, + ACTIONS(7413), 1, anon_sym_LPAREN2, - ACTIONS(7766), 1, - anon_sym_COMMA, - ACTIONS(7770), 1, + ACTIONS(7514), 1, anon_sym_LBRACK, - ACTIONS(7850), 1, - anon_sym_SEMI, - STATE(5195), 1, + ACTIONS(8136), 1, + anon_sym_EQ, + STATE(4052), 1, sym_parameter_list, - STATE(5651), 1, - aux_sym_type_definition_repeat2, - STATE(5056), 2, + ACTIONS(8068), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(5035), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [178799] = 3, + [202876] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7788), 1, - anon_sym_AMP_AMP, - ACTIONS(4306), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(3487), 1, anon_sym_LBRACK, - anon_sym_requires, - [178816] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3884), 9, + ACTIONS(3489), 8, + anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, + anon_sym_COLON, anon_sym_try, - anon_sym_requires, - [178831] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5186), 1, - sym_raw_string_literal, - ACTIONS(7852), 1, - anon_sym_RPAREN, - STATE(2774), 2, - sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(101), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [178852] = 8, + [202893] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(7832), 1, + ACTIONS(8114), 1, anon_sym_COLON_COLON, - ACTIONS(7840), 1, + ACTIONS(8138), 1, sym_identifier, - STATE(4979), 1, + ACTIONS(8140), 1, + anon_sym_template, + STATE(5277), 1, sym__scope_resolution, - STATE(5647), 1, - sym_field_initializer, - STATE(5454), 2, - sym_template_method, + STATE(6692), 1, sym_qualified_field_identifier, - STATE(6663), 2, + STATE(6693), 1, + sym_dependent_field_identifier, + STATE(6694), 1, + sym_template_method, + STATE(7236), 2, sym_template_type, sym_dependent_type_identifier, - [178879] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5186), 1, - sym_raw_string_literal, - ACTIONS(7854), 1, - anon_sym_RPAREN, - STATE(2774), 2, - sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(101), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [178900] = 5, + [202922] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5622), 1, + ACTIONS(7413), 1, + anon_sym_LPAREN2, + ACTIONS(7927), 1, anon_sym_LBRACK, - ACTIONS(5786), 1, - anon_sym_requires, - STATE(4842), 1, - sym_requires_clause, - ACTIONS(5620), 6, + STATE(4249), 1, + sym_parameter_list, + ACTIONS(7925), 6, + anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_try, - [178921] = 7, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_requires, + [202943] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3930), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7181), 1, + ACTIONS(7413), 1, anon_sym_LPAREN2, - ACTIONS(7770), 1, + ACTIONS(7927), 1, anon_sym_LBRACK, - STATE(5195), 1, + STATE(4249), 1, sym_parameter_list, - STATE(5056), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(7856), 3, + ACTIONS(7951), 6, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_SEMI, - [178946] = 7, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_requires, + [202964] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3930), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7181), 1, + ACTIONS(7413), 1, anon_sym_LPAREN2, - ACTIONS(7770), 1, + ACTIONS(7927), 1, anon_sym_LBRACK, - STATE(5195), 1, + STATE(4249), 1, sym_parameter_list, - STATE(5056), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(7858), 3, + ACTIONS(7949), 6, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_SEMI, - [178971] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3930), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7181), 1, - anon_sym_LPAREN2, - ACTIONS(7766), 1, - anon_sym_COMMA, - ACTIONS(7770), 1, - anon_sym_LBRACK, - ACTIONS(7860), 1, - anon_sym_SEMI, - STATE(5195), 1, - sym_parameter_list, - STATE(5641), 1, - aux_sym_type_definition_repeat2, - STATE(5056), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [179000] = 9, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_requires, + [202985] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7181), 1, + ACTIONS(7413), 1, anon_sym_LPAREN2, - ACTIONS(7766), 1, + ACTIONS(8036), 1, anon_sym_COMMA, - ACTIONS(7770), 1, + ACTIONS(8040), 1, anon_sym_LBRACK, - ACTIONS(7862), 1, + ACTIONS(8142), 1, anon_sym_SEMI, - STATE(5195), 1, + STATE(5449), 1, sym_parameter_list, - STATE(5563), 1, + STATE(5948), 1, aux_sym_type_definition_repeat2, - STATE(5056), 2, + STATE(5307), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [179029] = 4, + [203014] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7866), 1, - anon_sym_AMP, - ACTIONS(7868), 2, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(7864), 6, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_LBRACE, + ACTIONS(3497), 1, anon_sym_LBRACK, - [179048] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3908), 9, + ACTIONS(3499), 8, + anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, + anon_sym_COLON, anon_sym_try, - anon_sym_requires, - [179063] = 5, + [203031] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5186), 1, - sym_raw_string_literal, - ACTIONS(7870), 1, - anon_sym_RPAREN, - STATE(2774), 2, - sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(101), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [179084] = 2, + ACTIONS(1469), 1, + anon_sym_LBRACE, + ACTIONS(4255), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7413), 1, + anon_sym_LPAREN2, + ACTIONS(7514), 1, + anon_sym_LBRACK, + ACTIONS(8144), 1, + anon_sym_EQ, + STATE(3843), 1, + sym_parameter_list, + STATE(6783), 1, + sym_initializer_list, + STATE(5035), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [203060] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3892), 9, + ACTIONS(8104), 1, + anon_sym_AMP_AMP, + ACTIONS(4983), 8, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_try, anon_sym_requires, - [179099] = 2, + [203077] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3880), 9, + ACTIONS(3424), 1, + anon_sym_COLON_COLON, + ACTIONS(5500), 1, + anon_sym_LT, + STATE(2168), 1, + sym_template_argument_list, + ACTIONS(3437), 2, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(3442), 4, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_try, - anon_sym_requires, - [179114] = 2, + anon_sym_LBRACK_LBRACK, + [203100] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3896), 9, + ACTIONS(3509), 1, + anon_sym_LBRACK, + ACTIONS(3511), 8, + anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, + anon_sym_COLON, anon_sym_try, - anon_sym_requires, - [179129] = 2, + [203117] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3900), 9, + ACTIONS(8146), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(8148), 1, + anon_sym_LBRACK, + STATE(4276), 1, + sym_parameter_list, + ACTIONS(7925), 5, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_try, anon_sym_requires, - [179144] = 9, + [203137] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3930), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7181), 1, - anon_sym_LPAREN2, - ACTIONS(7766), 1, + ACTIONS(8150), 1, + anon_sym_AMP_AMP, + ACTIONS(4983), 7, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - ACTIONS(7770), 1, - anon_sym_LBRACK, - ACTIONS(7872), 1, - anon_sym_SEMI, - STATE(5195), 1, - sym_parameter_list, - STATE(5546), 1, - aux_sym_type_definition_repeat2, - STATE(5056), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [179173] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3930), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7181), 1, anon_sym_LPAREN2, - ACTIONS(7766), 1, - anon_sym_COMMA, - ACTIONS(7770), 1, + anon_sym_PIPE_PIPE, anon_sym_LBRACK, - ACTIONS(7874), 1, - anon_sym_SEMI, - STATE(5195), 1, - sym_parameter_list, - STATE(5693), 1, - aux_sym_type_definition_repeat2, - STATE(5056), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [179202] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(7506), 1, - anon_sym_COLON_COLON, - ACTIONS(7876), 1, - sym_identifier, - ACTIONS(7878), 1, - anon_sym_namespace, - STATE(4716), 1, - sym__scope_resolution, - STATE(6676), 1, - sym_qualified_identifier, - STATE(6663), 2, - sym_template_type, - sym_dependent_type_identifier, - [179228] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(7880), 1, - sym_identifier, - ACTIONS(7882), 1, - anon_sym_COLON_COLON, - STATE(3073), 1, - sym_template_type, - STATE(5125), 1, - sym__scope_resolution, - STATE(6663), 1, - sym_dependent_type_identifier, - STATE(3047), 2, - sym__class_name, - sym_qualified_type_identifier, - [179254] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6714), 1, + anon_sym_GT2, anon_sym_requires, - STATE(4875), 1, - sym_requires_clause, - ACTIONS(7514), 6, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_try, - [179272] = 4, + [203153] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6751), 1, + ACTIONS(6998), 1, anon_sym_requires, - STATE(4875), 1, + STATE(5141), 1, sym_requires_clause, - ACTIONS(7514), 6, + ACTIONS(6797), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_LBRACK, - [179290] = 8, + [203171] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3007), 1, + ACTIONS(7746), 1, anon_sym_COLON_COLON, - ACTIONS(6993), 1, + ACTIONS(8152), 1, sym_identifier, - STATE(2635), 1, - sym_template_type, - STATE(5131), 1, + ACTIONS(8154), 1, + anon_sym_namespace, + STATE(4968), 1, sym__scope_resolution, - STATE(6663), 1, + STATE(7032), 1, + sym_qualified_identifier, + STATE(7236), 2, + sym_template_type, sym_dependent_type_identifier, - STATE(5527), 2, - sym__class_name, - sym_qualified_type_identifier, - [179316] = 5, + [203197] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7884), 1, + ACTIONS(8156), 1, sym_raw_string_literal, - STATE(4997), 1, + STATE(5242), 1, sym_string_literal, - STATE(6503), 1, + STATE(6931), 1, sym_concatenated_string, ACTIONS(101), 5, anon_sym_L_DQUOTE, @@ -349990,144 +383107,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [179336] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(7506), 1, - anon_sym_COLON_COLON, - ACTIONS(7886), 1, - sym_identifier, - ACTIONS(7888), 1, - anon_sym_namespace, - STATE(4716), 1, - sym__scope_resolution, - STATE(6545), 1, - sym_qualified_identifier, - STATE(6663), 2, - sym_template_type, - sym_dependent_type_identifier, - [179362] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6714), 1, - anon_sym_requires, - STATE(4836), 1, - sym_requires_clause, - ACTIONS(6202), 6, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_try, - [179380] = 5, + [203217] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7890), 1, + ACTIONS(8146), 1, anon_sym_LPAREN2, - ACTIONS(7892), 1, + ACTIONS(8148), 1, anon_sym_LBRACK, - STATE(4031), 1, + STATE(4276), 1, sym_parameter_list, - ACTIONS(7694), 5, + ACTIONS(7939), 5, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, anon_sym_requires, - [179400] = 5, + [203237] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7890), 1, + ACTIONS(6943), 1, + anon_sym_requires, + STATE(5111), 1, + sym_requires_clause, + ACTIONS(6793), 6, anon_sym_LPAREN2, - ACTIONS(7892), 1, - anon_sym_LBRACK, - STATE(4031), 1, - sym_parameter_list, - ACTIONS(7724), 5, anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_try, - anon_sym_requires, - [179420] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(7506), 1, - anon_sym_COLON_COLON, - ACTIONS(7894), 1, - sym_identifier, - ACTIONS(7896), 1, - anon_sym_namespace, - STATE(4716), 1, - sym__scope_resolution, - STATE(6937), 1, - sym_qualified_identifier, - STATE(6663), 2, - sym_template_type, - sym_dependent_type_identifier, - [179446] = 5, + [203255] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7898), 1, - sym_raw_string_literal, - STATE(4965), 1, - sym_string_literal, - STATE(6544), 1, - sym_concatenated_string, - ACTIONS(101), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [179466] = 8, + ACTIONS(1469), 1, + anon_sym_LBRACE, + ACTIONS(7061), 1, + anon_sym_COLON, + ACTIONS(7411), 1, + anon_sym_COMMA, + ACTIONS(8158), 1, + anon_sym_SEMI, + ACTIONS(8160), 1, + anon_sym_EQ, + STATE(5462), 1, + aux_sym_field_declaration_repeat1, + STATE(7232), 1, + sym_initializer_list, + STATE(7233), 1, + sym_bitfield_clause, + [203283] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(7506), 1, + ACTIONS(7746), 1, anon_sym_COLON_COLON, - ACTIONS(7900), 1, + ACTIONS(8162), 1, sym_identifier, - ACTIONS(7902), 1, + ACTIONS(8164), 1, anon_sym_namespace, - STATE(4716), 1, + STATE(4968), 1, sym__scope_resolution, - STATE(6625), 1, + STATE(6950), 1, sym_qualified_identifier, - STATE(6663), 2, + STATE(7236), 2, sym_template_type, sym_dependent_type_identifier, - [179492] = 7, + [203309] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3930), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7181), 1, + ACTIONS(8146), 1, anon_sym_LPAREN2, - ACTIONS(7244), 1, + ACTIONS(8148), 1, anon_sym_LBRACK, - STATE(3509), 1, + STATE(4276), 1, sym_parameter_list, - ACTIONS(7692), 2, + ACTIONS(7941), 5, + anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_EQ, anon_sym_try, - STATE(4794), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [179516] = 5, + anon_sym_requires, + [203329] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7904), 1, + ACTIONS(8166), 1, sym_raw_string_literal, - STATE(4987), 1, + STATE(5213), 1, sym_string_literal, - STATE(6569), 1, + STATE(6906), 1, sym_concatenated_string, ACTIONS(101), 5, anon_sym_L_DQUOTE, @@ -350135,371 +383203,403 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [179536] = 5, + [203349] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7890), 1, + ACTIONS(6998), 1, + anon_sym_requires, + STATE(5111), 1, + sym_requires_clause, + ACTIONS(6793), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(7892), 1, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LBRACK, - STATE(4031), 1, + [203367] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8146), 1, + anon_sym_LPAREN2, + ACTIONS(8148), 1, + anon_sym_LBRACK, + STATE(4276), 1, sym_parameter_list, - ACTIONS(7706), 5, + ACTIONS(7979), 5, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, anon_sym_requires, - [179556] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1465), 1, - anon_sym_LBRACE, - ACTIONS(6789), 1, - anon_sym_COLON, - ACTIONS(7179), 1, - anon_sym_COMMA, - ACTIONS(7906), 1, - anon_sym_SEMI, - ACTIONS(7908), 1, - anon_sym_EQ, - STATE(5196), 1, - aux_sym_field_declaration_repeat1, - STATE(6720), 1, - sym_bitfield_clause, - STATE(6722), 1, - sym_initializer_list, - [179584] = 6, + [203387] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, - anon_sym_COLON_COLON, - ACTIONS(5129), 1, - anon_sym_LT, - ACTIONS(5692), 1, - anon_sym_LBRACK, - STATE(4791), 1, - sym_template_argument_list, - ACTIONS(3984), 4, - anon_sym_LPAREN2, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(7413), 1, + anon_sym_LPAREN2, + ACTIONS(7514), 1, + anon_sym_LBRACK, + STATE(4108), 1, + sym_parameter_list, + ACTIONS(7965), 2, anon_sym_LBRACE, anon_sym_try, - [179606] = 8, + STATE(5035), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [203411] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(7506), 1, - anon_sym_COLON_COLON, - ACTIONS(7910), 1, - sym_identifier, - ACTIONS(7912), 1, - anon_sym_namespace, - STATE(4716), 1, - sym__scope_resolution, - STATE(6809), 1, - sym_qualified_identifier, - STATE(6663), 2, - sym_template_type, - sym_dependent_type_identifier, - [179632] = 7, + ACTIONS(8150), 1, + anon_sym_AMP_AMP, + ACTIONS(8168), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5025), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_GT2, + anon_sym_requires, + [203429] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7181), 1, + ACTIONS(7413), 1, anon_sym_LPAREN2, - ACTIONS(7244), 1, + ACTIONS(7514), 1, anon_sym_LBRACK, - STATE(3461), 1, + STATE(4108), 1, sym_parameter_list, - ACTIONS(7688), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - STATE(4794), 2, + ACTIONS(7929), 2, + anon_sym_LBRACE, + anon_sym_try, + STATE(5035), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [179656] = 7, + [203453] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7181), 1, + ACTIONS(7413), 1, anon_sym_LPAREN2, - ACTIONS(7244), 1, + ACTIONS(7514), 1, anon_sym_LBRACK, - STATE(3461), 1, + STATE(4108), 1, sym_parameter_list, - ACTIONS(7692), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - STATE(4794), 2, + ACTIONS(7953), 2, + anon_sym_LBRACE, + anon_sym_try, + STATE(5035), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [179680] = 7, + [203477] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7181), 1, + ACTIONS(7413), 1, anon_sym_LPAREN2, - ACTIONS(7244), 1, + ACTIONS(7514), 1, anon_sym_LBRACK, - STATE(3509), 1, + STATE(4099), 1, sym_parameter_list, - ACTIONS(7651), 2, - anon_sym_LBRACE, - anon_sym_try, - STATE(4794), 2, + ACTIONS(7929), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + STATE(5035), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [179704] = 7, + [203501] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7181), 1, + ACTIONS(7413), 1, anon_sym_LPAREN2, - ACTIONS(7770), 1, + ACTIONS(7514), 1, anon_sym_LBRACK, - STATE(5195), 1, + STATE(4108), 1, sym_parameter_list, - ACTIONS(7914), 2, - anon_sym_COMMA, - anon_sym_SEMI, - STATE(5056), 2, + ACTIONS(7937), 2, + anon_sym_LBRACE, + anon_sym_try, + STATE(5035), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [179728] = 8, + [203525] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3007), 1, + ACTIONS(7746), 1, anon_sym_COLON_COLON, - ACTIONS(6993), 1, + ACTIONS(8170), 1, sym_identifier, - STATE(2635), 1, - sym_template_type, - STATE(5131), 1, + ACTIONS(8172), 1, + anon_sym_namespace, + STATE(4968), 1, sym__scope_resolution, - STATE(6663), 1, + STATE(7144), 1, + sym_qualified_identifier, + STATE(7236), 2, + sym_template_type, sym_dependent_type_identifier, - STATE(5258), 2, - sym__class_name, - sym_qualified_type_identifier, - [179754] = 4, + [203551] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6714), 1, - anon_sym_requires, - STATE(4839), 1, - sym_requires_clause, - ACTIONS(7520), 6, + ACTIONS(4255), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8176), 1, + anon_sym_LBRACK, + STATE(5055), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8174), 4, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACE, + [203571] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3424), 1, + anon_sym_COLON_COLON, + ACTIONS(3437), 1, anon_sym_LBRACK, - anon_sym_EQ, + ACTIONS(5500), 1, + anon_sym_LT, + STATE(5027), 1, + sym_template_argument_list, + ACTIONS(3442), 4, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_try, - [179772] = 7, + [203593] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3930), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7181), 1, + ACTIONS(8146), 1, anon_sym_LPAREN2, - ACTIONS(7244), 1, + ACTIONS(8148), 1, anon_sym_LBRACK, - STATE(3461), 1, + STATE(4276), 1, sym_parameter_list, - ACTIONS(7675), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - STATE(4794), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [179796] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6714), 1, - anon_sym_requires, - STATE(4829), 1, - sym_requires_clause, - ACTIONS(6301), 6, - anon_sym_LPAREN2, + ACTIONS(7943), 5, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_try, - [179814] = 8, + anon_sym_requires, + [203613] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(7506), 1, + ACTIONS(2434), 1, anon_sym_COLON_COLON, - ACTIONS(7916), 1, + ACTIONS(7187), 1, sym_identifier, - ACTIONS(7918), 1, - anon_sym_namespace, - STATE(4716), 1, - sym__scope_resolution, - STATE(6432), 1, - sym_qualified_identifier, - STATE(6663), 2, + STATE(3262), 1, sym_template_type, + STATE(5394), 1, + sym__scope_resolution, + STATE(7236), 1, sym_dependent_type_identifier, - [179840] = 5, + STATE(5684), 2, + sym__class_name, + sym_qualified_type_identifier, + [203639] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7890), 1, + ACTIONS(4255), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7413), 1, anon_sym_LPAREN2, - ACTIONS(7892), 1, + ACTIONS(7514), 1, anon_sym_LBRACK, - STATE(4031), 1, + STATE(4099), 1, sym_parameter_list, - ACTIONS(7700), 5, + ACTIONS(7953), 2, + anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - anon_sym_requires, - [179860] = 4, + STATE(5035), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [203663] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7920), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7922), 1, - anon_sym_AMP_AMP, - ACTIONS(4272), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(4255), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7413), 1, anon_sym_LPAREN2, + ACTIONS(8040), 1, anon_sym_LBRACK, - anon_sym_GT2, - anon_sym_requires, - [179878] = 7, + STATE(5449), 1, + sym_parameter_list, + ACTIONS(8178), 2, + anon_sym_COMMA, + anon_sym_SEMI, + STATE(5307), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [203687] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7181), 1, + ACTIONS(7413), 1, anon_sym_LPAREN2, - ACTIONS(7244), 1, + ACTIONS(7514), 1, anon_sym_LBRACK, - STATE(3461), 1, + STATE(4108), 1, sym_parameter_list, - ACTIONS(7690), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - STATE(4794), 2, + ACTIONS(7931), 2, + anon_sym_LBRACE, + anon_sym_try, + STATE(5035), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [179902] = 4, + [203711] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6751), 1, + ACTIONS(6998), 1, anon_sym_requires, - STATE(4836), 1, + STATE(5123), 1, sym_requires_clause, - ACTIONS(6202), 6, + ACTIONS(7776), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_LBRACK, - [179920] = 4, + [203729] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6751), 1, + ACTIONS(6943), 1, anon_sym_requires, - STATE(4829), 1, + STATE(5141), 1, sym_requires_clause, - ACTIONS(6301), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6797), 6, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_try, + [203747] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3424), 1, + anon_sym_COLON_COLON, + ACTIONS(5500), 1, + anon_sym_LT, + ACTIONS(6525), 1, + anon_sym_LBRACK, + STATE(5027), 1, + sym_template_argument_list, + ACTIONS(3935), 4, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + [203769] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6943), 1, + anon_sym_requires, + STATE(5145), 1, + sym_requires_clause, + ACTIONS(7824), 6, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_LBRACK, - [179938] = 8, + anon_sym_EQ, + anon_sym_try, + [203787] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(7506), 1, + ACTIONS(7746), 1, anon_sym_COLON_COLON, - ACTIONS(7924), 1, + ACTIONS(8180), 1, sym_identifier, - ACTIONS(7926), 1, + ACTIONS(8182), 1, anon_sym_namespace, - STATE(4716), 1, + STATE(4968), 1, sym__scope_resolution, - STATE(6627), 1, + STATE(7142), 1, sym_qualified_identifier, - STATE(6663), 2, + STATE(7236), 2, sym_template_type, sym_dependent_type_identifier, - [179964] = 7, + [203813] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3930), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7181), 1, - anon_sym_LPAREN2, - ACTIONS(7244), 1, - anon_sym_LBRACK, - STATE(3509), 1, - sym_parameter_list, - ACTIONS(7688), 2, - anon_sym_LBRACE, - anon_sym_try, - STATE(4794), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [179988] = 5, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(7746), 1, + anon_sym_COLON_COLON, + ACTIONS(8184), 1, + sym_identifier, + ACTIONS(8186), 1, + anon_sym_namespace, + STATE(4968), 1, + sym__scope_resolution, + STATE(7241), 1, + sym_qualified_identifier, + STATE(7236), 2, + sym_template_type, + sym_dependent_type_identifier, + [203839] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7928), 1, + ACTIONS(8188), 1, sym_raw_string_literal, - STATE(5007), 1, + STATE(5217), 1, sym_string_literal, - STATE(6725), 1, + STATE(6862), 1, sym_concatenated_string, ACTIONS(101), 5, anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [180008] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3735), 1, - anon_sym_COLON_COLON, - ACTIONS(3759), 1, - anon_sym_LBRACK, - ACTIONS(5129), 1, - anon_sym_LT, - STATE(4791), 1, - sym_template_argument_list, - ACTIONS(3764), 4, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [203859] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1469), 1, anon_sym_LBRACE, - anon_sym_try, - [180030] = 5, + ACTIONS(7061), 1, + anon_sym_COLON, + ACTIONS(7411), 1, + anon_sym_COMMA, + ACTIONS(8190), 1, + anon_sym_SEMI, + ACTIONS(8192), 1, + anon_sym_EQ, + STATE(5462), 1, + aux_sym_field_declaration_repeat1, + STATE(7131), 1, + sym_bitfield_clause, + STATE(7132), 1, + sym_initializer_list, + [203887] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7930), 1, + ACTIONS(8194), 1, sym_raw_string_literal, - STATE(4959), 1, + STATE(5239), 1, sym_string_literal, - STATE(6674), 1, + STATE(6735), 1, sym_concatenated_string, ACTIONS(101), 5, anon_sym_L_DQUOTE, @@ -350507,127 +383607,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [180050] = 7, + [203907] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3930), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7181), 1, - anon_sym_LPAREN2, - ACTIONS(7244), 1, - anon_sym_LBRACK, - STATE(3509), 1, - sym_parameter_list, - ACTIONS(7675), 2, - anon_sym_LBRACE, - anon_sym_try, - STATE(4794), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [180074] = 5, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(8196), 1, + sym_identifier, + ACTIONS(8198), 1, + anon_sym_COLON_COLON, + STATE(3301), 1, + sym_template_type, + STATE(5353), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + STATE(3307), 2, + sym__class_name, + sym_qualified_type_identifier, + [203933] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7890), 1, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2434), 1, + anon_sym_COLON_COLON, + ACTIONS(7187), 1, + sym_identifier, + STATE(3262), 1, + sym_template_type, + STATE(5394), 1, + sym__scope_resolution, + STATE(7236), 1, + sym_dependent_type_identifier, + STATE(5887), 2, + sym__class_name, + sym_qualified_type_identifier, + [203959] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6943), 1, + anon_sym_requires, + STATE(5123), 1, + sym_requires_clause, + ACTIONS(7776), 6, anon_sym_LPAREN2, - ACTIONS(7892), 1, - anon_sym_LBRACK, - STATE(4031), 1, - sym_parameter_list, - ACTIONS(7677), 5, anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_try, - anon_sym_requires, - [180094] = 3, + [203977] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7922), 1, - anon_sym_AMP_AMP, - ACTIONS(4306), 7, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(4255), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7413), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + ACTIONS(7514), 1, anon_sym_LBRACK, - anon_sym_GT2, - anon_sym_requires, - [180110] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1465), 1, - anon_sym_LBRACE, - ACTIONS(6789), 1, - anon_sym_COLON, - ACTIONS(7179), 1, - anon_sym_COMMA, - ACTIONS(7932), 1, + STATE(4099), 1, + sym_parameter_list, + ACTIONS(7965), 2, + anon_sym_RPAREN, anon_sym_SEMI, - ACTIONS(7934), 1, - anon_sym_EQ, - STATE(5196), 1, - aux_sym_field_declaration_repeat1, - STATE(6715), 1, - sym_bitfield_clause, - STATE(6717), 1, - sym_initializer_list, - [180138] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3930), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7938), 1, - anon_sym_LBRACK, - STATE(4792), 2, + STATE(5035), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(7936), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - [180158] = 5, + [204001] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7890), 1, + ACTIONS(8146), 1, anon_sym_LPAREN2, - ACTIONS(7892), 1, + ACTIONS(8148), 1, anon_sym_LBRACK, - STATE(4031), 1, + STATE(4276), 1, sym_parameter_list, - ACTIONS(7726), 5, + ACTIONS(7949), 5, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, anon_sym_requires, - [180178] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1465), 1, - anon_sym_LBRACE, - ACTIONS(6789), 1, - anon_sym_COLON, - ACTIONS(7179), 1, - anon_sym_COMMA, - ACTIONS(7940), 1, - anon_sym_SEMI, - ACTIONS(7942), 1, - anon_sym_EQ, - STATE(5196), 1, - aux_sym_field_declaration_repeat1, - STATE(6541), 1, - sym_bitfield_clause, - STATE(6543), 1, - sym_initializer_list, - [180206] = 5, + [204021] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7944), 1, + ACTIONS(8200), 1, sym_raw_string_literal, - STATE(4999), 1, + STATE(5244), 1, sym_string_literal, - STATE(6440), 1, + STATE(6764), 1, sym_concatenated_string, ACTIONS(101), 5, anon_sym_L_DQUOTE, @@ -350635,31 +383704,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [180226] = 7, + [204041] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3930), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7181), 1, + ACTIONS(8146), 1, anon_sym_LPAREN2, - ACTIONS(7244), 1, + ACTIONS(8148), 1, anon_sym_LBRACK, - STATE(3509), 1, + STATE(4276), 1, sym_parameter_list, - ACTIONS(7690), 2, + ACTIONS(7951), 5, + anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_EQ, anon_sym_try, - STATE(4794), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [180250] = 5, + anon_sym_requires, + [204061] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7946), 1, + ACTIONS(8202), 1, sym_raw_string_literal, - STATE(4992), 1, + STATE(5236), 1, sym_string_literal, - STATE(6393), 1, + STATE(6799), 1, sym_concatenated_string, ACTIONS(101), 5, anon_sym_L_DQUOTE, @@ -350667,19959 +383734,21107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [180270] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7890), 1, - anon_sym_LPAREN2, - ACTIONS(7892), 1, - anon_sym_LBRACK, - STATE(4031), 1, - sym_parameter_list, - ACTIONS(7702), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - anon_sym_requires, - [180290] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6751), 1, - anon_sym_requires, - STATE(4839), 1, - sym_requires_clause, - ACTIONS(7520), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - [180308] = 7, + [204081] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3930), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7181), 1, - anon_sym_LPAREN2, - ACTIONS(7244), 1, - anon_sym_LBRACK, - STATE(3461), 1, - sym_parameter_list, - ACTIONS(7651), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - STATE(4794), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [180332] = 7, + ACTIONS(8204), 1, + sym_raw_string_literal, + STATE(5214), 1, + sym_string_literal, + STATE(6775), 1, + sym_concatenated_string, + ACTIONS(101), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [204101] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3930), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7181), 1, - anon_sym_LPAREN2, - ACTIONS(7244), 1, - anon_sym_LBRACK, - ACTIONS(7948), 1, - anon_sym_SEMI, - STATE(3461), 1, - sym_parameter_list, - STATE(4794), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [180355] = 7, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(7746), 1, + anon_sym_COLON_COLON, + ACTIONS(8206), 1, + sym_identifier, + ACTIONS(8208), 1, + anon_sym_namespace, + STATE(4968), 1, + sym__scope_resolution, + STATE(6973), 1, + sym_qualified_identifier, + STATE(7236), 2, + sym_template_type, + sym_dependent_type_identifier, + [204127] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(7506), 1, + ACTIONS(7746), 1, anon_sym_COLON_COLON, - ACTIONS(7950), 1, + ACTIONS(8210), 1, sym_identifier, - STATE(4716), 1, + ACTIONS(8212), 1, + anon_sym_namespace, + STATE(4968), 1, sym__scope_resolution, - STATE(6652), 1, + STATE(6856), 1, sym_qualified_identifier, - STATE(6663), 2, + STATE(7236), 2, sym_template_type, sym_dependent_type_identifier, - [180378] = 7, + [204153] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7181), 1, + ACTIONS(7413), 1, anon_sym_LPAREN2, - ACTIONS(7187), 1, + ACTIONS(7514), 1, anon_sym_LBRACK, - ACTIONS(7614), 1, - anon_sym_RPAREN, - STATE(3970), 1, + STATE(4099), 1, sym_parameter_list, - STATE(5202), 2, + ACTIONS(7931), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + STATE(5035), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [180401] = 5, + [204177] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7890), 1, + ACTIONS(1469), 1, + anon_sym_LBRACE, + ACTIONS(7061), 1, + anon_sym_COLON, + ACTIONS(7411), 1, + anon_sym_COMMA, + ACTIONS(8214), 1, + anon_sym_SEMI, + ACTIONS(8216), 1, + anon_sym_EQ, + STATE(5462), 1, + aux_sym_field_declaration_repeat1, + STATE(6778), 1, + sym_bitfield_clause, + STATE(6779), 1, + sym_initializer_list, + [204205] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4255), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7413), 1, anon_sym_LPAREN2, - ACTIONS(7892), 1, + ACTIONS(7514), 1, anon_sym_LBRACK, - STATE(4073), 1, + STATE(4099), 1, sym_parameter_list, - ACTIONS(7724), 4, - anon_sym_COMMA, + ACTIONS(7937), 2, anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_requires, - [180420] = 3, + STATE(5035), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [204229] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4312), 1, - anon_sym_AMP, - ACTIONS(4314), 6, + ACTIONS(6998), 1, + anon_sym_requires, + STATE(5145), 1, + sym_requires_clause, + ACTIONS(7824), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_requires, - [180435] = 4, + [204247] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4304), 1, - anon_sym_LBRACK, - ACTIONS(7952), 1, - anon_sym_AMP_AMP, - ACTIONS(4306), 5, + ACTIONS(8146), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, + ACTIONS(8148), 1, + anon_sym_LBRACK, + STATE(4348), 1, + sym_parameter_list, + ACTIONS(7943), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, anon_sym_requires, - [180452] = 7, + [204266] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3930), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7181), 1, + ACTIONS(7413), 1, anon_sym_LPAREN2, - ACTIONS(7187), 1, + ACTIONS(7514), 1, anon_sym_LBRACK, - ACTIONS(7612), 1, - anon_sym_RPAREN, - STATE(3970), 1, + ACTIONS(8218), 1, + anon_sym_COLON, + STATE(4126), 1, sym_parameter_list, - STATE(5202), 2, + STATE(5154), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [180475] = 8, + [204289] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4060), 1, + ACTIONS(7267), 1, anon_sym_COLON_COLON, - ACTIONS(7954), 1, + ACTIONS(8220), 1, sym_identifier, - ACTIONS(7956), 1, + ACTIONS(8222), 1, anon_sym_template, - STATE(2717), 1, - sym_dependent_type_identifier, - STATE(2721), 1, - sym_template_type, - STATE(3134), 1, + STATE(2952), 1, sym_qualified_type_identifier, - STATE(5072), 1, + STATE(2965), 1, + sym_template_type, + STATE(2968), 1, + sym_dependent_type_identifier, + STATE(5340), 1, sym__scope_resolution, - [180500] = 7, + [204314] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3930), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7181), 1, + ACTIONS(8146), 1, anon_sym_LPAREN2, - ACTIONS(7244), 1, + ACTIONS(8148), 1, anon_sym_LBRACK, - ACTIONS(7958), 1, - anon_sym_SEMI, - STATE(3461), 1, + STATE(4337), 1, sym_parameter_list, - STATE(4794), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [180523] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4308), 1, - anon_sym_AMP, - ACTIONS(4310), 6, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACE, - anon_sym_LBRACK, + ACTIONS(7925), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_requires, - [180538] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5514), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7181), 1, - anon_sym_LPAREN2, - ACTIONS(7244), 1, - anon_sym_LBRACK, - ACTIONS(7675), 1, - anon_sym_COLON, - STATE(3559), 1, - sym_parameter_list, - STATE(4905), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [180561] = 7, + [204333] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5514), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7181), 1, + ACTIONS(7413), 1, anon_sym_LPAREN2, - ACTIONS(7244), 1, + ACTIONS(7514), 1, anon_sym_LBRACK, - ACTIONS(7651), 1, - anon_sym_COLON, - STATE(3559), 1, + ACTIONS(8224), 1, + anon_sym_SEMI, + STATE(4099), 1, sym_parameter_list, - STATE(4905), 2, + STATE(5035), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [180584] = 5, + [204356] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7964), 1, + ACTIONS(8230), 1, anon_sym_delete, - ACTIONS(7966), 1, + ACTIONS(8232), 1, anon_sym_new, - ACTIONS(7962), 2, + ACTIONS(8228), 2, anon_sym_TILDE, anon_sym_COLON_COLON, - ACTIONS(7960), 3, + ACTIONS(8226), 3, sym_identifier, anon_sym_template, anon_sym_operator, - [180603] = 7, + [204375] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5514), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7181), 1, - anon_sym_LPAREN2, - ACTIONS(7244), 1, - anon_sym_LBRACK, - ACTIONS(7692), 1, - anon_sym_COLON, - STATE(3559), 1, - sym_parameter_list, - STATE(4905), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [180626] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7023), 1, + ACTIONS(7199), 1, anon_sym_COLON_COLON, - ACTIONS(7968), 1, + ACTIONS(8234), 1, sym_identifier, - ACTIONS(7970), 1, + ACTIONS(8236), 1, anon_sym_template, - STATE(2185), 1, + STATE(1943), 1, sym_template_type, - STATE(2188), 1, + STATE(1947), 1, sym_dependent_type_identifier, - STATE(2270), 1, + STATE(2030), 1, sym_qualified_type_identifier, - STATE(5079), 1, + STATE(5344), 1, sym__scope_resolution, - [180651] = 5, + [204400] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7972), 1, + ACTIONS(8238), 1, anon_sym_delete, - ACTIONS(7974), 1, + ACTIONS(8240), 1, anon_sym_new, - ACTIONS(7962), 2, + ACTIONS(8228), 2, anon_sym_TILDE, anon_sym_COLON_COLON, - ACTIONS(7960), 3, + ACTIONS(8226), 3, sym_identifier, anon_sym_template, anon_sym_operator, - [180670] = 7, + [204419] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5514), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7181), 1, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(7746), 1, + anon_sym_COLON_COLON, + ACTIONS(8242), 1, + sym_identifier, + STATE(4968), 1, + sym__scope_resolution, + STATE(7013), 1, + sym_qualified_identifier, + STATE(7236), 2, + sym_template_type, + sym_dependent_type_identifier, + [204442] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7413), 1, anon_sym_LPAREN2, - ACTIONS(7244), 1, + ACTIONS(7927), 1, anon_sym_LBRACK, - ACTIONS(7976), 1, - anon_sym_COLON, - STATE(3559), 1, + STATE(4324), 1, sym_parameter_list, - STATE(4905), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [180693] = 7, + ACTIONS(7979), 4, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + anon_sym_requires, + [204461] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3930), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7181), 1, + ACTIONS(8246), 1, + anon_sym_AMP, + ACTIONS(8244), 6, anon_sym_LPAREN2, - ACTIONS(7244), 1, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(7978), 1, - anon_sym_SEMI, - STATE(3461), 1, - sym_parameter_list, - STATE(4794), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [180716] = 7, + [204476] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3930), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7181), 1, + ACTIONS(7413), 1, anon_sym_LPAREN2, - ACTIONS(7770), 1, + ACTIONS(7927), 1, anon_sym_LBRACK, - ACTIONS(7980), 1, - anon_sym_RPAREN, - STATE(5195), 1, + STATE(4324), 1, sym_parameter_list, - STATE(5056), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [180739] = 8, + ACTIONS(7943), 4, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + anon_sym_requires, + [204495] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5281), 1, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(7746), 1, anon_sym_COLON_COLON, - ACTIONS(7982), 1, + ACTIONS(8248), 1, sym_identifier, - ACTIONS(7984), 1, - anon_sym_template, - STATE(4123), 1, + STATE(4968), 1, + sym__scope_resolution, + STATE(6850), 1, + sym_qualified_identifier, + STATE(7236), 2, sym_template_type, - STATE(4125), 1, sym_dependent_type_identifier, - STATE(4146), 1, - sym_qualified_type_identifier, - STATE(5084), 1, - sym__scope_resolution, - [180764] = 5, + [204518] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7890), 1, + ACTIONS(7413), 1, anon_sym_LPAREN2, - ACTIONS(7892), 1, + ACTIONS(7927), 1, anon_sym_LBRACK, - STATE(4073), 1, + STATE(4324), 1, sym_parameter_list, - ACTIONS(7702), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, + ACTIONS(7939), 4, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, anon_sym_requires, - [180783] = 7, + [204537] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(7506), 1, + ACTIONS(4731), 1, anon_sym_COLON_COLON, - ACTIONS(7986), 1, + ACTIONS(8250), 1, sym_identifier, - STATE(4716), 1, - sym__scope_resolution, - STATE(6842), 1, - sym_qualified_identifier, - STATE(6663), 2, + ACTIONS(8252), 1, + anon_sym_template, + STATE(3276), 1, sym_template_type, + STATE(3283), 1, sym_dependent_type_identifier, - [180806] = 7, + STATE(3427), 1, + sym_qualified_type_identifier, + STATE(5352), 1, + sym__scope_resolution, + [204562] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3930), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7181), 1, - anon_sym_LPAREN2, - ACTIONS(7244), 1, - anon_sym_LBRACK, - ACTIONS(7988), 1, - anon_sym_SEMI, - STATE(3461), 1, - sym_parameter_list, - STATE(4794), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [180829] = 8, + ACTIONS(8198), 1, + anon_sym_COLON_COLON, + ACTIONS(8254), 1, + sym_identifier, + ACTIONS(8256), 1, + anon_sym_template, + STATE(3289), 1, + sym_template_type, + STATE(3290), 1, + sym_dependent_type_identifier, + STATE(3298), 1, + sym_qualified_type_identifier, + STATE(5353), 1, + sym__scope_resolution, + [204587] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(5345), 1, + ACTIONS(3765), 1, anon_sym_COLON_COLON, - ACTIONS(7990), 1, + ACTIONS(8250), 1, sym_identifier, - STATE(2717), 1, - sym_dependent_type_identifier, - STATE(2721), 1, + ACTIONS(8252), 1, + anon_sym_template, + STATE(3276), 1, sym_template_type, - STATE(3134), 1, + STATE(3282), 1, sym_qualified_type_identifier, - STATE(5088), 1, + STATE(3283), 1, + sym_dependent_type_identifier, + STATE(5354), 1, sym__scope_resolution, - [180854] = 5, + [204612] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7890), 1, + ACTIONS(7413), 1, anon_sym_LPAREN2, - ACTIONS(7892), 1, + ACTIONS(7927), 1, anon_sym_LBRACK, - STATE(4091), 1, + STATE(4324), 1, sym_parameter_list, - ACTIONS(7706), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, + ACTIONS(7941), 4, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, anon_sym_requires, - [180873] = 7, + [204631] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3930), 1, + ACTIONS(7413), 1, + anon_sym_LPAREN2, + ACTIONS(7927), 1, + anon_sym_LBRACK, + STATE(4324), 1, + sym_parameter_list, + ACTIONS(7949), 4, anon_sym_LBRACK_LBRACK, - ACTIONS(7181), 1, + anon_sym_LBRACE, + anon_sym_try, + anon_sym_requires, + [204650] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7413), 1, anon_sym_LPAREN2, - ACTIONS(7244), 1, + ACTIONS(7927), 1, anon_sym_LBRACK, - ACTIONS(7992), 1, - anon_sym_SEMI, - STATE(3461), 1, + STATE(4324), 1, sym_parameter_list, - STATE(4794), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [180896] = 5, + ACTIONS(7951), 4, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + anon_sym_requires, + [204669] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7994), 1, + ACTIONS(8258), 1, anon_sym_delete, - ACTIONS(7996), 1, + ACTIONS(8260), 1, anon_sym_new, - ACTIONS(7962), 2, + ACTIONS(8228), 2, anon_sym_TILDE, anon_sym_COLON_COLON, - ACTIONS(7960), 3, + ACTIONS(8226), 3, sym_identifier, anon_sym_template, anon_sym_operator, - [180915] = 8, + [204688] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5834), 1, - anon_sym_COLON_COLON, - ACTIONS(7998), 1, - sym_identifier, - ACTIONS(8000), 1, - anon_sym_template, - STATE(2185), 1, - sym_template_type, - STATE(2188), 1, - sym_dependent_type_identifier, - STATE(2270), 1, - sym_qualified_type_identifier, - STATE(5092), 1, - sym__scope_resolution, - [180940] = 7, + ACTIONS(4255), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7413), 1, + anon_sym_LPAREN2, + ACTIONS(7419), 1, + anon_sym_LBRACK, + ACTIONS(7792), 1, + anon_sym_RPAREN, + STATE(4236), 1, + sym_parameter_list, + STATE(5465), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [204711] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(7506), 1, - anon_sym_COLON_COLON, - ACTIONS(8002), 1, - sym_identifier, - STATE(4716), 1, - sym__scope_resolution, - STATE(6402), 1, - sym_qualified_identifier, - STATE(6663), 2, - sym_template_type, - sym_dependent_type_identifier, - [180963] = 3, + ACTIONS(4255), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7413), 1, + anon_sym_LPAREN2, + ACTIONS(7419), 1, + anon_sym_LBRACK, + ACTIONS(7796), 1, + anon_sym_RPAREN, + STATE(4236), 1, + sym_parameter_list, + STATE(5465), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [204734] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8006), 1, - anon_sym_AMP, - ACTIONS(8004), 6, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7413), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LT, + ACTIONS(7514), 1, + anon_sym_LBRACK, + ACTIONS(7931), 1, + anon_sym_COLON, + STATE(4126), 1, + sym_parameter_list, + STATE(5154), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [204757] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7413), 1, + anon_sym_LPAREN2, + ACTIONS(7927), 1, + anon_sym_LBRACK, + STATE(4324), 1, + sym_parameter_list, + ACTIONS(7925), 4, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_try, + anon_sym_requires, + [204776] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8146), 1, + anon_sym_LPAREN2, + ACTIONS(8148), 1, anon_sym_LBRACK, - [180978] = 3, + STATE(4337), 1, + sym_parameter_list, + ACTIONS(7941), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_requires, + [204795] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8010), 1, + ACTIONS(5304), 1, anon_sym_AMP, - ACTIONS(8008), 6, + ACTIONS(5306), 6, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_LT, anon_sym_LBRACE, anon_sym_LBRACK, - [180993] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8012), 1, - anon_sym_delete, - ACTIONS(8014), 1, - anon_sym_new, - ACTIONS(7962), 2, - anon_sym_TILDE, - anon_sym_COLON_COLON, - ACTIONS(7960), 3, - sym_identifier, - anon_sym_template, - anon_sym_operator, - [181012] = 7, + anon_sym_requires, + [204810] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5514), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7181), 1, + ACTIONS(7413), 1, anon_sym_LPAREN2, - ACTIONS(7244), 1, + ACTIONS(7514), 1, anon_sym_LBRACK, - ACTIONS(7688), 1, + ACTIONS(7937), 1, anon_sym_COLON, - STATE(3559), 1, + STATE(4126), 1, sym_parameter_list, - STATE(4905), 2, + STATE(5154), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [181035] = 7, + [204833] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5514), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7181), 1, + ACTIONS(7413), 1, anon_sym_LPAREN2, - ACTIONS(7244), 1, + ACTIONS(7514), 1, anon_sym_LBRACK, - ACTIONS(7690), 1, + ACTIONS(7953), 1, anon_sym_COLON, - STATE(3559), 1, + STATE(4126), 1, sym_parameter_list, - STATE(4905), 2, + STATE(5154), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [181058] = 5, + [204856] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7890), 1, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7413), 1, anon_sym_LPAREN2, - ACTIONS(7892), 1, + ACTIONS(7514), 1, anon_sym_LBRACK, - STATE(4073), 1, + ACTIONS(7929), 1, + anon_sym_COLON, + STATE(4126), 1, sym_parameter_list, - ACTIONS(7677), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_requires, - [181077] = 5, + STATE(5154), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [204879] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4270), 1, - anon_sym_LBRACK, - ACTIONS(7952), 1, - anon_sym_AMP_AMP, - ACTIONS(8016), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4272), 4, - anon_sym_LPAREN2, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(7413), 1, + anon_sym_LPAREN2, + ACTIONS(7514), 1, + anon_sym_LBRACK, + ACTIONS(7965), 1, anon_sym_COLON, - anon_sym_requires, - [181096] = 7, + STATE(4126), 1, + sym_parameter_list, + STATE(5154), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [204902] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(7506), 1, + ACTIONS(7746), 1, anon_sym_COLON_COLON, - ACTIONS(8018), 1, + ACTIONS(8262), 1, sym_identifier, - STATE(4716), 1, + STATE(4968), 1, sym__scope_resolution, - STATE(6709), 1, + STATE(7018), 1, sym_qualified_identifier, - STATE(6663), 2, + STATE(7236), 2, sym_template_type, sym_dependent_type_identifier, - [181119] = 4, + [204925] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6755), 1, - anon_sym_requires, - STATE(4875), 1, - sym_requires_clause, - ACTIONS(7514), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(4985), 1, + anon_sym_AMP, + ACTIONS(8264), 1, + anon_sym_AMP_AMP, + ACTIONS(4983), 5, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_GT2, - [181136] = 4, + [204942] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6755), 1, - anon_sym_requires, - STATE(4839), 1, - sym_requires_clause, - ACTIONS(7520), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(8146), 1, anon_sym_LPAREN2, + ACTIONS(8148), 1, anon_sym_LBRACK, + STATE(4348), 1, + sym_parameter_list, + ACTIONS(7979), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_GT2, - [181153] = 7, + anon_sym_requires, + [204961] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3930), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7181), 1, - anon_sym_LPAREN2, - ACTIONS(7187), 1, + ACTIONS(5027), 1, anon_sym_LBRACK, - ACTIONS(8020), 1, - anon_sym_RPAREN, - STATE(3970), 1, - sym_parameter_list, - STATE(5202), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [181176] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7181), 1, + ACTIONS(8266), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8268), 1, + anon_sym_AMP_AMP, + ACTIONS(5025), 4, anon_sym_LPAREN2, - ACTIONS(7679), 1, - anon_sym_LBRACK, - STATE(4064), 1, - sym_parameter_list, - ACTIONS(7726), 4, - anon_sym_RPAREN, - anon_sym_SEMI, anon_sym_LBRACK_LBRACK, + anon_sym_COLON, anon_sym_requires, - [181195] = 5, + [204980] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7181), 1, + ACTIONS(5314), 1, + anon_sym_AMP, + ACTIONS(5316), 6, anon_sym_LPAREN2, - ACTIONS(7679), 1, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACE, anon_sym_LBRACK, - STATE(4064), 1, - sym_parameter_list, - ACTIONS(7706), 4, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_requires, - [181214] = 8, + [204995] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7129), 1, + ACTIONS(6609), 1, anon_sym_COLON_COLON, - ACTIONS(8022), 1, + ACTIONS(8270), 1, sym_identifier, - ACTIONS(8024), 1, + ACTIONS(8272), 1, anon_sym_template, - STATE(2170), 1, + STATE(2183), 1, sym_qualified_type_identifier, - STATE(2206), 1, - sym_dependent_type_identifier, - STATE(2207), 1, + STATE(2380), 1, sym_template_type, - STATE(5107), 1, + STATE(2381), 1, + sym_dependent_type_identifier, + STATE(5374), 1, sym__scope_resolution, - [181239] = 5, + [205020] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7890), 1, + ACTIONS(4255), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7413), 1, anon_sym_LPAREN2, - ACTIONS(7892), 1, + ACTIONS(7419), 1, anon_sym_LBRACK, - STATE(4091), 1, + ACTIONS(7832), 1, + anon_sym_RPAREN, + STATE(4236), 1, sym_parameter_list, - ACTIONS(7677), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - anon_sym_requires, - [181258] = 5, + STATE(5465), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [205043] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7181), 1, + ACTIONS(8146), 1, anon_sym_LPAREN2, - ACTIONS(7679), 1, + ACTIONS(8148), 1, anon_sym_LBRACK, - STATE(4064), 1, + STATE(4337), 1, sym_parameter_list, - ACTIONS(7702), 4, + ACTIONS(7949), 4, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_requires, - [181277] = 5, + [205062] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7181), 1, + ACTIONS(8146), 1, anon_sym_LPAREN2, - ACTIONS(7679), 1, + ACTIONS(8148), 1, anon_sym_LBRACK, - STATE(4064), 1, + STATE(4337), 1, sym_parameter_list, - ACTIONS(7700), 4, + ACTIONS(7951), 4, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_requires, - [181296] = 5, + [205081] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7181), 1, + ACTIONS(8274), 1, + anon_sym_delete, + ACTIONS(8276), 1, + anon_sym_new, + ACTIONS(8228), 2, + anon_sym_TILDE, + anon_sym_COLON_COLON, + ACTIONS(8226), 3, + sym_identifier, + anon_sym_template, + anon_sym_operator, + [205100] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8146), 1, anon_sym_LPAREN2, - ACTIONS(7679), 1, + ACTIONS(8148), 1, anon_sym_LBRACK, - STATE(4064), 1, + STATE(4337), 1, sym_parameter_list, - ACTIONS(7677), 4, + ACTIONS(7943), 4, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_requires, - [181315] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6755), 1, - anon_sym_requires, - STATE(4836), 1, - sym_requires_clause, - ACTIONS(6202), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_GT2, - [181332] = 7, + [205119] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1465), 1, - anon_sym_LBRACE, - ACTIONS(3735), 1, + ACTIONS(8278), 1, + anon_sym_delete, + ACTIONS(8280), 1, + anon_sym_new, + ACTIONS(8228), 2, + anon_sym_TILDE, anon_sym_COLON_COLON, - ACTIONS(5129), 1, - anon_sym_LT, - ACTIONS(5567), 1, - anon_sym_LPAREN2, - STATE(5574), 1, - sym_template_argument_list, - STATE(5575), 2, - sym_argument_list, - sym_initializer_list, - [181355] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7181), 1, - anon_sym_LPAREN2, - ACTIONS(7679), 1, - anon_sym_LBRACK, - STATE(4092), 1, - sym_parameter_list, - ACTIONS(7726), 4, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_try, - anon_sym_requires, - [181374] = 5, + ACTIONS(8226), 3, + sym_identifier, + anon_sym_template, + anon_sym_operator, + [205138] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7181), 1, - anon_sym_LPAREN2, - ACTIONS(7679), 1, - anon_sym_LBRACK, - STATE(4064), 1, - sym_parameter_list, - ACTIONS(7694), 4, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_requires, - [181393] = 5, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(7746), 1, + anon_sym_COLON_COLON, + ACTIONS(8282), 1, + sym_identifier, + STATE(4968), 1, + sym__scope_resolution, + STATE(7263), 1, + sym_qualified_identifier, + STATE(7236), 2, + sym_template_type, + sym_dependent_type_identifier, + [205161] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4270), 1, + ACTIONS(5308), 1, anon_sym_AMP, - ACTIONS(8026), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8028), 1, - anon_sym_AMP_AMP, - ACTIONS(4272), 4, + ACTIONS(5310), 6, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_LBRACE, anon_sym_LBRACK, - [181412] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7890), 1, - anon_sym_LPAREN2, - ACTIONS(7892), 1, - anon_sym_LBRACK, - STATE(4073), 1, - sym_parameter_list, - ACTIONS(7694), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, anon_sym_requires, - [181431] = 7, + [205176] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(7506), 1, + ACTIONS(7482), 1, anon_sym_COLON_COLON, - ACTIONS(8030), 1, + ACTIONS(8284), 1, sym_identifier, - STATE(4716), 1, - sym__scope_resolution, - STATE(6453), 1, - sym_qualified_identifier, - STATE(6663), 2, + STATE(2183), 1, + sym_qualified_type_identifier, + STATE(3276), 1, sym_template_type, + STATE(3283), 1, sym_dependent_type_identifier, - [181454] = 7, + STATE(5383), 1, + sym__scope_resolution, + [205201] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7181), 1, + ACTIONS(7413), 1, anon_sym_LPAREN2, - ACTIONS(7244), 1, + ACTIONS(7514), 1, anon_sym_LBRACK, - ACTIONS(8032), 1, + ACTIONS(8286), 1, anon_sym_SEMI, - STATE(3461), 1, + STATE(4099), 1, sym_parameter_list, - STATE(4794), 2, + STATE(5035), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [181477] = 8, + [205224] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5794), 1, + ACTIONS(1469), 1, + anon_sym_LBRACE, + ACTIONS(3424), 1, anon_sym_COLON_COLON, - ACTIONS(8034), 1, + ACTIONS(5470), 1, + anon_sym_LPAREN2, + ACTIONS(5500), 1, + anon_sym_LT, + STATE(6095), 1, + sym_template_argument_list, + STATE(6096), 2, + sym_argument_list, + sym_initializer_list, + [205247] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6595), 1, + anon_sym_COLON_COLON, + ACTIONS(8288), 1, sym_identifier, - ACTIONS(8036), 1, + ACTIONS(8290), 1, anon_sym_template, - STATE(2117), 1, + STATE(2827), 1, sym_template_type, - STATE(2118), 1, + STATE(2867), 1, sym_dependent_type_identifier, - STATE(2164), 1, + STATE(2956), 1, sym_qualified_type_identifier, - STATE(5120), 1, + STATE(5386), 1, sym__scope_resolution, - [181502] = 5, + [205272] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7890), 1, + ACTIONS(5568), 1, + anon_sym_COLON_COLON, + ACTIONS(8292), 1, + sym_identifier, + ACTIONS(8294), 1, + anon_sym_template, + STATE(4377), 1, + sym_dependent_type_identifier, + STATE(4378), 1, + sym_template_type, + STATE(4399), 1, + sym_qualified_type_identifier, + STATE(5387), 1, + sym__scope_resolution, + [205297] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(7746), 1, + anon_sym_COLON_COLON, + ACTIONS(8296), 1, + sym_identifier, + STATE(4968), 1, + sym__scope_resolution, + STATE(6933), 1, + sym_qualified_identifier, + STATE(7236), 2, + sym_template_type, + sym_dependent_type_identifier, + [205320] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4255), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7413), 1, anon_sym_LPAREN2, - ACTIONS(7892), 1, + ACTIONS(7514), 1, anon_sym_LBRACK, - STATE(4091), 1, + ACTIONS(8298), 1, + anon_sym_SEMI, + STATE(4099), 1, sym_parameter_list, - ACTIONS(7724), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - anon_sym_requires, - [181521] = 7, + STATE(5035), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [205343] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5514), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7181), 1, + ACTIONS(7413), 1, anon_sym_LPAREN2, - ACTIONS(7244), 1, + ACTIONS(7514), 1, anon_sym_LBRACK, - ACTIONS(8038), 1, - anon_sym_COLON, - STATE(3559), 1, + ACTIONS(8300), 1, + anon_sym_RPAREN, + STATE(4099), 1, sym_parameter_list, - STATE(4905), 2, + STATE(5035), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [181544] = 7, + [205366] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5514), 1, + ACTIONS(5749), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7181), 1, + ACTIONS(7413), 1, anon_sym_LPAREN2, - ACTIONS(7244), 1, + ACTIONS(7514), 1, anon_sym_LBRACK, - ACTIONS(8040), 1, + ACTIONS(8302), 1, anon_sym_COLON, - STATE(3559), 1, + STATE(4126), 1, sym_parameter_list, - STATE(4905), 2, + STATE(5154), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [181567] = 5, + [205389] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7890), 1, + ACTIONS(4255), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7413), 1, anon_sym_LPAREN2, - ACTIONS(7892), 1, + ACTIONS(7514), 1, anon_sym_LBRACK, - STATE(4031), 1, - sym_parameter_list, - ACTIONS(8042), 4, + ACTIONS(8304), 1, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [181586] = 8, + STATE(4099), 1, + sym_parameter_list, + STATE(5035), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [205412] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7882), 1, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7413), 1, + anon_sym_LPAREN2, + ACTIONS(7514), 1, + anon_sym_LBRACK, + ACTIONS(8306), 1, + anon_sym_COLON, + STATE(4126), 1, + sym_parameter_list, + STATE(5154), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [205435] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(976), 1, + anon_sym_template, + ACTIONS(2434), 1, anon_sym_COLON_COLON, - ACTIONS(8044), 1, + ACTIONS(8284), 1, sym_identifier, - ACTIONS(8046), 1, - anon_sym_template, - STATE(3043), 1, - sym_qualified_type_identifier, - STATE(3094), 1, + STATE(3276), 1, sym_template_type, - STATE(3104), 1, + STATE(3282), 1, + sym_qualified_type_identifier, + STATE(3283), 1, sym_dependent_type_identifier, - STATE(5125), 1, + STATE(5394), 1, sym__scope_resolution, - [181611] = 3, + [205460] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8050), 1, - anon_sym_AMP, - ACTIONS(8048), 6, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_LBRACE, - anon_sym_LBRACK, - [181626] = 5, + ACTIONS(8308), 1, + anon_sym_delete, + ACTIONS(8310), 1, + anon_sym_new, + ACTIONS(8228), 2, + anon_sym_TILDE, + anon_sym_COLON_COLON, + ACTIONS(8226), 3, + sym_identifier, + anon_sym_template, + anon_sym_operator, + [205479] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7181), 1, + ACTIONS(8146), 1, anon_sym_LPAREN2, - ACTIONS(7679), 1, + ACTIONS(8148), 1, anon_sym_LBRACK, - STATE(4064), 1, + STATE(4337), 1, sym_parameter_list, - ACTIONS(7724), 4, + ACTIONS(7979), 4, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_requires, - [181645] = 4, + [205498] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6755), 1, - anon_sym_requires, - STATE(4829), 1, - sym_requires_clause, - ACTIONS(6301), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_GT2, - [181662] = 5, + ACTIONS(5522), 1, + anon_sym_COLON_COLON, + ACTIONS(8272), 1, + anon_sym_template, + ACTIONS(8312), 1, + sym_identifier, + STATE(2183), 1, + sym_qualified_type_identifier, + STATE(2380), 1, + sym_template_type, + STATE(2381), 1, + sym_dependent_type_identifier, + STATE(5397), 1, + sym__scope_resolution, + [205523] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7181), 1, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7413), 1, anon_sym_LPAREN2, - ACTIONS(7679), 1, + ACTIONS(7514), 1, anon_sym_LBRACK, - STATE(4092), 1, + ACTIONS(8314), 1, + anon_sym_COLON, + STATE(4126), 1, sym_parameter_list, - ACTIONS(7706), 4, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_try, - anon_sym_requires, - [181681] = 7, + STATE(5154), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [205546] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3930), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7181), 1, + ACTIONS(3540), 1, + anon_sym_AMP, + ACTIONS(3538), 6, anon_sym_LPAREN2, - ACTIONS(7187), 1, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(7526), 1, - anon_sym_RPAREN, - STATE(3970), 1, - sym_parameter_list, - STATE(5202), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [181704] = 8, + [205561] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(3007), 1, + ACTIONS(7746), 1, anon_sym_COLON_COLON, - ACTIONS(7990), 1, + ACTIONS(8316), 1, sym_identifier, - STATE(2716), 1, - sym_qualified_type_identifier, - STATE(2717), 1, - sym_dependent_type_identifier, - STATE(2721), 1, - sym_template_type, - STATE(5131), 1, + STATE(4968), 1, sym__scope_resolution, - [181729] = 3, + STATE(7066), 1, + sym_qualified_identifier, + STATE(7236), 2, + sym_template_type, + sym_dependent_type_identifier, + [205584] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8318), 1, + anon_sym_delete, + ACTIONS(8320), 1, + anon_sym_new, + ACTIONS(8228), 2, + anon_sym_TILDE, + anon_sym_COLON_COLON, + ACTIONS(8226), 3, + sym_identifier, + anon_sym_template, + anon_sym_operator, + [205603] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4284), 1, + ACTIONS(8324), 1, anon_sym_AMP, - ACTIONS(4286), 6, + ACTIONS(8322), 6, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, + anon_sym_LT, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_requires, - [181744] = 7, + [205618] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(7506), 1, + ACTIONS(7746), 1, anon_sym_COLON_COLON, - ACTIONS(8052), 1, + ACTIONS(8326), 1, sym_identifier, - STATE(4716), 1, + STATE(4968), 1, sym__scope_resolution, - STATE(6866), 1, + STATE(6739), 1, sym_qualified_identifier, - STATE(6663), 2, + STATE(7236), 2, sym_template_type, sym_dependent_type_identifier, - [181767] = 5, + [205641] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7890), 1, + ACTIONS(4255), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7413), 1, anon_sym_LPAREN2, - ACTIONS(7892), 1, + ACTIONS(7419), 1, anon_sym_LBRACK, - STATE(4091), 1, + ACTIONS(8328), 1, + anon_sym_RPAREN, + STATE(4236), 1, sym_parameter_list, - ACTIONS(7726), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - anon_sym_requires, - [181786] = 7, + STATE(5465), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [205664] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5027), 1, + anon_sym_AMP, + ACTIONS(8264), 1, + anon_sym_AMP_AMP, + ACTIONS(8330), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5025), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_LBRACK, + [205683] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(7506), 1, + ACTIONS(7746), 1, anon_sym_COLON_COLON, - ACTIONS(8054), 1, + ACTIONS(8332), 1, sym_identifier, - STATE(4716), 1, + STATE(4968), 1, sym__scope_resolution, - STATE(6862), 1, + STATE(7305), 1, sym_qualified_identifier, - STATE(6663), 2, + STATE(7236), 2, sym_template_type, sym_dependent_type_identifier, - [181809] = 5, + [205706] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8056), 1, - anon_sym_delete, - ACTIONS(8058), 1, - anon_sym_new, - ACTIONS(7962), 2, - anon_sym_TILDE, - anon_sym_COLON_COLON, - ACTIONS(7960), 3, - sym_identifier, - anon_sym_template, - anon_sym_operator, - [181828] = 8, + ACTIONS(8146), 1, + anon_sym_LPAREN2, + ACTIONS(8148), 1, + anon_sym_LBRACK, + STATE(4276), 1, + sym_parameter_list, + ACTIONS(8334), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [205725] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5200), 1, - anon_sym_COLON_COLON, - ACTIONS(8060), 1, - sym_identifier, - ACTIONS(8062), 1, - anon_sym_template, - STATE(2170), 1, - sym_qualified_type_identifier, - STATE(2206), 1, - sym_dependent_type_identifier, - STATE(2207), 1, - sym_template_type, - STATE(5137), 1, - sym__scope_resolution, - [181853] = 7, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7413), 1, + anon_sym_LPAREN2, + ACTIONS(7514), 1, + anon_sym_LBRACK, + ACTIONS(8336), 1, + anon_sym_COLON, + STATE(4126), 1, + sym_parameter_list, + STATE(5154), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [205748] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7181), 1, + ACTIONS(7413), 1, anon_sym_LPAREN2, - ACTIONS(7244), 1, + ACTIONS(7514), 1, anon_sym_LBRACK, - ACTIONS(8064), 1, + ACTIONS(8338), 1, anon_sym_SEMI, - STATE(3461), 1, + STATE(4099), 1, sym_parameter_list, - STATE(4794), 2, + STATE(5035), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [181876] = 8, + [205771] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6983), 1, - anon_sym_COLON_COLON, - ACTIONS(8066), 1, - sym_identifier, - ACTIONS(8068), 1, - anon_sym_template, - STATE(2128), 1, - sym_template_type, - STATE(2134), 1, - sym_qualified_type_identifier, - STATE(2149), 1, - sym_dependent_type_identifier, - STATE(5139), 1, - sym__scope_resolution, - [181901] = 7, + ACTIONS(4255), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7413), 1, + anon_sym_LPAREN2, + ACTIONS(7514), 1, + anon_sym_LBRACK, + ACTIONS(8340), 1, + anon_sym_SEMI, + STATE(4099), 1, + sym_parameter_list, + STATE(5035), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [205794] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(7506), 1, + ACTIONS(7746), 1, anon_sym_COLON_COLON, - ACTIONS(8070), 1, + ACTIONS(8342), 1, sym_identifier, - STATE(4716), 1, + STATE(4968), 1, sym__scope_resolution, - STATE(6681), 1, + STATE(7094), 1, sym_qualified_identifier, - STATE(6663), 2, + STATE(7236), 2, sym_template_type, sym_dependent_type_identifier, - [181924] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3383), 1, - anon_sym_AMP, - ACTIONS(3381), 6, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_LBRACE, - anon_sym_LBRACK, - [181939] = 5, + [205817] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7181), 1, - anon_sym_LPAREN2, - ACTIONS(7679), 1, - anon_sym_LBRACK, - STATE(4092), 1, - sym_parameter_list, - ACTIONS(7702), 4, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_try, - anon_sym_requires, - [181958] = 5, + ACTIONS(6623), 1, + anon_sym_COLON_COLON, + ACTIONS(8344), 1, + sym_identifier, + ACTIONS(8346), 1, + anon_sym_template, + STATE(2186), 1, + sym_template_type, + STATE(2202), 1, + sym_dependent_type_identifier, + STATE(2425), 1, + sym_qualified_type_identifier, + STATE(5412), 1, + sym__scope_resolution, + [205842] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8072), 1, + ACTIONS(8348), 1, anon_sym_delete, - ACTIONS(8074), 1, + ACTIONS(8350), 1, anon_sym_new, - ACTIONS(7962), 2, + ACTIONS(8228), 2, anon_sym_TILDE, anon_sym_COLON_COLON, - ACTIONS(7960), 3, + ACTIONS(8226), 3, sym_identifier, anon_sym_template, anon_sym_operator, - [181977] = 8, + [205861] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3377), 1, + ACTIONS(8146), 1, + anon_sym_LPAREN2, + ACTIONS(8148), 1, + anon_sym_LBRACK, + STATE(4337), 1, + sym_parameter_list, + ACTIONS(7939), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_requires, + [205880] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7329), 1, anon_sym_COLON_COLON, - ACTIONS(7954), 1, + ACTIONS(8352), 1, sym_identifier, - ACTIONS(7956), 1, + ACTIONS(8354), 1, anon_sym_template, - STATE(2716), 1, + STATE(2183), 1, sym_qualified_type_identifier, - STATE(2717), 1, - sym_dependent_type_identifier, - STATE(2721), 1, + STATE(2380), 1, sym_template_type, - STATE(5144), 1, + STATE(2381), 1, + sym_dependent_type_identifier, + STATE(5415), 1, sym__scope_resolution, - [182002] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5514), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7181), 1, - anon_sym_LPAREN2, - ACTIONS(7244), 1, - anon_sym_LBRACK, - ACTIONS(8076), 1, - anon_sym_COLON, - STATE(3559), 1, - sym_parameter_list, - STATE(4905), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [182025] = 7, + [205905] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(7506), 1, + ACTIONS(5654), 1, anon_sym_COLON_COLON, - ACTIONS(8078), 1, + ACTIONS(8284), 1, sym_identifier, - STATE(4716), 1, - sym__scope_resolution, - STATE(6616), 1, - sym_qualified_identifier, - STATE(6663), 2, + STATE(3276), 1, sym_template_type, + STATE(3283), 1, sym_dependent_type_identifier, - [182048] = 5, + STATE(3427), 1, + sym_qualified_type_identifier, + STATE(5416), 1, + sym__scope_resolution, + [205930] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7181), 1, + ACTIONS(8124), 1, + anon_sym_AMP, + ACTIONS(8122), 6, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + [205945] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7413), 1, anon_sym_LPAREN2, - ACTIONS(7679), 1, + ACTIONS(7927), 1, anon_sym_LBRACK, - STATE(4092), 1, + STATE(4332), 1, sym_parameter_list, - ACTIONS(7700), 4, + ACTIONS(7979), 4, + anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_try, anon_sym_requires, - [182067] = 5, + [205964] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7181), 1, + ACTIONS(7413), 1, anon_sym_LPAREN2, - ACTIONS(7679), 1, + ACTIONS(7927), 1, anon_sym_LBRACK, - STATE(4092), 1, + STATE(4332), 1, sym_parameter_list, - ACTIONS(7677), 4, + ACTIONS(7943), 4, + anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_try, anon_sym_requires, - [182086] = 5, + [205983] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7890), 1, + ACTIONS(7413), 1, + anon_sym_LPAREN2, + ACTIONS(7927), 1, + anon_sym_LBRACK, + STATE(4332), 1, + sym_parameter_list, + ACTIONS(7939), 4, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_requires, + [206002] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8146), 1, anon_sym_LPAREN2, - ACTIONS(7892), 1, + ACTIONS(8148), 1, anon_sym_LBRACK, - STATE(4091), 1, + STATE(4348), 1, sym_parameter_list, - ACTIONS(7694), 4, + ACTIONS(7949), 4, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_GT2, anon_sym_requires, - [182105] = 5, + [206021] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7181), 1, + ACTIONS(8146), 1, anon_sym_LPAREN2, - ACTIONS(7679), 1, + ACTIONS(8148), 1, anon_sym_LBRACK, - STATE(4092), 1, + STATE(4348), 1, sym_parameter_list, - ACTIONS(7694), 4, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_try, + ACTIONS(7951), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, anon_sym_requires, - [182124] = 5, + [206040] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7890), 1, + ACTIONS(7413), 1, anon_sym_LPAREN2, - ACTIONS(7892), 1, + ACTIONS(7927), 1, anon_sym_LBRACK, - STATE(4073), 1, + STATE(4332), 1, sym_parameter_list, - ACTIONS(7706), 4, - anon_sym_COMMA, + ACTIONS(7941), 4, anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_requires, - [182143] = 8, + [206059] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5772), 1, - anon_sym_COLON_COLON, - ACTIONS(8062), 1, - anon_sym_template, - ACTIONS(8080), 1, - sym_identifier, - STATE(2170), 1, - sym_qualified_type_identifier, - STATE(2206), 1, - sym_dependent_type_identifier, - STATE(2207), 1, - sym_template_type, - STATE(5152), 1, - sym__scope_resolution, - [182168] = 7, + ACTIONS(7413), 1, + anon_sym_LPAREN2, + ACTIONS(7927), 1, + anon_sym_LBRACK, + STATE(4332), 1, + sym_parameter_list, + ACTIONS(7949), 4, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_requires, + [206078] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, - anon_sym_template, - ACTIONS(7506), 1, + ACTIONS(5562), 1, anon_sym_COLON_COLON, - ACTIONS(8082), 1, + ACTIONS(8290), 1, + anon_sym_template, + ACTIONS(8356), 1, sym_identifier, - STATE(4716), 1, - sym__scope_resolution, - STATE(6779), 1, - sym_qualified_identifier, - STATE(6663), 2, + STATE(2827), 1, sym_template_type, + STATE(2867), 1, sym_dependent_type_identifier, - [182191] = 8, + STATE(2956), 1, + sym_qualified_type_identifier, + STATE(5425), 1, + sym__scope_resolution, + [206103] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5856), 1, + ACTIONS(8358), 1, + anon_sym_delete, + ACTIONS(8360), 1, + anon_sym_new, + ACTIONS(8228), 2, + anon_sym_TILDE, anon_sym_COLON_COLON, - ACTIONS(8084), 1, + ACTIONS(8226), 3, sym_identifier, - ACTIONS(8086), 1, anon_sym_template, - STATE(2421), 1, - sym_template_type, - STATE(2423), 1, - sym_dependent_type_identifier, - STATE(2550), 1, - sym_qualified_type_identifier, - STATE(5154), 1, - sym__scope_resolution, - [182216] = 7, + anon_sym_operator, + [206122] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7181), 1, + ACTIONS(7413), 1, anon_sym_LPAREN2, - ACTIONS(7187), 1, + ACTIONS(8040), 1, anon_sym_LBRACK, - ACTIONS(7518), 1, + ACTIONS(8362), 1, anon_sym_RPAREN, - STATE(3970), 1, + STATE(5449), 1, sym_parameter_list, - STATE(5202), 2, + STATE(5307), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [182239] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8088), 1, - anon_sym_delete, - ACTIONS(8090), 1, - anon_sym_new, - ACTIONS(7962), 2, - anon_sym_TILDE, - anon_sym_COLON_COLON, - ACTIONS(7960), 3, - sym_identifier, - anon_sym_template, - anon_sym_operator, - [182258] = 7, + [206145] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3930), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7181), 1, + ACTIONS(7413), 1, anon_sym_LPAREN2, - ACTIONS(7244), 1, + ACTIONS(7514), 1, anon_sym_LBRACK, - ACTIONS(8092), 1, - anon_sym_RPAREN, - STATE(3461), 1, + ACTIONS(8364), 1, + anon_sym_SEMI, + STATE(4099), 1, sym_parameter_list, - STATE(4794), 2, + STATE(5035), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [182281] = 5, + [206168] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7181), 1, + ACTIONS(7413), 1, anon_sym_LPAREN2, - ACTIONS(7679), 1, + ACTIONS(7927), 1, anon_sym_LBRACK, - STATE(4092), 1, + STATE(4332), 1, sym_parameter_list, - ACTIONS(7724), 4, + ACTIONS(7951), 4, + anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_try, anon_sym_requires, - [182300] = 4, + [206187] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4304), 1, - anon_sym_AMP, - ACTIONS(8028), 1, - anon_sym_AMP_AMP, - ACTIONS(4306), 5, + ACTIONS(7413), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_LBRACE, + ACTIONS(7927), 1, anon_sym_LBRACK, - [182317] = 5, + STATE(4332), 1, + sym_parameter_list, + ACTIONS(7925), 4, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_requires, + [206206] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7890), 1, + ACTIONS(4255), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7413), 1, anon_sym_LPAREN2, - ACTIONS(7892), 1, + ACTIONS(7419), 1, anon_sym_LBRACK, - STATE(4073), 1, - sym_parameter_list, - ACTIONS(7726), 4, - anon_sym_COMMA, + ACTIONS(7872), 1, anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_requires, - [182336] = 5, + STATE(4236), 1, + sym_parameter_list, + STATE(5465), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [206229] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7890), 1, + ACTIONS(5749), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7413), 1, + anon_sym_LPAREN2, + ACTIONS(7514), 1, + anon_sym_LBRACK, + ACTIONS(8366), 1, + anon_sym_COLON, + STATE(4126), 1, + sym_parameter_list, + STATE(5154), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [206252] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8146), 1, anon_sym_LPAREN2, - ACTIONS(7892), 1, + ACTIONS(8148), 1, anon_sym_LBRACK, - STATE(4091), 1, + STATE(4348), 1, sym_parameter_list, - ACTIONS(7702), 4, + ACTIONS(7925), 4, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_GT2, anon_sym_requires, - [182355] = 3, + [206271] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7866), 1, - anon_sym_AMP, - ACTIONS(7864), 6, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_LBRACE, + ACTIONS(4985), 1, anon_sym_LBRACK, - [182370] = 7, + ACTIONS(8268), 1, + anon_sym_AMP_AMP, + ACTIONS(4983), 5, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + anon_sym_requires, + [206288] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5514), 1, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7181), 1, + ACTIONS(7413), 1, anon_sym_LPAREN2, - ACTIONS(7244), 1, + ACTIONS(7514), 1, anon_sym_LBRACK, - ACTIONS(8094), 1, - anon_sym_COLON, - STATE(3559), 1, + ACTIONS(8368), 1, + anon_sym_SEMI, + STATE(4099), 1, sym_parameter_list, - STATE(4905), 2, + STATE(5035), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [182393] = 8, + [206311] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(7205), 1, + ACTIONS(7746), 1, anon_sym_COLON_COLON, - ACTIONS(7990), 1, + ACTIONS(8370), 1, sym_identifier, - STATE(2170), 1, - sym_qualified_type_identifier, - STATE(2717), 1, - sym_dependent_type_identifier, - STATE(2721), 1, - sym_template_type, - STATE(5164), 1, + STATE(4968), 1, sym__scope_resolution, - [182418] = 5, + STATE(6989), 1, + sym_qualified_identifier, + STATE(7236), 2, + sym_template_type, + sym_dependent_type_identifier, + [206334] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7890), 1, + ACTIONS(4255), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7413), 1, anon_sym_LPAREN2, - ACTIONS(7892), 1, + ACTIONS(7419), 1, anon_sym_LBRACK, - STATE(4091), 1, + ACTIONS(7818), 1, + anon_sym_RPAREN, + STATE(4236), 1, sym_parameter_list, - ACTIONS(7700), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - anon_sym_requires, - [182437] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8096), 1, - anon_sym_delete, - ACTIONS(8098), 1, - anon_sym_new, - ACTIONS(7962), 2, - anon_sym_TILDE, - anon_sym_COLON_COLON, - ACTIONS(7960), 3, - sym_identifier, - anon_sym_template, - anon_sym_operator, - [182456] = 7, + STATE(5465), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [206357] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(976), 1, anon_sym_template, - ACTIONS(7506), 1, + ACTIONS(7746), 1, anon_sym_COLON_COLON, - ACTIONS(8100), 1, + ACTIONS(8372), 1, sym_identifier, - STATE(4716), 1, + STATE(4968), 1, sym__scope_resolution, - STATE(6688), 1, + STATE(7116), 1, sym_qualified_identifier, - STATE(6663), 2, + STATE(7236), 2, sym_template_type, sym_dependent_type_identifier, - [182479] = 8, + [206380] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5870), 1, + ACTIONS(6651), 1, anon_sym_COLON_COLON, - ACTIONS(8102), 1, + ACTIONS(8374), 1, sym_identifier, - ACTIONS(8104), 1, + ACTIONS(8376), 1, anon_sym_template, - STATE(2161), 1, + STATE(1943), 1, sym_template_type, - STATE(2165), 1, + STATE(1947), 1, sym_dependent_type_identifier, - STATE(2194), 1, + STATE(2030), 1, sym_qualified_type_identifier, - STATE(5168), 1, + STATE(5439), 1, sym__scope_resolution, - [182504] = 8, + [206405] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8380), 1, + anon_sym_AMP, + ACTIONS(8378), 6, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + [206420] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5337), 1, + ACTIONS(6573), 1, anon_sym_COLON_COLON, - ACTIONS(8086), 1, - anon_sym_template, - ACTIONS(8106), 1, + ACTIONS(8382), 1, sym_identifier, - STATE(2421), 1, - sym_template_type, - STATE(2423), 1, + ACTIONS(8384), 1, + anon_sym_template, + STATE(1929), 1, sym_dependent_type_identifier, - STATE(2550), 1, + STATE(1932), 1, + sym_template_type, + STATE(1959), 1, sym_qualified_type_identifier, - STATE(5169), 1, + STATE(5441), 1, sym__scope_resolution, - [182529] = 7, + [206445] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3930), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7181), 1, + ACTIONS(6994), 1, + anon_sym_requires, + STATE(5111), 1, + sym_requires_clause, + ACTIONS(6793), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(7244), 1, anon_sym_LBRACK, - ACTIONS(8108), 1, - anon_sym_SEMI, - STATE(3461), 1, - sym_parameter_list, - STATE(4794), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [182552] = 7, + anon_sym_GT2, + [206462] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3930), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7181), 1, + ACTIONS(8146), 1, anon_sym_LPAREN2, - ACTIONS(7187), 1, + ACTIONS(8148), 1, anon_sym_LBRACK, - ACTIONS(7588), 1, - anon_sym_RPAREN, - STATE(3970), 1, + STATE(4348), 1, sym_parameter_list, - STATE(5202), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [182575] = 7, + ACTIONS(7941), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + anon_sym_requires, + [206481] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5514), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7181), 1, + ACTIONS(8146), 1, anon_sym_LPAREN2, - ACTIONS(7244), 1, + ACTIONS(8148), 1, anon_sym_LBRACK, - ACTIONS(8110), 1, - anon_sym_COLON, - STATE(3559), 1, + STATE(4348), 1, sym_parameter_list, - STATE(4905), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [182598] = 5, + ACTIONS(7939), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + anon_sym_requires, + [206500] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7890), 1, + ACTIONS(6994), 1, + anon_sym_requires, + STATE(5141), 1, + sym_requires_clause, + ACTIONS(6797), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(7892), 1, anon_sym_LBRACK, - STATE(4073), 1, - sym_parameter_list, - ACTIONS(7700), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, + anon_sym_GT2, + [206517] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6994), 1, anon_sym_requires, - [182617] = 6, + STATE(5145), 1, + sym_requires_clause, + ACTIONS(7824), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_GT2, + [206534] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3930), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7181), 1, + ACTIONS(6994), 1, + anon_sym_requires, + STATE(5123), 1, + sym_requires_clause, + ACTIONS(7776), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(7244), 1, anon_sym_LBRACK, - STATE(3283), 1, - sym_parameter_list, - STATE(4794), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [182637] = 5, + anon_sym_GT2, + [206551] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7324), 1, - anon_sym_TILDE, - ACTIONS(8112), 1, + ACTIONS(6673), 1, + anon_sym_COLON_COLON, + ACTIONS(8386), 1, sym_identifier, - ACTIONS(8114), 1, + ACTIONS(8388), 1, anon_sym_template, - STATE(2621), 3, - sym_template_method, - sym_destructor_name, - sym_dependent_field_identifier, - [182655] = 3, + STATE(1886), 1, + sym_template_type, + STATE(1888), 1, + sym_dependent_type_identifier, + STATE(1912), 1, + sym_qualified_type_identifier, + STATE(5448), 1, + sym__scope_resolution, + [206576] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8118), 1, + ACTIONS(8392), 1, anon_sym_LBRACK, - ACTIONS(8116), 5, + ACTIONS(8390), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [182669] = 6, + [206590] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7191), 1, - anon_sym_try, - ACTIONS(7228), 1, - anon_sym_LBRACE, - ACTIONS(8120), 1, + ACTIONS(8396), 1, + anon_sym_LBRACK, + ACTIONS(8394), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - ACTIONS(8122), 1, - anon_sym_EQ, - STATE(1907), 2, - sym_compound_statement, - sym_try_statement, - [182689] = 6, + anon_sym_LBRACK_LBRACK, + [206604] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(536), 1, - anon_sym_LBRACE, - ACTIONS(7286), 1, - anon_sym_try, - ACTIONS(8124), 1, - anon_sym_SEMI, - ACTIONS(8126), 1, - anon_sym_EQ, - STATE(952), 2, - sym_compound_statement, - sym_try_statement, - [182709] = 3, + ACTIONS(6529), 1, + anon_sym_LBRACK, + ACTIONS(6752), 1, + anon_sym_requires, + STATE(5077), 1, + sym_requires_clause, + ACTIONS(6527), 3, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [206622] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8130), 1, + ACTIONS(6752), 1, + anon_sym_requires, + ACTIONS(7778), 1, anon_sym_LBRACK, - ACTIONS(8128), 5, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(5014), 1, + sym_requires_clause, + ACTIONS(7776), 3, anon_sym_LPAREN2, - anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [182723] = 5, + anon_sym_COLON, + [206640] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8132), 1, + ACTIONS(6752), 1, + anon_sym_requires, + ACTIONS(7826), 1, anon_sym_LBRACK, - ACTIONS(8134), 1, + STATE(5017), 1, + sym_requires_clause, + ACTIONS(7824), 3, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [206658] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8398), 1, + anon_sym_LBRACK, + ACTIONS(8401), 1, anon_sym_EQ, - ACTIONS(8136), 1, + ACTIONS(8403), 1, anon_sym_DOT, - STATE(5219), 3, + STATE(5454), 3, sym_subscript_designator, sym_field_designator, aux_sym_initializer_pair_repeat1, - [182741] = 5, + [206676] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7181), 1, - anon_sym_LPAREN2, - ACTIONS(7679), 1, + ACTIONS(6752), 1, + anon_sym_requires, + ACTIONS(7830), 1, anon_sym_LBRACK, - STATE(4115), 1, - sym_parameter_list, - ACTIONS(7706), 3, + STATE(5112), 1, + sym_requires_clause, + ACTIONS(7828), 3, + anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - anon_sym_requires, - [182759] = 3, + [206694] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8140), 1, - anon_sym_LBRACK, - ACTIONS(8138), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(536), 1, + anon_sym_LBRACE, + ACTIONS(7526), 1, + anon_sym_try, + ACTIONS(8406), 1, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - [182773] = 5, + ACTIONS(8408), 1, + anon_sym_EQ, + STATE(938), 2, + sym_compound_statement, + sym_try_statement, + [206714] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7181), 1, - anon_sym_LPAREN2, - ACTIONS(7679), 1, + ACTIONS(6752), 1, + anon_sym_requires, + ACTIONS(6799), 1, anon_sym_LBRACK, - STATE(4115), 1, - sym_parameter_list, - ACTIONS(7702), 3, + STATE(5023), 1, + sym_requires_clause, + ACTIONS(6797), 3, + anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - anon_sym_requires, - [182791] = 6, + [206732] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(7300), 1, + ACTIONS(7423), 1, anon_sym_try, - ACTIONS(8142), 1, + ACTIONS(7720), 1, + anon_sym_LBRACE, + ACTIONS(8410), 1, anon_sym_SEMI, - ACTIONS(8144), 1, + ACTIONS(8412), 1, anon_sym_EQ, - STATE(982), 2, + STATE(2166), 2, sym_compound_statement, sym_try_statement, - [182811] = 6, + [206752] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7199), 1, + ACTIONS(7472), 1, anon_sym_try, - ACTIONS(7438), 1, + ACTIONS(7496), 1, anon_sym_LBRACE, - ACTIONS(8146), 1, + ACTIONS(8414), 1, anon_sym_SEMI, - ACTIONS(8148), 1, + ACTIONS(8416), 1, anon_sym_EQ, - STATE(1867), 2, + STATE(2360), 2, sym_compound_statement, sym_try_statement, - [182831] = 5, + [206772] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7181), 1, - anon_sym_LPAREN2, - ACTIONS(7679), 1, + ACTIONS(6565), 1, anon_sym_LBRACK, - STATE(4115), 1, - sym_parameter_list, - ACTIONS(7700), 3, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, + ACTIONS(6695), 1, anon_sym_requires, - [182849] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7181), 1, + STATE(5172), 1, + sym_requires_clause, + ACTIONS(6563), 3, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(7679), 1, - anon_sym_LBRACK, - STATE(4115), 1, - sym_parameter_list, - ACTIONS(7677), 3, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - anon_sym_requires, - [182867] = 5, + [206790] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7181), 1, + ACTIONS(4255), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7413), 1, anon_sym_LPAREN2, - ACTIONS(7679), 1, + ACTIONS(7514), 1, anon_sym_LBRACK, - STATE(4115), 1, + STATE(3679), 1, sym_parameter_list, - ACTIONS(7694), 3, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - anon_sym_requires, - [182885] = 5, + STATE(5035), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [206810] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7181), 1, - anon_sym_LPAREN2, - ACTIONS(7679), 1, - anon_sym_LBRACK, - STATE(4115), 1, - sym_parameter_list, - ACTIONS(7726), 3, - anon_sym_LBRACK_LBRACK, + ACTIONS(8418), 1, + anon_sym_COMMA, + STATE(5462), 1, + aux_sym_field_declaration_repeat1, + ACTIONS(8421), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_COLON, - anon_sym_requires, - [182903] = 6, + [206826] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(251), 1, anon_sym_LBRACE, - ACTIONS(7300), 1, + ACTIONS(7518), 1, anon_sym_try, - ACTIONS(8150), 1, + ACTIONS(8423), 1, anon_sym_SEMI, - ACTIONS(8152), 1, + ACTIONS(8425), 1, anon_sym_EQ, - STATE(1021), 2, + STATE(511), 2, sym_compound_statement, sym_try_statement, - [182923] = 5, + [206846] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7181), 1, - anon_sym_LPAREN2, - ACTIONS(7679), 1, + ACTIONS(8427), 1, anon_sym_LBRACK, - STATE(4115), 1, - sym_parameter_list, - ACTIONS(7724), 3, + ACTIONS(8429), 1, + anon_sym_EQ, + ACTIONS(8431), 1, + anon_sym_DOT, + STATE(5454), 3, + sym_subscript_designator, + sym_field_designator, + aux_sym_initializer_pair_repeat1, + [206864] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4255), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - anon_sym_requires, - [182941] = 6, + ACTIONS(7935), 1, + anon_sym_LBRACK, + ACTIONS(7933), 2, + anon_sym_RPAREN, + anon_sym_LPAREN2, + STATE(5055), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [206882] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7191), 1, - anon_sym_try, - ACTIONS(7228), 1, + ACTIONS(566), 1, anon_sym_LBRACE, - ACTIONS(8154), 1, + ACTIONS(7558), 1, + anon_sym_try, + ACTIONS(8433), 1, anon_sym_SEMI, - ACTIONS(8156), 1, + ACTIONS(8435), 1, anon_sym_EQ, - STATE(2035), 2, + STATE(1054), 2, sym_compound_statement, sym_try_statement, - [182961] = 3, + [206902] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8160), 1, - anon_sym_LBRACK, - ACTIONS(8158), 5, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(7413), 1, anon_sym_LPAREN2, - anon_sym_SEMI, + ACTIONS(7927), 1, + anon_sym_LBRACK, + STATE(4362), 1, + sym_parameter_list, + ACTIONS(7925), 3, anon_sym_LBRACK_LBRACK, - [182975] = 3, + anon_sym_COLON, + anon_sym_requires, + [206920] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8164), 1, - anon_sym_LBRACK, - ACTIONS(8162), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - [182989] = 3, + ACTIONS(7624), 1, + anon_sym_TILDE, + ACTIONS(8437), 1, + sym_identifier, + ACTIONS(8439), 1, + anon_sym_template, + STATE(2988), 3, + sym_template_method, + sym_destructor_name, + sym_dependent_field_identifier, + [206938] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8168), 1, + ACTIONS(6752), 1, + anon_sym_requires, + ACTIONS(6795), 1, anon_sym_LBRACK, - ACTIONS(8166), 5, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(5045), 1, + sym_requires_clause, + ACTIONS(6793), 3, anon_sym_LPAREN2, - anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [183003] = 4, + anon_sym_COLON, + [206956] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8170), 1, - anon_sym_COMMA, - STATE(5196), 1, - aux_sym_field_declaration_repeat1, - ACTIONS(8173), 4, + ACTIONS(7458), 1, + anon_sym_try, + ACTIONS(7706), 1, + anon_sym_LBRACE, + ACTIONS(8441), 1, anon_sym_SEMI, + ACTIONS(8443), 1, + anon_sym_EQ, + STATE(2261), 2, + sym_compound_statement, + sym_try_statement, + [206976] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7458), 1, + anon_sym_try, + ACTIONS(7706), 1, anon_sym_LBRACE, + ACTIONS(8445), 1, + anon_sym_SEMI, + ACTIONS(8447), 1, anon_sym_EQ, - anon_sym_COLON, - [183019] = 6, + STATE(2329), 2, + sym_compound_statement, + sym_try_statement, + [206996] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(536), 1, + ACTIONS(7640), 1, + anon_sym_TILDE, + ACTIONS(8449), 1, + sym_identifier, + ACTIONS(8451), 1, + anon_sym_template, + STATE(2505), 3, + sym_template_method, + sym_destructor_name, + sym_dependent_field_identifier, + [207014] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(7286), 1, + ACTIONS(7532), 1, anon_sym_try, - ACTIONS(8175), 1, + ACTIONS(8453), 1, anon_sym_SEMI, - ACTIONS(8177), 1, + ACTIONS(8455), 1, anon_sym_EQ, - STATE(929), 2, + STATE(1059), 2, sym_compound_statement, sym_try_statement, - [183039] = 6, + [207034] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(251), 1, + ACTIONS(566), 1, anon_sym_LBRACE, - ACTIONS(7248), 1, + ACTIONS(7558), 1, anon_sym_try, - ACTIONS(8179), 1, + ACTIONS(8457), 1, anon_sym_SEMI, - ACTIONS(8181), 1, + ACTIONS(8459), 1, anon_sym_EQ, - STATE(485), 2, + STATE(1043), 2, sym_compound_statement, sym_try_statement, - [183059] = 6, + [207054] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7199), 1, + ACTIONS(7423), 1, anon_sym_try, - ACTIONS(7438), 1, + ACTIONS(7720), 1, anon_sym_LBRACE, - ACTIONS(8183), 1, + ACTIONS(8461), 1, anon_sym_SEMI, - ACTIONS(8185), 1, + ACTIONS(8463), 1, anon_sym_EQ, - STATE(1807), 2, + STATE(2089), 2, sym_compound_statement, sym_try_statement, - [183079] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6050), 1, - anon_sym_requires, - ACTIONS(7645), 1, - anon_sym_LBRACK, - STATE(4849), 1, - sym_requires_clause, - ACTIONS(7643), 3, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [183097] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5129), 1, - anon_sym_LT, - ACTIONS(7667), 1, - anon_sym_LBRACK, - STATE(4900), 1, - sym_template_argument_list, - ACTIONS(7663), 3, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - [183115] = 5, + [207074] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3930), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7698), 1, - anon_sym_LBRACK, - ACTIONS(7696), 2, - anon_sym_RPAREN, - anon_sym_LPAREN2, - STATE(4792), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [183133] = 6, + ACTIONS(51), 1, + anon_sym_LBRACE, + ACTIONS(7532), 1, + anon_sym_try, + ACTIONS(8465), 1, + anon_sym_SEMI, + ACTIONS(8467), 1, + anon_sym_EQ, + STATE(988), 2, + sym_compound_statement, + sym_try_statement, + [207094] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(600), 1, - anon_sym_LBRACE, - ACTIONS(7262), 1, + ACTIONS(7472), 1, anon_sym_try, - ACTIONS(8187), 1, + ACTIONS(7496), 1, + anon_sym_LBRACE, + ACTIONS(8469), 1, anon_sym_SEMI, - ACTIONS(8189), 1, + ACTIONS(8471), 1, anon_sym_EQ, - STATE(971), 2, + STATE(2398), 2, sym_compound_statement, sym_try_statement, - [183153] = 5, + [207114] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7324), 1, + ACTIONS(7598), 1, anon_sym_TILDE, - ACTIONS(8191), 1, + ACTIONS(8473), 1, sym_identifier, - ACTIONS(8193), 1, + ACTIONS(8475), 1, anon_sym_template, - STATE(2621), 3, + STATE(2794), 3, sym_template_method, sym_destructor_name, sym_dependent_field_identifier, - [183171] = 5, + [207132] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5622), 1, + ACTIONS(8479), 1, anon_sym_LBRACK, - ACTIONS(6050), 1, - anon_sym_requires, - STATE(4842), 1, - sym_requires_clause, - ACTIONS(5620), 3, + ACTIONS(8477), 5, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [183189] = 5, + [207146] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5744), 1, + ACTIONS(8483), 1, anon_sym_LBRACK, - ACTIONS(5786), 1, - anon_sym_requires, - STATE(4893), 1, - sym_requires_clause, - ACTIONS(5742), 3, + ACTIONS(8481), 5, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [183207] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7334), 1, - anon_sym_TILDE, - ACTIONS(8195), 1, - sym_identifier, - ACTIONS(8197), 1, - anon_sym_template, - STATE(3052), 3, - sym_template_method, - sym_destructor_name, - sym_dependent_field_identifier, - [183225] = 6, + [207160] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(251), 1, + ACTIONS(536), 1, anon_sym_LBRACE, - ACTIONS(7248), 1, + ACTIONS(7526), 1, anon_sym_try, - ACTIONS(8199), 1, + ACTIONS(8485), 1, anon_sym_SEMI, - ACTIONS(8201), 1, + ACTIONS(8487), 1, anon_sym_EQ, - STATE(529), 2, + STATE(944), 2, sym_compound_statement, sym_try_statement, - [183245] = 3, + [207180] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8205), 1, + ACTIONS(7413), 1, + anon_sym_LPAREN2, + ACTIONS(7927), 1, anon_sym_LBRACK, - ACTIONS(8203), 5, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(4362), 1, + sym_parameter_list, + ACTIONS(7979), 3, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + anon_sym_requires, + [207198] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7413), 1, anon_sym_LPAREN2, - anon_sym_SEMI, + ACTIONS(7927), 1, + anon_sym_LBRACK, + STATE(4362), 1, + sym_parameter_list, + ACTIONS(7943), 3, anon_sym_LBRACK_LBRACK, - [183259] = 3, + anon_sym_COLON, + anon_sym_requires, + [207216] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8209), 1, + ACTIONS(8491), 1, anon_sym_LBRACK, - ACTIONS(8207), 5, + ACTIONS(8489), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [183273] = 5, + [207230] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5728), 1, - anon_sym_LBRACK, - ACTIONS(6050), 1, - anon_sym_requires, - STATE(4835), 1, - sym_requires_clause, - ACTIONS(5726), 3, + ACTIONS(7413), 1, anon_sym_LPAREN2, + ACTIONS(7927), 1, + anon_sym_LBRACK, + STATE(4362), 1, + sym_parameter_list, + ACTIONS(7939), 3, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [183291] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(600), 1, - anon_sym_LBRACE, - ACTIONS(7262), 1, - anon_sym_try, - ACTIONS(8211), 1, - anon_sym_SEMI, - ACTIONS(8213), 1, - anon_sym_EQ, - STATE(1031), 2, - sym_compound_statement, - sym_try_statement, - [183311] = 5, + anon_sym_requires, + [207248] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6050), 1, + ACTIONS(6695), 1, anon_sym_requires, - ACTIONS(7516), 1, + ACTIONS(7988), 1, anon_sym_LBRACK, - STATE(4780), 1, + STATE(5179), 1, sym_requires_clause, - ACTIONS(7514), 3, + ACTIONS(7986), 3, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [183329] = 5, + [207266] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6050), 1, + ACTIONS(7413), 1, + anon_sym_LPAREN2, + ACTIONS(7927), 1, + anon_sym_LBRACK, + STATE(4362), 1, + sym_parameter_list, + ACTIONS(7941), 3, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, anon_sym_requires, - ACTIONS(7522), 1, + [207284] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8495), 1, anon_sym_LBRACK, - STATE(4773), 1, - sym_requires_clause, - ACTIONS(7520), 3, + ACTIONS(8493), 5, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [183347] = 6, + [207298] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7222), 1, - anon_sym_try, - ACTIONS(7446), 1, + ACTIONS(251), 1, anon_sym_LBRACE, - ACTIONS(8215), 1, + ACTIONS(7518), 1, + anon_sym_try, + ACTIONS(8497), 1, anon_sym_SEMI, - ACTIONS(8217), 1, + ACTIONS(8499), 1, anon_sym_EQ, - STATE(2010), 2, + STATE(493), 2, sym_compound_statement, sym_try_statement, - [183367] = 5, + [207318] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6050), 1, - anon_sym_requires, - ACTIONS(6204), 1, - anon_sym_LBRACK, - STATE(4782), 1, - sym_requires_clause, - ACTIONS(6202), 3, + ACTIONS(7640), 1, + anon_sym_TILDE, + ACTIONS(8501), 1, + sym_identifier, + ACTIONS(8503), 1, + anon_sym_template, + STATE(2505), 3, + sym_template_method, + sym_destructor_name, + sym_dependent_field_identifier, + [207336] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7413), 1, anon_sym_LPAREN2, + ACTIONS(7927), 1, + anon_sym_LBRACK, + STATE(4362), 1, + sym_parameter_list, + ACTIONS(7951), 3, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [183385] = 5, + anon_sym_requires, + [207354] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6050), 1, - anon_sym_requires, - ACTIONS(6303), 1, - anon_sym_LBRACK, - STATE(4799), 1, - sym_requires_clause, - ACTIONS(6301), 3, + ACTIONS(7413), 1, anon_sym_LPAREN2, + ACTIONS(7927), 1, + anon_sym_LBRACK, + STATE(4362), 1, + sym_parameter_list, + ACTIONS(7949), 3, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [183403] = 5, + anon_sym_requires, + [207372] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7346), 1, - anon_sym_TILDE, - ACTIONS(8219), 1, - sym_identifier, - ACTIONS(8221), 1, - anon_sym_template, - STATE(2840), 3, - sym_template_method, - sym_destructor_name, - sym_dependent_field_identifier, - [183421] = 5, + ACTIONS(8507), 1, + anon_sym_LBRACK, + ACTIONS(8505), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + [207386] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8223), 1, + ACTIONS(5500), 1, + anon_sym_LT, + ACTIONS(7975), 1, anon_sym_LBRACK, - ACTIONS(8226), 1, - anon_sym_EQ, - ACTIONS(8228), 1, - anon_sym_DOT, - STATE(5219), 3, - sym_subscript_designator, - sym_field_designator, - aux_sym_initializer_pair_repeat1, - [183439] = 5, + STATE(5195), 1, + sym_template_argument_list, + ACTIONS(7971), 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + [207404] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5786), 1, - anon_sym_requires, - ACTIONS(7683), 1, + ACTIONS(6015), 1, anon_sym_LBRACK, - STATE(4913), 1, + ACTIONS(6752), 1, + anon_sym_requires, + STATE(5135), 1, sym_requires_clause, - ACTIONS(7681), 3, - anon_sym_RPAREN, + ACTIONS(6007), 3, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - [183457] = 6, + anon_sym_COLON, + [207422] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7222), 1, - anon_sym_try, - ACTIONS(7446), 1, - anon_sym_LBRACE, - ACTIONS(8231), 1, + ACTIONS(8511), 1, + anon_sym_LBRACK, + ACTIONS(8509), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - ACTIONS(8233), 1, - anon_sym_EQ, - STATE(1910), 2, - sym_compound_statement, - sym_try_statement, - [183477] = 5, + anon_sym_LBRACK_LBRACK, + [207436] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, + ACTIONS(3424), 1, anon_sym_COLON_COLON, - ACTIONS(5129), 1, + ACTIONS(5500), 1, anon_sym_LT, - STATE(5574), 1, + ACTIONS(8513), 1, + anon_sym_SEMI, + ACTIONS(8515), 1, + anon_sym_EQ, + STATE(3279), 1, sym_template_argument_list, - ACTIONS(8235), 2, - anon_sym_LPAREN2, - anon_sym_LBRACE, - [183494] = 6, + [207455] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, + ACTIONS(3424), 1, anon_sym_COLON_COLON, - ACTIONS(5129), 1, + ACTIONS(5500), 1, anon_sym_LT, - ACTIONS(8237), 1, + ACTIONS(8517), 1, anon_sym_SEMI, - ACTIONS(8239), 1, + ACTIONS(8519), 1, anon_sym_EQ, - STATE(2626), 1, + STATE(3279), 1, sym_template_argument_list, - [183513] = 5, + [207474] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7890), 1, + ACTIONS(8146), 1, anon_sym_LPAREN2, - ACTIONS(7892), 1, + ACTIONS(8148), 1, anon_sym_LBRACK, - STATE(4152), 1, + STATE(4348), 1, sym_parameter_list, - ACTIONS(7700), 2, - anon_sym_LBRACE, - anon_sym_requires, - [183530] = 6, + ACTIONS(8068), 2, + anon_sym_COMMA, + anon_sym_GT2, + [207491] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5470), 1, + anon_sym_LPAREN2, + ACTIONS(8523), 1, + anon_sym_COLON_COLON, + STATE(6557), 1, + sym_argument_list, + ACTIONS(8521), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [207508] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, + ACTIONS(3424), 1, anon_sym_COLON_COLON, - ACTIONS(5129), 1, + ACTIONS(5500), 1, anon_sym_LT, - ACTIONS(8241), 1, + ACTIONS(8525), 1, anon_sym_SEMI, - ACTIONS(8243), 1, + ACTIONS(8527), 1, anon_sym_EQ, - STATE(2626), 1, + STATE(3279), 1, sym_template_argument_list, - [183549] = 5, + [207527] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7890), 1, + ACTIONS(3424), 1, + anon_sym_COLON_COLON, + ACTIONS(5500), 1, + anon_sym_LT, + ACTIONS(8529), 1, + anon_sym_SEMI, + ACTIONS(8531), 1, + anon_sym_EQ, + STATE(3279), 1, + sym_template_argument_list, + [207546] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8146), 1, anon_sym_LPAREN2, - ACTIONS(7892), 1, + ACTIONS(8148), 1, anon_sym_LBRACK, - STATE(4152), 1, + STATE(4396), 1, sym_parameter_list, - ACTIONS(7702), 2, + ACTIONS(7925), 2, anon_sym_LBRACE, anon_sym_requires, - [183566] = 6, + [207563] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, + ACTIONS(8535), 2, + anon_sym_TILDE, anon_sym_COLON_COLON, - ACTIONS(5129), 1, - anon_sym_LT, - ACTIONS(8245), 1, - anon_sym_SEMI, - ACTIONS(8247), 1, - anon_sym_EQ, - STATE(2626), 1, - sym_template_argument_list, - [183585] = 5, + ACTIONS(8533), 3, + sym_identifier, + anon_sym_template, + anon_sym_operator, + [207576] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7890), 1, + ACTIONS(8146), 1, anon_sym_LPAREN2, - ACTIONS(7892), 1, + ACTIONS(8148), 1, anon_sym_LBRACK, - STATE(4152), 1, + STATE(4396), 1, sym_parameter_list, - ACTIONS(7706), 2, + ACTIONS(7951), 2, anon_sym_LBRACE, anon_sym_requires, - [183602] = 5, + [207593] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5567), 1, + ACTIONS(8146), 1, anon_sym_LPAREN2, - ACTIONS(8251), 1, - anon_sym_COLON_COLON, - STATE(6358), 1, - sym_argument_list, - ACTIONS(8249), 2, + ACTIONS(8148), 1, + anon_sym_LBRACK, + STATE(4337), 1, + sym_parameter_list, + ACTIONS(8068), 2, anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [183619] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8253), 1, - anon_sym_catch, - ACTIONS(2259), 2, - anon_sym_else, - anon_sym_while, - STATE(5239), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [183634] = 5, + anon_sym_RPAREN, + [207610] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7890), 1, + ACTIONS(8146), 1, anon_sym_LPAREN2, - ACTIONS(7892), 1, + ACTIONS(8148), 1, anon_sym_LBRACK, - STATE(4152), 1, + STATE(4396), 1, sym_parameter_list, - ACTIONS(7726), 2, + ACTIONS(7949), 2, anon_sym_LBRACE, anon_sym_requires, - [183651] = 5, + [207627] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5684), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5688), 1, - anon_sym_EQ, - ACTIONS(8255), 1, - sym_identifier, - ACTIONS(5686), 2, + ACTIONS(6535), 1, + sym_auto, + ACTIONS(6537), 1, + anon_sym_decltype, + STATE(3441), 1, + sym_decltype_auto, + ACTIONS(8537), 2, anon_sym_COMMA, anon_sym_GT2, - [183668] = 5, + [207644] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7890), 1, + ACTIONS(8146), 1, anon_sym_LPAREN2, - ACTIONS(7892), 1, + ACTIONS(8148), 1, anon_sym_LBRACK, - STATE(4152), 1, + STATE(4396), 1, sym_parameter_list, - ACTIONS(7724), 2, + ACTIONS(7943), 2, anon_sym_LBRACE, anon_sym_requires, - [183685] = 5, + [207661] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3424), 1, + anon_sym_COLON_COLON, + ACTIONS(5500), 1, + anon_sym_LT, + ACTIONS(8539), 1, + anon_sym_SEMI, + ACTIONS(8541), 1, + anon_sym_EQ, + STATE(3279), 1, + sym_template_argument_list, + [207680] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5700), 1, + ACTIONS(6535), 1, sym_auto, - ACTIONS(5702), 1, + ACTIONS(6537), 1, anon_sym_decltype, - STATE(3142), 1, + STATE(3441), 1, sym_decltype_auto, - ACTIONS(8257), 2, + ACTIONS(8543), 2, anon_sym_COMMA, anon_sym_GT2, - [183702] = 5, + [207697] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7890), 1, + ACTIONS(3424), 1, + anon_sym_COLON_COLON, + ACTIONS(5500), 1, + anon_sym_LT, + ACTIONS(8545), 1, + anon_sym_SEMI, + ACTIONS(8547), 1, + anon_sym_EQ, + STATE(3279), 1, + sym_template_argument_list, + [207716] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8551), 2, + anon_sym_TILDE, + anon_sym_COLON_COLON, + ACTIONS(8549), 3, + sym_identifier, + anon_sym_template, + anon_sym_operator, + [207729] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3424), 1, + anon_sym_COLON_COLON, + ACTIONS(5500), 1, + anon_sym_LT, + STATE(6095), 1, + sym_template_argument_list, + ACTIONS(8553), 2, + anon_sym_LPAREN2, + anon_sym_LBRACE, + [207746] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3424), 1, + anon_sym_COLON_COLON, + ACTIONS(5500), 1, + anon_sym_LT, + ACTIONS(8555), 1, + anon_sym_SEMI, + ACTIONS(8557), 1, + anon_sym_EQ, + STATE(3279), 1, + sym_template_argument_list, + [207765] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8146), 1, anon_sym_LPAREN2, - ACTIONS(7892), 1, + ACTIONS(8148), 1, anon_sym_LBRACK, - STATE(4073), 1, + STATE(4396), 1, sym_parameter_list, - ACTIONS(7776), 2, + ACTIONS(7979), 2, + anon_sym_LBRACE, + anon_sym_requires, + [207782] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6517), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6521), 1, + anon_sym_EQ, + ACTIONS(8559), 1, + sym_identifier, + ACTIONS(6519), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [183719] = 5, + anon_sym_GT2, + [207799] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7890), 1, + ACTIONS(8561), 1, + anon_sym_catch, + ACTIONS(2407), 2, + anon_sym_else, + anon_sym_while, + STATE(5522), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [207814] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8146), 1, anon_sym_LPAREN2, - ACTIONS(7892), 1, + ACTIONS(8148), 1, anon_sym_LBRACK, - STATE(4152), 1, + STATE(4396), 1, sym_parameter_list, - ACTIONS(7677), 2, + ACTIONS(7941), 2, anon_sym_LBRACE, anon_sym_requires, - [183736] = 3, + [207831] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8261), 2, - anon_sym_TILDE, - anon_sym_COLON_COLON, - ACTIONS(8259), 3, + ACTIONS(8146), 1, + anon_sym_LPAREN2, + ACTIONS(8148), 1, + anon_sym_LBRACK, + STATE(4396), 1, + sym_parameter_list, + ACTIONS(7939), 2, + anon_sym_LBRACE, + anon_sym_requires, + [207848] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8563), 2, + anon_sym_class, + anon_sym_typename, + STATE(6586), 3, + sym_type_parameter_declaration, + sym_variadic_type_parameter_declaration, + sym_optional_type_parameter_declaration, + [207861] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8565), 1, + anon_sym_catch, + ACTIONS(2413), 2, + anon_sym_else, + anon_sym_while, + STATE(5522), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [207876] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4012), 1, + anon_sym_LBRACE, + ACTIONS(4014), 1, + anon_sym_COLON, + STATE(2070), 1, + sym_field_declaration_list, + STATE(6574), 1, + sym_base_class_clause, + [207892] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8568), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8570), 1, + anon_sym_COMMA, + ACTIONS(8572), 1, + anon_sym_LBRACE, + STATE(5861), 1, + aux_sym_base_class_clause_repeat1, + [207908] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8574), 1, sym_identifier, - anon_sym_template, - anon_sym_operator, - [183749] = 5, + ACTIONS(8576), 1, + anon_sym_COMMA, + ACTIONS(8578), 1, + anon_sym_RBRACE, + STATE(6060), 1, + sym_enumerator, + [207924] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7890), 1, + ACTIONS(4014), 1, + anon_sym_COLON, + ACTIONS(4065), 1, + anon_sym_LBRACE, + STATE(2442), 1, + sym_field_declaration_list, + STATE(6305), 1, + sym_base_class_clause, + [207940] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3911), 1, + anon_sym_LBRACE, + ACTIONS(8580), 1, + anon_sym_COLON_COLON, + ACTIONS(8582), 1, + anon_sym_EQ, + STATE(1000), 1, + sym_declaration_list, + [207956] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7492), 1, + anon_sym_LBRACE, + STATE(5254), 1, + sym_compound_statement, + ACTIONS(7899), 2, anon_sym_LPAREN2, - ACTIONS(7892), 1, anon_sym_LBRACK, - STATE(4152), 1, - sym_parameter_list, - ACTIONS(7694), 2, + [207970] = 5, + ACTIONS(7181), 1, + sym_comment, + ACTIONS(8584), 1, + anon_sym_DQUOTE, + ACTIONS(8586), 1, + aux_sym_string_literal_token1, + ACTIONS(8588), 1, + sym_escape_sequence, + STATE(5548), 1, + aux_sym_string_literal_repeat1, + [207986] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4014), 1, + anon_sym_COLON, + ACTIONS(6990), 1, + anon_sym_LBRACE, + STATE(4530), 1, + sym_field_declaration_list, + STATE(6231), 1, + sym_base_class_clause, + [208002] = 5, + ACTIONS(7181), 1, + sym_comment, + ACTIONS(8586), 1, + aux_sym_string_literal_token1, + ACTIONS(8588), 1, + sym_escape_sequence, + ACTIONS(8590), 1, + anon_sym_DQUOTE, + STATE(5548), 1, + aux_sym_string_literal_repeat1, + [208018] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4014), 1, + anon_sym_COLON, + ACTIONS(4065), 1, + anon_sym_LBRACE, + STATE(2443), 1, + sym_field_declaration_list, + STATE(6301), 1, + sym_base_class_clause, + [208034] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4014), 1, + anon_sym_COLON, + ACTIONS(5739), 1, + anon_sym_LBRACE, + STATE(4054), 1, + sym_field_declaration_list, + STATE(6503), 1, + sym_base_class_clause, + [208050] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4014), 1, + anon_sym_COLON, + ACTIONS(5739), 1, + anon_sym_LBRACE, + STATE(4060), 1, + sym_field_declaration_list, + STATE(6499), 1, + sym_base_class_clause, + [208066] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4014), 1, + anon_sym_COLON, + ACTIONS(4065), 1, + anon_sym_LBRACE, + STATE(2445), 1, + sym_field_declaration_list, + STATE(6294), 1, + sym_base_class_clause, + [208082] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4014), 1, + anon_sym_COLON, + ACTIONS(5739), 1, + anon_sym_LBRACE, + STATE(4057), 1, + sym_field_declaration_list, + STATE(6497), 1, + sym_base_class_clause, + [208098] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4014), 1, + anon_sym_COLON, + ACTIONS(4417), 1, + anon_sym_LBRACE, + STATE(2845), 1, + sym_field_declaration_list, + STATE(6598), 1, + sym_base_class_clause, + [208114] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4014), 1, + anon_sym_COLON, + ACTIONS(5739), 1, + anon_sym_LBRACE, + STATE(4053), 1, + sym_field_declaration_list, + STATE(6496), 1, + sym_base_class_clause, + [208130] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4014), 1, + anon_sym_COLON, + ACTIONS(5739), 1, + anon_sym_LBRACE, + STATE(4037), 1, + sym_field_declaration_list, + STATE(6489), 1, + sym_base_class_clause, + [208146] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1985), 1, anon_sym_LBRACE, - anon_sym_requires, - [183766] = 4, + ACTIONS(7692), 1, + anon_sym_COLON, + STATE(5995), 1, + sym_compound_statement, + STATE(6483), 1, + sym_field_initializer_list, + [208162] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8263), 1, - anon_sym_catch, - ACTIONS(2265), 2, - anon_sym_else, - anon_sym_while, - STATE(5239), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [183781] = 3, + ACTIONS(4014), 1, + anon_sym_COLON, + ACTIONS(5739), 1, + anon_sym_LBRACE, + STATE(4061), 1, + sym_field_declaration_list, + STATE(6486), 1, + sym_base_class_clause, + [208178] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8268), 2, - anon_sym_TILDE, - anon_sym_COLON_COLON, - ACTIONS(8266), 3, - sym_identifier, - anon_sym_template, - anon_sym_operator, - [183794] = 6, + ACTIONS(5840), 1, + anon_sym_COMMA, + ACTIONS(8592), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8594), 1, + anon_sym_GT2, + STATE(5921), 1, + aux_sym_template_argument_list_repeat1, + [208194] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, + ACTIONS(3424), 1, anon_sym_COLON_COLON, - ACTIONS(5129), 1, + ACTIONS(5500), 1, anon_sym_LT, - ACTIONS(8270), 1, + ACTIONS(8596), 1, anon_sym_SEMI, - ACTIONS(8272), 1, - anon_sym_EQ, - STATE(2626), 1, + STATE(3279), 1, sym_template_argument_list, - [183813] = 6, + [208210] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, - anon_sym_COLON_COLON, - ACTIONS(5129), 1, - anon_sym_LT, - ACTIONS(8274), 1, - anon_sym_SEMI, - ACTIONS(8276), 1, - anon_sym_EQ, - STATE(2626), 1, - sym_template_argument_list, - [183832] = 6, + ACTIONS(4014), 1, + anon_sym_COLON, + ACTIONS(4195), 1, + anon_sym_LBRACE, + STATE(2663), 1, + sym_field_declaration_list, + STATE(6130), 1, + sym_base_class_clause, + [208226] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, - anon_sym_COLON_COLON, - ACTIONS(5129), 1, - anon_sym_LT, - ACTIONS(8278), 1, - anon_sym_SEMI, - ACTIONS(8280), 1, - anon_sym_EQ, - STATE(2626), 1, - sym_template_argument_list, - [183851] = 5, + ACTIONS(4014), 1, + anon_sym_COLON, + ACTIONS(4417), 1, + anon_sym_LBRACE, + STATE(2846), 1, + sym_field_declaration_list, + STATE(6600), 1, + sym_base_class_clause, + [208242] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5700), 1, - sym_auto, - ACTIONS(5702), 1, - anon_sym_decltype, - STATE(3142), 1, - sym_decltype_auto, - ACTIONS(8282), 2, + ACTIONS(5840), 1, anon_sym_COMMA, + ACTIONS(8592), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8598), 1, anon_sym_GT2, - [183868] = 6, + STATE(5881), 1, + aux_sym_template_argument_list_repeat1, + [208258] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, + ACTIONS(4014), 1, + anon_sym_COLON, + ACTIONS(4065), 1, + anon_sym_LBRACE, + STATE(2410), 1, + sym_field_declaration_list, + STATE(6318), 1, + sym_base_class_clause, + [208274] = 5, + ACTIONS(7181), 1, + sym_comment, + ACTIONS(8600), 1, + anon_sym_DQUOTE, + ACTIONS(8602), 1, + aux_sym_string_literal_token1, + ACTIONS(8605), 1, + sym_escape_sequence, + STATE(5548), 1, + aux_sym_string_literal_repeat1, + [208290] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4014), 1, + anon_sym_COLON, + ACTIONS(4065), 1, + anon_sym_LBRACE, + STATE(2447), 1, + sym_field_declaration_list, + STATE(6292), 1, + sym_base_class_clause, + [208306] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3424), 1, anon_sym_COLON_COLON, - ACTIONS(5129), 1, + ACTIONS(5500), 1, anon_sym_LT, - ACTIONS(8284), 1, + ACTIONS(8608), 1, anon_sym_SEMI, - ACTIONS(8286), 1, - anon_sym_EQ, - STATE(2626), 1, + STATE(3279), 1, sym_template_argument_list, - [183887] = 5, + [208322] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7890), 1, - anon_sym_LPAREN2, - ACTIONS(7892), 1, - anon_sym_LBRACK, - STATE(4091), 1, - sym_parameter_list, - ACTIONS(7776), 2, + ACTIONS(5840), 1, anon_sym_COMMA, + ACTIONS(8592), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8610), 1, anon_sym_GT2, - [183904] = 3, + STATE(6015), 1, + aux_sym_template_argument_list_repeat1, + [208338] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8288), 2, - anon_sym_class, - anon_sym_typename, - STATE(6122), 3, - sym_type_parameter_declaration, - sym_variadic_type_parameter_declaration, - sym_optional_type_parameter_declaration, - [183917] = 5, + ACTIONS(5840), 1, + anon_sym_COMMA, + ACTIONS(8592), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8612), 1, + anon_sym_GT2, + STATE(5941), 1, + aux_sym_template_argument_list_repeat1, + [208354] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6829), 1, + ACTIONS(4014), 1, + anon_sym_COLON, + ACTIONS(4065), 1, anon_sym_LBRACE, - ACTIONS(8290), 1, - anon_sym_LPAREN2, - STATE(3316), 1, - sym_requirement_seq, - STATE(6142), 1, - sym_requires_parameter_list, - [183933] = 4, + STATE(2408), 1, + sym_field_declaration_list, + STATE(6322), 1, + sym_base_class_clause, + [208370] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5840), 1, + anon_sym_COMMA, + ACTIONS(8592), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8614), 1, + anon_sym_GT2, + STATE(5880), 1, + aux_sym_template_argument_list_repeat1, + [208386] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7234), 1, + ACTIONS(4014), 1, + anon_sym_COLON, + ACTIONS(4065), 1, anon_sym_LBRACE, - STATE(3062), 1, - sym_compound_statement, - ACTIONS(7536), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [183947] = 5, + STATE(2401), 1, + sym_field_declaration_list, + STATE(6325), 1, + sym_base_class_clause, + [208402] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4156), 1, + ACTIONS(4014), 1, + anon_sym_COLON, + ACTIONS(4195), 1, anon_sym_LBRACE, - ACTIONS(4158), 1, + STATE(2622), 1, + sym_field_declaration_list, + STATE(6193), 1, + sym_base_class_clause, + [208418] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4014), 1, anon_sym_COLON, - STATE(2227), 1, + ACTIONS(6990), 1, + anon_sym_LBRACE, + STATE(4527), 1, sym_field_declaration_list, - STATE(5950), 1, + STATE(6230), 1, sym_base_class_clause, - [183963] = 5, + [208434] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4156), 1, + ACTIONS(4012), 1, anon_sym_LBRACE, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - STATE(2228), 1, + STATE(2101), 1, sym_field_declaration_list, - STATE(5952), 1, + STATE(6607), 1, sym_base_class_clause, - [183979] = 5, + [208450] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(5141), 1, + ACTIONS(4417), 1, anon_sym_LBRACE, - STATE(3144), 1, + STATE(2850), 1, sym_field_declaration_list, - STATE(6166), 1, + STATE(6602), 1, sym_base_class_clause, - [183995] = 4, + [208466] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3403), 1, + anon_sym_LT, + ACTIONS(8616), 1, + sym_identifier, + STATE(3256), 1, + sym_template_type, + STATE(5521), 1, + sym_template_parameter_list, + [208482] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8574), 1, + sym_identifier, + ACTIONS(8618), 1, + anon_sym_COMMA, + ACTIONS(8620), 1, + anon_sym_RBRACE, + STATE(5926), 1, + sym_enumerator, + [208498] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7294), 1, + ACTIONS(7560), 1, anon_sym_LBRACE, - STATE(5009), 1, + STATE(3800), 1, sym_compound_statement, - ACTIONS(7536), 2, + ACTIONS(7899), 2, anon_sym_LPAREN2, anon_sym_LBRACK, - [184009] = 5, + [208512] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4156), 1, - anon_sym_LBRACE, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - STATE(2244), 1, + ACTIONS(4417), 1, + anon_sym_LBRACE, + STATE(2851), 1, sym_field_declaration_list, - STATE(5999), 1, + STATE(6604), 1, sym_base_class_clause, - [184025] = 5, + [208528] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8292), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8294), 1, - anon_sym_COMMA, - ACTIONS(8296), 1, - anon_sym_LBRACE, - STATE(5595), 1, - aux_sym_base_class_clause_repeat1, - [184041] = 4, + ACTIONS(3403), 1, + anon_sym_LT, + ACTIONS(8616), 1, + sym_identifier, + STATE(1066), 1, + sym_template_parameter_list, + STATE(3256), 1, + sym_template_type, + [208544] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7250), 1, + ACTIONS(1985), 1, anon_sym_LBRACE, - STATE(3644), 1, + STATE(3334), 1, sym_compound_statement, - ACTIONS(7536), 2, + ACTIONS(7899), 2, anon_sym_LPAREN2, anon_sym_LBRACK, - [184055] = 5, + [208558] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6849), 1, + ACTIONS(4014), 1, + anon_sym_COLON, + ACTIONS(4065), 1, anon_sym_LBRACE, - ACTIONS(8290), 1, - anon_sym_LPAREN2, - STATE(3673), 1, - sym_requirement_seq, - STATE(6028), 1, - sym_requires_parameter_list, - [184071] = 5, + STATE(2281), 1, + sym_field_declaration_list, + STATE(6256), 1, + sym_base_class_clause, + [208574] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8294), 1, - anon_sym_COMMA, - ACTIONS(8298), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8300), 1, + ACTIONS(4012), 1, anon_sym_LBRACE, - STATE(5554), 1, - aux_sym_base_class_clause_repeat1, - [184087] = 5, + ACTIONS(4014), 1, + anon_sym_COLON, + STATE(2108), 1, + sym_field_declaration_list, + STATE(6613), 1, + sym_base_class_clause, + [208590] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8302), 1, + ACTIONS(7496), 1, + anon_sym_LBRACE, + STATE(1900), 1, + sym_compound_statement, + ACTIONS(7899), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [208604] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8574), 1, sym_identifier, - ACTIONS(8304), 1, + ACTIONS(8622), 1, anon_sym_COMMA, - ACTIONS(8306), 1, + ACTIONS(8624), 1, anon_sym_RBRACE, - STATE(5777), 1, + STATE(6020), 1, sym_enumerator, - [184103] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3831), 1, - anon_sym_LBRACE, - ACTIONS(8308), 1, - anon_sym_COLON_COLON, - ACTIONS(8310), 1, - anon_sym_EQ, - STATE(988), 1, - sym_declaration_list, - [184119] = 5, + [208620] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(5504), 1, + ACTIONS(4195), 1, anon_sym_LBRACE, - STATE(3353), 1, + STATE(2626), 1, sym_field_declaration_list, - STATE(5825), 1, + STATE(6188), 1, sym_base_class_clause, - [184135] = 5, + [208636] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1845), 1, - anon_sym_LBRACE, - ACTIONS(7422), 1, + ACTIONS(4014), 1, anon_sym_COLON, - STATE(5710), 1, - sym_compound_statement, - STATE(6258), 1, - sym_field_initializer_list, - [184151] = 5, + ACTIONS(4417), 1, + anon_sym_LBRACE, + STATE(2714), 1, + sym_field_declaration_list, + STATE(6554), 1, + sym_base_class_clause, + [208652] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(5504), 1, + ACTIONS(5739), 1, anon_sym_LBRACE, - STATE(3334), 1, + STATE(4030), 1, sym_field_declaration_list, - STATE(5901), 1, + STATE(6476), 1, sym_base_class_clause, - [184167] = 5, + [208668] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5941), 1, + ACTIONS(8626), 1, + sym_identifier, + ACTIONS(8628), 3, anon_sym_COMMA, - ACTIONS(8312), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8314), 1, + anon_sym_RPAREN, anon_sym_GT2, - STATE(5785), 1, - aux_sym_template_argument_list_repeat1, - [184183] = 5, + [208680] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(5504), 1, + ACTIONS(5739), 1, anon_sym_LBRACE, - STATE(3336), 1, + STATE(3992), 1, sym_field_declaration_list, - STATE(5918), 1, + STATE(6474), 1, sym_base_class_clause, - [184199] = 5, + [208696] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(6747), 1, + ACTIONS(4065), 1, anon_sym_LBRACE, - STATE(4343), 1, + STATE(2449), 1, sym_field_declaration_list, - STATE(5855), 1, + STATE(6290), 1, sym_base_class_clause, - [184215] = 5, + [208712] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(6747), 1, + ACTIONS(5739), 1, anon_sym_LBRACE, - STATE(4341), 1, + STATE(4036), 1, sym_field_declaration_list, - STATE(5853), 1, + STATE(6473), 1, sym_base_class_clause, - [184231] = 5, - ACTIONS(6923), 1, - sym_comment, - ACTIONS(8316), 1, - anon_sym_DQUOTE, - ACTIONS(8318), 1, - aux_sym_string_literal_token1, - ACTIONS(8320), 1, - sym_escape_sequence, - STATE(5296), 1, - aux_sym_string_literal_repeat1, - [184247] = 5, + [208728] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3309), 1, - anon_sym_LT, - ACTIONS(8322), 1, - sym_identifier, - STATE(615), 1, - sym_template_parameter_list, - STATE(2676), 1, - sym_template_type, - [184263] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(6747), 1, + ACTIONS(4065), 1, anon_sym_LBRACE, - STATE(4339), 1, + STATE(2450), 1, sym_field_declaration_list, - STATE(5850), 1, + STATE(6288), 1, sym_base_class_clause, - [184279] = 5, + [208744] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4156), 1, + ACTIONS(4012), 1, anon_sym_LBRACE, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - STATE(2211), 1, + STATE(2076), 1, sym_field_declaration_list, - STATE(5996), 1, + STATE(6581), 1, sym_base_class_clause, - [184295] = 5, + [208760] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(6747), 1, + ACTIONS(5739), 1, anon_sym_LBRACE, - STATE(4197), 1, + STATE(4038), 1, sym_field_declaration_list, - STATE(5848), 1, + STATE(6470), 1, sym_base_class_clause, - [184311] = 5, + [208776] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(6747), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - STATE(4331), 1, + STATE(3534), 1, sym_field_declaration_list, - STATE(5845), 1, + STATE(6606), 1, sym_base_class_clause, - [184327] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3309), 1, - anon_sym_LT, - ACTIONS(8322), 1, - sym_identifier, - STATE(2676), 1, - sym_template_type, - STATE(5247), 1, - sym_template_parameter_list, - [184343] = 5, + [208792] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(6747), 1, + ACTIONS(5739), 1, anon_sym_LBRACE, - STATE(4330), 1, + STATE(4042), 1, sym_field_declaration_list, - STATE(5843), 1, + STATE(6469), 1, sym_base_class_clause, - [184359] = 5, - ACTIONS(6923), 1, - sym_comment, - ACTIONS(8318), 1, - aux_sym_string_literal_token1, - ACTIONS(8320), 1, - sym_escape_sequence, - ACTIONS(8324), 1, - anon_sym_DQUOTE, - STATE(5296), 1, - aux_sym_string_literal_repeat1, - [184375] = 5, + [208808] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4156), 1, - anon_sym_LBRACE, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - STATE(2286), 1, + ACTIONS(5494), 1, + anon_sym_LBRACE, + STATE(3500), 1, sym_field_declaration_list, - STATE(6002), 1, + STATE(6491), 1, sym_base_class_clause, - [184391] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3735), 1, - anon_sym_COLON_COLON, - ACTIONS(5129), 1, - anon_sym_LT, - ACTIONS(8326), 1, - anon_sym_SEMI, - STATE(2626), 1, - sym_template_argument_list, - [184407] = 4, + [208824] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7294), 1, + ACTIONS(4014), 1, + anon_sym_COLON, + ACTIONS(6990), 1, anon_sym_LBRACE, - STATE(5011), 1, - sym_compound_statement, - ACTIONS(7536), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [184421] = 5, + STATE(4526), 1, + sym_field_declaration_list, + STATE(6227), 1, + sym_base_class_clause, + [208840] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8302), 1, - sym_identifier, - ACTIONS(8328), 1, - anon_sym_COMMA, - ACTIONS(8330), 1, - anon_sym_RBRACE, - STATE(5717), 1, - sym_enumerator, - [184437] = 2, + ACTIONS(4014), 1, + anon_sym_COLON, + ACTIONS(5739), 1, + anon_sym_LBRACE, + STATE(4043), 1, + sym_field_declaration_list, + STATE(6467), 1, + sym_base_class_clause, + [208856] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8332), 4, - anon_sym_SEMI, + ACTIONS(4014), 1, + anon_sym_COLON, + ACTIONS(5494), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [184447] = 5, + STATE(3520), 1, + sym_field_declaration_list, + STATE(6616), 1, + sym_base_class_clause, + [208872] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8290), 1, - anon_sym_LPAREN2, - ACTIONS(8334), 1, + ACTIONS(4012), 1, anon_sym_LBRACE, - STATE(4976), 1, - sym_requirement_seq, - STATE(5805), 1, - sym_requires_parameter_list, - [184463] = 5, - ACTIONS(6923), 1, + ACTIONS(4014), 1, + anon_sym_COLON, + STATE(2074), 1, + sym_field_declaration_list, + STATE(6578), 1, + sym_base_class_clause, + [208888] = 5, + ACTIONS(7181), 1, sym_comment, - ACTIONS(8336), 1, + ACTIONS(8630), 1, anon_sym_LF, - ACTIONS(8338), 1, + ACTIONS(8632), 1, anon_sym_LPAREN, - ACTIONS(8340), 1, + ACTIONS(8634), 1, sym_preproc_arg, - STATE(6020), 1, + STATE(6328), 1, sym_preproc_params, - [184479] = 5, + [208904] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1845), 1, - anon_sym_LBRACE, - ACTIONS(7422), 1, + ACTIONS(4014), 1, anon_sym_COLON, - STATE(5627), 1, - sym_compound_statement, - STATE(6109), 1, - sym_field_initializer_list, - [184495] = 5, + ACTIONS(4417), 1, + anon_sym_LBRACE, + STATE(2796), 1, + sym_field_declaration_list, + STATE(6553), 1, + sym_base_class_clause, + [208920] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON, - ACTIONS(6747), 1, + ACTIONS(4012), 1, anon_sym_LBRACE, - STATE(4274), 1, + ACTIONS(4014), 1, + anon_sym_COLON, + STATE(2078), 1, sym_field_declaration_list, - STATE(5820), 1, + STATE(6583), 1, sym_base_class_clause, - [184511] = 5, + [208936] = 5, + ACTIONS(7181), 1, + sym_comment, + ACTIONS(8636), 1, + anon_sym_DQUOTE, + ACTIONS(8638), 1, + aux_sym_string_literal_token1, + ACTIONS(8640), 1, + sym_escape_sequence, + STATE(5649), 1, + aux_sym_string_literal_repeat1, + [208952] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8290), 1, + ACTIONS(8642), 1, anon_sym_LPAREN2, - ACTIONS(8342), 1, + ACTIONS(8644), 1, anon_sym_LBRACE, - STATE(1752), 1, + STATE(5009), 1, sym_requirement_seq, - STATE(6135), 1, + STATE(6199), 1, sym_requires_parameter_list, - [184527] = 5, + [208968] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7560), 1, + anon_sym_LBRACE, + STATE(3721), 1, + sym_compound_statement, + ACTIONS(7899), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [208982] = 5, + ACTIONS(7181), 1, + sym_comment, + ACTIONS(8586), 1, + aux_sym_string_literal_token1, + ACTIONS(8588), 1, + sym_escape_sequence, + ACTIONS(8646), 1, + anon_sym_DQUOTE, + STATE(5548), 1, + aux_sym_string_literal_repeat1, + [208998] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5840), 1, + anon_sym_COMMA, + ACTIONS(8592), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8648), 1, + anon_sym_GT2, + STATE(5987), 1, + aux_sym_template_argument_list_repeat1, + [209014] = 5, + ACTIONS(7181), 1, + sym_comment, + ACTIONS(8650), 1, + anon_sym_DQUOTE, + ACTIONS(8652), 1, + aux_sym_string_literal_token1, + ACTIONS(8654), 1, + sym_escape_sequence, + STATE(5531), 1, + aux_sym_string_literal_repeat1, + [209030] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(6747), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - STATE(4264), 1, + STATE(3518), 1, sym_field_declaration_list, - STATE(5816), 1, + STATE(6617), 1, sym_base_class_clause, - [184543] = 2, + [209046] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8332), 4, - anon_sym_SEMI, + ACTIONS(7496), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [184553] = 5, + STATE(1913), 1, + sym_compound_statement, + ACTIONS(7899), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [209060] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(6747), 1, + ACTIONS(4417), 1, anon_sym_LBRACE, - STATE(4202), 1, + STATE(2809), 1, sym_field_declaration_list, - STATE(5812), 1, + STATE(6119), 1, sym_base_class_clause, - [184569] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5567), 1, - anon_sym_LPAREN2, - STATE(6180), 1, - sym_argument_list, - ACTIONS(8344), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [184583] = 4, + [209076] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7234), 1, + ACTIONS(1985), 1, anon_sym_LBRACE, - STATE(3024), 1, + STATE(3357), 1, sym_compound_statement, - ACTIONS(7536), 2, + ACTIONS(7899), 2, anon_sym_LPAREN2, anon_sym_LBRACK, - [184597] = 5, + [209090] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3831), 1, + ACTIONS(4014), 1, + anon_sym_COLON, + ACTIONS(4417), 1, anon_sym_LBRACE, - ACTIONS(8346), 1, - sym_identifier, - STATE(911), 1, - sym_declaration_list, - STATE(5709), 1, - sym_namespace_definition_name, - [184613] = 5, + STATE(2819), 1, + sym_field_declaration_list, + STATE(6550), 1, + sym_base_class_clause, + [209106] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8302), 1, - sym_identifier, - ACTIONS(8348), 1, - anon_sym_COMMA, - ACTIONS(8350), 1, - anon_sym_RBRACE, - STATE(5797), 1, - sym_enumerator, - [184629] = 5, - ACTIONS(6923), 1, - sym_comment, - ACTIONS(8352), 1, - anon_sym_DQUOTE, - ACTIONS(8354), 1, - aux_sym_string_literal_token1, - ACTIONS(8356), 1, - sym_escape_sequence, - STATE(5268), 1, - aux_sym_string_literal_repeat1, - [184645] = 4, + ACTIONS(4012), 1, + anon_sym_LBRACE, + ACTIONS(4014), 1, + anon_sym_COLON, + STATE(2072), 1, + sym_field_declaration_list, + STATE(6576), 1, + sym_base_class_clause, + [209122] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1845), 1, + ACTIONS(7560), 1, anon_sym_LBRACE, - STATE(3301), 1, + STATE(3648), 1, sym_compound_statement, - ACTIONS(7536), 2, + ACTIONS(7899), 2, anon_sym_LPAREN2, anon_sym_LBRACK, - [184659] = 5, - ACTIONS(6923), 1, + [209136] = 5, + ACTIONS(7181), 1, sym_comment, - ACTIONS(8358), 1, - anon_sym_DQUOTE, - ACTIONS(8360), 1, - aux_sym_string_literal_token1, - ACTIONS(8363), 1, - sym_escape_sequence, - STATE(5296), 1, - aux_sym_string_literal_repeat1, - [184675] = 5, + ACTIONS(8632), 1, + anon_sym_LPAREN, + ACTIONS(8656), 1, + anon_sym_LF, + ACTIONS(8658), 1, + sym_preproc_arg, + STATE(6621), 1, + sym_preproc_params, + [209152] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5941), 1, - anon_sym_COMMA, - ACTIONS(8312), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8366), 1, - anon_sym_GT2, - STATE(5586), 1, - aux_sym_template_argument_list_repeat1, - [184691] = 5, + ACTIONS(4014), 1, + anon_sym_COLON, + ACTIONS(4195), 1, + anon_sym_LBRACE, + STATE(2606), 1, + sym_field_declaration_list, + STATE(6186), 1, + sym_base_class_clause, + [209168] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3309), 1, + ACTIONS(3424), 1, + anon_sym_COLON_COLON, + ACTIONS(5500), 1, anon_sym_LT, - ACTIONS(8322), 1, - sym_identifier, - STATE(736), 1, - sym_template_parameter_list, - STATE(2676), 1, - sym_template_type, - [184707] = 5, + ACTIONS(8660), 1, + anon_sym_SEMI, + STATE(3279), 1, + sym_template_argument_list, + [209184] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1845), 1, + ACTIONS(4014), 1, + anon_sym_COLON, + ACTIONS(5494), 1, anon_sym_LBRACE, - ACTIONS(7422), 1, + STATE(3466), 1, + sym_field_declaration_list, + STATE(6526), 1, + sym_base_class_clause, + [209200] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4014), 1, anon_sym_COLON, - STATE(5538), 1, - sym_compound_statement, - STATE(6279), 1, - sym_field_initializer_list, - [184723] = 5, + ACTIONS(5739), 1, + anon_sym_LBRACE, + STATE(4029), 1, + sym_field_declaration_list, + STATE(6463), 1, + sym_base_class_clause, + [209216] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3309), 1, - anon_sym_LT, - ACTIONS(8322), 1, - sym_identifier, - STATE(704), 1, - sym_template_parameter_list, - STATE(2676), 1, - sym_template_type, - [184739] = 5, - ACTIONS(6923), 1, + ACTIONS(4014), 1, + anon_sym_COLON, + ACTIONS(4417), 1, + anon_sym_LBRACE, + STATE(2835), 1, + sym_field_declaration_list, + STATE(6596), 1, + sym_base_class_clause, + [209232] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(8368), 1, + ACTIONS(1985), 1, + anon_sym_LBRACE, + ACTIONS(7692), 1, + anon_sym_COLON, + STATE(6111), 1, + sym_compound_statement, + STATE(6687), 1, + sym_field_initializer_list, + [209248] = 5, + ACTIONS(7181), 1, + sym_comment, + ACTIONS(8662), 1, anon_sym_DQUOTE, - ACTIONS(8370), 1, + ACTIONS(8664), 1, aux_sym_string_literal_token1, - ACTIONS(8372), 1, + ACTIONS(8666), 1, sym_escape_sequence, - STATE(5349), 1, + STATE(5662), 1, aux_sym_string_literal_repeat1, - [184755] = 5, + [209264] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(5504), 1, + ACTIONS(5739), 1, anon_sym_LBRACE, - STATE(3384), 1, + STATE(4025), 1, sym_field_declaration_list, - STATE(5954), 1, + STATE(6461), 1, sym_base_class_clause, - [184771] = 5, + [209280] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(8374), 1, + ACTIONS(8574), 1, sym_identifier, - STATE(939), 1, - sym_declaration_list, - STATE(5611), 1, - sym_namespace_definition_name, - [184787] = 5, + ACTIONS(8668), 1, + anon_sym_COMMA, + ACTIONS(8670), 1, + anon_sym_RBRACE, + STATE(5931), 1, + sym_enumerator, + [209296] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(5504), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - STATE(3402), 1, + STATE(3528), 1, sym_field_declaration_list, - STATE(6124), 1, + STATE(6624), 1, sym_base_class_clause, - [184803] = 5, + [209312] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1845), 1, + ACTIONS(3909), 1, anon_sym_LBRACE, - ACTIONS(7422), 1, - anon_sym_COLON, - STATE(5654), 1, - sym_compound_statement, - STATE(6244), 1, - sym_field_initializer_list, - [184819] = 5, + ACTIONS(8672), 1, + sym_identifier, + STATE(488), 1, + sym_declaration_list, + STATE(6070), 1, + sym_namespace_definition_name, + [209328] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(5504), 1, + ACTIONS(5739), 1, anon_sym_LBRACE, - STATE(3411), 1, + STATE(4058), 1, sym_field_declaration_list, - STATE(6138), 1, + STATE(6460), 1, sym_base_class_clause, - [184835] = 5, + [209344] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(5504), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - STATE(3409), 1, + STATE(3460), 1, sym_field_declaration_list, - STATE(6141), 1, + STATE(6535), 1, sym_base_class_clause, - [184851] = 5, - ACTIONS(6923), 1, - sym_comment, - ACTIONS(8338), 1, - anon_sym_LPAREN, - ACTIONS(8376), 1, - anon_sym_LF, - ACTIONS(8378), 1, - sym_preproc_arg, - STATE(6377), 1, - sym_preproc_params, - [184867] = 5, + [209360] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(5504), 1, + ACTIONS(6990), 1, anon_sym_LBRACE, - STATE(3406), 1, + STATE(4521), 1, sym_field_declaration_list, - STATE(6162), 1, + STATE(6226), 1, sym_base_class_clause, - [184883] = 5, + [209376] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(4211), 1, + ACTIONS(4417), 1, anon_sym_LBRACE, - STATE(2448), 1, + STATE(2795), 1, sym_field_declaration_list, - STATE(6089), 1, + STATE(6544), 1, sym_base_class_clause, - [184899] = 5, + [209392] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3913), 1, + anon_sym_LBRACE, + ACTIONS(8674), 1, + sym_identifier, + STATE(1006), 1, + sym_declaration_list, + STATE(6037), 1, + sym_namespace_definition_name, + [209408] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(5504), 1, + ACTIONS(6990), 1, anon_sym_LBRACE, - STATE(3398), 1, + STATE(4562), 1, sym_field_declaration_list, - STATE(6176), 1, + STATE(6237), 1, sym_base_class_clause, - [184915] = 5, + [209424] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(5141), 1, + ACTIONS(4417), 1, anon_sym_LBRACE, - STATE(3124), 1, + STATE(2858), 1, sym_field_declaration_list, - STATE(6249), 1, + STATE(6541), 1, sym_base_class_clause, - [184931] = 5, - ACTIONS(6923), 1, + [209440] = 5, + ACTIONS(7181), 1, sym_comment, - ACTIONS(8338), 1, - anon_sym_LPAREN, - ACTIONS(8380), 1, - anon_sym_LF, - ACTIONS(8382), 1, - sym_preproc_arg, - STATE(5992), 1, - sym_preproc_params, - [184947] = 5, + ACTIONS(8586), 1, + aux_sym_string_literal_token1, + ACTIONS(8588), 1, + sym_escape_sequence, + ACTIONS(8676), 1, + anon_sym_DQUOTE, + STATE(5548), 1, + aux_sym_string_literal_repeat1, + [209456] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3309), 1, + ACTIONS(3403), 1, anon_sym_LT, - ACTIONS(8322), 1, + ACTIONS(8616), 1, sym_identifier, - STATE(808), 1, + STATE(1069), 1, sym_template_parameter_list, - STATE(2676), 1, + STATE(3256), 1, sym_template_type, - [184963] = 5, + [209472] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON, - ACTIONS(4211), 1, + ACTIONS(7087), 1, anon_sym_LBRACE, - STATE(2445), 1, - sym_field_declaration_list, - STATE(5802), 1, - sym_base_class_clause, - [184979] = 5, - ACTIONS(3), 1, + ACTIONS(8642), 1, + anon_sym_LPAREN2, + STATE(3726), 1, + sym_requirement_seq, + STATE(6521), 1, + sym_requires_parameter_list, + [209488] = 5, + ACTIONS(7181), 1, sym_comment, - ACTIONS(1845), 1, - anon_sym_LBRACE, - ACTIONS(7422), 1, - anon_sym_COLON, - STATE(5726), 1, - sym_compound_statement, - STATE(6303), 1, - sym_field_initializer_list, - [184995] = 5, + ACTIONS(8678), 1, + anon_sym_DQUOTE, + ACTIONS(8680), 1, + aux_sym_string_literal_token1, + ACTIONS(8682), 1, + sym_escape_sequence, + STATE(5529), 1, + aux_sym_string_literal_repeat1, + [209504] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(4316), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - STATE(2733), 1, + STATE(3456), 1, sym_field_declaration_list, - STATE(5924), 1, + STATE(6538), 1, sym_base_class_clause, - [185011] = 5, + [209520] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(4211), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - STATE(2442), 1, + STATE(3535), 1, sym_field_declaration_list, - STATE(6091), 1, + STATE(6627), 1, sym_base_class_clause, - [185027] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5941), 1, - anon_sym_COMMA, - ACTIONS(8312), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8384), 1, - anon_sym_GT2, - STATE(5665), 1, - aux_sym_template_argument_list_repeat1, - [185043] = 5, + [209536] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(4316), 1, + ACTIONS(6990), 1, anon_sym_LBRACE, - STATE(2724), 1, + STATE(4520), 1, sym_field_declaration_list, - STATE(5926), 1, + STATE(6223), 1, sym_base_class_clause, - [185059] = 5, + [209552] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON, - ACTIONS(4316), 1, + ACTIONS(7077), 1, anon_sym_LBRACE, - STATE(2705), 1, - sym_field_declaration_list, - STATE(5931), 1, - sym_base_class_clause, - [185075] = 4, + ACTIONS(8642), 1, + anon_sym_LPAREN2, + STATE(3031), 1, + sym_requirement_seq, + STATE(6429), 1, + sym_requires_parameter_list, + [209568] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7252), 1, + ACTIONS(7496), 1, anon_sym_LBRACE, - STATE(2564), 1, + STATE(1894), 1, sym_compound_statement, - ACTIONS(7536), 2, + ACTIONS(7899), 2, anon_sym_LPAREN2, anon_sym_LBRACK, - [185089] = 5, + [209582] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8302), 1, - sym_identifier, - ACTIONS(8386), 1, - anon_sym_COMMA, - ACTIONS(8388), 1, - anon_sym_RBRACE, - STATE(5618), 1, - sym_enumerator, - [185105] = 5, + ACTIONS(7494), 1, + anon_sym_LBRACE, + STATE(4990), 1, + sym_compound_statement, + ACTIONS(7899), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [209596] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, + ACTIONS(3424), 1, anon_sym_COLON_COLON, - ACTIONS(5129), 1, + ACTIONS(5500), 1, anon_sym_LT, - ACTIONS(8390), 1, + ACTIONS(8684), 1, anon_sym_SEMI, - STATE(2626), 1, + STATE(3279), 1, sym_template_argument_list, - [185121] = 4, + [209612] = 5, + ACTIONS(7181), 1, + sym_comment, + ACTIONS(8632), 1, + anon_sym_LPAREN, + ACTIONS(8686), 1, + anon_sym_LF, + ACTIONS(8688), 1, + sym_preproc_arg, + STATE(6697), 1, + sym_preproc_params, + [209628] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8146), 1, + anon_sym_LPAREN2, + ACTIONS(8148), 1, + anon_sym_LBRACK, + ACTIONS(8690), 1, + anon_sym_RPAREN, + STATE(4337), 1, + sym_parameter_list, + [209644] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7254), 1, + ACTIONS(4012), 1, anon_sym_LBRACE, - STATE(4739), 1, + ACTIONS(4014), 1, + anon_sym_COLON, + STATE(2068), 1, + sym_field_declaration_list, + STATE(6573), 1, + sym_base_class_clause, + [209660] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3913), 1, + anon_sym_LBRACE, + ACTIONS(8580), 1, + anon_sym_COLON_COLON, + ACTIONS(8692), 1, + anon_sym_EQ, + STATE(1017), 1, + sym_declaration_list, + [209676] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4014), 1, + anon_sym_COLON, + ACTIONS(6990), 1, + anon_sym_LBRACE, + STATE(4531), 1, + sym_field_declaration_list, + STATE(6234), 1, + sym_base_class_clause, + [209692] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7520), 1, + anon_sym_LBRACE, + STATE(3085), 1, sym_compound_statement, - ACTIONS(7536), 2, + ACTIONS(7899), 2, anon_sym_LPAREN2, anon_sym_LBRACK, - [185135] = 5, + [209706] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, - anon_sym_COLON_COLON, - ACTIONS(5129), 1, - anon_sym_LT, - ACTIONS(8392), 1, + ACTIONS(8694), 4, anon_sym_SEMI, - STATE(2626), 1, - sym_template_argument_list, - [185151] = 5, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [209716] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4014), 1, + anon_sym_COLON, + ACTIONS(4417), 1, + anon_sym_LBRACE, + STATE(2830), 1, + sym_field_declaration_list, + STATE(6591), 1, + sym_base_class_clause, + [209732] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, + ACTIONS(3424), 1, anon_sym_COLON_COLON, - ACTIONS(5129), 1, - anon_sym_LT, - ACTIONS(8394), 1, + ACTIONS(3442), 1, anon_sym_SEMI, - STATE(2626), 1, + ACTIONS(5500), 1, + anon_sym_LT, + STATE(1828), 1, sym_template_argument_list, - [185167] = 5, + [209748] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1985), 1, + anon_sym_LBRACE, + ACTIONS(7692), 1, + anon_sym_COLON, + STATE(5854), 1, + sym_compound_statement, + STATE(6443), 1, + sym_field_initializer_list, + [209764] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5840), 1, + anon_sym_COMMA, + ACTIONS(8592), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8696), 1, + anon_sym_GT2, + STATE(6010), 1, + aux_sym_template_argument_list_repeat1, + [209780] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7520), 1, + anon_sym_LBRACE, + STATE(3100), 1, + sym_compound_statement, + ACTIONS(7899), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [209794] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(4316), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - STATE(2642), 1, + STATE(3493), 1, sym_field_declaration_list, - STATE(5932), 1, + STATE(6631), 1, sym_base_class_clause, - [185183] = 5, + [209810] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7492), 1, + anon_sym_LBRACE, + STATE(5243), 1, + sym_compound_statement, + ACTIONS(7899), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [209824] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8574), 1, + sym_identifier, + ACTIONS(8698), 1, + anon_sym_COMMA, + ACTIONS(8700), 1, + anon_sym_RBRACE, + STATE(6099), 1, + sym_enumerator, + [209840] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(4316), 1, + ACTIONS(4265), 1, anon_sym_LBRACE, - STATE(2643), 1, + STATE(2804), 1, sym_field_declaration_list, - STATE(5936), 1, + STATE(6713), 1, sym_base_class_clause, - [185199] = 5, + [209856] = 5, + ACTIONS(7181), 1, + sym_comment, + ACTIONS(8586), 1, + aux_sym_string_literal_token1, + ACTIONS(8588), 1, + sym_escape_sequence, + ACTIONS(8702), 1, + anon_sym_DQUOTE, + STATE(5548), 1, + aux_sym_string_literal_repeat1, + [209872] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(4316), 1, + ACTIONS(4265), 1, anon_sym_LBRACE, - STATE(2646), 1, + STATE(2778), 1, sym_field_declaration_list, - STATE(5938), 1, + STATE(6722), 1, sym_base_class_clause, - [185215] = 5, + [209888] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(4262), 1, + ACTIONS(4265), 1, anon_sym_LBRACE, - STATE(2328), 1, + STATE(2736), 1, sym_field_declaration_list, - STATE(6316), 1, + STATE(6728), 1, sym_base_class_clause, - [185231] = 5, + [209904] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7500), 1, + anon_sym_LBRACE, + STATE(1894), 1, + sym_compound_statement, + ACTIONS(7899), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [209918] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(4262), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - STATE(2374), 1, + STATE(3480), 1, sym_field_declaration_list, - STATE(6342), 1, + STATE(6501), 1, sym_base_class_clause, - [185247] = 5, + [209934] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8694), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [209944] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(4316), 1, + ACTIONS(4417), 1, anon_sym_LBRACE, - STATE(2647), 1, + STATE(2913), 1, sym_field_declaration_list, - STATE(5941), 1, + STATE(6632), 1, sym_base_class_clause, - [185263] = 5, + [209960] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(4316), 1, + ACTIONS(4195), 1, anon_sym_LBRACE, - STATE(2652), 1, + STATE(2694), 1, sym_field_declaration_list, - STATE(5899), 1, + STATE(6165), 1, sym_base_class_clause, - [185279] = 5, + [209976] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3424), 1, + anon_sym_COLON_COLON, + ACTIONS(5500), 1, + anon_sym_LT, + ACTIONS(8704), 1, + anon_sym_SEMI, + STATE(3279), 1, + sym_template_argument_list, + [209992] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3403), 1, + anon_sym_LT, + ACTIONS(8616), 1, + sym_identifier, + STATE(1064), 1, + sym_template_parameter_list, + STATE(3256), 1, + sym_template_type, + [210008] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5840), 1, + anon_sym_COMMA, + ACTIONS(8592), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8706), 1, + anon_sym_GT2, + STATE(5972), 1, + aux_sym_template_argument_list_repeat1, + [210024] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(4316), 1, + ACTIONS(4065), 1, anon_sym_LBRACE, - STATE(2653), 1, + STATE(2258), 1, sym_field_declaration_list, - STATE(5957), 1, + STATE(6254), 1, sym_base_class_clause, - [185295] = 5, + [210040] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(4211), 1, + ACTIONS(4195), 1, anon_sym_LBRACE, - STATE(2403), 1, + STATE(2687), 1, sym_field_declaration_list, - STATE(6108), 1, + STATE(6163), 1, sym_base_class_clause, - [185311] = 5, + [210056] = 5, + ACTIONS(7181), 1, + sym_comment, + ACTIONS(8586), 1, + aux_sym_string_literal_token1, + ACTIONS(8588), 1, + sym_escape_sequence, + ACTIONS(8708), 1, + anon_sym_DQUOTE, + STATE(5548), 1, + aux_sym_string_literal_repeat1, + [210072] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3403), 1, + anon_sym_LT, + ACTIONS(8616), 1, + sym_identifier, + STATE(1062), 1, + sym_template_parameter_list, + STATE(3256), 1, + sym_template_type, + [210088] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3424), 1, + anon_sym_COLON_COLON, + ACTIONS(5500), 1, + anon_sym_LT, + ACTIONS(8710), 1, + anon_sym_SEMI, + STATE(3279), 1, + sym_template_argument_list, + [210104] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7045), 1, + anon_sym_LBRACE, + ACTIONS(8642), 1, + anon_sym_LPAREN2, + STATE(2537), 1, + sym_requirement_seq, + STATE(6681), 1, + sym_requires_parameter_list, + [210120] = 5, + ACTIONS(7181), 1, + sym_comment, + ACTIONS(8712), 1, + anon_sym_DQUOTE, + ACTIONS(8714), 1, + aux_sym_string_literal_token1, + ACTIONS(8716), 1, + sym_escape_sequence, + STATE(5709), 1, + aux_sym_string_literal_repeat1, + [210136] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7107), 1, + anon_sym_LBRACE, + ACTIONS(8642), 1, + anon_sym_LPAREN2, + STATE(3099), 1, + sym_requirement_seq, + STATE(6446), 1, + sym_requires_parameter_list, + [210152] = 5, + ACTIONS(7181), 1, + sym_comment, + ACTIONS(8632), 1, + anon_sym_LPAREN, + ACTIONS(8718), 1, + anon_sym_LF, + ACTIONS(8720), 1, + sym_preproc_arg, + STATE(6593), 1, + sym_preproc_params, + [210168] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(4211), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - STATE(2402), 1, + STATE(3482), 1, sym_field_declaration_list, - STATE(6111), 1, + STATE(6488), 1, sym_base_class_clause, - [185327] = 5, + [210184] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3403), 1, + anon_sym_LT, + ACTIONS(8616), 1, + sym_identifier, + STATE(1063), 1, + sym_template_parameter_list, + STATE(3256), 1, + sym_template_type, + [210200] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3907), 1, + anon_sym_LBRACE, + ACTIONS(8580), 1, + anon_sym_COLON_COLON, + ACTIONS(8722), 1, + anon_sym_EQ, + STATE(912), 1, + sym_declaration_list, + [210216] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(6747), 1, + ACTIONS(4195), 1, anon_sym_LBRACE, - STATE(4308), 1, + STATE(2583), 1, sym_field_declaration_list, - STATE(5867), 1, + STATE(6157), 1, sym_base_class_clause, - [185343] = 4, + [210232] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7234), 1, + ACTIONS(4014), 1, + anon_sym_COLON, + ACTIONS(4195), 1, anon_sym_LBRACE, - STATE(3002), 1, - sym_compound_statement, - ACTIONS(7536), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [185357] = 5, + STATE(2692), 1, + sym_field_declaration_list, + STATE(6155), 1, + sym_base_class_clause, + [210248] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(4211), 1, + ACTIONS(4417), 1, anon_sym_LBRACE, - STATE(2399), 1, + STATE(2765), 1, sym_field_declaration_list, - STATE(6112), 1, + STATE(6626), 1, sym_base_class_clause, - [185373] = 5, + [210264] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(4211), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - STATE(2398), 1, + STATE(3489), 1, sym_field_declaration_list, - STATE(6114), 1, + STATE(6720), 1, sym_base_class_clause, - [185389] = 5, - ACTIONS(6923), 1, - sym_comment, - ACTIONS(8338), 1, - anon_sym_LPAREN, - ACTIONS(8396), 1, - anon_sym_LF, - ACTIONS(8398), 1, - sym_preproc_arg, - STATE(5857), 1, - sym_preproc_params, - [185405] = 4, + [210280] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7254), 1, + ACTIONS(7520), 1, anon_sym_LBRACE, - STATE(4732), 1, + STATE(3116), 1, sym_compound_statement, - ACTIONS(7536), 2, + ACTIONS(7899), 2, anon_sym_LPAREN2, anon_sym_LBRACK, - [185419] = 5, + [210294] = 5, + ACTIONS(7181), 1, + sym_comment, + ACTIONS(8632), 1, + anon_sym_LPAREN, + ACTIONS(8724), 1, + anon_sym_LF, + ACTIONS(8726), 1, + sym_preproc_arg, + STATE(6425), 1, + sym_preproc_params, + [210310] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(4211), 1, + ACTIONS(6990), 1, anon_sym_LBRACE, - STATE(2395), 1, + STATE(4554), 1, sym_field_declaration_list, - STATE(6115), 1, + STATE(6236), 1, sym_base_class_clause, - [185435] = 5, + [210326] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4156), 1, - anon_sym_LBRACE, - ACTIONS(4158), 1, - anon_sym_COLON, - STATE(2224), 1, - sym_field_declaration_list, - STATE(5948), 1, - sym_base_class_clause, - [185451] = 5, + ACTIONS(3403), 1, + anon_sym_LT, + ACTIONS(8616), 1, + sym_identifier, + STATE(1065), 1, + sym_template_parameter_list, + STATE(3256), 1, + sym_template_type, + [210342] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON, - ACTIONS(4211), 1, + ACTIONS(5840), 1, + anon_sym_COMMA, + ACTIONS(8592), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8728), 1, + anon_sym_GT2, + STATE(6000), 1, + aux_sym_template_argument_list_repeat1, + [210358] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1469), 1, anon_sym_LBRACE, - STATE(2394), 1, - sym_field_declaration_list, - STATE(6117), 1, - sym_base_class_clause, - [185467] = 5, + ACTIONS(5470), 1, + anon_sym_LPAREN2, + STATE(6078), 2, + sym_argument_list, + sym_initializer_list, + [210372] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, + ACTIONS(3909), 1, + anon_sym_LBRACE, + ACTIONS(8580), 1, anon_sym_COLON_COLON, - ACTIONS(5129), 1, - anon_sym_LT, - ACTIONS(8400), 1, - anon_sym_SEMI, - STATE(2626), 1, - sym_template_argument_list, - [185483] = 5, + ACTIONS(8730), 1, + anon_sym_EQ, + STATE(503), 1, + sym_declaration_list, + [210388] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(1985), 1, + anon_sym_LBRACE, + ACTIONS(7692), 1, anon_sym_COLON, - ACTIONS(6747), 1, + STATE(5821), 1, + sym_compound_statement, + STATE(6360), 1, + sym_field_initializer_list, + [210404] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8570), 1, + anon_sym_COMMA, + ACTIONS(8732), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8734), 1, anon_sym_LBRACE, - STATE(4252), 1, - sym_field_declaration_list, - STATE(5868), 1, - sym_base_class_clause, - [185499] = 5, - ACTIONS(6923), 1, + STATE(6041), 1, + aux_sym_base_class_clause_repeat1, + [210420] = 5, + ACTIONS(7181), 1, sym_comment, - ACTIONS(8318), 1, + ACTIONS(8586), 1, aux_sym_string_literal_token1, - ACTIONS(8320), 1, + ACTIONS(8588), 1, sym_escape_sequence, - ACTIONS(8402), 1, + ACTIONS(8736), 1, anon_sym_DQUOTE, - STATE(5296), 1, + STATE(5548), 1, aux_sym_string_literal_repeat1, - [185515] = 5, + [210436] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5840), 1, + anon_sym_COMMA, + ACTIONS(8592), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8738), 1, + anon_sym_GT2, + STATE(6033), 1, + aux_sym_template_argument_list_repeat1, + [210452] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4014), 1, + anon_sym_COLON, + ACTIONS(4065), 1, + anon_sym_LBRACE, + STATE(2274), 1, + sym_field_declaration_list, + STATE(6255), 1, + sym_base_class_clause, + [210468] = 5, + ACTIONS(7181), 1, + sym_comment, + ACTIONS(8632), 1, + anon_sym_LPAREN, + ACTIONS(8740), 1, + anon_sym_LF, + ACTIONS(8742), 1, + sym_preproc_arg, + STATE(6475), 1, + sym_preproc_params, + [210484] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(5504), 1, + ACTIONS(5739), 1, anon_sym_LBRACE, - STATE(3361), 1, + STATE(4005), 1, sym_field_declaration_list, - STATE(6259), 1, + STATE(6510), 1, sym_base_class_clause, - [185531] = 5, + [210500] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8146), 1, + anon_sym_LPAREN2, + ACTIONS(8148), 1, + anon_sym_LBRACK, + ACTIONS(8744), 1, + anon_sym_RPAREN, + STATE(4337), 1, + sym_parameter_list, + [210516] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5941), 1, + ACTIONS(8574), 1, + sym_identifier, + ACTIONS(8746), 1, anon_sym_COMMA, - ACTIONS(8312), 1, + ACTIONS(8748), 1, + anon_sym_RBRACE, + STATE(5845), 1, + sym_enumerator, + [210532] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5840), 1, + anon_sym_COMMA, + ACTIONS(8592), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8404), 1, + ACTIONS(8750), 1, anon_sym_GT2, - STATE(5739), 1, + STATE(6089), 1, aux_sym_template_argument_list_repeat1, - [185547] = 5, + [210548] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8302), 1, - sym_identifier, - ACTIONS(8406), 1, + ACTIONS(5840), 1, anon_sym_COMMA, - ACTIONS(8408), 1, - anon_sym_RBRACE, - STATE(5776), 1, - sym_enumerator, - [185563] = 5, + ACTIONS(8592), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8752), 1, + anon_sym_GT2, + STATE(5980), 1, + aux_sym_template_argument_list_repeat1, + [210564] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4014), 1, + anon_sym_COLON, + ACTIONS(4924), 1, + anon_sym_LBRACE, + STATE(3152), 1, + sym_field_declaration_list, + STATE(6421), 1, + sym_base_class_clause, + [210580] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4014), 1, + anon_sym_COLON, + ACTIONS(4195), 1, + anon_sym_LBRACE, + STATE(2689), 1, + sym_field_declaration_list, + STATE(6152), 1, + sym_base_class_clause, + [210596] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(5504), 1, + ACTIONS(4924), 1, anon_sym_LBRACE, - STATE(3354), 1, + STATE(3154), 1, sym_field_declaration_list, - STATE(6281), 1, + STATE(6419), 1, sym_base_class_clause, - [185579] = 5, + [210612] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7500), 1, + anon_sym_LBRACE, + STATE(1900), 1, + sym_compound_statement, + ACTIONS(7899), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [210626] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(4316), 1, + ACTIONS(4924), 1, anon_sym_LBRACE, - STATE(2672), 1, + STATE(3157), 1, sym_field_declaration_list, - STATE(5969), 1, + STATE(6417), 1, sym_base_class_clause, - [185595] = 5, + [210642] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(5504), 1, + ACTIONS(5739), 1, anon_sym_LBRACE, - STATE(3348), 1, + STATE(4016), 1, sym_field_declaration_list, - STATE(6208), 1, + STATE(6512), 1, sym_base_class_clause, - [185611] = 5, + [210658] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(4316), 1, + ACTIONS(4265), 1, anon_sym_LBRACE, - STATE(2677), 1, + STATE(2800), 1, sym_field_declaration_list, - STATE(5973), 1, + STATE(6633), 1, sym_base_class_clause, - [185627] = 5, + [210674] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(4316), 1, + ACTIONS(4265), 1, anon_sym_LBRACE, - STATE(2680), 1, + STATE(2890), 1, sym_field_declaration_list, - STATE(5975), 1, + STATE(6677), 1, sym_base_class_clause, - [185643] = 5, + [210690] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON, - ACTIONS(5504), 1, + ACTIONS(4012), 1, anon_sym_LBRACE, - STATE(3346), 1, + ACTIONS(4014), 1, + anon_sym_COLON, + STATE(2019), 1, sym_field_declaration_list, - STATE(6314), 1, + STATE(6558), 1, sym_base_class_clause, - [185659] = 5, + [210706] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(4316), 1, + ACTIONS(6990), 1, anon_sym_LBRACE, - STATE(2682), 1, + STATE(4540), 1, sym_field_declaration_list, - STATE(5978), 1, + STATE(6214), 1, sym_base_class_clause, - [185675] = 5, + [210722] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(5504), 1, + ACTIONS(4417), 1, anon_sym_LBRACE, - STATE(3342), 1, + STATE(2917), 1, sym_field_declaration_list, - STATE(6326), 1, + STATE(6485), 1, sym_base_class_clause, - [185691] = 5, + [210738] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(4316), 1, + ACTIONS(4265), 1, anon_sym_LBRACE, - STATE(2685), 1, + STATE(2899), 1, sym_field_declaration_list, - STATE(5986), 1, + STATE(6678), 1, sym_base_class_clause, - [185707] = 5, + [210754] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(4316), 1, + ACTIONS(4417), 1, anon_sym_LBRACE, - STATE(2686), 1, + STATE(2844), 1, sym_field_declaration_list, - STATE(5987), 1, + STATE(6634), 1, sym_base_class_clause, - [185723] = 5, + [210770] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(5504), 1, + ACTIONS(4195), 1, anon_sym_LBRACE, - STATE(3341), 1, + STATE(2621), 1, sym_field_declaration_list, - STATE(6330), 1, + STATE(6150), 1, sym_base_class_clause, - [185739] = 5, + [210786] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3825), 1, + ACTIONS(7562), 1, anon_sym_LBRACE, - ACTIONS(8308), 1, - anon_sym_COLON_COLON, - ACTIONS(8410), 1, - anon_sym_EQ, - STATE(1033), 1, - sym_declaration_list, - [185755] = 5, + STATE(2831), 1, + sym_compound_statement, + ACTIONS(7899), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [210800] = 5, + ACTIONS(7181), 1, + sym_comment, + ACTIONS(8586), 1, + aux_sym_string_literal_token1, + ACTIONS(8588), 1, + sym_escape_sequence, + ACTIONS(8754), 1, + anon_sym_DQUOTE, + STATE(5548), 1, + aux_sym_string_literal_repeat1, + [210816] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(6747), 1, + ACTIONS(4417), 1, anon_sym_LBRACE, - STATE(4236), 1, + STATE(2896), 1, sym_field_declaration_list, - STATE(5871), 1, + STATE(6479), 1, sym_base_class_clause, - [185771] = 5, + [210832] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4156), 1, - anon_sym_LBRACE, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - STATE(2216), 1, + ACTIONS(5739), 1, + anon_sym_LBRACE, + STATE(4008), 1, sym_field_declaration_list, - STATE(5947), 1, + STATE(6514), 1, sym_base_class_clause, - [185787] = 5, + [210848] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6805), 1, + ACTIONS(4012), 1, anon_sym_LBRACE, - ACTIONS(8290), 1, - anon_sym_LPAREN2, - STATE(2793), 1, - sym_requirement_seq, - STATE(6349), 1, - sym_requires_parameter_list, - [185803] = 5, + ACTIONS(4014), 1, + anon_sym_COLON, + STATE(2022), 1, + sym_field_declaration_list, + STATE(6559), 1, + sym_base_class_clause, + [210864] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4156), 1, + ACTIONS(4012), 1, anon_sym_LBRACE, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - STATE(2292), 1, + STATE(2105), 1, sym_field_declaration_list, - STATE(5945), 1, + STATE(6610), 1, + sym_base_class_clause, + [210880] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4014), 1, + anon_sym_COLON, + ACTIONS(4417), 1, + anon_sym_LBRACE, + STATE(2874), 1, + sym_field_declaration_list, + STATE(6464), 1, sym_base_class_clause, - [185819] = 4, + [210896] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7254), 1, + ACTIONS(7502), 1, anon_sym_LBRACE, - STATE(4737), 1, + STATE(2480), 1, sym_compound_statement, - ACTIONS(7536), 2, + ACTIONS(7899), 2, anon_sym_LPAREN2, anon_sym_LBRACK, - [185833] = 5, + [210910] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8574), 1, + sym_identifier, + ACTIONS(8756), 1, + anon_sym_COMMA, + ACTIONS(8758), 1, + anon_sym_RBRACE, + STATE(5905), 1, + sym_enumerator, + [210926] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(4446), 1, + ACTIONS(6990), 1, anon_sym_LBRACE, - STATE(2921), 1, + STATE(4504), 1, sym_field_declaration_list, - STATE(6175), 1, + STATE(6212), 1, sym_base_class_clause, - [185849] = 5, + [210942] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8574), 1, + sym_identifier, + ACTIONS(8760), 1, + anon_sym_COMMA, + ACTIONS(8762), 1, + anon_sym_RBRACE, + STATE(5872), 1, + sym_enumerator, + [210958] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3403), 1, + anon_sym_LT, + ACTIONS(8616), 1, + sym_identifier, + STATE(1068), 1, + sym_template_parameter_list, + STATE(3256), 1, + sym_template_type, + [210974] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6839), 1, + ACTIONS(7067), 1, anon_sym_LBRACE, - ACTIONS(8290), 1, + ACTIONS(8642), 1, anon_sym_LPAREN2, - STATE(3048), 1, + STATE(2775), 1, sym_requirement_seq, - STATE(5829), 1, + STATE(6603), 1, sym_requires_parameter_list, - [185865] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4156), 1, - anon_sym_LBRACE, - ACTIONS(4158), 1, - anon_sym_COLON, - STATE(2215), 1, - sym_field_declaration_list, - STATE(5944), 1, - sym_base_class_clause, - [185881] = 5, - ACTIONS(6923), 1, + [210990] = 5, + ACTIONS(7181), 1, sym_comment, - ACTIONS(8412), 1, + ACTIONS(8764), 1, anon_sym_DQUOTE, - ACTIONS(8414), 1, + ACTIONS(8766), 1, aux_sym_string_literal_token1, - ACTIONS(8416), 1, + ACTIONS(8768), 1, sym_escape_sequence, - STATE(5276), 1, + STATE(5622), 1, aux_sym_string_literal_repeat1, - [185897] = 5, - ACTIONS(6923), 1, + [211006] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(8318), 1, - aux_sym_string_literal_token1, - ACTIONS(8320), 1, - sym_escape_sequence, - ACTIONS(8418), 1, - anon_sym_DQUOTE, - STATE(5296), 1, - aux_sym_string_literal_repeat1, - [185913] = 5, + ACTIONS(4014), 1, + anon_sym_COLON, + ACTIONS(6990), 1, + anon_sym_LBRACE, + STATE(4546), 1, + sym_field_declaration_list, + STATE(6235), 1, + sym_base_class_clause, + [211022] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(8642), 1, + anon_sym_LPAREN2, + ACTIONS(8770), 1, + anon_sym_LBRACE, + STATE(1919), 1, + sym_requirement_seq, + STATE(6331), 1, + sym_requires_parameter_list, + [211038] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(4316), 1, + ACTIONS(6990), 1, anon_sym_LBRACE, - STATE(2755), 1, + STATE(4500), 1, sym_field_declaration_list, - STATE(6137), 1, + STATE(6209), 1, sym_base_class_clause, - [185929] = 5, + [211054] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5840), 1, + anon_sym_COMMA, + ACTIONS(8592), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8772), 1, + anon_sym_GT2, + STATE(6108), 1, + aux_sym_template_argument_list_repeat1, + [211070] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(4316), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - STATE(2623), 1, + STATE(3515), 1, sym_field_declaration_list, - STATE(6156), 1, + STATE(6494), 1, sym_base_class_clause, - [185945] = 4, + [211086] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7266), 1, + ACTIONS(4012), 1, anon_sym_LBRACE, - STATE(2835), 1, + ACTIONS(4014), 1, + anon_sym_COLON, + STATE(2025), 1, + sym_field_declaration_list, + STATE(6560), 1, + sym_base_class_clause, + [211102] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7504), 1, + anon_sym_LBRACE, + STATE(3009), 1, sym_compound_statement, - ACTIONS(7536), 2, + ACTIONS(7899), 2, anon_sym_LPAREN2, anon_sym_LBRACK, - [185959] = 4, + [211116] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7252), 1, + ACTIONS(7502), 1, anon_sym_LBRACE, - STATE(2605), 1, + STATE(2511), 1, sym_compound_statement, - ACTIONS(7536), 2, + ACTIONS(7899), 2, anon_sym_LPAREN2, anon_sym_LBRACK, - [185973] = 5, + [211130] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(1985), 1, + anon_sym_LBRACE, + ACTIONS(7692), 1, anon_sym_COLON, - ACTIONS(6747), 1, + STATE(5895), 1, + sym_compound_statement, + STATE(6312), 1, + sym_field_initializer_list, + [211146] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7562), 1, anon_sym_LBRACE, - STATE(4210), 1, - sym_field_declaration_list, - STATE(5872), 1, - sym_base_class_clause, - [185989] = 5, + STATE(2752), 1, + sym_compound_statement, + ACTIONS(7899), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [211160] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(4316), 1, + ACTIONS(6990), 1, anon_sym_LBRACE, - STATE(2759), 1, + STATE(4498), 1, sym_field_declaration_list, - STATE(6163), 1, + STATE(6207), 1, sym_base_class_clause, - [186005] = 5, + [211176] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(6747), 1, + ACTIONS(6990), 1, anon_sym_LBRACE, - STATE(4338), 1, + STATE(4496), 1, sym_field_declaration_list, - STATE(5864), 1, + STATE(6204), 1, sym_base_class_clause, - [186021] = 5, + [211192] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5470), 1, + anon_sym_LPAREN2, + STATE(6660), 1, + sym_argument_list, + ACTIONS(8774), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [211206] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, + ACTIONS(3424), 1, anon_sym_COLON_COLON, - ACTIONS(3764), 1, - anon_sym_SEMI, - ACTIONS(5129), 1, + ACTIONS(5500), 1, anon_sym_LT, - STATE(1863), 1, + ACTIONS(8776), 1, + anon_sym_SEMI, + STATE(3279), 1, sym_template_argument_list, - [186037] = 5, + [211222] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(6747), 1, + ACTIONS(6990), 1, anon_sym_LBRACE, - STATE(4209), 1, + STATE(4495), 1, sym_field_declaration_list, - STATE(5875), 1, + STATE(6202), 1, sym_base_class_clause, - [186053] = 5, + [211238] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3309), 1, - anon_sym_LT, - ACTIONS(8322), 1, - sym_identifier, - STATE(854), 1, - sym_template_parameter_list, - STATE(2676), 1, - sym_template_type, - [186069] = 5, + ACTIONS(7494), 1, + anon_sym_LBRACE, + STATE(5010), 1, + sym_compound_statement, + ACTIONS(7899), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [211252] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8302), 1, - sym_identifier, - ACTIONS(8420), 1, - anon_sym_COMMA, - ACTIONS(8422), 1, - anon_sym_RBRACE, - STATE(5679), 1, - sym_enumerator, - [186085] = 5, + ACTIONS(1985), 1, + anon_sym_LBRACE, + STATE(3348), 1, + sym_compound_statement, + ACTIONS(7899), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [211266] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(5504), 1, + ACTIONS(4195), 1, anon_sym_LBRACE, - STATE(3407), 1, + STATE(2668), 1, sym_field_declaration_list, - STATE(6356), 1, + STATE(6147), 1, sym_base_class_clause, - [186101] = 5, + [211282] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1845), 1, + ACTIONS(3911), 1, anon_sym_LBRACE, - ACTIONS(7422), 1, - anon_sym_COLON, - STATE(5736), 1, - sym_compound_statement, - STATE(6334), 1, - sym_field_initializer_list, - [186117] = 5, + ACTIONS(8778), 1, + sym_identifier, + STATE(975), 1, + sym_declaration_list, + STATE(6039), 1, + sym_namespace_definition_name, + [211298] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8302), 1, - sym_identifier, - ACTIONS(8424), 1, - anon_sym_COMMA, - ACTIONS(8426), 1, - anon_sym_RBRACE, - STATE(5674), 1, - sym_enumerator, - [186133] = 5, + ACTIONS(7492), 1, + anon_sym_LBRACE, + STATE(5227), 1, + sym_compound_statement, + ACTIONS(7899), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [211312] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, - anon_sym_COLON_COLON, - ACTIONS(5129), 1, - anon_sym_LT, - ACTIONS(8428), 1, - anon_sym_SEMI, - STATE(2626), 1, - sym_template_argument_list, - [186149] = 5, + ACTIONS(8642), 1, + anon_sym_LPAREN2, + ACTIONS(8780), 1, + anon_sym_LBRACE, + STATE(5211), 1, + sym_requirement_seq, + STATE(6164), 1, + sym_requires_parameter_list, + [211328] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(5504), 1, + ACTIONS(4265), 1, anon_sym_LBRACE, - STATE(3403), 1, + STATE(2763), 1, sym_field_declaration_list, - STATE(6357), 1, + STATE(6683), 1, sym_base_class_clause, - [186165] = 5, - ACTIONS(6923), 1, - sym_comment, - ACTIONS(8338), 1, - anon_sym_LPAREN, - ACTIONS(8430), 1, - anon_sym_LF, - ACTIONS(8432), 1, - sym_preproc_arg, - STATE(6193), 1, - sym_preproc_params, - [186181] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3309), 1, - anon_sym_LT, - ACTIONS(8322), 1, - sym_identifier, - STATE(883), 1, - sym_template_parameter_list, - STATE(2676), 1, - sym_template_type, - [186197] = 5, + [211344] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(5141), 1, + ACTIONS(4924), 1, anon_sym_LBRACE, - STATE(3161), 1, + STATE(3170), 1, sym_field_declaration_list, - STATE(6241), 1, + STATE(6402), 1, sym_base_class_clause, - [186213] = 5, + [211360] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(5504), 1, + ACTIONS(4195), 1, anon_sym_LBRACE, - STATE(3396), 1, + STATE(2677), 1, sym_field_declaration_list, - STATE(6372), 1, + STATE(6121), 1, sym_base_class_clause, - [186229] = 4, + [211376] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7294), 1, + ACTIONS(4014), 1, + anon_sym_COLON, + ACTIONS(4924), 1, anon_sym_LBRACE, - STATE(5006), 1, - sym_compound_statement, - ACTIONS(7536), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [186243] = 5, + STATE(3171), 1, + sym_field_declaration_list, + STATE(6401), 1, + sym_base_class_clause, + [211392] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(6747), 1, + ACTIONS(4265), 1, anon_sym_LBRACE, - STATE(4205), 1, + STATE(2761), 1, sym_field_declaration_list, - STATE(5876), 1, + STATE(6685), 1, sym_base_class_clause, - [186259] = 5, + [211408] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5941), 1, - anon_sym_COMMA, - ACTIONS(8312), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8434), 1, - anon_sym_GT2, - STATE(5689), 1, - aux_sym_template_argument_list_repeat1, - [186275] = 5, - ACTIONS(6923), 1, - sym_comment, - ACTIONS(8436), 1, - anon_sym_DQUOTE, - ACTIONS(8438), 1, - aux_sym_string_literal_token1, - ACTIONS(8440), 1, - sym_escape_sequence, - STATE(5374), 1, - aux_sym_string_literal_repeat1, - [186291] = 5, + ACTIONS(4014), 1, + anon_sym_COLON, + ACTIONS(4924), 1, + anon_sym_LBRACE, + STATE(3137), 1, + sym_field_declaration_list, + STATE(6399), 1, + sym_base_class_clause, + [211424] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(4262), 1, + ACTIONS(4265), 1, anon_sym_LBRACE, - STATE(2510), 1, + STATE(2749), 1, sym_field_declaration_list, - STATE(6344), 1, + STATE(6686), 1, sym_base_class_clause, - [186307] = 5, + [211440] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(5141), 1, + ACTIONS(4924), 1, anon_sym_LBRACE, - STATE(3182), 1, + STATE(3174), 1, sym_field_declaration_list, - STATE(5879), 1, + STATE(6398), 1, sym_base_class_clause, - [186323] = 4, + [211456] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1845), 1, + ACTIONS(1985), 1, anon_sym_LBRACE, - STATE(3294), 1, + ACTIONS(7692), 1, + anon_sym_COLON, + STATE(5912), 1, sym_compound_statement, - ACTIONS(7536), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [186337] = 5, + STATE(6466), 1, + sym_field_initializer_list, + [211472] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(4262), 1, + ACTIONS(4924), 1, anon_sym_LBRACE, - STATE(2512), 1, + STATE(3176), 1, sym_field_declaration_list, - STATE(6343), 1, + STATE(6379), 1, sym_base_class_clause, - [186353] = 5, + [211488] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(6747), 1, + ACTIONS(4265), 1, anon_sym_LBRACE, - STATE(4228), 1, + STATE(2748), 1, sym_field_declaration_list, - STATE(5877), 1, + STATE(6689), 1, sym_base_class_clause, - [186369] = 5, + [211504] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(4262), 1, + ACTIONS(4924), 1, anon_sym_LBRACE, - STATE(2517), 1, + STATE(3178), 1, sym_field_declaration_list, - STATE(6340), 1, + STATE(6377), 1, sym_base_class_clause, - [186385] = 5, + [211520] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(4211), 1, + ACTIONS(4265), 1, anon_sym_LBRACE, - STATE(2345), 1, + STATE(2744), 1, sym_field_declaration_list, - STATE(6146), 1, + STATE(6691), 1, sym_base_class_clause, - [186401] = 5, + [211536] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(4211), 1, + ACTIONS(6990), 1, anon_sym_LBRACE, - STATE(2343), 1, + STATE(4476), 1, sym_field_declaration_list, - STATE(6147), 1, + STATE(6182), 1, sym_base_class_clause, - [186417] = 5, + [211552] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON, - ACTIONS(4262), 1, + ACTIONS(7562), 1, anon_sym_LBRACE, - STATE(2519), 1, - sym_field_declaration_list, - STATE(6339), 1, - sym_base_class_clause, - [186433] = 5, + STATE(2879), 1, + sym_compound_statement, + ACTIONS(7899), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [211566] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(4211), 1, + ACTIONS(4195), 1, anon_sym_LBRACE, - STATE(2341), 1, + STATE(2661), 1, sym_field_declaration_list, - STATE(6151), 1, + STATE(6122), 1, sym_base_class_clause, - [186449] = 5, + [211582] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(4211), 1, + ACTIONS(4265), 1, anon_sym_LBRACE, - STATE(2340), 1, + STATE(2741), 1, sym_field_declaration_list, - STATE(6152), 1, + STATE(6696), 1, sym_base_class_clause, - [186465] = 5, + [211598] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5941), 1, + ACTIONS(5840), 1, anon_sym_COMMA, - ACTIONS(8312), 1, + ACTIONS(8592), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8442), 1, + ACTIONS(8782), 1, anon_sym_GT2, - STATE(5724), 1, + STATE(5834), 1, aux_sym_template_argument_list_repeat1, - [186481] = 5, + [211614] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON, - ACTIONS(4262), 1, + ACTIONS(7500), 1, anon_sym_LBRACE, - STATE(2505), 1, - sym_field_declaration_list, - STATE(6337), 1, - sym_base_class_clause, - [186497] = 5, + STATE(1913), 1, + sym_compound_statement, + ACTIONS(7899), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [211628] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(4211), 1, + ACTIONS(6990), 1, anon_sym_LBRACE, - STATE(2338), 1, + STATE(4474), 1, sym_field_declaration_list, - STATE(6154), 1, + STATE(6178), 1, sym_base_class_clause, - [186513] = 5, + [211644] = 5, + ACTIONS(7181), 1, + sym_comment, + ACTIONS(8632), 1, + anon_sym_LPAREN, + ACTIONS(8784), 1, + anon_sym_LF, + ACTIONS(8786), 1, + sym_preproc_arg, + STATE(6452), 1, + sym_preproc_params, + [211660] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3424), 1, + anon_sym_COLON_COLON, + ACTIONS(5500), 1, + anon_sym_LT, + ACTIONS(8788), 1, + anon_sym_SEMI, + STATE(3279), 1, + sym_template_argument_list, + [211676] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(4262), 1, + ACTIONS(4265), 1, anon_sym_LBRACE, - STATE(2347), 1, + STATE(2868), 1, sym_field_declaration_list, - STATE(6352), 1, + STATE(6708), 1, sym_base_class_clause, - [186529] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5941), 1, - anon_sym_COMMA, - ACTIONS(8312), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8444), 1, - anon_sym_GT2, - STATE(5760), 1, - aux_sym_template_argument_list_repeat1, - [186545] = 5, + [211692] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(4211), 1, + ACTIONS(6990), 1, anon_sym_LBRACE, - STATE(2337), 1, + STATE(4470), 1, sym_field_declaration_list, - STATE(6155), 1, + STATE(6174), 1, sym_base_class_clause, - [186561] = 5, + [211708] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(4262), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - STATE(2495), 1, + STATE(3484), 1, sym_field_declaration_list, - STATE(6336), 1, + STATE(6484), 1, sym_base_class_clause, - [186577] = 5, + [211724] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(5141), 1, + ACTIONS(4195), 1, anon_sym_LBRACE, - STATE(3167), 1, + STATE(2641), 1, sym_field_declaration_list, - STATE(5942), 1, + STATE(6124), 1, sym_base_class_clause, - [186593] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5941), 1, - anon_sym_COMMA, - ACTIONS(8312), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8446), 1, - anon_sym_GT2, - STATE(5635), 1, - aux_sym_template_argument_list_repeat1, - [186609] = 5, + [211740] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(5141), 1, + ACTIONS(4195), 1, anon_sym_LBRACE, - STATE(3173), 1, + STATE(2598), 1, sym_field_declaration_list, - STATE(6236), 1, + STATE(6125), 1, sym_base_class_clause, - [186625] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3735), 1, - anon_sym_COLON_COLON, - ACTIONS(5129), 1, - anon_sym_LT, - ACTIONS(8448), 1, - anon_sym_SEMI, - STATE(2626), 1, - sym_template_argument_list, - [186641] = 5, + [211756] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, + ACTIONS(3424), 1, anon_sym_COLON_COLON, - ACTIONS(5129), 1, + ACTIONS(5500), 1, anon_sym_LT, - ACTIONS(8450), 1, + ACTIONS(8790), 1, anon_sym_SEMI, - STATE(2626), 1, + STATE(3279), 1, sym_template_argument_list, - [186657] = 4, - ACTIONS(3), 1, + [211772] = 5, + ACTIONS(7181), 1, sym_comment, - ACTIONS(7252), 1, - anon_sym_LBRACE, - STATE(2595), 1, - sym_compound_statement, - ACTIONS(7536), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [186671] = 5, + ACTIONS(8792), 1, + anon_sym_DQUOTE, + ACTIONS(8794), 1, + aux_sym_string_literal_token1, + ACTIONS(8796), 1, + sym_escape_sequence, + STATE(5593), 1, + aux_sym_string_literal_repeat1, + [211788] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(6747), 1, + ACTIONS(4265), 1, anon_sym_LBRACE, - STATE(4272), 1, + STATE(2855), 1, sym_field_declaration_list, - STATE(5878), 1, + STATE(6707), 1, sym_base_class_clause, - [186687] = 5, + [211804] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6859), 1, + ACTIONS(7504), 1, anon_sym_LBRACE, - ACTIONS(8290), 1, + STATE(3059), 1, + sym_compound_statement, + ACTIONS(7899), 2, anon_sym_LPAREN2, - STATE(2540), 1, - sym_requirement_seq, - STATE(6209), 1, - sym_requires_parameter_list, - [186703] = 5, + anon_sym_LBRACK, + [211818] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON, - ACTIONS(5141), 1, - anon_sym_LBRACE, - STATE(3132), 1, - sym_field_declaration_list, - STATE(6164), 1, - sym_base_class_clause, - [186719] = 5, + ACTIONS(8574), 1, + sym_identifier, + ACTIONS(8798), 1, + anon_sym_COMMA, + ACTIONS(8800), 1, + anon_sym_RBRACE, + STATE(6081), 1, + sym_enumerator, + [211834] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3827), 1, - anon_sym_LBRACE, - ACTIONS(8308), 1, + ACTIONS(3424), 1, anon_sym_COLON_COLON, - ACTIONS(8452), 1, - anon_sym_EQ, - STATE(468), 1, - sym_declaration_list, - [186735] = 5, - ACTIONS(6923), 1, - sym_comment, - ACTIONS(8318), 1, - aux_sym_string_literal_token1, - ACTIONS(8320), 1, - sym_escape_sequence, - ACTIONS(8454), 1, - anon_sym_DQUOTE, - STATE(5296), 1, - aux_sym_string_literal_repeat1, - [186751] = 5, + ACTIONS(5500), 1, + anon_sym_LT, + ACTIONS(8802), 1, + anon_sym_SEMI, + STATE(3279), 1, + sym_template_argument_list, + [211850] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7890), 1, + ACTIONS(7502), 1, + anon_sym_LBRACE, + STATE(2494), 1, + sym_compound_statement, + ACTIONS(7899), 2, anon_sym_LPAREN2, - ACTIONS(7892), 1, anon_sym_LBRACK, - ACTIONS(8456), 1, - anon_sym_RPAREN, - STATE(4073), 1, - sym_parameter_list, - [186767] = 4, + [211864] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7266), 1, + ACTIONS(1985), 1, anon_sym_LBRACE, - STATE(2773), 1, + ACTIONS(7692), 1, + anon_sym_COLON, + STATE(5957), 1, sym_compound_statement, - ACTIONS(7536), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [186781] = 5, - ACTIONS(6923), 1, - sym_comment, - ACTIONS(8458), 1, - anon_sym_DQUOTE, - ACTIONS(8460), 1, - aux_sym_string_literal_token1, - ACTIONS(8462), 1, - sym_escape_sequence, - STATE(5473), 1, - aux_sym_string_literal_repeat1, - [186797] = 5, + STATE(6408), 1, + sym_field_initializer_list, + [211880] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(4211), 1, + ACTIONS(4265), 1, anon_sym_LBRACE, - STATE(2440), 1, + STATE(2843), 1, sym_field_declaration_list, - STATE(6186), 1, + STATE(6705), 1, sym_base_class_clause, - [186813] = 5, + [211896] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON, - ACTIONS(4211), 1, + ACTIONS(3907), 1, anon_sym_LBRACE, - STATE(2452), 1, - sym_field_declaration_list, - STATE(6188), 1, - sym_base_class_clause, - [186829] = 5, + ACTIONS(8804), 1, + sym_identifier, + STATE(951), 1, + sym_declaration_list, + STATE(5858), 1, + sym_namespace_definition_name, + [211912] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(4211), 1, + ACTIONS(4924), 1, anon_sym_LBRACE, - STATE(2455), 1, + STATE(3183), 1, sym_field_declaration_list, - STATE(6190), 1, + STATE(6359), 1, sym_base_class_clause, - [186845] = 5, + [211928] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(5141), 1, + ACTIONS(4065), 1, anon_sym_LBRACE, - STATE(3165), 1, + STATE(2365), 1, sym_field_declaration_list, - STATE(6240), 1, + STATE(6276), 1, sym_base_class_clause, - [186861] = 5, + [211944] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5941), 1, + ACTIONS(5840), 1, anon_sym_COMMA, - ACTIONS(8312), 1, + ACTIONS(8592), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8464), 1, + ACTIONS(8806), 1, anon_sym_GT2, - STATE(5732), 1, + STATE(5962), 1, aux_sym_template_argument_list_repeat1, - [186877] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8466), 1, - sym_identifier, - ACTIONS(8468), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_GT2, - [186889] = 5, + [211960] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(5141), 1, + ACTIONS(4924), 1, anon_sym_LBRACE, - STATE(3175), 1, + STATE(3184), 1, sym_field_declaration_list, - STATE(6004), 1, + STATE(6356), 1, sym_base_class_clause, - [186905] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7250), 1, - anon_sym_LBRACE, - STATE(3662), 1, - sym_compound_statement, - ACTIONS(7536), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [186919] = 5, + [211976] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(5141), 1, + ACTIONS(4265), 1, anon_sym_LBRACE, - STATE(3206), 1, + STATE(2838), 1, sym_field_declaration_list, - STATE(6159), 1, + STATE(6704), 1, sym_base_class_clause, - [186935] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5941), 1, - anon_sym_COMMA, - ACTIONS(8312), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8470), 1, - anon_sym_GT2, - STATE(5747), 1, - aux_sym_template_argument_list_repeat1, - [186951] = 5, + [211992] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(4262), 1, + ACTIONS(4924), 1, anon_sym_LBRACE, - STATE(2389), 1, + STATE(3187), 1, sym_field_declaration_list, - STATE(6302), 1, + STATE(6355), 1, sym_base_class_clause, - [186967] = 5, + [212008] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(4262), 1, + ACTIONS(4065), 1, anon_sym_LBRACE, - STATE(2390), 1, + STATE(2364), 1, sym_field_declaration_list, - STATE(6250), 1, + STATE(6273), 1, sym_base_class_clause, - [186983] = 5, + [212024] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON, - ACTIONS(4262), 1, + ACTIONS(4012), 1, anon_sym_LBRACE, - STATE(2465), 1, - sym_field_declaration_list, - STATE(6299), 1, - sym_base_class_clause, - [186999] = 5, - ACTIONS(6923), 1, - sym_comment, - ACTIONS(8472), 1, - anon_sym_DQUOTE, - ACTIONS(8474), 1, - aux_sym_string_literal_token1, - ACTIONS(8476), 1, - sym_escape_sequence, - STATE(5480), 1, - aux_sym_string_literal_repeat1, - [187015] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(4262), 1, - anon_sym_LBRACE, - STATE(2344), 1, + STATE(2036), 1, sym_field_declaration_list, - STATE(6296), 1, + STATE(6562), 1, sym_base_class_clause, - [187031] = 5, + [212040] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(4262), 1, + ACTIONS(4924), 1, anon_sym_LBRACE, - STATE(2357), 1, + STATE(3188), 1, sym_field_declaration_list, - STATE(6294), 1, + STATE(6353), 1, sym_base_class_clause, - [187047] = 5, - ACTIONS(6923), 1, - sym_comment, - ACTIONS(8338), 1, - anon_sym_LPAREN, - ACTIONS(8478), 1, - anon_sym_LF, - ACTIONS(8480), 1, - sym_preproc_arg, - STATE(6203), 1, - sym_preproc_params, - [187063] = 5, + [212056] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8482), 1, + ACTIONS(8808), 1, anon_sym_SEMI, - ACTIONS(8484), 1, + ACTIONS(8810), 1, anon_sym_DASH_GT, - ACTIONS(8486), 1, + ACTIONS(8812), 1, anon_sym_noexcept, - STATE(6738), 1, + STATE(6791), 1, sym_trailing_return_type, - [187079] = 5, + [212072] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(4262), 1, + ACTIONS(4924), 1, anon_sym_LBRACE, - STATE(2358), 1, + STATE(3191), 1, sym_field_declaration_list, - STATE(6290), 1, + STATE(6352), 1, sym_base_class_clause, - [187095] = 5, + [212088] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4156), 1, + ACTIONS(4012), 1, anon_sym_LBRACE, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - STATE(2208), 1, + STATE(2037), 1, sym_field_declaration_list, - STATE(5917), 1, + STATE(6564), 1, sym_base_class_clause, - [187111] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1845), 1, - anon_sym_LBRACE, - STATE(3327), 1, - sym_compound_statement, - ACTIONS(7536), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [187125] = 5, - ACTIONS(6923), 1, - sym_comment, - ACTIONS(8338), 1, - anon_sym_LPAREN, - ACTIONS(8488), 1, - anon_sym_LF, - ACTIONS(8490), 1, - sym_preproc_arg, - STATE(6087), 1, - sym_preproc_params, - [187141] = 5, + [212104] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(5141), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - STATE(3204), 1, + STATE(3486), 1, sym_field_declaration_list, - STATE(6157), 1, + STATE(6477), 1, sym_base_class_clause, - [187157] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1465), 1, - anon_sym_LBRACE, - ACTIONS(5567), 1, - anon_sym_LPAREN2, - STATE(5569), 2, - sym_argument_list, - sym_initializer_list, - [187171] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3827), 1, - anon_sym_LBRACE, - ACTIONS(8492), 1, - sym_identifier, - STATE(462), 1, - sym_declaration_list, - STATE(5659), 1, - sym_namespace_definition_name, - [187187] = 5, + [212120] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4156), 1, - anon_sym_LBRACE, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - STATE(2247), 1, - sym_field_declaration_list, - STATE(5914), 1, - sym_base_class_clause, - [187203] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4156), 1, + ACTIONS(4924), 1, anon_sym_LBRACE, - ACTIONS(4158), 1, - anon_sym_COLON, - STATE(2241), 1, + STATE(3192), 1, sym_field_declaration_list, - STATE(5913), 1, + STATE(6350), 1, sym_base_class_clause, - [187219] = 5, + [212136] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(4446), 1, + ACTIONS(4195), 1, anon_sym_LBRACE, - STATE(2939), 1, + STATE(2587), 1, sym_field_declaration_list, - STATE(6277), 1, + STATE(6127), 1, sym_base_class_clause, - [187235] = 5, + [212152] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON, - ACTIONS(5141), 1, + ACTIONS(4012), 1, anon_sym_LBRACE, - STATE(3193), 1, - sym_field_declaration_list, - STATE(6150), 1, - sym_base_class_clause, - [187251] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(4446), 1, - anon_sym_LBRACE, - STATE(2926), 1, + STATE(2040), 1, sym_field_declaration_list, - STATE(6273), 1, + STATE(6565), 1, sym_base_class_clause, - [187267] = 5, - ACTIONS(6923), 1, + [212168] = 5, + ACTIONS(7181), 1, sym_comment, - ACTIONS(8494), 1, + ACTIONS(8814), 1, anon_sym_DQUOTE, - ACTIONS(8496), 1, + ACTIONS(8816), 1, aux_sym_string_literal_token1, - ACTIONS(8498), 1, + ACTIONS(8818), 1, sym_escape_sequence, - STATE(5427), 1, + STATE(5685), 1, aux_sym_string_literal_repeat1, - [187283] = 5, + [212184] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, - anon_sym_COLON_COLON, - ACTIONS(5129), 1, - anon_sym_LT, - ACTIONS(8500), 1, - anon_sym_SEMI, - STATE(2626), 1, - sym_template_argument_list, - [187299] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(4446), 1, + ACTIONS(4065), 1, anon_sym_LBRACE, - STATE(2905), 1, + STATE(2356), 1, sym_field_declaration_list, - STATE(6268), 1, + STATE(6272), 1, sym_base_class_clause, - [187315] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8302), 1, - sym_identifier, - ACTIONS(8502), 1, - anon_sym_COMMA, - ACTIONS(8504), 1, - anon_sym_RBRACE, - STATE(5522), 1, - sym_enumerator, - [187331] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3309), 1, - anon_sym_LT, - ACTIONS(8322), 1, - sym_identifier, - STATE(608), 1, - sym_template_parameter_list, - STATE(2676), 1, - sym_template_type, - [187347] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7228), 1, - anon_sym_LBRACE, - STATE(1755), 1, - sym_compound_statement, - ACTIONS(7536), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [187361] = 5, + [212200] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(4446), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - STATE(2890), 1, + STATE(3504), 1, sym_field_declaration_list, - STATE(6081), 1, + STATE(6493), 1, sym_base_class_clause, - [187377] = 4, + [212216] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7266), 1, + ACTIONS(4012), 1, anon_sym_LBRACE, - STATE(2796), 1, - sym_compound_statement, - ACTIONS(7536), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [187391] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(4446), 1, - anon_sym_LBRACE, - STATE(2895), 1, + STATE(2041), 1, sym_field_declaration_list, - STATE(6084), 1, + STATE(6567), 1, sym_base_class_clause, - [187407] = 4, + [212232] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7264), 1, + ACTIONS(7494), 1, anon_sym_LBRACE, - STATE(1757), 1, + STATE(5038), 1, sym_compound_statement, - ACTIONS(7536), 2, + ACTIONS(7899), 2, anon_sym_LPAREN2, anon_sym_LBRACK, - [187421] = 5, + [212246] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON, - ACTIONS(4446), 1, + ACTIONS(4012), 1, anon_sym_LBRACE, - STATE(2899), 1, - sym_field_declaration_list, - STATE(6233), 1, - sym_base_class_clause, - [187437] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(5141), 1, - anon_sym_LBRACE, - STATE(3154), 1, + STATE(2044), 1, sym_field_declaration_list, - STATE(6093), 1, + STATE(6568), 1, sym_base_class_clause, - [187453] = 5, - ACTIONS(6923), 1, - sym_comment, - ACTIONS(8318), 1, - aux_sym_string_literal_token1, - ACTIONS(8320), 1, - sym_escape_sequence, - ACTIONS(8506), 1, - anon_sym_DQUOTE, - STATE(5296), 1, - aux_sym_string_literal_repeat1, - [187469] = 5, + [212262] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(4446), 1, + ACTIONS(4265), 1, anon_sym_LBRACE, - STATE(2910), 1, + STATE(2826), 1, sym_field_declaration_list, - STATE(6256), 1, + STATE(6701), 1, sym_base_class_clause, - [187485] = 5, + [212278] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4156), 1, - anon_sym_LBRACE, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - STATE(2240), 1, + ACTIONS(4065), 1, + anon_sym_LBRACE, + STATE(2355), 1, sym_field_declaration_list, - STATE(5911), 1, + STATE(6269), 1, sym_base_class_clause, - [187501] = 5, + [212294] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(5141), 1, + ACTIONS(4195), 1, anon_sym_LBRACE, - STATE(3147), 1, + STATE(2634), 1, sym_field_declaration_list, - STATE(6094), 1, + STATE(6128), 1, sym_base_class_clause, - [187517] = 5, + [212310] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON, - ACTIONS(4446), 1, + ACTIONS(7504), 1, anon_sym_LBRACE, - STATE(2915), 1, - sym_field_declaration_list, - STATE(6308), 1, - sym_base_class_clause, - [187533] = 5, + STATE(3055), 1, + sym_compound_statement, + ACTIONS(7899), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK, + [212324] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(4446), 1, + ACTIONS(4195), 1, anon_sym_LBRACE, - STATE(2951), 1, + STATE(2676), 1, sym_field_declaration_list, - STATE(6232), 1, + STATE(6129), 1, sym_base_class_clause, - [187549] = 5, + [212340] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(4446), 1, + ACTIONS(4924), 1, anon_sym_LBRACE, - STATE(2865), 1, + STATE(3197), 1, sym_field_declaration_list, - STATE(6227), 1, + STATE(6346), 1, sym_base_class_clause, - [187565] = 5, - ACTIONS(6923), 1, - sym_comment, - ACTIONS(8318), 1, - aux_sym_string_literal_token1, - ACTIONS(8320), 1, - sym_escape_sequence, - ACTIONS(8508), 1, - anon_sym_DQUOTE, - STATE(5296), 1, - aux_sym_string_literal_repeat1, - [187581] = 5, + [212356] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4156), 1, + ACTIONS(4012), 1, anon_sym_LBRACE, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - STATE(2233), 1, + STATE(2045), 1, sym_field_declaration_list, - STATE(5910), 1, + STATE(6570), 1, sym_base_class_clause, - [187597] = 5, + [212372] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4156), 1, + ACTIONS(7097), 1, anon_sym_LBRACE, - ACTIONS(4158), 1, - anon_sym_COLON, - STATE(2232), 1, - sym_field_declaration_list, - STATE(5908), 1, - sym_base_class_clause, - [187613] = 5, + ACTIONS(8642), 1, + anon_sym_LPAREN2, + STATE(3317), 1, + sym_requirement_seq, + STATE(6635), 1, + sym_requires_parameter_list, + [212388] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON, - ACTIONS(4446), 1, - anon_sym_LBRACE, - STATE(2947), 1, - sym_field_declaration_list, - STATE(6226), 1, - sym_base_class_clause, - [187629] = 5, + ACTIONS(3424), 1, + anon_sym_COLON_COLON, + ACTIONS(5500), 1, + anon_sym_LT, + ACTIONS(8820), 1, + anon_sym_SEMI, + STATE(3279), 1, + sym_template_argument_list, + [212404] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(4446), 1, + ACTIONS(4924), 1, anon_sym_LBRACE, - STATE(2942), 1, + STATE(3200), 1, sym_field_declaration_list, - STATE(6214), 1, + STATE(6345), 1, sym_base_class_clause, - [187645] = 5, + [212420] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(5141), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - STATE(3150), 1, + STATE(3488), 1, sym_field_declaration_list, - STATE(6234), 1, + STATE(6462), 1, sym_base_class_clause, - [187661] = 5, + [212436] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(5141), 1, + ACTIONS(4924), 1, anon_sym_LBRACE, - STATE(3122), 1, + STATE(3204), 1, sym_field_declaration_list, - STATE(6246), 1, + STATE(6344), 1, sym_base_class_clause, - [187677] = 5, + [212452] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(4262), 1, + ACTIONS(4265), 1, anon_sym_LBRACE, - STATE(2360), 1, + STATE(2833), 1, sym_field_declaration_list, - STATE(6276), 1, + STATE(6702), 1, sym_base_class_clause, - [187693] = 5, + [212468] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5941), 1, + ACTIONS(5840), 1, anon_sym_COMMA, - ACTIONS(8312), 1, + ACTIONS(8592), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8510), 1, + ACTIONS(8822), 1, anon_sym_GT2, - STATE(5772), 1, + STATE(5833), 1, aux_sym_template_argument_list_repeat1, - [187709] = 5, + [212484] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4156), 1, - anon_sym_LBRACE, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - STATE(2217), 1, + ACTIONS(4065), 1, + anon_sym_LBRACE, + STATE(2343), 1, sym_field_declaration_list, - STATE(5893), 1, + STATE(6265), 1, sym_base_class_clause, - [187725] = 5, + [212500] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, + ACTIONS(4014), 1, anon_sym_COLON, - ACTIONS(4262), 1, + ACTIONS(4065), 1, anon_sym_LBRACE, - STATE(2366), 1, + STATE(2341), 1, sym_field_declaration_list, - STATE(6275), 1, + STATE(6258), 1, sym_base_class_clause, - [187741] = 5, + [212516] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8290), 1, + ACTIONS(5918), 1, + anon_sym_COMMA, + ACTIONS(5956), 1, + anon_sym_RPAREN, + STATE(5989), 1, + aux_sym_argument_list_repeat1, + [212529] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8824), 1, + sym_identifier, + STATE(2197), 1, + sym_template_function, + STATE(3256), 1, + sym_template_type, + [212542] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8826), 1, + anon_sym_catch, + STATE(1868), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [212553] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8826), 1, + anon_sym_catch, + STATE(1885), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [212564] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8828), 1, anon_sym_LPAREN2, - ACTIONS(8512), 1, - anon_sym_LBRACE, - STATE(4766), 1, - sym_requirement_seq, - STATE(6207), 1, - sym_requires_parameter_list, - [187757] = 5, + ACTIONS(8830), 1, + anon_sym_constexpr, + STATE(298), 1, + sym_condition_clause, + [212577] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1845), 1, - anon_sym_LBRACE, - ACTIONS(7422), 1, - anon_sym_COLON, - STATE(5686), 1, - sym_compound_statement, - STATE(6331), 1, - sym_field_initializer_list, - [187773] = 5, + ACTIONS(8036), 1, + anon_sym_COMMA, + ACTIONS(8832), 1, + anon_sym_SEMI, + STATE(5956), 1, + aux_sym_type_definition_repeat2, + [212590] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8574), 1, + sym_identifier, + ACTIONS(8834), 1, + anon_sym_RBRACE, + STATE(6655), 1, + sym_enumerator, + [212603] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5941), 1, + ACTIONS(7506), 1, anon_sym_COMMA, - ACTIONS(8312), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8514), 1, + ACTIONS(8836), 1, + anon_sym_SEMI, + STATE(6098), 1, + aux_sym_declaration_repeat1, + [212616] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8036), 1, + anon_sym_COMMA, + ACTIONS(8838), 1, + anon_sym_SEMI, + STATE(5956), 1, + aux_sym_type_definition_repeat2, + [212629] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7506), 1, + anon_sym_COMMA, + ACTIONS(8840), 1, + anon_sym_SEMI, + STATE(6098), 1, + aux_sym_declaration_repeat1, + [212642] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5918), 1, + anon_sym_COMMA, + ACTIONS(8842), 1, + anon_sym_RPAREN, + STATE(6058), 1, + aux_sym_argument_list_repeat1, + [212655] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3395), 1, + anon_sym_RBRACE, + ACTIONS(8844), 1, + anon_sym_COMMA, + STATE(6007), 1, + aux_sym_initializer_list_repeat1, + [212668] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8574), 1, + sym_identifier, + ACTIONS(8846), 1, + anon_sym_RBRACE, + STATE(6655), 1, + sym_enumerator, + [212681] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5840), 1, + anon_sym_COMMA, + ACTIONS(8848), 1, anon_sym_GT2, - STATE(5755), 1, + STATE(5999), 1, aux_sym_template_argument_list_repeat1, - [187789] = 4, + [212694] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7264), 1, - anon_sym_LBRACE, - STATE(1750), 1, - sym_compound_statement, - ACTIONS(7536), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [187803] = 5, + ACTIONS(5840), 1, + anon_sym_COMMA, + ACTIONS(8850), 1, + anon_sym_GT2, + STATE(5999), 1, + aux_sym_template_argument_list_repeat1, + [212707] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON, - ACTIONS(4262), 1, - anon_sym_LBRACE, - STATE(2377), 1, - sym_field_declaration_list, - STATE(6274), 1, - sym_base_class_clause, - [187819] = 4, + ACTIONS(5840), 1, + anon_sym_COMMA, + ACTIONS(8852), 1, + anon_sym_GT2, + STATE(5999), 1, + aux_sym_template_argument_list_repeat1, + [212720] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7264), 1, - anon_sym_LBRACE, - STATE(1755), 1, - sym_compound_statement, - ACTIONS(7536), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [187833] = 5, + ACTIONS(5840), 1, + anon_sym_COMMA, + ACTIONS(8854), 1, + anon_sym_GT2, + STATE(5999), 1, + aux_sym_template_argument_list_repeat1, + [212733] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, - anon_sym_COLON_COLON, - ACTIONS(5129), 1, - anon_sym_LT, - ACTIONS(8516), 1, - anon_sym_SEMI, - STATE(2626), 1, - sym_template_argument_list, - [187849] = 5, + ACTIONS(5840), 1, + anon_sym_COMMA, + ACTIONS(8856), 1, + anon_sym_GT2, + STATE(5999), 1, + aux_sym_template_argument_list_repeat1, + [212746] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7890), 1, + ACTIONS(5840), 1, + anon_sym_COMMA, + ACTIONS(8858), 1, + anon_sym_GT2, + STATE(5832), 1, + aux_sym_template_argument_list_repeat1, + [212759] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5840), 1, + anon_sym_COMMA, + ACTIONS(8860), 1, + anon_sym_GT2, + STATE(5999), 1, + aux_sym_template_argument_list_repeat1, + [212772] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8846), 1, + anon_sym_RBRACE, + ACTIONS(8862), 1, + anon_sym_COMMA, + STATE(6047), 1, + aux_sym_enumerator_list_repeat1, + [212785] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8864), 1, + sym_identifier, + STATE(2197), 1, + sym_template_function, + STATE(3256), 1, + sym_template_type, + [212798] = 4, + ACTIONS(7179), 1, anon_sym_LPAREN2, - ACTIONS(7892), 1, - anon_sym_LBRACK, - ACTIONS(8518), 1, + ACTIONS(7181), 1, + sym_comment, + ACTIONS(8866), 1, + anon_sym_LF, + STATE(4639), 1, + sym_preproc_argument_list, + [212811] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5840), 1, + anon_sym_COMMA, + ACTIONS(8868), 1, + anon_sym_GT2, + STATE(5837), 1, + aux_sym_template_argument_list_repeat1, + [212824] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8870), 1, + anon_sym_COMMA, + ACTIONS(8872), 1, anon_sym_RPAREN, - STATE(4073), 1, - sym_parameter_list, - [187865] = 4, + STATE(6097), 1, + aux_sym_parameter_list_repeat1, + [212837] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7250), 1, - anon_sym_LBRACE, - STATE(3703), 1, - sym_compound_statement, - ACTIONS(7536), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [187879] = 4, + ACTIONS(5981), 1, + anon_sym_COMMA, + ACTIONS(5983), 1, + anon_sym_RBRACE, + STATE(5829), 1, + aux_sym_initializer_list_repeat1, + [212850] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7228), 1, - anon_sym_LBRACE, - STATE(1750), 1, - sym_compound_statement, - ACTIONS(7536), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [187893] = 5, + ACTIONS(8874), 1, + anon_sym_COMMA, + ACTIONS(8876), 1, + anon_sym_RPAREN, + STATE(6065), 1, + aux_sym_preproc_params_repeat1, + [212863] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON, - ACTIONS(4446), 1, - anon_sym_LBRACE, - STATE(2903), 1, - sym_field_declaration_list, - STATE(6181), 1, - sym_base_class_clause, - [187909] = 5, + ACTIONS(8878), 1, + anon_sym_COMMA, + ACTIONS(8880), 1, + anon_sym_RBRACE, + STATE(5838), 1, + aux_sym_enumerator_list_repeat1, + [212876] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3829), 1, - anon_sym_LBRACE, - ACTIONS(8520), 1, + ACTIONS(5918), 1, + anon_sym_COMMA, + ACTIONS(5973), 1, + anon_sym_RPAREN, + STATE(5828), 1, + aux_sym_argument_list_repeat1, + [212889] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8882), 1, sym_identifier, - STATE(998), 1, - sym_declaration_list, - STATE(5646), 1, - sym_namespace_definition_name, - [187925] = 5, + STATE(2197), 1, + sym_template_function, + STATE(3256), 1, + sym_template_type, + [212902] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3829), 1, - anon_sym_LBRACE, - ACTIONS(8308), 1, - anon_sym_COLON_COLON, - ACTIONS(8522), 1, - anon_sym_EQ, - STATE(955), 1, - sym_declaration_list, - [187941] = 5, + ACTIONS(8884), 1, + sym_identifier, + STATE(2675), 1, + sym_template_function, + STATE(3256), 1, + sym_template_type, + [212915] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON, - ACTIONS(5141), 1, - anon_sym_LBRACE, - STATE(3168), 1, - sym_field_declaration_list, - STATE(6088), 1, - sym_base_class_clause, - [187957] = 5, + ACTIONS(7506), 1, + anon_sym_COMMA, + ACTIONS(8886), 1, + anon_sym_SEMI, + STATE(5827), 1, + aux_sym_declaration_repeat1, + [212928] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON, - ACTIONS(4446), 1, - anon_sym_LBRACE, - STATE(2902), 1, - sym_field_declaration_list, - STATE(6192), 1, - sym_base_class_clause, - [187973] = 5, + ACTIONS(8888), 1, + anon_sym_COMMA, + ACTIONS(8890), 1, + anon_sym_RBRACK_RBRACK, + STATE(5867), 1, + aux_sym_attribute_declaration_repeat1, + [212941] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, - anon_sym_COLON_COLON, - ACTIONS(5129), 1, - anon_sym_LT, - ACTIONS(8524), 1, - anon_sym_SEMI, - STATE(2626), 1, - sym_template_argument_list, - [187989] = 5, + ACTIONS(8892), 1, + sym_identifier, + STATE(2197), 1, + sym_template_function, + STATE(3256), 1, + sym_template_type, + [212954] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4156), 1, - anon_sym_LBRACE, - ACTIONS(4158), 1, - anon_sym_COLON, - STATE(2210), 1, - sym_field_declaration_list, - STATE(5894), 1, - sym_base_class_clause, - [188005] = 4, + ACTIONS(8894), 1, + anon_sym_catch, + STATE(1105), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [212965] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7228), 1, + ACTIONS(8896), 1, + sym_identifier, + STATE(2197), 1, + sym_template_function, + STATE(3256), 1, + sym_template_type, + [212978] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8898), 1, + anon_sym_catch, + STATE(363), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [212989] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8900), 1, + anon_sym_COMMA, + ACTIONS(8902), 1, anon_sym_LBRACE, - STATE(1757), 1, - sym_compound_statement, - ACTIONS(7536), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK, - [188019] = 5, + STATE(6080), 1, + aux_sym_field_initializer_list_repeat1, + [213002] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4156), 1, + ACTIONS(8570), 1, + anon_sym_COMMA, + ACTIONS(8734), 1, anon_sym_LBRACE, - ACTIONS(4158), 1, - anon_sym_COLON, - STATE(2249), 1, - sym_field_declaration_list, - STATE(5892), 1, - sym_base_class_clause, - [188035] = 5, + STATE(6041), 1, + aux_sym_base_class_clause_repeat1, + [213015] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON, - ACTIONS(4446), 1, + ACTIONS(8904), 1, + anon_sym_catch, + STATE(342), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [213026] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3907), 1, anon_sym_LBRACE, - STATE(2958), 1, - sym_field_declaration_list, - STATE(6171), 1, - sym_base_class_clause, - [188051] = 5, + ACTIONS(8580), 1, + anon_sym_COLON_COLON, + STATE(912), 1, + sym_declaration_list, + [213039] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8828), 1, + anon_sym_LPAREN2, + ACTIONS(8906), 1, + anon_sym_constexpr, + STATE(186), 1, + sym_condition_clause, + [213052] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5941), 1, + ACTIONS(7506), 1, anon_sym_COMMA, - ACTIONS(8312), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8526), 1, - anon_sym_GT2, - STATE(5571), 1, - aux_sym_template_argument_list_repeat1, - [188067] = 5, + ACTIONS(8908), 1, + anon_sym_SEMI, + STATE(5928), 1, + aux_sym_declaration_repeat1, + [213065] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON, - ACTIONS(4446), 1, + ACTIONS(8570), 1, + anon_sym_COMMA, + ACTIONS(8734), 1, anon_sym_LBRACE, - STATE(2959), 1, - sym_field_declaration_list, - STATE(6172), 1, - sym_base_class_clause, - [188083] = 5, + STATE(5992), 1, + aux_sym_base_class_clause_repeat1, + [213078] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON, - ACTIONS(5141), 1, - anon_sym_LBRACE, - STATE(3192), 1, - sym_field_declaration_list, - STATE(6145), 1, - sym_base_class_clause, - [188099] = 5, + ACTIONS(8910), 1, + sym_identifier, + STATE(2411), 1, + sym_template_type, + STATE(2675), 1, + sym_template_function, + [213091] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_COLON, - ACTIONS(4446), 1, - anon_sym_LBRACE, - STATE(2961), 1, - sym_field_declaration_list, - STATE(6174), 1, - sym_base_class_clause, - [188115] = 5, + ACTIONS(8912), 1, + anon_sym_COMMA, + ACTIONS(8914), 1, + anon_sym_RPAREN, + STATE(6104), 1, + aux_sym_requires_parameter_list_repeat1, + [213104] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5941), 1, + ACTIONS(8916), 1, anon_sym_COMMA, - ACTIONS(8312), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8528), 1, - anon_sym_GT2, - STATE(5766), 1, - aux_sym_template_argument_list_repeat1, - [188131] = 4, + ACTIONS(8919), 1, + anon_sym_RPAREN, + STATE(5864), 1, + aux_sym_throw_specifier_repeat1, + [213117] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7236), 1, + ACTIONS(7506), 1, anon_sym_COMMA, - ACTIONS(8530), 1, + ACTIONS(8921), 1, anon_sym_SEMI, - STATE(5578), 1, + STATE(6098), 1, aux_sym_declaration_repeat1, - [188144] = 4, + [213130] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8532), 1, - sym_identifier, - STATE(2424), 1, - sym_template_type, - STATE(3018), 1, - sym_template_function, - [188157] = 4, + ACTIONS(7506), 1, + anon_sym_COMMA, + ACTIONS(8923), 1, + anon_sym_SEMI, + STATE(6098), 1, + aux_sym_declaration_repeat1, + [213143] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8534), 1, - anon_sym_LPAREN2, - ACTIONS(8536), 1, - anon_sym_constexpr, - STATE(198), 1, - sym_condition_clause, - [188170] = 4, + ACTIONS(8888), 1, + anon_sym_COMMA, + ACTIONS(8925), 1, + anon_sym_RBRACK_RBRACK, + STATE(5991), 1, + aux_sym_attribute_declaration_repeat1, + [213156] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8538), 1, - anon_sym_COMMA, - ACTIONS(8541), 1, - anon_sym_RPAREN, - STATE(5519), 1, - aux_sym_throw_specifier_repeat1, - [188183] = 4, + ACTIONS(8927), 1, + sym_identifier, + STATE(2904), 1, + sym_template_function, + STATE(3256), 1, + sym_template_type, + [213169] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5929), 1, + ACTIONS(5918), 1, anon_sym_COMMA, - ACTIONS(6088), 1, + ACTIONS(5920), 1, anon_sym_RPAREN, - STATE(5548), 1, + STATE(5925), 1, aux_sym_argument_list_repeat1, - [188196] = 4, + [213182] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8543), 1, + ACTIONS(8929), 1, anon_sym_COMMA, - ACTIONS(8545), 1, - anon_sym_RPAREN, - STATE(5519), 1, - aux_sym_throw_specifier_repeat1, - [188209] = 4, + ACTIONS(8932), 1, + anon_sym_RBRACK, + STATE(5870), 1, + aux_sym_structured_binding_declarator_repeat1, + [213195] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8547), 1, + ACTIONS(5840), 1, + anon_sym_COMMA, + ACTIONS(8934), 1, + anon_sym_GT2, + STATE(5999), 1, + aux_sym_template_argument_list_repeat1, + [213208] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8936), 1, anon_sym_COMMA, - ACTIONS(8549), 1, + ACTIONS(8938), 1, anon_sym_RBRACE, - STATE(5550), 1, + STATE(5954), 1, aux_sym_enumerator_list_repeat1, - [188222] = 4, + [213221] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8484), 1, - anon_sym_DASH_GT, - ACTIONS(8551), 1, + ACTIONS(8574), 1, + sym_identifier, + ACTIONS(8940), 1, + anon_sym_RBRACE, + STATE(6655), 1, + sym_enumerator, + [213234] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8036), 1, + anon_sym_COMMA, + ACTIONS(8942), 1, anon_sym_SEMI, - STATE(6753), 1, - sym_trailing_return_type, - [188235] = 3, + STATE(5956), 1, + aux_sym_type_definition_repeat2, + [213247] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8553), 1, + ACTIONS(8944), 1, + anon_sym_COMMA, + ACTIONS(8946), 1, + anon_sym_RPAREN, + STATE(5864), 1, + aux_sym_throw_specifier_repeat1, + [213260] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8948), 1, anon_sym_catch, - STATE(1787), 2, + STATE(412), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [188246] = 3, + [213271] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8810), 1, + anon_sym_DASH_GT, + ACTIONS(8950), 1, + anon_sym_SEMI, + STATE(6801), 1, + sym_trailing_return_type, + [213284] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5399), 1, + ACTIONS(5711), 1, anon_sym_EQ, - ACTIONS(5397), 2, + ACTIONS(5709), 2, anon_sym_COMMA, anon_sym_GT2, - [188257] = 2, + [213295] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7868), 3, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - [188266] = 3, + ACTIONS(5840), 1, + anon_sym_COMMA, + ACTIONS(8952), 1, + anon_sym_GT2, + STATE(5999), 1, + aux_sym_template_argument_list_repeat1, + [213308] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8555), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8557), 2, + ACTIONS(5840), 1, anon_sym_COMMA, - anon_sym_LBRACE, - [188277] = 4, + ACTIONS(8954), 1, + anon_sym_GT2, + STATE(5999), 1, + aux_sym_template_argument_list_repeat1, + [213321] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8294), 1, + ACTIONS(5840), 1, anon_sym_COMMA, - ACTIONS(8559), 1, - anon_sym_LBRACE, - STATE(5552), 1, - aux_sym_base_class_clause_repeat1, - [188290] = 4, + ACTIONS(8956), 1, + anon_sym_GT2, + STATE(5999), 1, + aux_sym_template_argument_list_repeat1, + [213334] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5941), 1, + ACTIONS(5840), 1, anon_sym_COMMA, - ACTIONS(8561), 1, + ACTIONS(8958), 1, anon_sym_GT2, - STATE(5572), 1, + STATE(5999), 1, aux_sym_template_argument_list_repeat1, - [188303] = 4, + [213347] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8563), 1, + ACTIONS(3399), 1, + anon_sym_RBRACE, + ACTIONS(8960), 1, anon_sym_COMMA, - ACTIONS(8566), 1, - anon_sym_RPAREN, - STATE(5530), 1, - aux_sym_preproc_params_repeat1, - [188316] = 4, + STATE(6007), 1, + aux_sym_initializer_list_repeat1, + [213360] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6977), 1, - anon_sym_RPAREN, - ACTIONS(8568), 1, + ACTIONS(5840), 1, anon_sym_COMMA, - STATE(5531), 1, - aux_sym_preproc_argument_list_repeat1, - [188329] = 4, + ACTIONS(8962), 1, + anon_sym_GT2, + STATE(5999), 1, + aux_sym_template_argument_list_repeat1, + [213373] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8571), 1, + ACTIONS(5840), 1, anon_sym_COMMA, - ACTIONS(8574), 1, - anon_sym_LBRACE, - STATE(5532), 1, - aux_sym_field_initializer_list_repeat1, - [188342] = 4, + ACTIONS(8964), 1, + anon_sym_GT2, + STATE(5871), 1, + aux_sym_template_argument_list_repeat1, + [213386] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7236), 1, - anon_sym_COMMA, - ACTIONS(8576), 1, - anon_sym_SEMI, - STATE(5578), 1, - aux_sym_declaration_repeat1, - [188355] = 4, + ACTIONS(8126), 3, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DOT, + [213395] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7236), 1, + ACTIONS(8966), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8968), 2, anon_sym_COMMA, - ACTIONS(8578), 1, - anon_sym_SEMI, - STATE(5578), 1, - aux_sym_declaration_repeat1, - [188368] = 4, + anon_sym_LBRACE, + [213406] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8543), 1, + ACTIONS(8570), 1, anon_sym_COMMA, - ACTIONS(8580), 1, - anon_sym_RPAREN, - STATE(5521), 1, - aux_sym_throw_specifier_repeat1, - [188381] = 4, + ACTIONS(8970), 1, + anon_sym_LBRACE, + STATE(5992), 1, + aux_sym_base_class_clause_repeat1, + [213419] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8582), 1, + ACTIONS(8972), 1, anon_sym_COMMA, - ACTIONS(8585), 1, - anon_sym_RPAREN, - STATE(5536), 1, - aux_sym_parameter_list_repeat1, - [188394] = 4, + ACTIONS(8974), 1, + anon_sym_RBRACE, + STATE(6047), 1, + aux_sym_enumerator_list_repeat1, + [213432] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8574), 1, + sym_identifier, + ACTIONS(8974), 1, + anon_sym_RBRACE, + STATE(6655), 1, + sym_enumerator, + [213445] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8587), 1, + ACTIONS(5918), 1, anon_sym_COMMA, - ACTIONS(8590), 1, + ACTIONS(8976), 1, anon_sym_RPAREN, - STATE(5537), 1, - aux_sym_requires_parameter_list_repeat1, - [188407] = 3, + STATE(6058), 1, + aux_sym_argument_list_repeat1, + [213458] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8592), 1, - anon_sym_catch, - STATE(1746), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [188418] = 4, + ACTIONS(8036), 1, + anon_sym_COMMA, + ACTIONS(8978), 1, + anon_sym_SEMI, + STATE(5956), 1, + aux_sym_type_definition_repeat2, + [213471] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8594), 1, + ACTIONS(8980), 1, anon_sym_COMMA, - ACTIONS(8597), 1, + ACTIONS(8982), 1, anon_sym_GT2, - STATE(5539), 1, + STATE(6064), 1, aux_sym_template_parameter_list_repeat1, - [188431] = 4, + [213484] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8599), 1, + ACTIONS(8984), 1, sym_identifier, - STATE(2676), 1, - sym_template_type, - STATE(2691), 1, + STATE(2197), 1, sym_template_function, - [188444] = 2, + STATE(3256), 1, + sym_template_type, + [213497] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8601), 3, + ACTIONS(8948), 1, + anon_sym_catch, + STATE(411), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [213508] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5840), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(8986), 1, anon_sym_GT2, - [188453] = 4, + STATE(6023), 1, + aux_sym_template_argument_list_repeat1, + [213521] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7236), 1, + ACTIONS(7506), 1, anon_sym_COMMA, - ACTIONS(8603), 1, + ACTIONS(8988), 1, anon_sym_SEMI, - STATE(5534), 1, + STATE(6098), 1, aux_sym_declaration_repeat1, - [188466] = 2, + [213534] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8605), 3, + ACTIONS(7506), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_GT2, - [188475] = 4, + ACTIONS(8990), 1, + anon_sym_SEMI, + STATE(6098), 1, + aux_sym_declaration_repeat1, + [213547] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8607), 1, + ACTIONS(5936), 1, anon_sym_COMMA, - ACTIONS(8610), 1, - anon_sym_GT2, - STATE(5544), 1, - aux_sym_template_argument_list_repeat1, - [188488] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6004), 1, + ACTIONS(5938), 1, anon_sym_RBRACE, - ACTIONS(8612), 1, - anon_sym_COMMA, - STATE(5545), 1, + STATE(5938), 1, aux_sym_initializer_list_repeat1, - [188501] = 4, + [213560] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7766), 1, + ACTIONS(5840), 1, anon_sym_COMMA, - ACTIONS(8615), 1, - anon_sym_SEMI, - STATE(5557), 1, - aux_sym_type_definition_repeat2, - [188514] = 3, + ACTIONS(8992), 1, + anon_sym_GT2, + STATE(5942), 1, + aux_sym_template_argument_list_repeat1, + [213573] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8312), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8617), 2, + ACTIONS(5840), 1, anon_sym_COMMA, + ACTIONS(8994), 1, anon_sym_GT2, - [188525] = 4, + STATE(5879), 1, + aux_sym_template_argument_list_repeat1, + [213586] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5929), 1, + ACTIONS(8980), 1, anon_sym_COMMA, - ACTIONS(8619), 1, - anon_sym_RPAREN, - STATE(5562), 1, - aux_sym_argument_list_repeat1, - [188538] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8302), 1, - sym_identifier, - ACTIONS(8621), 1, - anon_sym_RBRACE, - STATE(6177), 1, - sym_enumerator, - [188551] = 4, + ACTIONS(8996), 1, + anon_sym_GT2, + STATE(5945), 1, + aux_sym_template_parameter_list_repeat1, + [213599] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8621), 1, - anon_sym_RBRACE, - ACTIONS(8623), 1, + ACTIONS(5946), 1, anon_sym_COMMA, - STATE(5559), 1, - aux_sym_enumerator_list_repeat1, - [188564] = 3, + ACTIONS(5948), 1, + anon_sym_RBRACE, + STATE(5883), 1, + aux_sym_initializer_list_repeat1, + [213612] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8627), 1, - anon_sym_RPAREN, - ACTIONS(8625), 2, + ACTIONS(7506), 1, anon_sym_COMMA, + ACTIONS(8998), 1, anon_sym_SEMI, - [188575] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8629), 1, - anon_sym_COMMA, - ACTIONS(8632), 1, - anon_sym_LBRACE, - STATE(5552), 1, - aux_sym_base_class_clause_repeat1, - [188588] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8634), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8632), 2, - anon_sym_COMMA, - anon_sym_LBRACE, - [188599] = 4, + STATE(6098), 1, + aux_sym_declaration_repeat1, + [213625] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8294), 1, + ACTIONS(9000), 1, anon_sym_COMMA, - ACTIONS(8636), 1, - anon_sym_LBRACE, - STATE(5552), 1, - aux_sym_base_class_clause_repeat1, - [188612] = 3, + ACTIONS(9002), 1, + anon_sym_RBRACE, + STATE(5889), 1, + aux_sym_enumerator_list_repeat1, + [213638] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8638), 1, + ACTIONS(8826), 1, anon_sym_catch, - STATE(1094), 2, + STATE(1881), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [188623] = 4, + [213649] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8294), 1, + ACTIONS(5918), 1, anon_sym_COMMA, - ACTIONS(8636), 1, - anon_sym_LBRACE, - STATE(5528), 1, - aux_sym_base_class_clause_repeat1, - [188636] = 4, + ACTIONS(5960), 1, + anon_sym_RPAREN, + STATE(5891), 1, + aux_sym_argument_list_repeat1, + [213662] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8640), 1, + ACTIONS(8888), 1, anon_sym_COMMA, - ACTIONS(8643), 1, - anon_sym_SEMI, - STATE(5557), 1, - aux_sym_type_definition_repeat2, - [188649] = 4, - ACTIONS(6921), 1, - anon_sym_LPAREN2, - ACTIONS(6923), 1, - sym_comment, - ACTIONS(8645), 1, - anon_sym_LF, - STATE(4394), 1, - sym_preproc_argument_list, - [188662] = 4, + ACTIONS(9004), 1, + anon_sym_RBRACK_RBRACK, + STATE(5991), 1, + aux_sym_attribute_declaration_repeat1, + [213675] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8647), 1, + ACTIONS(8870), 1, anon_sym_COMMA, - ACTIONS(8650), 1, - anon_sym_RBRACE, - STATE(5559), 1, - aux_sym_enumerator_list_repeat1, - [188675] = 4, + ACTIONS(9006), 1, + anon_sym_RPAREN, + STATE(5949), 1, + aux_sym_parameter_list_repeat1, + [213688] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8302), 1, - sym_identifier, - ACTIONS(8652), 1, + ACTIONS(5834), 1, anon_sym_RBRACE, - STATE(6177), 1, - sym_enumerator, - [188688] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6008), 1, + ACTIONS(5940), 1, anon_sym_COMMA, - ACTIONS(8654), 1, - anon_sym_RBRACK, - STATE(5599), 1, - aux_sym_lambda_capture_specifier_repeat1, - [188701] = 4, + STATE(5977), 1, + aux_sym_initializer_list_repeat1, + [213701] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6162), 1, - anon_sym_RPAREN, - ACTIONS(8656), 1, + ACTIONS(7147), 1, anon_sym_COMMA, - STATE(5562), 1, - aux_sym_argument_list_repeat1, - [188714] = 4, + ACTIONS(9008), 1, + anon_sym_RPAREN, + STATE(5919), 1, + aux_sym_preproc_argument_list_repeat1, + [213714] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7766), 1, - anon_sym_COMMA, - ACTIONS(8659), 1, - anon_sym_SEMI, - STATE(5557), 1, - aux_sym_type_definition_repeat2, - [188727] = 4, + ACTIONS(8904), 1, + anon_sym_catch, + STATE(456), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [213725] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8661), 1, + ACTIONS(7506), 1, anon_sym_COMMA, - ACTIONS(8663), 1, - anon_sym_RPAREN, - STATE(5530), 1, - aux_sym_preproc_params_repeat1, - [188740] = 4, + ACTIONS(9010), 1, + anon_sym_SEMI, + STATE(5953), 1, + aux_sym_declaration_repeat1, + [213738] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6871), 1, + ACTIONS(7506), 1, anon_sym_COMMA, - ACTIONS(8665), 1, - anon_sym_RPAREN, - STATE(5531), 1, - aux_sym_preproc_argument_list_repeat1, - [188753] = 3, + ACTIONS(9012), 1, + anon_sym_SEMI, + STATE(5897), 1, + aux_sym_declaration_repeat1, + [213751] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8667), 1, + ACTIONS(8948), 1, anon_sym_catch, - STATE(365), 2, + STATE(345), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [188764] = 4, + [213762] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9014), 3, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DOT, + [213771] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8669), 1, + ACTIONS(9016), 1, sym_identifier, - STATE(2470), 1, - sym_template_method, - STATE(2676), 1, + STATE(2411), 1, sym_template_type, - [188777] = 4, + STATE(2904), 1, + sym_template_function, + [213784] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5022), 1, + ACTIONS(9018), 1, anon_sym_COMMA, - ACTIONS(8671), 1, - anon_sym_RBRACK, - STATE(5677), 1, - aux_sym_structured_binding_declarator_repeat1, - [188790] = 3, + ACTIONS(9021), 1, + anon_sym_RPAREN, + STATE(5918), 1, + aux_sym_preproc_params_repeat1, + [213797] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8673), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8675), 2, + ACTIONS(7365), 1, + anon_sym_RPAREN, + ACTIONS(9023), 1, anon_sym_COMMA, - anon_sym_LBRACE, - [188801] = 4, + STATE(5919), 1, + aux_sym_preproc_argument_list_repeat1, + [213810] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5941), 1, + ACTIONS(5840), 1, anon_sym_COMMA, - ACTIONS(8677), 1, + ACTIONS(9026), 1, anon_sym_GT2, - STATE(5544), 1, + STATE(5999), 1, aux_sym_template_argument_list_repeat1, - [188814] = 4, + [213823] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5941), 1, + ACTIONS(5840), 1, anon_sym_COMMA, - ACTIONS(8679), 1, + ACTIONS(9028), 1, anon_sym_GT2, - STATE(5544), 1, + STATE(5999), 1, aux_sym_template_argument_list_repeat1, - [188827] = 4, + [213836] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5941), 1, + ACTIONS(8036), 1, anon_sym_COMMA, - ACTIONS(8681), 1, - anon_sym_GT2, - STATE(5544), 1, - aux_sym_template_argument_list_repeat1, - [188840] = 4, + ACTIONS(9030), 1, + anon_sym_SEMI, + STATE(5956), 1, + aux_sym_type_definition_repeat2, + [213849] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8683), 1, + ACTIONS(8888), 1, anon_sym_COMMA, - ACTIONS(8685), 1, - anon_sym_LBRACE, - STATE(5532), 1, - aux_sym_field_initializer_list_repeat1, - [188853] = 3, + ACTIONS(9032), 1, + anon_sym_RBRACK_RBRACK, + STATE(5908), 1, + aux_sym_attribute_declaration_repeat1, + [213862] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3816), 1, - anon_sym_COLON_COLON, - ACTIONS(4964), 2, - anon_sym_LPAREN2, - anon_sym_LBRACE, - [188864] = 3, + ACTIONS(5918), 1, + anon_sym_COMMA, + ACTIONS(6003), 1, + anon_sym_RPAREN, + STATE(5967), 1, + aux_sym_argument_list_repeat1, + [213875] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8687), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8689), 2, + ACTIONS(5918), 1, anon_sym_COMMA, - anon_sym_LBRACE, - [188875] = 4, + ACTIONS(9034), 1, + anon_sym_RPAREN, + STATE(6058), 1, + aux_sym_argument_list_repeat1, + [213888] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8691), 1, + ACTIONS(9036), 1, anon_sym_COMMA, - ACTIONS(8693), 1, - anon_sym_RPAREN, - STATE(5536), 1, - aux_sym_parameter_list_repeat1, - [188888] = 3, + ACTIONS(9038), 1, + anon_sym_RBRACE, + STATE(5969), 1, + aux_sym_enumerator_list_repeat1, + [213901] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8592), 1, - anon_sym_catch, - STATE(1744), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [188899] = 4, + ACTIONS(8574), 1, + sym_identifier, + ACTIONS(9040), 1, + anon_sym_RBRACE, + STATE(6655), 1, + sym_enumerator, + [213914] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8695), 1, + ACTIONS(7506), 1, anon_sym_COMMA, - ACTIONS(8698), 1, + ACTIONS(9042), 1, anon_sym_SEMI, - STATE(5578), 1, + STATE(6098), 1, aux_sym_declaration_repeat1, - [188912] = 4, + [213927] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8700), 1, + ACTIONS(9044), 3, anon_sym_COMMA, - ACTIONS(8702), 1, anon_sym_RPAREN, - STATE(5537), 1, - aux_sym_requires_parameter_list_repeat1, - [188925] = 4, + anon_sym_GT2, + [213936] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7766), 1, + ACTIONS(5840), 1, anon_sym_COMMA, - ACTIONS(8704), 1, - anon_sym_SEMI, - STATE(5557), 1, - aux_sym_type_definition_repeat2, - [188938] = 4, + ACTIONS(9046), 1, + anon_sym_GT2, + STATE(5999), 1, + aux_sym_template_argument_list_repeat1, + [213949] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8302), 1, - sym_identifier, - ACTIONS(8706), 1, + ACTIONS(9048), 1, + anon_sym_COMMA, + ACTIONS(9050), 1, anon_sym_RBRACE, - STATE(6177), 1, - sym_enumerator, - [188951] = 2, + STATE(6084), 1, + aux_sym_enumerator_list_repeat1, + [213962] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8708), 3, + ACTIONS(5840), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(9052), 1, anon_sym_GT2, - [188960] = 4, + STATE(5920), 1, + aux_sym_template_argument_list_repeat1, + [213975] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8710), 1, + ACTIONS(9056), 1, + anon_sym_EQ, + ACTIONS(9054), 2, anon_sym_COMMA, - ACTIONS(8712), 1, - anon_sym_GT2, - STATE(5539), 1, - aux_sym_template_parameter_list_repeat1, - [188973] = 2, + anon_sym_RBRACE, + [213986] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8708), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_GT2, - [188982] = 3, + ACTIONS(8828), 1, + anon_sym_LPAREN2, + ACTIONS(9058), 1, + anon_sym_constexpr, + STATE(311), 1, + sym_condition_clause, + [213999] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8714), 1, - sym_identifier, - ACTIONS(8716), 2, + ACTIONS(9060), 1, anon_sym_COMMA, - anon_sym_GT2, - [188993] = 4, + ACTIONS(9063), 1, + anon_sym_LBRACE, + STATE(5935), 1, + aux_sym_field_initializer_list_repeat1, + [214012] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5941), 1, + ACTIONS(9065), 3, anon_sym_COMMA, - ACTIONS(8718), 1, + anon_sym_RPAREN, anon_sym_GT2, - STATE(5544), 1, - aux_sym_template_argument_list_repeat1, - [189006] = 4, + [214021] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5941), 1, + ACTIONS(5880), 1, anon_sym_COMMA, - ACTIONS(8720), 1, - anon_sym_GT2, - STATE(5544), 1, - aux_sym_template_argument_list_repeat1, - [189019] = 4, + ACTIONS(9067), 1, + anon_sym_RBRACK, + STATE(6110), 1, + aux_sym_lambda_capture_specifier_repeat1, + [214034] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3305), 1, + ACTIONS(3387), 1, anon_sym_RBRACE, - ACTIONS(8722), 1, + ACTIONS(9069), 1, anon_sym_COMMA, - STATE(5545), 1, + STATE(6007), 1, aux_sym_initializer_list_repeat1, - [189032] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8724), 3, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - [189041] = 4, + [214047] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8726), 1, - sym_identifier, - STATE(2313), 1, - sym_template_function, - STATE(2676), 1, - sym_template_type, - [189054] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8728), 1, - sym_identifier, - STATE(2313), 1, - sym_template_function, - STATE(2676), 1, - sym_template_type, - [189067] = 4, + ACTIONS(4999), 1, + anon_sym_COMMA, + ACTIONS(9071), 1, + anon_sym_RBRACK, + STATE(5870), 1, + aux_sym_structured_binding_declarator_repeat1, + [214060] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5941), 1, + ACTIONS(5840), 1, anon_sym_COMMA, - ACTIONS(8730), 1, + ACTIONS(9073), 1, anon_sym_GT2, - STATE(5544), 1, + STATE(5999), 1, aux_sym_template_argument_list_repeat1, - [189080] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8294), 1, - anon_sym_COMMA, - ACTIONS(8300), 1, - anon_sym_LBRACE, - STATE(5554), 1, - aux_sym_base_class_clause_repeat1, - [189093] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8732), 1, - sym_identifier, - STATE(2313), 1, - sym_template_function, - STATE(2676), 1, - sym_template_type, - [189106] = 4, + [214073] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8294), 1, + ACTIONS(5840), 1, anon_sym_COMMA, - ACTIONS(8300), 1, - anon_sym_LBRACE, - STATE(5552), 1, - aux_sym_base_class_clause_repeat1, - [189119] = 4, + ACTIONS(9075), 1, + anon_sym_GT2, + STATE(5999), 1, + aux_sym_template_argument_list_repeat1, + [214086] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5941), 1, + ACTIONS(5840), 1, anon_sym_COMMA, - ACTIONS(8734), 1, + ACTIONS(9077), 1, anon_sym_GT2, - STATE(5544), 1, + STATE(5999), 1, aux_sym_template_argument_list_repeat1, - [189132] = 4, + [214099] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8736), 1, + ACTIONS(5840), 1, anon_sym_COMMA, - ACTIONS(8738), 1, - anon_sym_RBRACE, - STATE(5559), 1, - aux_sym_enumerator_list_repeat1, - [189145] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8302), 1, - sym_identifier, - ACTIONS(8738), 1, - anon_sym_RBRACE, - STATE(6177), 1, - sym_enumerator, - [189158] = 4, + ACTIONS(9079), 1, + anon_sym_GT2, + STATE(5988), 1, + aux_sym_template_argument_list_repeat1, + [214112] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6096), 1, - anon_sym_RBRACK, - ACTIONS(8740), 1, + ACTIONS(5840), 1, anon_sym_COMMA, - STATE(5599), 1, - aux_sym_lambda_capture_specifier_repeat1, - [189171] = 4, + ACTIONS(9081), 1, + anon_sym_GT2, + STATE(5999), 1, + aux_sym_template_argument_list_repeat1, + [214125] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8743), 1, + ACTIONS(8980), 1, anon_sym_COMMA, - ACTIONS(8746), 1, - anon_sym_RBRACK, - STATE(5600), 1, - aux_sym_structured_binding_declarator_repeat1, - [189184] = 4, + ACTIONS(9083), 1, + anon_sym_GT2, + STATE(5979), 1, + aux_sym_template_parameter_list_repeat1, + [214138] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5929), 1, + ACTIONS(5918), 1, anon_sym_COMMA, - ACTIONS(8748), 1, + ACTIONS(5999), 1, anon_sym_RPAREN, - STATE(5562), 1, + STATE(6031), 1, aux_sym_argument_list_repeat1, - [189197] = 4, + [214151] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8750), 1, + ACTIONS(8888), 1, anon_sym_COMMA, - ACTIONS(8753), 1, + ACTIONS(9085), 1, anon_sym_RBRACK_RBRACK, - STATE(5602), 1, + STATE(5991), 1, aux_sym_attribute_declaration_repeat1, - [189210] = 4, + [214164] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7766), 1, + ACTIONS(8036), 1, anon_sym_COMMA, - ACTIONS(8755), 1, + ACTIONS(9087), 1, anon_sym_SEMI, - STATE(5557), 1, + STATE(5956), 1, aux_sym_type_definition_repeat2, - [189223] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8757), 1, - sym_identifier, - STATE(2313), 1, - sym_template_function, - STATE(2676), 1, - sym_template_type, - [189236] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8534), 1, - anon_sym_LPAREN2, - ACTIONS(8759), 1, - anon_sym_constexpr, - STATE(289), 1, - sym_condition_clause, - [189249] = 4, - ACTIONS(6921), 1, - anon_sym_LPAREN2, - ACTIONS(6923), 1, - sym_comment, - ACTIONS(8761), 1, - anon_sym_LF, - STATE(4394), 1, - sym_preproc_argument_list, - [189262] = 4, + [214177] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8763), 1, - sym_identifier, - STATE(2313), 1, - sym_template_function, - STATE(2676), 1, - sym_template_type, - [189275] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8765), 1, + ACTIONS(8870), 1, anon_sym_COMMA, - ACTIONS(8767), 1, - anon_sym_RBRACK_RBRACK, - STATE(5800), 1, - aux_sym_attribute_declaration_repeat1, - [189288] = 4, + ACTIONS(9089), 1, + anon_sym_RPAREN, + STATE(5958), 1, + aux_sym_parameter_list_repeat1, + [214190] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8765), 1, + ACTIONS(8944), 1, anon_sym_COMMA, - ACTIONS(8769), 1, - anon_sym_RBRACK_RBRACK, - STATE(5615), 1, - aux_sym_attribute_declaration_repeat1, - [189301] = 3, + ACTIONS(9091), 1, + anon_sym_RPAREN, + STATE(5875), 1, + aux_sym_throw_specifier_repeat1, + [214203] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8771), 1, + ACTIONS(8904), 1, anon_sym_catch, - STATE(329), 2, + STATE(468), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [189312] = 4, + [214214] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3825), 1, - anon_sym_LBRACE, - ACTIONS(8308), 1, - anon_sym_COLON_COLON, - STATE(1033), 1, - sym_declaration_list, - [189325] = 4, + ACTIONS(7506), 1, + anon_sym_COMMA, + ACTIONS(9093), 1, + anon_sym_SEMI, + STATE(6098), 1, + aux_sym_declaration_repeat1, + [214227] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7236), 1, + ACTIONS(7506), 1, anon_sym_COMMA, - ACTIONS(8773), 1, + ACTIONS(9095), 1, anon_sym_SEMI, - STATE(5625), 1, + STATE(6098), 1, aux_sym_declaration_repeat1, - [189338] = 4, + [214240] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8775), 1, - sym_identifier, - STATE(2183), 1, - sym_template_type, - STATE(2691), 1, - sym_template_function, - [189351] = 4, + ACTIONS(9040), 1, + anon_sym_RBRACE, + ACTIONS(9097), 1, + anon_sym_COMMA, + STATE(6047), 1, + aux_sym_enumerator_list_repeat1, + [214253] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8534), 1, - anon_sym_LPAREN2, - ACTIONS(8777), 1, - anon_sym_constexpr, - STATE(243), 1, - sym_condition_clause, - [189364] = 4, + ACTIONS(4999), 1, + anon_sym_COMMA, + ACTIONS(9099), 1, + anon_sym_RBRACK, + STATE(5939), 1, + aux_sym_structured_binding_declarator_repeat1, + [214266] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8765), 1, + ACTIONS(9101), 1, anon_sym_COMMA, - ACTIONS(8779), 1, - anon_sym_RBRACK_RBRACK, - STATE(5602), 1, - aux_sym_attribute_declaration_repeat1, - [189377] = 4, + ACTIONS(9104), 1, + anon_sym_SEMI, + STATE(5956), 1, + aux_sym_type_definition_repeat2, + [214279] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8781), 1, - sym_identifier, - STATE(2313), 1, - sym_template_function, - STATE(2676), 1, - sym_template_type, - [189390] = 4, + ACTIONS(9106), 1, + anon_sym_catch, + STATE(1939), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [214290] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5929), 1, + ACTIONS(9108), 1, anon_sym_COMMA, - ACTIONS(6042), 1, + ACTIONS(9111), 1, anon_sym_RPAREN, - STATE(5629), 1, - aux_sym_argument_list_repeat1, - [189403] = 4, + STATE(5958), 1, + aux_sym_parameter_list_repeat1, + [214303] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8783), 1, - anon_sym_COMMA, - ACTIONS(8785), 1, + ACTIONS(8574), 1, + sym_identifier, + ACTIONS(9113), 1, anon_sym_RBRACE, - STATE(5631), 1, - aux_sym_enumerator_list_repeat1, - [189416] = 4, + STATE(6655), 1, + sym_enumerator, + [214316] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6064), 1, + ACTIONS(8036), 1, anon_sym_COMMA, - ACTIONS(6066), 1, - anon_sym_RBRACE, - STATE(5632), 1, - aux_sym_initializer_list_repeat1, - [189429] = 4, + ACTIONS(9115), 1, + anon_sym_SEMI, + STATE(5956), 1, + aux_sym_type_definition_repeat2, + [214329] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5941), 1, - anon_sym_COMMA, - ACTIONS(8787), 1, - anon_sym_GT2, - STATE(5636), 1, - aux_sym_template_argument_list_repeat1, - [189442] = 4, + ACTIONS(9117), 1, + anon_sym_catch, + STATE(1971), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [214340] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8710), 1, + ACTIONS(5840), 1, anon_sym_COMMA, - ACTIONS(8789), 1, + ACTIONS(9119), 1, anon_sym_GT2, - STATE(5637), 1, - aux_sym_template_parameter_list_repeat1, - [189455] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8791), 1, - sym_identifier, - STATE(2598), 1, - sym_template_function, - STATE(2676), 1, - sym_template_type, - [189468] = 4, + STATE(5999), 1, + aux_sym_template_argument_list_repeat1, + [214353] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8661), 1, + ACTIONS(5840), 1, anon_sym_COMMA, - ACTIONS(8793), 1, - anon_sym_RPAREN, - STATE(5564), 1, - aux_sym_preproc_params_repeat1, - [189481] = 4, + ACTIONS(9121), 1, + anon_sym_GT2, + STATE(5999), 1, + aux_sym_template_argument_list_repeat1, + [214366] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7236), 1, + ACTIONS(5840), 1, anon_sym_COMMA, - ACTIONS(8795), 1, - anon_sym_SEMI, - STATE(5578), 1, - aux_sym_declaration_repeat1, - [189494] = 4, + ACTIONS(9123), 1, + anon_sym_GT2, + STATE(5944), 1, + aux_sym_template_argument_list_repeat1, + [214379] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7236), 1, + ACTIONS(8036), 1, anon_sym_COMMA, - ACTIONS(8797), 1, + ACTIONS(9125), 1, anon_sym_SEMI, - STATE(5578), 1, - aux_sym_declaration_repeat1, - [189507] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8691), 1, - anon_sym_COMMA, - ACTIONS(8799), 1, - anon_sym_RPAREN, - STATE(5643), 1, - aux_sym_parameter_list_repeat1, - [189520] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8771), 1, - anon_sym_catch, - STATE(377), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [189531] = 4, + STATE(5956), 1, + aux_sym_type_definition_repeat2, + [214392] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7766), 1, + ACTIONS(8036), 1, anon_sym_COMMA, - ACTIONS(8801), 1, + ACTIONS(9127), 1, anon_sym_SEMI, - STATE(5557), 1, + STATE(5956), 1, aux_sym_type_definition_repeat2, - [189544] = 4, + [214405] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5929), 1, + ACTIONS(5918), 1, anon_sym_COMMA, - ACTIONS(8803), 1, + ACTIONS(9129), 1, anon_sym_RPAREN, - STATE(5562), 1, + STATE(6058), 1, aux_sym_argument_list_repeat1, - [189557] = 4, + [214418] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8302), 1, + ACTIONS(8574), 1, sym_identifier, - ACTIONS(8805), 1, + ACTIONS(9131), 1, anon_sym_RBRACE, - STATE(6177), 1, + STATE(6655), 1, sym_enumerator, - [189570] = 4, + [214431] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8805), 1, + ACTIONS(9131), 1, anon_sym_RBRACE, - ACTIONS(8807), 1, + ACTIONS(9133), 1, anon_sym_COMMA, - STATE(5559), 1, + STATE(6047), 1, aux_sym_enumerator_list_repeat1, - [189583] = 4, + [214444] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3331), 1, + ACTIONS(8574), 1, + sym_identifier, + ACTIONS(9135), 1, anon_sym_RBRACE, - ACTIONS(8809), 1, - anon_sym_COMMA, - STATE(5545), 1, - aux_sym_initializer_list_repeat1, - [189596] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5929), 1, - anon_sym_COMMA, - ACTIONS(6076), 1, - anon_sym_RPAREN, - STATE(5601), 1, - aux_sym_argument_list_repeat1, - [189609] = 4, + STATE(6655), 1, + sym_enumerator, + [214457] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5941), 1, + ACTIONS(5840), 1, anon_sym_COMMA, - ACTIONS(8811), 1, + ACTIONS(9137), 1, anon_sym_GT2, - STATE(5544), 1, + STATE(5999), 1, aux_sym_template_argument_list_repeat1, - [189622] = 4, + [214470] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5941), 1, + ACTIONS(5840), 1, anon_sym_COMMA, - ACTIONS(8813), 1, + ACTIONS(9139), 1, anon_sym_GT2, - STATE(5544), 1, + STATE(5999), 1, aux_sym_template_argument_list_repeat1, - [189635] = 4, + [214483] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5941), 1, + ACTIONS(5840), 1, anon_sym_COMMA, - ACTIONS(8815), 1, + ACTIONS(9141), 1, anon_sym_GT2, - STATE(5544), 1, + STATE(5999), 1, aux_sym_template_argument_list_repeat1, - [189648] = 4, + [214496] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8710), 1, + ACTIONS(3379), 1, + anon_sym_RBRACE, + ACTIONS(9143), 1, anon_sym_COMMA, - ACTIONS(8817), 1, - anon_sym_GT2, - STATE(5539), 1, - aux_sym_template_parameter_list_repeat1, - [189661] = 3, + STATE(6007), 1, + aux_sym_initializer_list_repeat1, + [214509] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8771), 1, + ACTIONS(9117), 1, anon_sym_catch, - STATE(430), 2, + STATE(1979), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [189672] = 4, + [214520] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6871), 1, + ACTIONS(9145), 1, anon_sym_COMMA, - ACTIONS(8819), 1, + ACTIONS(9148), 1, anon_sym_RPAREN, - STATE(5531), 1, - aux_sym_preproc_argument_list_repeat1, - [189685] = 4, + STATE(5976), 1, + aux_sym_requires_parameter_list_repeat1, + [214533] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8821), 1, - sym_identifier, - STATE(2313), 1, - sym_template_function, - STATE(2676), 1, - sym_template_type, - [189698] = 4, + ACTIONS(3373), 1, + anon_sym_RBRACE, + ACTIONS(9150), 1, + anon_sym_COMMA, + STATE(6007), 1, + aux_sym_initializer_list_repeat1, + [214546] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7766), 1, + ACTIONS(5840), 1, anon_sym_COMMA, - ACTIONS(8823), 1, - anon_sym_SEMI, - STATE(5557), 1, - aux_sym_type_definition_repeat2, - [189711] = 4, + ACTIONS(9152), 1, + anon_sym_GT2, + STATE(5999), 1, + aux_sym_template_argument_list_repeat1, + [214559] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8302), 1, - sym_identifier, - ACTIONS(8825), 1, - anon_sym_RBRACE, - STATE(6177), 1, - sym_enumerator, - [189724] = 4, + ACTIONS(9154), 1, + anon_sym_COMMA, + ACTIONS(9157), 1, + anon_sym_GT2, + STATE(5979), 1, + aux_sym_template_parameter_list_repeat1, + [214572] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5840), 1, + anon_sym_COMMA, + ACTIONS(9159), 1, + anon_sym_GT2, + STATE(5999), 1, + aux_sym_template_argument_list_repeat1, + [214585] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8691), 1, + ACTIONS(9161), 3, anon_sym_COMMA, - ACTIONS(8827), 1, anon_sym_RPAREN, - STATE(5536), 1, - aux_sym_parameter_list_repeat1, - [189737] = 3, + anon_sym_GT2, + [214594] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8667), 1, - anon_sym_catch, - STATE(330), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [189748] = 4, + ACTIONS(5840), 1, + anon_sym_COMMA, + ACTIONS(9163), 1, + anon_sym_GT2, + STATE(5999), 1, + aux_sym_template_argument_list_repeat1, + [214607] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8543), 1, + ACTIONS(5840), 1, anon_sym_COMMA, - ACTIONS(8829), 1, - anon_sym_RPAREN, - STATE(5648), 1, - aux_sym_throw_specifier_repeat1, - [189761] = 4, + ACTIONS(9165), 1, + anon_sym_GT2, + STATE(5978), 1, + aux_sym_template_argument_list_repeat1, + [214620] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3829), 1, - anon_sym_LBRACE, - ACTIONS(8308), 1, - anon_sym_COLON_COLON, - STATE(955), 1, - sym_declaration_list, - [189774] = 4, + ACTIONS(9167), 1, + anon_sym_COMMA, + ACTIONS(9169), 1, + anon_sym_RBRACE, + STATE(6047), 1, + aux_sym_enumerator_list_repeat1, + [214633] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8574), 1, + sym_identifier, + ACTIONS(9169), 1, + anon_sym_RBRACE, + STATE(6655), 1, + sym_enumerator, + [214646] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8683), 1, + ACTIONS(5840), 1, anon_sym_COMMA, - ACTIONS(8831), 1, - anon_sym_LBRACE, - STATE(5573), 1, - aux_sym_field_initializer_list_repeat1, - [189787] = 4, + ACTIONS(9171), 1, + anon_sym_GT2, + STATE(5999), 1, + aux_sym_template_argument_list_repeat1, + [214659] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8543), 1, + ACTIONS(5840), 1, anon_sym_COMMA, - ACTIONS(8833), 1, - anon_sym_RPAREN, - STATE(5519), 1, - aux_sym_throw_specifier_repeat1, - [189800] = 4, + ACTIONS(9173), 1, + anon_sym_GT2, + STATE(5999), 1, + aux_sym_template_argument_list_repeat1, + [214672] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8534), 1, - anon_sym_LPAREN2, - ACTIONS(8835), 1, - anon_sym_constexpr, - STATE(169), 1, - sym_condition_clause, - [189813] = 4, + ACTIONS(5840), 1, + anon_sym_COMMA, + ACTIONS(9175), 1, + anon_sym_GT2, + STATE(5999), 1, + aux_sym_template_argument_list_repeat1, + [214685] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8302), 1, - sym_identifier, - ACTIONS(8837), 1, - anon_sym_RBRACE, - STATE(6177), 1, - sym_enumerator, - [189826] = 4, + ACTIONS(5918), 1, + anon_sym_COMMA, + ACTIONS(9177), 1, + anon_sym_RPAREN, + STATE(6058), 1, + aux_sym_argument_list_repeat1, + [214698] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7766), 1, + ACTIONS(8036), 1, anon_sym_COMMA, - ACTIONS(8839), 1, + ACTIONS(9179), 1, anon_sym_SEMI, - STATE(5557), 1, + STATE(5956), 1, aux_sym_type_definition_repeat2, - [189839] = 4, + [214711] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8841), 1, - sym_identifier, - STATE(2676), 1, - sym_template_type, - STATE(2839), 1, - sym_template_function, - [189852] = 3, + ACTIONS(9181), 1, + anon_sym_COMMA, + ACTIONS(9184), 1, + anon_sym_RBRACK_RBRACK, + STATE(5991), 1, + aux_sym_attribute_declaration_repeat1, + [214724] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8843), 1, - anon_sym_catch, - STATE(344), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [189863] = 3, + ACTIONS(9186), 1, + anon_sym_COMMA, + ACTIONS(9189), 1, + anon_sym_LBRACE, + STATE(5992), 1, + aux_sym_base_class_clause_repeat1, + [214737] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8667), 1, + ACTIONS(9106), 1, anon_sym_catch, - STATE(449), 2, + STATE(1941), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [189874] = 4, - ACTIONS(6921), 1, - anon_sym_LPAREN2, - ACTIONS(6923), 1, - sym_comment, - ACTIONS(8845), 1, - anon_sym_LF, - STATE(4394), 1, - sym_preproc_argument_list, - [189887] = 4, + [214748] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8847), 1, + ACTIONS(9191), 1, sym_identifier, - STATE(2598), 1, + STATE(2470), 1, sym_template_function, - STATE(2676), 1, + STATE(3256), 1, sym_template_type, - [189900] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8765), 1, - anon_sym_COMMA, - ACTIONS(8849), 1, - anon_sym_RBRACK_RBRACK, - STATE(5670), 1, - aux_sym_attribute_declaration_repeat1, - [189913] = 3, + [214761] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8253), 1, + ACTIONS(9117), 1, anon_sym_catch, - STATE(5230), 2, + STATE(1973), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [189924] = 4, + [214772] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3827), 1, - anon_sym_LBRACE, - ACTIONS(8308), 1, - anon_sym_COLON_COLON, - STATE(468), 1, - sym_declaration_list, - [189937] = 4, + ACTIONS(8036), 1, + anon_sym_COMMA, + ACTIONS(9193), 1, + anon_sym_SEMI, + STATE(5956), 1, + aux_sym_type_definition_repeat2, + [214785] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8691), 1, - anon_sym_COMMA, - ACTIONS(8851), 1, - anon_sym_RPAREN, - STATE(5576), 1, - aux_sym_parameter_list_repeat1, - [189950] = 3, + ACTIONS(8574), 1, + sym_identifier, + ACTIONS(9195), 1, + anon_sym_RBRACE, + STATE(6655), 1, + sym_enumerator, + [214798] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8592), 1, - anon_sym_catch, - STATE(1745), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [189961] = 4, + ACTIONS(5840), 1, + anon_sym_COMMA, + ACTIONS(9197), 1, + anon_sym_GT2, + STATE(5999), 1, + aux_sym_template_argument_list_repeat1, + [214811] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7236), 1, + ACTIONS(9199), 1, anon_sym_COMMA, - ACTIONS(8853), 1, - anon_sym_SEMI, - STATE(5578), 1, - aux_sym_declaration_repeat1, - [189974] = 4, + ACTIONS(9202), 1, + anon_sym_GT2, + STATE(5999), 1, + aux_sym_template_argument_list_repeat1, + [214824] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7236), 1, + ACTIONS(5840), 1, anon_sym_COMMA, - ACTIONS(8855), 1, - anon_sym_SEMI, - STATE(5681), 1, - aux_sym_declaration_repeat1, - [189987] = 4, + ACTIONS(9204), 1, + anon_sym_GT2, + STATE(5999), 1, + aux_sym_template_argument_list_repeat1, + [214837] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7236), 1, + ACTIONS(5840), 1, anon_sym_COMMA, - ACTIONS(8857), 1, - anon_sym_SEMI, - STATE(5578), 1, - aux_sym_declaration_repeat1, - [190000] = 4, + ACTIONS(9206), 1, + anon_sym_GT2, + STATE(5999), 1, + aux_sym_template_argument_list_repeat1, + [214850] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5941), 1, + ACTIONS(5840), 1, anon_sym_COMMA, - ACTIONS(8859), 1, + ACTIONS(9208), 1, anon_sym_GT2, - STATE(5544), 1, + STATE(5998), 1, aux_sym_template_argument_list_repeat1, - [190013] = 4, + [214863] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8861), 1, + ACTIONS(9212), 1, + anon_sym_RPAREN, + ACTIONS(9210), 2, + anon_sym_DOT_DOT_DOT, sym_identifier, - STATE(2598), 1, - sym_template_function, - STATE(2676), 1, - sym_template_type, - [190026] = 4, + [214874] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5941), 1, + ACTIONS(8592), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9214), 2, anon_sym_COMMA, - ACTIONS(8863), 1, anon_sym_GT2, - STATE(5544), 1, - aux_sym_template_argument_list_repeat1, - [190039] = 4, + [214885] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7236), 1, + ACTIONS(7506), 1, anon_sym_COMMA, - ACTIONS(8865), 1, + ACTIONS(9216), 1, anon_sym_SEMI, - STATE(5706), 1, + STATE(6098), 1, aux_sym_declaration_repeat1, - [190052] = 4, + [214898] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7236), 1, + ACTIONS(7506), 1, anon_sym_COMMA, - ACTIONS(8867), 1, + ACTIONS(9218), 1, anon_sym_SEMI, - STATE(5578), 1, + STATE(6098), 1, aux_sym_declaration_repeat1, - [190065] = 4, + [214911] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8765), 1, + ACTIONS(5969), 1, + anon_sym_RBRACE, + ACTIONS(9220), 1, anon_sym_COMMA, - ACTIONS(8869), 1, - anon_sym_RBRACK_RBRACK, - STATE(5602), 1, - aux_sym_attribute_declaration_repeat1, - [190078] = 4, + STATE(6007), 1, + aux_sym_initializer_list_repeat1, + [214924] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3341), 1, - anon_sym_RBRACE, - ACTIONS(8871), 1, + ACTIONS(5840), 1, anon_sym_COMMA, - STATE(5545), 1, - aux_sym_initializer_list_repeat1, - [190091] = 4, + ACTIONS(9223), 1, + anon_sym_GT2, + STATE(5999), 1, + aux_sym_template_argument_list_repeat1, + [214937] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8873), 1, - sym_identifier, - STATE(2183), 1, - sym_template_type, - STATE(2839), 1, - sym_template_function, - [190104] = 4, + ACTIONS(5840), 1, + anon_sym_COMMA, + ACTIONS(9225), 1, + anon_sym_GT2, + STATE(5999), 1, + aux_sym_template_argument_list_repeat1, + [214950] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5840), 1, + anon_sym_COMMA, + ACTIONS(9227), 1, + anon_sym_GT2, + STATE(5999), 1, + aux_sym_template_argument_list_repeat1, + [214963] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5840), 1, + anon_sym_COMMA, + ACTIONS(9229), 1, + anon_sym_GT2, + STATE(5999), 1, + aux_sym_template_argument_list_repeat1, + [214976] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5929), 1, + ACTIONS(5840), 1, anon_sym_COMMA, - ACTIONS(6070), 1, - anon_sym_RPAREN, - STATE(5683), 1, - aux_sym_argument_list_repeat1, - [190117] = 4, + ACTIONS(9231), 1, + anon_sym_GT2, + STATE(6009), 1, + aux_sym_template_argument_list_repeat1, + [214989] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8875), 1, + ACTIONS(5840), 1, anon_sym_COMMA, - ACTIONS(8877), 1, - anon_sym_RBRACE, - STATE(5685), 1, - aux_sym_enumerator_list_repeat1, - [190130] = 4, + ACTIONS(9233), 1, + anon_sym_GT2, + STATE(5971), 1, + aux_sym_template_argument_list_repeat1, + [215002] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6072), 1, + ACTIONS(5975), 1, anon_sym_COMMA, - ACTIONS(6074), 1, + ACTIONS(5977), 1, anon_sym_RBRACE, - STATE(5687), 1, + STATE(5974), 1, aux_sym_initializer_list_repeat1, - [190143] = 4, + [215015] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5941), 1, + ACTIONS(5840), 1, anon_sym_COMMA, - ACTIONS(8879), 1, + ACTIONS(9235), 1, anon_sym_GT2, - STATE(5691), 1, + STATE(5999), 1, aux_sym_template_argument_list_repeat1, - [190156] = 4, + [215028] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5022), 1, + ACTIONS(9239), 1, + anon_sym_RPAREN, + ACTIONS(9237), 2, anon_sym_COMMA, - ACTIONS(8881), 1, - anon_sym_RBRACK, - STATE(5600), 1, - aux_sym_structured_binding_declarator_repeat1, - [190169] = 4, + anon_sym_SEMI, + [215039] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8710), 1, + ACTIONS(9241), 1, + sym_identifier, + STATE(2197), 1, + sym_template_function, + STATE(3256), 1, + sym_template_type, + [215052] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9243), 1, + sym_identifier, + STATE(2904), 1, + sym_template_function, + STATE(3256), 1, + sym_template_type, + [215065] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8944), 1, anon_sym_COMMA, - ACTIONS(8883), 1, - anon_sym_GT2, - STATE(5583), 1, - aux_sym_template_parameter_list_repeat1, - [190182] = 4, + ACTIONS(9245), 1, + anon_sym_RPAREN, + STATE(6036), 1, + aux_sym_throw_specifier_repeat1, + [215078] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8885), 1, + ACTIONS(9247), 1, anon_sym_COMMA, - ACTIONS(8887), 1, + ACTIONS(9249), 1, anon_sym_RBRACE, - STATE(5721), 1, + STATE(5984), 1, aux_sym_enumerator_list_repeat1, - [190195] = 4, + [215091] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8700), 1, - anon_sym_COMMA, - ACTIONS(8889), 1, - anon_sym_RPAREN, - STATE(5579), 1, - aux_sym_requires_parameter_list_repeat1, - [190208] = 4, + ACTIONS(8146), 1, + anon_sym_LPAREN2, + ACTIONS(8148), 1, + anon_sym_LBRACK, + STATE(4396), 1, + sym_parameter_list, + [215104] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7236), 1, + ACTIONS(8888), 1, anon_sym_COMMA, - ACTIONS(8891), 1, - anon_sym_SEMI, - STATE(5578), 1, - aux_sym_declaration_repeat1, - [190221] = 4, + ACTIONS(9251), 1, + anon_sym_RBRACK_RBRACK, + STATE(5991), 1, + aux_sym_attribute_declaration_repeat1, + [215117] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7766), 1, + ACTIONS(5840), 1, anon_sym_COMMA, - ACTIONS(8893), 1, - anon_sym_SEMI, - STATE(5557), 1, - aux_sym_type_definition_repeat2, - [190234] = 4, + ACTIONS(9253), 1, + anon_sym_GT2, + STATE(5999), 1, + aux_sym_template_argument_list_repeat1, + [215130] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5929), 1, + ACTIONS(9255), 1, + sym_identifier, + ACTIONS(9257), 2, anon_sym_COMMA, - ACTIONS(8895), 1, - anon_sym_RPAREN, - STATE(5562), 1, - aux_sym_argument_list_repeat1, - [190247] = 4, + anon_sym_GT2, + [215141] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8302), 1, + ACTIONS(9259), 1, + sym_identifier, + STATE(3256), 1, + sym_template_type, + STATE(5134), 1, + sym_template_function, + [215154] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8574), 1, sym_identifier, - ACTIONS(8897), 1, + ACTIONS(9261), 1, anon_sym_RBRACE, - STATE(6177), 1, + STATE(6655), 1, sym_enumerator, - [190260] = 4, + [215167] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8897), 1, - anon_sym_RBRACE, - ACTIONS(8899), 1, + ACTIONS(8036), 1, anon_sym_COMMA, - STATE(5559), 1, - aux_sym_enumerator_list_repeat1, - [190273] = 3, + ACTIONS(9263), 1, + anon_sym_SEMI, + STATE(5956), 1, + aux_sym_type_definition_repeat2, + [215180] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8901), 1, - anon_sym_catch, - STATE(310), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [190284] = 4, + ACTIONS(7506), 1, + anon_sym_COMMA, + ACTIONS(9265), 1, + anon_sym_SEMI, + STATE(6005), 1, + aux_sym_declaration_repeat1, + [215193] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3327), 1, - anon_sym_RBRACE, - ACTIONS(8903), 1, + ACTIONS(7147), 1, anon_sym_COMMA, - STATE(5545), 1, - aux_sym_initializer_list_repeat1, - [190297] = 4, + ACTIONS(9267), 1, + anon_sym_RPAREN, + STATE(5919), 1, + aux_sym_preproc_argument_list_repeat1, + [215206] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5941), 1, + ACTIONS(5840), 1, anon_sym_COMMA, - ACTIONS(8905), 1, + ACTIONS(9269), 1, anon_sym_GT2, - STATE(5544), 1, + STATE(5999), 1, aux_sym_template_argument_list_repeat1, - [190310] = 4, + [215219] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5941), 1, + ACTIONS(5918), 1, anon_sym_COMMA, - ACTIONS(8907), 1, - anon_sym_GT2, - STATE(5544), 1, - aux_sym_template_argument_list_repeat1, - [190323] = 4, + ACTIONS(9271), 1, + anon_sym_RPAREN, + STATE(6058), 1, + aux_sym_argument_list_repeat1, + [215232] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7236), 1, + ACTIONS(9273), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9189), 2, anon_sym_COMMA, - ACTIONS(8909), 1, - anon_sym_SEMI, - STATE(5664), 1, - aux_sym_declaration_repeat1, - [190336] = 4, + anon_sym_LBRACE, + [215243] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5941), 1, + ACTIONS(5840), 1, anon_sym_COMMA, - ACTIONS(8911), 1, + ACTIONS(9275), 1, anon_sym_GT2, - STATE(5544), 1, + STATE(5999), 1, aux_sym_template_argument_list_repeat1, - [190349] = 3, + [215256] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8901), 1, - anon_sym_catch, - STATE(313), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [190360] = 4, + ACTIONS(5840), 1, + anon_sym_COMMA, + ACTIONS(9277), 1, + anon_sym_GT2, + STATE(5999), 1, + aux_sym_template_argument_list_repeat1, + [215269] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7766), 1, + ACTIONS(7506), 1, anon_sym_COMMA, - ACTIONS(8913), 1, + ACTIONS(9279), 1, anon_sym_SEMI, - STATE(5557), 1, - aux_sym_type_definition_repeat2, - [190373] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8302), 1, - sym_identifier, - ACTIONS(8915), 1, - anon_sym_RBRACE, - STATE(6177), 1, - sym_enumerator, - [190386] = 4, + STATE(5865), 1, + aux_sym_declaration_repeat1, + [215282] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8917), 1, - sym_identifier, - STATE(2313), 1, - sym_template_function, - STATE(2676), 1, - sym_template_type, - [190399] = 4, + ACTIONS(8944), 1, + anon_sym_COMMA, + ACTIONS(9281), 1, + anon_sym_RPAREN, + STATE(5864), 1, + aux_sym_throw_specifier_repeat1, + [215295] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5941), 1, - anon_sym_COMMA, - ACTIONS(8919), 1, - anon_sym_GT2, - STATE(5740), 1, - aux_sym_template_argument_list_repeat1, - [190412] = 4, + ACTIONS(3913), 1, + anon_sym_LBRACE, + ACTIONS(8580), 1, + anon_sym_COLON_COLON, + STATE(1017), 1, + sym_declaration_list, + [215308] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5941), 1, - anon_sym_COMMA, - ACTIONS(8921), 1, - anon_sym_GT2, - STATE(5592), 1, - aux_sym_template_argument_list_repeat1, - [190425] = 4, + ACTIONS(9283), 1, + anon_sym_catch, + STATE(315), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [215319] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7890), 1, - anon_sym_LPAREN2, - ACTIONS(7892), 1, - anon_sym_LBRACK, - STATE(4152), 1, - sym_parameter_list, - [190438] = 4, + ACTIONS(3911), 1, + anon_sym_LBRACE, + ACTIONS(8580), 1, + anon_sym_COLON_COLON, + STATE(1000), 1, + sym_declaration_list, + [215332] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8923), 1, - sym_identifier, - STATE(2313), 1, - sym_template_function, - STATE(2676), 1, - sym_template_type, - [190451] = 4, + ACTIONS(8898), 1, + anon_sym_catch, + STATE(343), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [215343] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8925), 1, + ACTIONS(8570), 1, anon_sym_COMMA, - ACTIONS(8927), 1, - anon_sym_RBRACE, - STATE(5559), 1, - aux_sym_enumerator_list_repeat1, - [190464] = 4, - ACTIONS(6921), 1, - anon_sym_LPAREN2, - ACTIONS(6923), 1, - sym_comment, - ACTIONS(8929), 1, - anon_sym_LF, - STATE(4394), 1, - sym_preproc_argument_list, - [190477] = 4, + ACTIONS(9285), 1, + anon_sym_LBRACE, + STATE(5992), 1, + aux_sym_base_class_clause_repeat1, + [215356] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5894), 1, - anon_sym_RBRACE, - ACTIONS(5997), 1, + ACTIONS(8570), 1, anon_sym_COMMA, - STATE(5588), 1, - aux_sym_initializer_list_repeat1, - [190490] = 4, + ACTIONS(9285), 1, + anon_sym_LBRACE, + STATE(5888), 1, + aux_sym_base_class_clause_repeat1, + [215369] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8765), 1, + ACTIONS(8888), 1, anon_sym_COMMA, - ACTIONS(8931), 1, + ACTIONS(9287), 1, anon_sym_RBRACK_RBRACK, - STATE(5715), 1, + STATE(6022), 1, aux_sym_attribute_declaration_repeat1, - [190503] = 4, + [215382] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8534), 1, + ACTIONS(8828), 1, anon_sym_LPAREN2, - ACTIONS(8933), 1, + ACTIONS(9289), 1, anon_sym_constexpr, - STATE(160), 1, + STATE(180), 1, sym_condition_clause, - [190516] = 4, + [215395] = 4, + ACTIONS(7179), 1, + anon_sym_LPAREN2, + ACTIONS(7181), 1, + sym_comment, + ACTIONS(9291), 1, + anon_sym_LF, + STATE(4639), 1, + sym_preproc_argument_list, + [215408] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7236), 1, - anon_sym_COMMA, - ACTIONS(8935), 1, - anon_sym_SEMI, - STATE(5578), 1, - aux_sym_declaration_repeat1, - [190529] = 4, + ACTIONS(9293), 1, + sym_identifier, + STATE(2197), 1, + sym_template_function, + STATE(3256), 1, + sym_template_type, + [215421] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7236), 1, + ACTIONS(9295), 1, anon_sym_COMMA, - ACTIONS(8937), 1, - anon_sym_SEMI, - STATE(5578), 1, - aux_sym_declaration_repeat1, - [190542] = 4, + ACTIONS(9298), 1, + anon_sym_RBRACE, + STATE(6047), 1, + aux_sym_enumerator_list_repeat1, + [215434] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8302), 1, + ACTIONS(8574), 1, sym_identifier, - ACTIONS(8927), 1, + ACTIONS(9300), 1, anon_sym_RBRACE, - STATE(6177), 1, + STATE(6655), 1, sym_enumerator, - [190555] = 3, + [215447] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8901), 1, + ACTIONS(9106), 1, anon_sym_catch, - STATE(304), 2, + STATE(1952), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [190566] = 4, + [215458] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3831), 1, - anon_sym_LBRACE, - ACTIONS(8308), 1, - anon_sym_COLON_COLON, - STATE(988), 1, - sym_declaration_list, - [190579] = 3, + ACTIONS(9302), 1, + anon_sym_COMMA, + ACTIONS(9304), 1, + anon_sym_RBRACE, + STATE(6047), 1, + aux_sym_enumerator_list_repeat1, + [215471] = 4, + ACTIONS(7179), 1, + anon_sym_LPAREN2, + ACTIONS(7181), 1, + sym_comment, + ACTIONS(9306), 1, + anon_sym_LF, + STATE(4639), 1, + sym_preproc_argument_list, + [215484] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8939), 1, - anon_sym_catch, - STATE(1778), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [190590] = 4, + ACTIONS(8574), 1, + sym_identifier, + ACTIONS(9304), 1, + anon_sym_RBRACE, + STATE(6655), 1, + sym_enumerator, + [215497] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7236), 1, + ACTIONS(7506), 1, anon_sym_COMMA, - ACTIONS(8941), 1, + ACTIONS(9308), 1, anon_sym_SEMI, - STATE(5730), 1, + STATE(6083), 1, aux_sym_declaration_repeat1, - [190603] = 4, + [215510] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5929), 1, + ACTIONS(5880), 1, anon_sym_COMMA, - ACTIONS(8943), 1, - anon_sym_RPAREN, - STATE(5562), 1, - aux_sym_argument_list_repeat1, - [190616] = 4, + ACTIONS(9310), 1, + anon_sym_RBRACK, + STATE(6110), 1, + aux_sym_lambda_capture_specifier_repeat1, + [215523] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7766), 1, - anon_sym_COMMA, - ACTIONS(8945), 1, - anon_sym_SEMI, - STATE(5557), 1, - aux_sym_type_definition_repeat2, - [190629] = 4, + ACTIONS(8828), 1, + anon_sym_LPAREN2, + ACTIONS(9312), 1, + anon_sym_constexpr, + STATE(294), 1, + sym_condition_clause, + [215536] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8947), 1, + ACTIONS(9314), 1, sym_identifier, - STATE(2676), 1, + STATE(2768), 1, sym_template_type, - STATE(4862), 1, + STATE(3004), 1, sym_template_function, - [190642] = 4, + [215549] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8765), 1, + ACTIONS(8036), 1, anon_sym_COMMA, - ACTIONS(8949), 1, - anon_sym_RBRACK_RBRACK, - STATE(5602), 1, - aux_sym_attribute_declaration_repeat1, - [190655] = 4, + ACTIONS(9316), 1, + anon_sym_SEMI, + STATE(5956), 1, + aux_sym_type_definition_repeat2, + [215562] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5929), 1, - anon_sym_COMMA, - ACTIONS(5931), 1, + ACTIONS(6047), 1, anon_sym_RPAREN, - STATE(5741), 1, + ACTIONS(9318), 1, + anon_sym_COMMA, + STATE(6058), 1, aux_sym_argument_list_repeat1, - [190668] = 4, + [215575] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8036), 1, + anon_sym_COMMA, + ACTIONS(9321), 1, + anon_sym_SEMI, + STATE(5956), 1, + aux_sym_type_definition_repeat2, + [215588] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8951), 1, + ACTIONS(9323), 1, anon_sym_COMMA, - ACTIONS(8953), 1, + ACTIONS(9325), 1, anon_sym_RBRACE, - STATE(5743), 1, + STATE(6091), 1, aux_sym_enumerator_list_repeat1, - [190681] = 4, + [215601] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7766), 1, + ACTIONS(8888), 1, anon_sym_COMMA, - ACTIONS(8955), 1, - anon_sym_SEMI, - STATE(5557), 1, - aux_sym_type_definition_repeat2, - [190694] = 3, + ACTIONS(9327), 1, + anon_sym_RBRACK_RBRACK, + STATE(5947), 1, + aux_sym_attribute_declaration_repeat1, + [215614] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8959), 1, - anon_sym_RPAREN, - ACTIONS(8957), 2, - anon_sym_DOT_DOT_DOT, - sym_identifier, - [190705] = 4, + ACTIONS(8888), 1, + anon_sym_COMMA, + ACTIONS(9329), 1, + anon_sym_RBRACK_RBRACK, + STATE(6085), 1, + aux_sym_attribute_declaration_repeat1, + [215627] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8302), 1, + ACTIONS(9331), 1, sym_identifier, - ACTIONS(8961), 1, - anon_sym_RBRACE, - STATE(6177), 1, - sym_enumerator, - [190718] = 4, + STATE(2197), 1, + sym_template_function, + STATE(3256), 1, + sym_template_type, + [215640] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8961), 1, - anon_sym_RBRACE, - ACTIONS(8963), 1, + ACTIONS(8980), 1, anon_sym_COMMA, - STATE(5559), 1, - aux_sym_enumerator_list_repeat1, - [190731] = 4, + ACTIONS(9333), 1, + anon_sym_GT2, + STATE(5979), 1, + aux_sym_template_parameter_list_repeat1, + [215653] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5933), 1, + ACTIONS(8874), 1, anon_sym_COMMA, - ACTIONS(5935), 1, - anon_sym_RBRACE, - STATE(5753), 1, - aux_sym_initializer_list_repeat1, - [190744] = 4, + ACTIONS(9335), 1, + anon_sym_RPAREN, + STATE(5918), 1, + aux_sym_preproc_params_repeat1, + [215666] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5941), 1, + ACTIONS(5840), 1, anon_sym_COMMA, - ACTIONS(8965), 1, + ACTIONS(9337), 1, anon_sym_GT2, - STATE(5544), 1, + STATE(6086), 1, aux_sym_template_argument_list_repeat1, - [190757] = 4, + [215679] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5941), 1, + ACTIONS(5840), 1, anon_sym_COMMA, - ACTIONS(8967), 1, + ACTIONS(9339), 1, anon_sym_GT2, - STATE(5544), 1, + STATE(6030), 1, aux_sym_template_argument_list_repeat1, - [190770] = 4, + [215692] = 4, + ACTIONS(7179), 1, + anon_sym_LPAREN2, + ACTIONS(7181), 1, + sym_comment, + ACTIONS(9341), 1, + anon_sym_LF, + STATE(4639), 1, + sym_preproc_argument_list, + [215705] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8561), 1, + anon_sym_catch, + STATE(5518), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [215716] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3909), 1, + anon_sym_LBRACE, + ACTIONS(8580), 1, + anon_sym_COLON_COLON, + STATE(503), 1, + sym_declaration_list, + [215729] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5941), 1, + ACTIONS(7506), 1, anon_sym_COMMA, - ACTIONS(8969), 1, - anon_sym_GT2, - STATE(5544), 1, - aux_sym_template_argument_list_repeat1, - [190783] = 3, + ACTIONS(9343), 1, + anon_sym_SEMI, + STATE(6112), 1, + aux_sym_declaration_repeat1, + [215742] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8843), 1, + ACTIONS(8898), 1, anon_sym_catch, - STATE(422), 2, + STATE(361), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [190794] = 4, + [215753] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5941), 1, - anon_sym_COMMA, - ACTIONS(8971), 1, - anon_sym_GT2, - STATE(5723), 1, - aux_sym_template_argument_list_repeat1, - [190807] = 4, + ACTIONS(9345), 1, + sym_identifier, + STATE(2273), 1, + sym_template_method, + STATE(3256), 1, + sym_template_type, + [215766] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9347), 1, + sym_identifier, + STATE(2470), 1, + sym_template_function, + STATE(3256), 1, + sym_template_type, + [215779] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8574), 1, + sym_identifier, + ACTIONS(9349), 1, + anon_sym_RBRACE, + STATE(6655), 1, + sym_enumerator, + [215792] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5941), 1, + ACTIONS(5840), 1, anon_sym_COMMA, - ACTIONS(8973), 1, + ACTIONS(9351), 1, anon_sym_GT2, - STATE(5761), 1, + STATE(6109), 1, aux_sym_template_argument_list_repeat1, - [190820] = 4, + [215805] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7236), 1, + ACTIONS(8036), 1, anon_sym_COMMA, - ACTIONS(8975), 1, + ACTIONS(9353), 1, anon_sym_SEMI, - STATE(5578), 1, - aux_sym_declaration_repeat1, - [190833] = 4, + STATE(5956), 1, + aux_sym_type_definition_repeat2, + [215818] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7236), 1, + ACTIONS(9355), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9357), 2, anon_sym_COMMA, - ACTIONS(8977), 1, - anon_sym_SEMI, - STATE(5578), 1, - aux_sym_declaration_repeat1, - [190846] = 4, + anon_sym_LBRACE, + [215829] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9283), 1, + anon_sym_catch, + STATE(324), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [215840] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5941), 1, + ACTIONS(8900), 1, anon_sym_COMMA, - ACTIONS(8979), 1, - anon_sym_GT2, - STATE(5544), 1, - aux_sym_template_argument_list_repeat1, - [190859] = 4, + ACTIONS(9359), 1, + anon_sym_LBRACE, + STATE(5935), 1, + aux_sym_field_initializer_list_repeat1, + [215853] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5941), 1, + ACTIONS(9361), 1, anon_sym_COMMA, - ACTIONS(8981), 1, - anon_sym_GT2, - STATE(5544), 1, - aux_sym_template_argument_list_repeat1, - [190872] = 4, + ACTIONS(9363), 1, + anon_sym_RBRACE, + STATE(6050), 1, + aux_sym_enumerator_list_repeat1, + [215866] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7236), 1, + ACTIONS(7506), 1, anon_sym_COMMA, - ACTIONS(8983), 1, + ACTIONS(9365), 1, anon_sym_SEMI, - STATE(5578), 1, + STATE(6098), 1, aux_sym_declaration_repeat1, - [190885] = 4, + [215879] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5941), 1, + ACTIONS(7506), 1, anon_sym_COMMA, - ACTIONS(8985), 1, - anon_sym_GT2, - STATE(5544), 1, - aux_sym_template_argument_list_repeat1, - [190898] = 4, + ACTIONS(9367), 1, + anon_sym_SEMI, + STATE(6098), 1, + aux_sym_declaration_repeat1, + [215892] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5941), 1, + ACTIONS(9369), 1, anon_sym_COMMA, - ACTIONS(8987), 1, - anon_sym_GT2, - STATE(5731), 1, - aux_sym_template_argument_list_repeat1, - [190911] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8553), 1, - anon_sym_catch, - STATE(1789), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [190922] = 4, + ACTIONS(9371), 1, + anon_sym_RBRACE, + STATE(6047), 1, + aux_sym_enumerator_list_repeat1, + [215905] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7766), 1, + ACTIONS(8888), 1, anon_sym_COMMA, - ACTIONS(8989), 1, - anon_sym_SEMI, - STATE(5557), 1, - aux_sym_type_definition_repeat2, - [190935] = 4, + ACTIONS(9373), 1, + anon_sym_RBRACK_RBRACK, + STATE(5991), 1, + aux_sym_attribute_declaration_repeat1, + [215918] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5941), 1, + ACTIONS(5840), 1, anon_sym_COMMA, - ACTIONS(8991), 1, + ACTIONS(9375), 1, anon_sym_GT2, - STATE(5544), 1, + STATE(5999), 1, aux_sym_template_argument_list_repeat1, - [190948] = 4, + [215931] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5941), 1, - anon_sym_COMMA, - ACTIONS(8993), 1, - anon_sym_GT2, - STATE(5544), 1, - aux_sym_template_argument_list_repeat1, - [190961] = 4, + ACTIONS(9377), 1, + sym_identifier, + STATE(3004), 1, + sym_template_function, + STATE(3256), 1, + sym_template_type, + [215944] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5941), 1, + ACTIONS(8036), 1, anon_sym_COMMA, - ACTIONS(8995), 1, - anon_sym_GT2, - STATE(5544), 1, - aux_sym_template_argument_list_repeat1, - [190974] = 4, + ACTIONS(9379), 1, + anon_sym_SEMI, + STATE(5956), 1, + aux_sym_type_definition_repeat2, + [215957] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5929), 1, + ACTIONS(5840), 1, anon_sym_COMMA, - ACTIONS(8997), 1, - anon_sym_RPAREN, - STATE(5562), 1, - aux_sym_argument_list_repeat1, - [190987] = 4, + ACTIONS(9381), 1, + anon_sym_GT2, + STATE(5999), 1, + aux_sym_template_argument_list_repeat1, + [215970] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8302), 1, + ACTIONS(8574), 1, sym_identifier, - ACTIONS(8999), 1, + ACTIONS(9383), 1, anon_sym_RBRACE, - STATE(6177), 1, + STATE(6655), 1, sym_enumerator, - [191000] = 4, + [215983] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8999), 1, + ACTIONS(9383), 1, anon_sym_RBRACE, - ACTIONS(9001), 1, + ACTIONS(9385), 1, anon_sym_COMMA, - STATE(5559), 1, + STATE(6047), 1, aux_sym_enumerator_list_repeat1, - [191013] = 4, + [215996] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6008), 1, + ACTIONS(5840), 1, anon_sym_COMMA, - ACTIONS(9003), 1, - anon_sym_RBRACK, - STATE(5599), 1, - aux_sym_lambda_capture_specifier_repeat1, - [191026] = 3, + ACTIONS(9387), 1, + anon_sym_GT2, + STATE(5999), 1, + aux_sym_template_argument_list_repeat1, + [216009] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8939), 1, - anon_sym_catch, - STATE(1788), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [191037] = 4, + ACTIONS(3393), 1, + anon_sym_RBRACE, + ACTIONS(9389), 1, + anon_sym_COMMA, + STATE(6007), 1, + aux_sym_initializer_list_repeat1, + [216022] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5941), 1, + ACTIONS(5918), 1, anon_sym_COMMA, - ACTIONS(9005), 1, - anon_sym_GT2, - STATE(5544), 1, - aux_sym_template_argument_list_repeat1, - [191050] = 4, + ACTIONS(5989), 1, + anon_sym_RPAREN, + STATE(6102), 1, + aux_sym_argument_list_repeat1, + [216035] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5941), 1, - anon_sym_COMMA, - ACTIONS(9007), 1, - anon_sym_GT2, - STATE(5544), 1, - aux_sym_template_argument_list_repeat1, - [191063] = 4, + ACTIONS(3478), 1, + anon_sym_COLON_COLON, + ACTIONS(4882), 2, + anon_sym_LPAREN2, + anon_sym_LBRACE, + [216046] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7766), 1, + ACTIONS(9391), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9393), 2, anon_sym_COMMA, - ACTIONS(9009), 1, - anon_sym_SEMI, - STATE(5557), 1, - aux_sym_type_definition_repeat2, - [191076] = 4, + anon_sym_LBRACE, + [216057] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8302), 1, - sym_identifier, - ACTIONS(9011), 1, - anon_sym_RBRACE, - STATE(6177), 1, - sym_enumerator, - [191089] = 4, + ACTIONS(8870), 1, + anon_sym_COMMA, + ACTIONS(9395), 1, + anon_sym_RPAREN, + STATE(5958), 1, + aux_sym_parameter_list_repeat1, + [216070] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5941), 1, + ACTIONS(9397), 1, anon_sym_COMMA, - ACTIONS(9013), 1, - anon_sym_GT2, - STATE(5544), 1, - aux_sym_template_argument_list_repeat1, - [191102] = 3, + ACTIONS(9400), 1, + anon_sym_SEMI, + STATE(6098), 1, + aux_sym_declaration_repeat1, + [216083] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9017), 1, - anon_sym_EQ, - ACTIONS(9015), 2, + ACTIONS(9402), 1, anon_sym_COMMA, + ACTIONS(9404), 1, anon_sym_RBRACE, - [191113] = 4, + STATE(6100), 1, + aux_sym_enumerator_list_repeat1, + [216096] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5941), 1, + ACTIONS(9406), 1, anon_sym_COMMA, - ACTIONS(9019), 1, - anon_sym_GT2, - STATE(5746), 1, - aux_sym_template_argument_list_repeat1, - [191126] = 4, + ACTIONS(9408), 1, + anon_sym_RBRACE, + STATE(6047), 1, + aux_sym_enumerator_list_repeat1, + [216109] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3329), 1, + ACTIONS(8574), 1, + sym_identifier, + ACTIONS(9408), 1, anon_sym_RBRACE, - ACTIONS(9021), 1, - anon_sym_COMMA, - STATE(5545), 1, - aux_sym_initializer_list_repeat1, - [191139] = 4, + STATE(6655), 1, + sym_enumerator, + [216122] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5941), 1, + ACTIONS(5918), 1, anon_sym_COMMA, - ACTIONS(9023), 1, - anon_sym_GT2, - STATE(5544), 1, - aux_sym_template_argument_list_repeat1, - [191152] = 4, + ACTIONS(9410), 1, + anon_sym_RPAREN, + STATE(6058), 1, + aux_sym_argument_list_repeat1, + [216135] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5941), 1, + ACTIONS(8036), 1, anon_sym_COMMA, - ACTIONS(9025), 1, - anon_sym_GT2, - STATE(5544), 1, - aux_sym_template_argument_list_repeat1, - [191165] = 4, + ACTIONS(9412), 1, + anon_sym_SEMI, + STATE(5956), 1, + aux_sym_type_definition_repeat2, + [216148] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5941), 1, + ACTIONS(8912), 1, anon_sym_COMMA, - ACTIONS(9027), 1, - anon_sym_GT2, - STATE(5544), 1, - aux_sym_template_argument_list_repeat1, - [191178] = 4, + ACTIONS(9414), 1, + anon_sym_RPAREN, + STATE(5976), 1, + aux_sym_requires_parameter_list_repeat1, + [216161] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5941), 1, - anon_sym_COMMA, - ACTIONS(9029), 1, - anon_sym_GT2, - STATE(5754), 1, - aux_sym_template_argument_list_repeat1, - [191191] = 4, + ACTIONS(8828), 1, + anon_sym_LPAREN2, + ACTIONS(9416), 1, + anon_sym_constexpr, + STATE(198), 1, + sym_condition_clause, + [216174] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8574), 1, + sym_identifier, + ACTIONS(9371), 1, + anon_sym_RBRACE, + STATE(6655), 1, + sym_enumerator, + [216187] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5941), 1, + ACTIONS(5840), 1, anon_sym_COMMA, - ACTIONS(9031), 1, + ACTIONS(9418), 1, anon_sym_GT2, - STATE(5544), 1, + STATE(5999), 1, aux_sym_template_argument_list_repeat1, - [191204] = 4, + [216200] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5941), 1, + ACTIONS(5840), 1, anon_sym_COMMA, - ACTIONS(9033), 1, + ACTIONS(9420), 1, anon_sym_GT2, - STATE(5596), 1, + STATE(5999), 1, aux_sym_template_argument_list_repeat1, - [191217] = 4, + [216213] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5941), 1, + ACTIONS(5840), 1, anon_sym_COMMA, - ACTIONS(9035), 1, + ACTIONS(9422), 1, anon_sym_GT2, - STATE(5544), 1, + STATE(5999), 1, aux_sym_template_argument_list_repeat1, - [191230] = 4, + [216226] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5941), 1, + ACTIONS(6227), 1, + anon_sym_RBRACK, + ACTIONS(9424), 1, anon_sym_COMMA, - ACTIONS(9037), 1, - anon_sym_GT2, - STATE(5544), 1, - aux_sym_template_argument_list_repeat1, - [191243] = 3, + STATE(6110), 1, + aux_sym_lambda_capture_specifier_repeat1, + [216239] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8553), 1, + ACTIONS(9283), 1, anon_sym_catch, - STATE(1791), 2, + STATE(318), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [191254] = 4, + [216250] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7766), 1, + ACTIONS(7506), 1, anon_sym_COMMA, - ACTIONS(9039), 1, + ACTIONS(9427), 1, anon_sym_SEMI, - STATE(5557), 1, + STATE(6098), 1, + aux_sym_declaration_repeat1, + [216263] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8036), 1, + anon_sym_COMMA, + ACTIONS(9429), 1, + anon_sym_SEMI, + STATE(5956), 1, aux_sym_type_definition_repeat2, - [191267] = 4, + [216276] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8302), 1, + ACTIONS(8574), 1, sym_identifier, - ACTIONS(9041), 1, + ACTIONS(9431), 1, anon_sym_RBRACE, - STATE(6177), 1, + STATE(6655), 1, sym_enumerator, - [191280] = 4, + [216289] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5941), 1, + ACTIONS(7506), 1, anon_sym_COMMA, - ACTIONS(9043), 1, - anon_sym_GT2, - STATE(5544), 1, - aux_sym_template_argument_list_repeat1, - [191293] = 4, + ACTIONS(9433), 1, + anon_sym_SEMI, + STATE(6098), 1, + aux_sym_declaration_repeat1, + [216302] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5941), 1, + ACTIONS(9065), 3, anon_sym_COMMA, - ACTIONS(9045), 1, + anon_sym_RPAREN, anon_sym_GT2, - STATE(5544), 1, - aux_sym_template_argument_list_repeat1, - [191306] = 4, + [216311] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9435), 1, + sym_identifier, + STATE(2470), 1, + sym_template_function, + STATE(3256), 1, + sym_template_type, + [216324] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6056), 1, + ACTIONS(5950), 1, anon_sym_COMMA, - ACTIONS(6058), 1, + ACTIONS(5952), 1, anon_sym_RBRACE, - STATE(5671), 1, + STATE(6093), 1, aux_sym_initializer_list_repeat1, - [191319] = 4, + [216337] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5941), 1, - anon_sym_COMMA, - ACTIONS(9047), 1, - anon_sym_GT2, - STATE(5544), 1, - aux_sym_template_argument_list_repeat1, - [191332] = 4, + ACTIONS(4417), 1, + anon_sym_LBRACE, + STATE(2849), 1, + sym_field_declaration_list, + [216347] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5941), 1, - anon_sym_COMMA, - ACTIONS(9049), 1, - anon_sym_GT2, - STATE(5765), 1, - aux_sym_template_argument_list_repeat1, - [191345] = 4, + ACTIONS(4195), 1, + anon_sym_LBRACE, + STATE(2634), 1, + sym_field_declaration_list, + [216357] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7766), 1, - anon_sym_COMMA, - ACTIONS(9051), 1, - anon_sym_SEMI, - STATE(5557), 1, - aux_sym_type_definition_repeat2, - [191358] = 4, + ACTIONS(4195), 1, + anon_sym_LBRACE, + STATE(2667), 1, + sym_field_declaration_list, + [216367] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5941), 1, - anon_sym_COMMA, - ACTIONS(9053), 1, - anon_sym_GT2, - STATE(5544), 1, - aux_sym_template_argument_list_repeat1, - [191371] = 4, + ACTIONS(4195), 1, + anon_sym_LBRACE, + STATE(2688), 1, + sym_field_declaration_list, + [216377] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5941), 1, - anon_sym_COMMA, - ACTIONS(9055), 1, - anon_sym_GT2, - STATE(5544), 1, - aux_sym_template_argument_list_repeat1, - [191384] = 4, + ACTIONS(4195), 1, + anon_sym_LBRACE, + STATE(2676), 1, + sym_field_declaration_list, + [216387] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5941), 1, - anon_sym_COMMA, - ACTIONS(9057), 1, - anon_sym_GT2, - STATE(5544), 1, - aux_sym_template_argument_list_repeat1, - [191397] = 4, + ACTIONS(4195), 1, + anon_sym_LBRACE, + STATE(2674), 1, + sym_field_declaration_list, + [216397] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7766), 1, - anon_sym_COMMA, - ACTIONS(9059), 1, - anon_sym_SEMI, - STATE(5557), 1, - aux_sym_type_definition_repeat2, - [191410] = 4, + ACTIONS(4195), 1, + anon_sym_LBRACE, + STATE(2665), 1, + sym_field_declaration_list, + [216407] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5941), 1, - anon_sym_COMMA, - ACTIONS(9061), 1, - anon_sym_GT2, - STATE(5771), 1, - aux_sym_template_argument_list_repeat1, - [191423] = 4, + ACTIONS(4195), 1, + anon_sym_LBRACE, + STATE(2663), 1, + sym_field_declaration_list, + [216417] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9063), 1, - anon_sym_COMMA, - ACTIONS(9065), 1, - anon_sym_RBRACE, - STATE(5597), 1, - aux_sym_enumerator_list_repeat1, - [191436] = 4, + ACTIONS(4195), 1, + anon_sym_LBRACE, + STATE(2658), 1, + sym_field_declaration_list, + [216427] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9067), 1, - anon_sym_COMMA, - ACTIONS(9069), 1, - anon_sym_RBRACE, - STATE(5700), 1, - aux_sym_enumerator_list_repeat1, - [191449] = 4, + ACTIONS(4195), 1, + anon_sym_LBRACE, + STATE(2651), 1, + sym_field_declaration_list, + [216437] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9071), 1, - sym_identifier, - STATE(2676), 1, - sym_template_type, - STATE(3018), 1, - sym_template_function, - [191462] = 4, + ACTIONS(4195), 1, + anon_sym_LBRACE, + STATE(2644), 1, + sym_field_declaration_list, + [216447] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5929), 1, - anon_sym_COMMA, - ACTIONS(6054), 1, - anon_sym_RPAREN, - STATE(5712), 1, - aux_sym_argument_list_repeat1, - [191475] = 4, + ACTIONS(4195), 1, + anon_sym_LBRACE, + STATE(2627), 1, + sym_field_declaration_list, + [216457] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8765), 1, - anon_sym_COMMA, - ACTIONS(9073), 1, - anon_sym_RBRACK_RBRACK, - STATE(5602), 1, - aux_sym_attribute_declaration_repeat1, - [191488] = 4, + ACTIONS(2561), 2, + anon_sym_else, + anon_sym_while, + [216465] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8534), 1, - anon_sym_LPAREN2, - ACTIONS(9075), 1, - anon_sym_constexpr, - STATE(302), 1, - sym_condition_clause, - [191501] = 4, + ACTIONS(2561), 2, + anon_sym_else, + anon_sym_while, + [216473] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8302), 1, - sym_identifier, - ACTIONS(9077), 1, - anon_sym_RBRACE, - STATE(6177), 1, - sym_enumerator, - [191514] = 4, + ACTIONS(2561), 2, + anon_sym_else, + anon_sym_while, + [216481] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7766), 1, - anon_sym_COMMA, - ACTIONS(9079), 1, - anon_sym_SEMI, - STATE(5557), 1, - aux_sym_type_definition_repeat2, - [191527] = 4, + ACTIONS(2561), 2, + anon_sym_else, + anon_sym_while, + [216489] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5941), 1, - anon_sym_COMMA, - ACTIONS(9081), 1, - anon_sym_GT2, - STATE(5544), 1, - aux_sym_template_argument_list_repeat1, - [191540] = 4, + ACTIONS(2561), 2, + anon_sym_else, + anon_sym_while, + [216497] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5941), 1, - anon_sym_COMMA, - ACTIONS(9083), 1, - anon_sym_GT2, - STATE(5544), 1, - aux_sym_template_argument_list_repeat1, - [191553] = 4, + ACTIONS(2561), 2, + anon_sym_else, + anon_sym_while, + [216505] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5941), 1, - anon_sym_COMMA, - ACTIONS(9085), 1, - anon_sym_GT2, - STATE(5544), 1, - aux_sym_template_argument_list_repeat1, - [191566] = 4, + ACTIONS(2561), 2, + anon_sym_else, + anon_sym_while, + [216513] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9087), 1, - anon_sym_COMMA, - ACTIONS(9089), 1, - anon_sym_RBRACE, - STATE(5559), 1, - aux_sym_enumerator_list_repeat1, - [191579] = 4, + ACTIONS(2561), 2, + anon_sym_else, + anon_sym_while, + [216521] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8302), 1, + ACTIONS(2561), 2, + anon_sym_else, + anon_sym_while, + [216529] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2561), 2, + anon_sym_else, + anon_sym_while, + [216537] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2561), 2, + anon_sym_else, + anon_sym_while, + [216545] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2561), 2, + anon_sym_else, + anon_sym_while, + [216553] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2561), 2, + anon_sym_else, + anon_sym_while, + [216561] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2561), 2, + anon_sym_else, + anon_sym_while, + [216569] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9437), 1, sym_identifier, - ACTIONS(9089), 1, - anon_sym_RBRACE, - STATE(6177), 1, - sym_enumerator, - [191592] = 4, + STATE(1948), 1, + sym_template_type, + [216579] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9091), 1, + ACTIONS(9439), 1, sym_identifier, - STATE(2676), 1, + STATE(3299), 1, sym_template_type, - STATE(2839), 1, - sym_template_function, - [191605] = 4, + [216589] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7766), 1, - anon_sym_COMMA, - ACTIONS(9093), 1, - anon_sym_SEMI, - STATE(5557), 1, - aux_sym_type_definition_repeat2, - [191618] = 4, + ACTIONS(4195), 1, + anon_sym_LBRACE, + STATE(2597), 1, + sym_field_declaration_list, + [216599] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7236), 1, - anon_sym_COMMA, - ACTIONS(9095), 1, - anon_sym_SEMI, - STATE(5578), 1, - aux_sym_declaration_repeat1, - [191631] = 4, + ACTIONS(7720), 1, + anon_sym_LBRACE, + STATE(1940), 1, + sym_compound_statement, + [216609] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7236), 1, - anon_sym_COMMA, - ACTIONS(9097), 1, - anon_sym_SEMI, - STATE(5578), 1, - aux_sym_declaration_repeat1, - [191644] = 4, + ACTIONS(2561), 2, + anon_sym_else, + anon_sym_while, + [216617] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7236), 1, - anon_sym_COMMA, - ACTIONS(9099), 1, - anon_sym_SEMI, - STATE(5733), 1, - aux_sym_declaration_repeat1, - [191657] = 4, + ACTIONS(4195), 1, + anon_sym_LBRACE, + STATE(2578), 1, + sym_field_declaration_list, + [216627] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8765), 1, - anon_sym_COMMA, - ACTIONS(9101), 1, - anon_sym_RBRACK_RBRACK, - STATE(5780), 1, - aux_sym_attribute_declaration_repeat1, - [191670] = 4, + ACTIONS(2561), 2, + anon_sym_else, + anon_sym_while, + [216635] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5941), 1, - anon_sym_COMMA, - ACTIONS(9103), 1, - anon_sym_GT2, - STATE(5784), 1, - aux_sym_template_argument_list_repeat1, - [191683] = 4, + ACTIONS(4195), 1, + anon_sym_LBRACE, + STATE(2587), 1, + sym_field_declaration_list, + [216645] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7236), 1, - anon_sym_COMMA, - ACTIONS(9105), 1, - anon_sym_SEMI, - STATE(5791), 1, - aux_sym_declaration_repeat1, - [191696] = 4, + ACTIONS(4195), 1, + anon_sym_LBRACE, + STATE(2598), 1, + sym_field_declaration_list, + [216655] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9107), 1, - anon_sym_COMMA, - ACTIONS(9109), 1, - anon_sym_RBRACE, - STATE(5787), 1, - aux_sym_enumerator_list_repeat1, - [191709] = 3, + ACTIONS(2581), 2, + anon_sym_else, + anon_sym_while, + [216663] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8939), 1, - anon_sym_catch, - STATE(1786), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [191720] = 3, + ACTIONS(4195), 1, + anon_sym_LBRACE, + STATE(2633), 1, + sym_field_declaration_list, + [216673] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8843), 1, - anon_sym_catch, - STATE(325), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [191731] = 4, + ACTIONS(6990), 1, + anon_sym_LBRACE, + STATE(4470), 1, + sym_field_declaration_list, + [216683] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8765), 1, - anon_sym_COMMA, - ACTIONS(9111), 1, - anon_sym_RBRACK_RBRACK, - STATE(5602), 1, - aux_sym_attribute_declaration_repeat1, - [191744] = 3, + ACTIONS(4195), 1, + anon_sym_LBRACE, + STATE(2641), 1, + sym_field_declaration_list, + [216693] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4496), 1, - anon_sym_LPAREN2, - STATE(2996), 1, - sym_argument_list, - [191754] = 3, + ACTIONS(6990), 1, + anon_sym_LBRACE, + STATE(4474), 1, + sym_field_declaration_list, + [216703] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4195), 1, + anon_sym_LBRACE, + STATE(2661), 1, + sym_field_declaration_list, + [216713] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4211), 1, + ACTIONS(6990), 1, anon_sym_LBRACE, - STATE(2468), 1, + STATE(4476), 1, sym_field_declaration_list, - [191764] = 2, + [216723] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2349), 2, + ACTIONS(2597), 2, anon_sym_else, anon_sym_while, - [191772] = 2, + [216731] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2349), 2, + ACTIONS(2593), 2, anon_sym_else, anon_sym_while, - [191780] = 3, + [216739] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4195), 1, + anon_sym_LBRACE, + STATE(2696), 1, + sym_field_declaration_list, + [216749] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8334), 1, + ACTIONS(8780), 1, anon_sym_LBRACE, - STATE(4988), 1, + STATE(5226), 1, sym_requirement_seq, - [191790] = 3, - ACTIONS(6923), 1, + [216759] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(9113), 1, - anon_sym_LF, - ACTIONS(9115), 1, - sym_preproc_arg, - [191800] = 3, + ACTIONS(4195), 1, + anon_sym_LBRACE, + STATE(2677), 1, + sym_field_declaration_list, + [216769] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2597), 2, + anon_sym_else, + anon_sym_while, + [216777] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4195), 1, + anon_sym_LBRACE, + STATE(2668), 1, + sym_field_declaration_list, + [216787] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5194), 1, + ACTIONS(5474), 1, anon_sym_LT, - STATE(3086), 1, + STATE(3287), 1, sym_template_argument_list, - [191810] = 2, + [216797] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2349), 2, - anon_sym_else, - anon_sym_while, - [191818] = 2, + ACTIONS(5458), 1, + anon_sym_LT, + STATE(5027), 1, + sym_template_argument_list, + [216807] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2349), 2, + ACTIONS(2561), 2, anon_sym_else, anon_sym_while, - [191826] = 2, + [216815] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9441), 1, + anon_sym_default, + ACTIONS(9443), 1, + anon_sym_delete, + [216825] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2349), 2, + ACTIONS(2597), 2, anon_sym_else, anon_sym_while, - [191834] = 2, + [216833] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2349), 2, + ACTIONS(2561), 2, anon_sym_else, anon_sym_while, - [191842] = 3, + [216841] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6747), 1, + ACTIONS(6990), 1, anon_sym_LBRACE, - STATE(4330), 1, + STATE(4495), 1, sym_field_declaration_list, - [191852] = 2, + [216851] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2461), 2, + ACTIONS(2561), 2, anon_sym_else, anon_sym_while, - [191860] = 3, + [216859] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6747), 1, + ACTIONS(6990), 1, anon_sym_LBRACE, - STATE(4331), 1, + STATE(4496), 1, sym_field_declaration_list, - [191870] = 2, + [216869] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2349), 2, + ACTIONS(2561), 2, anon_sym_else, anon_sym_while, - [191878] = 3, + [216877] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6747), 1, + ACTIONS(6990), 1, anon_sym_LBRACE, - STATE(4197), 1, + STATE(4498), 1, sym_field_declaration_list, - [191888] = 2, + [216887] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2349), 2, + ACTIONS(2561), 2, anon_sym_else, anon_sym_while, - [191896] = 3, + [216895] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6747), 1, + ACTIONS(6990), 1, anon_sym_LBRACE, - STATE(4339), 1, + STATE(4500), 1, sym_field_declaration_list, - [191906] = 2, + [216905] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2349), 2, + ACTIONS(2561), 2, anon_sym_else, anon_sym_while, - [191914] = 3, + [216913] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6747), 1, + ACTIONS(6990), 1, anon_sym_LBRACE, - STATE(4341), 1, + STATE(4504), 1, sym_field_declaration_list, - [191924] = 3, + [216923] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(600), 1, + ACTIONS(4195), 1, anon_sym_LBRACE, - STATE(757), 1, - sym_compound_statement, - [191934] = 3, + STATE(2621), 1, + sym_field_declaration_list, + [216933] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6747), 1, + ACTIONS(6990), 1, anon_sym_LBRACE, - STATE(4343), 1, + STATE(4540), 1, sym_field_declaration_list, - [191944] = 3, + [216943] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8534), 1, - anon_sym_LPAREN2, - STATE(298), 1, - sym_condition_clause, - [191954] = 3, + ACTIONS(2597), 2, + anon_sym_else, + anon_sym_while, + [216951] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5504), 1, + ACTIONS(4195), 1, anon_sym_LBRACE, - STATE(3336), 1, + STATE(2689), 1, sym_field_declaration_list, - [191964] = 3, + [216961] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5504), 1, + ACTIONS(4195), 1, anon_sym_LBRACE, - STATE(3384), 1, + STATE(2692), 1, sym_field_declaration_list, - [191974] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2349), 2, - anon_sym_else, - anon_sym_while, - [191982] = 3, + [216971] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5504), 1, + ACTIONS(4195), 1, anon_sym_LBRACE, - STATE(3334), 1, + STATE(2583), 1, sym_field_declaration_list, - [191992] = 3, + [216981] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5504), 1, - anon_sym_LBRACE, - STATE(3353), 1, - sym_field_declaration_list, - [192002] = 3, + ACTIONS(2597), 2, + anon_sym_else, + anon_sym_while, + [216989] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6839), 1, - anon_sym_LBRACE, - STATE(3064), 1, - sym_requirement_seq, - [192012] = 3, + ACTIONS(2597), 2, + anon_sym_else, + anon_sym_while, + [216997] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9117), 1, - sym_identifier, - STATE(5608), 1, - sym_attribute, - [192022] = 3, + ACTIONS(2597), 2, + anon_sym_else, + anon_sym_while, + [217005] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6747), 1, + ACTIONS(4195), 1, anon_sym_LBRACE, - STATE(4264), 1, + STATE(2687), 1, sym_field_declaration_list, - [192032] = 3, + [217015] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6747), 1, + ACTIONS(4195), 1, anon_sym_LBRACE, - STATE(4202), 1, + STATE(2694), 1, sym_field_declaration_list, - [192042] = 2, + [217025] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2349), 2, + ACTIONS(2597), 2, anon_sym_else, anon_sym_while, - [192050] = 2, + [217033] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2349), 2, - anon_sym_else, - anon_sym_while, - [192058] = 2, + ACTIONS(9445), 1, + anon_sym_LT, + STATE(2574), 1, + sym_template_argument_list, + [217043] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2349), 2, + ACTIONS(2561), 2, anon_sym_else, anon_sym_while, - [192066] = 3, + [217051] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4827), 1, + ACTIONS(5124), 1, anon_sym_LT, - STATE(4791), 1, + STATE(2957), 1, sym_template_argument_list, - [192076] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(600), 1, - anon_sym_LBRACE, - STATE(983), 1, - sym_compound_statement, - [192086] = 2, + [217061] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2349), 2, + ACTIONS(2561), 2, anon_sym_else, anon_sym_while, - [192094] = 2, + [217069] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2349), 2, - anon_sym_else, - anon_sym_while, - [192102] = 3, - ACTIONS(6923), 1, - sym_comment, - ACTIONS(9119), 1, - anon_sym_LF, - ACTIONS(9121), 1, - sym_preproc_arg, - [192112] = 2, + ACTIONS(8644), 1, + anon_sym_LBRACE, + STATE(5037), 1, + sym_requirement_seq, + [217079] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2349), 2, + ACTIONS(2561), 2, anon_sym_else, anon_sym_while, - [192120] = 3, + [217087] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6747), 1, + ACTIONS(6990), 1, anon_sym_LBRACE, - STATE(4338), 1, + STATE(4520), 1, sym_field_declaration_list, - [192130] = 3, + [217097] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6747), 1, + ACTIONS(6990), 1, anon_sym_LBRACE, - STATE(4308), 1, + STATE(4521), 1, sym_field_declaration_list, - [192140] = 3, + [217107] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9123), 1, - sym_identifier, - STATE(2424), 1, - sym_template_type, - [192150] = 3, + ACTIONS(2561), 2, + anon_sym_else, + anon_sym_while, + [217115] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6747), 1, + ACTIONS(6990), 1, anon_sym_LBRACE, - STATE(4256), 1, + STATE(4523), 1, sym_field_declaration_list, - [192160] = 2, + [217125] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2349), 2, - anon_sym_else, - anon_sym_while, - [192168] = 3, + ACTIONS(4195), 1, + anon_sym_LBRACE, + STATE(2606), 1, + sym_field_declaration_list, + [217135] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6747), 1, + ACTIONS(6990), 1, anon_sym_LBRACE, - STATE(4252), 1, + STATE(4526), 1, sym_field_declaration_list, - [192178] = 3, + [217145] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6747), 1, + ACTIONS(6990), 1, anon_sym_LBRACE, - STATE(4236), 1, + STATE(4527), 1, sym_field_declaration_list, - [192188] = 3, + [217155] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2843), 1, + ACTIONS(4195), 1, anon_sym_LBRACE, - STATE(3058), 1, - sym_initializer_list, - [192198] = 3, + STATE(2626), 1, + sym_field_declaration_list, + [217165] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6747), 1, + ACTIONS(6990), 1, anon_sym_LBRACE, - STATE(4215), 1, + STATE(4529), 1, sym_field_declaration_list, - [192208] = 2, + [217175] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2349), 2, - anon_sym_else, - anon_sym_while, - [192216] = 3, + ACTIONS(4195), 1, + anon_sym_LBRACE, + STATE(2622), 1, + sym_field_declaration_list, + [217185] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6747), 1, + ACTIONS(6990), 1, anon_sym_LBRACE, - STATE(4210), 1, + STATE(4530), 1, sym_field_declaration_list, - [192226] = 3, + [217195] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6747), 1, + ACTIONS(6990), 1, anon_sym_LBRACE, - STATE(4209), 1, + STATE(4531), 1, sym_field_declaration_list, - [192236] = 2, + [217205] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2349), 2, + ACTIONS(2561), 2, anon_sym_else, anon_sym_while, - [192244] = 3, + [217213] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6747), 1, + ACTIONS(6990), 1, anon_sym_LBRACE, - STATE(4353), 1, + STATE(4537), 1, sym_field_declaration_list, - [192254] = 3, + [217223] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5567), 1, - anon_sym_LPAREN2, - STATE(6470), 1, - sym_argument_list, - [192264] = 3, - ACTIONS(6923), 1, + ACTIONS(2561), 2, + anon_sym_else, + anon_sym_while, + [217231] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(9125), 1, - anon_sym_LF, - ACTIONS(9127), 1, - sym_preproc_arg, - [192274] = 3, + ACTIONS(2561), 2, + anon_sym_else, + anon_sym_while, + [217239] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4827), 1, - anon_sym_LT, - STATE(2626), 1, - sym_template_argument_list, - [192284] = 3, + ACTIONS(8932), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [217247] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7438), 1, + ACTIONS(7706), 1, anon_sym_LBRACE, - STATE(1776), 1, + STATE(2194), 1, sym_compound_statement, - [192294] = 2, + [217257] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2349), 2, - anon_sym_else, - anon_sym_while, - [192302] = 2, + ACTIONS(1985), 1, + anon_sym_LBRACE, + STATE(5915), 1, + sym_compound_statement, + [217267] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2349), 2, + ACTIONS(2561), 2, anon_sym_else, anon_sym_while, - [192310] = 2, + [217275] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2349), 2, + ACTIONS(2589), 2, anon_sym_else, anon_sym_while, - [192318] = 2, + [217283] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2349), 2, + ACTIONS(2561), 2, anon_sym_else, anon_sym_while, - [192326] = 3, + [217291] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6747), 1, + ACTIONS(6990), 1, anon_sym_LBRACE, - STATE(4317), 1, + STATE(4574), 1, sym_field_declaration_list, - [192336] = 3, + [217301] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8534), 1, - anon_sym_LPAREN2, - STATE(301), 1, - sym_condition_clause, - [192346] = 3, + ACTIONS(2561), 2, + anon_sym_else, + anon_sym_while, + [217309] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6747), 1, + ACTIONS(6990), 1, anon_sym_LBRACE, - STATE(4205), 1, + STATE(4546), 1, sym_field_declaration_list, - [192356] = 3, + [217319] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6747), 1, + ACTIONS(6990), 1, anon_sym_LBRACE, - STATE(4225), 1, + STATE(4548), 1, sym_field_declaration_list, - [192366] = 3, + [217329] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6747), 1, + ACTIONS(6990), 1, anon_sym_LBRACE, - STATE(4226), 1, + STATE(4553), 1, sym_field_declaration_list, - [192376] = 2, + [217339] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2349), 2, + ACTIONS(2561), 2, anon_sym_else, anon_sym_while, - [192384] = 3, + [217347] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6747), 1, + ACTIONS(6990), 1, anon_sym_LBRACE, - STATE(4228), 1, + STATE(4554), 1, sym_field_declaration_list, - [192394] = 3, + [217357] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6747), 1, + ACTIONS(6990), 1, anon_sym_LBRACE, - STATE(4241), 1, + STATE(4555), 1, sym_field_declaration_list, - [192404] = 3, + [217367] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6747), 1, + ACTIONS(6990), 1, anon_sym_LBRACE, - STATE(4271), 1, + STATE(4558), 1, sym_field_declaration_list, - [192414] = 2, + [217377] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2349), 2, + ACTIONS(2561), 2, anon_sym_else, anon_sym_while, - [192422] = 3, + [217385] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6747), 1, + ACTIONS(6990), 1, anon_sym_LBRACE, - STATE(4272), 1, + STATE(4562), 1, sym_field_declaration_list, - [192432] = 3, + [217395] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6747), 1, + ACTIONS(6990), 1, anon_sym_LBRACE, - STATE(4289), 1, + STATE(4563), 1, sym_field_declaration_list, - [192442] = 3, + [217405] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6747), 1, + ACTIONS(6990), 1, anon_sym_LBRACE, - STATE(4299), 1, + STATE(4564), 1, sym_field_declaration_list, - [192452] = 3, + [217415] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6747), 1, + ACTIONS(6990), 1, anon_sym_LBRACE, - STATE(4315), 1, + STATE(4568), 1, sym_field_declaration_list, - [192462] = 3, + [217425] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6747), 1, + ACTIONS(6990), 1, anon_sym_LBRACE, - STATE(4328), 1, + STATE(4569), 1, sym_field_declaration_list, - [192472] = 3, + [217435] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5141), 1, - anon_sym_LBRACE, - STATE(3124), 1, - sym_field_declaration_list, - [192482] = 3, + ACTIONS(2597), 2, + anon_sym_else, + anon_sym_while, + [217443] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4156), 1, - anon_sym_LBRACE, - STATE(2210), 1, - sym_field_declaration_list, - [192492] = 2, + ACTIONS(2561), 2, + anon_sym_else, + anon_sym_while, + [217451] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2349), 2, + ACTIONS(2597), 2, anon_sym_else, anon_sym_while, - [192500] = 2, + [217459] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2349), 2, + ACTIONS(2597), 2, anon_sym_else, anon_sym_while, - [192508] = 2, + [217467] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2349), 2, + ACTIONS(2597), 2, anon_sym_else, anon_sym_while, - [192516] = 3, + [217475] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9129), 1, + ACTIONS(9447), 1, sym_identifier, - STATE(4128), 1, + STATE(4376), 1, sym_template_type, - [192526] = 2, + [217485] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2349), 2, + ACTIONS(2597), 2, anon_sym_else, anon_sym_while, - [192534] = 2, + [217493] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2349), 2, + ACTIONS(2561), 2, anon_sym_else, anon_sym_while, - [192542] = 2, + [217501] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2349), 2, + ACTIONS(2597), 2, anon_sym_else, anon_sym_while, - [192550] = 2, + [217509] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2349), 2, + ACTIONS(2561), 2, anon_sym_else, anon_sym_while, - [192558] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5129), 1, - anon_sym_LT, - STATE(2626), 1, - sym_template_argument_list, - [192568] = 3, + [217517] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9131), 1, - sym_identifier, - STATE(2200), 1, - sym_template_type, - [192578] = 3, + ACTIONS(2597), 2, + anon_sym_else, + anon_sym_while, + [217525] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6702), 1, + ACTIONS(6913), 1, anon_sym_LT, - STATE(2085), 1, + STATE(1937), 1, sym_template_argument_list, - [192588] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4156), 1, - anon_sym_LBRACE, - STATE(2279), 1, - sym_field_declaration_list, - [192598] = 3, + [217535] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4156), 1, - anon_sym_LBRACE, - STATE(2277), 1, - sym_field_declaration_list, - [192608] = 3, + ACTIONS(2597), 2, + anon_sym_else, + anon_sym_while, + [217543] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4156), 1, + ACTIONS(4065), 1, anon_sym_LBRACE, - STATE(2274), 1, + STATE(2401), 1, sym_field_declaration_list, - [192618] = 2, + [217553] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2349), 2, - anon_sym_else, - anon_sym_while, - [192626] = 3, + ACTIONS(9449), 1, + anon_sym_LPAREN2, + STATE(7003), 1, + sym_parenthesized_expression, + [217563] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9133), 1, + ACTIONS(9451), 1, anon_sym_LT, - STATE(2574), 1, + STATE(2332), 1, sym_template_argument_list, - [192636] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2349), 2, - anon_sym_else, - anon_sym_while, - [192644] = 3, + [217573] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5141), 1, + ACTIONS(4065), 1, anon_sym_LBRACE, - STATE(3122), 1, + STATE(2237), 1, sym_field_declaration_list, - [192654] = 3, + [217583] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4316), 1, + ACTIONS(4065), 1, anon_sym_LBRACE, - STATE(2719), 1, + STATE(2204), 1, sym_field_declaration_list, - [192664] = 3, + [217593] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5504), 1, + ACTIONS(4065), 1, anon_sym_LBRACE, - STATE(3402), 1, + STATE(2242), 1, sym_field_declaration_list, - [192674] = 3, + [217603] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5504), 1, - anon_sym_LBRACE, - STATE(3411), 1, - sym_field_declaration_list, - [192684] = 3, + ACTIONS(2597), 2, + anon_sym_else, + anon_sym_while, + [217611] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7446), 1, + ACTIONS(4065), 1, anon_sym_LBRACE, - STATE(1893), 1, - sym_compound_statement, - [192694] = 2, + STATE(2255), 1, + sym_field_declaration_list, + [217621] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2349), 2, + ACTIONS(2597), 2, anon_sym_else, anon_sym_while, - [192702] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5504), 1, - anon_sym_LBRACE, - STATE(3409), 1, - sym_field_declaration_list, - [192712] = 2, + [217629] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2349), 2, + ACTIONS(2597), 2, anon_sym_else, anon_sym_while, - [192720] = 2, + [217637] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2349), 2, + ACTIONS(2597), 2, anon_sym_else, anon_sym_while, - [192728] = 2, + [217645] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 2, + ACTIONS(2597), 2, anon_sym_else, anon_sym_while, - [192736] = 3, + [217653] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4156), 1, + ACTIONS(4065), 1, anon_sym_LBRACE, - STATE(2252), 1, + STATE(2258), 1, sym_field_declaration_list, - [192746] = 3, + [217663] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4156), 1, - anon_sym_LBRACE, - STATE(2249), 1, - sym_field_declaration_list, - [192756] = 3, + ACTIONS(2597), 2, + anon_sym_else, + anon_sym_while, + [217671] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4156), 1, + ACTIONS(4065), 1, anon_sym_LBRACE, - STATE(2226), 1, + STATE(2259), 1, sym_field_declaration_list, - [192766] = 3, + [217681] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4156), 1, - anon_sym_LBRACE, - STATE(2220), 1, - sym_field_declaration_list, - [192776] = 3, + ACTIONS(2597), 2, + anon_sym_else, + anon_sym_while, + [217689] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4156), 1, - anon_sym_LBRACE, - STATE(2217), 1, - sym_field_declaration_list, - [192786] = 3, + ACTIONS(9453), 1, + anon_sym_LT, + STATE(1967), 1, + sym_template_argument_list, + [217699] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2597), 2, + anon_sym_else, + anon_sym_while, + [217707] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4156), 1, + ACTIONS(4065), 1, anon_sym_LBRACE, - STATE(2213), 1, + STATE(2260), 1, sym_field_declaration_list, - [192796] = 3, + [217717] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4156), 1, + ACTIONS(4065), 1, anon_sym_LBRACE, - STATE(2212), 1, + STATE(2274), 1, sym_field_declaration_list, - [192806] = 3, + [217727] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9135), 1, + ACTIONS(9445), 1, anon_sym_LT, - STATE(2192), 1, + STATE(1814), 1, sym_template_argument_list, - [192816] = 3, + [217737] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4156), 1, + ACTIONS(4065), 1, anon_sym_LBRACE, - STATE(2215), 1, + STATE(2275), 1, sym_field_declaration_list, - [192826] = 3, + [217747] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4156), 1, + ACTIONS(4065), 1, anon_sym_LBRACE, - STATE(2296), 1, + STATE(2278), 1, sym_field_declaration_list, - [192836] = 3, + [217757] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5504), 1, + ACTIONS(4065), 1, anon_sym_LBRACE, - STATE(3406), 1, + STATE(2281), 1, sym_field_declaration_list, - [192846] = 3, + [217767] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9137), 1, - anon_sym_LT, - STATE(2466), 1, - sym_template_argument_list, - [192856] = 3, + ACTIONS(2597), 2, + anon_sym_else, + anon_sym_while, + [217775] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5504), 1, + ACTIONS(4065), 1, anon_sym_LBRACE, - STATE(3398), 1, + STATE(2282), 1, sym_field_declaration_list, - [192866] = 2, + [217785] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2477), 2, + ACTIONS(2597), 2, anon_sym_else, anon_sym_while, - [192874] = 2, + [217793] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2481), 2, + ACTIONS(2597), 2, anon_sym_else, anon_sym_while, - [192882] = 2, + [217801] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2461), 2, + ACTIONS(2597), 2, anon_sym_else, anon_sym_while, - [192890] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4316), 1, - anon_sym_LBRACE, - STATE(2745), 1, - sym_field_declaration_list, - [192900] = 2, + [217809] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2461), 2, + ACTIONS(2597), 2, anon_sym_else, anon_sym_while, - [192908] = 3, + [217817] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4316), 1, - anon_sym_LBRACE, - STATE(2744), 1, - sym_field_declaration_list, - [192918] = 2, + ACTIONS(2561), 2, + anon_sym_else, + anon_sym_while, + [217825] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2461), 2, + ACTIONS(2597), 2, anon_sym_else, anon_sym_while, - [192926] = 2, + [217833] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9184), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [217841] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2461), 2, + ACTIONS(2549), 2, anon_sym_else, anon_sym_while, - [192934] = 2, + [217849] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2461), 2, + ACTIONS(6968), 1, + anon_sym_LT, + STATE(4375), 1, + sym_template_argument_list, + [217859] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2597), 2, anon_sym_else, anon_sym_while, - [192942] = 3, + [217867] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(251), 1, + ACTIONS(1363), 1, anon_sym_LBRACE, - STATE(327), 1, + STATE(1107), 1, sym_compound_statement, - [192952] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4316), 1, - anon_sym_LBRACE, - STATE(2743), 1, - sym_field_declaration_list, - [192962] = 3, + [217877] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4316), 1, + ACTIONS(4065), 1, anon_sym_LBRACE, - STATE(2734), 1, + STATE(2331), 1, sym_field_declaration_list, - [192972] = 3, + [217887] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6667), 1, + ACTIONS(5458), 1, anon_sym_LT, - STATE(4106), 1, + STATE(4104), 1, sym_template_argument_list, - [192982] = 3, + [217897] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4316), 1, + ACTIONS(4065), 1, anon_sym_LBRACE, - STATE(2733), 1, + STATE(2341), 1, sym_field_declaration_list, - [192992] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2461), 2, - anon_sym_else, - anon_sym_while, - [193000] = 3, + [217907] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4316), 1, + ACTIONS(4065), 1, anon_sym_LBRACE, - STATE(2732), 1, + STATE(2343), 1, sym_field_declaration_list, - [193010] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9133), 1, - anon_sym_LT, - STATE(1905), 1, - sym_template_argument_list, - [193020] = 3, + [217917] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4316), 1, + ACTIONS(4065), 1, anon_sym_LBRACE, - STATE(2725), 1, + STATE(2352), 1, sym_field_declaration_list, - [193030] = 3, + [217927] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2597), 2, + anon_sym_else, + anon_sym_while, + [217935] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4316), 1, + ACTIONS(4065), 1, anon_sym_LBRACE, - STATE(2724), 1, + STATE(2355), 1, sym_field_declaration_list, - [193040] = 2, + [217945] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2373), 2, + ACTIONS(2597), 2, anon_sym_else, anon_sym_while, - [193048] = 3, + [217953] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4316), 1, - anon_sym_LBRACE, - STATE(2723), 1, - sym_field_declaration_list, - [193058] = 3, + ACTIONS(2597), 2, + anon_sym_else, + anon_sym_while, + [217961] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5141), 1, - anon_sym_LBRACE, - STATE(3161), 1, - sym_field_declaration_list, - [193068] = 2, + ACTIONS(2597), 2, + anon_sym_else, + anon_sym_while, + [217969] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2461), 2, + ACTIONS(2597), 2, anon_sym_else, anon_sym_while, - [193076] = 3, + [217977] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4156), 1, + ACTIONS(4065), 1, anon_sym_LBRACE, - STATE(2229), 1, + STATE(2356), 1, sym_field_declaration_list, - [193086] = 3, + [217987] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4156), 1, - anon_sym_LBRACE, - STATE(2232), 1, - sym_field_declaration_list, - [193096] = 3, + ACTIONS(2597), 2, + anon_sym_else, + anon_sym_while, + [217995] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4156), 1, + ACTIONS(4065), 1, anon_sym_LBRACE, - STATE(2233), 1, + STATE(2358), 1, sym_field_declaration_list, - [193106] = 3, + [218005] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4156), 1, - anon_sym_LBRACE, - STATE(2236), 1, - sym_field_declaration_list, - [193116] = 3, + ACTIONS(2597), 2, + anon_sym_else, + anon_sym_while, + [218013] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4156), 1, - anon_sym_LBRACE, - STATE(2240), 1, - sym_field_declaration_list, - [193126] = 3, + ACTIONS(6988), 1, + anon_sym_LT, + STATE(1967), 1, + sym_template_argument_list, + [218023] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2601), 2, + anon_sym_else, + anon_sym_while, + [218031] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4156), 1, + ACTIONS(4065), 1, anon_sym_LBRACE, - STATE(2241), 1, + STATE(2364), 1, sym_field_declaration_list, - [193136] = 3, + [218041] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4156), 1, + ACTIONS(4065), 1, anon_sym_LBRACE, - STATE(2243), 1, + STATE(2365), 1, sym_field_declaration_list, - [193146] = 3, + [218051] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6745), 1, + ACTIONS(9455), 1, anon_sym_LT, - STATE(2192), 1, + STATE(1330), 1, sym_template_argument_list, - [193156] = 3, + [218061] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4156), 1, - anon_sym_LBRACE, - STATE(2247), 1, - sym_field_declaration_list, - [193166] = 3, + ACTIONS(7413), 1, + anon_sym_LPAREN2, + STATE(6481), 1, + sym_parameter_list, + [218071] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4156), 1, + ACTIONS(7706), 1, anon_sym_LBRACE, STATE(2208), 1, - sym_field_declaration_list, - [193176] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5504), 1, - anon_sym_LBRACE, - STATE(3354), 1, - sym_field_declaration_list, - [193186] = 3, + sym_compound_statement, + [218081] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4827), 1, + ACTIONS(5500), 1, anon_sym_LT, - STATE(3502), 1, + STATE(1828), 1, sym_template_argument_list, - [193196] = 3, + [218091] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4316), 1, - anon_sym_LBRACE, - STATE(2705), 1, - sym_field_declaration_list, - [193206] = 3, + ACTIONS(2605), 2, + anon_sym_else, + anon_sym_while, + [218099] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4316), 1, + ACTIONS(1985), 1, anon_sym_LBRACE, - STATE(2703), 1, - sym_field_declaration_list, - [193216] = 2, + STATE(5876), 1, + sym_compound_statement, + [218109] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2461), 2, + ACTIONS(2613), 2, anon_sym_else, anon_sym_while, - [193224] = 2, + [218117] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2461), 2, + ACTIONS(2629), 2, anon_sym_else, anon_sym_while, - [193232] = 2, + [218125] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2461), 2, + ACTIONS(2633), 2, anon_sym_else, anon_sym_while, - [193240] = 2, + [218133] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2461), 2, + ACTIONS(4065), 1, + anon_sym_LBRACE, + STATE(2450), 1, + sym_field_declaration_list, + [218143] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2641), 2, anon_sym_else, anon_sym_while, - [193248] = 3, + [218151] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1308), 1, + ACTIONS(4065), 1, anon_sym_LBRACE, - STATE(1098), 1, - sym_compound_statement, - [193258] = 2, + STATE(2449), 1, + sym_field_declaration_list, + [218161] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2461), 2, + ACTIONS(2645), 2, anon_sym_else, anon_sym_while, - [193266] = 2, + [218169] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2461), 2, + ACTIONS(2653), 2, anon_sym_else, anon_sym_while, - [193274] = 2, + [218177] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2461), 2, - anon_sym_else, - anon_sym_while, - [193282] = 3, + ACTIONS(4065), 1, + anon_sym_LBRACE, + STATE(2447), 1, + sym_field_declaration_list, + [218187] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7228), 1, + ACTIONS(4065), 1, anon_sym_LBRACE, - STATE(1931), 1, - sym_compound_statement, - [193292] = 3, + STATE(2445), 1, + sym_field_declaration_list, + [218197] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9139), 1, + ACTIONS(9453), 1, anon_sym_LT, - STATE(2305), 1, + STATE(1839), 1, sym_template_argument_list, - [193302] = 3, + [218207] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6745), 1, - anon_sym_LT, - STATE(2425), 1, - sym_template_argument_list, - [193312] = 3, + ACTIONS(4065), 1, + anon_sym_LBRACE, + STATE(2443), 1, + sym_field_declaration_list, + [218217] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4316), 1, + ACTIONS(4065), 1, anon_sym_LBRACE, - STATE(2637), 1, + STATE(2442), 1, sym_field_declaration_list, - [193322] = 2, + [218227] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6988), 1, + anon_sym_LT, + STATE(2897), 1, + sym_template_argument_list, + [218237] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2461), 2, + ACTIONS(2569), 2, anon_sym_else, anon_sym_while, - [193330] = 3, - ACTIONS(3), 1, + [218245] = 3, + ACTIONS(7181), 1, sym_comment, - ACTIONS(9141), 1, - anon_sym_LPAREN2, - STATE(6348), 1, - sym_condition_clause, - [193340] = 3, + ACTIONS(9457), 1, + anon_sym_LF, + ACTIONS(9459), 1, + sym_preproc_arg, + [218255] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9139), 1, - anon_sym_LT, - STATE(1717), 1, - sym_template_argument_list, - [193350] = 3, + ACTIONS(7706), 1, + anon_sym_LBRACE, + STATE(2316), 1, + sym_compound_statement, + [218265] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4316), 1, - anon_sym_LBRACE, - STATE(2642), 1, - sym_field_declaration_list, - [193360] = 3, + ACTIONS(2495), 1, + anon_sym_while, + ACTIONS(9461), 1, + anon_sym_else, + [218275] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4316), 1, + ACTIONS(8770), 1, anon_sym_LBRACE, - STATE(2643), 1, - sym_field_declaration_list, - [193370] = 3, + STATE(1898), 1, + sym_requirement_seq, + [218285] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4316), 1, + ACTIONS(4065), 1, anon_sym_LBRACE, - STATE(2644), 1, + STATE(2410), 1, sym_field_declaration_list, - [193380] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2461), 2, - anon_sym_else, - anon_sym_while, - [193388] = 2, + [218295] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2461), 2, + ACTIONS(2527), 2, anon_sym_else, anon_sym_while, - [193396] = 3, + [218303] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4316), 1, + ACTIONS(4065), 1, anon_sym_LBRACE, - STATE(2646), 1, + STATE(2408), 1, sym_field_declaration_list, - [193406] = 3, + [218313] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5141), 1, - anon_sym_LBRACE, - STATE(3165), 1, - sym_field_declaration_list, - [193416] = 2, + ACTIONS(9449), 1, + anon_sym_LPAREN2, + STATE(6918), 1, + sym_parenthesized_expression, + [218323] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2461), 2, - anon_sym_else, - anon_sym_while, - [193424] = 2, + ACTIONS(5500), 1, + anon_sym_LT, + STATE(4117), 1, + sym_template_argument_list, + [218333] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2461), 2, - anon_sym_else, - anon_sym_while, - [193432] = 2, + ACTIONS(9463), 1, + sym_identifier, + STATE(2967), 1, + sym_template_type, + [218343] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9465), 1, + anon_sym_LPAREN2, + STATE(6434), 1, + sym_condition_clause, + [218353] = 2, + ACTIONS(7181), 1, + sym_comment, + ACTIONS(9467), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [218361] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2461), 2, + ACTIONS(2523), 2, anon_sym_else, anon_sym_while, - [193440] = 3, - ACTIONS(3), 1, + [218369] = 3, + ACTIONS(7181), 1, sym_comment, - ACTIONS(4316), 1, - anon_sym_LBRACE, - STATE(2647), 1, - sym_field_declaration_list, - [193450] = 3, + ACTIONS(9469), 1, + anon_sym_LF, + ACTIONS(9471), 1, + sym_preproc_arg, + [218379] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8534), 1, - anon_sym_LPAREN2, - STATE(202), 1, - sym_condition_clause, - [193460] = 3, + ACTIONS(1985), 1, + anon_sym_LBRACE, + STATE(5852), 1, + sym_compound_statement, + [218389] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9135), 1, - anon_sym_LT, - STATE(2078), 1, - sym_template_argument_list, - [193470] = 3, + ACTIONS(9473), 1, + anon_sym_default, + ACTIONS(9475), 1, + anon_sym_delete, + [218399] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4316), 1, + ACTIONS(4924), 1, anon_sym_LBRACE, - STATE(2650), 1, + STATE(3156), 1, sym_field_declaration_list, - [193480] = 3, + [218409] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4316), 1, + ACTIONS(4924), 1, anon_sym_LBRACE, - STATE(2652), 1, + STATE(3162), 1, sym_field_declaration_list, - [193490] = 3, + [218419] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4316), 1, + ACTIONS(4924), 1, anon_sym_LBRACE, - STATE(2653), 1, + STATE(3164), 1, sym_field_declaration_list, - [193500] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2461), 2, - anon_sym_else, - anon_sym_while, - [193508] = 2, + [218429] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2461), 2, - anon_sym_else, - anon_sym_while, - [193516] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2461), 2, - anon_sym_else, - anon_sym_while, - [193524] = 3, - ACTIONS(6923), 1, - sym_comment, - ACTIONS(9143), 1, - anon_sym_LF, - ACTIONS(9145), 1, - sym_preproc_arg, - [193534] = 3, + ACTIONS(1985), 1, + anon_sym_LBRACE, + STATE(6049), 1, + sym_compound_statement, + [218439] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4156), 1, - anon_sym_LBRACE, - STATE(2211), 1, - sym_field_declaration_list, - [193544] = 3, + ACTIONS(7413), 1, + anon_sym_LPAREN2, + STATE(6366), 1, + sym_parameter_list, + [218449] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5129), 1, + ACTIONS(9451), 1, anon_sym_LT, - STATE(3525), 1, + STATE(1293), 1, sym_template_argument_list, - [193554] = 2, + [218459] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2461), 2, - anon_sym_else, - anon_sym_while, - [193562] = 3, + ACTIONS(4924), 1, + anon_sym_LBRACE, + STATE(3168), 1, + sym_field_declaration_list, + [218469] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4156), 1, + ACTIONS(4924), 1, anon_sym_LBRACE, - STATE(2292), 1, + STATE(3204), 1, sym_field_declaration_list, - [193572] = 3, + [218479] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4156), 1, + ACTIONS(4924), 1, anon_sym_LBRACE, - STATE(2216), 1, + STATE(3202), 1, sym_field_declaration_list, - [193582] = 3, + [218489] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5129), 1, - anon_sym_LT, - STATE(2305), 1, - sym_template_argument_list, - [193592] = 3, + ACTIONS(4924), 1, + anon_sym_LBRACE, + STATE(3201), 1, + sym_field_declaration_list, + [218499] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4156), 1, + ACTIONS(4924), 1, anon_sym_LBRACE, - STATE(2224), 1, + STATE(3200), 1, sym_field_declaration_list, - [193602] = 3, + [218509] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9137), 1, - anon_sym_LT, - STATE(1711), 1, - sym_template_argument_list, - [193612] = 3, + ACTIONS(4924), 1, + anon_sym_LBRACE, + STATE(3199), 1, + sym_field_declaration_list, + [218519] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4156), 1, + ACTIONS(4924), 1, anon_sym_LBRACE, - STATE(2227), 1, + STATE(3198), 1, sym_field_declaration_list, - [193622] = 3, + [218529] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4156), 1, + ACTIONS(4924), 1, anon_sym_LBRACE, - STATE(2228), 1, + STATE(3197), 1, sym_field_declaration_list, - [193632] = 3, + [218539] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5129), 1, + ACTIONS(5500), 1, anon_sym_LT, - STATE(4791), 1, + STATE(5027), 1, sym_template_argument_list, - [193642] = 3, + [218549] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5141), 1, + ACTIONS(4924), 1, anon_sym_LBRACE, - STATE(3173), 1, + STATE(3196), 1, sym_field_declaration_list, - [193652] = 3, + [218559] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(600), 1, + ACTIONS(1985), 1, anon_sym_LBRACE, - STATE(970), 1, + STATE(5820), 1, sym_compound_statement, - [193662] = 3, + [218569] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9135), 1, + ACTIONS(9453), 1, anon_sym_LT, - STATE(2772), 1, + STATE(2807), 1, sym_template_argument_list, - [193672] = 3, + [218579] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9139), 1, + ACTIONS(8828), 1, + anon_sym_LPAREN2, + STATE(300), 1, + sym_condition_clause, + [218589] = 2, + ACTIONS(7181), 1, + sym_comment, + ACTIONS(9477), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [218597] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9455), 1, anon_sym_LT, - STATE(1721), 1, + STATE(1344), 1, sym_template_argument_list, - [193682] = 3, + [218607] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4827), 1, + ACTIONS(5458), 1, anon_sym_LT, - STATE(3313), 1, + STATE(3969), 1, sym_template_argument_list, - [193692] = 2, + [218617] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2461), 2, - anon_sym_else, - anon_sym_while, - [193700] = 2, + ACTIONS(7496), 1, + anon_sym_LBRACE, + STATE(1942), 1, + sym_compound_statement, + [218627] = 2, + ACTIONS(7181), 1, + sym_comment, + ACTIONS(9479), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [218635] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2461), 2, - anon_sym_else, - anon_sym_while, - [193708] = 2, + ACTIONS(1985), 1, + anon_sym_LBRACE, + STATE(5906), 1, + sym_compound_statement, + [218645] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2461), 2, - anon_sym_else, - anon_sym_while, - [193716] = 2, + ACTIONS(9481), 1, + anon_sym_default, + ACTIONS(9483), 1, + anon_sym_delete, + [218655] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2349), 2, + ACTIONS(2505), 2, anon_sym_else, anon_sym_while, - [193724] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7446), 1, - anon_sym_LBRACE, - STATE(1981), 1, - sym_compound_statement, - [193734] = 3, + [218663] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9147), 1, - anon_sym_LT, - STATE(2131), 1, - sym_template_argument_list, - [193744] = 3, + ACTIONS(2511), 2, + anon_sym_else, + anon_sym_while, + [218671] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9117), 1, + ACTIONS(9485), 1, sym_identifier, - STATE(5609), 1, + STATE(5850), 1, sym_attribute, - [193754] = 3, + [218681] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9141), 1, + ACTIONS(9465), 1, anon_sym_LPAREN2, - STATE(6329), 1, + STATE(6439), 1, sym_condition_clause, - [193764] = 2, + [218691] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2461), 2, + ACTIONS(2515), 2, anon_sym_else, anon_sym_while, - [193772] = 2, + [218699] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2461), 2, - anon_sym_else, - anon_sym_while, - [193780] = 2, - ACTIONS(6923), 1, + ACTIONS(9465), 1, + anon_sym_LPAREN2, + STATE(6528), 1, + sym_condition_clause, + [218709] = 2, + ACTIONS(7181), 1, sym_comment, - ACTIONS(9149), 2, + ACTIONS(9487), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [193788] = 3, - ACTIONS(6923), 1, - sym_comment, - ACTIONS(9151), 1, - anon_sym_LF, - ACTIONS(9153), 1, - sym_preproc_arg, - [193798] = 3, + [218717] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1845), 1, + ACTIONS(4924), 1, anon_sym_LBRACE, - STATE(5610), 1, - sym_compound_statement, - [193808] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2461), 2, - anon_sym_else, - anon_sym_while, - [193816] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5129), 1, - anon_sym_LT, - STATE(1863), 1, - sym_template_argument_list, - [193826] = 3, + STATE(3194), 1, + sym_field_declaration_list, + [218727] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7228), 1, + ACTIONS(1985), 1, anon_sym_LBRACE, - STATE(2039), 1, + STATE(5857), 1, sym_compound_statement, - [193836] = 3, + [218737] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5141), 1, + ACTIONS(4924), 1, anon_sym_LBRACE, - STATE(3150), 1, + STATE(3192), 1, sym_field_declaration_list, - [193846] = 2, + [218747] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2461), 2, + ACTIONS(2519), 2, anon_sym_else, anon_sym_while, - [193854] = 2, + [218755] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2461), 2, + ACTIONS(2531), 2, anon_sym_else, anon_sym_while, - [193862] = 3, + [218763] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6849), 1, - anon_sym_LBRACE, - STATE(3585), 1, - sym_requirement_seq, - [193872] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2461), 2, + ACTIONS(2535), 2, anon_sym_else, anon_sym_while, - [193880] = 3, + [218771] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9155), 1, + ACTIONS(9485), 1, sym_identifier, - STATE(2676), 1, - sym_template_type, - [193890] = 2, + STATE(5923), 1, + sym_attribute, + [218781] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2461), 2, + ACTIONS(2539), 2, anon_sym_else, anon_sym_while, - [193898] = 2, + [218789] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2461), 2, + ACTIONS(2491), 2, anon_sym_else, anon_sym_while, - [193906] = 2, + [218797] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2461), 2, - anon_sym_else, + ACTIONS(2543), 1, anon_sym_while, - [193914] = 2, + ACTIONS(9489), 1, + anon_sym_else, + [218807] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9491), 1, + sym_identifier, + STATE(3256), 1, + sym_template_type, + [218817] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2485), 2, + ACTIONS(2609), 2, anon_sym_else, anon_sym_while, - [193922] = 2, + [218825] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2445), 2, + ACTIONS(2501), 2, anon_sym_else, anon_sym_while, - [193930] = 2, + [218833] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2431), 2, + ACTIONS(2553), 2, anon_sym_else, anon_sym_while, - [193938] = 3, + [218841] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5987), 1, - anon_sym_RPAREN, - ACTIONS(5989), 1, - anon_sym_SEMI, - [193948] = 2, + ACTIONS(2557), 2, + anon_sym_else, + anon_sym_while, + [218849] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2427), 2, + ACTIONS(2565), 2, anon_sym_else, anon_sym_while, - [193956] = 3, + [218857] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5567), 1, - anon_sym_LPAREN2, - STATE(6422), 1, - sym_argument_list, - [193966] = 2, + ACTIONS(2573), 2, + anon_sym_else, + anon_sym_while, + [218865] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2419), 2, + ACTIONS(2577), 2, anon_sym_else, anon_sym_while, - [193974] = 3, + [218873] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(251), 1, + ACTIONS(4924), 1, anon_sym_LBRACE, - STATE(391), 1, - sym_compound_statement, - [193984] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2415), 2, - anon_sym_else, - anon_sym_while, - [193992] = 3, + STATE(3191), 1, + sym_field_declaration_list, + [218883] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8534), 1, + ACTIONS(5470), 1, anon_sym_LPAREN2, - STATE(181), 1, - sym_condition_clause, - [194002] = 2, + STATE(6985), 1, + sym_argument_list, + [218893] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2411), 2, + ACTIONS(2585), 2, anon_sym_else, anon_sym_while, - [194010] = 3, + [218901] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4156), 1, + ACTIONS(4924), 1, anon_sym_LBRACE, - STATE(2244), 1, + STATE(3190), 1, sym_field_declaration_list, - [194020] = 3, + [218911] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4156), 1, + ACTIONS(4924), 1, anon_sym_LBRACE, - STATE(2286), 1, + STATE(3188), 1, sym_field_declaration_list, - [194030] = 2, + [218921] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2395), 2, - anon_sym_else, - anon_sym_while, - [194038] = 2, + ACTIONS(4924), 1, + anon_sym_LBRACE, + STATE(3187), 1, + sym_field_declaration_list, + [218931] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2389), 2, - anon_sym_else, - anon_sym_while, - [194046] = 2, - ACTIONS(6923), 1, - sym_comment, - ACTIONS(9157), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [194054] = 2, + ACTIONS(4924), 1, + anon_sym_LBRACE, + STATE(3186), 1, + sym_field_declaration_list, + [218941] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2435), 2, - anon_sym_else, - anon_sym_while, - [194062] = 2, + ACTIONS(4924), 1, + anon_sym_LBRACE, + STATE(3184), 1, + sym_field_declaration_list, + [218951] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2399), 2, - anon_sym_else, - anon_sym_while, - [194070] = 3, + ACTIONS(4924), 1, + anon_sym_LBRACE, + STATE(3183), 1, + sym_field_declaration_list, + [218961] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2521), 1, - anon_sym_while, - ACTIONS(9159), 1, - anon_sym_else, - [194080] = 2, + ACTIONS(7720), 1, + anon_sym_LBRACE, + STATE(2067), 1, + sym_compound_statement, + [218971] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2509), 2, - anon_sym_else, - anon_sym_while, - [194088] = 2, - ACTIONS(3), 1, + ACTIONS(5500), 1, + anon_sym_LT, + STATE(3969), 1, + sym_template_argument_list, + [218981] = 3, + ACTIONS(7181), 1, sym_comment, - ACTIONS(2505), 2, - anon_sym_else, - anon_sym_while, - [194096] = 2, + ACTIONS(9493), 1, + anon_sym_LF, + ACTIONS(9495), 1, + sym_preproc_arg, + [218991] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2501), 2, - anon_sym_else, - anon_sym_while, - [194104] = 3, + ACTIONS(7413), 1, + anon_sym_LPAREN2, + STATE(6287), 1, + sym_parameter_list, + [219001] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9161), 1, - sym_identifier, - STATE(2133), 1, - sym_template_type, - [194114] = 2, - ACTIONS(3), 1, + ACTIONS(1985), 1, + anon_sym_LBRACE, + STATE(5993), 1, + sym_compound_statement, + [219011] = 2, + ACTIONS(7181), 1, sym_comment, - ACTIONS(2493), 2, - anon_sym_else, - anon_sym_while, - [194122] = 2, + ACTIONS(9497), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [219019] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2489), 2, - anon_sym_else, - anon_sym_while, - [194130] = 3, + ACTIONS(9499), 1, + sym_identifier, + ACTIONS(9501), 1, + anon_sym_LPAREN2, + [219029] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9163), 1, - anon_sym_default, - ACTIONS(9165), 1, - anon_sym_delete, - [194140] = 2, - ACTIONS(3), 1, + ACTIONS(9237), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [219037] = 2, + ACTIONS(7181), 1, sym_comment, - ACTIONS(2465), 2, - anon_sym_else, - anon_sym_while, - [194148] = 2, + ACTIONS(9503), 2, + anon_sym_LF, + sym_preproc_arg, + [219045] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2453), 2, - anon_sym_else, - anon_sym_while, - [194156] = 2, + ACTIONS(9505), 1, + sym_identifier, + STATE(2411), 1, + sym_template_type, + [219055] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2449), 2, - anon_sym_else, - anon_sym_while, - [194164] = 3, + ACTIONS(7413), 1, + anon_sym_LPAREN2, + STATE(6148), 1, + sym_parameter_list, + [219065] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3037), 1, + ACTIONS(4924), 1, anon_sym_LBRACE, - STATE(3911), 1, - sym_initializer_list, - [194174] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2439), 1, - anon_sym_while, - ACTIONS(9167), 1, - anon_sym_else, - [194184] = 2, + STATE(3178), 1, + sym_field_declaration_list, + [219075] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2423), 2, - anon_sym_else, - anon_sym_while, - [194192] = 2, + ACTIONS(9507), 1, + anon_sym_default, + ACTIONS(9509), 1, + anon_sym_delete, + [219085] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2403), 2, - anon_sym_else, - anon_sym_while, - [194200] = 2, + ACTIONS(4924), 1, + anon_sym_LBRACE, + STATE(3176), 1, + sym_field_declaration_list, + [219095] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2497), 2, - anon_sym_else, - anon_sym_while, - [194208] = 2, + ACTIONS(4924), 1, + anon_sym_LBRACE, + STATE(3174), 1, + sym_field_declaration_list, + [219105] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2357), 2, - anon_sym_else, - anon_sym_while, - [194216] = 2, + ACTIONS(4924), 1, + anon_sym_LBRACE, + STATE(3137), 1, + sym_field_declaration_list, + [219115] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2361), 2, - anon_sym_else, - anon_sym_while, - [194224] = 2, + ACTIONS(4924), 1, + anon_sym_LBRACE, + STATE(3171), 1, + sym_field_declaration_list, + [219125] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2377), 2, - anon_sym_else, - anon_sym_while, - [194232] = 3, + ACTIONS(4924), 1, + anon_sym_LBRACE, + STATE(3170), 1, + sym_field_declaration_list, + [219135] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8534), 1, - anon_sym_LPAREN2, - STATE(157), 1, - sym_condition_clause, - [194242] = 2, + ACTIONS(51), 1, + anon_sym_LBRACE, + STATE(1001), 1, + sym_compound_statement, + [219145] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2381), 2, - anon_sym_else, - anon_sym_while, - [194250] = 3, + ACTIONS(9455), 1, + anon_sym_LT, + STATE(1321), 1, + sym_template_argument_list, + [219155] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4211), 1, - anon_sym_LBRACE, - STATE(2394), 1, - sym_field_declaration_list, - [194260] = 3, - ACTIONS(6923), 1, + ACTIONS(9445), 1, + anon_sym_LT, + STATE(1897), 1, + sym_template_argument_list, + [219165] = 3, + ACTIONS(7181), 1, sym_comment, - ACTIONS(9169), 1, + ACTIONS(9511), 1, anon_sym_LF, - ACTIONS(9171), 1, + ACTIONS(9513), 1, sym_preproc_arg, - [194270] = 3, + [219175] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5504), 1, - anon_sym_LBRACE, - STATE(3361), 1, - sym_field_declaration_list, - [194280] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2385), 2, - anon_sym_else, - anon_sym_while, - [194288] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2461), 2, - anon_sym_else, - anon_sym_while, - [194296] = 2, + ACTIONS(7413), 1, + anon_sym_LPAREN2, + STATE(6218), 1, + sym_parameter_list, + [219185] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8541), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [194304] = 3, + ACTIONS(4177), 1, + anon_sym_LPAREN2, + STATE(2910), 1, + sym_argument_list, + [219195] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1845), 1, + ACTIONS(7720), 1, anon_sym_LBRACE, - STATE(5644), 1, + STATE(2156), 1, sym_compound_statement, - [194314] = 2, + [219205] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9173), 2, - anon_sym_COMMA, + ACTIONS(7077), 1, anon_sym_LBRACE, - [194322] = 3, + STATE(3018), 1, + sym_requirement_seq, + [219215] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4446), 1, + ACTIONS(4417), 1, anon_sym_LBRACE, - STATE(2958), 1, + STATE(2874), 1, sym_field_declaration_list, - [194332] = 3, + [219225] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1845), 1, + ACTIONS(4417), 1, anon_sym_LBRACE, - STATE(5524), 1, - sym_compound_statement, - [194342] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4446), 1, - anon_sym_LBRACE, - STATE(2959), 1, + STATE(2896), 1, sym_field_declaration_list, - [194352] = 3, + [219235] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4446), 1, + ACTIONS(4417), 1, anon_sym_LBRACE, - STATE(2961), 1, + STATE(2917), 1, sym_field_declaration_list, - [194362] = 3, + [219245] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4446), 1, - anon_sym_LBRACE, - STATE(2921), 1, - sym_field_declaration_list, - [194372] = 3, + ACTIONS(8828), 1, + anon_sym_LPAREN2, + STATE(308), 1, + sym_condition_clause, + [219255] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6747), 1, + ACTIONS(1363), 1, anon_sym_LBRACE, - STATE(4274), 1, - sym_field_declaration_list, - [194382] = 3, - ACTIONS(6923), 1, + STATE(1160), 1, + sym_compound_statement, + [219265] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(9175), 1, - anon_sym_LF, - ACTIONS(9177), 1, - sym_preproc_arg, - [194392] = 3, + ACTIONS(8828), 1, + anon_sym_LPAREN2, + STATE(172), 1, + sym_condition_clause, + [219275] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5141), 1, + ACTIONS(4924), 1, anon_sym_LBRACE, - STATE(3201), 1, + STATE(3157), 1, sym_field_declaration_list, - [194402] = 3, + [219285] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4211), 1, + ACTIONS(4924), 1, anon_sym_LBRACE, - STATE(2469), 1, + STATE(3154), 1, sym_field_declaration_list, - [194412] = 3, + [219295] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4262), 1, + ACTIONS(4924), 1, anon_sym_LBRACE, - STATE(2495), 1, + STATE(3152), 1, sym_field_declaration_list, - [194422] = 3, + [219305] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4211), 1, + ACTIONS(536), 1, anon_sym_LBRACE, - STATE(2467), 1, - sym_field_declaration_list, - [194432] = 3, + STATE(885), 1, + sym_compound_statement, + [219315] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9179), 1, + ACTIONS(9515), 1, + sym_identifier, + STATE(2273), 1, + sym_template_method, + [219325] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9449), 1, anon_sym_LPAREN2, - STATE(6434), 1, + STATE(6772), 1, sym_parenthesized_expression, - [194442] = 3, + [219335] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5141), 1, - anon_sym_LBRACE, - STATE(3202), 1, - sym_field_declaration_list, - [194452] = 3, + ACTIONS(5967), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [219343] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5141), 1, + ACTIONS(1985), 1, anon_sym_LBRACE, - STATE(3205), 1, - sym_field_declaration_list, - [194462] = 2, + STATE(6072), 1, + sym_compound_statement, + [219353] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8557), 2, - anon_sym_COMMA, + ACTIONS(9517), 1, + sym_identifier, + STATE(2768), 1, + sym_template_type, + [219363] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1931), 1, anon_sym_LBRACE, - [194470] = 3, + STATE(3056), 1, + sym_initializer_list, + [219373] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4446), 1, + ACTIONS(7107), 1, anon_sym_LBRACE, - STATE(2902), 1, - sym_field_declaration_list, - [194480] = 3, + STATE(3112), 1, + sym_requirement_seq, + [219383] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7181), 1, + ACTIONS(8828), 1, anon_sym_LPAREN2, - STATE(6325), 1, - sym_parameter_list, - [194490] = 3, + STATE(184), 1, + sym_condition_clause, + [219393] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(536), 1, anon_sym_LBRACE, - STATE(991), 1, + STATE(955), 1, sym_compound_statement, - [194500] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8302), 1, - sym_identifier, - STATE(6177), 1, - sym_enumerator, - [194510] = 3, + [219403] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9179), 1, + ACTIONS(9449), 1, anon_sym_LPAREN2, - STATE(6592), 1, + STATE(7059), 1, sym_parenthesized_expression, - [194520] = 2, - ACTIONS(6923), 1, + [219413] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1959), 1, + anon_sym_LBRACE, + STATE(3082), 1, + sym_initializer_list, + [219423] = 3, + ACTIONS(7181), 1, + sym_comment, + ACTIONS(9519), 1, + anon_sym_LF, + ACTIONS(9521), 1, + sym_preproc_arg, + [219433] = 3, + ACTIONS(7181), 1, sym_comment, - ACTIONS(9181), 2, + ACTIONS(9523), 1, anon_sym_LF, + ACTIONS(9525), 1, sym_preproc_arg, - [194528] = 2, + [219443] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8566), 2, + ACTIONS(8919), 2, anon_sym_COMMA, anon_sym_RPAREN, - [194536] = 3, + [219451] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7181), 1, + ACTIONS(7413), 1, anon_sym_LPAREN2, - STATE(6224), 1, + STATE(6555), 1, sym_parameter_list, - [194546] = 3, + [219461] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5129), 1, + ACTIONS(5494), 1, + anon_sym_LBRACE, + STATE(3493), 1, + sym_field_declaration_list, + [219471] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6913), 1, anon_sym_LT, - STATE(5574), 1, + STATE(2412), 1, sym_template_argument_list, - [194556] = 2, + [219481] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9183), 2, - anon_sym_COMMA, + ACTIONS(5739), 1, anon_sym_LBRACE, - [194564] = 3, + STATE(4029), 1, + sym_field_declaration_list, + [219491] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9185), 1, + ACTIONS(9527), 1, sym_identifier, - ACTIONS(9187), 1, + ACTIONS(9529), 1, anon_sym_inline, - [194574] = 2, + [219501] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8574), 2, + ACTIONS(9531), 2, anon_sym_COMMA, anon_sym_LBRACE, - [194582] = 3, + [219509] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4211), 1, + ACTIONS(5739), 1, anon_sym_LBRACE, - STATE(2449), 1, + STATE(3997), 1, sym_field_declaration_list, - [194592] = 3, + [219519] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1845), 1, + ACTIONS(5739), 1, anon_sym_LBRACE, - STATE(5638), 1, - sym_compound_statement, - [194602] = 3, + STATE(3994), 1, + sym_field_declaration_list, + [219529] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4211), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - STATE(2448), 1, + STATE(3533), 1, sym_field_declaration_list, - [194612] = 3, + [219539] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4211), 1, + ACTIONS(5739), 1, anon_sym_LBRACE, - STATE(2447), 1, + STATE(4033), 1, sym_field_declaration_list, - [194622] = 3, + [219549] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4211), 1, + ACTIONS(4417), 1, anon_sym_LBRACE, - STATE(2446), 1, + STATE(2858), 1, sym_field_declaration_list, - [194632] = 3, + [219559] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4211), 1, + ACTIONS(7413), 1, + anon_sym_LPAREN2, + STATE(6719), 1, + sym_parameter_list, + [219569] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1985), 1, anon_sym_LBRACE, - STATE(2445), 1, - sym_field_declaration_list, - [194642] = 3, + STATE(5951), 1, + sym_compound_statement, + [219579] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4211), 1, + ACTIONS(5739), 1, anon_sym_LBRACE, - STATE(2444), 1, + STATE(4012), 1, sym_field_declaration_list, - [194652] = 3, + [219589] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4211), 1, + ACTIONS(5739), 1, anon_sym_LBRACE, - STATE(2325), 1, + STATE(4058), 1, sym_field_declaration_list, - [194662] = 3, + [219599] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4211), 1, + ACTIONS(5739), 1, anon_sym_LBRACE, - STATE(2442), 1, + STATE(4020), 1, sym_field_declaration_list, - [194672] = 3, + [219609] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4211), 1, + ACTIONS(5739), 1, anon_sym_LBRACE, - STATE(2441), 1, + STATE(4023), 1, sym_field_declaration_list, - [194682] = 2, + [219619] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9189), 2, - anon_sym_COMMA, + ACTIONS(5739), 1, anon_sym_LBRACE, - [194690] = 2, + STATE(4025), 1, + sym_field_declaration_list, + [219629] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8585), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [194698] = 2, + ACTIONS(5494), 1, + anon_sym_LBRACE, + STATE(3528), 1, + sym_field_declaration_list, + [219639] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8590), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [194706] = 3, + ACTIONS(5739), 1, + anon_sym_LBRACE, + STATE(4026), 1, + sym_field_declaration_list, + [219649] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9191), 1, - anon_sym_default, - ACTIONS(9193), 1, - anon_sym_delete, - [194716] = 2, - ACTIONS(3), 1, + ACTIONS(5739), 1, + anon_sym_LBRACE, + STATE(4028), 1, + sym_field_declaration_list, + [219659] = 3, + ACTIONS(7181), 1, sym_comment, - ACTIONS(9195), 2, - anon_sym_COMMA, - anon_sym_GT2, - [194724] = 2, + ACTIONS(9533), 1, + anon_sym_LF, + ACTIONS(9535), 1, + sym_preproc_arg, + [219669] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9197), 2, - anon_sym_COLON_COLON, + ACTIONS(5739), 1, anon_sym_LBRACE, - [194732] = 3, + STATE(4031), 1, + sym_field_declaration_list, + [219679] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5504), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - STATE(3349), 1, + STATE(3518), 1, sym_field_declaration_list, - [194742] = 3, + [219689] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7438), 1, + ACTIONS(4417), 1, anon_sym_LBRACE, - STATE(1844), 1, - sym_compound_statement, - [194752] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9135), 1, - anon_sym_LT, - STATE(3067), 1, - sym_template_argument_list, - [194762] = 3, + STATE(2795), 1, + sym_field_declaration_list, + [219699] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4316), 1, + ACTIONS(4417), 1, anon_sym_LBRACE, - STATE(2672), 1, + STATE(2819), 1, sym_field_declaration_list, - [194772] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8597), 2, - anon_sym_COMMA, - anon_sym_GT2, - [194780] = 3, + [219709] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5129), 1, - anon_sym_LT, - STATE(3313), 1, - sym_template_argument_list, - [194790] = 3, + ACTIONS(9537), 1, + sym_identifier, + STATE(2273), 1, + sym_template_method, + [219719] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7438), 1, + ACTIONS(566), 1, anon_sym_LBRACE, - STATE(1866), 1, + STATE(545), 1, sym_compound_statement, - [194800] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9199), 2, - anon_sym_COMMA, - anon_sym_GT2, - [194808] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9201), 2, - anon_sym_COMMA, - anon_sym_GT2, - [194816] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6114), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [194824] = 3, + [219729] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1845), 1, + ACTIONS(4417), 1, anon_sym_LBRACE, - STATE(1771), 1, - sym_compound_statement, - [194834] = 3, + STATE(2809), 1, + sym_field_declaration_list, + [219739] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8342), 1, + ACTIONS(1985), 1, anon_sym_LBRACE, - STATE(1763), 1, - sym_requirement_seq, - [194844] = 3, + STATE(5961), 1, + sym_compound_statement, + [219749] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5504), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - STATE(3348), 1, + STATE(3519), 1, sym_field_declaration_list, - [194854] = 3, + [219759] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4316), 1, + ACTIONS(4417), 1, anon_sym_LBRACE, - STATE(2677), 1, + STATE(2796), 1, sym_field_declaration_list, - [194864] = 3, + [219769] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5504), 1, + ACTIONS(5739), 1, anon_sym_LBRACE, - STATE(3346), 1, + STATE(4056), 1, sym_field_declaration_list, - [194874] = 3, + [219779] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4316), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - STATE(2680), 1, + STATE(3520), 1, sym_field_declaration_list, - [194884] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6004), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [194892] = 3, + [219789] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5504), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - STATE(3330), 1, + STATE(3534), 1, sym_field_declaration_list, - [194902] = 3, + [219799] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6829), 1, + ACTIONS(5739), 1, anon_sym_LBRACE, - STATE(3308), 1, - sym_requirement_seq, - [194912] = 3, + STATE(4043), 1, + sym_field_declaration_list, + [219809] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9203), 1, - anon_sym_LT, - STATE(2547), 1, - sym_template_argument_list, - [194922] = 3, + ACTIONS(7413), 1, + anon_sym_LPAREN2, + STATE(6571), 1, + sym_parameter_list, + [219819] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1465), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - STATE(3437), 1, - sym_initializer_list, - [194932] = 3, + STATE(3465), 1, + sym_field_declaration_list, + [219829] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5141), 1, + ACTIONS(5739), 1, anon_sym_LBRACE, - STATE(3177), 1, + STATE(4042), 1, sym_field_declaration_list, - [194942] = 3, + [219839] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4211), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - STATE(2405), 1, + STATE(3467), 1, sym_field_declaration_list, - [194952] = 3, + [219849] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4211), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - STATE(2403), 1, + STATE(3472), 1, sym_field_declaration_list, - [194962] = 3, + [219859] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5141), 1, + ACTIONS(8968), 2, + anon_sym_COMMA, anon_sym_LBRACE, - STATE(3168), 1, - sym_field_declaration_list, - [194972] = 3, + [219867] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4211), 1, + ACTIONS(5739), 1, anon_sym_LBRACE, - STATE(2402), 1, + STATE(4040), 1, sym_field_declaration_list, - [194982] = 3, + [219877] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5141), 1, + ACTIONS(5739), 1, anon_sym_LBRACE, - STATE(3163), 1, + STATE(4038), 1, sym_field_declaration_list, - [194992] = 3, + [219887] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4211), 1, + ACTIONS(5739), 1, anon_sym_LBRACE, - STATE(2401), 1, + STATE(4036), 1, sym_field_declaration_list, - [195002] = 3, + [219897] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4211), 1, + ACTIONS(5739), 1, anon_sym_LBRACE, - STATE(2399), 1, + STATE(4035), 1, sym_field_declaration_list, - [195012] = 3, + [219907] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4211), 1, - anon_sym_LBRACE, - STATE(2398), 1, - sym_field_declaration_list, - [195022] = 3, + ACTIONS(9539), 1, + anon_sym_LT, + STATE(2472), 1, + sym_template_argument_list, + [219917] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4211), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - STATE(2397), 1, + STATE(3436), 1, sym_field_declaration_list, - [195032] = 3, + [219927] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4211), 1, - anon_sym_LBRACE, - STATE(2395), 1, - sym_field_declaration_list, - [195042] = 3, + ACTIONS(9449), 1, + anon_sym_LPAREN2, + STATE(7100), 1, + sym_parenthesized_expression, + [219937] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4316), 1, + ACTIONS(5739), 1, anon_sym_LBRACE, - STATE(2682), 1, + STATE(3992), 1, sym_field_declaration_list, - [195052] = 3, + [219947] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5141), 1, + ACTIONS(5739), 1, anon_sym_LBRACE, - STATE(3155), 1, + STATE(4030), 1, sym_field_declaration_list, - [195062] = 3, + [219957] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5141), 1, + ACTIONS(566), 1, anon_sym_LBRACE, - STATE(3154), 1, - sym_field_declaration_list, - [195072] = 3, + STATE(1003), 1, + sym_compound_statement, + [219967] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5141), 1, + ACTIONS(5500), 1, + anon_sym_LT, + STATE(2168), 1, + sym_template_argument_list, + [219977] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4417), 1, anon_sym_LBRACE, - STATE(3153), 1, + STATE(2714), 1, sym_field_declaration_list, - [195082] = 3, + [219987] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5930), 1, + anon_sym_RPAREN, + ACTIONS(5932), 1, + anon_sym_SEMI, + [219997] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5504), 1, + ACTIONS(5739), 1, anon_sym_LBRACE, - STATE(3342), 1, + STATE(4061), 1, sym_field_declaration_list, - [195092] = 3, + [220007] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4316), 1, + ACTIONS(5739), 1, anon_sym_LBRACE, - STATE(2685), 1, + STATE(4037), 1, sym_field_declaration_list, - [195102] = 3, + [220017] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5504), 1, + ACTIONS(5739), 1, anon_sym_LBRACE, - STATE(3341), 1, + STATE(4053), 1, sym_field_declaration_list, - [195112] = 3, + [220027] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4316), 1, + ACTIONS(5739), 1, anon_sym_LBRACE, - STATE(2686), 1, + STATE(4057), 1, sym_field_declaration_list, - [195122] = 3, + [220037] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5141), 1, + ACTIONS(5739), 1, anon_sym_LBRACE, - STATE(3152), 1, + STATE(4060), 1, sym_field_declaration_list, - [195132] = 3, + [220047] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5141), 1, + ACTIONS(5739), 1, anon_sym_LBRACE, - STATE(3147), 1, + STATE(4054), 1, sym_field_declaration_list, - [195142] = 3, + [220057] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5141), 1, + ACTIONS(5458), 1, + anon_sym_LT, + STATE(3279), 1, + sym_template_argument_list, + [220067] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9541), 1, + anon_sym_default, + ACTIONS(9543), 1, + anon_sym_delete, + [220077] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4012), 1, anon_sym_LBRACE, - STATE(3146), 1, + STATE(2022), 1, sym_field_declaration_list, - [195152] = 3, + [220087] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(251), 1, + ACTIONS(8574), 1, + sym_identifier, + STATE(6655), 1, + sym_enumerator, + [220097] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(566), 1, anon_sym_LBRACE, - STATE(506), 1, + STATE(1050), 1, sym_compound_statement, - [195162] = 3, + [220107] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9147), 1, - anon_sym_LT, - STATE(2302), 1, - sym_template_argument_list, - [195172] = 3, + ACTIONS(5932), 1, + anon_sym_SEMI, + ACTIONS(5987), 1, + anon_sym_RPAREN, + [220117] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7087), 1, + anon_sym_LBRACE, + STATE(3780), 1, + sym_requirement_seq, + [220127] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9205), 1, + ACTIONS(9545), 1, sym_identifier, - STATE(3092), 1, + STATE(2706), 1, sym_template_method, - [195182] = 3, + [220137] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9451), 1, + anon_sym_LT, + STATE(1801), 1, + sym_template_argument_list, + [220147] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4446), 1, + ACTIONS(536), 1, anon_sym_LBRACE, - STATE(2942), 1, - sym_field_declaration_list, - [195192] = 3, + STATE(916), 1, + sym_compound_statement, + [220157] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4446), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - STATE(2947), 1, + STATE(3480), 1, sym_field_declaration_list, - [195202] = 3, + [220167] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4446), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - STATE(2892), 1, + STATE(3482), 1, sym_field_declaration_list, - [195212] = 3, + [220177] = 2, + ACTIONS(7181), 1, + sym_comment, + ACTIONS(9547), 2, + anon_sym_LF, + sym_preproc_arg, + [220185] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4446), 1, + ACTIONS(566), 1, anon_sym_LBRACE, - STATE(2865), 1, - sym_field_declaration_list, - [195222] = 3, + STATE(665), 1, + sym_compound_statement, + [220195] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8828), 1, + anon_sym_LPAREN2, + STATE(264), 1, + sym_condition_clause, + [220205] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9021), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [220213] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4446), 1, + ACTIONS(5739), 1, anon_sym_LBRACE, - STATE(2951), 1, + STATE(4005), 1, sym_field_declaration_list, - [195232] = 3, + [220223] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4446), 1, + ACTIONS(5739), 1, anon_sym_LBRACE, - STATE(2923), 1, + STATE(4016), 1, sym_field_declaration_list, - [195242] = 3, + [220233] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5504), 1, + ACTIONS(5739), 1, anon_sym_LBRACE, - STATE(3339), 1, + STATE(4008), 1, sym_field_declaration_list, - [195252] = 2, + [220243] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8650), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [195260] = 3, + ACTIONS(5494), 1, + anon_sym_LBRACE, + STATE(3484), 1, + sym_field_declaration_list, + [220253] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4446), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - STATE(2915), 1, + STATE(3486), 1, sym_field_declaration_list, - [195270] = 2, + [220263] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6162), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [195278] = 2, + ACTIONS(5494), 1, + anon_sym_LBRACE, + STATE(3488), 1, + sym_field_declaration_list, + [220273] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9207), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [195286] = 3, + ACTIONS(9549), 1, + sym_identifier, + STATE(1890), 1, + sym_template_type, + [220283] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4446), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - STATE(2910), 1, + STATE(3489), 1, sym_field_declaration_list, - [195296] = 2, - ACTIONS(6923), 1, + [220293] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(9209), 2, - anon_sym_LF, - sym_preproc_arg, - [195304] = 3, + ACTIONS(3107), 1, + anon_sym_LBRACE, + STATE(3846), 1, + sym_initializer_list, + [220303] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4147), 1, - anon_sym_LT, - STATE(2144), 1, - sym_template_argument_list, - [195314] = 2, + ACTIONS(4417), 1, + anon_sym_LBRACE, + STATE(2830), 1, + sym_field_declaration_list, + [220313] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9211), 2, - anon_sym_DOT_DOT_DOT, - sym_identifier, - [195322] = 3, + ACTIONS(4417), 1, + anon_sym_LBRACE, + STATE(2835), 1, + sym_field_declaration_list, + [220323] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4211), 1, - anon_sym_LBRACE, - STATE(2345), 1, - sym_field_declaration_list, - [195332] = 3, + ACTIONS(5500), 1, + anon_sym_LT, + STATE(6095), 1, + sym_template_argument_list, + [220333] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4211), 1, + ACTIONS(9551), 2, + anon_sym_COMMA, anon_sym_LBRACE, - STATE(2343), 1, - sym_field_declaration_list, - [195342] = 3, + [220341] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4211), 1, + ACTIONS(4417), 1, anon_sym_LBRACE, - STATE(2341), 1, + STATE(2837), 1, sym_field_declaration_list, - [195352] = 3, + [220351] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4211), 1, - anon_sym_LBRACE, - STATE(2340), 1, - sym_field_declaration_list, - [195362] = 3, + ACTIONS(8828), 1, + anon_sym_LPAREN2, + STATE(306), 1, + sym_condition_clause, + [220361] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4211), 1, + ACTIONS(9063), 2, + anon_sym_COMMA, anon_sym_LBRACE, - STATE(2338), 1, - sym_field_declaration_list, - [195372] = 3, + [220369] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4211), 1, + ACTIONS(9553), 2, + anon_sym_COMMA, anon_sym_LBRACE, - STATE(2337), 1, - sym_field_declaration_list, - [195382] = 3, + [220377] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9213), 1, + ACTIONS(9555), 1, sym_identifier, - STATE(2183), 1, + STATE(2411), 1, sym_template_type, - [195392] = 3, + [220387] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4446), 1, + ACTIONS(4417), 1, anon_sym_LBRACE, - STATE(2885), 1, + STATE(2845), 1, sym_field_declaration_list, - [195402] = 3, - ACTIONS(6923), 1, + [220397] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(9215), 1, + ACTIONS(4417), 1, + anon_sym_LBRACE, + STATE(2846), 1, + sym_field_declaration_list, + [220407] = 3, + ACTIONS(7181), 1, + sym_comment, + ACTIONS(9557), 1, anon_sym_LF, - ACTIONS(9217), 1, + ACTIONS(9559), 1, sym_preproc_arg, - [195412] = 2, + [220417] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9219), 2, - anon_sym_LPAREN2, + ACTIONS(4417), 1, anon_sym_LBRACE, - [195420] = 2, + STATE(2850), 1, + sym_field_declaration_list, + [220427] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9219), 2, - anon_sym_LPAREN2, + ACTIONS(4417), 1, anon_sym_LBRACE, - [195428] = 2, + STATE(2851), 1, + sym_field_declaration_list, + [220437] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9219), 2, - anon_sym_LPAREN2, + ACTIONS(4417), 1, anon_sym_LBRACE, - [195436] = 3, + STATE(2853), 1, + sym_field_declaration_list, + [220447] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1308), 1, + ACTIONS(536), 1, anon_sym_LBRACE, - STATE(1175), 1, + STATE(484), 1, sym_compound_statement, - [195446] = 3, + [220457] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9221), 1, + ACTIONS(9485), 1, sym_identifier, - STATE(2470), 1, - sym_template_method, - [195456] = 3, + STATE(6283), 1, + sym_attribute, + [220467] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9133), 1, - anon_sym_LT, - STATE(2085), 1, - sym_template_argument_list, - [195466] = 2, + ACTIONS(9561), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [220475] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8625), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [195474] = 3, + ACTIONS(4012), 1, + anon_sym_LBRACE, + STATE(2013), 1, + sym_field_declaration_list, + [220485] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7228), 1, + ACTIONS(4012), 1, anon_sym_LBRACE, - STATE(1771), 1, - sym_compound_statement, - [195484] = 3, + STATE(1986), 1, + sym_field_declaration_list, + [220495] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8534), 1, - anon_sym_LPAREN2, - STATE(239), 1, - sym_condition_clause, - [195494] = 3, - ACTIONS(6923), 1, + ACTIONS(4012), 1, + anon_sym_LBRACE, + STATE(2014), 1, + sym_field_declaration_list, + [220505] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(9223), 1, - anon_sym_LF, - ACTIONS(9225), 1, - sym_preproc_arg, - [195504] = 3, + ACTIONS(9445), 1, + anon_sym_LT, + STATE(2704), 1, + sym_template_argument_list, + [220515] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4446), 1, + ACTIONS(4012), 1, anon_sym_LBRACE, - STATE(2899), 1, + STATE(2016), 1, sym_field_declaration_list, - [195514] = 3, + [220525] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7446), 1, + ACTIONS(4012), 1, anon_sym_LBRACE, - STATE(1939), 1, - sym_compound_statement, - [195524] = 3, + STATE(2019), 1, + sym_field_declaration_list, + [220535] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(251), 1, + ACTIONS(4012), 1, anon_sym_LBRACE, - STATE(476), 1, - sym_compound_statement, - [195534] = 3, + STATE(2020), 1, + sym_field_declaration_list, + [220545] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8512), 1, + ACTIONS(4012), 1, anon_sym_LBRACE, - STATE(4745), 1, - sym_requirement_seq, - [195544] = 3, + STATE(2021), 1, + sym_field_declaration_list, + [220555] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5504), 1, + ACTIONS(4417), 1, anon_sym_LBRACE, - STATE(3404), 1, + STATE(2913), 1, sym_field_declaration_list, - [195554] = 3, + [220565] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6859), 1, + ACTIONS(4012), 1, anon_sym_LBRACE, - STATE(2575), 1, - sym_requirement_seq, - [195564] = 3, + STATE(2023), 1, + sym_field_declaration_list, + [220575] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4446), 1, + ACTIONS(4012), 1, anon_sym_LBRACE, - STATE(2895), 1, + STATE(2024), 1, sym_field_declaration_list, - [195574] = 2, + [220585] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6078), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [195582] = 2, + ACTIONS(4012), 1, + anon_sym_LBRACE, + STATE(2025), 1, + sym_field_declaration_list, + [220595] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7606), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [195590] = 3, + ACTIONS(4012), 1, + anon_sym_LBRACE, + STATE(2026), 1, + sym_field_declaration_list, + [220605] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(600), 1, + ACTIONS(251), 1, anon_sym_LBRACE, - STATE(532), 1, + STATE(339), 1, sym_compound_statement, - [195600] = 3, + [220615] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4446), 1, - anon_sym_LBRACE, - STATE(2846), 1, - sym_field_declaration_list, - [195610] = 3, - ACTIONS(6923), 1, - sym_comment, - ACTIONS(9227), 1, - anon_sym_LF, - ACTIONS(9229), 1, - sym_preproc_arg, - [195620] = 3, + ACTIONS(9111), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [220623] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4446), 1, + ACTIONS(4012), 1, anon_sym_LBRACE, - STATE(2890), 1, + STATE(2032), 1, sym_field_declaration_list, - [195630] = 2, + [220633] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9231), 2, - anon_sym_COLON_COLON, + ACTIONS(4012), 1, anon_sym_LBRACE, - [195638] = 3, + STATE(2036), 1, + sym_field_declaration_list, + [220643] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9233), 1, - sym_identifier, - ACTIONS(9235), 1, - anon_sym_LPAREN2, - [195648] = 3, + ACTIONS(4012), 1, + anon_sym_LBRACE, + STATE(2037), 1, + sym_field_declaration_list, + [220653] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1845), 1, + ACTIONS(4012), 1, anon_sym_LBRACE, - STATE(6062), 1, - sym_compound_statement, - [195658] = 3, + STATE(2038), 1, + sym_field_declaration_list, + [220663] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8534), 1, - anon_sym_LPAREN2, - STATE(163), 1, - sym_condition_clause, - [195668] = 3, + ACTIONS(9148), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [220671] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4211), 1, + ACTIONS(4012), 1, anon_sym_LBRACE, - STATE(2440), 1, + STATE(2040), 1, sym_field_declaration_list, - [195678] = 3, + [220681] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4211), 1, + ACTIONS(4012), 1, anon_sym_LBRACE, - STATE(2452), 1, + STATE(2041), 1, sym_field_declaration_list, - [195688] = 3, + [220691] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4211), 1, + ACTIONS(9563), 2, + anon_sym_COLON_COLON, anon_sym_LBRACE, - STATE(2455), 1, - sym_field_declaration_list, - [195698] = 3, + [220699] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(4012), 1, anon_sym_LBRACE, - STATE(486), 1, - sym_compound_statement, - [195708] = 3, + STATE(2042), 1, + sym_field_declaration_list, + [220709] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4446), 1, - anon_sym_LBRACE, - STATE(2905), 1, - sym_field_declaration_list, - [195718] = 3, + ACTIONS(9157), 2, + anon_sym_COMMA, + anon_sym_GT2, + [220717] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4446), 1, + ACTIONS(4012), 1, anon_sym_LBRACE, - STATE(2847), 1, + STATE(2044), 1, sym_field_declaration_list, - [195728] = 3, + [220727] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4446), 1, + ACTIONS(4012), 1, anon_sym_LBRACE, - STATE(2854), 1, + STATE(2045), 1, sym_field_declaration_list, - [195738] = 3, + [220737] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9147), 1, - anon_sym_LT, - STATE(2547), 1, - sym_template_argument_list, - [195748] = 2, + ACTIONS(1985), 1, + anon_sym_LBRACE, + STATE(5975), 1, + sym_compound_statement, + [220747] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9237), 2, + ACTIONS(9565), 2, anon_sym_COMMA, anon_sym_GT2, - [195756] = 3, + [220755] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5500), 1, + anon_sym_LT, + STATE(3279), 1, + sym_template_argument_list, + [220765] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4446), 1, + ACTIONS(7496), 1, anon_sym_LBRACE, - STATE(2926), 1, - sym_field_declaration_list, - [195766] = 3, + STATE(2323), 1, + sym_compound_statement, + [220775] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8322), 1, - sym_identifier, - STATE(2676), 1, - sym_template_type, - [195776] = 3, + ACTIONS(9567), 2, + anon_sym_COMMA, + anon_sym_GT2, + [220783] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4446), 1, - anon_sym_LBRACE, - STATE(2931), 1, - sym_field_declaration_list, - [195786] = 3, + ACTIONS(9455), 1, + anon_sym_LT, + STATE(2168), 1, + sym_template_argument_list, + [220793] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4446), 1, + ACTIONS(4417), 1, anon_sym_LBRACE, - STATE(2903), 1, + STATE(2829), 1, sym_field_declaration_list, - [195796] = 3, + [220803] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5141), 1, - anon_sym_LBRACE, - STATE(3185), 1, - sym_field_declaration_list, - [195806] = 3, + ACTIONS(9569), 2, + anon_sym_COMMA, + anon_sym_GT2, + [220811] = 3, + ACTIONS(7181), 1, + sym_comment, + ACTIONS(9571), 1, + anon_sym_LF, + ACTIONS(9573), 1, + sym_preproc_arg, + [220821] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9239), 1, - sym_identifier, - STATE(2155), 1, - sym_template_type, - [195816] = 3, + ACTIONS(6229), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [220829] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5141), 1, + ACTIONS(4417), 1, anon_sym_LBRACE, - STATE(3192), 1, + STATE(2844), 1, sym_field_declaration_list, - [195826] = 3, + [220839] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4316), 1, + ACTIONS(4417), 1, anon_sym_LBRACE, - STATE(2755), 1, + STATE(2760), 1, sym_field_declaration_list, - [195836] = 3, + [220849] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5141), 1, - anon_sym_LBRACE, - STATE(3193), 1, - sym_field_declaration_list, - [195846] = 3, + ACTIONS(5969), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [220857] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2320), 1, + ACTIONS(4417), 1, anon_sym_LBRACE, - STATE(2537), 1, - sym_initializer_list, - [195856] = 3, + STATE(2895), 1, + sym_field_declaration_list, + [220867] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5141), 1, + ACTIONS(4417), 1, anon_sym_LBRACE, - STATE(3194), 1, + STATE(2765), 1, sym_field_declaration_list, - [195866] = 3, + [220877] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5141), 1, + ACTIONS(4417), 1, anon_sym_LBRACE, - STATE(3204), 1, + STATE(2781), 1, sym_field_declaration_list, - [195876] = 3, + [220887] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7181), 1, - anon_sym_LPAREN2, - STATE(5902), 1, - sym_parameter_list, - [195886] = 3, + ACTIONS(9575), 2, + anon_sym_COMMA, + anon_sym_GT2, + [220895] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5141), 1, + ACTIONS(4417), 1, anon_sym_LBRACE, - STATE(3206), 1, + STATE(2857), 1, sym_field_declaration_list, - [195896] = 3, + [220905] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1845), 1, + ACTIONS(7067), 1, anon_sym_LBRACE, - STATE(5566), 1, - sym_compound_statement, - [195906] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8534), 1, - anon_sym_LPAREN2, - STATE(167), 1, - sym_condition_clause, - [195916] = 3, + STATE(2733), 1, + sym_requirement_seq, + [220915] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5141), 1, + ACTIONS(4417), 1, anon_sym_LBRACE, - STATE(3207), 1, + STATE(2919), 1, sym_field_declaration_list, - [195926] = 3, + [220925] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4316), 1, + ACTIONS(4012), 1, anon_sym_LBRACE, - STATE(2623), 1, + STATE(2068), 1, sym_field_declaration_list, - [195936] = 3, + [220935] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4316), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - STATE(2759), 1, + STATE(3495), 1, sym_field_declaration_list, - [195946] = 3, + [220945] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5141), 1, + ACTIONS(4012), 1, anon_sym_LBRACE, - STATE(3132), 1, + STATE(2070), 1, sym_field_declaration_list, - [195956] = 3, + [220955] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4262), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - STATE(2361), 1, + STATE(3500), 1, sym_field_declaration_list, - [195966] = 2, + [220965] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5927), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [195974] = 3, + ACTIONS(4012), 1, + anon_sym_LBRACE, + STATE(2072), 1, + sym_field_declaration_list, + [220975] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7181), 1, - anon_sym_LPAREN2, - STATE(5859), 1, - sym_parameter_list, - [195984] = 3, + ACTIONS(4012), 1, + anon_sym_LBRACE, + STATE(2074), 1, + sym_field_declaration_list, + [220985] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5141), 1, + ACTIONS(4012), 1, anon_sym_LBRACE, - STATE(3144), 1, + STATE(2076), 1, sym_field_declaration_list, - [195994] = 3, + [220995] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9241), 1, + ACTIONS(9577), 1, sym_identifier, - STATE(2200), 1, + STATE(1948), 1, sym_template_type, - [196004] = 3, + [221005] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4446), 1, + ACTIONS(4012), 1, anon_sym_LBRACE, - STATE(2939), 1, + STATE(2078), 1, sym_field_declaration_list, - [196014] = 3, + [221015] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4446), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - STATE(2945), 1, - sym_field_declaration_list, - [196024] = 3, + STATE(994), 1, + sym_compound_statement, + [221025] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1845), 1, - anon_sym_LBRACE, - STATE(5798), 1, - sym_compound_statement, - [196034] = 3, + ACTIONS(9579), 1, + anon_sym_LT, + STATE(1873), 1, + sym_template_argument_list, + [221035] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1845), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - STATE(5745), 1, - sym_compound_statement, - [196044] = 3, + STATE(3424), 1, + sym_field_declaration_list, + [221045] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5504), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - STATE(3410), 1, + STATE(3423), 1, sym_field_declaration_list, - [196054] = 3, + [221055] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7181), 1, - anon_sym_LPAREN2, - STATE(5962), 1, - sym_parameter_list, - [196064] = 3, + ACTIONS(5494), 1, + anon_sym_LBRACE, + STATE(3504), 1, + sym_field_declaration_list, + [221065] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9117), 1, + ACTIONS(9485), 1, sym_identifier, - STATE(5657), 1, + STATE(6062), 1, sym_attribute, - [196074] = 3, + [221075] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9141), 1, + ACTIONS(9465), 1, anon_sym_LPAREN2, - STATE(6219), 1, + STATE(6727), 1, sym_condition_clause, - [196084] = 3, - ACTIONS(3), 1, + [221085] = 3, + ACTIONS(7181), 1, sym_comment, - ACTIONS(5504), 1, - anon_sym_LBRACE, - STATE(3407), 1, - sym_field_declaration_list, - [196094] = 3, + ACTIONS(9581), 1, + anon_sym_LF, + ACTIONS(9583), 1, + sym_preproc_arg, + [221095] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9243), 1, + ACTIONS(9585), 1, anon_sym_default, - ACTIONS(9245), 1, + ACTIONS(9587), 1, anon_sym_delete, - [196104] = 2, - ACTIONS(6923), 1, + [221105] = 2, + ACTIONS(7181), 1, sym_comment, - ACTIONS(9247), 2, + ACTIONS(9589), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [196112] = 3, + [221113] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9249), 1, - sym_identifier, - STATE(2106), 1, - sym_template_type, - [196122] = 3, + ACTIONS(5494), 1, + anon_sym_LBRACE, + STATE(3505), 1, + sym_field_declaration_list, + [221123] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1845), 1, + ACTIONS(1985), 1, anon_sym_LBRACE, - STATE(5658), 1, + STATE(6069), 1, sym_compound_statement, - [196132] = 3, + [221133] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4446), 1, + ACTIONS(4417), 1, anon_sym_LBRACE, - STATE(2957), 1, + STATE(2834), 1, sym_field_declaration_list, - [196142] = 2, + [221143] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8746), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [196150] = 3, + ACTIONS(5494), 1, + anon_sym_LBRACE, + STATE(3509), 1, + sym_field_declaration_list, + [221153] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1845), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - STATE(5661), 1, - sym_compound_statement, - [196160] = 2, - ACTIONS(6923), 1, - sym_comment, - ACTIONS(9251), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [196168] = 3, + STATE(3515), 1, + sym_field_declaration_list, + [221163] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 1, - anon_sym_LPAREN2, - STATE(2559), 1, - sym_argument_list, - [196178] = 3, + ACTIONS(7496), 1, + anon_sym_LBRACE, + STATE(2370), 1, + sym_compound_statement, + [221173] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4446), 1, + ACTIONS(1985), 1, anon_sym_LBRACE, - STATE(2965), 1, - sym_field_declaration_list, - [196188] = 3, + STATE(6038), 1, + sym_compound_statement, + [221183] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4262), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - STATE(2410), 1, + STATE(3516), 1, sym_field_declaration_list, - [196198] = 3, + [221193] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4262), 1, + ACTIONS(4417), 1, anon_sym_LBRACE, - STATE(2409), 1, + STATE(2719), 1, sym_field_declaration_list, - [196208] = 3, + [221203] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4262), 1, + ACTIONS(4265), 1, anon_sym_LBRACE, - STATE(2406), 1, + STATE(2751), 1, sym_field_declaration_list, - [196218] = 3, + [221213] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4446), 1, + ACTIONS(4417), 1, anon_sym_LBRACE, - STATE(2952), 1, + STATE(2776), 1, sym_field_declaration_list, - [196228] = 2, + [221223] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8753), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [196236] = 3, + ACTIONS(7097), 1, + anon_sym_LBRACE, + STATE(3347), 1, + sym_requirement_seq, + [221233] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1845), 1, + ACTIONS(251), 1, anon_sym_LBRACE, - STATE(5577), 1, + STATE(348), 1, sym_compound_statement, - [196246] = 3, + [221243] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5567), 1, + ACTIONS(8828), 1, anon_sym_LPAREN2, - STATE(6635), 1, + STATE(314), 1, + sym_condition_clause, + [221253] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5470), 1, + anon_sym_LPAREN2, + STATE(7258), 1, sym_argument_list, - [196256] = 3, + [221263] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5504), 1, + ACTIONS(4012), 1, anon_sym_LBRACE, - STATE(3405), 1, + STATE(2101), 1, sym_field_declaration_list, - [196266] = 3, + [221273] = 3, ACTIONS(3), 1, sym_comment, + ACTIONS(4012), 1, + anon_sym_LBRACE, + STATE(2105), 1, + sym_field_declaration_list, + [221283] = 2, ACTIONS(7181), 1, - anon_sym_LPAREN2, - STATE(6201), 1, - sym_parameter_list, - [196276] = 3, - ACTIONS(6923), 1, sym_comment, - ACTIONS(9253), 1, - anon_sym_LF, - ACTIONS(9255), 1, - sym_preproc_arg, - [196286] = 3, + ACTIONS(9591), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [221291] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9179), 1, - anon_sym_LPAREN2, - STATE(6639), 1, - sym_parenthesized_expression, - [196296] = 3, + ACTIONS(4012), 1, + anon_sym_LBRACE, + STATE(2108), 1, + sym_field_declaration_list, + [221301] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9257), 1, - anon_sym_default, - ACTIONS(9259), 1, - anon_sym_delete, - [196306] = 3, + ACTIONS(9465), 1, + anon_sym_LPAREN2, + STATE(6636), 1, + sym_condition_clause, + [221311] = 3, + ACTIONS(7181), 1, + sym_comment, + ACTIONS(9593), 1, + anon_sym_LF, + ACTIONS(9595), 1, + sym_preproc_arg, + [221321] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8534), 1, + ACTIONS(8828), 1, anon_sym_LPAREN2, - STATE(291), 1, + STATE(182), 1, sym_condition_clause, - [196316] = 3, + [221331] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9261), 1, + ACTIONS(9597), 1, sym_identifier, - STATE(2470), 1, - sym_template_method, - [196326] = 3, + STATE(1884), 1, + sym_template_type, + [221341] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1845), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - STATE(5555), 1, + STATE(676), 1, sym_compound_statement, - [196336] = 2, - ACTIONS(6923), 1, - sym_comment, - ACTIONS(9263), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [196344] = 3, + [221351] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4262), 1, - anon_sym_LBRACE, - STATE(2378), 1, - sym_field_declaration_list, - [196354] = 3, + ACTIONS(8828), 1, + anon_sym_LPAREN2, + STATE(225), 1, + sym_condition_clause, + [221361] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9265), 1, + ACTIONS(9599), 1, anon_sym_default, - ACTIONS(9267), 1, + ACTIONS(9601), 1, anon_sym_delete, - [196364] = 3, + [221371] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4262), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - STATE(2377), 1, + STATE(3466), 1, sym_field_declaration_list, - [196374] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9141), 1, - anon_sym_LPAREN2, - STATE(6197), 1, - sym_condition_clause, - [196384] = 3, + [221381] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4262), 1, - anon_sym_LBRACE, - STATE(2369), 1, - sym_field_declaration_list, - [196394] = 3, + ACTIONS(9485), 1, + sym_identifier, + STATE(6043), 1, + sym_attribute, + [221391] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5504), 1, + ACTIONS(1751), 1, anon_sym_LBRACE, - STATE(3403), 1, - sym_field_declaration_list, - [196404] = 3, + STATE(2750), 1, + sym_initializer_list, + [221401] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4262), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - STATE(2368), 1, + STATE(3460), 1, sym_field_declaration_list, - [196414] = 3, + [221411] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2367), 1, + ACTIONS(1711), 1, anon_sym_LBRACE, - STATE(2801), 1, + STATE(2554), 1, sym_initializer_list, - [196424] = 3, + [221421] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4262), 1, - anon_sym_LBRACE, - STATE(2366), 1, - sym_field_declaration_list, - [196434] = 3, + ACTIONS(9298), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [221429] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4262), 1, + ACTIONS(5494), 1, anon_sym_LBRACE, - STATE(2362), 1, + STATE(3456), 1, sym_field_declaration_list, - [196444] = 3, + [221439] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9269), 1, - sym_identifier, - ACTIONS(9271), 1, + ACTIONS(8828), 1, anon_sym_LPAREN2, - [196454] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4262), 1, - anon_sym_LBRACE, - STATE(2360), 1, - sym_field_declaration_list, - [196464] = 3, + STATE(296), 1, + sym_condition_clause, + [221449] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4262), 1, - anon_sym_LBRACE, - STATE(2359), 1, - sym_field_declaration_list, - [196474] = 3, + ACTIONS(9603), 1, + sym_identifier, + STATE(2182), 1, + sym_template_type, + [221459] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1845), 1, - anon_sym_LBRACE, - STATE(5653), 1, - sym_compound_statement, - [196484] = 3, + ACTIONS(6047), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [221467] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9273), 1, - sym_identifier, - STATE(2183), 1, - sym_template_type, - [196494] = 3, + ACTIONS(9605), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [221475] = 3, ACTIONS(3), 1, sym_comment, + ACTIONS(5958), 1, + anon_sym_RBRACK, + ACTIONS(9607), 1, + anon_sym_COMMA, + [221485] = 3, ACTIONS(7181), 1, - anon_sym_LPAREN2, - STATE(6213), 1, - sym_parameter_list, - [196504] = 3, + sym_comment, + ACTIONS(9609), 1, + anon_sym_LF, + ACTIONS(9611), 1, + sym_preproc_arg, + [221495] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5567), 1, - anon_sym_LPAREN2, - STATE(6604), 1, - sym_argument_list, - [196514] = 3, + ACTIONS(3610), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [221503] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9179), 1, + ACTIONS(4419), 1, anon_sym_LPAREN2, - STATE(6650), 1, - sym_parenthesized_expression, - [196524] = 3, + STATE(3069), 1, + sym_argument_list, + [221513] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4446), 1, + ACTIONS(4265), 1, anon_sym_LBRACE, - STATE(2933), 1, + STATE(2804), 1, sym_field_declaration_list, - [196534] = 3, + [221523] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9275), 1, - anon_sym_default, - ACTIONS(9277), 1, - anon_sym_delete, - [196544] = 3, + ACTIONS(4265), 1, + anon_sym_LBRACE, + STATE(2778), 1, + sym_field_declaration_list, + [221533] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9279), 1, - sym_identifier, - STATE(3059), 1, - sym_template_type, - [196554] = 3, + ACTIONS(4265), 1, + anon_sym_LBRACE, + STATE(2736), 1, + sym_field_declaration_list, + [221543] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4330), 1, + ACTIONS(5470), 1, anon_sym_LPAREN2, - STATE(2800), 1, + STATE(7068), 1, sym_argument_list, - [196564] = 2, + [221553] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3468), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [196572] = 3, + ACTIONS(8828), 1, + anon_sym_LPAREN2, + STATE(187), 1, + sym_condition_clause, + [221563] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9133), 1, - anon_sym_LT, - STATE(2769), 1, - sym_template_argument_list, - [196582] = 3, - ACTIONS(3), 1, + ACTIONS(4055), 1, + anon_sym_LPAREN2, + STATE(2519), 1, + sym_argument_list, + [221573] = 2, + ACTIONS(7181), 1, sym_comment, - ACTIONS(5504), 1, - anon_sym_LBRACE, - STATE(3401), 1, - sym_field_declaration_list, - [196592] = 3, + ACTIONS(9613), 2, + anon_sym_LF, + sym_preproc_arg, + [221581] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1845), 1, - anon_sym_LBRACE, - STATE(5799), 1, - sym_compound_statement, - [196602] = 3, + ACTIONS(9615), 2, + anon_sym_DOT_DOT_DOT, + sym_identifier, + [221589] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4262), 1, - anon_sym_LBRACE, - STATE(2517), 1, - sym_field_declaration_list, - [196612] = 2, - ACTIONS(6923), 1, - sym_comment, - ACTIONS(9281), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [196620] = 3, + ACTIONS(8616), 1, + sym_identifier, + STATE(3256), 1, + sym_template_type, + [221599] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9179), 1, + ACTIONS(9617), 1, + sym_identifier, + ACTIONS(9619), 1, anon_sym_LPAREN2, - STATE(6680), 1, - sym_parenthesized_expression, - [196630] = 3, + [221609] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9141), 1, + ACTIONS(9449), 1, anon_sym_LPAREN2, - STATE(5821), 1, - sym_condition_clause, - [196640] = 3, - ACTIONS(3), 1, + STATE(7270), 1, + sym_parenthesized_expression, + [221619] = 3, + ACTIONS(7181), 1, sym_comment, - ACTIONS(9117), 1, - sym_identifier, - STATE(5794), 1, - sym_attribute, - [196650] = 3, + ACTIONS(9621), 1, + anon_sym_LF, + ACTIONS(9623), 1, + sym_preproc_arg, + [221629] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4262), 1, + ACTIONS(4265), 1, anon_sym_LBRACE, - STATE(2347), 1, + STATE(2739), 1, sym_field_declaration_list, - [196660] = 3, + [221639] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4262), 1, + ACTIONS(4265), 1, anon_sym_LBRACE, - STATE(2328), 1, + STATE(2839), 1, sym_field_declaration_list, - [196670] = 3, + [221649] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7181), 1, + ACTIONS(7413), 1, anon_sym_LPAREN2, - STATE(6134), 1, + STATE(6700), 1, sym_parameter_list, - [196680] = 3, + [221659] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4262), 1, + ACTIONS(1469), 1, anon_sym_LBRACE, - STATE(2374), 1, - sym_field_declaration_list, - [196690] = 3, + STATE(3426), 1, + sym_initializer_list, + [221669] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(536), 1, + ACTIONS(7045), 1, anon_sym_LBRACE, - STATE(487), 1, - sym_compound_statement, - [196700] = 3, + STATE(2572), 1, + sym_requirement_seq, + [221679] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5504), 1, + ACTIONS(251), 1, anon_sym_LBRACE, - STATE(3399), 1, - sym_field_declaration_list, - [196710] = 3, + STATE(507), 1, + sym_compound_statement, + [221689] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5504), 1, + ACTIONS(4265), 1, anon_sym_LBRACE, - STATE(3396), 1, + STATE(2861), 1, sym_field_declaration_list, - [196720] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8534), 1, - anon_sym_LPAREN2, - STATE(297), 1, - sym_condition_clause, - [196730] = 3, + [221699] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(536), 1, + ACTIONS(4265), 1, anon_sym_LBRACE, - STATE(786), 1, - sym_compound_statement, - [196740] = 3, + STATE(2800), 1, + sym_field_declaration_list, + [221709] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5504), 1, + ACTIONS(4265), 1, anon_sym_LBRACE, - STATE(3395), 1, + STATE(2884), 1, sym_field_declaration_list, - [196750] = 3, + [221719] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1845), 1, + ACTIONS(4265), 1, anon_sym_LBRACE, - STATE(5692), 1, - sym_compound_statement, - [196760] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6034), 1, - anon_sym_RBRACK, - ACTIONS(9283), 1, - anon_sym_COMMA, - [196770] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8534), 1, - anon_sym_LPAREN2, - STATE(242), 1, - sym_condition_clause, - [196780] = 3, + STATE(2887), 1, + sym_field_declaration_list, + [221729] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1845), 1, + ACTIONS(1985), 1, anon_sym_LBRACE, - STATE(5762), 1, + STATE(6079), 1, sym_compound_statement, - [196790] = 2, - ACTIONS(6923), 1, - sym_comment, - ACTIONS(9285), 2, - anon_sym_LF, - sym_preproc_arg, - [196798] = 3, + [221739] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4262), 1, + ACTIONS(4265), 1, anon_sym_LBRACE, - STATE(2384), 1, + STATE(2890), 1, sym_field_declaration_list, - [196808] = 3, + [221749] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4262), 1, + ACTIONS(4265), 1, anon_sym_LBRACE, - STATE(2358), 1, + STATE(2891), 1, sym_field_declaration_list, - [196818] = 3, + [221759] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4262), 1, - anon_sym_LBRACE, - STATE(2357), 1, - sym_field_declaration_list, - [196828] = 3, + ACTIONS(9579), 1, + anon_sym_LT, + STATE(2472), 1, + sym_template_argument_list, + [221769] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4262), 1, + ACTIONS(4265), 1, anon_sym_LBRACE, - STATE(2356), 1, + STATE(2892), 1, sym_field_declaration_list, - [196838] = 3, + [221779] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4262), 1, + ACTIONS(9625), 2, + anon_sym_LPAREN2, anon_sym_LBRACE, - STATE(2344), 1, - sym_field_declaration_list, - [196848] = 3, + [221787] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4262), 1, + ACTIONS(9625), 2, + anon_sym_LPAREN2, anon_sym_LBRACE, - STATE(2465), 1, - sym_field_declaration_list, - [196858] = 3, + [221795] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4262), 1, + ACTIONS(9625), 2, + anon_sym_LPAREN2, anon_sym_LBRACE, - STATE(2505), 1, - sym_field_declaration_list, - [196868] = 3, + [221803] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4262), 1, + ACTIONS(4265), 1, anon_sym_LBRACE, - STATE(2392), 1, + STATE(2899), 1, sym_field_declaration_list, - [196878] = 3, + [221813] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4262), 1, + ACTIONS(4265), 1, anon_sym_LBRACE, - STATE(2390), 1, + STATE(2900), 1, sym_field_declaration_list, - [196888] = 3, - ACTIONS(3), 1, + [221823] = 3, + ACTIONS(7181), 1, sym_comment, - ACTIONS(4262), 1, - anon_sym_LBRACE, - STATE(2389), 1, - sym_field_declaration_list, - [196898] = 3, + ACTIONS(9627), 1, + anon_sym_LF, + ACTIONS(9629), 1, + sym_preproc_arg, + [221833] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4262), 1, - anon_sym_LBRACE, - STATE(2519), 1, - sym_field_declaration_list, - [196908] = 3, + ACTIONS(9453), 1, + anon_sym_LT, + STATE(3038), 1, + sym_template_argument_list, + [221843] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5141), 1, - anon_sym_LBRACE, - STATE(3182), 1, - sym_field_declaration_list, - [196918] = 3, + ACTIONS(9631), 1, + anon_sym_LT, + STATE(1937), 1, + sym_template_argument_list, + [221853] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(1985), 1, anon_sym_LBRACE, - STATE(611), 1, + STATE(1942), 1, sym_compound_statement, - [196928] = 3, + [221863] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6805), 1, + ACTIONS(4265), 1, anon_sym_LBRACE, - STATE(2808), 1, - sym_requirement_seq, - [196938] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9117), 1, - sym_identifier, - STATE(6278), 1, - sym_attribute, - [196948] = 3, + STATE(2772), 1, + sym_field_declaration_list, + [221873] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4262), 1, + ACTIONS(4265), 1, anon_sym_LBRACE, - STATE(2512), 1, + STATE(2763), 1, sym_field_declaration_list, - [196958] = 3, + [221883] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4262), 1, + ACTIONS(4265), 1, anon_sym_LBRACE, - STATE(2510), 1, + STATE(2761), 1, sym_field_declaration_list, - [196968] = 3, + [221893] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8534), 1, - anon_sym_LPAREN2, - STATE(174), 1, - sym_condition_clause, - [196978] = 3, + ACTIONS(4265), 1, + anon_sym_LBRACE, + STATE(2758), 1, + sym_field_declaration_list, + [221903] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5141), 1, + ACTIONS(4265), 1, anon_sym_LBRACE, - STATE(3175), 1, + STATE(2749), 1, sym_field_declaration_list, - [196988] = 3, + [221913] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(536), 1, + ACTIONS(4265), 1, anon_sym_LBRACE, - STATE(1039), 1, - sym_compound_statement, - [196998] = 3, + STATE(2748), 1, + sym_field_declaration_list, + [221923] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5504), 1, + ACTIONS(4265), 1, anon_sym_LBRACE, - STATE(3385), 1, + STATE(2746), 1, sym_field_declaration_list, - [197008] = 3, + [221933] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5504), 1, + ACTIONS(4265), 1, anon_sym_LBRACE, - STATE(3383), 1, + STATE(2744), 1, sym_field_declaration_list, - [197018] = 2, + [221943] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9287), 2, + ACTIONS(5922), 2, anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [197026] = 3, + anon_sym_SEMI, + [221951] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9139), 1, - anon_sym_LT, - STATE(1715), 1, - sym_template_argument_list, - [197036] = 3, + ACTIONS(7838), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [221959] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9117), 1, - sym_identifier, - STATE(5703), 1, - sym_attribute, - [197046] = 3, + ACTIONS(4265), 1, + anon_sym_LBRACE, + STATE(2741), 1, + sym_field_declaration_list, + [221969] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9141), 1, - anon_sym_LPAREN2, - STATE(6041), 1, - sym_condition_clause, - [197056] = 3, + ACTIONS(1985), 1, + anon_sym_LBRACE, + STATE(6040), 1, + sym_compound_statement, + [221979] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9289), 1, - anon_sym_default, - ACTIONS(9291), 1, - anon_sym_delete, - [197066] = 3, + ACTIONS(4265), 1, + anon_sym_LBRACE, + STATE(2868), 1, + sym_field_declaration_list, + [221989] = 2, + ACTIONS(7181), 1, + sym_comment, + ACTIONS(9633), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [221997] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7181), 1, + ACTIONS(8828), 1, anon_sym_LPAREN2, - STATE(5930), 1, - sym_parameter_list, - [197076] = 3, + STATE(202), 1, + sym_condition_clause, + [222007] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(536), 1, + ACTIONS(251), 1, anon_sym_LBRACE, - STATE(912), 1, + STATE(528), 1, sym_compound_statement, - [197086] = 2, - ACTIONS(6923), 1, - sym_comment, - ACTIONS(9293), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [197094] = 3, + [222017] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9137), 1, + ACTIONS(9579), 1, anon_sym_LT, - STATE(1863), 1, + STATE(2187), 1, sym_template_argument_list, - [197104] = 3, + [222027] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9635), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + [222035] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, anon_sym_LBRACE, - STATE(1001), 1, + STATE(478), 1, sym_compound_statement, - [197114] = 3, + [222045] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9295), 1, + ACTIONS(5494), 1, + anon_sym_LBRACE, + STATE(3535), 1, + sym_field_declaration_list, + [222055] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4265), 1, + anon_sym_LBRACE, + STATE(2855), 1, + sym_field_declaration_list, + [222065] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4265), 1, + anon_sym_LBRACE, + STATE(2843), 1, + sym_field_declaration_list, + [222075] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9637), 1, sym_identifier, - STATE(2770), 1, + STATE(3060), 1, sym_template_method, - [197124] = 3, + [222085] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5141), 1, + ACTIONS(9465), 1, + anon_sym_LPAREN2, + STATE(6647), 1, + sym_condition_clause, + [222095] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4265), 1, anon_sym_LBRACE, - STATE(3167), 1, + STATE(2838), 1, sym_field_declaration_list, - [197134] = 3, + [222105] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9179), 1, + ACTIONS(5470), 1, anon_sym_LPAREN2, - STATE(6863), 1, - sym_parenthesized_expression, - [197144] = 3, + STATE(7187), 1, + sym_argument_list, + [222115] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1845), 1, + ACTIONS(1985), 1, anon_sym_LBRACE, - STATE(5708), 1, + STATE(6385), 1, sym_compound_statement, - [197154] = 3, + [222125] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5504), 1, + ACTIONS(4265), 1, anon_sym_LBRACE, - STATE(3381), 1, + STATE(2833), 1, sym_field_declaration_list, - [197164] = 3, + [222135] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6702), 1, - anon_sym_LT, - STATE(2201), 1, - sym_template_argument_list, - [197174] = 3, - ACTIONS(6923), 1, - sym_comment, - ACTIONS(9297), 1, - anon_sym_LF, - ACTIONS(9299), 1, - sym_preproc_arg, - [197184] = 3, - ACTIONS(6923), 1, - sym_comment, - ACTIONS(9301), 1, - anon_sym_LF, - ACTIONS(9303), 1, - sym_preproc_arg, - [197194] = 3, + ACTIONS(4265), 1, + anon_sym_LBRACE, + STATE(2826), 1, + sym_field_declaration_list, + [222145] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5989), 1, - anon_sym_SEMI, - ACTIONS(6044), 1, - anon_sym_RPAREN, - [197204] = 3, - ACTIONS(6923), 1, - sym_comment, - ACTIONS(9305), 1, - anon_sym_LF, - ACTIONS(9307), 1, - sym_preproc_arg, - [197214] = 2, + ACTIONS(9485), 1, + sym_identifier, + STATE(6061), 1, + sym_attribute, + [222155] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9309), 1, + ACTIONS(9639), 1, anon_sym_RPAREN, - [197221] = 2, + [222162] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6291), 1, - anon_sym_RPAREN, - [197228] = 2, + ACTIONS(9641), 1, + anon_sym_SEMI, + [222169] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9311), 1, - anon_sym_while, - [197235] = 2, + ACTIONS(6063), 1, + anon_sym_SEMI, + [222176] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9313), 1, + ACTIONS(6141), 1, anon_sym_SEMI, - [197242] = 2, + [222183] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9315), 1, - anon_sym_SEMI, - [197249] = 2, + ACTIONS(8082), 1, + anon_sym_RPAREN, + [222190] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9317), 1, - anon_sym_SEMI, - [197256] = 2, + ACTIONS(9643), 1, + sym_identifier, + [222197] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6329), 1, + ACTIONS(6172), 1, anon_sym_SEMI, - [197263] = 2, + [222204] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9319), 1, - anon_sym_RPAREN, - [197270] = 2, + ACTIONS(9645), 1, + anon_sym_SEMI, + [222211] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6331), 1, + ACTIONS(8802), 1, anon_sym_SEMI, - [197277] = 2, + [222218] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9321), 1, - anon_sym_RPAREN, - [197284] = 2, + ACTIONS(3628), 1, + anon_sym_DOT_DOT_DOT, + [222225] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9323), 1, - aux_sym_preproc_if_token2, - [197291] = 2, + ACTIONS(9647), 1, + sym_identifier, + [222232] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9325), 1, - aux_sym_preproc_if_token2, - [197298] = 2, + ACTIONS(9649), 1, + sym_identifier, + [222239] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9327), 1, - anon_sym_RPAREN, - [197305] = 2, - ACTIONS(6923), 1, + ACTIONS(9651), 1, + sym_identifier, + [222246] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(9329), 1, - anon_sym_LF, - [197312] = 2, + ACTIONS(9653), 1, + sym_identifier, + [222253] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6309), 1, - anon_sym_SEMI, - [197319] = 2, + ACTIONS(9655), 1, + anon_sym_LBRACE, + [222260] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7848), 1, - anon_sym_RPAREN, - [197326] = 2, + ACTIONS(9657), 1, + aux_sym_preproc_if_token2, + [222267] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6429), 1, - anon_sym_RBRACK, - [197333] = 2, + ACTIONS(9659), 1, + anon_sym_LBRACE, + [222274] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9331), 1, - sym_auto, - [197340] = 2, + ACTIONS(9661), 1, + aux_sym_preproc_if_token2, + [222281] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9333), 1, - anon_sym_SEMI, - [197347] = 2, + ACTIONS(9663), 1, + anon_sym_LPAREN2, + [222288] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9335), 1, + ACTIONS(9665), 1, anon_sym_SEMI, - [197354] = 2, + [222295] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6192), 1, - anon_sym_RPAREN, - [197361] = 2, + ACTIONS(9667), 1, + sym_identifier, + [222302] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6190), 1, - anon_sym_RPAREN, - [197368] = 2, + ACTIONS(9669), 1, + anon_sym_SEMI, + [222309] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9337), 1, - anon_sym_RPAREN, - [197375] = 2, - ACTIONS(6923), 1, - sym_comment, - ACTIONS(9339), 1, - anon_sym_LF, - [197382] = 2, + ACTIONS(9671), 1, + sym_identifier, + [222316] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8450), 1, + ACTIONS(9673), 1, anon_sym_SEMI, - [197389] = 2, + [222323] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9341), 1, - anon_sym_RPAREN, - [197396] = 2, + ACTIONS(9675), 1, + anon_sym_STAR, + [222330] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6184), 1, - anon_sym_RPAREN, - [197403] = 2, + ACTIONS(9677), 1, + sym_identifier, + [222337] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9343), 1, + ACTIONS(9679), 1, sym_identifier, - [197410] = 2, + [222344] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9345), 1, + ACTIONS(9681), 1, + anon_sym_STAR, + [222351] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9683), 1, sym_identifier, - [197417] = 2, + [222358] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9347), 1, + ACTIONS(6041), 1, anon_sym_RPAREN, - [197424] = 2, + [222365] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9349), 1, - anon_sym_SEMI, - [197431] = 2, + ACTIONS(6043), 1, + anon_sym_RPAREN, + [222372] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9351), 1, + ACTIONS(9685), 1, anon_sym_RPAREN, - [197438] = 2, + [222379] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9353), 1, - sym_identifier, - [197445] = 2, + ACTIONS(6051), 1, + anon_sym_SEMI, + [222386] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6178), 1, + ACTIONS(8090), 1, anon_sym_RPAREN, - [197452] = 2, + [222393] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6066), 1, - anon_sym_RBRACE, - [197459] = 2, + ACTIONS(9687), 1, + aux_sym_preproc_if_token2, + [222400] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6044), 1, - anon_sym_RPAREN, - [197466] = 2, + ACTIONS(9689), 1, + aux_sym_preproc_if_token2, + [222407] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9355), 1, - anon_sym_STAR, - [197473] = 2, + ACTIONS(6133), 1, + anon_sym_SEMI, + [222414] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9357), 1, + ACTIONS(9691), 1, aux_sym_preproc_if_token2, - [197480] = 2, + [222421] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9359), 1, - anon_sym_COLON, - [197487] = 2, + ACTIONS(9693), 1, + aux_sym_preproc_if_token2, + [222428] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9361), 1, - anon_sym_RPAREN, - [197494] = 2, + ACTIONS(9695), 1, + anon_sym_LPAREN2, + [222435] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9363), 1, - anon_sym_LPAREN2, - [197501] = 2, + ACTIONS(6137), 1, + anon_sym_SEMI, + [222442] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8785), 1, - anon_sym_RBRACE, - [197508] = 2, + ACTIONS(9697), 1, + anon_sym_SEMI, + [222449] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9365), 1, - anon_sym_RPAREN, - [197515] = 2, + ACTIONS(9699), 1, + anon_sym_SEMI, + [222456] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9367), 1, + ACTIONS(6145), 1, anon_sym_RPAREN, - [197522] = 2, + [222463] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9369), 1, + ACTIONS(8056), 1, anon_sym_RPAREN, - [197529] = 2, + [222470] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9371), 1, - aux_sym_preproc_if_token2, - [197536] = 2, + ACTIONS(9701), 1, + anon_sym_EQ, + [222477] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9373), 1, - sym_identifier, - [197543] = 2, - ACTIONS(6923), 1, - sym_comment, - ACTIONS(9375), 1, - anon_sym_LF, - [197550] = 2, + ACTIONS(6113), 1, + anon_sym_SEMI, + [222484] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6160), 1, - anon_sym_RPAREN, - [197557] = 2, + ACTIONS(9703), 1, + anon_sym_SEMI, + [222491] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9377), 1, + ACTIONS(9705), 1, anon_sym_SEMI, - [197564] = 2, + [222498] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9379), 1, + ACTIONS(9707), 1, sym_identifier, - [197571] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9381), 1, - anon_sym_GT, - [197578] = 2, + [222505] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9383), 1, - aux_sym_preproc_if_token2, - [197585] = 2, + ACTIONS(6213), 1, + anon_sym_SEMI, + [222512] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6236), 1, + ACTIONS(6195), 1, anon_sym_SEMI, - [197592] = 2, + [222519] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8237), 1, - anon_sym_SEMI, - [197599] = 2, + ACTIONS(9239), 1, + anon_sym_RPAREN, + [222526] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6232), 1, - anon_sym_SEMI, - [197606] = 2, + ACTIONS(8547), 1, + anon_sym_EQ, + [222533] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9385), 1, - anon_sym_SEMI, - [197613] = 2, + ACTIONS(9709), 1, + anon_sym_STAR, + [222540] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6146), 1, + ACTIONS(6069), 1, anon_sym_RPAREN, - [197620] = 2, + [222547] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5162), 1, - sym_identifier, - [197627] = 2, + ACTIONS(9711), 1, + anon_sym_RPAREN, + [222554] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9381), 1, - anon_sym_COMMA, - [197634] = 2, + ACTIONS(6161), 1, + anon_sym_RPAREN, + [222561] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6230), 1, + ACTIONS(9713), 1, anon_sym_SEMI, - [197641] = 2, + [222568] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9381), 1, - anon_sym_DASH, - [197648] = 2, + ACTIONS(6178), 1, + anon_sym_SEMI, + [222575] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7854), 1, - anon_sym_RPAREN, - [197655] = 2, + ACTIONS(8950), 1, + anon_sym_SEMI, + [222582] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6208), 1, - anon_sym_RPAREN, - [197662] = 2, + ACTIONS(6180), 1, + anon_sym_SEMI, + [222589] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9381), 1, - anon_sym_PLUS, - [197669] = 2, + ACTIONS(9715), 1, + aux_sym_preproc_if_token2, + [222596] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9387), 1, - anon_sym_SQUOTE, - [197676] = 2, + ACTIONS(4664), 1, + anon_sym_LBRACE, + [222603] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9381), 1, - anon_sym_STAR, - [197683] = 2, + ACTIONS(9717), 1, + anon_sym_LPAREN2, + [222610] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9389), 1, + ACTIONS(9719), 1, anon_sym_SEMI, - [197690] = 2, + [222617] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6226), 1, + ACTIONS(6189), 1, anon_sym_SEMI, - [197697] = 2, + [222624] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9391), 1, - anon_sym_SLASH, - [197704] = 2, + ACTIONS(6071), 1, + anon_sym_RPAREN, + [222631] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9381), 1, - anon_sym_PERCENT, - [197711] = 2, + ACTIONS(8078), 1, + anon_sym_RPAREN, + [222638] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9393), 1, + ACTIONS(9721), 1, anon_sym_RPAREN, - [197718] = 2, + [222645] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5989), 1, + ACTIONS(9723), 1, anon_sym_SEMI, - [197725] = 2, + [222652] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6254), 1, - anon_sym_SEMI, - [197732] = 2, + ACTIONS(9725), 1, + sym_identifier, + [222659] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9395), 1, - anon_sym_SEMI, - [197739] = 2, + ACTIONS(9727), 1, + aux_sym_preproc_if_token2, + [222666] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8500), 1, - anon_sym_SEMI, - [197746] = 2, + ACTIONS(6242), 1, + anon_sym_RPAREN, + [222673] = 2, + ACTIONS(4077), 1, + anon_sym_LF, + ACTIONS(7181), 1, + sym_comment, + [222680] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9381), 1, - anon_sym_PIPE_PIPE, - [197753] = 2, + ACTIONS(9729), 1, + sym_identifier, + [222687] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9397), 1, + ACTIONS(9731), 1, + aux_sym_preproc_if_token2, + [222694] = 2, + ACTIONS(4087), 1, + anon_sym_LF, + ACTIONS(7181), 1, + sym_comment, + [222701] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9733), 1, sym_identifier, - [197760] = 2, + [222708] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9381), 1, - anon_sym_AMP_AMP, - [197767] = 2, + ACTIONS(4437), 1, + anon_sym_LBRACE, + [222715] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9735), 1, + anon_sym_LPAREN2, + [222722] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9399), 1, + ACTIONS(9737), 1, sym_identifier, - [197774] = 2, + [222729] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9401), 1, + ACTIONS(9739), 1, anon_sym_SEMI, - [197781] = 2, + [222736] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9381), 1, - anon_sym_PIPE, - [197788] = 2, + ACTIONS(9741), 1, + sym_identifier, + [222743] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9743), 1, + anon_sym_SEMI, + [222750] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9403), 1, + ACTIONS(9745), 1, sym_identifier, - [197795] = 2, + [222757] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9405), 1, - anon_sym_LPAREN2, - [197802] = 2, + ACTIONS(9747), 1, + anon_sym_STAR, + [222764] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9407), 1, - anon_sym_SEMI, - [197809] = 2, + ACTIONS(9749), 1, + sym_identifier, + [222771] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9409), 1, + ACTIONS(9751), 1, sym_identifier, - [197816] = 2, + [222778] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9411), 1, + ACTIONS(9753), 1, sym_identifier, - [197823] = 2, + [222785] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9381), 1, - anon_sym_CARET, - [197830] = 2, + ACTIONS(9755), 1, + anon_sym_RPAREN, + [222792] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9757), 1, + anon_sym_SEMI, + [222799] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9413), 1, + ACTIONS(9759), 1, anon_sym_STAR, - [197837] = 2, + [222806] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9381), 1, - anon_sym_AMP, - [197844] = 2, + ACTIONS(9761), 1, + sym_auto, + [222813] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9415), 1, - sym_identifier, - [197851] = 2, - ACTIONS(6923), 1, + ACTIONS(9763), 1, + anon_sym_STAR, + [222820] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(9417), 1, - anon_sym_LF, - [197858] = 2, + ACTIONS(9765), 1, + anon_sym_SEMI, + [222827] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9419), 1, - anon_sym_STAR, - [197865] = 2, + ACTIONS(9767), 1, + anon_sym_RPAREN, + [222834] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9381), 1, - anon_sym_EQ_EQ, - [197872] = 2, + ACTIONS(9363), 1, + anon_sym_RBRACE, + [222841] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9381), 1, - anon_sym_BANG_EQ, - [197879] = 2, + ACTIONS(9769), 1, + anon_sym_RPAREN, + [222848] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9421), 1, - anon_sym_SQUOTE, - [197886] = 2, + ACTIONS(9771), 1, + anon_sym_RPAREN, + [222855] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9423), 1, + ACTIONS(9773), 1, anon_sym_RPAREN, - [197893] = 2, + [222862] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9425), 1, - anon_sym_LPAREN2, - [197900] = 2, + ACTIONS(9775), 1, + anon_sym_SEMI, + [222869] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9427), 1, - sym_identifier, - [197907] = 2, + ACTIONS(9777), 1, + sym_auto, + [222876] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9429), 1, - aux_sym_preproc_if_token2, - [197914] = 2, + ACTIONS(9779), 1, + anon_sym_LPAREN2, + [222883] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9431), 1, - anon_sym_SEMI, - [197921] = 2, + ACTIONS(9781), 1, + anon_sym_DASH, + [222890] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9433), 1, + ACTIONS(9783), 1, anon_sym_RPAREN, - [197928] = 2, + [222897] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9435), 1, - anon_sym_RPAREN, - [197935] = 2, + ACTIONS(9325), 1, + anon_sym_RBRACE, + [222904] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9437), 1, - anon_sym_RPAREN, - [197942] = 2, + ACTIONS(9785), 1, + anon_sym_SQUOTE, + [222911] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9439), 1, + ACTIONS(9787), 1, anon_sym_RPAREN, - [197949] = 2, + [222918] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4845), 1, + ACTIONS(9789), 1, anon_sym_RPAREN, - [197956] = 2, + [222925] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9441), 1, - anon_sym_RPAREN, - [197963] = 2, + ACTIONS(9791), 1, + anon_sym_SQUOTE, + [222932] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9443), 1, - sym_identifier, - [197970] = 2, + ACTIONS(9793), 1, + anon_sym_SEMI, + [222939] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9445), 1, - aux_sym_preproc_if_token2, - [197977] = 2, + ACTIONS(9795), 1, + anon_sym_SEMI, + [222946] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9381), 1, - anon_sym_DASH_GT_STAR, - [197984] = 2, + ACTIONS(9797), 1, + sym_identifier, + [222953] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9447), 1, + ACTIONS(9799), 1, anon_sym_SEMI, - [197991] = 2, - ACTIONS(6923), 1, + [222960] = 2, + ACTIONS(7181), 1, sym_comment, - ACTIONS(9449), 1, + ACTIONS(9801), 1, anon_sym_LF, - [197998] = 2, + [222967] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9381), 1, - anon_sym_GT_EQ, - [198005] = 2, + ACTIONS(9803), 1, + sym_auto, + [222974] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9451), 1, + ACTIONS(3820), 1, anon_sym_SEMI, - [198012] = 2, + [222981] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9453), 1, + ACTIONS(9805), 1, + anon_sym_SEMI, + [222988] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8704), 1, anon_sym_SEMI, - [198019] = 2, + [222995] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9807), 1, + anon_sym_RPAREN, + [223002] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6144), 1, - anon_sym_RPAREN, - [198026] = 2, + ACTIONS(9038), 1, + anon_sym_RBRACE, + [223009] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6188), 1, + ACTIONS(6207), 1, anon_sym_SEMI, - [198033] = 2, - ACTIONS(6923), 1, + [223016] = 2, + ACTIONS(7181), 1, sym_comment, - ACTIONS(8761), 1, + ACTIONS(9809), 1, anon_sym_LF, - [198040] = 2, + [223023] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6182), 1, + ACTIONS(6205), 1, anon_sym_SEMI, - [198047] = 2, + [223030] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9381), 1, - anon_sym_LT_EQ, - [198054] = 2, + ACTIONS(8555), 1, + anon_sym_SEMI, + [223037] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9455), 1, - anon_sym_RPAREN, - [198061] = 2, + ACTIONS(5832), 1, + anon_sym_SEMI, + [223044] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5892), 1, - anon_sym_SEMI, - [198068] = 2, + ACTIONS(9811), 1, + anon_sym_RPAREN, + [223051] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9381), 1, - anon_sym_LT, - [198075] = 2, + ACTIONS(9813), 1, + anon_sym_RPAREN, + [223058] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6168), 1, + ACTIONS(6199), 1, anon_sym_SEMI, - [198082] = 2, + [223065] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9381), 1, - anon_sym_LT_LT, - [198089] = 2, + ACTIONS(9815), 1, + anon_sym_RPAREN, + [223072] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7852), 1, + ACTIONS(8062), 1, anon_sym_RPAREN, - [198096] = 2, + [223079] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9381), 1, - anon_sym_GT_GT, - [198103] = 2, + ACTIONS(9781), 1, + anon_sym_DASH_GT_STAR, + [223086] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9457), 1, + ACTIONS(9817), 1, sym_identifier, - [198110] = 2, + [223093] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7544), 1, - sym_identifier, - [198117] = 2, + ACTIONS(9819), 1, + anon_sym_RPAREN, + [223100] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9459), 1, + ACTIONS(9821), 1, sym_identifier, - [198124] = 2, + [223107] = 2, + ACTIONS(7181), 1, + sym_comment, + ACTIONS(9823), 1, + anon_sym_LF, + [223114] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9461), 1, - anon_sym_LPAREN2, - [198131] = 2, + ACTIONS(5932), 1, + anon_sym_SEMI, + [223121] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6186), 1, + ACTIONS(9825), 1, anon_sym_RPAREN, - [198138] = 2, + [223128] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9381), 1, - anon_sym_EQ, - [198145] = 2, + ACTIONS(9781), 1, + anon_sym_DOT_STAR, + [223135] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9463), 1, - anon_sym_SEMI, - [198152] = 2, + ACTIONS(9781), 1, + anon_sym_PIPE_EQ, + [223142] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9465), 1, - anon_sym_SEMI, - [198159] = 2, + ACTIONS(9781), 1, + anon_sym_CARET_EQ, + [223149] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9381), 1, - anon_sym_STAR_EQ, - [198166] = 2, + ACTIONS(9781), 1, + anon_sym_AMP_EQ, + [223156] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6180), 1, + ACTIONS(6027), 1, anon_sym_RPAREN, - [198173] = 2, + [223163] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9467), 1, - anon_sym_COLON, - [198180] = 2, + ACTIONS(9781), 1, + anon_sym_GT_GT_EQ, + [223170] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9469), 1, + ACTIONS(9827), 1, anon_sym_SEMI, - [198187] = 2, + [223177] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6206), 1, + ACTIONS(6029), 1, anon_sym_RPAREN, - [198194] = 2, + [223184] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9381), 1, - anon_sym_SLASH_EQ, - [198201] = 2, + ACTIONS(9829), 1, + anon_sym_LPAREN2, + [223191] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9471), 1, - anon_sym_LPAREN2, - [198208] = 2, + ACTIONS(9781), 1, + anon_sym_LT_LT_EQ, + [223198] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9473), 1, - sym_identifier, - [198215] = 2, + ACTIONS(9781), 1, + anon_sym_DASH_EQ, + [223205] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6142), 1, + ACTIONS(9831), 1, anon_sym_RPAREN, - [198222] = 2, + [223212] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9381), 1, - anon_sym_PERCENT_EQ, - [198229] = 2, + ACTIONS(9781), 1, + anon_sym_PLUS_EQ, + [223219] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9381), 1, - anon_sym_PLUS_EQ, - [198236] = 2, + ACTIONS(6031), 1, + anon_sym_RPAREN, + [223226] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9475), 1, - sym_identifier, - [198243] = 2, + ACTIONS(9781), 1, + anon_sym_PERCENT_EQ, + [223233] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9477), 1, - aux_sym_preproc_if_token2, - [198250] = 2, + ACTIONS(6033), 1, + anon_sym_RPAREN, + [223240] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6385), 1, - anon_sym_RBRACK, - [198257] = 2, + ACTIONS(9781), 1, + anon_sym_SLASH_EQ, + [223247] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9381), 1, - anon_sym_DASH_EQ, - [198264] = 2, + ACTIONS(9781), 1, + anon_sym_STAR_EQ, + [223254] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9479), 1, + ACTIONS(9833), 1, sym_identifier, - [198271] = 2, + [223261] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9381), 1, - anon_sym_LT_LT_EQ, - [198278] = 2, + ACTIONS(6065), 1, + anon_sym_RPAREN, + [223268] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9381), 1, - anon_sym_GT_GT_EQ, - [198285] = 2, + ACTIONS(9781), 1, + anon_sym_EQ, + [223275] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9381), 1, - anon_sym_AMP_EQ, - [198292] = 2, + ACTIONS(9781), 1, + anon_sym_GT_GT, + [223282] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9481), 1, - aux_sym_preproc_if_token2, - [198299] = 2, + ACTIONS(9781), 1, + anon_sym_LT_LT, + [223289] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9381), 1, - anon_sym_CARET_EQ, - [198306] = 2, + ACTIONS(9781), 1, + anon_sym_LT, + [223296] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9381), 1, - anon_sym_PIPE_EQ, - [198313] = 2, + ACTIONS(6083), 1, + anon_sym_RPAREN, + [223303] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6132), 1, - anon_sym_SEMI, - [198320] = 2, + ACTIONS(9781), 1, + anon_sym_LT_EQ, + [223310] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9381), 1, - anon_sym_DOT_STAR, - [198327] = 2, + ACTIONS(9781), 1, + anon_sym_GT_EQ, + [223317] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6128), 1, + ACTIONS(6159), 1, anon_sym_SEMI, - [198334] = 2, + [223324] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9483), 1, - anon_sym_RPAREN, - [198341] = 2, + ACTIONS(9781), 1, + anon_sym_GT, + [223331] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6134), 1, + ACTIONS(6157), 1, anon_sym_SEMI, - [198348] = 2, + [223338] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9485), 1, - anon_sym_SEMI, - [198355] = 2, + ACTIONS(9781), 1, + anon_sym_BANG_EQ, + [223345] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9487), 1, - anon_sym_SEMI, - [198362] = 2, + ACTIONS(9781), 1, + anon_sym_EQ_EQ, + [223352] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6102), 1, - anon_sym_SEMI, - [198369] = 2, + ACTIONS(9781), 1, + anon_sym_AMP, + [223359] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9489), 1, + ACTIONS(9781), 1, + anon_sym_CARET, + [223366] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6147), 1, anon_sym_SEMI, - [198376] = 2, + [223373] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7818), 1, + ACTIONS(9835), 1, + anon_sym_COLON, + [223380] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8054), 1, anon_sym_RPAREN, - [198383] = 2, + [223387] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8278), 1, - anon_sym_SEMI, - [198390] = 2, + ACTIONS(9781), 1, + anon_sym_PIPE, + [223394] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9491), 1, + ACTIONS(9837), 1, sym_identifier, - [198397] = 2, + [223401] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9493), 1, - anon_sym_STAR, - [198404] = 2, + ACTIONS(9839), 1, + anon_sym_SEMI, + [223408] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6156), 1, - anon_sym_RPAREN, - [198411] = 2, + ACTIONS(9841), 1, + anon_sym_SEMI, + [223415] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6152), 1, + ACTIONS(9843), 1, anon_sym_RPAREN, - [198418] = 2, + [223422] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9495), 1, - anon_sym_SEMI, - [198425] = 2, + ACTIONS(9781), 1, + anon_sym_AMP_AMP, + [223429] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9497), 1, - anon_sym_EQ, - [198432] = 2, - ACTIONS(6923), 1, + ACTIONS(9781), 1, + anon_sym_PIPE_PIPE, + [223436] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(9499), 1, - anon_sym_LF, - [198439] = 2, + ACTIONS(9781), 1, + anon_sym_PERCENT, + [223443] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9501), 1, - anon_sym_RPAREN, - [198446] = 2, + ACTIONS(9845), 1, + anon_sym_SEMI, + [223450] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6122), 1, - anon_sym_RPAREN, - [198453] = 2, + ACTIONS(9847), 1, + anon_sym_SLASH, + [223457] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6130), 1, - anon_sym_RPAREN, - [198460] = 2, + ACTIONS(9849), 1, + anon_sym_SEMI, + [223464] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9503), 1, - anon_sym_RPAREN, - [198467] = 2, + ACTIONS(9851), 1, + anon_sym_SEMI, + [223471] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9505), 1, + ACTIONS(9853), 1, anon_sym_LPAREN2, - [198474] = 2, + [223478] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6124), 1, - anon_sym_SEMI, - [198481] = 2, + ACTIONS(9781), 1, + anon_sym_STAR, + [223485] = 2, + ACTIONS(7181), 1, + sym_comment, + ACTIONS(9855), 1, + anon_sym_LF, + [223492] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9781), 1, + anon_sym_PLUS, + [223499] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6108), 1, + ACTIONS(9857), 1, anon_sym_RPAREN, - [198488] = 2, + [223506] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9507), 1, - anon_sym_STAR, - [198495] = 2, + ACTIONS(6511), 1, + anon_sym_RBRACK, + [223513] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9509), 1, - anon_sym_COLON, - [198502] = 2, + ACTIONS(9781), 1, + anon_sym_COMMA, + [223520] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9511), 1, - anon_sym_SEMI, - [198509] = 2, + ACTIONS(9859), 1, + sym_auto, + [223527] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9513), 1, + ACTIONS(3787), 1, anon_sym_SEMI, - [198516] = 2, + [223534] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9515), 1, - anon_sym_RPAREN, - [198523] = 2, + ACTIONS(9861), 1, + aux_sym_preproc_if_token2, + [223541] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9517), 1, - anon_sym_SEMI, - [198530] = 2, + ACTIONS(9863), 1, + aux_sym_preproc_if_token2, + [223548] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9519), 1, - anon_sym_RPAREN, - [198537] = 2, + ACTIONS(9865), 1, + anon_sym_SEMI, + [223555] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9521), 1, + ACTIONS(8088), 1, anon_sym_RPAREN, - [198544] = 2, + [223562] = 2, + ACTIONS(7181), 1, + sym_comment, + ACTIONS(8866), 1, + anon_sym_LF, + [223569] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9523), 1, - anon_sym_RPAREN, - [198551] = 2, + ACTIONS(8788), 1, + anon_sym_SEMI, + [223576] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7842), 1, + ACTIONS(9867), 1, anon_sym_RPAREN, - [198558] = 2, - ACTIONS(3), 1, + [223583] = 2, + ACTIONS(7181), 1, sym_comment, - ACTIONS(9525), 1, - aux_sym_preproc_if_token2, - [198565] = 2, + ACTIONS(9869), 1, + anon_sym_LF, + [223590] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9527), 1, - sym_identifier, - [198572] = 2, + ACTIONS(9871), 1, + anon_sym_LPAREN2, + [223597] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9529), 1, + ACTIONS(9873), 1, anon_sym_RPAREN, - [198579] = 2, - ACTIONS(3), 1, + [223604] = 2, + ACTIONS(7181), 1, sym_comment, - ACTIONS(9531), 1, - anon_sym_LPAREN2, - [198586] = 2, + ACTIONS(9875), 1, + anon_sym_LF, + [223611] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9533), 1, - sym_identifier, - [198593] = 2, + ACTIONS(9877), 1, + anon_sym_RPAREN, + [223618] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9535), 1, - anon_sym_SEMI, - [198600] = 2, + ACTIONS(5983), 1, + anon_sym_RBRACE, + [223625] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6120), 1, + ACTIONS(5227), 1, anon_sym_RPAREN, - [198607] = 2, + [223632] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9537), 1, + ACTIONS(9879), 1, anon_sym_RPAREN, - [198614] = 2, + [223639] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9539), 1, - sym_auto, - [198621] = 2, + ACTIONS(8880), 1, + anon_sym_RBRACE, + [223646] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9541), 1, - sym_identifier, - [198628] = 2, + ACTIONS(9881), 1, + anon_sym_LPAREN2, + [223653] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9543), 1, - anon_sym_COLON, - [198635] = 2, + ACTIONS(9883), 1, + anon_sym_RPAREN, + [223660] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9545), 1, - anon_sym_SEMI, - [198642] = 2, + ACTIONS(9885), 1, + anon_sym_RPAREN, + [223667] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9547), 1, - anon_sym_SEMI, - [198649] = 2, - ACTIONS(3), 1, + ACTIONS(9887), 1, + anon_sym_RPAREN, + [223674] = 2, + ACTIONS(7181), 1, sym_comment, - ACTIONS(9549), 1, - anon_sym_SEMI, - [198656] = 2, + ACTIONS(9889), 1, + anon_sym_LF, + [223681] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4813), 1, - anon_sym_RPAREN, - [198663] = 2, + ACTIONS(9891), 1, + sym_identifier, + [223688] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6256), 1, + ACTIONS(8539), 1, anon_sym_SEMI, - [198670] = 2, + [223695] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9551), 1, - anon_sym_LPAREN2, - [198677] = 2, - ACTIONS(6923), 1, - sym_comment, - ACTIONS(8845), 1, - anon_sym_LF, - [198684] = 2, + ACTIONS(5312), 1, + sym_identifier, + [223702] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9553), 1, + ACTIONS(9893), 1, anon_sym_LPAREN2, - [198691] = 2, - ACTIONS(6923), 1, + [223709] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(9555), 1, - anon_sym_LF, - [198698] = 2, + ACTIONS(9895), 1, + anon_sym_SQUOTE, + [223716] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9557), 1, - anon_sym_EQ, - [198705] = 2, + ACTIONS(9897), 1, + anon_sym_LPAREN2, + [223723] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6258), 1, - anon_sym_RPAREN, - [198712] = 2, + ACTIONS(9899), 1, + anon_sym_SEMI, + [223730] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9559), 1, + ACTIONS(6149), 1, anon_sym_SEMI, - [198719] = 2, + [223737] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6260), 1, + ACTIONS(6155), 1, anon_sym_SEMI, - [198726] = 2, + [223744] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6293), 1, + ACTIONS(9901), 1, anon_sym_SEMI, - [198733] = 2, + [223751] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9903), 1, + anon_sym_SQUOTE, + [223758] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9905), 1, + sym_auto, + [223765] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9561), 1, + ACTIONS(9907), 1, anon_sym_LPAREN2, - [198740] = 2, + [223772] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4840), 1, - anon_sym_RPAREN, - [198747] = 2, + ACTIONS(9909), 1, + sym_identifier, + [223779] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9563), 1, + ACTIONS(9911), 1, anon_sym_RPAREN, - [198754] = 2, + [223786] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9565), 1, + ACTIONS(9913), 1, anon_sym_RPAREN, - [198761] = 2, + [223793] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9567), 1, + ACTIONS(9915), 1, anon_sym_RPAREN, - [198768] = 2, + [223800] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9569), 1, + ACTIONS(9917), 1, anon_sym_RPAREN, - [198775] = 2, - ACTIONS(6923), 1, + [223807] = 2, + ACTIONS(7181), 1, sym_comment, - ACTIONS(9571), 1, + ACTIONS(9919), 1, anon_sym_LF, - [198782] = 2, + [223814] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9573), 1, + ACTIONS(9921), 1, anon_sym_RPAREN, - [198789] = 2, + [223821] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9575), 1, - anon_sym_RPAREN, - [198796] = 2, + ACTIONS(9923), 1, + anon_sym_SEMI, + [223828] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9577), 1, - anon_sym_RPAREN, - [198803] = 2, + ACTIONS(9925), 1, + anon_sym_SEMI, + [223835] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9579), 1, - anon_sym_SEMI, - [198810] = 2, + ACTIONS(5130), 1, + sym_identifier, + [223842] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9581), 1, - anon_sym_SQUOTE, - [198817] = 2, + ACTIONS(6170), 1, + anon_sym_SEMI, + [223849] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9583), 1, + ACTIONS(8525), 1, anon_sym_SEMI, - [198824] = 2, + [223856] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9585), 1, + ACTIONS(9927), 1, anon_sym_while, - [198831] = 2, - ACTIONS(6923), 1, - sym_comment, - ACTIONS(9587), 1, - anon_sym_LF, - [198838] = 2, + [223863] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9589), 1, + ACTIONS(9929), 1, anon_sym_LPAREN2, - [198845] = 2, + [223870] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9591), 1, - sym_identifier, - [198852] = 2, + ACTIONS(9931), 1, + anon_sym_LPAREN2, + [223877] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9593), 1, + ACTIONS(9933), 1, anon_sym_SEMI, - [198859] = 2, + [223884] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9595), 1, - sym_identifier, - [198866] = 2, + ACTIONS(9935), 1, + anon_sym_SEMI, + [223891] = 2, + ACTIONS(7181), 1, + sym_comment, + ACTIONS(9937), 1, + anon_sym_LF, + [223898] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9597), 1, - anon_sym_LPAREN2, - [198873] = 2, + ACTIONS(9939), 1, + aux_sym_preproc_if_token2, + [223905] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9599), 1, + ACTIONS(9941), 1, anon_sym_EQ, - [198880] = 2, + [223912] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8326), 1, - anon_sym_SEMI, - [198887] = 2, + ACTIONS(9943), 1, + anon_sym_RPAREN, + [223919] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9601), 1, - anon_sym_SEMI, - [198894] = 2, + ACTIONS(6223), 1, + anon_sym_RPAREN, + [223926] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9603), 1, + ACTIONS(9945), 1, anon_sym_SEMI, - [198901] = 2, + [223933] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6321), 1, - anon_sym_SEMI, - [198908] = 2, + ACTIONS(9947), 1, + anon_sym_RPAREN, + [223940] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6244), 1, + anon_sym_RPAREN, + [223947] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9949), 1, + anon_sym_RPAREN, + [223954] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9605), 1, + ACTIONS(9951), 1, anon_sym_LBRACE, - [198915] = 2, + [223961] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9607), 1, + ACTIONS(8684), 1, anon_sym_SEMI, - [198922] = 2, + [223968] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3453), 1, - anon_sym_DOT_DOT_DOT, - [198929] = 2, + ACTIONS(9953), 1, + anon_sym_SEMI, + [223975] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6221), 1, + anon_sym_RPAREN, + [223982] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5038), 1, + ACTIONS(9955), 1, sym_identifier, - [198936] = 2, + [223989] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9609), 1, - anon_sym_DOT_DOT_DOT, - [198943] = 2, + ACTIONS(6211), 1, + anon_sym_RPAREN, + [223996] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8245), 1, + ACTIONS(6097), 1, anon_sym_SEMI, - [198950] = 2, + [224003] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9612), 1, - sym_identifier, - [198957] = 2, + ACTIONS(9957), 1, + anon_sym_RPAREN, + [224010] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8241), 1, - anon_sym_SEMI, - [198964] = 2, + ACTIONS(8938), 1, + anon_sym_RBRACE, + [224017] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6224), 1, - anon_sym_SEMI, - [198971] = 2, + ACTIONS(9959), 1, + anon_sym_COLON, + [224024] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9614), 1, + ACTIONS(6079), 1, anon_sym_RPAREN, - [198978] = 2, - ACTIONS(6923), 1, + [224031] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(9616), 1, - anon_sym_LF, - [198985] = 2, + ACTIONS(6225), 1, + anon_sym_RPAREN, + [224038] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9618), 1, + ACTIONS(9961), 1, anon_sym_SEMI, - [198992] = 2, + [224045] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9620), 1, + ACTIONS(9963), 1, anon_sym_SEMI, - [198999] = 2, + [224052] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9622), 1, + ACTIONS(9965), 1, anon_sym_RPAREN, - [199006] = 2, + [224059] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9624), 1, - aux_sym_preproc_if_token2, - [199013] = 2, + ACTIONS(9967), 1, + anon_sym_SEMI, + [224066] = 2, + ACTIONS(7181), 1, + sym_comment, + ACTIONS(9969), 1, + anon_sym_LF, + [224073] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9626), 1, + ACTIONS(5930), 1, anon_sym_RPAREN, - [199020] = 2, + [224080] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9628), 1, - sym_identifier, - [199027] = 2, + ACTIONS(9971), 1, + sym_auto, + [224087] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9630), 1, + ACTIONS(9973), 1, anon_sym_RPAREN, - [199034] = 2, - ACTIONS(6923), 1, + [224094] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(9632), 1, - anon_sym_LF, - [199041] = 2, + ACTIONS(9975), 1, + anon_sym_EQ, + [224101] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9634), 1, + ACTIONS(9977), 1, anon_sym_SEMI, - [199048] = 2, + [224108] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6104), 1, - anon_sym_RPAREN, - [199055] = 2, + ACTIONS(9979), 1, + anon_sym_SEMI, + [224115] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8877), 1, + ACTIONS(5938), 1, anon_sym_RBRACE, - [199062] = 2, + [224122] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9636), 1, - anon_sym_EQ, - [199069] = 2, + ACTIONS(9981), 1, + anon_sym_RPAREN, + [224129] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6212), 1, + ACTIONS(8608), 1, anon_sym_SEMI, - [199076] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6074), 1, - anon_sym_RBRACE, - [199083] = 2, + [224136] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6106), 1, - anon_sym_SEMI, - [199090] = 2, + ACTIONS(9983), 1, + anon_sym_RPAREN, + [224143] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9638), 1, - aux_sym_preproc_if_token2, - [199097] = 2, + ACTIONS(9985), 1, + anon_sym_RPAREN, + [224150] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9640), 1, + ACTIONS(9987), 1, anon_sym_RPAREN, - [199104] = 2, + [224157] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8887), 1, + ACTIONS(5948), 1, anon_sym_RBRACE, - [199111] = 2, + [224164] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9642), 1, + ACTIONS(8596), 1, + anon_sym_SEMI, + [224171] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9989), 1, anon_sym_RPAREN, - [199118] = 2, + [224178] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9644), 1, - anon_sym_SEMI, - [199125] = 2, + ACTIONS(9991), 1, + sym_identifier, + [224185] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9646), 1, - anon_sym_SEMI, - [199132] = 2, + ACTIONS(9002), 1, + anon_sym_RBRACE, + [224192] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8428), 1, + ACTIONS(9993), 1, anon_sym_SEMI, - [199139] = 2, + [224199] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9648), 1, - anon_sym_DOT_DOT_DOT, - [199146] = 2, + ACTIONS(9995), 1, + sym_identifier, + [224206] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9651), 1, - anon_sym_SQUOTE, - [199153] = 2, + ACTIONS(5834), 1, + anon_sym_RBRACE, + [224213] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9653), 1, - anon_sym_LBRACE, - [199160] = 2, - ACTIONS(6923), 1, + ACTIONS(6184), 1, + anon_sym_SEMI, + [224220] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9997), 1, + anon_sym_COLON, + [224227] = 2, + ACTIONS(7181), 1, sym_comment, - ACTIONS(8645), 1, + ACTIONS(9999), 1, anon_sym_LF, - [199167] = 2, + [224234] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9655), 1, - aux_sym_preproc_if_token2, - [199174] = 2, + ACTIONS(5987), 1, + anon_sym_RPAREN, + [224241] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9657), 1, + ACTIONS(10001), 1, anon_sym_SEMI, - [199181] = 2, + [224248] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9659), 1, - anon_sym_SEMI, - [199188] = 2, + ACTIONS(10003), 1, + sym_auto, + [224255] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9661), 1, - anon_sym_SEMI, - [199195] = 2, + ACTIONS(6400), 1, + anon_sym_RBRACK, + [224262] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9663), 1, + ACTIONS(8513), 1, anon_sym_SEMI, - [199202] = 2, + [224269] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5369), 1, + ACTIONS(5132), 1, sym_identifier, - [199209] = 2, + [224276] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4295), 1, - anon_sym_COLON_COLON, - [199216] = 2, - ACTIONS(3), 1, + ACTIONS(10005), 1, + sym_identifier, + [224283] = 2, + ACTIONS(7181), 1, sym_comment, - ACTIONS(9665), 1, - anon_sym_SEMI, - [199223] = 2, + ACTIONS(10007), 1, + anon_sym_LF, + [224290] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9667), 1, + ACTIONS(10009), 1, anon_sym_SQUOTE, - [199230] = 2, + [224297] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9669), 1, - sym_auto, - [199237] = 2, + ACTIONS(10011), 1, + anon_sym_RPAREN, + [224304] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6489), 1, - anon_sym_RBRACK, - [199244] = 2, - ACTIONS(6923), 1, + ACTIONS(10013), 1, + anon_sym_SEMI, + [224311] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(9671), 1, - anon_sym_LF, - [199251] = 2, + ACTIONS(6099), 1, + anon_sym_SEMI, + [224318] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9673), 1, + ACTIONS(10015), 1, aux_sym_preproc_if_token2, - [199258] = 2, + [224325] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9675), 1, + ACTIONS(10017), 1, aux_sym_preproc_if_token2, - [199265] = 2, + [224332] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9677), 1, - anon_sym_SEMI, - [199272] = 2, + ACTIONS(10019), 1, + sym_identifier, + [224339] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9679), 1, - anon_sym_SEMI, - [199279] = 2, + ACTIONS(10021), 1, + anon_sym_RPAREN, + [224346] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9681), 1, - anon_sym_SEMI, - [199286] = 2, + ACTIONS(10023), 1, + anon_sym_RPAREN, + [224353] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7810), 1, + ACTIONS(10025), 1, anon_sym_RPAREN, - [199293] = 2, + [224360] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6220), 1, - anon_sym_SEMI, - [199300] = 2, + ACTIONS(10027), 1, + anon_sym_RPAREN, + [224367] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8270), 1, + ACTIONS(10029), 1, anon_sym_SEMI, - [199307] = 2, - ACTIONS(3), 1, + [224374] = 2, + ACTIONS(7181), 1, sym_comment, - ACTIONS(9683), 1, - anon_sym_STAR, - [199314] = 2, + ACTIONS(10031), 1, + anon_sym_LF, + [224381] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6098), 1, - anon_sym_RPAREN, - [199321] = 2, + ACTIONS(6095), 1, + anon_sym_SEMI, + [224388] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6094), 1, - anon_sym_SEMI, - [199328] = 2, + ACTIONS(10033), 1, + aux_sym_preproc_if_token2, + [224395] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9685), 1, + ACTIONS(10035), 1, anon_sym_SEMI, - [199335] = 2, + [224402] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8394), 1, - anon_sym_SEMI, - [199342] = 2, + ACTIONS(10037), 1, + anon_sym_DOT_DOT_DOT, + [224409] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9687), 1, - anon_sym_RPAREN, - [199349] = 2, + ACTIONS(10040), 1, + sym_identifier, + [224416] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6214), 1, + ACTIONS(10042), 1, anon_sym_SEMI, - [199356] = 2, + [224423] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9689), 1, - sym_identifier, - [199363] = 2, + ACTIONS(10044), 1, + anon_sym_SEMI, + [224430] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9691), 1, - aux_sym_preproc_if_token2, - [199370] = 2, + ACTIONS(9050), 1, + anon_sym_RBRACE, + [224437] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9693), 1, - anon_sym_DOT_DOT_DOT, - [199377] = 2, - ACTIONS(6923), 1, + ACTIONS(10046), 1, + anon_sym_COLON, + [224444] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(9696), 1, - anon_sym_LF, - [199384] = 2, + ACTIONS(6085), 1, + anon_sym_RPAREN, + [224451] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8392), 1, + ACTIONS(10048), 1, anon_sym_SEMI, - [199391] = 2, + [224458] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8280), 1, - anon_sym_EQ, - [199398] = 2, + ACTIONS(10050), 1, + anon_sym_RPAREN, + [224465] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9698), 1, - anon_sym_STAR, - [199405] = 2, + ACTIONS(10052), 1, + sym_identifier, + [224472] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9700), 1, - anon_sym_SEMI, - [199412] = 2, + ACTIONS(10054), 1, + anon_sym_RPAREN, + [224479] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9702), 1, - anon_sym_SEMI, - [199419] = 2, + ACTIONS(10056), 1, + anon_sym_RPAREN, + [224486] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9704), 1, - aux_sym_preproc_if_token2, - [199426] = 2, + ACTIONS(6077), 1, + anon_sym_RPAREN, + [224493] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9706), 1, - anon_sym_DOT_DOT_DOT, - [199433] = 2, + ACTIONS(10058), 1, + anon_sym_SEMI, + [224500] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9709), 1, - aux_sym_preproc_if_token2, - [199440] = 2, + ACTIONS(8660), 1, + anon_sym_SEMI, + [224507] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9711), 1, - anon_sym_LBRACE, - [199447] = 2, + ACTIONS(10060), 1, + sym_identifier, + [224514] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9713), 1, - sym_auto, - [199454] = 2, + ACTIONS(10062), 1, + anon_sym_RPAREN, + [224521] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9715), 1, - anon_sym_SEMI, - [199461] = 2, + ACTIONS(6075), 1, + anon_sym_RPAREN, + [224528] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3631), 1, + ACTIONS(10064), 1, anon_sym_SEMI, - [199468] = 2, + [224535] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9717), 1, - anon_sym_SEMI, - [199475] = 2, + ACTIONS(10066), 1, + anon_sym_STAR, + [224542] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9719), 1, - anon_sym_SEMI, - [199482] = 2, + ACTIONS(10068), 1, + anon_sym_RPAREN, + [224549] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9721), 1, + ACTIONS(10070), 1, anon_sym_SEMI, - [199489] = 2, + [224556] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9723), 1, + ACTIONS(6073), 1, anon_sym_RPAREN, - [199496] = 2, + [224563] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6176), 1, + ACTIONS(6067), 1, anon_sym_RPAREN, - [199503] = 2, + [224570] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9725), 1, - anon_sym_LPAREN2, - [199510] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9727), 1, - anon_sym_DOT_DOT_DOT, - [199517] = 2, + ACTIONS(6061), 1, + anon_sym_RPAREN, + [224577] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6174), 1, + ACTIONS(6045), 1, anon_sym_RPAREN, - [199524] = 2, + [224584] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9729), 1, - aux_sym_preproc_if_token2, - [199531] = 2, + ACTIONS(10072), 1, + anon_sym_DOT_DOT_DOT, + [224591] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8524), 1, - anon_sym_SEMI, - [199538] = 2, + ACTIONS(10074), 1, + anon_sym_DOT_DOT_DOT, + [224598] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9731), 1, - aux_sym_preproc_if_token2, - [199545] = 2, + ACTIONS(10077), 1, + anon_sym_DOT_DOT_DOT, + [224605] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9733), 1, - aux_sym_preproc_if_token2, - [199552] = 2, + ACTIONS(10080), 1, + anon_sym_DOT_DOT_DOT, + [224612] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9735), 1, - aux_sym_preproc_if_token2, - [199559] = 2, + ACTIONS(10083), 1, + anon_sym_DOT_DOT_DOT, + [224619] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9737), 1, - aux_sym_preproc_if_token2, - [199566] = 2, + ACTIONS(10086), 1, + anon_sym_DOT_DOT_DOT, + [224626] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9739), 1, - anon_sym_SEMI, - [199573] = 2, + ACTIONS(10089), 1, + anon_sym_DOT_DOT_DOT, + [224633] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9741), 1, - anon_sym_SEMI, - [199580] = 2, + ACTIONS(10092), 1, + anon_sym_DOT_DOT_DOT, + [224640] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9743), 1, - anon_sym_STAR, - [199587] = 2, + ACTIONS(10095), 1, + anon_sym_DOT_DOT_DOT, + [224647] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9745), 1, - anon_sym_SEMI, - [199594] = 2, + ACTIONS(6197), 1, + anon_sym_RPAREN, + [224654] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9747), 1, - anon_sym_RPAREN, - [199601] = 2, + ACTIONS(10098), 1, + anon_sym_DOT_DOT_DOT, + [224661] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9749), 1, - anon_sym_SEMI, - [199608] = 2, + ACTIONS(10101), 1, + anon_sym_DOT_DOT_DOT, + [224668] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9751), 1, - anon_sym_SEMI, - [199615] = 2, + ACTIONS(10104), 1, + aux_sym_preproc_if_token2, + [224675] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9753), 1, - sym_identifier, - [199622] = 2, + ACTIONS(10106), 1, + aux_sym_preproc_if_token2, + [224682] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9755), 1, + ACTIONS(10108), 1, anon_sym_SEMI, - [199629] = 2, + [224689] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9757), 1, - anon_sym_LPAREN2, - [199636] = 2, + ACTIONS(10110), 1, + anon_sym_SEMI, + [224696] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8627), 1, - anon_sym_RPAREN, - [199643] = 2, + ACTIONS(8790), 1, + anon_sym_SEMI, + [224703] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7870), 1, + ACTIONS(10112), 1, anon_sym_RPAREN, - [199650] = 2, + [224710] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6319), 1, + ACTIONS(10114), 1, anon_sym_RPAREN, - [199657] = 2, + [224717] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9759), 1, - anon_sym_RPAREN, - [199664] = 2, + ACTIONS(10116), 1, + anon_sym_DOT_DOT_DOT, + [224724] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6323), 1, - anon_sym_RPAREN, - [199671] = 2, + ACTIONS(10119), 1, + anon_sym_SEMI, + [224731] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6154), 1, - anon_sym_RPAREN, - [199678] = 2, + ACTIONS(10121), 1, + anon_sym_DOT_DOT_DOT, + [224738] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9761), 1, - anon_sym_RPAREN, - [199685] = 2, + ACTIONS(10124), 1, + anon_sym_SEMI, + [224745] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6150), 1, + ACTIONS(10126), 1, anon_sym_RPAREN, - [199692] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9763), 1, - sym_identifier, - [199699] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9765), 1, - ts_builtin_sym_end, - [199706] = 2, + [224752] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9767), 1, + ACTIONS(10128), 1, anon_sym_SEMI, - [199713] = 2, + [224759] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9769), 1, - anon_sym_RPAREN, - [199720] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6148), 1, - anon_sym_RPAREN, - [199727] = 2, + ACTIONS(10130), 1, + aux_sym_preproc_if_token2, + [224766] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9771), 1, + ACTIONS(10132), 1, anon_sym_SEMI, - [199734] = 2, + [224773] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8551), 1, - anon_sym_SEMI, - [199741] = 2, + ACTIONS(10134), 1, + aux_sym_preproc_if_token2, + [224780] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9773), 1, + ACTIONS(10136), 1, aux_sym_preproc_if_token2, - [199748] = 2, + [224787] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9775), 1, + ACTIONS(10138), 1, sym_identifier, - [199755] = 2, + [224794] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9777), 1, - aux_sym_preproc_if_token2, - [199762] = 2, + ACTIONS(10140), 1, + anon_sym_LPAREN2, + [224801] = 2, + ACTIONS(7181), 1, + sym_comment, + ACTIONS(10142), 1, + anon_sym_LF, + [224808] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9779), 1, + ACTIONS(10144), 1, anon_sym_LPAREN2, - [199769] = 2, + [224815] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9781), 1, - aux_sym_preproc_if_token2, - [199776] = 2, - ACTIONS(3), 1, + ACTIONS(10146), 1, + sym_auto, + [224822] = 2, + ACTIONS(7181), 1, sym_comment, - ACTIONS(9783), 1, - anon_sym_LPAREN2, - [199783] = 2, + ACTIONS(10148), 1, + anon_sym_LF, + [224829] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9785), 1, + ACTIONS(10150), 1, anon_sym_LPAREN2, - [199790] = 2, + [224836] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9787), 1, + ACTIONS(3701), 1, anon_sym_SEMI, - [199797] = 2, + [224843] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9789), 1, - anon_sym_LPAREN2, - [199804] = 2, + ACTIONS(10152), 1, + anon_sym_SEMI, + [224850] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9791), 1, + ACTIONS(8710), 1, anon_sym_SEMI, - [199811] = 2, + [224857] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6140), 1, + ACTIONS(10154), 1, anon_sym_RPAREN, - [199818] = 2, + [224864] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6313), 1, + ACTIONS(10156), 1, anon_sym_RPAREN, - [199825] = 2, + [224871] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9793), 1, + ACTIONS(10158), 1, anon_sym_RPAREN, - [199832] = 2, + [224878] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9795), 1, - anon_sym_RPAREN, - [199839] = 2, + ACTIONS(5977), 1, + anon_sym_RBRACE, + [224885] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9797), 1, - anon_sym_SEMI, - [199846] = 2, + ACTIONS(6135), 1, + anon_sym_RPAREN, + [224892] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9799), 1, - sym_identifier, - [199853] = 2, + ACTIONS(10160), 1, + anon_sym_while, + [224899] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8549), 1, - anon_sym_RBRACE, - [199860] = 2, + ACTIONS(6143), 1, + anon_sym_RPAREN, + [224906] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9801), 1, - anon_sym_while, - [199867] = 2, + ACTIONS(10162), 1, + anon_sym_LPAREN2, + [224913] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9803), 1, + ACTIONS(10164), 1, aux_sym_preproc_if_token2, - [199874] = 2, + [224920] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9805), 1, - anon_sym_LPAREN2, - [199881] = 2, + ACTIONS(9249), 1, + anon_sym_RBRACE, + [224927] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6317), 1, - anon_sym_RPAREN, - [199888] = 2, + ACTIONS(10166), 1, + aux_sym_preproc_if_token2, + [224934] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9807), 1, + ACTIONS(10168), 1, anon_sym_LPAREN2, - [199895] = 2, - ACTIONS(4215), 1, - anon_sym_LF, - ACTIONS(6923), 1, - sym_comment, - [199902] = 2, - ACTIONS(4231), 1, - anon_sym_LF, - ACTIONS(6923), 1, - sym_comment, - [199909] = 2, + [224941] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9809), 1, + ACTIONS(10170), 1, anon_sym_EQ, - [199916] = 2, + [224948] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4084), 1, - anon_sym_LBRACE, - [199923] = 2, + ACTIONS(10172), 1, + anon_sym_SEMI, + [224955] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4088), 1, - anon_sym_LBRACE, - [199930] = 2, + ACTIONS(10174), 1, + anon_sym_SEMI, + [224962] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9811), 1, - anon_sym_RPAREN, - [199937] = 2, + ACTIONS(10176), 1, + anon_sym_SEMI, + [224969] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6305), 1, + ACTIONS(6053), 1, anon_sym_SEMI, - [199944] = 2, + [224976] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9813), 1, + ACTIONS(10178), 1, anon_sym_RPAREN, - [199951] = 2, + [224983] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9815), 1, - anon_sym_RPAREN, - [199958] = 2, + ACTIONS(10180), 1, + aux_sym_preproc_if_token2, + [224990] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8239), 1, + ACTIONS(8527), 1, anon_sym_EQ, - [199965] = 2, + [224997] = 2, + ACTIONS(7181), 1, + sym_comment, + ACTIONS(10182), 1, + anon_sym_LF, + [225004] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9817), 1, - anon_sym_RPAREN, - [199972] = 2, + ACTIONS(10184), 1, + anon_sym_SEMI, + [225011] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9819), 1, - anon_sym_COLON, - [199979] = 2, + ACTIONS(10186), 1, + anon_sym_RPAREN, + [225018] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9821), 1, - anon_sym_DOT_DOT_DOT, - [199986] = 2, + ACTIONS(6219), 1, + anon_sym_RPAREN, + [225025] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9824), 1, + ACTIONS(10188), 1, anon_sym_SEMI, - [199993] = 2, + [225032] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9826), 1, + ACTIONS(8517), 1, anon_sym_SEMI, - [200000] = 2, + [225039] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9828), 1, - anon_sym_RPAREN, - [200007] = 2, + ACTIONS(10190), 1, + anon_sym_EQ, + [225046] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9830), 1, - sym_identifier, - [200014] = 2, + ACTIONS(8545), 1, + anon_sym_SEMI, + [225053] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6100), 1, - anon_sym_SEMI, - [200021] = 2, + ACTIONS(10192), 1, + aux_sym_preproc_if_token2, + [225060] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8400), 1, + ACTIONS(10194), 1, anon_sym_SEMI, - [200028] = 2, - ACTIONS(6923), 1, - sym_comment, - ACTIONS(8929), 1, - anon_sym_LF, - [200035] = 2, + [225067] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9832), 1, - anon_sym_LPAREN2, - [200042] = 2, + ACTIONS(4831), 1, + sym_identifier, + [225074] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9834), 1, - anon_sym_STAR, - [200049] = 2, + ACTIONS(6240), 1, + anon_sym_RPAREN, + [225081] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9836), 1, - anon_sym_DOT_DOT_DOT, - [200056] = 2, - ACTIONS(6923), 1, + ACTIONS(10196), 1, + anon_sym_RPAREN, + [225088] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(9839), 1, - anon_sym_LF, - [200063] = 2, + ACTIONS(10198), 1, + anon_sym_SQUOTE, + [225095] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9841), 1, - anon_sym_RPAREN, - [200070] = 2, + ACTIONS(7800), 1, + sym_identifier, + [225102] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9843), 1, - anon_sym_RPAREN, - [200077] = 2, + ACTIONS(10200), 1, + anon_sym_SEMI, + [225109] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9845), 1, - anon_sym_RPAREN, - [200084] = 2, + ACTIONS(6101), 1, + anon_sym_SEMI, + [225116] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9847), 1, + ACTIONS(10202), 1, anon_sym_LPAREN2, - [200091] = 2, + [225123] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9849), 1, - anon_sym_RPAREN, - [200098] = 2, + ACTIONS(10204), 1, + sym_identifier, + [225130] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9851), 1, - sym_identifier, - [200105] = 2, + ACTIONS(10206), 1, + anon_sym_COLON, + [225137] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9853), 1, + ACTIONS(10208), 1, anon_sym_while, - [200112] = 2, + [225144] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9855), 1, - sym_identifier, - [200119] = 2, + ACTIONS(10210), 1, + anon_sym_RPAREN, + [225151] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9857), 1, + ACTIONS(10212), 1, anon_sym_LPAREN2, - [200126] = 2, + [225158] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9859), 1, - anon_sym_DOT_DOT_DOT, - [200133] = 2, + ACTIONS(10214), 1, + anon_sym_SQUOTE, + [225165] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9862), 1, + ACTIONS(10216), 1, anon_sym_EQ, - [200140] = 2, + [225172] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5894), 1, - anon_sym_RBRACE, - [200147] = 2, + ACTIONS(10218), 1, + anon_sym_LPAREN2, + [225179] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6248), 1, + ACTIONS(6139), 1, anon_sym_SEMI, - [200154] = 2, + [225186] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8247), 1, + ACTIONS(8531), 1, anon_sym_EQ, - [200161] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6112), 1, - anon_sym_SEMI, - [200168] = 2, + [225193] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9864), 1, + ACTIONS(10220), 1, anon_sym_SEMI, - [200175] = 2, + [225200] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9866), 1, - sym_identifier, - [200182] = 2, + ACTIONS(10222), 1, + anon_sym_RPAREN, + [225207] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6118), 1, - anon_sym_SEMI, - [200189] = 2, + ACTIONS(10224), 1, + anon_sym_RPAREN, + [225214] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9868), 1, + ACTIONS(6111), 1, anon_sym_SEMI, - [200196] = 2, + [225221] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9870), 1, - anon_sym_SQUOTE, - [200203] = 2, + ACTIONS(10226), 1, + anon_sym_while, + [225228] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5987), 1, + ACTIONS(10228), 1, anon_sym_RPAREN, - [200210] = 2, - ACTIONS(3), 1, + [225235] = 2, + ACTIONS(7181), 1, sym_comment, - ACTIONS(4876), 1, - sym_identifier, - [200217] = 2, + ACTIONS(10230), 1, + anon_sym_LF, + [225242] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3620), 1, + ACTIONS(10232), 1, anon_sym_SEMI, - [200224] = 2, + [225249] = 2, + ACTIONS(7181), 1, + sym_comment, + ACTIONS(9291), 1, + anon_sym_LF, + [225256] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9872), 1, - sym_auto, - [200231] = 2, + ACTIONS(10234), 1, + anon_sym_SEMI, + [225263] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8284), 1, + ACTIONS(6059), 1, anon_sym_SEMI, - [200238] = 2, + [225270] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9874), 1, - sym_identifier, - [200245] = 2, - ACTIONS(6923), 1, + ACTIONS(6087), 1, + anon_sym_SEMI, + [225277] = 2, + ACTIONS(7181), 1, sym_comment, - ACTIONS(9876), 1, + ACTIONS(9306), 1, anon_sym_LF, - [200252] = 2, + [225284] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9878), 1, + ACTIONS(6246), 1, anon_sym_RPAREN, - [200259] = 2, - ACTIONS(6923), 1, - sym_comment, - ACTIONS(9880), 1, - anon_sym_LF, - [200266] = 2, + [225291] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9882), 1, - sym_identifier, - [200273] = 2, + ACTIONS(10236), 1, + anon_sym_SEMI, + [225298] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9884), 1, - anon_sym_LPAREN2, - [200280] = 2, + ACTIONS(10238), 1, + anon_sym_COLON, + [225305] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9886), 1, - aux_sym_preproc_if_token2, - [200287] = 2, - ACTIONS(6923), 1, + ACTIONS(10240), 1, + anon_sym_LPAREN2, + [225312] = 2, + ACTIONS(7181), 1, sym_comment, - ACTIONS(9888), 1, + ACTIONS(10242), 1, anon_sym_LF, - [200294] = 2, + [225319] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9890), 1, + ACTIONS(6203), 1, + anon_sym_RPAREN, + [225326] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10244), 1, anon_sym_while, - [200301] = 2, + [225333] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9892), 1, - anon_sym_SEMI, - [200308] = 2, + ACTIONS(10246), 1, + anon_sym_RPAREN, + [225340] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9894), 1, + ACTIONS(10248), 1, anon_sym_LPAREN2, - [200315] = 2, + [225347] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9896), 1, - anon_sym_SEMI, - [200322] = 2, + ACTIONS(10250), 1, + anon_sym_STAR, + [225354] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9898), 1, + ACTIONS(10252), 1, anon_sym_EQ, - [200329] = 2, + [225361] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9900), 1, + ACTIONS(10254), 1, sym_identifier, - [200336] = 2, + [225368] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6228), 1, + ACTIONS(6201), 1, anon_sym_SEMI, - [200343] = 2, + [225375] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8286), 1, + ACTIONS(8519), 1, anon_sym_EQ, - [200350] = 2, + [225382] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9902), 1, - sym_identifier, - [200357] = 2, + ACTIONS(10256), 1, + anon_sym_RPAREN, + [225389] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8953), 1, - anon_sym_RBRACE, - [200364] = 2, - ACTIONS(6923), 1, + ACTIONS(10258), 1, + anon_sym_RPAREN, + [225396] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(9904), 1, - anon_sym_LF, - [200371] = 2, + ACTIONS(10260), 1, + anon_sym_RPAREN, + [225403] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5935), 1, - anon_sym_RBRACE, - [200378] = 2, + ACTIONS(10262), 1, + sym_identifier, + [225410] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9906), 1, + ACTIONS(10264), 1, anon_sym_LPAREN2, - [200385] = 2, + [225417] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9908), 1, - anon_sym_LPAREN2, - [200392] = 2, + ACTIONS(10266), 1, + anon_sym_RPAREN, + [225424] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9910), 1, - sym_auto, - [200399] = 2, + ACTIONS(6151), 1, + anon_sym_RPAREN, + [225431] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9912), 1, + ACTIONS(10268), 1, anon_sym_while, - [200406] = 2, + [225438] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9914), 1, - anon_sym_RPAREN, - [200413] = 2, + ACTIONS(10270), 1, + anon_sym_SEMI, + [225445] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9916), 1, - anon_sym_COLON, - [200420] = 2, + ACTIONS(10272), 1, + anon_sym_LPAREN2, + [225452] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5247), 1, + anon_sym_RPAREN, + [225459] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9918), 1, + ACTIONS(10274), 1, anon_sym_EQ, - [200427] = 2, + [225466] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9920), 1, - anon_sym_SEMI, - [200434] = 2, + ACTIONS(10276), 1, + sym_identifier, + [225473] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6210), 1, + ACTIONS(6035), 1, anon_sym_SEMI, - [200441] = 2, + [225480] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8276), 1, + ACTIONS(8515), 1, anon_sym_EQ, - [200448] = 2, + [225487] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9922), 1, - anon_sym_RPAREN, - [200455] = 2, + ACTIONS(10278), 1, + sym_identifier, + [225494] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9924), 1, - sym_identifier, - [200462] = 2, + ACTIONS(10280), 1, + aux_sym_preproc_if_token2, + [225501] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8448), 1, + ACTIONS(10282), 1, anon_sym_SEMI, - [200469] = 2, + [225508] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9926), 1, + ACTIONS(6182), 1, anon_sym_SEMI, - [200476] = 2, + [225515] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9928), 1, + ACTIONS(10284), 1, anon_sym_LPAREN2, - [200483] = 2, + [225522] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9930), 1, - anon_sym_SEMI, - [200490] = 2, - ACTIONS(6923), 1, + ACTIONS(6209), 1, + anon_sym_RPAREN, + [225529] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(9932), 1, - anon_sym_LF, - [200497] = 2, + ACTIONS(10286), 1, + anon_sym_RPAREN, + [225536] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3641), 1, - anon_sym_SEMI, - [200504] = 2, + ACTIONS(10288), 1, + anon_sym_RPAREN, + [225543] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9934), 1, + ACTIONS(10290), 1, anon_sym_EQ, - [200511] = 2, + [225550] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8272), 1, + ACTIONS(8541), 1, anon_sym_EQ, - [200518] = 2, + [225557] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9936), 1, - sym_auto, - [200525] = 2, - ACTIONS(6923), 1, + ACTIONS(10292), 1, + anon_sym_SEMI, + [225564] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(9938), 1, - anon_sym_LF, - [200532] = 2, + ACTIONS(10294), 1, + anon_sym_RPAREN, + [225571] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9940), 1, + ACTIONS(10296), 1, anon_sym_LPAREN2, - [200539] = 2, + [225578] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9942), 1, - aux_sym_preproc_if_token2, - [200546] = 2, + ACTIONS(10298), 1, + anon_sym_RPAREN, + [225585] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8243), 1, + ACTIONS(8557), 1, anon_sym_EQ, - [200553] = 2, + [225592] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9944), 1, - aux_sym_preproc_if_token2, - [200560] = 2, + ACTIONS(5237), 1, + anon_sym_RPAREN, + [225599] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9946), 1, - anon_sym_SEMI, - [200567] = 2, + ACTIONS(10300), 1, + anon_sym_LPAREN2, + [225606] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9948), 1, - anon_sym_SEMI, - [200574] = 2, + ACTIONS(10302), 1, + anon_sym_RPAREN, + [225613] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9950), 1, - anon_sym_LPAREN2, - [200581] = 2, + ACTIONS(10304), 1, + anon_sym_SQUOTE, + [225620] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9952), 1, + ACTIONS(10306), 1, anon_sym_LPAREN2, - [200588] = 2, + [225627] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9954), 1, - sym_identifier, - [200595] = 2, + ACTIONS(10308), 1, + anon_sym_LPAREN2, + [225634] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9065), 1, - anon_sym_RBRACE, - [200602] = 2, - ACTIONS(3), 1, + ACTIONS(10310), 1, + sym_identifier, + [225641] = 2, + ACTIONS(7181), 1, sym_comment, - ACTIONS(8390), 1, - anon_sym_SEMI, - [200609] = 2, + ACTIONS(10312), 1, + anon_sym_LF, + [225648] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9956), 1, - anon_sym_SEMI, - [200616] = 2, + ACTIONS(6238), 1, + anon_sym_RPAREN, + [225655] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9958), 1, + ACTIONS(10314), 1, anon_sym_RPAREN, - [200623] = 2, + [225662] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9960), 1, - anon_sym_DOT_DOT_DOT, - [200630] = 2, + ACTIONS(10316), 1, + anon_sym_SEMI, + [225669] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8516), 1, + ACTIONS(10318), 1, anon_sym_SEMI, - [200637] = 2, + [225676] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9963), 1, + ACTIONS(10320), 1, anon_sym_SEMI, - [200644] = 2, + [225683] = 2, + ACTIONS(7181), 1, + sym_comment, + ACTIONS(9341), 1, + anon_sym_LF, + [225690] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9965), 1, - anon_sym_SEMI, - [200651] = 2, + ACTIONS(4125), 1, + anon_sym_COLON_COLON, + [225697] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9967), 1, - aux_sym_preproc_if_token2, - [200658] = 2, + ACTIONS(5015), 1, + sym_identifier, + [225704] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9969), 1, - anon_sym_SEMI, - [200665] = 2, + ACTIONS(10322), 1, + aux_sym_preproc_if_token2, + [225711] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9971), 1, - anon_sym_RPAREN, - [200672] = 2, + ACTIONS(6163), 1, + anon_sym_SEMI, + [225718] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6058), 1, - anon_sym_RBRACE, - [200679] = 2, + ACTIONS(10324), 1, + aux_sym_preproc_if_token2, + [225725] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6297), 1, - anon_sym_RPAREN, - [200686] = 2, + ACTIONS(8529), 1, + anon_sym_SEMI, + [225732] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9973), 1, + ACTIONS(10326), 1, sym_identifier, - [200693] = 2, + [225739] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6295), 1, + ACTIONS(6081), 1, anon_sym_RPAREN, - [200700] = 2, + [225746] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9975), 1, - aux_sym_preproc_if_token2, - [200707] = 2, + ACTIONS(6005), 1, + anon_sym_RPAREN, + [225753] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9977), 1, + ACTIONS(10328), 1, anon_sym_SEMI, - [200714] = 2, + [225760] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9979), 1, - anon_sym_DOT_DOT_DOT, - [200721] = 2, + ACTIONS(10330), 1, + anon_sym_SEMI, + [225767] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9069), 1, - anon_sym_RBRACE, - [200728] = 2, - ACTIONS(3), 1, + ACTIONS(10332), 1, + anon_sym_SEMI, + [225774] = 2, + ACTIONS(7181), 1, sym_comment, - ACTIONS(6327), 1, - anon_sym_RPAREN, - [200735] = 2, + ACTIONS(10334), 1, + anon_sym_LF, + [225781] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6311), 1, - anon_sym_RPAREN, - [200742] = 2, + ACTIONS(10336), 1, + aux_sym_preproc_if_token2, + [225788] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9982), 1, - anon_sym_RPAREN, - [200749] = 2, + ACTIONS(10338), 1, + anon_sym_STAR, + [225795] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9984), 1, + ACTIONS(10340), 1, anon_sym_LPAREN2, - [200756] = 2, + [225802] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9986), 1, + ACTIONS(10342), 1, anon_sym_LPAREN2, - [200763] = 2, + [225809] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9988), 1, + ACTIONS(10344), 1, sym_identifier, - [200770] = 2, + [225816] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6299), 1, - anon_sym_RPAREN, - [200777] = 2, + ACTIONS(10346), 1, + aux_sym_preproc_if_token2, + [225823] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9990), 1, - anon_sym_SEMI, - [200784] = 2, + ACTIONS(10348), 1, + aux_sym_preproc_if_token2, + [225830] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6315), 1, - anon_sym_RPAREN, - [200791] = 2, + ACTIONS(10350), 1, + ts_builtin_sym_end, + [225837] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9992), 1, - anon_sym_RPAREN, - [200798] = 2, + ACTIONS(10352), 1, + sym_identifier, + [225844] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9994), 1, + ACTIONS(10354), 1, anon_sym_RPAREN, - [200805] = 2, + [225851] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9996), 1, + ACTIONS(10356), 1, sym_identifier, - [200812] = 2, + [225858] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9998), 1, - anon_sym_COLON, - [200819] = 2, + ACTIONS(10358), 1, + anon_sym_LPAREN2, + [225865] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10000), 1, - anon_sym_RPAREN, - [200826] = 2, + ACTIONS(10360), 1, + anon_sym_SEMI, + [225872] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10002), 1, - anon_sym_RPAREN, - [200833] = 2, + ACTIONS(10362), 1, + anon_sym_SEMI, + [225879] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10004), 1, + ACTIONS(8776), 1, anon_sym_SEMI, - [200840] = 2, + [225886] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10006), 1, - anon_sym_SEMI, - [200847] = 2, + ACTIONS(10364), 1, + anon_sym_RPAREN, + [225893] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10008), 1, + ACTIONS(10366), 1, anon_sym_LPAREN2, - [200854] = 2, + [225900] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10010), 1, + ACTIONS(10368), 1, anon_sym_LPAREN2, - [200861] = 2, + [225907] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10012), 1, + ACTIONS(10370), 1, sym_identifier, - [200868] = 2, + [225914] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10014), 1, - anon_sym_DOT_DOT_DOT, - [200875] = 2, + ACTIONS(10372), 1, + anon_sym_RPAREN, + [225921] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10017), 1, - anon_sym_SEMI, - [200882] = 2, + ACTIONS(9404), 1, + anon_sym_RBRACE, + [225928] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6325), 1, + ACTIONS(10374), 1, anon_sym_SEMI, - [200889] = 2, + [225935] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10019), 1, + ACTIONS(10376), 1, sym_identifier, - [200896] = 2, - ACTIONS(6923), 1, + [225942] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(10021), 1, - anon_sym_LF, - [200903] = 2, + ACTIONS(10378), 1, + anon_sym_SEMI, + [225949] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10023), 1, - anon_sym_RPAREN, - [200910] = 2, + ACTIONS(10380), 1, + anon_sym_SEMI, + [225956] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10025), 1, - anon_sym_DOT_DOT_DOT, - [200917] = 2, + ACTIONS(10382), 1, + anon_sym_LPAREN2, + [225963] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10028), 1, - anon_sym_RPAREN, - [200924] = 2, + ACTIONS(10384), 1, + anon_sym_COLON, + [225970] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10030), 1, - anon_sym_LPAREN2, - [200931] = 2, + ACTIONS(10386), 1, + anon_sym_SEMI, + [225977] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10032), 1, + ACTIONS(10388), 1, anon_sym_LPAREN2, - [200938] = 2, + [225984] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10034), 1, + ACTIONS(10390), 1, anon_sym_LPAREN2, - [200945] = 2, + [225991] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10036), 1, + ACTIONS(10392), 1, sym_identifier, - [200952] = 2, + [225998] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10038), 1, + ACTIONS(10394), 1, sym_identifier, - [200959] = 2, + [226005] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10040), 1, - anon_sym_RPAREN, - [200966] = 2, + ACTIONS(10396), 1, + aux_sym_preproc_if_token2, + [226012] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10042), 1, - anon_sym_RPAREN, - [200973] = 2, + ACTIONS(10398), 1, + sym_identifier, + [226019] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10044), 1, - sym_auto, - [200980] = 2, + ACTIONS(10400), 1, + anon_sym_SEMI, + [226026] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10046), 1, + ACTIONS(10402), 1, anon_sym_LPAREN2, - [200987] = 2, + [226033] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10048), 1, + ACTIONS(10404), 1, anon_sym_LPAREN2, - [200994] = 2, + [226040] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10050), 1, + ACTIONS(10406), 1, sym_identifier, - [201001] = 2, + [226047] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10052), 1, + ACTIONS(10408), 1, sym_identifier, - [201008] = 2, + [226054] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10054), 1, - sym_identifier, - [201015] = 2, + ACTIONS(10410), 1, + anon_sym_SEMI, + [226061] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10056), 1, - anon_sym_RPAREN, - [201022] = 2, + ACTIONS(10412), 1, + anon_sym_LPAREN2, + [226068] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10058), 1, + ACTIONS(10414), 1, anon_sym_LPAREN2, - [201029] = 2, + [226075] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10060), 1, + ACTIONS(10416), 1, sym_identifier, - [201036] = 2, + [226082] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10062), 1, + ACTIONS(10418), 1, sym_identifier, - [201043] = 2, + [226089] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10064), 1, + ACTIONS(10420), 1, sym_identifier, - [201050] = 2, + [226096] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10066), 1, - anon_sym_COLON, - [201057] = 2, + ACTIONS(10422), 1, + aux_sym_preproc_if_token2, + [226103] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10068), 1, - anon_sym_LPAREN2, - [201064] = 2, - ACTIONS(3), 1, + ACTIONS(10424), 1, + anon_sym_COLON, + [226110] = 2, + ACTIONS(7181), 1, sym_comment, - ACTIONS(6307), 1, - anon_sym_SEMI, - [201071] = 2, + ACTIONS(10426), 1, + anon_sym_LF, + [226117] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10070), 1, - anon_sym_SEMI, - [201078] = 2, + ACTIONS(6384), 1, + anon_sym_RBRACK, + [226124] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10072), 1, - anon_sym_SQUOTE, - [201085] = 2, + ACTIONS(10428), 1, + sym_auto, + [226131] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10074), 1, - sym_identifier, - [201092] = 2, + ACTIONS(10430), 1, + anon_sym_SEMI, + [226138] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10076), 1, + ACTIONS(10432), 1, anon_sym_STAR, - [201099] = 2, + [226145] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10078), 1, - anon_sym_DOT_DOT_DOT, - [201106] = 2, + ACTIONS(10434), 1, + anon_sym_LPAREN2, + [226152] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9109), 1, - anon_sym_RBRACE, - [201113] = 2, + ACTIONS(10436), 1, + anon_sym_SEMI, + [226159] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5157), 1, - sym_identifier, - [201120] = 2, + ACTIONS(5952), 1, + anon_sym_RBRACE, + [226166] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10081), 1, - sym_identifier, - [201127] = 2, + ACTIONS(10438), 1, + anon_sym_LPAREN2, + [226173] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8274), 1, + ACTIONS(8820), 1, anon_sym_SEMI, - [201134] = 2, + [226180] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10083), 1, + ACTIONS(10440), 1, sym_identifier, - [201141] = 2, + [226187] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10085), 1, - anon_sym_DOT_DOT_DOT, + ACTIONS(10442), 1, + sym_identifier, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(1731)] = 0, - [SMALL_STATE(1732)] = 71, - [SMALL_STATE(1733)] = 142, - [SMALL_STATE(1734)] = 213, - [SMALL_STATE(1735)] = 338, - [SMALL_STATE(1736)] = 409, - [SMALL_STATE(1737)] = 480, - [SMALL_STATE(1738)] = 551, - [SMALL_STATE(1739)] = 622, - [SMALL_STATE(1740)] = 749, - [SMALL_STATE(1741)] = 876, - [SMALL_STATE(1742)] = 1000, - [SMALL_STATE(1743)] = 1124, - [SMALL_STATE(1744)] = 1195, - [SMALL_STATE(1745)] = 1266, - [SMALL_STATE(1746)] = 1337, - [SMALL_STATE(1747)] = 1408, - [SMALL_STATE(1748)] = 1529, - [SMALL_STATE(1749)] = 1595, - [SMALL_STATE(1750)] = 1661, - [SMALL_STATE(1751)] = 1727, - [SMALL_STATE(1752)] = 1793, - [SMALL_STATE(1753)] = 1859, - [SMALL_STATE(1754)] = 1925, - [SMALL_STATE(1755)] = 1991, - [SMALL_STATE(1756)] = 2057, - [SMALL_STATE(1757)] = 2123, - [SMALL_STATE(1758)] = 2189, - [SMALL_STATE(1759)] = 2257, - [SMALL_STATE(1760)] = 2323, - [SMALL_STATE(1761)] = 2389, - [SMALL_STATE(1762)] = 2455, - [SMALL_STATE(1763)] = 2521, - [SMALL_STATE(1764)] = 2587, - [SMALL_STATE(1765)] = 2700, - [SMALL_STATE(1766)] = 2769, - [SMALL_STATE(1767)] = 2834, - [SMALL_STATE(1768)] = 2947, - [SMALL_STATE(1769)] = 3060, - [SMALL_STATE(1770)] = 3125, - [SMALL_STATE(1771)] = 3238, - [SMALL_STATE(1772)] = 3303, - [SMALL_STATE(1773)] = 3416, - [SMALL_STATE(1774)] = 3481, - [SMALL_STATE(1775)] = 3546, - [SMALL_STATE(1776)] = 3611, - [SMALL_STATE(1777)] = 3676, - [SMALL_STATE(1778)] = 3789, - [SMALL_STATE(1779)] = 3858, - [SMALL_STATE(1780)] = 3923, - [SMALL_STATE(1781)] = 4036, - [SMALL_STATE(1782)] = 4105, - [SMALL_STATE(1783)] = 4218, - [SMALL_STATE(1784)] = 4331, - [SMALL_STATE(1785)] = 4396, - [SMALL_STATE(1786)] = 4461, - [SMALL_STATE(1787)] = 4530, - [SMALL_STATE(1788)] = 4599, - [SMALL_STATE(1789)] = 4668, - [SMALL_STATE(1790)] = 4737, - [SMALL_STATE(1791)] = 4850, - [SMALL_STATE(1792)] = 4919, - [SMALL_STATE(1793)] = 5032, - [SMALL_STATE(1794)] = 5097, - [SMALL_STATE(1795)] = 5161, - [SMALL_STATE(1796)] = 5225, - [SMALL_STATE(1797)] = 5289, - [SMALL_STATE(1798)] = 5405, - [SMALL_STATE(1799)] = 5469, - [SMALL_STATE(1800)] = 5533, - [SMALL_STATE(1801)] = 5597, - [SMALL_STATE(1802)] = 5661, - [SMALL_STATE(1803)] = 5725, - [SMALL_STATE(1804)] = 5789, - [SMALL_STATE(1805)] = 5905, - [SMALL_STATE(1806)] = 5969, - [SMALL_STATE(1807)] = 6041, - [SMALL_STATE(1808)] = 6105, - [SMALL_STATE(1809)] = 6221, - [SMALL_STATE(1810)] = 6299, - [SMALL_STATE(1811)] = 6363, - [SMALL_STATE(1812)] = 6427, - [SMALL_STATE(1813)] = 6491, - [SMALL_STATE(1814)] = 6555, - [SMALL_STATE(1815)] = 6619, - [SMALL_STATE(1816)] = 6691, - [SMALL_STATE(1817)] = 6807, - [SMALL_STATE(1818)] = 6871, - [SMALL_STATE(1819)] = 6937, - [SMALL_STATE(1820)] = 7001, - [SMALL_STATE(1821)] = 7065, - [SMALL_STATE(1822)] = 7129, - [SMALL_STATE(1823)] = 7193, - [SMALL_STATE(1824)] = 7257, - [SMALL_STATE(1825)] = 7323, - [SMALL_STATE(1826)] = 7387, - [SMALL_STATE(1827)] = 7451, - [SMALL_STATE(1828)] = 7515, - [SMALL_STATE(1829)] = 7631, - [SMALL_STATE(1830)] = 7747, - [SMALL_STATE(1831)] = 7811, - [SMALL_STATE(1832)] = 7875, - [SMALL_STATE(1833)] = 7991, - [SMALL_STATE(1834)] = 8077, - [SMALL_STATE(1835)] = 8141, - [SMALL_STATE(1836)] = 8205, - [SMALL_STATE(1837)] = 8269, - [SMALL_STATE(1838)] = 8333, - [SMALL_STATE(1839)] = 8397, - [SMALL_STATE(1840)] = 8461, - [SMALL_STATE(1841)] = 8525, - [SMALL_STATE(1842)] = 8589, - [SMALL_STATE(1843)] = 8705, - [SMALL_STATE(1844)] = 8769, - [SMALL_STATE(1845)] = 8833, - [SMALL_STATE(1846)] = 8897, - [SMALL_STATE(1847)] = 8961, - [SMALL_STATE(1848)] = 9025, - [SMALL_STATE(1849)] = 9089, - [SMALL_STATE(1850)] = 9153, - [SMALL_STATE(1851)] = 9217, - [SMALL_STATE(1852)] = 9281, - [SMALL_STATE(1853)] = 9345, - [SMALL_STATE(1854)] = 9409, - [SMALL_STATE(1855)] = 9473, - [SMALL_STATE(1856)] = 9537, - [SMALL_STATE(1857)] = 9601, - [SMALL_STATE(1858)] = 9665, - [SMALL_STATE(1859)] = 9729, - [SMALL_STATE(1860)] = 9793, - [SMALL_STATE(1861)] = 9857, - [SMALL_STATE(1862)] = 9929, - [SMALL_STATE(1863)] = 9993, - [SMALL_STATE(1864)] = 10065, - [SMALL_STATE(1865)] = 10129, - [SMALL_STATE(1866)] = 10193, - [SMALL_STATE(1867)] = 10257, - [SMALL_STATE(1868)] = 10321, - [SMALL_STATE(1869)] = 10437, - [SMALL_STATE(1870)] = 10501, - [SMALL_STATE(1871)] = 10565, - [SMALL_STATE(1872)] = 10629, - [SMALL_STATE(1873)] = 10745, - [SMALL_STATE(1874)] = 10809, - [SMALL_STATE(1875)] = 10925, - [SMALL_STATE(1876)] = 11041, - [SMALL_STATE(1877)] = 11105, - [SMALL_STATE(1878)] = 11169, - [SMALL_STATE(1879)] = 11233, - [SMALL_STATE(1880)] = 11297, - [SMALL_STATE(1881)] = 11361, - [SMALL_STATE(1882)] = 11477, - [SMALL_STATE(1883)] = 11541, - [SMALL_STATE(1884)] = 11605, - [SMALL_STATE(1885)] = 11669, - [SMALL_STATE(1886)] = 11733, - [SMALL_STATE(1887)] = 11797, - [SMALL_STATE(1888)] = 11861, - [SMALL_STATE(1889)] = 11925, - [SMALL_STATE(1890)] = 11988, - [SMALL_STATE(1891)] = 12051, - [SMALL_STATE(1892)] = 12128, - [SMALL_STATE(1893)] = 12241, - [SMALL_STATE(1894)] = 12304, - [SMALL_STATE(1895)] = 12417, - [SMALL_STATE(1896)] = 12496, - [SMALL_STATE(1897)] = 12609, - [SMALL_STATE(1898)] = 12672, - [SMALL_STATE(1899)] = 12735, - [SMALL_STATE(1900)] = 12848, - [SMALL_STATE(1901)] = 12911, - [SMALL_STATE(1902)] = 12974, - [SMALL_STATE(1903)] = 13037, - [SMALL_STATE(1904)] = 13100, - [SMALL_STATE(1905)] = 13163, - [SMALL_STATE(1906)] = 13233, - [SMALL_STATE(1907)] = 13295, - [SMALL_STATE(1908)] = 13357, - [SMALL_STATE(1909)] = 13419, - [SMALL_STATE(1910)] = 13481, - [SMALL_STATE(1911)] = 13543, - [SMALL_STATE(1912)] = 13605, - [SMALL_STATE(1913)] = 13715, - [SMALL_STATE(1914)] = 13777, - [SMALL_STATE(1915)] = 13839, - [SMALL_STATE(1916)] = 13949, - [SMALL_STATE(1917)] = 14011, - [SMALL_STATE(1918)] = 14073, - [SMALL_STATE(1919)] = 14135, - [SMALL_STATE(1920)] = 14197, - [SMALL_STATE(1921)] = 14259, - [SMALL_STATE(1922)] = 14321, - [SMALL_STATE(1923)] = 14383, - [SMALL_STATE(1924)] = 14445, - [SMALL_STATE(1925)] = 14507, - [SMALL_STATE(1926)] = 14569, - [SMALL_STATE(1927)] = 14631, - [SMALL_STATE(1928)] = 14693, - [SMALL_STATE(1929)] = 14755, - [SMALL_STATE(1930)] = 14817, - [SMALL_STATE(1931)] = 14879, - [SMALL_STATE(1932)] = 14941, - [SMALL_STATE(1933)] = 15003, - [SMALL_STATE(1934)] = 15065, - [SMALL_STATE(1935)] = 15127, - [SMALL_STATE(1936)] = 15189, - [SMALL_STATE(1937)] = 15251, - [SMALL_STATE(1938)] = 15313, - [SMALL_STATE(1939)] = 15375, - [SMALL_STATE(1940)] = 15437, - [SMALL_STATE(1941)] = 15499, - [SMALL_STATE(1942)] = 15561, - [SMALL_STATE(1943)] = 15623, - [SMALL_STATE(1944)] = 15685, - [SMALL_STATE(1945)] = 15747, - [SMALL_STATE(1946)] = 15809, - [SMALL_STATE(1947)] = 15871, - [SMALL_STATE(1948)] = 15933, - [SMALL_STATE(1949)] = 15995, - [SMALL_STATE(1950)] = 16057, - [SMALL_STATE(1951)] = 16119, - [SMALL_STATE(1952)] = 16181, - [SMALL_STATE(1953)] = 16243, - [SMALL_STATE(1954)] = 16305, - [SMALL_STATE(1955)] = 16367, - [SMALL_STATE(1956)] = 16429, - [SMALL_STATE(1957)] = 16491, - [SMALL_STATE(1958)] = 16553, - [SMALL_STATE(1959)] = 16615, - [SMALL_STATE(1960)] = 16677, - [SMALL_STATE(1961)] = 16739, - [SMALL_STATE(1962)] = 16801, - [SMALL_STATE(1963)] = 16863, - [SMALL_STATE(1964)] = 16925, - [SMALL_STATE(1965)] = 16987, - [SMALL_STATE(1966)] = 17049, - [SMALL_STATE(1967)] = 17111, - [SMALL_STATE(1968)] = 17173, - [SMALL_STATE(1969)] = 17235, - [SMALL_STATE(1970)] = 17297, - [SMALL_STATE(1971)] = 17359, - [SMALL_STATE(1972)] = 17421, - [SMALL_STATE(1973)] = 17483, - [SMALL_STATE(1974)] = 17545, - [SMALL_STATE(1975)] = 17607, - [SMALL_STATE(1976)] = 17669, - [SMALL_STATE(1977)] = 17731, - [SMALL_STATE(1978)] = 17793, - [SMALL_STATE(1979)] = 17855, - [SMALL_STATE(1980)] = 17917, - [SMALL_STATE(1981)] = 17979, - [SMALL_STATE(1982)] = 18041, - [SMALL_STATE(1983)] = 18103, - [SMALL_STATE(1984)] = 18165, - [SMALL_STATE(1985)] = 18227, - [SMALL_STATE(1986)] = 18289, - [SMALL_STATE(1987)] = 18351, - [SMALL_STATE(1988)] = 18413, - [SMALL_STATE(1989)] = 18475, - [SMALL_STATE(1990)] = 18537, - [SMALL_STATE(1991)] = 18599, - [SMALL_STATE(1992)] = 18661, - [SMALL_STATE(1993)] = 18723, - [SMALL_STATE(1994)] = 18785, - [SMALL_STATE(1995)] = 18847, - [SMALL_STATE(1996)] = 18909, - [SMALL_STATE(1997)] = 18971, - [SMALL_STATE(1998)] = 19033, - [SMALL_STATE(1999)] = 19095, - [SMALL_STATE(2000)] = 19157, - [SMALL_STATE(2001)] = 19223, - [SMALL_STATE(2002)] = 19285, - [SMALL_STATE(2003)] = 19347, - [SMALL_STATE(2004)] = 19409, - [SMALL_STATE(2005)] = 19471, - [SMALL_STATE(2006)] = 19533, - [SMALL_STATE(2007)] = 19595, - [SMALL_STATE(2008)] = 19657, - [SMALL_STATE(2009)] = 19719, - [SMALL_STATE(2010)] = 19781, - [SMALL_STATE(2011)] = 19843, - [SMALL_STATE(2012)] = 19905, - [SMALL_STATE(2013)] = 19967, - [SMALL_STATE(2014)] = 20029, - [SMALL_STATE(2015)] = 20091, - [SMALL_STATE(2016)] = 20153, - [SMALL_STATE(2017)] = 20215, - [SMALL_STATE(2018)] = 20277, - [SMALL_STATE(2019)] = 20339, - [SMALL_STATE(2020)] = 20401, - [SMALL_STATE(2021)] = 20463, - [SMALL_STATE(2022)] = 20525, - [SMALL_STATE(2023)] = 20587, - [SMALL_STATE(2024)] = 20649, - [SMALL_STATE(2025)] = 20711, - [SMALL_STATE(2026)] = 20773, - [SMALL_STATE(2027)] = 20835, - [SMALL_STATE(2028)] = 20897, - [SMALL_STATE(2029)] = 20959, - [SMALL_STATE(2030)] = 21021, - [SMALL_STATE(2031)] = 21083, - [SMALL_STATE(2032)] = 21145, - [SMALL_STATE(2033)] = 21215, - [SMALL_STATE(2034)] = 21277, - [SMALL_STATE(2035)] = 21339, - [SMALL_STATE(2036)] = 21401, - [SMALL_STATE(2037)] = 21463, - [SMALL_STATE(2038)] = 21525, - [SMALL_STATE(2039)] = 21587, - [SMALL_STATE(2040)] = 21649, - [SMALL_STATE(2041)] = 21711, - [SMALL_STATE(2042)] = 21773, - [SMALL_STATE(2043)] = 21835, - [SMALL_STATE(2044)] = 21897, - [SMALL_STATE(2045)] = 21959, - [SMALL_STATE(2046)] = 22021, - [SMALL_STATE(2047)] = 22083, - [SMALL_STATE(2048)] = 22145, - [SMALL_STATE(2049)] = 22207, - [SMALL_STATE(2050)] = 22269, - [SMALL_STATE(2051)] = 22331, - [SMALL_STATE(2052)] = 22393, - [SMALL_STATE(2053)] = 22455, - [SMALL_STATE(2054)] = 22517, - [SMALL_STATE(2055)] = 22579, - [SMALL_STATE(2056)] = 22641, - [SMALL_STATE(2057)] = 22703, - [SMALL_STATE(2058)] = 22765, - [SMALL_STATE(2059)] = 22827, - [SMALL_STATE(2060)] = 22889, - [SMALL_STATE(2061)] = 22951, - [SMALL_STATE(2062)] = 23013, - [SMALL_STATE(2063)] = 23088, - [SMALL_STATE(2064)] = 23157, - [SMALL_STATE(2065)] = 23224, - [SMALL_STATE(2066)] = 23333, - [SMALL_STATE(2067)] = 23400, - [SMALL_STATE(2068)] = 23481, - [SMALL_STATE(2069)] = 23547, - [SMALL_STATE(2070)] = 23611, - [SMALL_STATE(2071)] = 23683, - [SMALL_STATE(2072)] = 23755, - [SMALL_STATE(2073)] = 23827, - [SMALL_STATE(2074)] = 23891, - [SMALL_STATE(2075)] = 23963, - [SMALL_STATE(2076)] = 24031, - [SMALL_STATE(2077)] = 24103, - [SMALL_STATE(2078)] = 24175, - [SMALL_STATE(2079)] = 24243, - [SMALL_STATE(2080)] = 24309, - [SMALL_STATE(2081)] = 24381, - [SMALL_STATE(2082)] = 24453, - [SMALL_STATE(2083)] = 24521, - [SMALL_STATE(2084)] = 24593, - [SMALL_STATE(2085)] = 24664, - [SMALL_STATE(2086)] = 24723, - [SMALL_STATE(2087)] = 24788, - [SMALL_STATE(2088)] = 24847, - [SMALL_STATE(2089)] = 24918, - [SMALL_STATE(2090)] = 24993, - [SMALL_STATE(2091)] = 25052, - [SMALL_STATE(2092)] = 25123, - [SMALL_STATE(2093)] = 25198, - [SMALL_STATE(2094)] = 25265, - [SMALL_STATE(2095)] = 25340, - [SMALL_STATE(2096)] = 25411, - [SMALL_STATE(2097)] = 25482, - [SMALL_STATE(2098)] = 25553, - [SMALL_STATE(2099)] = 25618, - [SMALL_STATE(2100)] = 25693, - [SMALL_STATE(2101)] = 25764, - [SMALL_STATE(2102)] = 25835, - [SMALL_STATE(2103)] = 25900, - [SMALL_STATE(2104)] = 25965, - [SMALL_STATE(2105)] = 26036, - [SMALL_STATE(2106)] = 26106, - [SMALL_STATE(2107)] = 26164, - [SMALL_STATE(2108)] = 26222, - [SMALL_STATE(2109)] = 26292, - [SMALL_STATE(2110)] = 26350, - [SMALL_STATE(2111)] = 26414, - [SMALL_STATE(2112)] = 26476, - [SMALL_STATE(2113)] = 26542, - [SMALL_STATE(2114)] = 26600, - [SMALL_STATE(2115)] = 26658, - [SMALL_STATE(2116)] = 26716, - [SMALL_STATE(2117)] = 26778, - [SMALL_STATE(2118)] = 26838, - [SMALL_STATE(2119)] = 26898, - [SMALL_STATE(2120)] = 26956, - [SMALL_STATE(2121)] = 27014, - [SMALL_STATE(2122)] = 27072, - [SMALL_STATE(2123)] = 27130, - [SMALL_STATE(2124)] = 27200, - [SMALL_STATE(2125)] = 27258, - [SMALL_STATE(2126)] = 27316, - [SMALL_STATE(2127)] = 27386, - [SMALL_STATE(2128)] = 27456, - [SMALL_STATE(2129)] = 27516, - [SMALL_STATE(2130)] = 27576, - [SMALL_STATE(2131)] = 27646, - [SMALL_STATE(2132)] = 27704, - [SMALL_STATE(2133)] = 27762, - [SMALL_STATE(2134)] = 27820, - [SMALL_STATE(2135)] = 27878, - [SMALL_STATE(2136)] = 27942, - [SMALL_STATE(2137)] = 28000, - [SMALL_STATE(2138)] = 28058, - [SMALL_STATE(2139)] = 28116, - [SMALL_STATE(2140)] = 28174, - [SMALL_STATE(2141)] = 28244, - [SMALL_STATE(2142)] = 28304, - [SMALL_STATE(2143)] = 28362, - [SMALL_STATE(2144)] = 28432, - [SMALL_STATE(2145)] = 28490, - [SMALL_STATE(2146)] = 28560, - [SMALL_STATE(2147)] = 28618, - [SMALL_STATE(2148)] = 28678, - [SMALL_STATE(2149)] = 28736, - [SMALL_STATE(2150)] = 28796, - [SMALL_STATE(2151)] = 28865, - [SMALL_STATE(2152)] = 28928, - [SMALL_STATE(2153)] = 28991, - [SMALL_STATE(2154)] = 29060, - [SMALL_STATE(2155)] = 29125, - [SMALL_STATE(2156)] = 29182, - [SMALL_STATE(2157)] = 29255, - [SMALL_STATE(2158)] = 29324, - [SMALL_STATE(2159)] = 29393, - [SMALL_STATE(2160)] = 29456, - [SMALL_STATE(2161)] = 29517, - [SMALL_STATE(2162)] = 29576, - [SMALL_STATE(2163)] = 29645, - [SMALL_STATE(2164)] = 29714, - [SMALL_STATE(2165)] = 29771, - [SMALL_STATE(2166)] = 29830, - [SMALL_STATE(2167)] = 29899, - [SMALL_STATE(2168)] = 29972, - [SMALL_STATE(2169)] = 30045, - [SMALL_STATE(2170)] = 30102, - [SMALL_STATE(2171)] = 30159, - [SMALL_STATE(2172)] = 30216, - [SMALL_STATE(2173)] = 30289, - [SMALL_STATE(2174)] = 30358, - [SMALL_STATE(2175)] = 30427, - [SMALL_STATE(2176)] = 30486, - [SMALL_STATE(2177)] = 30549, - [SMALL_STATE(2178)] = 30612, - [SMALL_STATE(2179)] = 30668, - [SMALL_STATE(2180)] = 30724, - [SMALL_STATE(2181)] = 30786, - [SMALL_STATE(2182)] = 30842, - [SMALL_STATE(2183)] = 30906, - [SMALL_STATE(2184)] = 30962, - [SMALL_STATE(2185)] = 31018, - [SMALL_STATE(2186)] = 31076, - [SMALL_STATE(2187)] = 31132, - [SMALL_STATE(2188)] = 31190, - [SMALL_STATE(2189)] = 31248, - [SMALL_STATE(2190)] = 31304, - [SMALL_STATE(2191)] = 31366, - [SMALL_STATE(2192)] = 31424, - [SMALL_STATE(2193)] = 31480, - [SMALL_STATE(2194)] = 31536, - [SMALL_STATE(2195)] = 31592, - [SMALL_STATE(2196)] = 31652, - [SMALL_STATE(2197)] = 31710, - [SMALL_STATE(2198)] = 31766, - [SMALL_STATE(2199)] = 31828, - [SMALL_STATE(2200)] = 31884, - [SMALL_STATE(2201)] = 31940, - [SMALL_STATE(2202)] = 31996, - [SMALL_STATE(2203)] = 32052, - [SMALL_STATE(2204)] = 32110, - [SMALL_STATE(2205)] = 32172, - [SMALL_STATE(2206)] = 32234, - [SMALL_STATE(2207)] = 32292, - [SMALL_STATE(2208)] = 32350, - [SMALL_STATE(2209)] = 32405, - [SMALL_STATE(2210)] = 32460, - [SMALL_STATE(2211)] = 32515, - [SMALL_STATE(2212)] = 32570, - [SMALL_STATE(2213)] = 32625, - [SMALL_STATE(2214)] = 32680, - [SMALL_STATE(2215)] = 32735, - [SMALL_STATE(2216)] = 32790, - [SMALL_STATE(2217)] = 32845, - [SMALL_STATE(2218)] = 32900, - [SMALL_STATE(2219)] = 32959, - [SMALL_STATE(2220)] = 33018, - [SMALL_STATE(2221)] = 33073, - [SMALL_STATE(2222)] = 33128, - [SMALL_STATE(2223)] = 33183, - [SMALL_STATE(2224)] = 33250, - [SMALL_STATE(2225)] = 33305, - [SMALL_STATE(2226)] = 33360, - [SMALL_STATE(2227)] = 33415, - [SMALL_STATE(2228)] = 33470, - [SMALL_STATE(2229)] = 33525, - [SMALL_STATE(2230)] = 33580, - [SMALL_STATE(2231)] = 33647, - [SMALL_STATE(2232)] = 33702, - [SMALL_STATE(2233)] = 33757, - [SMALL_STATE(2234)] = 33812, - [SMALL_STATE(2235)] = 33867, - [SMALL_STATE(2236)] = 33922, - [SMALL_STATE(2237)] = 33977, - [SMALL_STATE(2238)] = 34048, - [SMALL_STATE(2239)] = 34103, - [SMALL_STATE(2240)] = 34158, - [SMALL_STATE(2241)] = 34213, - [SMALL_STATE(2242)] = 34268, - [SMALL_STATE(2243)] = 34323, - [SMALL_STATE(2244)] = 34378, - [SMALL_STATE(2245)] = 34433, - [SMALL_STATE(2246)] = 34488, - [SMALL_STATE(2247)] = 34543, - [SMALL_STATE(2248)] = 34598, - [SMALL_STATE(2249)] = 34659, - [SMALL_STATE(2250)] = 34714, - [SMALL_STATE(2251)] = 34769, - [SMALL_STATE(2252)] = 34824, - [SMALL_STATE(2253)] = 34879, - [SMALL_STATE(2254)] = 34938, - [SMALL_STATE(2255)] = 35009, - [SMALL_STATE(2256)] = 35064, - [SMALL_STATE(2257)] = 35127, - [SMALL_STATE(2258)] = 35182, - [SMALL_STATE(2259)] = 35237, - [SMALL_STATE(2260)] = 35292, - [SMALL_STATE(2261)] = 35359, - [SMALL_STATE(2262)] = 35426, - [SMALL_STATE(2263)] = 35489, - [SMALL_STATE(2264)] = 35548, - [SMALL_STATE(2265)] = 35603, - [SMALL_STATE(2266)] = 35658, - [SMALL_STATE(2267)] = 35713, - [SMALL_STATE(2268)] = 35770, - [SMALL_STATE(2269)] = 35829, - [SMALL_STATE(2270)] = 35896, - [SMALL_STATE(2271)] = 35951, - [SMALL_STATE(2272)] = 36006, - [SMALL_STATE(2273)] = 36073, - [SMALL_STATE(2274)] = 36140, - [SMALL_STATE(2275)] = 36195, - [SMALL_STATE(2276)] = 36250, - [SMALL_STATE(2277)] = 36317, - [SMALL_STATE(2278)] = 36372, - [SMALL_STATE(2279)] = 36427, - [SMALL_STATE(2280)] = 36482, - [SMALL_STATE(2281)] = 36537, - [SMALL_STATE(2282)] = 36592, - [SMALL_STATE(2283)] = 36647, - [SMALL_STATE(2284)] = 36708, - [SMALL_STATE(2285)] = 36767, - [SMALL_STATE(2286)] = 36838, - [SMALL_STATE(2287)] = 36893, - [SMALL_STATE(2288)] = 36960, - [SMALL_STATE(2289)] = 37015, - [SMALL_STATE(2290)] = 37070, - [SMALL_STATE(2291)] = 37125, - [SMALL_STATE(2292)] = 37180, - [SMALL_STATE(2293)] = 37235, - [SMALL_STATE(2294)] = 37296, - [SMALL_STATE(2295)] = 37351, - [SMALL_STATE(2296)] = 37412, - [SMALL_STATE(2297)] = 37467, - [SMALL_STATE(2298)] = 37528, - [SMALL_STATE(2299)] = 37583, - [SMALL_STATE(2300)] = 37654, - [SMALL_STATE(2301)] = 37709, - [SMALL_STATE(2302)] = 37763, - [SMALL_STATE(2303)] = 37819, - [SMALL_STATE(2304)] = 37879, - [SMALL_STATE(2305)] = 37935, - [SMALL_STATE(2306)] = 37991, - [SMALL_STATE(2307)] = 38057, - [SMALL_STATE(2308)] = 38113, - [SMALL_STATE(2309)] = 38173, - [SMALL_STATE(2310)] = 38229, - [SMALL_STATE(2311)] = 38289, - [SMALL_STATE(2312)] = 38343, - [SMALL_STATE(2313)] = 38437, - [SMALL_STATE(2314)] = 38491, - [SMALL_STATE(2315)] = 38551, - [SMALL_STATE(2316)] = 38607, - [SMALL_STATE(2317)] = 38665, - [SMALL_STATE(2318)] = 38719, - [SMALL_STATE(2319)] = 38813, - [SMALL_STATE(2320)] = 38881, - [SMALL_STATE(2321)] = 38935, - [SMALL_STATE(2322)] = 38989, - [SMALL_STATE(2323)] = 39045, - [SMALL_STATE(2324)] = 39101, - [SMALL_STATE(2325)] = 39163, - [SMALL_STATE(2326)] = 39216, - [SMALL_STATE(2327)] = 39275, - [SMALL_STATE(2328)] = 39328, - [SMALL_STATE(2329)] = 39381, - [SMALL_STATE(2330)] = 39434, - [SMALL_STATE(2331)] = 39487, - [SMALL_STATE(2332)] = 39540, - [SMALL_STATE(2333)] = 39593, - [SMALL_STATE(2334)] = 39646, - [SMALL_STATE(2335)] = 39781, - [SMALL_STATE(2336)] = 39834, - [SMALL_STATE(2337)] = 39887, - [SMALL_STATE(2338)] = 39940, - [SMALL_STATE(2339)] = 39993, - [SMALL_STATE(2340)] = 40046, - [SMALL_STATE(2341)] = 40099, - [SMALL_STATE(2342)] = 40152, - [SMALL_STATE(2343)] = 40205, - [SMALL_STATE(2344)] = 40258, - [SMALL_STATE(2345)] = 40311, - [SMALL_STATE(2346)] = 40364, - [SMALL_STATE(2347)] = 40417, - [SMALL_STATE(2348)] = 40470, - [SMALL_STATE(2349)] = 40523, - [SMALL_STATE(2350)] = 40616, - [SMALL_STATE(2351)] = 40669, - [SMALL_STATE(2352)] = 40722, - [SMALL_STATE(2353)] = 40775, - [SMALL_STATE(2354)] = 40828, - [SMALL_STATE(2355)] = 40881, - [SMALL_STATE(2356)] = 40934, - [SMALL_STATE(2357)] = 40987, - [SMALL_STATE(2358)] = 41040, - [SMALL_STATE(2359)] = 41093, - [SMALL_STATE(2360)] = 41146, - [SMALL_STATE(2361)] = 41199, - [SMALL_STATE(2362)] = 41252, - [SMALL_STATE(2363)] = 41305, - [SMALL_STATE(2364)] = 41398, - [SMALL_STATE(2365)] = 41533, - [SMALL_STATE(2366)] = 41594, - [SMALL_STATE(2367)] = 41647, - [SMALL_STATE(2368)] = 41740, - [SMALL_STATE(2369)] = 41793, - [SMALL_STATE(2370)] = 41846, - [SMALL_STATE(2371)] = 41907, - [SMALL_STATE(2372)] = 42000, - [SMALL_STATE(2373)] = 42093, - [SMALL_STATE(2374)] = 42154, - [SMALL_STATE(2375)] = 42207, - [SMALL_STATE(2376)] = 42342, - [SMALL_STATE(2377)] = 42435, - [SMALL_STATE(2378)] = 42488, - [SMALL_STATE(2379)] = 42541, - [SMALL_STATE(2380)] = 42594, - [SMALL_STATE(2381)] = 42729, - [SMALL_STATE(2382)] = 42782, - [SMALL_STATE(2383)] = 42835, - [SMALL_STATE(2384)] = 42888, - [SMALL_STATE(2385)] = 42941, - [SMALL_STATE(2386)] = 43034, - [SMALL_STATE(2387)] = 43091, - [SMALL_STATE(2388)] = 43150, - [SMALL_STATE(2389)] = 43243, - [SMALL_STATE(2390)] = 43296, - [SMALL_STATE(2391)] = 43349, - [SMALL_STATE(2392)] = 43402, - [SMALL_STATE(2393)] = 43455, - [SMALL_STATE(2394)] = 43508, - [SMALL_STATE(2395)] = 43561, - [SMALL_STATE(2396)] = 43614, - [SMALL_STATE(2397)] = 43667, - [SMALL_STATE(2398)] = 43720, - [SMALL_STATE(2399)] = 43773, - [SMALL_STATE(2400)] = 43826, - [SMALL_STATE(2401)] = 43879, - [SMALL_STATE(2402)] = 43932, - [SMALL_STATE(2403)] = 43985, - [SMALL_STATE(2404)] = 44038, - [SMALL_STATE(2405)] = 44091, - [SMALL_STATE(2406)] = 44144, - [SMALL_STATE(2407)] = 44197, - [SMALL_STATE(2408)] = 44250, - [SMALL_STATE(2409)] = 44303, - [SMALL_STATE(2410)] = 44356, - [SMALL_STATE(2411)] = 44409, - [SMALL_STATE(2412)] = 44462, - [SMALL_STATE(2413)] = 44555, - [SMALL_STATE(2414)] = 44614, - [SMALL_STATE(2415)] = 44749, - [SMALL_STATE(2416)] = 44842, - [SMALL_STATE(2417)] = 44935, - [SMALL_STATE(2418)] = 44988, - [SMALL_STATE(2419)] = 45041, - [SMALL_STATE(2420)] = 45106, - [SMALL_STATE(2421)] = 45159, - [SMALL_STATE(2422)] = 45214, - [SMALL_STATE(2423)] = 45267, - [SMALL_STATE(2424)] = 45322, - [SMALL_STATE(2425)] = 45375, - [SMALL_STATE(2426)] = 45428, - [SMALL_STATE(2427)] = 45481, - [SMALL_STATE(2428)] = 45616, - [SMALL_STATE(2429)] = 45675, - [SMALL_STATE(2430)] = 45734, - [SMALL_STATE(2431)] = 45787, - [SMALL_STATE(2432)] = 45840, - [SMALL_STATE(2433)] = 45909, - [SMALL_STATE(2434)] = 45962, - [SMALL_STATE(2435)] = 46015, - [SMALL_STATE(2436)] = 46082, - [SMALL_STATE(2437)] = 46135, - [SMALL_STATE(2438)] = 46270, - [SMALL_STATE(2439)] = 46363, - [SMALL_STATE(2440)] = 46416, - [SMALL_STATE(2441)] = 46469, - [SMALL_STATE(2442)] = 46522, - [SMALL_STATE(2443)] = 46575, - [SMALL_STATE(2444)] = 46628, - [SMALL_STATE(2445)] = 46681, - [SMALL_STATE(2446)] = 46734, - [SMALL_STATE(2447)] = 46787, - [SMALL_STATE(2448)] = 46840, - [SMALL_STATE(2449)] = 46893, - [SMALL_STATE(2450)] = 46946, - [SMALL_STATE(2451)] = 47039, - [SMALL_STATE(2452)] = 47132, - [SMALL_STATE(2453)] = 47185, - [SMALL_STATE(2454)] = 47238, - [SMALL_STATE(2455)] = 47291, - [SMALL_STATE(2456)] = 47344, - [SMALL_STATE(2457)] = 47397, - [SMALL_STATE(2458)] = 47450, - [SMALL_STATE(2459)] = 47543, - [SMALL_STATE(2460)] = 47596, - [SMALL_STATE(2461)] = 47649, - [SMALL_STATE(2462)] = 47702, - [SMALL_STATE(2463)] = 47755, - [SMALL_STATE(2464)] = 47808, - [SMALL_STATE(2465)] = 47861, - [SMALL_STATE(2466)] = 47914, - [SMALL_STATE(2467)] = 47969, - [SMALL_STATE(2468)] = 48022, - [SMALL_STATE(2469)] = 48075, - [SMALL_STATE(2470)] = 48128, - [SMALL_STATE(2471)] = 48181, - [SMALL_STATE(2472)] = 48316, - [SMALL_STATE(2473)] = 48369, - [SMALL_STATE(2474)] = 48422, - [SMALL_STATE(2475)] = 48481, - [SMALL_STATE(2476)] = 48534, - [SMALL_STATE(2477)] = 48587, - [SMALL_STATE(2478)] = 48680, - [SMALL_STATE(2479)] = 48773, - [SMALL_STATE(2480)] = 48866, - [SMALL_STATE(2481)] = 48921, - [SMALL_STATE(2482)] = 48976, - [SMALL_STATE(2483)] = 49029, - [SMALL_STATE(2484)] = 49082, - [SMALL_STATE(2485)] = 49135, - [SMALL_STATE(2486)] = 49188, - [SMALL_STATE(2487)] = 49241, - [SMALL_STATE(2488)] = 49298, - [SMALL_STATE(2489)] = 49357, - [SMALL_STATE(2490)] = 49450, - [SMALL_STATE(2491)] = 49503, - [SMALL_STATE(2492)] = 49596, - [SMALL_STATE(2493)] = 49649, - [SMALL_STATE(2494)] = 49702, - [SMALL_STATE(2495)] = 49755, - [SMALL_STATE(2496)] = 49808, - [SMALL_STATE(2497)] = 49943, - [SMALL_STATE(2498)] = 49996, - [SMALL_STATE(2499)] = 50089, - [SMALL_STATE(2500)] = 50142, - [SMALL_STATE(2501)] = 50195, - [SMALL_STATE(2502)] = 50288, - [SMALL_STATE(2503)] = 50381, - [SMALL_STATE(2504)] = 50446, - [SMALL_STATE(2505)] = 50499, - [SMALL_STATE(2506)] = 50552, - [SMALL_STATE(2507)] = 50645, - [SMALL_STATE(2508)] = 50698, - [SMALL_STATE(2509)] = 50751, - [SMALL_STATE(2510)] = 50804, - [SMALL_STATE(2511)] = 50857, - [SMALL_STATE(2512)] = 50910, - [SMALL_STATE(2513)] = 50963, - [SMALL_STATE(2514)] = 51016, - [SMALL_STATE(2515)] = 51151, - [SMALL_STATE(2516)] = 51204, - [SMALL_STATE(2517)] = 51339, - [SMALL_STATE(2518)] = 51392, - [SMALL_STATE(2519)] = 51447, - [SMALL_STATE(2520)] = 51500, - [SMALL_STATE(2521)] = 51593, - [SMALL_STATE(2522)] = 51646, - [SMALL_STATE(2523)] = 51698, - [SMALL_STATE(2524)] = 51768, - [SMALL_STATE(2525)] = 51832, - [SMALL_STATE(2526)] = 51894, - [SMALL_STATE(2527)] = 51966, - [SMALL_STATE(2528)] = 52054, - [SMALL_STATE(2529)] = 52106, - [SMALL_STATE(2530)] = 52168, - [SMALL_STATE(2531)] = 52224, - [SMALL_STATE(2532)] = 52276, - [SMALL_STATE(2533)] = 52332, - [SMALL_STATE(2534)] = 52384, - [SMALL_STATE(2535)] = 52436, - [SMALL_STATE(2536)] = 52488, - [SMALL_STATE(2537)] = 52540, - [SMALL_STATE(2538)] = 52592, - [SMALL_STATE(2539)] = 52644, - [SMALL_STATE(2540)] = 52696, - [SMALL_STATE(2541)] = 52748, - [SMALL_STATE(2542)] = 52800, - [SMALL_STATE(2543)] = 52852, - [SMALL_STATE(2544)] = 52904, - [SMALL_STATE(2545)] = 52956, - [SMALL_STATE(2546)] = 53008, - [SMALL_STATE(2547)] = 53074, - [SMALL_STATE(2548)] = 53126, - [SMALL_STATE(2549)] = 53178, - [SMALL_STATE(2550)] = 53234, - [SMALL_STATE(2551)] = 53286, - [SMALL_STATE(2552)] = 53338, - [SMALL_STATE(2553)] = 53390, - [SMALL_STATE(2554)] = 53456, - [SMALL_STATE(2555)] = 53544, - [SMALL_STATE(2556)] = 53610, - [SMALL_STATE(2557)] = 53662, - [SMALL_STATE(2558)] = 53734, - [SMALL_STATE(2559)] = 53798, - [SMALL_STATE(2560)] = 53850, - [SMALL_STATE(2561)] = 53902, - [SMALL_STATE(2562)] = 53992, - [SMALL_STATE(2563)] = 54044, - [SMALL_STATE(2564)] = 54098, - [SMALL_STATE(2565)] = 54150, - [SMALL_STATE(2566)] = 54204, - [SMALL_STATE(2567)] = 54256, - [SMALL_STATE(2568)] = 54308, - [SMALL_STATE(2569)] = 54400, - [SMALL_STATE(2570)] = 54458, - [SMALL_STATE(2571)] = 54510, - [SMALL_STATE(2572)] = 54562, - [SMALL_STATE(2573)] = 54614, - [SMALL_STATE(2574)] = 54684, - [SMALL_STATE(2575)] = 54738, - [SMALL_STATE(2576)] = 54790, - [SMALL_STATE(2577)] = 54842, - [SMALL_STATE(2578)] = 54908, - [SMALL_STATE(2579)] = 54974, - [SMALL_STATE(2580)] = 55038, - [SMALL_STATE(2581)] = 55104, - [SMALL_STATE(2582)] = 55190, - [SMALL_STATE(2583)] = 55242, - [SMALL_STATE(2584)] = 55294, - [SMALL_STATE(2585)] = 55346, - [SMALL_STATE(2586)] = 55400, - [SMALL_STATE(2587)] = 55484, - [SMALL_STATE(2588)] = 55566, - [SMALL_STATE(2589)] = 55646, - [SMALL_STATE(2590)] = 55724, - [SMALL_STATE(2591)] = 55778, - [SMALL_STATE(2592)] = 55854, - [SMALL_STATE(2593)] = 55926, - [SMALL_STATE(2594)] = 55994, - [SMALL_STATE(2595)] = 56064, - [SMALL_STATE(2596)] = 56116, - [SMALL_STATE(2597)] = 56188, - [SMALL_STATE(2598)] = 56240, - [SMALL_STATE(2599)] = 56292, - [SMALL_STATE(2600)] = 56344, - [SMALL_STATE(2601)] = 56396, - [SMALL_STATE(2602)] = 56484, - [SMALL_STATE(2603)] = 56548, - [SMALL_STATE(2604)] = 56600, - [SMALL_STATE(2605)] = 56652, - [SMALL_STATE(2606)] = 56704, - [SMALL_STATE(2607)] = 56756, - [SMALL_STATE(2608)] = 56822, - [SMALL_STATE(2609)] = 56874, - [SMALL_STATE(2610)] = 56926, - [SMALL_STATE(2611)] = 56980, - [SMALL_STATE(2612)] = 57032, - [SMALL_STATE(2613)] = 57084, - [SMALL_STATE(2614)] = 57136, - [SMALL_STATE(2615)] = 57188, - [SMALL_STATE(2616)] = 57244, - [SMALL_STATE(2617)] = 57296, - [SMALL_STATE(2618)] = 57348, - [SMALL_STATE(2619)] = 57436, - [SMALL_STATE(2620)] = 57488, - [SMALL_STATE(2621)] = 57544, - [SMALL_STATE(2622)] = 57596, - [SMALL_STATE(2623)] = 57648, - [SMALL_STATE(2624)] = 57699, - [SMALL_STATE(2625)] = 57750, - [SMALL_STATE(2626)] = 57809, - [SMALL_STATE(2627)] = 57860, - [SMALL_STATE(2628)] = 57919, - [SMALL_STATE(2629)] = 58004, - [SMALL_STATE(2630)] = 58059, - [SMALL_STATE(2631)] = 58116, - [SMALL_STATE(2632)] = 58205, - [SMALL_STATE(2633)] = 58260, - [SMALL_STATE(2634)] = 58317, - [SMALL_STATE(2635)] = 58372, - [SMALL_STATE(2636)] = 58425, - [SMALL_STATE(2637)] = 58476, - [SMALL_STATE(2638)] = 58527, - [SMALL_STATE(2639)] = 58590, - [SMALL_STATE(2640)] = 58641, - [SMALL_STATE(2641)] = 58692, - [SMALL_STATE(2642)] = 58777, - [SMALL_STATE(2643)] = 58828, - [SMALL_STATE(2644)] = 58879, - [SMALL_STATE(2645)] = 58930, - [SMALL_STATE(2646)] = 58981, - [SMALL_STATE(2647)] = 59032, - [SMALL_STATE(2648)] = 59083, - [SMALL_STATE(2649)] = 59140, - [SMALL_STATE(2650)] = 59203, - [SMALL_STATE(2651)] = 59254, - [SMALL_STATE(2652)] = 59305, - [SMALL_STATE(2653)] = 59356, - [SMALL_STATE(2654)] = 59407, - [SMALL_STATE(2655)] = 59492, - [SMALL_STATE(2656)] = 59543, - [SMALL_STATE(2657)] = 59594, - [SMALL_STATE(2658)] = 59657, - [SMALL_STATE(2659)] = 59720, - [SMALL_STATE(2660)] = 59771, - [SMALL_STATE(2661)] = 59822, - [SMALL_STATE(2662)] = 59873, - [SMALL_STATE(2663)] = 59934, - [SMALL_STATE(2664)] = 59985, - [SMALL_STATE(2665)] = 60036, - [SMALL_STATE(2666)] = 60087, - [SMALL_STATE(2667)] = 60138, - [SMALL_STATE(2668)] = 60189, - [SMALL_STATE(2669)] = 60244, - [SMALL_STATE(2670)] = 60295, - [SMALL_STATE(2671)] = 60346, - [SMALL_STATE(2672)] = 60409, - [SMALL_STATE(2673)] = 60460, - [SMALL_STATE(2674)] = 60523, - [SMALL_STATE(2675)] = 60576, - [SMALL_STATE(2676)] = 60639, - [SMALL_STATE(2677)] = 60690, - [SMALL_STATE(2678)] = 60741, - [SMALL_STATE(2679)] = 60792, - [SMALL_STATE(2680)] = 60845, - [SMALL_STATE(2681)] = 60896, - [SMALL_STATE(2682)] = 60965, - [SMALL_STATE(2683)] = 61016, - [SMALL_STATE(2684)] = 61067, - [SMALL_STATE(2685)] = 61130, - [SMALL_STATE(2686)] = 61181, - [SMALL_STATE(2687)] = 61232, - [SMALL_STATE(2688)] = 61293, - [SMALL_STATE(2689)] = 61352, - [SMALL_STATE(2690)] = 61415, - [SMALL_STATE(2691)] = 61466, - [SMALL_STATE(2692)] = 61517, - [SMALL_STATE(2693)] = 61568, - [SMALL_STATE(2694)] = 61625, - [SMALL_STATE(2695)] = 61676, - [SMALL_STATE(2696)] = 61727, - [SMALL_STATE(2697)] = 61778, - [SMALL_STATE(2698)] = 61829, - [SMALL_STATE(2699)] = 61886, - [SMALL_STATE(2700)] = 61939, - [SMALL_STATE(2701)] = 61994, - [SMALL_STATE(2702)] = 62045, - [SMALL_STATE(2703)] = 62102, - [SMALL_STATE(2704)] = 62153, - [SMALL_STATE(2705)] = 62220, - [SMALL_STATE(2706)] = 62271, - [SMALL_STATE(2707)] = 62322, - [SMALL_STATE(2708)] = 62373, - [SMALL_STATE(2709)] = 62424, - [SMALL_STATE(2710)] = 62489, - [SMALL_STATE(2711)] = 62540, - [SMALL_STATE(2712)] = 62609, - [SMALL_STATE(2713)] = 62660, - [SMALL_STATE(2714)] = 62733, - [SMALL_STATE(2715)] = 62808, - [SMALL_STATE(2716)] = 62867, - [SMALL_STATE(2717)] = 62918, - [SMALL_STATE(2718)] = 62971, - [SMALL_STATE(2719)] = 63022, - [SMALL_STATE(2720)] = 63073, - [SMALL_STATE(2721)] = 63128, - [SMALL_STATE(2722)] = 63181, - [SMALL_STATE(2723)] = 63232, - [SMALL_STATE(2724)] = 63283, - [SMALL_STATE(2725)] = 63334, - [SMALL_STATE(2726)] = 63385, - [SMALL_STATE(2727)] = 63462, - [SMALL_STATE(2728)] = 63541, - [SMALL_STATE(2729)] = 63622, - [SMALL_STATE(2730)] = 63705, - [SMALL_STATE(2731)] = 63766, - [SMALL_STATE(2732)] = 63817, - [SMALL_STATE(2733)] = 63868, - [SMALL_STATE(2734)] = 63919, - [SMALL_STATE(2735)] = 63970, - [SMALL_STATE(2736)] = 64033, - [SMALL_STATE(2737)] = 64084, - [SMALL_STATE(2738)] = 64143, - [SMALL_STATE(2739)] = 64204, - [SMALL_STATE(2740)] = 64259, - [SMALL_STATE(2741)] = 64310, - [SMALL_STATE(2742)] = 64361, - [SMALL_STATE(2743)] = 64412, - [SMALL_STATE(2744)] = 64463, - [SMALL_STATE(2745)] = 64514, - [SMALL_STATE(2746)] = 64565, - [SMALL_STATE(2747)] = 64616, - [SMALL_STATE(2748)] = 64679, - [SMALL_STATE(2749)] = 64766, - [SMALL_STATE(2750)] = 64829, - [SMALL_STATE(2751)] = 64880, - [SMALL_STATE(2752)] = 64931, - [SMALL_STATE(2753)] = 64982, - [SMALL_STATE(2754)] = 65033, - [SMALL_STATE(2755)] = 65090, - [SMALL_STATE(2756)] = 65141, - [SMALL_STATE(2757)] = 65192, - [SMALL_STATE(2758)] = 65249, - [SMALL_STATE(2759)] = 65300, - [SMALL_STATE(2760)] = 65351, - [SMALL_STATE(2761)] = 65436, - [SMALL_STATE(2762)] = 65487, - [SMALL_STATE(2763)] = 65538, - [SMALL_STATE(2764)] = 65589, - [SMALL_STATE(2765)] = 65640, - [SMALL_STATE(2766)] = 65690, - [SMALL_STATE(2767)] = 65740, - [SMALL_STATE(2768)] = 65790, - [SMALL_STATE(2769)] = 65848, - [SMALL_STATE(2770)] = 65898, - [SMALL_STATE(2771)] = 65948, - [SMALL_STATE(2772)] = 66002, - [SMALL_STATE(2773)] = 66054, - [SMALL_STATE(2774)] = 66104, - [SMALL_STATE(2775)] = 66160, - [SMALL_STATE(2776)] = 66210, - [SMALL_STATE(2777)] = 66260, - [SMALL_STATE(2778)] = 66310, - [SMALL_STATE(2779)] = 66360, - [SMALL_STATE(2780)] = 66416, - [SMALL_STATE(2781)] = 66466, - [SMALL_STATE(2782)] = 66516, - [SMALL_STATE(2783)] = 66568, - [SMALL_STATE(2784)] = 66618, - [SMALL_STATE(2785)] = 66668, - [SMALL_STATE(2786)] = 66718, - [SMALL_STATE(2787)] = 66768, - [SMALL_STATE(2788)] = 66818, - [SMALL_STATE(2789)] = 66868, - [SMALL_STATE(2790)] = 66918, - [SMALL_STATE(2791)] = 66968, - [SMALL_STATE(2792)] = 67018, - [SMALL_STATE(2793)] = 67068, - [SMALL_STATE(2794)] = 67118, - [SMALL_STATE(2795)] = 67168, - [SMALL_STATE(2796)] = 67218, - [SMALL_STATE(2797)] = 67268, - [SMALL_STATE(2798)] = 67318, - [SMALL_STATE(2799)] = 67368, - [SMALL_STATE(2800)] = 67418, - [SMALL_STATE(2801)] = 67468, - [SMALL_STATE(2802)] = 67518, - [SMALL_STATE(2803)] = 67568, - [SMALL_STATE(2804)] = 67618, - [SMALL_STATE(2805)] = 67712, - [SMALL_STATE(2806)] = 67762, - [SMALL_STATE(2807)] = 67812, - [SMALL_STATE(2808)] = 67862, - [SMALL_STATE(2809)] = 67912, - [SMALL_STATE(2810)] = 67966, - [SMALL_STATE(2811)] = 68028, - [SMALL_STATE(2812)] = 68078, - [SMALL_STATE(2813)] = 68128, - [SMALL_STATE(2814)] = 68178, - [SMALL_STATE(2815)] = 68234, - [SMALL_STATE(2816)] = 68284, - [SMALL_STATE(2817)] = 68344, - [SMALL_STATE(2818)] = 68394, - [SMALL_STATE(2819)] = 68444, - [SMALL_STATE(2820)] = 68494, - [SMALL_STATE(2821)] = 68544, - [SMALL_STATE(2822)] = 68600, - [SMALL_STATE(2823)] = 68650, - [SMALL_STATE(2824)] = 68700, - [SMALL_STATE(2825)] = 68750, - [SMALL_STATE(2826)] = 68800, - [SMALL_STATE(2827)] = 68856, - [SMALL_STATE(2828)] = 68906, - [SMALL_STATE(2829)] = 68960, - [SMALL_STATE(2830)] = 69010, - [SMALL_STATE(2831)] = 69104, - [SMALL_STATE(2832)] = 69154, - [SMALL_STATE(2833)] = 69210, - [SMALL_STATE(2834)] = 69260, - [SMALL_STATE(2835)] = 69310, - [SMALL_STATE(2836)] = 69360, - [SMALL_STATE(2837)] = 69410, - [SMALL_STATE(2838)] = 69466, - [SMALL_STATE(2839)] = 69516, - [SMALL_STATE(2840)] = 69566, - [SMALL_STATE(2841)] = 69616, - [SMALL_STATE(2842)] = 69668, - [SMALL_STATE(2843)] = 69724, - [SMALL_STATE(2844)] = 69780, - [SMALL_STATE(2845)] = 69829, - [SMALL_STATE(2846)] = 69878, - [SMALL_STATE(2847)] = 69927, - [SMALL_STATE(2848)] = 69976, - [SMALL_STATE(2849)] = 70025, - [SMALL_STATE(2850)] = 70074, - [SMALL_STATE(2851)] = 70137, - [SMALL_STATE(2852)] = 70186, - [SMALL_STATE(2853)] = 70247, - [SMALL_STATE(2854)] = 70296, - [SMALL_STATE(2855)] = 70345, - [SMALL_STATE(2856)] = 70394, - [SMALL_STATE(2857)] = 70477, - [SMALL_STATE(2858)] = 70568, - [SMALL_STATE(2859)] = 70617, - [SMALL_STATE(2860)] = 70684, - [SMALL_STATE(2861)] = 70775, - [SMALL_STATE(2862)] = 70824, - [SMALL_STATE(2863)] = 70893, - [SMALL_STATE(2864)] = 70954, - [SMALL_STATE(2865)] = 71007, - [SMALL_STATE(2866)] = 71056, - [SMALL_STATE(2867)] = 71125, - [SMALL_STATE(2868)] = 71196, - [SMALL_STATE(2869)] = 71269, - [SMALL_STATE(2870)] = 71344, - [SMALL_STATE(2871)] = 71427, - [SMALL_STATE(2872)] = 71476, - [SMALL_STATE(2873)] = 71525, - [SMALL_STATE(2874)] = 71616, - [SMALL_STATE(2875)] = 71665, - [SMALL_STATE(2876)] = 71724, - [SMALL_STATE(2877)] = 71773, - [SMALL_STATE(2878)] = 71822, - [SMALL_STATE(2879)] = 71871, - [SMALL_STATE(2880)] = 71920, - [SMALL_STATE(2881)] = 71997, - [SMALL_STATE(2882)] = 72088, - [SMALL_STATE(2883)] = 72137, - [SMALL_STATE(2884)] = 72228, - [SMALL_STATE(2885)] = 72277, - [SMALL_STATE(2886)] = 72326, - [SMALL_STATE(2887)] = 72405, - [SMALL_STATE(2888)] = 72454, - [SMALL_STATE(2889)] = 72503, - [SMALL_STATE(2890)] = 72552, - [SMALL_STATE(2891)] = 72601, - [SMALL_STATE(2892)] = 72650, - [SMALL_STATE(2893)] = 72699, - [SMALL_STATE(2894)] = 72748, - [SMALL_STATE(2895)] = 72811, - [SMALL_STATE(2896)] = 72860, - [SMALL_STATE(2897)] = 72911, - [SMALL_STATE(2898)] = 73002, - [SMALL_STATE(2899)] = 73051, - [SMALL_STATE(2900)] = 73100, - [SMALL_STATE(2901)] = 73155, - [SMALL_STATE(2902)] = 73204, - [SMALL_STATE(2903)] = 73253, - [SMALL_STATE(2904)] = 73302, - [SMALL_STATE(2905)] = 73351, - [SMALL_STATE(2906)] = 73400, - [SMALL_STATE(2907)] = 73459, - [SMALL_STATE(2908)] = 73508, - [SMALL_STATE(2909)] = 73569, - [SMALL_STATE(2910)] = 73650, - [SMALL_STATE(2911)] = 73699, - [SMALL_STATE(2912)] = 73790, - [SMALL_STATE(2913)] = 73851, - [SMALL_STATE(2914)] = 73914, - [SMALL_STATE(2915)] = 74001, - [SMALL_STATE(2916)] = 74050, - [SMALL_STATE(2917)] = 74099, - [SMALL_STATE(2918)] = 74190, - [SMALL_STATE(2919)] = 74273, - [SMALL_STATE(2920)] = 74364, - [SMALL_STATE(2921)] = 74455, - [SMALL_STATE(2922)] = 74504, - [SMALL_STATE(2923)] = 74567, - [SMALL_STATE(2924)] = 74616, - [SMALL_STATE(2925)] = 74707, - [SMALL_STATE(2926)] = 74756, - [SMALL_STATE(2927)] = 74805, - [SMALL_STATE(2928)] = 74888, - [SMALL_STATE(2929)] = 74937, - [SMALL_STATE(2930)] = 75028, - [SMALL_STATE(2931)] = 75119, - [SMALL_STATE(2932)] = 75168, - [SMALL_STATE(2933)] = 75217, - [SMALL_STATE(2934)] = 75266, - [SMALL_STATE(2935)] = 75357, - [SMALL_STATE(2936)] = 75406, - [SMALL_STATE(2937)] = 75455, - [SMALL_STATE(2938)] = 75506, - [SMALL_STATE(2939)] = 75555, - [SMALL_STATE(2940)] = 75604, - [SMALL_STATE(2941)] = 75653, - [SMALL_STATE(2942)] = 75702, - [SMALL_STATE(2943)] = 75751, - [SMALL_STATE(2944)] = 75842, - [SMALL_STATE(2945)] = 75933, - [SMALL_STATE(2946)] = 75982, - [SMALL_STATE(2947)] = 76073, - [SMALL_STATE(2948)] = 76122, - [SMALL_STATE(2949)] = 76213, - [SMALL_STATE(2950)] = 76262, - [SMALL_STATE(2951)] = 76327, - [SMALL_STATE(2952)] = 76376, - [SMALL_STATE(2953)] = 76425, - [SMALL_STATE(2954)] = 76510, - [SMALL_STATE(2955)] = 76601, - [SMALL_STATE(2956)] = 76650, - [SMALL_STATE(2957)] = 76741, - [SMALL_STATE(2958)] = 76790, - [SMALL_STATE(2959)] = 76839, - [SMALL_STATE(2960)] = 76888, - [SMALL_STATE(2961)] = 76937, - [SMALL_STATE(2962)] = 76986, - [SMALL_STATE(2963)] = 77035, - [SMALL_STATE(2964)] = 77092, - [SMALL_STATE(2965)] = 77183, - [SMALL_STATE(2966)] = 77232, - [SMALL_STATE(2967)] = 77320, - [SMALL_STATE(2968)] = 77368, - [SMALL_STATE(2969)] = 77416, - [SMALL_STATE(2970)] = 77486, - [SMALL_STATE(2971)] = 77556, - [SMALL_STATE(2972)] = 77604, - [SMALL_STATE(2973)] = 77652, - [SMALL_STATE(2974)] = 77700, - [SMALL_STATE(2975)] = 77748, - [SMALL_STATE(2976)] = 77818, - [SMALL_STATE(2977)] = 77868, - [SMALL_STATE(2978)] = 77920, - [SMALL_STATE(2979)] = 78008, - [SMALL_STATE(2980)] = 78096, - [SMALL_STATE(2981)] = 78184, - [SMALL_STATE(2982)] = 78236, - [SMALL_STATE(2983)] = 78284, - [SMALL_STATE(2984)] = 78332, - [SMALL_STATE(2985)] = 78380, - [SMALL_STATE(2986)] = 78428, - [SMALL_STATE(2987)] = 78476, - [SMALL_STATE(2988)] = 78524, - [SMALL_STATE(2989)] = 78612, - [SMALL_STATE(2990)] = 78660, - [SMALL_STATE(2991)] = 78748, - [SMALL_STATE(2992)] = 78796, - [SMALL_STATE(2993)] = 78854, - [SMALL_STATE(2994)] = 78942, - [SMALL_STATE(2995)] = 78990, - [SMALL_STATE(2996)] = 79060, - [SMALL_STATE(2997)] = 79108, - [SMALL_STATE(2998)] = 79156, - [SMALL_STATE(2999)] = 79248, - [SMALL_STATE(3000)] = 79296, - [SMALL_STATE(3001)] = 79344, - [SMALL_STATE(3002)] = 79432, - [SMALL_STATE(3003)] = 79480, - [SMALL_STATE(3004)] = 79528, - [SMALL_STATE(3005)] = 79576, - [SMALL_STATE(3006)] = 79624, - [SMALL_STATE(3007)] = 79672, - [SMALL_STATE(3008)] = 79734, - [SMALL_STATE(3009)] = 79782, - [SMALL_STATE(3010)] = 79830, - [SMALL_STATE(3011)] = 79878, - [SMALL_STATE(3012)] = 79926, - [SMALL_STATE(3013)] = 80014, - [SMALL_STATE(3014)] = 80062, - [SMALL_STATE(3015)] = 80110, - [SMALL_STATE(3016)] = 80158, - [SMALL_STATE(3017)] = 80206, - [SMALL_STATE(3018)] = 80264, - [SMALL_STATE(3019)] = 80312, - [SMALL_STATE(3020)] = 80372, - [SMALL_STATE(3021)] = 80420, - [SMALL_STATE(3022)] = 80488, - [SMALL_STATE(3023)] = 80536, - [SMALL_STATE(3024)] = 80584, - [SMALL_STATE(3025)] = 80632, - [SMALL_STATE(3026)] = 80680, - [SMALL_STATE(3027)] = 80740, - [SMALL_STATE(3028)] = 80788, - [SMALL_STATE(3029)] = 80836, - [SMALL_STATE(3030)] = 80924, - [SMALL_STATE(3031)] = 81012, - [SMALL_STATE(3032)] = 81100, - [SMALL_STATE(3033)] = 81184, - [SMALL_STATE(3034)] = 81254, - [SMALL_STATE(3035)] = 81342, - [SMALL_STATE(3036)] = 81430, - [SMALL_STATE(3037)] = 81518, - [SMALL_STATE(3038)] = 81566, - [SMALL_STATE(3039)] = 81650, - [SMALL_STATE(3040)] = 81698, - [SMALL_STATE(3041)] = 81786, - [SMALL_STATE(3042)] = 81870, - [SMALL_STATE(3043)] = 81928, - [SMALL_STATE(3044)] = 81976, - [SMALL_STATE(3045)] = 82030, - [SMALL_STATE(3046)] = 82082, - [SMALL_STATE(3047)] = 82174, - [SMALL_STATE(3048)] = 82222, - [SMALL_STATE(3049)] = 82270, - [SMALL_STATE(3050)] = 82318, - [SMALL_STATE(3051)] = 82378, - [SMALL_STATE(3052)] = 82444, - [SMALL_STATE(3053)] = 82492, - [SMALL_STATE(3054)] = 82540, - [SMALL_STATE(3055)] = 82588, - [SMALL_STATE(3056)] = 82676, - [SMALL_STATE(3057)] = 82740, - [SMALL_STATE(3058)] = 82788, - [SMALL_STATE(3059)] = 82836, - [SMALL_STATE(3060)] = 82884, - [SMALL_STATE(3061)] = 82972, - [SMALL_STATE(3062)] = 83020, - [SMALL_STATE(3063)] = 83068, - [SMALL_STATE(3064)] = 83156, - [SMALL_STATE(3065)] = 83204, - [SMALL_STATE(3066)] = 83272, - [SMALL_STATE(3067)] = 83324, - [SMALL_STATE(3068)] = 83372, - [SMALL_STATE(3069)] = 83444, - [SMALL_STATE(3070)] = 83528, - [SMALL_STATE(3071)] = 83602, - [SMALL_STATE(3072)] = 83650, - [SMALL_STATE(3073)] = 83736, - [SMALL_STATE(3074)] = 83786, - [SMALL_STATE(3075)] = 83834, - [SMALL_STATE(3076)] = 83886, - [SMALL_STATE(3077)] = 83934, - [SMALL_STATE(3078)] = 84022, - [SMALL_STATE(3079)] = 84098, - [SMALL_STATE(3080)] = 84148, - [SMALL_STATE(3081)] = 84196, - [SMALL_STATE(3082)] = 84244, - [SMALL_STATE(3083)] = 84292, - [SMALL_STATE(3084)] = 84340, - [SMALL_STATE(3085)] = 84428, - [SMALL_STATE(3086)] = 84498, - [SMALL_STATE(3087)] = 84546, - [SMALL_STATE(3088)] = 84594, - [SMALL_STATE(3089)] = 84642, - [SMALL_STATE(3090)] = 84730, - [SMALL_STATE(3091)] = 84800, - [SMALL_STATE(3092)] = 84854, - [SMALL_STATE(3093)] = 84902, - [SMALL_STATE(3094)] = 84990, - [SMALL_STATE(3095)] = 85040, - [SMALL_STATE(3096)] = 85094, - [SMALL_STATE(3097)] = 85142, - [SMALL_STATE(3098)] = 85230, - [SMALL_STATE(3099)] = 85278, - [SMALL_STATE(3100)] = 85326, - [SMALL_STATE(3101)] = 85374, - [SMALL_STATE(3102)] = 85462, - [SMALL_STATE(3103)] = 85510, - [SMALL_STATE(3104)] = 85598, - [SMALL_STATE(3105)] = 85648, - [SMALL_STATE(3106)] = 85736, - [SMALL_STATE(3107)] = 85824, - [SMALL_STATE(3108)] = 85872, - [SMALL_STATE(3109)] = 85960, - [SMALL_STATE(3110)] = 86008, - [SMALL_STATE(3111)] = 86086, - [SMALL_STATE(3112)] = 86134, - [SMALL_STATE(3113)] = 86214, - [SMALL_STATE(3114)] = 86296, - [SMALL_STATE(3115)] = 86344, - [SMALL_STATE(3116)] = 86404, - [SMALL_STATE(3117)] = 86452, - [SMALL_STATE(3118)] = 86514, - [SMALL_STATE(3119)] = 86561, - [SMALL_STATE(3120)] = 86608, - [SMALL_STATE(3121)] = 86655, - [SMALL_STATE(3122)] = 86702, - [SMALL_STATE(3123)] = 86749, - [SMALL_STATE(3124)] = 86796, - [SMALL_STATE(3125)] = 86843, - [SMALL_STATE(3126)] = 86890, - [SMALL_STATE(3127)] = 86937, - [SMALL_STATE(3128)] = 86996, - [SMALL_STATE(3129)] = 87055, - [SMALL_STATE(3130)] = 87114, - [SMALL_STATE(3131)] = 87161, - [SMALL_STATE(3132)] = 87220, - [SMALL_STATE(3133)] = 87267, - [SMALL_STATE(3134)] = 87314, - [SMALL_STATE(3135)] = 87361, - [SMALL_STATE(3136)] = 87420, - [SMALL_STATE(3137)] = 87479, - [SMALL_STATE(3138)] = 87538, - [SMALL_STATE(3139)] = 87593, - [SMALL_STATE(3140)] = 87640, - [SMALL_STATE(3141)] = 87699, - [SMALL_STATE(3142)] = 87746, - [SMALL_STATE(3143)] = 87793, - [SMALL_STATE(3144)] = 87840, - [SMALL_STATE(3145)] = 87887, - [SMALL_STATE(3146)] = 87934, - [SMALL_STATE(3147)] = 87981, - [SMALL_STATE(3148)] = 88028, - [SMALL_STATE(3149)] = 88079, - [SMALL_STATE(3150)] = 88126, - [SMALL_STATE(3151)] = 88173, - [SMALL_STATE(3152)] = 88220, - [SMALL_STATE(3153)] = 88267, - [SMALL_STATE(3154)] = 88314, - [SMALL_STATE(3155)] = 88361, - [SMALL_STATE(3156)] = 88408, - [SMALL_STATE(3157)] = 88455, - [SMALL_STATE(3158)] = 88502, - [SMALL_STATE(3159)] = 88549, - [SMALL_STATE(3160)] = 88596, - [SMALL_STATE(3161)] = 88643, - [SMALL_STATE(3162)] = 88690, - [SMALL_STATE(3163)] = 88737, - [SMALL_STATE(3164)] = 88784, - [SMALL_STATE(3165)] = 88831, - [SMALL_STATE(3166)] = 88878, - [SMALL_STATE(3167)] = 88945, - [SMALL_STATE(3168)] = 88992, - [SMALL_STATE(3169)] = 89039, - [SMALL_STATE(3170)] = 89086, - [SMALL_STATE(3171)] = 89133, - [SMALL_STATE(3172)] = 89196, - [SMALL_STATE(3173)] = 89243, - [SMALL_STATE(3174)] = 89290, - [SMALL_STATE(3175)] = 89337, - [SMALL_STATE(3176)] = 89384, - [SMALL_STATE(3177)] = 89431, - [SMALL_STATE(3178)] = 89478, - [SMALL_STATE(3179)] = 89525, - [SMALL_STATE(3180)] = 89584, - [SMALL_STATE(3181)] = 89631, - [SMALL_STATE(3182)] = 89686, - [SMALL_STATE(3183)] = 89733, - [SMALL_STATE(3184)] = 89780, - [SMALL_STATE(3185)] = 89835, - [SMALL_STATE(3186)] = 89882, - [SMALL_STATE(3187)] = 89929, - [SMALL_STATE(3188)] = 89976, - [SMALL_STATE(3189)] = 90027, - [SMALL_STATE(3190)] = 90074, - [SMALL_STATE(3191)] = 90121, - [SMALL_STATE(3192)] = 90168, - [SMALL_STATE(3193)] = 90215, - [SMALL_STATE(3194)] = 90262, - [SMALL_STATE(3195)] = 90309, - [SMALL_STATE(3196)] = 90356, - [SMALL_STATE(3197)] = 90407, - [SMALL_STATE(3198)] = 90454, - [SMALL_STATE(3199)] = 90501, - [SMALL_STATE(3200)] = 90548, - [SMALL_STATE(3201)] = 90615, - [SMALL_STATE(3202)] = 90662, - [SMALL_STATE(3203)] = 90709, - [SMALL_STATE(3204)] = 90756, - [SMALL_STATE(3205)] = 90803, - [SMALL_STATE(3206)] = 90850, - [SMALL_STATE(3207)] = 90897, - [SMALL_STATE(3208)] = 90944, - [SMALL_STATE(3209)] = 90991, - [SMALL_STATE(3210)] = 91051, - [SMALL_STATE(3211)] = 91109, - [SMALL_STATE(3212)] = 91155, - [SMALL_STATE(3213)] = 91213, - [SMALL_STATE(3214)] = 91271, - [SMALL_STATE(3215)] = 91321, - [SMALL_STATE(3216)] = 91373, - [SMALL_STATE(3217)] = 91425, - [SMALL_STATE(3218)] = 91477, - [SMALL_STATE(3219)] = 91535, - [SMALL_STATE(3220)] = 91589, - [SMALL_STATE(3221)] = 91641, - [SMALL_STATE(3222)] = 91703, - [SMALL_STATE(3223)] = 91761, - [SMALL_STATE(3224)] = 91823, - [SMALL_STATE(3225)] = 91881, - [SMALL_STATE(3226)] = 91939, - [SMALL_STATE(3227)] = 91999, - [SMALL_STATE(3228)] = 92059, - [SMALL_STATE(3229)] = 92105, - [SMALL_STATE(3230)] = 92165, - [SMALL_STATE(3231)] = 92217, - [SMALL_STATE(3232)] = 92277, - [SMALL_STATE(3233)] = 92337, - [SMALL_STATE(3234)] = 92399, - [SMALL_STATE(3235)] = 92485, - [SMALL_STATE(3236)] = 92547, - [SMALL_STATE(3237)] = 92599, - [SMALL_STATE(3238)] = 92685, - [SMALL_STATE(3239)] = 92743, - [SMALL_STATE(3240)] = 92801, - [SMALL_STATE(3241)] = 92861, - [SMALL_STATE(3242)] = 92921, - [SMALL_STATE(3243)] = 92967, - [SMALL_STATE(3244)] = 93027, - [SMALL_STATE(3245)] = 93104, - [SMALL_STATE(3246)] = 93149, - [SMALL_STATE(3247)] = 93210, - [SMALL_STATE(3248)] = 93287, - [SMALL_STATE(3249)] = 93348, - [SMALL_STATE(3250)] = 93425, - [SMALL_STATE(3251)] = 93486, - [SMALL_STATE(3252)] = 93563, - [SMALL_STATE(3253)] = 93624, - [SMALL_STATE(3254)] = 93701, - [SMALL_STATE(3255)] = 93778, - [SMALL_STATE(3256)] = 93855, - [SMALL_STATE(3257)] = 93932, - [SMALL_STATE(3258)] = 94009, - [SMALL_STATE(3259)] = 94086, - [SMALL_STATE(3260)] = 94163, - [SMALL_STATE(3261)] = 94240, - [SMALL_STATE(3262)] = 94317, - [SMALL_STATE(3263)] = 94394, - [SMALL_STATE(3264)] = 94445, - [SMALL_STATE(3265)] = 94522, - [SMALL_STATE(3266)] = 94599, - [SMALL_STATE(3267)] = 94650, - [SMALL_STATE(3268)] = 94695, - [SMALL_STATE(3269)] = 94772, - [SMALL_STATE(3270)] = 94849, - [SMALL_STATE(3271)] = 94897, - [SMALL_STATE(3272)] = 94977, - [SMALL_STATE(3273)] = 95031, - [SMALL_STATE(3274)] = 95085, - [SMALL_STATE(3275)] = 95165, - [SMALL_STATE(3276)] = 95219, - [SMALL_STATE(3277)] = 95265, - [SMALL_STATE(3278)] = 95309, - [SMALL_STATE(3279)] = 95369, - [SMALL_STATE(3280)] = 95413, - [SMALL_STATE(3281)] = 95471, - [SMALL_STATE(3282)] = 95531, - [SMALL_STATE(3283)] = 95575, - [SMALL_STATE(3284)] = 95647, - [SMALL_STATE(3285)] = 95719, - [SMALL_STATE(3286)] = 95767, - [SMALL_STATE(3287)] = 95819, - [SMALL_STATE(3288)] = 95867, - [SMALL_STATE(3289)] = 95927, - [SMALL_STATE(3290)] = 95975, - [SMALL_STATE(3291)] = 96035, - [SMALL_STATE(3292)] = 96093, - [SMALL_STATE(3293)] = 96151, - [SMALL_STATE(3294)] = 96222, - [SMALL_STATE(3295)] = 96265, - [SMALL_STATE(3296)] = 96308, - [SMALL_STATE(3297)] = 96357, - [SMALL_STATE(3298)] = 96428, - [SMALL_STATE(3299)] = 96499, - [SMALL_STATE(3300)] = 96546, - [SMALL_STATE(3301)] = 96589, - [SMALL_STATE(3302)] = 96632, - [SMALL_STATE(3303)] = 96675, - [SMALL_STATE(3304)] = 96718, - [SMALL_STATE(3305)] = 96763, - [SMALL_STATE(3306)] = 96806, - [SMALL_STATE(3307)] = 96877, - [SMALL_STATE(3308)] = 96926, - [SMALL_STATE(3309)] = 96969, - [SMALL_STATE(3310)] = 97020, - [SMALL_STATE(3311)] = 97063, - [SMALL_STATE(3312)] = 97106, - [SMALL_STATE(3313)] = 97177, - [SMALL_STATE(3314)] = 97226, - [SMALL_STATE(3315)] = 97271, - [SMALL_STATE(3316)] = 97316, - [SMALL_STATE(3317)] = 97359, - [SMALL_STATE(3318)] = 97430, - [SMALL_STATE(3319)] = 97477, - [SMALL_STATE(3320)] = 97548, - [SMALL_STATE(3321)] = 97619, - [SMALL_STATE(3322)] = 97662, - [SMALL_STATE(3323)] = 97733, - [SMALL_STATE(3324)] = 97776, - [SMALL_STATE(3325)] = 97825, - [SMALL_STATE(3326)] = 97868, - [SMALL_STATE(3327)] = 97947, - [SMALL_STATE(3328)] = 97990, - [SMALL_STATE(3329)] = 98061, - [SMALL_STATE(3330)] = 98112, - [SMALL_STATE(3331)] = 98154, - [SMALL_STATE(3332)] = 98196, - [SMALL_STATE(3333)] = 98238, - [SMALL_STATE(3334)] = 98322, - [SMALL_STATE(3335)] = 98364, - [SMALL_STATE(3336)] = 98406, - [SMALL_STATE(3337)] = 98448, - [SMALL_STATE(3338)] = 98490, - [SMALL_STATE(3339)] = 98532, - [SMALL_STATE(3340)] = 98574, - [SMALL_STATE(3341)] = 98616, - [SMALL_STATE(3342)] = 98658, - [SMALL_STATE(3343)] = 98700, - [SMALL_STATE(3344)] = 98742, - [SMALL_STATE(3345)] = 98784, - [SMALL_STATE(3346)] = 98826, - [SMALL_STATE(3347)] = 98868, - [SMALL_STATE(3348)] = 98910, - [SMALL_STATE(3349)] = 98952, - [SMALL_STATE(3350)] = 98994, - [SMALL_STATE(3351)] = 99036, - [SMALL_STATE(3352)] = 99078, - [SMALL_STATE(3353)] = 99120, - [SMALL_STATE(3354)] = 99162, - [SMALL_STATE(3355)] = 99204, - [SMALL_STATE(3356)] = 99246, - [SMALL_STATE(3357)] = 99288, - [SMALL_STATE(3358)] = 99330, - [SMALL_STATE(3359)] = 99376, - [SMALL_STATE(3360)] = 99418, - [SMALL_STATE(3361)] = 99460, - [SMALL_STATE(3362)] = 99502, - [SMALL_STATE(3363)] = 99550, - [SMALL_STATE(3364)] = 99592, - [SMALL_STATE(3365)] = 99640, - [SMALL_STATE(3366)] = 99682, - [SMALL_STATE(3367)] = 99724, - [SMALL_STATE(3368)] = 99766, - [SMALL_STATE(3369)] = 99808, - [SMALL_STATE(3370)] = 99856, - [SMALL_STATE(3371)] = 99898, - [SMALL_STATE(3372)] = 99940, - [SMALL_STATE(3373)] = 99982, - [SMALL_STATE(3374)] = 100024, - [SMALL_STATE(3375)] = 100066, - [SMALL_STATE(3376)] = 100108, - [SMALL_STATE(3377)] = 100150, - [SMALL_STATE(3378)] = 100192, - [SMALL_STATE(3379)] = 100234, - [SMALL_STATE(3380)] = 100276, - [SMALL_STATE(3381)] = 100324, - [SMALL_STATE(3382)] = 100366, - [SMALL_STATE(3383)] = 100414, - [SMALL_STATE(3384)] = 100456, - [SMALL_STATE(3385)] = 100498, - [SMALL_STATE(3386)] = 100540, - [SMALL_STATE(3387)] = 100610, - [SMALL_STATE(3388)] = 100680, - [SMALL_STATE(3389)] = 100722, - [SMALL_STATE(3390)] = 100764, - [SMALL_STATE(3391)] = 100806, - [SMALL_STATE(3392)] = 100858, - [SMALL_STATE(3393)] = 100900, - [SMALL_STATE(3394)] = 100952, - [SMALL_STATE(3395)] = 100996, - [SMALL_STATE(3396)] = 101038, - [SMALL_STATE(3397)] = 101080, - [SMALL_STATE(3398)] = 101122, - [SMALL_STATE(3399)] = 101164, - [SMALL_STATE(3400)] = 101206, - [SMALL_STATE(3401)] = 101248, - [SMALL_STATE(3402)] = 101290, - [SMALL_STATE(3403)] = 101332, - [SMALL_STATE(3404)] = 101374, - [SMALL_STATE(3405)] = 101416, - [SMALL_STATE(3406)] = 101458, - [SMALL_STATE(3407)] = 101500, - [SMALL_STATE(3408)] = 101542, - [SMALL_STATE(3409)] = 101584, - [SMALL_STATE(3410)] = 101626, - [SMALL_STATE(3411)] = 101668, - [SMALL_STATE(3412)] = 101710, - [SMALL_STATE(3413)] = 101752, - [SMALL_STATE(3414)] = 101794, - [SMALL_STATE(3415)] = 101836, - [SMALL_STATE(3416)] = 101887, - [SMALL_STATE(3417)] = 101928, - [SMALL_STATE(3418)] = 101991, - [SMALL_STATE(3419)] = 102040, - [SMALL_STATE(3420)] = 102107, - [SMALL_STATE(3421)] = 102152, - [SMALL_STATE(3422)] = 102197, - [SMALL_STATE(3423)] = 102250, - [SMALL_STATE(3424)] = 102291, - [SMALL_STATE(3425)] = 102358, - [SMALL_STATE(3426)] = 102411, - [SMALL_STATE(3427)] = 102452, - [SMALL_STATE(3428)] = 102503, - [SMALL_STATE(3429)] = 102544, - [SMALL_STATE(3430)] = 102585, - [SMALL_STATE(3431)] = 102638, - [SMALL_STATE(3432)] = 102703, - [SMALL_STATE(3433)] = 102744, - [SMALL_STATE(3434)] = 102787, - [SMALL_STATE(3435)] = 102828, - [SMALL_STATE(3436)] = 102871, - [SMALL_STATE(3437)] = 102936, - [SMALL_STATE(3438)] = 102977, - [SMALL_STATE(3439)] = 103020, - [SMALL_STATE(3440)] = 103061, - [SMALL_STATE(3441)] = 103112, - [SMALL_STATE(3442)] = 103177, - [SMALL_STATE(3443)] = 103240, - [SMALL_STATE(3444)] = 103281, - [SMALL_STATE(3445)] = 103322, - [SMALL_STATE(3446)] = 103369, - [SMALL_STATE(3447)] = 103410, - [SMALL_STATE(3448)] = 103457, - [SMALL_STATE(3449)] = 103500, - [SMALL_STATE(3450)] = 103541, - [SMALL_STATE(3451)] = 103586, - [SMALL_STATE(3452)] = 103637, - [SMALL_STATE(3453)] = 103678, - [SMALL_STATE(3454)] = 103731, - [SMALL_STATE(3455)] = 103784, - [SMALL_STATE(3456)] = 103831, - [SMALL_STATE(3457)] = 103878, - [SMALL_STATE(3458)] = 103943, - [SMALL_STATE(3459)] = 103984, - [SMALL_STATE(3460)] = 104058, - [SMALL_STATE(3461)] = 104138, - [SMALL_STATE(3462)] = 104206, - [SMALL_STATE(3463)] = 104272, - [SMALL_STATE(3464)] = 104348, - [SMALL_STATE(3465)] = 104416, - [SMALL_STATE(3466)] = 104480, - [SMALL_STATE(3467)] = 104542, - [SMALL_STATE(3468)] = 104610, - [SMALL_STATE(3469)] = 104690, - [SMALL_STATE(3470)] = 104760, - [SMALL_STATE(3471)] = 104806, - [SMALL_STATE(3472)] = 104882, - [SMALL_STATE(3473)] = 104942, - [SMALL_STATE(3474)] = 104988, - [SMALL_STATE(3475)] = 105068, - [SMALL_STATE(3476)] = 105108, - [SMALL_STATE(3477)] = 105166, - [SMALL_STATE(3478)] = 105242, - [SMALL_STATE(3479)] = 105308, - [SMALL_STATE(3480)] = 105388, - [SMALL_STATE(3481)] = 105468, - [SMALL_STATE(3482)] = 105540, - [SMALL_STATE(3483)] = 105608, - [SMALL_STATE(3484)] = 105688, - [SMALL_STATE(3485)] = 105760, - [SMALL_STATE(3486)] = 105800, - [SMALL_STATE(3487)] = 105840, - [SMALL_STATE(3488)] = 105880, - [SMALL_STATE(3489)] = 105956, - [SMALL_STATE(3490)] = 106036, - [SMALL_STATE(3491)] = 106116, - [SMALL_STATE(3492)] = 106178, - [SMALL_STATE(3493)] = 106234, - [SMALL_STATE(3494)] = 106298, - [SMALL_STATE(3495)] = 106376, - [SMALL_STATE(3496)] = 106456, - [SMALL_STATE(3497)] = 106536, - [SMALL_STATE(3498)] = 106616, - [SMALL_STATE(3499)] = 106662, - [SMALL_STATE(3500)] = 106742, - [SMALL_STATE(3501)] = 106822, - [SMALL_STATE(3502)] = 106868, - [SMALL_STATE(3503)] = 106912, - [SMALL_STATE(3504)] = 106992, - [SMALL_STATE(3505)] = 107032, - [SMALL_STATE(3506)] = 107112, - [SMALL_STATE(3507)] = 107198, - [SMALL_STATE(3508)] = 107264, - [SMALL_STATE(3509)] = 107344, - [SMALL_STATE(3510)] = 107412, - [SMALL_STATE(3511)] = 107452, - [SMALL_STATE(3512)] = 107508, - [SMALL_STATE(3513)] = 107588, - [SMALL_STATE(3514)] = 107628, - [SMALL_STATE(3515)] = 107671, - [SMALL_STATE(3516)] = 107752, - [SMALL_STATE(3517)] = 107835, - [SMALL_STATE(3518)] = 107918, - [SMALL_STATE(3519)] = 107965, - [SMALL_STATE(3520)] = 108048, - [SMALL_STATE(3521)] = 108131, - [SMALL_STATE(3522)] = 108172, - [SMALL_STATE(3523)] = 108255, - [SMALL_STATE(3524)] = 108338, - [SMALL_STATE(3525)] = 108421, - [SMALL_STATE(3526)] = 108464, - [SMALL_STATE(3527)] = 108547, - [SMALL_STATE(3528)] = 108594, - [SMALL_STATE(3529)] = 108637, - [SMALL_STATE(3530)] = 108720, - [SMALL_STATE(3531)] = 108803, - [SMALL_STATE(3532)] = 108848, - [SMALL_STATE(3533)] = 108903, - [SMALL_STATE(3534)] = 108986, - [SMALL_STATE(3535)] = 109069, - [SMALL_STATE(3536)] = 109152, - [SMALL_STATE(3537)] = 109235, - [SMALL_STATE(3538)] = 109318, - [SMALL_STATE(3539)] = 109401, - [SMALL_STATE(3540)] = 109440, - [SMALL_STATE(3541)] = 109523, - [SMALL_STATE(3542)] = 109606, - [SMALL_STATE(3543)] = 109689, - [SMALL_STATE(3544)] = 109756, - [SMALL_STATE(3545)] = 109839, - [SMALL_STATE(3546)] = 109880, - [SMALL_STATE(3547)] = 109963, - [SMALL_STATE(3548)] = 110046, - [SMALL_STATE(3549)] = 110129, - [SMALL_STATE(3550)] = 110212, - [SMALL_STATE(3551)] = 110251, - [SMALL_STATE(3552)] = 110334, - [SMALL_STATE(3553)] = 110417, - [SMALL_STATE(3554)] = 110500, - [SMALL_STATE(3555)] = 110583, - [SMALL_STATE(3556)] = 110666, - [SMALL_STATE(3557)] = 110705, - [SMALL_STATE(3558)] = 110786, - [SMALL_STATE(3559)] = 110849, - [SMALL_STATE(3560)] = 110916, - [SMALL_STATE(3561)] = 110981, - [SMALL_STATE(3562)] = 111044, - [SMALL_STATE(3563)] = 111127, - [SMALL_STATE(3564)] = 111192, - [SMALL_STATE(3565)] = 111275, - [SMALL_STATE(3566)] = 111353, - [SMALL_STATE(3567)] = 111427, - [SMALL_STATE(3568)] = 111485, - [SMALL_STATE(3569)] = 111533, - [SMALL_STATE(3570)] = 111611, - [SMALL_STATE(3571)] = 111691, - [SMALL_STATE(3572)] = 111741, - [SMALL_STATE(3573)] = 111815, - [SMALL_STATE(3574)] = 111853, - [SMALL_STATE(3575)] = 111927, - [SMALL_STATE(3576)] = 112005, - [SMALL_STATE(3577)] = 112079, - [SMALL_STATE(3578)] = 112159, - [SMALL_STATE(3579)] = 112197, - [SMALL_STATE(3580)] = 112277, - [SMALL_STATE(3581)] = 112357, - [SMALL_STATE(3582)] = 112437, - [SMALL_STATE(3583)] = 112475, - [SMALL_STATE(3584)] = 112555, - [SMALL_STATE(3585)] = 112609, - [SMALL_STATE(3586)] = 112647, - [SMALL_STATE(3587)] = 112727, - [SMALL_STATE(3588)] = 112801, - [SMALL_STATE(3589)] = 112875, - [SMALL_STATE(3590)] = 112955, - [SMALL_STATE(3591)] = 113009, - [SMALL_STATE(3592)] = 113067, - [SMALL_STATE(3593)] = 113117, - [SMALL_STATE(3594)] = 113197, - [SMALL_STATE(3595)] = 113269, - [SMALL_STATE(3596)] = 113347, - [SMALL_STATE(3597)] = 113425, - [SMALL_STATE(3598)] = 113499, - [SMALL_STATE(3599)] = 113573, - [SMALL_STATE(3600)] = 113653, - [SMALL_STATE(3601)] = 113723, - [SMALL_STATE(3602)] = 113803, - [SMALL_STATE(3603)] = 113873, - [SMALL_STATE(3604)] = 113953, - [SMALL_STATE(3605)] = 113993, - [SMALL_STATE(3606)] = 114073, - [SMALL_STATE(3607)] = 114141, - [SMALL_STATE(3608)] = 114217, - [SMALL_STATE(3609)] = 114295, - [SMALL_STATE(3610)] = 114375, - [SMALL_STATE(3611)] = 114455, - [SMALL_STATE(3612)] = 114535, - [SMALL_STATE(3613)] = 114615, - [SMALL_STATE(3614)] = 114695, - [SMALL_STATE(3615)] = 114733, - [SMALL_STATE(3616)] = 114795, - [SMALL_STATE(3617)] = 114875, - [SMALL_STATE(3618)] = 114913, - [SMALL_STATE(3619)] = 114979, - [SMALL_STATE(3620)] = 115053, - [SMALL_STATE(3621)] = 115127, - [SMALL_STATE(3622)] = 115191, - [SMALL_STATE(3623)] = 115271, - [SMALL_STATE(3624)] = 115351, - [SMALL_STATE(3625)] = 115425, - [SMALL_STATE(3626)] = 115505, - [SMALL_STATE(3627)] = 115585, - [SMALL_STATE(3628)] = 115665, - [SMALL_STATE(3629)] = 115745, - [SMALL_STATE(3630)] = 115807, - [SMALL_STATE(3631)] = 115887, - [SMALL_STATE(3632)] = 115967, - [SMALL_STATE(3633)] = 116023, - [SMALL_STATE(3634)] = 116083, - [SMALL_STATE(3635)] = 116161, - [SMALL_STATE(3636)] = 116237, - [SMALL_STATE(3637)] = 116275, - [SMALL_STATE(3638)] = 116355, - [SMALL_STATE(3639)] = 116429, - [SMALL_STATE(3640)] = 116507, - [SMALL_STATE(3641)] = 116581, - [SMALL_STATE(3642)] = 116661, - [SMALL_STATE(3643)] = 116741, - [SMALL_STATE(3644)] = 116821, - [SMALL_STATE(3645)] = 116859, - [SMALL_STATE(3646)] = 116939, - [SMALL_STATE(3647)] = 117019, - [SMALL_STATE(3648)] = 117099, - [SMALL_STATE(3649)] = 117179, - [SMALL_STATE(3650)] = 117259, - [SMALL_STATE(3651)] = 117339, - [SMALL_STATE(3652)] = 117413, - [SMALL_STATE(3653)] = 117493, - [SMALL_STATE(3654)] = 117573, - [SMALL_STATE(3655)] = 117653, - [SMALL_STATE(3656)] = 117733, - [SMALL_STATE(3657)] = 117813, - [SMALL_STATE(3658)] = 117873, - [SMALL_STATE(3659)] = 117953, - [SMALL_STATE(3660)] = 118031, - [SMALL_STATE(3661)] = 118091, - [SMALL_STATE(3662)] = 118129, - [SMALL_STATE(3663)] = 118167, - [SMALL_STATE(3664)] = 118221, - [SMALL_STATE(3665)] = 118293, - [SMALL_STATE(3666)] = 118363, - [SMALL_STATE(3667)] = 118443, - [SMALL_STATE(3668)] = 118513, - [SMALL_STATE(3669)] = 118581, - [SMALL_STATE(3670)] = 118661, - [SMALL_STATE(3671)] = 118741, - [SMALL_STATE(3672)] = 118815, - [SMALL_STATE(3673)] = 118881, - [SMALL_STATE(3674)] = 118919, - [SMALL_STATE(3675)] = 118983, - [SMALL_STATE(3676)] = 119043, - [SMALL_STATE(3677)] = 119099, - [SMALL_STATE(3678)] = 119157, - [SMALL_STATE(3679)] = 119237, - [SMALL_STATE(3680)] = 119311, - [SMALL_STATE(3681)] = 119349, - [SMALL_STATE(3682)] = 119387, - [SMALL_STATE(3683)] = 119467, - [SMALL_STATE(3684)] = 119547, - [SMALL_STATE(3685)] = 119585, - [SMALL_STATE(3686)] = 119659, - [SMALL_STATE(3687)] = 119733, - [SMALL_STATE(3688)] = 119813, - [SMALL_STATE(3689)] = 119887, - [SMALL_STATE(3690)] = 119967, - [SMALL_STATE(3691)] = 120013, - [SMALL_STATE(3692)] = 120087, - [SMALL_STATE(3693)] = 120167, - [SMALL_STATE(3694)] = 120247, - [SMALL_STATE(3695)] = 120321, - [SMALL_STATE(3696)] = 120399, - [SMALL_STATE(3697)] = 120473, - [SMALL_STATE(3698)] = 120553, - [SMALL_STATE(3699)] = 120591, - [SMALL_STATE(3700)] = 120671, - [SMALL_STATE(3701)] = 120751, - [SMALL_STATE(3702)] = 120791, - [SMALL_STATE(3703)] = 120869, - [SMALL_STATE(3704)] = 120907, - [SMALL_STATE(3705)] = 120987, - [SMALL_STATE(3706)] = 121061, - [SMALL_STATE(3707)] = 121135, - [SMALL_STATE(3708)] = 121215, - [SMALL_STATE(3709)] = 121293, - [SMALL_STATE(3710)] = 121331, - [SMALL_STATE(3711)] = 121409, - [SMALL_STATE(3712)] = 121469, - [SMALL_STATE(3713)] = 121543, - [SMALL_STATE(3714)] = 121591, - [SMALL_STATE(3715)] = 121649, - [SMALL_STATE(3716)] = 121703, - [SMALL_STATE(3717)] = 121777, - [SMALL_STATE(3718)] = 121851, - [SMALL_STATE(3719)] = 121889, - [SMALL_STATE(3720)] = 121947, - [SMALL_STATE(3721)] = 122021, - [SMALL_STATE(3722)] = 122095, - [SMALL_STATE(3723)] = 122145, - [SMALL_STATE(3724)] = 122219, - [SMALL_STATE(3725)] = 122299, - [SMALL_STATE(3726)] = 122379, - [SMALL_STATE(3727)] = 122453, - [SMALL_STATE(3728)] = 122533, - [SMALL_STATE(3729)] = 122613, - [SMALL_STATE(3730)] = 122687, - [SMALL_STATE(3731)] = 122767, - [SMALL_STATE(3732)] = 122841, - [SMALL_STATE(3733)] = 122921, - [SMALL_STATE(3734)] = 122959, - [SMALL_STATE(3735)] = 123023, - [SMALL_STATE(3736)] = 123077, - [SMALL_STATE(3737)] = 123151, - [SMALL_STATE(3738)] = 123225, - [SMALL_STATE(3739)] = 123305, - [SMALL_STATE(3740)] = 123343, - [SMALL_STATE(3741)] = 123417, - [SMALL_STATE(3742)] = 123497, - [SMALL_STATE(3743)] = 123571, - [SMALL_STATE(3744)] = 123651, - [SMALL_STATE(3745)] = 123731, - [SMALL_STATE(3746)] = 123811, - [SMALL_STATE(3747)] = 123849, - [SMALL_STATE(3748)] = 123909, - [SMALL_STATE(3749)] = 123947, - [SMALL_STATE(3750)] = 124021, - [SMALL_STATE(3751)] = 124101, - [SMALL_STATE(3752)] = 124181, - [SMALL_STATE(3753)] = 124255, - [SMALL_STATE(3754)] = 124335, - [SMALL_STATE(3755)] = 124409, - [SMALL_STATE(3756)] = 124489, - [SMALL_STATE(3757)] = 124549, - [SMALL_STATE(3758)] = 124623, - [SMALL_STATE(3759)] = 124703, - [SMALL_STATE(3760)] = 124777, - [SMALL_STATE(3761)] = 124851, - [SMALL_STATE(3762)] = 124915, - [SMALL_STATE(3763)] = 124995, - [SMALL_STATE(3764)] = 125075, - [SMALL_STATE(3765)] = 125155, - [SMALL_STATE(3766)] = 125235, - [SMALL_STATE(3767)] = 125309, - [SMALL_STATE(3768)] = 125389, - [SMALL_STATE(3769)] = 125469, - [SMALL_STATE(3770)] = 125543, - [SMALL_STATE(3771)] = 125623, - [SMALL_STATE(3772)] = 125703, - [SMALL_STATE(3773)] = 125777, - [SMALL_STATE(3774)] = 125851, - [SMALL_STATE(3775)] = 125931, - [SMALL_STATE(3776)] = 126008, - [SMALL_STATE(3777)] = 126085, - [SMALL_STATE(3778)] = 126162, - [SMALL_STATE(3779)] = 126239, - [SMALL_STATE(3780)] = 126316, - [SMALL_STATE(3781)] = 126385, - [SMALL_STATE(3782)] = 126452, - [SMALL_STATE(3783)] = 126499, - [SMALL_STATE(3784)] = 126564, - [SMALL_STATE(3785)] = 126641, - [SMALL_STATE(3786)] = 126718, - [SMALL_STATE(3787)] = 126781, - [SMALL_STATE(3788)] = 126840, - [SMALL_STATE(3789)] = 126895, - [SMALL_STATE(3790)] = 126952, - [SMALL_STATE(3791)] = 127029, - [SMALL_STATE(3792)] = 127088, - [SMALL_STATE(3793)] = 127165, - [SMALL_STATE(3794)] = 127242, - [SMALL_STATE(3795)] = 127319, - [SMALL_STATE(3796)] = 127396, - [SMALL_STATE(3797)] = 127473, - [SMALL_STATE(3798)] = 127510, - [SMALL_STATE(3799)] = 127583, - [SMALL_STATE(3800)] = 127656, - [SMALL_STATE(3801)] = 127707, - [SMALL_STATE(3802)] = 127784, - [SMALL_STATE(3803)] = 127861, - [SMALL_STATE(3804)] = 127938, - [SMALL_STATE(3805)] = 127975, - [SMALL_STATE(3806)] = 128052, - [SMALL_STATE(3807)] = 128129, - [SMALL_STATE(3808)] = 128206, - [SMALL_STATE(3809)] = 128243, - [SMALL_STATE(3810)] = 128320, - [SMALL_STATE(3811)] = 128397, - [SMALL_STATE(3812)] = 128474, - [SMALL_STATE(3813)] = 128551, - [SMALL_STATE(3814)] = 128628, - [SMALL_STATE(3815)] = 128705, - [SMALL_STATE(3816)] = 128782, - [SMALL_STATE(3817)] = 128859, - [SMALL_STATE(3818)] = 128898, - [SMALL_STATE(3819)] = 128947, - [SMALL_STATE(3820)] = 129024, - [SMALL_STATE(3821)] = 129101, - [SMALL_STATE(3822)] = 129148, - [SMALL_STATE(3823)] = 129207, - [SMALL_STATE(3824)] = 129284, - [SMALL_STATE(3825)] = 129361, - [SMALL_STATE(3826)] = 129424, - [SMALL_STATE(3827)] = 129501, - [SMALL_STATE(3828)] = 129578, - [SMALL_STATE(3829)] = 129635, - [SMALL_STATE(3830)] = 129712, - [SMALL_STATE(3831)] = 129781, - [SMALL_STATE(3832)] = 129818, - [SMALL_STATE(3833)] = 129895, - [SMALL_STATE(3834)] = 129958, - [SMALL_STATE(3835)] = 130035, - [SMALL_STATE(3836)] = 130112, - [SMALL_STATE(3837)] = 130183, - [SMALL_STATE(3838)] = 130260, - [SMALL_STATE(3839)] = 130313, - [SMALL_STATE(3840)] = 130350, - [SMALL_STATE(3841)] = 130427, - [SMALL_STATE(3842)] = 130504, - [SMALL_STATE(3843)] = 130581, - [SMALL_STATE(3844)] = 130640, - [SMALL_STATE(3845)] = 130717, - [SMALL_STATE(3846)] = 130776, - [SMALL_STATE(3847)] = 130813, - [SMALL_STATE(3848)] = 130872, - [SMALL_STATE(3849)] = 130947, - [SMALL_STATE(3850)] = 131024, - [SMALL_STATE(3851)] = 131101, - [SMALL_STATE(3852)] = 131138, - [SMALL_STATE(3853)] = 131215, - [SMALL_STATE(3854)] = 131288, - [SMALL_STATE(3855)] = 131365, - [SMALL_STATE(3856)] = 131402, - [SMALL_STATE(3857)] = 131463, - [SMALL_STATE(3858)] = 131526, - [SMALL_STATE(3859)] = 131563, - [SMALL_STATE(3860)] = 131636, - [SMALL_STATE(3861)] = 131699, - [SMALL_STATE(3862)] = 131776, - [SMALL_STATE(3863)] = 131853, - [SMALL_STATE(3864)] = 131930, - [SMALL_STATE(3865)] = 132007, - [SMALL_STATE(3866)] = 132084, - [SMALL_STATE(3867)] = 132161, - [SMALL_STATE(3868)] = 132222, - [SMALL_STATE(3869)] = 132299, - [SMALL_STATE(3870)] = 132376, - [SMALL_STATE(3871)] = 132453, - [SMALL_STATE(3872)] = 132530, - [SMALL_STATE(3873)] = 132607, - [SMALL_STATE(3874)] = 132644, - [SMALL_STATE(3875)] = 132707, - [SMALL_STATE(3876)] = 132766, - [SMALL_STATE(3877)] = 132843, - [SMALL_STATE(3878)] = 132920, - [SMALL_STATE(3879)] = 132997, - [SMALL_STATE(3880)] = 133034, - [SMALL_STATE(3881)] = 133111, - [SMALL_STATE(3882)] = 133148, - [SMALL_STATE(3883)] = 133225, - [SMALL_STATE(3884)] = 133302, - [SMALL_STATE(3885)] = 133359, - [SMALL_STATE(3886)] = 133418, - [SMALL_STATE(3887)] = 133459, - [SMALL_STATE(3888)] = 133536, - [SMALL_STATE(3889)] = 133573, - [SMALL_STATE(3890)] = 133650, - [SMALL_STATE(3891)] = 133727, - [SMALL_STATE(3892)] = 133804, - [SMALL_STATE(3893)] = 133841, - [SMALL_STATE(3894)] = 133918, - [SMALL_STATE(3895)] = 133995, - [SMALL_STATE(3896)] = 134044, - [SMALL_STATE(3897)] = 134121, - [SMALL_STATE(3898)] = 134198, - [SMALL_STATE(3899)] = 134275, - [SMALL_STATE(3900)] = 134312, - [SMALL_STATE(3901)] = 134349, - [SMALL_STATE(3902)] = 134388, - [SMALL_STATE(3903)] = 134465, - [SMALL_STATE(3904)] = 134542, - [SMALL_STATE(3905)] = 134619, - [SMALL_STATE(3906)] = 134696, - [SMALL_STATE(3907)] = 134745, - [SMALL_STATE(3908)] = 134782, - [SMALL_STATE(3909)] = 134859, - [SMALL_STATE(3910)] = 134936, - [SMALL_STATE(3911)] = 135013, - [SMALL_STATE(3912)] = 135050, - [SMALL_STATE(3913)] = 135127, - [SMALL_STATE(3914)] = 135204, - [SMALL_STATE(3915)] = 135281, - [SMALL_STATE(3916)] = 135358, - [SMALL_STATE(3917)] = 135419, - [SMALL_STATE(3918)] = 135496, - [SMALL_STATE(3919)] = 135573, - [SMALL_STATE(3920)] = 135610, - [SMALL_STATE(3921)] = 135647, - [SMALL_STATE(3922)] = 135696, - [SMALL_STATE(3923)] = 135733, - [SMALL_STATE(3924)] = 135810, - [SMALL_STATE(3925)] = 135873, - [SMALL_STATE(3926)] = 135950, - [SMALL_STATE(3927)] = 136027, - [SMALL_STATE(3928)] = 136104, - [SMALL_STATE(3929)] = 136165, - [SMALL_STATE(3930)] = 136242, - [SMALL_STATE(3931)] = 136319, - [SMALL_STATE(3932)] = 136382, - [SMALL_STATE(3933)] = 136459, - [SMALL_STATE(3934)] = 136518, - [SMALL_STATE(3935)] = 136595, - [SMALL_STATE(3936)] = 136672, - [SMALL_STATE(3937)] = 136713, - [SMALL_STATE(3938)] = 136770, - [SMALL_STATE(3939)] = 136829, - [SMALL_STATE(3940)] = 136906, - [SMALL_STATE(3941)] = 136969, - [SMALL_STATE(3942)] = 137006, - [SMALL_STATE(3943)] = 137083, - [SMALL_STATE(3944)] = 137160, - [SMALL_STATE(3945)] = 137237, - [SMALL_STATE(3946)] = 137314, - [SMALL_STATE(3947)] = 137391, - [SMALL_STATE(3948)] = 137468, - [SMALL_STATE(3949)] = 137545, - [SMALL_STATE(3950)] = 137622, - [SMALL_STATE(3951)] = 137699, - [SMALL_STATE(3952)] = 137756, - [SMALL_STATE(3953)] = 137833, - [SMALL_STATE(3954)] = 137910, - [SMALL_STATE(3955)] = 137987, - [SMALL_STATE(3956)] = 138024, - [SMALL_STATE(3957)] = 138101, - [SMALL_STATE(3958)] = 138178, - [SMALL_STATE(3959)] = 138255, - [SMALL_STATE(3960)] = 138332, - [SMALL_STATE(3961)] = 138409, - [SMALL_STATE(3962)] = 138486, - [SMALL_STATE(3963)] = 138542, - [SMALL_STATE(3964)] = 138578, - [SMALL_STATE(3965)] = 138644, - [SMALL_STATE(3966)] = 138710, - [SMALL_STATE(3967)] = 138776, - [SMALL_STATE(3968)] = 138842, - [SMALL_STATE(3969)] = 138882, - [SMALL_STATE(3970)] = 138918, - [SMALL_STATE(3971)] = 138978, - [SMALL_STATE(3972)] = 139044, - [SMALL_STATE(3973)] = 139106, - [SMALL_STATE(3974)] = 139172, - [SMALL_STATE(3975)] = 139238, - [SMALL_STATE(3976)] = 139304, - [SMALL_STATE(3977)] = 139370, - [SMALL_STATE(3978)] = 139430, - [SMALL_STATE(3979)] = 139488, - [SMALL_STATE(3980)] = 139546, - [SMALL_STATE(3981)] = 139612, - [SMALL_STATE(3982)] = 139670, - [SMALL_STATE(3983)] = 139730, - [SMALL_STATE(3984)] = 139792, - [SMALL_STATE(3985)] = 139842, - [SMALL_STATE(3986)] = 139898, - [SMALL_STATE(3987)] = 139964, - [SMALL_STATE(3988)] = 140024, - [SMALL_STATE(3989)] = 140080, - [SMALL_STATE(3990)] = 140138, - [SMALL_STATE(3991)] = 140194, - [SMALL_STATE(3992)] = 140260, - [SMALL_STATE(3993)] = 140296, - [SMALL_STATE(3994)] = 140362, - [SMALL_STATE(3995)] = 140428, - [SMALL_STATE(3996)] = 140464, - [SMALL_STATE(3997)] = 140530, - [SMALL_STATE(3998)] = 140596, - [SMALL_STATE(3999)] = 140632, - [SMALL_STATE(4000)] = 140698, - [SMALL_STATE(4001)] = 140734, - [SMALL_STATE(4002)] = 140800, - [SMALL_STATE(4003)] = 140866, - [SMALL_STATE(4004)] = 140932, - [SMALL_STATE(4005)] = 140995, - [SMALL_STATE(4006)] = 141058, - [SMALL_STATE(4007)] = 141099, - [SMALL_STATE(4008)] = 141140, - [SMALL_STATE(4009)] = 141175, - [SMALL_STATE(4010)] = 141218, - [SMALL_STATE(4011)] = 141273, - [SMALL_STATE(4012)] = 141328, - [SMALL_STATE(4013)] = 141391, - [SMALL_STATE(4014)] = 141446, - [SMALL_STATE(4015)] = 141481, - [SMALL_STATE(4016)] = 141536, - [SMALL_STATE(4017)] = 141571, - [SMALL_STATE(4018)] = 141606, - [SMALL_STATE(4019)] = 141669, - [SMALL_STATE(4020)] = 141708, - [SMALL_STATE(4021)] = 141763, - [SMALL_STATE(4022)] = 141826, - [SMALL_STATE(4023)] = 141889, - [SMALL_STATE(4024)] = 141944, - [SMALL_STATE(4025)] = 142007, - [SMALL_STATE(4026)] = 142062, - [SMALL_STATE(4027)] = 142125, - [SMALL_STATE(4028)] = 142188, - [SMALL_STATE(4029)] = 142251, - [SMALL_STATE(4030)] = 142286, - [SMALL_STATE(4031)] = 142327, - [SMALL_STATE(4032)] = 142382, - [SMALL_STATE(4033)] = 142423, - [SMALL_STATE(4034)] = 142464, - [SMALL_STATE(4035)] = 142519, - [SMALL_STATE(4036)] = 142582, - [SMALL_STATE(4037)] = 142645, - [SMALL_STATE(4038)] = 142708, - [SMALL_STATE(4039)] = 142771, - [SMALL_STATE(4040)] = 142806, - [SMALL_STATE(4041)] = 142841, - [SMALL_STATE(4042)] = 142896, - [SMALL_STATE(4043)] = 142959, - [SMALL_STATE(4044)] = 143022, - [SMALL_STATE(4045)] = 143085, - [SMALL_STATE(4046)] = 143148, - [SMALL_STATE(4047)] = 143203, - [SMALL_STATE(4048)] = 143266, - [SMALL_STATE(4049)] = 143321, - [SMALL_STATE(4050)] = 143382, - [SMALL_STATE(4051)] = 143425, - [SMALL_STATE(4052)] = 143488, - [SMALL_STATE(4053)] = 143551, - [SMALL_STATE(4054)] = 143614, - [SMALL_STATE(4055)] = 143669, - [SMALL_STATE(4056)] = 143706, - [SMALL_STATE(4057)] = 143761, - [SMALL_STATE(4058)] = 143824, - [SMALL_STATE(4059)] = 143887, - [SMALL_STATE(4060)] = 143950, - [SMALL_STATE(4061)] = 144011, - [SMALL_STATE(4062)] = 144065, - [SMALL_STATE(4063)] = 144101, - [SMALL_STATE(4064)] = 144141, - [SMALL_STATE(4065)] = 144197, - [SMALL_STATE(4066)] = 144243, - [SMALL_STATE(4067)] = 144289, - [SMALL_STATE(4068)] = 144345, - [SMALL_STATE(4069)] = 144399, - [SMALL_STATE(4070)] = 144453, - [SMALL_STATE(4071)] = 144509, - [SMALL_STATE(4072)] = 144563, - [SMALL_STATE(4073)] = 144617, - [SMALL_STATE(4074)] = 144671, - [SMALL_STATE(4075)] = 144717, - [SMALL_STATE(4076)] = 144771, - [SMALL_STATE(4077)] = 144825, - [SMALL_STATE(4078)] = 144879, - [SMALL_STATE(4079)] = 144933, - [SMALL_STATE(4080)] = 144979, - [SMALL_STATE(4081)] = 145033, - [SMALL_STATE(4082)] = 145089, - [SMALL_STATE(4083)] = 145143, - [SMALL_STATE(4084)] = 145183, - [SMALL_STATE(4085)] = 145229, - [SMALL_STATE(4086)] = 145283, - [SMALL_STATE(4087)] = 145329, - [SMALL_STATE(4088)] = 145383, - [SMALL_STATE(4089)] = 145439, - [SMALL_STATE(4090)] = 145485, - [SMALL_STATE(4091)] = 145541, - [SMALL_STATE(4092)] = 145595, - [SMALL_STATE(4093)] = 145651, - [SMALL_STATE(4094)] = 145697, - [SMALL_STATE(4095)] = 145751, - [SMALL_STATE(4096)] = 145797, - [SMALL_STATE(4097)] = 145851, - [SMALL_STATE(4098)] = 145907, - [SMALL_STATE(4099)] = 145961, - [SMALL_STATE(4100)] = 146015, - [SMALL_STATE(4101)] = 146069, - [SMALL_STATE(4102)] = 146123, - [SMALL_STATE(4103)] = 146177, - [SMALL_STATE(4104)] = 146231, - [SMALL_STATE(4105)] = 146285, - [SMALL_STATE(4106)] = 146324, - [SMALL_STATE(4107)] = 146357, - [SMALL_STATE(4108)] = 146390, - [SMALL_STATE(4109)] = 146423, - [SMALL_STATE(4110)] = 146476, - [SMALL_STATE(4111)] = 146513, - [SMALL_STATE(4112)] = 146546, - [SMALL_STATE(4113)] = 146579, - [SMALL_STATE(4114)] = 146634, - [SMALL_STATE(4115)] = 146689, - [SMALL_STATE(4116)] = 146744, - [SMALL_STATE(4117)] = 146777, - [SMALL_STATE(4118)] = 146812, - [SMALL_STATE(4119)] = 146845, - [SMALL_STATE(4120)] = 146898, - [SMALL_STATE(4121)] = 146951, - [SMALL_STATE(4122)] = 147006, - [SMALL_STATE(4123)] = 147045, - [SMALL_STATE(4124)] = 147080, - [SMALL_STATE(4125)] = 147121, - [SMALL_STATE(4126)] = 147156, - [SMALL_STATE(4127)] = 147209, - [SMALL_STATE(4128)] = 147250, - [SMALL_STATE(4129)] = 147283, - [SMALL_STATE(4130)] = 147316, - [SMALL_STATE(4131)] = 147348, - [SMALL_STATE(4132)] = 147400, - [SMALL_STATE(4133)] = 147432, - [SMALL_STATE(4134)] = 147464, - [SMALL_STATE(4135)] = 147496, - [SMALL_STATE(4136)] = 147528, - [SMALL_STATE(4137)] = 147580, - [SMALL_STATE(4138)] = 147612, - [SMALL_STATE(4139)] = 147664, - [SMALL_STATE(4140)] = 147716, - [SMALL_STATE(4141)] = 147768, - [SMALL_STATE(4142)] = 147806, - [SMALL_STATE(4143)] = 147844, - [SMALL_STATE(4144)] = 147876, - [SMALL_STATE(4145)] = 147928, - [SMALL_STATE(4146)] = 147980, - [SMALL_STATE(4147)] = 148012, - [SMALL_STATE(4148)] = 148044, - [SMALL_STATE(4149)] = 148076, - [SMALL_STATE(4150)] = 148112, - [SMALL_STATE(4151)] = 148146, - [SMALL_STATE(4152)] = 148178, - [SMALL_STATE(4153)] = 148230, - [SMALL_STATE(4154)] = 148262, - [SMALL_STATE(4155)] = 148299, - [SMALL_STATE(4156)] = 148358, - [SMALL_STATE(4157)] = 148397, - [SMALL_STATE(4158)] = 148456, - [SMALL_STATE(4159)] = 148523, - [SMALL_STATE(4160)] = 148580, - [SMALL_STATE(4161)] = 148619, - [SMALL_STATE(4162)] = 148656, - [SMALL_STATE(4163)] = 148689, - [SMALL_STATE(4164)] = 148722, - [SMALL_STATE(4165)] = 148781, - [SMALL_STATE(4166)] = 148818, - [SMALL_STATE(4167)] = 148855, - [SMALL_STATE(4168)] = 148894, - [SMALL_STATE(4169)] = 148951, - [SMALL_STATE(4170)] = 149008, - [SMALL_STATE(4171)] = 149045, - [SMALL_STATE(4172)] = 149102, - [SMALL_STATE(4173)] = 149159, - [SMALL_STATE(4174)] = 149198, - [SMALL_STATE(4175)] = 149232, - [SMALL_STATE(4176)] = 149268, - [SMALL_STATE(4177)] = 149304, - [SMALL_STATE(4178)] = 149340, - [SMALL_STATE(4179)] = 149395, - [SMALL_STATE(4180)] = 149430, - [SMALL_STATE(4181)] = 149465, - [SMALL_STATE(4182)] = 149508, - [SMALL_STATE(4183)] = 149551, - [SMALL_STATE(4184)] = 149582, - [SMALL_STATE(4185)] = 149613, - [SMALL_STATE(4186)] = 149656, - [SMALL_STATE(4187)] = 149689, - [SMALL_STATE(4188)] = 149722, - [SMALL_STATE(4189)] = 149753, - [SMALL_STATE(4190)] = 149786, - [SMALL_STATE(4191)] = 149829, - [SMALL_STATE(4192)] = 149872, - [SMALL_STATE(4193)] = 149905, - [SMALL_STATE(4194)] = 149960, - [SMALL_STATE(4195)] = 149993, - [SMALL_STATE(4196)] = 150028, - [SMALL_STATE(4197)] = 150061, - [SMALL_STATE(4198)] = 150089, - [SMALL_STATE(4199)] = 150117, - [SMALL_STATE(4200)] = 150145, - [SMALL_STATE(4201)] = 150185, - [SMALL_STATE(4202)] = 150225, - [SMALL_STATE(4203)] = 150253, - [SMALL_STATE(4204)] = 150281, - [SMALL_STATE(4205)] = 150309, - [SMALL_STATE(4206)] = 150337, - [SMALL_STATE(4207)] = 150365, - [SMALL_STATE(4208)] = 150393, - [SMALL_STATE(4209)] = 150441, - [SMALL_STATE(4210)] = 150469, - [SMALL_STATE(4211)] = 150497, - [SMALL_STATE(4212)] = 150525, - [SMALL_STATE(4213)] = 150553, - [SMALL_STATE(4214)] = 150593, - [SMALL_STATE(4215)] = 150641, - [SMALL_STATE(4216)] = 150669, - [SMALL_STATE(4217)] = 150703, - [SMALL_STATE(4218)] = 150737, - [SMALL_STATE(4219)] = 150785, - [SMALL_STATE(4220)] = 150813, - [SMALL_STATE(4221)] = 150841, - [SMALL_STATE(4222)] = 150881, - [SMALL_STATE(4223)] = 150929, - [SMALL_STATE(4224)] = 150977, - [SMALL_STATE(4225)] = 151005, - [SMALL_STATE(4226)] = 151033, - [SMALL_STATE(4227)] = 151061, - [SMALL_STATE(4228)] = 151089, - [SMALL_STATE(4229)] = 151117, - [SMALL_STATE(4230)] = 151145, - [SMALL_STATE(4231)] = 151173, - [SMALL_STATE(4232)] = 151201, - [SMALL_STATE(4233)] = 151229, - [SMALL_STATE(4234)] = 151269, - [SMALL_STATE(4235)] = 151297, - [SMALL_STATE(4236)] = 151325, - [SMALL_STATE(4237)] = 151353, - [SMALL_STATE(4238)] = 151403, - [SMALL_STATE(4239)] = 151451, - [SMALL_STATE(4240)] = 151499, - [SMALL_STATE(4241)] = 151539, - [SMALL_STATE(4242)] = 151567, - [SMALL_STATE(4243)] = 151615, - [SMALL_STATE(4244)] = 151655, - [SMALL_STATE(4245)] = 151695, - [SMALL_STATE(4246)] = 151735, - [SMALL_STATE(4247)] = 151775, - [SMALL_STATE(4248)] = 151815, - [SMALL_STATE(4249)] = 151855, - [SMALL_STATE(4250)] = 151895, - [SMALL_STATE(4251)] = 151923, - [SMALL_STATE(4252)] = 151963, - [SMALL_STATE(4253)] = 151991, - [SMALL_STATE(4254)] = 152023, - [SMALL_STATE(4255)] = 152063, - [SMALL_STATE(4256)] = 152103, - [SMALL_STATE(4257)] = 152131, - [SMALL_STATE(4258)] = 152179, - [SMALL_STATE(4259)] = 152227, - [SMALL_STATE(4260)] = 152259, - [SMALL_STATE(4261)] = 152307, - [SMALL_STATE(4262)] = 152347, - [SMALL_STATE(4263)] = 152375, - [SMALL_STATE(4264)] = 152403, - [SMALL_STATE(4265)] = 152431, - [SMALL_STATE(4266)] = 152471, - [SMALL_STATE(4267)] = 152519, - [SMALL_STATE(4268)] = 152547, - [SMALL_STATE(4269)] = 152575, - [SMALL_STATE(4270)] = 152615, - [SMALL_STATE(4271)] = 152647, - [SMALL_STATE(4272)] = 152675, - [SMALL_STATE(4273)] = 152703, - [SMALL_STATE(4274)] = 152731, - [SMALL_STATE(4275)] = 152759, - [SMALL_STATE(4276)] = 152787, - [SMALL_STATE(4277)] = 152827, - [SMALL_STATE(4278)] = 152855, - [SMALL_STATE(4279)] = 152883, - [SMALL_STATE(4280)] = 152923, - [SMALL_STATE(4281)] = 152963, - [SMALL_STATE(4282)] = 152991, - [SMALL_STATE(4283)] = 153019, - [SMALL_STATE(4284)] = 153067, - [SMALL_STATE(4285)] = 153109, - [SMALL_STATE(4286)] = 153157, - [SMALL_STATE(4287)] = 153205, - [SMALL_STATE(4288)] = 153253, - [SMALL_STATE(4289)] = 153301, - [SMALL_STATE(4290)] = 153329, - [SMALL_STATE(4291)] = 153377, - [SMALL_STATE(4292)] = 153417, - [SMALL_STATE(4293)] = 153465, - [SMALL_STATE(4294)] = 153511, - [SMALL_STATE(4295)] = 153555, - [SMALL_STATE(4296)] = 153583, - [SMALL_STATE(4297)] = 153625, - [SMALL_STATE(4298)] = 153665, - [SMALL_STATE(4299)] = 153693, - [SMALL_STATE(4300)] = 153721, - [SMALL_STATE(4301)] = 153757, - [SMALL_STATE(4302)] = 153805, - [SMALL_STATE(4303)] = 153845, - [SMALL_STATE(4304)] = 153885, - [SMALL_STATE(4305)] = 153933, - [SMALL_STATE(4306)] = 153963, - [SMALL_STATE(4307)] = 154011, - [SMALL_STATE(4308)] = 154059, - [SMALL_STATE(4309)] = 154087, - [SMALL_STATE(4310)] = 154135, - [SMALL_STATE(4311)] = 154183, - [SMALL_STATE(4312)] = 154211, - [SMALL_STATE(4313)] = 154239, - [SMALL_STATE(4314)] = 154279, - [SMALL_STATE(4315)] = 154319, - [SMALL_STATE(4316)] = 154347, - [SMALL_STATE(4317)] = 154381, - [SMALL_STATE(4318)] = 154409, - [SMALL_STATE(4319)] = 154437, - [SMALL_STATE(4320)] = 154477, - [SMALL_STATE(4321)] = 154505, - [SMALL_STATE(4322)] = 154545, - [SMALL_STATE(4323)] = 154585, - [SMALL_STATE(4324)] = 154633, - [SMALL_STATE(4325)] = 154681, - [SMALL_STATE(4326)] = 154709, - [SMALL_STATE(4327)] = 154737, - [SMALL_STATE(4328)] = 154785, - [SMALL_STATE(4329)] = 154813, - [SMALL_STATE(4330)] = 154861, - [SMALL_STATE(4331)] = 154889, - [SMALL_STATE(4332)] = 154917, - [SMALL_STATE(4333)] = 154945, - [SMALL_STATE(4334)] = 154973, - [SMALL_STATE(4335)] = 155013, - [SMALL_STATE(4336)] = 155053, - [SMALL_STATE(4337)] = 155101, - [SMALL_STATE(4338)] = 155149, - [SMALL_STATE(4339)] = 155177, - [SMALL_STATE(4340)] = 155205, - [SMALL_STATE(4341)] = 155233, - [SMALL_STATE(4342)] = 155261, - [SMALL_STATE(4343)] = 155309, - [SMALL_STATE(4344)] = 155337, - [SMALL_STATE(4345)] = 155365, - [SMALL_STATE(4346)] = 155405, - [SMALL_STATE(4347)] = 155453, - [SMALL_STATE(4348)] = 155501, - [SMALL_STATE(4349)] = 155549, - [SMALL_STATE(4350)] = 155577, - [SMALL_STATE(4351)] = 155625, - [SMALL_STATE(4352)] = 155673, - [SMALL_STATE(4353)] = 155721, - [SMALL_STATE(4354)] = 155749, - [SMALL_STATE(4355)] = 155777, - [SMALL_STATE(4356)] = 155823, - [SMALL_STATE(4357)] = 155863, - [SMALL_STATE(4358)] = 155920, - [SMALL_STATE(4359)] = 155947, - [SMALL_STATE(4360)] = 156004, - [SMALL_STATE(4361)] = 156031, - [SMALL_STATE(4362)] = 156088, - [SMALL_STATE(4363)] = 156145, - [SMALL_STATE(4364)] = 156202, - [SMALL_STATE(4365)] = 156259, - [SMALL_STATE(4366)] = 156304, - [SMALL_STATE(4367)] = 156361, - [SMALL_STATE(4368)] = 156388, - [SMALL_STATE(4369)] = 156445, - [SMALL_STATE(4370)] = 156502, - [SMALL_STATE(4371)] = 156559, - [SMALL_STATE(4372)] = 156604, - [SMALL_STATE(4373)] = 156661, - [SMALL_STATE(4374)] = 156718, - [SMALL_STATE(4375)] = 156775, - [SMALL_STATE(4376)] = 156806, - [SMALL_STATE(4377)] = 156863, - [SMALL_STATE(4378)] = 156908, - [SMALL_STATE(4379)] = 156965, - [SMALL_STATE(4380)] = 157022, - [SMALL_STATE(4381)] = 157079, - [SMALL_STATE(4382)] = 157136, - [SMALL_STATE(4383)] = 157181, - [SMALL_STATE(4384)] = 157240, - [SMALL_STATE(4385)] = 157267, - [SMALL_STATE(4386)] = 157324, - [SMALL_STATE(4387)] = 157381, - [SMALL_STATE(4388)] = 157438, - [SMALL_STATE(4389)] = 157497, - [SMALL_STATE(4390)] = 157554, - [SMALL_STATE(4391)] = 157611, - [SMALL_STATE(4392)] = 157668, - [SMALL_STATE(4393)] = 157725, - [SMALL_STATE(4394)] = 157770, - [SMALL_STATE(4395)] = 157797, - [SMALL_STATE(4396)] = 157854, - [SMALL_STATE(4397)] = 157911, - [SMALL_STATE(4398)] = 157968, - [SMALL_STATE(4399)] = 158025, - [SMALL_STATE(4400)] = 158082, - [SMALL_STATE(4401)] = 158139, - [SMALL_STATE(4402)] = 158196, - [SMALL_STATE(4403)] = 158253, - [SMALL_STATE(4404)] = 158310, - [SMALL_STATE(4405)] = 158367, - [SMALL_STATE(4406)] = 158424, - [SMALL_STATE(4407)] = 158481, - [SMALL_STATE(4408)] = 158538, - [SMALL_STATE(4409)] = 158595, - [SMALL_STATE(4410)] = 158640, - [SMALL_STATE(4411)] = 158697, - [SMALL_STATE(4412)] = 158726, - [SMALL_STATE(4413)] = 158783, - [SMALL_STATE(4414)] = 158828, - [SMALL_STATE(4415)] = 158885, - [SMALL_STATE(4416)] = 158942, - [SMALL_STATE(4417)] = 158999, - [SMALL_STATE(4418)] = 159026, - [SMALL_STATE(4419)] = 159083, - [SMALL_STATE(4420)] = 159140, - [SMALL_STATE(4421)] = 159185, - [SMALL_STATE(4422)] = 159226, - [SMALL_STATE(4423)] = 159283, - [SMALL_STATE(4424)] = 159326, - [SMALL_STATE(4425)] = 159367, - [SMALL_STATE(4426)] = 159406, - [SMALL_STATE(4427)] = 159455, - [SMALL_STATE(4428)] = 159492, - [SMALL_STATE(4429)] = 159549, - [SMALL_STATE(4430)] = 159584, - [SMALL_STATE(4431)] = 159617, - [SMALL_STATE(4432)] = 159648, - [SMALL_STATE(4433)] = 159693, - [SMALL_STATE(4434)] = 159720, - [SMALL_STATE(4435)] = 159777, - [SMALL_STATE(4436)] = 159834, - [SMALL_STATE(4437)] = 159893, - [SMALL_STATE(4438)] = 159950, - [SMALL_STATE(4439)] = 159977, - [SMALL_STATE(4440)] = 160004, - [SMALL_STATE(4441)] = 160061, - [SMALL_STATE(4442)] = 160118, - [SMALL_STATE(4443)] = 160167, - [SMALL_STATE(4444)] = 160224, - [SMALL_STATE(4445)] = 160269, - [SMALL_STATE(4446)] = 160296, - [SMALL_STATE(4447)] = 160336, - [SMALL_STATE(4448)] = 160387, - [SMALL_STATE(4449)] = 160438, - [SMALL_STATE(4450)] = 160489, - [SMALL_STATE(4451)] = 160540, - [SMALL_STATE(4452)] = 160591, - [SMALL_STATE(4453)] = 160632, - [SMALL_STATE(4454)] = 160683, - [SMALL_STATE(4455)] = 160734, - [SMALL_STATE(4456)] = 160785, - [SMALL_STATE(4457)] = 160836, - [SMALL_STATE(4458)] = 160887, - [SMALL_STATE(4459)] = 160938, - [SMALL_STATE(4460)] = 160989, - [SMALL_STATE(4461)] = 161040, - [SMALL_STATE(4462)] = 161081, - [SMALL_STATE(4463)] = 161132, - [SMALL_STATE(4464)] = 161183, - [SMALL_STATE(4465)] = 161234, - [SMALL_STATE(4466)] = 161285, - [SMALL_STATE(4467)] = 161336, - [SMALL_STATE(4468)] = 161387, - [SMALL_STATE(4469)] = 161416, - [SMALL_STATE(4470)] = 161467, - [SMALL_STATE(4471)] = 161506, - [SMALL_STATE(4472)] = 161557, - [SMALL_STATE(4473)] = 161598, - [SMALL_STATE(4474)] = 161639, - [SMALL_STATE(4475)] = 161690, - [SMALL_STATE(4476)] = 161741, - [SMALL_STATE(4477)] = 161792, - [SMALL_STATE(4478)] = 161843, - [SMALL_STATE(4479)] = 161894, - [SMALL_STATE(4480)] = 161945, - [SMALL_STATE(4481)] = 161996, - [SMALL_STATE(4482)] = 162047, - [SMALL_STATE(4483)] = 162098, - [SMALL_STATE(4484)] = 162149, - [SMALL_STATE(4485)] = 162200, - [SMALL_STATE(4486)] = 162251, - [SMALL_STATE(4487)] = 162302, - [SMALL_STATE(4488)] = 162353, - [SMALL_STATE(4489)] = 162404, - [SMALL_STATE(4490)] = 162455, - [SMALL_STATE(4491)] = 162506, - [SMALL_STATE(4492)] = 162557, - [SMALL_STATE(4493)] = 162608, - [SMALL_STATE(4494)] = 162659, - [SMALL_STATE(4495)] = 162710, - [SMALL_STATE(4496)] = 162761, - [SMALL_STATE(4497)] = 162812, - [SMALL_STATE(4498)] = 162863, - [SMALL_STATE(4499)] = 162901, - [SMALL_STATE(4500)] = 162947, - [SMALL_STATE(4501)] = 162993, - [SMALL_STATE(4502)] = 163031, - [SMALL_STATE(4503)] = 163079, - [SMALL_STATE(4504)] = 163125, - [SMALL_STATE(4505)] = 163171, - [SMALL_STATE(4506)] = 163209, - [SMALL_STATE(4507)] = 163255, - [SMALL_STATE(4508)] = 163301, - [SMALL_STATE(4509)] = 163347, - [SMALL_STATE(4510)] = 163395, - [SMALL_STATE(4511)] = 163443, - [SMALL_STATE(4512)] = 163489, - [SMALL_STATE(4513)] = 163535, - [SMALL_STATE(4514)] = 163587, - [SMALL_STATE(4515)] = 163633, - [SMALL_STATE(4516)] = 163685, - [SMALL_STATE(4517)] = 163731, - [SMALL_STATE(4518)] = 163777, - [SMALL_STATE(4519)] = 163825, - [SMALL_STATE(4520)] = 163871, - [SMALL_STATE(4521)] = 163923, - [SMALL_STATE(4522)] = 163971, - [SMALL_STATE(4523)] = 164009, - [SMALL_STATE(4524)] = 164055, - [SMALL_STATE(4525)] = 164103, - [SMALL_STATE(4526)] = 164149, - [SMALL_STATE(4527)] = 164195, - [SMALL_STATE(4528)] = 164241, - [SMALL_STATE(4529)] = 164287, - [SMALL_STATE(4530)] = 164335, - [SMALL_STATE(4531)] = 164380, - [SMALL_STATE(4532)] = 164425, - [SMALL_STATE(4533)] = 164470, - [SMALL_STATE(4534)] = 164515, - [SMALL_STATE(4535)] = 164560, - [SMALL_STATE(4536)] = 164605, - [SMALL_STATE(4537)] = 164650, - [SMALL_STATE(4538)] = 164695, - [SMALL_STATE(4539)] = 164740, - [SMALL_STATE(4540)] = 164785, - [SMALL_STATE(4541)] = 164830, - [SMALL_STATE(4542)] = 164875, - [SMALL_STATE(4543)] = 164920, - [SMALL_STATE(4544)] = 164965, - [SMALL_STATE(4545)] = 165010, - [SMALL_STATE(4546)] = 165055, - [SMALL_STATE(4547)] = 165100, - [SMALL_STATE(4548)] = 165145, - [SMALL_STATE(4549)] = 165190, - [SMALL_STATE(4550)] = 165235, - [SMALL_STATE(4551)] = 165280, - [SMALL_STATE(4552)] = 165325, - [SMALL_STATE(4553)] = 165370, - [SMALL_STATE(4554)] = 165415, - [SMALL_STATE(4555)] = 165460, - [SMALL_STATE(4556)] = 165505, - [SMALL_STATE(4557)] = 165550, - [SMALL_STATE(4558)] = 165595, - [SMALL_STATE(4559)] = 165640, - [SMALL_STATE(4560)] = 165685, - [SMALL_STATE(4561)] = 165730, - [SMALL_STATE(4562)] = 165775, - [SMALL_STATE(4563)] = 165820, - [SMALL_STATE(4564)] = 165865, - [SMALL_STATE(4565)] = 165910, - [SMALL_STATE(4566)] = 165955, - [SMALL_STATE(4567)] = 166000, - [SMALL_STATE(4568)] = 166045, - [SMALL_STATE(4569)] = 166090, - [SMALL_STATE(4570)] = 166135, - [SMALL_STATE(4571)] = 166180, - [SMALL_STATE(4572)] = 166225, - [SMALL_STATE(4573)] = 166270, - [SMALL_STATE(4574)] = 166315, - [SMALL_STATE(4575)] = 166360, - [SMALL_STATE(4576)] = 166405, - [SMALL_STATE(4577)] = 166450, - [SMALL_STATE(4578)] = 166495, - [SMALL_STATE(4579)] = 166540, - [SMALL_STATE(4580)] = 166585, - [SMALL_STATE(4581)] = 166630, - [SMALL_STATE(4582)] = 166675, - [SMALL_STATE(4583)] = 166720, - [SMALL_STATE(4584)] = 166765, - [SMALL_STATE(4585)] = 166810, - [SMALL_STATE(4586)] = 166855, - [SMALL_STATE(4587)] = 166900, - [SMALL_STATE(4588)] = 166945, - [SMALL_STATE(4589)] = 166990, - [SMALL_STATE(4590)] = 167035, - [SMALL_STATE(4591)] = 167080, - [SMALL_STATE(4592)] = 167125, - [SMALL_STATE(4593)] = 167170, - [SMALL_STATE(4594)] = 167215, - [SMALL_STATE(4595)] = 167260, - [SMALL_STATE(4596)] = 167305, - [SMALL_STATE(4597)] = 167352, - [SMALL_STATE(4598)] = 167397, - [SMALL_STATE(4599)] = 167442, - [SMALL_STATE(4600)] = 167487, - [SMALL_STATE(4601)] = 167532, - [SMALL_STATE(4602)] = 167577, - [SMALL_STATE(4603)] = 167614, - [SMALL_STATE(4604)] = 167659, - [SMALL_STATE(4605)] = 167704, - [SMALL_STATE(4606)] = 167749, - [SMALL_STATE(4607)] = 167794, - [SMALL_STATE(4608)] = 167839, - [SMALL_STATE(4609)] = 167884, - [SMALL_STATE(4610)] = 167929, - [SMALL_STATE(4611)] = 167974, - [SMALL_STATE(4612)] = 168019, - [SMALL_STATE(4613)] = 168064, - [SMALL_STATE(4614)] = 168109, - [SMALL_STATE(4615)] = 168154, - [SMALL_STATE(4616)] = 168199, - [SMALL_STATE(4617)] = 168244, - [SMALL_STATE(4618)] = 168289, - [SMALL_STATE(4619)] = 168334, - [SMALL_STATE(4620)] = 168379, - [SMALL_STATE(4621)] = 168424, - [SMALL_STATE(4622)] = 168469, - [SMALL_STATE(4623)] = 168507, - [SMALL_STATE(4624)] = 168549, - [SMALL_STATE(4625)] = 168595, - [SMALL_STATE(4626)] = 168641, - [SMALL_STATE(4627)] = 168679, - [SMALL_STATE(4628)] = 168717, - [SMALL_STATE(4629)] = 168755, - [SMALL_STATE(4630)] = 168793, - [SMALL_STATE(4631)] = 168831, - [SMALL_STATE(4632)] = 168869, - [SMALL_STATE(4633)] = 168907, - [SMALL_STATE(4634)] = 168953, - [SMALL_STATE(4635)] = 168991, - [SMALL_STATE(4636)] = 169029, - [SMALL_STATE(4637)] = 169071, - [SMALL_STATE(4638)] = 169117, - [SMALL_STATE(4639)] = 169155, - [SMALL_STATE(4640)] = 169197, - [SMALL_STATE(4641)] = 169243, - [SMALL_STATE(4642)] = 169271, - [SMALL_STATE(4643)] = 169317, - [SMALL_STATE(4644)] = 169357, - [SMALL_STATE(4645)] = 169403, - [SMALL_STATE(4646)] = 169449, - [SMALL_STATE(4647)] = 169487, - [SMALL_STATE(4648)] = 169527, - [SMALL_STATE(4649)] = 169573, - [SMALL_STATE(4650)] = 169613, - [SMALL_STATE(4651)] = 169659, - [SMALL_STATE(4652)] = 169705, - [SMALL_STATE(4653)] = 169745, - [SMALL_STATE(4654)] = 169785, - [SMALL_STATE(4655)] = 169823, - [SMALL_STATE(4656)] = 169861, - [SMALL_STATE(4657)] = 169901, - [SMALL_STATE(4658)] = 169947, - [SMALL_STATE(4659)] = 169985, - [SMALL_STATE(4660)] = 170023, - [SMALL_STATE(4661)] = 170051, - [SMALL_STATE(4662)] = 170093, - [SMALL_STATE(4663)] = 170133, - [SMALL_STATE(4664)] = 170171, - [SMALL_STATE(4665)] = 170211, - [SMALL_STATE(4666)] = 170257, - [SMALL_STATE(4667)] = 170295, - [SMALL_STATE(4668)] = 170337, - [SMALL_STATE(4669)] = 170373, - [SMALL_STATE(4670)] = 170415, - [SMALL_STATE(4671)] = 170455, - [SMALL_STATE(4672)] = 170488, - [SMALL_STATE(4673)] = 170521, - [SMALL_STATE(4674)] = 170560, - [SMALL_STATE(4675)] = 170593, - [SMALL_STATE(4676)] = 170626, - [SMALL_STATE(4677)] = 170659, - [SMALL_STATE(4678)] = 170696, - [SMALL_STATE(4679)] = 170737, - [SMALL_STATE(4680)] = 170774, - [SMALL_STATE(4681)] = 170813, - [SMALL_STATE(4682)] = 170850, - [SMALL_STATE(4683)] = 170883, - [SMALL_STATE(4684)] = 170920, - [SMALL_STATE(4685)] = 170957, - [SMALL_STATE(4686)] = 170996, - [SMALL_STATE(4687)] = 171021, - [SMALL_STATE(4688)] = 171054, - [SMALL_STATE(4689)] = 171087, - [SMALL_STATE(4690)] = 171124, - [SMALL_STATE(4691)] = 171157, - [SMALL_STATE(4692)] = 171194, - [SMALL_STATE(4693)] = 171231, - [SMALL_STATE(4694)] = 171264, - [SMALL_STATE(4695)] = 171301, - [SMALL_STATE(4696)] = 171334, - [SMALL_STATE(4697)] = 171367, - [SMALL_STATE(4698)] = 171408, - [SMALL_STATE(4699)] = 171449, - [SMALL_STATE(4700)] = 171486, - [SMALL_STATE(4701)] = 171525, - [SMALL_STATE(4702)] = 171558, - [SMALL_STATE(4703)] = 171597, - [SMALL_STATE(4704)] = 171634, - [SMALL_STATE(4705)] = 171667, - [SMALL_STATE(4706)] = 171704, - [SMALL_STATE(4707)] = 171737, - [SMALL_STATE(4708)] = 171770, - [SMALL_STATE(4709)] = 171811, - [SMALL_STATE(4710)] = 171848, - [SMALL_STATE(4711)] = 171881, - [SMALL_STATE(4712)] = 171918, - [SMALL_STATE(4713)] = 171951, - [SMALL_STATE(4714)] = 171984, - [SMALL_STATE(4715)] = 172017, - [SMALL_STATE(4716)] = 172050, - [SMALL_STATE(4717)] = 172091, - [SMALL_STATE(4718)] = 172114, - [SMALL_STATE(4719)] = 172134, - [SMALL_STATE(4720)] = 172158, - [SMALL_STATE(4721)] = 172182, - [SMALL_STATE(4722)] = 172210, - [SMALL_STATE(4723)] = 172234, - [SMALL_STATE(4724)] = 172258, - [SMALL_STATE(4725)] = 172278, - [SMALL_STATE(4726)] = 172314, - [SMALL_STATE(4727)] = 172342, - [SMALL_STATE(4728)] = 172362, - [SMALL_STATE(4729)] = 172386, - [SMALL_STATE(4730)] = 172422, - [SMALL_STATE(4731)] = 172442, - [SMALL_STATE(4732)] = 172478, - [SMALL_STATE(4733)] = 172498, - [SMALL_STATE(4734)] = 172518, - [SMALL_STATE(4735)] = 172554, - [SMALL_STATE(4736)] = 172574, - [SMALL_STATE(4737)] = 172594, - [SMALL_STATE(4738)] = 172614, - [SMALL_STATE(4739)] = 172650, - [SMALL_STATE(4740)] = 172670, - [SMALL_STATE(4741)] = 172706, - [SMALL_STATE(4742)] = 172738, - [SMALL_STATE(4743)] = 172760, - [SMALL_STATE(4744)] = 172794, - [SMALL_STATE(4745)] = 172830, - [SMALL_STATE(4746)] = 172850, - [SMALL_STATE(4747)] = 172886, - [SMALL_STATE(4748)] = 172906, - [SMALL_STATE(4749)] = 172942, - [SMALL_STATE(4750)] = 172978, - [SMALL_STATE(4751)] = 173014, - [SMALL_STATE(4752)] = 173050, - [SMALL_STATE(4753)] = 173070, - [SMALL_STATE(4754)] = 173106, - [SMALL_STATE(4755)] = 173140, - [SMALL_STATE(4756)] = 173160, - [SMALL_STATE(4757)] = 173194, - [SMALL_STATE(4758)] = 173214, - [SMALL_STATE(4759)] = 173234, - [SMALL_STATE(4760)] = 173270, - [SMALL_STATE(4761)] = 173292, - [SMALL_STATE(4762)] = 173312, - [SMALL_STATE(4763)] = 173332, - [SMALL_STATE(4764)] = 173352, - [SMALL_STATE(4765)] = 173388, - [SMALL_STATE(4766)] = 173422, - [SMALL_STATE(4767)] = 173442, - [SMALL_STATE(4768)] = 173478, - [SMALL_STATE(4769)] = 173498, - [SMALL_STATE(4770)] = 173522, - [SMALL_STATE(4771)] = 173542, - [SMALL_STATE(4772)] = 173566, - [SMALL_STATE(4773)] = 173600, - [SMALL_STATE(4774)] = 173620, - [SMALL_STATE(4775)] = 173640, - [SMALL_STATE(4776)] = 173668, - [SMALL_STATE(4777)] = 173688, - [SMALL_STATE(4778)] = 173712, - [SMALL_STATE(4779)] = 173732, - [SMALL_STATE(4780)] = 173752, - [SMALL_STATE(4781)] = 173772, - [SMALL_STATE(4782)] = 173792, - [SMALL_STATE(4783)] = 173812, - [SMALL_STATE(4784)] = 173846, - [SMALL_STATE(4785)] = 173882, - [SMALL_STATE(4786)] = 173918, - [SMALL_STATE(4787)] = 173946, - [SMALL_STATE(4788)] = 173974, - [SMALL_STATE(4789)] = 174010, - [SMALL_STATE(4790)] = 174044, - [SMALL_STATE(4791)] = 174080, - [SMALL_STATE(4792)] = 174102, - [SMALL_STATE(4793)] = 174126, - [SMALL_STATE(4794)] = 174150, - [SMALL_STATE(4795)] = 174174, - [SMALL_STATE(4796)] = 174208, - [SMALL_STATE(4797)] = 174242, - [SMALL_STATE(4798)] = 174262, - [SMALL_STATE(4799)] = 174282, - [SMALL_STATE(4800)] = 174302, - [SMALL_STATE(4801)] = 174326, - [SMALL_STATE(4802)] = 174346, - [SMALL_STATE(4803)] = 174363, - [SMALL_STATE(4804)] = 174390, - [SMALL_STATE(4805)] = 174409, - [SMALL_STATE(4806)] = 174428, - [SMALL_STATE(4807)] = 174459, - [SMALL_STATE(4808)] = 174476, - [SMALL_STATE(4809)] = 174495, - [SMALL_STATE(4810)] = 174518, - [SMALL_STATE(4811)] = 174537, - [SMALL_STATE(4812)] = 174568, - [SMALL_STATE(4813)] = 174595, - [SMALL_STATE(4814)] = 174618, - [SMALL_STATE(4815)] = 174641, - [SMALL_STATE(4816)] = 174664, - [SMALL_STATE(4817)] = 174687, - [SMALL_STATE(4818)] = 174706, - [SMALL_STATE(4819)] = 174729, - [SMALL_STATE(4820)] = 174746, - [SMALL_STATE(4821)] = 174773, - [SMALL_STATE(4822)] = 174802, - [SMALL_STATE(4823)] = 174825, - [SMALL_STATE(4824)] = 174852, - [SMALL_STATE(4825)] = 174879, - [SMALL_STATE(4826)] = 174898, - [SMALL_STATE(4827)] = 174925, - [SMALL_STATE(4828)] = 174948, - [SMALL_STATE(4829)] = 174971, - [SMALL_STATE(4830)] = 174988, - [SMALL_STATE(4831)] = 175011, - [SMALL_STATE(4832)] = 175040, - [SMALL_STATE(4833)] = 175057, - [SMALL_STATE(4834)] = 175080, - [SMALL_STATE(4835)] = 175103, - [SMALL_STATE(4836)] = 175122, - [SMALL_STATE(4837)] = 175139, - [SMALL_STATE(4838)] = 175162, - [SMALL_STATE(4839)] = 175181, - [SMALL_STATE(4840)] = 175198, - [SMALL_STATE(4841)] = 175215, - [SMALL_STATE(4842)] = 175242, - [SMALL_STATE(4843)] = 175261, - [SMALL_STATE(4844)] = 175278, - [SMALL_STATE(4845)] = 175301, - [SMALL_STATE(4846)] = 175318, - [SMALL_STATE(4847)] = 175341, - [SMALL_STATE(4848)] = 175368, - [SMALL_STATE(4849)] = 175391, - [SMALL_STATE(4850)] = 175410, - [SMALL_STATE(4851)] = 175427, - [SMALL_STATE(4852)] = 175446, - [SMALL_STATE(4853)] = 175465, - [SMALL_STATE(4854)] = 175482, - [SMALL_STATE(4855)] = 175501, - [SMALL_STATE(4856)] = 175520, - [SMALL_STATE(4857)] = 175537, - [SMALL_STATE(4858)] = 175560, - [SMALL_STATE(4859)] = 175587, - [SMALL_STATE(4860)] = 175604, - [SMALL_STATE(4861)] = 175623, - [SMALL_STATE(4862)] = 175646, - [SMALL_STATE(4863)] = 175665, - [SMALL_STATE(4864)] = 175692, - [SMALL_STATE(4865)] = 175715, - [SMALL_STATE(4866)] = 175742, - [SMALL_STATE(4867)] = 175759, - [SMALL_STATE(4868)] = 175782, - [SMALL_STATE(4869)] = 175805, - [SMALL_STATE(4870)] = 175824, - [SMALL_STATE(4871)] = 175843, - [SMALL_STATE(4872)] = 175862, - [SMALL_STATE(4873)] = 175881, - [SMALL_STATE(4874)] = 175898, - [SMALL_STATE(4875)] = 175917, - [SMALL_STATE(4876)] = 175934, - [SMALL_STATE(4877)] = 175966, - [SMALL_STATE(4878)] = 175992, - [SMALL_STATE(4879)] = 176012, - [SMALL_STATE(4880)] = 176038, - [SMALL_STATE(4881)] = 176056, - [SMALL_STATE(4882)] = 176088, - [SMALL_STATE(4883)] = 176120, - [SMALL_STATE(4884)] = 176152, - [SMALL_STATE(4885)] = 176178, - [SMALL_STATE(4886)] = 176210, - [SMALL_STATE(4887)] = 176232, - [SMALL_STATE(4888)] = 176254, - [SMALL_STATE(4889)] = 176286, - [SMALL_STATE(4890)] = 176318, - [SMALL_STATE(4891)] = 176336, - [SMALL_STATE(4892)] = 176354, - [SMALL_STATE(4893)] = 176376, - [SMALL_STATE(4894)] = 176394, - [SMALL_STATE(4895)] = 176416, - [SMALL_STATE(4896)] = 176448, - [SMALL_STATE(4897)] = 176470, - [SMALL_STATE(4898)] = 176502, - [SMALL_STATE(4899)] = 176534, - [SMALL_STATE(4900)] = 176566, - [SMALL_STATE(4901)] = 176584, - [SMALL_STATE(4902)] = 176616, - [SMALL_STATE(4903)] = 176638, - [SMALL_STATE(4904)] = 176664, - [SMALL_STATE(4905)] = 176696, - [SMALL_STATE(4906)] = 176718, - [SMALL_STATE(4907)] = 176736, - [SMALL_STATE(4908)] = 176768, - [SMALL_STATE(4909)] = 176800, - [SMALL_STATE(4910)] = 176832, - [SMALL_STATE(4911)] = 176864, - [SMALL_STATE(4912)] = 176886, - [SMALL_STATE(4913)] = 176918, - [SMALL_STATE(4914)] = 176936, - [SMALL_STATE(4915)] = 176968, - [SMALL_STATE(4916)] = 176990, - [SMALL_STATE(4917)] = 177016, - [SMALL_STATE(4918)] = 177048, - [SMALL_STATE(4919)] = 177074, - [SMALL_STATE(4920)] = 177106, - [SMALL_STATE(4921)] = 177138, - [SMALL_STATE(4922)] = 177156, - [SMALL_STATE(4923)] = 177174, - [SMALL_STATE(4924)] = 177206, - [SMALL_STATE(4925)] = 177238, - [SMALL_STATE(4926)] = 177270, - [SMALL_STATE(4927)] = 177296, - [SMALL_STATE(4928)] = 177328, - [SMALL_STATE(4929)] = 177360, - [SMALL_STATE(4930)] = 177378, - [SMALL_STATE(4931)] = 177395, - [SMALL_STATE(4932)] = 177416, - [SMALL_STATE(4933)] = 177445, - [SMALL_STATE(4934)] = 177470, - [SMALL_STATE(4935)] = 177491, - [SMALL_STATE(4936)] = 177520, - [SMALL_STATE(4937)] = 177547, - [SMALL_STATE(4938)] = 177568, - [SMALL_STATE(4939)] = 177587, - [SMALL_STATE(4940)] = 177608, - [SMALL_STATE(4941)] = 177637, - [SMALL_STATE(4942)] = 177652, - [SMALL_STATE(4943)] = 177673, - [SMALL_STATE(4944)] = 177694, - [SMALL_STATE(4945)] = 177719, - [SMALL_STATE(4946)] = 177748, - [SMALL_STATE(4947)] = 177769, - [SMALL_STATE(4948)] = 177784, - [SMALL_STATE(4949)] = 177805, - [SMALL_STATE(4950)] = 177826, - [SMALL_STATE(4951)] = 177847, - [SMALL_STATE(4952)] = 177876, - [SMALL_STATE(4953)] = 177897, - [SMALL_STATE(4954)] = 177918, - [SMALL_STATE(4955)] = 177939, - [SMALL_STATE(4956)] = 177954, - [SMALL_STATE(4957)] = 177983, - [SMALL_STATE(4958)] = 178012, - [SMALL_STATE(4959)] = 178027, - [SMALL_STATE(4960)] = 178048, - [SMALL_STATE(4961)] = 178063, - [SMALL_STATE(4962)] = 178084, - [SMALL_STATE(4963)] = 178107, - [SMALL_STATE(4964)] = 178128, - [SMALL_STATE(4965)] = 178157, - [SMALL_STATE(4966)] = 178178, - [SMALL_STATE(4967)] = 178201, - [SMALL_STATE(4968)] = 178230, - [SMALL_STATE(4969)] = 178259, - [SMALL_STATE(4970)] = 178280, - [SMALL_STATE(4971)] = 178299, - [SMALL_STATE(4972)] = 178314, - [SMALL_STATE(4973)] = 178331, - [SMALL_STATE(4974)] = 178346, - [SMALL_STATE(4975)] = 178363, - [SMALL_STATE(4976)] = 178380, - [SMALL_STATE(4977)] = 178395, - [SMALL_STATE(4978)] = 178412, - [SMALL_STATE(4979)] = 178441, - [SMALL_STATE(4980)] = 178470, - [SMALL_STATE(4981)] = 178487, - [SMALL_STATE(4982)] = 178508, - [SMALL_STATE(4983)] = 178535, - [SMALL_STATE(4984)] = 178550, - [SMALL_STATE(4985)] = 178579, - [SMALL_STATE(4986)] = 178606, - [SMALL_STATE(4987)] = 178623, - [SMALL_STATE(4988)] = 178644, - [SMALL_STATE(4989)] = 178659, - [SMALL_STATE(4990)] = 178688, - [SMALL_STATE(4991)] = 178717, - [SMALL_STATE(4992)] = 178734, - [SMALL_STATE(4993)] = 178755, - [SMALL_STATE(4994)] = 178770, - [SMALL_STATE(4995)] = 178799, - [SMALL_STATE(4996)] = 178816, - [SMALL_STATE(4997)] = 178831, - [SMALL_STATE(4998)] = 178852, - [SMALL_STATE(4999)] = 178879, - [SMALL_STATE(5000)] = 178900, - [SMALL_STATE(5001)] = 178921, - [SMALL_STATE(5002)] = 178946, - [SMALL_STATE(5003)] = 178971, - [SMALL_STATE(5004)] = 179000, - [SMALL_STATE(5005)] = 179029, - [SMALL_STATE(5006)] = 179048, - [SMALL_STATE(5007)] = 179063, - [SMALL_STATE(5008)] = 179084, - [SMALL_STATE(5009)] = 179099, - [SMALL_STATE(5010)] = 179114, - [SMALL_STATE(5011)] = 179129, - [SMALL_STATE(5012)] = 179144, - [SMALL_STATE(5013)] = 179173, - [SMALL_STATE(5014)] = 179202, - [SMALL_STATE(5015)] = 179228, - [SMALL_STATE(5016)] = 179254, - [SMALL_STATE(5017)] = 179272, - [SMALL_STATE(5018)] = 179290, - [SMALL_STATE(5019)] = 179316, - [SMALL_STATE(5020)] = 179336, - [SMALL_STATE(5021)] = 179362, - [SMALL_STATE(5022)] = 179380, - [SMALL_STATE(5023)] = 179400, - [SMALL_STATE(5024)] = 179420, - [SMALL_STATE(5025)] = 179446, - [SMALL_STATE(5026)] = 179466, - [SMALL_STATE(5027)] = 179492, - [SMALL_STATE(5028)] = 179516, - [SMALL_STATE(5029)] = 179536, - [SMALL_STATE(5030)] = 179556, - [SMALL_STATE(5031)] = 179584, - [SMALL_STATE(5032)] = 179606, - [SMALL_STATE(5033)] = 179632, - [SMALL_STATE(5034)] = 179656, - [SMALL_STATE(5035)] = 179680, - [SMALL_STATE(5036)] = 179704, - [SMALL_STATE(5037)] = 179728, - [SMALL_STATE(5038)] = 179754, - [SMALL_STATE(5039)] = 179772, - [SMALL_STATE(5040)] = 179796, - [SMALL_STATE(5041)] = 179814, - [SMALL_STATE(5042)] = 179840, - [SMALL_STATE(5043)] = 179860, - [SMALL_STATE(5044)] = 179878, - [SMALL_STATE(5045)] = 179902, - [SMALL_STATE(5046)] = 179920, - [SMALL_STATE(5047)] = 179938, - [SMALL_STATE(5048)] = 179964, - [SMALL_STATE(5049)] = 179988, - [SMALL_STATE(5050)] = 180008, - [SMALL_STATE(5051)] = 180030, - [SMALL_STATE(5052)] = 180050, - [SMALL_STATE(5053)] = 180074, - [SMALL_STATE(5054)] = 180094, - [SMALL_STATE(5055)] = 180110, - [SMALL_STATE(5056)] = 180138, - [SMALL_STATE(5057)] = 180158, - [SMALL_STATE(5058)] = 180178, - [SMALL_STATE(5059)] = 180206, - [SMALL_STATE(5060)] = 180226, - [SMALL_STATE(5061)] = 180250, - [SMALL_STATE(5062)] = 180270, - [SMALL_STATE(5063)] = 180290, - [SMALL_STATE(5064)] = 180308, - [SMALL_STATE(5065)] = 180332, - [SMALL_STATE(5066)] = 180355, - [SMALL_STATE(5067)] = 180378, - [SMALL_STATE(5068)] = 180401, - [SMALL_STATE(5069)] = 180420, - [SMALL_STATE(5070)] = 180435, - [SMALL_STATE(5071)] = 180452, - [SMALL_STATE(5072)] = 180475, - [SMALL_STATE(5073)] = 180500, - [SMALL_STATE(5074)] = 180523, - [SMALL_STATE(5075)] = 180538, - [SMALL_STATE(5076)] = 180561, - [SMALL_STATE(5077)] = 180584, - [SMALL_STATE(5078)] = 180603, - [SMALL_STATE(5079)] = 180626, - [SMALL_STATE(5080)] = 180651, - [SMALL_STATE(5081)] = 180670, - [SMALL_STATE(5082)] = 180693, - [SMALL_STATE(5083)] = 180716, - [SMALL_STATE(5084)] = 180739, - [SMALL_STATE(5085)] = 180764, - [SMALL_STATE(5086)] = 180783, - [SMALL_STATE(5087)] = 180806, - [SMALL_STATE(5088)] = 180829, - [SMALL_STATE(5089)] = 180854, - [SMALL_STATE(5090)] = 180873, - [SMALL_STATE(5091)] = 180896, - [SMALL_STATE(5092)] = 180915, - [SMALL_STATE(5093)] = 180940, - [SMALL_STATE(5094)] = 180963, - [SMALL_STATE(5095)] = 180978, - [SMALL_STATE(5096)] = 180993, - [SMALL_STATE(5097)] = 181012, - [SMALL_STATE(5098)] = 181035, - [SMALL_STATE(5099)] = 181058, - [SMALL_STATE(5100)] = 181077, - [SMALL_STATE(5101)] = 181096, - [SMALL_STATE(5102)] = 181119, - [SMALL_STATE(5103)] = 181136, - [SMALL_STATE(5104)] = 181153, - [SMALL_STATE(5105)] = 181176, - [SMALL_STATE(5106)] = 181195, - [SMALL_STATE(5107)] = 181214, - [SMALL_STATE(5108)] = 181239, - [SMALL_STATE(5109)] = 181258, - [SMALL_STATE(5110)] = 181277, - [SMALL_STATE(5111)] = 181296, - [SMALL_STATE(5112)] = 181315, - [SMALL_STATE(5113)] = 181332, - [SMALL_STATE(5114)] = 181355, - [SMALL_STATE(5115)] = 181374, - [SMALL_STATE(5116)] = 181393, - [SMALL_STATE(5117)] = 181412, - [SMALL_STATE(5118)] = 181431, - [SMALL_STATE(5119)] = 181454, - [SMALL_STATE(5120)] = 181477, - [SMALL_STATE(5121)] = 181502, - [SMALL_STATE(5122)] = 181521, - [SMALL_STATE(5123)] = 181544, - [SMALL_STATE(5124)] = 181567, - [SMALL_STATE(5125)] = 181586, - [SMALL_STATE(5126)] = 181611, - [SMALL_STATE(5127)] = 181626, - [SMALL_STATE(5128)] = 181645, - [SMALL_STATE(5129)] = 181662, - [SMALL_STATE(5130)] = 181681, - [SMALL_STATE(5131)] = 181704, - [SMALL_STATE(5132)] = 181729, - [SMALL_STATE(5133)] = 181744, - [SMALL_STATE(5134)] = 181767, - [SMALL_STATE(5135)] = 181786, - [SMALL_STATE(5136)] = 181809, - [SMALL_STATE(5137)] = 181828, - [SMALL_STATE(5138)] = 181853, - [SMALL_STATE(5139)] = 181876, - [SMALL_STATE(5140)] = 181901, - [SMALL_STATE(5141)] = 181924, - [SMALL_STATE(5142)] = 181939, - [SMALL_STATE(5143)] = 181958, - [SMALL_STATE(5144)] = 181977, - [SMALL_STATE(5145)] = 182002, - [SMALL_STATE(5146)] = 182025, - [SMALL_STATE(5147)] = 182048, - [SMALL_STATE(5148)] = 182067, - [SMALL_STATE(5149)] = 182086, - [SMALL_STATE(5150)] = 182105, - [SMALL_STATE(5151)] = 182124, - [SMALL_STATE(5152)] = 182143, - [SMALL_STATE(5153)] = 182168, - [SMALL_STATE(5154)] = 182191, - [SMALL_STATE(5155)] = 182216, - [SMALL_STATE(5156)] = 182239, - [SMALL_STATE(5157)] = 182258, - [SMALL_STATE(5158)] = 182281, - [SMALL_STATE(5159)] = 182300, - [SMALL_STATE(5160)] = 182317, - [SMALL_STATE(5161)] = 182336, - [SMALL_STATE(5162)] = 182355, - [SMALL_STATE(5163)] = 182370, - [SMALL_STATE(5164)] = 182393, - [SMALL_STATE(5165)] = 182418, - [SMALL_STATE(5166)] = 182437, - [SMALL_STATE(5167)] = 182456, - [SMALL_STATE(5168)] = 182479, - [SMALL_STATE(5169)] = 182504, - [SMALL_STATE(5170)] = 182529, - [SMALL_STATE(5171)] = 182552, - [SMALL_STATE(5172)] = 182575, - [SMALL_STATE(5173)] = 182598, - [SMALL_STATE(5174)] = 182617, - [SMALL_STATE(5175)] = 182637, - [SMALL_STATE(5176)] = 182655, - [SMALL_STATE(5177)] = 182669, - [SMALL_STATE(5178)] = 182689, - [SMALL_STATE(5179)] = 182709, - [SMALL_STATE(5180)] = 182723, - [SMALL_STATE(5181)] = 182741, - [SMALL_STATE(5182)] = 182759, - [SMALL_STATE(5183)] = 182773, - [SMALL_STATE(5184)] = 182791, - [SMALL_STATE(5185)] = 182811, - [SMALL_STATE(5186)] = 182831, - [SMALL_STATE(5187)] = 182849, - [SMALL_STATE(5188)] = 182867, - [SMALL_STATE(5189)] = 182885, - [SMALL_STATE(5190)] = 182903, - [SMALL_STATE(5191)] = 182923, - [SMALL_STATE(5192)] = 182941, - [SMALL_STATE(5193)] = 182961, - [SMALL_STATE(5194)] = 182975, - [SMALL_STATE(5195)] = 182989, - [SMALL_STATE(5196)] = 183003, - [SMALL_STATE(5197)] = 183019, - [SMALL_STATE(5198)] = 183039, - [SMALL_STATE(5199)] = 183059, - [SMALL_STATE(5200)] = 183079, - [SMALL_STATE(5201)] = 183097, - [SMALL_STATE(5202)] = 183115, - [SMALL_STATE(5203)] = 183133, - [SMALL_STATE(5204)] = 183153, - [SMALL_STATE(5205)] = 183171, - [SMALL_STATE(5206)] = 183189, - [SMALL_STATE(5207)] = 183207, - [SMALL_STATE(5208)] = 183225, - [SMALL_STATE(5209)] = 183245, - [SMALL_STATE(5210)] = 183259, - [SMALL_STATE(5211)] = 183273, - [SMALL_STATE(5212)] = 183291, - [SMALL_STATE(5213)] = 183311, - [SMALL_STATE(5214)] = 183329, - [SMALL_STATE(5215)] = 183347, - [SMALL_STATE(5216)] = 183367, - [SMALL_STATE(5217)] = 183385, - [SMALL_STATE(5218)] = 183403, - [SMALL_STATE(5219)] = 183421, - [SMALL_STATE(5220)] = 183439, - [SMALL_STATE(5221)] = 183457, - [SMALL_STATE(5222)] = 183477, - [SMALL_STATE(5223)] = 183494, - [SMALL_STATE(5224)] = 183513, - [SMALL_STATE(5225)] = 183530, - [SMALL_STATE(5226)] = 183549, - [SMALL_STATE(5227)] = 183566, - [SMALL_STATE(5228)] = 183585, - [SMALL_STATE(5229)] = 183602, - [SMALL_STATE(5230)] = 183619, - [SMALL_STATE(5231)] = 183634, - [SMALL_STATE(5232)] = 183651, - [SMALL_STATE(5233)] = 183668, - [SMALL_STATE(5234)] = 183685, - [SMALL_STATE(5235)] = 183702, - [SMALL_STATE(5236)] = 183719, - [SMALL_STATE(5237)] = 183736, - [SMALL_STATE(5238)] = 183749, - [SMALL_STATE(5239)] = 183766, - [SMALL_STATE(5240)] = 183781, - [SMALL_STATE(5241)] = 183794, - [SMALL_STATE(5242)] = 183813, - [SMALL_STATE(5243)] = 183832, - [SMALL_STATE(5244)] = 183851, - [SMALL_STATE(5245)] = 183868, - [SMALL_STATE(5246)] = 183887, - [SMALL_STATE(5247)] = 183904, - [SMALL_STATE(5248)] = 183917, - [SMALL_STATE(5249)] = 183933, - [SMALL_STATE(5250)] = 183947, - [SMALL_STATE(5251)] = 183963, - [SMALL_STATE(5252)] = 183979, - [SMALL_STATE(5253)] = 183995, - [SMALL_STATE(5254)] = 184009, - [SMALL_STATE(5255)] = 184025, - [SMALL_STATE(5256)] = 184041, - [SMALL_STATE(5257)] = 184055, - [SMALL_STATE(5258)] = 184071, - [SMALL_STATE(5259)] = 184087, - [SMALL_STATE(5260)] = 184103, - [SMALL_STATE(5261)] = 184119, - [SMALL_STATE(5262)] = 184135, - [SMALL_STATE(5263)] = 184151, - [SMALL_STATE(5264)] = 184167, - [SMALL_STATE(5265)] = 184183, - [SMALL_STATE(5266)] = 184199, - [SMALL_STATE(5267)] = 184215, - [SMALL_STATE(5268)] = 184231, - [SMALL_STATE(5269)] = 184247, - [SMALL_STATE(5270)] = 184263, - [SMALL_STATE(5271)] = 184279, - [SMALL_STATE(5272)] = 184295, - [SMALL_STATE(5273)] = 184311, - [SMALL_STATE(5274)] = 184327, - [SMALL_STATE(5275)] = 184343, - [SMALL_STATE(5276)] = 184359, - [SMALL_STATE(5277)] = 184375, - [SMALL_STATE(5278)] = 184391, - [SMALL_STATE(5279)] = 184407, - [SMALL_STATE(5280)] = 184421, - [SMALL_STATE(5281)] = 184437, - [SMALL_STATE(5282)] = 184447, - [SMALL_STATE(5283)] = 184463, - [SMALL_STATE(5284)] = 184479, - [SMALL_STATE(5285)] = 184495, - [SMALL_STATE(5286)] = 184511, - [SMALL_STATE(5287)] = 184527, - [SMALL_STATE(5288)] = 184543, - [SMALL_STATE(5289)] = 184553, - [SMALL_STATE(5290)] = 184569, - [SMALL_STATE(5291)] = 184583, - [SMALL_STATE(5292)] = 184597, - [SMALL_STATE(5293)] = 184613, - [SMALL_STATE(5294)] = 184629, - [SMALL_STATE(5295)] = 184645, - [SMALL_STATE(5296)] = 184659, - [SMALL_STATE(5297)] = 184675, - [SMALL_STATE(5298)] = 184691, - [SMALL_STATE(5299)] = 184707, - [SMALL_STATE(5300)] = 184723, - [SMALL_STATE(5301)] = 184739, - [SMALL_STATE(5302)] = 184755, - [SMALL_STATE(5303)] = 184771, - [SMALL_STATE(5304)] = 184787, - [SMALL_STATE(5305)] = 184803, - [SMALL_STATE(5306)] = 184819, - [SMALL_STATE(5307)] = 184835, - [SMALL_STATE(5308)] = 184851, - [SMALL_STATE(5309)] = 184867, - [SMALL_STATE(5310)] = 184883, - [SMALL_STATE(5311)] = 184899, - [SMALL_STATE(5312)] = 184915, - [SMALL_STATE(5313)] = 184931, - [SMALL_STATE(5314)] = 184947, - [SMALL_STATE(5315)] = 184963, - [SMALL_STATE(5316)] = 184979, - [SMALL_STATE(5317)] = 184995, - [SMALL_STATE(5318)] = 185011, - [SMALL_STATE(5319)] = 185027, - [SMALL_STATE(5320)] = 185043, - [SMALL_STATE(5321)] = 185059, - [SMALL_STATE(5322)] = 185075, - [SMALL_STATE(5323)] = 185089, - [SMALL_STATE(5324)] = 185105, - [SMALL_STATE(5325)] = 185121, - [SMALL_STATE(5326)] = 185135, - [SMALL_STATE(5327)] = 185151, - [SMALL_STATE(5328)] = 185167, - [SMALL_STATE(5329)] = 185183, - [SMALL_STATE(5330)] = 185199, - [SMALL_STATE(5331)] = 185215, - [SMALL_STATE(5332)] = 185231, - [SMALL_STATE(5333)] = 185247, - [SMALL_STATE(5334)] = 185263, - [SMALL_STATE(5335)] = 185279, - [SMALL_STATE(5336)] = 185295, - [SMALL_STATE(5337)] = 185311, - [SMALL_STATE(5338)] = 185327, - [SMALL_STATE(5339)] = 185343, - [SMALL_STATE(5340)] = 185357, - [SMALL_STATE(5341)] = 185373, - [SMALL_STATE(5342)] = 185389, - [SMALL_STATE(5343)] = 185405, - [SMALL_STATE(5344)] = 185419, - [SMALL_STATE(5345)] = 185435, - [SMALL_STATE(5346)] = 185451, - [SMALL_STATE(5347)] = 185467, - [SMALL_STATE(5348)] = 185483, - [SMALL_STATE(5349)] = 185499, - [SMALL_STATE(5350)] = 185515, - [SMALL_STATE(5351)] = 185531, - [SMALL_STATE(5352)] = 185547, - [SMALL_STATE(5353)] = 185563, - [SMALL_STATE(5354)] = 185579, - [SMALL_STATE(5355)] = 185595, - [SMALL_STATE(5356)] = 185611, - [SMALL_STATE(5357)] = 185627, - [SMALL_STATE(5358)] = 185643, - [SMALL_STATE(5359)] = 185659, - [SMALL_STATE(5360)] = 185675, - [SMALL_STATE(5361)] = 185691, - [SMALL_STATE(5362)] = 185707, - [SMALL_STATE(5363)] = 185723, - [SMALL_STATE(5364)] = 185739, - [SMALL_STATE(5365)] = 185755, - [SMALL_STATE(5366)] = 185771, - [SMALL_STATE(5367)] = 185787, - [SMALL_STATE(5368)] = 185803, - [SMALL_STATE(5369)] = 185819, - [SMALL_STATE(5370)] = 185833, - [SMALL_STATE(5371)] = 185849, - [SMALL_STATE(5372)] = 185865, - [SMALL_STATE(5373)] = 185881, - [SMALL_STATE(5374)] = 185897, - [SMALL_STATE(5375)] = 185913, - [SMALL_STATE(5376)] = 185929, - [SMALL_STATE(5377)] = 185945, - [SMALL_STATE(5378)] = 185959, - [SMALL_STATE(5379)] = 185973, - [SMALL_STATE(5380)] = 185989, - [SMALL_STATE(5381)] = 186005, - [SMALL_STATE(5382)] = 186021, - [SMALL_STATE(5383)] = 186037, - [SMALL_STATE(5384)] = 186053, - [SMALL_STATE(5385)] = 186069, - [SMALL_STATE(5386)] = 186085, - [SMALL_STATE(5387)] = 186101, - [SMALL_STATE(5388)] = 186117, - [SMALL_STATE(5389)] = 186133, - [SMALL_STATE(5390)] = 186149, - [SMALL_STATE(5391)] = 186165, - [SMALL_STATE(5392)] = 186181, - [SMALL_STATE(5393)] = 186197, - [SMALL_STATE(5394)] = 186213, - [SMALL_STATE(5395)] = 186229, - [SMALL_STATE(5396)] = 186243, - [SMALL_STATE(5397)] = 186259, - [SMALL_STATE(5398)] = 186275, - [SMALL_STATE(5399)] = 186291, - [SMALL_STATE(5400)] = 186307, - [SMALL_STATE(5401)] = 186323, - [SMALL_STATE(5402)] = 186337, - [SMALL_STATE(5403)] = 186353, - [SMALL_STATE(5404)] = 186369, - [SMALL_STATE(5405)] = 186385, - [SMALL_STATE(5406)] = 186401, - [SMALL_STATE(5407)] = 186417, - [SMALL_STATE(5408)] = 186433, - [SMALL_STATE(5409)] = 186449, - [SMALL_STATE(5410)] = 186465, - [SMALL_STATE(5411)] = 186481, - [SMALL_STATE(5412)] = 186497, - [SMALL_STATE(5413)] = 186513, - [SMALL_STATE(5414)] = 186529, - [SMALL_STATE(5415)] = 186545, - [SMALL_STATE(5416)] = 186561, - [SMALL_STATE(5417)] = 186577, - [SMALL_STATE(5418)] = 186593, - [SMALL_STATE(5419)] = 186609, - [SMALL_STATE(5420)] = 186625, - [SMALL_STATE(5421)] = 186641, - [SMALL_STATE(5422)] = 186657, - [SMALL_STATE(5423)] = 186671, - [SMALL_STATE(5424)] = 186687, - [SMALL_STATE(5425)] = 186703, - [SMALL_STATE(5426)] = 186719, - [SMALL_STATE(5427)] = 186735, - [SMALL_STATE(5428)] = 186751, - [SMALL_STATE(5429)] = 186767, - [SMALL_STATE(5430)] = 186781, - [SMALL_STATE(5431)] = 186797, - [SMALL_STATE(5432)] = 186813, - [SMALL_STATE(5433)] = 186829, - [SMALL_STATE(5434)] = 186845, - [SMALL_STATE(5435)] = 186861, - [SMALL_STATE(5436)] = 186877, - [SMALL_STATE(5437)] = 186889, - [SMALL_STATE(5438)] = 186905, - [SMALL_STATE(5439)] = 186919, - [SMALL_STATE(5440)] = 186935, - [SMALL_STATE(5441)] = 186951, - [SMALL_STATE(5442)] = 186967, - [SMALL_STATE(5443)] = 186983, - [SMALL_STATE(5444)] = 186999, - [SMALL_STATE(5445)] = 187015, - [SMALL_STATE(5446)] = 187031, - [SMALL_STATE(5447)] = 187047, - [SMALL_STATE(5448)] = 187063, - [SMALL_STATE(5449)] = 187079, - [SMALL_STATE(5450)] = 187095, - [SMALL_STATE(5451)] = 187111, - [SMALL_STATE(5452)] = 187125, - [SMALL_STATE(5453)] = 187141, - [SMALL_STATE(5454)] = 187157, - [SMALL_STATE(5455)] = 187171, - [SMALL_STATE(5456)] = 187187, - [SMALL_STATE(5457)] = 187203, - [SMALL_STATE(5458)] = 187219, - [SMALL_STATE(5459)] = 187235, - [SMALL_STATE(5460)] = 187251, - [SMALL_STATE(5461)] = 187267, - [SMALL_STATE(5462)] = 187283, - [SMALL_STATE(5463)] = 187299, - [SMALL_STATE(5464)] = 187315, - [SMALL_STATE(5465)] = 187331, - [SMALL_STATE(5466)] = 187347, - [SMALL_STATE(5467)] = 187361, - [SMALL_STATE(5468)] = 187377, - [SMALL_STATE(5469)] = 187391, - [SMALL_STATE(5470)] = 187407, - [SMALL_STATE(5471)] = 187421, - [SMALL_STATE(5472)] = 187437, - [SMALL_STATE(5473)] = 187453, - [SMALL_STATE(5474)] = 187469, - [SMALL_STATE(5475)] = 187485, - [SMALL_STATE(5476)] = 187501, - [SMALL_STATE(5477)] = 187517, - [SMALL_STATE(5478)] = 187533, - [SMALL_STATE(5479)] = 187549, - [SMALL_STATE(5480)] = 187565, - [SMALL_STATE(5481)] = 187581, - [SMALL_STATE(5482)] = 187597, - [SMALL_STATE(5483)] = 187613, - [SMALL_STATE(5484)] = 187629, - [SMALL_STATE(5485)] = 187645, - [SMALL_STATE(5486)] = 187661, - [SMALL_STATE(5487)] = 187677, - [SMALL_STATE(5488)] = 187693, - [SMALL_STATE(5489)] = 187709, - [SMALL_STATE(5490)] = 187725, - [SMALL_STATE(5491)] = 187741, - [SMALL_STATE(5492)] = 187757, - [SMALL_STATE(5493)] = 187773, - [SMALL_STATE(5494)] = 187789, - [SMALL_STATE(5495)] = 187803, - [SMALL_STATE(5496)] = 187819, - [SMALL_STATE(5497)] = 187833, - [SMALL_STATE(5498)] = 187849, - [SMALL_STATE(5499)] = 187865, - [SMALL_STATE(5500)] = 187879, - [SMALL_STATE(5501)] = 187893, - [SMALL_STATE(5502)] = 187909, - [SMALL_STATE(5503)] = 187925, - [SMALL_STATE(5504)] = 187941, - [SMALL_STATE(5505)] = 187957, - [SMALL_STATE(5506)] = 187973, - [SMALL_STATE(5507)] = 187989, - [SMALL_STATE(5508)] = 188005, - [SMALL_STATE(5509)] = 188019, - [SMALL_STATE(5510)] = 188035, - [SMALL_STATE(5511)] = 188051, - [SMALL_STATE(5512)] = 188067, - [SMALL_STATE(5513)] = 188083, - [SMALL_STATE(5514)] = 188099, - [SMALL_STATE(5515)] = 188115, - [SMALL_STATE(5516)] = 188131, - [SMALL_STATE(5517)] = 188144, - [SMALL_STATE(5518)] = 188157, - [SMALL_STATE(5519)] = 188170, - [SMALL_STATE(5520)] = 188183, - [SMALL_STATE(5521)] = 188196, - [SMALL_STATE(5522)] = 188209, - [SMALL_STATE(5523)] = 188222, - [SMALL_STATE(5524)] = 188235, - [SMALL_STATE(5525)] = 188246, - [SMALL_STATE(5526)] = 188257, - [SMALL_STATE(5527)] = 188266, - [SMALL_STATE(5528)] = 188277, - [SMALL_STATE(5529)] = 188290, - [SMALL_STATE(5530)] = 188303, - [SMALL_STATE(5531)] = 188316, - [SMALL_STATE(5532)] = 188329, - [SMALL_STATE(5533)] = 188342, - [SMALL_STATE(5534)] = 188355, - [SMALL_STATE(5535)] = 188368, - [SMALL_STATE(5536)] = 188381, - [SMALL_STATE(5537)] = 188394, - [SMALL_STATE(5538)] = 188407, - [SMALL_STATE(5539)] = 188418, - [SMALL_STATE(5540)] = 188431, - [SMALL_STATE(5541)] = 188444, - [SMALL_STATE(5542)] = 188453, - [SMALL_STATE(5543)] = 188466, - [SMALL_STATE(5544)] = 188475, - [SMALL_STATE(5545)] = 188488, - [SMALL_STATE(5546)] = 188501, - [SMALL_STATE(5547)] = 188514, - [SMALL_STATE(5548)] = 188525, - [SMALL_STATE(5549)] = 188538, - [SMALL_STATE(5550)] = 188551, - [SMALL_STATE(5551)] = 188564, - [SMALL_STATE(5552)] = 188575, - [SMALL_STATE(5553)] = 188588, - [SMALL_STATE(5554)] = 188599, - [SMALL_STATE(5555)] = 188612, - [SMALL_STATE(5556)] = 188623, - [SMALL_STATE(5557)] = 188636, - [SMALL_STATE(5558)] = 188649, - [SMALL_STATE(5559)] = 188662, - [SMALL_STATE(5560)] = 188675, - [SMALL_STATE(5561)] = 188688, - [SMALL_STATE(5562)] = 188701, - [SMALL_STATE(5563)] = 188714, - [SMALL_STATE(5564)] = 188727, - [SMALL_STATE(5565)] = 188740, - [SMALL_STATE(5566)] = 188753, - [SMALL_STATE(5567)] = 188764, - [SMALL_STATE(5568)] = 188777, - [SMALL_STATE(5569)] = 188790, - [SMALL_STATE(5570)] = 188801, - [SMALL_STATE(5571)] = 188814, - [SMALL_STATE(5572)] = 188827, - [SMALL_STATE(5573)] = 188840, - [SMALL_STATE(5574)] = 188853, - [SMALL_STATE(5575)] = 188864, - [SMALL_STATE(5576)] = 188875, - [SMALL_STATE(5577)] = 188888, - [SMALL_STATE(5578)] = 188899, - [SMALL_STATE(5579)] = 188912, - [SMALL_STATE(5580)] = 188925, - [SMALL_STATE(5581)] = 188938, - [SMALL_STATE(5582)] = 188951, - [SMALL_STATE(5583)] = 188960, - [SMALL_STATE(5584)] = 188973, - [SMALL_STATE(5585)] = 188982, - [SMALL_STATE(5586)] = 188993, - [SMALL_STATE(5587)] = 189006, - [SMALL_STATE(5588)] = 189019, - [SMALL_STATE(5589)] = 189032, - [SMALL_STATE(5590)] = 189041, - [SMALL_STATE(5591)] = 189054, - [SMALL_STATE(5592)] = 189067, - [SMALL_STATE(5593)] = 189080, - [SMALL_STATE(5594)] = 189093, - [SMALL_STATE(5595)] = 189106, - [SMALL_STATE(5596)] = 189119, - [SMALL_STATE(5597)] = 189132, - [SMALL_STATE(5598)] = 189145, - [SMALL_STATE(5599)] = 189158, - [SMALL_STATE(5600)] = 189171, - [SMALL_STATE(5601)] = 189184, - [SMALL_STATE(5602)] = 189197, - [SMALL_STATE(5603)] = 189210, - [SMALL_STATE(5604)] = 189223, - [SMALL_STATE(5605)] = 189236, - [SMALL_STATE(5606)] = 189249, - [SMALL_STATE(5607)] = 189262, - [SMALL_STATE(5608)] = 189275, - [SMALL_STATE(5609)] = 189288, - [SMALL_STATE(5610)] = 189301, - [SMALL_STATE(5611)] = 189312, - [SMALL_STATE(5612)] = 189325, - [SMALL_STATE(5613)] = 189338, - [SMALL_STATE(5614)] = 189351, - [SMALL_STATE(5615)] = 189364, - [SMALL_STATE(5616)] = 189377, - [SMALL_STATE(5617)] = 189390, - [SMALL_STATE(5618)] = 189403, - [SMALL_STATE(5619)] = 189416, - [SMALL_STATE(5620)] = 189429, - [SMALL_STATE(5621)] = 189442, - [SMALL_STATE(5622)] = 189455, - [SMALL_STATE(5623)] = 189468, - [SMALL_STATE(5624)] = 189481, - [SMALL_STATE(5625)] = 189494, - [SMALL_STATE(5626)] = 189507, - [SMALL_STATE(5627)] = 189520, - [SMALL_STATE(5628)] = 189531, - [SMALL_STATE(5629)] = 189544, - [SMALL_STATE(5630)] = 189557, - [SMALL_STATE(5631)] = 189570, - [SMALL_STATE(5632)] = 189583, - [SMALL_STATE(5633)] = 189596, - [SMALL_STATE(5634)] = 189609, - [SMALL_STATE(5635)] = 189622, - [SMALL_STATE(5636)] = 189635, - [SMALL_STATE(5637)] = 189648, - [SMALL_STATE(5638)] = 189661, - [SMALL_STATE(5639)] = 189672, - [SMALL_STATE(5640)] = 189685, - [SMALL_STATE(5641)] = 189698, - [SMALL_STATE(5642)] = 189711, - [SMALL_STATE(5643)] = 189724, - [SMALL_STATE(5644)] = 189737, - [SMALL_STATE(5645)] = 189748, - [SMALL_STATE(5646)] = 189761, - [SMALL_STATE(5647)] = 189774, - [SMALL_STATE(5648)] = 189787, - [SMALL_STATE(5649)] = 189800, - [SMALL_STATE(5650)] = 189813, - [SMALL_STATE(5651)] = 189826, - [SMALL_STATE(5652)] = 189839, - [SMALL_STATE(5653)] = 189852, - [SMALL_STATE(5654)] = 189863, - [SMALL_STATE(5655)] = 189874, - [SMALL_STATE(5656)] = 189887, - [SMALL_STATE(5657)] = 189900, - [SMALL_STATE(5658)] = 189913, - [SMALL_STATE(5659)] = 189924, - [SMALL_STATE(5660)] = 189937, - [SMALL_STATE(5661)] = 189950, - [SMALL_STATE(5662)] = 189961, - [SMALL_STATE(5663)] = 189974, - [SMALL_STATE(5664)] = 189987, - [SMALL_STATE(5665)] = 190000, - [SMALL_STATE(5666)] = 190013, - [SMALL_STATE(5667)] = 190026, - [SMALL_STATE(5668)] = 190039, - [SMALL_STATE(5669)] = 190052, - [SMALL_STATE(5670)] = 190065, - [SMALL_STATE(5671)] = 190078, - [SMALL_STATE(5672)] = 190091, - [SMALL_STATE(5673)] = 190104, - [SMALL_STATE(5674)] = 190117, - [SMALL_STATE(5675)] = 190130, - [SMALL_STATE(5676)] = 190143, - [SMALL_STATE(5677)] = 190156, - [SMALL_STATE(5678)] = 190169, - [SMALL_STATE(5679)] = 190182, - [SMALL_STATE(5680)] = 190195, - [SMALL_STATE(5681)] = 190208, - [SMALL_STATE(5682)] = 190221, - [SMALL_STATE(5683)] = 190234, - [SMALL_STATE(5684)] = 190247, - [SMALL_STATE(5685)] = 190260, - [SMALL_STATE(5686)] = 190273, - [SMALL_STATE(5687)] = 190284, - [SMALL_STATE(5688)] = 190297, - [SMALL_STATE(5689)] = 190310, - [SMALL_STATE(5690)] = 190323, - [SMALL_STATE(5691)] = 190336, - [SMALL_STATE(5692)] = 190349, - [SMALL_STATE(5693)] = 190360, - [SMALL_STATE(5694)] = 190373, - [SMALL_STATE(5695)] = 190386, - [SMALL_STATE(5696)] = 190399, - [SMALL_STATE(5697)] = 190412, - [SMALL_STATE(5698)] = 190425, - [SMALL_STATE(5699)] = 190438, - [SMALL_STATE(5700)] = 190451, - [SMALL_STATE(5701)] = 190464, - [SMALL_STATE(5702)] = 190477, - [SMALL_STATE(5703)] = 190490, - [SMALL_STATE(5704)] = 190503, - [SMALL_STATE(5705)] = 190516, - [SMALL_STATE(5706)] = 190529, - [SMALL_STATE(5707)] = 190542, - [SMALL_STATE(5708)] = 190555, - [SMALL_STATE(5709)] = 190566, - [SMALL_STATE(5710)] = 190579, - [SMALL_STATE(5711)] = 190590, - [SMALL_STATE(5712)] = 190603, - [SMALL_STATE(5713)] = 190616, - [SMALL_STATE(5714)] = 190629, - [SMALL_STATE(5715)] = 190642, - [SMALL_STATE(5716)] = 190655, - [SMALL_STATE(5717)] = 190668, - [SMALL_STATE(5718)] = 190681, - [SMALL_STATE(5719)] = 190694, - [SMALL_STATE(5720)] = 190705, - [SMALL_STATE(5721)] = 190718, - [SMALL_STATE(5722)] = 190731, - [SMALL_STATE(5723)] = 190744, - [SMALL_STATE(5724)] = 190757, - [SMALL_STATE(5725)] = 190770, - [SMALL_STATE(5726)] = 190783, - [SMALL_STATE(5727)] = 190794, - [SMALL_STATE(5728)] = 190807, - [SMALL_STATE(5729)] = 190820, - [SMALL_STATE(5730)] = 190833, - [SMALL_STATE(5731)] = 190846, - [SMALL_STATE(5732)] = 190859, - [SMALL_STATE(5733)] = 190872, - [SMALL_STATE(5734)] = 190885, - [SMALL_STATE(5735)] = 190898, - [SMALL_STATE(5736)] = 190911, - [SMALL_STATE(5737)] = 190922, - [SMALL_STATE(5738)] = 190935, - [SMALL_STATE(5739)] = 190948, - [SMALL_STATE(5740)] = 190961, - [SMALL_STATE(5741)] = 190974, - [SMALL_STATE(5742)] = 190987, - [SMALL_STATE(5743)] = 191000, - [SMALL_STATE(5744)] = 191013, - [SMALL_STATE(5745)] = 191026, - [SMALL_STATE(5746)] = 191037, - [SMALL_STATE(5747)] = 191050, - [SMALL_STATE(5748)] = 191063, - [SMALL_STATE(5749)] = 191076, - [SMALL_STATE(5750)] = 191089, - [SMALL_STATE(5751)] = 191102, - [SMALL_STATE(5752)] = 191113, - [SMALL_STATE(5753)] = 191126, - [SMALL_STATE(5754)] = 191139, - [SMALL_STATE(5755)] = 191152, - [SMALL_STATE(5756)] = 191165, - [SMALL_STATE(5757)] = 191178, - [SMALL_STATE(5758)] = 191191, - [SMALL_STATE(5759)] = 191204, - [SMALL_STATE(5760)] = 191217, - [SMALL_STATE(5761)] = 191230, - [SMALL_STATE(5762)] = 191243, - [SMALL_STATE(5763)] = 191254, - [SMALL_STATE(5764)] = 191267, - [SMALL_STATE(5765)] = 191280, - [SMALL_STATE(5766)] = 191293, - [SMALL_STATE(5767)] = 191306, - [SMALL_STATE(5768)] = 191319, - [SMALL_STATE(5769)] = 191332, - [SMALL_STATE(5770)] = 191345, - [SMALL_STATE(5771)] = 191358, - [SMALL_STATE(5772)] = 191371, - [SMALL_STATE(5773)] = 191384, - [SMALL_STATE(5774)] = 191397, - [SMALL_STATE(5775)] = 191410, - [SMALL_STATE(5776)] = 191423, - [SMALL_STATE(5777)] = 191436, - [SMALL_STATE(5778)] = 191449, - [SMALL_STATE(5779)] = 191462, - [SMALL_STATE(5780)] = 191475, - [SMALL_STATE(5781)] = 191488, - [SMALL_STATE(5782)] = 191501, - [SMALL_STATE(5783)] = 191514, - [SMALL_STATE(5784)] = 191527, - [SMALL_STATE(5785)] = 191540, - [SMALL_STATE(5786)] = 191553, - [SMALL_STATE(5787)] = 191566, - [SMALL_STATE(5788)] = 191579, - [SMALL_STATE(5789)] = 191592, - [SMALL_STATE(5790)] = 191605, - [SMALL_STATE(5791)] = 191618, - [SMALL_STATE(5792)] = 191631, - [SMALL_STATE(5793)] = 191644, - [SMALL_STATE(5794)] = 191657, - [SMALL_STATE(5795)] = 191670, - [SMALL_STATE(5796)] = 191683, - [SMALL_STATE(5797)] = 191696, - [SMALL_STATE(5798)] = 191709, - [SMALL_STATE(5799)] = 191720, - [SMALL_STATE(5800)] = 191731, - [SMALL_STATE(5801)] = 191744, - [SMALL_STATE(5802)] = 191754, - [SMALL_STATE(5803)] = 191764, - [SMALL_STATE(5804)] = 191772, - [SMALL_STATE(5805)] = 191780, - [SMALL_STATE(5806)] = 191790, - [SMALL_STATE(5807)] = 191800, - [SMALL_STATE(5808)] = 191810, - [SMALL_STATE(5809)] = 191818, - [SMALL_STATE(5810)] = 191826, - [SMALL_STATE(5811)] = 191834, - [SMALL_STATE(5812)] = 191842, - [SMALL_STATE(5813)] = 191852, - [SMALL_STATE(5814)] = 191860, - [SMALL_STATE(5815)] = 191870, - [SMALL_STATE(5816)] = 191878, - [SMALL_STATE(5817)] = 191888, - [SMALL_STATE(5818)] = 191896, - [SMALL_STATE(5819)] = 191906, - [SMALL_STATE(5820)] = 191914, - [SMALL_STATE(5821)] = 191924, - [SMALL_STATE(5822)] = 191934, - [SMALL_STATE(5823)] = 191944, - [SMALL_STATE(5824)] = 191954, - [SMALL_STATE(5825)] = 191964, - [SMALL_STATE(5826)] = 191974, - [SMALL_STATE(5827)] = 191982, - [SMALL_STATE(5828)] = 191992, - [SMALL_STATE(5829)] = 192002, - [SMALL_STATE(5830)] = 192012, - [SMALL_STATE(5831)] = 192022, - [SMALL_STATE(5832)] = 192032, - [SMALL_STATE(5833)] = 192042, - [SMALL_STATE(5834)] = 192050, - [SMALL_STATE(5835)] = 192058, - [SMALL_STATE(5836)] = 192066, - [SMALL_STATE(5837)] = 192076, - [SMALL_STATE(5838)] = 192086, - [SMALL_STATE(5839)] = 192094, - [SMALL_STATE(5840)] = 192102, - [SMALL_STATE(5841)] = 192112, - [SMALL_STATE(5842)] = 192120, - [SMALL_STATE(5843)] = 192130, - [SMALL_STATE(5844)] = 192140, - [SMALL_STATE(5845)] = 192150, - [SMALL_STATE(5846)] = 192160, - [SMALL_STATE(5847)] = 192168, - [SMALL_STATE(5848)] = 192178, - [SMALL_STATE(5849)] = 192188, - [SMALL_STATE(5850)] = 192198, - [SMALL_STATE(5851)] = 192208, - [SMALL_STATE(5852)] = 192216, - [SMALL_STATE(5853)] = 192226, - [SMALL_STATE(5854)] = 192236, - [SMALL_STATE(5855)] = 192244, - [SMALL_STATE(5856)] = 192254, - [SMALL_STATE(5857)] = 192264, - [SMALL_STATE(5858)] = 192274, - [SMALL_STATE(5859)] = 192284, - [SMALL_STATE(5860)] = 192294, - [SMALL_STATE(5861)] = 192302, - [SMALL_STATE(5862)] = 192310, - [SMALL_STATE(5863)] = 192318, - [SMALL_STATE(5864)] = 192326, - [SMALL_STATE(5865)] = 192336, - [SMALL_STATE(5866)] = 192346, - [SMALL_STATE(5867)] = 192356, - [SMALL_STATE(5868)] = 192366, - [SMALL_STATE(5869)] = 192376, - [SMALL_STATE(5870)] = 192384, - [SMALL_STATE(5871)] = 192394, - [SMALL_STATE(5872)] = 192404, - [SMALL_STATE(5873)] = 192414, - [SMALL_STATE(5874)] = 192422, - [SMALL_STATE(5875)] = 192432, - [SMALL_STATE(5876)] = 192442, - [SMALL_STATE(5877)] = 192452, - [SMALL_STATE(5878)] = 192462, - [SMALL_STATE(5879)] = 192472, - [SMALL_STATE(5880)] = 192482, - [SMALL_STATE(5881)] = 192492, - [SMALL_STATE(5882)] = 192500, - [SMALL_STATE(5883)] = 192508, - [SMALL_STATE(5884)] = 192516, - [SMALL_STATE(5885)] = 192526, - [SMALL_STATE(5886)] = 192534, - [SMALL_STATE(5887)] = 192542, - [SMALL_STATE(5888)] = 192550, - [SMALL_STATE(5889)] = 192558, - [SMALL_STATE(5890)] = 192568, - [SMALL_STATE(5891)] = 192578, - [SMALL_STATE(5892)] = 192588, - [SMALL_STATE(5893)] = 192598, - [SMALL_STATE(5894)] = 192608, - [SMALL_STATE(5895)] = 192618, - [SMALL_STATE(5896)] = 192626, - [SMALL_STATE(5897)] = 192636, - [SMALL_STATE(5898)] = 192644, - [SMALL_STATE(5899)] = 192654, - [SMALL_STATE(5900)] = 192664, - [SMALL_STATE(5901)] = 192674, - [SMALL_STATE(5902)] = 192684, - [SMALL_STATE(5903)] = 192694, - [SMALL_STATE(5904)] = 192702, - [SMALL_STATE(5905)] = 192712, - [SMALL_STATE(5906)] = 192720, - [SMALL_STATE(5907)] = 192728, - [SMALL_STATE(5908)] = 192736, - [SMALL_STATE(5909)] = 192746, - [SMALL_STATE(5910)] = 192756, - [SMALL_STATE(5911)] = 192766, - [SMALL_STATE(5912)] = 192776, - [SMALL_STATE(5913)] = 192786, - [SMALL_STATE(5914)] = 192796, - [SMALL_STATE(5915)] = 192806, - [SMALL_STATE(5916)] = 192816, - [SMALL_STATE(5917)] = 192826, - [SMALL_STATE(5918)] = 192836, - [SMALL_STATE(5919)] = 192846, - [SMALL_STATE(5920)] = 192856, - [SMALL_STATE(5921)] = 192866, - [SMALL_STATE(5922)] = 192874, - [SMALL_STATE(5923)] = 192882, - [SMALL_STATE(5924)] = 192890, - [SMALL_STATE(5925)] = 192900, - [SMALL_STATE(5926)] = 192908, - [SMALL_STATE(5927)] = 192918, - [SMALL_STATE(5928)] = 192926, - [SMALL_STATE(5929)] = 192934, - [SMALL_STATE(5930)] = 192942, - [SMALL_STATE(5931)] = 192952, - [SMALL_STATE(5932)] = 192962, - [SMALL_STATE(5933)] = 192972, - [SMALL_STATE(5934)] = 192982, - [SMALL_STATE(5935)] = 192992, - [SMALL_STATE(5936)] = 193000, - [SMALL_STATE(5937)] = 193010, - [SMALL_STATE(5938)] = 193020, - [SMALL_STATE(5939)] = 193030, - [SMALL_STATE(5940)] = 193040, - [SMALL_STATE(5941)] = 193048, - [SMALL_STATE(5942)] = 193058, - [SMALL_STATE(5943)] = 193068, - [SMALL_STATE(5944)] = 193076, - [SMALL_STATE(5945)] = 193086, - [SMALL_STATE(5946)] = 193096, - [SMALL_STATE(5947)] = 193106, - [SMALL_STATE(5948)] = 193116, - [SMALL_STATE(5949)] = 193126, - [SMALL_STATE(5950)] = 193136, - [SMALL_STATE(5951)] = 193146, - [SMALL_STATE(5952)] = 193156, - [SMALL_STATE(5953)] = 193166, - [SMALL_STATE(5954)] = 193176, - [SMALL_STATE(5955)] = 193186, - [SMALL_STATE(5956)] = 193196, - [SMALL_STATE(5957)] = 193206, - [SMALL_STATE(5958)] = 193216, - [SMALL_STATE(5959)] = 193224, - [SMALL_STATE(5960)] = 193232, - [SMALL_STATE(5961)] = 193240, - [SMALL_STATE(5962)] = 193248, - [SMALL_STATE(5963)] = 193258, - [SMALL_STATE(5964)] = 193266, - [SMALL_STATE(5965)] = 193274, - [SMALL_STATE(5966)] = 193282, - [SMALL_STATE(5967)] = 193292, - [SMALL_STATE(5968)] = 193302, - [SMALL_STATE(5969)] = 193312, - [SMALL_STATE(5970)] = 193322, - [SMALL_STATE(5971)] = 193330, - [SMALL_STATE(5972)] = 193340, - [SMALL_STATE(5973)] = 193350, - [SMALL_STATE(5974)] = 193360, - [SMALL_STATE(5975)] = 193370, - [SMALL_STATE(5976)] = 193380, - [SMALL_STATE(5977)] = 193388, - [SMALL_STATE(5978)] = 193396, - [SMALL_STATE(5979)] = 193406, - [SMALL_STATE(5980)] = 193416, - [SMALL_STATE(5981)] = 193424, - [SMALL_STATE(5982)] = 193432, - [SMALL_STATE(5983)] = 193440, - [SMALL_STATE(5984)] = 193450, - [SMALL_STATE(5985)] = 193460, - [SMALL_STATE(5986)] = 193470, - [SMALL_STATE(5987)] = 193480, - [SMALL_STATE(5988)] = 193490, - [SMALL_STATE(5989)] = 193500, - [SMALL_STATE(5990)] = 193508, - [SMALL_STATE(5991)] = 193516, - [SMALL_STATE(5992)] = 193524, - [SMALL_STATE(5993)] = 193534, - [SMALL_STATE(5994)] = 193544, - [SMALL_STATE(5995)] = 193554, - [SMALL_STATE(5996)] = 193562, - [SMALL_STATE(5997)] = 193572, - [SMALL_STATE(5998)] = 193582, - [SMALL_STATE(5999)] = 193592, - [SMALL_STATE(6000)] = 193602, - [SMALL_STATE(6001)] = 193612, - [SMALL_STATE(6002)] = 193622, - [SMALL_STATE(6003)] = 193632, - [SMALL_STATE(6004)] = 193642, - [SMALL_STATE(6005)] = 193652, - [SMALL_STATE(6006)] = 193662, - [SMALL_STATE(6007)] = 193672, - [SMALL_STATE(6008)] = 193682, - [SMALL_STATE(6009)] = 193692, - [SMALL_STATE(6010)] = 193700, - [SMALL_STATE(6011)] = 193708, - [SMALL_STATE(6012)] = 193716, - [SMALL_STATE(6013)] = 193724, - [SMALL_STATE(6014)] = 193734, - [SMALL_STATE(6015)] = 193744, - [SMALL_STATE(6016)] = 193754, - [SMALL_STATE(6017)] = 193764, - [SMALL_STATE(6018)] = 193772, - [SMALL_STATE(6019)] = 193780, - [SMALL_STATE(6020)] = 193788, - [SMALL_STATE(6021)] = 193798, - [SMALL_STATE(6022)] = 193808, - [SMALL_STATE(6023)] = 193816, - [SMALL_STATE(6024)] = 193826, - [SMALL_STATE(6025)] = 193836, - [SMALL_STATE(6026)] = 193846, - [SMALL_STATE(6027)] = 193854, - [SMALL_STATE(6028)] = 193862, - [SMALL_STATE(6029)] = 193872, - [SMALL_STATE(6030)] = 193880, - [SMALL_STATE(6031)] = 193890, - [SMALL_STATE(6032)] = 193898, - [SMALL_STATE(6033)] = 193906, - [SMALL_STATE(6034)] = 193914, - [SMALL_STATE(6035)] = 193922, - [SMALL_STATE(6036)] = 193930, - [SMALL_STATE(6037)] = 193938, - [SMALL_STATE(6038)] = 193948, - [SMALL_STATE(6039)] = 193956, - [SMALL_STATE(6040)] = 193966, - [SMALL_STATE(6041)] = 193974, - [SMALL_STATE(6042)] = 193984, - [SMALL_STATE(6043)] = 193992, - [SMALL_STATE(6044)] = 194002, - [SMALL_STATE(6045)] = 194010, - [SMALL_STATE(6046)] = 194020, - [SMALL_STATE(6047)] = 194030, - [SMALL_STATE(6048)] = 194038, - [SMALL_STATE(6049)] = 194046, - [SMALL_STATE(6050)] = 194054, - [SMALL_STATE(6051)] = 194062, - [SMALL_STATE(6052)] = 194070, - [SMALL_STATE(6053)] = 194080, - [SMALL_STATE(6054)] = 194088, - [SMALL_STATE(6055)] = 194096, - [SMALL_STATE(6056)] = 194104, - [SMALL_STATE(6057)] = 194114, - [SMALL_STATE(6058)] = 194122, - [SMALL_STATE(6059)] = 194130, - [SMALL_STATE(6060)] = 194140, - [SMALL_STATE(6061)] = 194148, - [SMALL_STATE(6062)] = 194156, - [SMALL_STATE(6063)] = 194164, - [SMALL_STATE(6064)] = 194174, - [SMALL_STATE(6065)] = 194184, - [SMALL_STATE(6066)] = 194192, - [SMALL_STATE(6067)] = 194200, - [SMALL_STATE(6068)] = 194208, - [SMALL_STATE(6069)] = 194216, - [SMALL_STATE(6070)] = 194224, - [SMALL_STATE(6071)] = 194232, - [SMALL_STATE(6072)] = 194242, - [SMALL_STATE(6073)] = 194250, - [SMALL_STATE(6074)] = 194260, - [SMALL_STATE(6075)] = 194270, - [SMALL_STATE(6076)] = 194280, - [SMALL_STATE(6077)] = 194288, - [SMALL_STATE(6078)] = 194296, - [SMALL_STATE(6079)] = 194304, - [SMALL_STATE(6080)] = 194314, - [SMALL_STATE(6081)] = 194322, - [SMALL_STATE(6082)] = 194332, - [SMALL_STATE(6083)] = 194342, - [SMALL_STATE(6084)] = 194352, - [SMALL_STATE(6085)] = 194362, - [SMALL_STATE(6086)] = 194372, - [SMALL_STATE(6087)] = 194382, - [SMALL_STATE(6088)] = 194392, - [SMALL_STATE(6089)] = 194402, - [SMALL_STATE(6090)] = 194412, - [SMALL_STATE(6091)] = 194422, - [SMALL_STATE(6092)] = 194432, - [SMALL_STATE(6093)] = 194442, - [SMALL_STATE(6094)] = 194452, - [SMALL_STATE(6095)] = 194462, - [SMALL_STATE(6096)] = 194470, - [SMALL_STATE(6097)] = 194480, - [SMALL_STATE(6098)] = 194490, - [SMALL_STATE(6099)] = 194500, - [SMALL_STATE(6100)] = 194510, - [SMALL_STATE(6101)] = 194520, - [SMALL_STATE(6102)] = 194528, - [SMALL_STATE(6103)] = 194536, - [SMALL_STATE(6104)] = 194546, - [SMALL_STATE(6105)] = 194556, - [SMALL_STATE(6106)] = 194564, - [SMALL_STATE(6107)] = 194574, - [SMALL_STATE(6108)] = 194582, - [SMALL_STATE(6109)] = 194592, - [SMALL_STATE(6110)] = 194602, - [SMALL_STATE(6111)] = 194612, - [SMALL_STATE(6112)] = 194622, - [SMALL_STATE(6113)] = 194632, - [SMALL_STATE(6114)] = 194642, - [SMALL_STATE(6115)] = 194652, - [SMALL_STATE(6116)] = 194662, - [SMALL_STATE(6117)] = 194672, - [SMALL_STATE(6118)] = 194682, - [SMALL_STATE(6119)] = 194690, - [SMALL_STATE(6120)] = 194698, - [SMALL_STATE(6121)] = 194706, - [SMALL_STATE(6122)] = 194716, - [SMALL_STATE(6123)] = 194724, - [SMALL_STATE(6124)] = 194732, - [SMALL_STATE(6125)] = 194742, - [SMALL_STATE(6126)] = 194752, - [SMALL_STATE(6127)] = 194762, - [SMALL_STATE(6128)] = 194772, - [SMALL_STATE(6129)] = 194780, - [SMALL_STATE(6130)] = 194790, - [SMALL_STATE(6131)] = 194800, - [SMALL_STATE(6132)] = 194808, - [SMALL_STATE(6133)] = 194816, - [SMALL_STATE(6134)] = 194824, - [SMALL_STATE(6135)] = 194834, - [SMALL_STATE(6136)] = 194844, - [SMALL_STATE(6137)] = 194854, - [SMALL_STATE(6138)] = 194864, - [SMALL_STATE(6139)] = 194874, - [SMALL_STATE(6140)] = 194884, - [SMALL_STATE(6141)] = 194892, - [SMALL_STATE(6142)] = 194902, - [SMALL_STATE(6143)] = 194912, - [SMALL_STATE(6144)] = 194922, - [SMALL_STATE(6145)] = 194932, - [SMALL_STATE(6146)] = 194942, - [SMALL_STATE(6147)] = 194952, - [SMALL_STATE(6148)] = 194962, - [SMALL_STATE(6149)] = 194972, - [SMALL_STATE(6150)] = 194982, - [SMALL_STATE(6151)] = 194992, - [SMALL_STATE(6152)] = 195002, - [SMALL_STATE(6153)] = 195012, - [SMALL_STATE(6154)] = 195022, - [SMALL_STATE(6155)] = 195032, - [SMALL_STATE(6156)] = 195042, - [SMALL_STATE(6157)] = 195052, - [SMALL_STATE(6158)] = 195062, - [SMALL_STATE(6159)] = 195072, - [SMALL_STATE(6160)] = 195082, - [SMALL_STATE(6161)] = 195092, - [SMALL_STATE(6162)] = 195102, - [SMALL_STATE(6163)] = 195112, - [SMALL_STATE(6164)] = 195122, - [SMALL_STATE(6165)] = 195132, - [SMALL_STATE(6166)] = 195142, - [SMALL_STATE(6167)] = 195152, - [SMALL_STATE(6168)] = 195162, - [SMALL_STATE(6169)] = 195172, - [SMALL_STATE(6170)] = 195182, - [SMALL_STATE(6171)] = 195192, - [SMALL_STATE(6172)] = 195202, - [SMALL_STATE(6173)] = 195212, - [SMALL_STATE(6174)] = 195222, - [SMALL_STATE(6175)] = 195232, - [SMALL_STATE(6176)] = 195242, - [SMALL_STATE(6177)] = 195252, - [SMALL_STATE(6178)] = 195260, - [SMALL_STATE(6179)] = 195270, - [SMALL_STATE(6180)] = 195278, - [SMALL_STATE(6181)] = 195286, - [SMALL_STATE(6182)] = 195296, - [SMALL_STATE(6183)] = 195304, - [SMALL_STATE(6184)] = 195314, - [SMALL_STATE(6185)] = 195322, - [SMALL_STATE(6186)] = 195332, - [SMALL_STATE(6187)] = 195342, - [SMALL_STATE(6188)] = 195352, - [SMALL_STATE(6189)] = 195362, - [SMALL_STATE(6190)] = 195372, - [SMALL_STATE(6191)] = 195382, - [SMALL_STATE(6192)] = 195392, - [SMALL_STATE(6193)] = 195402, - [SMALL_STATE(6194)] = 195412, - [SMALL_STATE(6195)] = 195420, - [SMALL_STATE(6196)] = 195428, - [SMALL_STATE(6197)] = 195436, - [SMALL_STATE(6198)] = 195446, - [SMALL_STATE(6199)] = 195456, - [SMALL_STATE(6200)] = 195466, - [SMALL_STATE(6201)] = 195474, - [SMALL_STATE(6202)] = 195484, - [SMALL_STATE(6203)] = 195494, - [SMALL_STATE(6204)] = 195504, - [SMALL_STATE(6205)] = 195514, - [SMALL_STATE(6206)] = 195524, - [SMALL_STATE(6207)] = 195534, - [SMALL_STATE(6208)] = 195544, - [SMALL_STATE(6209)] = 195554, - [SMALL_STATE(6210)] = 195564, - [SMALL_STATE(6211)] = 195574, - [SMALL_STATE(6212)] = 195582, - [SMALL_STATE(6213)] = 195590, - [SMALL_STATE(6214)] = 195600, - [SMALL_STATE(6215)] = 195610, - [SMALL_STATE(6216)] = 195620, - [SMALL_STATE(6217)] = 195630, - [SMALL_STATE(6218)] = 195638, - [SMALL_STATE(6219)] = 195648, - [SMALL_STATE(6220)] = 195658, - [SMALL_STATE(6221)] = 195668, - [SMALL_STATE(6222)] = 195678, - [SMALL_STATE(6223)] = 195688, - [SMALL_STATE(6224)] = 195698, - [SMALL_STATE(6225)] = 195708, - [SMALL_STATE(6226)] = 195718, - [SMALL_STATE(6227)] = 195728, - [SMALL_STATE(6228)] = 195738, - [SMALL_STATE(6229)] = 195748, - [SMALL_STATE(6230)] = 195756, - [SMALL_STATE(6231)] = 195766, - [SMALL_STATE(6232)] = 195776, - [SMALL_STATE(6233)] = 195786, - [SMALL_STATE(6234)] = 195796, - [SMALL_STATE(6235)] = 195806, - [SMALL_STATE(6236)] = 195816, - [SMALL_STATE(6237)] = 195826, - [SMALL_STATE(6238)] = 195836, - [SMALL_STATE(6239)] = 195846, - [SMALL_STATE(6240)] = 195856, - [SMALL_STATE(6241)] = 195866, - [SMALL_STATE(6242)] = 195876, - [SMALL_STATE(6243)] = 195886, - [SMALL_STATE(6244)] = 195896, - [SMALL_STATE(6245)] = 195906, - [SMALL_STATE(6246)] = 195916, - [SMALL_STATE(6247)] = 195926, - [SMALL_STATE(6248)] = 195936, - [SMALL_STATE(6249)] = 195946, - [SMALL_STATE(6250)] = 195956, - [SMALL_STATE(6251)] = 195966, - [SMALL_STATE(6252)] = 195974, - [SMALL_STATE(6253)] = 195984, - [SMALL_STATE(6254)] = 195994, - [SMALL_STATE(6255)] = 196004, - [SMALL_STATE(6256)] = 196014, - [SMALL_STATE(6257)] = 196024, - [SMALL_STATE(6258)] = 196034, - [SMALL_STATE(6259)] = 196044, - [SMALL_STATE(6260)] = 196054, - [SMALL_STATE(6261)] = 196064, - [SMALL_STATE(6262)] = 196074, - [SMALL_STATE(6263)] = 196084, - [SMALL_STATE(6264)] = 196094, - [SMALL_STATE(6265)] = 196104, - [SMALL_STATE(6266)] = 196112, - [SMALL_STATE(6267)] = 196122, - [SMALL_STATE(6268)] = 196132, - [SMALL_STATE(6269)] = 196142, - [SMALL_STATE(6270)] = 196150, - [SMALL_STATE(6271)] = 196160, - [SMALL_STATE(6272)] = 196168, - [SMALL_STATE(6273)] = 196178, - [SMALL_STATE(6274)] = 196188, - [SMALL_STATE(6275)] = 196198, - [SMALL_STATE(6276)] = 196208, - [SMALL_STATE(6277)] = 196218, - [SMALL_STATE(6278)] = 196228, - [SMALL_STATE(6279)] = 196236, - [SMALL_STATE(6280)] = 196246, - [SMALL_STATE(6281)] = 196256, - [SMALL_STATE(6282)] = 196266, - [SMALL_STATE(6283)] = 196276, - [SMALL_STATE(6284)] = 196286, - [SMALL_STATE(6285)] = 196296, - [SMALL_STATE(6286)] = 196306, - [SMALL_STATE(6287)] = 196316, - [SMALL_STATE(6288)] = 196326, - [SMALL_STATE(6289)] = 196336, - [SMALL_STATE(6290)] = 196344, - [SMALL_STATE(6291)] = 196354, - [SMALL_STATE(6292)] = 196364, - [SMALL_STATE(6293)] = 196374, - [SMALL_STATE(6294)] = 196384, - [SMALL_STATE(6295)] = 196394, - [SMALL_STATE(6296)] = 196404, - [SMALL_STATE(6297)] = 196414, - [SMALL_STATE(6298)] = 196424, - [SMALL_STATE(6299)] = 196434, - [SMALL_STATE(6300)] = 196444, - [SMALL_STATE(6301)] = 196454, - [SMALL_STATE(6302)] = 196464, - [SMALL_STATE(6303)] = 196474, - [SMALL_STATE(6304)] = 196484, - [SMALL_STATE(6305)] = 196494, - [SMALL_STATE(6306)] = 196504, - [SMALL_STATE(6307)] = 196514, - [SMALL_STATE(6308)] = 196524, - [SMALL_STATE(6309)] = 196534, - [SMALL_STATE(6310)] = 196544, - [SMALL_STATE(6311)] = 196554, - [SMALL_STATE(6312)] = 196564, - [SMALL_STATE(6313)] = 196572, - [SMALL_STATE(6314)] = 196582, - [SMALL_STATE(6315)] = 196592, - [SMALL_STATE(6316)] = 196602, - [SMALL_STATE(6317)] = 196612, - [SMALL_STATE(6318)] = 196620, - [SMALL_STATE(6319)] = 196630, - [SMALL_STATE(6320)] = 196640, - [SMALL_STATE(6321)] = 196650, - [SMALL_STATE(6322)] = 196660, - [SMALL_STATE(6323)] = 196670, - [SMALL_STATE(6324)] = 196680, - [SMALL_STATE(6325)] = 196690, - [SMALL_STATE(6326)] = 196700, - [SMALL_STATE(6327)] = 196710, - [SMALL_STATE(6328)] = 196720, - [SMALL_STATE(6329)] = 196730, - [SMALL_STATE(6330)] = 196740, - [SMALL_STATE(6331)] = 196750, - [SMALL_STATE(6332)] = 196760, - [SMALL_STATE(6333)] = 196770, - [SMALL_STATE(6334)] = 196780, - [SMALL_STATE(6335)] = 196790, - [SMALL_STATE(6336)] = 196798, - [SMALL_STATE(6337)] = 196808, - [SMALL_STATE(6338)] = 196818, - [SMALL_STATE(6339)] = 196828, - [SMALL_STATE(6340)] = 196838, - [SMALL_STATE(6341)] = 196848, - [SMALL_STATE(6342)] = 196858, - [SMALL_STATE(6343)] = 196868, - [SMALL_STATE(6344)] = 196878, - [SMALL_STATE(6345)] = 196888, - [SMALL_STATE(6346)] = 196898, - [SMALL_STATE(6347)] = 196908, - [SMALL_STATE(6348)] = 196918, - [SMALL_STATE(6349)] = 196928, - [SMALL_STATE(6350)] = 196938, - [SMALL_STATE(6351)] = 196948, - [SMALL_STATE(6352)] = 196958, - [SMALL_STATE(6353)] = 196968, - [SMALL_STATE(6354)] = 196978, - [SMALL_STATE(6355)] = 196988, - [SMALL_STATE(6356)] = 196998, - [SMALL_STATE(6357)] = 197008, - [SMALL_STATE(6358)] = 197018, - [SMALL_STATE(6359)] = 197026, - [SMALL_STATE(6360)] = 197036, - [SMALL_STATE(6361)] = 197046, - [SMALL_STATE(6362)] = 197056, - [SMALL_STATE(6363)] = 197066, - [SMALL_STATE(6364)] = 197076, - [SMALL_STATE(6365)] = 197086, - [SMALL_STATE(6366)] = 197094, - [SMALL_STATE(6367)] = 197104, - [SMALL_STATE(6368)] = 197114, - [SMALL_STATE(6369)] = 197124, - [SMALL_STATE(6370)] = 197134, - [SMALL_STATE(6371)] = 197144, - [SMALL_STATE(6372)] = 197154, - [SMALL_STATE(6373)] = 197164, - [SMALL_STATE(6374)] = 197174, - [SMALL_STATE(6375)] = 197184, - [SMALL_STATE(6376)] = 197194, - [SMALL_STATE(6377)] = 197204, - [SMALL_STATE(6378)] = 197214, - [SMALL_STATE(6379)] = 197221, - [SMALL_STATE(6380)] = 197228, - [SMALL_STATE(6381)] = 197235, - [SMALL_STATE(6382)] = 197242, - [SMALL_STATE(6383)] = 197249, - [SMALL_STATE(6384)] = 197256, - [SMALL_STATE(6385)] = 197263, - [SMALL_STATE(6386)] = 197270, - [SMALL_STATE(6387)] = 197277, - [SMALL_STATE(6388)] = 197284, - [SMALL_STATE(6389)] = 197291, - [SMALL_STATE(6390)] = 197298, - [SMALL_STATE(6391)] = 197305, - [SMALL_STATE(6392)] = 197312, - [SMALL_STATE(6393)] = 197319, - [SMALL_STATE(6394)] = 197326, - [SMALL_STATE(6395)] = 197333, - [SMALL_STATE(6396)] = 197340, - [SMALL_STATE(6397)] = 197347, - [SMALL_STATE(6398)] = 197354, - [SMALL_STATE(6399)] = 197361, - [SMALL_STATE(6400)] = 197368, - [SMALL_STATE(6401)] = 197375, - [SMALL_STATE(6402)] = 197382, - [SMALL_STATE(6403)] = 197389, - [SMALL_STATE(6404)] = 197396, - [SMALL_STATE(6405)] = 197403, - [SMALL_STATE(6406)] = 197410, - [SMALL_STATE(6407)] = 197417, - [SMALL_STATE(6408)] = 197424, - [SMALL_STATE(6409)] = 197431, - [SMALL_STATE(6410)] = 197438, - [SMALL_STATE(6411)] = 197445, - [SMALL_STATE(6412)] = 197452, - [SMALL_STATE(6413)] = 197459, - [SMALL_STATE(6414)] = 197466, - [SMALL_STATE(6415)] = 197473, - [SMALL_STATE(6416)] = 197480, - [SMALL_STATE(6417)] = 197487, - [SMALL_STATE(6418)] = 197494, - [SMALL_STATE(6419)] = 197501, - [SMALL_STATE(6420)] = 197508, - [SMALL_STATE(6421)] = 197515, - [SMALL_STATE(6422)] = 197522, - [SMALL_STATE(6423)] = 197529, - [SMALL_STATE(6424)] = 197536, - [SMALL_STATE(6425)] = 197543, - [SMALL_STATE(6426)] = 197550, - [SMALL_STATE(6427)] = 197557, - [SMALL_STATE(6428)] = 197564, - [SMALL_STATE(6429)] = 197571, - [SMALL_STATE(6430)] = 197578, - [SMALL_STATE(6431)] = 197585, - [SMALL_STATE(6432)] = 197592, - [SMALL_STATE(6433)] = 197599, - [SMALL_STATE(6434)] = 197606, - [SMALL_STATE(6435)] = 197613, - [SMALL_STATE(6436)] = 197620, - [SMALL_STATE(6437)] = 197627, - [SMALL_STATE(6438)] = 197634, - [SMALL_STATE(6439)] = 197641, - [SMALL_STATE(6440)] = 197648, - [SMALL_STATE(6441)] = 197655, - [SMALL_STATE(6442)] = 197662, - [SMALL_STATE(6443)] = 197669, - [SMALL_STATE(6444)] = 197676, - [SMALL_STATE(6445)] = 197683, - [SMALL_STATE(6446)] = 197690, - [SMALL_STATE(6447)] = 197697, - [SMALL_STATE(6448)] = 197704, - [SMALL_STATE(6449)] = 197711, - [SMALL_STATE(6450)] = 197718, - [SMALL_STATE(6451)] = 197725, - [SMALL_STATE(6452)] = 197732, - [SMALL_STATE(6453)] = 197739, - [SMALL_STATE(6454)] = 197746, - [SMALL_STATE(6455)] = 197753, - [SMALL_STATE(6456)] = 197760, - [SMALL_STATE(6457)] = 197767, - [SMALL_STATE(6458)] = 197774, - [SMALL_STATE(6459)] = 197781, - [SMALL_STATE(6460)] = 197788, - [SMALL_STATE(6461)] = 197795, - [SMALL_STATE(6462)] = 197802, - [SMALL_STATE(6463)] = 197809, - [SMALL_STATE(6464)] = 197816, - [SMALL_STATE(6465)] = 197823, - [SMALL_STATE(6466)] = 197830, - [SMALL_STATE(6467)] = 197837, - [SMALL_STATE(6468)] = 197844, - [SMALL_STATE(6469)] = 197851, - [SMALL_STATE(6470)] = 197858, - [SMALL_STATE(6471)] = 197865, - [SMALL_STATE(6472)] = 197872, - [SMALL_STATE(6473)] = 197879, - [SMALL_STATE(6474)] = 197886, - [SMALL_STATE(6475)] = 197893, - [SMALL_STATE(6476)] = 197900, - [SMALL_STATE(6477)] = 197907, - [SMALL_STATE(6478)] = 197914, - [SMALL_STATE(6479)] = 197921, - [SMALL_STATE(6480)] = 197928, - [SMALL_STATE(6481)] = 197935, - [SMALL_STATE(6482)] = 197942, - [SMALL_STATE(6483)] = 197949, - [SMALL_STATE(6484)] = 197956, - [SMALL_STATE(6485)] = 197963, - [SMALL_STATE(6486)] = 197970, - [SMALL_STATE(6487)] = 197977, - [SMALL_STATE(6488)] = 197984, - [SMALL_STATE(6489)] = 197991, - [SMALL_STATE(6490)] = 197998, - [SMALL_STATE(6491)] = 198005, - [SMALL_STATE(6492)] = 198012, - [SMALL_STATE(6493)] = 198019, - [SMALL_STATE(6494)] = 198026, - [SMALL_STATE(6495)] = 198033, - [SMALL_STATE(6496)] = 198040, - [SMALL_STATE(6497)] = 198047, - [SMALL_STATE(6498)] = 198054, - [SMALL_STATE(6499)] = 198061, - [SMALL_STATE(6500)] = 198068, - [SMALL_STATE(6501)] = 198075, - [SMALL_STATE(6502)] = 198082, - [SMALL_STATE(6503)] = 198089, - [SMALL_STATE(6504)] = 198096, - [SMALL_STATE(6505)] = 198103, - [SMALL_STATE(6506)] = 198110, - [SMALL_STATE(6507)] = 198117, - [SMALL_STATE(6508)] = 198124, - [SMALL_STATE(6509)] = 198131, - [SMALL_STATE(6510)] = 198138, - [SMALL_STATE(6511)] = 198145, - [SMALL_STATE(6512)] = 198152, - [SMALL_STATE(6513)] = 198159, - [SMALL_STATE(6514)] = 198166, - [SMALL_STATE(6515)] = 198173, - [SMALL_STATE(6516)] = 198180, - [SMALL_STATE(6517)] = 198187, - [SMALL_STATE(6518)] = 198194, - [SMALL_STATE(6519)] = 198201, - [SMALL_STATE(6520)] = 198208, - [SMALL_STATE(6521)] = 198215, - [SMALL_STATE(6522)] = 198222, - [SMALL_STATE(6523)] = 198229, - [SMALL_STATE(6524)] = 198236, - [SMALL_STATE(6525)] = 198243, - [SMALL_STATE(6526)] = 198250, - [SMALL_STATE(6527)] = 198257, - [SMALL_STATE(6528)] = 198264, - [SMALL_STATE(6529)] = 198271, - [SMALL_STATE(6530)] = 198278, - [SMALL_STATE(6531)] = 198285, - [SMALL_STATE(6532)] = 198292, - [SMALL_STATE(6533)] = 198299, - [SMALL_STATE(6534)] = 198306, - [SMALL_STATE(6535)] = 198313, - [SMALL_STATE(6536)] = 198320, - [SMALL_STATE(6537)] = 198327, - [SMALL_STATE(6538)] = 198334, - [SMALL_STATE(6539)] = 198341, - [SMALL_STATE(6540)] = 198348, - [SMALL_STATE(6541)] = 198355, - [SMALL_STATE(6542)] = 198362, - [SMALL_STATE(6543)] = 198369, - [SMALL_STATE(6544)] = 198376, - [SMALL_STATE(6545)] = 198383, - [SMALL_STATE(6546)] = 198390, - [SMALL_STATE(6547)] = 198397, - [SMALL_STATE(6548)] = 198404, - [SMALL_STATE(6549)] = 198411, - [SMALL_STATE(6550)] = 198418, - [SMALL_STATE(6551)] = 198425, - [SMALL_STATE(6552)] = 198432, - [SMALL_STATE(6553)] = 198439, - [SMALL_STATE(6554)] = 198446, - [SMALL_STATE(6555)] = 198453, - [SMALL_STATE(6556)] = 198460, - [SMALL_STATE(6557)] = 198467, - [SMALL_STATE(6558)] = 198474, - [SMALL_STATE(6559)] = 198481, - [SMALL_STATE(6560)] = 198488, - [SMALL_STATE(6561)] = 198495, - [SMALL_STATE(6562)] = 198502, - [SMALL_STATE(6563)] = 198509, - [SMALL_STATE(6564)] = 198516, - [SMALL_STATE(6565)] = 198523, - [SMALL_STATE(6566)] = 198530, - [SMALL_STATE(6567)] = 198537, - [SMALL_STATE(6568)] = 198544, - [SMALL_STATE(6569)] = 198551, - [SMALL_STATE(6570)] = 198558, - [SMALL_STATE(6571)] = 198565, - [SMALL_STATE(6572)] = 198572, - [SMALL_STATE(6573)] = 198579, - [SMALL_STATE(6574)] = 198586, - [SMALL_STATE(6575)] = 198593, - [SMALL_STATE(6576)] = 198600, - [SMALL_STATE(6577)] = 198607, - [SMALL_STATE(6578)] = 198614, - [SMALL_STATE(6579)] = 198621, - [SMALL_STATE(6580)] = 198628, - [SMALL_STATE(6581)] = 198635, - [SMALL_STATE(6582)] = 198642, - [SMALL_STATE(6583)] = 198649, - [SMALL_STATE(6584)] = 198656, - [SMALL_STATE(6585)] = 198663, - [SMALL_STATE(6586)] = 198670, - [SMALL_STATE(6587)] = 198677, - [SMALL_STATE(6588)] = 198684, - [SMALL_STATE(6589)] = 198691, - [SMALL_STATE(6590)] = 198698, - [SMALL_STATE(6591)] = 198705, - [SMALL_STATE(6592)] = 198712, - [SMALL_STATE(6593)] = 198719, - [SMALL_STATE(6594)] = 198726, - [SMALL_STATE(6595)] = 198733, - [SMALL_STATE(6596)] = 198740, - [SMALL_STATE(6597)] = 198747, - [SMALL_STATE(6598)] = 198754, - [SMALL_STATE(6599)] = 198761, - [SMALL_STATE(6600)] = 198768, - [SMALL_STATE(6601)] = 198775, - [SMALL_STATE(6602)] = 198782, - [SMALL_STATE(6603)] = 198789, - [SMALL_STATE(6604)] = 198796, - [SMALL_STATE(6605)] = 198803, - [SMALL_STATE(6606)] = 198810, - [SMALL_STATE(6607)] = 198817, - [SMALL_STATE(6608)] = 198824, - [SMALL_STATE(6609)] = 198831, - [SMALL_STATE(6610)] = 198838, - [SMALL_STATE(6611)] = 198845, - [SMALL_STATE(6612)] = 198852, - [SMALL_STATE(6613)] = 198859, - [SMALL_STATE(6614)] = 198866, - [SMALL_STATE(6615)] = 198873, - [SMALL_STATE(6616)] = 198880, - [SMALL_STATE(6617)] = 198887, - [SMALL_STATE(6618)] = 198894, - [SMALL_STATE(6619)] = 198901, - [SMALL_STATE(6620)] = 198908, - [SMALL_STATE(6621)] = 198915, - [SMALL_STATE(6622)] = 198922, - [SMALL_STATE(6623)] = 198929, - [SMALL_STATE(6624)] = 198936, - [SMALL_STATE(6625)] = 198943, - [SMALL_STATE(6626)] = 198950, - [SMALL_STATE(6627)] = 198957, - [SMALL_STATE(6628)] = 198964, - [SMALL_STATE(6629)] = 198971, - [SMALL_STATE(6630)] = 198978, - [SMALL_STATE(6631)] = 198985, - [SMALL_STATE(6632)] = 198992, - [SMALL_STATE(6633)] = 198999, - [SMALL_STATE(6634)] = 199006, - [SMALL_STATE(6635)] = 199013, - [SMALL_STATE(6636)] = 199020, - [SMALL_STATE(6637)] = 199027, - [SMALL_STATE(6638)] = 199034, - [SMALL_STATE(6639)] = 199041, - [SMALL_STATE(6640)] = 199048, - [SMALL_STATE(6641)] = 199055, - [SMALL_STATE(6642)] = 199062, - [SMALL_STATE(6643)] = 199069, - [SMALL_STATE(6644)] = 199076, - [SMALL_STATE(6645)] = 199083, - [SMALL_STATE(6646)] = 199090, - [SMALL_STATE(6647)] = 199097, - [SMALL_STATE(6648)] = 199104, - [SMALL_STATE(6649)] = 199111, - [SMALL_STATE(6650)] = 199118, - [SMALL_STATE(6651)] = 199125, - [SMALL_STATE(6652)] = 199132, - [SMALL_STATE(6653)] = 199139, - [SMALL_STATE(6654)] = 199146, - [SMALL_STATE(6655)] = 199153, - [SMALL_STATE(6656)] = 199160, - [SMALL_STATE(6657)] = 199167, - [SMALL_STATE(6658)] = 199174, - [SMALL_STATE(6659)] = 199181, - [SMALL_STATE(6660)] = 199188, - [SMALL_STATE(6661)] = 199195, - [SMALL_STATE(6662)] = 199202, - [SMALL_STATE(6663)] = 199209, - [SMALL_STATE(6664)] = 199216, - [SMALL_STATE(6665)] = 199223, - [SMALL_STATE(6666)] = 199230, - [SMALL_STATE(6667)] = 199237, - [SMALL_STATE(6668)] = 199244, - [SMALL_STATE(6669)] = 199251, - [SMALL_STATE(6670)] = 199258, - [SMALL_STATE(6671)] = 199265, - [SMALL_STATE(6672)] = 199272, - [SMALL_STATE(6673)] = 199279, - [SMALL_STATE(6674)] = 199286, - [SMALL_STATE(6675)] = 199293, - [SMALL_STATE(6676)] = 199300, - [SMALL_STATE(6677)] = 199307, - [SMALL_STATE(6678)] = 199314, - [SMALL_STATE(6679)] = 199321, - [SMALL_STATE(6680)] = 199328, - [SMALL_STATE(6681)] = 199335, - [SMALL_STATE(6682)] = 199342, - [SMALL_STATE(6683)] = 199349, - [SMALL_STATE(6684)] = 199356, - [SMALL_STATE(6685)] = 199363, - [SMALL_STATE(6686)] = 199370, - [SMALL_STATE(6687)] = 199377, - [SMALL_STATE(6688)] = 199384, - [SMALL_STATE(6689)] = 199391, - [SMALL_STATE(6690)] = 199398, - [SMALL_STATE(6691)] = 199405, - [SMALL_STATE(6692)] = 199412, - [SMALL_STATE(6693)] = 199419, - [SMALL_STATE(6694)] = 199426, - [SMALL_STATE(6695)] = 199433, - [SMALL_STATE(6696)] = 199440, - [SMALL_STATE(6697)] = 199447, - [SMALL_STATE(6698)] = 199454, - [SMALL_STATE(6699)] = 199461, - [SMALL_STATE(6700)] = 199468, - [SMALL_STATE(6701)] = 199475, - [SMALL_STATE(6702)] = 199482, - [SMALL_STATE(6703)] = 199489, - [SMALL_STATE(6704)] = 199496, - [SMALL_STATE(6705)] = 199503, - [SMALL_STATE(6706)] = 199510, - [SMALL_STATE(6707)] = 199517, - [SMALL_STATE(6708)] = 199524, - [SMALL_STATE(6709)] = 199531, - [SMALL_STATE(6710)] = 199538, - [SMALL_STATE(6711)] = 199545, - [SMALL_STATE(6712)] = 199552, - [SMALL_STATE(6713)] = 199559, - [SMALL_STATE(6714)] = 199566, - [SMALL_STATE(6715)] = 199573, - [SMALL_STATE(6716)] = 199580, - [SMALL_STATE(6717)] = 199587, - [SMALL_STATE(6718)] = 199594, - [SMALL_STATE(6719)] = 199601, - [SMALL_STATE(6720)] = 199608, - [SMALL_STATE(6721)] = 199615, - [SMALL_STATE(6722)] = 199622, - [SMALL_STATE(6723)] = 199629, - [SMALL_STATE(6724)] = 199636, - [SMALL_STATE(6725)] = 199643, - [SMALL_STATE(6726)] = 199650, - [SMALL_STATE(6727)] = 199657, - [SMALL_STATE(6728)] = 199664, - [SMALL_STATE(6729)] = 199671, - [SMALL_STATE(6730)] = 199678, - [SMALL_STATE(6731)] = 199685, - [SMALL_STATE(6732)] = 199692, - [SMALL_STATE(6733)] = 199699, - [SMALL_STATE(6734)] = 199706, - [SMALL_STATE(6735)] = 199713, - [SMALL_STATE(6736)] = 199720, - [SMALL_STATE(6737)] = 199727, - [SMALL_STATE(6738)] = 199734, - [SMALL_STATE(6739)] = 199741, - [SMALL_STATE(6740)] = 199748, - [SMALL_STATE(6741)] = 199755, - [SMALL_STATE(6742)] = 199762, - [SMALL_STATE(6743)] = 199769, - [SMALL_STATE(6744)] = 199776, - [SMALL_STATE(6745)] = 199783, - [SMALL_STATE(6746)] = 199790, - [SMALL_STATE(6747)] = 199797, - [SMALL_STATE(6748)] = 199804, - [SMALL_STATE(6749)] = 199811, - [SMALL_STATE(6750)] = 199818, - [SMALL_STATE(6751)] = 199825, - [SMALL_STATE(6752)] = 199832, - [SMALL_STATE(6753)] = 199839, - [SMALL_STATE(6754)] = 199846, - [SMALL_STATE(6755)] = 199853, - [SMALL_STATE(6756)] = 199860, - [SMALL_STATE(6757)] = 199867, - [SMALL_STATE(6758)] = 199874, - [SMALL_STATE(6759)] = 199881, - [SMALL_STATE(6760)] = 199888, - [SMALL_STATE(6761)] = 199895, - [SMALL_STATE(6762)] = 199902, - [SMALL_STATE(6763)] = 199909, - [SMALL_STATE(6764)] = 199916, - [SMALL_STATE(6765)] = 199923, - [SMALL_STATE(6766)] = 199930, - [SMALL_STATE(6767)] = 199937, - [SMALL_STATE(6768)] = 199944, - [SMALL_STATE(6769)] = 199951, - [SMALL_STATE(6770)] = 199958, - [SMALL_STATE(6771)] = 199965, - [SMALL_STATE(6772)] = 199972, - [SMALL_STATE(6773)] = 199979, - [SMALL_STATE(6774)] = 199986, - [SMALL_STATE(6775)] = 199993, - [SMALL_STATE(6776)] = 200000, - [SMALL_STATE(6777)] = 200007, - [SMALL_STATE(6778)] = 200014, - [SMALL_STATE(6779)] = 200021, - [SMALL_STATE(6780)] = 200028, - [SMALL_STATE(6781)] = 200035, - [SMALL_STATE(6782)] = 200042, - [SMALL_STATE(6783)] = 200049, - [SMALL_STATE(6784)] = 200056, - [SMALL_STATE(6785)] = 200063, - [SMALL_STATE(6786)] = 200070, - [SMALL_STATE(6787)] = 200077, - [SMALL_STATE(6788)] = 200084, - [SMALL_STATE(6789)] = 200091, - [SMALL_STATE(6790)] = 200098, - [SMALL_STATE(6791)] = 200105, - [SMALL_STATE(6792)] = 200112, - [SMALL_STATE(6793)] = 200119, - [SMALL_STATE(6794)] = 200126, - [SMALL_STATE(6795)] = 200133, - [SMALL_STATE(6796)] = 200140, - [SMALL_STATE(6797)] = 200147, - [SMALL_STATE(6798)] = 200154, - [SMALL_STATE(6799)] = 200161, - [SMALL_STATE(6800)] = 200168, - [SMALL_STATE(6801)] = 200175, - [SMALL_STATE(6802)] = 200182, - [SMALL_STATE(6803)] = 200189, - [SMALL_STATE(6804)] = 200196, - [SMALL_STATE(6805)] = 200203, - [SMALL_STATE(6806)] = 200210, - [SMALL_STATE(6807)] = 200217, - [SMALL_STATE(6808)] = 200224, - [SMALL_STATE(6809)] = 200231, - [SMALL_STATE(6810)] = 200238, - [SMALL_STATE(6811)] = 200245, - [SMALL_STATE(6812)] = 200252, - [SMALL_STATE(6813)] = 200259, - [SMALL_STATE(6814)] = 200266, - [SMALL_STATE(6815)] = 200273, - [SMALL_STATE(6816)] = 200280, - [SMALL_STATE(6817)] = 200287, - [SMALL_STATE(6818)] = 200294, - [SMALL_STATE(6819)] = 200301, - [SMALL_STATE(6820)] = 200308, - [SMALL_STATE(6821)] = 200315, - [SMALL_STATE(6822)] = 200322, - [SMALL_STATE(6823)] = 200329, - [SMALL_STATE(6824)] = 200336, - [SMALL_STATE(6825)] = 200343, - [SMALL_STATE(6826)] = 200350, - [SMALL_STATE(6827)] = 200357, - [SMALL_STATE(6828)] = 200364, - [SMALL_STATE(6829)] = 200371, - [SMALL_STATE(6830)] = 200378, - [SMALL_STATE(6831)] = 200385, - [SMALL_STATE(6832)] = 200392, - [SMALL_STATE(6833)] = 200399, - [SMALL_STATE(6834)] = 200406, - [SMALL_STATE(6835)] = 200413, - [SMALL_STATE(6836)] = 200420, - [SMALL_STATE(6837)] = 200427, - [SMALL_STATE(6838)] = 200434, - [SMALL_STATE(6839)] = 200441, - [SMALL_STATE(6840)] = 200448, - [SMALL_STATE(6841)] = 200455, - [SMALL_STATE(6842)] = 200462, - [SMALL_STATE(6843)] = 200469, - [SMALL_STATE(6844)] = 200476, - [SMALL_STATE(6845)] = 200483, - [SMALL_STATE(6846)] = 200490, - [SMALL_STATE(6847)] = 200497, - [SMALL_STATE(6848)] = 200504, - [SMALL_STATE(6849)] = 200511, - [SMALL_STATE(6850)] = 200518, - [SMALL_STATE(6851)] = 200525, - [SMALL_STATE(6852)] = 200532, - [SMALL_STATE(6853)] = 200539, - [SMALL_STATE(6854)] = 200546, - [SMALL_STATE(6855)] = 200553, - [SMALL_STATE(6856)] = 200560, - [SMALL_STATE(6857)] = 200567, - [SMALL_STATE(6858)] = 200574, - [SMALL_STATE(6859)] = 200581, - [SMALL_STATE(6860)] = 200588, - [SMALL_STATE(6861)] = 200595, - [SMALL_STATE(6862)] = 200602, - [SMALL_STATE(6863)] = 200609, - [SMALL_STATE(6864)] = 200616, - [SMALL_STATE(6865)] = 200623, - [SMALL_STATE(6866)] = 200630, - [SMALL_STATE(6867)] = 200637, - [SMALL_STATE(6868)] = 200644, - [SMALL_STATE(6869)] = 200651, - [SMALL_STATE(6870)] = 200658, - [SMALL_STATE(6871)] = 200665, - [SMALL_STATE(6872)] = 200672, - [SMALL_STATE(6873)] = 200679, - [SMALL_STATE(6874)] = 200686, - [SMALL_STATE(6875)] = 200693, - [SMALL_STATE(6876)] = 200700, - [SMALL_STATE(6877)] = 200707, - [SMALL_STATE(6878)] = 200714, - [SMALL_STATE(6879)] = 200721, - [SMALL_STATE(6880)] = 200728, - [SMALL_STATE(6881)] = 200735, - [SMALL_STATE(6882)] = 200742, - [SMALL_STATE(6883)] = 200749, - [SMALL_STATE(6884)] = 200756, - [SMALL_STATE(6885)] = 200763, - [SMALL_STATE(6886)] = 200770, - [SMALL_STATE(6887)] = 200777, - [SMALL_STATE(6888)] = 200784, - [SMALL_STATE(6889)] = 200791, - [SMALL_STATE(6890)] = 200798, - [SMALL_STATE(6891)] = 200805, - [SMALL_STATE(6892)] = 200812, - [SMALL_STATE(6893)] = 200819, - [SMALL_STATE(6894)] = 200826, - [SMALL_STATE(6895)] = 200833, - [SMALL_STATE(6896)] = 200840, - [SMALL_STATE(6897)] = 200847, - [SMALL_STATE(6898)] = 200854, - [SMALL_STATE(6899)] = 200861, - [SMALL_STATE(6900)] = 200868, - [SMALL_STATE(6901)] = 200875, - [SMALL_STATE(6902)] = 200882, - [SMALL_STATE(6903)] = 200889, - [SMALL_STATE(6904)] = 200896, - [SMALL_STATE(6905)] = 200903, - [SMALL_STATE(6906)] = 200910, - [SMALL_STATE(6907)] = 200917, - [SMALL_STATE(6908)] = 200924, - [SMALL_STATE(6909)] = 200931, - [SMALL_STATE(6910)] = 200938, - [SMALL_STATE(6911)] = 200945, - [SMALL_STATE(6912)] = 200952, - [SMALL_STATE(6913)] = 200959, - [SMALL_STATE(6914)] = 200966, - [SMALL_STATE(6915)] = 200973, - [SMALL_STATE(6916)] = 200980, - [SMALL_STATE(6917)] = 200987, - [SMALL_STATE(6918)] = 200994, - [SMALL_STATE(6919)] = 201001, - [SMALL_STATE(6920)] = 201008, - [SMALL_STATE(6921)] = 201015, - [SMALL_STATE(6922)] = 201022, - [SMALL_STATE(6923)] = 201029, - [SMALL_STATE(6924)] = 201036, - [SMALL_STATE(6925)] = 201043, - [SMALL_STATE(6926)] = 201050, - [SMALL_STATE(6927)] = 201057, - [SMALL_STATE(6928)] = 201064, - [SMALL_STATE(6929)] = 201071, - [SMALL_STATE(6930)] = 201078, - [SMALL_STATE(6931)] = 201085, - [SMALL_STATE(6932)] = 201092, - [SMALL_STATE(6933)] = 201099, - [SMALL_STATE(6934)] = 201106, - [SMALL_STATE(6935)] = 201113, - [SMALL_STATE(6936)] = 201120, - [SMALL_STATE(6937)] = 201127, - [SMALL_STATE(6938)] = 201134, - [SMALL_STATE(6939)] = 201141, + [SMALL_STATE(1811)] = 0, + [SMALL_STATE(1812)] = 71, + [SMALL_STATE(1813)] = 146, + [SMALL_STATE(1814)] = 271, + [SMALL_STATE(1815)] = 350, + [SMALL_STATE(1816)] = 421, + [SMALL_STATE(1817)] = 492, + [SMALL_STATE(1818)] = 563, + [SMALL_STATE(1819)] = 634, + [SMALL_STATE(1820)] = 705, + [SMALL_STATE(1821)] = 776, + [SMALL_STATE(1822)] = 855, + [SMALL_STATE(1823)] = 933, + [SMALL_STATE(1824)] = 1017, + [SMALL_STATE(1825)] = 1095, + [SMALL_STATE(1826)] = 1173, + [SMALL_STATE(1827)] = 1251, + [SMALL_STATE(1828)] = 1327, + [SMALL_STATE(1829)] = 1405, + [SMALL_STATE(1830)] = 1481, + [SMALL_STATE(1831)] = 1571, + [SMALL_STATE(1832)] = 1648, + [SMALL_STATE(1833)] = 1729, + [SMALL_STATE(1834)] = 1810, + [SMALL_STATE(1835)] = 1883, + [SMALL_STATE(1836)] = 1964, + [SMALL_STATE(1837)] = 2045, + [SMALL_STATE(1838)] = 2126, + [SMALL_STATE(1839)] = 2207, + [SMALL_STATE(1840)] = 2284, + [SMALL_STATE(1841)] = 2365, + [SMALL_STATE(1842)] = 2446, + [SMALL_STATE(1843)] = 2527, + [SMALL_STATE(1844)] = 2654, + [SMALL_STATE(1845)] = 2781, + [SMALL_STATE(1846)] = 2865, + [SMALL_STATE(1847)] = 2945, + [SMALL_STATE(1848)] = 3019, + [SMALL_STATE(1849)] = 3099, + [SMALL_STATE(1850)] = 3179, + [SMALL_STATE(1851)] = 3259, + [SMALL_STATE(1852)] = 3335, + [SMALL_STATE(1853)] = 3419, + [SMALL_STATE(1854)] = 3487, + [SMALL_STATE(1855)] = 3567, + [SMALL_STATE(1856)] = 3647, + [SMALL_STATE(1857)] = 3771, + [SMALL_STATE(1858)] = 3851, + [SMALL_STATE(1859)] = 3975, + [SMALL_STATE(1860)] = 4055, + [SMALL_STATE(1861)] = 4135, + [SMALL_STATE(1862)] = 4211, + [SMALL_STATE(1863)] = 4279, + [SMALL_STATE(1864)] = 4363, + [SMALL_STATE(1865)] = 4437, + [SMALL_STATE(1866)] = 4511, + [SMALL_STATE(1867)] = 4595, + [SMALL_STATE(1868)] = 4669, + [SMALL_STATE(1869)] = 4740, + [SMALL_STATE(1870)] = 4807, + [SMALL_STATE(1871)] = 4880, + [SMALL_STATE(1872)] = 4955, + [SMALL_STATE(1873)] = 5022, + [SMALL_STATE(1874)] = 5089, + [SMALL_STATE(1875)] = 5160, + [SMALL_STATE(1876)] = 5229, + [SMALL_STATE(1877)] = 5300, + [SMALL_STATE(1878)] = 5367, + [SMALL_STATE(1879)] = 5434, + [SMALL_STATE(1880)] = 5555, + [SMALL_STATE(1881)] = 5622, + [SMALL_STATE(1882)] = 5693, + [SMALL_STATE(1883)] = 5766, + [SMALL_STATE(1884)] = 5833, + [SMALL_STATE(1885)] = 5900, + [SMALL_STATE(1886)] = 5971, + [SMALL_STATE(1887)] = 6040, + [SMALL_STATE(1888)] = 6107, + [SMALL_STATE(1889)] = 6176, + [SMALL_STATE(1890)] = 6244, + [SMALL_STATE(1891)] = 6310, + [SMALL_STATE(1892)] = 6376, + [SMALL_STATE(1893)] = 6448, + [SMALL_STATE(1894)] = 6516, + [SMALL_STATE(1895)] = 6582, + [SMALL_STATE(1896)] = 6654, + [SMALL_STATE(1897)] = 6724, + [SMALL_STATE(1898)] = 6790, + [SMALL_STATE(1899)] = 6856, + [SMALL_STATE(1900)] = 6922, + [SMALL_STATE(1901)] = 6988, + [SMALL_STATE(1902)] = 7054, + [SMALL_STATE(1903)] = 7136, + [SMALL_STATE(1904)] = 7202, + [SMALL_STATE(1905)] = 7272, + [SMALL_STATE(1906)] = 7342, + [SMALL_STATE(1907)] = 7424, + [SMALL_STATE(1908)] = 7502, + [SMALL_STATE(1909)] = 7580, + [SMALL_STATE(1910)] = 7652, + [SMALL_STATE(1911)] = 7726, + [SMALL_STATE(1912)] = 7804, + [SMALL_STATE(1913)] = 7870, + [SMALL_STATE(1914)] = 7936, + [SMALL_STATE(1915)] = 8008, + [SMALL_STATE(1916)] = 8086, + [SMALL_STATE(1917)] = 8164, + [SMALL_STATE(1918)] = 8242, + [SMALL_STATE(1919)] = 8308, + [SMALL_STATE(1920)] = 8374, + [SMALL_STATE(1921)] = 8452, + [SMALL_STATE(1922)] = 8518, + [SMALL_STATE(1923)] = 8584, + [SMALL_STATE(1924)] = 8662, + [SMALL_STATE(1925)] = 8744, + [SMALL_STATE(1926)] = 8810, + [SMALL_STATE(1927)] = 8892, + [SMALL_STATE(1928)] = 8966, + [SMALL_STATE(1929)] = 9032, + [SMALL_STATE(1930)] = 9100, + [SMALL_STATE(1931)] = 9172, + [SMALL_STATE(1932)] = 9238, + [SMALL_STATE(1933)] = 9306, + [SMALL_STATE(1934)] = 9372, + [SMALL_STATE(1935)] = 9438, + [SMALL_STATE(1936)] = 9512, + [SMALL_STATE(1937)] = 9590, + [SMALL_STATE(1938)] = 9655, + [SMALL_STATE(1939)] = 9768, + [SMALL_STATE(1940)] = 9837, + [SMALL_STATE(1941)] = 9902, + [SMALL_STATE(1942)] = 9971, + [SMALL_STATE(1943)] = 10036, + [SMALL_STATE(1944)] = 10103, + [SMALL_STATE(1945)] = 10180, + [SMALL_STATE(1946)] = 10257, + [SMALL_STATE(1947)] = 10334, + [SMALL_STATE(1948)] = 10401, + [SMALL_STATE(1949)] = 10466, + [SMALL_STATE(1950)] = 10533, + [SMALL_STATE(1951)] = 10600, + [SMALL_STATE(1952)] = 10671, + [SMALL_STATE(1953)] = 10740, + [SMALL_STATE(1954)] = 10811, + [SMALL_STATE(1955)] = 10924, + [SMALL_STATE(1956)] = 11001, + [SMALL_STATE(1957)] = 11078, + [SMALL_STATE(1958)] = 11155, + [SMALL_STATE(1959)] = 11224, + [SMALL_STATE(1960)] = 11289, + [SMALL_STATE(1961)] = 11356, + [SMALL_STATE(1962)] = 11433, + [SMALL_STATE(1963)] = 11510, + [SMALL_STATE(1964)] = 11623, + [SMALL_STATE(1965)] = 11700, + [SMALL_STATE(1966)] = 11813, + [SMALL_STATE(1967)] = 11884, + [SMALL_STATE(1968)] = 11949, + [SMALL_STATE(1969)] = 12020, + [SMALL_STATE(1970)] = 12133, + [SMALL_STATE(1971)] = 12206, + [SMALL_STATE(1972)] = 12275, + [SMALL_STATE(1973)] = 12344, + [SMALL_STATE(1974)] = 12413, + [SMALL_STATE(1975)] = 12526, + [SMALL_STATE(1976)] = 12639, + [SMALL_STATE(1977)] = 12710, + [SMALL_STATE(1978)] = 12781, + [SMALL_STATE(1979)] = 12852, + [SMALL_STATE(1980)] = 12921, + [SMALL_STATE(1981)] = 12986, + [SMALL_STATE(1982)] = 13051, + [SMALL_STATE(1983)] = 13164, + [SMALL_STATE(1984)] = 13277, + [SMALL_STATE(1985)] = 13390, + [SMALL_STATE(1986)] = 13503, + [SMALL_STATE(1987)] = 13567, + [SMALL_STATE(1988)] = 13683, + [SMALL_STATE(1989)] = 13747, + [SMALL_STATE(1990)] = 13863, + [SMALL_STATE(1991)] = 13927, + [SMALL_STATE(1992)] = 13991, + [SMALL_STATE(1993)] = 14055, + [SMALL_STATE(1994)] = 14125, + [SMALL_STATE(1995)] = 14189, + [SMALL_STATE(1996)] = 14305, + [SMALL_STATE(1997)] = 14375, + [SMALL_STATE(1998)] = 14445, + [SMALL_STATE(1999)] = 14561, + [SMALL_STATE(2000)] = 14631, + [SMALL_STATE(2001)] = 14695, + [SMALL_STATE(2002)] = 14759, + [SMALL_STATE(2003)] = 14823, + [SMALL_STATE(2004)] = 14887, + [SMALL_STATE(2005)] = 14951, + [SMALL_STATE(2006)] = 15015, + [SMALL_STATE(2007)] = 15079, + [SMALL_STATE(2008)] = 15149, + [SMALL_STATE(2009)] = 15213, + [SMALL_STATE(2010)] = 15277, + [SMALL_STATE(2011)] = 15393, + [SMALL_STATE(2012)] = 15509, + [SMALL_STATE(2013)] = 15573, + [SMALL_STATE(2014)] = 15637, + [SMALL_STATE(2015)] = 15701, + [SMALL_STATE(2016)] = 15765, + [SMALL_STATE(2017)] = 15829, + [SMALL_STATE(2018)] = 15893, + [SMALL_STATE(2019)] = 15957, + [SMALL_STATE(2020)] = 16021, + [SMALL_STATE(2021)] = 16085, + [SMALL_STATE(2022)] = 16149, + [SMALL_STATE(2023)] = 16213, + [SMALL_STATE(2024)] = 16277, + [SMALL_STATE(2025)] = 16341, + [SMALL_STATE(2026)] = 16405, + [SMALL_STATE(2027)] = 16469, + [SMALL_STATE(2028)] = 16533, + [SMALL_STATE(2029)] = 16609, + [SMALL_STATE(2030)] = 16673, + [SMALL_STATE(2031)] = 16737, + [SMALL_STATE(2032)] = 16817, + [SMALL_STATE(2033)] = 16881, + [SMALL_STATE(2034)] = 16945, + [SMALL_STATE(2035)] = 17009, + [SMALL_STATE(2036)] = 17073, + [SMALL_STATE(2037)] = 17137, + [SMALL_STATE(2038)] = 17201, + [SMALL_STATE(2039)] = 17265, + [SMALL_STATE(2040)] = 17329, + [SMALL_STATE(2041)] = 17393, + [SMALL_STATE(2042)] = 17457, + [SMALL_STATE(2043)] = 17521, + [SMALL_STATE(2044)] = 17585, + [SMALL_STATE(2045)] = 17649, + [SMALL_STATE(2046)] = 17713, + [SMALL_STATE(2047)] = 17777, + [SMALL_STATE(2048)] = 17841, + [SMALL_STATE(2049)] = 17905, + [SMALL_STATE(2050)] = 17969, + [SMALL_STATE(2051)] = 18045, + [SMALL_STATE(2052)] = 18109, + [SMALL_STATE(2053)] = 18185, + [SMALL_STATE(2054)] = 18249, + [SMALL_STATE(2055)] = 18313, + [SMALL_STATE(2056)] = 18377, + [SMALL_STATE(2057)] = 18441, + [SMALL_STATE(2058)] = 18505, + [SMALL_STATE(2059)] = 18569, + [SMALL_STATE(2060)] = 18633, + [SMALL_STATE(2061)] = 18697, + [SMALL_STATE(2062)] = 18761, + [SMALL_STATE(2063)] = 18827, + [SMALL_STATE(2064)] = 18891, + [SMALL_STATE(2065)] = 18955, + [SMALL_STATE(2066)] = 19019, + [SMALL_STATE(2067)] = 19083, + [SMALL_STATE(2068)] = 19147, + [SMALL_STATE(2069)] = 19211, + [SMALL_STATE(2070)] = 19327, + [SMALL_STATE(2071)] = 19391, + [SMALL_STATE(2072)] = 19455, + [SMALL_STATE(2073)] = 19519, + [SMALL_STATE(2074)] = 19635, + [SMALL_STATE(2075)] = 19699, + [SMALL_STATE(2076)] = 19763, + [SMALL_STATE(2077)] = 19827, + [SMALL_STATE(2078)] = 19897, + [SMALL_STATE(2079)] = 19961, + [SMALL_STATE(2080)] = 20025, + [SMALL_STATE(2081)] = 20089, + [SMALL_STATE(2082)] = 20153, + [SMALL_STATE(2083)] = 20217, + [SMALL_STATE(2084)] = 20281, + [SMALL_STATE(2085)] = 20353, + [SMALL_STATE(2086)] = 20417, + [SMALL_STATE(2087)] = 20481, + [SMALL_STATE(2088)] = 20545, + [SMALL_STATE(2089)] = 20609, + [SMALL_STATE(2090)] = 20673, + [SMALL_STATE(2091)] = 20737, + [SMALL_STATE(2092)] = 20801, + [SMALL_STATE(2093)] = 20865, + [SMALL_STATE(2094)] = 20929, + [SMALL_STATE(2095)] = 20993, + [SMALL_STATE(2096)] = 21057, + [SMALL_STATE(2097)] = 21123, + [SMALL_STATE(2098)] = 21187, + [SMALL_STATE(2099)] = 21251, + [SMALL_STATE(2100)] = 21315, + [SMALL_STATE(2101)] = 21379, + [SMALL_STATE(2102)] = 21443, + [SMALL_STATE(2103)] = 21507, + [SMALL_STATE(2104)] = 21623, + [SMALL_STATE(2105)] = 21687, + [SMALL_STATE(2106)] = 21751, + [SMALL_STATE(2107)] = 21815, + [SMALL_STATE(2108)] = 21879, + [SMALL_STATE(2109)] = 21943, + [SMALL_STATE(2110)] = 22007, + [SMALL_STATE(2111)] = 22071, + [SMALL_STATE(2112)] = 22135, + [SMALL_STATE(2113)] = 22199, + [SMALL_STATE(2114)] = 22263, + [SMALL_STATE(2115)] = 22327, + [SMALL_STATE(2116)] = 22391, + [SMALL_STATE(2117)] = 22455, + [SMALL_STATE(2118)] = 22519, + [SMALL_STATE(2119)] = 22583, + [SMALL_STATE(2120)] = 22647, + [SMALL_STATE(2121)] = 22727, + [SMALL_STATE(2122)] = 22843, + [SMALL_STATE(2123)] = 22909, + [SMALL_STATE(2124)] = 22973, + [SMALL_STATE(2125)] = 23089, + [SMALL_STATE(2126)] = 23153, + [SMALL_STATE(2127)] = 23217, + [SMALL_STATE(2128)] = 23281, + [SMALL_STATE(2129)] = 23397, + [SMALL_STATE(2130)] = 23461, + [SMALL_STATE(2131)] = 23525, + [SMALL_STATE(2132)] = 23641, + [SMALL_STATE(2133)] = 23705, + [SMALL_STATE(2134)] = 23769, + [SMALL_STATE(2135)] = 23833, + [SMALL_STATE(2136)] = 23897, + [SMALL_STATE(2137)] = 23961, + [SMALL_STATE(2138)] = 24025, + [SMALL_STATE(2139)] = 24089, + [SMALL_STATE(2140)] = 24159, + [SMALL_STATE(2141)] = 24227, + [SMALL_STATE(2142)] = 24303, + [SMALL_STATE(2143)] = 24379, + [SMALL_STATE(2144)] = 24459, + [SMALL_STATE(2145)] = 24523, + [SMALL_STATE(2146)] = 24587, + [SMALL_STATE(2147)] = 24663, + [SMALL_STATE(2148)] = 24727, + [SMALL_STATE(2149)] = 24791, + [SMALL_STATE(2150)] = 24855, + [SMALL_STATE(2151)] = 24931, + [SMALL_STATE(2152)] = 24995, + [SMALL_STATE(2153)] = 25071, + [SMALL_STATE(2154)] = 25151, + [SMALL_STATE(2155)] = 25215, + [SMALL_STATE(2156)] = 25279, + [SMALL_STATE(2157)] = 25343, + [SMALL_STATE(2158)] = 25407, + [SMALL_STATE(2159)] = 25471, + [SMALL_STATE(2160)] = 25535, + [SMALL_STATE(2161)] = 25599, + [SMALL_STATE(2162)] = 25671, + [SMALL_STATE(2163)] = 25735, + [SMALL_STATE(2164)] = 25799, + [SMALL_STATE(2165)] = 25875, + [SMALL_STATE(2166)] = 25939, + [SMALL_STATE(2167)] = 26003, + [SMALL_STATE(2168)] = 26068, + [SMALL_STATE(2169)] = 26133, + [SMALL_STATE(2170)] = 26212, + [SMALL_STATE(2171)] = 26277, + [SMALL_STATE(2172)] = 26352, + [SMALL_STATE(2173)] = 26417, + [SMALL_STATE(2174)] = 26480, + [SMALL_STATE(2175)] = 26543, + [SMALL_STATE(2176)] = 26656, + [SMALL_STATE(2177)] = 26719, + [SMALL_STATE(2178)] = 26786, + [SMALL_STATE(2179)] = 26851, + [SMALL_STATE(2180)] = 26930, + [SMALL_STATE(2181)] = 26993, + [SMALL_STATE(2182)] = 27056, + [SMALL_STATE(2183)] = 27119, + [SMALL_STATE(2184)] = 27182, + [SMALL_STATE(2185)] = 27261, + [SMALL_STATE(2186)] = 27324, + [SMALL_STATE(2187)] = 27389, + [SMALL_STATE(2188)] = 27454, + [SMALL_STATE(2189)] = 27523, + [SMALL_STATE(2190)] = 27600, + [SMALL_STATE(2191)] = 27677, + [SMALL_STATE(2192)] = 27790, + [SMALL_STATE(2193)] = 27853, + [SMALL_STATE(2194)] = 27922, + [SMALL_STATE(2195)] = 27985, + [SMALL_STATE(2196)] = 28054, + [SMALL_STATE(2197)] = 28125, + [SMALL_STATE(2198)] = 28188, + [SMALL_STATE(2199)] = 28251, + [SMALL_STATE(2200)] = 28314, + [SMALL_STATE(2201)] = 28393, + [SMALL_STATE(2202)] = 28506, + [SMALL_STATE(2203)] = 28571, + [SMALL_STATE(2204)] = 28684, + [SMALL_STATE(2205)] = 28746, + [SMALL_STATE(2206)] = 28808, + [SMALL_STATE(2207)] = 28870, + [SMALL_STATE(2208)] = 28932, + [SMALL_STATE(2209)] = 28994, + [SMALL_STATE(2210)] = 29060, + [SMALL_STATE(2211)] = 29128, + [SMALL_STATE(2212)] = 29190, + [SMALL_STATE(2213)] = 29256, + [SMALL_STATE(2214)] = 29318, + [SMALL_STATE(2215)] = 29428, + [SMALL_STATE(2216)] = 29494, + [SMALL_STATE(2217)] = 29556, + [SMALL_STATE(2218)] = 29618, + [SMALL_STATE(2219)] = 29680, + [SMALL_STATE(2220)] = 29742, + [SMALL_STATE(2221)] = 29804, + [SMALL_STATE(2222)] = 29866, + [SMALL_STATE(2223)] = 29928, + [SMALL_STATE(2224)] = 29990, + [SMALL_STATE(2225)] = 30052, + [SMALL_STATE(2226)] = 30126, + [SMALL_STATE(2227)] = 30188, + [SMALL_STATE(2228)] = 30250, + [SMALL_STATE(2229)] = 30316, + [SMALL_STATE(2230)] = 30382, + [SMALL_STATE(2231)] = 30444, + [SMALL_STATE(2232)] = 30506, + [SMALL_STATE(2233)] = 30568, + [SMALL_STATE(2234)] = 30630, + [SMALL_STATE(2235)] = 30692, + [SMALL_STATE(2236)] = 30754, + [SMALL_STATE(2237)] = 30816, + [SMALL_STATE(2238)] = 30878, + [SMALL_STATE(2239)] = 30940, + [SMALL_STATE(2240)] = 31002, + [SMALL_STATE(2241)] = 31064, + [SMALL_STATE(2242)] = 31126, + [SMALL_STATE(2243)] = 31188, + [SMALL_STATE(2244)] = 31250, + [SMALL_STATE(2245)] = 31312, + [SMALL_STATE(2246)] = 31390, + [SMALL_STATE(2247)] = 31452, + [SMALL_STATE(2248)] = 31528, + [SMALL_STATE(2249)] = 31590, + [SMALL_STATE(2250)] = 31652, + [SMALL_STATE(2251)] = 31714, + [SMALL_STATE(2252)] = 31776, + [SMALL_STATE(2253)] = 31838, + [SMALL_STATE(2254)] = 31900, + [SMALL_STATE(2255)] = 31962, + [SMALL_STATE(2256)] = 32024, + [SMALL_STATE(2257)] = 32086, + [SMALL_STATE(2258)] = 32154, + [SMALL_STATE(2259)] = 32216, + [SMALL_STATE(2260)] = 32278, + [SMALL_STATE(2261)] = 32340, + [SMALL_STATE(2262)] = 32402, + [SMALL_STATE(2263)] = 32464, + [SMALL_STATE(2264)] = 32526, + [SMALL_STATE(2265)] = 32588, + [SMALL_STATE(2266)] = 32650, + [SMALL_STATE(2267)] = 32712, + [SMALL_STATE(2268)] = 32774, + [SMALL_STATE(2269)] = 32836, + [SMALL_STATE(2270)] = 32898, + [SMALL_STATE(2271)] = 32960, + [SMALL_STATE(2272)] = 33022, + [SMALL_STATE(2273)] = 33084, + [SMALL_STATE(2274)] = 33146, + [SMALL_STATE(2275)] = 33208, + [SMALL_STATE(2276)] = 33270, + [SMALL_STATE(2277)] = 33332, + [SMALL_STATE(2278)] = 33394, + [SMALL_STATE(2279)] = 33456, + [SMALL_STATE(2280)] = 33518, + [SMALL_STATE(2281)] = 33580, + [SMALL_STATE(2282)] = 33642, + [SMALL_STATE(2283)] = 33704, + [SMALL_STATE(2284)] = 33766, + [SMALL_STATE(2285)] = 33828, + [SMALL_STATE(2286)] = 33890, + [SMALL_STATE(2287)] = 33952, + [SMALL_STATE(2288)] = 34014, + [SMALL_STATE(2289)] = 34076, + [SMALL_STATE(2290)] = 34138, + [SMALL_STATE(2291)] = 34200, + [SMALL_STATE(2292)] = 34262, + [SMALL_STATE(2293)] = 34324, + [SMALL_STATE(2294)] = 34386, + [SMALL_STATE(2295)] = 34448, + [SMALL_STATE(2296)] = 34520, + [SMALL_STATE(2297)] = 34582, + [SMALL_STATE(2298)] = 34644, + [SMALL_STATE(2299)] = 34712, + [SMALL_STATE(2300)] = 34774, + [SMALL_STATE(2301)] = 34844, + [SMALL_STATE(2302)] = 34906, + [SMALL_STATE(2303)] = 34968, + [SMALL_STATE(2304)] = 35030, + [SMALL_STATE(2305)] = 35092, + [SMALL_STATE(2306)] = 35154, + [SMALL_STATE(2307)] = 35216, + [SMALL_STATE(2308)] = 35278, + [SMALL_STATE(2309)] = 35340, + [SMALL_STATE(2310)] = 35402, + [SMALL_STATE(2311)] = 35464, + [SMALL_STATE(2312)] = 35526, + [SMALL_STATE(2313)] = 35588, + [SMALL_STATE(2314)] = 35650, + [SMALL_STATE(2315)] = 35712, + [SMALL_STATE(2316)] = 35774, + [SMALL_STATE(2317)] = 35836, + [SMALL_STATE(2318)] = 35898, + [SMALL_STATE(2319)] = 35960, + [SMALL_STATE(2320)] = 36028, + [SMALL_STATE(2321)] = 36090, + [SMALL_STATE(2322)] = 36152, + [SMALL_STATE(2323)] = 36214, + [SMALL_STATE(2324)] = 36276, + [SMALL_STATE(2325)] = 36338, + [SMALL_STATE(2326)] = 36400, + [SMALL_STATE(2327)] = 36462, + [SMALL_STATE(2328)] = 36524, + [SMALL_STATE(2329)] = 36586, + [SMALL_STATE(2330)] = 36648, + [SMALL_STATE(2331)] = 36714, + [SMALL_STATE(2332)] = 36776, + [SMALL_STATE(2333)] = 36840, + [SMALL_STATE(2334)] = 36902, + [SMALL_STATE(2335)] = 36964, + [SMALL_STATE(2336)] = 37026, + [SMALL_STATE(2337)] = 37088, + [SMALL_STATE(2338)] = 37156, + [SMALL_STATE(2339)] = 37218, + [SMALL_STATE(2340)] = 37280, + [SMALL_STATE(2341)] = 37342, + [SMALL_STATE(2342)] = 37404, + [SMALL_STATE(2343)] = 37466, + [SMALL_STATE(2344)] = 37528, + [SMALL_STATE(2345)] = 37592, + [SMALL_STATE(2346)] = 37656, + [SMALL_STATE(2347)] = 37718, + [SMALL_STATE(2348)] = 37828, + [SMALL_STATE(2349)] = 37890, + [SMALL_STATE(2350)] = 37954, + [SMALL_STATE(2351)] = 38028, + [SMALL_STATE(2352)] = 38096, + [SMALL_STATE(2353)] = 38158, + [SMALL_STATE(2354)] = 38220, + [SMALL_STATE(2355)] = 38282, + [SMALL_STATE(2356)] = 38344, + [SMALL_STATE(2357)] = 38406, + [SMALL_STATE(2358)] = 38468, + [SMALL_STATE(2359)] = 38530, + [SMALL_STATE(2360)] = 38592, + [SMALL_STATE(2361)] = 38654, + [SMALL_STATE(2362)] = 38716, + [SMALL_STATE(2363)] = 38778, + [SMALL_STATE(2364)] = 38840, + [SMALL_STATE(2365)] = 38902, + [SMALL_STATE(2366)] = 38964, + [SMALL_STATE(2367)] = 39026, + [SMALL_STATE(2368)] = 39088, + [SMALL_STATE(2369)] = 39150, + [SMALL_STATE(2370)] = 39220, + [SMALL_STATE(2371)] = 39282, + [SMALL_STATE(2372)] = 39344, + [SMALL_STATE(2373)] = 39412, + [SMALL_STATE(2374)] = 39474, + [SMALL_STATE(2375)] = 39536, + [SMALL_STATE(2376)] = 39598, + [SMALL_STATE(2377)] = 39660, + [SMALL_STATE(2378)] = 39722, + [SMALL_STATE(2379)] = 39784, + [SMALL_STATE(2380)] = 39850, + [SMALL_STATE(2381)] = 39914, + [SMALL_STATE(2382)] = 39978, + [SMALL_STATE(2383)] = 40040, + [SMALL_STATE(2384)] = 40102, + [SMALL_STATE(2385)] = 40164, + [SMALL_STATE(2386)] = 40226, + [SMALL_STATE(2387)] = 40288, + [SMALL_STATE(2388)] = 40350, + [SMALL_STATE(2389)] = 40412, + [SMALL_STATE(2390)] = 40474, + [SMALL_STATE(2391)] = 40536, + [SMALL_STATE(2392)] = 40598, + [SMALL_STATE(2393)] = 40660, + [SMALL_STATE(2394)] = 40722, + [SMALL_STATE(2395)] = 40784, + [SMALL_STATE(2396)] = 40846, + [SMALL_STATE(2397)] = 40908, + [SMALL_STATE(2398)] = 40978, + [SMALL_STATE(2399)] = 41040, + [SMALL_STATE(2400)] = 41102, + [SMALL_STATE(2401)] = 41168, + [SMALL_STATE(2402)] = 41230, + [SMALL_STATE(2403)] = 41292, + [SMALL_STATE(2404)] = 41354, + [SMALL_STATE(2405)] = 41416, + [SMALL_STATE(2406)] = 41478, + [SMALL_STATE(2407)] = 41540, + [SMALL_STATE(2408)] = 41602, + [SMALL_STATE(2409)] = 41664, + [SMALL_STATE(2410)] = 41726, + [SMALL_STATE(2411)] = 41788, + [SMALL_STATE(2412)] = 41850, + [SMALL_STATE(2413)] = 41912, + [SMALL_STATE(2414)] = 41974, + [SMALL_STATE(2415)] = 42036, + [SMALL_STATE(2416)] = 42098, + [SMALL_STATE(2417)] = 42160, + [SMALL_STATE(2418)] = 42222, + [SMALL_STATE(2419)] = 42284, + [SMALL_STATE(2420)] = 42346, + [SMALL_STATE(2421)] = 42416, + [SMALL_STATE(2422)] = 42478, + [SMALL_STATE(2423)] = 42540, + [SMALL_STATE(2424)] = 42602, + [SMALL_STATE(2425)] = 42664, + [SMALL_STATE(2426)] = 42726, + [SMALL_STATE(2427)] = 42788, + [SMALL_STATE(2428)] = 42850, + [SMALL_STATE(2429)] = 42912, + [SMALL_STATE(2430)] = 42974, + [SMALL_STATE(2431)] = 43036, + [SMALL_STATE(2432)] = 43098, + [SMALL_STATE(2433)] = 43160, + [SMALL_STATE(2434)] = 43222, + [SMALL_STATE(2435)] = 43284, + [SMALL_STATE(2436)] = 43346, + [SMALL_STATE(2437)] = 43408, + [SMALL_STATE(2438)] = 43470, + [SMALL_STATE(2439)] = 43532, + [SMALL_STATE(2440)] = 43594, + [SMALL_STATE(2441)] = 43656, + [SMALL_STATE(2442)] = 43718, + [SMALL_STATE(2443)] = 43780, + [SMALL_STATE(2444)] = 43842, + [SMALL_STATE(2445)] = 43904, + [SMALL_STATE(2446)] = 43966, + [SMALL_STATE(2447)] = 44028, + [SMALL_STATE(2448)] = 44090, + [SMALL_STATE(2449)] = 44152, + [SMALL_STATE(2450)] = 44214, + [SMALL_STATE(2451)] = 44276, + [SMALL_STATE(2452)] = 44338, + [SMALL_STATE(2453)] = 44400, + [SMALL_STATE(2454)] = 44462, + [SMALL_STATE(2455)] = 44524, + [SMALL_STATE(2456)] = 44586, + [SMALL_STATE(2457)] = 44648, + [SMALL_STATE(2458)] = 44710, + [SMALL_STATE(2459)] = 44772, + [SMALL_STATE(2460)] = 44834, + [SMALL_STATE(2461)] = 44896, + [SMALL_STATE(2462)] = 44958, + [SMALL_STATE(2463)] = 45020, + [SMALL_STATE(2464)] = 45082, + [SMALL_STATE(2465)] = 45144, + [SMALL_STATE(2466)] = 45225, + [SMALL_STATE(2467)] = 45286, + [SMALL_STATE(2468)] = 45347, + [SMALL_STATE(2469)] = 45412, + [SMALL_STATE(2470)] = 45473, + [SMALL_STATE(2471)] = 45534, + [SMALL_STATE(2472)] = 45595, + [SMALL_STATE(2473)] = 45656, + [SMALL_STATE(2474)] = 45717, + [SMALL_STATE(2475)] = 45822, + [SMALL_STATE(2476)] = 45883, + [SMALL_STATE(2477)] = 45956, + [SMALL_STATE(2478)] = 46017, + [SMALL_STATE(2479)] = 46084, + [SMALL_STATE(2480)] = 46145, + [SMALL_STATE(2481)] = 46206, + [SMALL_STATE(2482)] = 46281, + [SMALL_STATE(2483)] = 46354, + [SMALL_STATE(2484)] = 46427, + [SMALL_STATE(2485)] = 46492, + [SMALL_STATE(2486)] = 46553, + [SMALL_STATE(2487)] = 46628, + [SMALL_STATE(2488)] = 46689, + [SMALL_STATE(2489)] = 46768, + [SMALL_STATE(2490)] = 46841, + [SMALL_STATE(2491)] = 46916, + [SMALL_STATE(2492)] = 46977, + [SMALL_STATE(2493)] = 47084, + [SMALL_STATE(2494)] = 47145, + [SMALL_STATE(2495)] = 47206, + [SMALL_STATE(2496)] = 47279, + [SMALL_STATE(2497)] = 47360, + [SMALL_STATE(2498)] = 47425, + [SMALL_STATE(2499)] = 47530, + [SMALL_STATE(2500)] = 47615, + [SMALL_STATE(2501)] = 47676, + [SMALL_STATE(2502)] = 47739, + [SMALL_STATE(2503)] = 47806, + [SMALL_STATE(2504)] = 47867, + [SMALL_STATE(2505)] = 47954, + [SMALL_STATE(2506)] = 48015, + [SMALL_STATE(2507)] = 48076, + [SMALL_STATE(2508)] = 48149, + [SMALL_STATE(2509)] = 48240, + [SMALL_STATE(2510)] = 48301, + [SMALL_STATE(2511)] = 48406, + [SMALL_STATE(2512)] = 48467, + [SMALL_STATE(2513)] = 48530, + [SMALL_STATE(2514)] = 48603, + [SMALL_STATE(2515)] = 48664, + [SMALL_STATE(2516)] = 48757, + [SMALL_STATE(2517)] = 48820, + [SMALL_STATE(2518)] = 48899, + [SMALL_STATE(2519)] = 48978, + [SMALL_STATE(2520)] = 49039, + [SMALL_STATE(2521)] = 49114, + [SMALL_STATE(2522)] = 49175, + [SMALL_STATE(2523)] = 49236, + [SMALL_STATE(2524)] = 49297, + [SMALL_STATE(2525)] = 49358, + [SMALL_STATE(2526)] = 49419, + [SMALL_STATE(2527)] = 49480, + [SMALL_STATE(2528)] = 49541, + [SMALL_STATE(2529)] = 49602, + [SMALL_STATE(2530)] = 49667, + [SMALL_STATE(2531)] = 49738, + [SMALL_STATE(2532)] = 49799, + [SMALL_STATE(2533)] = 49860, + [SMALL_STATE(2534)] = 49921, + [SMALL_STATE(2535)] = 49984, + [SMALL_STATE(2536)] = 50045, + [SMALL_STATE(2537)] = 50116, + [SMALL_STATE(2538)] = 50177, + [SMALL_STATE(2539)] = 50274, + [SMALL_STATE(2540)] = 50339, + [SMALL_STATE(2541)] = 50400, + [SMALL_STATE(2542)] = 50461, + [SMALL_STATE(2543)] = 50522, + [SMALL_STATE(2544)] = 50623, + [SMALL_STATE(2545)] = 50684, + [SMALL_STATE(2546)] = 50793, + [SMALL_STATE(2547)] = 50870, + [SMALL_STATE(2548)] = 50945, + [SMALL_STATE(2549)] = 51018, + [SMALL_STATE(2550)] = 51079, + [SMALL_STATE(2551)] = 51144, + [SMALL_STATE(2552)] = 51205, + [SMALL_STATE(2553)] = 51314, + [SMALL_STATE(2554)] = 51389, + [SMALL_STATE(2555)] = 51450, + [SMALL_STATE(2556)] = 51513, + [SMALL_STATE(2557)] = 51574, + [SMALL_STATE(2558)] = 51635, + [SMALL_STATE(2559)] = 51696, + [SMALL_STATE(2560)] = 51769, + [SMALL_STATE(2561)] = 51842, + [SMALL_STATE(2562)] = 51903, + [SMALL_STATE(2563)] = 51964, + [SMALL_STATE(2564)] = 52037, + [SMALL_STATE(2565)] = 52098, + [SMALL_STATE(2566)] = 52173, + [SMALL_STATE(2567)] = 52246, + [SMALL_STATE(2568)] = 52307, + [SMALL_STATE(2569)] = 52368, + [SMALL_STATE(2570)] = 52429, + [SMALL_STATE(2571)] = 52534, + [SMALL_STATE(2572)] = 52607, + [SMALL_STATE(2573)] = 52668, + [SMALL_STATE(2574)] = 52729, + [SMALL_STATE(2575)] = 52792, + [SMALL_STATE(2576)] = 52852, + [SMALL_STATE(2577)] = 52912, + [SMALL_STATE(2578)] = 52974, + [SMALL_STATE(2579)] = 53034, + [SMALL_STATE(2580)] = 53094, + [SMALL_STATE(2581)] = 53154, + [SMALL_STATE(2582)] = 53256, + [SMALL_STATE(2583)] = 53358, + [SMALL_STATE(2584)] = 53418, + [SMALL_STATE(2585)] = 53478, + [SMALL_STATE(2586)] = 53544, + [SMALL_STATE(2587)] = 53610, + [SMALL_STATE(2588)] = 53670, + [SMALL_STATE(2589)] = 53730, + [SMALL_STATE(2590)] = 53794, + [SMALL_STATE(2591)] = 53856, + [SMALL_STATE(2592)] = 53922, + [SMALL_STATE(2593)] = 53982, + [SMALL_STATE(2594)] = 54050, + [SMALL_STATE(2595)] = 54110, + [SMALL_STATE(2596)] = 54176, + [SMALL_STATE(2597)] = 54236, + [SMALL_STATE(2598)] = 54296, + [SMALL_STATE(2599)] = 54356, + [SMALL_STATE(2600)] = 54422, + [SMALL_STATE(2601)] = 54528, + [SMALL_STATE(2602)] = 54588, + [SMALL_STATE(2603)] = 54650, + [SMALL_STATE(2604)] = 54710, + [SMALL_STATE(2605)] = 54770, + [SMALL_STATE(2606)] = 54830, + [SMALL_STATE(2607)] = 54890, + [SMALL_STATE(2608)] = 54950, + [SMALL_STATE(2609)] = 55010, + [SMALL_STATE(2610)] = 55072, + [SMALL_STATE(2611)] = 55132, + [SMALL_STATE(2612)] = 55204, + [SMALL_STATE(2613)] = 55264, + [SMALL_STATE(2614)] = 55324, + [SMALL_STATE(2615)] = 55384, + [SMALL_STATE(2616)] = 55444, + [SMALL_STATE(2617)] = 55514, + [SMALL_STATE(2618)] = 55592, + [SMALL_STATE(2619)] = 55652, + [SMALL_STATE(2620)] = 55712, + [SMALL_STATE(2621)] = 55772, + [SMALL_STATE(2622)] = 55832, + [SMALL_STATE(2623)] = 55892, + [SMALL_STATE(2624)] = 55954, + [SMALL_STATE(2625)] = 56056, + [SMALL_STATE(2626)] = 56116, + [SMALL_STATE(2627)] = 56176, + [SMALL_STATE(2628)] = 56236, + [SMALL_STATE(2629)] = 56304, + [SMALL_STATE(2630)] = 56370, + [SMALL_STATE(2631)] = 56440, + [SMALL_STATE(2632)] = 56502, + [SMALL_STATE(2633)] = 56562, + [SMALL_STATE(2634)] = 56622, + [SMALL_STATE(2635)] = 56682, + [SMALL_STATE(2636)] = 56742, + [SMALL_STATE(2637)] = 56812, + [SMALL_STATE(2638)] = 56872, + [SMALL_STATE(2639)] = 56940, + [SMALL_STATE(2640)] = 57002, + [SMALL_STATE(2641)] = 57062, + [SMALL_STATE(2642)] = 57122, + [SMALL_STATE(2643)] = 57182, + [SMALL_STATE(2644)] = 57242, + [SMALL_STATE(2645)] = 57302, + [SMALL_STATE(2646)] = 57378, + [SMALL_STATE(2647)] = 57452, + [SMALL_STATE(2648)] = 57530, + [SMALL_STATE(2649)] = 57612, + [SMALL_STATE(2650)] = 57696, + [SMALL_STATE(2651)] = 57784, + [SMALL_STATE(2652)] = 57844, + [SMALL_STATE(2653)] = 57934, + [SMALL_STATE(2654)] = 58028, + [SMALL_STATE(2655)] = 58126, + [SMALL_STATE(2656)] = 58196, + [SMALL_STATE(2657)] = 58268, + [SMALL_STATE(2658)] = 58336, + [SMALL_STATE(2659)] = 58396, + [SMALL_STATE(2660)] = 58462, + [SMALL_STATE(2661)] = 58528, + [SMALL_STATE(2662)] = 58588, + [SMALL_STATE(2663)] = 58648, + [SMALL_STATE(2664)] = 58708, + [SMALL_STATE(2665)] = 58770, + [SMALL_STATE(2666)] = 58830, + [SMALL_STATE(2667)] = 58890, + [SMALL_STATE(2668)] = 58950, + [SMALL_STATE(2669)] = 59010, + [SMALL_STATE(2670)] = 59076, + [SMALL_STATE(2671)] = 59142, + [SMALL_STATE(2672)] = 59202, + [SMALL_STATE(2673)] = 59274, + [SMALL_STATE(2674)] = 59334, + [SMALL_STATE(2675)] = 59394, + [SMALL_STATE(2676)] = 59454, + [SMALL_STATE(2677)] = 59514, + [SMALL_STATE(2678)] = 59574, + [SMALL_STATE(2679)] = 59634, + [SMALL_STATE(2680)] = 59738, + [SMALL_STATE(2681)] = 59798, + [SMALL_STATE(2682)] = 59900, + [SMALL_STATE(2683)] = 59960, + [SMALL_STATE(2684)] = 60020, + [SMALL_STATE(2685)] = 60088, + [SMALL_STATE(2686)] = 60148, + [SMALL_STATE(2687)] = 60208, + [SMALL_STATE(2688)] = 60268, + [SMALL_STATE(2689)] = 60328, + [SMALL_STATE(2690)] = 60388, + [SMALL_STATE(2691)] = 60448, + [SMALL_STATE(2692)] = 60510, + [SMALL_STATE(2693)] = 60570, + [SMALL_STATE(2694)] = 60630, + [SMALL_STATE(2695)] = 60690, + [SMALL_STATE(2696)] = 60750, + [SMALL_STATE(2697)] = 60810, + [SMALL_STATE(2698)] = 60963, + [SMALL_STATE(2699)] = 61022, + [SMALL_STATE(2700)] = 61081, + [SMALL_STATE(2701)] = 61140, + [SMALL_STATE(2702)] = 61199, + [SMALL_STATE(2703)] = 61258, + [SMALL_STATE(2704)] = 61317, + [SMALL_STATE(2705)] = 61376, + [SMALL_STATE(2706)] = 61435, + [SMALL_STATE(2707)] = 61494, + [SMALL_STATE(2708)] = 61553, + [SMALL_STATE(2709)] = 61612, + [SMALL_STATE(2710)] = 61671, + [SMALL_STATE(2711)] = 61730, + [SMALL_STATE(2712)] = 61789, + [SMALL_STATE(2713)] = 61848, + [SMALL_STATE(2714)] = 61907, + [SMALL_STATE(2715)] = 61966, + [SMALL_STATE(2716)] = 62025, + [SMALL_STATE(2717)] = 62178, + [SMALL_STATE(2718)] = 62237, + [SMALL_STATE(2719)] = 62296, + [SMALL_STATE(2720)] = 62355, + [SMALL_STATE(2721)] = 62414, + [SMALL_STATE(2722)] = 62473, + [SMALL_STATE(2723)] = 62532, + [SMALL_STATE(2724)] = 62591, + [SMALL_STATE(2725)] = 62650, + [SMALL_STATE(2726)] = 62709, + [SMALL_STATE(2727)] = 62768, + [SMALL_STATE(2728)] = 62827, + [SMALL_STATE(2729)] = 62886, + [SMALL_STATE(2730)] = 62949, + [SMALL_STATE(2731)] = 63008, + [SMALL_STATE(2732)] = 63067, + [SMALL_STATE(2733)] = 63126, + [SMALL_STATE(2734)] = 63185, + [SMALL_STATE(2735)] = 63254, + [SMALL_STATE(2736)] = 63407, + [SMALL_STATE(2737)] = 63466, + [SMALL_STATE(2738)] = 63525, + [SMALL_STATE(2739)] = 63584, + [SMALL_STATE(2740)] = 63643, + [SMALL_STATE(2741)] = 63708, + [SMALL_STATE(2742)] = 63767, + [SMALL_STATE(2743)] = 63826, + [SMALL_STATE(2744)] = 63885, + [SMALL_STATE(2745)] = 63944, + [SMALL_STATE(2746)] = 64003, + [SMALL_STATE(2747)] = 64062, + [SMALL_STATE(2748)] = 64121, + [SMALL_STATE(2749)] = 64180, + [SMALL_STATE(2750)] = 64239, + [SMALL_STATE(2751)] = 64298, + [SMALL_STATE(2752)] = 64357, + [SMALL_STATE(2753)] = 64416, + [SMALL_STATE(2754)] = 64475, + [SMALL_STATE(2755)] = 64534, + [SMALL_STATE(2756)] = 64593, + [SMALL_STATE(2757)] = 64652, + [SMALL_STATE(2758)] = 64805, + [SMALL_STATE(2759)] = 64864, + [SMALL_STATE(2760)] = 64923, + [SMALL_STATE(2761)] = 64982, + [SMALL_STATE(2762)] = 65041, + [SMALL_STATE(2763)] = 65100, + [SMALL_STATE(2764)] = 65159, + [SMALL_STATE(2765)] = 65218, + [SMALL_STATE(2766)] = 65277, + [SMALL_STATE(2767)] = 65336, + [SMALL_STATE(2768)] = 65395, + [SMALL_STATE(2769)] = 65454, + [SMALL_STATE(2770)] = 65513, + [SMALL_STATE(2771)] = 65572, + [SMALL_STATE(2772)] = 65631, + [SMALL_STATE(2773)] = 65690, + [SMALL_STATE(2774)] = 65749, + [SMALL_STATE(2775)] = 65812, + [SMALL_STATE(2776)] = 65871, + [SMALL_STATE(2777)] = 65930, + [SMALL_STATE(2778)] = 65989, + [SMALL_STATE(2779)] = 66048, + [SMALL_STATE(2780)] = 66107, + [SMALL_STATE(2781)] = 66166, + [SMALL_STATE(2782)] = 66225, + [SMALL_STATE(2783)] = 66378, + [SMALL_STATE(2784)] = 66437, + [SMALL_STATE(2785)] = 66496, + [SMALL_STATE(2786)] = 66555, + [SMALL_STATE(2787)] = 66620, + [SMALL_STATE(2788)] = 66685, + [SMALL_STATE(2789)] = 66746, + [SMALL_STATE(2790)] = 66805, + [SMALL_STATE(2791)] = 66864, + [SMALL_STATE(2792)] = 66923, + [SMALL_STATE(2793)] = 66988, + [SMALL_STATE(2794)] = 67047, + [SMALL_STATE(2795)] = 67106, + [SMALL_STATE(2796)] = 67165, + [SMALL_STATE(2797)] = 67224, + [SMALL_STATE(2798)] = 67283, + [SMALL_STATE(2799)] = 67348, + [SMALL_STATE(2800)] = 67407, + [SMALL_STATE(2801)] = 67466, + [SMALL_STATE(2802)] = 67619, + [SMALL_STATE(2803)] = 67772, + [SMALL_STATE(2804)] = 67831, + [SMALL_STATE(2805)] = 67890, + [SMALL_STATE(2806)] = 67949, + [SMALL_STATE(2807)] = 68008, + [SMALL_STATE(2808)] = 68069, + [SMALL_STATE(2809)] = 68128, + [SMALL_STATE(2810)] = 68187, + [SMALL_STATE(2811)] = 68246, + [SMALL_STATE(2812)] = 68399, + [SMALL_STATE(2813)] = 68458, + [SMALL_STATE(2814)] = 68517, + [SMALL_STATE(2815)] = 68576, + [SMALL_STATE(2816)] = 68635, + [SMALL_STATE(2817)] = 68694, + [SMALL_STATE(2818)] = 68755, + [SMALL_STATE(2819)] = 68814, + [SMALL_STATE(2820)] = 68873, + [SMALL_STATE(2821)] = 68932, + [SMALL_STATE(2822)] = 68991, + [SMALL_STATE(2823)] = 69050, + [SMALL_STATE(2824)] = 69109, + [SMALL_STATE(2825)] = 69168, + [SMALL_STATE(2826)] = 69227, + [SMALL_STATE(2827)] = 69286, + [SMALL_STATE(2828)] = 69347, + [SMALL_STATE(2829)] = 69418, + [SMALL_STATE(2830)] = 69477, + [SMALL_STATE(2831)] = 69536, + [SMALL_STATE(2832)] = 69595, + [SMALL_STATE(2833)] = 69654, + [SMALL_STATE(2834)] = 69713, + [SMALL_STATE(2835)] = 69772, + [SMALL_STATE(2836)] = 69831, + [SMALL_STATE(2837)] = 69890, + [SMALL_STATE(2838)] = 69949, + [SMALL_STATE(2839)] = 70008, + [SMALL_STATE(2840)] = 70067, + [SMALL_STATE(2841)] = 70126, + [SMALL_STATE(2842)] = 70185, + [SMALL_STATE(2843)] = 70244, + [SMALL_STATE(2844)] = 70303, + [SMALL_STATE(2845)] = 70362, + [SMALL_STATE(2846)] = 70421, + [SMALL_STATE(2847)] = 70480, + [SMALL_STATE(2848)] = 70539, + [SMALL_STATE(2849)] = 70598, + [SMALL_STATE(2850)] = 70657, + [SMALL_STATE(2851)] = 70716, + [SMALL_STATE(2852)] = 70775, + [SMALL_STATE(2853)] = 70834, + [SMALL_STATE(2854)] = 70893, + [SMALL_STATE(2855)] = 70952, + [SMALL_STATE(2856)] = 71011, + [SMALL_STATE(2857)] = 71070, + [SMALL_STATE(2858)] = 71129, + [SMALL_STATE(2859)] = 71188, + [SMALL_STATE(2860)] = 71247, + [SMALL_STATE(2861)] = 71306, + [SMALL_STATE(2862)] = 71365, + [SMALL_STATE(2863)] = 71424, + [SMALL_STATE(2864)] = 71483, + [SMALL_STATE(2865)] = 71548, + [SMALL_STATE(2866)] = 71607, + [SMALL_STATE(2867)] = 71666, + [SMALL_STATE(2868)] = 71727, + [SMALL_STATE(2869)] = 71786, + [SMALL_STATE(2870)] = 71845, + [SMALL_STATE(2871)] = 71904, + [SMALL_STATE(2872)] = 71963, + [SMALL_STATE(2873)] = 72022, + [SMALL_STATE(2874)] = 72081, + [SMALL_STATE(2875)] = 72140, + [SMALL_STATE(2876)] = 72293, + [SMALL_STATE(2877)] = 72352, + [SMALL_STATE(2878)] = 72505, + [SMALL_STATE(2879)] = 72564, + [SMALL_STATE(2880)] = 72623, + [SMALL_STATE(2881)] = 72682, + [SMALL_STATE(2882)] = 72741, + [SMALL_STATE(2883)] = 72800, + [SMALL_STATE(2884)] = 72859, + [SMALL_STATE(2885)] = 72918, + [SMALL_STATE(2886)] = 72977, + [SMALL_STATE(2887)] = 73036, + [SMALL_STATE(2888)] = 73095, + [SMALL_STATE(2889)] = 73154, + [SMALL_STATE(2890)] = 73213, + [SMALL_STATE(2891)] = 73272, + [SMALL_STATE(2892)] = 73331, + [SMALL_STATE(2893)] = 73390, + [SMALL_STATE(2894)] = 73449, + [SMALL_STATE(2895)] = 73508, + [SMALL_STATE(2896)] = 73567, + [SMALL_STATE(2897)] = 73626, + [SMALL_STATE(2898)] = 73685, + [SMALL_STATE(2899)] = 73744, + [SMALL_STATE(2900)] = 73803, + [SMALL_STATE(2901)] = 73862, + [SMALL_STATE(2902)] = 73925, + [SMALL_STATE(2903)] = 73984, + [SMALL_STATE(2904)] = 74043, + [SMALL_STATE(2905)] = 74102, + [SMALL_STATE(2906)] = 74255, + [SMALL_STATE(2907)] = 74316, + [SMALL_STATE(2908)] = 74375, + [SMALL_STATE(2909)] = 74434, + [SMALL_STATE(2910)] = 74587, + [SMALL_STATE(2911)] = 74646, + [SMALL_STATE(2912)] = 74705, + [SMALL_STATE(2913)] = 74764, + [SMALL_STATE(2914)] = 74823, + [SMALL_STATE(2915)] = 74882, + [SMALL_STATE(2916)] = 74941, + [SMALL_STATE(2917)] = 75000, + [SMALL_STATE(2918)] = 75059, + [SMALL_STATE(2919)] = 75118, + [SMALL_STATE(2920)] = 75177, + [SMALL_STATE(2921)] = 75235, + [SMALL_STATE(2922)] = 75295, + [SMALL_STATE(2923)] = 75373, + [SMALL_STATE(2924)] = 75449, + [SMALL_STATE(2925)] = 75509, + [SMALL_STATE(2926)] = 75567, + [SMALL_STATE(2927)] = 75637, + [SMALL_STATE(2928)] = 75715, + [SMALL_STATE(2929)] = 75795, + [SMALL_STATE(2930)] = 75877, + [SMALL_STATE(2931)] = 75977, + [SMALL_STATE(2932)] = 76063, + [SMALL_STATE(2933)] = 76151, + [SMALL_STATE(2934)] = 76211, + [SMALL_STATE(2935)] = 76307, + [SMALL_STATE(2936)] = 76377, + [SMALL_STATE(2937)] = 76435, + [SMALL_STATE(2938)] = 76507, + [SMALL_STATE(2939)] = 76575, + [SMALL_STATE(2940)] = 76679, + [SMALL_STATE(2941)] = 76737, + [SMALL_STATE(2942)] = 76795, + [SMALL_STATE(2943)] = 76853, + [SMALL_STATE(2944)] = 76911, + [SMALL_STATE(2945)] = 76985, + [SMALL_STATE(2946)] = 77055, + [SMALL_STATE(2947)] = 77147, + [SMALL_STATE(2948)] = 77209, + [SMALL_STATE(2949)] = 77271, + [SMALL_STATE(2950)] = 77373, + [SMALL_STATE(2951)] = 77435, + [SMALL_STATE(2952)] = 77493, + [SMALL_STATE(2953)] = 77551, + [SMALL_STATE(2954)] = 77609, + [SMALL_STATE(2955)] = 77669, + [SMALL_STATE(2956)] = 77727, + [SMALL_STATE(2957)] = 77785, + [SMALL_STATE(2958)] = 77843, + [SMALL_STATE(2959)] = 77911, + [SMALL_STATE(2960)] = 77969, + [SMALL_STATE(2961)] = 78069, + [SMALL_STATE(2962)] = 78127, + [SMALL_STATE(2963)] = 78187, + [SMALL_STATE(2964)] = 78257, + [SMALL_STATE(2965)] = 78315, + [SMALL_STATE(2966)] = 78375, + [SMALL_STATE(2967)] = 78475, + [SMALL_STATE(2968)] = 78533, + [SMALL_STATE(2969)] = 78593, + [SMALL_STATE(2970)] = 78693, + [SMALL_STATE(2971)] = 78751, + [SMALL_STATE(2972)] = 78852, + [SMALL_STATE(2973)] = 78913, + [SMALL_STATE(2974)] = 78970, + [SMALL_STATE(2975)] = 79039, + [SMALL_STATE(2976)] = 79120, + [SMALL_STATE(2977)] = 79177, + [SMALL_STATE(2978)] = 79278, + [SMALL_STATE(2979)] = 79335, + [SMALL_STATE(2980)] = 79436, + [SMALL_STATE(2981)] = 79541, + [SMALL_STATE(2982)] = 79600, + [SMALL_STATE(2983)] = 79679, + [SMALL_STATE(2984)] = 79748, + [SMALL_STATE(2985)] = 79833, + [SMALL_STATE(2986)] = 79890, + [SMALL_STATE(2987)] = 79965, + [SMALL_STATE(2988)] = 80024, + [SMALL_STATE(2989)] = 80081, + [SMALL_STATE(2990)] = 80138, + [SMALL_STATE(2991)] = 80211, + [SMALL_STATE(2992)] = 80288, + [SMALL_STATE(2993)] = 80345, + [SMALL_STATE(2994)] = 80444, + [SMALL_STATE(2995)] = 80501, + [SMALL_STATE(2996)] = 80582, + [SMALL_STATE(2997)] = 80665, + [SMALL_STATE(2998)] = 80728, + [SMALL_STATE(2999)] = 80785, + [SMALL_STATE(3000)] = 80842, + [SMALL_STATE(3001)] = 80929, + [SMALL_STATE(3002)] = 80990, + [SMALL_STATE(3003)] = 81047, + [SMALL_STATE(3004)] = 81104, + [SMALL_STATE(3005)] = 81161, + [SMALL_STATE(3006)] = 81250, + [SMALL_STATE(3007)] = 81343, + [SMALL_STATE(3008)] = 81440, + [SMALL_STATE(3009)] = 81497, + [SMALL_STATE(3010)] = 81554, + [SMALL_STATE(3011)] = 81625, + [SMALL_STATE(3012)] = 81728, + [SMALL_STATE(3013)] = 81829, + [SMALL_STATE(3014)] = 81918, + [SMALL_STATE(3015)] = 81975, + [SMALL_STATE(3016)] = 82068, + [SMALL_STATE(3017)] = 82129, + [SMALL_STATE(3018)] = 82194, + [SMALL_STATE(3019)] = 82251, + [SMALL_STATE(3020)] = 82308, + [SMALL_STATE(3021)] = 82365, + [SMALL_STATE(3022)] = 82460, + [SMALL_STATE(3023)] = 82527, + [SMALL_STATE(3024)] = 82594, + [SMALL_STATE(3025)] = 82651, + [SMALL_STATE(3026)] = 82748, + [SMALL_STATE(3027)] = 82849, + [SMALL_STATE(3028)] = 82926, + [SMALL_STATE(3029)] = 82995, + [SMALL_STATE(3030)] = 83064, + [SMALL_STATE(3031)] = 83121, + [SMALL_STATE(3032)] = 83178, + [SMALL_STATE(3033)] = 83245, + [SMALL_STATE(3034)] = 83320, + [SMALL_STATE(3035)] = 83391, + [SMALL_STATE(3036)] = 83448, + [SMALL_STATE(3037)] = 83505, + [SMALL_STATE(3038)] = 83562, + [SMALL_STATE(3039)] = 83619, + [SMALL_STATE(3040)] = 83676, + [SMALL_STATE(3041)] = 83733, + [SMALL_STATE(3042)] = 83806, + [SMALL_STATE(3043)] = 83867, + [SMALL_STATE(3044)] = 83934, + [SMALL_STATE(3045)] = 84009, + [SMALL_STATE(3046)] = 84106, + [SMALL_STATE(3047)] = 84175, + [SMALL_STATE(3048)] = 84232, + [SMALL_STATE(3049)] = 84289, + [SMALL_STATE(3050)] = 84346, + [SMALL_STATE(3051)] = 84443, + [SMALL_STATE(3052)] = 84500, + [SMALL_STATE(3053)] = 84565, + [SMALL_STATE(3054)] = 84662, + [SMALL_STATE(3055)] = 84719, + [SMALL_STATE(3056)] = 84776, + [SMALL_STATE(3057)] = 84833, + [SMALL_STATE(3058)] = 84890, + [SMALL_STATE(3059)] = 84947, + [SMALL_STATE(3060)] = 85004, + [SMALL_STATE(3061)] = 85061, + [SMALL_STATE(3062)] = 85128, + [SMALL_STATE(3063)] = 85185, + [SMALL_STATE(3064)] = 85242, + [SMALL_STATE(3065)] = 85299, + [SMALL_STATE(3066)] = 85356, + [SMALL_STATE(3067)] = 85413, + [SMALL_STATE(3068)] = 85470, + [SMALL_STATE(3069)] = 85531, + [SMALL_STATE(3070)] = 85588, + [SMALL_STATE(3071)] = 85645, + [SMALL_STATE(3072)] = 85702, + [SMALL_STATE(3073)] = 85759, + [SMALL_STATE(3074)] = 85816, + [SMALL_STATE(3075)] = 85873, + [SMALL_STATE(3076)] = 85930, + [SMALL_STATE(3077)] = 85987, + [SMALL_STATE(3078)] = 86044, + [SMALL_STATE(3079)] = 86101, + [SMALL_STATE(3080)] = 86158, + [SMALL_STATE(3081)] = 86215, + [SMALL_STATE(3082)] = 86272, + [SMALL_STATE(3083)] = 86328, + [SMALL_STATE(3084)] = 86384, + [SMALL_STATE(3085)] = 86440, + [SMALL_STATE(3086)] = 86496, + [SMALL_STATE(3087)] = 86552, + [SMALL_STATE(3088)] = 86608, + [SMALL_STATE(3089)] = 86666, + [SMALL_STATE(3090)] = 86722, + [SMALL_STATE(3091)] = 86778, + [SMALL_STATE(3092)] = 86834, + [SMALL_STATE(3093)] = 86894, + [SMALL_STATE(3094)] = 86950, + [SMALL_STATE(3095)] = 87006, + [SMALL_STATE(3096)] = 87062, + [SMALL_STATE(3097)] = 87118, + [SMALL_STATE(3098)] = 87174, + [SMALL_STATE(3099)] = 87230, + [SMALL_STATE(3100)] = 87286, + [SMALL_STATE(3101)] = 87342, + [SMALL_STATE(3102)] = 87398, + [SMALL_STATE(3103)] = 87460, + [SMALL_STATE(3104)] = 87516, + [SMALL_STATE(3105)] = 87572, + [SMALL_STATE(3106)] = 87628, + [SMALL_STATE(3107)] = 87684, + [SMALL_STATE(3108)] = 87740, + [SMALL_STATE(3109)] = 87796, + [SMALL_STATE(3110)] = 87860, + [SMALL_STATE(3111)] = 87916, + [SMALL_STATE(3112)] = 87972, + [SMALL_STATE(3113)] = 88028, + [SMALL_STATE(3114)] = 88090, + [SMALL_STATE(3115)] = 88146, + [SMALL_STATE(3116)] = 88202, + [SMALL_STATE(3117)] = 88258, + [SMALL_STATE(3118)] = 88314, + [SMALL_STATE(3119)] = 88372, + [SMALL_STATE(3120)] = 88428, + [SMALL_STATE(3121)] = 88484, + [SMALL_STATE(3122)] = 88544, + [SMALL_STATE(3123)] = 88600, + [SMALL_STATE(3124)] = 88656, + [SMALL_STATE(3125)] = 88712, + [SMALL_STATE(3126)] = 88774, + [SMALL_STATE(3127)] = 88830, + [SMALL_STATE(3128)] = 88886, + [SMALL_STATE(3129)] = 88942, + [SMALL_STATE(3130)] = 88998, + [SMALL_STATE(3131)] = 89054, + [SMALL_STATE(3132)] = 89110, + [SMALL_STATE(3133)] = 89166, + [SMALL_STATE(3134)] = 89222, + [SMALL_STATE(3135)] = 89278, + [SMALL_STATE(3136)] = 89334, + [SMALL_STATE(3137)] = 89389, + [SMALL_STATE(3138)] = 89444, + [SMALL_STATE(3139)] = 89499, + [SMALL_STATE(3140)] = 89554, + [SMALL_STATE(3141)] = 89609, + [SMALL_STATE(3142)] = 89664, + [SMALL_STATE(3143)] = 89723, + [SMALL_STATE(3144)] = 89778, + [SMALL_STATE(3145)] = 89833, + [SMALL_STATE(3146)] = 89888, + [SMALL_STATE(3147)] = 89943, + [SMALL_STATE(3148)] = 89998, + [SMALL_STATE(3149)] = 90053, + [SMALL_STATE(3150)] = 90108, + [SMALL_STATE(3151)] = 90163, + [SMALL_STATE(3152)] = 90218, + [SMALL_STATE(3153)] = 90273, + [SMALL_STATE(3154)] = 90328, + [SMALL_STATE(3155)] = 90383, + [SMALL_STATE(3156)] = 90438, + [SMALL_STATE(3157)] = 90493, + [SMALL_STATE(3158)] = 90548, + [SMALL_STATE(3159)] = 90603, + [SMALL_STATE(3160)] = 90662, + [SMALL_STATE(3161)] = 90717, + [SMALL_STATE(3162)] = 90772, + [SMALL_STATE(3163)] = 90827, + [SMALL_STATE(3164)] = 90890, + [SMALL_STATE(3165)] = 90945, + [SMALL_STATE(3166)] = 91000, + [SMALL_STATE(3167)] = 91055, + [SMALL_STATE(3168)] = 91110, + [SMALL_STATE(3169)] = 91165, + [SMALL_STATE(3170)] = 91220, + [SMALL_STATE(3171)] = 91275, + [SMALL_STATE(3172)] = 91330, + [SMALL_STATE(3173)] = 91385, + [SMALL_STATE(3174)] = 91444, + [SMALL_STATE(3175)] = 91499, + [SMALL_STATE(3176)] = 91554, + [SMALL_STATE(3177)] = 91609, + [SMALL_STATE(3178)] = 91664, + [SMALL_STATE(3179)] = 91719, + [SMALL_STATE(3180)] = 91774, + [SMALL_STATE(3181)] = 91829, + [SMALL_STATE(3182)] = 91884, + [SMALL_STATE(3183)] = 91939, + [SMALL_STATE(3184)] = 91994, + [SMALL_STATE(3185)] = 92049, + [SMALL_STATE(3186)] = 92104, + [SMALL_STATE(3187)] = 92159, + [SMALL_STATE(3188)] = 92214, + [SMALL_STATE(3189)] = 92269, + [SMALL_STATE(3190)] = 92324, + [SMALL_STATE(3191)] = 92379, + [SMALL_STATE(3192)] = 92434, + [SMALL_STATE(3193)] = 92489, + [SMALL_STATE(3194)] = 92544, + [SMALL_STATE(3195)] = 92599, + [SMALL_STATE(3196)] = 92654, + [SMALL_STATE(3197)] = 92709, + [SMALL_STATE(3198)] = 92764, + [SMALL_STATE(3199)] = 92819, + [SMALL_STATE(3200)] = 92874, + [SMALL_STATE(3201)] = 92929, + [SMALL_STATE(3202)] = 92984, + [SMALL_STATE(3203)] = 93039, + [SMALL_STATE(3204)] = 93098, + [SMALL_STATE(3205)] = 93153, + [SMALL_STATE(3206)] = 93247, + [SMALL_STATE(3207)] = 93301, + [SMALL_STATE(3208)] = 93395, + [SMALL_STATE(3209)] = 93455, + [SMALL_STATE(3210)] = 93509, + [SMALL_STATE(3211)] = 93569, + [SMALL_STATE(3212)] = 93662, + [SMALL_STATE(3213)] = 93755, + [SMALL_STATE(3214)] = 93848, + [SMALL_STATE(3215)] = 93941, + [SMALL_STATE(3216)] = 94034, + [SMALL_STATE(3217)] = 94091, + [SMALL_STATE(3218)] = 94184, + [SMALL_STATE(3219)] = 94277, + [SMALL_STATE(3220)] = 94370, + [SMALL_STATE(3221)] = 94463, + [SMALL_STATE(3222)] = 94556, + [SMALL_STATE(3223)] = 94649, + [SMALL_STATE(3224)] = 94708, + [SMALL_STATE(3225)] = 94801, + [SMALL_STATE(3226)] = 94894, + [SMALL_STATE(3227)] = 94987, + [SMALL_STATE(3228)] = 95080, + [SMALL_STATE(3229)] = 95173, + [SMALL_STATE(3230)] = 95266, + [SMALL_STATE(3231)] = 95325, + [SMALL_STATE(3232)] = 95418, + [SMALL_STATE(3233)] = 95511, + [SMALL_STATE(3234)] = 95604, + [SMALL_STATE(3235)] = 95697, + [SMALL_STATE(3236)] = 95790, + [SMALL_STATE(3237)] = 95883, + [SMALL_STATE(3238)] = 95976, + [SMALL_STATE(3239)] = 96069, + [SMALL_STATE(3240)] = 96127, + [SMALL_STATE(3241)] = 96185, + [SMALL_STATE(3242)] = 96243, + [SMALL_STATE(3243)] = 96301, + [SMALL_STATE(3244)] = 96353, + [SMALL_STATE(3245)] = 96421, + [SMALL_STATE(3246)] = 96477, + [SMALL_STATE(3247)] = 96545, + [SMALL_STATE(3248)] = 96603, + [SMALL_STATE(3249)] = 96671, + [SMALL_STATE(3250)] = 96729, + [SMALL_STATE(3251)] = 96789, + [SMALL_STATE(3252)] = 96861, + [SMALL_STATE(3253)] = 96929, + [SMALL_STATE(3254)] = 96981, + [SMALL_STATE(3255)] = 97039, + [SMALL_STATE(3256)] = 97111, + [SMALL_STATE(3257)] = 97162, + [SMALL_STATE(3258)] = 97213, + [SMALL_STATE(3259)] = 97280, + [SMALL_STATE(3260)] = 97347, + [SMALL_STATE(3261)] = 97410, + [SMALL_STATE(3262)] = 97473, + [SMALL_STATE(3263)] = 97526, + [SMALL_STATE(3264)] = 97593, + [SMALL_STATE(3265)] = 97656, + [SMALL_STATE(3266)] = 97707, + [SMALL_STATE(3267)] = 97758, + [SMALL_STATE(3268)] = 97825, + [SMALL_STATE(3269)] = 97888, + [SMALL_STATE(3270)] = 97951, + [SMALL_STATE(3271)] = 98008, + [SMALL_STATE(3272)] = 98067, + [SMALL_STATE(3273)] = 98124, + [SMALL_STATE(3274)] = 98175, + [SMALL_STATE(3275)] = 98226, + [SMALL_STATE(3276)] = 98277, + [SMALL_STATE(3277)] = 98330, + [SMALL_STATE(3278)] = 98387, + [SMALL_STATE(3279)] = 98438, + [SMALL_STATE(3280)] = 98489, + [SMALL_STATE(3281)] = 98552, + [SMALL_STATE(3282)] = 98615, + [SMALL_STATE(3283)] = 98666, + [SMALL_STATE(3284)] = 98719, + [SMALL_STATE(3285)] = 98776, + [SMALL_STATE(3286)] = 98839, + [SMALL_STATE(3287)] = 98902, + [SMALL_STATE(3288)] = 98952, + [SMALL_STATE(3289)] = 99002, + [SMALL_STATE(3290)] = 99054, + [SMALL_STATE(3291)] = 99106, + [SMALL_STATE(3292)] = 99162, + [SMALL_STATE(3293)] = 99228, + [SMALL_STATE(3294)] = 99278, + [SMALL_STATE(3295)] = 99334, + [SMALL_STATE(3296)] = 99428, + [SMALL_STATE(3297)] = 99478, + [SMALL_STATE(3298)] = 99544, + [SMALL_STATE(3299)] = 99594, + [SMALL_STATE(3300)] = 99644, + [SMALL_STATE(3301)] = 99694, + [SMALL_STATE(3302)] = 99746, + [SMALL_STATE(3303)] = 99796, + [SMALL_STATE(3304)] = 99846, + [SMALL_STATE(3305)] = 99896, + [SMALL_STATE(3306)] = 99946, + [SMALL_STATE(3307)] = 99996, + [SMALL_STATE(3308)] = 100046, + [SMALL_STATE(3309)] = 100096, + [SMALL_STATE(3310)] = 100146, + [SMALL_STATE(3311)] = 100240, + [SMALL_STATE(3312)] = 100306, + [SMALL_STATE(3313)] = 100356, + [SMALL_STATE(3314)] = 100406, + [SMALL_STATE(3315)] = 100456, + [SMALL_STATE(3316)] = 100506, + [SMALL_STATE(3317)] = 100572, + [SMALL_STATE(3318)] = 100621, + [SMALL_STATE(3319)] = 100684, + [SMALL_STATE(3320)] = 100775, + [SMALL_STATE(3321)] = 100824, + [SMALL_STATE(3322)] = 100887, + [SMALL_STATE(3323)] = 100936, + [SMALL_STATE(3324)] = 100985, + [SMALL_STATE(3325)] = 101076, + [SMALL_STATE(3326)] = 101129, + [SMALL_STATE(3327)] = 101178, + [SMALL_STATE(3328)] = 101227, + [SMALL_STATE(3329)] = 101318, + [SMALL_STATE(3330)] = 101367, + [SMALL_STATE(3331)] = 101458, + [SMALL_STATE(3332)] = 101549, + [SMALL_STATE(3333)] = 101598, + [SMALL_STATE(3334)] = 101689, + [SMALL_STATE(3335)] = 101738, + [SMALL_STATE(3336)] = 101801, + [SMALL_STATE(3337)] = 101892, + [SMALL_STATE(3338)] = 101983, + [SMALL_STATE(3339)] = 102074, + [SMALL_STATE(3340)] = 102123, + [SMALL_STATE(3341)] = 102172, + [SMALL_STATE(3342)] = 102263, + [SMALL_STATE(3343)] = 102312, + [SMALL_STATE(3344)] = 102367, + [SMALL_STATE(3345)] = 102458, + [SMALL_STATE(3346)] = 102507, + [SMALL_STATE(3347)] = 102562, + [SMALL_STATE(3348)] = 102611, + [SMALL_STATE(3349)] = 102660, + [SMALL_STATE(3350)] = 102751, + [SMALL_STATE(3351)] = 102842, + [SMALL_STATE(3352)] = 102933, + [SMALL_STATE(3353)] = 103024, + [SMALL_STATE(3354)] = 103073, + [SMALL_STATE(3355)] = 103164, + [SMALL_STATE(3356)] = 103219, + [SMALL_STATE(3357)] = 103270, + [SMALL_STATE(3358)] = 103319, + [SMALL_STATE(3359)] = 103368, + [SMALL_STATE(3360)] = 103417, + [SMALL_STATE(3361)] = 103466, + [SMALL_STATE(3362)] = 103557, + [SMALL_STATE(3363)] = 103648, + [SMALL_STATE(3364)] = 103739, + [SMALL_STATE(3365)] = 103830, + [SMALL_STATE(3366)] = 103921, + [SMALL_STATE(3367)] = 104009, + [SMALL_STATE(3368)] = 104097, + [SMALL_STATE(3369)] = 104185, + [SMALL_STATE(3370)] = 104273, + [SMALL_STATE(3371)] = 104361, + [SMALL_STATE(3372)] = 104415, + [SMALL_STATE(3373)] = 104485, + [SMALL_STATE(3374)] = 104573, + [SMALL_STATE(3375)] = 104661, + [SMALL_STATE(3376)] = 104749, + [SMALL_STATE(3377)] = 104803, + [SMALL_STATE(3378)] = 104891, + [SMALL_STATE(3379)] = 104939, + [SMALL_STATE(3380)] = 104987, + [SMALL_STATE(3381)] = 105075, + [SMALL_STATE(3382)] = 105129, + [SMALL_STATE(3383)] = 105199, + [SMALL_STATE(3384)] = 105287, + [SMALL_STATE(3385)] = 105375, + [SMALL_STATE(3386)] = 105445, + [SMALL_STATE(3387)] = 105533, + [SMALL_STATE(3388)] = 105625, + [SMALL_STATE(3389)] = 105695, + [SMALL_STATE(3390)] = 105783, + [SMALL_STATE(3391)] = 105837, + [SMALL_STATE(3392)] = 105889, + [SMALL_STATE(3393)] = 105977, + [SMALL_STATE(3394)] = 106065, + [SMALL_STATE(3395)] = 106135, + [SMALL_STATE(3396)] = 106185, + [SMALL_STATE(3397)] = 106277, + [SMALL_STATE(3398)] = 106365, + [SMALL_STATE(3399)] = 106453, + [SMALL_STATE(3400)] = 106541, + [SMALL_STATE(3401)] = 106589, + [SMALL_STATE(3402)] = 106677, + [SMALL_STATE(3403)] = 106765, + [SMALL_STATE(3404)] = 106815, + [SMALL_STATE(3405)] = 106869, + [SMALL_STATE(3406)] = 106917, + [SMALL_STATE(3407)] = 106965, + [SMALL_STATE(3408)] = 107053, + [SMALL_STATE(3409)] = 107105, + [SMALL_STATE(3410)] = 107193, + [SMALL_STATE(3411)] = 107241, + [SMALL_STATE(3412)] = 107329, + [SMALL_STATE(3413)] = 107417, + [SMALL_STATE(3414)] = 107487, + [SMALL_STATE(3415)] = 107557, + [SMALL_STATE(3416)] = 107645, + [SMALL_STATE(3417)] = 107703, + [SMALL_STATE(3418)] = 107791, + [SMALL_STATE(3419)] = 107839, + [SMALL_STATE(3420)] = 107927, + [SMALL_STATE(3421)] = 107989, + [SMALL_STATE(3422)] = 108037, + [SMALL_STATE(3423)] = 108091, + [SMALL_STATE(3424)] = 108138, + [SMALL_STATE(3425)] = 108185, + [SMALL_STATE(3426)] = 108232, + [SMALL_STATE(3427)] = 108279, + [SMALL_STATE(3428)] = 108326, + [SMALL_STATE(3429)] = 108373, + [SMALL_STATE(3430)] = 108420, + [SMALL_STATE(3431)] = 108467, + [SMALL_STATE(3432)] = 108522, + [SMALL_STATE(3433)] = 108571, + [SMALL_STATE(3434)] = 108618, + [SMALL_STATE(3435)] = 108667, + [SMALL_STATE(3436)] = 108714, + [SMALL_STATE(3437)] = 108761, + [SMALL_STATE(3438)] = 108820, + [SMALL_STATE(3439)] = 108871, + [SMALL_STATE(3440)] = 108920, + [SMALL_STATE(3441)] = 108967, + [SMALL_STATE(3442)] = 109014, + [SMALL_STATE(3443)] = 109061, + [SMALL_STATE(3444)] = 109108, + [SMALL_STATE(3445)] = 109155, + [SMALL_STATE(3446)] = 109202, + [SMALL_STATE(3447)] = 109249, + [SMALL_STATE(3448)] = 109296, + [SMALL_STATE(3449)] = 109343, + [SMALL_STATE(3450)] = 109394, + [SMALL_STATE(3451)] = 109441, + [SMALL_STATE(3452)] = 109488, + [SMALL_STATE(3453)] = 109535, + [SMALL_STATE(3454)] = 109594, + [SMALL_STATE(3455)] = 109645, + [SMALL_STATE(3456)] = 109704, + [SMALL_STATE(3457)] = 109751, + [SMALL_STATE(3458)] = 109810, + [SMALL_STATE(3459)] = 109869, + [SMALL_STATE(3460)] = 109916, + [SMALL_STATE(3461)] = 109963, + [SMALL_STATE(3462)] = 110022, + [SMALL_STATE(3463)] = 110069, + [SMALL_STATE(3464)] = 110128, + [SMALL_STATE(3465)] = 110175, + [SMALL_STATE(3466)] = 110222, + [SMALL_STATE(3467)] = 110269, + [SMALL_STATE(3468)] = 110316, + [SMALL_STATE(3469)] = 110363, + [SMALL_STATE(3470)] = 110410, + [SMALL_STATE(3471)] = 110457, + [SMALL_STATE(3472)] = 110508, + [SMALL_STATE(3473)] = 110555, + [SMALL_STATE(3474)] = 110602, + [SMALL_STATE(3475)] = 110661, + [SMALL_STATE(3476)] = 110708, + [SMALL_STATE(3477)] = 110767, + [SMALL_STATE(3478)] = 110814, + [SMALL_STATE(3479)] = 110861, + [SMALL_STATE(3480)] = 110918, + [SMALL_STATE(3481)] = 110965, + [SMALL_STATE(3482)] = 111012, + [SMALL_STATE(3483)] = 111059, + [SMALL_STATE(3484)] = 111106, + [SMALL_STATE(3485)] = 111153, + [SMALL_STATE(3486)] = 111200, + [SMALL_STATE(3487)] = 111247, + [SMALL_STATE(3488)] = 111294, + [SMALL_STATE(3489)] = 111341, + [SMALL_STATE(3490)] = 111388, + [SMALL_STATE(3491)] = 111435, + [SMALL_STATE(3492)] = 111482, + [SMALL_STATE(3493)] = 111541, + [SMALL_STATE(3494)] = 111588, + [SMALL_STATE(3495)] = 111635, + [SMALL_STATE(3496)] = 111682, + [SMALL_STATE(3497)] = 111729, + [SMALL_STATE(3498)] = 111776, + [SMALL_STATE(3499)] = 111827, + [SMALL_STATE(3500)] = 111874, + [SMALL_STATE(3501)] = 111921, + [SMALL_STATE(3502)] = 111968, + [SMALL_STATE(3503)] = 112015, + [SMALL_STATE(3504)] = 112062, + [SMALL_STATE(3505)] = 112109, + [SMALL_STATE(3506)] = 112156, + [SMALL_STATE(3507)] = 112203, + [SMALL_STATE(3508)] = 112262, + [SMALL_STATE(3509)] = 112315, + [SMALL_STATE(3510)] = 112362, + [SMALL_STATE(3511)] = 112409, + [SMALL_STATE(3512)] = 112464, + [SMALL_STATE(3513)] = 112511, + [SMALL_STATE(3514)] = 112558, + [SMALL_STATE(3515)] = 112605, + [SMALL_STATE(3516)] = 112652, + [SMALL_STATE(3517)] = 112699, + [SMALL_STATE(3518)] = 112752, + [SMALL_STATE(3519)] = 112799, + [SMALL_STATE(3520)] = 112846, + [SMALL_STATE(3521)] = 112893, + [SMALL_STATE(3522)] = 112960, + [SMALL_STATE(3523)] = 113019, + [SMALL_STATE(3524)] = 113066, + [SMALL_STATE(3525)] = 113133, + [SMALL_STATE(3526)] = 113188, + [SMALL_STATE(3527)] = 113241, + [SMALL_STATE(3528)] = 113304, + [SMALL_STATE(3529)] = 113351, + [SMALL_STATE(3530)] = 113408, + [SMALL_STATE(3531)] = 113461, + [SMALL_STATE(3532)] = 113508, + [SMALL_STATE(3533)] = 113555, + [SMALL_STATE(3534)] = 113602, + [SMALL_STATE(3535)] = 113649, + [SMALL_STATE(3536)] = 113696, + [SMALL_STATE(3537)] = 113754, + [SMALL_STATE(3538)] = 113812, + [SMALL_STATE(3539)] = 113898, + [SMALL_STATE(3540)] = 113950, + [SMALL_STATE(3541)] = 114008, + [SMALL_STATE(3542)] = 114076, + [SMALL_STATE(3543)] = 114128, + [SMALL_STATE(3544)] = 114186, + [SMALL_STATE(3545)] = 114244, + [SMALL_STATE(3546)] = 114302, + [SMALL_STATE(3547)] = 114360, + [SMALL_STATE(3548)] = 114418, + [SMALL_STATE(3549)] = 114476, + [SMALL_STATE(3550)] = 114564, + [SMALL_STATE(3551)] = 114650, + [SMALL_STATE(3552)] = 114710, + [SMALL_STATE(3553)] = 114776, + [SMALL_STATE(3554)] = 114836, + [SMALL_STATE(3555)] = 114896, + [SMALL_STATE(3556)] = 114960, + [SMALL_STATE(3557)] = 115028, + [SMALL_STATE(3558)] = 115100, + [SMALL_STATE(3559)] = 115186, + [SMALL_STATE(3560)] = 115272, + [SMALL_STATE(3561)] = 115318, + [SMALL_STATE(3562)] = 115404, + [SMALL_STATE(3563)] = 115464, + [SMALL_STATE(3564)] = 115524, + [SMALL_STATE(3565)] = 115584, + [SMALL_STATE(3566)] = 115658, + [SMALL_STATE(3567)] = 115718, + [SMALL_STATE(3568)] = 115778, + [SMALL_STATE(3569)] = 115838, + [SMALL_STATE(3570)] = 115890, + [SMALL_STATE(3571)] = 115968, + [SMALL_STATE(3572)] = 116048, + [SMALL_STATE(3573)] = 116130, + [SMALL_STATE(3574)] = 116176, + [SMALL_STATE(3575)] = 116238, + [SMALL_STATE(3576)] = 116324, + [SMALL_STATE(3577)] = 116376, + [SMALL_STATE(3578)] = 116472, + [SMALL_STATE(3579)] = 116556, + [SMALL_STATE(3580)] = 116646, + [SMALL_STATE(3581)] = 116698, + [SMALL_STATE(3582)] = 116775, + [SMALL_STATE(3583)] = 116868, + [SMALL_STATE(3584)] = 116945, + [SMALL_STATE(3585)] = 117038, + [SMALL_STATE(3586)] = 117131, + [SMALL_STATE(3587)] = 117208, + [SMALL_STATE(3588)] = 117285, + [SMALL_STATE(3589)] = 117362, + [SMALL_STATE(3590)] = 117455, + [SMALL_STATE(3591)] = 117532, + [SMALL_STATE(3592)] = 117625, + [SMALL_STATE(3593)] = 117716, + [SMALL_STATE(3594)] = 117809, + [SMALL_STATE(3595)] = 117886, + [SMALL_STATE(3596)] = 117979, + [SMALL_STATE(3597)] = 118072, + [SMALL_STATE(3598)] = 118165, + [SMALL_STATE(3599)] = 118258, + [SMALL_STATE(3600)] = 118351, + [SMALL_STATE(3601)] = 118444, + [SMALL_STATE(3602)] = 118537, + [SMALL_STATE(3603)] = 118630, + [SMALL_STATE(3604)] = 118723, + [SMALL_STATE(3605)] = 118816, + [SMALL_STATE(3606)] = 118893, + [SMALL_STATE(3607)] = 118986, + [SMALL_STATE(3608)] = 119079, + [SMALL_STATE(3609)] = 119130, + [SMALL_STATE(3610)] = 119207, + [SMALL_STATE(3611)] = 119284, + [SMALL_STATE(3612)] = 119377, + [SMALL_STATE(3613)] = 119470, + [SMALL_STATE(3614)] = 119563, + [SMALL_STATE(3615)] = 119656, + [SMALL_STATE(3616)] = 119749, + [SMALL_STATE(3617)] = 119826, + [SMALL_STATE(3618)] = 119919, + [SMALL_STATE(3619)] = 120012, + [SMALL_STATE(3620)] = 120105, + [SMALL_STATE(3621)] = 120182, + [SMALL_STATE(3622)] = 120275, + [SMALL_STATE(3623)] = 120320, + [SMALL_STATE(3624)] = 120413, + [SMALL_STATE(3625)] = 120490, + [SMALL_STATE(3626)] = 120539, + [SMALL_STATE(3627)] = 120616, + [SMALL_STATE(3628)] = 120709, + [SMALL_STATE(3629)] = 120786, + [SMALL_STATE(3630)] = 120863, + [SMALL_STATE(3631)] = 120956, + [SMALL_STATE(3632)] = 121047, + [SMALL_STATE(3633)] = 121094, + [SMALL_STATE(3634)] = 121187, + [SMALL_STATE(3635)] = 121280, + [SMALL_STATE(3636)] = 121325, + [SMALL_STATE(3637)] = 121402, + [SMALL_STATE(3638)] = 121495, + [SMALL_STATE(3639)] = 121572, + [SMALL_STATE(3640)] = 121665, + [SMALL_STATE(3641)] = 121758, + [SMALL_STATE(3642)] = 121848, + [SMALL_STATE(3643)] = 121936, + [SMALL_STATE(3644)] = 121990, + [SMALL_STATE(3645)] = 122062, + [SMALL_STATE(3646)] = 122106, + [SMALL_STATE(3647)] = 122194, + [SMALL_STATE(3648)] = 122264, + [SMALL_STATE(3649)] = 122308, + [SMALL_STATE(3650)] = 122380, + [SMALL_STATE(3651)] = 122464, + [SMALL_STATE(3652)] = 122508, + [SMALL_STATE(3653)] = 122552, + [SMALL_STATE(3654)] = 122596, + [SMALL_STATE(3655)] = 122686, + [SMALL_STATE(3656)] = 122776, + [SMALL_STATE(3657)] = 122866, + [SMALL_STATE(3658)] = 122910, + [SMALL_STATE(3659)] = 122986, + [SMALL_STATE(3660)] = 123076, + [SMALL_STATE(3661)] = 123166, + [SMALL_STATE(3662)] = 123244, + [SMALL_STATE(3663)] = 123298, + [SMALL_STATE(3664)] = 123388, + [SMALL_STATE(3665)] = 123478, + [SMALL_STATE(3666)] = 123568, + [SMALL_STATE(3667)] = 123658, + [SMALL_STATE(3668)] = 123742, + [SMALL_STATE(3669)] = 123786, + [SMALL_STATE(3670)] = 123876, + [SMALL_STATE(3671)] = 123964, + [SMALL_STATE(3672)] = 124052, + [SMALL_STATE(3673)] = 124132, + [SMALL_STATE(3674)] = 124214, + [SMALL_STATE(3675)] = 124270, + [SMALL_STATE(3676)] = 124360, + [SMALL_STATE(3677)] = 124404, + [SMALL_STATE(3678)] = 124488, + [SMALL_STATE(3679)] = 124578, + [SMALL_STATE(3680)] = 124650, + [SMALL_STATE(3681)] = 124740, + [SMALL_STATE(3682)] = 124830, + [SMALL_STATE(3683)] = 124898, + [SMALL_STATE(3684)] = 124954, + [SMALL_STATE(3685)] = 125038, + [SMALL_STATE(3686)] = 125128, + [SMALL_STATE(3687)] = 125218, + [SMALL_STATE(3688)] = 125276, + [SMALL_STATE(3689)] = 125366, + [SMALL_STATE(3690)] = 125426, + [SMALL_STATE(3691)] = 125516, + [SMALL_STATE(3692)] = 125602, + [SMALL_STATE(3693)] = 125692, + [SMALL_STATE(3694)] = 125782, + [SMALL_STATE(3695)] = 125872, + [SMALL_STATE(3696)] = 125962, + [SMALL_STATE(3697)] = 126052, + [SMALL_STATE(3698)] = 126142, + [SMALL_STATE(3699)] = 126232, + [SMALL_STATE(3700)] = 126322, + [SMALL_STATE(3701)] = 126412, + [SMALL_STATE(3702)] = 126502, + [SMALL_STATE(3703)] = 126590, + [SMALL_STATE(3704)] = 126680, + [SMALL_STATE(3705)] = 126770, + [SMALL_STATE(3706)] = 126860, + [SMALL_STATE(3707)] = 126916, + [SMALL_STATE(3708)] = 126962, + [SMALL_STATE(3709)] = 127016, + [SMALL_STATE(3710)] = 127060, + [SMALL_STATE(3711)] = 127114, + [SMALL_STATE(3712)] = 127204, + [SMALL_STATE(3713)] = 127264, + [SMALL_STATE(3714)] = 127346, + [SMALL_STATE(3715)] = 127426, + [SMALL_STATE(3716)] = 127488, + [SMALL_STATE(3717)] = 127578, + [SMALL_STATE(3718)] = 127666, + [SMALL_STATE(3719)] = 127710, + [SMALL_STATE(3720)] = 127788, + [SMALL_STATE(3721)] = 127878, + [SMALL_STATE(3722)] = 127922, + [SMALL_STATE(3723)] = 128012, + [SMALL_STATE(3724)] = 128088, + [SMALL_STATE(3725)] = 128160, + [SMALL_STATE(3726)] = 128230, + [SMALL_STATE(3727)] = 128274, + [SMALL_STATE(3728)] = 128340, + [SMALL_STATE(3729)] = 128406, + [SMALL_STATE(3730)] = 128452, + [SMALL_STATE(3731)] = 128542, + [SMALL_STATE(3732)] = 128632, + [SMALL_STATE(3733)] = 128722, + [SMALL_STATE(3734)] = 128784, + [SMALL_STATE(3735)] = 128842, + [SMALL_STATE(3736)] = 128932, + [SMALL_STATE(3737)] = 129022, + [SMALL_STATE(3738)] = 129112, + [SMALL_STATE(3739)] = 129196, + [SMALL_STATE(3740)] = 129280, + [SMALL_STATE(3741)] = 129344, + [SMALL_STATE(3742)] = 129434, + [SMALL_STATE(3743)] = 129524, + [SMALL_STATE(3744)] = 129582, + [SMALL_STATE(3745)] = 129672, + [SMALL_STATE(3746)] = 129752, + [SMALL_STATE(3747)] = 129842, + [SMALL_STATE(3748)] = 129932, + [SMALL_STATE(3749)] = 129980, + [SMALL_STATE(3750)] = 130046, + [SMALL_STATE(3751)] = 130136, + [SMALL_STATE(3752)] = 130226, + [SMALL_STATE(3753)] = 130310, + [SMALL_STATE(3754)] = 130398, + [SMALL_STATE(3755)] = 130488, + [SMALL_STATE(3756)] = 130578, + [SMALL_STATE(3757)] = 130668, + [SMALL_STATE(3758)] = 130758, + [SMALL_STATE(3759)] = 130848, + [SMALL_STATE(3760)] = 130902, + [SMALL_STATE(3761)] = 130946, + [SMALL_STATE(3762)] = 131034, + [SMALL_STATE(3763)] = 131122, + [SMALL_STATE(3764)] = 131212, + [SMALL_STATE(3765)] = 131302, + [SMALL_STATE(3766)] = 131392, + [SMALL_STATE(3767)] = 131472, + [SMALL_STATE(3768)] = 131558, + [SMALL_STATE(3769)] = 131642, + [SMALL_STATE(3770)] = 131730, + [SMALL_STATE(3771)] = 131778, + [SMALL_STATE(3772)] = 131846, + [SMALL_STATE(3773)] = 131936, + [SMALL_STATE(3774)] = 132026, + [SMALL_STATE(3775)] = 132070, + [SMALL_STATE(3776)] = 132160, + [SMALL_STATE(3777)] = 132250, + [SMALL_STATE(3778)] = 132298, + [SMALL_STATE(3779)] = 132388, + [SMALL_STATE(3780)] = 132478, + [SMALL_STATE(3781)] = 132522, + [SMALL_STATE(3782)] = 132612, + [SMALL_STATE(3783)] = 132660, + [SMALL_STATE(3784)] = 132748, + [SMALL_STATE(3785)] = 132838, + [SMALL_STATE(3786)] = 132928, + [SMALL_STATE(3787)] = 132972, + [SMALL_STATE(3788)] = 133062, + [SMALL_STATE(3789)] = 133106, + [SMALL_STATE(3790)] = 133196, + [SMALL_STATE(3791)] = 133286, + [SMALL_STATE(3792)] = 133376, + [SMALL_STATE(3793)] = 133466, + [SMALL_STATE(3794)] = 133556, + [SMALL_STATE(3795)] = 133646, + [SMALL_STATE(3796)] = 133736, + [SMALL_STATE(3797)] = 133826, + [SMALL_STATE(3798)] = 133916, + [SMALL_STATE(3799)] = 134006, + [SMALL_STATE(3800)] = 134050, + [SMALL_STATE(3801)] = 134094, + [SMALL_STATE(3802)] = 134138, + [SMALL_STATE(3803)] = 134228, + [SMALL_STATE(3804)] = 134316, + [SMALL_STATE(3805)] = 134404, + [SMALL_STATE(3806)] = 134456, + [SMALL_STATE(3807)] = 134500, + [SMALL_STATE(3808)] = 134544, + [SMALL_STATE(3809)] = 134634, + [SMALL_STATE(3810)] = 134724, + [SMALL_STATE(3811)] = 134814, + [SMALL_STATE(3812)] = 134904, + [SMALL_STATE(3813)] = 134994, + [SMALL_STATE(3814)] = 135081, + [SMALL_STATE(3815)] = 135168, + [SMALL_STATE(3816)] = 135255, + [SMALL_STATE(3817)] = 135342, + [SMALL_STATE(3818)] = 135429, + [SMALL_STATE(3819)] = 135484, + [SMALL_STATE(3820)] = 135571, + [SMALL_STATE(3821)] = 135658, + [SMALL_STATE(3822)] = 135745, + [SMALL_STATE(3823)] = 135788, + [SMALL_STATE(3824)] = 135875, + [SMALL_STATE(3825)] = 135962, + [SMALL_STATE(3826)] = 136049, + [SMALL_STATE(3827)] = 136094, + [SMALL_STATE(3828)] = 136181, + [SMALL_STATE(3829)] = 136268, + [SMALL_STATE(3830)] = 136355, + [SMALL_STATE(3831)] = 136442, + [SMALL_STATE(3832)] = 136529, + [SMALL_STATE(3833)] = 136616, + [SMALL_STATE(3834)] = 136687, + [SMALL_STATE(3835)] = 136774, + [SMALL_STATE(3836)] = 136845, + [SMALL_STATE(3837)] = 136932, + [SMALL_STATE(3838)] = 136975, + [SMALL_STATE(3839)] = 137018, + [SMALL_STATE(3840)] = 137061, + [SMALL_STATE(3841)] = 137148, + [SMALL_STATE(3842)] = 137235, + [SMALL_STATE(3843)] = 137306, + [SMALL_STATE(3844)] = 137377, + [SMALL_STATE(3845)] = 137464, + [SMALL_STATE(3846)] = 137551, + [SMALL_STATE(3847)] = 137594, + [SMALL_STATE(3848)] = 137647, + [SMALL_STATE(3849)] = 137734, + [SMALL_STATE(3850)] = 137797, + [SMALL_STATE(3851)] = 137840, + [SMALL_STATE(3852)] = 137927, + [SMALL_STATE(3853)] = 138014, + [SMALL_STATE(3854)] = 138057, + [SMALL_STATE(3855)] = 138144, + [SMALL_STATE(3856)] = 138231, + [SMALL_STATE(3857)] = 138302, + [SMALL_STATE(3858)] = 138389, + [SMALL_STATE(3859)] = 138434, + [SMALL_STATE(3860)] = 138521, + [SMALL_STATE(3861)] = 138608, + [SMALL_STATE(3862)] = 138695, + [SMALL_STATE(3863)] = 138782, + [SMALL_STATE(3864)] = 138843, + [SMALL_STATE(3865)] = 138908, + [SMALL_STATE(3866)] = 138951, + [SMALL_STATE(3867)] = 138996, + [SMALL_STATE(3868)] = 139065, + [SMALL_STATE(3869)] = 139136, + [SMALL_STATE(3870)] = 139223, + [SMALL_STATE(3871)] = 139310, + [SMALL_STATE(3872)] = 139397, + [SMALL_STATE(3873)] = 139484, + [SMALL_STATE(3874)] = 139571, + [SMALL_STATE(3875)] = 139646, + [SMALL_STATE(3876)] = 139733, + [SMALL_STATE(3877)] = 139810, + [SMALL_STATE(3878)] = 139897, + [SMALL_STATE(3879)] = 139976, + [SMALL_STATE(3880)] = 140057, + [SMALL_STATE(3881)] = 140116, + [SMALL_STATE(3882)] = 140203, + [SMALL_STATE(3883)] = 140256, + [SMALL_STATE(3884)] = 140343, + [SMALL_STATE(3885)] = 140390, + [SMALL_STATE(3886)] = 140477, + [SMALL_STATE(3887)] = 140564, + [SMALL_STATE(3888)] = 140607, + [SMALL_STATE(3889)] = 140694, + [SMALL_STATE(3890)] = 140737, + [SMALL_STATE(3891)] = 140780, + [SMALL_STATE(3892)] = 140867, + [SMALL_STATE(3893)] = 140910, + [SMALL_STATE(3894)] = 140997, + [SMALL_STATE(3895)] = 141084, + [SMALL_STATE(3896)] = 141171, + [SMALL_STATE(3897)] = 141256, + [SMALL_STATE(3898)] = 141299, + [SMALL_STATE(3899)] = 141386, + [SMALL_STATE(3900)] = 141473, + [SMALL_STATE(3901)] = 141560, + [SMALL_STATE(3902)] = 141647, + [SMALL_STATE(3903)] = 141734, + [SMALL_STATE(3904)] = 141821, + [SMALL_STATE(3905)] = 141908, + [SMALL_STATE(3906)] = 141995, + [SMALL_STATE(3907)] = 142082, + [SMALL_STATE(3908)] = 142169, + [SMALL_STATE(3909)] = 142240, + [SMALL_STATE(3910)] = 142327, + [SMALL_STATE(3911)] = 142414, + [SMALL_STATE(3912)] = 142501, + [SMALL_STATE(3913)] = 142588, + [SMALL_STATE(3914)] = 142643, + [SMALL_STATE(3915)] = 142730, + [SMALL_STATE(3916)] = 142817, + [SMALL_STATE(3917)] = 142904, + [SMALL_STATE(3918)] = 142991, + [SMALL_STATE(3919)] = 143078, + [SMALL_STATE(3920)] = 143161, + [SMALL_STATE(3921)] = 143248, + [SMALL_STATE(3922)] = 143335, + [SMALL_STATE(3923)] = 143406, + [SMALL_STATE(3924)] = 143485, + [SMALL_STATE(3925)] = 143572, + [SMALL_STATE(3926)] = 143621, + [SMALL_STATE(3927)] = 143708, + [SMALL_STATE(3928)] = 143795, + [SMALL_STATE(3929)] = 143838, + [SMALL_STATE(3930)] = 143881, + [SMALL_STATE(3931)] = 143968, + [SMALL_STATE(3932)] = 144055, + [SMALL_STATE(3933)] = 144142, + [SMALL_STATE(3934)] = 144229, + [SMALL_STATE(3935)] = 144316, + [SMALL_STATE(3936)] = 144403, + [SMALL_STATE(3937)] = 144490, + [SMALL_STATE(3938)] = 144561, + [SMALL_STATE(3939)] = 144612, + [SMALL_STATE(3940)] = 144699, + [SMALL_STATE(3941)] = 144742, + [SMALL_STATE(3942)] = 144829, + [SMALL_STATE(3943)] = 144916, + [SMALL_STATE(3944)] = 145003, + [SMALL_STATE(3945)] = 145050, + [SMALL_STATE(3946)] = 145105, + [SMALL_STATE(3947)] = 145192, + [SMALL_STATE(3948)] = 145235, + [SMALL_STATE(3949)] = 145322, + [SMALL_STATE(3950)] = 145405, + [SMALL_STATE(3951)] = 145492, + [SMALL_STATE(3952)] = 145535, + [SMALL_STATE(3953)] = 145622, + [SMALL_STATE(3954)] = 145709, + [SMALL_STATE(3955)] = 145796, + [SMALL_STATE(3956)] = 145883, + [SMALL_STATE(3957)] = 145970, + [SMALL_STATE(3958)] = 146057, + [SMALL_STATE(3959)] = 146100, + [SMALL_STATE(3960)] = 146187, + [SMALL_STATE(3961)] = 146274, + [SMALL_STATE(3962)] = 146345, + [SMALL_STATE(3963)] = 146432, + [SMALL_STATE(3964)] = 146519, + [SMALL_STATE(3965)] = 146606, + [SMALL_STATE(3966)] = 146693, + [SMALL_STATE(3967)] = 146780, + [SMALL_STATE(3968)] = 146851, + [SMALL_STATE(3969)] = 146938, + [SMALL_STATE(3970)] = 146987, + [SMALL_STATE(3971)] = 147074, + [SMALL_STATE(3972)] = 147157, + [SMALL_STATE(3973)] = 147200, + [SMALL_STATE(3974)] = 147287, + [SMALL_STATE(3975)] = 147374, + [SMALL_STATE(3976)] = 147461, + [SMALL_STATE(3977)] = 147548, + [SMALL_STATE(3978)] = 147599, + [SMALL_STATE(3979)] = 147682, + [SMALL_STATE(3980)] = 147769, + [SMALL_STATE(3981)] = 147856, + [SMALL_STATE(3982)] = 147943, + [SMALL_STATE(3983)] = 148030, + [SMALL_STATE(3984)] = 148117, + [SMALL_STATE(3985)] = 148204, + [SMALL_STATE(3986)] = 148269, + [SMALL_STATE(3987)] = 148356, + [SMALL_STATE(3988)] = 148443, + [SMALL_STATE(3989)] = 148486, + [SMALL_STATE(3990)] = 148529, + [SMALL_STATE(3991)] = 148616, + [SMALL_STATE(3992)] = 148703, + [SMALL_STATE(3993)] = 148745, + [SMALL_STATE(3994)] = 148829, + [SMALL_STATE(3995)] = 148871, + [SMALL_STATE(3996)] = 148913, + [SMALL_STATE(3997)] = 148955, + [SMALL_STATE(3998)] = 148997, + [SMALL_STATE(3999)] = 149049, + [SMALL_STATE(4000)] = 149091, + [SMALL_STATE(4001)] = 149133, + [SMALL_STATE(4002)] = 149175, + [SMALL_STATE(4003)] = 149217, + [SMALL_STATE(4004)] = 149259, + [SMALL_STATE(4005)] = 149301, + [SMALL_STATE(4006)] = 149343, + [SMALL_STATE(4007)] = 149385, + [SMALL_STATE(4008)] = 149427, + [SMALL_STATE(4009)] = 149469, + [SMALL_STATE(4010)] = 149511, + [SMALL_STATE(4011)] = 149553, + [SMALL_STATE(4012)] = 149595, + [SMALL_STATE(4013)] = 149637, + [SMALL_STATE(4014)] = 149707, + [SMALL_STATE(4015)] = 149749, + [SMALL_STATE(4016)] = 149791, + [SMALL_STATE(4017)] = 149833, + [SMALL_STATE(4018)] = 149875, + [SMALL_STATE(4019)] = 149917, + [SMALL_STATE(4020)] = 149959, + [SMALL_STATE(4021)] = 150001, + [SMALL_STATE(4022)] = 150043, + [SMALL_STATE(4023)] = 150085, + [SMALL_STATE(4024)] = 150127, + [SMALL_STATE(4025)] = 150179, + [SMALL_STATE(4026)] = 150221, + [SMALL_STATE(4027)] = 150263, + [SMALL_STATE(4028)] = 150305, + [SMALL_STATE(4029)] = 150347, + [SMALL_STATE(4030)] = 150389, + [SMALL_STATE(4031)] = 150431, + [SMALL_STATE(4032)] = 150473, + [SMALL_STATE(4033)] = 150515, + [SMALL_STATE(4034)] = 150557, + [SMALL_STATE(4035)] = 150599, + [SMALL_STATE(4036)] = 150641, + [SMALL_STATE(4037)] = 150683, + [SMALL_STATE(4038)] = 150725, + [SMALL_STATE(4039)] = 150767, + [SMALL_STATE(4040)] = 150809, + [SMALL_STATE(4041)] = 150851, + [SMALL_STATE(4042)] = 150893, + [SMALL_STATE(4043)] = 150935, + [SMALL_STATE(4044)] = 150977, + [SMALL_STATE(4045)] = 151019, + [SMALL_STATE(4046)] = 151061, + [SMALL_STATE(4047)] = 151103, + [SMALL_STATE(4048)] = 151145, + [SMALL_STATE(4049)] = 151187, + [SMALL_STATE(4050)] = 151229, + [SMALL_STATE(4051)] = 151271, + [SMALL_STATE(4052)] = 151313, + [SMALL_STATE(4053)] = 151383, + [SMALL_STATE(4054)] = 151425, + [SMALL_STATE(4055)] = 151467, + [SMALL_STATE(4056)] = 151509, + [SMALL_STATE(4057)] = 151551, + [SMALL_STATE(4058)] = 151593, + [SMALL_STATE(4059)] = 151635, + [SMALL_STATE(4060)] = 151677, + [SMALL_STATE(4061)] = 151719, + [SMALL_STATE(4062)] = 151761, + [SMALL_STATE(4063)] = 151803, + [SMALL_STATE(4064)] = 151845, + [SMALL_STATE(4065)] = 151896, + [SMALL_STATE(4066)] = 151947, + [SMALL_STATE(4067)] = 152012, + [SMALL_STATE(4068)] = 152075, + [SMALL_STATE(4069)] = 152140, + [SMALL_STATE(4070)] = 152193, + [SMALL_STATE(4071)] = 152260, + [SMALL_STATE(4072)] = 152325, + [SMALL_STATE(4073)] = 152374, + [SMALL_STATE(4074)] = 152441, + [SMALL_STATE(4075)] = 152494, + [SMALL_STATE(4076)] = 152559, + [SMALL_STATE(4077)] = 152602, + [SMALL_STATE(4078)] = 152665, + [SMALL_STATE(4079)] = 152745, + [SMALL_STATE(4080)] = 152825, + [SMALL_STATE(4081)] = 152905, + [SMALL_STATE(4082)] = 152945, + [SMALL_STATE(4083)] = 152985, + [SMALL_STATE(4084)] = 153065, + [SMALL_STATE(4085)] = 153131, + [SMALL_STATE(4086)] = 153211, + [SMALL_STATE(4087)] = 153251, + [SMALL_STATE(4088)] = 153315, + [SMALL_STATE(4089)] = 153395, + [SMALL_STATE(4090)] = 153475, + [SMALL_STATE(4091)] = 153555, + [SMALL_STATE(4092)] = 153623, + [SMALL_STATE(4093)] = 153703, + [SMALL_STATE(4094)] = 153767, + [SMALL_STATE(4095)] = 153847, + [SMALL_STATE(4096)] = 153927, + [SMALL_STATE(4097)] = 154007, + [SMALL_STATE(4098)] = 154087, + [SMALL_STATE(4099)] = 154127, + [SMALL_STATE(4100)] = 154195, + [SMALL_STATE(4101)] = 154235, + [SMALL_STATE(4102)] = 154275, + [SMALL_STATE(4103)] = 154341, + [SMALL_STATE(4104)] = 154421, + [SMALL_STATE(4105)] = 154465, + [SMALL_STATE(4106)] = 154533, + [SMALL_STATE(4107)] = 154613, + [SMALL_STATE(4108)] = 154693, + [SMALL_STATE(4109)] = 154761, + [SMALL_STATE(4110)] = 154841, + [SMALL_STATE(4111)] = 154921, + [SMALL_STATE(4112)] = 154977, + [SMALL_STATE(4113)] = 155017, + [SMALL_STATE(4114)] = 155064, + [SMALL_STATE(4115)] = 155103, + [SMALL_STATE(4116)] = 155144, + [SMALL_STATE(4117)] = 155207, + [SMALL_STATE(4118)] = 155250, + [SMALL_STATE(4119)] = 155289, + [SMALL_STATE(4120)] = 155352, + [SMALL_STATE(4121)] = 155417, + [SMALL_STATE(4122)] = 155464, + [SMALL_STATE(4123)] = 155507, + [SMALL_STATE(4124)] = 155562, + [SMALL_STATE(4125)] = 155629, + [SMALL_STATE(4126)] = 155694, + [SMALL_STATE(4127)] = 155761, + [SMALL_STATE(4128)] = 155800, + [SMALL_STATE(4129)] = 155874, + [SMALL_STATE(4130)] = 155928, + [SMALL_STATE(4131)] = 155974, + [SMALL_STATE(4132)] = 156048, + [SMALL_STATE(4133)] = 156122, + [SMALL_STATE(4134)] = 156196, + [SMALL_STATE(4135)] = 156254, + [SMALL_STATE(4136)] = 156328, + [SMALL_STATE(4137)] = 156382, + [SMALL_STATE(4138)] = 156456, + [SMALL_STATE(4139)] = 156514, + [SMALL_STATE(4140)] = 156588, + [SMALL_STATE(4141)] = 156662, + [SMALL_STATE(4142)] = 156736, + [SMALL_STATE(4143)] = 156810, + [SMALL_STATE(4144)] = 156884, + [SMALL_STATE(4145)] = 156958, + [SMALL_STATE(4146)] = 157032, + [SMALL_STATE(4147)] = 157106, + [SMALL_STATE(4148)] = 157180, + [SMALL_STATE(4149)] = 157254, + [SMALL_STATE(4150)] = 157328, + [SMALL_STATE(4151)] = 157402, + [SMALL_STATE(4152)] = 157442, + [SMALL_STATE(4153)] = 157506, + [SMALL_STATE(4154)] = 157566, + [SMALL_STATE(4155)] = 157626, + [SMALL_STATE(4156)] = 157684, + [SMALL_STATE(4157)] = 157758, + [SMALL_STATE(4158)] = 157832, + [SMALL_STATE(4159)] = 157906, + [SMALL_STATE(4160)] = 157980, + [SMALL_STATE(4161)] = 158054, + [SMALL_STATE(4162)] = 158128, + [SMALL_STATE(4163)] = 158202, + [SMALL_STATE(4164)] = 158276, + [SMALL_STATE(4165)] = 158350, + [SMALL_STATE(4166)] = 158410, + [SMALL_STATE(4167)] = 158484, + [SMALL_STATE(4168)] = 158558, + [SMALL_STATE(4169)] = 158622, + [SMALL_STATE(4170)] = 158696, + [SMALL_STATE(4171)] = 158756, + [SMALL_STATE(4172)] = 158830, + [SMALL_STATE(4173)] = 158904, + [SMALL_STATE(4174)] = 158978, + [SMALL_STATE(4175)] = 159052, + [SMALL_STATE(4176)] = 159126, + [SMALL_STATE(4177)] = 159200, + [SMALL_STATE(4178)] = 159258, + [SMALL_STATE(4179)] = 159312, + [SMALL_STATE(4180)] = 159386, + [SMALL_STATE(4181)] = 159460, + [SMALL_STATE(4182)] = 159534, + [SMALL_STATE(4183)] = 159608, + [SMALL_STATE(4184)] = 159682, + [SMALL_STATE(4185)] = 159756, + [SMALL_STATE(4186)] = 159813, + [SMALL_STATE(4187)] = 159872, + [SMALL_STATE(4188)] = 159935, + [SMALL_STATE(4189)] = 159994, + [SMALL_STATE(4190)] = 160057, + [SMALL_STATE(4191)] = 160114, + [SMALL_STATE(4192)] = 160177, + [SMALL_STATE(4193)] = 160234, + [SMALL_STATE(4194)] = 160295, + [SMALL_STATE(4195)] = 160346, + [SMALL_STATE(4196)] = 160405, + [SMALL_STATE(4197)] = 160466, + [SMALL_STATE(4198)] = 160503, + [SMALL_STATE(4199)] = 160544, + [SMALL_STATE(4200)] = 160607, + [SMALL_STATE(4201)] = 160656, + [SMALL_STATE(4202)] = 160717, + [SMALL_STATE(4203)] = 160776, + [SMALL_STATE(4204)] = 160835, + [SMALL_STATE(4205)] = 160894, + [SMALL_STATE(4206)] = 160957, + [SMALL_STATE(4207)] = 161014, + [SMALL_STATE(4208)] = 161073, + [SMALL_STATE(4209)] = 161136, + [SMALL_STATE(4210)] = 161195, + [SMALL_STATE(4211)] = 161258, + [SMALL_STATE(4212)] = 161319, + [SMALL_STATE(4213)] = 161358, + [SMALL_STATE(4214)] = 161421, + [SMALL_STATE(4215)] = 161481, + [SMALL_STATE(4216)] = 161547, + [SMALL_STATE(4217)] = 161613, + [SMALL_STATE(4218)] = 161679, + [SMALL_STATE(4219)] = 161739, + [SMALL_STATE(4220)] = 161779, + [SMALL_STATE(4221)] = 161839, + [SMALL_STATE(4222)] = 161875, + [SMALL_STATE(4223)] = 161941, + [SMALL_STATE(4224)] = 161999, + [SMALL_STATE(4225)] = 162061, + [SMALL_STATE(4226)] = 162127, + [SMALL_STATE(4227)] = 162193, + [SMALL_STATE(4228)] = 162249, + [SMALL_STATE(4229)] = 162315, + [SMALL_STATE(4230)] = 162381, + [SMALL_STATE(4231)] = 162447, + [SMALL_STATE(4232)] = 162513, + [SMALL_STATE(4233)] = 162579, + [SMALL_STATE(4234)] = 162645, + [SMALL_STATE(4235)] = 162701, + [SMALL_STATE(4236)] = 162759, + [SMALL_STATE(4237)] = 162819, + [SMALL_STATE(4238)] = 162855, + [SMALL_STATE(4239)] = 162921, + [SMALL_STATE(4240)] = 162987, + [SMALL_STATE(4241)] = 163023, + [SMALL_STATE(4242)] = 163089, + [SMALL_STATE(4243)] = 163155, + [SMALL_STATE(4244)] = 163211, + [SMALL_STATE(4245)] = 163269, + [SMALL_STATE(4246)] = 163305, + [SMALL_STATE(4247)] = 163361, + [SMALL_STATE(4248)] = 163423, + [SMALL_STATE(4249)] = 163459, + [SMALL_STATE(4250)] = 163517, + [SMALL_STATE(4251)] = 163567, + [SMALL_STATE(4252)] = 163633, + [SMALL_STATE(4253)] = 163669, + [SMALL_STATE(4254)] = 163735, + [SMALL_STATE(4255)] = 163801, + [SMALL_STATE(4256)] = 163867, + [SMALL_STATE(4257)] = 163930, + [SMALL_STATE(4258)] = 163985, + [SMALL_STATE(4259)] = 164026, + [SMALL_STATE(4260)] = 164089, + [SMALL_STATE(4261)] = 164152, + [SMALL_STATE(4262)] = 164187, + [SMALL_STATE(4263)] = 164228, + [SMALL_STATE(4264)] = 164291, + [SMALL_STATE(4265)] = 164354, + [SMALL_STATE(4266)] = 164409, + [SMALL_STATE(4267)] = 164444, + [SMALL_STATE(4268)] = 164485, + [SMALL_STATE(4269)] = 164528, + [SMALL_STATE(4270)] = 164563, + [SMALL_STATE(4271)] = 164626, + [SMALL_STATE(4272)] = 164689, + [SMALL_STATE(4273)] = 164752, + [SMALL_STATE(4274)] = 164807, + [SMALL_STATE(4275)] = 164870, + [SMALL_STATE(4276)] = 164933, + [SMALL_STATE(4277)] = 164988, + [SMALL_STATE(4278)] = 165043, + [SMALL_STATE(4279)] = 165106, + [SMALL_STATE(4280)] = 165169, + [SMALL_STATE(4281)] = 165206, + [SMALL_STATE(4282)] = 165241, + [SMALL_STATE(4283)] = 165304, + [SMALL_STATE(4284)] = 165367, + [SMALL_STATE(4285)] = 165422, + [SMALL_STATE(4286)] = 165483, + [SMALL_STATE(4287)] = 165518, + [SMALL_STATE(4288)] = 165557, + [SMALL_STATE(4289)] = 165612, + [SMALL_STATE(4290)] = 165667, + [SMALL_STATE(4291)] = 165730, + [SMALL_STATE(4292)] = 165793, + [SMALL_STATE(4293)] = 165854, + [SMALL_STATE(4294)] = 165917, + [SMALL_STATE(4295)] = 165958, + [SMALL_STATE(4296)] = 166013, + [SMALL_STATE(4297)] = 166054, + [SMALL_STATE(4298)] = 166089, + [SMALL_STATE(4299)] = 166152, + [SMALL_STATE(4300)] = 166215, + [SMALL_STATE(4301)] = 166270, + [SMALL_STATE(4302)] = 166333, + [SMALL_STATE(4303)] = 166388, + [SMALL_STATE(4304)] = 166443, + [SMALL_STATE(4305)] = 166506, + [SMALL_STATE(4306)] = 166549, + [SMALL_STATE(4307)] = 166604, + [SMALL_STATE(4308)] = 166667, + [SMALL_STATE(4309)] = 166730, + [SMALL_STATE(4310)] = 166785, + [SMALL_STATE(4311)] = 166848, + [SMALL_STATE(4312)] = 166911, + [SMALL_STATE(4313)] = 166946, + [SMALL_STATE(4314)] = 166986, + [SMALL_STATE(4315)] = 167040, + [SMALL_STATE(4316)] = 167086, + [SMALL_STATE(4317)] = 167132, + [SMALL_STATE(4318)] = 167186, + [SMALL_STATE(4319)] = 167242, + [SMALL_STATE(4320)] = 167296, + [SMALL_STATE(4321)] = 167342, + [SMALL_STATE(4322)] = 167396, + [SMALL_STATE(4323)] = 167450, + [SMALL_STATE(4324)] = 167504, + [SMALL_STATE(4325)] = 167560, + [SMALL_STATE(4326)] = 167614, + [SMALL_STATE(4327)] = 167670, + [SMALL_STATE(4328)] = 167724, + [SMALL_STATE(4329)] = 167778, + [SMALL_STATE(4330)] = 167834, + [SMALL_STATE(4331)] = 167880, + [SMALL_STATE(4332)] = 167936, + [SMALL_STATE(4333)] = 167992, + [SMALL_STATE(4334)] = 168038, + [SMALL_STATE(4335)] = 168084, + [SMALL_STATE(4336)] = 168138, + [SMALL_STATE(4337)] = 168192, + [SMALL_STATE(4338)] = 168246, + [SMALL_STATE(4339)] = 168292, + [SMALL_STATE(4340)] = 168346, + [SMALL_STATE(4341)] = 168392, + [SMALL_STATE(4342)] = 168438, + [SMALL_STATE(4343)] = 168492, + [SMALL_STATE(4344)] = 168546, + [SMALL_STATE(4345)] = 168586, + [SMALL_STATE(4346)] = 168640, + [SMALL_STATE(4347)] = 168694, + [SMALL_STATE(4348)] = 168748, + [SMALL_STATE(4349)] = 168802, + [SMALL_STATE(4350)] = 168858, + [SMALL_STATE(4351)] = 168894, + [SMALL_STATE(4352)] = 168948, + [SMALL_STATE(4353)] = 169002, + [SMALL_STATE(4354)] = 169056, + [SMALL_STATE(4355)] = 169110, + [SMALL_STATE(4356)] = 169164, + [SMALL_STATE(4357)] = 169220, + [SMALL_STATE(4358)] = 169273, + [SMALL_STATE(4359)] = 169326, + [SMALL_STATE(4360)] = 169359, + [SMALL_STATE(4361)] = 169392, + [SMALL_STATE(4362)] = 169425, + [SMALL_STATE(4363)] = 169480, + [SMALL_STATE(4364)] = 169535, + [SMALL_STATE(4365)] = 169588, + [SMALL_STATE(4366)] = 169621, + [SMALL_STATE(4367)] = 169676, + [SMALL_STATE(4368)] = 169709, + [SMALL_STATE(4369)] = 169742, + [SMALL_STATE(4370)] = 169775, + [SMALL_STATE(4371)] = 169812, + [SMALL_STATE(4372)] = 169851, + [SMALL_STATE(4373)] = 169906, + [SMALL_STATE(4374)] = 169959, + [SMALL_STATE(4375)] = 170000, + [SMALL_STATE(4376)] = 170033, + [SMALL_STATE(4377)] = 170066, + [SMALL_STATE(4378)] = 170101, + [SMALL_STATE(4379)] = 170136, + [SMALL_STATE(4380)] = 170175, + [SMALL_STATE(4381)] = 170210, + [SMALL_STATE(4382)] = 170251, + [SMALL_STATE(4383)] = 170283, + [SMALL_STATE(4384)] = 170315, + [SMALL_STATE(4385)] = 170347, + [SMALL_STATE(4386)] = 170379, + [SMALL_STATE(4387)] = 170415, + [SMALL_STATE(4388)] = 170467, + [SMALL_STATE(4389)] = 170505, + [SMALL_STATE(4390)] = 170543, + [SMALL_STATE(4391)] = 170575, + [SMALL_STATE(4392)] = 170607, + [SMALL_STATE(4393)] = 170659, + [SMALL_STATE(4394)] = 170711, + [SMALL_STATE(4395)] = 170743, + [SMALL_STATE(4396)] = 170795, + [SMALL_STATE(4397)] = 170847, + [SMALL_STATE(4398)] = 170881, + [SMALL_STATE(4399)] = 170913, + [SMALL_STATE(4400)] = 170945, + [SMALL_STATE(4401)] = 170997, + [SMALL_STATE(4402)] = 171029, + [SMALL_STATE(4403)] = 171061, + [SMALL_STATE(4404)] = 171113, + [SMALL_STATE(4405)] = 171145, + [SMALL_STATE(4406)] = 171197, + [SMALL_STATE(4407)] = 171230, + [SMALL_STATE(4408)] = 171267, + [SMALL_STATE(4409)] = 171304, + [SMALL_STATE(4410)] = 171343, + [SMALL_STATE(4411)] = 171382, + [SMALL_STATE(4412)] = 171449, + [SMALL_STATE(4413)] = 171506, + [SMALL_STATE(4414)] = 171543, + [SMALL_STATE(4415)] = 171602, + [SMALL_STATE(4416)] = 171659, + [SMALL_STATE(4417)] = 171716, + [SMALL_STATE(4418)] = 171749, + [SMALL_STATE(4419)] = 171806, + [SMALL_STATE(4420)] = 171863, + [SMALL_STATE(4421)] = 171902, + [SMALL_STATE(4422)] = 171939, + [SMALL_STATE(4423)] = 171996, + [SMALL_STATE(4424)] = 172033, + [SMALL_STATE(4425)] = 172072, + [SMALL_STATE(4426)] = 172131, + [SMALL_STATE(4427)] = 172190, + [SMALL_STATE(4428)] = 172226, + [SMALL_STATE(4429)] = 172260, + [SMALL_STATE(4430)] = 172296, + [SMALL_STATE(4431)] = 172332, + [SMALL_STATE(4432)] = 172367, + [SMALL_STATE(4433)] = 172410, + [SMALL_STATE(4434)] = 172453, + [SMALL_STATE(4435)] = 172484, + [SMALL_STATE(4436)] = 172517, + [SMALL_STATE(4437)] = 172560, + [SMALL_STATE(4438)] = 172615, + [SMALL_STATE(4439)] = 172650, + [SMALL_STATE(4440)] = 172693, + [SMALL_STATE(4441)] = 172726, + [SMALL_STATE(4442)] = 172781, + [SMALL_STATE(4443)] = 172816, + [SMALL_STATE(4444)] = 172849, + [SMALL_STATE(4445)] = 172882, + [SMALL_STATE(4446)] = 172915, + [SMALL_STATE(4447)] = 172958, + [SMALL_STATE(4448)] = 172991, + [SMALL_STATE(4449)] = 173022, + [SMALL_STATE(4450)] = 173053, + [SMALL_STATE(4451)] = 173101, + [SMALL_STATE(4452)] = 173149, + [SMALL_STATE(4453)] = 173177, + [SMALL_STATE(4454)] = 173225, + [SMALL_STATE(4455)] = 173253, + [SMALL_STATE(4456)] = 173281, + [SMALL_STATE(4457)] = 173329, + [SMALL_STATE(4458)] = 173377, + [SMALL_STATE(4459)] = 173405, + [SMALL_STATE(4460)] = 173433, + [SMALL_STATE(4461)] = 173481, + [SMALL_STATE(4462)] = 173521, + [SMALL_STATE(4463)] = 173569, + [SMALL_STATE(4464)] = 173597, + [SMALL_STATE(4465)] = 173625, + [SMALL_STATE(4466)] = 173653, + [SMALL_STATE(4467)] = 173681, + [SMALL_STATE(4468)] = 173709, + [SMALL_STATE(4469)] = 173737, + [SMALL_STATE(4470)] = 173765, + [SMALL_STATE(4471)] = 173793, + [SMALL_STATE(4472)] = 173833, + [SMALL_STATE(4473)] = 173861, + [SMALL_STATE(4474)] = 173889, + [SMALL_STATE(4475)] = 173917, + [SMALL_STATE(4476)] = 173945, + [SMALL_STATE(4477)] = 173973, + [SMALL_STATE(4478)] = 174021, + [SMALL_STATE(4479)] = 174069, + [SMALL_STATE(4480)] = 174109, + [SMALL_STATE(4481)] = 174149, + [SMALL_STATE(4482)] = 174177, + [SMALL_STATE(4483)] = 174225, + [SMALL_STATE(4484)] = 174273, + [SMALL_STATE(4485)] = 174313, + [SMALL_STATE(4486)] = 174353, + [SMALL_STATE(4487)] = 174393, + [SMALL_STATE(4488)] = 174421, + [SMALL_STATE(4489)] = 174449, + [SMALL_STATE(4490)] = 174477, + [SMALL_STATE(4491)] = 174505, + [SMALL_STATE(4492)] = 174533, + [SMALL_STATE(4493)] = 174573, + [SMALL_STATE(4494)] = 174621, + [SMALL_STATE(4495)] = 174649, + [SMALL_STATE(4496)] = 174677, + [SMALL_STATE(4497)] = 174705, + [SMALL_STATE(4498)] = 174733, + [SMALL_STATE(4499)] = 174761, + [SMALL_STATE(4500)] = 174809, + [SMALL_STATE(4501)] = 174837, + [SMALL_STATE(4502)] = 174877, + [SMALL_STATE(4503)] = 174905, + [SMALL_STATE(4504)] = 174945, + [SMALL_STATE(4505)] = 174973, + [SMALL_STATE(4506)] = 175021, + [SMALL_STATE(4507)] = 175049, + [SMALL_STATE(4508)] = 175077, + [SMALL_STATE(4509)] = 175105, + [SMALL_STATE(4510)] = 175133, + [SMALL_STATE(4511)] = 175161, + [SMALL_STATE(4512)] = 175189, + [SMALL_STATE(4513)] = 175237, + [SMALL_STATE(4514)] = 175285, + [SMALL_STATE(4515)] = 175315, + [SMALL_STATE(4516)] = 175343, + [SMALL_STATE(4517)] = 175377, + [SMALL_STATE(4518)] = 175411, + [SMALL_STATE(4519)] = 175459, + [SMALL_STATE(4520)] = 175487, + [SMALL_STATE(4521)] = 175515, + [SMALL_STATE(4522)] = 175543, + [SMALL_STATE(4523)] = 175571, + [SMALL_STATE(4524)] = 175599, + [SMALL_STATE(4525)] = 175639, + [SMALL_STATE(4526)] = 175687, + [SMALL_STATE(4527)] = 175715, + [SMALL_STATE(4528)] = 175743, + [SMALL_STATE(4529)] = 175771, + [SMALL_STATE(4530)] = 175799, + [SMALL_STATE(4531)] = 175827, + [SMALL_STATE(4532)] = 175855, + [SMALL_STATE(4533)] = 175895, + [SMALL_STATE(4534)] = 175923, + [SMALL_STATE(4535)] = 175963, + [SMALL_STATE(4536)] = 175997, + [SMALL_STATE(4537)] = 176033, + [SMALL_STATE(4538)] = 176061, + [SMALL_STATE(4539)] = 176109, + [SMALL_STATE(4540)] = 176137, + [SMALL_STATE(4541)] = 176165, + [SMALL_STATE(4542)] = 176207, + [SMALL_STATE(4543)] = 176255, + [SMALL_STATE(4544)] = 176303, + [SMALL_STATE(4545)] = 176347, + [SMALL_STATE(4546)] = 176393, + [SMALL_STATE(4547)] = 176421, + [SMALL_STATE(4548)] = 176461, + [SMALL_STATE(4549)] = 176489, + [SMALL_STATE(4550)] = 176535, + [SMALL_STATE(4551)] = 176563, + [SMALL_STATE(4552)] = 176595, + [SMALL_STATE(4553)] = 176623, + [SMALL_STATE(4554)] = 176651, + [SMALL_STATE(4555)] = 176679, + [SMALL_STATE(4556)] = 176707, + [SMALL_STATE(4557)] = 176755, + [SMALL_STATE(4558)] = 176803, + [SMALL_STATE(4559)] = 176831, + [SMALL_STATE(4560)] = 176879, + [SMALL_STATE(4561)] = 176927, + [SMALL_STATE(4562)] = 176975, + [SMALL_STATE(4563)] = 177003, + [SMALL_STATE(4564)] = 177031, + [SMALL_STATE(4565)] = 177059, + [SMALL_STATE(4566)] = 177099, + [SMALL_STATE(4567)] = 177147, + [SMALL_STATE(4568)] = 177195, + [SMALL_STATE(4569)] = 177223, + [SMALL_STATE(4570)] = 177251, + [SMALL_STATE(4571)] = 177279, + [SMALL_STATE(4572)] = 177319, + [SMALL_STATE(4573)] = 177361, + [SMALL_STATE(4574)] = 177409, + [SMALL_STATE(4575)] = 177437, + [SMALL_STATE(4576)] = 177477, + [SMALL_STATE(4577)] = 177505, + [SMALL_STATE(4578)] = 177553, + [SMALL_STATE(4579)] = 177593, + [SMALL_STATE(4580)] = 177621, + [SMALL_STATE(4581)] = 177661, + [SMALL_STATE(4582)] = 177689, + [SMALL_STATE(4583)] = 177721, + [SMALL_STATE(4584)] = 177769, + [SMALL_STATE(4585)] = 177817, + [SMALL_STATE(4586)] = 177849, + [SMALL_STATE(4587)] = 177889, + [SMALL_STATE(4588)] = 177929, + [SMALL_STATE(4589)] = 177979, + [SMALL_STATE(4590)] = 178027, + [SMALL_STATE(4591)] = 178075, + [SMALL_STATE(4592)] = 178115, + [SMALL_STATE(4593)] = 178163, + [SMALL_STATE(4594)] = 178191, + [SMALL_STATE(4595)] = 178239, + [SMALL_STATE(4596)] = 178287, + [SMALL_STATE(4597)] = 178335, + [SMALL_STATE(4598)] = 178375, + [SMALL_STATE(4599)] = 178423, + [SMALL_STATE(4600)] = 178463, + [SMALL_STATE(4601)] = 178503, + [SMALL_STATE(4602)] = 178543, + [SMALL_STATE(4603)] = 178583, + [SMALL_STATE(4604)] = 178623, + [SMALL_STATE(4605)] = 178671, + [SMALL_STATE(4606)] = 178711, + [SMALL_STATE(4607)] = 178751, + [SMALL_STATE(4608)] = 178791, + [SMALL_STATE(4609)] = 178831, + [SMALL_STATE(4610)] = 178871, + [SMALL_STATE(4611)] = 178911, + [SMALL_STATE(4612)] = 178951, + [SMALL_STATE(4613)] = 179008, + [SMALL_STATE(4614)] = 179065, + [SMALL_STATE(4615)] = 179122, + [SMALL_STATE(4616)] = 179181, + [SMALL_STATE(4617)] = 179216, + [SMALL_STATE(4618)] = 179273, + [SMALL_STATE(4619)] = 179318, + [SMALL_STATE(4620)] = 179357, + [SMALL_STATE(4621)] = 179402, + [SMALL_STATE(4622)] = 179459, + [SMALL_STATE(4623)] = 179500, + [SMALL_STATE(4624)] = 179557, + [SMALL_STATE(4625)] = 179614, + [SMALL_STATE(4626)] = 179671, + [SMALL_STATE(4627)] = 179728, + [SMALL_STATE(4628)] = 179785, + [SMALL_STATE(4629)] = 179812, + [SMALL_STATE(4630)] = 179843, + [SMALL_STATE(4631)] = 179902, + [SMALL_STATE(4632)] = 179959, + [SMALL_STATE(4633)] = 180000, + [SMALL_STATE(4634)] = 180043, + [SMALL_STATE(4635)] = 180088, + [SMALL_STATE(4636)] = 180115, + [SMALL_STATE(4637)] = 180152, + [SMALL_STATE(4638)] = 180209, + [SMALL_STATE(4639)] = 180236, + [SMALL_STATE(4640)] = 180263, + [SMALL_STATE(4641)] = 180320, + [SMALL_STATE(4642)] = 180369, + [SMALL_STATE(4643)] = 180426, + [SMALL_STATE(4644)] = 180483, + [SMALL_STATE(4645)] = 180540, + [SMALL_STATE(4646)] = 180567, + [SMALL_STATE(4647)] = 180594, + [SMALL_STATE(4648)] = 180651, + [SMALL_STATE(4649)] = 180708, + [SMALL_STATE(4650)] = 180735, + [SMALL_STATE(4651)] = 180780, + [SMALL_STATE(4652)] = 180811, + [SMALL_STATE(4653)] = 180868, + [SMALL_STATE(4654)] = 180925, + [SMALL_STATE(4655)] = 180984, + [SMALL_STATE(4656)] = 181013, + [SMALL_STATE(4657)] = 181040, + [SMALL_STATE(4658)] = 181097, + [SMALL_STATE(4659)] = 181154, + [SMALL_STATE(4660)] = 181211, + [SMALL_STATE(4661)] = 181256, + [SMALL_STATE(4662)] = 181313, + [SMALL_STATE(4663)] = 181370, + [SMALL_STATE(4664)] = 181427, + [SMALL_STATE(4665)] = 181454, + [SMALL_STATE(4666)] = 181511, + [SMALL_STATE(4667)] = 181568, + [SMALL_STATE(4668)] = 181613, + [SMALL_STATE(4669)] = 181670, + [SMALL_STATE(4670)] = 181715, + [SMALL_STATE(4671)] = 181772, + [SMALL_STATE(4672)] = 181817, + [SMALL_STATE(4673)] = 181874, + [SMALL_STATE(4674)] = 181931, + [SMALL_STATE(4675)] = 181988, + [SMALL_STATE(4676)] = 182045, + [SMALL_STATE(4677)] = 182102, + [SMALL_STATE(4678)] = 182159, + [SMALL_STATE(4679)] = 182216, + [SMALL_STATE(4680)] = 182273, + [SMALL_STATE(4681)] = 182330, + [SMALL_STATE(4682)] = 182387, + [SMALL_STATE(4683)] = 182444, + [SMALL_STATE(4684)] = 182501, + [SMALL_STATE(4685)] = 182558, + [SMALL_STATE(4686)] = 182591, + [SMALL_STATE(4687)] = 182640, + [SMALL_STATE(4688)] = 182697, + [SMALL_STATE(4689)] = 182754, + [SMALL_STATE(4690)] = 182811, + [SMALL_STATE(4691)] = 182838, + [SMALL_STATE(4692)] = 182895, + [SMALL_STATE(4693)] = 182940, + [SMALL_STATE(4694)] = 182997, + [SMALL_STATE(4695)] = 183054, + [SMALL_STATE(4696)] = 183111, + [SMALL_STATE(4697)] = 183168, + [SMALL_STATE(4698)] = 183225, + [SMALL_STATE(4699)] = 183270, + [SMALL_STATE(4700)] = 183327, + [SMALL_STATE(4701)] = 183384, + [SMALL_STATE(4702)] = 183441, + [SMALL_STATE(4703)] = 183498, + [SMALL_STATE(4704)] = 183555, + [SMALL_STATE(4705)] = 183595, + [SMALL_STATE(4706)] = 183636, + [SMALL_STATE(4707)] = 183687, + [SMALL_STATE(4708)] = 183738, + [SMALL_STATE(4709)] = 183789, + [SMALL_STATE(4710)] = 183828, + [SMALL_STATE(4711)] = 183879, + [SMALL_STATE(4712)] = 183930, + [SMALL_STATE(4713)] = 183981, + [SMALL_STATE(4714)] = 184022, + [SMALL_STATE(4715)] = 184073, + [SMALL_STATE(4716)] = 184124, + [SMALL_STATE(4717)] = 184165, + [SMALL_STATE(4718)] = 184216, + [SMALL_STATE(4719)] = 184267, + [SMALL_STATE(4720)] = 184318, + [SMALL_STATE(4721)] = 184369, + [SMALL_STATE(4722)] = 184420, + [SMALL_STATE(4723)] = 184471, + [SMALL_STATE(4724)] = 184522, + [SMALL_STATE(4725)] = 184573, + [SMALL_STATE(4726)] = 184624, + [SMALL_STATE(4727)] = 184675, + [SMALL_STATE(4728)] = 184726, + [SMALL_STATE(4729)] = 184777, + [SMALL_STATE(4730)] = 184828, + [SMALL_STATE(4731)] = 184879, + [SMALL_STATE(4732)] = 184930, + [SMALL_STATE(4733)] = 184981, + [SMALL_STATE(4734)] = 185032, + [SMALL_STATE(4735)] = 185083, + [SMALL_STATE(4736)] = 185134, + [SMALL_STATE(4737)] = 185185, + [SMALL_STATE(4738)] = 185226, + [SMALL_STATE(4739)] = 185277, + [SMALL_STATE(4740)] = 185328, + [SMALL_STATE(4741)] = 185379, + [SMALL_STATE(4742)] = 185430, + [SMALL_STATE(4743)] = 185481, + [SMALL_STATE(4744)] = 185532, + [SMALL_STATE(4745)] = 185583, + [SMALL_STATE(4746)] = 185634, + [SMALL_STATE(4747)] = 185685, + [SMALL_STATE(4748)] = 185736, + [SMALL_STATE(4749)] = 185765, + [SMALL_STATE(4750)] = 185816, + [SMALL_STATE(4751)] = 185867, + [SMALL_STATE(4752)] = 185918, + [SMALL_STATE(4753)] = 185969, + [SMALL_STATE(4754)] = 186020, + [SMALL_STATE(4755)] = 186071, + [SMALL_STATE(4756)] = 186122, + [SMALL_STATE(4757)] = 186173, + [SMALL_STATE(4758)] = 186224, + [SMALL_STATE(4759)] = 186275, + [SMALL_STATE(4760)] = 186321, + [SMALL_STATE(4761)] = 186367, + [SMALL_STATE(4762)] = 186413, + [SMALL_STATE(4763)] = 186459, + [SMALL_STATE(4764)] = 186497, + [SMALL_STATE(4765)] = 186543, + [SMALL_STATE(4766)] = 186589, + [SMALL_STATE(4767)] = 186635, + [SMALL_STATE(4768)] = 186681, + [SMALL_STATE(4769)] = 186729, + [SMALL_STATE(4770)] = 186767, + [SMALL_STATE(4771)] = 186805, + [SMALL_STATE(4772)] = 186851, + [SMALL_STATE(4773)] = 186899, + [SMALL_STATE(4774)] = 186945, + [SMALL_STATE(4775)] = 186993, + [SMALL_STATE(4776)] = 187045, + [SMALL_STATE(4777)] = 187091, + [SMALL_STATE(4778)] = 187139, + [SMALL_STATE(4779)] = 187185, + [SMALL_STATE(4780)] = 187233, + [SMALL_STATE(4781)] = 187285, + [SMALL_STATE(4782)] = 187333, + [SMALL_STATE(4783)] = 187371, + [SMALL_STATE(4784)] = 187419, + [SMALL_STATE(4785)] = 187465, + [SMALL_STATE(4786)] = 187511, + [SMALL_STATE(4787)] = 187557, + [SMALL_STATE(4788)] = 187603, + [SMALL_STATE(4789)] = 187649, + [SMALL_STATE(4790)] = 187695, + [SMALL_STATE(4791)] = 187741, + [SMALL_STATE(4792)] = 187787, + [SMALL_STATE(4793)] = 187839, + [SMALL_STATE(4794)] = 187884, + [SMALL_STATE(4795)] = 187929, + [SMALL_STATE(4796)] = 187974, + [SMALL_STATE(4797)] = 188019, + [SMALL_STATE(4798)] = 188064, + [SMALL_STATE(4799)] = 188109, + [SMALL_STATE(4800)] = 188154, + [SMALL_STATE(4801)] = 188199, + [SMALL_STATE(4802)] = 188244, + [SMALL_STATE(4803)] = 188289, + [SMALL_STATE(4804)] = 188334, + [SMALL_STATE(4805)] = 188381, + [SMALL_STATE(4806)] = 188426, + [SMALL_STATE(4807)] = 188471, + [SMALL_STATE(4808)] = 188516, + [SMALL_STATE(4809)] = 188561, + [SMALL_STATE(4810)] = 188606, + [SMALL_STATE(4811)] = 188651, + [SMALL_STATE(4812)] = 188696, + [SMALL_STATE(4813)] = 188741, + [SMALL_STATE(4814)] = 188786, + [SMALL_STATE(4815)] = 188831, + [SMALL_STATE(4816)] = 188876, + [SMALL_STATE(4817)] = 188921, + [SMALL_STATE(4818)] = 188966, + [SMALL_STATE(4819)] = 189011, + [SMALL_STATE(4820)] = 189056, + [SMALL_STATE(4821)] = 189101, + [SMALL_STATE(4822)] = 189146, + [SMALL_STATE(4823)] = 189191, + [SMALL_STATE(4824)] = 189236, + [SMALL_STATE(4825)] = 189281, + [SMALL_STATE(4826)] = 189326, + [SMALL_STATE(4827)] = 189371, + [SMALL_STATE(4828)] = 189416, + [SMALL_STATE(4829)] = 189461, + [SMALL_STATE(4830)] = 189506, + [SMALL_STATE(4831)] = 189551, + [SMALL_STATE(4832)] = 189596, + [SMALL_STATE(4833)] = 189641, + [SMALL_STATE(4834)] = 189686, + [SMALL_STATE(4835)] = 189731, + [SMALL_STATE(4836)] = 189776, + [SMALL_STATE(4837)] = 189821, + [SMALL_STATE(4838)] = 189866, + [SMALL_STATE(4839)] = 189911, + [SMALL_STATE(4840)] = 189956, + [SMALL_STATE(4841)] = 190001, + [SMALL_STATE(4842)] = 190046, + [SMALL_STATE(4843)] = 190091, + [SMALL_STATE(4844)] = 190136, + [SMALL_STATE(4845)] = 190181, + [SMALL_STATE(4846)] = 190226, + [SMALL_STATE(4847)] = 190271, + [SMALL_STATE(4848)] = 190308, + [SMALL_STATE(4849)] = 190353, + [SMALL_STATE(4850)] = 190398, + [SMALL_STATE(4851)] = 190443, + [SMALL_STATE(4852)] = 190488, + [SMALL_STATE(4853)] = 190533, + [SMALL_STATE(4854)] = 190578, + [SMALL_STATE(4855)] = 190623, + [SMALL_STATE(4856)] = 190668, + [SMALL_STATE(4857)] = 190713, + [SMALL_STATE(4858)] = 190758, + [SMALL_STATE(4859)] = 190803, + [SMALL_STATE(4860)] = 190848, + [SMALL_STATE(4861)] = 190893, + [SMALL_STATE(4862)] = 190938, + [SMALL_STATE(4863)] = 190983, + [SMALL_STATE(4864)] = 191028, + [SMALL_STATE(4865)] = 191073, + [SMALL_STATE(4866)] = 191118, + [SMALL_STATE(4867)] = 191163, + [SMALL_STATE(4868)] = 191208, + [SMALL_STATE(4869)] = 191253, + [SMALL_STATE(4870)] = 191298, + [SMALL_STATE(4871)] = 191343, + [SMALL_STATE(4872)] = 191388, + [SMALL_STATE(4873)] = 191433, + [SMALL_STATE(4874)] = 191478, + [SMALL_STATE(4875)] = 191523, + [SMALL_STATE(4876)] = 191568, + [SMALL_STATE(4877)] = 191613, + [SMALL_STATE(4878)] = 191658, + [SMALL_STATE(4879)] = 191703, + [SMALL_STATE(4880)] = 191748, + [SMALL_STATE(4881)] = 191793, + [SMALL_STATE(4882)] = 191838, + [SMALL_STATE(4883)] = 191883, + [SMALL_STATE(4884)] = 191928, + [SMALL_STATE(4885)] = 191973, + [SMALL_STATE(4886)] = 192018, + [SMALL_STATE(4887)] = 192063, + [SMALL_STATE(4888)] = 192108, + [SMALL_STATE(4889)] = 192153, + [SMALL_STATE(4890)] = 192198, + [SMALL_STATE(4891)] = 192243, + [SMALL_STATE(4892)] = 192289, + [SMALL_STATE(4893)] = 192327, + [SMALL_STATE(4894)] = 192365, + [SMALL_STATE(4895)] = 192405, + [SMALL_STATE(4896)] = 192433, + [SMALL_STATE(4897)] = 192471, + [SMALL_STATE(4898)] = 192511, + [SMALL_STATE(4899)] = 192549, + [SMALL_STATE(4900)] = 192595, + [SMALL_STATE(4901)] = 192633, + [SMALL_STATE(4902)] = 192675, + [SMALL_STATE(4903)] = 192717, + [SMALL_STATE(4904)] = 192757, + [SMALL_STATE(4905)] = 192803, + [SMALL_STATE(4906)] = 192841, + [SMALL_STATE(4907)] = 192879, + [SMALL_STATE(4908)] = 192925, + [SMALL_STATE(4909)] = 192953, + [SMALL_STATE(4910)] = 192995, + [SMALL_STATE(4911)] = 193041, + [SMALL_STATE(4912)] = 193079, + [SMALL_STATE(4913)] = 193119, + [SMALL_STATE(4914)] = 193157, + [SMALL_STATE(4915)] = 193195, + [SMALL_STATE(4916)] = 193237, + [SMALL_STATE(4917)] = 193275, + [SMALL_STATE(4918)] = 193315, + [SMALL_STATE(4919)] = 193353, + [SMALL_STATE(4920)] = 193399, + [SMALL_STATE(4921)] = 193439, + [SMALL_STATE(4922)] = 193479, + [SMALL_STATE(4923)] = 193517, + [SMALL_STATE(4924)] = 193555, + [SMALL_STATE(4925)] = 193601, + [SMALL_STATE(4926)] = 193637, + [SMALL_STATE(4927)] = 193677, + [SMALL_STATE(4928)] = 193717, + [SMALL_STATE(4929)] = 193763, + [SMALL_STATE(4930)] = 193801, + [SMALL_STATE(4931)] = 193839, + [SMALL_STATE(4932)] = 193879, + [SMALL_STATE(4933)] = 193925, + [SMALL_STATE(4934)] = 193967, + [SMALL_STATE(4935)] = 194005, + [SMALL_STATE(4936)] = 194051, + [SMALL_STATE(4937)] = 194093, + [SMALL_STATE(4938)] = 194139, + [SMALL_STATE(4939)] = 194185, + [SMALL_STATE(4940)] = 194231, + [SMALL_STATE(4941)] = 194269, + [SMALL_STATE(4942)] = 194310, + [SMALL_STATE(4943)] = 194343, + [SMALL_STATE(4944)] = 194366, + [SMALL_STATE(4945)] = 194399, + [SMALL_STATE(4946)] = 194436, + [SMALL_STATE(4947)] = 194477, + [SMALL_STATE(4948)] = 194510, + [SMALL_STATE(4949)] = 194547, + [SMALL_STATE(4950)] = 194580, + [SMALL_STATE(4951)] = 194617, + [SMALL_STATE(4952)] = 194654, + [SMALL_STATE(4953)] = 194687, + [SMALL_STATE(4954)] = 194726, + [SMALL_STATE(4955)] = 194765, + [SMALL_STATE(4956)] = 194798, + [SMALL_STATE(4957)] = 194835, + [SMALL_STATE(4958)] = 194874, + [SMALL_STATE(4959)] = 194907, + [SMALL_STATE(4960)] = 194940, + [SMALL_STATE(4961)] = 194977, + [SMALL_STATE(4962)] = 195014, + [SMALL_STATE(4963)] = 195047, + [SMALL_STATE(4964)] = 195072, + [SMALL_STATE(4965)] = 195109, + [SMALL_STATE(4966)] = 195146, + [SMALL_STATE(4967)] = 195183, + [SMALL_STATE(4968)] = 195216, + [SMALL_STATE(4969)] = 195257, + [SMALL_STATE(4970)] = 195290, + [SMALL_STATE(4971)] = 195323, + [SMALL_STATE(4972)] = 195356, + [SMALL_STATE(4973)] = 195395, + [SMALL_STATE(4974)] = 195436, + [SMALL_STATE(4975)] = 195469, + [SMALL_STATE(4976)] = 195502, + [SMALL_STATE(4977)] = 195535, + [SMALL_STATE(4978)] = 195572, + [SMALL_STATE(4979)] = 195605, + [SMALL_STATE(4980)] = 195638, + [SMALL_STATE(4981)] = 195675, + [SMALL_STATE(4982)] = 195708, + [SMALL_STATE(4983)] = 195745, + [SMALL_STATE(4984)] = 195778, + [SMALL_STATE(4985)] = 195811, + [SMALL_STATE(4986)] = 195848, + [SMALL_STATE(4987)] = 195887, + [SMALL_STATE(4988)] = 195928, + [SMALL_STATE(4989)] = 195961, + [SMALL_STATE(4990)] = 195981, + [SMALL_STATE(4991)] = 196001, + [SMALL_STATE(4992)] = 196025, + [SMALL_STATE(4993)] = 196061, + [SMALL_STATE(4994)] = 196097, + [SMALL_STATE(4995)] = 196133, + [SMALL_STATE(4996)] = 196169, + [SMALL_STATE(4997)] = 196205, + [SMALL_STATE(4998)] = 196225, + [SMALL_STATE(4999)] = 196261, + [SMALL_STATE(5000)] = 196289, + [SMALL_STATE(5001)] = 196313, + [SMALL_STATE(5002)] = 196349, + [SMALL_STATE(5003)] = 196377, + [SMALL_STATE(5004)] = 196399, + [SMALL_STATE(5005)] = 196423, + [SMALL_STATE(5006)] = 196445, + [SMALL_STATE(5007)] = 196481, + [SMALL_STATE(5008)] = 196513, + [SMALL_STATE(5009)] = 196549, + [SMALL_STATE(5010)] = 196569, + [SMALL_STATE(5011)] = 196589, + [SMALL_STATE(5012)] = 196613, + [SMALL_STATE(5013)] = 196647, + [SMALL_STATE(5014)] = 196667, + [SMALL_STATE(5015)] = 196687, + [SMALL_STATE(5016)] = 196721, + [SMALL_STATE(5017)] = 196749, + [SMALL_STATE(5018)] = 196769, + [SMALL_STATE(5019)] = 196803, + [SMALL_STATE(5020)] = 196827, + [SMALL_STATE(5021)] = 196851, + [SMALL_STATE(5022)] = 196879, + [SMALL_STATE(5023)] = 196899, + [SMALL_STATE(5024)] = 196919, + [SMALL_STATE(5025)] = 196939, + [SMALL_STATE(5026)] = 196973, + [SMALL_STATE(5027)] = 197009, + [SMALL_STATE(5028)] = 197031, + [SMALL_STATE(5029)] = 197067, + [SMALL_STATE(5030)] = 197087, + [SMALL_STATE(5031)] = 197107, + [SMALL_STATE(5032)] = 197127, + [SMALL_STATE(5033)] = 197151, + [SMALL_STATE(5034)] = 197175, + [SMALL_STATE(5035)] = 197199, + [SMALL_STATE(5036)] = 197223, + [SMALL_STATE(5037)] = 197259, + [SMALL_STATE(5038)] = 197279, + [SMALL_STATE(5039)] = 197299, + [SMALL_STATE(5040)] = 197335, + [SMALL_STATE(5041)] = 197369, + [SMALL_STATE(5042)] = 197403, + [SMALL_STATE(5043)] = 197439, + [SMALL_STATE(5044)] = 197475, + [SMALL_STATE(5045)] = 197495, + [SMALL_STATE(5046)] = 197515, + [SMALL_STATE(5047)] = 197535, + [SMALL_STATE(5048)] = 197563, + [SMALL_STATE(5049)] = 197599, + [SMALL_STATE(5050)] = 197635, + [SMALL_STATE(5051)] = 197655, + [SMALL_STATE(5052)] = 197675, + [SMALL_STATE(5053)] = 197711, + [SMALL_STATE(5054)] = 197747, + [SMALL_STATE(5055)] = 197767, + [SMALL_STATE(5056)] = 197791, + [SMALL_STATE(5057)] = 197811, + [SMALL_STATE(5058)] = 197831, + [SMALL_STATE(5059)] = 197851, + [SMALL_STATE(5060)] = 197871, + [SMALL_STATE(5061)] = 197905, + [SMALL_STATE(5062)] = 197929, + [SMALL_STATE(5063)] = 197949, + [SMALL_STATE(5064)] = 197969, + [SMALL_STATE(5065)] = 197989, + [SMALL_STATE(5066)] = 198009, + [SMALL_STATE(5067)] = 198029, + [SMALL_STATE(5068)] = 198049, + [SMALL_STATE(5069)] = 198083, + [SMALL_STATE(5070)] = 198119, + [SMALL_STATE(5071)] = 198139, + [SMALL_STATE(5072)] = 198173, + [SMALL_STATE(5073)] = 198209, + [SMALL_STATE(5074)] = 198229, + [SMALL_STATE(5075)] = 198248, + [SMALL_STATE(5076)] = 198271, + [SMALL_STATE(5077)] = 198294, + [SMALL_STATE(5078)] = 198313, + [SMALL_STATE(5079)] = 198340, + [SMALL_STATE(5080)] = 198367, + [SMALL_STATE(5081)] = 198386, + [SMALL_STATE(5082)] = 198403, + [SMALL_STATE(5083)] = 198426, + [SMALL_STATE(5084)] = 198449, + [SMALL_STATE(5085)] = 198468, + [SMALL_STATE(5086)] = 198495, + [SMALL_STATE(5087)] = 198518, + [SMALL_STATE(5088)] = 198541, + [SMALL_STATE(5089)] = 198570, + [SMALL_STATE(5090)] = 198593, + [SMALL_STATE(5091)] = 198612, + [SMALL_STATE(5092)] = 198631, + [SMALL_STATE(5093)] = 198648, + [SMALL_STATE(5094)] = 198667, + [SMALL_STATE(5095)] = 198690, + [SMALL_STATE(5096)] = 198709, + [SMALL_STATE(5097)] = 198726, + [SMALL_STATE(5098)] = 198743, + [SMALL_STATE(5099)] = 198762, + [SMALL_STATE(5100)] = 198785, + [SMALL_STATE(5101)] = 198804, + [SMALL_STATE(5102)] = 198821, + [SMALL_STATE(5103)] = 198838, + [SMALL_STATE(5104)] = 198857, + [SMALL_STATE(5105)] = 198880, + [SMALL_STATE(5106)] = 198907, + [SMALL_STATE(5107)] = 198924, + [SMALL_STATE(5108)] = 198951, + [SMALL_STATE(5109)] = 198968, + [SMALL_STATE(5110)] = 198991, + [SMALL_STATE(5111)] = 199010, + [SMALL_STATE(5112)] = 199027, + [SMALL_STATE(5113)] = 199046, + [SMALL_STATE(5114)] = 199069, + [SMALL_STATE(5115)] = 199096, + [SMALL_STATE(5116)] = 199115, + [SMALL_STATE(5117)] = 199142, + [SMALL_STATE(5118)] = 199165, + [SMALL_STATE(5119)] = 199192, + [SMALL_STATE(5120)] = 199209, + [SMALL_STATE(5121)] = 199228, + [SMALL_STATE(5122)] = 199251, + [SMALL_STATE(5123)] = 199282, + [SMALL_STATE(5124)] = 199299, + [SMALL_STATE(5125)] = 199322, + [SMALL_STATE(5126)] = 199341, + [SMALL_STATE(5127)] = 199364, + [SMALL_STATE(5128)] = 199381, + [SMALL_STATE(5129)] = 199412, + [SMALL_STATE(5130)] = 199435, + [SMALL_STATE(5131)] = 199458, + [SMALL_STATE(5132)] = 199477, + [SMALL_STATE(5133)] = 199500, + [SMALL_STATE(5134)] = 199517, + [SMALL_STATE(5135)] = 199536, + [SMALL_STATE(5136)] = 199555, + [SMALL_STATE(5137)] = 199578, + [SMALL_STATE(5138)] = 199601, + [SMALL_STATE(5139)] = 199618, + [SMALL_STATE(5140)] = 199637, + [SMALL_STATE(5141)] = 199664, + [SMALL_STATE(5142)] = 199681, + [SMALL_STATE(5143)] = 199708, + [SMALL_STATE(5144)] = 199737, + [SMALL_STATE(5145)] = 199756, + [SMALL_STATE(5146)] = 199773, + [SMALL_STATE(5147)] = 199800, + [SMALL_STATE(5148)] = 199817, + [SMALL_STATE(5149)] = 199839, + [SMALL_STATE(5150)] = 199871, + [SMALL_STATE(5151)] = 199893, + [SMALL_STATE(5152)] = 199919, + [SMALL_STATE(5153)] = 199945, + [SMALL_STATE(5154)] = 199977, + [SMALL_STATE(5155)] = 199999, + [SMALL_STATE(5156)] = 200021, + [SMALL_STATE(5157)] = 200047, + [SMALL_STATE(5158)] = 200079, + [SMALL_STATE(5159)] = 200101, + [SMALL_STATE(5160)] = 200133, + [SMALL_STATE(5161)] = 200165, + [SMALL_STATE(5162)] = 200197, + [SMALL_STATE(5163)] = 200219, + [SMALL_STATE(5164)] = 200239, + [SMALL_STATE(5165)] = 200257, + [SMALL_STATE(5166)] = 200289, + [SMALL_STATE(5167)] = 200321, + [SMALL_STATE(5168)] = 200347, + [SMALL_STATE(5169)] = 200379, + [SMALL_STATE(5170)] = 200411, + [SMALL_STATE(5171)] = 200429, + [SMALL_STATE(5172)] = 200461, + [SMALL_STATE(5173)] = 200479, + [SMALL_STATE(5174)] = 200501, + [SMALL_STATE(5175)] = 200533, + [SMALL_STATE(5176)] = 200565, + [SMALL_STATE(5177)] = 200583, + [SMALL_STATE(5178)] = 200615, + [SMALL_STATE(5179)] = 200641, + [SMALL_STATE(5180)] = 200659, + [SMALL_STATE(5181)] = 200691, + [SMALL_STATE(5182)] = 200717, + [SMALL_STATE(5183)] = 200749, + [SMALL_STATE(5184)] = 200767, + [SMALL_STATE(5185)] = 200799, + [SMALL_STATE(5186)] = 200817, + [SMALL_STATE(5187)] = 200849, + [SMALL_STATE(5188)] = 200867, + [SMALL_STATE(5189)] = 200899, + [SMALL_STATE(5190)] = 200931, + [SMALL_STATE(5191)] = 200963, + [SMALL_STATE(5192)] = 200995, + [SMALL_STATE(5193)] = 201027, + [SMALL_STATE(5194)] = 201059, + [SMALL_STATE(5195)] = 201091, + [SMALL_STATE(5196)] = 201109, + [SMALL_STATE(5197)] = 201141, + [SMALL_STATE(5198)] = 201167, + [SMALL_STATE(5199)] = 201185, + [SMALL_STATE(5200)] = 201217, + [SMALL_STATE(5201)] = 201239, + [SMALL_STATE(5202)] = 201261, + [SMALL_STATE(5203)] = 201293, + [SMALL_STATE(5204)] = 201314, + [SMALL_STATE(5205)] = 201343, + [SMALL_STATE(5206)] = 201364, + [SMALL_STATE(5207)] = 201393, + [SMALL_STATE(5208)] = 201414, + [SMALL_STATE(5209)] = 201435, + [SMALL_STATE(5210)] = 201456, + [SMALL_STATE(5211)] = 201475, + [SMALL_STATE(5212)] = 201490, + [SMALL_STATE(5213)] = 201511, + [SMALL_STATE(5214)] = 201532, + [SMALL_STATE(5215)] = 201553, + [SMALL_STATE(5216)] = 201574, + [SMALL_STATE(5217)] = 201595, + [SMALL_STATE(5218)] = 201616, + [SMALL_STATE(5219)] = 201631, + [SMALL_STATE(5220)] = 201652, + [SMALL_STATE(5221)] = 201681, + [SMALL_STATE(5222)] = 201710, + [SMALL_STATE(5223)] = 201725, + [SMALL_STATE(5224)] = 201746, + [SMALL_STATE(5225)] = 201761, + [SMALL_STATE(5226)] = 201776, + [SMALL_STATE(5227)] = 201791, + [SMALL_STATE(5228)] = 201806, + [SMALL_STATE(5229)] = 201821, + [SMALL_STATE(5230)] = 201848, + [SMALL_STATE(5231)] = 201873, + [SMALL_STATE(5232)] = 201898, + [SMALL_STATE(5233)] = 201927, + [SMALL_STATE(5234)] = 201948, + [SMALL_STATE(5235)] = 201963, + [SMALL_STATE(5236)] = 201978, + [SMALL_STATE(5237)] = 201999, + [SMALL_STATE(5238)] = 202014, + [SMALL_STATE(5239)] = 202043, + [SMALL_STATE(5240)] = 202064, + [SMALL_STATE(5241)] = 202089, + [SMALL_STATE(5242)] = 202118, + [SMALL_STATE(5243)] = 202139, + [SMALL_STATE(5244)] = 202154, + [SMALL_STATE(5245)] = 202175, + [SMALL_STATE(5246)] = 202204, + [SMALL_STATE(5247)] = 202225, + [SMALL_STATE(5248)] = 202254, + [SMALL_STATE(5249)] = 202283, + [SMALL_STATE(5250)] = 202312, + [SMALL_STATE(5251)] = 202327, + [SMALL_STATE(5252)] = 202342, + [SMALL_STATE(5253)] = 202371, + [SMALL_STATE(5254)] = 202390, + [SMALL_STATE(5255)] = 202405, + [SMALL_STATE(5256)] = 202426, + [SMALL_STATE(5257)] = 202441, + [SMALL_STATE(5258)] = 202458, + [SMALL_STATE(5259)] = 202487, + [SMALL_STATE(5260)] = 202516, + [SMALL_STATE(5261)] = 202545, + [SMALL_STATE(5262)] = 202572, + [SMALL_STATE(5263)] = 202599, + [SMALL_STATE(5264)] = 202616, + [SMALL_STATE(5265)] = 202641, + [SMALL_STATE(5266)] = 202662, + [SMALL_STATE(5267)] = 202681, + [SMALL_STATE(5268)] = 202710, + [SMALL_STATE(5269)] = 202727, + [SMALL_STATE(5270)] = 202742, + [SMALL_STATE(5271)] = 202771, + [SMALL_STATE(5272)] = 202794, + [SMALL_STATE(5273)] = 202815, + [SMALL_STATE(5274)] = 202832, + [SMALL_STATE(5275)] = 202849, + [SMALL_STATE(5276)] = 202876, + [SMALL_STATE(5277)] = 202893, + [SMALL_STATE(5278)] = 202922, + [SMALL_STATE(5279)] = 202943, + [SMALL_STATE(5280)] = 202964, + [SMALL_STATE(5281)] = 202985, + [SMALL_STATE(5282)] = 203014, + [SMALL_STATE(5283)] = 203031, + [SMALL_STATE(5284)] = 203060, + [SMALL_STATE(5285)] = 203077, + [SMALL_STATE(5286)] = 203100, + [SMALL_STATE(5287)] = 203117, + [SMALL_STATE(5288)] = 203137, + [SMALL_STATE(5289)] = 203153, + [SMALL_STATE(5290)] = 203171, + [SMALL_STATE(5291)] = 203197, + [SMALL_STATE(5292)] = 203217, + [SMALL_STATE(5293)] = 203237, + [SMALL_STATE(5294)] = 203255, + [SMALL_STATE(5295)] = 203283, + [SMALL_STATE(5296)] = 203309, + [SMALL_STATE(5297)] = 203329, + [SMALL_STATE(5298)] = 203349, + [SMALL_STATE(5299)] = 203367, + [SMALL_STATE(5300)] = 203387, + [SMALL_STATE(5301)] = 203411, + [SMALL_STATE(5302)] = 203429, + [SMALL_STATE(5303)] = 203453, + [SMALL_STATE(5304)] = 203477, + [SMALL_STATE(5305)] = 203501, + [SMALL_STATE(5306)] = 203525, + [SMALL_STATE(5307)] = 203551, + [SMALL_STATE(5308)] = 203571, + [SMALL_STATE(5309)] = 203593, + [SMALL_STATE(5310)] = 203613, + [SMALL_STATE(5311)] = 203639, + [SMALL_STATE(5312)] = 203663, + [SMALL_STATE(5313)] = 203687, + [SMALL_STATE(5314)] = 203711, + [SMALL_STATE(5315)] = 203729, + [SMALL_STATE(5316)] = 203747, + [SMALL_STATE(5317)] = 203769, + [SMALL_STATE(5318)] = 203787, + [SMALL_STATE(5319)] = 203813, + [SMALL_STATE(5320)] = 203839, + [SMALL_STATE(5321)] = 203859, + [SMALL_STATE(5322)] = 203887, + [SMALL_STATE(5323)] = 203907, + [SMALL_STATE(5324)] = 203933, + [SMALL_STATE(5325)] = 203959, + [SMALL_STATE(5326)] = 203977, + [SMALL_STATE(5327)] = 204001, + [SMALL_STATE(5328)] = 204021, + [SMALL_STATE(5329)] = 204041, + [SMALL_STATE(5330)] = 204061, + [SMALL_STATE(5331)] = 204081, + [SMALL_STATE(5332)] = 204101, + [SMALL_STATE(5333)] = 204127, + [SMALL_STATE(5334)] = 204153, + [SMALL_STATE(5335)] = 204177, + [SMALL_STATE(5336)] = 204205, + [SMALL_STATE(5337)] = 204229, + [SMALL_STATE(5338)] = 204247, + [SMALL_STATE(5339)] = 204266, + [SMALL_STATE(5340)] = 204289, + [SMALL_STATE(5341)] = 204314, + [SMALL_STATE(5342)] = 204333, + [SMALL_STATE(5343)] = 204356, + [SMALL_STATE(5344)] = 204375, + [SMALL_STATE(5345)] = 204400, + [SMALL_STATE(5346)] = 204419, + [SMALL_STATE(5347)] = 204442, + [SMALL_STATE(5348)] = 204461, + [SMALL_STATE(5349)] = 204476, + [SMALL_STATE(5350)] = 204495, + [SMALL_STATE(5351)] = 204518, + [SMALL_STATE(5352)] = 204537, + [SMALL_STATE(5353)] = 204562, + [SMALL_STATE(5354)] = 204587, + [SMALL_STATE(5355)] = 204612, + [SMALL_STATE(5356)] = 204631, + [SMALL_STATE(5357)] = 204650, + [SMALL_STATE(5358)] = 204669, + [SMALL_STATE(5359)] = 204688, + [SMALL_STATE(5360)] = 204711, + [SMALL_STATE(5361)] = 204734, + [SMALL_STATE(5362)] = 204757, + [SMALL_STATE(5363)] = 204776, + [SMALL_STATE(5364)] = 204795, + [SMALL_STATE(5365)] = 204810, + [SMALL_STATE(5366)] = 204833, + [SMALL_STATE(5367)] = 204856, + [SMALL_STATE(5368)] = 204879, + [SMALL_STATE(5369)] = 204902, + [SMALL_STATE(5370)] = 204925, + [SMALL_STATE(5371)] = 204942, + [SMALL_STATE(5372)] = 204961, + [SMALL_STATE(5373)] = 204980, + [SMALL_STATE(5374)] = 204995, + [SMALL_STATE(5375)] = 205020, + [SMALL_STATE(5376)] = 205043, + [SMALL_STATE(5377)] = 205062, + [SMALL_STATE(5378)] = 205081, + [SMALL_STATE(5379)] = 205100, + [SMALL_STATE(5380)] = 205119, + [SMALL_STATE(5381)] = 205138, + [SMALL_STATE(5382)] = 205161, + [SMALL_STATE(5383)] = 205176, + [SMALL_STATE(5384)] = 205201, + [SMALL_STATE(5385)] = 205224, + [SMALL_STATE(5386)] = 205247, + [SMALL_STATE(5387)] = 205272, + [SMALL_STATE(5388)] = 205297, + [SMALL_STATE(5389)] = 205320, + [SMALL_STATE(5390)] = 205343, + [SMALL_STATE(5391)] = 205366, + [SMALL_STATE(5392)] = 205389, + [SMALL_STATE(5393)] = 205412, + [SMALL_STATE(5394)] = 205435, + [SMALL_STATE(5395)] = 205460, + [SMALL_STATE(5396)] = 205479, + [SMALL_STATE(5397)] = 205498, + [SMALL_STATE(5398)] = 205523, + [SMALL_STATE(5399)] = 205546, + [SMALL_STATE(5400)] = 205561, + [SMALL_STATE(5401)] = 205584, + [SMALL_STATE(5402)] = 205603, + [SMALL_STATE(5403)] = 205618, + [SMALL_STATE(5404)] = 205641, + [SMALL_STATE(5405)] = 205664, + [SMALL_STATE(5406)] = 205683, + [SMALL_STATE(5407)] = 205706, + [SMALL_STATE(5408)] = 205725, + [SMALL_STATE(5409)] = 205748, + [SMALL_STATE(5410)] = 205771, + [SMALL_STATE(5411)] = 205794, + [SMALL_STATE(5412)] = 205817, + [SMALL_STATE(5413)] = 205842, + [SMALL_STATE(5414)] = 205861, + [SMALL_STATE(5415)] = 205880, + [SMALL_STATE(5416)] = 205905, + [SMALL_STATE(5417)] = 205930, + [SMALL_STATE(5418)] = 205945, + [SMALL_STATE(5419)] = 205964, + [SMALL_STATE(5420)] = 205983, + [SMALL_STATE(5421)] = 206002, + [SMALL_STATE(5422)] = 206021, + [SMALL_STATE(5423)] = 206040, + [SMALL_STATE(5424)] = 206059, + [SMALL_STATE(5425)] = 206078, + [SMALL_STATE(5426)] = 206103, + [SMALL_STATE(5427)] = 206122, + [SMALL_STATE(5428)] = 206145, + [SMALL_STATE(5429)] = 206168, + [SMALL_STATE(5430)] = 206187, + [SMALL_STATE(5431)] = 206206, + [SMALL_STATE(5432)] = 206229, + [SMALL_STATE(5433)] = 206252, + [SMALL_STATE(5434)] = 206271, + [SMALL_STATE(5435)] = 206288, + [SMALL_STATE(5436)] = 206311, + [SMALL_STATE(5437)] = 206334, + [SMALL_STATE(5438)] = 206357, + [SMALL_STATE(5439)] = 206380, + [SMALL_STATE(5440)] = 206405, + [SMALL_STATE(5441)] = 206420, + [SMALL_STATE(5442)] = 206445, + [SMALL_STATE(5443)] = 206462, + [SMALL_STATE(5444)] = 206481, + [SMALL_STATE(5445)] = 206500, + [SMALL_STATE(5446)] = 206517, + [SMALL_STATE(5447)] = 206534, + [SMALL_STATE(5448)] = 206551, + [SMALL_STATE(5449)] = 206576, + [SMALL_STATE(5450)] = 206590, + [SMALL_STATE(5451)] = 206604, + [SMALL_STATE(5452)] = 206622, + [SMALL_STATE(5453)] = 206640, + [SMALL_STATE(5454)] = 206658, + [SMALL_STATE(5455)] = 206676, + [SMALL_STATE(5456)] = 206694, + [SMALL_STATE(5457)] = 206714, + [SMALL_STATE(5458)] = 206732, + [SMALL_STATE(5459)] = 206752, + [SMALL_STATE(5460)] = 206772, + [SMALL_STATE(5461)] = 206790, + [SMALL_STATE(5462)] = 206810, + [SMALL_STATE(5463)] = 206826, + [SMALL_STATE(5464)] = 206846, + [SMALL_STATE(5465)] = 206864, + [SMALL_STATE(5466)] = 206882, + [SMALL_STATE(5467)] = 206902, + [SMALL_STATE(5468)] = 206920, + [SMALL_STATE(5469)] = 206938, + [SMALL_STATE(5470)] = 206956, + [SMALL_STATE(5471)] = 206976, + [SMALL_STATE(5472)] = 206996, + [SMALL_STATE(5473)] = 207014, + [SMALL_STATE(5474)] = 207034, + [SMALL_STATE(5475)] = 207054, + [SMALL_STATE(5476)] = 207074, + [SMALL_STATE(5477)] = 207094, + [SMALL_STATE(5478)] = 207114, + [SMALL_STATE(5479)] = 207132, + [SMALL_STATE(5480)] = 207146, + [SMALL_STATE(5481)] = 207160, + [SMALL_STATE(5482)] = 207180, + [SMALL_STATE(5483)] = 207198, + [SMALL_STATE(5484)] = 207216, + [SMALL_STATE(5485)] = 207230, + [SMALL_STATE(5486)] = 207248, + [SMALL_STATE(5487)] = 207266, + [SMALL_STATE(5488)] = 207284, + [SMALL_STATE(5489)] = 207298, + [SMALL_STATE(5490)] = 207318, + [SMALL_STATE(5491)] = 207336, + [SMALL_STATE(5492)] = 207354, + [SMALL_STATE(5493)] = 207372, + [SMALL_STATE(5494)] = 207386, + [SMALL_STATE(5495)] = 207404, + [SMALL_STATE(5496)] = 207422, + [SMALL_STATE(5497)] = 207436, + [SMALL_STATE(5498)] = 207455, + [SMALL_STATE(5499)] = 207474, + [SMALL_STATE(5500)] = 207491, + [SMALL_STATE(5501)] = 207508, + [SMALL_STATE(5502)] = 207527, + [SMALL_STATE(5503)] = 207546, + [SMALL_STATE(5504)] = 207563, + [SMALL_STATE(5505)] = 207576, + [SMALL_STATE(5506)] = 207593, + [SMALL_STATE(5507)] = 207610, + [SMALL_STATE(5508)] = 207627, + [SMALL_STATE(5509)] = 207644, + [SMALL_STATE(5510)] = 207661, + [SMALL_STATE(5511)] = 207680, + [SMALL_STATE(5512)] = 207697, + [SMALL_STATE(5513)] = 207716, + [SMALL_STATE(5514)] = 207729, + [SMALL_STATE(5515)] = 207746, + [SMALL_STATE(5516)] = 207765, + [SMALL_STATE(5517)] = 207782, + [SMALL_STATE(5518)] = 207799, + [SMALL_STATE(5519)] = 207814, + [SMALL_STATE(5520)] = 207831, + [SMALL_STATE(5521)] = 207848, + [SMALL_STATE(5522)] = 207861, + [SMALL_STATE(5523)] = 207876, + [SMALL_STATE(5524)] = 207892, + [SMALL_STATE(5525)] = 207908, + [SMALL_STATE(5526)] = 207924, + [SMALL_STATE(5527)] = 207940, + [SMALL_STATE(5528)] = 207956, + [SMALL_STATE(5529)] = 207970, + [SMALL_STATE(5530)] = 207986, + [SMALL_STATE(5531)] = 208002, + [SMALL_STATE(5532)] = 208018, + [SMALL_STATE(5533)] = 208034, + [SMALL_STATE(5534)] = 208050, + [SMALL_STATE(5535)] = 208066, + [SMALL_STATE(5536)] = 208082, + [SMALL_STATE(5537)] = 208098, + [SMALL_STATE(5538)] = 208114, + [SMALL_STATE(5539)] = 208130, + [SMALL_STATE(5540)] = 208146, + [SMALL_STATE(5541)] = 208162, + [SMALL_STATE(5542)] = 208178, + [SMALL_STATE(5543)] = 208194, + [SMALL_STATE(5544)] = 208210, + [SMALL_STATE(5545)] = 208226, + [SMALL_STATE(5546)] = 208242, + [SMALL_STATE(5547)] = 208258, + [SMALL_STATE(5548)] = 208274, + [SMALL_STATE(5549)] = 208290, + [SMALL_STATE(5550)] = 208306, + [SMALL_STATE(5551)] = 208322, + [SMALL_STATE(5552)] = 208338, + [SMALL_STATE(5553)] = 208354, + [SMALL_STATE(5554)] = 208370, + [SMALL_STATE(5555)] = 208386, + [SMALL_STATE(5556)] = 208402, + [SMALL_STATE(5557)] = 208418, + [SMALL_STATE(5558)] = 208434, + [SMALL_STATE(5559)] = 208450, + [SMALL_STATE(5560)] = 208466, + [SMALL_STATE(5561)] = 208482, + [SMALL_STATE(5562)] = 208498, + [SMALL_STATE(5563)] = 208512, + [SMALL_STATE(5564)] = 208528, + [SMALL_STATE(5565)] = 208544, + [SMALL_STATE(5566)] = 208558, + [SMALL_STATE(5567)] = 208574, + [SMALL_STATE(5568)] = 208590, + [SMALL_STATE(5569)] = 208604, + [SMALL_STATE(5570)] = 208620, + [SMALL_STATE(5571)] = 208636, + [SMALL_STATE(5572)] = 208652, + [SMALL_STATE(5573)] = 208668, + [SMALL_STATE(5574)] = 208680, + [SMALL_STATE(5575)] = 208696, + [SMALL_STATE(5576)] = 208712, + [SMALL_STATE(5577)] = 208728, + [SMALL_STATE(5578)] = 208744, + [SMALL_STATE(5579)] = 208760, + [SMALL_STATE(5580)] = 208776, + [SMALL_STATE(5581)] = 208792, + [SMALL_STATE(5582)] = 208808, + [SMALL_STATE(5583)] = 208824, + [SMALL_STATE(5584)] = 208840, + [SMALL_STATE(5585)] = 208856, + [SMALL_STATE(5586)] = 208872, + [SMALL_STATE(5587)] = 208888, + [SMALL_STATE(5588)] = 208904, + [SMALL_STATE(5589)] = 208920, + [SMALL_STATE(5590)] = 208936, + [SMALL_STATE(5591)] = 208952, + [SMALL_STATE(5592)] = 208968, + [SMALL_STATE(5593)] = 208982, + [SMALL_STATE(5594)] = 208998, + [SMALL_STATE(5595)] = 209014, + [SMALL_STATE(5596)] = 209030, + [SMALL_STATE(5597)] = 209046, + [SMALL_STATE(5598)] = 209060, + [SMALL_STATE(5599)] = 209076, + [SMALL_STATE(5600)] = 209090, + [SMALL_STATE(5601)] = 209106, + [SMALL_STATE(5602)] = 209122, + [SMALL_STATE(5603)] = 209136, + [SMALL_STATE(5604)] = 209152, + [SMALL_STATE(5605)] = 209168, + [SMALL_STATE(5606)] = 209184, + [SMALL_STATE(5607)] = 209200, + [SMALL_STATE(5608)] = 209216, + [SMALL_STATE(5609)] = 209232, + [SMALL_STATE(5610)] = 209248, + [SMALL_STATE(5611)] = 209264, + [SMALL_STATE(5612)] = 209280, + [SMALL_STATE(5613)] = 209296, + [SMALL_STATE(5614)] = 209312, + [SMALL_STATE(5615)] = 209328, + [SMALL_STATE(5616)] = 209344, + [SMALL_STATE(5617)] = 209360, + [SMALL_STATE(5618)] = 209376, + [SMALL_STATE(5619)] = 209392, + [SMALL_STATE(5620)] = 209408, + [SMALL_STATE(5621)] = 209424, + [SMALL_STATE(5622)] = 209440, + [SMALL_STATE(5623)] = 209456, + [SMALL_STATE(5624)] = 209472, + [SMALL_STATE(5625)] = 209488, + [SMALL_STATE(5626)] = 209504, + [SMALL_STATE(5627)] = 209520, + [SMALL_STATE(5628)] = 209536, + [SMALL_STATE(5629)] = 209552, + [SMALL_STATE(5630)] = 209568, + [SMALL_STATE(5631)] = 209582, + [SMALL_STATE(5632)] = 209596, + [SMALL_STATE(5633)] = 209612, + [SMALL_STATE(5634)] = 209628, + [SMALL_STATE(5635)] = 209644, + [SMALL_STATE(5636)] = 209660, + [SMALL_STATE(5637)] = 209676, + [SMALL_STATE(5638)] = 209692, + [SMALL_STATE(5639)] = 209706, + [SMALL_STATE(5640)] = 209716, + [SMALL_STATE(5641)] = 209732, + [SMALL_STATE(5642)] = 209748, + [SMALL_STATE(5643)] = 209764, + [SMALL_STATE(5644)] = 209780, + [SMALL_STATE(5645)] = 209794, + [SMALL_STATE(5646)] = 209810, + [SMALL_STATE(5647)] = 209824, + [SMALL_STATE(5648)] = 209840, + [SMALL_STATE(5649)] = 209856, + [SMALL_STATE(5650)] = 209872, + [SMALL_STATE(5651)] = 209888, + [SMALL_STATE(5652)] = 209904, + [SMALL_STATE(5653)] = 209918, + [SMALL_STATE(5654)] = 209934, + [SMALL_STATE(5655)] = 209944, + [SMALL_STATE(5656)] = 209960, + [SMALL_STATE(5657)] = 209976, + [SMALL_STATE(5658)] = 209992, + [SMALL_STATE(5659)] = 210008, + [SMALL_STATE(5660)] = 210024, + [SMALL_STATE(5661)] = 210040, + [SMALL_STATE(5662)] = 210056, + [SMALL_STATE(5663)] = 210072, + [SMALL_STATE(5664)] = 210088, + [SMALL_STATE(5665)] = 210104, + [SMALL_STATE(5666)] = 210120, + [SMALL_STATE(5667)] = 210136, + [SMALL_STATE(5668)] = 210152, + [SMALL_STATE(5669)] = 210168, + [SMALL_STATE(5670)] = 210184, + [SMALL_STATE(5671)] = 210200, + [SMALL_STATE(5672)] = 210216, + [SMALL_STATE(5673)] = 210232, + [SMALL_STATE(5674)] = 210248, + [SMALL_STATE(5675)] = 210264, + [SMALL_STATE(5676)] = 210280, + [SMALL_STATE(5677)] = 210294, + [SMALL_STATE(5678)] = 210310, + [SMALL_STATE(5679)] = 210326, + [SMALL_STATE(5680)] = 210342, + [SMALL_STATE(5681)] = 210358, + [SMALL_STATE(5682)] = 210372, + [SMALL_STATE(5683)] = 210388, + [SMALL_STATE(5684)] = 210404, + [SMALL_STATE(5685)] = 210420, + [SMALL_STATE(5686)] = 210436, + [SMALL_STATE(5687)] = 210452, + [SMALL_STATE(5688)] = 210468, + [SMALL_STATE(5689)] = 210484, + [SMALL_STATE(5690)] = 210500, + [SMALL_STATE(5691)] = 210516, + [SMALL_STATE(5692)] = 210532, + [SMALL_STATE(5693)] = 210548, + [SMALL_STATE(5694)] = 210564, + [SMALL_STATE(5695)] = 210580, + [SMALL_STATE(5696)] = 210596, + [SMALL_STATE(5697)] = 210612, + [SMALL_STATE(5698)] = 210626, + [SMALL_STATE(5699)] = 210642, + [SMALL_STATE(5700)] = 210658, + [SMALL_STATE(5701)] = 210674, + [SMALL_STATE(5702)] = 210690, + [SMALL_STATE(5703)] = 210706, + [SMALL_STATE(5704)] = 210722, + [SMALL_STATE(5705)] = 210738, + [SMALL_STATE(5706)] = 210754, + [SMALL_STATE(5707)] = 210770, + [SMALL_STATE(5708)] = 210786, + [SMALL_STATE(5709)] = 210800, + [SMALL_STATE(5710)] = 210816, + [SMALL_STATE(5711)] = 210832, + [SMALL_STATE(5712)] = 210848, + [SMALL_STATE(5713)] = 210864, + [SMALL_STATE(5714)] = 210880, + [SMALL_STATE(5715)] = 210896, + [SMALL_STATE(5716)] = 210910, + [SMALL_STATE(5717)] = 210926, + [SMALL_STATE(5718)] = 210942, + [SMALL_STATE(5719)] = 210958, + [SMALL_STATE(5720)] = 210974, + [SMALL_STATE(5721)] = 210990, + [SMALL_STATE(5722)] = 211006, + [SMALL_STATE(5723)] = 211022, + [SMALL_STATE(5724)] = 211038, + [SMALL_STATE(5725)] = 211054, + [SMALL_STATE(5726)] = 211070, + [SMALL_STATE(5727)] = 211086, + [SMALL_STATE(5728)] = 211102, + [SMALL_STATE(5729)] = 211116, + [SMALL_STATE(5730)] = 211130, + [SMALL_STATE(5731)] = 211146, + [SMALL_STATE(5732)] = 211160, + [SMALL_STATE(5733)] = 211176, + [SMALL_STATE(5734)] = 211192, + [SMALL_STATE(5735)] = 211206, + [SMALL_STATE(5736)] = 211222, + [SMALL_STATE(5737)] = 211238, + [SMALL_STATE(5738)] = 211252, + [SMALL_STATE(5739)] = 211266, + [SMALL_STATE(5740)] = 211282, + [SMALL_STATE(5741)] = 211298, + [SMALL_STATE(5742)] = 211312, + [SMALL_STATE(5743)] = 211328, + [SMALL_STATE(5744)] = 211344, + [SMALL_STATE(5745)] = 211360, + [SMALL_STATE(5746)] = 211376, + [SMALL_STATE(5747)] = 211392, + [SMALL_STATE(5748)] = 211408, + [SMALL_STATE(5749)] = 211424, + [SMALL_STATE(5750)] = 211440, + [SMALL_STATE(5751)] = 211456, + [SMALL_STATE(5752)] = 211472, + [SMALL_STATE(5753)] = 211488, + [SMALL_STATE(5754)] = 211504, + [SMALL_STATE(5755)] = 211520, + [SMALL_STATE(5756)] = 211536, + [SMALL_STATE(5757)] = 211552, + [SMALL_STATE(5758)] = 211566, + [SMALL_STATE(5759)] = 211582, + [SMALL_STATE(5760)] = 211598, + [SMALL_STATE(5761)] = 211614, + [SMALL_STATE(5762)] = 211628, + [SMALL_STATE(5763)] = 211644, + [SMALL_STATE(5764)] = 211660, + [SMALL_STATE(5765)] = 211676, + [SMALL_STATE(5766)] = 211692, + [SMALL_STATE(5767)] = 211708, + [SMALL_STATE(5768)] = 211724, + [SMALL_STATE(5769)] = 211740, + [SMALL_STATE(5770)] = 211756, + [SMALL_STATE(5771)] = 211772, + [SMALL_STATE(5772)] = 211788, + [SMALL_STATE(5773)] = 211804, + [SMALL_STATE(5774)] = 211818, + [SMALL_STATE(5775)] = 211834, + [SMALL_STATE(5776)] = 211850, + [SMALL_STATE(5777)] = 211864, + [SMALL_STATE(5778)] = 211880, + [SMALL_STATE(5779)] = 211896, + [SMALL_STATE(5780)] = 211912, + [SMALL_STATE(5781)] = 211928, + [SMALL_STATE(5782)] = 211944, + [SMALL_STATE(5783)] = 211960, + [SMALL_STATE(5784)] = 211976, + [SMALL_STATE(5785)] = 211992, + [SMALL_STATE(5786)] = 212008, + [SMALL_STATE(5787)] = 212024, + [SMALL_STATE(5788)] = 212040, + [SMALL_STATE(5789)] = 212056, + [SMALL_STATE(5790)] = 212072, + [SMALL_STATE(5791)] = 212088, + [SMALL_STATE(5792)] = 212104, + [SMALL_STATE(5793)] = 212120, + [SMALL_STATE(5794)] = 212136, + [SMALL_STATE(5795)] = 212152, + [SMALL_STATE(5796)] = 212168, + [SMALL_STATE(5797)] = 212184, + [SMALL_STATE(5798)] = 212200, + [SMALL_STATE(5799)] = 212216, + [SMALL_STATE(5800)] = 212232, + [SMALL_STATE(5801)] = 212246, + [SMALL_STATE(5802)] = 212262, + [SMALL_STATE(5803)] = 212278, + [SMALL_STATE(5804)] = 212294, + [SMALL_STATE(5805)] = 212310, + [SMALL_STATE(5806)] = 212324, + [SMALL_STATE(5807)] = 212340, + [SMALL_STATE(5808)] = 212356, + [SMALL_STATE(5809)] = 212372, + [SMALL_STATE(5810)] = 212388, + [SMALL_STATE(5811)] = 212404, + [SMALL_STATE(5812)] = 212420, + [SMALL_STATE(5813)] = 212436, + [SMALL_STATE(5814)] = 212452, + [SMALL_STATE(5815)] = 212468, + [SMALL_STATE(5816)] = 212484, + [SMALL_STATE(5817)] = 212500, + [SMALL_STATE(5818)] = 212516, + [SMALL_STATE(5819)] = 212529, + [SMALL_STATE(5820)] = 212542, + [SMALL_STATE(5821)] = 212553, + [SMALL_STATE(5822)] = 212564, + [SMALL_STATE(5823)] = 212577, + [SMALL_STATE(5824)] = 212590, + [SMALL_STATE(5825)] = 212603, + [SMALL_STATE(5826)] = 212616, + [SMALL_STATE(5827)] = 212629, + [SMALL_STATE(5828)] = 212642, + [SMALL_STATE(5829)] = 212655, + [SMALL_STATE(5830)] = 212668, + [SMALL_STATE(5831)] = 212681, + [SMALL_STATE(5832)] = 212694, + [SMALL_STATE(5833)] = 212707, + [SMALL_STATE(5834)] = 212720, + [SMALL_STATE(5835)] = 212733, + [SMALL_STATE(5836)] = 212746, + [SMALL_STATE(5837)] = 212759, + [SMALL_STATE(5838)] = 212772, + [SMALL_STATE(5839)] = 212785, + [SMALL_STATE(5840)] = 212798, + [SMALL_STATE(5841)] = 212811, + [SMALL_STATE(5842)] = 212824, + [SMALL_STATE(5843)] = 212837, + [SMALL_STATE(5844)] = 212850, + [SMALL_STATE(5845)] = 212863, + [SMALL_STATE(5846)] = 212876, + [SMALL_STATE(5847)] = 212889, + [SMALL_STATE(5848)] = 212902, + [SMALL_STATE(5849)] = 212915, + [SMALL_STATE(5850)] = 212928, + [SMALL_STATE(5851)] = 212941, + [SMALL_STATE(5852)] = 212954, + [SMALL_STATE(5853)] = 212965, + [SMALL_STATE(5854)] = 212978, + [SMALL_STATE(5855)] = 212989, + [SMALL_STATE(5856)] = 213002, + [SMALL_STATE(5857)] = 213015, + [SMALL_STATE(5858)] = 213026, + [SMALL_STATE(5859)] = 213039, + [SMALL_STATE(5860)] = 213052, + [SMALL_STATE(5861)] = 213065, + [SMALL_STATE(5862)] = 213078, + [SMALL_STATE(5863)] = 213091, + [SMALL_STATE(5864)] = 213104, + [SMALL_STATE(5865)] = 213117, + [SMALL_STATE(5866)] = 213130, + [SMALL_STATE(5867)] = 213143, + [SMALL_STATE(5868)] = 213156, + [SMALL_STATE(5869)] = 213169, + [SMALL_STATE(5870)] = 213182, + [SMALL_STATE(5871)] = 213195, + [SMALL_STATE(5872)] = 213208, + [SMALL_STATE(5873)] = 213221, + [SMALL_STATE(5874)] = 213234, + [SMALL_STATE(5875)] = 213247, + [SMALL_STATE(5876)] = 213260, + [SMALL_STATE(5877)] = 213271, + [SMALL_STATE(5878)] = 213284, + [SMALL_STATE(5879)] = 213295, + [SMALL_STATE(5880)] = 213308, + [SMALL_STATE(5881)] = 213321, + [SMALL_STATE(5882)] = 213334, + [SMALL_STATE(5883)] = 213347, + [SMALL_STATE(5884)] = 213360, + [SMALL_STATE(5885)] = 213373, + [SMALL_STATE(5886)] = 213386, + [SMALL_STATE(5887)] = 213395, + [SMALL_STATE(5888)] = 213406, + [SMALL_STATE(5889)] = 213419, + [SMALL_STATE(5890)] = 213432, + [SMALL_STATE(5891)] = 213445, + [SMALL_STATE(5892)] = 213458, + [SMALL_STATE(5893)] = 213471, + [SMALL_STATE(5894)] = 213484, + [SMALL_STATE(5895)] = 213497, + [SMALL_STATE(5896)] = 213508, + [SMALL_STATE(5897)] = 213521, + [SMALL_STATE(5898)] = 213534, + [SMALL_STATE(5899)] = 213547, + [SMALL_STATE(5900)] = 213560, + [SMALL_STATE(5901)] = 213573, + [SMALL_STATE(5902)] = 213586, + [SMALL_STATE(5903)] = 213599, + [SMALL_STATE(5904)] = 213612, + [SMALL_STATE(5905)] = 213625, + [SMALL_STATE(5906)] = 213638, + [SMALL_STATE(5907)] = 213649, + [SMALL_STATE(5908)] = 213662, + [SMALL_STATE(5909)] = 213675, + [SMALL_STATE(5910)] = 213688, + [SMALL_STATE(5911)] = 213701, + [SMALL_STATE(5912)] = 213714, + [SMALL_STATE(5913)] = 213725, + [SMALL_STATE(5914)] = 213738, + [SMALL_STATE(5915)] = 213751, + [SMALL_STATE(5916)] = 213762, + [SMALL_STATE(5917)] = 213771, + [SMALL_STATE(5918)] = 213784, + [SMALL_STATE(5919)] = 213797, + [SMALL_STATE(5920)] = 213810, + [SMALL_STATE(5921)] = 213823, + [SMALL_STATE(5922)] = 213836, + [SMALL_STATE(5923)] = 213849, + [SMALL_STATE(5924)] = 213862, + [SMALL_STATE(5925)] = 213875, + [SMALL_STATE(5926)] = 213888, + [SMALL_STATE(5927)] = 213901, + [SMALL_STATE(5928)] = 213914, + [SMALL_STATE(5929)] = 213927, + [SMALL_STATE(5930)] = 213936, + [SMALL_STATE(5931)] = 213949, + [SMALL_STATE(5932)] = 213962, + [SMALL_STATE(5933)] = 213975, + [SMALL_STATE(5934)] = 213986, + [SMALL_STATE(5935)] = 213999, + [SMALL_STATE(5936)] = 214012, + [SMALL_STATE(5937)] = 214021, + [SMALL_STATE(5938)] = 214034, + [SMALL_STATE(5939)] = 214047, + [SMALL_STATE(5940)] = 214060, + [SMALL_STATE(5941)] = 214073, + [SMALL_STATE(5942)] = 214086, + [SMALL_STATE(5943)] = 214099, + [SMALL_STATE(5944)] = 214112, + [SMALL_STATE(5945)] = 214125, + [SMALL_STATE(5946)] = 214138, + [SMALL_STATE(5947)] = 214151, + [SMALL_STATE(5948)] = 214164, + [SMALL_STATE(5949)] = 214177, + [SMALL_STATE(5950)] = 214190, + [SMALL_STATE(5951)] = 214203, + [SMALL_STATE(5952)] = 214214, + [SMALL_STATE(5953)] = 214227, + [SMALL_STATE(5954)] = 214240, + [SMALL_STATE(5955)] = 214253, + [SMALL_STATE(5956)] = 214266, + [SMALL_STATE(5957)] = 214279, + [SMALL_STATE(5958)] = 214290, + [SMALL_STATE(5959)] = 214303, + [SMALL_STATE(5960)] = 214316, + [SMALL_STATE(5961)] = 214329, + [SMALL_STATE(5962)] = 214340, + [SMALL_STATE(5963)] = 214353, + [SMALL_STATE(5964)] = 214366, + [SMALL_STATE(5965)] = 214379, + [SMALL_STATE(5966)] = 214392, + [SMALL_STATE(5967)] = 214405, + [SMALL_STATE(5968)] = 214418, + [SMALL_STATE(5969)] = 214431, + [SMALL_STATE(5970)] = 214444, + [SMALL_STATE(5971)] = 214457, + [SMALL_STATE(5972)] = 214470, + [SMALL_STATE(5973)] = 214483, + [SMALL_STATE(5974)] = 214496, + [SMALL_STATE(5975)] = 214509, + [SMALL_STATE(5976)] = 214520, + [SMALL_STATE(5977)] = 214533, + [SMALL_STATE(5978)] = 214546, + [SMALL_STATE(5979)] = 214559, + [SMALL_STATE(5980)] = 214572, + [SMALL_STATE(5981)] = 214585, + [SMALL_STATE(5982)] = 214594, + [SMALL_STATE(5983)] = 214607, + [SMALL_STATE(5984)] = 214620, + [SMALL_STATE(5985)] = 214633, + [SMALL_STATE(5986)] = 214646, + [SMALL_STATE(5987)] = 214659, + [SMALL_STATE(5988)] = 214672, + [SMALL_STATE(5989)] = 214685, + [SMALL_STATE(5990)] = 214698, + [SMALL_STATE(5991)] = 214711, + [SMALL_STATE(5992)] = 214724, + [SMALL_STATE(5993)] = 214737, + [SMALL_STATE(5994)] = 214748, + [SMALL_STATE(5995)] = 214761, + [SMALL_STATE(5996)] = 214772, + [SMALL_STATE(5997)] = 214785, + [SMALL_STATE(5998)] = 214798, + [SMALL_STATE(5999)] = 214811, + [SMALL_STATE(6000)] = 214824, + [SMALL_STATE(6001)] = 214837, + [SMALL_STATE(6002)] = 214850, + [SMALL_STATE(6003)] = 214863, + [SMALL_STATE(6004)] = 214874, + [SMALL_STATE(6005)] = 214885, + [SMALL_STATE(6006)] = 214898, + [SMALL_STATE(6007)] = 214911, + [SMALL_STATE(6008)] = 214924, + [SMALL_STATE(6009)] = 214937, + [SMALL_STATE(6010)] = 214950, + [SMALL_STATE(6011)] = 214963, + [SMALL_STATE(6012)] = 214976, + [SMALL_STATE(6013)] = 214989, + [SMALL_STATE(6014)] = 215002, + [SMALL_STATE(6015)] = 215015, + [SMALL_STATE(6016)] = 215028, + [SMALL_STATE(6017)] = 215039, + [SMALL_STATE(6018)] = 215052, + [SMALL_STATE(6019)] = 215065, + [SMALL_STATE(6020)] = 215078, + [SMALL_STATE(6021)] = 215091, + [SMALL_STATE(6022)] = 215104, + [SMALL_STATE(6023)] = 215117, + [SMALL_STATE(6024)] = 215130, + [SMALL_STATE(6025)] = 215141, + [SMALL_STATE(6026)] = 215154, + [SMALL_STATE(6027)] = 215167, + [SMALL_STATE(6028)] = 215180, + [SMALL_STATE(6029)] = 215193, + [SMALL_STATE(6030)] = 215206, + [SMALL_STATE(6031)] = 215219, + [SMALL_STATE(6032)] = 215232, + [SMALL_STATE(6033)] = 215243, + [SMALL_STATE(6034)] = 215256, + [SMALL_STATE(6035)] = 215269, + [SMALL_STATE(6036)] = 215282, + [SMALL_STATE(6037)] = 215295, + [SMALL_STATE(6038)] = 215308, + [SMALL_STATE(6039)] = 215319, + [SMALL_STATE(6040)] = 215332, + [SMALL_STATE(6041)] = 215343, + [SMALL_STATE(6042)] = 215356, + [SMALL_STATE(6043)] = 215369, + [SMALL_STATE(6044)] = 215382, + [SMALL_STATE(6045)] = 215395, + [SMALL_STATE(6046)] = 215408, + [SMALL_STATE(6047)] = 215421, + [SMALL_STATE(6048)] = 215434, + [SMALL_STATE(6049)] = 215447, + [SMALL_STATE(6050)] = 215458, + [SMALL_STATE(6051)] = 215471, + [SMALL_STATE(6052)] = 215484, + [SMALL_STATE(6053)] = 215497, + [SMALL_STATE(6054)] = 215510, + [SMALL_STATE(6055)] = 215523, + [SMALL_STATE(6056)] = 215536, + [SMALL_STATE(6057)] = 215549, + [SMALL_STATE(6058)] = 215562, + [SMALL_STATE(6059)] = 215575, + [SMALL_STATE(6060)] = 215588, + [SMALL_STATE(6061)] = 215601, + [SMALL_STATE(6062)] = 215614, + [SMALL_STATE(6063)] = 215627, + [SMALL_STATE(6064)] = 215640, + [SMALL_STATE(6065)] = 215653, + [SMALL_STATE(6066)] = 215666, + [SMALL_STATE(6067)] = 215679, + [SMALL_STATE(6068)] = 215692, + [SMALL_STATE(6069)] = 215705, + [SMALL_STATE(6070)] = 215716, + [SMALL_STATE(6071)] = 215729, + [SMALL_STATE(6072)] = 215742, + [SMALL_STATE(6073)] = 215753, + [SMALL_STATE(6074)] = 215766, + [SMALL_STATE(6075)] = 215779, + [SMALL_STATE(6076)] = 215792, + [SMALL_STATE(6077)] = 215805, + [SMALL_STATE(6078)] = 215818, + [SMALL_STATE(6079)] = 215829, + [SMALL_STATE(6080)] = 215840, + [SMALL_STATE(6081)] = 215853, + [SMALL_STATE(6082)] = 215866, + [SMALL_STATE(6083)] = 215879, + [SMALL_STATE(6084)] = 215892, + [SMALL_STATE(6085)] = 215905, + [SMALL_STATE(6086)] = 215918, + [SMALL_STATE(6087)] = 215931, + [SMALL_STATE(6088)] = 215944, + [SMALL_STATE(6089)] = 215957, + [SMALL_STATE(6090)] = 215970, + [SMALL_STATE(6091)] = 215983, + [SMALL_STATE(6092)] = 215996, + [SMALL_STATE(6093)] = 216009, + [SMALL_STATE(6094)] = 216022, + [SMALL_STATE(6095)] = 216035, + [SMALL_STATE(6096)] = 216046, + [SMALL_STATE(6097)] = 216057, + [SMALL_STATE(6098)] = 216070, + [SMALL_STATE(6099)] = 216083, + [SMALL_STATE(6100)] = 216096, + [SMALL_STATE(6101)] = 216109, + [SMALL_STATE(6102)] = 216122, + [SMALL_STATE(6103)] = 216135, + [SMALL_STATE(6104)] = 216148, + [SMALL_STATE(6105)] = 216161, + [SMALL_STATE(6106)] = 216174, + [SMALL_STATE(6107)] = 216187, + [SMALL_STATE(6108)] = 216200, + [SMALL_STATE(6109)] = 216213, + [SMALL_STATE(6110)] = 216226, + [SMALL_STATE(6111)] = 216239, + [SMALL_STATE(6112)] = 216250, + [SMALL_STATE(6113)] = 216263, + [SMALL_STATE(6114)] = 216276, + [SMALL_STATE(6115)] = 216289, + [SMALL_STATE(6116)] = 216302, + [SMALL_STATE(6117)] = 216311, + [SMALL_STATE(6118)] = 216324, + [SMALL_STATE(6119)] = 216337, + [SMALL_STATE(6120)] = 216347, + [SMALL_STATE(6121)] = 216357, + [SMALL_STATE(6122)] = 216367, + [SMALL_STATE(6123)] = 216377, + [SMALL_STATE(6124)] = 216387, + [SMALL_STATE(6125)] = 216397, + [SMALL_STATE(6126)] = 216407, + [SMALL_STATE(6127)] = 216417, + [SMALL_STATE(6128)] = 216427, + [SMALL_STATE(6129)] = 216437, + [SMALL_STATE(6130)] = 216447, + [SMALL_STATE(6131)] = 216457, + [SMALL_STATE(6132)] = 216465, + [SMALL_STATE(6133)] = 216473, + [SMALL_STATE(6134)] = 216481, + [SMALL_STATE(6135)] = 216489, + [SMALL_STATE(6136)] = 216497, + [SMALL_STATE(6137)] = 216505, + [SMALL_STATE(6138)] = 216513, + [SMALL_STATE(6139)] = 216521, + [SMALL_STATE(6140)] = 216529, + [SMALL_STATE(6141)] = 216537, + [SMALL_STATE(6142)] = 216545, + [SMALL_STATE(6143)] = 216553, + [SMALL_STATE(6144)] = 216561, + [SMALL_STATE(6145)] = 216569, + [SMALL_STATE(6146)] = 216579, + [SMALL_STATE(6147)] = 216589, + [SMALL_STATE(6148)] = 216599, + [SMALL_STATE(6149)] = 216609, + [SMALL_STATE(6150)] = 216617, + [SMALL_STATE(6151)] = 216627, + [SMALL_STATE(6152)] = 216635, + [SMALL_STATE(6153)] = 216645, + [SMALL_STATE(6154)] = 216655, + [SMALL_STATE(6155)] = 216663, + [SMALL_STATE(6156)] = 216673, + [SMALL_STATE(6157)] = 216683, + [SMALL_STATE(6158)] = 216693, + [SMALL_STATE(6159)] = 216703, + [SMALL_STATE(6160)] = 216713, + [SMALL_STATE(6161)] = 216723, + [SMALL_STATE(6162)] = 216731, + [SMALL_STATE(6163)] = 216739, + [SMALL_STATE(6164)] = 216749, + [SMALL_STATE(6165)] = 216759, + [SMALL_STATE(6166)] = 216769, + [SMALL_STATE(6167)] = 216777, + [SMALL_STATE(6168)] = 216787, + [SMALL_STATE(6169)] = 216797, + [SMALL_STATE(6170)] = 216807, + [SMALL_STATE(6171)] = 216815, + [SMALL_STATE(6172)] = 216825, + [SMALL_STATE(6173)] = 216833, + [SMALL_STATE(6174)] = 216841, + [SMALL_STATE(6175)] = 216851, + [SMALL_STATE(6176)] = 216859, + [SMALL_STATE(6177)] = 216869, + [SMALL_STATE(6178)] = 216877, + [SMALL_STATE(6179)] = 216887, + [SMALL_STATE(6180)] = 216895, + [SMALL_STATE(6181)] = 216905, + [SMALL_STATE(6182)] = 216913, + [SMALL_STATE(6183)] = 216923, + [SMALL_STATE(6184)] = 216933, + [SMALL_STATE(6185)] = 216943, + [SMALL_STATE(6186)] = 216951, + [SMALL_STATE(6187)] = 216961, + [SMALL_STATE(6188)] = 216971, + [SMALL_STATE(6189)] = 216981, + [SMALL_STATE(6190)] = 216989, + [SMALL_STATE(6191)] = 216997, + [SMALL_STATE(6192)] = 217005, + [SMALL_STATE(6193)] = 217015, + [SMALL_STATE(6194)] = 217025, + [SMALL_STATE(6195)] = 217033, + [SMALL_STATE(6196)] = 217043, + [SMALL_STATE(6197)] = 217051, + [SMALL_STATE(6198)] = 217061, + [SMALL_STATE(6199)] = 217069, + [SMALL_STATE(6200)] = 217079, + [SMALL_STATE(6201)] = 217087, + [SMALL_STATE(6202)] = 217097, + [SMALL_STATE(6203)] = 217107, + [SMALL_STATE(6204)] = 217115, + [SMALL_STATE(6205)] = 217125, + [SMALL_STATE(6206)] = 217135, + [SMALL_STATE(6207)] = 217145, + [SMALL_STATE(6208)] = 217155, + [SMALL_STATE(6209)] = 217165, + [SMALL_STATE(6210)] = 217175, + [SMALL_STATE(6211)] = 217185, + [SMALL_STATE(6212)] = 217195, + [SMALL_STATE(6213)] = 217205, + [SMALL_STATE(6214)] = 217213, + [SMALL_STATE(6215)] = 217223, + [SMALL_STATE(6216)] = 217231, + [SMALL_STATE(6217)] = 217239, + [SMALL_STATE(6218)] = 217247, + [SMALL_STATE(6219)] = 217257, + [SMALL_STATE(6220)] = 217267, + [SMALL_STATE(6221)] = 217275, + [SMALL_STATE(6222)] = 217283, + [SMALL_STATE(6223)] = 217291, + [SMALL_STATE(6224)] = 217301, + [SMALL_STATE(6225)] = 217309, + [SMALL_STATE(6226)] = 217319, + [SMALL_STATE(6227)] = 217329, + [SMALL_STATE(6228)] = 217339, + [SMALL_STATE(6229)] = 217347, + [SMALL_STATE(6230)] = 217357, + [SMALL_STATE(6231)] = 217367, + [SMALL_STATE(6232)] = 217377, + [SMALL_STATE(6233)] = 217385, + [SMALL_STATE(6234)] = 217395, + [SMALL_STATE(6235)] = 217405, + [SMALL_STATE(6236)] = 217415, + [SMALL_STATE(6237)] = 217425, + [SMALL_STATE(6238)] = 217435, + [SMALL_STATE(6239)] = 217443, + [SMALL_STATE(6240)] = 217451, + [SMALL_STATE(6241)] = 217459, + [SMALL_STATE(6242)] = 217467, + [SMALL_STATE(6243)] = 217475, + [SMALL_STATE(6244)] = 217485, + [SMALL_STATE(6245)] = 217493, + [SMALL_STATE(6246)] = 217501, + [SMALL_STATE(6247)] = 217509, + [SMALL_STATE(6248)] = 217517, + [SMALL_STATE(6249)] = 217525, + [SMALL_STATE(6250)] = 217535, + [SMALL_STATE(6251)] = 217543, + [SMALL_STATE(6252)] = 217553, + [SMALL_STATE(6253)] = 217563, + [SMALL_STATE(6254)] = 217573, + [SMALL_STATE(6255)] = 217583, + [SMALL_STATE(6256)] = 217593, + [SMALL_STATE(6257)] = 217603, + [SMALL_STATE(6258)] = 217611, + [SMALL_STATE(6259)] = 217621, + [SMALL_STATE(6260)] = 217629, + [SMALL_STATE(6261)] = 217637, + [SMALL_STATE(6262)] = 217645, + [SMALL_STATE(6263)] = 217653, + [SMALL_STATE(6264)] = 217663, + [SMALL_STATE(6265)] = 217671, + [SMALL_STATE(6266)] = 217681, + [SMALL_STATE(6267)] = 217689, + [SMALL_STATE(6268)] = 217699, + [SMALL_STATE(6269)] = 217707, + [SMALL_STATE(6270)] = 217717, + [SMALL_STATE(6271)] = 217727, + [SMALL_STATE(6272)] = 217737, + [SMALL_STATE(6273)] = 217747, + [SMALL_STATE(6274)] = 217757, + [SMALL_STATE(6275)] = 217767, + [SMALL_STATE(6276)] = 217775, + [SMALL_STATE(6277)] = 217785, + [SMALL_STATE(6278)] = 217793, + [SMALL_STATE(6279)] = 217801, + [SMALL_STATE(6280)] = 217809, + [SMALL_STATE(6281)] = 217817, + [SMALL_STATE(6282)] = 217825, + [SMALL_STATE(6283)] = 217833, + [SMALL_STATE(6284)] = 217841, + [SMALL_STATE(6285)] = 217849, + [SMALL_STATE(6286)] = 217859, + [SMALL_STATE(6287)] = 217867, + [SMALL_STATE(6288)] = 217877, + [SMALL_STATE(6289)] = 217887, + [SMALL_STATE(6290)] = 217897, + [SMALL_STATE(6291)] = 217907, + [SMALL_STATE(6292)] = 217917, + [SMALL_STATE(6293)] = 217927, + [SMALL_STATE(6294)] = 217935, + [SMALL_STATE(6295)] = 217945, + [SMALL_STATE(6296)] = 217953, + [SMALL_STATE(6297)] = 217961, + [SMALL_STATE(6298)] = 217969, + [SMALL_STATE(6299)] = 217977, + [SMALL_STATE(6300)] = 217987, + [SMALL_STATE(6301)] = 217995, + [SMALL_STATE(6302)] = 218005, + [SMALL_STATE(6303)] = 218013, + [SMALL_STATE(6304)] = 218023, + [SMALL_STATE(6305)] = 218031, + [SMALL_STATE(6306)] = 218041, + [SMALL_STATE(6307)] = 218051, + [SMALL_STATE(6308)] = 218061, + [SMALL_STATE(6309)] = 218071, + [SMALL_STATE(6310)] = 218081, + [SMALL_STATE(6311)] = 218091, + [SMALL_STATE(6312)] = 218099, + [SMALL_STATE(6313)] = 218109, + [SMALL_STATE(6314)] = 218117, + [SMALL_STATE(6315)] = 218125, + [SMALL_STATE(6316)] = 218133, + [SMALL_STATE(6317)] = 218143, + [SMALL_STATE(6318)] = 218151, + [SMALL_STATE(6319)] = 218161, + [SMALL_STATE(6320)] = 218169, + [SMALL_STATE(6321)] = 218177, + [SMALL_STATE(6322)] = 218187, + [SMALL_STATE(6323)] = 218197, + [SMALL_STATE(6324)] = 218207, + [SMALL_STATE(6325)] = 218217, + [SMALL_STATE(6326)] = 218227, + [SMALL_STATE(6327)] = 218237, + [SMALL_STATE(6328)] = 218245, + [SMALL_STATE(6329)] = 218255, + [SMALL_STATE(6330)] = 218265, + [SMALL_STATE(6331)] = 218275, + [SMALL_STATE(6332)] = 218285, + [SMALL_STATE(6333)] = 218295, + [SMALL_STATE(6334)] = 218303, + [SMALL_STATE(6335)] = 218313, + [SMALL_STATE(6336)] = 218323, + [SMALL_STATE(6337)] = 218333, + [SMALL_STATE(6338)] = 218343, + [SMALL_STATE(6339)] = 218353, + [SMALL_STATE(6340)] = 218361, + [SMALL_STATE(6341)] = 218369, + [SMALL_STATE(6342)] = 218379, + [SMALL_STATE(6343)] = 218389, + [SMALL_STATE(6344)] = 218399, + [SMALL_STATE(6345)] = 218409, + [SMALL_STATE(6346)] = 218419, + [SMALL_STATE(6347)] = 218429, + [SMALL_STATE(6348)] = 218439, + [SMALL_STATE(6349)] = 218449, + [SMALL_STATE(6350)] = 218459, + [SMALL_STATE(6351)] = 218469, + [SMALL_STATE(6352)] = 218479, + [SMALL_STATE(6353)] = 218489, + [SMALL_STATE(6354)] = 218499, + [SMALL_STATE(6355)] = 218509, + [SMALL_STATE(6356)] = 218519, + [SMALL_STATE(6357)] = 218529, + [SMALL_STATE(6358)] = 218539, + [SMALL_STATE(6359)] = 218549, + [SMALL_STATE(6360)] = 218559, + [SMALL_STATE(6361)] = 218569, + [SMALL_STATE(6362)] = 218579, + [SMALL_STATE(6363)] = 218589, + [SMALL_STATE(6364)] = 218597, + [SMALL_STATE(6365)] = 218607, + [SMALL_STATE(6366)] = 218617, + [SMALL_STATE(6367)] = 218627, + [SMALL_STATE(6368)] = 218635, + [SMALL_STATE(6369)] = 218645, + [SMALL_STATE(6370)] = 218655, + [SMALL_STATE(6371)] = 218663, + [SMALL_STATE(6372)] = 218671, + [SMALL_STATE(6373)] = 218681, + [SMALL_STATE(6374)] = 218691, + [SMALL_STATE(6375)] = 218699, + [SMALL_STATE(6376)] = 218709, + [SMALL_STATE(6377)] = 218717, + [SMALL_STATE(6378)] = 218727, + [SMALL_STATE(6379)] = 218737, + [SMALL_STATE(6380)] = 218747, + [SMALL_STATE(6381)] = 218755, + [SMALL_STATE(6382)] = 218763, + [SMALL_STATE(6383)] = 218771, + [SMALL_STATE(6384)] = 218781, + [SMALL_STATE(6385)] = 218789, + [SMALL_STATE(6386)] = 218797, + [SMALL_STATE(6387)] = 218807, + [SMALL_STATE(6388)] = 218817, + [SMALL_STATE(6389)] = 218825, + [SMALL_STATE(6390)] = 218833, + [SMALL_STATE(6391)] = 218841, + [SMALL_STATE(6392)] = 218849, + [SMALL_STATE(6393)] = 218857, + [SMALL_STATE(6394)] = 218865, + [SMALL_STATE(6395)] = 218873, + [SMALL_STATE(6396)] = 218883, + [SMALL_STATE(6397)] = 218893, + [SMALL_STATE(6398)] = 218901, + [SMALL_STATE(6399)] = 218911, + [SMALL_STATE(6400)] = 218921, + [SMALL_STATE(6401)] = 218931, + [SMALL_STATE(6402)] = 218941, + [SMALL_STATE(6403)] = 218951, + [SMALL_STATE(6404)] = 218961, + [SMALL_STATE(6405)] = 218971, + [SMALL_STATE(6406)] = 218981, + [SMALL_STATE(6407)] = 218991, + [SMALL_STATE(6408)] = 219001, + [SMALL_STATE(6409)] = 219011, + [SMALL_STATE(6410)] = 219019, + [SMALL_STATE(6411)] = 219029, + [SMALL_STATE(6412)] = 219037, + [SMALL_STATE(6413)] = 219045, + [SMALL_STATE(6414)] = 219055, + [SMALL_STATE(6415)] = 219065, + [SMALL_STATE(6416)] = 219075, + [SMALL_STATE(6417)] = 219085, + [SMALL_STATE(6418)] = 219095, + [SMALL_STATE(6419)] = 219105, + [SMALL_STATE(6420)] = 219115, + [SMALL_STATE(6421)] = 219125, + [SMALL_STATE(6422)] = 219135, + [SMALL_STATE(6423)] = 219145, + [SMALL_STATE(6424)] = 219155, + [SMALL_STATE(6425)] = 219165, + [SMALL_STATE(6426)] = 219175, + [SMALL_STATE(6427)] = 219185, + [SMALL_STATE(6428)] = 219195, + [SMALL_STATE(6429)] = 219205, + [SMALL_STATE(6430)] = 219215, + [SMALL_STATE(6431)] = 219225, + [SMALL_STATE(6432)] = 219235, + [SMALL_STATE(6433)] = 219245, + [SMALL_STATE(6434)] = 219255, + [SMALL_STATE(6435)] = 219265, + [SMALL_STATE(6436)] = 219275, + [SMALL_STATE(6437)] = 219285, + [SMALL_STATE(6438)] = 219295, + [SMALL_STATE(6439)] = 219305, + [SMALL_STATE(6440)] = 219315, + [SMALL_STATE(6441)] = 219325, + [SMALL_STATE(6442)] = 219335, + [SMALL_STATE(6443)] = 219343, + [SMALL_STATE(6444)] = 219353, + [SMALL_STATE(6445)] = 219363, + [SMALL_STATE(6446)] = 219373, + [SMALL_STATE(6447)] = 219383, + [SMALL_STATE(6448)] = 219393, + [SMALL_STATE(6449)] = 219403, + [SMALL_STATE(6450)] = 219413, + [SMALL_STATE(6451)] = 219423, + [SMALL_STATE(6452)] = 219433, + [SMALL_STATE(6453)] = 219443, + [SMALL_STATE(6454)] = 219451, + [SMALL_STATE(6455)] = 219461, + [SMALL_STATE(6456)] = 219471, + [SMALL_STATE(6457)] = 219481, + [SMALL_STATE(6458)] = 219491, + [SMALL_STATE(6459)] = 219501, + [SMALL_STATE(6460)] = 219509, + [SMALL_STATE(6461)] = 219519, + [SMALL_STATE(6462)] = 219529, + [SMALL_STATE(6463)] = 219539, + [SMALL_STATE(6464)] = 219549, + [SMALL_STATE(6465)] = 219559, + [SMALL_STATE(6466)] = 219569, + [SMALL_STATE(6467)] = 219579, + [SMALL_STATE(6468)] = 219589, + [SMALL_STATE(6469)] = 219599, + [SMALL_STATE(6470)] = 219609, + [SMALL_STATE(6471)] = 219619, + [SMALL_STATE(6472)] = 219629, + [SMALL_STATE(6473)] = 219639, + [SMALL_STATE(6474)] = 219649, + [SMALL_STATE(6475)] = 219659, + [SMALL_STATE(6476)] = 219669, + [SMALL_STATE(6477)] = 219679, + [SMALL_STATE(6478)] = 219689, + [SMALL_STATE(6479)] = 219699, + [SMALL_STATE(6480)] = 219709, + [SMALL_STATE(6481)] = 219719, + [SMALL_STATE(6482)] = 219729, + [SMALL_STATE(6483)] = 219739, + [SMALL_STATE(6484)] = 219749, + [SMALL_STATE(6485)] = 219759, + [SMALL_STATE(6486)] = 219769, + [SMALL_STATE(6487)] = 219779, + [SMALL_STATE(6488)] = 219789, + [SMALL_STATE(6489)] = 219799, + [SMALL_STATE(6490)] = 219809, + [SMALL_STATE(6491)] = 219819, + [SMALL_STATE(6492)] = 219829, + [SMALL_STATE(6493)] = 219839, + [SMALL_STATE(6494)] = 219849, + [SMALL_STATE(6495)] = 219859, + [SMALL_STATE(6496)] = 219867, + [SMALL_STATE(6497)] = 219877, + [SMALL_STATE(6498)] = 219887, + [SMALL_STATE(6499)] = 219897, + [SMALL_STATE(6500)] = 219907, + [SMALL_STATE(6501)] = 219917, + [SMALL_STATE(6502)] = 219927, + [SMALL_STATE(6503)] = 219937, + [SMALL_STATE(6504)] = 219947, + [SMALL_STATE(6505)] = 219957, + [SMALL_STATE(6506)] = 219967, + [SMALL_STATE(6507)] = 219977, + [SMALL_STATE(6508)] = 219987, + [SMALL_STATE(6509)] = 219997, + [SMALL_STATE(6510)] = 220007, + [SMALL_STATE(6511)] = 220017, + [SMALL_STATE(6512)] = 220027, + [SMALL_STATE(6513)] = 220037, + [SMALL_STATE(6514)] = 220047, + [SMALL_STATE(6515)] = 220057, + [SMALL_STATE(6516)] = 220067, + [SMALL_STATE(6517)] = 220077, + [SMALL_STATE(6518)] = 220087, + [SMALL_STATE(6519)] = 220097, + [SMALL_STATE(6520)] = 220107, + [SMALL_STATE(6521)] = 220117, + [SMALL_STATE(6522)] = 220127, + [SMALL_STATE(6523)] = 220137, + [SMALL_STATE(6524)] = 220147, + [SMALL_STATE(6525)] = 220157, + [SMALL_STATE(6526)] = 220167, + [SMALL_STATE(6527)] = 220177, + [SMALL_STATE(6528)] = 220185, + [SMALL_STATE(6529)] = 220195, + [SMALL_STATE(6530)] = 220205, + [SMALL_STATE(6531)] = 220213, + [SMALL_STATE(6532)] = 220223, + [SMALL_STATE(6533)] = 220233, + [SMALL_STATE(6534)] = 220243, + [SMALL_STATE(6535)] = 220253, + [SMALL_STATE(6536)] = 220263, + [SMALL_STATE(6537)] = 220273, + [SMALL_STATE(6538)] = 220283, + [SMALL_STATE(6539)] = 220293, + [SMALL_STATE(6540)] = 220303, + [SMALL_STATE(6541)] = 220313, + [SMALL_STATE(6542)] = 220323, + [SMALL_STATE(6543)] = 220333, + [SMALL_STATE(6544)] = 220341, + [SMALL_STATE(6545)] = 220351, + [SMALL_STATE(6546)] = 220361, + [SMALL_STATE(6547)] = 220369, + [SMALL_STATE(6548)] = 220377, + [SMALL_STATE(6549)] = 220387, + [SMALL_STATE(6550)] = 220397, + [SMALL_STATE(6551)] = 220407, + [SMALL_STATE(6552)] = 220417, + [SMALL_STATE(6553)] = 220427, + [SMALL_STATE(6554)] = 220437, + [SMALL_STATE(6555)] = 220447, + [SMALL_STATE(6556)] = 220457, + [SMALL_STATE(6557)] = 220467, + [SMALL_STATE(6558)] = 220475, + [SMALL_STATE(6559)] = 220485, + [SMALL_STATE(6560)] = 220495, + [SMALL_STATE(6561)] = 220505, + [SMALL_STATE(6562)] = 220515, + [SMALL_STATE(6563)] = 220525, + [SMALL_STATE(6564)] = 220535, + [SMALL_STATE(6565)] = 220545, + [SMALL_STATE(6566)] = 220555, + [SMALL_STATE(6567)] = 220565, + [SMALL_STATE(6568)] = 220575, + [SMALL_STATE(6569)] = 220585, + [SMALL_STATE(6570)] = 220595, + [SMALL_STATE(6571)] = 220605, + [SMALL_STATE(6572)] = 220615, + [SMALL_STATE(6573)] = 220623, + [SMALL_STATE(6574)] = 220633, + [SMALL_STATE(6575)] = 220643, + [SMALL_STATE(6576)] = 220653, + [SMALL_STATE(6577)] = 220663, + [SMALL_STATE(6578)] = 220671, + [SMALL_STATE(6579)] = 220681, + [SMALL_STATE(6580)] = 220691, + [SMALL_STATE(6581)] = 220699, + [SMALL_STATE(6582)] = 220709, + [SMALL_STATE(6583)] = 220717, + [SMALL_STATE(6584)] = 220727, + [SMALL_STATE(6585)] = 220737, + [SMALL_STATE(6586)] = 220747, + [SMALL_STATE(6587)] = 220755, + [SMALL_STATE(6588)] = 220765, + [SMALL_STATE(6589)] = 220775, + [SMALL_STATE(6590)] = 220783, + [SMALL_STATE(6591)] = 220793, + [SMALL_STATE(6592)] = 220803, + [SMALL_STATE(6593)] = 220811, + [SMALL_STATE(6594)] = 220821, + [SMALL_STATE(6595)] = 220829, + [SMALL_STATE(6596)] = 220839, + [SMALL_STATE(6597)] = 220849, + [SMALL_STATE(6598)] = 220857, + [SMALL_STATE(6599)] = 220867, + [SMALL_STATE(6600)] = 220877, + [SMALL_STATE(6601)] = 220887, + [SMALL_STATE(6602)] = 220895, + [SMALL_STATE(6603)] = 220905, + [SMALL_STATE(6604)] = 220915, + [SMALL_STATE(6605)] = 220925, + [SMALL_STATE(6606)] = 220935, + [SMALL_STATE(6607)] = 220945, + [SMALL_STATE(6608)] = 220955, + [SMALL_STATE(6609)] = 220965, + [SMALL_STATE(6610)] = 220975, + [SMALL_STATE(6611)] = 220985, + [SMALL_STATE(6612)] = 220995, + [SMALL_STATE(6613)] = 221005, + [SMALL_STATE(6614)] = 221015, + [SMALL_STATE(6615)] = 221025, + [SMALL_STATE(6616)] = 221035, + [SMALL_STATE(6617)] = 221045, + [SMALL_STATE(6618)] = 221055, + [SMALL_STATE(6619)] = 221065, + [SMALL_STATE(6620)] = 221075, + [SMALL_STATE(6621)] = 221085, + [SMALL_STATE(6622)] = 221095, + [SMALL_STATE(6623)] = 221105, + [SMALL_STATE(6624)] = 221113, + [SMALL_STATE(6625)] = 221123, + [SMALL_STATE(6626)] = 221133, + [SMALL_STATE(6627)] = 221143, + [SMALL_STATE(6628)] = 221153, + [SMALL_STATE(6629)] = 221163, + [SMALL_STATE(6630)] = 221173, + [SMALL_STATE(6631)] = 221183, + [SMALL_STATE(6632)] = 221193, + [SMALL_STATE(6633)] = 221203, + [SMALL_STATE(6634)] = 221213, + [SMALL_STATE(6635)] = 221223, + [SMALL_STATE(6636)] = 221233, + [SMALL_STATE(6637)] = 221243, + [SMALL_STATE(6638)] = 221253, + [SMALL_STATE(6639)] = 221263, + [SMALL_STATE(6640)] = 221273, + [SMALL_STATE(6641)] = 221283, + [SMALL_STATE(6642)] = 221291, + [SMALL_STATE(6643)] = 221301, + [SMALL_STATE(6644)] = 221311, + [SMALL_STATE(6645)] = 221321, + [SMALL_STATE(6646)] = 221331, + [SMALL_STATE(6647)] = 221341, + [SMALL_STATE(6648)] = 221351, + [SMALL_STATE(6649)] = 221361, + [SMALL_STATE(6650)] = 221371, + [SMALL_STATE(6651)] = 221381, + [SMALL_STATE(6652)] = 221391, + [SMALL_STATE(6653)] = 221401, + [SMALL_STATE(6654)] = 221411, + [SMALL_STATE(6655)] = 221421, + [SMALL_STATE(6656)] = 221429, + [SMALL_STATE(6657)] = 221439, + [SMALL_STATE(6658)] = 221449, + [SMALL_STATE(6659)] = 221459, + [SMALL_STATE(6660)] = 221467, + [SMALL_STATE(6661)] = 221475, + [SMALL_STATE(6662)] = 221485, + [SMALL_STATE(6663)] = 221495, + [SMALL_STATE(6664)] = 221503, + [SMALL_STATE(6665)] = 221513, + [SMALL_STATE(6666)] = 221523, + [SMALL_STATE(6667)] = 221533, + [SMALL_STATE(6668)] = 221543, + [SMALL_STATE(6669)] = 221553, + [SMALL_STATE(6670)] = 221563, + [SMALL_STATE(6671)] = 221573, + [SMALL_STATE(6672)] = 221581, + [SMALL_STATE(6673)] = 221589, + [SMALL_STATE(6674)] = 221599, + [SMALL_STATE(6675)] = 221609, + [SMALL_STATE(6676)] = 221619, + [SMALL_STATE(6677)] = 221629, + [SMALL_STATE(6678)] = 221639, + [SMALL_STATE(6679)] = 221649, + [SMALL_STATE(6680)] = 221659, + [SMALL_STATE(6681)] = 221669, + [SMALL_STATE(6682)] = 221679, + [SMALL_STATE(6683)] = 221689, + [SMALL_STATE(6684)] = 221699, + [SMALL_STATE(6685)] = 221709, + [SMALL_STATE(6686)] = 221719, + [SMALL_STATE(6687)] = 221729, + [SMALL_STATE(6688)] = 221739, + [SMALL_STATE(6689)] = 221749, + [SMALL_STATE(6690)] = 221759, + [SMALL_STATE(6691)] = 221769, + [SMALL_STATE(6692)] = 221779, + [SMALL_STATE(6693)] = 221787, + [SMALL_STATE(6694)] = 221795, + [SMALL_STATE(6695)] = 221803, + [SMALL_STATE(6696)] = 221813, + [SMALL_STATE(6697)] = 221823, + [SMALL_STATE(6698)] = 221833, + [SMALL_STATE(6699)] = 221843, + [SMALL_STATE(6700)] = 221853, + [SMALL_STATE(6701)] = 221863, + [SMALL_STATE(6702)] = 221873, + [SMALL_STATE(6703)] = 221883, + [SMALL_STATE(6704)] = 221893, + [SMALL_STATE(6705)] = 221903, + [SMALL_STATE(6706)] = 221913, + [SMALL_STATE(6707)] = 221923, + [SMALL_STATE(6708)] = 221933, + [SMALL_STATE(6709)] = 221943, + [SMALL_STATE(6710)] = 221951, + [SMALL_STATE(6711)] = 221959, + [SMALL_STATE(6712)] = 221969, + [SMALL_STATE(6713)] = 221979, + [SMALL_STATE(6714)] = 221989, + [SMALL_STATE(6715)] = 221997, + [SMALL_STATE(6716)] = 222007, + [SMALL_STATE(6717)] = 222017, + [SMALL_STATE(6718)] = 222027, + [SMALL_STATE(6719)] = 222035, + [SMALL_STATE(6720)] = 222045, + [SMALL_STATE(6721)] = 222055, + [SMALL_STATE(6722)] = 222065, + [SMALL_STATE(6723)] = 222075, + [SMALL_STATE(6724)] = 222085, + [SMALL_STATE(6725)] = 222095, + [SMALL_STATE(6726)] = 222105, + [SMALL_STATE(6727)] = 222115, + [SMALL_STATE(6728)] = 222125, + [SMALL_STATE(6729)] = 222135, + [SMALL_STATE(6730)] = 222145, + [SMALL_STATE(6731)] = 222155, + [SMALL_STATE(6732)] = 222162, + [SMALL_STATE(6733)] = 222169, + [SMALL_STATE(6734)] = 222176, + [SMALL_STATE(6735)] = 222183, + [SMALL_STATE(6736)] = 222190, + [SMALL_STATE(6737)] = 222197, + [SMALL_STATE(6738)] = 222204, + [SMALL_STATE(6739)] = 222211, + [SMALL_STATE(6740)] = 222218, + [SMALL_STATE(6741)] = 222225, + [SMALL_STATE(6742)] = 222232, + [SMALL_STATE(6743)] = 222239, + [SMALL_STATE(6744)] = 222246, + [SMALL_STATE(6745)] = 222253, + [SMALL_STATE(6746)] = 222260, + [SMALL_STATE(6747)] = 222267, + [SMALL_STATE(6748)] = 222274, + [SMALL_STATE(6749)] = 222281, + [SMALL_STATE(6750)] = 222288, + [SMALL_STATE(6751)] = 222295, + [SMALL_STATE(6752)] = 222302, + [SMALL_STATE(6753)] = 222309, + [SMALL_STATE(6754)] = 222316, + [SMALL_STATE(6755)] = 222323, + [SMALL_STATE(6756)] = 222330, + [SMALL_STATE(6757)] = 222337, + [SMALL_STATE(6758)] = 222344, + [SMALL_STATE(6759)] = 222351, + [SMALL_STATE(6760)] = 222358, + [SMALL_STATE(6761)] = 222365, + [SMALL_STATE(6762)] = 222372, + [SMALL_STATE(6763)] = 222379, + [SMALL_STATE(6764)] = 222386, + [SMALL_STATE(6765)] = 222393, + [SMALL_STATE(6766)] = 222400, + [SMALL_STATE(6767)] = 222407, + [SMALL_STATE(6768)] = 222414, + [SMALL_STATE(6769)] = 222421, + [SMALL_STATE(6770)] = 222428, + [SMALL_STATE(6771)] = 222435, + [SMALL_STATE(6772)] = 222442, + [SMALL_STATE(6773)] = 222449, + [SMALL_STATE(6774)] = 222456, + [SMALL_STATE(6775)] = 222463, + [SMALL_STATE(6776)] = 222470, + [SMALL_STATE(6777)] = 222477, + [SMALL_STATE(6778)] = 222484, + [SMALL_STATE(6779)] = 222491, + [SMALL_STATE(6780)] = 222498, + [SMALL_STATE(6781)] = 222505, + [SMALL_STATE(6782)] = 222512, + [SMALL_STATE(6783)] = 222519, + [SMALL_STATE(6784)] = 222526, + [SMALL_STATE(6785)] = 222533, + [SMALL_STATE(6786)] = 222540, + [SMALL_STATE(6787)] = 222547, + [SMALL_STATE(6788)] = 222554, + [SMALL_STATE(6789)] = 222561, + [SMALL_STATE(6790)] = 222568, + [SMALL_STATE(6791)] = 222575, + [SMALL_STATE(6792)] = 222582, + [SMALL_STATE(6793)] = 222589, + [SMALL_STATE(6794)] = 222596, + [SMALL_STATE(6795)] = 222603, + [SMALL_STATE(6796)] = 222610, + [SMALL_STATE(6797)] = 222617, + [SMALL_STATE(6798)] = 222624, + [SMALL_STATE(6799)] = 222631, + [SMALL_STATE(6800)] = 222638, + [SMALL_STATE(6801)] = 222645, + [SMALL_STATE(6802)] = 222652, + [SMALL_STATE(6803)] = 222659, + [SMALL_STATE(6804)] = 222666, + [SMALL_STATE(6805)] = 222673, + [SMALL_STATE(6806)] = 222680, + [SMALL_STATE(6807)] = 222687, + [SMALL_STATE(6808)] = 222694, + [SMALL_STATE(6809)] = 222701, + [SMALL_STATE(6810)] = 222708, + [SMALL_STATE(6811)] = 222715, + [SMALL_STATE(6812)] = 222722, + [SMALL_STATE(6813)] = 222729, + [SMALL_STATE(6814)] = 222736, + [SMALL_STATE(6815)] = 222743, + [SMALL_STATE(6816)] = 222750, + [SMALL_STATE(6817)] = 222757, + [SMALL_STATE(6818)] = 222764, + [SMALL_STATE(6819)] = 222771, + [SMALL_STATE(6820)] = 222778, + [SMALL_STATE(6821)] = 222785, + [SMALL_STATE(6822)] = 222792, + [SMALL_STATE(6823)] = 222799, + [SMALL_STATE(6824)] = 222806, + [SMALL_STATE(6825)] = 222813, + [SMALL_STATE(6826)] = 222820, + [SMALL_STATE(6827)] = 222827, + [SMALL_STATE(6828)] = 222834, + [SMALL_STATE(6829)] = 222841, + [SMALL_STATE(6830)] = 222848, + [SMALL_STATE(6831)] = 222855, + [SMALL_STATE(6832)] = 222862, + [SMALL_STATE(6833)] = 222869, + [SMALL_STATE(6834)] = 222876, + [SMALL_STATE(6835)] = 222883, + [SMALL_STATE(6836)] = 222890, + [SMALL_STATE(6837)] = 222897, + [SMALL_STATE(6838)] = 222904, + [SMALL_STATE(6839)] = 222911, + [SMALL_STATE(6840)] = 222918, + [SMALL_STATE(6841)] = 222925, + [SMALL_STATE(6842)] = 222932, + [SMALL_STATE(6843)] = 222939, + [SMALL_STATE(6844)] = 222946, + [SMALL_STATE(6845)] = 222953, + [SMALL_STATE(6846)] = 222960, + [SMALL_STATE(6847)] = 222967, + [SMALL_STATE(6848)] = 222974, + [SMALL_STATE(6849)] = 222981, + [SMALL_STATE(6850)] = 222988, + [SMALL_STATE(6851)] = 222995, + [SMALL_STATE(6852)] = 223002, + [SMALL_STATE(6853)] = 223009, + [SMALL_STATE(6854)] = 223016, + [SMALL_STATE(6855)] = 223023, + [SMALL_STATE(6856)] = 223030, + [SMALL_STATE(6857)] = 223037, + [SMALL_STATE(6858)] = 223044, + [SMALL_STATE(6859)] = 223051, + [SMALL_STATE(6860)] = 223058, + [SMALL_STATE(6861)] = 223065, + [SMALL_STATE(6862)] = 223072, + [SMALL_STATE(6863)] = 223079, + [SMALL_STATE(6864)] = 223086, + [SMALL_STATE(6865)] = 223093, + [SMALL_STATE(6866)] = 223100, + [SMALL_STATE(6867)] = 223107, + [SMALL_STATE(6868)] = 223114, + [SMALL_STATE(6869)] = 223121, + [SMALL_STATE(6870)] = 223128, + [SMALL_STATE(6871)] = 223135, + [SMALL_STATE(6872)] = 223142, + [SMALL_STATE(6873)] = 223149, + [SMALL_STATE(6874)] = 223156, + [SMALL_STATE(6875)] = 223163, + [SMALL_STATE(6876)] = 223170, + [SMALL_STATE(6877)] = 223177, + [SMALL_STATE(6878)] = 223184, + [SMALL_STATE(6879)] = 223191, + [SMALL_STATE(6880)] = 223198, + [SMALL_STATE(6881)] = 223205, + [SMALL_STATE(6882)] = 223212, + [SMALL_STATE(6883)] = 223219, + [SMALL_STATE(6884)] = 223226, + [SMALL_STATE(6885)] = 223233, + [SMALL_STATE(6886)] = 223240, + [SMALL_STATE(6887)] = 223247, + [SMALL_STATE(6888)] = 223254, + [SMALL_STATE(6889)] = 223261, + [SMALL_STATE(6890)] = 223268, + [SMALL_STATE(6891)] = 223275, + [SMALL_STATE(6892)] = 223282, + [SMALL_STATE(6893)] = 223289, + [SMALL_STATE(6894)] = 223296, + [SMALL_STATE(6895)] = 223303, + [SMALL_STATE(6896)] = 223310, + [SMALL_STATE(6897)] = 223317, + [SMALL_STATE(6898)] = 223324, + [SMALL_STATE(6899)] = 223331, + [SMALL_STATE(6900)] = 223338, + [SMALL_STATE(6901)] = 223345, + [SMALL_STATE(6902)] = 223352, + [SMALL_STATE(6903)] = 223359, + [SMALL_STATE(6904)] = 223366, + [SMALL_STATE(6905)] = 223373, + [SMALL_STATE(6906)] = 223380, + [SMALL_STATE(6907)] = 223387, + [SMALL_STATE(6908)] = 223394, + [SMALL_STATE(6909)] = 223401, + [SMALL_STATE(6910)] = 223408, + [SMALL_STATE(6911)] = 223415, + [SMALL_STATE(6912)] = 223422, + [SMALL_STATE(6913)] = 223429, + [SMALL_STATE(6914)] = 223436, + [SMALL_STATE(6915)] = 223443, + [SMALL_STATE(6916)] = 223450, + [SMALL_STATE(6917)] = 223457, + [SMALL_STATE(6918)] = 223464, + [SMALL_STATE(6919)] = 223471, + [SMALL_STATE(6920)] = 223478, + [SMALL_STATE(6921)] = 223485, + [SMALL_STATE(6922)] = 223492, + [SMALL_STATE(6923)] = 223499, + [SMALL_STATE(6924)] = 223506, + [SMALL_STATE(6925)] = 223513, + [SMALL_STATE(6926)] = 223520, + [SMALL_STATE(6927)] = 223527, + [SMALL_STATE(6928)] = 223534, + [SMALL_STATE(6929)] = 223541, + [SMALL_STATE(6930)] = 223548, + [SMALL_STATE(6931)] = 223555, + [SMALL_STATE(6932)] = 223562, + [SMALL_STATE(6933)] = 223569, + [SMALL_STATE(6934)] = 223576, + [SMALL_STATE(6935)] = 223583, + [SMALL_STATE(6936)] = 223590, + [SMALL_STATE(6937)] = 223597, + [SMALL_STATE(6938)] = 223604, + [SMALL_STATE(6939)] = 223611, + [SMALL_STATE(6940)] = 223618, + [SMALL_STATE(6941)] = 223625, + [SMALL_STATE(6942)] = 223632, + [SMALL_STATE(6943)] = 223639, + [SMALL_STATE(6944)] = 223646, + [SMALL_STATE(6945)] = 223653, + [SMALL_STATE(6946)] = 223660, + [SMALL_STATE(6947)] = 223667, + [SMALL_STATE(6948)] = 223674, + [SMALL_STATE(6949)] = 223681, + [SMALL_STATE(6950)] = 223688, + [SMALL_STATE(6951)] = 223695, + [SMALL_STATE(6952)] = 223702, + [SMALL_STATE(6953)] = 223709, + [SMALL_STATE(6954)] = 223716, + [SMALL_STATE(6955)] = 223723, + [SMALL_STATE(6956)] = 223730, + [SMALL_STATE(6957)] = 223737, + [SMALL_STATE(6958)] = 223744, + [SMALL_STATE(6959)] = 223751, + [SMALL_STATE(6960)] = 223758, + [SMALL_STATE(6961)] = 223765, + [SMALL_STATE(6962)] = 223772, + [SMALL_STATE(6963)] = 223779, + [SMALL_STATE(6964)] = 223786, + [SMALL_STATE(6965)] = 223793, + [SMALL_STATE(6966)] = 223800, + [SMALL_STATE(6967)] = 223807, + [SMALL_STATE(6968)] = 223814, + [SMALL_STATE(6969)] = 223821, + [SMALL_STATE(6970)] = 223828, + [SMALL_STATE(6971)] = 223835, + [SMALL_STATE(6972)] = 223842, + [SMALL_STATE(6973)] = 223849, + [SMALL_STATE(6974)] = 223856, + [SMALL_STATE(6975)] = 223863, + [SMALL_STATE(6976)] = 223870, + [SMALL_STATE(6977)] = 223877, + [SMALL_STATE(6978)] = 223884, + [SMALL_STATE(6979)] = 223891, + [SMALL_STATE(6980)] = 223898, + [SMALL_STATE(6981)] = 223905, + [SMALL_STATE(6982)] = 223912, + [SMALL_STATE(6983)] = 223919, + [SMALL_STATE(6984)] = 223926, + [SMALL_STATE(6985)] = 223933, + [SMALL_STATE(6986)] = 223940, + [SMALL_STATE(6987)] = 223947, + [SMALL_STATE(6988)] = 223954, + [SMALL_STATE(6989)] = 223961, + [SMALL_STATE(6990)] = 223968, + [SMALL_STATE(6991)] = 223975, + [SMALL_STATE(6992)] = 223982, + [SMALL_STATE(6993)] = 223989, + [SMALL_STATE(6994)] = 223996, + [SMALL_STATE(6995)] = 224003, + [SMALL_STATE(6996)] = 224010, + [SMALL_STATE(6997)] = 224017, + [SMALL_STATE(6998)] = 224024, + [SMALL_STATE(6999)] = 224031, + [SMALL_STATE(7000)] = 224038, + [SMALL_STATE(7001)] = 224045, + [SMALL_STATE(7002)] = 224052, + [SMALL_STATE(7003)] = 224059, + [SMALL_STATE(7004)] = 224066, + [SMALL_STATE(7005)] = 224073, + [SMALL_STATE(7006)] = 224080, + [SMALL_STATE(7007)] = 224087, + [SMALL_STATE(7008)] = 224094, + [SMALL_STATE(7009)] = 224101, + [SMALL_STATE(7010)] = 224108, + [SMALL_STATE(7011)] = 224115, + [SMALL_STATE(7012)] = 224122, + [SMALL_STATE(7013)] = 224129, + [SMALL_STATE(7014)] = 224136, + [SMALL_STATE(7015)] = 224143, + [SMALL_STATE(7016)] = 224150, + [SMALL_STATE(7017)] = 224157, + [SMALL_STATE(7018)] = 224164, + [SMALL_STATE(7019)] = 224171, + [SMALL_STATE(7020)] = 224178, + [SMALL_STATE(7021)] = 224185, + [SMALL_STATE(7022)] = 224192, + [SMALL_STATE(7023)] = 224199, + [SMALL_STATE(7024)] = 224206, + [SMALL_STATE(7025)] = 224213, + [SMALL_STATE(7026)] = 224220, + [SMALL_STATE(7027)] = 224227, + [SMALL_STATE(7028)] = 224234, + [SMALL_STATE(7029)] = 224241, + [SMALL_STATE(7030)] = 224248, + [SMALL_STATE(7031)] = 224255, + [SMALL_STATE(7032)] = 224262, + [SMALL_STATE(7033)] = 224269, + [SMALL_STATE(7034)] = 224276, + [SMALL_STATE(7035)] = 224283, + [SMALL_STATE(7036)] = 224290, + [SMALL_STATE(7037)] = 224297, + [SMALL_STATE(7038)] = 224304, + [SMALL_STATE(7039)] = 224311, + [SMALL_STATE(7040)] = 224318, + [SMALL_STATE(7041)] = 224325, + [SMALL_STATE(7042)] = 224332, + [SMALL_STATE(7043)] = 224339, + [SMALL_STATE(7044)] = 224346, + [SMALL_STATE(7045)] = 224353, + [SMALL_STATE(7046)] = 224360, + [SMALL_STATE(7047)] = 224367, + [SMALL_STATE(7048)] = 224374, + [SMALL_STATE(7049)] = 224381, + [SMALL_STATE(7050)] = 224388, + [SMALL_STATE(7051)] = 224395, + [SMALL_STATE(7052)] = 224402, + [SMALL_STATE(7053)] = 224409, + [SMALL_STATE(7054)] = 224416, + [SMALL_STATE(7055)] = 224423, + [SMALL_STATE(7056)] = 224430, + [SMALL_STATE(7057)] = 224437, + [SMALL_STATE(7058)] = 224444, + [SMALL_STATE(7059)] = 224451, + [SMALL_STATE(7060)] = 224458, + [SMALL_STATE(7061)] = 224465, + [SMALL_STATE(7062)] = 224472, + [SMALL_STATE(7063)] = 224479, + [SMALL_STATE(7064)] = 224486, + [SMALL_STATE(7065)] = 224493, + [SMALL_STATE(7066)] = 224500, + [SMALL_STATE(7067)] = 224507, + [SMALL_STATE(7068)] = 224514, + [SMALL_STATE(7069)] = 224521, + [SMALL_STATE(7070)] = 224528, + [SMALL_STATE(7071)] = 224535, + [SMALL_STATE(7072)] = 224542, + [SMALL_STATE(7073)] = 224549, + [SMALL_STATE(7074)] = 224556, + [SMALL_STATE(7075)] = 224563, + [SMALL_STATE(7076)] = 224570, + [SMALL_STATE(7077)] = 224577, + [SMALL_STATE(7078)] = 224584, + [SMALL_STATE(7079)] = 224591, + [SMALL_STATE(7080)] = 224598, + [SMALL_STATE(7081)] = 224605, + [SMALL_STATE(7082)] = 224612, + [SMALL_STATE(7083)] = 224619, + [SMALL_STATE(7084)] = 224626, + [SMALL_STATE(7085)] = 224633, + [SMALL_STATE(7086)] = 224640, + [SMALL_STATE(7087)] = 224647, + [SMALL_STATE(7088)] = 224654, + [SMALL_STATE(7089)] = 224661, + [SMALL_STATE(7090)] = 224668, + [SMALL_STATE(7091)] = 224675, + [SMALL_STATE(7092)] = 224682, + [SMALL_STATE(7093)] = 224689, + [SMALL_STATE(7094)] = 224696, + [SMALL_STATE(7095)] = 224703, + [SMALL_STATE(7096)] = 224710, + [SMALL_STATE(7097)] = 224717, + [SMALL_STATE(7098)] = 224724, + [SMALL_STATE(7099)] = 224731, + [SMALL_STATE(7100)] = 224738, + [SMALL_STATE(7101)] = 224745, + [SMALL_STATE(7102)] = 224752, + [SMALL_STATE(7103)] = 224759, + [SMALL_STATE(7104)] = 224766, + [SMALL_STATE(7105)] = 224773, + [SMALL_STATE(7106)] = 224780, + [SMALL_STATE(7107)] = 224787, + [SMALL_STATE(7108)] = 224794, + [SMALL_STATE(7109)] = 224801, + [SMALL_STATE(7110)] = 224808, + [SMALL_STATE(7111)] = 224815, + [SMALL_STATE(7112)] = 224822, + [SMALL_STATE(7113)] = 224829, + [SMALL_STATE(7114)] = 224836, + [SMALL_STATE(7115)] = 224843, + [SMALL_STATE(7116)] = 224850, + [SMALL_STATE(7117)] = 224857, + [SMALL_STATE(7118)] = 224864, + [SMALL_STATE(7119)] = 224871, + [SMALL_STATE(7120)] = 224878, + [SMALL_STATE(7121)] = 224885, + [SMALL_STATE(7122)] = 224892, + [SMALL_STATE(7123)] = 224899, + [SMALL_STATE(7124)] = 224906, + [SMALL_STATE(7125)] = 224913, + [SMALL_STATE(7126)] = 224920, + [SMALL_STATE(7127)] = 224927, + [SMALL_STATE(7128)] = 224934, + [SMALL_STATE(7129)] = 224941, + [SMALL_STATE(7130)] = 224948, + [SMALL_STATE(7131)] = 224955, + [SMALL_STATE(7132)] = 224962, + [SMALL_STATE(7133)] = 224969, + [SMALL_STATE(7134)] = 224976, + [SMALL_STATE(7135)] = 224983, + [SMALL_STATE(7136)] = 224990, + [SMALL_STATE(7137)] = 224997, + [SMALL_STATE(7138)] = 225004, + [SMALL_STATE(7139)] = 225011, + [SMALL_STATE(7140)] = 225018, + [SMALL_STATE(7141)] = 225025, + [SMALL_STATE(7142)] = 225032, + [SMALL_STATE(7143)] = 225039, + [SMALL_STATE(7144)] = 225046, + [SMALL_STATE(7145)] = 225053, + [SMALL_STATE(7146)] = 225060, + [SMALL_STATE(7147)] = 225067, + [SMALL_STATE(7148)] = 225074, + [SMALL_STATE(7149)] = 225081, + [SMALL_STATE(7150)] = 225088, + [SMALL_STATE(7151)] = 225095, + [SMALL_STATE(7152)] = 225102, + [SMALL_STATE(7153)] = 225109, + [SMALL_STATE(7154)] = 225116, + [SMALL_STATE(7155)] = 225123, + [SMALL_STATE(7156)] = 225130, + [SMALL_STATE(7157)] = 225137, + [SMALL_STATE(7158)] = 225144, + [SMALL_STATE(7159)] = 225151, + [SMALL_STATE(7160)] = 225158, + [SMALL_STATE(7161)] = 225165, + [SMALL_STATE(7162)] = 225172, + [SMALL_STATE(7163)] = 225179, + [SMALL_STATE(7164)] = 225186, + [SMALL_STATE(7165)] = 225193, + [SMALL_STATE(7166)] = 225200, + [SMALL_STATE(7167)] = 225207, + [SMALL_STATE(7168)] = 225214, + [SMALL_STATE(7169)] = 225221, + [SMALL_STATE(7170)] = 225228, + [SMALL_STATE(7171)] = 225235, + [SMALL_STATE(7172)] = 225242, + [SMALL_STATE(7173)] = 225249, + [SMALL_STATE(7174)] = 225256, + [SMALL_STATE(7175)] = 225263, + [SMALL_STATE(7176)] = 225270, + [SMALL_STATE(7177)] = 225277, + [SMALL_STATE(7178)] = 225284, + [SMALL_STATE(7179)] = 225291, + [SMALL_STATE(7180)] = 225298, + [SMALL_STATE(7181)] = 225305, + [SMALL_STATE(7182)] = 225312, + [SMALL_STATE(7183)] = 225319, + [SMALL_STATE(7184)] = 225326, + [SMALL_STATE(7185)] = 225333, + [SMALL_STATE(7186)] = 225340, + [SMALL_STATE(7187)] = 225347, + [SMALL_STATE(7188)] = 225354, + [SMALL_STATE(7189)] = 225361, + [SMALL_STATE(7190)] = 225368, + [SMALL_STATE(7191)] = 225375, + [SMALL_STATE(7192)] = 225382, + [SMALL_STATE(7193)] = 225389, + [SMALL_STATE(7194)] = 225396, + [SMALL_STATE(7195)] = 225403, + [SMALL_STATE(7196)] = 225410, + [SMALL_STATE(7197)] = 225417, + [SMALL_STATE(7198)] = 225424, + [SMALL_STATE(7199)] = 225431, + [SMALL_STATE(7200)] = 225438, + [SMALL_STATE(7201)] = 225445, + [SMALL_STATE(7202)] = 225452, + [SMALL_STATE(7203)] = 225459, + [SMALL_STATE(7204)] = 225466, + [SMALL_STATE(7205)] = 225473, + [SMALL_STATE(7206)] = 225480, + [SMALL_STATE(7207)] = 225487, + [SMALL_STATE(7208)] = 225494, + [SMALL_STATE(7209)] = 225501, + [SMALL_STATE(7210)] = 225508, + [SMALL_STATE(7211)] = 225515, + [SMALL_STATE(7212)] = 225522, + [SMALL_STATE(7213)] = 225529, + [SMALL_STATE(7214)] = 225536, + [SMALL_STATE(7215)] = 225543, + [SMALL_STATE(7216)] = 225550, + [SMALL_STATE(7217)] = 225557, + [SMALL_STATE(7218)] = 225564, + [SMALL_STATE(7219)] = 225571, + [SMALL_STATE(7220)] = 225578, + [SMALL_STATE(7221)] = 225585, + [SMALL_STATE(7222)] = 225592, + [SMALL_STATE(7223)] = 225599, + [SMALL_STATE(7224)] = 225606, + [SMALL_STATE(7225)] = 225613, + [SMALL_STATE(7226)] = 225620, + [SMALL_STATE(7227)] = 225627, + [SMALL_STATE(7228)] = 225634, + [SMALL_STATE(7229)] = 225641, + [SMALL_STATE(7230)] = 225648, + [SMALL_STATE(7231)] = 225655, + [SMALL_STATE(7232)] = 225662, + [SMALL_STATE(7233)] = 225669, + [SMALL_STATE(7234)] = 225676, + [SMALL_STATE(7235)] = 225683, + [SMALL_STATE(7236)] = 225690, + [SMALL_STATE(7237)] = 225697, + [SMALL_STATE(7238)] = 225704, + [SMALL_STATE(7239)] = 225711, + [SMALL_STATE(7240)] = 225718, + [SMALL_STATE(7241)] = 225725, + [SMALL_STATE(7242)] = 225732, + [SMALL_STATE(7243)] = 225739, + [SMALL_STATE(7244)] = 225746, + [SMALL_STATE(7245)] = 225753, + [SMALL_STATE(7246)] = 225760, + [SMALL_STATE(7247)] = 225767, + [SMALL_STATE(7248)] = 225774, + [SMALL_STATE(7249)] = 225781, + [SMALL_STATE(7250)] = 225788, + [SMALL_STATE(7251)] = 225795, + [SMALL_STATE(7252)] = 225802, + [SMALL_STATE(7253)] = 225809, + [SMALL_STATE(7254)] = 225816, + [SMALL_STATE(7255)] = 225823, + [SMALL_STATE(7256)] = 225830, + [SMALL_STATE(7257)] = 225837, + [SMALL_STATE(7258)] = 225844, + [SMALL_STATE(7259)] = 225851, + [SMALL_STATE(7260)] = 225858, + [SMALL_STATE(7261)] = 225865, + [SMALL_STATE(7262)] = 225872, + [SMALL_STATE(7263)] = 225879, + [SMALL_STATE(7264)] = 225886, + [SMALL_STATE(7265)] = 225893, + [SMALL_STATE(7266)] = 225900, + [SMALL_STATE(7267)] = 225907, + [SMALL_STATE(7268)] = 225914, + [SMALL_STATE(7269)] = 225921, + [SMALL_STATE(7270)] = 225928, + [SMALL_STATE(7271)] = 225935, + [SMALL_STATE(7272)] = 225942, + [SMALL_STATE(7273)] = 225949, + [SMALL_STATE(7274)] = 225956, + [SMALL_STATE(7275)] = 225963, + [SMALL_STATE(7276)] = 225970, + [SMALL_STATE(7277)] = 225977, + [SMALL_STATE(7278)] = 225984, + [SMALL_STATE(7279)] = 225991, + [SMALL_STATE(7280)] = 225998, + [SMALL_STATE(7281)] = 226005, + [SMALL_STATE(7282)] = 226012, + [SMALL_STATE(7283)] = 226019, + [SMALL_STATE(7284)] = 226026, + [SMALL_STATE(7285)] = 226033, + [SMALL_STATE(7286)] = 226040, + [SMALL_STATE(7287)] = 226047, + [SMALL_STATE(7288)] = 226054, + [SMALL_STATE(7289)] = 226061, + [SMALL_STATE(7290)] = 226068, + [SMALL_STATE(7291)] = 226075, + [SMALL_STATE(7292)] = 226082, + [SMALL_STATE(7293)] = 226089, + [SMALL_STATE(7294)] = 226096, + [SMALL_STATE(7295)] = 226103, + [SMALL_STATE(7296)] = 226110, + [SMALL_STATE(7297)] = 226117, + [SMALL_STATE(7298)] = 226124, + [SMALL_STATE(7299)] = 226131, + [SMALL_STATE(7300)] = 226138, + [SMALL_STATE(7301)] = 226145, + [SMALL_STATE(7302)] = 226152, + [SMALL_STATE(7303)] = 226159, + [SMALL_STATE(7304)] = 226166, + [SMALL_STATE(7305)] = 226173, + [SMALL_STATE(7306)] = 226180, + [SMALL_STATE(7307)] = 226187, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -370627,4701 +404842,4876 @@ static const TSParseActionEntry ts_parse_actions[] = { [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4961), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6938), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4280), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6936), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5806), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4053), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2990), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6927), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5143), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5830), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6908), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5856), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3513), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2876), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2737), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3270), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4748), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4376), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4364), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4406), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5518), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5971), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6835), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5984), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6831), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6821), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6819), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6684), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6049), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5430), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3428), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3123), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6760), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2901), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3817), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3754), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6079), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5502), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5020), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6745), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6740), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3489), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4168), - [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4953), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6826), - [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6796), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4269), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6823), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6283), - [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3105), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), - [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5605), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6016), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6515), - [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6286), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6858), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), - [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6512), - [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6511), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6814), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6792), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6021), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5303), - [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5041), - [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6859), - [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6860), - [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), - [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5272), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7307), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4461), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7306), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6676), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4271), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3398), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3142), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7304), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5345), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6730), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7301), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6726), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4101), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3323), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3271), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3777), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5008), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4680), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4679), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4670), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6105), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6724), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7295), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6715), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7289), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7288), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7283), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7282), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6714), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5771), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3435), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3494), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7274), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3339), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4212), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4135), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6712), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5740), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5306), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7260), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7257), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4080), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4419), + [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5215), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6812), + [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7024), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4580), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6820), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6406), + [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3377), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3203), + [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5822), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6373), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6905), + [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6362), + [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7226), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), + [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6915), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6917), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6818), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7023), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), + [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6378), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5779), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5332), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7227), + [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7228), + [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), + [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), - [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4939), - [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6574), - [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4345), - [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), - [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6571), - [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), - [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4335), - [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6215), - [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2988), - [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2284), - [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5704), - [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6361), - [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), - [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6772), - [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6071), - [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6897), - [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), - [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6774), - [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6775), - [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6410), - [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), - [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6371), - [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), - [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5455), - [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5026), - [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6884), - [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6885), - [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), - [293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 3, .production_id = 66), - [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), - [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), - [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), - [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), - [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), - [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), - [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), - [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), - [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), - [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), - [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), - [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), - [319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 4, .production_id = 66), - [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), - [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), - [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), - [327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1696), - [330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4939), - [333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6574), - [336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4345), + [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5265), + [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6759), + [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4486), + [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), + [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6757), + [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33), + [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4492), + [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6644), + [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3393), + [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3159), + [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6055), + [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6643), + [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), + [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7180), + [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6657), + [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), + [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7265), + [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), + [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7179), + [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7138), + [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6751), + [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), + [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6630), + [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), + [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5614), + [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5319), + [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7252), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7253), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), + [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), + [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), + [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 3, .production_id = 66), + [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), + [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), + [307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 4, .production_id = 66), + [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), + [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), + [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), + [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), + [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), + [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), + [327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1305), + [330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5265), + [333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6759), + [336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4486), [339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), - [341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6571), - [344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6215), - [347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(116), - [350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1486), - [353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1487), - [356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1486), - [359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1060), - [362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4053), - [365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1095), - [368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(362), - [371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2988), - [374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2284), - [377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6927), - [380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5143), - [383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5830), - [386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6908), - [389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5856), - [392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3513), - [395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(65), - [398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1329), - [401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2876), - [404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2015), - [407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2737), - [410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3270), - [413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4748), - [416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4376), - [419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4364), - [422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4406), - [425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5704), - [428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6361), - [431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1604), - [434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6772), - [437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6071), - [440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(173), - [443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6897), - [446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1284), - [449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6774), - [452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6775), - [455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6410), - [458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1523), - [461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1451), - [464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3394), - [467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6049), - [470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5430), - [473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3428), - [476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3123), - [479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6760), - [482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2901), - [485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3817), - [488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3754), - [491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1253), - [494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1083), - [497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6371), - [500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1545), - [503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1446), - [506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5455), - [509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5026), - [512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6884), - [515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6885), - [518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1429), - [521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1607), - [524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1566), - [527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3489), - [530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4168), - [533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2768), - [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), - [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), - [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4770), - [548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4768), - [550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), - [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 1), - [558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), - [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), - [562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), - [566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), - [572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4941), - [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4947), - [580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), - [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4937), - [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6455), - [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4213), - [588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 2), - [590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6406), - [592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5840), - [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3063), - [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), - [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5781), - [604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6319), - [606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), - [608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6892), - [610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5865), - [612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6909), - [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), - [618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6895), - [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6901), - [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6460), - [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), - [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6315), - [628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), - [630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5292), - [632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5024), - [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6910), - [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6899), - [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), - [640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), - [642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 1), - [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), - [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), - [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1712), - [667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4937), - [670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6455), - [673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4213), - [676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6406), - [679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5840), - [682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(890), - [685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3063), - [688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2219), - [691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(72), - [694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5781), - [697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6319), - [700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1627), - [703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6892), - [706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5865), - [709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(171), - [712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6909), - [715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1273), - [718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6895), - [721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6901), - [724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6460), - [727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1254), - [730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6315), - [733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1419), - [736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5292), - [739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5024), - [742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6910), - [745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6899), - [748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1420), - [751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1629), - [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), - [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), - [766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), - [768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1698), - [771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4961), - [774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6938), - [777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4280), - [780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6936), - [783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5806), - [786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(543), - [789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2990), - [792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2218), - [795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(44), - [798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5518), - [801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5971), - [804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1515), - [807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6835), - [810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5984), - [813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(185), - [816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6831), - [819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1272), - [822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6821), - [825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6819), - [828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6684), - [831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1257), - [834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6079), - [837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1406), - [840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5502), - [843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5020), - [846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6745), - [849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6740), - [852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1410), - [855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1565), - [858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1684), - [861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4953), - [864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6826), - [867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4269), - [870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6823), - [873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6283), - [876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(542), - [879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3105), - [882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2263), - [885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(58), - [888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5605), - [891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6016), - [894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1501), - [897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6515), - [900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6286), - [903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(182), - [906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6858), - [909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1277), - [912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6512), - [915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6511), - [918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6814), - [921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1260), - [924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6021), - [927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1439), - [930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5303), - [933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5041), - [936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6859), - [939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6860), - [942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1437), - [945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1504), - [948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), - [958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3), - [960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3), - [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), - [968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6261), - [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), - [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6231), - [974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, .production_id = 10), - [976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, .production_id = 10), - [978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, .production_id = 10), - [980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, .production_id = 10), - [982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1688), - [985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), - [987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(321), - [990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1486), - [993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1486), - [996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1658), - [999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), - [1001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1658), - [1004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(362), - [1007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2988), - [1010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2876), - [1013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6927), - [1016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5143), - [1019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6261), - [1022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6908), - [1025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(65), - [1028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1291), - [1031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2015), - [1034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2737), - [1037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3270), - [1040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4748), - [1043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4376), - [1046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4364), - [1049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4406), - [1052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5704), - [1055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6361), - [1058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6071), - [1061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(173), - [1064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6897), - [1067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1284), - [1070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6774), - [1073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6775), - [1076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6410), - [1079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1523), - [1082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1451), - [1085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3394), - [1088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6049), - [1091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5430), - [1094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3428), - [1097] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3123), - [1100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6760), - [1103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2901), - [1106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3754), - [1109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6231), - [1112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6371), - [1115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1545), - [1118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1446), - [1121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1429), - [1124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1607), - [1127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1566), - [1130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3489), - [1133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4168), - [1136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2768), - [1139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 2), - [1141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 2), - [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), - [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), - [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), - [1149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1702), - [1152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(542), - [1155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3105), - [1158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(58), - [1161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5605), - [1164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6016), - [1167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6286), - [1170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(182), - [1173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6858), - [1176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1277), - [1179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6512), - [1182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6511), - [1185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6814), - [1188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6021), - [1191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1439), - [1194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1437), - [1197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1504), - [1200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1692), - [1203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(543), - [1206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2990), - [1209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(44), - [1212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5518), - [1215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5971), - [1218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5984), - [1221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(185), - [1224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6831), - [1227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1272), - [1230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6821), - [1233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6819), - [1236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6684), - [1239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6079), - [1242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1406), - [1245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1410), - [1248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1565), - [1251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1694), - [1254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(890), - [1257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3063), - [1260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(72), - [1263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5781), - [1266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6319), - [1269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5865), - [1272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(171), - [1275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6909), - [1278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1273), - [1281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6895), - [1284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6901), - [1287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6460), - [1290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6315), - [1293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1419), - [1296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1420), - [1299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1629), - [1302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), - [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [1306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3106), - [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5614), - [1312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6293), - [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6333), - [1316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [1318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6916), - [1320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), - [1322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6478), - [1324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6516), - [1326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6507), - [1328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6288), - [1330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), - [1332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), - [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), - [1336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1709), - [1339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1109), - [1342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3106), - [1345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(61), - [1348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5614), - [1351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6293), - [1354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6333), - [1357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(170), - [1360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6916), - [1363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1275), - [1366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6478), - [1369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6516), - [1372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6507), - [1375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6288), - [1378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1430), - [1381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1433), - [1384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1680), - [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), - [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6360), - [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6810), - [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3077), - [1397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6874), - [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), - [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), - [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6655), - [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [1419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), - [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5096), - [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3318), - [1427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4731), - [1429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4405), - [1431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4404), - [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4357), - [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [1437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), - [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), - [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6265), - [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5461), - [1445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), - [1447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3749), - [1449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), - [1451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), - [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3508), - [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4159), - [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [1459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), - [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5660), - [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), - [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [1467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), - [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [1475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), - [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), - [1481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4468), - [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4784), - [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4399), - [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4400), - [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4401), - [1491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), - [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6595), - [1495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3737), - [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2632), - [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3391), - [1501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6505), - [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4240), - [1505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), - [1507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6732), - [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), - [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4302), - [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6374), - [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), - [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6524), - [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), - [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4053), - [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3055), - [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4515), - [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6520), - [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3286), - [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3371), - [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4785), - [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4428), - [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4422), - [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4418), - [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3366), - [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6815), - [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6416), - [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3587), - [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5384), - [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), - [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5014), - [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6917), - [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), - [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), - [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), - [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), - [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), - [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), - [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), - [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), - [1573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 66), - [1575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, .production_id = 66), - [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), - [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), - [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), - [1583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3391), - [1586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6505), - [1589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4240), - [1592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), - [1594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6732), - [1597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6374), - [1600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4042), - [1603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6524), - [1606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2450), - [1609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4053), - [1612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4053), - [1615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3055), - [1618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2876), - [1621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6927), - [1624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4515), - [1627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6360), - [1630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6908), - [1633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5856), - [1636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6520), - [1639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2015), - [1642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3286), - [1645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3371), - [1648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4785), - [1651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4428), - [1654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4422), - [1657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4418), - [1660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3366), - [1663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6815), - [1666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2901), - [1669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3817), - [1672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6416), - [1675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3587), - [1678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5384), - [1681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1083), - [1684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1722), - [1687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5014), - [1690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6917), - [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6405), - [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4319), - [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6931), - [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6074), - [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3101), - [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4203), - [1705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6926), - [1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5269), - [1709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), - [1711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5032), - [1713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6898), - [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), - [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), - [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), - [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), - [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), - [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), - [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), - [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), - [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), - [1733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6405), - [1736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4319), - [1739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6931), - [1742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6074), - [1745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3101), - [1748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), - [1750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6926), - [1753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5269), - [1756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1724), - [1759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5032), - [1762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6898), - [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), - [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6546), - [1769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4201), - [1771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 1), - [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6428), - [1775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6375), - [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3035), - [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6561), - [1781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5298), - [1783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), - [1785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5047), - [1787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6922), - [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), - [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), - [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), - [1795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 2), - [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), - [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4332), - [1801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6546), - [1804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4201), - [1807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6428), - [1810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6375), - [1813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3035), - [1816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6561), - [1819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5298), - [1822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1723), - [1825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5047), - [1828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6922), - [1831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2555), - [1833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6272), - [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), - [1837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6580), - [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2607), - [1841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), - [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6065), - [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [1847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5649), - [1849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6262), - [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6245), - [1853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [1855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6883), - [1857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), - [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6581), - [1861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6582), - [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6464), - [1865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6267), - [1867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), - [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), - [1871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), - [1873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2607), - [1876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(321), - [1879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1486), - [1882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1486), - [1885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1658), - [1888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(362), - [1891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(5143), - [1894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6261), - [1897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(65), - [1900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1291), - [1903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6272), - [1906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(5704), - [1909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6361), - [1912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1604), - [1915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6772), - [1918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6071), - [1921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(173), - [1924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6897), - [1927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1284), - [1930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6774), - [1933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6775), - [1936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6410), - [1939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1523), - [1942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1451), - [1945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(3394), - [1948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6049), - [1951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(5430), - [1954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(3428), - [1957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6231), - [1960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6371), - [1963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1545), - [1966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1446), - [1969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1429), - [1972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1607), - [1975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1566), - [1978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(3489), - [1981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(4168), - [1984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2768), - [1987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), - [1989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), - [1991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2580), - [1994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6065), - [1997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(32), - [2000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(5649), - [2003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6262), - [2006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1539), - [2009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6580), - [2012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6245), - [2015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(178), - [2018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6883), - [2021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1279), - [2024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6581), - [2027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6582), - [2030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6464), - [2033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6267), - [2036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1423), - [2039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1422), - [2042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1540), - [2045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2555), - [2048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1109), - [2051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(61), - [2054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(5614), - [2057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6293), - [2060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6333), - [2063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(170), - [2066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6916), - [2069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1275), - [2072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6478), - [2075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6516), - [2078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6507), - [2081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6288), - [2084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1430), - [2087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1433), - [2090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1680), - [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2553), - [2095] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2577), - [2098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(543), - [2101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(44), - [2104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(5518), - [2107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(5971), - [2110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1515), - [2113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6835), - [2116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(5984), - [2119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(185), - [2122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6831), - [2125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1272), - [2128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6821), - [2131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6819), - [2134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6684), - [2137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6079), - [2140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1406), - [2143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1410), - [2146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1565), - [2149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2546), - [2152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(542), - [2155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(58), - [2158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(5605), - [2161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6016), - [2164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1501), - [2167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6515), - [2170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6286), - [2173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(182), - [2176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6858), - [2179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1277), - [2182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6512), - [2185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6511), - [2188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6814), - [2191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6021), - [2194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1439), - [2197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1437), - [2200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1504), - [2203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2553), - [2206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(890), - [2209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(72), - [2212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(5781), - [2215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6319), - [2218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1627), - [2221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6892), - [2224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(5865), - [2227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(171), - [2230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6909), - [2233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1273), - [2236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6895), - [2239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6901), - [2242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6460), - [2245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6315), - [2248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1419), - [2251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1420), - [2254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1629), - [2257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 8), - [2259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 8), - [2261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6363), - [2263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), - [2265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), - [2267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(6363), - [2270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), - [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [2274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_try_statement, 3, .production_id = 8), - [2276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_try_statement, 3, .production_id = 8), - [2278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_try_statement, 4, .production_id = 37), - [2280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_try_statement, 4, .production_id = 37), - [2282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(6103), - [2285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6305), - [2287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2), - [2289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2), - [2291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 3, .production_id = 129), - [2293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 3, .production_id = 129), - [2295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(6305), - [2298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6097), - [2300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6103), - [2302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3), - [2304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3), - [2306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2262), - [2308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 4, .production_id = 36), - [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [2312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), - [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [2316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, .production_id = 36), - [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5156), - [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [2324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), - [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), - [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6365), - [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5294), - [2332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), - [2334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), - [2336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), - [2338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3497), - [2340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4172), - [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), - [2344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(6097), - [2347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_range_loop, 9, .production_id = 167), - [2349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_range_loop, 9, .production_id = 167), - [2351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 3, .production_id = 54), - [2353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 3, .production_id = 54), - [2355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_return_statement, 2), - [2357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_return_statement, 2), - [2359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 2), - [2361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 2), - [2363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), - [2365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), - [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [2369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6311), - [2371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 148), - [2373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 148), - [2375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), - [2377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), - [2379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), - [2381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), - [2383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), - [2385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [2387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 146), - [2389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 146), - [2391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2), - [2393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 149), - [2395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 149), - [2397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 122), - [2399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 122), - [2401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_statement, 2), - [2403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_statement, 2), - [2405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, .production_id = 92), - [2407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, .production_id = 92), - [2409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 154), - [2411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 154), - [2413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 155), - [2415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 155), - [2417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 156), - [2419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 156), - [2421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1), - [2423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), - [2425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 157), - [2427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 157), - [2429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 158), - [2431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 158), - [2433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 123), - [2435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 123), - [2437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 41), - [2439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 41), - [2441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), - [2443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 161), - [2445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 161), - [2447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 42), - [2449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 42), - [2451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 42), - [2453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 42), - [2455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 166), - [2457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 166), - [2459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_range_loop, 8, .production_id = 163), - [2461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_range_loop, 8, .production_id = 163), - [2463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), - [2465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), - [2467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 109), - [2469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 109), - [2471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 73), - [2473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 73), - [2475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 165), - [2477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 165), - [2479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 164), - [2481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 164), - [2483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 162), - [2485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 162), - [2487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, .production_id = 43), - [2489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, .production_id = 43), - [2491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, .production_id = 45), - [2493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, .production_id = 45), - [2495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), - [2497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), - [2499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3), - [2501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3), - [2503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_return_statement, 3), - [2505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_return_statement, 3), - [2507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_yield_statement, 3), - [2509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_yield_statement, 3), - [2511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, .production_id = 50), - [2513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, .production_id = 50), - [2515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 141), - [2517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 141), - [2519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 85), - [2521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 85), - [2523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), - [2525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 5, .production_id = 139), - [2527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 5, .production_id = 139), - [2529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), - [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [2535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), - [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5077), - [2541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), - [2543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4431), - [2545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4725), - [2547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4362), - [2549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4392), - [2551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4387), - [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [2555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), - [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), - [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6289), - [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5444), - [2563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3881), - [2565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2878), - [2567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6830), - [2569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3726), - [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [2573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), - [2575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), - [2577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3499), - [2579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4171), - [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), - [2583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 67), - [2585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 67), - [2587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 2, .production_id = 8), - [2589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 2, .production_id = 8), - [2591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 9), - [2593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 9), - [2595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_declaration, 3), - [2597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_declaration, 3), - [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), - [2601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 9), - [2603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 9), - [2605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, .production_id = 39), - [2607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, .production_id = 39), - [2609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 3, .production_id = 31), - [2611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 3, .production_id = 31), - [2613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 4, .production_id = 65), - [2615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 4, .production_id = 65), - [2617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_include, 3, .production_id = 30), - [2619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_include, 3, .production_id = 30), - [2621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, .production_id = 66), - [2623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, .production_id = 66), - [2625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_linkage_specification, 3, .production_id = 35), - [2627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_linkage_specification, 3, .production_id = 35), - [2629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 4, .production_id = 64), - [2631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 4, .production_id = 64), - [2633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 3, .production_id = 57), - [2635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 3, .production_id = 57), - [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [2639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 3, .production_id = 9), - [2641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 3, .production_id = 9), - [2643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, .production_id = 140), - [2645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, .production_id = 140), - [2647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, .production_id = 55), - [2649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, .production_id = 55), - [2651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_instantiation, 3, .production_id = 5), - [2653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_instantiation, 3, .production_id = 5), - [2655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_assert_declaration, 7, .production_id = 159), - [2657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_assert_declaration, 7, .production_id = 159), - [2659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_declaration, 2, .production_id = 19), - [2661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_declaration, 2, .production_id = 19), - [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [2665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_definition, 2, .production_id = 18), - [2667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_definition, 2, .production_id = 18), - [2669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concept_definition, 5, .production_id = 9), - [2671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concept_definition, 5, .production_id = 9), - [2673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_assert_declaration, 5, .production_id = 131), - [2675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_assert_declaration, 5, .production_id = 131), - [2677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alias_declaration, 5, .production_id = 130), - [2679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias_declaration, 5, .production_id = 130), - [2681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_alias_definition, 5, .production_id = 9), - [2683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_alias_definition, 5, .production_id = 9), - [2685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 2, .production_id = 19), - [2687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 2, .production_id = 19), - [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [2691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__empty_declaration, 2), - [2693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__empty_declaration, 2), - [2695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_declaration, 3, .production_id = 5), - [2697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_declaration, 3, .production_id = 5), - [2699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 2, .production_id = 19), - [2701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 2, .production_id = 19), - [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), - [2705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 106), - [2707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 106), - [2709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 3, .production_id = 5), - [2711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 3, .production_id = 5), - [2713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 66), - [2715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 66), - [2717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 3, .production_id = 5), - [2719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 3, .production_id = 5), - [2721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 105), - [2723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 105), - [2725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 2, .production_id = 3), - [2727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 2, .production_id = 3), - [2729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 5, .production_id = 104), - [2731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 5, .production_id = 104), - [2733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 4, .production_id = 103), - [2735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 4, .production_id = 103), - [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [2739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 4, .production_id = 99), - [2741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 4, .production_id = 99), - [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), - [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4991), - [2747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_method_clause, 3), - [2749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_method_clause, 3), - [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), - [2753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_method_clause, 3), - [2755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_method_clause, 3), - [2757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, .production_id = 94), - [2759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, .production_id = 94), - [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [2763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_declaration, 3, .production_id = 47), - [2765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_declaration, 3, .production_id = 47), - [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [2769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), - [2771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), - [2773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_declaration, 4), - [2775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_declaration, 4), - [2777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 3, .production_id = 63), - [2779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 3, .production_id = 63), - [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), - [2783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), - [2785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), - [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4111), - [2789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_declaration, 4, .production_id = 47), - [2791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_declaration, 4, .production_id = 47), - [2793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_instantiation, 4, .production_id = 48), - [2795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_instantiation, 4, .production_id = 48), - [2797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_definition, 3, .production_id = 63), - [2799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_definition, 3, .production_id = 63), - [2801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 2, .production_id = 18), - [2803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 2, .production_id = 18), - [2805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3451), - [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4520), - [2809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3139), - [2811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5465), - [2813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6903), - [2815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4283), - [2817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), - [2819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6912), - [2821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6911), - [2823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5300), - [2825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6891), - [2827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6925), - [2829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6923), - [2831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2688), - [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [2835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), - [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [2839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), - [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5091), - [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [2845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5801), - [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [2849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), - [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), - [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6271), - [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5398), - [2857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3000), - [2859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), - [2861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), - [2863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3496), - [2865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4169), - [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), - [2869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), - [2871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), - [2873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), - [2875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5314), - [2877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6919), - [2879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), - [2881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6924), - [2883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6918), - [2885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), - [2887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5392), - [2889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6626), - [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [2893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), - [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [2897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), - [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5080), - [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [2903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), - [2905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), - [2907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), - [2909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3483), - [2911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2435), - [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [2917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4135), - [2919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4133), - [2921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3539), - [2923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2319), - [2925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_init_statement, 1), SHIFT(2419), - [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [2930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_statement, 1), - [2932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_init_statement, 1), SHIFT(5143), - [2935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_statement, 1), - [2937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_init_statement, 1), SHIFT(6272), - [2940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_init_statement, 1), SHIFT(6231), - [2943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1), SHIFT(2419), - [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [2948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 1), SHIFT(5143), - [2951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1), SHIFT(6272), - [2954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1), SHIFT(6231), - [2957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 2), SHIFT(2419), - [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [2962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 2), SHIFT(5143), - [2965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 2), SHIFT(6272), - [2968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 2), SHIFT(6231), - [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [3001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3230), - [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), - [3005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2838), - [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5131), - [3009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3184), - [3011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4767), - [3013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4385), - [3015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4391), - [3017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4398), - [3019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3723), - [3021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2699), - [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6436), - [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4871), - [3027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4871), - [3029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4742), - [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6506), - [3033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2419), - [3035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2638), - [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [3039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2658), - [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [3043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), - [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5136), - [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [3051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), - [3053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), - [3055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), - [3057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3512), - [3059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2810), - [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [3063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), - [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5166), - [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [3073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), - [3075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), - [3077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), - [3079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3479), - [3081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3273), - [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5626), - [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4130), - [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), - [3093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3326), - [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4665), - [3097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), - [3099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1), REDUCE(aux_sym_attributed_declarator_repeat1, 1), - [3102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1), REDUCE(aux_sym_attributed_declarator_repeat1, 1), - [3105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1), - [3107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1), - [3109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1), - [3111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1), - [3113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 4), - [3115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 4), - [3117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 3), - [3119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 3), - [3121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(6260), - [3124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6260), - [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4807), - [3130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2420), - [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4921), - [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4852), - [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4801), - [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4853), - [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4840), - [3152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), - [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4778), - [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4776), - [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5194), - [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5209), - [3170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), - [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4758), - [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4819), - [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4805), - [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4891), - [3188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), - [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), - [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), - [3196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5015), - [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), - [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4996), - [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4983), - [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4730), - [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), - [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), - [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4747), - [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), - [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), - [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), - [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), - [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), - [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [3226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(2419), - [3229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(321), - [3232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(1486), - [3235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(1486), - [3238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(1658), - [3241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(3049), - [3244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(5143), - [3247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(1533), - [3250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), - [3252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(1291), - [3255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(6272), - [3258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(1523), - [3261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(1451), - [3264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(3394), - [3267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(6049), - [3270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(5430), - [3273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(3428), - [3276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(5015), - [3279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(6231), - [3282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(1545), - [3285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(1566), - [3288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(3489), - [3291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(4168), - [3294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(2768), - [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), - [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6412), - [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), - [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), - [3307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), - [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4645), - [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6872), - [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), - [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6644), - [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), - [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), - [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6829), - [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), - [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), - [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), - [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), - [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), - [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), - [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), - [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), - [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), - [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), - [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6076), - [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6757), + [344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6644), + [347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(119), + [350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1565), + [353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1568), + [356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1565), + [359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1061), + [362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4271), + [365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1106), + [368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(455), + [371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3393), + [374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3159), + [377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7304), + [380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5345), + [383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6730), + [386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7301), + [389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6726), + [392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4101), + [395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(38), + [398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1354), + [401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3323), + [404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2211), + [407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3271), + [410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3777), + [413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5008), + [416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4680), + [419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4679), + [422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4670), + [425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6055), + [428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6643), + [431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1761), + [434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7180), + [437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6657), + [440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(293), + [443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7265), + [446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1331), + [449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7179), + [452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7138), + [455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6751), + [458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1601), + [461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1496), + [464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3403), + [467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6714), + [470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5771), + [473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3435), + [476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3494), + [479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7274), + [482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3339), + [485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4212), + [488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4135), + [491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1287), + [494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(336), + [497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6630), + [500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1626), + [503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1512), + [506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5614), + [509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5319), + [512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7252), + [515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7253), + [518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1510), + [521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1744), + [524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1654), + [527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4080), + [530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4419), + [533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3109), + [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), + [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), + [548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5205), + [550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6814), + [552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4479), + [554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 1), + [556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6744), + [558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6551), + [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3367), + [564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3173), + [566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5934), + [570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6375), + [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), + [574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7057), + [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6545), + [578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), + [580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7277), + [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), + [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7055), + [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7054), + [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6819), + [590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), + [592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6219), + [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), + [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5619), + [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5290), + [600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7278), + [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7267), + [604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), + [606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), + [608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 2), + [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), + [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), + [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5251), + [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5256), + [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5051), + [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5073), + [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), + [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), + [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), + [644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1290), + [647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5215), + [650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6812), + [653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4580), + [656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6820), + [659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6406), + [662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(843), + [665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3377), + [668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3203), + [671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(67), + [674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), + [676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5822), + [679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6373), + [682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1706), + [685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6905), + [688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6362), + [691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(271), + [694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7226), + [697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1333), + [700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6915), + [703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6917), + [706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6818), + [709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1284), + [712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6378), + [715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1525), + [718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5779), + [721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5332), + [724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7227), + [727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7228), + [730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1524), + [733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1710), + [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), + [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), + [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), + [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), + [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1299), + [757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5272), + [760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7307), + [763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4461), + [766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7306), + [769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6676), + [772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(851), + [775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3398), + [778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3142), + [781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(37), + [784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6105), + [787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6724), + [790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1600), + [793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7295), + [796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6715), + [799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(217), + [802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7289), + [805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1317), + [808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7288), + [811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7283), + [814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7282), + [817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1286), + [820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6712), + [823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1470), + [826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5740), + [829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5306), + [832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7260), + [835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7257), + [838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1486), + [841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1651), + [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), + [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), + [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 1), + [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), + [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), + [870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1292), + [873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5205), + [876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6814), + [879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(4479), + [882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6744), + [885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6551), + [888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(858), + [891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3367), + [894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(3173), + [897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(65), + [900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5934), + [903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6375), + [906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1546), + [909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7057), + [912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6545), + [915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(278), + [918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7277), + [921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1325), + [924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7055), + [927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7054), + [930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6819), + [933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1283), + [936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(6219), + [939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1479), + [942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5619), + [945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(5290), + [948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7278), + [951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(7267), + [954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1478), + [957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1559), + [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), + [962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3), + [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3), + [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), + [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6619), + [974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), + [976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6673), + [978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 2), + [980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 2), + [982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, .production_id = 10), + [984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, .production_id = 10), + [986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1311), + [989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), + [991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(334), + [994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1565), + [997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1565), + [1000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1720), + [1003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), + [1005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1720), + [1008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(455), + [1011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3393), + [1014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3323), + [1017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7304), + [1020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5345), + [1023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6619), + [1026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7301), + [1029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(38), + [1032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1362), + [1035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2211), + [1038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3271), + [1041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3777), + [1044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5008), + [1047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4680), + [1050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4679), + [1053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4670), + [1056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6055), + [1059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6643), + [1062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6657), + [1065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(293), + [1068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7265), + [1071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1331), + [1074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7179), + [1077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7138), + [1080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6751), + [1083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1601), + [1086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1496), + [1089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3403), + [1092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6714), + [1095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5771), + [1098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3435), + [1101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3494), + [1104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7274), + [1107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3339), + [1110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4135), + [1113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6673), + [1116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6630), + [1119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1626), + [1122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1512), + [1125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1510), + [1128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1744), + [1131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1654), + [1134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4080), + [1137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(4419), + [1140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3109), + [1143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, .production_id = 10), + [1145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, .production_id = 10), + [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), + [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), + [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), + [1153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1296), + [1156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(858), + [1159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3367), + [1162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(65), + [1165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5934), + [1168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6375), + [1171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6545), + [1174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(278), + [1177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7277), + [1180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1325), + [1183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7055), + [1186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7054), + [1189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6819), + [1192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6219), + [1195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1479), + [1198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1478), + [1201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1559), + [1204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1309), + [1207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(843), + [1210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3377), + [1213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(67), + [1216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5822), + [1219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6373), + [1222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6362), + [1225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(271), + [1228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7226), + [1231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1333), + [1234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6915), + [1237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6917), + [1240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6818), + [1243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6378), + [1246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1525), + [1249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1524), + [1252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1710), + [1255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1297), + [1258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(851), + [1261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3398), + [1264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(37), + [1267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6105), + [1270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6724), + [1273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6715), + [1276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(217), + [1279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7289), + [1282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1317), + [1285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7288), + [1288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7283), + [1291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7282), + [1294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6712), + [1297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1470), + [1300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1486), + [1303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1651), + [1306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1308), + [1309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1167), + [1312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(3397), + [1315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(58), + [1318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(5859), + [1321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6338), + [1324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6447), + [1327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(251), + [1330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(7284), + [1333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1334), + [1336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6978), + [1339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6977), + [1342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6866), + [1345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(6342), + [1348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1507), + [1351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1511), + [1354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1625), + [1357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), + [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [1361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3397), + [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [1365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5859), + [1367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6338), + [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6447), + [1371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), + [1373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7284), + [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), + [1377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6978), + [1379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6977), + [1381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6866), + [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6342), + [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), + [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), + [1389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), + [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), + [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6651), + [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7034), + [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3417), + [1401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7242), + [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [1413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), + [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), + [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6988), + [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), + [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5343), + [1429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3944), + [1431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5069), + [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4684), + [1435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4613), + [1437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4693), + [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), + [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), + [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6623), + [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5610), + [1449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3135), + [1451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4175), + [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), + [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), + [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4089), + [1459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4422), + [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), + [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5842), + [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4350), + [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), + [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), + [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), + [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4748), + [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4994), + [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4696), + [1491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4676), + [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4672), + [1495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2731), + [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6961), + [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4141), + [1501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), + [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4024), + [1505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6864), + [1507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4503), + [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), + [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6806), + [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4605), + [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6451), + [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4274), + [1521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7207), + [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), + [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4271), + [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3392), + [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4775), + [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7204), + [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3805), + [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4001), + [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5039), + [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4699), + [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4697), + [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4689), + [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4021), + [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7181), + [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6997), + [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4173), + [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5564), + [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), + [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5295), + [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7285), + [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), + [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), + [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), + [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), + [1569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 66), + [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2433), + [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2462), + [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), + [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2385), + [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), + [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), + [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2435), + [1585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, .production_id = 66), + [1587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4024), + [1590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6864), + [1593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4503), + [1596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), + [1598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6806), + [1601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6451), + [1604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4274), + [1607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(7207), + [1610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3225), + [1613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4271), + [1616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4271), + [1619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3392), + [1622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3323), + [1625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(7304), + [1628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4775), + [1631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6651), + [1634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(7301), + [1637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6726), + [1640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(7204), + [1643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2211), + [1646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3805), + [1649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4001), + [1652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5039), + [1655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4699), + [1658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4697), + [1661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4689), + [1664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4021), + [1667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(7181), + [1670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3339), + [1673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4212), + [1676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6997), + [1679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4173), + [1682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5564), + [1685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(336), + [1688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1790), + [1691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5295), + [1694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(7285), + [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), + [1699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 4, .production_id = 36), + [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), + [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [1707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, .production_id = 36), + [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5413), + [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6670), + [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), + [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6641), + [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5625), + [1727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2562), + [1729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), + [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), + [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4109), + [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4412), + [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [1739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2420), + [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), + [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), + [1749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5401), + [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [1753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6427), + [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [1757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), + [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), + [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6339), + [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5666), + [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2821), + [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), + [1769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), + [1771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4094), + [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4415), + [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6743), + [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4565), + [1781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7053), + [1783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6662), + [1785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3384), + [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), + [1789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7026), + [1791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5670), + [1793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), + [1795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5318), + [1797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7266), + [1799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6908), + [1801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4606), + [1803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 1), + [1805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6741), + [1807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6341), + [1809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3419), + [1811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7275), + [1813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5719), + [1815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), + [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5333), + [1819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7290), + [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), + [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), + [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), + [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), + [1831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6743), + [1834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4565), + [1837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(7053), + [1840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6662), + [1843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3384), + [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), + [1848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(7026), + [1851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5670), + [1854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1794), + [1857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5318), + [1860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(7266), + [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), + [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), + [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), + [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4009), + [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), + [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), + [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4491), + [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), + [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), + [1881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 2), + [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), + [1885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6908), + [1888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4606), + [1891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6741), + [1894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(6341), + [1897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(3419), + [1900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(7275), + [1903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5719), + [1906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1791), + [1909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(5333), + [1912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(7290), + [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4468), + [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), + [1919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), + [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [1923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), + [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [1927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), + [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5395), + [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6664), + [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), + [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), + [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6409), + [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5721), + [1945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2999), + [1947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), + [1949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), + [1951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4085), + [1953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4416), + [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [1957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), + [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [1963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), + [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [1967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), + [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5358), + [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [1973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), + [1975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), + [1977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), + [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4096), + [1981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2520), + [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6388), + [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [1987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6044), + [1989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6620), + [1991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), + [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7156), + [1995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6645), + [1997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), + [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7251), + [2001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), + [2003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7172), + [2005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7174), + [2007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6756), + [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6625), + [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), + [2013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), + [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), + [2017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2486), + [2019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2553), + [2021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2486), + [2024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(334), + [2027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1565), + [2030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1565), + [2033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1720), + [2036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1167), + [2039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(5345), + [2042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6619), + [2045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(58), + [2048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1362), + [2051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6670), + [2054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(5859), + [2057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6338), + [2060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1607), + [2063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7156), + [2066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6447), + [2069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(251), + [2072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7284), + [2075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1334), + [2078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6978), + [2081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6977), + [2084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6866), + [2087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1601), + [2090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1496), + [2093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(3403), + [2096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6714), + [2099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(5771), + [2102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(3435), + [2105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6673), + [2108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6342), + [2111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1626), + [2114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1507), + [2117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1511), + [2120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1625), + [2123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1654), + [2126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(4080), + [2129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(4419), + [2132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(3109), + [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), + [2137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2520), + [2140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6388), + [2143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(39), + [2146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6044), + [2149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6620), + [2152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6645), + [2155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(313), + [2158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7251), + [2161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1326), + [2164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7172), + [2167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7174), + [2170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6756), + [2173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6625), + [2176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1508), + [2179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1509), + [2182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1624), + [2185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2481), + [2187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2490), + [2189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2490), + [2192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(858), + [2195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(65), + [2198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(5934), + [2201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6375), + [2204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1546), + [2207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7057), + [2210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6545), + [2213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(278), + [2216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7277), + [2219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1325), + [2222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7055), + [2225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7054), + [2228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6819), + [2231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6219), + [2234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1479), + [2237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1478), + [2240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1559), + [2243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2481), + [2246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(851), + [2249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(37), + [2252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6105), + [2255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6724), + [2258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1600), + [2261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7295), + [2264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6715), + [2267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(217), + [2270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7289), + [2273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1317), + [2276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7288), + [2279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7283), + [2282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7282), + [2285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6712), + [2288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1470), + [2291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1486), + [2294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1651), + [2297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2553), + [2300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(843), + [2303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(67), + [2306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(5822), + [2309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6373), + [2312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1706), + [2315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6905), + [2318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6362), + [2321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(271), + [2324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7226), + [2327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1333), + [2330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6915), + [2333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6917), + [2336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6818), + [2339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6378), + [2342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1525), + [2345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1524), + [2348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1710), + [2351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2547), + [2354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(455), + [2357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(38), + [2360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6055), + [2363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6643), + [2366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1761), + [2369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7180), + [2372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6657), + [2375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(293), + [2378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7265), + [2381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1331), + [2384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7179), + [2387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(7138), + [2390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6751), + [2393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(6630), + [2396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1512), + [2399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1510), + [2402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1744), + [2405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 8), + [2407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 8), + [2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6490), + [2411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), + [2413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), + [2415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(6490), + [2418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1807), + [2420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_try_statement, 3, .production_id = 8), + [2422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_try_statement, 3, .production_id = 8), + [2424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_try_statement, 4, .production_id = 37), + [2426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_try_statement, 4, .production_id = 37), + [2428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), + [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), + [2432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2773), + [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5394), + [2436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3511), + [2438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3481), + [2440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5028), + [2442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4691), + [2444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4694), + [2446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4695), + [2448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4161), + [2450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2631), + [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6971), + [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5090), + [2456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5090), + [2458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5005), + [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7151), + [2462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 3, .production_id = 129), + [2464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 3, .production_id = 129), + [2466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(6454), + [2469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(6465), + [2472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6454), + [2474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6465), + [2476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2), + [2478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2), + [2480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6308), + [2482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(6308), + [2485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3), + [2487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3), + [2489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 42), + [2491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 42), + [2493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 85), + [2495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 85), + [2497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), + [2499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_statement, 2), + [2501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_statement, 2), + [2503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_yield_statement, 3), + [2505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_yield_statement, 3), + [2507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2), + [2509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_return_statement, 3), + [2511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_return_statement, 3), + [2513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3), + [2515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3), + [2517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, .production_id = 45), + [2519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, .production_id = 45), + [2521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 122), + [2523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 122), + [2525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 123), + [2527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 123), + [2529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, .production_id = 43), + [2531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, .production_id = 43), + [2533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), + [2535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), + [2537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 42), + [2539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 42), + [2541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 41), + [2543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 41), + [2545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), + [2547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 148), + [2549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 148), + [2551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), + [2553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), + [2555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_return_statement, 2), + [2557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_return_statement, 2), + [2559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_range_loop, 9, .production_id = 167), + [2561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_range_loop, 9, .production_id = 167), + [2563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 2), + [2565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 2), + [2567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 146), + [2569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 146), + [2571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), + [2573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), + [2575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), + [2577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), + [2579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 166), + [2581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 166), + [2583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), + [2585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), + [2587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 165), + [2589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 165), + [2591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 164), + [2593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 164), + [2595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_range_loop, 8, .production_id = 163), + [2597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_range_loop, 8, .production_id = 163), + [2599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 162), + [2601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 162), + [2603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 161), + [2605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 161), + [2607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1), + [2609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), + [2611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 158), + [2613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 158), + [2615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 141), + [2617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 141), + [2619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 73), + [2621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 73), + [2623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 109), + [2625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 109), + [2627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 157), + [2629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 157), + [2631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 156), + [2633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 156), + [2635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, .production_id = 92), + [2637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, .production_id = 92), + [2639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 155), + [2641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 155), + [2643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 154), + [2645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 154), + [2647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, .production_id = 50), + [2649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, .production_id = 50), + [2651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 149), + [2653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 149), + [2655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 3, .production_id = 54), + [2657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 3, .production_id = 54), + [2659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 3, .production_id = 63), + [2661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 3, .production_id = 63), + [2663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), + [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [2669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), + [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5426), + [2675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), + [2677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4629), + [2679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5048), + [2681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4653), + [2683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4648), + [2685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4647), + [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [2689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1536), + [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), + [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6363), + [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5595), + [2697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3865), + [2699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3138), + [2701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7196), + [2703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4162), + [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [2707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), + [2709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), + [2711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4092), + [2713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4418), + [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), + [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), + [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), + [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [2729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 2, .production_id = 3), + [2731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 2, .production_id = 3), + [2733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_declaration, 3, .production_id = 5), + [2735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_declaration, 3, .production_id = 5), + [2737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 2, .production_id = 8), + [2739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 2, .production_id = 8), + [2741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 2, .production_id = 18), + [2743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 2, .production_id = 18), + [2745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 2, .production_id = 19), + [2747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 2, .production_id = 19), + [2749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__empty_declaration, 2), + [2751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__empty_declaration, 2), + [2753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 2, .production_id = 19), + [2755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 2, .production_id = 19), + [2757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_definition, 2, .production_id = 18), + [2759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_definition, 2, .production_id = 18), + [2761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_include, 3, .production_id = 30), + [2763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_include, 3, .production_id = 30), + [2765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 3, .production_id = 9), + [2767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 3, .production_id = 9), + [2769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 9), + [2771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 9), + [2773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 3, .production_id = 31), + [2775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 3, .production_id = 31), + [2777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_linkage_specification, 3, .production_id = 35), + [2779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_linkage_specification, 3, .production_id = 35), + [2781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_instantiation, 3, .production_id = 5), + [2783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_instantiation, 3, .production_id = 5), + [2785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_declaration, 3, .production_id = 47), + [2787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_declaration, 3, .production_id = 47), + [2789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), + [2791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), + [2793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_declaration, 2, .production_id = 19), + [2795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_declaration, 2, .production_id = 19), + [2797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, .production_id = 39), + [2799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, .production_id = 39), + [2801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_declaration, 3), + [2803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_declaration, 3), + [2805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, .production_id = 55), + [2807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, .production_id = 55), + [2809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 3, .production_id = 57), + [2811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 3, .production_id = 57), + [2813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 3, .production_id = 5), + [2815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 3, .production_id = 5), + [2817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 3, .production_id = 5), + [2819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 3, .production_id = 5), + [2821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_definition, 3, .production_id = 63), + [2823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_definition, 3, .production_id = 63), + [2825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 4, .production_id = 64), + [2827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 4, .production_id = 64), + [2829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 4, .production_id = 65), + [2831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 4, .production_id = 65), + [2833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, .production_id = 66), + [2835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, .production_id = 66), + [2837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 67), + [2839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 67), + [2841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 9), + [2843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 9), + [2845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_instantiation, 4, .production_id = 48), + [2847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_instantiation, 4, .production_id = 48), + [2849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_declaration, 4, .production_id = 47), + [2851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_declaration, 4, .production_id = 47), + [2853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), + [2855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), + [2857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_declaration, 4), + [2859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_declaration, 4), + [2861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, .production_id = 94), + [2863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, .production_id = 94), + [2865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_method_clause, 3), + [2867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_method_clause, 3), + [2869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_method_clause, 3), + [2871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_method_clause, 3), + [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4359), + [2875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 4, .production_id = 99), + [2877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 4, .production_id = 99), + [2879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 4, .production_id = 103), + [2881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 4, .production_id = 103), + [2883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 5, .production_id = 104), + [2885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 5, .production_id = 104), + [2887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 105), + [2889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 105), + [2891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 66), + [2893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 66), + [2895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 106), + [2897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 106), + [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), + [2903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_alias_definition, 5, .production_id = 9), + [2905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_alias_definition, 5, .production_id = 9), + [2907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alias_declaration, 5, .production_id = 130), + [2909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias_declaration, 5, .production_id = 130), + [2911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_assert_declaration, 5, .production_id = 131), + [2913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_assert_declaration, 5, .production_id = 131), + [2915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concept_definition, 5, .production_id = 9), + [2917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concept_definition, 5, .production_id = 9), + [2919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 5, .production_id = 139), + [2921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 5, .production_id = 139), + [2923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, .production_id = 140), + [2925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, .production_id = 140), + [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), + [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [2931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_assert_declaration, 7, .production_id = 159), + [2933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_assert_declaration, 7, .production_id = 159), + [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), + [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), + [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5257), + [2943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), + [2945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), + [2947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [2949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), + [2951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [2953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [2955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), + [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [2961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4398), + [2963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4404), + [2965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4114), + [2967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4065), + [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4792), + [2971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5663), + [2973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7271), + [2975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4493), + [2977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7280), + [2979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7279), + [2981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5658), + [2983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7287), + [2985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5679), + [2987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7259), + [2989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7292), + [2991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7286), + [2993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), + [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [2999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7293), + [3001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7291), + [3003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5623), + [3005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6992), + [3007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), + [3009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_init_statement, 1), SHIFT(2225), + [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [3014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_statement, 1), + [3016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_init_statement, 1), SHIFT(5345), + [3019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_statement, 1), + [3021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_init_statement, 1), SHIFT(6670), + [3024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_init_statement, 1), SHIFT(6673), + [3027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 2), SHIFT(2225), + [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [3032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 2), SHIFT(5345), + [3035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 2), SHIFT(6670), + [3038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 2), SHIFT(6673), + [3041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1), SHIFT(2225), + [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [3046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 1), SHIFT(5345), + [3049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1), SHIFT(6670), + [3052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1), SHIFT(6673), + [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [3085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2672), + [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [3089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), + [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5378), + [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [3097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), + [3099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), + [3101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), + [3103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4107), + [3105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2611), + [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [3109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2828), + [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [3113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), + [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5380), + [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [3123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), + [3125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), + [3127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), + [3129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4097), + [3131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3759), + [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5909), + [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4402), + [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), + [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), + [3143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3923), + [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4937), + [3147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), + [3149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1), REDUCE(aux_sym_attributed_declarator_repeat1, 1), + [3152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1), REDUCE(aux_sym_attributed_declarator_repeat1, 1), + [3155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1), + [3157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1), + [3159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1), + [3161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1), + [3163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 3), + [3165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 3), + [3167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 4), + [3169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 4), + [3171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(6407), + [3174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6407), + [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5187), + [3180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3177), + [3182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), + [3184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2518), + [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5081), + [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5488), + [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5450), + [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5120), + [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5024), + [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5062), + [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5108), + [3214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), + [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5074), + [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5198), + [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5050), + [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5138), + [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5097), + [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5054), + [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), + [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), + [3246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5323), + [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), + [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), + [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5022), + [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), + [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5225), + [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5235), + [3262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(2225), + [3265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(334), + [3268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(1565), + [3271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(1565), + [3274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(1720), + [3277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(3293), + [3280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(5345), + [3283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(1638), + [3286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), + [3288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(1362), + [3291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(6670), + [3294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(1601), + [3297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(1496), + [3300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(3403), + [3303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(6714), + [3306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(5771), + [3309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(3435), + [3312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(5323), + [3315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(6673), + [3318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(1626), + [3321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(1654), + [3324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(4080), + [3327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(4419), + [3330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2), SHIFT_REPEAT(3109), + [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), + [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), + [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), + [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), + [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), + [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), + [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), + [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), + [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5046), + [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6940), + [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6312), - [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [3365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2843), - [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), - [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), - [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4501), - [3375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4501), - [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5144), - [3379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), - [3381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 2), - [3383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_capture_specifier, 2), - [3385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6845), - [3387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), - [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5141), - [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), - [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), - [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), - [3413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6800), - [3415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), - [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), - [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), - [3431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), - [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [3435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6700), - [3437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), - [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [3453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6437), - [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [3468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_default_capture, 1), - [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [3518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6454), - [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4872), - [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6461), - [3527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [3529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6766), - [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [3533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6504), - [3536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6502), - [3539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6448), - [3542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6447), - [3545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6444), - [3548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6442), - [3551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6439), - [3554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6500), - [3557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [3561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6771), - [3563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6068), - [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6069), - [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5179), - [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6758), - [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [3573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6840), - [3575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6718), - [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4856), - [3583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6921), - [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4866), - [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), - [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6820), - [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4774), - [3605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6497), - [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4860), - [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4859), - [3612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6456), - [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [3617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6490), - [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [3624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6649), - [3626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6459), - [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [3633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6407), - [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4922), - [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4781), - [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5176), - [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6793), - [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [3647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6864), - [3649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6467), - [3652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6471), - [3655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6472), - [3658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6429), - [3661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6465), - [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6610), - [3666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4873), - [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4880), - [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4797), - [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4718), - [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4134), - [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [3680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), - [3682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2432), - [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [3696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2503), - [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [3714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), - [3716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [3718] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), - [3722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), - [3724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [3726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), - [3729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), - [3732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(460), - [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5237), - [3737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), - [3740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_name, 1, .production_id = 1), - [3742] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), - [3746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), - [3748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), - [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [3752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 28), - [3754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_qualified_identifier, 2, .production_id = 27), REDUCE(sym_qualified_type_identifier, 2, .production_id = 28), - [3757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 28), - [3759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, .production_id = 27), - [3761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, .production_id = 27), REDUCE(sym_qualified_type_identifier, 2, .production_id = 28), - [3764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_identifier, 2, .production_id = 27), - [3766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, .production_id = 27), SHIFT(477), - [3769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(477), - [3772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [3774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 3, .dynamic_precedence = 1), - [3776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 3, .dynamic_precedence = 1), - [3778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 3, .dynamic_precedence = 3), - [3780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 3, .dynamic_precedence = 3), - [3782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 4, .dynamic_precedence = 2), - [3784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 4, .dynamic_precedence = 2), - [3786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), - [3788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, .production_id = 27), SHIFT(507), - [3791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), - [3793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 4, .dynamic_precedence = 1), - [3795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 4, .dynamic_precedence = 1), - [3797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 4, .dynamic_precedence = 3), - [3799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 4, .dynamic_precedence = 3), - [3801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 3, .dynamic_precedence = 2), - [3803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 3, .dynamic_precedence = 2), - [3805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 2), - [3807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 2), - [3809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), - [3811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_type, 2, .production_id = 12), - [3813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_template_type, 2, .production_id = 12), REDUCE(sym_template_function, 2, .production_id = 13), - [3816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_type, 2, .production_id = 12), - [3818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_function, 2, .production_id = 13), - [3820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_template_type, 2, .production_id = 12), REDUCE(sym_template_function, 2, .production_id = 13), - [3823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_function, 2, .production_id = 13), - [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [3833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3418), - [3835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4443), - [3837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4441), - [3839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4440), - [3841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4390), - [3843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4389), - [3845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4386), - [3847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4363), - [3849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4373), - [3851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4374), - [3853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4158), - [3855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3333), - [3857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5274), - [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5069), - [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6119), - [3865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(6252), - [3868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6252), - [3870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requirement_seq, 3), - [3872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requirement_seq, 3), - [3874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fold_expression, 3, .production_id = 33), - [3876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fold_expression, 3, .production_id = 33), - [3878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 4, .production_id = 101), - [3880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 4, .production_id = 101), - [3882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requirement_seq, 2), - [3884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requirement_seq, 2), - [3886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requires_expression, 2, .production_id = 15), - [3888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_expression, 2, .production_id = 15), - [3890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 4, .production_id = 102), - [3892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 4, .production_id = 102), - [3894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 3, .production_id = 62), - [3896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 3, .production_id = 62), - [3898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 3, .production_id = 61), - [3900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 3, .production_id = 61), - [3902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 2, .production_id = 25), - [3904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 2, .production_id = 25), - [3906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 5, .production_id = 138), - [3908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 5, .production_id = 138), - [3910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constraint_conjunction, 3, .production_id = 44), - [3912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_conjunction, 3, .production_id = 44), - [3914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__requirement_clause_constraint, 3), - [3916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__requirement_clause_constraint, 3), - [3918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requires_expression, 3, .production_id = 53), - [3920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_expression, 3, .production_id = 53), - [3922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4966), - [3924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3368), - [3926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6586), - [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), - [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6015), - [3932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6588), - [3934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3337), - [3936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3372), - [3938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(6282), - [3941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6242), - [3943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(6242), - [3946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6282), - [3948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, .production_id = 92), - [3950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, .production_id = 92), - [3952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 106), - [3954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 106), - [3956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 66), - [3958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 66), - [3960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 105), - [3962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 105), - [3964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, .production_id = 46), - [3966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, .production_id = 46), - [3968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_friend_declaration, 2), - [3970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_friend_declaration, 2), - [3972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_access_specifier, 2), - [3974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_specifier, 2), - [3976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 92), - [3978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 92), - [3980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 143), - [3982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 143), - [3984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declarator, 1), - [3986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 6, .production_id = 160), - [3988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 6, .production_id = 160), - [3990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 140), - [3992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 140), - [3994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, .production_id = 152), - [3996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, .production_id = 152), - [3998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, .production_id = 151), - [4000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, .production_id = 151), - [4002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 9), - [4004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 9), - [4006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_friend_declaration, 3), - [4008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_friend_declaration, 3), - [4010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 54), - [4012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 54), - [4014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_method_definition, 3, .production_id = 55), - [4016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_method_definition, 3, .production_id = 55), - [4018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_method_definition, 3, .production_id = 54), - [4020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_method_definition, 3, .production_id = 54), - [4022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 46), - [4024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 46), - [4026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 115), - [4028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 115), - [4030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 54), - [4032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 54), - [4034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 66), - [4036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 66), - [4038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 67), - [4040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 67), - [4042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 9), - [4044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 9), - [4046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_friend_declaration, 4), - [4048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_friend_declaration, 4), - [4050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 128), - [4052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 128), - [4054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, .production_id = 27), SHIFT(484), - [4057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(484), - [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5072), - [4062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4660), - [4064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 1, .dynamic_precedence = 1), - [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), - [4070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3274), - [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4678), - [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), - [4080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3271), - [4082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_condition_clause, 4, .production_id = 121), - [4084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 4, .production_id = 121), - [4086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_condition_clause, 3, .production_id = 10), - [4088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 3, .production_id = 10), - [4090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [4092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [4094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(2000), - [4097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1), - [4099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1), - [4101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), - [4103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 1), - [4105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), - [4107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), - [4109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), - [4111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 4), - [4113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 4), - [4115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, .production_id = 27), SHIFT(516), - [4118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), - [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [4122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [4124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [4126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(5294), - [4129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(2064), - [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4697), - [4134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2), - [4136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2), - [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), - [4140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(497), - [4143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), - [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [4149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(2069), - [4152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 3, .production_id = 38), - [4154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 3, .production_id = 38), - [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4806), - [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4040), - [4162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 9), - [4164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 9), - [4166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 9), - [4168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 9), - [4170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(2073), - [4173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 38), - [4175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 38), - [4177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2407), - [4179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), - [4181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2408), - [4183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 4, .production_id = 83), - [4185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 4, .production_id = 83), - [4187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 83), - [4189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 83), - [4191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_name, 1, .production_id = 1), - [4193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 38), - [4195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 38), - [4197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 83), - [4199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 83), - [4201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2472), - [4203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), - [4205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), - [4207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 2, .production_id = 9), - [4209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 2, .production_id = 9), - [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), - [4215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), - [4217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), - [4219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 74), - [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [4223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 74), - [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), - [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6418), - [4231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), - [4233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), - [4235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, .production_id = 14), - [4237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, .production_id = 14), - [4239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2766), - [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), - [4243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 51), - [4245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 51), - [4247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 28), SHIFT(493), - [4250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 36), - [4252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 36), - [4254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(5461), - [4257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(2102), - [4260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), - [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [4264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_type_identifier, 2), - [4266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_type_identifier, 2), - [4268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), - [4270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requires_clause, 2, .production_id = 16), - [4272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_clause, 2, .production_id = 16), - [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), - [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4239), - [4278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2751), - [4280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), - [4282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), - [4284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_parameter_list, 4), - [4286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_parameter_list, 4), - [4288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(2116), - [4291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 27), - [4293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 27), - [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5240), - [4297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_name, 1), - [4299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_name, 1), - [4301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 28), SHIFT(484), - [4304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constraint_disjunction, 3, .production_id = 44), - [4306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_disjunction, 3, .production_id = 44), - [4308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_parameter_list, 3), - [4310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_parameter_list, 3), - [4312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_parameter_list, 2), - [4314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_parameter_list, 2), - [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), - [4320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(5398), - [4323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(2152), - [4326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3009), - [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), - [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), - [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6508), - [4338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 9), - [4340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 9), - [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4712), - [4344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_base_clause, 2, .production_id = 78), - [4346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_base_clause, 2, .production_id = 78), - [4348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 38), - [4350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 38), - [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4671), - [4354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), - [4356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), - [4358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2861), - [4360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), - [4362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2858), - [4364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_type, 2, .dynamic_precedence = -1), - [4366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_type, 2, .dynamic_precedence = -1), - [4368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1), - [4370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1), - [4372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), - [4374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), - [4376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(2195), - [4379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 77), - [4381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 77), - [4383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), - [4385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), - [4387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), - [4389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 40), - [4391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 40), - [4393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 28), SHIFT(516), - [4396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 5, .production_id = 116), - [4398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 5, .production_id = 116), - [4400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 6, .production_id = 145), - [4402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 6, .production_id = 145), - [4404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 37), - [4406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 37), - [4408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 6, .production_id = 146), - [4410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 6, .production_id = 146), - [4412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 6, .production_id = 144), - [4414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 6, .production_id = 144), - [4416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 39), - [4418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 39), - [4420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 84), - [4422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 84), - [4424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 84), - [4426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 84), - [4428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 6, .production_id = 145), - [4430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 6, .production_id = 145), - [4432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_class_specifier, 1), - [4434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_class_specifier, 1), - [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5373), - [4438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 6, .production_id = 146), - [4440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 6, .production_id = 146), - [4442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 2), - [4444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 2), - [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [4448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 82), - [4450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 82), - [4452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 76), - [4454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 76), - [4456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 6, .production_id = 144), - [4458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 6, .production_id = 144), - [4460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 4, .production_id = 84), - [4462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 4, .production_id = 84), - [4464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 4, .production_id = 82), - [4466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 4, .production_id = 82), - [4468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 5, .production_id = 119), - [4470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 5, .production_id = 119), - [4472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 5, .production_id = 118), - [4474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 5, .production_id = 118), - [4476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 5, .production_id = 117), - [4478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 5, .production_id = 117), - [4480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 5, .production_id = 116), - [4482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 5, .production_id = 116), - [4484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 4, .production_id = 76), - [4486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 4, .production_id = 76), - [4488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), - [4490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), - [4492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 119), - [4494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 119), - [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), - [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), - [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6557), - [4504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 118), - [4506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 118), - [4508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decltype, 4), - [4510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decltype, 4), - [4512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 117), - [4514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 117), - [4516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 116), - [4518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 116), - [4520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 80), - [4522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 80), - [4524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 5, .production_id = 119), - [4526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 5, .production_id = 119), - [4528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 37), - [4530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 37), - [4532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_placeholder_type_specifier, 2, .production_id = 20), - [4534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_placeholder_type_specifier, 2, .production_id = 20), - [4536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 5, .production_id = 118), - [4538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 5, .production_id = 118), - [4540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 5, .production_id = 117), - [4542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 5, .production_id = 117), - [4544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 50), - [4546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 50), - [4548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 6, .production_id = 145), - [4550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 6, .production_id = 145), - [4552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_base_clause, 2, .production_id = 79), - [4554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_base_clause, 2, .production_id = 79), - [4556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 29), - [4558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 29), - [4560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 6, .production_id = 146), - [4562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 6, .production_id = 146), - [4564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 14), - [4566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 14), - [4568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, .production_id = 27), SHIFT(493), - [4571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 39), - [4573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 39), - [4575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, .production_id = 114), - [4577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 114), - [4579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 76), - [4581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 76), - [4583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(493), - [4586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 3), - [4588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 3), - [4590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 37), - [4592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 37), - [4594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 39), - [4596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 39), - [4598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), - [4600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), - [4602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(2420), - [4605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 4), - [4607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 4), - [4609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 7, .production_id = 153), - [4611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 7, .production_id = 153), - [4613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 8), - [4615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 8), - [4617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 7, .production_id = 153), - [4619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 7, .production_id = 153), - [4621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 2, .production_id = 8), - [4623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 2, .production_id = 8), - [4625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 7, .production_id = 153), - [4627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 7, .production_id = 153), - [4629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_placeholder_type_specifier, 1), - [4631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_placeholder_type_specifier, 1), - [4633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), - [4635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), - [4637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, .production_id = 112), - [4639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, .production_id = 112), - [4641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 3, .production_id = 37), - [4643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 3, .production_id = 37), - [4645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 3, .production_id = 39), - [4647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 3, .production_id = 39), - [4649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 76), - [4651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 76), - [4653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 8), - [4655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 8), - [4657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decltype_auto, 4), - [4659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decltype_auto, 4), - [4661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 82), - [4663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 82), - [4665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 90), - [4667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 90), - [4669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 8), - [4671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 8), - [4673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 6, .production_id = 144), - [4675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 6, .production_id = 144), - [4677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 73), - [4679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 73), - [4681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 5), - [4683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 5), - [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4693), - [4687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_destructor_name, 2), - [4689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_destructor_name, 2), - [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), - [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6781), - [4695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1), - [4697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_identifier, 2), - [4699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_identifier, 2), - [4701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_declarator, 3, .production_id = 132), - [4703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_declarator, 3, .production_id = 132), - [4705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__expression, 1), - [4708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1), REDUCE(sym__expression, 1), - [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), - [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6622), - [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), - [4717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), - [4719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), - [4721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), - [4723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), - [4725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), - [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [4731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), - [4733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), - [4735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), - [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [4741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), - [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [4745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), - [4747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), - [4749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), - [4751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), - [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [4755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6906), - [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6933), - [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6939), - [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6865), - [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6624), - [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6900), - [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6878), - [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6794), - [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6783), - [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6686), - [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6773), - [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), - [4783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5218), - [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6653), - [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6694), - [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), - [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4052), - [4793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4052), - [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6520), - [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), - [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), - [4801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4051), - [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4752), - [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), - [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), - [4809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4026), - [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), - [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), - [4817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5031), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), - [4823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4012), - [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4708), - [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4993), - [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), - [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), - [4835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4036), - [4837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(510), - [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), - [4842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(507), - [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), - [4847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_declarator, 4, .production_id = 132), - [4849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_declarator, 4, .production_id = 132), - [4851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_field_identifier, 2), - [4853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_field_identifier, 2), - [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), - [4859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(2487), - [4862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3), - [4864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3), - [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), - [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), - [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), - [4872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_name, 2), - [4874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_name, 2), - [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), - [4878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(6636), - [4881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(4804), - [4884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), - [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [4888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 4), - [4890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 4), - [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), - [4896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5175), - [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5175), - [4900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 4), - [4902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 4), - [4904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 2, .production_id = 10), - [4906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), - [4908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), - [4910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 2, .production_id = 10), - [4912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), - [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [4916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 2), - [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [4922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), - [4924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), - [4926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), - [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [4930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), - [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [4934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 2), - [4936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_defined_literal, 2), - [4938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user_defined_literal, 2), - [4940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_await_expression, 2, .production_id = 4), - [4942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_await_expression, 2, .production_id = 4), - [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4223), - [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4222), - [4948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 7), - [4950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 7), - [4952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pack_expansion, 2, .production_id = 21), - [4954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pack_expansion, 2, .production_id = 21), - [4956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 22), - [4958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 22), - [4960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 2, .production_id = 23), - [4962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 2, .production_id = 23), - [4964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_method, 2, .production_id = 96), - [4966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_method, 2, .production_id = 96), - [4968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 98), - [4970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 98), - [4972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 3), - [4974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 3), - [4976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5), - [4978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5), - [4980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 14), - [4982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 14), - [4984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3142), - [4986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6723), - [4988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_expression, 2, .production_id = 4), - [4990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_expression, 2, .production_id = 4), - [4992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2), - [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), - [4996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 44), - [4998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 44), - [5000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 6, .production_id = 142), - [5002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 6, .production_id = 142), - [5004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_name, 3), - [5006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_name, 3), - [5008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, .production_id = 136), - [5010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, .production_id = 136), - [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [5014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, .production_id = 133), - [5016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, .production_id = 133), - [5018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 49), - [5020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 49), - [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6636), - [5024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 44), - [5026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 44), - [5028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), - [5030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 5, .production_id = 125), - [5032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 5, .production_id = 125), - [5034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4), - [5036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4), - [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), - [5040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), - [5042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), - [5044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, .production_id = 111), - [5046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, .production_id = 111), - [5048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, .production_id = 110), - [5050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, .production_id = 110), - [5052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 5), - [5054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 5), - [5056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, .production_id = 70), - [5058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 70), - [5060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 70), - [5062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 70), - [5064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 89), - [5066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 89), - [5068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [5070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [5072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 88), - [5074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 88), - [5076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 4), - [5078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 4), - [5080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3), - [5082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3), - [5084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 59), - [5086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 59), - [5088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 59), SHIFT(493), - [5091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 60), - [5093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 60), - [5095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 72), - [5097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 72), - [5099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), - [5101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), - [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [5107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), - [5109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), - [5111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), - [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [5115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), - [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [5119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), - [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), - [5123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2731), - [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), - [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6623), - [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4742), - [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), - [5135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2968), - [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), - [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6662), - [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [5143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4806), - [5145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4040), - [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), - [5149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2823), - [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), - [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6935), - [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), - [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), - [5159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(516), - [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), - [5164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 59), SHIFT(484), - [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), - [5169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(3162), - [5172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2487), - [5174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3159), - [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), - [5178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2522), - [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), - [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6806), - [5184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), - [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), - [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4301), - [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4352), - [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), - [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [5196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4166), - [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), - [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5137), - [5202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), - [5204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), - [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4143), - [5210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(5430), - [5213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(2832), - [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), - [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6519), - [5220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), - [5222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), - [5224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(3368), - [5227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(6586), - [5230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(6015), - [5233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(6588), - [5236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(3337), - [5239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(3372), - [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), - [5246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5207), - [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5207), - [5250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), - [5252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), - [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [5258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), - [5260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), - [5262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), - [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [5266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), - [5268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), - [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [5272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 59), SHIFT(516), - [5275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_declspec_modifier, 4), - [5277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_declspec_modifier, 4), - [5279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4161), - [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5084), - [5283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4050), - [5285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4234), - [5287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4749), - [5289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4410), - [5291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4415), - [5293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4419), - [5295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4235), - [5297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6852), - [5299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3706), - [5301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 14), - [5303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 14), - [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), - [5307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4751), - [5309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3679), - [5311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__constructor_specifiers, 1), REDUCE(aux_sym__declaration_specifiers_repeat1, 1), - [5314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_specifiers, 1), - [5316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constructor_specifiers, 1), - [5318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__constructor_specifiers, 1), REDUCE(aux_sym__declaration_specifiers_repeat1, 1), - [5321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 1), - [5323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_virtual_function_specifier, 1), - [5325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_virtual_function_specifier, 1), - [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), - [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [5331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4740), - [5333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3696), - [5335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4176), - [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5169), - [5339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2872), - [5341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), - [5343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), - [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5088), - [5347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3690), - [5349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4753), - [5351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4434), - [5353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4435), - [5355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4437), - [5357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3773), - [5359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4788), - [5361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4395), - [5363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4397), - [5365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4402), - [5367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3757), - [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), - [5371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3685), - [5373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4750), - [5375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), - [5377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4759), - [5379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4416), - [5381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4414), - [5383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4412), - [5385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3640), - [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), - [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [5391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_requirement, 5), - [5393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_requirement, 5), - [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [5397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 2, .production_id = 87), - [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), - [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5436), - [5405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 1, .production_id = 46), - [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), - [5409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3234), - [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [5413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_requirement, 4), - [5415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_requirement, 4), - [5417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(2876), - [5420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(6927), - [5423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(6360), - [5426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(6908), - [5429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(2015), - [5432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(2901), - [5435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_requirement, 6), - [5437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_requirement, 6), - [5439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5204), - [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5204), - [5443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), - [5445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), - [5447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), - [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [5455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), - [5457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), - [5459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), - [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [5463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), - [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4288), - [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4290), - [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), - [5477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3237), - [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [5481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_requirement, 2), - [5483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_requirement, 2), - [5485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 59), SHIFT(513), - [5488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(3075), - [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [5495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), - [5497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 28), SHIFT(510), - [5500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__requirement, 1, .production_id = 52), - [5502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__requirement, 1, .production_id = 52), - [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5352), - [5508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4714), - [5510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3992), - [5512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6742), - [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6320), - [5516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6744), - [5518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3245), - [5520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3413), - [5522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6475), - [5524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3995), - [5526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), - [5528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), - [5530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), SHIFT_REPEAT(3368), - [5533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), SHIFT_REPEAT(6586), - [5536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), SHIFT_REPEAT(6015), - [5539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), SHIFT_REPEAT(6588), - [5542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), SHIFT_REPEAT(3337), - [5545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), SHIFT_REPEAT(3372), - [5548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), SHIFT_REPEAT(3817), - [5551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3162), - [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [5555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(5444), - [5558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(3215), - [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4690), - [5563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3907), - [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), - [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [5573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_reference_declarator, 1), - [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), - [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [5581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 28), SHIFT(497), - [5584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), - [5586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1), SHIFT(1306), - [5589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), - [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [5596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__binary_fold_operator, 3, .production_id = 107), - [5598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_fold_operator, 3, .production_id = 107), - [5600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 2, .dynamic_precedence = 1, .production_id = 17), - [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), - [5604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4029), - [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6742), - [5608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 2, .dynamic_precedence = 1, .production_id = 17), - [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), - [5612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), - [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), - [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6614), - [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4208), - [5620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 3, .dynamic_precedence = 1, .production_id = 17), - [5622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 3, .dynamic_precedence = 1, .production_id = 17), - [5624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(3347), - [5627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3075), - [5629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3414), - [5631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(3992), - [5634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(6742), - [5637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(6320), - [5640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(6744), - [5643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(3245), - [5646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(3995), - [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6927), - [5651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), - [5655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4327), - [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4695), - [5659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5201), - [5661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4472), - [5663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), - [5665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4452), - [5667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4452), - [5669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4809), - [5671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), - [5673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4473), - [5675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4473), - [5677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4706), - [5679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1), SHIFT(1293), - [5682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3272), - [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5585), - [5686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 1), - [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), - [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), - [5692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declarator, 1), - [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), - [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), - [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6908), - [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), - [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6723), - [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), - [5706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 14), - [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), - [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4284), - [5714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4284), - [5716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), - [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), - [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6475), - [5722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 1, .production_id = 2), - [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), - [5726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 4, .dynamic_precedence = 1, .production_id = 17), - [5728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 4, .dynamic_precedence = 1, .production_id = 17), - [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [5732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), - [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4310), - [5736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 2, .dynamic_precedence = 1, .production_id = 17), - [5738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 2, .dynamic_precedence = 1, .production_id = 17), - [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4323), - [5742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 3, .dynamic_precedence = 1, .production_id = 17), - [5744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 3, .dynamic_precedence = 1, .production_id = 17), - [5746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), - [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [5750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), - [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [5754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), - [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [5758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), - [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [5762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), - [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [5770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3220), - [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5152), - [5774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4746), - [5776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4378), - [5778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4380), - [5780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4381), - [5782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3597), - [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), - [5786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4348), - [5788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), - [5792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), - [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5120), - [5796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), - [5798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), - [5800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4764), - [5802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4369), - [5804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4379), - [5806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4403), - [5808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), - [5810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6788), - [5812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3694), - [5814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4738), - [5816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3736), - [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3937), - [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4421), - [5822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4421), - [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), - [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [5828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4729), - [5830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3720), - [5832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2326), - [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5092), - [5836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), - [5838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2708), - [5840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4744), - [5842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4396), - [5844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4407), - [5846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4408), - [5848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), - [5850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6844), - [5852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3691), - [5854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3369), - [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5154), - [5858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4734), - [5860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4372), - [5862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4361), - [5864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4366), - [5866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3712), - [5868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), - [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5168), - [5872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), - [5874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2493), - [5876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4790), - [5878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4359), - [5880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4370), - [5882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4368), - [5884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), - [5886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6747), - [5888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3731), - [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), - [5896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat2, 2), - [5898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat2, 2), SHIFT_REPEAT(4029), - [5901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat2, 2), SHIFT_REPEAT(4029), - [5904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat2, 2), - [5906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat2, 2), SHIFT_REPEAT(2015), - [5909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat2, 2), SHIFT_REPEAT(2015), - [5912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat2, 2), SHIFT_REPEAT(4040), - [5915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat2, 2), SHIFT_REPEAT(4055), - [5918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat2, 2), SHIFT_REPEAT(6614), - [5921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_call_modifier, 1), - [5923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_call_modifier, 1), - [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [5927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_expression, 3, .production_id = 58), - [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), - [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), - [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4704), - [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), - [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [5943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), - [5945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [5947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), - [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [5953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), - [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [5957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), - [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [5961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), - [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [5965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), - [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), - [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4112), - [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), - [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [5983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), - [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4986), - [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [5989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [5991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat2, 2), SHIFT_REPEAT(3245), - [5994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat2, 2), SHIFT_REPEAT(3245), - [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [6001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT(1428), - [6004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), - [6006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), - [6008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [6010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), - [6012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [6014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), - [6016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [6018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [6020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), - [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [6024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), - [6026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [6028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), - [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5162), - [6036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [6040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5005), - [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), - [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6765), - [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5126), - [6048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), - [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4242), - [6052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [6054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), - [6056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [6058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), - [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), - [6062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), - [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), - [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), - [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [6078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 3, .production_id = 91), - [6080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_declaration, 4, .production_id = 147), - [6082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), - [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4446), - [6086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4446), - [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), - [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [6092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter_declaration, 4, .production_id = 151), - [6094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [6096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_lambda_capture_specifier_repeat1, 2), - [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [6100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [6102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [6104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [6108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [6110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 14), - [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [6114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, .production_id = 124), - [6116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, .dynamic_precedence = 1), - [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [6126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter_declaration, 3, .production_id = 128), - [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [6136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5025), - [6138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6631), - [6140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [6144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [6150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [6152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [6156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [6158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 3, .production_id = 113), - [6160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [6162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), - [6164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5051), - [6166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6462), - [6168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [6170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5028), - [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6857), - [6174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [6176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [6178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [6180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [6184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [6188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [6194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, .production_id = 17), - [6196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_function_declarator, 2, .production_id = 17), - [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5019), - [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6583), - [6202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, .production_id = 26), - [6204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_function_declarator, 2, .production_id = 26), - [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [6210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [6212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5049), - [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6618), - [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [6222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3347), - [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [6230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [6232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), - [6236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5059), - [6240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6868), - [6242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 1, .production_id = 26), - [6244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_function_declarator, 1, .production_id = 26), - [6246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 2), - [6248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [6250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5061), - [6252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6692), - [6254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [6256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6067), - [6258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), - [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), - [6266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4470), - [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [6270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), - [6272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4220), - [6274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6573), - [6276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(2876), - [6279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(6927), - [6282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(6908), - [6285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(2015), - [6288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(2901), - [6291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6764), - [6293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [6299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [6301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 3, .production_id = 17), - [6303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_function_declarator, 3, .production_id = 17), - [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [6311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [6315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [6319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6060), - [6323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), - [6327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [6333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [6341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [6343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), - [6345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [6347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), - [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [6351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), - [6353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [6355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), - [6357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [6359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [6361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [6365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [6367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), - [6369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [6373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4349), - [6375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [6377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5182), - [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4821), - [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), - [6383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [6385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), - [6387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), - [6389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [6391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [6393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), - [6395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(4029), - [6398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(4029), - [6401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), - [6403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(2015), - [6406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(2015), - [6409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(4055), - [6412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(6614), - [6415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [6417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [6419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_function_specifier, 4), - [6421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_function_specifier, 4), - [6423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [6425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [6427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [6429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), - [6431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [6433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6055), - [6435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [6437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_function_specifier, 1), - [6439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [6441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_function_specifier, 1), - [6443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6054), - [6445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6053), - [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), - [6449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), - [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), - [6457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), - [6459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), - [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4522), - [6463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4522), - [6465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [6467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [6469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [6471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5448), - [6473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [6475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [6477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), - [6479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), - [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4068), - [6485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4505), - [6487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4505), - [6489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), - [6491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [6493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [6495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [6497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [6501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [6503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [6505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), - [6507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4498), - [6509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4498), - [6511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unary_left_fold, 3, .production_id = 44), - [6513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [6515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5526), - [6517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), - [6519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [6521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4324), - [6523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4218), - [6525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [6527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [6529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [6531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [6533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), - [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [6543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), - [6549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [6553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), - [6555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), - [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), - [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [6565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(4151), - [6568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(4151), - [6571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(3539), - [6574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(3539), - [6577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(4150), - [6580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(6705), - [6583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), - [6589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [6591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_fold, 3, .production_id = 69), - [6593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [6597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), - [6599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2), - [6601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(6927), - [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4148), - [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [6614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [6616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [6622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [6624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitfield_clause, 2), - [6626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [6628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [6630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), - [6632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [6634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [6636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [6640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(6742), - [6643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4), - [6645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4), - [6647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4119), - [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4602), - [6651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4602), - [6653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(3245), - [6656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(3245), - [6659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3), - [6661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3), - [6663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2), - [6665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2), - [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [6669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_specifier, 4), - [6671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_specifier, 4), - [6673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), - [6675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), - [6677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(4135), - [6680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(4133), - [6683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_noexcept, 3), - [6685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_noexcept, 3), - [6687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_noexcept, 4), - [6689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_noexcept, 4), - [6691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_specifier, 3), - [6693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_specifier, 3), - [6695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(4019), - [6698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_qualifier, 1), - [6700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_qualifier, 1), - [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4151), - [6706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4151), - [6708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), - [6710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4150), - [6712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6705), - [6714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4329), - [6716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_specifier, 5), - [6718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_specifier, 5), - [6720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_virtual_specifier, 1), - [6722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_virtual_specifier, 1), - [6724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4140), - [6726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4668), - [6728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4668), - [6730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4211), - [6732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4019), - [6734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4212), - [6736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_noexcept, 1), - [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [6740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_noexcept, 1), - [6742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 2), REDUCE(sym_argument_list, 2), - [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), - [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4342), - [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), - [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4292), - [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4713), - [6759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(2015), - [6762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), - [6764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), - [6766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_pointer_modifier, 1), - [6768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_pointer_modifier, 1), - [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), - [6772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(3539), - [6775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(3539), - [6778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(2015), - [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4715), - [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), - [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5464), - [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4696), - [6795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [6799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2992), - [6801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), - [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [6807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2771), - [6809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5367), - [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5323), - [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4672), - [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [6819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(3245), - [6822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(3245), - [6825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3091), - [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [6831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3450), - [6833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5248), - [6835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), - [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [6841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3045), - [6843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5371), - [6845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3266), - [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [6851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3886), - [6853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5257), - [6855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), - [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [6861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2532), - [6863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5424), - [6865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1), - [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4190), - [6869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1), - [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4276), - [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4384), - [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4261), - [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4255), - [6879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4255), - [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4251), - [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4249), - [6885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4248), - [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4247), - [6889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4246), - [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4245), - [6893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4244), - [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4244), - [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4243), - [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5259), - [6901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4174), - [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4360), - [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4291), - [6907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6300), - [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), - [6911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4200), - [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), - [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6317), - [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4267), - [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), - [6921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4181), - [6923] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4278), - [6927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 7), - [6929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 7), - [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4262), - [6933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4192), - [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4321), - [6937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6218), - [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4356), - [6941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4356), - [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4393), - [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6019), - [6947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2428), - [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [6951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4793), - [6953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5491), - [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4409), - [6957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4033), - [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [6961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5116), - [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [6965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3680), - [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4411), - [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [6971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2609), - [6973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2610), - [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), - [6977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), - [6979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), - [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5139), - [6985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), - [6987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5286), - [6989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), - [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4444), - [6993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2633), - [6995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5100), - [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4316), - [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4300), - [7001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4297), - [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4296), - [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4294), - [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4355), - [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4293), - [7011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 4), - [7013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 4), - [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4287), - [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4420), - [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4282), - [7021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4822), - [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5079), - [7025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5054), - [7027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4724), - [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4270), - [7031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 4), - [7033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 4), - [7035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4423), - [7037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4760), - [7039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 2), - [7041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 2), - [7043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3), - [7045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3), - [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4371), - [7049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 44), - [7051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 44), - [7053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 4), - [7055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 4), - [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4237), - [7059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 3), - [7061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 3), - [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4424), - [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4382), - [7067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), - [7069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3325), - [7071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5159), - [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [7075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3079), - [7077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3027), - [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4426), - [7081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5043), - [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [7085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2782), - [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4413), - [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4425), - [7091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5070), - [7093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4717), - [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4427), - [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4429), - [7099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 2), - [7101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 2), - [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4377), - [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4442), - [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4430), - [7109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3438), - [7111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3901), - [7113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4686), - [7115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4006), - [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [7119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4970), - [7121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5282), - [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4375), - [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4432), - [7127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4771), - [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5107), - [7131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4995), - [7133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4938), - [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4365), - [7137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4977), - [7139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4973), - [7141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4887), - [7143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4878), - [7145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2781), - [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4438), - [7149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4083), - [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [7153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4221), - [7155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4233), - [7157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4254), - [7159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4265), - [7161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4279), - [7163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4303), - [7165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4313), - [7167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4314), - [7169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4322), - [7171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4334), - [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4461), - [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [7183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), - [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [7187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), - [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6082), - [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [7199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6270), - [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [7203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5164), - [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4268), - [7211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1), SHIFT(1309), - [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6257), - [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4358), - [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4214), - [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), - [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [7244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), - [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6371), - [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [7258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6315), - [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [7268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), - [7270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6468), - [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4513), - [7274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5699), - [7276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), - [7278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3393), - [7280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5604), - [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6021), - [7288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3427), - [7290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5594), - [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [7296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6079), - [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [7304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4962), - [7306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5640), - [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [7312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), - [7314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6611), - [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4624), - [7318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5613), - [7320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2629), - [7322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), - [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6790), - [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4625), - [7328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5656), - [7330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2739), - [7332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), - [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6579), - [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4633), - [7338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5517), - [7340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), - [7342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [7344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), - [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6920), - [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4637), - [7350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5672), - [7352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2668), - [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [7356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), - [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4640), - [7360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5652), - [7362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), - [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4642), - [7366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5778), - [7368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2324), - [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4644), - [7372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5540), - [7374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3422), - [7376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5616), - [7378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), - [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4648), - [7382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5789), - [7384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), - [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4650), - [7388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5622), - [7390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), - [7392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4651), - [7394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5695), - [7396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2720), - [7398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), - [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4657), - [7402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5666), - [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [7406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3275), - [7408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5590), - [7410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [7412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [7414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), - [7416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4032), - [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [7420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6059), - [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4998), - [7424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5284), - [7426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4641), - [7428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5714), - [7430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6309), - [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5316), - [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [7438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [7440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6285), - [7442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5299), - [7444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [7446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6264), - [7450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5262), - [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [7454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6291), - [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5492), - [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4307), - [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4309), - [7462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [7464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3214), - [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [7468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6121), - [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5305), - [7474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2386), - [7476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [7478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3358), - [7480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [7486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2837), - [7488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6362), - [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5387), - [7494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5050), - [7496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5591), - [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), - [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [7502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), - [7504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5382), - [7506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4716), - [7508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5607), - [7510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 137), - [7512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 137), - [7514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 4, .production_id = 17), - [7516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_function_declarator, 4, .production_id = 17), - [7518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 4, .dynamic_precedence = 1, .production_id = 71), - [7520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 3, .production_id = 26), - [7522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_function_declarator, 3, .production_id = 26), - [7524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4914), - [7526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 5, .dynamic_precedence = 1, .production_id = 134), - [7528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5280), - [7530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4883), - [7532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4889), - [7534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4897), - [7536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__abstract_declarator, 1), - [7538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__abstract_declarator, 1), - [7540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4901), - [7542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4904), - [7544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4874), - [7546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5385), - [7548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4920), - [7550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4898), - [7552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4882), - [7554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5293), - [7556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4928), - [7558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4923), - [7560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4919), - [7562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4917), - [7564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 2), - [7566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 2), - [7568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4925), - [7570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), - [7572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 3), - [7574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_parenthesized_declarator, 3), - [7576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4924), - [7578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4899), - [7580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 4, .production_id = 26), - [7582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_function_declarator, 4, .production_id = 26), - [7584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 100), - [7586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 100), - [7588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 3, .dynamic_precedence = 1, .production_id = 34), - [7590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3), - [7592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3), - [7594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 19), - [7596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 19), - [7598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 5, .production_id = 17), - [7600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_function_declarator, 5, .production_id = 17), - [7602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 5, .production_id = 135), - [7604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 5, .production_id = 135), - [7606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 5), - [7608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4927), - [7610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4909), - [7612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_field_declarator, 2, .dynamic_precedence = 1), - [7614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 2, .dynamic_precedence = 1, .production_id = 5), - [7616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4910), - [7618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5388), - [7620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4885), - [7622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), - [7624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT_REPEAT(6015), - [7627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), - [7629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4266), - [7631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_declarator, 2), - [7633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_declarator, 2), - [7635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 95), - [7637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 95), - [7639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trailing_return_type, 2), - [7641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trailing_return_type, 2), - [7643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 5, .dynamic_precedence = 1, .production_id = 17), - [7645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 5, .dynamic_precedence = 1, .production_id = 17), - [7647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 19), - [7649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 19), - [7651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 4, .dynamic_precedence = 1, .production_id = 71), - [7653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_structured_binding_declarator, 3, .dynamic_precedence = -1), - [7655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_structured_binding_declarator, 3, .dynamic_precedence = -1), - [7657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 3, .production_id = 19), - [7659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 3, .production_id = 19), - [7661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5037), - [7663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, .production_id = 81), - [7665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [7667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, .production_id = 81), - [7669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_structured_binding_declarator, 4, .dynamic_precedence = -1), - [7671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_structured_binding_declarator, 4, .dynamic_precedence = -1), - [7673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5018), - [7675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 34), - [7677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_reference_declarator, 2), - [7679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), - [7681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 4, .dynamic_precedence = 1, .production_id = 17), - [7683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 4, .dynamic_precedence = 1, .production_id = 17), - [7685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT_REPEAT(6320), - [7688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_declarator, 2, .dynamic_precedence = 1), - [7690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 5), - [7692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 5, .dynamic_precedence = 1, .production_id = 134), - [7694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 5), - [7696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_field_declarator, 2), - [7698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_field_declarator, 2), - [7700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 68), - [7702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 50), - [7704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 5), - [7706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 34), - [7708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 6, .dynamic_precedence = 1, .production_id = 17), - [7710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 6, .dynamic_precedence = 1, .production_id = 17), - [7712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 19), - [7714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 19), - [7716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), - [7718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), - [7720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 5, .production_id = 135), - [7722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 5, .production_id = 135), - [7724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 32), - [7726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 4, .production_id = 108), - [7728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 95), - [7730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 95), - [7732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4706), - [7734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4350), - [7736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 95), - [7738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 95), - [7740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4351), - [7742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1), - [7744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1), - [7746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 19), - [7748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 19), - [7750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 5, .dynamic_precedence = 1, .production_id = 17), - [7752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 5, .dynamic_precedence = 1, .production_id = 17), - [7754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 3, .production_id = 19), - [7756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 3, .production_id = 19), - [7758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 5, .production_id = 135), - [7760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 5, .production_id = 135), - [7762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), - [7764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), - [7766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4831), - [7768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [7770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), - [7772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 2, .dynamic_precedence = 1, .production_id = 5), - [7774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [7776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, .production_id = 54), - [7778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [7780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5701), - [7782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5301), - [7784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6780), - [7786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4336), - [7788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4337), - [7790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5655), - [7792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6587), - [7794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [7796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 3, .dynamic_precedence = 1, .production_id = 34), - [7798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), - [7800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [7802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5606), - [7804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6495), - [7806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [7808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [7810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6565), - [7812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5558), - [7814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6656), - [7816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [7818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6427), - [7820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [7822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), - [7824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4346), - [7826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4347), - [7828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), - [7830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5222), - [7832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4979), - [7834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5567), - [7836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [7838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [7840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5113), - [7842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6870), - [7844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [7846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [7848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6737), - [7850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [7852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6408), - [7854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6887), - [7856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 4, .dynamic_precedence = 1, .production_id = 71), - [7858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 5, .dynamic_precedence = 1, .production_id = 134), - [7860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [7862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [7864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 3), - [7866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_capture_specifier, 3), - [7868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_designator, 3), - [7870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6734), - [7872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), - [7874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [7876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5241), - [7878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5101), - [7880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2779), - [7882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5125), - [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4997), - [7886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5243), - [7888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5140), - [7890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [7892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [7894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5242), - [7896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5135), - [7898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4965), - [7900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5227), - [7902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5066), - [7904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4987), - [7906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [7908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [7910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5245), - [7912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5086), - [7914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 5), - [7916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5223), - [7918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5093), - [7920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4257), - [7922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4258), - [7924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5225), - [7926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5153), - [7928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5007), - [7930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4959), - [7932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), - [7934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [7936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_type_declarator, 2), - [7938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_type_declarator, 2), - [7940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [7942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4999), - [7946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4992), - [7948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [7950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5389), - [7952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), - [7954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), - [7956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6030), - [7958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [7960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__scope_resolution, 1), - [7962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__scope_resolution, 1), - [7964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), - [7966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3503), - [7968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4837), - [7970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6254), - [7972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), - [7974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3490), - [7976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [7978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [7980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5210), - [7982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4007), - [7984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5884), - [7986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5420), - [7988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [7990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), - [7992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [7994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), - [7996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3495), - [7998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), - [8000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5890), - [8002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5421), - [8004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 6), - [8006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_capture_specifier, 6), - [8008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 4), - [8010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_capture_specifier, 4), - [8012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), - [8014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3500), - [8016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4304), - [8018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5506), - [8020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4929), - [8022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4769), - [8024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6191), - [8026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4286), - [8028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4285), - [8030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5462), - [8032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [8034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), - [8036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6056), - [8038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [8040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [8042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast, 3, .production_id = 48), - [8044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2826), - [8046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6310), - [8048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 5), - [8050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_capture_specifier, 5), - [8052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5497), - [8054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5324), - [8056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), - [8058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3505), - [8060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4030), - [8062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6304), - [8064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [8066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), - [8068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6266), - [8070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5327), - [8072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), - [8074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3460), - [8076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [8078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5278), - [8080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3095), - [8082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5347), - [8084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3263), - [8086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5844), - [8088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), - [8090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3468), - [8092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4854), - [8094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [8096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), - [8098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3474), - [8100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5326), - [8102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), - [8104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6235), - [8106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4063), - [8108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [8110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [8112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2620), - [8114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6287), - [8116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 5, .production_id = 135), - [8118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 5, .production_id = 135), - [8120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), - [8122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [8124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [8126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [8128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 95), - [8130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 95), - [8132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [8134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [8136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6792), - [8138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, .production_id = 1), - [8140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, .production_id = 1), - [8142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [8144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [8146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [8148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [8150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [8152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [8154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), - [8156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [8158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1), - [8160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1), - [8162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 19), - [8164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 19), - [8166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_declarator, 2, .production_id = 17), - [8168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_declarator, 2, .production_id = 17), - [8170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 93), SHIFT_REPEAT(4461), - [8173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 93), - [8175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [8177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [8179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [8181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [8183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [8185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [8187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [8189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [8191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3066), - [8193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6198), - [8195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2864), - [8197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6169), - [8199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [8201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [8203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 3, .production_id = 19), - [8205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 3, .production_id = 19), - [8207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), - [8209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), - [8211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [8213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [8215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [8217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [8219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2700), - [8221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6368), - [8223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(1474), - [8226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), - [8228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(6792), - [8231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [8233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [8235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_field_identifier, 2, .production_id = 97), - [8237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [8239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), - [8241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [8243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), - [8245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [8247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), - [8249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, .production_id = 6), - [8251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6463), - [8253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6323), - [8255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5525), - [8257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter_declaration, 3, .production_id = 127), - [8259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__scope_resolution, 2, .production_id = 11), - [8261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__scope_resolution, 2, .production_id = 11), - [8263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(6323), - [8266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__scope_resolution, 2, .production_id = 24), - [8268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__scope_resolution, 2, .production_id = 24), - [8270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), - [8272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), - [8274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [8276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), - [8278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [8280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), - [8282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter_declaration, 4, .production_id = 150), - [8284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [8286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), - [8288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5232), - [8290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [8292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5593), - [8294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4811), - [8296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 2), - [8298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5556), - [8300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 3), - [8302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5751), - [8304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6879), - [8306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), - [8308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6106), - [8310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5133), - [8312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6229), - [8314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), - [8316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), - [8318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5296), - [8320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5296), - [8322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5889), - [8324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3118), - [8326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [8328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6827), - [8330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), - [8332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_operator_cast_identifier, 2, .production_id = 27), - [8334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [8336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), - [8338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5719), - [8340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6813), - [8342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [8344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 75), - [8346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5260), - [8348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6934), - [8350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4207), - [8352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), - [8354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5268), - [8356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5268), - [8358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), - [8360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(5296), - [8363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(5296), - [8366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [8368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6761), - [8370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5349), - [8372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5349), - [8374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5364), - [8376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), - [8378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6425), - [8380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), - [8382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6828), - [8384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), - [8386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6419), - [8388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), - [8390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [8392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [8394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [8396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), - [8398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6846), - [8400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [8402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6762), - [8404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [8406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6861), - [8408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), - [8410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5118), - [8412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3145), - [8414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5276), - [8416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5276), - [8418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), - [8420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6648), - [8422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), - [8424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6641), - [8426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), - [8428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [8430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), - [8432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6638), - [8434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), - [8436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), - [8438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5374), - [8440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5374), - [8442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4116), - [8444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [8446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [8448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [8450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [8452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5167), - [8454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), - [8456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4763), - [8458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3028), - [8460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5473), - [8462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5473), - [8464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), - [8466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5543), - [8468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_declarator, 1), - [8470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), - [8472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3282), - [8474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5480), - [8476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5480), - [8478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), - [8480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6630), - [8482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), - [8484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), - [8486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5523), - [8488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), - [8490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6609), - [8492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5426), - [8494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), - [8496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5427), - [8498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5427), - [8500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [8502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6755), - [8504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), - [8506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3037), - [8508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3277), - [8510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4972), - [8512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [8514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [8516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [8518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4850), - [8520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5503), - [8522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5146), - [8524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [8526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [8528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), - [8530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [8532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5985), - [8534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [8536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6353), - [8538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_throw_specifier_repeat1, 2), SHIFT_REPEAT(2911), - [8541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_throw_specifier_repeat1, 2), - [8543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), - [8545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), - [8547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5549), - [8549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), - [8551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), - [8553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6282), - [8555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6080), - [8557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 3), - [8559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 5), - [8561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [8563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), SHIFT_REPEAT(6184), - [8566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), - [8568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), SHIFT_REPEAT(4276), - [8571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), SHIFT_REPEAT(4985), - [8574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), - [8576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [8578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [8580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008), - [8582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(1742), - [8585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), - [8587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requires_parameter_list_repeat1, 2), SHIFT_REPEAT(1747), - [8590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_requires_parameter_list_repeat1, 2), - [8592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6252), - [8594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_parameter_list_repeat1, 2), SHIFT_REPEAT(1734), - [8597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_parameter_list_repeat1, 2), - [8599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5919), - [8601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_reference_declarator, 2), - [8603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [8605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_declarator, 2), - [8607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2), SHIFT_REPEAT(873), - [8610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2), - [8612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT_REPEAT(1271), - [8615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), - [8617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, .dynamic_precedence = 3), - [8619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), - [8621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), - [8623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5581), - [8625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 2, .production_id = 56), - [8627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_declaration, 3, .production_id = 120), - [8629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 2), SHIFT_REPEAT(4811), - [8632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 2), - [8634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6095), - [8636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 4), - [8638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6260), - [8640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 93), SHIFT_REPEAT(4831), - [8643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 93), - [8645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [8647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(6099), - [8650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), - [8652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), - [8654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5094), - [8656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(1372), - [8659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [8661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6184), - [8663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6101), - [8665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4433), - [8667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6103), - [8669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6104), - [8671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4804), - [8673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6105), - [8675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 2), - [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [8679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [8681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [8683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4985), - [8685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3), - [8687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6118), - [8689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 2, .production_id = 81), - [8691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [8693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3969), - [8695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 93), SHIFT_REPEAT(3997), - [8698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 93), - [8700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [8702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6696), - [8704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), - [8706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), - [8708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter_declaration, 2, .production_id = 54), - [8710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [8712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [8714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6131), - [8716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_type_parameter_declaration, 2), - [8718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [8720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [8722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [8724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_designator, 2, .production_id = 86), - [8726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6008), - [8728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6003), - [8730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [8732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5994), - [8734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), - [8736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5560), - [8738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), - [8740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_lambda_capture_specifier_repeat1, 2), SHIFT_REPEAT(1575), - [8743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_structured_binding_declarator_repeat1, 2), SHIFT_REPEAT(6636), - [8746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_structured_binding_declarator_repeat1, 2), - [8748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), - [8750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), SHIFT_REPEAT(6350), - [8753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), - [8755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [8757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5955), - [8759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6328), - [8761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [8763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6023), - [8765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6350), - [8767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [8769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), - [8771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6097), - [8773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [8775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6366), - [8777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6202), - [8779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), - [8781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6129), - [8783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5630), - [8785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), - [8787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [8789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5074), - [8791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6007), - [8793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6182), - [8795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [8797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [8799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4137), - [8801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [8803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), - [8805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), - [8807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5642), - [8809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [8811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [8813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [8815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [8817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5132), - [8819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4250), - [8821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5998), - [8823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [8825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), - [8827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4132), - [8829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4147), - [8831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2), - [8833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4153), - [8835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6220), - [8837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), - [8839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [8841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6000), - [8843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6305), - [8845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [8847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5972), - [8849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [8851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), - [8853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [8855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [8857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [8859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), - [8861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6168), - [8863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), - [8865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [8867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [8869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [8871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [8873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5937), - [8875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5684), - [8877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), - [8879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), - [8881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4810), - [8883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), - [8885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5720), - [8887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), - [8889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6620), - [8891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [8893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [8895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), - [8897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), - [8899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5694), - [8901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6363), - [8903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [8905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [8907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), - [8909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [8911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [8913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [8915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), - [8917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5967), - [8919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), - [8921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [8923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6359), - [8925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5650), - [8927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), - [8929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [8931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), - [8933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6043), - [8935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [8937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [8939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6242), - [8941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [8943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), - [8945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [8947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5836), - [8949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), - [8951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5742), - [8953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), - [8955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [8957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5623), - [8959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6335), - [8961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), - [8963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5749), - [8965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4108), - [8967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4107), - [8969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4129), - [8971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4118), - [8973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [8975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [8977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [8979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), - [8981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), - [8983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [8985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), - [8987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), - [8989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [8991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [8993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [8995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [8997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), - [8999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), - [9001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5764), - [9003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5095), - [9005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), - [9007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), - [9009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [9011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), - [9013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), - [9015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 1, .production_id = 6), - [9017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [9019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [9021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [9023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [9025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [9027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [9029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [9031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [9033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), - [9035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [9037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [9039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [9041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), - [9043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), - [9045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), - [9047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), - [9049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), - [9051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [9053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4930), - [9055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4974), - [9057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4975), - [9059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [9061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4980), - [9063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5598), - [9065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), - [9067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5707), - [9069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), - [9071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6006), - [9073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), - [9075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5823), - [9077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4273), - [9079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [9081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), - [9083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), - [9085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), - [9087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5782), - [9089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4326), - [9091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5896), - [9093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [9095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), - [9097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [9099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [9101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), - [9103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), - [9105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [9107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5788), - [9109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4295), - [9111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [9113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), - [9115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6601), - [9117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5229), - [9119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), - [9121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6904), - [9123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5968), - [9125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), - [9127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6811), - [9129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5933), - [9131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5915), - [9133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [9135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [9137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [9139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [9141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [9143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), - [9145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6401), - [9147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [9149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6443), - [9151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), - [9153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6851), - [9155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5858), - [9157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6473), - [9159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [9161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6014), - [9163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6397), - [9165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6396), - [9167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [9169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), - [9171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6784), - [9173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 4), - [9175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), - [9177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6687), - [9179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [9181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 4), - [9183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3), - [9185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6217), - [9187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6613), - [9189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, .production_id = 81), - [9191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6607), - [9193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6605), - [9195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_template_parameter_declaration, 3, .production_id = 47), - [9197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition_name, 4), - [9199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_type_parameter_declaration, 3, .production_id = 126), - [9201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, .dynamic_precedence = 2), - [9203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [9205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6126), - [9207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, .production_id = 75), - [9209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 3), - [9211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6102), - [9213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5891), - [9215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), - [9217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6817), - [9219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_field_identifier, 2, .production_id = 27), - [9221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6143), - [9223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), - [9225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6668), - [9227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), - [9229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6589), - [9231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition_name, 3), - [9233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), - [9235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6841), - [9237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_pack_expansion, 2, .production_id = 21), - [9239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6199), - [9241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5951), - [9243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6800), - [9245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6807), - [9247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6665), - [9249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6183), - [9251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6606), - [9253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), - [9255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6489), - [9257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6700), - [9259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6699), - [9261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6228), - [9263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6654), - [9265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6659), - [9267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6664), - [9269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4318), - [9271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6754), - [9273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6373), - [9275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6843), - [9277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6837), - [9279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5807), - [9281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6930), - [9283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [9285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 2), - [9287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 6), - [9289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6845), - [9291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6847), - [9293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6804), - [9295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6313), - [9297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), - [9299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6552), - [9301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), - [9303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6469), - [9305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), - [9307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6391), - [9309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [9311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6100), - [9313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [9315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [9317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [9319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [9321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), - [9323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [9325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [9327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4275), - [9329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [9331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6407), - [9333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [9335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [9337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [9339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [9341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4367), - [9343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5283), - [9345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [9347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), - [9349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [9351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [9353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6803), - [9355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [9357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [9359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [9361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [9363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6850), - [9365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [9367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), - [9369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), - [9371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [9373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6812), - [9375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [9377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [9379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [9381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), - [9383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [9385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [9387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4445), - [9389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [9391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3279), - [9393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), - [9395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [9397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5342), - [9399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6682), - [9401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [9403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6929), - [9405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6777), - [9407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [9409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5290), - [9411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6621), - [9413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), - [9415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), - [9417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [9419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_based_modifier, 2), - [9421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), - [9423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), - [9425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6832), - [9427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6387), - [9429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [9431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [9433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), - [9435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), - [9437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [9439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4727), - [9441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4757), - [9443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6633), - [9445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [9447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [9449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [9451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [9453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [9455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4755), - [9457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5452), - [9459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6651), - [9461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6666), - [9463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [9465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [9467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [9469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [9471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6697), - [9473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5568), - [9475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4869), - [9477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [9479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6637), - [9481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [9483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unary_right_fold, 3, .production_id = 44), - [9485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [9487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [9489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [9491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5391), - [9493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [9495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), - [9497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [9499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [9501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [9503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [9505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6808), - [9507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), - [9509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [9511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [9513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [9515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), - [9517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [9519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), - [9521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), - [9523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [9525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [9527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [9529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [9531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6915), - [9533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5447), - [9535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [9537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [9539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6771), - [9541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), - [9543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [9545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6072), - [9547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6070), - [9549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [9551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6039), - [9553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6801), - [9555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [9557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), - [9559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [9561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [9563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [9565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), - [9567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), - [9569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), - [9571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [9573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [9575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), - [9577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), - [9579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [9581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), - [9583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [9585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6092), - [9587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [9589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6721), - [9591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), - [9593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [9595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6123), - [9597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), - [9599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [9601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [9603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [9605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_parameter_list, 3), - [9607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6058), - [9609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6523), - [9612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6689), - [9614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [9616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [9618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [9620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), - [9622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), - [9624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [9626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), - [9628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6269), - [9630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), - [9632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), - [9634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [9636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), - [9638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [9640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [9642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), - [9644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [9646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [9648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6536), - [9651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), - [9653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_parameter_list, 2), - [9655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), - [9657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), - [9659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [9661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [9663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [9665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [9667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), - [9669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6649), - [9671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [9673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [9675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [9677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [9679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [9681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [9683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), - [9685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6050), - [9687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), - [9689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6452), - [9691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, .production_id = 105), - [9693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6533), - [9696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [9698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), - [9700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [9702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [9704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [9706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6487), - [9709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [9711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_parameter_list, 4), - [9713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6718), - [9715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [9717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [9719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [9721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [9723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [9725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), - [9727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6538), - [9729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7303), + [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), + [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), + [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7017), + [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), + [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7011), + [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), + [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), + [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7120), + [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), + [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), + [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), + [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), + [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), + [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), + [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), + [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), + [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), + [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), + [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), + [3401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4069), + [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4932), + [3407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), + [3409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), + [3412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), + [3414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [3416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), + [3419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [3421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(480), + [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5504), + [3426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_name, 1, .production_id = 1), + [3428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), + [3430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 28), + [3432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_qualified_identifier, 2, .production_id = 27), REDUCE(sym_qualified_type_identifier, 2, .production_id = 28), + [3435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 28), + [3437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, .production_id = 27), + [3439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, .production_id = 27), REDUCE(sym_qualified_type_identifier, 2, .production_id = 28), + [3442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_identifier, 2, .production_id = 27), + [3444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, .production_id = 27), SHIFT(482), + [3447] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), + [3451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(533), + [3454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), + [3457] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression, 1), + [3461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), + [3463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), + [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [3467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 3, .dynamic_precedence = 1), + [3469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 3, .dynamic_precedence = 1), + [3471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [3473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_type, 2, .production_id = 12), + [3475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_template_type, 2, .production_id = 12), REDUCE(sym_template_function, 2, .production_id = 13), + [3478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_type, 2, .production_id = 12), + [3480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_function, 2, .production_id = 13), + [3482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_template_type, 2, .production_id = 12), REDUCE(sym_template_function, 2, .production_id = 13), + [3485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_function, 2, .production_id = 13), + [3487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 4, .dynamic_precedence = 1), + [3489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 4, .dynamic_precedence = 1), + [3491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), + [3493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 2), + [3495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 2), + [3497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 4, .dynamic_precedence = 3), + [3499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 4, .dynamic_precedence = 3), + [3501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 3, .dynamic_precedence = 3), + [3503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 3, .dynamic_precedence = 3), + [3505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 3, .dynamic_precedence = 2), + [3507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 3, .dynamic_precedence = 2), + [3509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 4, .dynamic_precedence = 2), + [3511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 4, .dynamic_precedence = 2), + [3513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), + [3515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [3517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, .production_id = 27), SHIFT(476), + [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6397), + [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6663), + [3538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 2), + [3540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_capture_specifier, 2), + [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), + [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), + [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), + [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [3558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2517), + [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5399), + [3562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7115), + [3564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), + [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), + [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [3576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6849), + [3578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), + [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3788), + [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), + [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [3596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6930), + [3598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), + [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [3610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_default_capture, 1), + [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [3628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6925), + [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6976), + [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7162), + [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5096), + [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5063), + [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5093), + [3699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6923), + [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [3707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6891), + [3710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6892), + [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [3717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6903), + [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5480), + [3722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6893), + [3725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6895), + [3728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6896), + [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4391), + [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [3735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6898), + [3738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6827), + [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5031), + [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5030), + [3744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6900), + [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5119), + [3749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6901), + [3752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6902), + [3755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3291), + [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4325), + [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4770), + [3763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4770), + [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5354), + [3767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), + [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7124), + [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5133), + [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5101), + [3779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7014), + [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5013), + [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7159), + [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [3789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6836), + [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4237), + [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6392), + [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6391), + [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [3805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6907), + [3808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6912), + [3811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6913), + [3814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6914), + [3817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6916), + [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), + [3822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6920), + [3825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6922), + [3828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6835), + [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4297), + [3833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7117), + [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7201), + [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5183), + [3845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7015), + [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5496), + [3849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7007), + [3851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6851), + [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5170), + [3855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7231), + [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7186), + [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5139), + [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [3869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), + [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [3879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), + [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [3883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2350), + [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [3897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), + [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [3903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [3911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [3915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4072), + [3917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4621), + [3919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4627), + [3921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4652), + [3923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4617), + [3925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4614), + [3927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4700), + [3929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4674), + [3931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4675), + [3933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4678), + [3935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declarator, 1), + [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [3939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4411), + [3941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3993), + [3943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5560), + [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5382), + [3947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, .production_id = 27), SHIFT(542), + [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), + [3952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(481), + [3955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [3957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [3959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(1812), + [3962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), + [3964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 1), + [3966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), + [3968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), + [3970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), + [3972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, .production_id = 27), SHIFT(473), + [3975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2535), + [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [3979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [3981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [3983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(5625), + [3986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1827), + [3989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2), + [3991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2), + [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [3995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(544), + [3998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), + [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [4002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), + [4004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), + [4006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), + [4008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 3, .production_id = 38), + [4010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 3, .production_id = 38), + [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5128), + [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4312), + [4018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 38), + [4020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 38), + [4022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(1834), + [4025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 38), + [4027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 38), + [4029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 2, .production_id = 9), + [4031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 2, .production_id = 9), + [4033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 9), + [4035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 9), + [4037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 9), + [4039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 9), + [4041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 4, .production_id = 83), + [4043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 4, .production_id = 83), + [4045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 83), + [4047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 83), + [4049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 83), + [4051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 83), + [4053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, .production_id = 14), + [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [4057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, .production_id = 14), + [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6770), + [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [4067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(5666), + [4070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1847), + [4073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 51), + [4075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 51), + [4077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), + [4079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), + [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6572), + [4083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2803), + [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [4087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), + [4089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), + [4091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 36), + [4093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 36), + [4095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_name, 1, .production_id = 1), + [4097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), + [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [4101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 74), + [4103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 74), + [4105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 28), SHIFT(547), + [4108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6414), + [4110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), + [4112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2642), + [4114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), + [4116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), + [4118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(1874), + [4121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_name, 1), + [4123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_name, 1), + [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5513), + [4127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(6414), + [4130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 28), SHIFT(542), + [4133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_type_identifier, 2), + [4135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_type_identifier, 2), + [4137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 27), + [4139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 27), + [4141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__requirement_clause_constraint, 3), + [4143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__requirement_clause_constraint, 3), + [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [4147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 3, .production_id = 61), + [4149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 3, .production_id = 61), + [4151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 38), + [4153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 38), + [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4969), + [4157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_base_clause, 2, .production_id = 78), + [4159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_base_clause, 2, .production_id = 78), + [4161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requires_expression, 3, .production_id = 53), + [4163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_expression, 3, .production_id = 53), + [4165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 3, .production_id = 62), + [4167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 3, .production_id = 62), + [4169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 5, .production_id = 138), + [4171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 5, .production_id = 138), + [4173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requirement_seq, 2), + [4175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requirement_seq, 2), + [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), + [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6919), + [4185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constraint_conjunction, 3, .production_id = 44), + [4187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_conjunction, 3, .production_id = 44), + [4189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(1904), + [4192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(1905), + [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [4197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2916), + [4199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), + [4201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2777), + [4203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 4, .production_id = 101), + [4205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 4, .production_id = 101), + [4207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(5721), + [4210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1914), + [4213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requires_expression, 2, .production_id = 15), + [4215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_expression, 2, .production_id = 15), + [4217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 4, .production_id = 102), + [4219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 4, .production_id = 102), + [4221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fold_expression, 3, .production_id = 33), + [4223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fold_expression, 3, .production_id = 33), + [4225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2985), + [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [4229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 2, .production_id = 25), + [4231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 2, .production_id = 25), + [4233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 9), + [4235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 9), + [4237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requirement_seq, 3), + [4239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requirement_seq, 3), + [4241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2743), + [4243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), + [4245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2742), + [4247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5271), + [4249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4019), + [4251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6952), + [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4804), + [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6372), + [4257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6954), + [4259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4022), + [4261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3995), + [4263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6426), + [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [4267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 40), + [4269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 40), + [4271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 77), + [4273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 77), + [4275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_type, 2, .dynamic_precedence = -1), + [4277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_type, 2, .dynamic_precedence = -1), + [4279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(5610), + [4282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1953), + [4285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(6426), + [4288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1), + [4290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1), + [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4962), + [4294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), + [4296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3122), + [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [4300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6348), + [4302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(6348), + [4305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 28), SHIFT(473), + [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [4310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 7, .production_id = 153), + [4312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 7, .production_id = 153), + [4314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 140), + [4316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 140), + [4318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 6, .production_id = 160), + [4320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 6, .production_id = 160), + [4322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 50), + [4324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 50), + [4326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 73), + [4328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 73), + [4330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 28), SHIFT(481), + [4333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 92), + [4335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 92), + [4337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 143), + [4339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 143), + [4341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 54), + [4343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 54), + [4345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 128), + [4347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 128), + [4349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 90), + [4351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 90), + [4353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_friend_declaration, 4), + [4355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_friend_declaration, 4), + [4357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 7, .production_id = 153), + [4359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 7, .production_id = 153), + [4361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 7, .production_id = 153), + [4363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 7, .production_id = 153), + [4365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 9), + [4367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 9), + [4369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 6, .production_id = 146), + [4371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 6, .production_id = 146), + [4373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 67), + [4375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 67), + [4377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 66), + [4379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 66), + [4381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 6, .production_id = 145), + [4383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 6, .production_id = 145), + [4385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 6, .production_id = 144), + [4387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 6, .production_id = 144), + [4389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 6, .production_id = 146), + [4391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 6, .production_id = 146), + [4393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 6, .production_id = 145), + [4395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 6, .production_id = 145), + [4397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 6, .production_id = 144), + [4399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 6, .production_id = 144), + [4401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 6, .production_id = 146), + [4403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 6, .production_id = 146), + [4405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 6, .production_id = 145), + [4407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 6, .production_id = 145), + [4409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 6, .production_id = 144), + [4411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 6, .production_id = 144), + [4413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 5), + [4415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 5), + [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), + [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6936), + [4427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 5, .production_id = 119), + [4429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 5, .production_id = 119), + [4431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 5, .production_id = 118), + [4433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 5, .production_id = 118), + [4435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_condition_clause, 3, .production_id = 10), + [4437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 3, .production_id = 10), + [4439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 5, .production_id = 117), + [4441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 5, .production_id = 117), + [4443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 5, .production_id = 116), + [4445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 5, .production_id = 116), + [4447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 119), + [4449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 119), + [4451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 118), + [4453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 118), + [4455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 117), + [4457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 117), + [4459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 116), + [4461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 116), + [4463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 5, .production_id = 119), + [4465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 5, .production_id = 119), + [4467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 5, .production_id = 118), + [4469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 5, .production_id = 118), + [4471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 5, .production_id = 117), + [4473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 5, .production_id = 117), + [4475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 5, .production_id = 116), + [4477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 5, .production_id = 116), + [4479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, .production_id = 114), + [4481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 114), + [4483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 4), + [4485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 4), + [4487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 115), + [4489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 115), + [4491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 46), + [4493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 46), + [4495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_method_definition, 3, .production_id = 55), + [4497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_method_definition, 3, .production_id = 55), + [4499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_method_definition, 3, .production_id = 54), + [4501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_method_definition, 3, .production_id = 54), + [4503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 54), + [4505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 54), + [4507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_friend_declaration, 3), + [4509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_friend_declaration, 3), + [4511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 9), + [4513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 9), + [4515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decltype, 4), + [4517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decltype, 4), + [4519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decltype_auto, 4), + [4521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decltype_auto, 4), + [4523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 84), + [4525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 84), + [4527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 82), + [4529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 82), + [4531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 76), + [4533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 76), + [4535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 84), + [4537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 84), + [4539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 82), + [4541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 82), + [4543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 76), + [4545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 76), + [4547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 4, .production_id = 84), + [4549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 4, .production_id = 84), + [4551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, .production_id = 112), + [4553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, .production_id = 112), + [4555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 4, .production_id = 82), + [4557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 4, .production_id = 82), + [4559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 4, .production_id = 76), + [4561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 4, .production_id = 76), + [4563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), + [4565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), + [4567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 80), + [4569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 80), + [4571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_base_clause, 2, .production_id = 79), + [4573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_base_clause, 2, .production_id = 79), + [4575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(547), + [4578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 76), + [4580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 76), + [4582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 3), + [4584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 3), + [4586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, .production_id = 152), + [4588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, .production_id = 152), + [4590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, .production_id = 92), + [4592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, .production_id = 92), + [4594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, .production_id = 151), + [4596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, .production_id = 151), + [4598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 39), + [4600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 39), + [4602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 37), + [4604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 37), + [4606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 39), + [4608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 39), + [4610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 106), + [4612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 106), + [4614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 37), + [4616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 37), + [4618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 3, .production_id = 39), + [4620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 3, .production_id = 39), + [4622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 66), + [4624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 66), + [4626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 3, .production_id = 37), + [4628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 3, .production_id = 37), + [4630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), + [4632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), + [4634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 39), + [4636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 39), + [4638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 37), + [4640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 37), + [4642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 105), + [4644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 105), + [4646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 2), + [4648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 2), + [4650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 29), + [4652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 29), + [4654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 14), + [4656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 14), + [4658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_placeholder_type_specifier, 2, .production_id = 20), + [4660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_placeholder_type_specifier, 2, .production_id = 20), + [4662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_condition_clause, 4, .production_id = 121), + [4664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 4, .production_id = 121), + [4666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 8), + [4668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 8), + [4670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 8), + [4672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 8), + [4674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 2, .production_id = 8), + [4676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 2, .production_id = 8), + [4678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 8), + [4680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 8), + [4682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), + [4684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_placeholder_type_specifier, 1), + [4686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_placeholder_type_specifier, 1), + [4688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, .production_id = 46), + [4690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, .production_id = 46), + [4692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_friend_declaration, 2), + [4694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_friend_declaration, 2), + [4696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_access_specifier, 2), + [4698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_specifier, 2), + [4700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, .production_id = 27), SHIFT(547), + [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), + [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6749), + [4711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_destructor_name, 2), + [4713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(542), + [4716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_destructor_name, 2), + [4718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_declarator, 3, .production_id = 132), + [4720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_declarator, 3, .production_id = 132), + [4722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__expression, 1), + [4725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(482), + [4728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1), REDUCE(sym__expression, 1), + [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5352), + [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4942), + [4735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_identifier, 2), + [4737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_identifier, 2), + [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), + [4741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2557), + [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7147), + [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4979), + [4749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1), + [4751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1), + [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), + [4755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4908), + [4757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 1, .dynamic_precedence = 1), + [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), + [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), + [4763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3766), + [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4973), + [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), + [4771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2759), + [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), + [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7033), + [4777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(474), + [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), + [4782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3058), + [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), + [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6951), + [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), + [4790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2613), + [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), + [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7237), + [4796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(476), + [4799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), + [4801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), + [4803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_field_identifier, 2), + [4805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_field_identifier, 2), + [4807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), + [4809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), + [4811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3148), + [4813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), + [4815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3147), + [4817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), + [4819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), + [4821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 4), + [4823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 4), + [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5005), + [4827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_name, 2), + [4829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_name, 2), + [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), + [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), + [4837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3745), + [4839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3), + [4841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3), + [4843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(2379), + [4846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_declarator, 4, .production_id = 132), + [4848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_declarator, 4, .production_id = 132), + [4850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 2, .production_id = 10), + [4852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), + [4854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), + [4856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 2, .production_id = 10), + [4858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), + [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), + [4866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5472), + [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5472), + [4870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, .production_id = 133), + [4872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, .production_id = 133), + [4874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5), + [4876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5), + [4878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 98), + [4880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 98), + [4882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_method, 2, .production_id = 96), + [4884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_method, 2, .production_id = 96), + [4886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 5), + [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [4892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), + [4894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), + [4896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), + [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [4900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), + [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [4904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 5), + [4906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), + [4908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), + [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [4914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, .production_id = 110), + [4916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, .production_id = 110), + [4918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 4), + [4920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 4), + [4922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2), + [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [4926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [4928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [4930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 7), + [4932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 7), + [4934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 44), + [4936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 44), + [4938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_name, 3), + [4940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_name, 3), + [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), + [4944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 44), + [4946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 44), + [4948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, .production_id = 70), + [4950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 70), + [4952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 59), + [4954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 59), + [4956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 59), SHIFT(547), + [4959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 2), + [4961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 2), + [4963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 70), + [4965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 70), + [4967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 72), + [4969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 72), + [4971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 60), + [4973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 60), + [4975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 6, .production_id = 142), + [4977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 6, .production_id = 142), + [4979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 3), + [4981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 3), + [4983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_disjunction, 3, .production_id = 44), + [4985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constraint_disjunction, 3, .production_id = 44), + [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), + [4989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(7061), + [4992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(5110), + [4995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), + [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7061), + [5001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [5003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 4), + [5005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 4), + [5007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4), + [5009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4), + [5011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 5, .production_id = 125), + [5013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 5, .production_id = 125), + [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), + [5017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_defined_literal, 2), + [5019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user_defined_literal, 2), + [5021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_await_expression, 2, .production_id = 4), + [5023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_await_expression, 2, .production_id = 4), + [5025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_clause, 2, .production_id = 16), + [5027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requires_clause, 2, .production_id = 16), + [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4598), + [5031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pack_expansion, 2, .production_id = 21), + [5033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pack_expansion, 2, .production_id = 21), + [5035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, .production_id = 136), + [5037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, .production_id = 136), + [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [5041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_expression, 2, .production_id = 4), + [5043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_expression, 2, .production_id = 4), + [5045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 49), + [5047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 49), + [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4946), + [5051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 2, .production_id = 23), + [5053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 2, .production_id = 23), + [5055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 89), + [5057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 89), + [5059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 22), + [5061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 22), + [5063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 88), + [5065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 88), + [5067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, .production_id = 111), + [5069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, .production_id = 111), + [5071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 4), + [5073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 4), + [5075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3), + [5077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3), + [5079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), + [5081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), + [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [5087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), + [5089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), + [5091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), + [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [5095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), + [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [5099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), + [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [5105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), + [5107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), + [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), + [5115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5478), + [5117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 59), SHIFT(542), + [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), + [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6811), + [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), + [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), + [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), + [5134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(473), + [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), + [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6740), + [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), + [5143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), + [5145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), + [5147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), + [5149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), + [5151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), + [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [5157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), + [5159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), + [5161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), + [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [5167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), + [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [5171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), + [5173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), + [5175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), + [5177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), + [5179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7052), + [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7099), + [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7097), + [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7089), + [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7088), + [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7086), + [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7085), + [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7084), + [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7083), + [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7082), + [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7081), + [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), + [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7080), + [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7079), + [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), + [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), + [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), + [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4477), + [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), + [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), + [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5066), + [5243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), + [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), + [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), + [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), + [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5234), + [5255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), + [5257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), + [5259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), + [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), + [5267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5468), + [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5468), + [5271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), + [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [5279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), + [5281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), + [5283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), + [5285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), + [5287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), + [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), + [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [5297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 59), SHIFT(473), + [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4512), + [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4513), + [5304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_parameter_list, 4), + [5306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_parameter_list, 4), + [5308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_parameter_list, 2), + [5310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_parameter_list, 2), + [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), + [5314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_parameter_list, 3), + [5316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_parameter_list, 3), + [5318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), + [5320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), + [5322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), + [5324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), + [5326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), + [5328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), + [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [5332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), + [5334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), + [5336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), + [5338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(3177), + [5341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5490), + [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5490), + [5345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), + [5347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), + [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [5353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), + [5355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), + [5357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), + [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [5361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), + [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [5365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), + [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [5369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), + [5371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), + [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4483), + [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4482), + [5383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 59), SHIFT(546), + [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), + [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4594), + [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), + [5392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3477), + [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), + [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), + [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6878), + [5400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(5771), + [5403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(3125), + [5406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_class_specifier, 1), + [5408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_class_specifier, 1), + [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5590), + [5412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1), + [5414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 28), SHIFT(474), + [5417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), + [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4293), + [5423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4293), + [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7204), + [5427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5316), + [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), + [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4291), + [5433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4291), + [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4941), + [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), + [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4256), + [5441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4256), + [5443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(3216), + [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), + [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), + [5450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4260), + [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), + [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4259), + [5456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4259), + [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [5460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(5595), + [5463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(3239), + [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4970), + [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), + [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [5476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3822), + [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), + [5480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), + [5482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), + [5484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3441), + [5486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7128), + [5488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 14), + [5490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 14), + [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [5496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5128), + [5498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4312), + [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [5502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(3469), + [5505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3216), + [5507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3475), + [5509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, .production_id = 28), SHIFT(544), + [5512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), + [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [5518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4423), + [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4266), + [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5397), + [5524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2780), + [5526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_requirement, 6), + [5528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_requirement, 6), + [5530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_requirement, 5), + [5532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_requirement, 5), + [5534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_requirement, 2), + [5536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_requirement, 2), + [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4390), + [5540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__requirement, 1, .production_id = 52), + [5542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__requirement, 1, .production_id = 52), + [5544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_requirement, 4), + [5546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_requirement, 4), + [5548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 14), + [5550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 14), + [5552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5053), + [5554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4128), + [5556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), + [5558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), + [5560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4429), + [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5425), + [5564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3139), + [5566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4407), + [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5387), + [5570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4268), + [5572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4593), + [5574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5043), + [5576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4673), + [5578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4677), + [5580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4612), + [5582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4508), + [5584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7223), + [5586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4143), + [5588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4998), + [5590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4172), + [5592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), + [5594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), + [5596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(4019), + [5599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(6952), + [5602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(6372), + [5605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(6954), + [5608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(4022), + [5611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(3995), + [5614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4995), + [5616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4682), + [5618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4681), + [5620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4665), + [5622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4158), + [5624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5036), + [5626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4142), + [5628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_virtual_function_specifier, 1), + [5630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_virtual_function_specifier, 1), + [5632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__constructor_specifiers, 1), REDUCE(aux_sym__declaration_specifiers_repeat1, 1), + [5635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_specifiers, 1), + [5637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constructor_specifiers, 1), + [5639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__constructor_specifiers, 1), REDUCE(aux_sym__declaration_specifiers_repeat1, 1), + [5642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 1), + [5644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_declspec_modifier, 4), + [5646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_declspec_modifier, 4), + [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4978), + [5650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4130), + [5652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4145), + [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5416), + [5656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5001), + [5658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4701), + [5660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4702), + [5662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4703), + [5664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4132), + [5666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4996), + [5668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4683), + [5670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4687), + [5672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4688), + [5674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4160), + [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5573), + [5684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 1, .production_id = 46), + [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), + [5688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3538), + [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), + [5694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(3391), + [5697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), + [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), + [5701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3561), + [5703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [5705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [5707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [5709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 2, .production_id = 87), + [5711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4181), + [5713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(3323), + [5716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(7304), + [5719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(6651), + [5722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(7301), + [5725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(2211), + [5728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(3339), + [5731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5612), + [5733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4967), + [5735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), + [5737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4543), + [5739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [5741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4542), + [5743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3469), + [5745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4248), + [5747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7108), + [5749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6383), + [5751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7110), + [5753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3622), + [5755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4059), + [5757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6834), + [5759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4252), + [5761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), + [5763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), + [5765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), SHIFT_REPEAT(4019), + [5768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), SHIFT_REPEAT(6952), + [5771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), SHIFT_REPEAT(6372), + [5774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), SHIFT_REPEAT(6954), + [5777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), SHIFT_REPEAT(4022), + [5780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), SHIFT_REPEAT(3995), + [5783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2), SHIFT_REPEAT(4212), + [5786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_reference_declarator, 1), + [5788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), + [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [5792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), + [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [5796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), + [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [5802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [5804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), + [5806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [5808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), + [5810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [5812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), + [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [5816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), + [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), + [5826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__binary_fold_operator, 3, .production_id = 107), + [5828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_fold_operator, 3, .production_id = 107), + [5830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), + [5836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [5838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), + [5840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [5842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), + [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [5846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), + [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [5850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [5852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), + [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [5856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), + [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [5860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), + [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [5864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), + [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), + [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [5882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), + [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [5886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), + [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [5892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), + [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [5896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), + [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [5900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), + [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5402), + [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), + [5922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 3, .production_id = 91), + [5924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_declaration, 4, .production_id = 147), + [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6810), + [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5263), + [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [5938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), + [5940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [5942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), + [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3972), + [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), + [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), + [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), + [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5417), + [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), + [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [5964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT(1530), + [5967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_expression, 3, .production_id = 58), + [5969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), + [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5266), + [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), + [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), + [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [5983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), + [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [5989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), + [5991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), + [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4360), + [5995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), + [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), + [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), + [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), + [6005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [6007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 3, .dynamic_precedence = 1, .production_id = 17), + [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4281), + [6011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4281), + [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7108), + [6015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 3, .dynamic_precedence = 1, .production_id = 17), + [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), + [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), + [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4280), + [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6975), + [6025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4595), + [6027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [6029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [6031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [6033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5328), + [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6732), + [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [6045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [6047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), + [6049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 3, .production_id = 113), + [6051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [6055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 2, .dynamic_precedence = 1, .production_id = 17), + [6057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 2, .dynamic_precedence = 1, .production_id = 17), + [6059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [6061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [6063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [6065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [6067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [6069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [6071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [6073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [6075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [6077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [6079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [6081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [6083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [6085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6794), + [6087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6390), + [6089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter_declaration, 3, .production_id = 128), + [6091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5331), + [6093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7073), + [6095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), + [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [6099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [6101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [6103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5322), + [6105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7261), + [6107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5291), + [6109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6843), + [6111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [6113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [6115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(4248), + [6118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(7108), + [6121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(6383), + [6124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(7110), + [6127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(3622), + [6130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(4252), + [6133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [6135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [6137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [6141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [6143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [6149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [6151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [6153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter_declaration, 4, .production_id = 151), + [6155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [6157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [6159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [6161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [6163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [6165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), + [6168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, .dynamic_precedence = 1), + [6170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [6174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5330), + [6176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7092), + [6178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [6180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6382), + [6184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [6186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1), SHIFT(1363), + [6189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5297), + [6193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6909), + [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [6199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [6201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [6203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [6205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [6207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [6209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [6211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [6213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [6215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5320), + [6217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7000), + [6219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [6221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [6223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [6225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [6227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_lambda_capture_specifier_repeat1, 2), + [6229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, .production_id = 124), + [6231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(3999), + [6234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3391), + [6236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4002), + [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [6240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [6242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [6244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [6246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [6248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [6250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), + [6252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [6254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), + [6256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [6258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), + [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [6264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), + [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [6268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), + [6270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [6272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), + [6274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [6276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [6288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_fold, 3, .production_id = 69), + [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), + [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), + [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [6302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), + [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4269), + [6314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5121), + [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4713), + [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), + [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4705), + [6322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4705), + [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), + [6326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5494), + [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), + [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4737), + [6332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4737), + [6334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5886), + [6338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7304), + [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), + [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), + [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4538), + [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), + [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), + [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4385), + [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6374), + [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4505), + [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), + [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), + [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4510), + [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), + [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4197), + [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), + [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), + [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4499), + [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6371), + [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), + [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [6404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unary_left_fold, 3, .production_id = 44), + [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), + [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), + [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6370), + [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), + [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), + [6456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4952), + [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [6462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), + [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [6466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1), SHIFT(1352), + [6469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [6471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [6473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [6475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [6477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [6479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), + [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [6483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitfield_clause, 2), + [6485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [6487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), + [6489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [6491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [6493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), + [6495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), + [6497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), + [6501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5789), + [6503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [6505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [6507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [6509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), + [6511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), + [6513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [6515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3710), + [6517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6024), + [6519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 1), + [6521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4150), + [6523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), + [6525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declarator, 1), + [6527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 4, .dynamic_precedence = 1, .production_id = 17), + [6529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 4, .dynamic_precedence = 1, .production_id = 17), + [6531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), + [6533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7301), + [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), + [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7128), + [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), + [6541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 2, .dynamic_precedence = 1, .production_id = 17), + [6543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 2, .dynamic_precedence = 1, .production_id = 17), + [6545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 1, .production_id = 2), + [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [6549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4177), + [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4572), + [6553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4572), + [6555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), + [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), + [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6834), + [6561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 14), + [6563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 3, .dynamic_precedence = 1, .production_id = 17), + [6565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 3, .dynamic_precedence = 1, .production_id = 17), + [6567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [6569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), + [6571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), + [6573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5441), + [6575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), + [6577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2284), + [6579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5072), + [6581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4626), + [6583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4631), + [6585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4637), + [6587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), + [6589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7211), + [6591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4147), + [6593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3422), + [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5386), + [6597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4993), + [6599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4642), + [6601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4643), + [6603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4644), + [6605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4146), + [6607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3249), + [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5374), + [6611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5049), + [6613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4625), + [6615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4624), + [6617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4623), + [6619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4131), + [6621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), + [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5412), + [6625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), + [6627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2790), + [6629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5052), + [6631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4659), + [6633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4658), + [6635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4657), + [6637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2762), + [6639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7113), + [6641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4171), + [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), + [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4632), + [6647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4632), + [6649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), + [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5439), + [6653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), + [6655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2614), + [6657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5026), + [6659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4662), + [6661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4666), + [6663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4668), + [6665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2612), + [6667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7219), + [6669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4157), + [6671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), + [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5448), + [6675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), + [6677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), + [6679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5042), + [6681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4663), + [6683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4661), + [6685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4640), + [6687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), + [6689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7154), + [6691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4159), + [6693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), + [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4525), + [6697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5006), + [6699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4184), + [6701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4992), + [6703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4167), + [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), + [6707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_call_modifier, 1), + [6709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_call_modifier, 1), + [6711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat2, 2), + [6713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat2, 2), SHIFT_REPEAT(4281), + [6716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat2, 2), SHIFT_REPEAT(4281), + [6719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat2, 2), + [6721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat2, 2), SHIFT_REPEAT(2211), + [6724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat2, 2), SHIFT_REPEAT(2211), + [6727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat2, 2), SHIFT_REPEAT(4312), + [6730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat2, 2), SHIFT_REPEAT(4280), + [6733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat2, 2), SHIFT_REPEAT(6975), + [6736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4949), + [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4243), + [6740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4704), + [6742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4704), + [6744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat2, 2), SHIFT_REPEAT(3622), + [6747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat2, 2), SHIFT_REPEAT(3622), + [6750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), + [6752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4451), + [6754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3999), + [6756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 14), + [6758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(3323), + [6761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(7304), + [6764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(7301), + [6767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(2211), + [6770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(3339), + [6773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 2), + [6775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4277), + [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4709), + [6779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4709), + [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4114), + [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4459), + [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6944), + [6789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, .production_id = 17), + [6791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_function_declarator, 2, .production_id = 17), + [6793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, .production_id = 26), + [6795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_function_declarator, 2, .production_id = 26), + [6797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 3, .production_id = 17), + [6799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_function_declarator, 3, .production_id = 17), + [6801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 1, .production_id = 26), + [6803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_function_declarator, 1, .production_id = 26), + [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4342), + [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4763), + [6809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4763), + [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4351), + [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4782), + [6815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4782), + [6817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), + [6819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(4281), + [6822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(4281), + [6825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), + [6827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(2211), + [6830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(2211), + [6833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(4280), + [6836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(6975), + [6839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_function_specifier, 4), + [6841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_function_specifier, 4), + [6843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), + [6845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2), + [6847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(7304), + [6850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(4394), + [6853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(4394), + [6856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(4114), + [6859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(4114), + [6862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(4397), + [6865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(6795), + [6868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5484), + [6870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5088), + [6872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4209), + [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4317), + [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4769), + [6878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4769), + [6880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_function_specifier, 1), + [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [6884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_function_specifier, 1), + [6886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(7108), + [6889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4), + [6891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4), + [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4364), + [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4847), + [6897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4847), + [6899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2), + [6901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2), + [6903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3), + [6905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3), + [6907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(3622), + [6910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(3622), + [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [6915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_specifier, 4), + [6917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_specifier, 4), + [6919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_specifier, 3), + [6921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_specifier, 3), + [6923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4464), + [6925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4287), + [6927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4463), + [6929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_noexcept, 4), + [6931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_noexcept, 4), + [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4394), + [6935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4394), + [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), + [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4397), + [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6795), + [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4557), + [6945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_noexcept, 1), + [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [6949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_noexcept, 1), + [6951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_qualifier, 1), + [6953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_qualifier, 1), + [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4403), + [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4925), + [6959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4925), + [6961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_specifier, 5), + [6963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_specifier, 5), + [6965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(4287), + [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [6970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_noexcept, 3), + [6972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_noexcept, 3), + [6974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), + [6976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), + [6978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(4398), + [6981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(4404), + [6984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_virtual_specifier, 1), + [6986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_virtual_specifier, 1), + [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), + [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4453), + [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), + [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4592), + [7000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 2), REDUCE(sym_argument_list, 2), + [7003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(2211), + [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4947), + [7008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(4114), + [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), + [7013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(4114), + [7016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(2211), + [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [7021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_pointer_modifier, 1), + [7023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_pointer_modifier, 1), + [7025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), + [7027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), + [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4944), + [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5718), + [7033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4984), + [7035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5691), + [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4975), + [7039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3416), + [7041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), + [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [7047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2539), + [7049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5665), + [7051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(3622), + [7054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(3622), + [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), + [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [7063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), + [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [7069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), + [7071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5720), + [7073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), + [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [7079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3042), + [7081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5629), + [7083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3284), + [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [7089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3884), + [7091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5624), + [7093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3210), + [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [7099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3471), + [7101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5809), + [7103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), + [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [7109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3092), + [7111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5667), + [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), + [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), + [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [7121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1), + [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4432), + [7125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1), + [7127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4428), + [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4570), + [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4601), + [7133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6410), + [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4524), + [7137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4524), + [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4441), + [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6367), + [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4628), + [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4437), + [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4600), + [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4645), + [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4587), + [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4591), + [7155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4591), + [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4597), + [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4599), + [7161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4602), + [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4603), + [7165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4611), + [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4610), + [7169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4609), + [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4609), + [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4608), + [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5716), + [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4511), + [7179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4436), + [7181] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [7183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [7185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3087), + [7187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3270), + [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [7191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5372), + [7193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5591), + [7195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5137), + [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [7199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5344), + [7201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5301), + [7203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4262), + [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [7207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5370), + [7209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3326), + [7211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3230), + [7213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5064), + [7215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4447), + [7217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4485), + [7219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6674), + [7221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4571), + [7223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4571), + [7225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4698), + [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6376), + [7229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5003), + [7231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 4), + [7233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 4), + [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4633), + [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [7239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2818), + [7241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2817), + [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4618), + [7245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 44), + [7247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 44), + [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [7251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2987), + [7253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3078), + [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4619), + [7257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4641), + [7259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4660), + [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4671), + [7263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), + [7265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [7267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5340), + [7269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2950), + [7271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5723), + [7273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3858), + [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4622), + [7277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4620), + [7279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3774), + [7281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 4), + [7283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 4), + [7285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 3), + [7287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 3), + [7289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2954), + [7291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), + [7293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5405), + [7295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4581), + [7297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5150), + [7299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4636), + [7301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4616), + [7303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4963), + [7305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3439), + [7307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4685), + [7309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3), + [7311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3), + [7313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4294), + [7315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [7317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5210), + [7319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5742), + [7321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4943), + [7323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5434), + [7325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4667), + [7327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5033), + [7329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5415), + [7331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5284), + [7333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 2), + [7335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 2), + [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4638), + [7339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5274), + [7341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4655), + [7343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 7), + [7345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 7), + [7347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4649), + [7349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 2), + [7351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 2), + [7353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4669), + [7355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 4), + [7357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 4), + [7359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5288), + [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4651), + [7363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4551), + [7365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), + [7367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5163), + [7369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4550), + [7371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5253), + [7373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3088), + [7375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5011), + [7377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [7379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2509), + [7381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4577), + [7383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), + [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4549), + [7387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4588), + [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4686), + [7391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4545), + [7393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4544), + [7395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5237), + [7397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4650), + [7399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4692), + [7401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4634), + [7403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4535), + [7405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4536), + [7407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4480), + [7409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4541), + [7411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4716), + [7413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [7415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [7417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [7419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), + [7421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [7423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6368), + [7425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4575), + [7427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4578), + [7429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4547), + [7431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4586), + [7433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [7435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4607), + [7437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4471), + [7439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4501), + [7441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4484), + [7443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4532), + [7445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4534), + [7447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [7449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1), SHIFT(1342), + [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), + [7454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6347), + [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4656), + [7462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4313), + [7464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), + [7468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6585), + [7474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [7476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [7478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [7480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5383), + [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4552), + [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [7488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4518), + [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [7502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [7506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4229), + [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [7514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), + [7516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [7518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6630), + [7520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [7522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [7524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [7526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6378), + [7528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [7530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [7532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6712), + [7534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3998), + [7536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5851), + [7538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), + [7540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), + [7542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), + [7544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6949), + [7546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4780), + [7548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6017), + [7550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), + [7552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [7554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [7556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [7558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6219), + [7560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [7562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [7564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4064), + [7566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5839), + [7568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5285), + [7570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6063), + [7572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2196), + [7574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7195), + [7576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4891), + [7578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5848), + [7580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), + [7582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), + [7584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4899), + [7586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5853), + [7588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), + [7590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [7592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [7594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [7596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2369), + [7598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7042), + [7600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4904), + [7602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5868), + [7604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2215), + [7606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), + [7608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4907), + [7610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5917), + [7612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [7614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), + [7616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4910), + [7618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6018), + [7620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [7622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), + [7624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6962), + [7626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4919), + [7628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6056), + [7630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), + [7632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2638), + [7634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4924), + [7636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6087), + [7638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), + [7640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7155), + [7642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4928), + [7644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5994), + [7646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), + [7648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4074), + [7650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5894), + [7652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [7654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), + [7656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4935), + [7658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5862), + [7660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [7662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3662), + [7664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5847), + [7666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), + [7668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4938), + [7670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6117), + [7672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), + [7674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4939), + [7676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6074), + [7678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5308), + [7680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5819), + [7682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2400), + [7684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4556), + [7686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4267), + [7688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), + [7690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6516), + [7692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5262), + [7694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5540), + [7696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3294), + [7698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [7700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6171), + [7702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5730), + [7704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [7706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [7708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6369), + [7710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5777), + [7712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [7714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6649), + [7716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5609), + [7718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [7720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [7722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6343), + [7724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5683), + [7726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [7728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6416), + [7730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5751), + [7732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), + [7734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), + [7736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4559), + [7738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), + [7740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [7742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [7744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5641), + [7746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4968), + [7748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6046), + [7750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), + [7752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3245), + [7754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4895), + [7756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6025), + [7758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [7760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6622), + [7762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5642), + [7764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3408), + [7766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2529), + [7768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), + [7770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [7772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [7774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [7776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 4, .production_id = 17), + [7778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_function_declarator, 4, .production_id = 17), + [7780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5160), + [7782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5180), + [7784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5199), + [7786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5194), + [7788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5153), + [7790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5190), + [7792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_field_declarator, 2, .dynamic_precedence = 1), + [7794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5188), + [7796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 2, .dynamic_precedence = 1, .production_id = 5), + [7798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4460), + [7800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5103), + [7802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5569), + [7804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5196), + [7806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5165), + [7808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4462), + [7810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 5, .production_id = 135), + [7812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 5, .production_id = 135), + [7814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 5, .production_id = 17), + [7816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_function_declarator, 5, .production_id = 17), + [7818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 4, .dynamic_precedence = 1, .production_id = 71), + [7820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 4, .production_id = 26), + [7822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_function_declarator, 4, .production_id = 26), + [7824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 3, .production_id = 26), + [7826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_function_declarator, 3, .production_id = 26), + [7828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 5, .dynamic_precedence = 1, .production_id = 17), + [7830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 5, .dynamic_precedence = 1, .production_id = 17), + [7832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 3, .dynamic_precedence = 1, .production_id = 34), + [7834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 19), + [7836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 19), + [7838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 5), + [7840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5525), + [7842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5189), + [7844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5202), + [7846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 95), + [7848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 95), + [7850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 137), + [7852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 137), + [7854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_declarator, 2), + [7856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_declarator, 2), + [7858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5149), + [7860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5169), + [7862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5174), + [7864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5774), + [7866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5182), + [7868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trailing_return_type, 2), + [7870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trailing_return_type, 2), + [7872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 5, .dynamic_precedence = 1, .production_id = 134), + [7874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5168), + [7876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5193), + [7878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 19), + [7880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 19), + [7882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5647), + [7884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5191), + [7886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5157), + [7888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3), + [7890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3), + [7892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), + [7894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT_REPEAT(6372), + [7897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), + [7899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__abstract_declarator, 1), + [7901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__abstract_declarator, 1), + [7903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 2), + [7905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 2), + [7907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 100), + [7909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 100), + [7911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5177), + [7913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 3), + [7915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_parenthesized_declarator, 3), + [7917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5561), + [7919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5186), + [7921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 19), + [7923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 19), + [7925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 32), + [7927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), + [7929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_declarator, 2, .dynamic_precedence = 1), + [7931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 5, .dynamic_precedence = 1, .production_id = 134), + [7933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_field_declarator, 2), + [7935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_field_declarator, 2), + [7937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 4, .dynamic_precedence = 1, .production_id = 71), + [7939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 50), + [7941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 68), + [7943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 34), + [7945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 95), + [7947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 95), + [7949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_reference_declarator, 2), + [7951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 5), + [7953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 34), + [7955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 5), + [7957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_structured_binding_declarator, 3, .dynamic_precedence = -1), + [7959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_structured_binding_declarator, 3, .dynamic_precedence = -1), + [7961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 6, .dynamic_precedence = 1, .production_id = 17), + [7963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 6, .dynamic_precedence = 1, .production_id = 17), + [7965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 5), + [7967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 3, .production_id = 19), + [7969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 3, .production_id = 19), + [7971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, .production_id = 81), + [7973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [7975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, .production_id = 81), + [7977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5324), + [7979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 4, .production_id = 108), + [7981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT_REPEAT(6383), + [7984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5310), + [7986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 4, .dynamic_precedence = 1, .production_id = 17), + [7988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 4, .dynamic_precedence = 1, .production_id = 17), + [7990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), + [7992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), + [7994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 5, .production_id = 135), + [7996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 5, .production_id = 135), + [7998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_structured_binding_declarator, 4, .dynamic_precedence = -1), + [8000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_structured_binding_declarator, 4, .dynamic_precedence = -1), + [8002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4590), + [8004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4589), + [8006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), + [8008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), + [8010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 5, .production_id = 135), + [8012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 5, .production_id = 135), + [8014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4952), + [8016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 5, .dynamic_precedence = 1, .production_id = 17), + [8018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 5, .dynamic_precedence = 1, .production_id = 17), + [8020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 95), + [8022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 95), + [8024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1), + [8026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1), + [8028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 3, .production_id = 19), + [8030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 3, .production_id = 19), + [8032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 19), + [8034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 19), + [8036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5143), + [8038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), + [8040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), + [8042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6045), + [8044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5796), + [8046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7173), + [8048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [8050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4573), + [8052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4604), + [8054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6876), + [8056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7141), + [8058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5840), + [8060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6932), + [8062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6984), + [8064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4086), + [8066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), + [8068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, .production_id = 54), + [8070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [8072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 5, .dynamic_precedence = 1, .production_id = 134), + [8074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 2, .dynamic_precedence = 1, .production_id = 5), + [8076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [8078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7065), + [8080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [8082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7209), + [8084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 4, .dynamic_precedence = 1, .production_id = 71), + [8086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [8088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6842), + [8090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6789), + [8092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [8094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [8096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [8098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [8100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [8102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4566), + [8104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4567), + [8106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [8108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), + [8110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), + [8112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5385), + [8114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5277), + [8116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 3, .dynamic_precedence = 1, .production_id = 34), + [8118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6051), + [8120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7177), + [8122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 3), + [8124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_capture_specifier, 3), + [8126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_designator, 3), + [8128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), + [8130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [8132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6068), + [8134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7235), + [8136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [8138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5514), + [8140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6073), + [8142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [8144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [8146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [8148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [8150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4584), + [8152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5497), + [8154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5346), + [8156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5242), + [8158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), + [8160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [8162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5510), + [8164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5388), + [8166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5213), + [8168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4583), + [8170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5512), + [8172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5436), + [8174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_type_declarator, 2), + [8176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_type_declarator, 2), + [8178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 5), + [8180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5498), + [8182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5438), + [8184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5502), + [8186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5406), + [8188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5217), + [8190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [8192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [8194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5239), + [8196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3247), + [8198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5353), + [8200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5244), + [8202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5236), + [8204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5214), + [8206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5501), + [8208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5369), + [8210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5515), + [8212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5350), + [8214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [8216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [8218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [8220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2670), + [8222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6337), + [8224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [8226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__scope_resolution, 1), + [8228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__scope_resolution, 1), + [8230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), + [8232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4083), + [8234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5136), + [8236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6612), + [8238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), + [8240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4088), + [8242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5550), + [8244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 4), + [8246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_capture_specifier, 4), + [8248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5657), + [8250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3223), + [8252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6387), + [8254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3254), + [8256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6146), + [8258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), + [8260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4090), + [8262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5543), + [8264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4457), + [8266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4561), + [8268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4560), + [8270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3208), + [8272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6413), + [8274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), + [8276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4106), + [8278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), + [8280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4103), + [8282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5735), + [8284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3277), + [8286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [8288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3272), + [8290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6444), + [8292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4296), + [8294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6243), + [8296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5764), + [8298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [8300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5131), + [8302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [8304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [8306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [8308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), + [8310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4110), + [8312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4258), + [8314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [8316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5605), + [8318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), + [8320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4078), + [8322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 5), + [8324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_capture_specifier, 5), + [8326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5775), + [8328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5164), + [8330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4456), + [8332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5810), + [8334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast, 3, .production_id = 48), + [8336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [8338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [8340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [8342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5770), + [8344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), + [8346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6658), + [8348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), + [8350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4095), + [8352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5032), + [8354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6548), + [8356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4344), + [8358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), + [8360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4079), + [8362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5479), + [8364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [8366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [8368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [8370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5632), + [8372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5664), + [8374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), + [8376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6145), + [8378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 6), + [8380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_capture_specifier, 6), + [8382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), + [8384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6537), + [8386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), + [8388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6646), + [8390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_declarator, 2, .production_id = 17), + [8392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_declarator, 2, .production_id = 17), + [8394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 3, .production_id = 19), + [8396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 3, .production_id = 19), + [8398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(1704), + [8401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), + [8403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(7023), + [8406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [8408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [8410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), + [8412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [8414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [8416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [8418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 93), SHIFT_REPEAT(4716), + [8421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 93), + [8423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [8425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [8427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [8429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [8431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7023), + [8433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [8435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [8437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2948), + [8439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6723), + [8441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [8443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [8445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [8447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [8449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2497), + [8451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6440), + [8453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [8455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [8457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [8459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [8461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [8463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [8465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [8467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [8469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), + [8471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [8473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2589), + [8475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6522), + [8477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), + [8479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), + [8481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 5, .production_id = 135), + [8483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 5, .production_id = 135), + [8485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [8487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [8489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, .production_id = 1), + [8491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, .production_id = 1), + [8493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 19), + [8495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 19), + [8497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [8499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [8501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3068), + [8503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6480), + [8505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1), + [8507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1), + [8509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 95), + [8511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 95), + [8513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [8515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), + [8517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), + [8519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), + [8521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, .production_id = 6), + [8523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7067), + [8525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [8527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), + [8529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [8531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), + [8533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__scope_resolution, 2, .production_id = 11), + [8535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__scope_resolution, 2, .production_id = 11), + [8537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter_declaration, 4, .production_id = 150), + [8539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [8541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), + [8543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter_declaration, 3, .production_id = 127), + [8545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [8547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), + [8549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__scope_resolution, 2, .production_id = 24), + [8551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__scope_resolution, 2, .production_id = 24), + [8553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_field_identifier, 2, .production_id = 97), + [8555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), + [8557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), + [8559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5878), + [8561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6679), + [8563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5517), + [8565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2), SHIFT_REPEAT(6679), + [8568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5856), + [8570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5122), + [8572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 2), + [8574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5933), + [8576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6837), + [8578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), + [8580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6458), + [8582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5403), + [8584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), + [8586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5548), + [8588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5548), + [8590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3314), + [8592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6601), + [8594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), + [8596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [8598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), + [8600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), + [8602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(5548), + [8605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(5548), + [8608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [8610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [8612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [8614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), + [8616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6587), + [8618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6852), + [8620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), + [8622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7126), + [8624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [8626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5929), + [8628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_declarator, 1), + [8630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), + [8632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6003), + [8634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6854), + [8636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), + [8638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5649), + [8640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5649), + [8642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [8644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [8646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3206), + [8648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [8650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3302), + [8652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5531), + [8654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5531), + [8656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2383), + [8658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7137), + [8660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [8662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), + [8664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5662), + [8666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5662), + [8668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7056), + [8670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), + [8672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5682), + [8674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5636), + [8676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), + [8678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), + [8680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5529), + [8682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5529), + [8684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [8686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), + [8688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7248), + [8690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5070), + [8692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5411), + [8694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_operator_cast_identifier, 2, .production_id = 27), + [8696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [8698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7269), + [8700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), + [8702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3485), + [8704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), + [8706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [8708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), + [8710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [8712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), + [8714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5709), + [8716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5709), + [8718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), + [8720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7112), + [8722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5400), + [8724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), + [8726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6948), + [8728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5268), + [8730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5381), + [8732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6042), + [8734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 3), + [8736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6808), + [8738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), + [8740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), + [8742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7027), + [8744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5092), + [8746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6943), + [8748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), + [8750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [8752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), + [8754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), + [8756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7021), + [8758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), + [8760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6996), + [8762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), + [8764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), + [8766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5622), + [8768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5622), + [8770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [8772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [8774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 75), + [8776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [8778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5527), + [8780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [8782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [8784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), + [8786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6979), + [8788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [8790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [8792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3209), + [8794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5593), + [8796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5593), + [8798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6828), + [8800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4465), + [8802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [8804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5671), + [8806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [8808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), + [8810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), + [8812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5877), + [8814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6805), + [8816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5685), + [8818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5685), + [8820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [8822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4361), + [8824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6358), + [8826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6414), + [8828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [8830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6433), + [8832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4112), + [8834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), + [8836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), + [8838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4081), + [8840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), + [8842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), + [8844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [8846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), + [8848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [8850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4369), + [8852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4368), + [8854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [8856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4367), + [8858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4365), + [8860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [8862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5824), + [8864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6336), + [8866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [8868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [8870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [8872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4245), + [8874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6672), + [8876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6671), + [8878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5830), + [8880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), + [8882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6365), + [8884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6253), + [8886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), + [8888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6556), + [8890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), + [8892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6289), + [8894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6407), + [8896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6590), + [8898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6465), + [8900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5261), + [8902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2), + [8904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6454), + [8906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6435), + [8908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [8910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6523), + [8912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [8914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6745), + [8916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_throw_specifier_repeat1, 2), SHIFT_REPEAT(3354), + [8919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_throw_specifier_repeat1, 2), + [8921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [8923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [8925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), + [8927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6195), + [8929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_structured_binding_declarator_repeat1, 2), SHIFT_REPEAT(7061), + [8932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_structured_binding_declarator_repeat1, 2), + [8934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), + [8936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5927), + [8938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), + [8940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), + [8942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [8944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), + [8946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4286), + [8948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6308), + [8950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), + [8952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), + [8954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), + [8956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), + [8958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), + [8960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [8962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), + [8964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), + [8966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6459), + [8968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 3), + [8970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 5), + [8972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5873), + [8974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), + [8976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), + [8978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [8980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [8982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), + [8984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6405), + [8986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [8988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [8990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [8992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [8994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), + [8996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5373), + [8998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [9000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5890), + [9002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), + [9004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), + [9006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4401), + [9008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4469), + [9010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [9012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [9014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_designator, 2, .production_id = 86), + [9016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6271), + [9018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), SHIFT_REPEAT(6672), + [9021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), + [9023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), SHIFT_REPEAT(4600), + [9026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), + [9028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), + [9030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [9032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4118), + [9034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), + [9036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5968), + [9038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), + [9040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), + [9042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [9044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_declarator, 2), + [9046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), + [9048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6106), + [9050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), + [9052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), + [9054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 1, .production_id = 6), + [9056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [9058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6529), + [9060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), SHIFT_REPEAT(5261), + [9063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), + [9065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter_declaration, 2, .production_id = 54), + [9067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5348), + [9069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [9071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5144), + [9073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [9075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [9077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [9079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [9081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [9083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5364), + [9085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [9087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [9089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4383), + [9091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4261), + [9093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [9095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), + [9097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5970), + [9099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5110), + [9101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 93), SHIFT_REPEAT(5143), + [9104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 93), + [9106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6426), + [9108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(1856), + [9111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), + [9113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [9115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), + [9117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6348), + [9119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [9121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [9123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [9125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [9127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [9129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), + [9131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [9133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5997), + [9135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), + [9137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [9139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [9141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [9143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [9145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requires_parameter_list_repeat1, 2), SHIFT_REPEAT(1879), + [9148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_requires_parameter_list_repeat1, 2), + [9150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [9152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), + [9154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_parameter_list_repeat1, 2), SHIFT_REPEAT(1813), + [9157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_parameter_list_repeat1, 2), + [9159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), + [9161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_reference_declarator, 2), + [9163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), + [9165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), + [9167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5959), + [9169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [9171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [9173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [9175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [9177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), + [9179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), + [9181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), SHIFT_REPEAT(6556), + [9184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), + [9186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 2), SHIFT_REPEAT(5122), + [9189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 2), + [9191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6307), + [9193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [9195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), + [9197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5286), + [9199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2), SHIFT_REPEAT(860), + [9202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2), + [9204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5282), + [9206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5276), + [9208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5273), + [9210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5844), + [9212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6412), + [9214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, .dynamic_precedence = 3), + [9216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [9218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [9220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT_REPEAT(1285), + [9223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [9225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [9227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [9229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [9231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [9233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [9235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [9237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 2, .production_id = 56), + [9239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_declaration, 3, .production_id = 120), + [9241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6423), + [9243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6349), + [9245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4382), + [9247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5985), + [9249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [9251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), + [9253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [9255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6589), + [9257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_type_parameter_declaration, 2), + [9259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6169), + [9261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4539), + [9263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), + [9265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [9267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4664), + [9269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), + [9271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), + [9273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6495), + [9275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), + [9277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), + [9279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [9281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4384), + [9283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6490), + [9285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 4), + [9287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), + [9289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6669), + [9291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [9293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6310), + [9295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(6518), + [9298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), + [9300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), + [9302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6026), + [9304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4515), + [9306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [9308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [9310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5440), + [9312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6637), + [9314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6323), + [9316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [9318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(1423), + [9321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [9323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6090), + [9325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), + [9327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [9329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [9331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6506), + [9333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), + [9335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6527), + [9337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), + [9339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), + [9341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [9343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [9345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6542), + [9347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6717), + [9349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), + [9351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [9353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [9355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6543), + [9357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 2), + [9359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3), + [9361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6052), + [9363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4487), + [9365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), + [9367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), + [9369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6048), + [9371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), + [9373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [9375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), + [9377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6361), + [9379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), + [9381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), + [9383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), + [9385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6114), + [9387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), + [9389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [9391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6547), + [9393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 2, .production_id = 81), + [9395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4221), + [9397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 93), SHIFT_REPEAT(4229), + [9400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 93), + [9402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6101), + [9404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), + [9406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6075), + [9408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), + [9410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), + [9412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [9414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6747), + [9416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6648), + [9418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [9420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [9422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [9424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_lambda_capture_specifier_repeat1, 2), SHIFT_REPEAT(1639), + [9427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [9429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [9431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), + [9433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [9435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6364), + [9437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6267), + [9439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6168), + [9441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7010), + [9443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7009), + [9445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [9447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6285), + [9449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [9451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [9453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [9455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [9457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2348), + [9459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6846), + [9461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [9463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6197), + [9465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [9467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6953), + [9469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), + [9471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6867), + [9473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6930), + [9475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6927), + [9477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6841), + [9479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7036), + [9481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6849), + [9483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6848), + [9485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5500), + [9487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6959), + [9489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [9491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6515), + [9493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), + [9495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6938), + [9497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6838), + [9499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4579), + [9501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6809), + [9503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 2), + [9505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6456), + [9507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7022), + [9509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6990), + [9511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), + [9513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6921), + [9515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6690), + [9517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6326), + [9519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), + [9521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6967), + [9523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), + [9525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7035), + [9527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6718), + [9529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6742), + [9531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 4), + [9533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), + [9535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7004), + [9537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6500), + [9539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [9541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7115), + [9543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7114), + [9545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6561), + [9547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 4), + [9549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6424), + [9551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3), + [9553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, .production_id = 81), + [9555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6249), + [9557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), + [9559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7048), + [9561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 6), + [9563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition_name, 4), + [9565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_template_parameter_declaration, 3, .production_id = 47), + [9567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_type_parameter_declaration, 3, .production_id = 126), + [9569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, .dynamic_precedence = 2), + [9571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), + [9573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6935), + [9575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_pack_expansion, 2, .production_id = 21), + [9577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6303), + [9579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [9581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2357), + [9583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7109), + [9585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6970), + [9587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6969), + [9589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7225), + [9591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7150), + [9593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), + [9595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7182), + [9597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6615), + [9599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7302), + [9601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7299), + [9603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6699), + [9605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, .production_id = 75), + [9607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [9609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), + [9611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7171), + [9613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 3), + [9615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6530), + [9617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4690), + [9619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7107), + [9621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), + [9623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7229), + [9625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_field_identifier, 2, .production_id = 27), + [9627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), + [9629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7296), + [9631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [9633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7160), + [9635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition_name, 3), + [9637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6698), + [9639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5222), + [9641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [9643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7264), + [9645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [9647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [9649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6580), + [9651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5603), + [9653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [9655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_parameter_list, 3), + [9657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [9659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_parameter_list, 4), + [9661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), + [9663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7298), + [9665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [9667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7152), + [9669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [9671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7268), + [9673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), + [9675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), + [9677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7217), + [9679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [9681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), + [9683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5633), + [9685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), + [9687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), + [9689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, .production_id = 105), + [9691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), + [9693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), + [9695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7111), + [9697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [9699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), + [9701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), + [9703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), + [9705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), + [9707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7095), + [9709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), + [9711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [9713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [9715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, .production_id = 140), + [9717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), + [9719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), + [9721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [9723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), + [9725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7060), + [9727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 105), + [9729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), [9731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 5, .production_id = 140), - [9733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [9735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), - [9737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [9739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [9741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [9743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), - [9745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [9747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), - [9749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [9751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [9753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6449), - [9755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [9757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6578), - [9759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [9761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [9763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [9765] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [9767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [9769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [9771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [9773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [9775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6551), - [9777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, .production_id = 140), - [9779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6280), - [9781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [9783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6528), - [9785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [9787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [9789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [9791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [9793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [9795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [9797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), - [9799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6390), - [9801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6318), - [9803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 105), - [9805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6457), - [9807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [9809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [9811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), - [9813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [9815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [9817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), - [9819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [9821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6534), - [9824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [9826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [9828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [9830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6599), - [9832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6395), - [9834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), - [9836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6531), - [9839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [9841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [9843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), - [9845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), - [9847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [9849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), - [9851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), - [9853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6370), - [9855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5589), - [9857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6424), - [9859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6530), - [9862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [9864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [9866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6421), - [9868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [9870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), - [9872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6766), - [9874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6590), - [9876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [9878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), - [9880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), - [9882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6445), - [9884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [9886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [9888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [9890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6307), - [9892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [9894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6485), - [9896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [9898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [9900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [9902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5308), - [9904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [9906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [9908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [9910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6864), - [9912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6284), - [9914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [9916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [9918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [9920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [9922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), - [9924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6403), - [9926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [9928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [9930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), - [9932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [9934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [9936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6840), - [9938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [9940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [9942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [9944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [9946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [9948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [9950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [9952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [9954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6615), - [9956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [9958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), - [9960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6522), - [9963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [9965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [9967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [9969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [9971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [9973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6642), - [9975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [9977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), - [9979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6529), - [9982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [9984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [9986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [9988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6763), - [9990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), - [9992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [9994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4971), - [9996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6770), - [9998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [10000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4955), - [10002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4960), - [10004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [10006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [10008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [10010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [10012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6795), - [10014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6527), - [10017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [10019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6798), - [10021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [10023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [10025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6510), - [10028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), - [10030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6476), - [10032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [10034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [10036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6822), - [10038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6825), - [10040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), - [10042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), - [10044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6921), - [10046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [10048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [10050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6836), - [10052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6839), - [10054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), - [10056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4344), - [10058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [10060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6848), - [10062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6849), - [10064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6854), - [10066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [10068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6306), - [10070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [10072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4231), - [10074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [10076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), - [10078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6513), - [10081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [10083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5313), - [10085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6518), + [9733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7037), + [9735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7030), + [9737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5763), + [9739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), + [9741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5688), + [9743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [9745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6937), + [9747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), + [9749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6958), + [9751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7038), + [9753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [9755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5218), + [9757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), + [9759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), + [9761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6827), + [9763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), + [9765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [9767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4509), + [9769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5224), + [9771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [9773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5058), + [9775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [9777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6836), + [9779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7006), + [9781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), + [9783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), + [9785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), + [9787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5056), + [9789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5057), + [9791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), + [9793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), + [9795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [9797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7002), + [9799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [9801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [9803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6851), + [9805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), + [9807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), + [9809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), + [9811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [9813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unary_right_fold, 3, .production_id = 44), + [9815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [9817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5677), + [9819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [9821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6955), + [9823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [9825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [9827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [9829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6926), + [9831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [9833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6911), + [9835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [9837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5587), + [9839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [9841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), + [9843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), + [9845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [9847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3573), + [9849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [9851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [9853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6847), + [9855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [9857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), + [9859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6923), + [9861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [9863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [9865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [9867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4635), + [9869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [9871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6833), + [9873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), + [9875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [9877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [9879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [9881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6824), + [9883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), + [9885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), + [9887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), + [9889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [9891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), + [9893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6396), + [9895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), + [9897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6816), + [9899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [9901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [9903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4646), + [9905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7007), + [9907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [9909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), + [9911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), + [9913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), + [9915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), + [9917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [9919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [9921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [9923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [9925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [9927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6449), + [9929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), + [9931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6802), + [9933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [9935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [9937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [9939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [9941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [9943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [9945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [9947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), + [9949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [9951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_parameter_list, 2), + [9953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [9955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6784), + [9957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [9959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), + [9961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [9963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [9965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), + [9967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [9969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [9971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7015), + [9973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), + [9975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), + [9977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [9979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [9981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [9983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), + [9985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), + [9987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [9989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [9991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6762), + [9993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [9995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5916), + [9997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), + [9999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [10001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [10003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7014), + [10005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6776), + [10007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [10009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4472), + [10011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4507), + [10013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [10015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [10017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [10019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), + [10021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), + [10023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), + [10025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), + [10027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [10029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [10031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [10033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [10035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [10037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6890), + [10040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [10042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [10044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [10046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [10048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [10050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), + [10052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6217), + [10054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [10056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), + [10058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), + [10060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5734), + [10062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), + [10064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [10066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4202), + [10068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [10070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [10072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6859), + [10074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6863), + [10077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6870), + [10080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6871), + [10083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6872), + [10086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6873), + [10089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6875), + [10092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6879), + [10095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6880), + [10098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6882), + [10101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6884), + [10104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [10106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [10108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [10110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), + [10112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), + [10114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [10116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6886), + [10119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [10121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1), SHIFT(6887), + [10124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [10126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [10128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [10130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [10132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [10134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [10136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [10138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6934), + [10140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6638), + [10142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), + [10144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6753), + [10146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7117), + [10148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [10150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [10152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [10154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [10156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [10158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [10160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6675), + [10162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6736), + [10164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [10166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [10168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6960), + [10170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [10172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [10174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), + [10176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [10178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [10180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [10182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), + [10184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [10186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [10188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [10190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [10192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [10194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [10196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [10198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), + [10200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [10202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [10204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), + [10206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [10208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6502), + [10210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), + [10212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6780), + [10214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), + [10216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [10218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7020), + [10220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [10222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), + [10224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), + [10226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6441), + [10228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [10230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [10232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6394), + [10234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6393), + [10236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [10238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [10240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [10242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [10244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6252), + [10246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [10248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6844), + [10250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_based_modifier, 2), + [10252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [10254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7063), + [10256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [10258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [10260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), + [10262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), + [10264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [10266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [10268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6335), + [10270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), + [10272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6888), + [10274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [10276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5955), + [10278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5095), + [10280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), + [10282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [10284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [10286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), + [10288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), + [10290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [10292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6381), + [10294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), + [10296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [10298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [10300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [10302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [10304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), + [10306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [10308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [10310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6981), + [10312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [10314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), + [10316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), + [10318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), + [10320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), + [10322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), + [10324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), + [10326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7008), + [10328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), + [10330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), + [10332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), + [10334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [10336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), + [10338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), + [10340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [10342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [10344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7129), + [10346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [10348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [10350] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [10352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7143), + [10354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), + [10356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7136), + [10358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [10360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [10362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [10364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), + [10366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [10368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [10370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7161), + [10372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4240), + [10374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6333), + [10376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7164), + [10378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [10380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [10382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [10384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), + [10386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [10388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [10390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [10392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7188), + [10394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7191), + [10396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [10398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7165), + [10400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [10402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [10404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [10406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7203), + [10408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7206), + [10410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [10412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [10414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [10416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7215), + [10418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7216), + [10420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7221), + [10422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [10424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [10426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [10428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7231), + [10430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [10432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), + [10434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7189), + [10436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [10438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6668), + [10440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [10442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5668), }; #ifdef __cplusplus diff --git a/test/corpus/expressions.txt b/test/corpus/expressions.txt index fed5229..5c76806 100644 --- a/test/corpus/expressions.txt +++ b/test/corpus/expressions.txt @@ -989,3 +989,46 @@ bool t3 = (IndexOf + ... + 1); (type_descriptor (type_identifier)))) (number_literal))))) + +================================================ +Alternative tokens (digraphs) +================================================= + +if (not marked and (x < left or right < x)) {} + +operator not_eq(int) { return true; } + +foo and_eq bar(); + +--- + +(translation_unit + (if_statement + (condition_clause + (binary_expression + (unary_expression + (identifier)) + (parenthesized_expression + (binary_expression + (binary_expression + (identifier) + (identifier)) + (binary_expression + (identifier) + (identifier)))))) + (compound_statement)) + (function_definition + (function_declarator + (operator_name) + (parameter_list + (parameter_declaration + (primitive_type)))) + (compound_statement + (return_statement + (true)))) + (expression_statement + (assignment_expression + (identifier) + (call_expression + (identifier) + (argument_list)))))